diff --git a/emuos/main.xasm b/emuos/main.xasm index 408c1622..96a0bb56 100644 --- a/emuos/main.xasm +++ b/emuos/main.xasm @@ -286,7 +286,9 @@ gpdvv PBI_VECTOR_TABLE ;$E48F XL/XE: Generic device vector icl 'keytable.s' _KERNEL_REPORT_MODULE_SIZE 'Keyboard routines', 0 - .if _KERNEL_XLXE + .ifdef _KERNEL_816 + .echo 'Free space: ', $FFE4-*, ' bytes' + .elif _KERNEL_XLXE .echo 'Free space: ', $FFEE-*, ' bytes' .else .echo 'Free space: ', $FFFA-*, ' bytes' diff --git a/emuos/src/bootscreen.s b/emuos/src/bootscreen.s index d43fd3e9..32cbc978 100644 --- a/emuos/src/bootscreen.s +++ b/emuos/src/bootscreen.s @@ -377,9 +377,9 @@ split: dta $9b .ifdef _KERNEL_816 - dta d"Copyright (C) 2018-2022 Avery Lee",$9b + dta d"Copyright (C) 2018-2023 Avery Lee",$9b .else - dta d"Copyright (C) 2012-2022 Avery Lee",$9b + dta d"Copyright (C) 2012-2023 Avery Lee",$9b .endif dta d"All Rights Reserved",$9b diff --git a/emuos/src/cio.s b/emuos/src/cio.s index 078e73d8..63537303 100644 --- a/emuos/src/cio.s +++ b/emuos/src/cio.s @@ -31,6 +31,7 @@ iocb_loop: ; A = depends on operation ; X = IOCB offset (# x 16) ; Y = status (reflected in P) +; P = set based on status (guaranteed by OS Manual) ; ; Notes: ; BUFADR must not be touched from CIO. DOS XE relies on this for @@ -55,14 +56,16 @@ xit: ldx icidno tya sta icsta,x - php .if _KERNEL_XLXE mva #0 hndlod .endif lda ciochr - plp + + ;set NZ condition codes based on status + ;C=1 needed by GUNDISK.XEX + cpy #0 rts process: @@ -671,6 +674,7 @@ cmd_tab: mwa dvstat+2 loadad ldx icidno mva icax4,x ddevic + clc jsr PHLoadHandler bcs fail diff --git a/emuos/src/editor.s b/emuos/src/editor.s index ede3ab1e..060174f3 100644 --- a/emuos/src/editor.s +++ b/emuos/src/editor.s @@ -321,8 +321,7 @@ special_code_tab: dta $fe dta $ff special_code_tab_end: - dta $9b ;these are only for the K: check - dta $7c + dta $9b ;this is only for the K: check special_code_tab_end_2: ;---------------- @@ -425,7 +424,9 @@ sbks_wrap: ;---------------- special_bell: - jmp EditorBell +.def :EditorBell + ldy #0 + jmp Bell ;---------------- special_set_tab: @@ -985,12 +986,6 @@ found: rts .endp -;========================================================================== -.proc EditorBell - ldy #0 - jmp Bell -.endp - ;========================================================================== .proc EditorSwapToScreen_Y1 ldy #1 diff --git a/emuos/src/init.s b/emuos/src/init.s index 2ad9e556..ede3e853 100644 --- a/emuos/src/init.s +++ b/emuos/src/init.s @@ -354,7 +354,7 @@ krpdel_table: ldy #6 and #$0e bne is_ntsc - sne:inx + inx dey is_ntsc: stx palnts diff --git a/emuos/src/init816.s b/emuos/src/init816.s index 52660ac9..99c7b3fa 100644 --- a/emuos/src/init816.s +++ b/emuos/src/init816.s @@ -312,6 +312,9 @@ notRAM: dta $00 .endp +krpdel_table: + dta 48,40 + ;============================================================================== .proc InitEnvironment mva tramsz ramsiz @@ -348,9 +351,15 @@ init_done: ;set PAL/NTSC flag (XL/XE only) ldx #0 lda pal + ldy #6 and #$0e - sne:inx - stx palnts + bne is_ntsc + inx + dey +is_ntsc: + stx palnts ;$00 for NTSC, $01 for PAL + sty keyrep ;6 for NTSC, 5 for PAL + mva krpdel_table,x krpdel ; 11. set misc database values mva tramsz memtop+1 diff --git a/emuos/src/kerneldb.inc b/emuos/src/kerneldb.inc index ab93fe89..ef7ec5b0 100644 --- a/emuos/src/kerneldb.inc +++ b/emuos/src/kerneldb.inc @@ -190,6 +190,12 @@ pdmsk = $0249 ;PBI device interrupt mask (XL/XE) reladr = $024a ;Relocating loader: temp address (XL/XE) ; $024b + ; $024e ;Reserved by 1450XLD Parallel Disk Drive handler + ; $024f ;Reserved by 1450XLD Parallel Disk Drive handler + ; $0250 ;Reserved by 1400XL T: handler and 1450XLD PDD + ; $0251 ;Reserved by 1400XL T: handler + ; $0263-026a ;Reserved by 1400XL V: handler + .if _KERNEL_816 vabte = $024f ;(816) Emulation ABORT vector ; $0250 diff --git a/emuos/src/keyboard.s b/emuos/src/keyboard.s index b8957702..8844ca20 100644 --- a/emuos/src/keyboard.s +++ b/emuos/src/keyboard.s @@ -44,7 +44,7 @@ KeyboardClose = CIOExitSuccess ; lock if no lock is enabled and disable it otherwise. ; - Shift/Control lock is applied by K:, but only on alpha keys. ; - Inverse mode is also applied by K:. Control characters are excluded: -; 1B-1F/7C-7F/9B-9F/FD-FF. +; 1B-1F/7D-7F/9B-9F/FD-FF. ; - Any Ctrl+Shift key code (>=$C0) produces a key click but is otherwise ; ignored. ; @@ -80,8 +80,8 @@ waitForChar2: ;do keyboard click (we do this even for ignored ctrl+shift+keys) .if _KERNEL_XLXE - bit noclik - bmi no_click + ldy noclik + bne no_click .endif ldy #12 @@ -91,11 +91,7 @@ no_click: ;ignore char if both ctrl and shift are pressed cmp #$c0 bcs waitForChar - - ;trap Ctrl-3 and return EOF - cmp #$9a - beq isCtrl3 - + ;translate char tay @@ -114,6 +110,7 @@ no_click: bcc toggle_shift ;$82 - caps lock cmp #$85 bcc shift_ctrl_on ;$83 - shift caps lock / $84 - ctrl caps lock + beq isCtrl3 ;$85 - EOF valid_key: ;check for alpha key @@ -188,15 +185,22 @@ KeyboardSpecial = CIOExitNotSupported lda kbcode .if _KERNEL_XLXE + ;save key + pha + ;check for HELP and #$3f cmp #$11 bne not_help + + ;restore HELP key with original modifiers + pla sta helpfg - beq xit2 + bne xit2 not_help: - lda kbcode + ;restore key + pla .endif ;check if it is the same as the prev key diff --git a/emuos/src/keyboard816.s b/emuos/src/keyboard816.s index 8de9f716..bf85bb67 100644 --- a/emuos/src/keyboard816.s +++ b/emuos/src/keyboard816.s @@ -75,9 +75,10 @@ waitForChar2: ;do keyboard click (we do this even for ignored ctrl+shift+keys) .if _KERNEL_XLXE - bit noclik - bmi no_click + ldy noclik + bne no_click .endif + ldy #12 jsr Bell no_click: @@ -85,11 +86,7 @@ no_click: ;ignore char if both ctrl and shift are pressed cmp #$c0 bcs waitForChar - - ;trap Ctrl-3 and return EOF - cmp #$9a - beq isCtrl3 - + ;translate char tay lda (keydef),y @@ -103,6 +100,7 @@ no_click: bcc toggle_shift ;$82 - caps lock cmp #$85 bcc shift_ctrl_on ;$83 - shift caps lock / $84 - ctrl caps lock + beq isCtrl3 ;$85 - EOF valid_key: ;check for alpha key @@ -167,20 +165,27 @@ KeyboardSpecial = CIOExitNotSupported ; .proc KeyboardIRQ ;reset software repeat timer - mva #$30 srtimr + mva krpdel srtimr ;read new key lda kbcode + ;save key + pha + ;check for HELP and #$3f cmp #$11 bne not_help + + ;restore HELP key with original modifiers + pla sta helpfg - beq xit2 + bne xit2 not_help: - lda kbcode + ;restore key + pla ;check if it is the same as the prev key cmp ch1 diff --git a/emuos/src/keytable.s b/emuos/src/keytable.s index 1e6c7645..fff6b0a9 100644 --- a/emuos/src/keytable.s +++ b/emuos/src/keytable.s @@ -8,39 +8,44 @@ ; without any warranty. KeyCodeToATASCIITable: - ;Special codes in this table (values important for compat): + ;The values in this table must match the Atari OS definitions for + ;compatibility with programs that modify KEYDEF. The special codes + ;are publicly defined in the XL Addendum, of which we currently use a + ;subset: + ; ; $80 - invalid key ; $81 - inverse video ; $82 - caps lock ; $83 - shift caps lock ; $84 - control caps lock + ; $85 - EOF (Ctrl+3) ;lowercase - dta $6C, $6A, $3B, $80, $80, $6B, $2B, $2A - dta $6F, $80, $70, $75, $9B, $69, $2D, $3D - dta $76, $80, $63, $80, $80, $62, $78, $7A - dta $34, $80, $33, $36, $1B, $35, $32, $31 - dta $2C, $20, $2E, $6E, $80, $6D, $2F, $81 - dta $72, $80, $65, $79, $7F, $74, $77, $71 - dta $39, $80, $30, $37, $7E, $38, $3C, $3E - dta $66, $68, $64, $80, $82, $67, $73, $61 + dta $6C, $6A, $3B, $80, $80, $6B, $2B, $2A ;L J ;: F1 F2 K +\ *^ + dta $6F, $80, $70, $75, $9B, $69, $2D, $3D ;O P U Ret I -_ =| + dta $76, $80, $63, $80, $80, $62, $78, $7A ;V Hlp C F3 F4 B X Z + dta $34, $80, $33, $36, $1B, $35, $32, $31 ;4$ 3# 6& Esc 5% 2" 1! + dta $2C, $20, $2E, $6E, $80, $6D, $2F, $81 ;,[ Spc .] N M /? Inv + dta $72, $80, $65, $79, $7F, $74, $77, $71 ;R E Y Tab T W Q + dta $39, $80, $30, $37, $7E, $38, $3C, $3E ;9( 0) 7' Bks 8@ < > + dta $66, $68, $64, $80, $82, $67, $73, $61 ;F H D Cps G S A ;SHIFT - dta $4C, $4A, $3A, $80, $80, $4B, $5C, $5E - dta $4F, $80, $50, $55, $9B, $49, $5F, $7C - dta $56, $80, $43, $80, $80, $42, $58, $5A - dta $24, $80, $23, $26, $1B, $25, $22, $21 - dta $5B, $20, $5D, $4E, $80, $4D, $3F, $80 - dta $52, $80, $45, $59, $9F, $54, $57, $51 - dta $28, $80, $29, $27, $9C, $40, $7D, $9D - dta $46, $48, $44, $80, $83, $47, $53, $41 + dta $4C, $4A, $3A, $80, $80, $4B, $5C, $5E ;L J ;: F1 F2 K +\ *^ + dta $4F, $80, $50, $55, $9B, $49, $5F, $7C ;O P U Ret I -_ =| + dta $56, $80, $43, $80, $80, $42, $58, $5A ;V Hlp C F3 F4 B X Z + dta $24, $80, $23, $26, $1B, $25, $22, $21 ;4$ 3# 6& Esc 5% 2" 1! + dta $5B, $20, $5D, $4E, $80, $4D, $3F, $80 ;,[ Spc .] N M /? Inv + dta $52, $80, $45, $59, $9F, $54, $57, $51 ;R E Y Tab T W Q + dta $28, $80, $29, $27, $9C, $40, $7D, $9D ;9( 0) 7' Bks 8@ < > + dta $46, $48, $44, $80, $83, $47, $53, $41 ;F H D Cps G S A ;CTRL - dta $0C, $0A, $7B, $80, $80, $0B, $1E, $1F - dta $0F, $80, $10, $15, $9B, $09, $1C, $1D - dta $16, $80, $03, $80, $80, $02, $18, $1A - dta $80, $80, $9B, $80, $1B, $80, $FD, $80 - dta $00, $20, $60, $0E, $80, $0D, $80, $80 - dta $12, $80, $05, $19, $9E, $14, $17, $11 - dta $80, $80, $80, $80, $FE, $80, $7D, $FF - dta $06, $08, $04, $80, $84, $07, $13, $01 + dta $0C, $0A, $7B, $80, $80, $0B, $1E, $1F ;L J ;: F1 F2 K +\ *^ + dta $0F, $80, $10, $15, $9B, $09, $1C, $1D ;O P U Ret I -_ =| + dta $16, $80, $03, $80, $80, $02, $18, $1A ;V Hlp C F3 F4 B X Z + dta $80, $80, $85, $80, $1B, $80, $FD, $80 ;4$ 3# 6& Esc 5% 2" 1! + dta $00, $20, $60, $0E, $80, $0D, $80, $80 ;,[ Spc .] N M /? Inv + dta $12, $80, $05, $19, $9E, $14, $17, $11 ;R E Y Tab T W Q + dta $80, $80, $80, $80, $FE, $80, $7D, $FF ;9( 0) 7' Bks 8@ < > + dta $06, $08, $04, $80, $84, $07, $13, $01 ;F H D Cps G S A diff --git a/emuos/src/screen.s b/emuos/src/screen.s index 8c6ab948..7d75898b 100644 --- a/emuos/src/screen.s +++ b/emuos/src/screen.s @@ -322,15 +322,15 @@ clear_parms: eor gprior sta gprior - ;if a GTIA mode is active or we're in mode 0, force off split mode - cmp #$40 + ;if a GTIA mode is active, force off split mode + ;if we're in mode 0, force off the no-clear flag (per OS Manual p.57) + cmp #$40 ;test for GTIA mode and store in carry + txa ;test for GR.0 + beq is_gr0 ;disable split screen and no-clear for GR.0 + lda icax1z - bcs kill_split - cpx #0 - bne not_gtia_mode_or_gr0 -kill_split: - and #$ef -not_gtia_mode_or_gr0: + scc:and #$ef ;disable split screen for GTIA mode +is_gr0: ;save off the split screen and clear flags in a more convenient form asl diff --git a/emuos/src/screenext816.s b/emuos/src/screenext816.s index 995f3a9f..9085b962 100644 --- a/emuos/src/screenext816.s +++ b/emuos/src/screenext816.s @@ -118,7 +118,8 @@ post_wrap: eor #$80 sta (oldadr) cursor_inhibited: - iny +xit_ok: + ldy #1 rts .endp @@ -130,17 +131,10 @@ cursor_inhibited: ; This happens even if S: doesn't correspond to the text window. Only ; the high bit of FINE is checked. ; -.if !_KERNEL_XLXE -ScreenClose = CIOExitSuccess -.else .proc ScreenClose bit fine - bmi disable_fine_scrolling - - ldy #1 - rts + bpl ScreenShowCursorAndXitOK.xit_ok -disable_fine_scrolling: ;turn off DLI mva #$40 nmien @@ -151,7 +145,6 @@ disable_fine_scrolling: jmp ScreenOpenGr0 .endp -.endif ;========================================================================== .if !_KERNEL_XLXE diff --git a/emuos/src/vbi.s b/emuos/src/vbi.s index a269a290..753eff7f 100644 --- a/emuos/src/vbi.s +++ b/emuos/src/vbi.s @@ -1,6 +1,6 @@ ; Altirra - Atari 800/800XL/5200 emulator ; Modular Kernel ROM - Vertical Blank Interrupt Services -; Copyright (C) 2008-2016 Avery Lee +; Copyright (C) 2008-2023 Avery Lee ; ; Copying and distribution of this file, with or without modification, ; are permitted in any medium without royalty provided the copyright @@ -338,72 +338,163 @@ still_running: ; X = MSB ; Y = LSB ; -.proc VBISetVector - ;A = item to update - ; 1-5 timer 1-5 counter value - ; 6 VVBLKI - ; 7 VVBLKD - ;X = MSB - ;Y = LSB - ; - ;NOTE: - ;The Atari OS Manual says that DLIs will be disabled after SETVBV is called. - ;This is a lie -- neither the OS-B nor XL kernels do this, and the Bewesoft - ;8-players demo depends on it being left enabled. - ; - ;IRQ mask state must be saved across this proc. DOSDISKA.ATR breaks if IRQs - ;are unmasked. - - asl - sta intemp - php - sei - tya - ldy intemp - +;NOTE: +;The Atari OS Manual says that DLIs will be disabled after SETVBV is called. +;This only applies to OS-A, which writes NMIEN from SETVBV. OS-B and the +;XL/XE OS avoid this, and the Bewesoft 8-players demo depends on DLIs being +;left enabled. +; +;IRQ mask state must be saved across this proc. DOSDISKA.ATR breaks if IRQs +;are unmasked. +; +;We also cannot touch NMIRES in this routine. This can result in dropped DLIs +;since there is a one cycle window where the 6502 can manage to both write +;NMIRES and still execute the NMI. This results in the NMI dispatcher seeing no +;bits set in NMIST and failing to run the correct handler. +; +.proc VBISetVector ;We're relying on a rather tight window here. We can't touch NMIEN, so we have ;to wing it with DLIs enabled. Problem is, in certain conditions we can be under ;very tight timing constraints. In order to do this safely we have to finish ;before a DLI can execute. The worst case is a wide mode 2 line at the end of ;a vertically scrolled region with P/M graphics enabled and an LMS on the next ;mode line. In that case we only have 7 cycles before we hit the P/M graphics - ;and another two cycles after that until the DLI fires. The exact cycle timing - ;looks like this: + ;and another two cycles after that until the DLI fires. + ; + ;The worst case cycle timing looks like this: ; - ;* inc wsync + ;* inc wsync ;ANTIC halts CPU until cycle 105 - ;105 playfield DMA - ;106 refresh DMA - ;107 sta abs,y (1/5) - ;108 sta abs,y (2/5) - ;109 sta abs,y (3/5) - ;110 sta abs,y (4/5) - ;111 sta abs,y (5/5) - ;112 txa (1/2) - ;113 txa (2/2) - ;0 missiles - ;1 display list - ;2 player 0 - ;3 player 1 - ;4 player 2 - ;5 player 3 - ;6 display list address low - ;7 display list address high - ;8 sta abs,y (1/5) - ;9 sta abs,y (2/5) - ;10 sta abs,y (3/5) - ;11 sta abs,y (4/5) - ;12 sta abs,y (5/5) + ;105 playfield DMA + ;106 refresh DMA + ;107-113 free cycles (7) + ;0 missiles + ;1 display list + ;2 player 0 + ;3 player 1 + ;4 player 2 + ;5 player 3 + ;6 display list address low + ;7 display list address high + ;8-9 free cycles (2) + ;10 earliest NMI timing + ; + ;There are several annoying cases: + ; + ; 1) The VBI fires on the next scanline. + ; + ; In this case, neither display list nor P/M DMA can occur, so we have at + ; least 17 cycles guaranteed before the VBI fires. This is the easiest case + ; to handle. We should be 100% safe with only the VBI enabled and no DLIs. + ; + ; 2) A DLI fires on the next scanline. + ; + ; SETVBV can't be used to set VDSLST, so it doesn't directly interact with + ; DLIs and a DLI splitting the writes isn't an issue. However, the DLI can + ; end shortly before the VBI and land us in trouble there. The stock OS has + ; an ~8 cycle vulnerability here. + ; + ; Using SETVBV with DLIs is already questionable due to WSYNC delaying DLIs, + ; but to mitigate this, we check VCOUNT and delay the writes if we're too + ; close to the VBI. There is just enough time to do this safely as long as + ; the DLI executes before the VCOUNT check. + ; + ; This can be violated if the multiple DLIs are close together or DMA is + ; very heavy, but that's beyond the point where using SETVBV is reasonably + ; safe at all. The case that fails is that the VCOUNT check passes prior to + ; scan 247, then post-check code is split by a DLI that ends in the danger + ; zone. + ; + ; 3) An NMI fires during the INC WSYNC. ; - ;We rely on the 6502 not being able to service interrupts until the end of an - ;instruction for this to work. The INC WSYNC is necessary to combat the case - ;where the NMI is triggered across the WSYNC wait; without it, the VBI could - ;fire immediately after the first STA. + ; We're fine if this is a VBI, less fine if it's the DLI. The DLI can execute + ; at two points: either immediately after the INC WSYNC or one instruction + ; after it. This depends on whether INC WSYNC ends by cycle 10 so the 6502 + ; can acknowledge and swap to the NMI sequence before RDY halts it. Otherwise, + ; the 6502 will stop on the opcode fetch for the next insn, guaranteeing that + ; the next insn completes before NMI handling starts. + ; + ; This issue means that the first instruction cannot either be the VCOUNT + ; check or the first write. It also means it's impossible to guarantee that + ; the write can occur before the next NMI -- there aren't enough cycles in + ; max DMA conditions to get off the two writes with needing a dummy insn in + ; front, so we're stuck either potentially having the writes split by DLIs + ; or after the DLI. + ; + ; 4) A DLI fires on the next scanline, and runs long across the VBI. + ; + ; This appears impossible to handle in all cases, as there aren't enough + ; cycles to guarantee atomic writes before the DLI could fire in max DMA + ; conditions. + ; + ; We mitigate this by instead delaying enough cycles to ensure that the + ; writes always occur _after_ the DLI. Combined with the VBI check, this + ; handles the case of a single DLI in reasonable conditions. In max DMA + ; conditions it is still possible for the post-delay code to get pushed + ; into the next horizontal blank for the DLI to split the writes... we can + ; only do so much. - inc wsync - sta cdtmv1-2,y - txa - sta cdtmv1-1,y - plp - rts + ;double the index to a vector offset, and save to rotate A -> Y + asl + sty intemp + tay + txa + + ;disable IRQs + php + sei + + ;===== sync to horizontal blank ===== + inc wsync + + ;--- NMI may occur here --- + + ldx #124 ;105-106 + + ;--- NMI may occur here --- + + ;Delay enough cycles to ensure that any upcoming NMI executes prior to + ;the vector writes, _if_ no NMI occurred during the WSYNC. If one did, then + ;the horizontal timing is unknown here and we rely on the VCOUNT check + ;to save us. + php:plp ;107-113 + php:plp ;0-6 + + ;Check if we are in the danger zone -- if we're on 248 then we can't guarantee + ;enough cycles to do the write in time and should delay again. If we're not + ;on 248, then we can just barely guarantee enough cycles to finish both writes + ;in time as long as there isn't a DLI in between that extends all the way to + ;248. The last cycle of the CPX instruction reads VCOUNT and that shows the + ;incremented value starting on cycle 111. + ; + ;The 'normal' timing is what is encountered away from scan 248 with no DLIs. + ;Early/late timings are when a DLI has interfered and represent the edge cases + ;for just barely passing or failing the VCOUNT check. For the early case, we + ;need to squeeze in the writes immediate; in the late case we must clear the + ;VBI before proceeding. + ; + cpx vcount ;normal: 7-10 | late: 108-111 | early: 107-110 + beq in_danger ;normal: 11-12 | late: 112-0 | early: 111-112 + +resume: + ;Update the vector. In the worst case timing where we have just caught the + ;very last cycle before VCOUNT ticks over to $7C, there are just barely enough + ;cycles to guarantee an atomic update before the VBI. Note that the last write + ;extends past the NMI point; this relies on the 6502 having to the finish the + ;insn once it's started before it can handle the NMI. + sta cdtmv1-1,y ;normal: 12-16 | late: 11-15 | early: 113-4 + lda intemp ;normal: 17-18 | late: 16-17 | early: 5-8 + sta cdtmv1-2,y ;normal: 19-23 | late: 18-22 | early: 9+ + + ;restore IRQs + plp + + ;all done + rts + +in_danger: + ;Delay past the NMI point to ensure that any NMI there kicks off before we + ;do the writes. + php:plp ;1-7 + beq resume ;8-10 .endp diff --git a/emuos/src/vbi816.s b/emuos/src/vbi816.s index 5b6c280f..d4d59e8c 100644 --- a/emuos/src/vbi816.s +++ b/emuos/src/vbi816.s @@ -1,6 +1,6 @@ ; Altirra - Atari 800/800XL/5200 emulator ; Modular Kernel ROM - 65C816 Vertical Blank Interrupt Services -; Copyright (C) 2008-2018 Avery Lee +; Copyright (C) 2008-2023 Avery Lee ; ; Copying and distribution of this file, with or without modification, ; are permitted in any medium without royalty provided the copyright @@ -277,72 +277,36 @@ still_running: ; X = MSB ; Y = LSB ; +;NOTE: +;The Atari OS Manual says that DLIs will be disabled after SETVBV is called. +;This only applies to OS-A, which writes NMIEN from SETVBV. OS-B and the +;XL/XE OS avoid this, and the Bewesoft 8-players demo depends on DLIs being +;left enabled. +; +;IRQ mask state must be saved across this proc. DOSDISKA.ATR breaks if IRQs +;are unmasked. +; .proc VBISetVector - ;A = item to update - ; 1-5 timer 1-5 counter value - ; 6 VVBLKI - ; 7 VVBLKD - ;X = MSB - ;Y = LSB - ; - ;NOTE: - ;The Atari OS Manual says that DLIs will be disabled after SETVBV is called. - ;This is a lie -- neither the OS-B nor XL kernels do this, and the Bewesoft - ;8-players demo depends on it being left enabled. - ; - ;IRQ mask state must be saved across this proc. DOSDISKA.ATR breaks if IRQs - ;are unmasked. - - asl - sta intemp - php - sei - tya - ldy intemp - - ;We're relying on a rather tight window here. We can't touch NMIEN, so we have - ;to wing it with DLIs enabled. Problem is, in certain conditions we can be under - ;very tight timing constraints. In order to do this safely we have to finish - ;before a DLI can execute. The worst case is a wide mode 2 line at the end of - ;a vertically scrolled region with P/M graphics enabled and an LMS on the next - ;mode line. In that case we only have 7 cycles before we hit the P/M graphics - ;and another two cycles after that until the DLI fires. The exact cycle timing - ;looks like this: - ; - ;* inc wsync - ;ANTIC halts CPU until cycle 105 - ;105 playfield DMA - ;106 refresh DMA - ;107 sta abs,y (1/5) - ;108 sta abs,y (2/5) - ;109 sta abs,y (3/5) - ;110 sta abs,y (4/5) - ;111 sta abs,y (5/5) - ;112 txa (1/2) - ;113 txa (2/2) - ;0 missiles - ;1 display list - ;2 player 0 - ;3 player 1 - ;4 player 2 - ;5 player 3 - ;6 display list address low - ;7 display list address high - ;8 sta abs,y (1/5) - ;9 sta abs,y (2/5) - ;10 sta abs,y (3/5) - ;11 sta abs,y (4/5) - ;12 sta abs,y (5/5) - ; - ;We rely on the 6502 not being able to service interrupts until the end of an - ;instruction for this to work. The INC WSYNC is necessary to combat the case - ;where the NMI is triggered across the WSYNC wait; without it, the VBI could - ;fire immediately after the first STA. - - inc wsync - sta cdtmv1-2,y - txa - sta cdtmv1-1,y - plp - rts + ;convert vector to offset + asl + + ;swap around X:Y to B:A and A to Y + pha + txa + xba + tya + ply + + ;The '816 makes this much simpler as we can just use a 16-bit write, + ;but let's still do the WSYNC for stabler timing compatibility-wise. + stz wsync + clc + xce + php + rep #$20 + sta cdtmv1-2,y + plp + xce + + rts .endp diff --git a/emuos/src/version.inc b/emuos/src/version.inc index 614d9b33..54cecfdb 100644 --- a/emuos/src/version.inc +++ b/emuos/src/version.inc @@ -8,9 +8,9 @@ ; without any warranty. .macro _KERNELSTR_VERSION - dta '3.34' + dta '3.39' .endm .macro _KERNELSTR_VERSION_INTERNAL - dta "3.34" + dta "3.39" .endm diff --git a/src/roms/altirraos_800.c b/src/roms/altirraos_800.c index d5a982e7..4005771d 100644 --- a/src/roms/altirraos_800.c +++ b/src/roms/altirraos_800.c @@ -402,29 +402,29 @@ UBYTE const ROM_altirraos_800[0x2800] = 0x00,0x7e,0x78,0x7c,0x6e,0x66,0x06,0x00, 0x08,0x18,0x38,0x78,0x38,0x18,0x08,0x00, 0x10,0x18,0x1c,0x1e,0x1c,0x18,0x10,0x00, - 0xec,0xf9,0xc8,0xe4,0xf8,0xf9,0xaa,0xfa, + 0xeb,0xf9,0xc8,0xe4,0xf7,0xf9,0xa9,0xfa, 0xc8,0xe4,0xca,0xe4,0x4c,0xcb,0xe4,0x00, - 0xf5,0xf3,0xc8,0xe4,0x9e,0xf5,0xde,0xf5, - 0xc8,0xe4,0xc2,0xf6,0x20,0x91,0xf5,0x00, - 0xc8,0xe4,0xc8,0xe4,0x6c,0xfe,0xca,0xe4, - 0xc8,0xe4,0xca,0xe4,0x4c,0x52,0xfe,0x00, - 0x19,0xee,0xe0,0xed,0xca,0xe4,0xc2,0xed, - 0x1d,0xee,0xca,0xe4,0x20,0xbd,0xed,0x00, - 0x49,0xee,0x9e,0xee,0xbf,0xee,0xff,0xee, - 0xc8,0xe4,0xca,0xe4,0x4c,0x3f,0xee,0x00, - 0x4c,0x5d,0xed,0x4c,0x5e,0xed,0x4c,0xfc, - 0xe4,0x4c,0x4d,0xe9,0x4c,0x66,0xe8,0x4c, - 0x1d,0xe7,0x4c,0x61,0xe7,0x4c,0x42,0xe9, - 0x4c,0x98,0xea,0x4c,0x7c,0xe8,0x4c,0xea, - 0xe4,0x4c,0x80,0xe4,0x4c,0x37,0xf0,0x4c, - 0xeb,0xef,0x4c,0x40,0xef,0x4c,0x5d,0xee, + 0xf5,0xf3,0xc8,0xe4,0x9d,0xf5,0xdd,0xf5, + 0xc8,0xe4,0xc1,0xf6,0x20,0x90,0xf5,0x00, + 0xc8,0xe4,0xc8,0xe4,0x67,0xfe,0xca,0xe4, + 0xc8,0xe4,0xca,0xe4,0x4c,0x4d,0xfe,0x00, + 0x28,0xee,0xef,0xed,0xca,0xe4,0xd1,0xed, + 0x2c,0xee,0xca,0xe4,0x20,0xcc,0xed,0x00, + 0x58,0xee,0xad,0xee,0xce,0xee,0x0e,0xef, + 0xc8,0xe4,0xca,0xe4,0x4c,0x4e,0xee,0x00, + 0x4c,0x6c,0xed,0x4c,0x6d,0xed,0x4c,0xfc, + 0xe4,0x4c,0x5c,0xe9,0x4c,0x66,0xe8,0x4c, + 0x1d,0xe7,0x4c,0x61,0xe7,0x4c,0x51,0xe9, + 0x4c,0xa7,0xea,0x4c,0x8b,0xe8,0x4c,0xea, + 0xe4,0x4c,0x80,0xe4,0x4c,0x46,0xf0,0x4c, + 0xfa,0xef,0x4c,0x4f,0xef,0x4c,0x6c,0xee, 0xa9,0xa6,0x8d,0x44,0x03,0xa9,0xe4,0x8d, 0x45,0x03,0x8d,0x48,0x03,0xa2,0x00,0x8e, 0x49,0x03,0xa9,0x09,0x8d,0x42,0x03,0x20, 0x56,0xe4,0x8e,0x48,0x03,0xa9,0x07,0xd0, 0xf3,0xff,0xff,0xff,0xff,0xff,0x41,0x6c, 0x74,0x69,0x72,0x72,0x61,0x4f,0x53,0x20, - 0x33,0x2e,0x33,0x34,0x20,0x6d,0x65,0x6d, + 0x33,0x2e,0x33,0x39,0x20,0x6d,0x65,0x6d, 0x6f,0x20,0x70,0x61,0x64,0x9b,0xff,0xff, 0x60,0x80,0x40,0x20,0x10,0x08,0x04,0x02, 0x01,0xa0,0x01,0x60,0x48,0xa9,0x08,0xa2, @@ -435,7 +435,7 @@ UBYTE const ROM_altirraos_800[0x2800] = 0x40,0x03,0x20,0x01,0xe7,0x8a,0xe9,0x10, 0xaa,0x10,0xf2,0x60,0x85,0x2f,0x86,0x2e, 0x20,0x0e,0xe5,0xa6,0x2e,0x98,0x9d,0x43, - 0x03,0x08,0xa5,0x2f,0x28,0x60,0x8a,0x29, + 0x03,0xa5,0x2f,0xc0,0x00,0x60,0x8a,0x29, 0x8f,0xf0,0x06,0xa0,0x86,0x60,0xa0,0x84, 0x60,0x20,0xd1,0xe6,0xa5,0x22,0xc9,0x03, 0xf0,0x66,0x90,0xf2,0xa4,0x20,0x10,0x1c, @@ -542,349 +542,349 @@ UBYTE const ROM_altirraos_800[0x2800] = 0x02,0x4a,0x3e,0x7f,0x02,0x60,0xbd,0x17, 0x02,0xd0,0x0a,0xdd,0x18,0x02,0xd0,0x02, 0x8a,0x60,0xde,0x18,0x02,0xde,0x17,0x02, - 0xd0,0x03,0xbd,0x18,0x02,0x60,0x0a,0x8d, - 0x2d,0x02,0x08,0x78,0x98,0xac,0x2d,0x02, - 0xee,0x0a,0xd4,0x99,0x16,0x02,0x8a,0x99, - 0x17,0x02,0x28,0x60,0xa9,0x40,0x8d,0x0e, - 0xd4,0x60,0x2c,0x0f,0xd4,0x10,0x06,0x6c, - 0x00,0x02,0x4c,0x74,0xe4,0x48,0xa9,0x20, - 0x2c,0x0f,0xd4,0xd0,0xf5,0x8a,0x48,0x98, - 0x48,0x8d,0x0f,0xd4,0x6c,0x22,0x02,0x6c, - 0x16,0x02,0xa9,0xef,0x20,0x39,0xe9,0x6c, - 0x0c,0x02,0x2c,0x0e,0xd2,0xd0,0x3c,0x6c, - 0x0e,0x02,0xa9,0xfe,0x20,0x39,0xe9,0x6c, - 0x10,0x02,0xa9,0xfd,0x20,0x39,0xe9,0x6c, - 0x12,0x02,0xa9,0xfb,0x20,0x39,0xe9,0x6c, - 0x14,0x02,0x48,0xa9,0x20,0x2c,0x0e,0xd2, - 0xd0,0x0d,0xa9,0xdf,0x8d,0x0e,0xd2,0xa5, - 0x10,0x8d,0x0e,0xd2,0x6c,0x0a,0x02,0xa9, - 0x10,0x2c,0x0e,0xd2,0xf0,0xbc,0x4a,0x24, - 0x10,0xd0,0xbf,0xad,0x0e,0xd2,0x4a,0x90, - 0xc1,0x4a,0x90,0xc6,0x4a,0x90,0xcb,0x2c, - 0x0e,0xd2,0x50,0x21,0x10,0x27,0x2c,0x02, - 0xd3,0x30,0x2a,0x2c,0x03,0xd3,0x30,0x2b, - 0x68,0x8d,0x8c,0x02,0x68,0x48,0x29,0x10, - 0xf0,0x07,0xad,0x8c,0x02,0x48,0x6c,0x06, - 0x02,0xad,0x8c,0x02,0x40,0xa9,0xbf,0x20, - 0x39,0xe9,0x6c,0x08,0x02,0xa9,0x7f,0x20, - 0x39,0xe9,0x6c,0x36,0x02,0xad,0x00,0xd3, - 0x6c,0x02,0x02,0xad,0x01,0xd3,0x6c,0x04, - 0x02,0x8d,0x0e,0xd2,0xa5,0x10,0x8d,0x0e, - 0xd2,0x60,0xa9,0x03,0x8d,0x0f,0xd2,0x8d, - 0x32,0x02,0x85,0x41,0x60,0xa9,0x01,0x8d, - 0xbd,0x02,0x85,0x42,0xba,0x8e,0x18,0x03, - 0x20,0x64,0xea,0xa2,0x00,0xad,0x00,0x03, - 0xc9,0x60,0xd0,0x01,0xca,0x8e,0x0f,0x03, - 0x20,0xb7,0xea,0x2c,0x0f,0x03,0x10,0x03, - 0x4c,0x2d,0xec,0xa9,0x0d,0x8d,0x9c,0x02, - 0xad,0x00,0x03,0x18,0x6d,0x01,0x03,0x38, - 0xe9,0x01,0x8d,0x3a,0x02,0xad,0x02,0x03, - 0x8d,0x3b,0x02,0xad,0x0a,0x03,0x8d,0x3c, - 0x02,0xad,0x0b,0x03,0x8d,0x3d,0x02,0xa9, - 0x34,0x8d,0x03,0xd3,0xa2,0x05,0xac,0x0b, - 0xd4,0xcc,0x0b,0xd4,0xf0,0xfb,0xc8,0xca, - 0xd0,0xf7,0xa9,0x00,0x85,0x3c,0xa9,0x02, - 0x85,0x33,0x85,0x35,0xa9,0x3a,0x85,0x32, - 0xa9,0x3e,0x85,0x34,0x20,0x1c,0xeb,0x30, - 0x67,0x20,0x6f,0xea,0x10,0x0a,0x20,0x89, - 0xeb,0xce,0x9c,0x02,0x10,0xaa,0x30,0x4d, - 0x2c,0x03,0x03,0x10,0x0d,0x20,0x06,0xeb, - 0x20,0x1c,0xeb,0x30,0x4b,0x20,0x6f,0xea, - 0x30,0xe4,0xa2,0xff,0x86,0x3c,0xad,0x06, - 0x03,0x6a,0x6a,0x48,0x6a,0x29,0xc0,0xa8, - 0x68,0x29,0x3f,0xaa,0xa9,0x01,0x8d,0x17, - 0x03,0x20,0x5c,0xe4,0xa2,0x3e,0x86,0x32, - 0xe8,0x86,0x34,0xa2,0x02,0x86,0x33,0x86, - 0x35,0x20,0x4b,0xeb,0x30,0x0f,0xad,0x3e, - 0x02,0xc9,0x45,0xf0,0x34,0x09,0x02,0xc9, - 0x43,0xf0,0x2e,0xa0,0x90,0x20,0x89,0xeb, - 0xce,0xbd,0x02,0x30,0x03,0x4c,0x73,0xe9, - 0xae,0x0f,0x03,0xd0,0x0c,0x8e,0x01,0xd2, - 0x8e,0x03,0xd2,0x8e,0x05,0xd2,0x8e,0x07, - 0xd2,0xae,0x18,0x03,0x9a,0xa9,0x00,0x85, - 0x42,0xc0,0x00,0x8c,0x03,0x03,0x84,0x30, - 0x60,0x2c,0x03,0x03,0x50,0x08,0x20,0x06, - 0xeb,0x20,0x4b,0xeb,0x30,0xc7,0x20,0x89, - 0xeb,0xad,0x3e,0x02,0xc9,0x45,0xf0,0xbb, - 0xa0,0x01,0xd0,0xc4,0xa9,0x27,0x8d,0x26, - 0x02,0xa9,0xec,0x8d,0x27,0x02,0x60,0xa2, - 0xff,0x86,0x3c,0xe8,0xa9,0x01,0x8d,0x17, - 0x03,0xa0,0x02,0x84,0x33,0x84,0x35,0x20, - 0x5c,0xe4,0xa2,0x3e,0x86,0x32,0xe8,0x86, - 0x34,0x20,0x4b,0xeb,0x30,0x09,0xad,0x3e, - 0x02,0xc9,0x41,0xf0,0x02,0xa0,0x8b,0x60, - 0xa5,0x10,0x09,0x10,0x29,0xf7,0x85,0x10, - 0x8d,0x0e,0xd2,0xad,0x32,0x02,0x29,0x0f, - 0x09,0x20,0xae,0x0f,0x03,0xf0,0x02,0x09, - 0x08,0x8d,0x32,0x02,0x8d,0x0f,0xd2,0xa2, - 0x08,0xad,0x0f,0x03,0xf0,0x02,0xa2,0x11, - 0xa0,0x08,0xbd,0xeb,0xea,0xca,0x99,0x00, - 0xd2,0x88,0x10,0xf6,0xa5,0x41,0xf0,0x17, - 0xa9,0xa8,0x8d,0x07,0xd2,0xae,0x0f,0x03, - 0xf0,0x0d,0xa9,0x10,0x2c,0x32,0x02,0xd0, - 0x06,0x8d,0x01,0xd2,0x8d,0x03,0xd2,0x8d, - 0x0a,0xd2,0x60,0x00,0xa0,0x00,0xa0,0x28, - 0xa0,0x00,0xa0,0x28,0x05,0xa0,0x07,0xa0, - 0xcc,0xa0,0x05,0xa0,0x28,0x00,0xa0,0x00, - 0xa0,0xcc,0xa0,0x05,0xa0,0x28,0x18,0xad, - 0x04,0x03,0x85,0x32,0x6d,0x08,0x03,0x85, - 0x34,0xad,0x05,0x03,0x85,0x33,0x6d,0x09, - 0x03,0x85,0x35,0x60,0x78,0x20,0x98,0xea, - 0xa0,0x00,0x84,0x3a,0x84,0x30,0x84,0x3b, - 0xb1,0x32,0x8d,0x0d,0xd2,0x85,0x31,0x58, - 0xa5,0x11,0xf0,0x06,0xa5,0x3a,0xf0,0xf8, - 0xd0,0x04,0xa0,0x80,0x84,0x30,0x78,0xa5, - 0x10,0x29,0xe7,0x85,0x10,0x8d,0x0e,0xd2, - 0x58,0x98,0x60,0xa9,0x00,0x85,0x31,0xa2, - 0x00,0x86,0x39,0x86,0x38,0xe8,0x86,0x30, - 0x78,0xad,0x32,0x02,0x29,0x8f,0x09,0x10, - 0x8d,0x32,0x02,0x8d,0x0f,0xd2,0xa5,0x10, - 0x09,0x20,0x85,0x10,0x8d,0x0e,0xd2,0x58, - 0xa9,0x3c,0x8d,0x03,0xd3,0xad,0x17,0x03, - 0xf0,0x0b,0xa4,0x30,0x30,0x05,0xa5,0x39, - 0xf0,0xf3,0x98,0x78,0x60,0xa0,0x8a,0x78, - 0x60,0xa5,0x10,0x29,0xd7,0x85,0x10,0x8d, - 0x0e,0xd2,0x58,0x60,0xa5,0x38,0xd0,0x2a, - 0x98,0x48,0xad,0x0d,0xd2,0xa0,0x00,0x91, - 0x32,0x18,0x65,0x31,0x69,0x00,0x85,0x31, - 0x68,0xa8,0xe6,0x32,0xd0,0x02,0xe6,0x33, - 0xa5,0x32,0xc5,0x34,0xa5,0x33,0xe5,0x35, - 0x90,0x06,0xc6,0x38,0xa5,0x3c,0xd0,0x15, - 0x68,0x40,0xad,0x0d,0xd2,0xc5,0x31,0xd0, - 0x06,0xa9,0xff,0x85,0x39,0x68,0x40,0xa9, - 0x8f,0x85,0x30,0xd0,0xf4,0x85,0x39,0xa9, - 0x00,0x85,0x3c,0x68,0x40,0xe6,0x32,0xd0, - 0x02,0xe6,0x33,0xa5,0x32,0xc5,0x34,0xa5, - 0x33,0xe5,0x35,0xb0,0x13,0x98,0x48,0xa0, - 0x00,0xb1,0x32,0x8d,0x0d,0xd2,0x65,0x31, - 0x69,0x00,0x85,0x31,0x68,0xa8,0x68,0x40, - 0xa5,0x31,0x8d,0x0d,0xd2,0xa9,0xff,0x85, - 0x3b,0xa5,0x10,0x09,0x08,0x29,0xef,0x85, - 0x10,0x8d,0x0e,0xd2,0x68,0x40,0xa5,0x3b, - 0xf0,0x0b,0x85,0x3a,0xa5,0x10,0x29,0xf7, - 0x85,0x10,0x8d,0x0e,0xd2,0x68,0x40,0xa9, - 0x00,0x8d,0x17,0x03,0x60,0xad,0x02,0x03, - 0xc9,0x52,0xf0,0x0f,0xc9,0x50,0xf0,0x05, - 0xa0,0x8b,0x4c,0x28,0xea,0x20,0x49,0xec, - 0x4c,0x28,0xea,0x20,0x5a,0xec,0x4c,0x28, - 0xea,0xa2,0x02,0x20,0x8b,0xef,0x20,0x98, - 0xea,0x20,0x06,0xeb,0x20,0x1c,0xeb,0x4c, - 0x28,0xea,0xa2,0x04,0x20,0x8b,0xef,0xa2, - 0x1a,0x20,0xc0,0xea,0xad,0x32,0x02,0x29, - 0x8f,0x09,0x10,0x8d,0x32,0x02,0xa9,0x01, - 0x8d,0x17,0x03,0xa2,0x0e,0xa0,0x10,0x20, - 0x66,0xe8,0xa9,0x10,0xac,0x17,0x03,0xf0, - 0x2b,0x2c,0x0f,0xd2,0xd0,0xf6,0x20,0x46, - 0xed,0x8c,0x0d,0x03,0x8d,0x0c,0x03,0xa9, - 0x10,0xa2,0x0a,0xac,0x17,0x03,0xf0,0x14, - 0x2c,0x0f,0xd2,0xf0,0xf6,0xca,0xf0,0x11, - 0xac,0x17,0x03,0xf0,0x07,0x2c,0x0f,0xd2, - 0xd0,0xf6,0xf0,0xe7,0xa0,0x8a,0x4c,0x28, - 0xea,0x20,0x46,0xed,0x8d,0x10,0x03,0x8c, - 0x11,0x03,0xa2,0x83,0xad,0x14,0xd0,0x4a, - 0xd0,0x02,0xa2,0x9c,0x8e,0x15,0x03,0xad, - 0x0c,0x03,0x20,0x54,0xed,0x85,0x34,0xad, - 0x10,0x03,0x20,0x54,0xed,0x18,0xe5,0x34, - 0x85,0x34,0xa0,0x00,0xb0,0x01,0x88,0xad, - 0x11,0x03,0x38,0xed,0x0d,0x03,0xaa,0xf0, - 0x0c,0xa5,0x34,0x18,0x6d,0x15,0x03,0x90, - 0x01,0xc8,0xca,0xd0,0xf6,0x84,0x35,0x0a, - 0x26,0x35,0x85,0x34,0xa4,0x35,0x06,0x34, - 0x26,0x35,0x65,0x34,0xaa,0x98,0x65,0x35, - 0xca,0x8e,0x04,0xd2,0x8e,0xee,0x02,0xe8, - 0xd0,0x02,0xe9,0x00,0x8d,0x06,0xd2,0x8d, - 0xef,0x02,0xae,0x32,0x02,0x8a,0x29,0xfc, - 0x8d,0x0f,0xd2,0x8d,0x0a,0xd2,0x8e,0x0f, - 0xd2,0x20,0x06,0xeb,0xa9,0x55,0xa0,0x00, - 0xa2,0x02,0x91,0x32,0xe6,0x32,0xd0,0x02, - 0xe6,0x33,0xca,0xd0,0xf5,0x0a,0x85,0x31, - 0x20,0x4d,0xeb,0x4c,0x89,0xeb,0xa4,0x14, - 0xad,0x0b,0xd4,0xc4,0x14,0xd0,0xf7,0xc9, - 0x7c,0xf0,0xf3,0x60,0x38,0xe9,0x7c,0xb0, - 0x03,0x6d,0x15,0x03,0x60,0x60,0xa9,0x31, - 0x8d,0x00,0x03,0xa9,0x0f,0x8d,0x06,0x03, - 0xad,0x02,0x03,0x8d,0x3b,0x02,0xc9,0x53, - 0xd0,0x20,0xa9,0xea,0x8d,0x04,0x03,0xa9, - 0x02,0x8d,0x05,0x03,0x0a,0x8d,0x08,0x03, - 0xa9,0x00,0x8d,0x09,0x03,0x20,0xaa,0xed, - 0x30,0x07,0xae,0xec,0x02,0x8e,0x46,0x02, - 0xaa,0x60,0xa0,0x80,0x8c,0x08,0x03,0xa0, - 0x00,0x8c,0x09,0x03,0xc9,0x57,0xf0,0x19, - 0xc9,0x21,0xd0,0x06,0xad,0x46,0x02,0x8d, - 0x06,0x03,0xa9,0x40,0x8d,0x03,0x03,0x20, - 0x59,0xe4,0xad,0x02,0x03,0xc0,0x00,0x38, - 0x60,0xa9,0x80,0xd0,0xef,0xa9,0x1e,0x8d, - 0x14,0x03,0x60,0xa2,0x28,0xa4,0x2b,0xc0, - 0x53,0xd0,0x02,0xa2,0x1d,0x86,0x1e,0xe6, - 0x1d,0xa6,0x1d,0x9d,0xbf,0x03,0xc9,0x9b, - 0xf0,0x0b,0xe4,0x1e,0xb0,0x11,0xa0,0x01, - 0x60,0xa6,0x1d,0xf0,0xf9,0xa9,0x20,0x9d, - 0xc0,0x03,0xe8,0xe4,0x1e,0x90,0xf8,0xa0, - 0x0a,0xb9,0x0f,0xee,0x99,0xff,0x02,0x88, - 0xd0,0xf7,0x84,0x1d,0x8e,0x08,0x03,0x8a, - 0x29,0x1d,0x49,0x4e,0x8d,0x0a,0x03,0xad, - 0x14,0x03,0x8d,0x06,0x03,0x4c,0x59,0xe4, - 0x40,0x01,0x57,0x80,0xc0,0x03,0x00,0x00, - 0x00,0x00,0xa9,0x00,0x85,0x1d,0xa2,0x09, - 0xbd,0x35,0xee,0x9d,0x00,0x03,0xca,0x10, - 0xf7,0x20,0x07,0xee,0x30,0x06,0xad,0xec, - 0x02,0x8d,0x14,0x03,0x60,0x40,0x01,0x53, - 0x40,0xea,0x02,0x00,0x00,0x04,0x00,0xa9, - 0xcc,0x8d,0xee,0x02,0xa9,0x05,0x8d,0xef, - 0x02,0x60,0xa5,0x2b,0x85,0x3e,0xa2,0x80, - 0xa5,0x2a,0x29,0x0c,0xc9,0x04,0xf0,0x05, - 0xc9,0x08,0xf0,0x03,0x60,0xa2,0x00,0x8e, - 0x89,0x02,0xa9,0x80,0x85,0x3d,0x8d,0x8a, - 0x02,0x0a,0x85,0x3f,0x2c,0x89,0x02,0x10, - 0x05,0x06,0x3d,0x20,0xb7,0xef,0x20,0xb7, - 0xef,0x20,0x6d,0xfe,0x30,0x20,0x2c,0x89, - 0x02,0x10,0x08,0xa9,0xff,0x8d,0x0f,0x03, - 0x20,0xa3,0xea,0xa9,0x34,0x8d,0x02,0xd3, - 0xa2,0x00,0x2c,0x89,0x02,0x30,0x02,0xa2, - 0x01,0x20,0x91,0xef,0xa0,0x01,0x60,0xad, - 0x89,0x02,0x10,0x0a,0xa5,0x3d,0xf0,0x03, - 0x20,0x10,0xef,0x20,0x10,0xef,0xa9,0x3c, - 0x8d,0x02,0xd3,0xa0,0x00,0x8c,0x01,0xd2, - 0x8c,0x03,0xd2,0x8c,0x07,0xd2,0xc8,0x60, - 0xa5,0x3f,0xd0,0x1d,0xa6,0x3d,0xec,0x8a, - 0x02,0xf0,0x08,0xbd,0x00,0x04,0xe6,0x3d, - 0xa0,0x01,0x60,0x20,0x40,0xef,0x30,0x0b, - 0xad,0xff,0x03,0xc9,0xfe,0xd0,0x05,0x85, - 0x3f,0xa0,0x88,0x60,0xa2,0x00,0x86,0x3d, - 0xa2,0x80,0xc9,0xfc,0xd0,0x06,0x8e,0x8a, - 0x02,0x4c,0xc4,0xee,0xc9,0xfa,0xd0,0x05, - 0xae,0x7f,0x04,0xb0,0xf1,0xa0,0xa3,0x60, - 0xa6,0x3d,0x9d,0x00,0x04,0xe8,0x86,0x3d, - 0xec,0x8a,0x02,0xb0,0x03,0xa0,0x01,0x60, - 0xa9,0x00,0xa2,0xfe,0xa4,0x3d,0xd0,0x08, - 0x99,0x00,0x04,0xc8,0x10,0xfa,0x30,0x0c, - 0xa2,0xfc,0xcc,0x8a,0x02,0xb0,0x05,0xa2, - 0xfa,0x8c,0x7f,0x04,0x8e,0xff,0x03,0x85, - 0x3d,0xa9,0x55,0x8d,0xfd,0x03,0x8d,0xfe, - 0x03,0xa2,0x80,0xa0,0x50,0x4c,0x44,0xef, - 0xa2,0x40,0xa0,0x52,0xa9,0x34,0x8d,0x02, - 0xd3,0x8e,0x03,0x03,0x8c,0x02,0x03,0xa9, - 0xfd,0x8d,0x04,0x03,0xa9,0x03,0x8d,0x05, - 0x03,0xa9,0x83,0x8d,0x08,0x03,0xa9,0x00, - 0x8d,0x09,0x03,0xa9,0x60,0x8d,0x00,0x03, - 0xa9,0x00,0x8d,0x01,0x03,0xa5,0x3e,0x8d, - 0x0b,0x03,0x20,0x59,0xe4,0xa5,0x3e,0x30, - 0x0f,0x2c,0x89,0x02,0x10,0x05,0xa2,0x06, - 0x20,0x91,0xef,0xa9,0x3c,0x8d,0x02,0xd3, - 0xa4,0x30,0x60,0x2c,0x0b,0x03,0x10,0x01, - 0xe8,0x20,0x64,0xea,0xbc,0xa9,0xef,0xbd, - 0xb0,0xef,0xaa,0xa9,0x01,0x8d,0x17,0x03, - 0x20,0x66,0xe8,0xad,0x17,0x03,0xd0,0xfb, - 0x60,0x80,0x40,0xb4,0x0f,0x78,0x0a,0x3c, - 0x04,0x02,0x00,0x00,0x00,0x00,0x00,0xa0, - 0x00,0x98,0xa2,0x0a,0x48,0xad,0x0b,0xd4, - 0xcd,0x0b,0xd4,0xf0,0xfb,0xca,0xd0,0xf5, - 0x68,0x49,0x08,0x8d,0x1f,0xd0,0xd0,0xea, - 0x88,0xd0,0xe7,0x60,0x50,0x30,0xe4,0x43, - 0x40,0xe4,0x45,0x00,0xe4,0x53,0x10,0xe4, - 0x4b,0x20,0xe4,0x6c,0xfe,0xbf,0x78,0xd8, - 0xa2,0xff,0x9a,0x78,0xd8,0xa2,0xff,0x9a, - 0xe8,0x86,0x08,0xad,0xfc,0xbf,0xd0,0x17, - 0xa2,0xff,0xec,0xff,0xbf,0xf0,0x10,0x8e, - 0xfc,0xbf,0xcd,0xfc,0xbf,0x8d,0xfc,0xbf, - 0xd0,0x05,0x2c,0xfd,0xbf,0x30,0xd4,0x20, - 0x5e,0xf0,0x20,0x8a,0xf0,0xa6,0x06,0xa0, - 0x08,0xa9,0x00,0x85,0x66,0x85,0x67,0x91, - 0x66,0xc8,0xd0,0xfb,0xe6,0x67,0xca,0xd0, - 0xf6,0xa9,0x80,0x85,0x0a,0xa9,0xe4,0x85, - 0x0b,0xce,0x44,0x02,0x4c,0xc8,0xf0,0x78, - 0xad,0x44,0x02,0xd0,0xae,0xd8,0xa2,0xff, - 0x9a,0x86,0x08,0x20,0x5e,0xf0,0x20,0x8a, - 0xf0,0xa2,0x60,0xa9,0x00,0x95,0x0f,0xca, - 0xd0,0xfb,0x9d,0x00,0x02,0x9d,0xed,0x02, - 0xe8,0xd0,0xf7,0x4c,0xc8,0xf0,0xa0,0x00, - 0x98,0x99,0x00,0xd0,0x99,0x00,0xd2,0x99, - 0x00,0xd4,0xc8,0xd0,0xf4,0xa9,0x3c,0xa2, - 0x38,0x8e,0x02,0xd3,0x8e,0x03,0xd3,0x8c, - 0x00,0xd3,0x8c,0x01,0xd3,0x8d,0x02,0xd3, - 0x8d,0x03,0xd3,0x8c,0x00,0xd3,0x8c,0x01, - 0xd3,0x60,0xa0,0x00,0x84,0x64,0xa2,0x02, - 0x86,0x65,0xb1,0x64,0x49,0xff,0x91,0x64, - 0xd1,0x64,0xd0,0x09,0x49,0xff,0x91,0x64, - 0xe8,0xe0,0xd0,0xd0,0xeb,0x86,0x06,0x60, - 0x66,0xe7,0x65,0xe7,0x65,0xe7,0x65,0xe7, - 0xd3,0xfe,0x94,0xeb,0xdd,0xeb,0x16,0xec, - 0x65,0xe7,0x65,0xe7,0x65,0xe7,0xca,0xe8, - 0x1d,0xe7,0x61,0xe7,0x00,0x00,0x30,0x28, - 0xa5,0x06,0x8d,0xe4,0x02,0xa9,0x02,0x85, - 0x52,0xa9,0x27,0x85,0x53,0xa2,0x17,0xbd, - 0xa8,0xf0,0x9d,0x00,0x02,0xca,0x10,0xf7, - 0xa2,0x05,0xbd,0xc0,0xf0,0x9d,0x22,0x02, - 0xca,0x10,0xf7,0xa9,0x07,0x8d,0x36,0x02, - 0xa9,0xff,0x8d,0x37,0x02,0xa2,0xff,0x86, - 0x11,0xe8,0x8e,0xe5,0x02,0x8e,0xe7,0x02, - 0xa5,0x06,0x8d,0xe6,0x02,0xa2,0x07,0x8e, - 0xe8,0x02,0x20,0x5d,0xed,0x20,0x91,0xf5, - 0x20,0x52,0xfe,0x20,0xbd,0xed,0xa2,0x0e, - 0xbd,0xd4,0xef,0x9d,0x1a,0x03,0xca,0x10, - 0xf7,0x20,0x6e,0xe4,0x20,0x42,0xe9,0x20, - 0x7c,0xe8,0xad,0x1f,0xd0,0x29,0x01,0x49, - 0x01,0x8d,0xe9,0x03,0x58,0xa9,0x00,0x85, - 0x07,0xad,0xfc,0x9f,0xd0,0x18,0xad,0xfb, - 0x9f,0xaa,0x49,0xff,0x8d,0xfb,0x9f,0xcd, - 0xfb,0x9f,0x8e,0xfb,0x9f,0xf0,0x07,0x20, - 0xff,0xf1,0xa9,0x01,0x85,0x07,0xa9,0x00, - 0x85,0x06,0xad,0xfc,0xbf,0xd0,0x18,0xad, - 0xfb,0xbf,0xaa,0x49,0xff,0x8d,0xfb,0xbf, - 0xcd,0xfb,0xbf,0x8e,0xfb,0xbf,0xf0,0x07, - 0x20,0xfc,0xf1,0xa9,0x01,0x85,0x06,0xa9, - 0x03,0x8d,0x42,0x03,0xa9,0x02,0x8d,0x44, - 0x03,0xa9,0xf2,0x8d,0x45,0x03,0xa9,0x0c, - 0x8d,0x4a,0x03,0xa2,0x00,0x8e,0x4b,0x03, - 0x20,0x56,0xe4,0xa5,0x14,0xc5,0x14,0xf0, - 0xfc,0xa5,0x08,0xd0,0x0b,0xad,0xe9,0x03, - 0xf0,0x0f,0x20,0x69,0xf2,0x4c,0xb1,0xf1, - 0xa9,0x02,0x24,0x09,0xf0,0x03,0x20,0x06, - 0xf2,0xa5,0x08,0xd0,0x1d,0xa5,0x07,0xd0, - 0x06,0xa6,0x06,0xf0,0x0f,0xd0,0x07,0xad, - 0xfd,0x9f,0xa6,0x06,0xf0,0x03,0x0d,0xfd, - 0xbf,0x4a,0x90,0x0e,0x20,0x0a,0xf2,0x4c, - 0xda,0xf1,0xa5,0x09,0x4a,0x90,0x03,0x20, - 0x03,0xf2,0xa2,0x00,0x8e,0x44,0x02,0xa9, - 0x04,0xa6,0x06,0xf0,0x08,0x2c,0xfd,0xbf, - 0xf0,0x03,0x6c,0xfa,0xbf,0xa6,0x07,0xf0, - 0x08,0x2c,0xfd,0x9f,0xf0,0x03,0x6c,0xfa, - 0x9f,0x6c,0x0a,0x00,0x6c,0xfe,0xbf,0x6c, - 0xfe,0x9f,0x45,0x6c,0x0c,0x00,0x6c,0x02, - 0x00,0xea,0xa9,0x53,0x8d,0x02,0x03,0xa2, - 0x01,0x8e,0x01,0x03,0x20,0x53,0xe4,0x30, - 0x3c,0xa2,0x01,0x8e,0x01,0x03,0x8e,0x0a, - 0x03,0xca,0x8e,0x04,0x03,0x8e,0x0b,0x03, - 0xa9,0x52,0x8d,0x02,0x03,0xa9,0x04,0x8d, - 0x05,0x03,0x20,0x53,0xe4,0x30,0x1a,0xa2, - 0x0c,0x20,0xa4,0xf2,0x20,0xd3,0xf2,0xce, - 0x41,0x02,0xf0,0x18,0xee,0x0a,0x03,0xd0, - 0x03,0xee,0x0b,0x03,0x20,0x53,0xe4,0x10, - 0xeb,0xc0,0x8a,0xd0,0x01,0x60,0x20,0xe8, - 0xf2,0x4c,0x0a,0xf2,0x20,0xc1,0xf2,0xb0, - 0xf5,0x20,0x03,0xf2,0xa9,0x01,0x85,0x09, - 0x60,0xa9,0x80,0x85,0x3e,0x20,0x7d,0xe4, - 0x20,0x7a,0xe4,0x30,0x24,0xa2,0x02,0x20, - 0xa4,0xf2,0x20,0xd3,0xf2,0x20,0x7a,0xe4, - 0x30,0x17,0xce,0x41,0x02,0xd0,0xf3,0x20, - 0xc1,0xf2,0x20,0x06,0xf2,0xa9,0x00,0x8d, - 0xe9,0x03,0xa9,0x02,0x85,0x09,0x6c,0x0a, - 0x00,0xa9,0x00,0x8d,0xe9,0x03,0x20,0x9f, - 0xee,0x4c,0xe8,0xf2,0xa0,0xfc,0xb9,0x04, - 0x03,0x99,0x44,0x01,0xc8,0xd0,0xf7,0x85, - 0x16,0xad,0x42,0x02,0x85,0x15,0xad,0x04, - 0x04,0x95,0x00,0xad,0x05,0x04,0x95,0x01, - 0x60,0xad,0x42,0x02,0x18,0x69,0x06,0x85, - 0x04,0xad,0x43,0x02,0x69,0x00,0x85,0x05, - 0x6c,0x04,0x00,0xa0,0x7f,0xb9,0x00,0x04, - 0x91,0x15,0x88,0x10,0xf8,0xa5,0x15,0x49, - 0x80,0x85,0x15,0x30,0x02,0xe6,0x16,0x60, - 0xa2,0xf5,0x8a,0x48,0xbd,0x03,0xf2,0x20, - 0xab,0xfa,0x68,0xaa,0xe8,0xd0,0xf3,0x60, - 0x42,0x4f,0x4f,0x54,0x20,0x45,0x52,0x52, - 0x4f,0x52,0x9b,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0xd0,0x03,0xbd,0x18,0x02,0x60,0x0a,0x8c, + 0x2d,0x02,0xa8,0x8a,0x08,0x78,0xee,0x0a, + 0xd4,0xa2,0x7c,0x08,0x28,0x08,0x28,0xec, + 0x0b,0xd4,0xf0,0x0b,0x99,0x17,0x02,0xad, + 0x2d,0x02,0x99,0x16,0x02,0x28,0x60,0x08, + 0x28,0xf0,0xf1,0xa9,0x40,0x8d,0x0e,0xd4, + 0x60,0x2c,0x0f,0xd4,0x10,0x06,0x6c,0x00, + 0x02,0x4c,0x74,0xe4,0x48,0xa9,0x20,0x2c, + 0x0f,0xd4,0xd0,0xf5,0x8a,0x48,0x98,0x48, + 0x8d,0x0f,0xd4,0x6c,0x22,0x02,0x6c,0x16, + 0x02,0xa9,0xef,0x20,0x48,0xe9,0x6c,0x0c, + 0x02,0x2c,0x0e,0xd2,0xd0,0x3c,0x6c,0x0e, + 0x02,0xa9,0xfe,0x20,0x48,0xe9,0x6c,0x10, + 0x02,0xa9,0xfd,0x20,0x48,0xe9,0x6c,0x12, + 0x02,0xa9,0xfb,0x20,0x48,0xe9,0x6c,0x14, + 0x02,0x48,0xa9,0x20,0x2c,0x0e,0xd2,0xd0, + 0x0d,0xa9,0xdf,0x8d,0x0e,0xd2,0xa5,0x10, + 0x8d,0x0e,0xd2,0x6c,0x0a,0x02,0xa9,0x10, + 0x2c,0x0e,0xd2,0xf0,0xbc,0x4a,0x24,0x10, + 0xd0,0xbf,0xad,0x0e,0xd2,0x4a,0x90,0xc1, + 0x4a,0x90,0xc6,0x4a,0x90,0xcb,0x2c,0x0e, + 0xd2,0x50,0x21,0x10,0x27,0x2c,0x02,0xd3, + 0x30,0x2a,0x2c,0x03,0xd3,0x30,0x2b,0x68, + 0x8d,0x8c,0x02,0x68,0x48,0x29,0x10,0xf0, + 0x07,0xad,0x8c,0x02,0x48,0x6c,0x06,0x02, + 0xad,0x8c,0x02,0x40,0xa9,0xbf,0x20,0x48, + 0xe9,0x6c,0x08,0x02,0xa9,0x7f,0x20,0x48, + 0xe9,0x6c,0x36,0x02,0xad,0x00,0xd3,0x6c, + 0x02,0x02,0xad,0x01,0xd3,0x6c,0x04,0x02, + 0x8d,0x0e,0xd2,0xa5,0x10,0x8d,0x0e,0xd2, + 0x60,0xa9,0x03,0x8d,0x0f,0xd2,0x8d,0x32, + 0x02,0x85,0x41,0x60,0xa9,0x01,0x8d,0xbd, + 0x02,0x85,0x42,0xba,0x8e,0x18,0x03,0x20, + 0x73,0xea,0xa2,0x00,0xad,0x00,0x03,0xc9, + 0x60,0xd0,0x01,0xca,0x8e,0x0f,0x03,0x20, + 0xc6,0xea,0x2c,0x0f,0x03,0x10,0x03,0x4c, + 0x3c,0xec,0xa9,0x0d,0x8d,0x9c,0x02,0xad, + 0x00,0x03,0x18,0x6d,0x01,0x03,0x38,0xe9, + 0x01,0x8d,0x3a,0x02,0xad,0x02,0x03,0x8d, + 0x3b,0x02,0xad,0x0a,0x03,0x8d,0x3c,0x02, + 0xad,0x0b,0x03,0x8d,0x3d,0x02,0xa9,0x34, + 0x8d,0x03,0xd3,0xa2,0x05,0xac,0x0b,0xd4, + 0xcc,0x0b,0xd4,0xf0,0xfb,0xc8,0xca,0xd0, + 0xf7,0xa9,0x00,0x85,0x3c,0xa9,0x02,0x85, + 0x33,0x85,0x35,0xa9,0x3a,0x85,0x32,0xa9, + 0x3e,0x85,0x34,0x20,0x2b,0xeb,0x30,0x67, + 0x20,0x7e,0xea,0x10,0x0a,0x20,0x98,0xeb, + 0xce,0x9c,0x02,0x10,0xaa,0x30,0x4d,0x2c, + 0x03,0x03,0x10,0x0d,0x20,0x15,0xeb,0x20, + 0x2b,0xeb,0x30,0x4b,0x20,0x7e,0xea,0x30, + 0xe4,0xa2,0xff,0x86,0x3c,0xad,0x06,0x03, + 0x6a,0x6a,0x48,0x6a,0x29,0xc0,0xa8,0x68, + 0x29,0x3f,0xaa,0xa9,0x01,0x8d,0x17,0x03, + 0x20,0x5c,0xe4,0xa2,0x3e,0x86,0x32,0xe8, + 0x86,0x34,0xa2,0x02,0x86,0x33,0x86,0x35, + 0x20,0x5a,0xeb,0x30,0x0f,0xad,0x3e,0x02, + 0xc9,0x45,0xf0,0x34,0x09,0x02,0xc9,0x43, + 0xf0,0x2e,0xa0,0x90,0x20,0x98,0xeb,0xce, + 0xbd,0x02,0x30,0x03,0x4c,0x82,0xe9,0xae, + 0x0f,0x03,0xd0,0x0c,0x8e,0x01,0xd2,0x8e, + 0x03,0xd2,0x8e,0x05,0xd2,0x8e,0x07,0xd2, + 0xae,0x18,0x03,0x9a,0xa9,0x00,0x85,0x42, + 0xc0,0x00,0x8c,0x03,0x03,0x84,0x30,0x60, + 0x2c,0x03,0x03,0x50,0x08,0x20,0x15,0xeb, + 0x20,0x5a,0xeb,0x30,0xc7,0x20,0x98,0xeb, + 0xad,0x3e,0x02,0xc9,0x45,0xf0,0xbb,0xa0, + 0x01,0xd0,0xc4,0xa9,0x36,0x8d,0x26,0x02, + 0xa9,0xec,0x8d,0x27,0x02,0x60,0xa2,0xff, + 0x86,0x3c,0xe8,0xa9,0x01,0x8d,0x17,0x03, + 0xa0,0x02,0x84,0x33,0x84,0x35,0x20,0x5c, + 0xe4,0xa2,0x3e,0x86,0x32,0xe8,0x86,0x34, + 0x20,0x5a,0xeb,0x30,0x09,0xad,0x3e,0x02, + 0xc9,0x41,0xf0,0x02,0xa0,0x8b,0x60,0xa5, + 0x10,0x09,0x10,0x29,0xf7,0x85,0x10,0x8d, + 0x0e,0xd2,0xad,0x32,0x02,0x29,0x0f,0x09, + 0x20,0xae,0x0f,0x03,0xf0,0x02,0x09,0x08, + 0x8d,0x32,0x02,0x8d,0x0f,0xd2,0xa2,0x08, + 0xad,0x0f,0x03,0xf0,0x02,0xa2,0x11,0xa0, + 0x08,0xbd,0xfa,0xea,0xca,0x99,0x00,0xd2, + 0x88,0x10,0xf6,0xa5,0x41,0xf0,0x17,0xa9, + 0xa8,0x8d,0x07,0xd2,0xae,0x0f,0x03,0xf0, + 0x0d,0xa9,0x10,0x2c,0x32,0x02,0xd0,0x06, + 0x8d,0x01,0xd2,0x8d,0x03,0xd2,0x8d,0x0a, + 0xd2,0x60,0x00,0xa0,0x00,0xa0,0x28,0xa0, + 0x00,0xa0,0x28,0x05,0xa0,0x07,0xa0,0xcc, + 0xa0,0x05,0xa0,0x28,0x00,0xa0,0x00,0xa0, + 0xcc,0xa0,0x05,0xa0,0x28,0x18,0xad,0x04, + 0x03,0x85,0x32,0x6d,0x08,0x03,0x85,0x34, + 0xad,0x05,0x03,0x85,0x33,0x6d,0x09,0x03, + 0x85,0x35,0x60,0x78,0x20,0xa7,0xea,0xa0, + 0x00,0x84,0x3a,0x84,0x30,0x84,0x3b,0xb1, + 0x32,0x8d,0x0d,0xd2,0x85,0x31,0x58,0xa5, + 0x11,0xf0,0x06,0xa5,0x3a,0xf0,0xf8,0xd0, + 0x04,0xa0,0x80,0x84,0x30,0x78,0xa5,0x10, + 0x29,0xe7,0x85,0x10,0x8d,0x0e,0xd2,0x58, + 0x98,0x60,0xa9,0x00,0x85,0x31,0xa2,0x00, + 0x86,0x39,0x86,0x38,0xe8,0x86,0x30,0x78, + 0xad,0x32,0x02,0x29,0x8f,0x09,0x10,0x8d, + 0x32,0x02,0x8d,0x0f,0xd2,0xa5,0x10,0x09, + 0x20,0x85,0x10,0x8d,0x0e,0xd2,0x58,0xa9, + 0x3c,0x8d,0x03,0xd3,0xad,0x17,0x03,0xf0, + 0x0b,0xa4,0x30,0x30,0x05,0xa5,0x39,0xf0, + 0xf3,0x98,0x78,0x60,0xa0,0x8a,0x78,0x60, + 0xa5,0x10,0x29,0xd7,0x85,0x10,0x8d,0x0e, + 0xd2,0x58,0x60,0xa5,0x38,0xd0,0x2a,0x98, + 0x48,0xad,0x0d,0xd2,0xa0,0x00,0x91,0x32, + 0x18,0x65,0x31,0x69,0x00,0x85,0x31,0x68, + 0xa8,0xe6,0x32,0xd0,0x02,0xe6,0x33,0xa5, + 0x32,0xc5,0x34,0xa5,0x33,0xe5,0x35,0x90, + 0x06,0xc6,0x38,0xa5,0x3c,0xd0,0x15,0x68, + 0x40,0xad,0x0d,0xd2,0xc5,0x31,0xd0,0x06, + 0xa9,0xff,0x85,0x39,0x68,0x40,0xa9,0x8f, + 0x85,0x30,0xd0,0xf4,0x85,0x39,0xa9,0x00, + 0x85,0x3c,0x68,0x40,0xe6,0x32,0xd0,0x02, + 0xe6,0x33,0xa5,0x32,0xc5,0x34,0xa5,0x33, + 0xe5,0x35,0xb0,0x13,0x98,0x48,0xa0,0x00, + 0xb1,0x32,0x8d,0x0d,0xd2,0x65,0x31,0x69, + 0x00,0x85,0x31,0x68,0xa8,0x68,0x40,0xa5, + 0x31,0x8d,0x0d,0xd2,0xa9,0xff,0x85,0x3b, + 0xa5,0x10,0x09,0x08,0x29,0xef,0x85,0x10, + 0x8d,0x0e,0xd2,0x68,0x40,0xa5,0x3b,0xf0, + 0x0b,0x85,0x3a,0xa5,0x10,0x29,0xf7,0x85, + 0x10,0x8d,0x0e,0xd2,0x68,0x40,0xa9,0x00, + 0x8d,0x17,0x03,0x60,0xad,0x02,0x03,0xc9, + 0x52,0xf0,0x0f,0xc9,0x50,0xf0,0x05,0xa0, + 0x8b,0x4c,0x37,0xea,0x20,0x58,0xec,0x4c, + 0x37,0xea,0x20,0x69,0xec,0x4c,0x37,0xea, + 0xa2,0x02,0x20,0x9a,0xef,0x20,0xa7,0xea, + 0x20,0x15,0xeb,0x20,0x2b,0xeb,0x4c,0x37, + 0xea,0xa2,0x04,0x20,0x9a,0xef,0xa2,0x1a, + 0x20,0xcf,0xea,0xad,0x32,0x02,0x29,0x8f, + 0x09,0x10,0x8d,0x32,0x02,0xa9,0x01,0x8d, + 0x17,0x03,0xa2,0x0e,0xa0,0x10,0x20,0x66, + 0xe8,0xa9,0x10,0xac,0x17,0x03,0xf0,0x2b, + 0x2c,0x0f,0xd2,0xd0,0xf6,0x20,0x55,0xed, + 0x8c,0x0d,0x03,0x8d,0x0c,0x03,0xa9,0x10, + 0xa2,0x0a,0xac,0x17,0x03,0xf0,0x14,0x2c, + 0x0f,0xd2,0xf0,0xf6,0xca,0xf0,0x11,0xac, + 0x17,0x03,0xf0,0x07,0x2c,0x0f,0xd2,0xd0, + 0xf6,0xf0,0xe7,0xa0,0x8a,0x4c,0x37,0xea, + 0x20,0x55,0xed,0x8d,0x10,0x03,0x8c,0x11, + 0x03,0xa2,0x83,0xad,0x14,0xd0,0x4a,0xd0, + 0x02,0xa2,0x9c,0x8e,0x15,0x03,0xad,0x0c, + 0x03,0x20,0x63,0xed,0x85,0x34,0xad,0x10, + 0x03,0x20,0x63,0xed,0x18,0xe5,0x34,0x85, + 0x34,0xa0,0x00,0xb0,0x01,0x88,0xad,0x11, + 0x03,0x38,0xed,0x0d,0x03,0xaa,0xf0,0x0c, + 0xa5,0x34,0x18,0x6d,0x15,0x03,0x90,0x01, + 0xc8,0xca,0xd0,0xf6,0x84,0x35,0x0a,0x26, + 0x35,0x85,0x34,0xa4,0x35,0x06,0x34,0x26, + 0x35,0x65,0x34,0xaa,0x98,0x65,0x35,0xca, + 0x8e,0x04,0xd2,0x8e,0xee,0x02,0xe8,0xd0, + 0x02,0xe9,0x00,0x8d,0x06,0xd2,0x8d,0xef, + 0x02,0xae,0x32,0x02,0x8a,0x29,0xfc,0x8d, + 0x0f,0xd2,0x8d,0x0a,0xd2,0x8e,0x0f,0xd2, + 0x20,0x15,0xeb,0xa9,0x55,0xa0,0x00,0xa2, + 0x02,0x91,0x32,0xe6,0x32,0xd0,0x02,0xe6, + 0x33,0xca,0xd0,0xf5,0x0a,0x85,0x31,0x20, + 0x5c,0xeb,0x4c,0x98,0xeb,0xa4,0x14,0xad, + 0x0b,0xd4,0xc4,0x14,0xd0,0xf7,0xc9,0x7c, + 0xf0,0xf3,0x60,0x38,0xe9,0x7c,0xb0,0x03, + 0x6d,0x15,0x03,0x60,0x60,0xa9,0x31,0x8d, + 0x00,0x03,0xa9,0x0f,0x8d,0x06,0x03,0xad, + 0x02,0x03,0x8d,0x3b,0x02,0xc9,0x53,0xd0, + 0x20,0xa9,0xea,0x8d,0x04,0x03,0xa9,0x02, + 0x8d,0x05,0x03,0x0a,0x8d,0x08,0x03,0xa9, + 0x00,0x8d,0x09,0x03,0x20,0xb9,0xed,0x30, + 0x07,0xae,0xec,0x02,0x8e,0x46,0x02,0xaa, + 0x60,0xa0,0x80,0x8c,0x08,0x03,0xa0,0x00, + 0x8c,0x09,0x03,0xc9,0x57,0xf0,0x19,0xc9, + 0x21,0xd0,0x06,0xad,0x46,0x02,0x8d,0x06, + 0x03,0xa9,0x40,0x8d,0x03,0x03,0x20,0x59, + 0xe4,0xad,0x02,0x03,0xc0,0x00,0x38,0x60, + 0xa9,0x80,0xd0,0xef,0xa9,0x1e,0x8d,0x14, + 0x03,0x60,0xa2,0x28,0xa4,0x2b,0xc0,0x53, + 0xd0,0x02,0xa2,0x1d,0x86,0x1e,0xe6,0x1d, + 0xa6,0x1d,0x9d,0xbf,0x03,0xc9,0x9b,0xf0, + 0x0b,0xe4,0x1e,0xb0,0x11,0xa0,0x01,0x60, + 0xa6,0x1d,0xf0,0xf9,0xa9,0x20,0x9d,0xc0, + 0x03,0xe8,0xe4,0x1e,0x90,0xf8,0xa0,0x0a, + 0xb9,0x1e,0xee,0x99,0xff,0x02,0x88,0xd0, + 0xf7,0x84,0x1d,0x8e,0x08,0x03,0x8a,0x29, + 0x1d,0x49,0x4e,0x8d,0x0a,0x03,0xad,0x14, + 0x03,0x8d,0x06,0x03,0x4c,0x59,0xe4,0x40, + 0x01,0x57,0x80,0xc0,0x03,0x00,0x00,0x00, + 0x00,0xa9,0x00,0x85,0x1d,0xa2,0x09,0xbd, + 0x44,0xee,0x9d,0x00,0x03,0xca,0x10,0xf7, + 0x20,0x16,0xee,0x30,0x06,0xad,0xec,0x02, + 0x8d,0x14,0x03,0x60,0x40,0x01,0x53,0x40, + 0xea,0x02,0x00,0x00,0x04,0x00,0xa9,0xcc, + 0x8d,0xee,0x02,0xa9,0x05,0x8d,0xef,0x02, + 0x60,0xa5,0x2b,0x85,0x3e,0xa2,0x80,0xa5, + 0x2a,0x29,0x0c,0xc9,0x04,0xf0,0x05,0xc9, + 0x08,0xf0,0x03,0x60,0xa2,0x00,0x8e,0x89, + 0x02,0xa9,0x80,0x85,0x3d,0x8d,0x8a,0x02, + 0x0a,0x85,0x3f,0x2c,0x89,0x02,0x10,0x05, + 0x06,0x3d,0x20,0xc6,0xef,0x20,0xc6,0xef, + 0x20,0x68,0xfe,0x30,0x20,0x2c,0x89,0x02, + 0x10,0x08,0xa9,0xff,0x8d,0x0f,0x03,0x20, + 0xb2,0xea,0xa9,0x34,0x8d,0x02,0xd3,0xa2, + 0x00,0x2c,0x89,0x02,0x30,0x02,0xa2,0x01, + 0x20,0xa0,0xef,0xa0,0x01,0x60,0xad,0x89, + 0x02,0x10,0x0a,0xa5,0x3d,0xf0,0x03,0x20, + 0x1f,0xef,0x20,0x1f,0xef,0xa9,0x3c,0x8d, + 0x02,0xd3,0xa0,0x00,0x8c,0x01,0xd2,0x8c, + 0x03,0xd2,0x8c,0x07,0xd2,0xc8,0x60,0xa5, + 0x3f,0xd0,0x1d,0xa6,0x3d,0xec,0x8a,0x02, + 0xf0,0x08,0xbd,0x00,0x04,0xe6,0x3d,0xa0, + 0x01,0x60,0x20,0x4f,0xef,0x30,0x0b,0xad, + 0xff,0x03,0xc9,0xfe,0xd0,0x05,0x85,0x3f, + 0xa0,0x88,0x60,0xa2,0x00,0x86,0x3d,0xa2, + 0x80,0xc9,0xfc,0xd0,0x06,0x8e,0x8a,0x02, + 0x4c,0xd3,0xee,0xc9,0xfa,0xd0,0x05,0xae, + 0x7f,0x04,0xb0,0xf1,0xa0,0xa3,0x60,0xa6, + 0x3d,0x9d,0x00,0x04,0xe8,0x86,0x3d,0xec, + 0x8a,0x02,0xb0,0x03,0xa0,0x01,0x60,0xa9, + 0x00,0xa2,0xfe,0xa4,0x3d,0xd0,0x08,0x99, + 0x00,0x04,0xc8,0x10,0xfa,0x30,0x0c,0xa2, + 0xfc,0xcc,0x8a,0x02,0xb0,0x05,0xa2,0xfa, + 0x8c,0x7f,0x04,0x8e,0xff,0x03,0x85,0x3d, + 0xa9,0x55,0x8d,0xfd,0x03,0x8d,0xfe,0x03, + 0xa2,0x80,0xa0,0x50,0x4c,0x53,0xef,0xa2, + 0x40,0xa0,0x52,0xa9,0x34,0x8d,0x02,0xd3, + 0x8e,0x03,0x03,0x8c,0x02,0x03,0xa9,0xfd, + 0x8d,0x04,0x03,0xa9,0x03,0x8d,0x05,0x03, + 0xa9,0x83,0x8d,0x08,0x03,0xa9,0x00,0x8d, + 0x09,0x03,0xa9,0x60,0x8d,0x00,0x03,0xa9, + 0x00,0x8d,0x01,0x03,0xa5,0x3e,0x8d,0x0b, + 0x03,0x20,0x59,0xe4,0xa5,0x3e,0x30,0x0f, + 0x2c,0x89,0x02,0x10,0x05,0xa2,0x06,0x20, + 0xa0,0xef,0xa9,0x3c,0x8d,0x02,0xd3,0xa4, + 0x30,0x60,0x2c,0x0b,0x03,0x10,0x01,0xe8, + 0x20,0x73,0xea,0xbc,0xb8,0xef,0xbd,0xbf, + 0xef,0xaa,0xa9,0x01,0x8d,0x17,0x03,0x20, + 0x66,0xe8,0xad,0x17,0x03,0xd0,0xfb,0x60, + 0x80,0x40,0xb4,0x0f,0x78,0x0a,0x3c,0x04, + 0x02,0x00,0x00,0x00,0x00,0x00,0xa0,0x00, + 0x98,0xa2,0x0a,0x48,0xad,0x0b,0xd4,0xcd, + 0x0b,0xd4,0xf0,0xfb,0xca,0xd0,0xf5,0x68, + 0x49,0x08,0x8d,0x1f,0xd0,0xd0,0xea,0x88, + 0xd0,0xe7,0x60,0x50,0x30,0xe4,0x43,0x40, + 0xe4,0x45,0x00,0xe4,0x53,0x10,0xe4,0x4b, + 0x20,0xe4,0x6c,0xfe,0xbf,0x78,0xd8,0xa2, + 0xff,0x9a,0x78,0xd8,0xa2,0xff,0x9a,0xe8, + 0x86,0x08,0xad,0xfc,0xbf,0xd0,0x17,0xa2, + 0xff,0xec,0xff,0xbf,0xf0,0x10,0x8e,0xfc, + 0xbf,0xcd,0xfc,0xbf,0x8d,0xfc,0xbf,0xd0, + 0x05,0x2c,0xfd,0xbf,0x30,0xd4,0x20,0x6d, + 0xf0,0x20,0x99,0xf0,0xa6,0x06,0xa0,0x08, + 0xa9,0x00,0x85,0x66,0x85,0x67,0x91,0x66, + 0xc8,0xd0,0xfb,0xe6,0x67,0xca,0xd0,0xf6, + 0xa9,0x80,0x85,0x0a,0xa9,0xe4,0x85,0x0b, + 0xce,0x44,0x02,0x4c,0xd7,0xf0,0x78,0xad, + 0x44,0x02,0xd0,0xae,0xd8,0xa2,0xff,0x9a, + 0x86,0x08,0x20,0x6d,0xf0,0x20,0x99,0xf0, + 0xa2,0x60,0xa9,0x00,0x95,0x0f,0xca,0xd0, + 0xfb,0x9d,0x00,0x02,0x9d,0xed,0x02,0xe8, + 0xd0,0xf7,0x4c,0xd7,0xf0,0xa0,0x00,0x98, + 0x99,0x00,0xd0,0x99,0x00,0xd2,0x99,0x00, + 0xd4,0xc8,0xd0,0xf4,0xa9,0x3c,0xa2,0x38, + 0x8e,0x02,0xd3,0x8e,0x03,0xd3,0x8c,0x00, + 0xd3,0x8c,0x01,0xd3,0x8d,0x02,0xd3,0x8d, + 0x03,0xd3,0x8c,0x00,0xd3,0x8c,0x01,0xd3, + 0x60,0xa0,0x00,0x84,0x64,0xa2,0x02,0x86, + 0x65,0xb1,0x64,0x49,0xff,0x91,0x64,0xd1, + 0x64,0xd0,0x09,0x49,0xff,0x91,0x64,0xe8, + 0xe0,0xd0,0xd0,0xeb,0x86,0x06,0x60,0x66, + 0xe7,0x65,0xe7,0x65,0xe7,0x65,0xe7,0xcc, + 0xfe,0xa3,0xeb,0xec,0xeb,0x25,0xec,0x65, + 0xe7,0x65,0xe7,0x65,0xe7,0xd9,0xe8,0x1d, + 0xe7,0x61,0xe7,0x00,0x00,0x30,0x28,0xa5, + 0x06,0x8d,0xe4,0x02,0xa9,0x02,0x85,0x52, + 0xa9,0x27,0x85,0x53,0xa2,0x17,0xbd,0xb7, + 0xf0,0x9d,0x00,0x02,0xca,0x10,0xf7,0xa2, + 0x05,0xbd,0xcf,0xf0,0x9d,0x22,0x02,0xca, + 0x10,0xf7,0xa9,0x00,0x8d,0x36,0x02,0xa9, + 0xff,0x8d,0x37,0x02,0xa2,0xff,0x86,0x11, + 0xe8,0x8e,0xe5,0x02,0x8e,0xe7,0x02,0xa5, + 0x06,0x8d,0xe6,0x02,0xa2,0x07,0x8e,0xe8, + 0x02,0x20,0x6c,0xed,0x20,0x90,0xf5,0x20, + 0x4d,0xfe,0x20,0xcc,0xed,0xa2,0x0e,0xbd, + 0xe3,0xef,0x9d,0x1a,0x03,0xca,0x10,0xf7, + 0x20,0x6e,0xe4,0x20,0x51,0xe9,0x20,0x8b, + 0xe8,0xad,0x1f,0xd0,0x29,0x01,0x49,0x01, + 0x8d,0xe9,0x03,0x58,0xa9,0x00,0x85,0x07, + 0xad,0xfc,0x9f,0xd0,0x18,0xad,0xfb,0x9f, + 0xaa,0x49,0xff,0x8d,0xfb,0x9f,0xcd,0xfb, + 0x9f,0x8e,0xfb,0x9f,0xf0,0x07,0x20,0x0e, + 0xf2,0xa9,0x01,0x85,0x07,0xa9,0x00,0x85, + 0x06,0xad,0xfc,0xbf,0xd0,0x18,0xad,0xfb, + 0xbf,0xaa,0x49,0xff,0x8d,0xfb,0xbf,0xcd, + 0xfb,0xbf,0x8e,0xfb,0xbf,0xf0,0x07,0x20, + 0x0b,0xf2,0xa9,0x01,0x85,0x06,0xa9,0x03, + 0x8d,0x42,0x03,0xa9,0x11,0x8d,0x44,0x03, + 0xa9,0xf2,0x8d,0x45,0x03,0xa9,0x0c,0x8d, + 0x4a,0x03,0xa2,0x00,0x8e,0x4b,0x03,0x20, + 0x56,0xe4,0xa5,0x14,0xc5,0x14,0xf0,0xfc, + 0xa5,0x08,0xd0,0x0b,0xad,0xe9,0x03,0xf0, + 0x0f,0x20,0x78,0xf2,0x4c,0xc0,0xf1,0xa9, + 0x02,0x24,0x09,0xf0,0x03,0x20,0x15,0xf2, + 0xa5,0x08,0xd0,0x1d,0xa5,0x07,0xd0,0x06, + 0xa6,0x06,0xf0,0x0f,0xd0,0x07,0xad,0xfd, + 0x9f,0xa6,0x06,0xf0,0x03,0x0d,0xfd,0xbf, + 0x4a,0x90,0x0e,0x20,0x19,0xf2,0x4c,0xe9, + 0xf1,0xa5,0x09,0x4a,0x90,0x03,0x20,0x12, + 0xf2,0xa2,0x00,0x8e,0x44,0x02,0xa9,0x04, + 0xa6,0x06,0xf0,0x08,0x2c,0xfd,0xbf,0xf0, + 0x03,0x6c,0xfa,0xbf,0xa6,0x07,0xf0,0x08, + 0x2c,0xfd,0x9f,0xf0,0x03,0x6c,0xfa,0x9f, + 0x6c,0x0a,0x00,0x6c,0xfe,0xbf,0x6c,0xfe, + 0x9f,0x45,0x6c,0x0c,0x00,0x6c,0x02,0x00, + 0xea,0xa9,0x53,0x8d,0x02,0x03,0xa2,0x01, + 0x8e,0x01,0x03,0x20,0x53,0xe4,0x30,0x3c, + 0xa2,0x01,0x8e,0x01,0x03,0x8e,0x0a,0x03, + 0xca,0x8e,0x04,0x03,0x8e,0x0b,0x03,0xa9, + 0x52,0x8d,0x02,0x03,0xa9,0x04,0x8d,0x05, + 0x03,0x20,0x53,0xe4,0x30,0x1a,0xa2,0x0c, + 0x20,0xb3,0xf2,0x20,0xe2,0xf2,0xce,0x41, + 0x02,0xf0,0x18,0xee,0x0a,0x03,0xd0,0x03, + 0xee,0x0b,0x03,0x20,0x53,0xe4,0x10,0xeb, + 0xc0,0x8a,0xd0,0x01,0x60,0x20,0xf7,0xf2, + 0x4c,0x19,0xf2,0x20,0xd0,0xf2,0xb0,0xf5, + 0x20,0x12,0xf2,0xa9,0x01,0x85,0x09,0x60, + 0xa9,0x80,0x85,0x3e,0x20,0x7d,0xe4,0x20, + 0x7a,0xe4,0x30,0x24,0xa2,0x02,0x20,0xb3, + 0xf2,0x20,0xe2,0xf2,0x20,0x7a,0xe4,0x30, + 0x17,0xce,0x41,0x02,0xd0,0xf3,0x20,0xd0, + 0xf2,0x20,0x15,0xf2,0xa9,0x00,0x8d,0xe9, + 0x03,0xa9,0x02,0x85,0x09,0x6c,0x0a,0x00, + 0xa9,0x00,0x8d,0xe9,0x03,0x20,0xae,0xee, + 0x4c,0xf7,0xf2,0xa0,0xfc,0xb9,0x04,0x03, + 0x99,0x44,0x01,0xc8,0xd0,0xf7,0x85,0x16, + 0xad,0x42,0x02,0x85,0x15,0xad,0x04,0x04, + 0x95,0x00,0xad,0x05,0x04,0x95,0x01,0x60, + 0xad,0x42,0x02,0x18,0x69,0x06,0x85,0x04, + 0xad,0x43,0x02,0x69,0x00,0x85,0x05,0x6c, + 0x04,0x00,0xa0,0x7f,0xb9,0x00,0x04,0x91, + 0x15,0x88,0x10,0xf8,0xa5,0x15,0x49,0x80, + 0x85,0x15,0x30,0x02,0xe6,0x16,0x60,0xa2, + 0xf5,0x8a,0x48,0xbd,0x12,0xf2,0x20,0xaa, + 0xfa,0x68,0xaa,0xe8,0xd0,0xf3,0x60,0x42, + 0x4f,0x4f,0x54,0x20,0x45,0x52,0x52,0x4f, + 0x52,0x9b,0xff,0xff,0xff,0xff,0xff,0xff, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, @@ -916,246 +916,246 @@ UBYTE const ROM_altirraos_800[0x2800] = 0x02,0x29,0xdc,0x8d,0x2f,0x02,0x8d,0x00, 0xd4,0xa2,0x0b,0xa9,0x00,0x95,0x54,0x9d, 0x90,0x02,0xca,0xd0,0xf8,0x86,0x7b,0xa5, - 0x2b,0x29,0x0f,0x85,0x57,0xaa,0xbd,0x1d, + 0x2b,0x29,0x0f,0x85,0x57,0xaa,0xbd,0x18, 0xfe,0x4d,0x6f,0x02,0x29,0xc0,0x4d,0x6f, - 0x02,0x8d,0x6f,0x02,0xc9,0x40,0xa5,0x2a, - 0xb0,0x04,0xe0,0x00,0xd0,0x02,0x29,0xef, - 0x0a,0x0a,0x85,0x68,0xbc,0x2d,0xfe,0xbe, - 0x3d,0xfe,0x0a,0x10,0x03,0xbe,0xca,0xf9, - 0x86,0x69,0xa5,0x6a,0xa6,0x57,0x18,0x7d, - 0x0d,0xfe,0xb0,0x09,0x8a,0xf0,0x03,0x20, - 0xee,0xf3,0xa0,0x93,0x60,0x85,0x59,0xbc, - 0xfd,0xfd,0x84,0x58,0xbd,0x1d,0xfe,0xa6, - 0x59,0x29,0x30,0xf0,0x03,0xa0,0x00,0xca, - 0x84,0x70,0x8e,0xe6,0x02,0x86,0x71,0x8e, - 0x31,0x02,0xc9,0x20,0xa9,0xf8,0x90,0x02, - 0xa9,0xf5,0xe5,0x69,0x24,0x68,0x50,0x02, - 0xe9,0x06,0x65,0x70,0x8d,0xe5,0x02,0x85, - 0x70,0x8d,0x30,0x02,0xe4,0x0f,0x90,0xbc, - 0xd0,0x04,0xc5,0x0e,0x90,0xb6,0xce,0xe5, - 0x02,0xa6,0x6a,0xca,0x8e,0x95,0x02,0xa9, - 0x60,0x8d,0x94,0x02,0x08,0x78,0x0a,0x05, - 0x10,0x85,0x10,0x8d,0x0e,0xd2,0x28,0xa0, - 0x18,0x8c,0xbf,0x02,0xa0,0x05,0xb9,0x88, - 0xf5,0x99,0xc3,0x02,0x88,0xd0,0xf7,0x8c, - 0xf0,0x02,0xa9,0x70,0xa2,0x03,0x20,0x6d, - 0xf5,0xa5,0x57,0xc9,0x0b,0xd0,0x05,0xa9, - 0x06,0x8d,0xc8,0x02,0x20,0x32,0xf5,0x84, - 0x7e,0x20,0x82,0xf5,0x24,0x68,0x50,0x12, - 0xa2,0x04,0x8e,0xbf,0x02,0x20,0x0e,0xf9, - 0xa4,0x7e,0x20,0x32,0xf5,0x84,0x7e,0x20, - 0x82,0xf5,0xa9,0x02,0x8d,0xf3,0x02,0xa2, - 0x0f,0x4a,0x9d,0xa2,0x02,0xca,0xd0,0xfa, - 0x86,0x6b,0xa2,0xe0,0x8e,0xf4,0x02,0xa2, - 0x40,0x8e,0x0e,0xd4,0xa4,0x7e,0xa2,0x70, - 0xa9,0x41,0x20,0x74,0xf5,0xad,0x2f,0x02, - 0x09,0x22,0x8d,0x2f,0x02,0xa5,0x14,0xc5, - 0x14,0xf0,0xfc,0xa5,0x2b,0x29,0x0f,0xd0, - 0x03,0x20,0x82,0xf6,0x20,0x68,0xfd,0xa2, - 0x00,0x60,0xa6,0x57,0xbd,0x1d,0xfe,0x29, - 0x0f,0x48,0x09,0x40,0xa2,0x58,0x20,0x74, - 0xf5,0xa6,0x69,0xa5,0x57,0xd0,0x03,0xae, - 0xbf,0x02,0xca,0x68,0xc9,0x0e,0x90,0x1d, - 0xa2,0x5d,0x20,0x6d,0xf5,0x48,0x09,0x40, - 0x91,0x70,0xc8,0xa9,0x00,0x91,0x70,0xc8, - 0xa5,0x59,0x69,0x0e,0x91,0x70,0xc8,0xa5, - 0x69,0xe9,0x5e,0xaa,0x68,0x91,0x70,0xc8, - 0xca,0xd0,0xfa,0x60,0x91,0x70,0xc8,0xb5, - 0x00,0x91,0x70,0xc8,0xb5,0x01,0xa2,0x01, - 0xd0,0xeb,0x24,0x68,0x30,0xed,0x4c,0x17, - 0xf8,0x28,0xca,0x94,0x46,0x00,0x01,0x03, - 0x07,0xad,0xe6,0x02,0x85,0x6a,0xa9,0x00, - 0x85,0x4f,0xa9,0xfe,0x85,0x4e,0x60,0x20, - 0xc7,0xf8,0x30,0x3a,0xa4,0x54,0x20,0x46, - 0xf9,0xa5,0x55,0xa6,0x57,0xbc,0xd5,0xf9, - 0x59,0x8d,0xf5,0xaa,0xa5,0x56,0x20,0x8e, - 0xf9,0xa4,0x6f,0xb1,0x66,0x20,0x7b,0xf9, - 0x0a,0x08,0x10,0x02,0x49,0x40,0x69,0x40, - 0x28,0x6a,0xa6,0x57,0xbc,0xd5,0xf9,0x39, - 0xe5,0xf9,0xa6,0x57,0xf0,0x03,0x4c,0xa6, - 0xf9,0x20,0xdd,0xfd,0xa0,0x01,0x60,0x8d, - 0xfb,0x02,0x20,0xc7,0xf8,0x30,0x0c,0xad, - 0xfb,0x02,0xc9,0x7d,0xd0,0x0e,0x20,0x17, - 0xf8,0xa0,0x01,0x60,0x4c,0xbf,0xf9,0x20, - 0xc7,0xf8,0x30,0xf7,0x20,0xd3,0xfd,0xad, - 0xfb,0x02,0xa6,0x57,0xf0,0x1e,0xc9,0x9b, - 0xf0,0xea,0xae,0xff,0x02,0xd0,0xfb,0x20, - 0x9b,0xf6,0x48,0x20,0x76,0xf9,0x68,0xa4, - 0x6f,0x51,0x66,0x25,0x6e,0x51,0x66,0x91, - 0x66,0x4c,0xa6,0xf9,0xc9,0x9b,0xd0,0x18, - 0xa5,0x52,0x85,0x55,0xe6,0x54,0xa5,0x54, - 0xcd,0xbf,0x02,0x90,0x08,0xae,0xbf,0x02, - 0x86,0x54,0x20,0xc3,0xfc,0x4c,0x82,0xf6, - 0xae,0xff,0x02,0xd0,0xfb,0x48,0x20,0xb7, - 0xfc,0x68,0x20,0xb8,0xf6,0xa0,0x00,0x91, - 0x5e,0xe6,0x5e,0xd0,0x02,0xe6,0x5f,0x20, - 0xdd,0xfd,0xb0,0x29,0xa5,0x54,0xcd,0xbf, - 0x02,0x90,0x12,0x20,0xc3,0xfc,0x20,0x88, - 0xf6,0x20,0x3b,0xfd,0x59,0xb2,0x02,0x99, - 0xb2,0x02,0x4c,0x82,0xf6,0x20,0x88,0xf6, - 0xa5,0x54,0x20,0x4a,0xfd,0xf0,0x03,0x20, - 0x5a,0xf8,0x20,0xb7,0xfc,0x4c,0xec,0xfd, - 0xa6,0x54,0xca,0x8a,0x20,0x53,0xfd,0x18, - 0x69,0x02,0xc5,0x54,0x90,0x01,0x60,0x68, - 0x68,0x90,0xe7,0xa6,0x57,0xbc,0xd5,0xf9, - 0xbe,0xe9,0xf9,0x86,0x77,0xbe,0xe5,0xf9, - 0x8e,0xa0,0x02,0x30,0x0b,0x2d,0xa0,0x02, - 0x19,0xa6,0xfd,0xaa,0xbd,0xaa,0xfd,0x60, - 0x0a,0x08,0xe9,0x3f,0x10,0x02,0x49,0x40, - 0x28,0x6a,0x60,0xa5,0x22,0xc9,0x11,0xf0, - 0x05,0xc9,0x12,0xf0,0x01,0x60,0xad,0xfd, - 0x02,0x20,0x9b,0xf6,0x8d,0xbc,0x02,0xad, - 0xfb,0x02,0x20,0x9b,0xf6,0x85,0x51,0x20, - 0x76,0xf9,0xa0,0x01,0x20,0x50,0xf9,0x85, - 0x78,0xaa,0xa0,0x00,0xa5,0x54,0x38,0xe5, - 0x5a,0xb0,0x0c,0x49,0xff,0x69,0x01,0x48, - 0x8a,0x49,0xff,0xaa,0xe8,0x88,0x68,0x86, - 0x70,0x85,0x76,0x84,0x71,0xa2,0x00,0xa5, - 0x55,0x38,0xe5,0x5b,0x85,0x72,0xa5,0x56, - 0xe5,0x5c,0xb0,0x10,0x49,0xff,0xa8,0xa5, - 0x72,0x49,0xff,0x69,0x01,0x85,0x72,0x98, - 0x69,0x00,0xa2,0xcc,0x85,0x73,0x8a,0xa6, - 0x57,0xbc,0xd5,0xf9,0x18,0x79,0x7a,0xf7, - 0x85,0x64,0xa9,0xf7,0x85,0x65,0x85,0x75, - 0xb9,0x7a,0xf7,0x18,0x69,0xd9,0x85,0x74, - 0xa6,0x72,0x8a,0x38,0xe5,0x76,0x85,0x68, - 0xa4,0x73,0x98,0xe9,0x00,0x85,0x69,0xb0, - 0x04,0xa0,0x00,0xa6,0x76,0x86,0x7e,0x84, - 0x7f,0x98,0xd0,0x03,0x8a,0xf0,0x0d,0x4c, - 0xcf,0xf7,0x20,0xd3,0xfd,0xa4,0x57,0xd0, - 0x03,0x20,0xb7,0xfc,0xa0,0x01,0x60,0x86, - 0x6e,0x4c,0xcf,0xf7,0xa4,0x6f,0xa6,0x6e, - 0xd0,0x33,0xb8,0xb2,0xb4,0xb5,0x0a,0x0a, - 0x0a,0x0a,0x90,0x05,0xc6,0x6f,0xad,0xa0, - 0x02,0xd0,0x31,0x4a,0x4a,0x4a,0x4a,0x90, - 0x09,0xa5,0x77,0xc8,0xc4,0x78,0x90,0x02, - 0xa0,0x00,0x85,0x6e,0xf0,0xd1,0xb1,0x66, - 0x24,0x6e,0xd0,0xcb,0x4d,0xbc,0x02,0x25, - 0x6e,0x51,0x66,0x91,0x66,0xa5,0x6e,0x6c, - 0x74,0x00,0x4a,0x4a,0x4a,0x4a,0x90,0x04, - 0xe6,0x6f,0xa5,0x77,0x85,0x6e,0xa4,0x6f, - 0xa5,0x51,0x51,0x66,0x25,0x6e,0x51,0x66, - 0x91,0x66,0xa5,0x22,0x4a,0x90,0xa5,0xa5, - 0x7e,0xd0,0x04,0xc6,0x7f,0x30,0x8b,0xc6, - 0x7e,0xa5,0x68,0x0a,0xa8,0xa5,0x69,0x2a, - 0xaa,0x98,0x18,0xe5,0x72,0x8a,0x48,0xe5, - 0x73,0x10,0x13,0xa2,0x02,0xb5,0x70,0x18, - 0x75,0x66,0x95,0x66,0xb5,0x71,0x75,0x67, - 0x95,0x67,0xca,0xca,0x10,0xef,0x98,0x18, - 0x65,0x76,0x68,0x69,0x00,0x30,0xb7,0xa5, - 0x68,0x38,0xe5,0x76,0x85,0x68,0xb0,0x02, - 0xc6,0x69,0xa5,0x6e,0x6c,0x64,0x00,0xa0, - 0x04,0xa6,0x7b,0xd0,0x08,0xa4,0x57,0xbe, - 0x2d,0xfe,0xbc,0x3d,0xfe,0x20,0x50,0xf9, - 0x18,0xa6,0x57,0xf0,0x02,0x69,0xa0,0xa8, - 0xa5,0x65,0x69,0x00,0xaa,0x65,0x59,0x85, - 0x67,0xa5,0x58,0x85,0x66,0xa9,0x00,0x88, - 0x91,0x66,0xd0,0xfb,0xc6,0x67,0xca,0x10, - 0xf6,0x85,0x56,0x85,0x54,0x85,0x5d,0xa6, - 0x57,0xd0,0x02,0xa5,0x52,0x85,0x55,0x4c, - 0xc0,0xfd,0x18,0x08,0xac,0xbf,0x02,0x88, - 0x20,0x46,0xf9,0x20,0x91,0xfd,0xae,0xbf, - 0x02,0xd0,0x09,0xa0,0x27,0xb1,0x68,0x91, - 0x66,0x88,0x10,0xf9,0xa5,0x68,0x85,0x66, - 0x38,0xe9,0x28,0x85,0x68,0xa5,0x69,0x85, - 0x67,0xe9,0x00,0x85,0x69,0xca,0xe4,0x54, - 0xd0,0xe1,0xa0,0x27,0xa9,0x00,0x91,0x66, - 0x88,0x10,0xfb,0x20,0x3b,0xfd,0x28,0xb0, - 0x02,0xa9,0x00,0x85,0x51,0xa9,0x00,0x38, - 0xfd,0xc1,0xe4,0x0a,0x39,0xb2,0x02,0x18, - 0x79,0xb2,0x02,0x6a,0x05,0x51,0x99,0xb2, - 0x02,0x88,0x10,0x03,0x6e,0xb3,0x02,0x88, - 0x10,0x03,0x6e,0xb4,0x02,0x60,0x48,0xa0, - 0x00,0xa5,0x5d,0x91,0x5e,0x68,0x60,0xad, - 0xbf,0x02,0xa6,0x57,0xd0,0x04,0x24,0x7b, - 0x30,0x06,0xbc,0x2d,0xfe,0xb9,0x3d,0xfe, - 0xa0,0x27,0xc4,0x53,0xb0,0x02,0x84,0x53, - 0x18,0xe5,0x54,0xb0,0x0e,0xa0,0x00,0x84, - 0x56,0x8a,0xd0,0x02,0xa4,0x52,0x84,0x55, - 0xa0,0x8d,0x60,0xbc,0x42,0xfe,0xa5,0x55, - 0xd9,0xcb,0xf9,0xa5,0x56,0xf9,0xd0,0xf9, - 0xb0,0xe3,0xa0,0xff,0xa5,0x11,0xd0,0x04, - 0x84,0x11,0xa0,0x7f,0xc8,0x60,0xa0,0x17, - 0xcc,0xbf,0x02,0x48,0xa9,0x00,0x65,0x7b, - 0xf0,0x14,0xa2,0x0b,0xb5,0x54,0xbc,0x90, - 0x02,0x94,0x54,0x9d,0x90,0x02,0xca,0x10, - 0xf3,0x8a,0x45,0x7b,0x85,0x7b,0x68,0x60, - 0x20,0x50,0xf9,0x85,0x64,0x8a,0x18,0x65, - 0x64,0x90,0x02,0xe6,0x65,0x18,0x65,0x58, - 0xaa,0xa5,0x65,0x65,0x59,0x60,0xa2,0x00, - 0x20,0x30,0xf9,0x86,0x66,0x85,0x67,0x60, - 0xa9,0x00,0x85,0x65,0x84,0x64,0xa4,0x57, - 0xb9,0x42,0xfe,0x38,0xf9,0xd5,0xf9,0xa8, - 0xc8,0xa5,0x64,0x0a,0x26,0x65,0x0a,0x26, - 0x65,0x65,0x64,0x90,0x02,0xe6,0x65,0x0a, - 0x26,0x65,0x88,0x10,0xfa,0x60,0x20,0x85, - 0xf9,0xa5,0x77,0xca,0x30,0x04,0x4a,0xca, - 0x10,0xfc,0x85,0x6e,0x60,0xa4,0x5a,0x20, - 0x46,0xf9,0xa5,0x5c,0xa6,0x5b,0x6a,0x86, - 0x6f,0xa9,0x00,0xa6,0x57,0xbc,0xd5,0xf9, - 0xf0,0x06,0x66,0x6f,0x6a,0x88,0xd0,0xfa, - 0x2a,0x2a,0x2a,0x2a,0xaa,0x60,0xe6,0x55, - 0xd0,0x02,0xe6,0x56,0xa6,0x57,0xbc,0x42, - 0xfe,0xbe,0xd0,0xf9,0xe4,0x56,0xd0,0x0f, - 0xbe,0xcb,0xf9,0xe4,0x55,0xd0,0x08,0xa0, - 0x00,0x84,0x55,0x84,0x56,0xe6,0x54,0xa0, - 0x01,0x60,0x0a,0x14,0x28,0x50,0xa0,0x40, - 0x00,0x00,0x00,0x00,0x01,0x00,0x00,0x00, - 0x02,0x03,0x02,0x03,0x02,0x03,0x01,0x01, - 0x01,0x00,0x00,0x03,0x02,0xff,0x0f,0x03, - 0x01,0xff,0xf0,0xc0,0x80,0x20,0xc0,0xfd, - 0x8e,0xfe,0x02,0x8e,0xa2,0x02,0x4c,0xf2, - 0xf3,0xa5,0x6b,0xd0,0x06,0x20,0x19,0xfa, - 0x10,0x01,0x60,0x20,0x0e,0xf9,0xc6,0x6b, - 0xd0,0x09,0xa9,0x9b,0x20,0xdf,0xf5,0xa9, - 0x9b,0xd0,0x03,0x20,0x9f,0xf5,0x4c,0x6a, - 0xfd,0x20,0x0e,0xf9,0xa5,0x55,0x85,0x6d, - 0xa5,0x54,0x85,0x6c,0x20,0x6a,0xfd,0xa5, - 0x2a,0x4a,0xb0,0x25,0x20,0x6d,0xfe,0x10, - 0x01,0x60,0xc9,0x9b,0xf0,0x1d,0x20,0xab, - 0xfa,0x30,0xf6,0xa5,0x55,0xc9,0x21,0xd0, - 0xeb,0x20,0x51,0xfd,0x18,0x69,0x02,0xc5, - 0x54,0xd0,0xe1,0x20,0x63,0xfd,0x4c,0x2c, - 0xfa,0xa9,0x9b,0x20,0xab,0xfa,0x30,0xd9, - 0x20,0x0e,0xf9,0x20,0xbe,0xf8,0xa2,0x00, - 0x86,0x63,0xa4,0x6c,0x84,0x54,0x20,0x48, - 0xf9,0xa4,0x6d,0xe6,0x63,0xb1,0x66,0xf0, - 0x04,0xa5,0x63,0x85,0x6b,0xc4,0x53,0xc8, - 0x90,0xf1,0x20,0x91,0xfd,0xe6,0x54,0xa5, - 0x54,0xcd,0xbf,0x02,0xb0,0x0a,0x20,0x4a, - 0xfd,0xd0,0x08,0xa4,0x52,0x4c,0x6b,0xfa, - 0x20,0xc3,0xfc,0xe6,0x6b,0xa5,0x54,0x20, - 0x3d,0xfd,0x19,0xb2,0x02,0x99,0xb2,0x02, - 0xa6,0x6d,0x86,0x55,0xa4,0x6c,0x84,0x54, - 0x4c,0x68,0xfd,0xa4,0x57,0xf0,0x0c,0xac, - 0xbf,0x02,0xc0,0x04,0xf0,0x05,0x48,0x20, - 0xee,0xf3,0x68,0x20,0x0e,0xf9,0x20,0xbe, - 0xf8,0xa8,0x0e,0xa2,0x02,0xb0,0x1e,0x29, - 0x1f,0xc9,0x1b,0x90,0x18,0xa2,0x0e,0x98, - 0x20,0xae,0xfc,0xd0,0x10,0xad,0xfe,0x02, - 0xd0,0x0b,0x20,0x59,0xfc,0x20,0xb7,0xfc, - 0x20,0xec,0xfd,0x10,0x06,0x8c,0xfb,0x02, - 0x20,0xf7,0xf5,0xad,0xfb,0x02,0x4c,0x6a, - 0xfd,0x1b,0x1c,0x1d,0x1e,0x1f,0x7d,0x7e, - 0x7f,0x9c,0x9d,0x9e,0x9f,0xfd,0xfe,0xff, - 0x9b,0x7c,0x10,0x19,0x23,0xb7,0xc4,0x16, - 0x3e,0x7d,0xcd,0xd3,0x6a,0x62,0x5f,0xda, - 0xe6,0xa9,0x80,0x8d,0xa2,0x02,0x60,0x4c, - 0x17,0xf8,0xa6,0x54,0xd0,0x03,0xae,0xbf, - 0x02,0xca,0x10,0x0a,0xa6,0x54,0xe8,0xec, - 0xbf,0x02,0x90,0x02,0xa2,0x00,0x86,0x54, - 0x8a,0x20,0x53,0xfd,0xc5,0x6c,0xf0,0x06, - 0x85,0x6c,0xa5,0x52,0x85,0x6d,0x60,0xa5, - 0x52,0xc5,0x55,0xb0,0x0b,0xc6,0x55,0x20, - 0xb7,0xfc,0xa0,0x00,0x98,0x91,0x5e,0x60, - 0xa5,0x54,0x20,0x4a,0xfd,0xd0,0xf8,0xc6, - 0x54,0xa5,0x53,0x85,0x55,0x4c,0x47,0xfb, - 0x4c,0x63,0xfd,0x20,0x77,0xfb,0x1d,0xa3, + 0x02,0x8d,0x6f,0x02,0xc9,0x40,0x8a,0xf0, + 0x06,0xa5,0x2a,0x90,0x02,0x29,0xef,0x0a, + 0x0a,0x85,0x68,0xbc,0x28,0xfe,0xbe,0x38, + 0xfe,0x0a,0x10,0x03,0xbe,0xc9,0xf9,0x86, + 0x69,0xa5,0x6a,0xa6,0x57,0x18,0x7d,0x08, + 0xfe,0xb0,0x09,0x8a,0xf0,0x03,0x20,0xee, + 0xf3,0xa0,0x93,0x60,0x85,0x59,0xbc,0xf8, + 0xfd,0x84,0x58,0xbd,0x18,0xfe,0xa6,0x59, + 0x29,0x30,0xf0,0x03,0xa0,0x00,0xca,0x84, + 0x70,0x8e,0xe6,0x02,0x86,0x71,0x8e,0x31, + 0x02,0xc9,0x20,0xa9,0xf8,0x90,0x02,0xa9, + 0xf5,0xe5,0x69,0x24,0x68,0x50,0x02,0xe9, + 0x06,0x65,0x70,0x8d,0xe5,0x02,0x85,0x70, + 0x8d,0x30,0x02,0xe4,0x0f,0x90,0xbc,0xd0, + 0x04,0xc5,0x0e,0x90,0xb6,0xce,0xe5,0x02, + 0xa6,0x6a,0xca,0x8e,0x95,0x02,0xa9,0x60, + 0x8d,0x94,0x02,0x08,0x78,0x0a,0x05,0x10, + 0x85,0x10,0x8d,0x0e,0xd2,0x28,0xa0,0x18, + 0x8c,0xbf,0x02,0xa0,0x05,0xb9,0x87,0xf5, + 0x99,0xc3,0x02,0x88,0xd0,0xf7,0x8c,0xf0, + 0x02,0xa9,0x70,0xa2,0x03,0x20,0x6c,0xf5, + 0xa5,0x57,0xc9,0x0b,0xd0,0x05,0xa9,0x06, + 0x8d,0xc8,0x02,0x20,0x31,0xf5,0x84,0x7e, + 0x20,0x81,0xf5,0x24,0x68,0x50,0x12,0xa2, + 0x04,0x8e,0xbf,0x02,0x20,0x0d,0xf9,0xa4, + 0x7e,0x20,0x31,0xf5,0x84,0x7e,0x20,0x81, + 0xf5,0xa9,0x02,0x8d,0xf3,0x02,0xa2,0x0f, + 0x4a,0x9d,0xa2,0x02,0xca,0xd0,0xfa,0x86, + 0x6b,0xa2,0xe0,0x8e,0xf4,0x02,0xa2,0x40, + 0x8e,0x0e,0xd4,0xa4,0x7e,0xa2,0x70,0xa9, + 0x41,0x20,0x73,0xf5,0xad,0x2f,0x02,0x09, + 0x22,0x8d,0x2f,0x02,0xa5,0x14,0xc5,0x14, + 0xf0,0xfc,0xa5,0x2b,0x29,0x0f,0xd0,0x03, + 0x20,0x81,0xf6,0x20,0x63,0xfd,0xa2,0x00, + 0x60,0xa6,0x57,0xbd,0x18,0xfe,0x29,0x0f, + 0x48,0x09,0x40,0xa2,0x58,0x20,0x73,0xf5, + 0xa6,0x69,0xa5,0x57,0xd0,0x03,0xae,0xbf, + 0x02,0xca,0x68,0xc9,0x0e,0x90,0x1d,0xa2, + 0x5d,0x20,0x6c,0xf5,0x48,0x09,0x40,0x91, + 0x70,0xc8,0xa9,0x00,0x91,0x70,0xc8,0xa5, + 0x59,0x69,0x0e,0x91,0x70,0xc8,0xa5,0x69, + 0xe9,0x5e,0xaa,0x68,0x91,0x70,0xc8,0xca, + 0xd0,0xfa,0x60,0x91,0x70,0xc8,0xb5,0x00, + 0x91,0x70,0xc8,0xb5,0x01,0xa2,0x01,0xd0, + 0xeb,0x24,0x68,0x30,0xed,0x4c,0x16,0xf8, + 0x28,0xca,0x94,0x46,0x00,0x01,0x03,0x07, + 0xad,0xe6,0x02,0x85,0x6a,0xa9,0x00,0x85, + 0x4f,0xa9,0xfe,0x85,0x4e,0x60,0x20,0xc6, + 0xf8,0x30,0x3a,0xa4,0x54,0x20,0x45,0xf9, + 0xa5,0x55,0xa6,0x57,0xbc,0xd4,0xf9,0x59, + 0x8c,0xf5,0xaa,0xa5,0x56,0x20,0x8d,0xf9, + 0xa4,0x6f,0xb1,0x66,0x20,0x7a,0xf9,0x0a, + 0x08,0x10,0x02,0x49,0x40,0x69,0x40,0x28, + 0x6a,0xa6,0x57,0xbc,0xd4,0xf9,0x39,0xe4, + 0xf9,0xa6,0x57,0xf0,0x03,0x4c,0xa5,0xf9, + 0x20,0xd8,0xfd,0xa0,0x01,0x60,0x8d,0xfb, + 0x02,0x20,0xc6,0xf8,0x30,0x0c,0xad,0xfb, + 0x02,0xc9,0x7d,0xd0,0x0e,0x20,0x16,0xf8, + 0xa0,0x01,0x60,0x4c,0xbe,0xf9,0x20,0xc6, + 0xf8,0x30,0xf7,0x20,0xce,0xfd,0xad,0xfb, + 0x02,0xa6,0x57,0xf0,0x1e,0xc9,0x9b,0xf0, + 0xea,0xae,0xff,0x02,0xd0,0xfb,0x20,0x9a, + 0xf6,0x48,0x20,0x75,0xf9,0x68,0xa4,0x6f, + 0x51,0x66,0x25,0x6e,0x51,0x66,0x91,0x66, + 0x4c,0xa5,0xf9,0xc9,0x9b,0xd0,0x18,0xa5, + 0x52,0x85,0x55,0xe6,0x54,0xa5,0x54,0xcd, + 0xbf,0x02,0x90,0x08,0xae,0xbf,0x02,0x86, + 0x54,0x20,0xc3,0xfc,0x4c,0x81,0xf6,0xae, + 0xff,0x02,0xd0,0xfb,0x48,0x20,0xb7,0xfc, + 0x68,0x20,0xb7,0xf6,0xa0,0x00,0x91,0x5e, + 0xe6,0x5e,0xd0,0x02,0xe6,0x5f,0x20,0xd8, + 0xfd,0xb0,0x29,0xa5,0x54,0xcd,0xbf,0x02, + 0x90,0x12,0x20,0xc3,0xfc,0x20,0x87,0xf6, + 0x20,0x3b,0xfd,0x59,0xb2,0x02,0x99,0xb2, + 0x02,0x4c,0x81,0xf6,0x20,0x87,0xf6,0xa5, + 0x54,0x20,0x4a,0xfd,0xf0,0x03,0x20,0x59, + 0xf8,0x20,0xb7,0xfc,0x4c,0xe7,0xfd,0xa6, + 0x54,0xca,0x8a,0x20,0x53,0xfd,0x18,0x69, + 0x02,0xc5,0x54,0x90,0x01,0x60,0x68,0x68, + 0x90,0xe7,0xa6,0x57,0xbc,0xd4,0xf9,0xbe, + 0xe8,0xf9,0x86,0x77,0xbe,0xe4,0xf9,0x8e, + 0xa0,0x02,0x30,0x0b,0x2d,0xa0,0x02,0x19, + 0xa1,0xfd,0xaa,0xbd,0xa5,0xfd,0x60,0x0a, + 0x08,0xe9,0x3f,0x10,0x02,0x49,0x40,0x28, + 0x6a,0x60,0xa5,0x22,0xc9,0x11,0xf0,0x05, + 0xc9,0x12,0xf0,0x01,0x60,0xad,0xfd,0x02, + 0x20,0x9a,0xf6,0x8d,0xbc,0x02,0xad,0xfb, + 0x02,0x20,0x9a,0xf6,0x85,0x51,0x20,0x75, + 0xf9,0xa0,0x01,0x20,0x4f,0xf9,0x85,0x78, + 0xaa,0xa0,0x00,0xa5,0x54,0x38,0xe5,0x5a, + 0xb0,0x0c,0x49,0xff,0x69,0x01,0x48,0x8a, + 0x49,0xff,0xaa,0xe8,0x88,0x68,0x86,0x70, + 0x85,0x76,0x84,0x71,0xa2,0x00,0xa5,0x55, + 0x38,0xe5,0x5b,0x85,0x72,0xa5,0x56,0xe5, + 0x5c,0xb0,0x10,0x49,0xff,0xa8,0xa5,0x72, + 0x49,0xff,0x69,0x01,0x85,0x72,0x98,0x69, + 0x00,0xa2,0xcc,0x85,0x73,0x8a,0xa6,0x57, + 0xbc,0xd4,0xf9,0x18,0x79,0x79,0xf7,0x85, + 0x64,0xa9,0xf7,0x85,0x65,0x85,0x75,0xb9, + 0x79,0xf7,0x18,0x69,0xd9,0x85,0x74,0xa6, + 0x72,0x8a,0x38,0xe5,0x76,0x85,0x68,0xa4, + 0x73,0x98,0xe9,0x00,0x85,0x69,0xb0,0x04, + 0xa0,0x00,0xa6,0x76,0x86,0x7e,0x84,0x7f, + 0x98,0xd0,0x03,0x8a,0xf0,0x0d,0x4c,0xce, + 0xf7,0x20,0xce,0xfd,0xa4,0x57,0xd0,0x03, + 0x20,0xb7,0xfc,0xa0,0x01,0x60,0x86,0x6e, + 0x4c,0xce,0xf7,0xa4,0x6f,0xa6,0x6e,0xd0, + 0x33,0xb7,0xb1,0xb3,0xb4,0x0a,0x0a,0x0a, + 0x0a,0x90,0x05,0xc6,0x6f,0xad,0xa0,0x02, + 0xd0,0x31,0x4a,0x4a,0x4a,0x4a,0x90,0x09, + 0xa5,0x77,0xc8,0xc4,0x78,0x90,0x02,0xa0, + 0x00,0x85,0x6e,0xf0,0xd1,0xb1,0x66,0x24, + 0x6e,0xd0,0xcb,0x4d,0xbc,0x02,0x25,0x6e, + 0x51,0x66,0x91,0x66,0xa5,0x6e,0x6c,0x74, + 0x00,0x4a,0x4a,0x4a,0x4a,0x90,0x04,0xe6, + 0x6f,0xa5,0x77,0x85,0x6e,0xa4,0x6f,0xa5, + 0x51,0x51,0x66,0x25,0x6e,0x51,0x66,0x91, + 0x66,0xa5,0x22,0x4a,0x90,0xa5,0xa5,0x7e, + 0xd0,0x04,0xc6,0x7f,0x30,0x8b,0xc6,0x7e, + 0xa5,0x68,0x0a,0xa8,0xa5,0x69,0x2a,0xaa, + 0x98,0x18,0xe5,0x72,0x8a,0x48,0xe5,0x73, + 0x10,0x13,0xa2,0x02,0xb5,0x70,0x18,0x75, + 0x66,0x95,0x66,0xb5,0x71,0x75,0x67,0x95, + 0x67,0xca,0xca,0x10,0xef,0x98,0x18,0x65, + 0x76,0x68,0x69,0x00,0x30,0xb7,0xa5,0x68, + 0x38,0xe5,0x76,0x85,0x68,0xb0,0x02,0xc6, + 0x69,0xa5,0x6e,0x6c,0x64,0x00,0xa0,0x04, + 0xa6,0x7b,0xd0,0x08,0xa4,0x57,0xbe,0x28, + 0xfe,0xbc,0x38,0xfe,0x20,0x4f,0xf9,0x18, + 0xa6,0x57,0xf0,0x02,0x69,0xa0,0xa8,0xa5, + 0x65,0x69,0x00,0xaa,0x65,0x59,0x85,0x67, + 0xa5,0x58,0x85,0x66,0xa9,0x00,0x88,0x91, + 0x66,0xd0,0xfb,0xc6,0x67,0xca,0x10,0xf6, + 0x85,0x56,0x85,0x54,0x85,0x5d,0xa6,0x57, + 0xd0,0x02,0xa5,0x52,0x85,0x55,0x4c,0xbb, + 0xfd,0x18,0x08,0xac,0xbf,0x02,0x88,0x20, + 0x45,0xf9,0x20,0x8c,0xfd,0xae,0xbf,0x02, + 0xd0,0x09,0xa0,0x27,0xb1,0x68,0x91,0x66, + 0x88,0x10,0xf9,0xa5,0x68,0x85,0x66,0x38, + 0xe9,0x28,0x85,0x68,0xa5,0x69,0x85,0x67, + 0xe9,0x00,0x85,0x69,0xca,0xe4,0x54,0xd0, + 0xe1,0xa0,0x27,0xa9,0x00,0x91,0x66,0x88, + 0x10,0xfb,0x20,0x3b,0xfd,0x28,0xb0,0x02, + 0xa9,0x00,0x85,0x51,0xa9,0x00,0x38,0xfd, + 0xc1,0xe4,0x0a,0x39,0xb2,0x02,0x18,0x79, + 0xb2,0x02,0x6a,0x05,0x51,0x99,0xb2,0x02, + 0x88,0x10,0x03,0x6e,0xb3,0x02,0x88,0x10, + 0x03,0x6e,0xb4,0x02,0x60,0x48,0xa0,0x00, + 0xa5,0x5d,0x91,0x5e,0x68,0x60,0xad,0xbf, + 0x02,0xa6,0x57,0xd0,0x04,0x24,0x7b,0x30, + 0x06,0xbc,0x28,0xfe,0xb9,0x38,0xfe,0xa0, + 0x27,0xc4,0x53,0xb0,0x02,0x84,0x53,0x18, + 0xe5,0x54,0xb0,0x0e,0xa0,0x00,0x84,0x56, + 0x8a,0xd0,0x02,0xa4,0x52,0x84,0x55,0xa0, + 0x8d,0x60,0xbc,0x3d,0xfe,0xa5,0x55,0xd9, + 0xca,0xf9,0xa5,0x56,0xf9,0xcf,0xf9,0xb0, + 0xe3,0xa0,0xff,0xa5,0x11,0xd0,0x04,0x84, + 0x11,0xa0,0x7f,0xc8,0x60,0xa0,0x17,0xcc, + 0xbf,0x02,0x48,0xa9,0x00,0x65,0x7b,0xf0, + 0x14,0xa2,0x0b,0xb5,0x54,0xbc,0x90,0x02, + 0x94,0x54,0x9d,0x90,0x02,0xca,0x10,0xf3, + 0x8a,0x45,0x7b,0x85,0x7b,0x68,0x60,0x20, + 0x4f,0xf9,0x85,0x64,0x8a,0x18,0x65,0x64, + 0x90,0x02,0xe6,0x65,0x18,0x65,0x58,0xaa, + 0xa5,0x65,0x65,0x59,0x60,0xa2,0x00,0x20, + 0x2f,0xf9,0x86,0x66,0x85,0x67,0x60,0xa9, + 0x00,0x85,0x65,0x84,0x64,0xa4,0x57,0xb9, + 0x3d,0xfe,0x38,0xf9,0xd4,0xf9,0xa8,0xc8, + 0xa5,0x64,0x0a,0x26,0x65,0x0a,0x26,0x65, + 0x65,0x64,0x90,0x02,0xe6,0x65,0x0a,0x26, + 0x65,0x88,0x10,0xfa,0x60,0x20,0x84,0xf9, + 0xa5,0x77,0xca,0x30,0x04,0x4a,0xca,0x10, + 0xfc,0x85,0x6e,0x60,0xa4,0x5a,0x20,0x45, + 0xf9,0xa5,0x5c,0xa6,0x5b,0x6a,0x86,0x6f, + 0xa9,0x00,0xa6,0x57,0xbc,0xd4,0xf9,0xf0, + 0x06,0x66,0x6f,0x6a,0x88,0xd0,0xfa,0x2a, + 0x2a,0x2a,0x2a,0xaa,0x60,0xe6,0x55,0xd0, + 0x02,0xe6,0x56,0xa6,0x57,0xbc,0x3d,0xfe, + 0xbe,0xcf,0xf9,0xe4,0x56,0xd0,0x0f,0xbe, + 0xca,0xf9,0xe4,0x55,0xd0,0x08,0xa0,0x00, + 0x84,0x55,0x84,0x56,0xe6,0x54,0xa0,0x01, + 0x60,0x0a,0x14,0x28,0x50,0xa0,0x40,0x00, + 0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x02, + 0x03,0x02,0x03,0x02,0x03,0x01,0x01,0x01, + 0x00,0x00,0x03,0x02,0xff,0x0f,0x03,0x01, + 0xff,0xf0,0xc0,0x80,0x20,0xbb,0xfd,0x8e, + 0xfe,0x02,0x8e,0xa2,0x02,0x4c,0xf2,0xf3, + 0xa5,0x6b,0xd0,0x06,0x20,0x18,0xfa,0x10, + 0x01,0x60,0x20,0x0d,0xf9,0xc6,0x6b,0xd0, + 0x09,0xa9,0x9b,0x20,0xde,0xf5,0xa9,0x9b, + 0xd0,0x03,0x20,0x9e,0xf5,0x4c,0x65,0xfd, + 0x20,0x0d,0xf9,0xa5,0x55,0x85,0x6d,0xa5, + 0x54,0x85,0x6c,0x20,0x65,0xfd,0xa5,0x2a, + 0x4a,0xb0,0x25,0x20,0x68,0xfe,0x10,0x01, + 0x60,0xc9,0x9b,0xf0,0x1d,0x20,0xaa,0xfa, + 0x30,0xf6,0xa5,0x55,0xc9,0x21,0xd0,0xeb, + 0x20,0x51,0xfd,0x18,0x69,0x02,0xc5,0x54, + 0xd0,0xe1,0x20,0x5e,0xfb,0x4c,0x2b,0xfa, + 0xa9,0x9b,0x20,0xaa,0xfa,0x30,0xd9,0x20, + 0x0d,0xf9,0x20,0xbd,0xf8,0xa2,0x00,0x86, + 0x63,0xa4,0x6c,0x84,0x54,0x20,0x47,0xf9, + 0xa4,0x6d,0xe6,0x63,0xb1,0x66,0xf0,0x04, + 0xa5,0x63,0x85,0x6b,0xc4,0x53,0xc8,0x90, + 0xf1,0x20,0x8c,0xfd,0xe6,0x54,0xa5,0x54, + 0xcd,0xbf,0x02,0xb0,0x0a,0x20,0x4a,0xfd, + 0xd0,0x08,0xa4,0x52,0x4c,0x6a,0xfa,0x20, + 0xc3,0xfc,0xe6,0x6b,0xa5,0x54,0x20,0x3d, + 0xfd,0x19,0xb2,0x02,0x99,0xb2,0x02,0xa6, + 0x6d,0x86,0x55,0xa4,0x6c,0x84,0x54,0x4c, + 0x63,0xfd,0xa4,0x57,0xf0,0x0c,0xac,0xbf, + 0x02,0xc0,0x04,0xf0,0x05,0x48,0x20,0xee, + 0xf3,0x68,0x20,0x0d,0xf9,0x20,0xbd,0xf8, + 0xa8,0x0e,0xa2,0x02,0xb0,0x1e,0x29,0x1f, + 0xc9,0x1b,0x90,0x18,0xa2,0x0e,0x98,0x20, + 0xae,0xfc,0xd0,0x10,0xad,0xfe,0x02,0xd0, + 0x0b,0x20,0x59,0xfc,0x20,0xb7,0xfc,0x20, + 0xe7,0xfd,0x10,0x06,0x8c,0xfb,0x02,0x20, + 0xf6,0xf5,0xad,0xfb,0x02,0x4c,0x65,0xfd, + 0x1b,0x1c,0x1d,0x1e,0x1f,0x7d,0x7e,0x7f, + 0x9c,0x9d,0x9e,0x9f,0xfd,0xfe,0xff,0x9b, + 0x0e,0x17,0x21,0xb7,0xc4,0x14,0x3c,0x7d, + 0xcd,0xd3,0x6a,0x62,0x5d,0xda,0xe6,0xa9, + 0x80,0x8d,0xa2,0x02,0x60,0x4c,0x16,0xf8, + 0xa6,0x54,0xd0,0x03,0xae,0xbf,0x02,0xca, + 0x10,0x0a,0xa6,0x54,0xe8,0xec,0xbf,0x02, + 0x90,0x02,0xa2,0x00,0x86,0x54,0x8a,0x20, + 0x53,0xfd,0xc5,0x6c,0xf0,0x06,0x85,0x6c, + 0xa5,0x52,0x85,0x6d,0x60,0xa5,0x52,0xc5, + 0x55,0xb0,0x0b,0xc6,0x55,0x20,0xb7,0xfc, + 0xa0,0x00,0x98,0x91,0x5e,0x60,0xa5,0x54, + 0x20,0x4a,0xfd,0xd0,0xf8,0xc6,0x54,0xa5, + 0x53,0x85,0x55,0x4c,0x45,0xfb,0xa0,0x00, + 0x4c,0xcc,0xe4,0x20,0x77,0xfb,0x1d,0xa3, 0x02,0xd0,0x08,0x20,0x77,0xfb,0x49,0xff, 0x3d,0xa3,0x02,0x9d,0xa3,0x02,0x60,0x20, - 0x73,0xfd,0xa8,0x4c,0x82,0xfd,0x20,0x73, + 0x6e,0xfd,0xa8,0x4c,0x7d,0xfd,0x20,0x6e, 0xfd,0xa8,0x8a,0x38,0x65,0x54,0x85,0x54, - 0xc8,0xc0,0x78,0xb0,0x08,0x20,0x82,0xfd, + 0xc8,0xc0,0x78,0xb0,0x08,0x20,0x7d,0xfd, 0x3d,0xa3,0x02,0xf0,0xf3,0x84,0x55,0xa5, 0x55,0x38,0xe9,0x28,0x90,0x19,0x85,0x55, 0xe6,0x54,0xa5,0x54,0xcd,0xbf,0x02,0xb0, @@ -1164,39 +1164,39 @@ UBYTE const ROM_altirraos_800[0x2800] = 0xa6,0x52,0xe4,0x55,0xb0,0x03,0xc6,0x55, 0x60,0xa6,0x53,0xb0,0xf0,0xa6,0x55,0xe4, 0x53,0xb0,0xe8,0xe6,0x55,0x60,0x20,0x51, - 0xfd,0x4c,0xc5,0xfc,0x38,0x20,0x5b,0xf8, + 0xfd,0x4c,0xc5,0xfc,0x38,0x20,0x5a,0xf8, 0x4c,0xb3,0xfb,0xa4,0x54,0x84,0x51,0x20, - 0x46,0xf9,0xa4,0x55,0x4c,0x72,0xfc,0x20, + 0x45,0xf9,0xa4,0x55,0x4c,0x72,0xfc,0x20, 0x51,0xfd,0x18,0x69,0x03,0x85,0x76,0xa4, - 0x54,0x84,0x51,0x20,0x46,0xf9,0xa4,0x55, + 0x54,0x84,0x51,0x20,0x45,0xf9,0xa4,0x55, 0xa2,0x00,0xf0,0x04,0xa4,0x52,0xa6,0x50, 0x84,0x65,0xa4,0x53,0xb1,0x66,0x85,0x50, 0x88,0xb1,0x66,0xc8,0x91,0x66,0x88,0xc4, 0x65,0xd0,0xf5,0x8a,0x91,0x66,0xe6,0x51, - 0x20,0x91,0xfd,0xa5,0x51,0xcd,0xbf,0x02, + 0x20,0x8c,0xfd,0xa5,0x51,0xcd,0xbf,0x02, 0xb0,0x05,0x20,0x4a,0xfd,0xf0,0xd5,0xa5, 0x50,0xf0,0x2d,0xa5,0x54,0x48,0xa6,0x51, 0xe4,0x76,0x08,0x86,0x54,0xa9,0x00,0x85, 0x76,0xec,0xbf,0x02,0x90,0x03,0x20,0xc3, - 0xfc,0x28,0xb0,0x0e,0x20,0x5a,0xf8,0xa4, - 0x54,0x20,0x46,0xf9,0xa5,0x50,0xa4,0x52, + 0xfc,0x28,0xb0,0x0e,0x20,0x59,0xf8,0xa4, + 0x54,0x20,0x45,0xf9,0xa5,0x50,0xa4,0x52, 0x91,0x66,0x68,0x38,0xe5,0x76,0x85,0x54, - 0x60,0xa9,0xfb,0x48,0xbd,0x02,0xfb,0x48, + 0x60,0xa9,0xfb,0x48,0xbd,0x00,0xfb,0x48, 0x60,0xa4,0x52,0xb1,0x66,0xa4,0x53,0x91, 0x68,0xa4,0x52,0xc8,0xb1,0x66,0x88,0x91, - 0x66,0xc8,0xc4,0x53,0xd0,0xf5,0x20,0x91, + 0x66,0xc8,0xc4,0x53,0xd0,0xf5,0x20,0x8c, 0xfd,0xa6,0x51,0xe8,0xec,0xbf,0x02,0xb0, 0x08,0x86,0x51,0x8a,0x20,0x4a,0xfd,0xf0, 0xd8,0xa4,0x53,0xa9,0x00,0x91,0x68,0xc4, 0x52,0xf0,0x06,0x88,0xb1,0x68,0xf0,0xf7, 0x60,0xc6,0x51,0xa5,0x51,0x20,0x4a,0xfd, 0xd0,0x0b,0xa5,0x55,0x48,0xa5,0x51,0x20, - 0xc5,0xfc,0x68,0x85,0x55,0x60,0xdd,0xf1, + 0xc5,0xfc,0x68,0x85,0x55,0x60,0xdd,0xf0, 0xfa,0xf0,0x03,0xca,0x10,0xf8,0x60,0xa6, - 0x55,0xa4,0x54,0x20,0x30,0xf9,0x86,0x5e, + 0x55,0xa4,0x54,0x20,0x2f,0xf9,0x86,0x5e, 0x85,0x5f,0x60,0xa9,0x00,0x85,0x51,0xa2, - 0x00,0x86,0x76,0xa4,0x51,0x20,0x46,0xf9, - 0xa6,0x51,0x10,0x0c,0x20,0x91,0xfd,0xa0, + 0x00,0x86,0x76,0xa4,0x51,0x20,0x45,0xf9, + 0xa6,0x51,0x10,0x0c,0x20,0x8c,0xfd,0xa0, 0x27,0xb1,0x66,0x91,0x68,0x88,0x10,0xf9, 0xe8,0xec,0xbf,0x02,0xd0,0xee,0xa0,0x27, 0xa9,0x00,0x91,0x66,0x88,0x10,0xfb,0x20, @@ -1214,89 +1214,89 @@ UBYTE const ROM_altirraos_800[0x2800] = 0xe4,0x60,0x20,0x3d,0xfd,0x39,0xb2,0x02, 0x60,0xa5,0x54,0x85,0x64,0xa5,0x64,0x20, 0x4a,0xfd,0xd0,0x04,0xc6,0x64,0xd0,0xf5, - 0xa5,0x64,0x60,0xa0,0x00,0x4c,0xcc,0xe4, - 0xa0,0x01,0x84,0x64,0x18,0x20,0x13,0xf9, - 0xa4,0x64,0x60,0xa5,0x54,0x20,0x53,0xfd, - 0x18,0xe5,0x54,0xaa,0xbd,0xa7,0xfc,0x65, - 0x55,0x60,0x98,0x29,0x07,0xaa,0xbd,0xc1, - 0xe4,0x48,0x98,0x4a,0x4a,0x4a,0xaa,0x68, - 0x60,0xa5,0x66,0x85,0x68,0x18,0x69,0x28, - 0x85,0x66,0xa5,0x67,0x85,0x69,0x69,0x00, - 0x85,0x67,0x60,0x78,0x50,0x28,0x00,0x00, - 0x10,0x14,0x00,0x11,0x22,0x33,0x44,0x55, - 0x66,0x77,0x88,0x99,0xaa,0xbb,0xcc,0xdd, - 0xee,0xff,0x00,0x55,0xaa,0xff,0x00,0xff, - 0xa2,0xff,0x8e,0xb2,0x02,0x8e,0xb3,0x02, - 0x8e,0xb4,0x02,0xe8,0x86,0x6c,0xa5,0x52, - 0x85,0x6d,0x60,0xa2,0x02,0xb5,0x54,0x95, - 0x5a,0xca,0x10,0xf9,0x60,0xe6,0x55,0xa6, - 0x53,0xe4,0x55,0xb0,0x06,0xa6,0x52,0x86, - 0x55,0xe6,0x54,0x60,0xa0,0x00,0xb1,0x5e, - 0x85,0x5d,0xae,0xf0,0x02,0xd0,0x04,0x49, - 0x80,0x91,0x5e,0xc8,0x60,0x40,0x80,0x70, - 0x70,0x80,0xa0,0xe0,0x60,0x50,0x50,0x50, - 0x50,0xa0,0x80,0x60,0x50,0xfc,0xfd,0xfe, - 0xfe,0xfd,0xfb,0xf7,0xf0,0xe1,0xe1,0xe1, - 0xe1,0xfb,0xfd,0xf0,0xe1,0x02,0x06,0x07, - 0x08,0x09,0x0a,0x0b,0x1d,0x3f,0x7f,0xbf, - 0xff,0x04,0x05,0x1c,0x3e,0x01,0x01,0x00, - 0x01,0x02,0x02,0x03,0x03,0x04,0x04,0x04, - 0x04,0x01,0x00,0x04,0x04,0x0c,0x18,0x30, - 0x60,0xc0,0x01,0x00,0x00,0x01,0x02,0x02, - 0x03,0x03,0x04,0x02,0x02,0x02,0x01,0x01, - 0x03,0x03,0xa2,0xff,0x8e,0xfc,0x02,0x8e, - 0xf2,0x02,0xe8,0x8e,0xf1,0x02,0x8e,0xb6, - 0x02,0xa9,0x40,0x8d,0xbe,0x02,0x60,0x98, - 0x29,0xc0,0x8d,0xbe,0x02,0xa2,0xff,0xa5, - 0x11,0xf0,0x58,0xad,0xfc,0x02,0xc9,0xff, - 0xf0,0xf5,0x8e,0xfc,0x02,0xa0,0x0c,0x20, - 0xcc,0xe4,0xc9,0xc0,0xb0,0xe7,0xc9,0x9a, - 0xf0,0x46,0xa8,0xb9,0x13,0xff,0x10,0x0e, - 0xc9,0x81,0x90,0xd9,0xf0,0x2b,0xc9,0x83, - 0x90,0xcd,0xc9,0x85,0x90,0xc9,0xc9,0x61, - 0x90,0x0f,0xc9,0x7b,0xb0,0x0b,0x2c,0xbe, - 0x02,0x70,0x04,0x10,0x04,0x29,0x1f,0x29, - 0xdf,0xa2,0x10,0x20,0xae,0xfc,0xf0,0x03, - 0x4d,0xb6,0x02,0x8d,0xfb,0x02,0xa0,0x01, - 0x60,0xad,0xb6,0x02,0x49,0x80,0x8d,0xb6, - 0x02,0xb0,0xa2,0x86,0x11,0xa0,0x80,0x60, - 0xa0,0x88,0x60,0xa9,0x30,0x8d,0x2b,0x02, - 0xad,0x09,0xd2,0xcd,0xf2,0x02,0xd0,0x08, - 0xad,0xf1,0x02,0xd0,0x16,0xad,0xf2,0x02, - 0xc9,0x9f,0xf0,0x11,0x8d,0xfc,0x02,0x8d, - 0xf2,0x02,0xa9,0x00,0x85,0x4d,0xa9,0x03, - 0x8d,0xf1,0x02,0x68,0x40,0xad,0xff,0x02, - 0x49,0xff,0x8d,0xff,0x02,0xb0,0xef,0xa9, - 0x00,0x85,0x11,0x8d,0xff,0x02,0x8d,0xf0, - 0x02,0x68,0x40,0x6c,0x6a,0x3b,0x80,0x80, - 0x6b,0x2b,0x2a,0x6f,0x80,0x70,0x75,0x9b, - 0x69,0x2d,0x3d,0x76,0x80,0x63,0x80,0x80, - 0x62,0x78,0x7a,0x34,0x80,0x33,0x36,0x1b, - 0x35,0x32,0x31,0x2c,0x20,0x2e,0x6e,0x80, - 0x6d,0x2f,0x81,0x72,0x80,0x65,0x79,0x7f, - 0x74,0x77,0x71,0x39,0x80,0x30,0x37,0x7e, - 0x38,0x3c,0x3e,0x66,0x68,0x64,0x80,0x82, - 0x67,0x73,0x61,0x4c,0x4a,0x3a,0x80,0x80, - 0x4b,0x5c,0x5e,0x4f,0x80,0x50,0x55,0x9b, - 0x49,0x5f,0x7c,0x56,0x80,0x43,0x80,0x80, - 0x42,0x58,0x5a,0x24,0x80,0x23,0x26,0x1b, - 0x25,0x22,0x21,0x5b,0x20,0x5d,0x4e,0x80, - 0x4d,0x3f,0x80,0x52,0x80,0x45,0x59,0x9f, - 0x54,0x57,0x51,0x28,0x80,0x29,0x27,0x9c, - 0x40,0x7d,0x9d,0x46,0x48,0x44,0x80,0x83, - 0x47,0x53,0x41,0x0c,0x0a,0x7b,0x80,0x80, - 0x0b,0x1e,0x1f,0x0f,0x80,0x10,0x15,0x9b, - 0x09,0x1c,0x1d,0x16,0x80,0x03,0x80,0x80, - 0x02,0x18,0x1a,0x80,0x80,0x9b,0x80,0x1b, - 0x80,0xfd,0x80,0x00,0x20,0x60,0x0e,0x80, - 0x0d,0x80,0x80,0x12,0x80,0x05,0x19,0x9e, - 0x14,0x17,0x11,0x80,0x80,0x80,0x80,0xfe, - 0x80,0x7d,0xff,0x06,0x08,0x04,0x80,0x84, - 0x07,0x13,0x01,0xff,0xff,0xff,0xff,0xff, + 0xa5,0x64,0x60,0xa0,0x01,0x84,0x64,0x18, + 0x20,0x12,0xf9,0xa4,0x64,0x60,0xa5,0x54, + 0x20,0x53,0xfd,0x18,0xe5,0x54,0xaa,0xbd, + 0xa2,0xfc,0x65,0x55,0x60,0x98,0x29,0x07, + 0xaa,0xbd,0xc1,0xe4,0x48,0x98,0x4a,0x4a, + 0x4a,0xaa,0x68,0x60,0xa5,0x66,0x85,0x68, + 0x18,0x69,0x28,0x85,0x66,0xa5,0x67,0x85, + 0x69,0x69,0x00,0x85,0x67,0x60,0x78,0x50, + 0x28,0x00,0x00,0x10,0x14,0x00,0x11,0x22, + 0x33,0x44,0x55,0x66,0x77,0x88,0x99,0xaa, + 0xbb,0xcc,0xdd,0xee,0xff,0x00,0x55,0xaa, + 0xff,0x00,0xff,0xa2,0xff,0x8e,0xb2,0x02, + 0x8e,0xb3,0x02,0x8e,0xb4,0x02,0xe8,0x86, + 0x6c,0xa5,0x52,0x85,0x6d,0x60,0xa2,0x02, + 0xb5,0x54,0x95,0x5a,0xca,0x10,0xf9,0x60, + 0xe6,0x55,0xa6,0x53,0xe4,0x55,0xb0,0x06, + 0xa6,0x52,0x86,0x55,0xe6,0x54,0x60,0xa0, + 0x00,0xb1,0x5e,0x85,0x5d,0xae,0xf0,0x02, + 0xd0,0x04,0x49,0x80,0x91,0x5e,0xc8,0x60, + 0x40,0x80,0x70,0x70,0x80,0xa0,0xe0,0x60, + 0x50,0x50,0x50,0x50,0xa0,0x80,0x60,0x50, + 0xfc,0xfd,0xfe,0xfe,0xfd,0xfb,0xf7,0xf0, + 0xe1,0xe1,0xe1,0xe1,0xfb,0xfd,0xf0,0xe1, + 0x02,0x06,0x07,0x08,0x09,0x0a,0x0b,0x1d, + 0x3f,0x7f,0xbf,0xff,0x04,0x05,0x1c,0x3e, + 0x01,0x01,0x00,0x01,0x02,0x02,0x03,0x03, + 0x04,0x04,0x04,0x04,0x01,0x00,0x04,0x04, + 0x0c,0x18,0x30,0x60,0xc0,0x01,0x00,0x00, + 0x01,0x02,0x02,0x03,0x03,0x04,0x02,0x02, + 0x02,0x01,0x01,0x03,0x03,0xa2,0xff,0x8e, + 0xfc,0x02,0x8e,0xf2,0x02,0xe8,0x8e,0xf1, + 0x02,0x8e,0xb6,0x02,0xa9,0x40,0x8d,0xbe, + 0x02,0x60,0x98,0x29,0xc0,0x8d,0xbe,0x02, + 0xa2,0xff,0xa5,0x11,0xf0,0x56,0xad,0xfc, + 0x02,0xc9,0xff,0xf0,0xf5,0x8e,0xfc,0x02, + 0xa0,0x0c,0x20,0xcc,0xe4,0xc9,0xc0,0xb0, + 0xe7,0xa8,0xb9,0x0c,0xff,0x10,0x10,0xc9, + 0x81,0x90,0xdd,0xf0,0x2d,0xc9,0x83,0x90, + 0xd1,0xc9,0x85,0x90,0xcd,0xf0,0x32,0xc9, + 0x61,0x90,0x0f,0xc9,0x7b,0xb0,0x0b,0x2c, + 0xbe,0x02,0x70,0x04,0x10,0x04,0x29,0x1f, + 0x29,0xdf,0xa2,0x0f,0x20,0xae,0xfc,0xf0, + 0x03,0x4d,0xb6,0x02,0x8d,0xfb,0x02,0xa0, + 0x01,0x60,0xad,0xb6,0x02,0x49,0x80,0x8d, + 0xb6,0x02,0xb0,0xa4,0x86,0x11,0xa0,0x80, + 0x60,0xa0,0x88,0x60,0xa9,0x30,0x8d,0x2b, + 0x02,0xad,0x09,0xd2,0xcd,0xf2,0x02,0xd0, + 0x08,0xad,0xf1,0x02,0xd0,0x16,0xad,0xf2, + 0x02,0xc9,0x9f,0xf0,0x11,0x8d,0xfc,0x02, + 0x8d,0xf2,0x02,0xa9,0x00,0x85,0x4d,0xa9, + 0x03,0x8d,0xf1,0x02,0x68,0x40,0xad,0xff, + 0x02,0x49,0xff,0x8d,0xff,0x02,0xb0,0xef, + 0xa9,0x00,0x85,0x11,0x8d,0xff,0x02,0x8d, + 0xf0,0x02,0x68,0x40,0x6c,0x6a,0x3b,0x80, + 0x80,0x6b,0x2b,0x2a,0x6f,0x80,0x70,0x75, + 0x9b,0x69,0x2d,0x3d,0x76,0x80,0x63,0x80, + 0x80,0x62,0x78,0x7a,0x34,0x80,0x33,0x36, + 0x1b,0x35,0x32,0x31,0x2c,0x20,0x2e,0x6e, + 0x80,0x6d,0x2f,0x81,0x72,0x80,0x65,0x79, + 0x7f,0x74,0x77,0x71,0x39,0x80,0x30,0x37, + 0x7e,0x38,0x3c,0x3e,0x66,0x68,0x64,0x80, + 0x82,0x67,0x73,0x61,0x4c,0x4a,0x3a,0x80, + 0x80,0x4b,0x5c,0x5e,0x4f,0x80,0x50,0x55, + 0x9b,0x49,0x5f,0x7c,0x56,0x80,0x43,0x80, + 0x80,0x42,0x58,0x5a,0x24,0x80,0x23,0x26, + 0x1b,0x25,0x22,0x21,0x5b,0x20,0x5d,0x4e, + 0x80,0x4d,0x3f,0x80,0x52,0x80,0x45,0x59, + 0x9f,0x54,0x57,0x51,0x28,0x80,0x29,0x27, + 0x9c,0x40,0x7d,0x9d,0x46,0x48,0x44,0x80, + 0x83,0x47,0x53,0x41,0x0c,0x0a,0x7b,0x80, + 0x80,0x0b,0x1e,0x1f,0x0f,0x80,0x10,0x15, + 0x9b,0x09,0x1c,0x1d,0x16,0x80,0x03,0x80, + 0x80,0x02,0x18,0x1a,0x80,0x80,0x85,0x80, + 0x1b,0x80,0xfd,0x80,0x00,0x20,0x60,0x0e, + 0x80,0x0d,0x80,0x80,0x12,0x80,0x05,0x19, + 0x9e,0x14,0x17,0x11,0x80,0x80,0x80,0x80, + 0xfe,0x80,0x7d,0xff,0x06,0x08,0x04,0x80, + 0x84,0x07,0x13,0x01,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0x82,0xe8,0xe6,0xef,0x9f,0xe8 + 0xff,0xff,0x91,0xe8,0xf5,0xef,0xae,0xe8 }; #endif diff --git a/src/roms/altirraos_xl.c b/src/roms/altirraos_xl.c index 37d345f5..f818196c 100644 --- a/src/roms/altirraos_xl.c +++ b/src/roms/altirraos_xl.c @@ -61,169 +61,169 @@ UBYTE const ROM_altirraos_xl[0x4000] = 0x24,0x02,0x6c,0x28,0x02,0xbd,0x17,0x02, 0xd0,0x0a,0xdd,0x18,0x02,0xd0,0x02,0x8a, 0x60,0xde,0x18,0x02,0xde,0x17,0x02,0xd0, - 0x03,0xbd,0x18,0x02,0x60,0x0a,0x8d,0x2d, - 0x02,0x08,0x78,0x98,0xac,0x2d,0x02,0xee, - 0x0a,0xd4,0x99,0x16,0x02,0x8a,0x99,0x17, - 0x02,0x28,0x60,0xa9,0x40,0x8d,0x0e,0xd4, - 0xad,0x13,0xd0,0x8d,0xfa,0x03,0x60,0x2c, - 0x0f,0xd4,0x10,0x03,0x6c,0x00,0x02,0x48, - 0xd8,0x8a,0x48,0x98,0x48,0x8d,0x0f,0xd4, - 0x6c,0x22,0x02,0xd8,0x6c,0x16,0x02,0x2d, - 0xff,0xd1,0xf0,0x4d,0x8d,0x8c,0x02,0x8a, - 0x48,0xad,0x8c,0x02,0x6c,0x38,0x02,0xa9, - 0xef,0x20,0x43,0xc2,0x6c,0x0c,0x02,0x2c, - 0x0e,0xd2,0xd0,0x41,0x6c,0x0e,0x02,0xa9, - 0xfe,0x20,0x43,0xc2,0x6c,0x10,0x02,0xa9, - 0xfd,0x20,0x43,0xc2,0x6c,0x12,0x02,0xa9, - 0xfb,0x20,0x43,0xc2,0x6c,0x14,0x02,0x48, - 0xa9,0x20,0x2c,0x0e,0xd2,0xd0,0x0d,0xa9, - 0xdf,0x8d,0x0e,0xd2,0xa5,0x10,0x8d,0x0e, - 0xd2,0x6c,0x0a,0x02,0xad,0x49,0x02,0xd0, - 0xae,0xa9,0x10,0x2c,0x0e,0xd2,0xf0,0xb7, - 0x4a,0x24,0x10,0xd0,0xba,0xad,0x0e,0xd2, - 0x4a,0x90,0xbc,0x4a,0x90,0xc1,0x4a,0x90, - 0xc6,0x2c,0x0e,0xd2,0x50,0x21,0x10,0x27, - 0x2c,0x02,0xd3,0x30,0x2a,0x2c,0x03,0xd3, - 0x30,0x2b,0x68,0x8d,0x8c,0x02,0x68,0x48, - 0x29,0x10,0xf0,0x07,0xad,0x8c,0x02,0x48, - 0x6c,0x06,0x02,0xad,0x8c,0x02,0x40,0xa9, - 0xbf,0x20,0x43,0xc2,0x6c,0x08,0x02,0xa9, - 0x7f,0x20,0x43,0xc2,0x6c,0x36,0x02,0xad, - 0x00,0xd3,0x6c,0x02,0x02,0xad,0x01,0xd3, - 0x6c,0x04,0x02,0x8d,0x0e,0xd2,0xa5,0x10, - 0x8d,0x0e,0xd2,0x60,0xa9,0x7c,0x8d,0x38, - 0x02,0xa9,0xc2,0x8d,0x39,0x02,0xa9,0x01, - 0x8d,0x48,0x02,0x8d,0xff,0xd1,0xac,0x03, - 0xd8,0xc0,0x80,0xd0,0x0a,0xac,0x0b,0xd8, - 0xc0,0x91,0xd0,0x03,0x20,0x19,0xd8,0xad, - 0x48,0x02,0x0a,0xd0,0xe3,0x8d,0x48,0x02, - 0x8d,0xff,0xd1,0x60,0x8d,0x8c,0x02,0x49, - 0xff,0x18,0x69,0x01,0x2d,0x8c,0x02,0xae, - 0x48,0x02,0x8d,0x48,0x02,0x8d,0xff,0xd1, - 0x8a,0x48,0x20,0x08,0xd8,0x68,0x8d,0x48, - 0x02,0x8d,0xff,0xd1,0x68,0xaa,0x68,0x40, - 0xad,0x47,0x02,0xd0,0x08,0x8d,0x48,0x02, - 0x8d,0xff,0xd1,0x18,0x60,0xa9,0x00,0x38, - 0x2a,0xb0,0xf2,0x2c,0x47,0x02,0xf0,0xf8, - 0x8d,0x48,0x02,0x8d,0xff,0xd1,0x48,0x20, - 0x05,0xd8,0x68,0x90,0xeb,0xa9,0x00,0x8d, - 0x48,0x02,0x8d,0xff,0xd1,0x60,0xa0,0x00, - 0x10,0x0a,0xa0,0x02,0x10,0x06,0xa0,0x04, - 0x10,0x02,0xa0,0x06,0x8c,0x4a,0x02,0x8d, - 0x4b,0x02,0xa9,0x00,0x38,0x2a,0xb0,0x1b, - 0x2c,0x47,0x02,0xf0,0xf8,0x8d,0x48,0x02, - 0x8d,0xff,0xd1,0xa5,0x2f,0x20,0x07,0xc3, - 0x90,0xeb,0xa2,0x00,0x8e,0x48,0x02,0x8e, - 0xff,0xd1,0x60,0xa0,0x82,0xd0,0xf3,0xac, - 0x4a,0x02,0xb9,0x0e,0xd8,0x48,0xb9,0x0d, - 0xd8,0x48,0xad,0x4b,0x02,0xa0,0x92,0x60, - 0xa0,0x08,0x10,0xc0,0xa0,0x0a,0x10,0xbc, - 0x48,0x98,0x48,0x8a,0xa2,0x21,0xdd,0x1a, - 0x03,0xf0,0x17,0xca,0xca,0xca,0x10,0xf6, - 0xe8,0xe8,0xe8,0xbc,0x1a,0x03,0xf0,0x10, - 0xe0,0x24,0xd0,0xf4,0x68,0x68,0xa9,0xff, - 0x38,0x60,0x68,0xa8,0x68,0xe8,0x38,0x60, - 0x9d,0x1a,0x03,0x68,0x9d,0x1b,0x03,0x68, - 0x9d,0x1c,0x03,0x0a,0x18,0x60,0x8c,0x4a, - 0x02,0x8d,0x4b,0x02,0xa2,0xe9,0xa9,0x03, - 0xa8,0xd0,0x04,0xe0,0x00,0xf0,0x23,0x86, - 0x36,0x85,0x37,0xa0,0x12,0xb1,0x36,0xaa, - 0xc8,0xb1,0x36,0xcd,0x4b,0x02,0xd0,0xe8, - 0xec,0x4a,0x02,0xd0,0xe3,0x86,0x4a,0x85, - 0x4b,0xa0,0x10,0xb1,0x4a,0xc8,0x11,0x4a, - 0xf0,0x02,0x38,0x60,0xa0,0x12,0xb1,0x4a, - 0xaa,0xc8,0xb1,0x4a,0x91,0x36,0x88,0x8a, - 0x91,0x36,0x18,0x60,0x8c,0xec,0x02,0x8d, - 0xed,0x02,0x08,0xa2,0xe9,0xa9,0x03,0x86, - 0x4a,0x85,0x4b,0xa0,0x12,0xb1,0x4a,0xaa, - 0xc8,0xb1,0x4a,0xd0,0xf2,0xe0,0x00,0xd0, - 0xee,0xad,0xed,0x02,0x91,0x4a,0xaa,0x88, - 0xad,0xec,0x02,0x91,0x4a,0x86,0x4b,0x85, - 0x4a,0xa0,0x13,0xa9,0x00,0x91,0x4a,0x88, - 0x91,0x4a,0x20,0x1e,0xc4,0x90,0x0a,0xa5, - 0x4a,0xa4,0x4b,0x20,0x56,0xc3,0x28,0x38, - 0x60,0x28,0xb0,0x0a,0xa0,0x10,0xa9,0x00, - 0xaa,0x91,0x4a,0xc8,0x91,0x4a,0x20,0x07, - 0xc4,0xa0,0x0f,0xa9,0x00,0x91,0x4a,0xa0, - 0x11,0x18,0x71,0x4a,0x88,0x10,0xfb,0x69, - 0x00,0xa0,0x0f,0x91,0x4a,0x18,0x60,0xa0, - 0x11,0xb1,0x4a,0xaa,0x88,0xb1,0x4a,0x18, - 0x6d,0xe7,0x02,0x8d,0xe7,0x02,0x8a,0x6d, - 0xe8,0x02,0x8d,0xe8,0x02,0x60,0xa5,0x4a, - 0x18,0x69,0x0b,0xaa,0xa5,0x4b,0x69,0x00, - 0x48,0x8a,0x48,0x60,0xae,0xfb,0x03,0xad, - 0xfc,0x03,0x86,0x4a,0x85,0x4b,0x05,0x4a, - 0xf0,0x2d,0xa0,0x11,0x18,0xb1,0x4a,0x88, - 0x71,0x4a,0x88,0x88,0x71,0x4a,0x88,0x10, - 0xfb,0x69,0x00,0xa0,0x0f,0xd1,0x4a,0xd0, - 0x16,0x20,0x1e,0xc4,0xb0,0x11,0x20,0x07, - 0xc4,0xa0,0x13,0xb1,0x4a,0xaa,0xc8,0xb1, - 0x4a,0xd0,0xcf,0xe0,0x00,0xd0,0xcb,0x60, - 0xa2,0x4f,0x20,0xe2,0xc4,0xa9,0x00,0x8d, - 0x0a,0x03,0x8d,0x0b,0x03,0x8d,0x09,0x03, - 0xa9,0xea,0x8d,0x04,0x03,0xa9,0x02,0x8d, - 0x05,0x03,0xa9,0x04,0x8d,0x08,0x03,0xa9, - 0x40,0x8d,0x03,0x03,0x20,0x59,0xe4,0x10, - 0x11,0xc0,0x8a,0xd0,0x01,0x60,0xc0,0x80, - 0xf0,0xfb,0xa2,0x4e,0x20,0xe2,0xc4,0x4c, - 0x6d,0xc4,0xad,0xe7,0x02,0xaa,0x6a,0x8a, - 0x6d,0xea,0x02,0xaa,0xad,0xe8,0x02,0x6d, - 0xeb,0x02,0xcd,0xe6,0x02,0x90,0x09,0xd0, - 0xdd,0xec,0xe5,0x02,0xb0,0x02,0xd0,0xd6, - 0xad,0xe7,0x02,0xaa,0x6a,0x8a,0x69,0x00, - 0x8d,0xd1,0x02,0xad,0xe8,0x02,0x69,0x00, - 0x8d,0xd2,0x02,0xad,0xec,0x02,0x8d,0x00, - 0x03,0x38,0x20,0xff,0xc4,0xb0,0xb7,0x4c, - 0x6d,0xc4,0xa9,0x4f,0x8d,0x00,0x03,0x8e, - 0x0a,0x03,0x8e,0x0b,0x03,0xa9,0x40,0x8d, - 0x02,0x03,0xa9,0x01,0x8d,0x01,0x03,0xa9, - 0x00,0x8d,0x03,0x03,0x4c,0x59,0xe4,0x08, - 0xa9,0x80,0x8d,0xd3,0x02,0xa9,0x3e,0x8d, - 0xcf,0x02,0xa9,0xc5,0x8d,0xd0,0x02,0xa9, - 0x26,0x8d,0x02,0x03,0xa2,0x00,0x8e,0x0a, - 0x03,0x8e,0x09,0x03,0x8e,0x04,0x03,0xca, - 0x86,0x3d,0xa9,0x04,0x8d,0x05,0x03,0xa9, - 0x80,0x8d,0x08,0x03,0x20,0x58,0xc5,0xb0, - 0x0b,0xac,0xd1,0x02,0xad,0xd2,0x02,0x28, - 0x20,0x9c,0xc3,0x60,0x68,0x60,0xa6,0x3d, - 0x10,0x0c,0xa9,0x40,0x8d,0x03,0x03,0x20, - 0x59,0xe4,0x30,0x0a,0xa2,0x00,0xbd,0x00, - 0x04,0xe8,0x86,0x3d,0x18,0x60,0x38,0x60, - 0xa9,0x00,0x8d,0xd4,0x02,0x20,0x56,0xc6, - 0x8d,0x33,0x02,0x20,0x56,0xc6,0x8d,0x45, - 0x02,0x20,0x6f,0xc5,0x4c,0x5d,0xc5,0xae, - 0x33,0x02,0xbc,0x7e,0xc5,0xb9,0x8e,0xc5, - 0x48,0xb9,0x8a,0xc5,0x48,0x60,0x00,0x00, - 0x01,0x01,0x01,0x01,0x01,0x01,0x02,0x02, - 0x00,0x03,0x91,0xce,0xff,0x1d,0xc5,0xc5, - 0xc5,0xc6,0x20,0x56,0xc6,0x85,0x36,0x20, - 0x56,0xc6,0x85,0x37,0xad,0x33,0x02,0xc9, - 0x0a,0xf0,0x11,0x0a,0xaa,0x18,0xbd,0xd1, - 0x02,0x65,0x36,0x85,0x36,0xbd,0xd2,0x02, - 0x65,0x37,0x85,0x37,0xa9,0x00,0x8d,0x33, - 0x02,0xce,0x45,0x02,0xd0,0x0b,0x20,0x56, - 0xc6,0xac,0x33,0x02,0xee,0x33,0x02,0x91, - 0x36,0xce,0x45,0x02,0xd0,0xf0,0x60,0xad, - 0x33,0x02,0x4a,0xae,0xd1,0x02,0xc9,0x02, - 0xd0,0x03,0xae,0xd3,0x02,0x86,0x4a,0xc9, - 0x03,0x66,0x4b,0x20,0x56,0xc6,0xa8,0xb1, - 0x36,0x18,0x65,0x4a,0x91,0x36,0x24,0x4b, - 0x10,0x08,0xc8,0xb1,0x36,0x6d,0xd2,0x02, - 0x91,0x36,0xce,0x45,0x02,0xd0,0xe4,0x60, - 0x20,0x56,0xc6,0x85,0x4a,0x20,0x56,0xc6, - 0x18,0x6d,0xd1,0x02,0xa4,0x4a,0xad,0xd2, - 0x02,0x71,0x36,0x91,0x36,0xce,0x45,0x02, - 0xce,0x45,0x02,0xd0,0xe3,0x60,0x20,0x56, - 0xc6,0x8d,0xc9,0x02,0x20,0x56,0xc6,0x8d, - 0xca,0x02,0xae,0x33,0x02,0xd0,0x0e,0xa9, - 0x00,0x8d,0xc9,0x02,0x8d,0xca,0x02,0x18, - 0x68,0x68,0xa0,0x01,0x60,0xca,0xf0,0xf7, - 0x18,0xad,0xc9,0x02,0x6d,0xd1,0x02,0x8d, - 0xc9,0x02,0xad,0xca,0x02,0x6d,0xd2,0x02, - 0x8d,0xca,0x02,0x4c,0x37,0xc6,0x20,0x5e, - 0xc6,0x90,0x02,0x68,0x68,0x60,0x6c,0xcf, - 0x02,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, + 0x03,0xbd,0x18,0x02,0x60,0x0a,0x8c,0x2d, + 0x02,0xa8,0x8a,0x08,0x78,0xee,0x0a,0xd4, + 0xa2,0x7c,0x08,0x28,0x08,0x28,0xec,0x0b, + 0xd4,0xf0,0x0b,0x99,0x17,0x02,0xad,0x2d, + 0x02,0x99,0x16,0x02,0x28,0x60,0x08,0x28, + 0xf0,0xf1,0xa9,0x40,0x8d,0x0e,0xd4,0xad, + 0x13,0xd0,0x8d,0xfa,0x03,0x60,0x2c,0x0f, + 0xd4,0x10,0x03,0x6c,0x00,0x02,0x48,0xd8, + 0x8a,0x48,0x98,0x48,0x8d,0x0f,0xd4,0x6c, + 0x22,0x02,0xd8,0x6c,0x16,0x02,0x2d,0xff, + 0xd1,0xf0,0x4d,0x8d,0x8c,0x02,0x8a,0x48, + 0xad,0x8c,0x02,0x6c,0x38,0x02,0xa9,0xef, + 0x20,0x52,0xc2,0x6c,0x0c,0x02,0x2c,0x0e, + 0xd2,0xd0,0x41,0x6c,0x0e,0x02,0xa9,0xfe, + 0x20,0x52,0xc2,0x6c,0x10,0x02,0xa9,0xfd, + 0x20,0x52,0xc2,0x6c,0x12,0x02,0xa9,0xfb, + 0x20,0x52,0xc2,0x6c,0x14,0x02,0x48,0xa9, + 0x20,0x2c,0x0e,0xd2,0xd0,0x0d,0xa9,0xdf, + 0x8d,0x0e,0xd2,0xa5,0x10,0x8d,0x0e,0xd2, + 0x6c,0x0a,0x02,0xad,0x49,0x02,0xd0,0xae, + 0xa9,0x10,0x2c,0x0e,0xd2,0xf0,0xb7,0x4a, + 0x24,0x10,0xd0,0xba,0xad,0x0e,0xd2,0x4a, + 0x90,0xbc,0x4a,0x90,0xc1,0x4a,0x90,0xc6, + 0x2c,0x0e,0xd2,0x50,0x21,0x10,0x27,0x2c, + 0x02,0xd3,0x30,0x2a,0x2c,0x03,0xd3,0x30, + 0x2b,0x68,0x8d,0x8c,0x02,0x68,0x48,0x29, + 0x10,0xf0,0x07,0xad,0x8c,0x02,0x48,0x6c, + 0x06,0x02,0xad,0x8c,0x02,0x40,0xa9,0xbf, + 0x20,0x52,0xc2,0x6c,0x08,0x02,0xa9,0x7f, + 0x20,0x52,0xc2,0x6c,0x36,0x02,0xad,0x00, + 0xd3,0x6c,0x02,0x02,0xad,0x01,0xd3,0x6c, + 0x04,0x02,0x8d,0x0e,0xd2,0xa5,0x10,0x8d, + 0x0e,0xd2,0x60,0xa9,0x8b,0x8d,0x38,0x02, + 0xa9,0xc2,0x8d,0x39,0x02,0xa9,0x01,0x8d, + 0x48,0x02,0x8d,0xff,0xd1,0xac,0x03,0xd8, + 0xc0,0x80,0xd0,0x0a,0xac,0x0b,0xd8,0xc0, + 0x91,0xd0,0x03,0x20,0x19,0xd8,0xad,0x48, + 0x02,0x0a,0xd0,0xe3,0x8d,0x48,0x02,0x8d, + 0xff,0xd1,0x60,0x8d,0x8c,0x02,0x49,0xff, + 0x18,0x69,0x01,0x2d,0x8c,0x02,0xae,0x48, + 0x02,0x8d,0x48,0x02,0x8d,0xff,0xd1,0x8a, + 0x48,0x20,0x08,0xd8,0x68,0x8d,0x48,0x02, + 0x8d,0xff,0xd1,0x68,0xaa,0x68,0x40,0xad, + 0x47,0x02,0xd0,0x08,0x8d,0x48,0x02,0x8d, + 0xff,0xd1,0x18,0x60,0xa9,0x00,0x38,0x2a, + 0xb0,0xf2,0x2c,0x47,0x02,0xf0,0xf8,0x8d, + 0x48,0x02,0x8d,0xff,0xd1,0x48,0x20,0x05, + 0xd8,0x68,0x90,0xeb,0xa9,0x00,0x8d,0x48, + 0x02,0x8d,0xff,0xd1,0x60,0xa0,0x00,0x10, + 0x0a,0xa0,0x02,0x10,0x06,0xa0,0x04,0x10, + 0x02,0xa0,0x06,0x8c,0x4a,0x02,0x8d,0x4b, + 0x02,0xa9,0x00,0x38,0x2a,0xb0,0x1b,0x2c, + 0x47,0x02,0xf0,0xf8,0x8d,0x48,0x02,0x8d, + 0xff,0xd1,0xa5,0x2f,0x20,0x16,0xc3,0x90, + 0xeb,0xa2,0x00,0x8e,0x48,0x02,0x8e,0xff, + 0xd1,0x60,0xa0,0x82,0xd0,0xf3,0xac,0x4a, + 0x02,0xb9,0x0e,0xd8,0x48,0xb9,0x0d,0xd8, + 0x48,0xad,0x4b,0x02,0xa0,0x92,0x60,0xa0, + 0x08,0x10,0xc0,0xa0,0x0a,0x10,0xbc,0x48, + 0x98,0x48,0x8a,0xa2,0x21,0xdd,0x1a,0x03, + 0xf0,0x17,0xca,0xca,0xca,0x10,0xf6,0xe8, + 0xe8,0xe8,0xbc,0x1a,0x03,0xf0,0x10,0xe0, + 0x24,0xd0,0xf4,0x68,0x68,0xa9,0xff,0x38, + 0x60,0x68,0xa8,0x68,0xe8,0x38,0x60,0x9d, + 0x1a,0x03,0x68,0x9d,0x1b,0x03,0x68,0x9d, + 0x1c,0x03,0x0a,0x18,0x60,0x8c,0x4a,0x02, + 0x8d,0x4b,0x02,0xa2,0xe9,0xa9,0x03,0xa8, + 0xd0,0x04,0xe0,0x00,0xf0,0x23,0x86,0x36, + 0x85,0x37,0xa0,0x12,0xb1,0x36,0xaa,0xc8, + 0xb1,0x36,0xcd,0x4b,0x02,0xd0,0xe8,0xec, + 0x4a,0x02,0xd0,0xe3,0x86,0x4a,0x85,0x4b, + 0xa0,0x10,0xb1,0x4a,0xc8,0x11,0x4a,0xf0, + 0x02,0x38,0x60,0xa0,0x12,0xb1,0x4a,0xaa, + 0xc8,0xb1,0x4a,0x91,0x36,0x88,0x8a,0x91, + 0x36,0x18,0x60,0x8c,0xec,0x02,0x8d,0xed, + 0x02,0x08,0xa2,0xe9,0xa9,0x03,0x86,0x4a, + 0x85,0x4b,0xa0,0x12,0xb1,0x4a,0xaa,0xc8, + 0xb1,0x4a,0xd0,0xf2,0xe0,0x00,0xd0,0xee, + 0xad,0xed,0x02,0x91,0x4a,0xaa,0x88,0xad, + 0xec,0x02,0x91,0x4a,0x86,0x4b,0x85,0x4a, + 0xa0,0x13,0xa9,0x00,0x91,0x4a,0x88,0x91, + 0x4a,0x20,0x2d,0xc4,0x90,0x0a,0xa5,0x4a, + 0xa4,0x4b,0x20,0x65,0xc3,0x28,0x38,0x60, + 0x28,0xb0,0x0a,0xa0,0x10,0xa9,0x00,0xaa, + 0x91,0x4a,0xc8,0x91,0x4a,0x20,0x16,0xc4, + 0xa0,0x0f,0xa9,0x00,0x91,0x4a,0xa0,0x11, + 0x18,0x71,0x4a,0x88,0x10,0xfb,0x69,0x00, + 0xa0,0x0f,0x91,0x4a,0x18,0x60,0xa0,0x11, + 0xb1,0x4a,0xaa,0x88,0xb1,0x4a,0x18,0x6d, + 0xe7,0x02,0x8d,0xe7,0x02,0x8a,0x6d,0xe8, + 0x02,0x8d,0xe8,0x02,0x60,0xa5,0x4a,0x18, + 0x69,0x0b,0xaa,0xa5,0x4b,0x69,0x00,0x48, + 0x8a,0x48,0x60,0xae,0xfb,0x03,0xad,0xfc, + 0x03,0x86,0x4a,0x85,0x4b,0x05,0x4a,0xf0, + 0x2d,0xa0,0x11,0x18,0xb1,0x4a,0x88,0x71, + 0x4a,0x88,0x88,0x71,0x4a,0x88,0x10,0xfb, + 0x69,0x00,0xa0,0x0f,0xd1,0x4a,0xd0,0x16, + 0x20,0x2d,0xc4,0xb0,0x11,0x20,0x16,0xc4, + 0xa0,0x13,0xb1,0x4a,0xaa,0xc8,0xb1,0x4a, + 0xd0,0xcf,0xe0,0x00,0xd0,0xcb,0x60,0xa2, + 0x4f,0x20,0xf1,0xc4,0xa9,0x00,0x8d,0x0a, + 0x03,0x8d,0x0b,0x03,0x8d,0x09,0x03,0xa9, + 0xea,0x8d,0x04,0x03,0xa9,0x02,0x8d,0x05, + 0x03,0xa9,0x04,0x8d,0x08,0x03,0xa9,0x40, + 0x8d,0x03,0x03,0x20,0x59,0xe4,0x10,0x11, + 0xc0,0x8a,0xd0,0x01,0x60,0xc0,0x80,0xf0, + 0xfb,0xa2,0x4e,0x20,0xf1,0xc4,0x4c,0x7c, + 0xc4,0xad,0xe7,0x02,0xaa,0x6a,0x8a,0x6d, + 0xea,0x02,0xaa,0xad,0xe8,0x02,0x6d,0xeb, + 0x02,0xcd,0xe6,0x02,0x90,0x09,0xd0,0xdd, + 0xec,0xe5,0x02,0xb0,0x02,0xd0,0xd6,0xad, + 0xe7,0x02,0xaa,0x6a,0x8a,0x69,0x00,0x8d, + 0xd1,0x02,0xad,0xe8,0x02,0x69,0x00,0x8d, + 0xd2,0x02,0xad,0xec,0x02,0x8d,0x00,0x03, + 0x38,0x20,0x0e,0xc5,0xb0,0xb7,0x4c,0x7c, + 0xc4,0xa9,0x4f,0x8d,0x00,0x03,0x8e,0x0a, + 0x03,0x8e,0x0b,0x03,0xa9,0x40,0x8d,0x02, + 0x03,0xa9,0x01,0x8d,0x01,0x03,0xa9,0x00, + 0x8d,0x03,0x03,0x4c,0x59,0xe4,0x08,0xa9, + 0x80,0x8d,0xd3,0x02,0xa9,0x4d,0x8d,0xcf, + 0x02,0xa9,0xc5,0x8d,0xd0,0x02,0xa9,0x26, + 0x8d,0x02,0x03,0xa2,0x00,0x8e,0x0a,0x03, + 0x8e,0x09,0x03,0x8e,0x04,0x03,0xca,0x86, + 0x3d,0xa9,0x04,0x8d,0x05,0x03,0xa9,0x80, + 0x8d,0x08,0x03,0x20,0x67,0xc5,0xb0,0x0b, + 0xac,0xd1,0x02,0xad,0xd2,0x02,0x28,0x20, + 0xab,0xc3,0x60,0x68,0x60,0xa6,0x3d,0x10, + 0x0c,0xa9,0x40,0x8d,0x03,0x03,0x20,0x59, + 0xe4,0x30,0x0a,0xa2,0x00,0xbd,0x00,0x04, + 0xe8,0x86,0x3d,0x18,0x60,0x38,0x60,0xa9, + 0x00,0x8d,0xd4,0x02,0x20,0x65,0xc6,0x8d, + 0x33,0x02,0x20,0x65,0xc6,0x8d,0x45,0x02, + 0x20,0x7e,0xc5,0x4c,0x6c,0xc5,0xae,0x33, + 0x02,0xbc,0x8d,0xc5,0xb9,0x9d,0xc5,0x48, + 0xb9,0x99,0xc5,0x48,0x60,0x00,0x00,0x01, + 0x01,0x01,0x01,0x01,0x01,0x02,0x02,0x00, + 0x03,0xa0,0xdd,0x0e,0x2c,0xc5,0xc5,0xc6, + 0xc6,0x20,0x65,0xc6,0x85,0x36,0x20,0x65, + 0xc6,0x85,0x37,0xad,0x33,0x02,0xc9,0x0a, + 0xf0,0x11,0x0a,0xaa,0x18,0xbd,0xd1,0x02, + 0x65,0x36,0x85,0x36,0xbd,0xd2,0x02,0x65, + 0x37,0x85,0x37,0xa9,0x00,0x8d,0x33,0x02, + 0xce,0x45,0x02,0xd0,0x0b,0x20,0x65,0xc6, + 0xac,0x33,0x02,0xee,0x33,0x02,0x91,0x36, + 0xce,0x45,0x02,0xd0,0xf0,0x60,0xad,0x33, + 0x02,0x4a,0xae,0xd1,0x02,0xc9,0x02,0xd0, + 0x03,0xae,0xd3,0x02,0x86,0x4a,0xc9,0x03, + 0x66,0x4b,0x20,0x65,0xc6,0xa8,0xb1,0x36, + 0x18,0x65,0x4a,0x91,0x36,0x24,0x4b,0x10, + 0x08,0xc8,0xb1,0x36,0x6d,0xd2,0x02,0x91, + 0x36,0xce,0x45,0x02,0xd0,0xe4,0x60,0x20, + 0x65,0xc6,0x85,0x4a,0x20,0x65,0xc6,0x18, + 0x6d,0xd1,0x02,0xa4,0x4a,0xad,0xd2,0x02, + 0x71,0x36,0x91,0x36,0xce,0x45,0x02,0xce, + 0x45,0x02,0xd0,0xe3,0x60,0x20,0x65,0xc6, + 0x8d,0xc9,0x02,0x20,0x65,0xc6,0x8d,0xca, + 0x02,0xae,0x33,0x02,0xd0,0x0e,0xa9,0x00, + 0x8d,0xc9,0x02,0x8d,0xca,0x02,0x18,0x68, + 0x68,0xa0,0x01,0x60,0xca,0xf0,0xf7,0x18, + 0xad,0xc9,0x02,0x6d,0xd1,0x02,0x8d,0xc9, + 0x02,0xad,0xca,0x02,0x6d,0xd2,0x02,0x8d, + 0xca,0x02,0x4c,0x46,0xc6,0x20,0x6d,0xc6, + 0x90,0x02,0x68,0x68,0x60,0x6c,0xcf,0x02, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, @@ -624,10 +624,10 @@ UBYTE const ROM_altirraos_xl[0x4000] = 0x74,0x69,0x72,0x72,0x61,0x2f,0x33,0x00, 0x66,0x6f,0x72,0x00,0x38,0x2c,0x0f,0x38, 0x25,0x0f,0x38,0x25,0x27,0x33,0x00,0x13, - 0x0e,0x13,0x14,0x9b,0x23,0x6f,0x70,0x79, + 0x0e,0x13,0x19,0x9b,0x23,0x6f,0x70,0x79, 0x72,0x69,0x67,0x68,0x74,0x00,0x08,0x23, 0x09,0x00,0x12,0x10,0x11,0x12,0x0d,0x12, - 0x10,0x12,0x12,0x00,0x21,0x76,0x65,0x72, + 0x10,0x12,0x13,0x00,0x21,0x76,0x65,0x72, 0x79,0x00,0x2c,0x65,0x65,0x9b,0x21,0x6c, 0x6c,0x00,0x32,0x69,0x67,0x68,0x74,0x73, 0x00,0x32,0x65,0x73,0x65,0x72,0x76,0x65, @@ -785,7 +785,7 @@ UBYTE const ROM_altirraos_xl[0x4000] = 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, - 0x33,0x2e,0x33,0x34,0x00,0xff,0xff,0x00, + 0x33,0x2e,0x33,0x39,0x00,0xff,0xff,0x00, 0x20,0xa1,0xdb,0xa9,0x7f,0x85,0xd4,0x85, 0xea,0xa2,0xd5,0x20,0x46,0xda,0x85,0xe6, 0x85,0xe9,0xa4,0xf2,0xb1,0xf3,0xc9,0x2b, @@ -1170,26 +1170,26 @@ UBYTE const ROM_altirraos_xl[0x4000] = 0x00,0x7e,0x78,0x7c,0x6e,0x66,0x06,0x00, 0x08,0x18,0x38,0x78,0x38,0x18,0x08,0x00, 0x10,0x18,0x1c,0x1e,0x1c,0x18,0x10,0x00, - 0xfc,0xf9,0x2e,0xfe,0x08,0xfa,0xba,0xfa, + 0xfb,0xf9,0x29,0xfe,0x07,0xfa,0xb9,0xfa, 0xc8,0xe4,0xca,0xe4,0x4c,0xcb,0xe4,0x00, - 0xf5,0xf3,0x2e,0xfe,0xd1,0xf5,0x11,0xf6, - 0xc8,0xe4,0xf5,0xf6,0x20,0xc4,0xf5,0x00, - 0xc8,0xe4,0xc8,0xe4,0x6f,0xfe,0xca,0xe4, - 0xc8,0xe4,0xca,0xe4,0x4c,0x46,0xfe,0x00, - 0xe4,0xec,0xa5,0xec,0xca,0xe4,0x83,0xec, - 0xe9,0xec,0xca,0xe4,0x20,0x7e,0xec,0x00, - 0x15,0xed,0x6a,0xed,0x8b,0xed,0xcb,0xed, - 0xc8,0xe4,0xca,0xe4,0x4c,0x0b,0xed,0x00, - 0x4c,0x0e,0xec,0x4c,0x19,0xec,0x4c,0xfc, - 0xe4,0x4c,0xf6,0xe7,0x4c,0x5d,0xc1,0x4c, - 0x0c,0xc0,0x4c,0x50,0xc0,0x4c,0xeb,0xe7, - 0x4c,0x49,0xe9,0x4c,0x73,0xc1,0x4c,0xea, - 0xe4,0x4c,0x9b,0xe4,0x4c,0x4b,0xef,0x4c, - 0xd2,0xee,0x4c,0x0c,0xee,0x4c,0x29,0xed, - 0x4c,0x9b,0xe4,0x4c,0x00,0x50,0x4c,0x20, - 0xc3,0x4c,0x56,0xc3,0x4c,0x9c,0xc3,0xcd, - 0xc2,0xd1,0xc2,0xd5,0xc2,0xd9,0xc2,0x17, - 0xc3,0x1b,0xc3,0xad,0x01,0xd3,0x29,0x7f, + 0xf5,0xf3,0x29,0xfe,0xd0,0xf5,0x10,0xf6, + 0xc8,0xe4,0xf4,0xf6,0x20,0xc3,0xf5,0x00, + 0xc8,0xe4,0xc8,0xe4,0x6a,0xfe,0xca,0xe4, + 0xc8,0xe4,0xca,0xe4,0x4c,0x41,0xfe,0x00, + 0xe5,0xec,0xa6,0xec,0xca,0xe4,0x84,0xec, + 0xea,0xec,0xca,0xe4,0x20,0x7f,0xec,0x00, + 0x16,0xed,0x6b,0xed,0x8c,0xed,0xcc,0xed, + 0xc8,0xe4,0xca,0xe4,0x4c,0x0c,0xed,0x00, + 0x4c,0x0f,0xec,0x4c,0x1a,0xec,0x4c,0xfc, + 0xe4,0x4c,0xf7,0xe7,0x4c,0x5d,0xc1,0x4c, + 0x0c,0xc0,0x4c,0x50,0xc0,0x4c,0xec,0xe7, + 0x4c,0x4a,0xe9,0x4c,0x82,0xc1,0x4c,0xea, + 0xe4,0x4c,0x9b,0xe4,0x4c,0x4c,0xef,0x4c, + 0xd3,0xee,0x4c,0x0d,0xee,0x4c,0x2a,0xed, + 0x4c,0x9b,0xe4,0x4c,0x00,0x50,0x4c,0x2f, + 0xc3,0x4c,0x65,0xc3,0x4c,0xab,0xc3,0xdc, + 0xc2,0xe0,0xc2,0xe4,0xc2,0xe8,0xc2,0x26, + 0xc3,0x2a,0xc3,0xad,0x01,0xd3,0x29,0x7f, 0x8d,0x01,0xd3,0x4c,0x00,0x50,0xff,0xff, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, @@ -1203,8 +1203,8 @@ UBYTE const ROM_altirraos_xl[0x4000] = 0x40,0x03,0x20,0x5e,0xe7,0x8a,0xe9,0x10, 0xaa,0x10,0xf2,0x60,0x85,0x2f,0x86,0x2e, 0x20,0x13,0xe5,0xa6,0x2e,0x98,0x9d,0x43, - 0x03,0x08,0xa9,0x00,0x8d,0xe9,0x02,0xa5, - 0x2f,0x28,0x60,0x8a,0x29,0x8f,0xf0,0x06, + 0x03,0xa9,0x00,0x8d,0xe9,0x02,0xa5,0x2f, + 0xc0,0x00,0x60,0x8a,0x29,0x8f,0xf0,0x06, 0xa0,0x86,0x60,0xa0,0x84,0x60,0x20,0xeb, 0xe6,0xa5,0x22,0xc9,0x03,0xf0,0x7b,0x90, 0xf2,0xa4,0x20,0x30,0x15,0xc8,0x10,0x2e, @@ -1274,7 +1274,7 @@ UBYTE const ROM_altirraos_xl[0x4000] = 0x34,0x20,0x7a,0xe7,0x30,0x2b,0xa6,0x2e, 0xa9,0x7f,0x9d,0x40,0x03,0xa5,0x2d,0x9d, 0x4c,0x03,0xad,0xec,0x02,0x9d,0x4d,0x03, - 0xa9,0xc8,0x9d,0x46,0x03,0xa9,0xe7,0x9d, + 0xa9,0xc9,0x9d,0x46,0x03,0xa9,0xe7,0x9d, 0x47,0x03,0xa5,0x21,0x9d,0x41,0x03,0x68, 0x68,0xa0,0x01,0x60,0x20,0x69,0xe7,0xf0, 0x04,0xa0,0x82,0x68,0x68,0x60,0xa9,0x4d, @@ -1288,361 +1288,361 @@ UBYTE const ROM_altirraos_xl[0x4000] = 0x40,0x00,0x04,0x00,0xad,0xec,0x02,0x8d, 0xd1,0x02,0xad,0xed,0x02,0x8d,0xd2,0x02, 0xa6,0x2e,0xbd,0x4d,0x03,0x8d,0x00,0x03, - 0x20,0xff,0xc4,0xb0,0x11,0xa6,0x2e,0xbd, - 0x4c,0x03,0x85,0x2d,0x20,0x69,0xe7,0xd0, - 0x05,0x20,0xad,0xe5,0x10,0x02,0xa0,0x82, - 0x60,0x85,0x2f,0x86,0x2e,0xad,0xe9,0x02, - 0xf0,0x10,0x20,0xeb,0xe6,0x20,0x9c,0xe7, - 0x30,0x08,0xa0,0x07,0x20,0xd9,0xe6,0x4c, - 0xe4,0xe7,0xa0,0x82,0x08,0xa5,0x2f,0xa6, - 0x2e,0x28,0x60,0xa9,0x03,0x8d,0x0f,0xd2, - 0x8d,0x32,0x02,0x85,0x41,0x60,0xa9,0x01, - 0x8d,0xbd,0x02,0x85,0x42,0x20,0xa0,0xc2, - 0x90,0x03,0x4c,0xee,0xe8,0xba,0x8e,0x18, - 0x03,0x20,0x15,0xe9,0xa2,0x00,0xad,0x00, - 0x03,0xc9,0x60,0xd0,0x01,0xca,0x8e,0x0f, - 0x03,0x20,0x68,0xe9,0x2c,0x0f,0x03,0x10, - 0x03,0x4c,0xde,0xea,0xa9,0x0d,0x8d,0x9c, - 0x02,0xad,0x00,0x03,0x18,0x6d,0x01,0x03, - 0x38,0xe9,0x01,0x8d,0x3a,0x02,0xad,0x02, - 0x03,0x8d,0x3b,0x02,0xad,0x0a,0x03,0x8d, - 0x3c,0x02,0xad,0x0b,0x03,0x8d,0x3d,0x02, - 0xa9,0x34,0x8d,0x03,0xd3,0xa2,0x05,0xac, - 0x0b,0xd4,0xcc,0x0b,0xd4,0xf0,0xfb,0xc8, - 0xca,0xd0,0xf7,0xa9,0x00,0x85,0x3c,0xa9, - 0x02,0x85,0x33,0x85,0x35,0xa9,0x3a,0x85, - 0x32,0xa9,0x3e,0x85,0x34,0x20,0xcd,0xe9, - 0x30,0x67,0x20,0x20,0xe9,0x10,0x0a,0x20, - 0x3a,0xea,0xce,0x9c,0x02,0x10,0xaa,0x30, - 0x4d,0x2c,0x03,0x03,0x10,0x0d,0x20,0xb7, - 0xe9,0x20,0xcd,0xe9,0x30,0x4b,0x20,0x20, - 0xe9,0x30,0xe4,0xa2,0xff,0x86,0x3c,0xad, - 0x06,0x03,0x6a,0x6a,0x48,0x6a,0x29,0xc0, - 0xa8,0x68,0x29,0x3f,0xaa,0xa9,0x01,0x8d, - 0x17,0x03,0x20,0x5c,0xe4,0xa2,0x3e,0x86, - 0x32,0xe8,0x86,0x34,0xa2,0x02,0x86,0x33, - 0x86,0x35,0x20,0xfc,0xe9,0x30,0x0f,0xad, - 0x3e,0x02,0xc9,0x45,0xf0,0x34,0x09,0x02, - 0xc9,0x43,0xf0,0x2e,0xa0,0x90,0x20,0x3a, - 0xea,0xce,0xbd,0x02,0x30,0x03,0x4c,0x24, - 0xe8,0xae,0x0f,0x03,0xd0,0x0c,0x8e,0x01, - 0xd2,0x8e,0x03,0xd2,0x8e,0x05,0xd2,0x8e, - 0x07,0xd2,0xae,0x18,0x03,0x9a,0xa9,0x00, - 0x85,0x42,0xc0,0x00,0x8c,0x03,0x03,0x84, - 0x30,0x60,0x2c,0x03,0x03,0x50,0x08,0x20, - 0xb7,0xe9,0x20,0xfc,0xe9,0x30,0xc7,0x20, - 0x3a,0xea,0xad,0x3e,0x02,0xc9,0x45,0xf0, - 0xbb,0xa0,0x01,0xd0,0xc4,0xa9,0xd8,0x8d, - 0x26,0x02,0xa9,0xea,0x8d,0x27,0x02,0x60, - 0xa2,0xff,0x86,0x3c,0xe8,0xa9,0x01,0x8d, - 0x17,0x03,0xa0,0x02,0x84,0x33,0x84,0x35, - 0x20,0x5c,0xe4,0xa2,0x3e,0x86,0x32,0xe8, - 0x86,0x34,0x20,0xfc,0xe9,0x30,0x09,0xad, - 0x3e,0x02,0xc9,0x41,0xf0,0x02,0xa0,0x8b, - 0x60,0xa5,0x10,0x09,0x10,0x29,0xf7,0x85, - 0x10,0x8d,0x0e,0xd2,0xad,0x32,0x02,0x29, - 0x0f,0x09,0x20,0xae,0x0f,0x03,0xf0,0x02, - 0x09,0x08,0x8d,0x32,0x02,0x8d,0x0f,0xd2, - 0xa2,0x08,0xad,0x0f,0x03,0xf0,0x02,0xa2, - 0x11,0xa0,0x08,0xbd,0x9c,0xe9,0xca,0x99, - 0x00,0xd2,0x88,0x10,0xf6,0xa5,0x41,0xf0, - 0x17,0xa9,0xa8,0x8d,0x07,0xd2,0xae,0x0f, - 0x03,0xf0,0x0d,0xa9,0x10,0x2c,0x32,0x02, - 0xd0,0x06,0x8d,0x01,0xd2,0x8d,0x03,0xd2, - 0x8d,0x0a,0xd2,0x60,0x00,0xa0,0x00,0xa0, - 0x28,0xa0,0x00,0xa0,0x28,0x05,0xa0,0x07, - 0xa0,0xcc,0xa0,0x05,0xa0,0x28,0x00,0xa0, - 0x00,0xa0,0xcc,0xa0,0x05,0xa0,0x28,0x18, - 0xad,0x04,0x03,0x85,0x32,0x6d,0x08,0x03, - 0x85,0x34,0xad,0x05,0x03,0x85,0x33,0x6d, - 0x09,0x03,0x85,0x35,0x60,0x78,0x20,0x49, - 0xe9,0xa0,0x00,0x84,0x3a,0x84,0x30,0x84, - 0x3b,0xb1,0x32,0x8d,0x0d,0xd2,0x85,0x31, - 0x58,0xa5,0x11,0xf0,0x06,0xa5,0x3a,0xf0, - 0xf8,0xd0,0x04,0xa0,0x80,0x84,0x30,0x78, - 0xa5,0x10,0x29,0xe7,0x85,0x10,0x8d,0x0e, - 0xd2,0x58,0x98,0x60,0xa9,0x00,0x85,0x31, - 0xa2,0x00,0x86,0x39,0x86,0x38,0xe8,0x86, - 0x30,0x78,0xad,0x32,0x02,0x29,0x8f,0x09, - 0x10,0x8d,0x32,0x02,0x8d,0x0f,0xd2,0xa5, - 0x10,0x09,0x20,0x85,0x10,0x8d,0x0e,0xd2, - 0x58,0xa9,0x3c,0x8d,0x03,0xd3,0xad,0x17, - 0x03,0xf0,0x0b,0xa4,0x30,0x30,0x05,0xa5, - 0x39,0xf0,0xf3,0x98,0x78,0x60,0xa0,0x8a, - 0x78,0x60,0xa5,0x10,0x29,0xd7,0x85,0x10, - 0x8d,0x0e,0xd2,0x58,0x60,0xa5,0x38,0xd0, - 0x2a,0x98,0x48,0xad,0x0d,0xd2,0xa0,0x00, - 0x91,0x32,0x18,0x65,0x31,0x69,0x00,0x85, - 0x31,0x68,0xa8,0xe6,0x32,0xd0,0x02,0xe6, - 0x33,0xa5,0x32,0xc5,0x34,0xa5,0x33,0xe5, - 0x35,0x90,0x06,0xc6,0x38,0xa5,0x3c,0xd0, - 0x15,0x68,0x40,0xad,0x0d,0xd2,0xc5,0x31, - 0xd0,0x06,0xa9,0xff,0x85,0x39,0x68,0x40, - 0xa9,0x8f,0x85,0x30,0xd0,0xf4,0x85,0x39, - 0xa9,0x00,0x85,0x3c,0x68,0x40,0xe6,0x32, - 0xd0,0x02,0xe6,0x33,0xa5,0x32,0xc5,0x34, - 0xa5,0x33,0xe5,0x35,0xb0,0x13,0x98,0x48, - 0xa0,0x00,0xb1,0x32,0x8d,0x0d,0xd2,0x65, - 0x31,0x69,0x00,0x85,0x31,0x68,0xa8,0x68, - 0x40,0xa5,0x31,0x8d,0x0d,0xd2,0xa9,0xff, - 0x85,0x3b,0xa5,0x10,0x09,0x08,0x29,0xef, - 0x85,0x10,0x8d,0x0e,0xd2,0x68,0x40,0xa5, - 0x3b,0xf0,0x0b,0x85,0x3a,0xa5,0x10,0x29, - 0xf7,0x85,0x10,0x8d,0x0e,0xd2,0x68,0x40, - 0xa9,0x00,0x8d,0x17,0x03,0x60,0xad,0x02, - 0x03,0xc9,0x52,0xf0,0x0f,0xc9,0x50,0xf0, - 0x05,0xa0,0x8b,0x4c,0xd9,0xe8,0x20,0xfa, - 0xea,0x4c,0xd9,0xe8,0x20,0x0b,0xeb,0x4c, - 0xd9,0xe8,0xa2,0x02,0x20,0x57,0xee,0x20, - 0x49,0xe9,0x20,0xb7,0xe9,0x20,0xcd,0xe9, - 0x4c,0xd9,0xe8,0xa2,0x04,0x20,0x57,0xee, - 0xa2,0x1a,0x20,0x71,0xe9,0xad,0x32,0x02, - 0x29,0x8f,0x09,0x10,0x8d,0x32,0x02,0xa9, - 0x01,0x8d,0x17,0x03,0xa2,0x0e,0xa0,0x10, - 0x20,0x5d,0xc1,0xa9,0x10,0xac,0x17,0x03, - 0xf0,0x2b,0x2c,0x0f,0xd2,0xd0,0xf6,0x20, - 0xf7,0xeb,0x8c,0x0d,0x03,0x8d,0x0c,0x03, - 0xa9,0x10,0xa2,0x0a,0xac,0x17,0x03,0xf0, - 0x14,0x2c,0x0f,0xd2,0xf0,0xf6,0xca,0xf0, - 0x11,0xac,0x17,0x03,0xf0,0x07,0x2c,0x0f, - 0xd2,0xd0,0xf6,0xf0,0xe7,0xa0,0x8a,0x4c, - 0xd9,0xe8,0x20,0xf7,0xeb,0x8d,0x10,0x03, - 0x8c,0x11,0x03,0xa2,0x83,0xad,0x14,0xd0, - 0x4a,0xd0,0x02,0xa2,0x9c,0x8e,0x15,0x03, - 0xad,0x0c,0x03,0x20,0x05,0xec,0x85,0x34, - 0xad,0x10,0x03,0x20,0x05,0xec,0x18,0xe5, - 0x34,0x85,0x34,0xa0,0x00,0xb0,0x01,0x88, - 0xad,0x11,0x03,0x38,0xed,0x0d,0x03,0xaa, - 0xf0,0x0c,0xa5,0x34,0x18,0x6d,0x15,0x03, - 0x90,0x01,0xc8,0xca,0xd0,0xf6,0x84,0x35, - 0x0a,0x26,0x35,0x85,0x34,0xa4,0x35,0x06, - 0x34,0x26,0x35,0x65,0x34,0xaa,0x98,0x65, - 0x35,0xca,0x8e,0x04,0xd2,0x8e,0xee,0x02, - 0xe8,0xd0,0x02,0xe9,0x00,0x8d,0x06,0xd2, - 0x8d,0xef,0x02,0xae,0x32,0x02,0x8a,0x29, - 0xfc,0x8d,0x0f,0xd2,0x8d,0x0a,0xd2,0x8e, - 0x0f,0xd2,0x20,0xb7,0xe9,0xa9,0x55,0xa0, - 0x00,0xa2,0x02,0x91,0x32,0xe6,0x32,0xd0, - 0x02,0xe6,0x33,0xca,0xd0,0xf5,0x0a,0x85, - 0x31,0x20,0xfe,0xe9,0x4c,0x3a,0xea,0xa4, - 0x14,0xad,0x0b,0xd4,0xc4,0x14,0xd0,0xf7, - 0xc9,0x7c,0xf0,0xf3,0x60,0x38,0xe9,0x7c, - 0xb0,0x03,0x6d,0x15,0x03,0x60,0xa9,0x80, - 0x8d,0xd5,0x02,0xa9,0x00,0x8d,0xd6,0x02, - 0x60,0xa9,0x31,0x8d,0x00,0x03,0xa9,0x0f, - 0x8d,0x06,0x03,0xad,0x02,0x03,0x8d,0x3b, - 0x02,0xc9,0x53,0xd0,0x20,0xa9,0xea,0x8d, - 0x04,0x03,0xa9,0x02,0x8d,0x05,0x03,0x0a, + 0x18,0x20,0x0e,0xc5,0xb0,0x11,0xa6,0x2e, + 0xbd,0x4c,0x03,0x85,0x2d,0x20,0x69,0xe7, + 0xd0,0x05,0x20,0xad,0xe5,0x10,0x02,0xa0, + 0x82,0x60,0x85,0x2f,0x86,0x2e,0xad,0xe9, + 0x02,0xf0,0x10,0x20,0xeb,0xe6,0x20,0x9c, + 0xe7,0x30,0x08,0xa0,0x07,0x20,0xd9,0xe6, + 0x4c,0xe5,0xe7,0xa0,0x82,0x08,0xa5,0x2f, + 0xa6,0x2e,0x28,0x60,0xa9,0x03,0x8d,0x0f, + 0xd2,0x8d,0x32,0x02,0x85,0x41,0x60,0xa9, + 0x01,0x8d,0xbd,0x02,0x85,0x42,0x20,0xaf, + 0xc2,0x90,0x03,0x4c,0xef,0xe8,0xba,0x8e, + 0x18,0x03,0x20,0x16,0xe9,0xa2,0x00,0xad, + 0x00,0x03,0xc9,0x60,0xd0,0x01,0xca,0x8e, + 0x0f,0x03,0x20,0x69,0xe9,0x2c,0x0f,0x03, + 0x10,0x03,0x4c,0xdf,0xea,0xa9,0x0d,0x8d, + 0x9c,0x02,0xad,0x00,0x03,0x18,0x6d,0x01, + 0x03,0x38,0xe9,0x01,0x8d,0x3a,0x02,0xad, + 0x02,0x03,0x8d,0x3b,0x02,0xad,0x0a,0x03, + 0x8d,0x3c,0x02,0xad,0x0b,0x03,0x8d,0x3d, + 0x02,0xa9,0x34,0x8d,0x03,0xd3,0xa2,0x05, + 0xac,0x0b,0xd4,0xcc,0x0b,0xd4,0xf0,0xfb, + 0xc8,0xca,0xd0,0xf7,0xa9,0x00,0x85,0x3c, + 0xa9,0x02,0x85,0x33,0x85,0x35,0xa9,0x3a, + 0x85,0x32,0xa9,0x3e,0x85,0x34,0x20,0xce, + 0xe9,0x30,0x67,0x20,0x21,0xe9,0x10,0x0a, + 0x20,0x3b,0xea,0xce,0x9c,0x02,0x10,0xaa, + 0x30,0x4d,0x2c,0x03,0x03,0x10,0x0d,0x20, + 0xb8,0xe9,0x20,0xce,0xe9,0x30,0x4b,0x20, + 0x21,0xe9,0x30,0xe4,0xa2,0xff,0x86,0x3c, + 0xad,0x06,0x03,0x6a,0x6a,0x48,0x6a,0x29, + 0xc0,0xa8,0x68,0x29,0x3f,0xaa,0xa9,0x01, + 0x8d,0x17,0x03,0x20,0x5c,0xe4,0xa2,0x3e, + 0x86,0x32,0xe8,0x86,0x34,0xa2,0x02,0x86, + 0x33,0x86,0x35,0x20,0xfd,0xe9,0x30,0x0f, + 0xad,0x3e,0x02,0xc9,0x45,0xf0,0x34,0x09, + 0x02,0xc9,0x43,0xf0,0x2e,0xa0,0x90,0x20, + 0x3b,0xea,0xce,0xbd,0x02,0x30,0x03,0x4c, + 0x25,0xe8,0xae,0x0f,0x03,0xd0,0x0c,0x8e, + 0x01,0xd2,0x8e,0x03,0xd2,0x8e,0x05,0xd2, + 0x8e,0x07,0xd2,0xae,0x18,0x03,0x9a,0xa9, + 0x00,0x85,0x42,0xc0,0x00,0x8c,0x03,0x03, + 0x84,0x30,0x60,0x2c,0x03,0x03,0x50,0x08, + 0x20,0xb8,0xe9,0x20,0xfd,0xe9,0x30,0xc7, + 0x20,0x3b,0xea,0xad,0x3e,0x02,0xc9,0x45, + 0xf0,0xbb,0xa0,0x01,0xd0,0xc4,0xa9,0xd9, + 0x8d,0x26,0x02,0xa9,0xea,0x8d,0x27,0x02, + 0x60,0xa2,0xff,0x86,0x3c,0xe8,0xa9,0x01, + 0x8d,0x17,0x03,0xa0,0x02,0x84,0x33,0x84, + 0x35,0x20,0x5c,0xe4,0xa2,0x3e,0x86,0x32, + 0xe8,0x86,0x34,0x20,0xfd,0xe9,0x30,0x09, + 0xad,0x3e,0x02,0xc9,0x41,0xf0,0x02,0xa0, + 0x8b,0x60,0xa5,0x10,0x09,0x10,0x29,0xf7, + 0x85,0x10,0x8d,0x0e,0xd2,0xad,0x32,0x02, + 0x29,0x0f,0x09,0x20,0xae,0x0f,0x03,0xf0, + 0x02,0x09,0x08,0x8d,0x32,0x02,0x8d,0x0f, + 0xd2,0xa2,0x08,0xad,0x0f,0x03,0xf0,0x02, + 0xa2,0x11,0xa0,0x08,0xbd,0x9d,0xe9,0xca, + 0x99,0x00,0xd2,0x88,0x10,0xf6,0xa5,0x41, + 0xf0,0x17,0xa9,0xa8,0x8d,0x07,0xd2,0xae, + 0x0f,0x03,0xf0,0x0d,0xa9,0x10,0x2c,0x32, + 0x02,0xd0,0x06,0x8d,0x01,0xd2,0x8d,0x03, + 0xd2,0x8d,0x0a,0xd2,0x60,0x00,0xa0,0x00, + 0xa0,0x28,0xa0,0x00,0xa0,0x28,0x05,0xa0, + 0x07,0xa0,0xcc,0xa0,0x05,0xa0,0x28,0x00, + 0xa0,0x00,0xa0,0xcc,0xa0,0x05,0xa0,0x28, + 0x18,0xad,0x04,0x03,0x85,0x32,0x6d,0x08, + 0x03,0x85,0x34,0xad,0x05,0x03,0x85,0x33, + 0x6d,0x09,0x03,0x85,0x35,0x60,0x78,0x20, + 0x4a,0xe9,0xa0,0x00,0x84,0x3a,0x84,0x30, + 0x84,0x3b,0xb1,0x32,0x8d,0x0d,0xd2,0x85, + 0x31,0x58,0xa5,0x11,0xf0,0x06,0xa5,0x3a, + 0xf0,0xf8,0xd0,0x04,0xa0,0x80,0x84,0x30, + 0x78,0xa5,0x10,0x29,0xe7,0x85,0x10,0x8d, + 0x0e,0xd2,0x58,0x98,0x60,0xa9,0x00,0x85, + 0x31,0xa2,0x00,0x86,0x39,0x86,0x38,0xe8, + 0x86,0x30,0x78,0xad,0x32,0x02,0x29,0x8f, + 0x09,0x10,0x8d,0x32,0x02,0x8d,0x0f,0xd2, + 0xa5,0x10,0x09,0x20,0x85,0x10,0x8d,0x0e, + 0xd2,0x58,0xa9,0x3c,0x8d,0x03,0xd3,0xad, + 0x17,0x03,0xf0,0x0b,0xa4,0x30,0x30,0x05, + 0xa5,0x39,0xf0,0xf3,0x98,0x78,0x60,0xa0, + 0x8a,0x78,0x60,0xa5,0x10,0x29,0xd7,0x85, + 0x10,0x8d,0x0e,0xd2,0x58,0x60,0xa5,0x38, + 0xd0,0x2a,0x98,0x48,0xad,0x0d,0xd2,0xa0, + 0x00,0x91,0x32,0x18,0x65,0x31,0x69,0x00, + 0x85,0x31,0x68,0xa8,0xe6,0x32,0xd0,0x02, + 0xe6,0x33,0xa5,0x32,0xc5,0x34,0xa5,0x33, + 0xe5,0x35,0x90,0x06,0xc6,0x38,0xa5,0x3c, + 0xd0,0x15,0x68,0x40,0xad,0x0d,0xd2,0xc5, + 0x31,0xd0,0x06,0xa9,0xff,0x85,0x39,0x68, + 0x40,0xa9,0x8f,0x85,0x30,0xd0,0xf4,0x85, + 0x39,0xa9,0x00,0x85,0x3c,0x68,0x40,0xe6, + 0x32,0xd0,0x02,0xe6,0x33,0xa5,0x32,0xc5, + 0x34,0xa5,0x33,0xe5,0x35,0xb0,0x13,0x98, + 0x48,0xa0,0x00,0xb1,0x32,0x8d,0x0d,0xd2, + 0x65,0x31,0x69,0x00,0x85,0x31,0x68,0xa8, + 0x68,0x40,0xa5,0x31,0x8d,0x0d,0xd2,0xa9, + 0xff,0x85,0x3b,0xa5,0x10,0x09,0x08,0x29, + 0xef,0x85,0x10,0x8d,0x0e,0xd2,0x68,0x40, + 0xa5,0x3b,0xf0,0x0b,0x85,0x3a,0xa5,0x10, + 0x29,0xf7,0x85,0x10,0x8d,0x0e,0xd2,0x68, + 0x40,0xa9,0x00,0x8d,0x17,0x03,0x60,0xad, + 0x02,0x03,0xc9,0x52,0xf0,0x0f,0xc9,0x50, + 0xf0,0x05,0xa0,0x8b,0x4c,0xda,0xe8,0x20, + 0xfb,0xea,0x4c,0xda,0xe8,0x20,0x0c,0xeb, + 0x4c,0xda,0xe8,0xa2,0x02,0x20,0x58,0xee, + 0x20,0x4a,0xe9,0x20,0xb8,0xe9,0x20,0xce, + 0xe9,0x4c,0xda,0xe8,0xa2,0x04,0x20,0x58, + 0xee,0xa2,0x1a,0x20,0x72,0xe9,0xad,0x32, + 0x02,0x29,0x8f,0x09,0x10,0x8d,0x32,0x02, + 0xa9,0x01,0x8d,0x17,0x03,0xa2,0x0e,0xa0, + 0x10,0x20,0x5d,0xc1,0xa9,0x10,0xac,0x17, + 0x03,0xf0,0x2b,0x2c,0x0f,0xd2,0xd0,0xf6, + 0x20,0xf8,0xeb,0x8c,0x0d,0x03,0x8d,0x0c, + 0x03,0xa9,0x10,0xa2,0x0a,0xac,0x17,0x03, + 0xf0,0x14,0x2c,0x0f,0xd2,0xf0,0xf6,0xca, + 0xf0,0x11,0xac,0x17,0x03,0xf0,0x07,0x2c, + 0x0f,0xd2,0xd0,0xf6,0xf0,0xe7,0xa0,0x8a, + 0x4c,0xda,0xe8,0x20,0xf8,0xeb,0x8d,0x10, + 0x03,0x8c,0x11,0x03,0xa2,0x83,0xad,0x14, + 0xd0,0x4a,0xd0,0x02,0xa2,0x9c,0x8e,0x15, + 0x03,0xad,0x0c,0x03,0x20,0x06,0xec,0x85, + 0x34,0xad,0x10,0x03,0x20,0x06,0xec,0x18, + 0xe5,0x34,0x85,0x34,0xa0,0x00,0xb0,0x01, + 0x88,0xad,0x11,0x03,0x38,0xed,0x0d,0x03, + 0xaa,0xf0,0x0c,0xa5,0x34,0x18,0x6d,0x15, + 0x03,0x90,0x01,0xc8,0xca,0xd0,0xf6,0x84, + 0x35,0x0a,0x26,0x35,0x85,0x34,0xa4,0x35, + 0x06,0x34,0x26,0x35,0x65,0x34,0xaa,0x98, + 0x65,0x35,0xca,0x8e,0x04,0xd2,0x8e,0xee, + 0x02,0xe8,0xd0,0x02,0xe9,0x00,0x8d,0x06, + 0xd2,0x8d,0xef,0x02,0xae,0x32,0x02,0x8a, + 0x29,0xfc,0x8d,0x0f,0xd2,0x8d,0x0a,0xd2, + 0x8e,0x0f,0xd2,0x20,0xb8,0xe9,0xa9,0x55, + 0xa0,0x00,0xa2,0x02,0x91,0x32,0xe6,0x32, + 0xd0,0x02,0xe6,0x33,0xca,0xd0,0xf5,0x0a, + 0x85,0x31,0x20,0xff,0xe9,0x4c,0x3b,0xea, + 0xa4,0x14,0xad,0x0b,0xd4,0xc4,0x14,0xd0, + 0xf7,0xc9,0x7c,0xf0,0xf3,0x60,0x38,0xe9, + 0x7c,0xb0,0x03,0x6d,0x15,0x03,0x60,0xa9, + 0x80,0x8d,0xd5,0x02,0xa9,0x00,0x8d,0xd6, + 0x02,0x60,0xa9,0x31,0x8d,0x00,0x03,0xa9, + 0x0f,0x8d,0x06,0x03,0xad,0x02,0x03,0x8d, + 0x3b,0x02,0xc9,0x53,0xd0,0x20,0xa9,0xea, + 0x8d,0x04,0x03,0xa9,0x02,0x8d,0x05,0x03, + 0x0a,0x8d,0x08,0x03,0xa9,0x00,0x8d,0x09, + 0x03,0x20,0x6c,0xec,0x30,0x07,0xae,0xec, + 0x02,0x8e,0x46,0x02,0xaa,0x60,0xac,0xd5, + 0x02,0x8c,0x08,0x03,0xac,0xd6,0x02,0x8c, + 0x09,0x03,0xc9,0x50,0xf0,0x1d,0xc9,0x57, + 0xf0,0x19,0xc9,0x21,0xd0,0x06,0xad,0x46, + 0x02,0x8d,0x06,0x03,0xa9,0x40,0x8d,0x03, + 0x03,0x20,0x59,0xe4,0xad,0x02,0x03,0xc0, + 0x00,0x38,0x60,0xa9,0x80,0xd0,0xef,0xa9, + 0x1e,0x8d,0x14,0x03,0x60,0xa2,0x28,0xa4, + 0x2b,0xc0,0x53,0xd0,0x02,0xa2,0x1d,0x8e, + 0xdf,0x02,0xee,0xde,0x02,0xae,0xde,0x02, + 0x9d,0xbf,0x03,0xc9,0x9b,0xf0,0x10,0xec, + 0xdf,0x02,0xb0,0x16,0xa0,0x01,0x60,0xae, + 0xde,0x02,0xf0,0xf8,0xa9,0x9b,0x2c,0xa9, + 0x20,0x9d,0xc0,0x03,0xe8,0xec,0xdf,0x02, + 0x90,0xf7,0xa0,0x0a,0xb9,0xdb,0xec,0x99, + 0xff,0x02,0x88,0xd0,0xf7,0x8c,0xde,0x02, + 0x8e,0x08,0x03,0x8a,0x29,0x1d,0x49,0x4e, + 0x8d,0x0a,0x03,0xad,0x14,0x03,0x8d,0x06, + 0x03,0x4c,0x59,0xe4,0x40,0x01,0x57,0x80, + 0xc0,0x03,0x00,0x00,0x00,0x00,0xa9,0x00, + 0x8d,0xde,0x02,0xa2,0x09,0xbd,0x02,0xed, + 0x9d,0x00,0x03,0xca,0x10,0xf7,0x20,0xd3, + 0xec,0x30,0x06,0xad,0xec,0x02,0x8d,0x14, + 0x03,0x60,0x40,0x01,0x53,0x40,0xea,0x02, + 0x00,0x00,0x04,0x00,0xa9,0xcc,0x8d,0xee, + 0x02,0xa9,0x05,0x8d,0xef,0x02,0x60,0xa5, + 0x2b,0x85,0x3e,0xa2,0x80,0xa5,0x2a,0x29, + 0x0c,0xc9,0x04,0xf0,0x05,0xc9,0x08,0xf0, + 0x03,0x60,0xa2,0x00,0x8e,0x89,0x02,0xa9, + 0x80,0x85,0x3d,0x8d,0x8a,0x02,0x0a,0x85, + 0x3f,0x2c,0x89,0x02,0x10,0x05,0x06,0x3d, + 0x20,0x84,0xee,0x20,0x84,0xee,0x20,0x6b, + 0xfe,0x30,0x20,0x2c,0x89,0x02,0x10,0x08, + 0xa9,0xff,0x8d,0x0f,0x03,0x20,0x55,0xe9, + 0xa9,0x34,0x8d,0x02,0xd3,0xa2,0x00,0x2c, + 0x89,0x02,0x30,0x02,0xa2,0x01,0x20,0x5e, + 0xee,0xa0,0x01,0x60,0xad,0x89,0x02,0x10, + 0x0a,0xa5,0x3d,0xf0,0x03,0x20,0xdd,0xed, + 0x20,0xdd,0xed,0xa9,0x3c,0x8d,0x02,0xd3, + 0xa0,0x00,0x8c,0x01,0xd2,0x8c,0x03,0xd2, + 0x8c,0x07,0xd2,0xc8,0x60,0xa5,0x3f,0xd0, + 0x1d,0xa6,0x3d,0xec,0x8a,0x02,0xf0,0x08, + 0xbd,0x00,0x04,0xe6,0x3d,0xa0,0x01,0x60, + 0x20,0x0d,0xee,0x30,0x0b,0xad,0xff,0x03, + 0xc9,0xfe,0xd0,0x05,0x85,0x3f,0xa0,0x88, + 0x60,0xa2,0x00,0x86,0x3d,0xa2,0x80,0xc9, + 0xfc,0xd0,0x06,0x8e,0x8a,0x02,0x4c,0x91, + 0xed,0xc9,0xfa,0xd0,0x05,0xae,0x7f,0x04, + 0xb0,0xf1,0xa0,0xa3,0x60,0xa6,0x3d,0x9d, + 0x00,0x04,0xe8,0x86,0x3d,0xec,0x8a,0x02, + 0xb0,0x03,0xa0,0x01,0x60,0xa9,0x00,0xa2, + 0xfe,0xa4,0x3d,0xd0,0x08,0x99,0x00,0x04, + 0xc8,0x10,0xfa,0x30,0x0c,0xa2,0xfc,0xcc, + 0x8a,0x02,0xb0,0x05,0xa2,0xfa,0x8c,0x7f, + 0x04,0x8e,0xff,0x03,0x85,0x3d,0xa9,0x55, + 0x8d,0xfd,0x03,0x8d,0xfe,0x03,0xa2,0x80, + 0xa0,0x50,0x4c,0x11,0xee,0xa2,0x40,0xa0, + 0x52,0xa9,0x34,0x8d,0x02,0xd3,0x8e,0x03, + 0x03,0x8c,0x02,0x03,0xa9,0xfd,0x8d,0x04, + 0x03,0xa9,0x03,0x8d,0x05,0x03,0xa9,0x83, 0x8d,0x08,0x03,0xa9,0x00,0x8d,0x09,0x03, - 0x20,0x6b,0xec,0x30,0x07,0xae,0xec,0x02, - 0x8e,0x46,0x02,0xaa,0x60,0xac,0xd5,0x02, - 0x8c,0x08,0x03,0xac,0xd6,0x02,0x8c,0x09, - 0x03,0xc9,0x50,0xf0,0x1d,0xc9,0x57,0xf0, - 0x19,0xc9,0x21,0xd0,0x06,0xad,0x46,0x02, - 0x8d,0x06,0x03,0xa9,0x40,0x8d,0x03,0x03, - 0x20,0x59,0xe4,0xad,0x02,0x03,0xc0,0x00, - 0x38,0x60,0xa9,0x80,0xd0,0xef,0xa9,0x1e, - 0x8d,0x14,0x03,0x60,0xa2,0x28,0xa4,0x2b, - 0xc0,0x53,0xd0,0x02,0xa2,0x1d,0x8e,0xdf, - 0x02,0xee,0xde,0x02,0xae,0xde,0x02,0x9d, - 0xbf,0x03,0xc9,0x9b,0xf0,0x10,0xec,0xdf, - 0x02,0xb0,0x16,0xa0,0x01,0x60,0xae,0xde, - 0x02,0xf0,0xf8,0xa9,0x9b,0x2c,0xa9,0x20, - 0x9d,0xc0,0x03,0xe8,0xec,0xdf,0x02,0x90, - 0xf7,0xa0,0x0a,0xb9,0xda,0xec,0x99,0xff, - 0x02,0x88,0xd0,0xf7,0x8c,0xde,0x02,0x8e, - 0x08,0x03,0x8a,0x29,0x1d,0x49,0x4e,0x8d, - 0x0a,0x03,0xad,0x14,0x03,0x8d,0x06,0x03, - 0x4c,0x59,0xe4,0x40,0x01,0x57,0x80,0xc0, - 0x03,0x00,0x00,0x00,0x00,0xa9,0x00,0x8d, - 0xde,0x02,0xa2,0x09,0xbd,0x01,0xed,0x9d, - 0x00,0x03,0xca,0x10,0xf7,0x20,0xd2,0xec, - 0x30,0x06,0xad,0xec,0x02,0x8d,0x14,0x03, - 0x60,0x40,0x01,0x53,0x40,0xea,0x02,0x00, - 0x00,0x04,0x00,0xa9,0xcc,0x8d,0xee,0x02, - 0xa9,0x05,0x8d,0xef,0x02,0x60,0xa5,0x2b, - 0x85,0x3e,0xa2,0x80,0xa5,0x2a,0x29,0x0c, - 0xc9,0x04,0xf0,0x05,0xc9,0x08,0xf0,0x03, - 0x60,0xa2,0x00,0x8e,0x89,0x02,0xa9,0x80, - 0x85,0x3d,0x8d,0x8a,0x02,0x0a,0x85,0x3f, - 0x2c,0x89,0x02,0x10,0x05,0x06,0x3d,0x20, - 0x83,0xee,0x20,0x83,0xee,0x20,0x70,0xfe, - 0x30,0x20,0x2c,0x89,0x02,0x10,0x08,0xa9, - 0xff,0x8d,0x0f,0x03,0x20,0x54,0xe9,0xa9, - 0x34,0x8d,0x02,0xd3,0xa2,0x00,0x2c,0x89, - 0x02,0x30,0x02,0xa2,0x01,0x20,0x5d,0xee, - 0xa0,0x01,0x60,0xad,0x89,0x02,0x10,0x0a, - 0xa5,0x3d,0xf0,0x03,0x20,0xdc,0xed,0x20, - 0xdc,0xed,0xa9,0x3c,0x8d,0x02,0xd3,0xa0, - 0x00,0x8c,0x01,0xd2,0x8c,0x03,0xd2,0x8c, - 0x07,0xd2,0xc8,0x60,0xa5,0x3f,0xd0,0x1d, - 0xa6,0x3d,0xec,0x8a,0x02,0xf0,0x08,0xbd, - 0x00,0x04,0xe6,0x3d,0xa0,0x01,0x60,0x20, - 0x0c,0xee,0x30,0x0b,0xad,0xff,0x03,0xc9, - 0xfe,0xd0,0x05,0x85,0x3f,0xa0,0x88,0x60, - 0xa2,0x00,0x86,0x3d,0xa2,0x80,0xc9,0xfc, - 0xd0,0x06,0x8e,0x8a,0x02,0x4c,0x90,0xed, - 0xc9,0xfa,0xd0,0x05,0xae,0x7f,0x04,0xb0, - 0xf1,0xa0,0xa3,0x60,0xa6,0x3d,0x9d,0x00, - 0x04,0xe8,0x86,0x3d,0xec,0x8a,0x02,0xb0, - 0x03,0xa0,0x01,0x60,0xa9,0x00,0xa2,0xfe, - 0xa4,0x3d,0xd0,0x08,0x99,0x00,0x04,0xc8, - 0x10,0xfa,0x30,0x0c,0xa2,0xfc,0xcc,0x8a, - 0x02,0xb0,0x05,0xa2,0xfa,0x8c,0x7f,0x04, - 0x8e,0xff,0x03,0x85,0x3d,0xa9,0x55,0x8d, - 0xfd,0x03,0x8d,0xfe,0x03,0xa2,0x80,0xa0, - 0x50,0x4c,0x10,0xee,0xa2,0x40,0xa0,0x52, - 0xa9,0x34,0x8d,0x02,0xd3,0x8e,0x03,0x03, - 0x8c,0x02,0x03,0xa9,0xfd,0x8d,0x04,0x03, - 0xa9,0x03,0x8d,0x05,0x03,0xa9,0x83,0x8d, - 0x08,0x03,0xa9,0x00,0x8d,0x09,0x03,0xa9, - 0x60,0x8d,0x00,0x03,0xa9,0x00,0x8d,0x01, - 0x03,0xa5,0x3e,0x8d,0x0b,0x03,0x20,0x59, - 0xe4,0xa5,0x3e,0x30,0x0f,0x2c,0x89,0x02, - 0x10,0x05,0xa2,0x06,0x20,0x5d,0xee,0xa9, - 0x3c,0x8d,0x02,0xd3,0xa4,0x30,0x60,0x2c, - 0x0b,0x03,0x10,0x01,0xe8,0x20,0x15,0xe9, - 0xbc,0x75,0xee,0xbd,0x7c,0xee,0xaa,0xa9, - 0x01,0x8d,0x17,0x03,0x20,0x5d,0xc1,0xad, - 0x17,0x03,0xd0,0xfb,0x60,0x80,0x40,0xb4, - 0x0f,0x78,0x0a,0x3c,0x04,0x02,0x00,0x00, - 0x00,0x00,0x00,0xa0,0x00,0x98,0xa2,0x0a, - 0x48,0xad,0x0b,0xd4,0xcd,0x0b,0xd4,0xf0, - 0xfb,0xca,0xd0,0xf5,0x68,0x49,0x08,0x8d, - 0x1f,0xd0,0xd0,0xea,0x88,0xd0,0xe7,0x60, - 0x5c,0x93,0x25,0x50,0x30,0xe4,0x43,0x40, - 0xe4,0x45,0x00,0xe4,0x53,0x10,0xe4,0x4b, - 0x20,0xe4,0x6c,0xfe,0xbf,0x78,0xd8,0xa2, - 0xff,0x9a,0xa0,0x8c,0xca,0xd0,0xfd,0x88, - 0xd0,0xfa,0xa2,0x02,0xbd,0x3d,0x03,0xdd, - 0xa0,0xee,0xd0,0x06,0xca,0x10,0xf5,0x4c, - 0x4b,0xef,0x78,0xd8,0xa2,0xff,0x9a,0xe8, - 0x86,0x08,0xad,0xfc,0xbf,0xd0,0x17,0xa2, - 0xff,0xec,0xff,0xbf,0xf0,0x10,0x8e,0xfc, - 0xbf,0xcd,0xfc,0xbf,0x8d,0xfc,0xbf,0xd0, - 0x05,0x2c,0xfd,0xbf,0x30,0xbc,0x20,0x7c, - 0xef,0xa9,0x04,0x2c,0x1f,0xd0,0xf0,0x12, - 0xa2,0xfd,0xad,0x12,0xd0,0x0a,0x4d,0x1f, - 0xd0,0x29,0x02,0xf0,0x02,0xa2,0xbf,0x8e, - 0x01,0xd3,0x20,0xac,0xef,0xa6,0x06,0xa0, - 0x08,0xa9,0x00,0x85,0x66,0x85,0x67,0x91, - 0x66,0xc8,0xd0,0xfb,0xe6,0x67,0xca,0xd0, - 0xf6,0xae,0x01,0xd3,0x8a,0x29,0x7f,0x8d, - 0x01,0xd3,0x8e,0x01,0xd3,0xa9,0x9b,0x85, - 0x0a,0xa9,0xe4,0x85,0x0b,0xce,0x44,0x02, - 0xad,0x01,0xd3,0x29,0x02,0x8d,0xf8,0x03, - 0x4c,0xea,0xef,0x78,0xad,0x44,0x02,0xd0, - 0x81,0xd8,0xa2,0xff,0x9a,0x86,0x08,0x20, - 0x7c,0xef,0xad,0xf8,0x03,0xd0,0x05,0xa9, - 0xfd,0x8d,0x01,0xd3,0x20,0xac,0xef,0xa2, - 0x60,0xa9,0x00,0x95,0x0f,0xca,0xd0,0xfb, - 0x9d,0x00,0x02,0x9d,0xed,0x02,0xe8,0xd0, - 0xf7,0x4c,0xea,0xef,0xa0,0x00,0x98,0x99, - 0x00,0xd0,0x99,0x00,0xd2,0x99,0x00,0xd4, - 0xc8,0xd0,0xf4,0xa9,0x3c,0xa2,0x38,0x8e, - 0x02,0xd3,0x8c,0x00,0xd3,0x8d,0x02,0xd3, - 0x8c,0x00,0xd3,0x8d,0x03,0xd3,0x88,0x8c, - 0x01,0xd3,0x8e,0x03,0xd3,0x8c,0x01,0xd3, - 0x8d,0x03,0xd3,0x60,0xa0,0x00,0x84,0x64, - 0xa2,0x02,0x86,0x65,0xb1,0x64,0x49,0xff, - 0x91,0x64,0xd1,0x64,0xd0,0x09,0x49,0xff, - 0x91,0x64,0xe8,0xe0,0xc0,0xd0,0xeb,0x86, - 0x06,0x60,0x55,0xc0,0x54,0xc0,0x54,0xc0, - 0x54,0xc0,0xda,0xfe,0x45,0xea,0x8e,0xea, - 0xc7,0xea,0x54,0xc0,0x54,0xc0,0x54,0xc0, - 0xcf,0xc1,0x0c,0xc0,0x50,0xc0,0x00,0x00, - 0x30,0x28,0xa5,0x06,0x8d,0xe4,0x02,0xa2, - 0x03,0xbd,0x9f,0xee,0x9d,0x3c,0x03,0xca, - 0xd0,0xf7,0xa9,0x02,0x85,0x52,0xa9,0x27, - 0x85,0x53,0xa2,0x00,0xad,0x14,0xd0,0xa0, - 0x06,0x29,0x0e,0xd0,0x04,0xd0,0x01,0xe8, - 0x88,0x86,0x62,0x8c,0xda,0x02,0xbd,0xe8, - 0xef,0x8d,0xd9,0x02,0xa2,0x17,0xbd,0xca, - 0xef,0x9d,0x00,0x02,0xca,0x10,0xf7,0xa2, - 0x05,0xbd,0xe2,0xef,0x9d,0x22,0x02,0xca, - 0x10,0xf7,0xa9,0x1d,0x8d,0x36,0x02,0xa9, - 0xff,0x8d,0x37,0x02,0xa2,0xff,0x86,0x11, - 0xe8,0x8e,0xe5,0x02,0x8e,0xe7,0x02,0xa5, - 0x06,0x8d,0xe6,0x02,0xa2,0x07,0x8e,0xe8, - 0x02,0x20,0x0e,0xec,0x20,0xc4,0xf5,0x20, - 0x46,0xfe,0x20,0x7e,0xec,0xa2,0x0e,0xbd, - 0xa3,0xee,0x9d,0x1a,0x03,0xca,0x10,0xf7, - 0x20,0x6e,0xe4,0x20,0xeb,0xe7,0x20,0x73, - 0xc1,0xad,0x1f,0xd0,0x29,0x01,0x49,0x01, - 0x8d,0xe9,0x03,0x20,0x4c,0xc2,0x58,0xa9, - 0x00,0x85,0x07,0xa9,0x00,0x85,0x06,0xad, - 0xfc,0xbf,0xd0,0x18,0xad,0xfb,0xbf,0xaa, - 0x49,0xff,0x8d,0xfb,0xbf,0xcd,0xfb,0xbf, - 0x8e,0xfb,0xbf,0xf0,0x07,0x20,0x29,0xf1, - 0xa9,0x01,0x85,0x06,0xa9,0x03,0x8d,0x42, - 0x03,0xa9,0x2f,0x8d,0x44,0x03,0xa9,0xf1, - 0x8d,0x45,0x03,0xa9,0x0c,0x8d,0x4a,0x03, - 0xa2,0x00,0x8e,0x4b,0x03,0x20,0x56,0xe4, - 0xa5,0x14,0xc5,0x14,0xf0,0xfc,0xa5,0x08, - 0xd0,0x0b,0xad,0xe9,0x03,0xf0,0x0f,0x20, - 0xa0,0xf1,0x4c,0xde,0xf0,0xa9,0x02,0x24, - 0x09,0xf0,0x03,0x20,0x33,0xf1,0xa5,0x08, - 0xd0,0x10,0xa5,0x06,0xf0,0x06,0xad,0xfd, - 0xbf,0x4a,0x90,0x1b,0x20,0x37,0xf1,0x4c, - 0xfa,0xf0,0xa5,0x09,0x4a,0x90,0x10,0x20, - 0x30,0xf1,0xa5,0x08,0xd0,0x06,0x20,0x68, - 0xc4,0x4c,0x07,0xf1,0x20,0x2c,0xc4,0xa2, - 0x00,0x8e,0x44,0x02,0xa9,0x04,0xa6,0x06, - 0xf0,0x08,0x2c,0xfd,0xbf,0xf0,0x03,0x6c, - 0xfa,0xbf,0xa6,0x07,0xf0,0x08,0x2c,0xfd, - 0x9f,0xf0,0x03,0x6c,0xfa,0x9f,0x6c,0x0a, - 0x00,0x6c,0xfe,0xbf,0x6c,0xfe,0x9f,0x45, - 0x6c,0x0c,0x00,0x6c,0x02,0x00,0xea,0xa9, - 0x53,0x8d,0x02,0x03,0xa2,0x01,0x8e,0x01, - 0x03,0x20,0x53,0xe4,0x30,0x3c,0xa2,0x01, - 0x8e,0x01,0x03,0x8e,0x0a,0x03,0xca,0x8e, - 0x04,0x03,0x8e,0x0b,0x03,0xa9,0x52,0x8d, - 0x02,0x03,0xa9,0x04,0x8d,0x05,0x03,0x20, - 0x53,0xe4,0x30,0x1a,0xa2,0x0c,0x20,0xdb, - 0xf1,0x20,0x0a,0xf2,0xce,0x41,0x02,0xf0, - 0x22,0xee,0x0a,0x03,0xd0,0x03,0xee,0x0b, - 0x03,0x20,0x53,0xe4,0x10,0xeb,0xc0,0x8a, - 0xd0,0x01,0x60,0xad,0x01,0xd3,0x49,0x80, - 0x8d,0x01,0xd3,0x30,0xd7,0x20,0x02,0x50, - 0x4c,0x83,0xf1,0x20,0xf8,0xf1,0xb0,0xeb, - 0x20,0x30,0xf1,0xa9,0x01,0x85,0x09,0x60, - 0xa9,0x80,0x85,0x3e,0x20,0x7d,0xe4,0x20, - 0x7a,0xe4,0x30,0x24,0xa2,0x02,0x20,0xdb, - 0xf1,0x20,0x0a,0xf2,0x20,0x7a,0xe4,0x30, - 0x17,0xce,0x41,0x02,0xd0,0xf3,0x20,0xf8, - 0xf1,0x20,0x33,0xf1,0xa9,0x00,0x8d,0xe9, - 0x03,0xa9,0x02,0x85,0x09,0x6c,0x0a,0x00, - 0xa9,0x00,0x8d,0xe9,0x03,0x20,0x6b,0xed, - 0x4c,0x1f,0xf2,0xa0,0xfc,0xb9,0x04,0x03, - 0x99,0x44,0x01,0xc8,0xd0,0xf7,0x85,0x16, - 0xad,0x42,0x02,0x85,0x15,0xad,0x04,0x04, - 0x95,0x00,0xad,0x05,0x04,0x95,0x01,0x60, - 0xad,0x42,0x02,0x18,0x69,0x06,0x85,0x04, - 0xad,0x43,0x02,0x69,0x00,0x85,0x05,0x6c, - 0x04,0x00,0xa0,0x7f,0xb9,0x00,0x04,0x91, - 0x15,0x88,0x10,0xf8,0xa5,0x15,0x49,0x80, - 0x85,0x15,0x30,0x02,0xe6,0x16,0x60,0xa2, - 0xf5,0x8a,0x48,0xbd,0x3a,0xf1,0x20,0xbb, - 0xfa,0x68,0xaa,0xe8,0xd0,0xf3,0x60,0x42, - 0x4f,0x4f,0x54,0x20,0x45,0x52,0x52,0x4f, - 0x52,0x9b,0x00,0x11,0x22,0x33,0x44,0x55, - 0x66,0x77,0x88,0x99,0xaa,0xbb,0xcc,0xdd, - 0xee,0xff,0x00,0x55,0xaa,0xff,0x00,0xff, - 0x40,0x80,0x70,0x70,0x80,0xa0,0xe0,0x60, - 0x50,0x50,0x50,0x50,0xa0,0x80,0x60,0x50, - 0xfc,0xfd,0xfe,0xfe,0xfd,0xfb,0xf7,0xf0, - 0xe1,0xe1,0xe1,0xe1,0xfb,0xfd,0xf0,0xe1, - 0x02,0x06,0x07,0x08,0x09,0x0a,0x0b,0x1d, - 0x3f,0x7f,0xbf,0xff,0x04,0x05,0x1c,0x3e, - 0x01,0x01,0x00,0x01,0x02,0x02,0x03,0x03, - 0x04,0x04,0x04,0x04,0x01,0x00,0x04,0x04, - 0x0c,0x18,0x30,0x60,0xc0,0x01,0x00,0x00, - 0x01,0x02,0x02,0x03,0x03,0x04,0x02,0x02, - 0x02,0x01,0x01,0x03,0x03,0x0a,0x14,0x28, - 0x50,0xa0,0x40,0x00,0x00,0x00,0x00,0x01, - 0x00,0x00,0x00,0x02,0x03,0x02,0x03,0x02, - 0x03,0x01,0x01,0x01,0x00,0x00,0x03,0x02, - 0xff,0x0f,0x03,0x01,0xff,0xf0,0xc0,0x80, + 0xa9,0x60,0x8d,0x00,0x03,0xa9,0x00,0x8d, + 0x01,0x03,0xa5,0x3e,0x8d,0x0b,0x03,0x20, + 0x59,0xe4,0xa5,0x3e,0x30,0x0f,0x2c,0x89, + 0x02,0x10,0x05,0xa2,0x06,0x20,0x5e,0xee, + 0xa9,0x3c,0x8d,0x02,0xd3,0xa4,0x30,0x60, + 0x2c,0x0b,0x03,0x10,0x01,0xe8,0x20,0x16, + 0xe9,0xbc,0x76,0xee,0xbd,0x7d,0xee,0xaa, + 0xa9,0x01,0x8d,0x17,0x03,0x20,0x5d,0xc1, + 0xad,0x17,0x03,0xd0,0xfb,0x60,0x80,0x40, + 0xb4,0x0f,0x78,0x0a,0x3c,0x04,0x02,0x00, + 0x00,0x00,0x00,0x00,0xa0,0x00,0x98,0xa2, + 0x0a,0x48,0xad,0x0b,0xd4,0xcd,0x0b,0xd4, + 0xf0,0xfb,0xca,0xd0,0xf5,0x68,0x49,0x08, + 0x8d,0x1f,0xd0,0xd0,0xea,0x88,0xd0,0xe7, + 0x60,0x5c,0x93,0x25,0x50,0x30,0xe4,0x43, + 0x40,0xe4,0x45,0x00,0xe4,0x53,0x10,0xe4, + 0x4b,0x20,0xe4,0x6c,0xfe,0xbf,0x78,0xd8, + 0xa2,0xff,0x9a,0xa0,0x8c,0xca,0xd0,0xfd, + 0x88,0xd0,0xfa,0xa2,0x02,0xbd,0x3d,0x03, + 0xdd,0xa1,0xee,0xd0,0x06,0xca,0x10,0xf5, + 0x4c,0x4c,0xef,0x78,0xd8,0xa2,0xff,0x9a, + 0xe8,0x86,0x08,0xad,0xfc,0xbf,0xd0,0x17, + 0xa2,0xff,0xec,0xff,0xbf,0xf0,0x10,0x8e, + 0xfc,0xbf,0xcd,0xfc,0xbf,0x8d,0xfc,0xbf, + 0xd0,0x05,0x2c,0xfd,0xbf,0x30,0xbc,0x20, + 0x7d,0xef,0xa9,0x04,0x2c,0x1f,0xd0,0xf0, + 0x12,0xa2,0xfd,0xad,0x12,0xd0,0x0a,0x4d, + 0x1f,0xd0,0x29,0x02,0xf0,0x02,0xa2,0xbf, + 0x8e,0x01,0xd3,0x20,0xad,0xef,0xa6,0x06, + 0xa0,0x08,0xa9,0x00,0x85,0x66,0x85,0x67, + 0x91,0x66,0xc8,0xd0,0xfb,0xe6,0x67,0xca, + 0xd0,0xf6,0xae,0x01,0xd3,0x8a,0x29,0x7f, + 0x8d,0x01,0xd3,0x8e,0x01,0xd3,0xa9,0x9b, + 0x85,0x0a,0xa9,0xe4,0x85,0x0b,0xce,0x44, + 0x02,0xad,0x01,0xd3,0x29,0x02,0x8d,0xf8, + 0x03,0x4c,0xeb,0xef,0x78,0xad,0x44,0x02, + 0xd0,0x81,0xd8,0xa2,0xff,0x9a,0x86,0x08, + 0x20,0x7d,0xef,0xad,0xf8,0x03,0xd0,0x05, + 0xa9,0xfd,0x8d,0x01,0xd3,0x20,0xad,0xef, + 0xa2,0x60,0xa9,0x00,0x95,0x0f,0xca,0xd0, + 0xfb,0x9d,0x00,0x02,0x9d,0xed,0x02,0xe8, + 0xd0,0xf7,0x4c,0xeb,0xef,0xa0,0x00,0x98, + 0x99,0x00,0xd0,0x99,0x00,0xd2,0x99,0x00, + 0xd4,0xc8,0xd0,0xf4,0xa9,0x3c,0xa2,0x38, + 0x8e,0x02,0xd3,0x8c,0x00,0xd3,0x8d,0x02, + 0xd3,0x8c,0x00,0xd3,0x8d,0x03,0xd3,0x88, + 0x8c,0x01,0xd3,0x8e,0x03,0xd3,0x8c,0x01, + 0xd3,0x8d,0x03,0xd3,0x60,0xa0,0x00,0x84, + 0x64,0xa2,0x02,0x86,0x65,0xb1,0x64,0x49, + 0xff,0x91,0x64,0xd1,0x64,0xd0,0x09,0x49, + 0xff,0x91,0x64,0xe8,0xe0,0xc0,0xd0,0xeb, + 0x86,0x06,0x60,0x55,0xc0,0x54,0xc0,0x54, + 0xc0,0x54,0xc0,0xd3,0xfe,0x46,0xea,0x8f, + 0xea,0xc8,0xea,0x54,0xc0,0x54,0xc0,0x54, + 0xc0,0xde,0xc1,0x0c,0xc0,0x50,0xc0,0x00, + 0x00,0x30,0x28,0xa5,0x06,0x8d,0xe4,0x02, + 0xa2,0x03,0xbd,0xa0,0xee,0x9d,0x3c,0x03, + 0xca,0xd0,0xf7,0xa9,0x02,0x85,0x52,0xa9, + 0x27,0x85,0x53,0xa2,0x00,0xad,0x14,0xd0, + 0xa0,0x06,0x29,0x0e,0xd0,0x02,0xe8,0x88, + 0x86,0x62,0x8c,0xda,0x02,0xbd,0xe9,0xef, + 0x8d,0xd9,0x02,0xa2,0x17,0xbd,0xcb,0xef, + 0x9d,0x00,0x02,0xca,0x10,0xf7,0xa2,0x05, + 0xbd,0xe3,0xef,0x9d,0x22,0x02,0xca,0x10, + 0xf7,0xa9,0x16,0x8d,0x36,0x02,0xa9,0xff, + 0x8d,0x37,0x02,0xa2,0xff,0x86,0x11,0xe8, + 0x8e,0xe5,0x02,0x8e,0xe7,0x02,0xa5,0x06, + 0x8d,0xe6,0x02,0xa2,0x07,0x8e,0xe8,0x02, + 0x20,0x0f,0xec,0x20,0xc3,0xf5,0x20,0x41, + 0xfe,0x20,0x7f,0xec,0xa2,0x0e,0xbd,0xa4, + 0xee,0x9d,0x1a,0x03,0xca,0x10,0xf7,0x20, + 0x6e,0xe4,0x20,0xec,0xe7,0x20,0x82,0xc1, + 0xad,0x1f,0xd0,0x29,0x01,0x49,0x01,0x8d, + 0xe9,0x03,0x20,0x5b,0xc2,0x58,0xa9,0x00, + 0x85,0x07,0xa9,0x00,0x85,0x06,0xad,0xfc, + 0xbf,0xd0,0x18,0xad,0xfb,0xbf,0xaa,0x49, + 0xff,0x8d,0xfb,0xbf,0xcd,0xfb,0xbf,0x8e, + 0xfb,0xbf,0xf0,0x07,0x20,0x28,0xf1,0xa9, + 0x01,0x85,0x06,0xa9,0x03,0x8d,0x42,0x03, + 0xa9,0x2e,0x8d,0x44,0x03,0xa9,0xf1,0x8d, + 0x45,0x03,0xa9,0x0c,0x8d,0x4a,0x03,0xa2, + 0x00,0x8e,0x4b,0x03,0x20,0x56,0xe4,0xa5, + 0x14,0xc5,0x14,0xf0,0xfc,0xa5,0x08,0xd0, + 0x0b,0xad,0xe9,0x03,0xf0,0x0f,0x20,0x9f, + 0xf1,0x4c,0xdd,0xf0,0xa9,0x02,0x24,0x09, + 0xf0,0x03,0x20,0x32,0xf1,0xa5,0x08,0xd0, + 0x10,0xa5,0x06,0xf0,0x06,0xad,0xfd,0xbf, + 0x4a,0x90,0x1b,0x20,0x36,0xf1,0x4c,0xf9, + 0xf0,0xa5,0x09,0x4a,0x90,0x10,0x20,0x2f, + 0xf1,0xa5,0x08,0xd0,0x06,0x20,0x77,0xc4, + 0x4c,0x06,0xf1,0x20,0x3b,0xc4,0xa2,0x00, + 0x8e,0x44,0x02,0xa9,0x04,0xa6,0x06,0xf0, + 0x08,0x2c,0xfd,0xbf,0xf0,0x03,0x6c,0xfa, + 0xbf,0xa6,0x07,0xf0,0x08,0x2c,0xfd,0x9f, + 0xf0,0x03,0x6c,0xfa,0x9f,0x6c,0x0a,0x00, + 0x6c,0xfe,0xbf,0x6c,0xfe,0x9f,0x45,0x6c, + 0x0c,0x00,0x6c,0x02,0x00,0xea,0xa9,0x53, + 0x8d,0x02,0x03,0xa2,0x01,0x8e,0x01,0x03, + 0x20,0x53,0xe4,0x30,0x3c,0xa2,0x01,0x8e, + 0x01,0x03,0x8e,0x0a,0x03,0xca,0x8e,0x04, + 0x03,0x8e,0x0b,0x03,0xa9,0x52,0x8d,0x02, + 0x03,0xa9,0x04,0x8d,0x05,0x03,0x20,0x53, + 0xe4,0x30,0x1a,0xa2,0x0c,0x20,0xda,0xf1, + 0x20,0x09,0xf2,0xce,0x41,0x02,0xf0,0x22, + 0xee,0x0a,0x03,0xd0,0x03,0xee,0x0b,0x03, + 0x20,0x53,0xe4,0x10,0xeb,0xc0,0x8a,0xd0, + 0x01,0x60,0xad,0x01,0xd3,0x49,0x80,0x8d, + 0x01,0xd3,0x30,0xd7,0x20,0x02,0x50,0x4c, + 0x82,0xf1,0x20,0xf7,0xf1,0xb0,0xeb,0x20, + 0x2f,0xf1,0xa9,0x01,0x85,0x09,0x60,0xa9, + 0x80,0x85,0x3e,0x20,0x7d,0xe4,0x20,0x7a, + 0xe4,0x30,0x24,0xa2,0x02,0x20,0xda,0xf1, + 0x20,0x09,0xf2,0x20,0x7a,0xe4,0x30,0x17, + 0xce,0x41,0x02,0xd0,0xf3,0x20,0xf7,0xf1, + 0x20,0x32,0xf1,0xa9,0x00,0x8d,0xe9,0x03, + 0xa9,0x02,0x85,0x09,0x6c,0x0a,0x00,0xa9, + 0x00,0x8d,0xe9,0x03,0x20,0x6c,0xed,0x4c, + 0x1e,0xf2,0xa0,0xfc,0xb9,0x04,0x03,0x99, + 0x44,0x01,0xc8,0xd0,0xf7,0x85,0x16,0xad, + 0x42,0x02,0x85,0x15,0xad,0x04,0x04,0x95, + 0x00,0xad,0x05,0x04,0x95,0x01,0x60,0xad, + 0x42,0x02,0x18,0x69,0x06,0x85,0x04,0xad, + 0x43,0x02,0x69,0x00,0x85,0x05,0x6c,0x04, + 0x00,0xa0,0x7f,0xb9,0x00,0x04,0x91,0x15, + 0x88,0x10,0xf8,0xa5,0x15,0x49,0x80,0x85, + 0x15,0x30,0x02,0xe6,0x16,0x60,0xa2,0xf5, + 0x8a,0x48,0xbd,0x39,0xf1,0x20,0xba,0xfa, + 0x68,0xaa,0xe8,0xd0,0xf3,0x60,0x42,0x4f, + 0x4f,0x54,0x20,0x45,0x52,0x52,0x4f,0x52, + 0x9b,0x00,0x11,0x22,0x33,0x44,0x55,0x66, + 0x77,0x88,0x99,0xaa,0xbb,0xcc,0xdd,0xee, + 0xff,0x00,0x55,0xaa,0xff,0x00,0xff,0x40, + 0x80,0x70,0x70,0x80,0xa0,0xe0,0x60,0x50, + 0x50,0x50,0x50,0xa0,0x80,0x60,0x50,0xfc, + 0xfd,0xfe,0xfe,0xfd,0xfb,0xf7,0xf0,0xe1, + 0xe1,0xe1,0xe1,0xfb,0xfd,0xf0,0xe1,0x02, + 0x06,0x07,0x08,0x09,0x0a,0x0b,0x1d,0x3f, + 0x7f,0xbf,0xff,0x04,0x05,0x1c,0x3e,0x01, + 0x01,0x00,0x01,0x02,0x02,0x03,0x03,0x04, + 0x04,0x04,0x04,0x01,0x00,0x04,0x04,0x0c, + 0x18,0x30,0x60,0xc0,0x01,0x00,0x00,0x01, + 0x02,0x02,0x03,0x03,0x04,0x02,0x02,0x02, + 0x01,0x01,0x03,0x03,0x0a,0x14,0x28,0x50, + 0xa0,0x40,0x00,0x00,0x00,0x00,0x01,0x00, + 0x00,0x00,0x02,0x03,0x02,0x03,0x02,0x03, + 0x01,0x01,0x01,0x00,0x00,0x03,0x02,0xff, + 0x0f,0x03,0x01,0xff,0xf0,0xc0,0x80,0xff, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, @@ -1684,248 +1684,248 @@ UBYTE const ROM_altirraos_xl[0x4000] = 0x02,0x29,0xdc,0x8d,0x2f,0x02,0x8d,0x00, 0xd4,0xa2,0x0b,0xa9,0x00,0x95,0x54,0x9d, 0x90,0x02,0xca,0xd0,0xf8,0x86,0x7b,0xa5, - 0x2b,0x29,0x0f,0x85,0x57,0xaa,0xbd,0x70, + 0x2b,0x29,0x0f,0x85,0x57,0xaa,0xbd,0x6f, 0xf2,0x4d,0x6f,0x02,0x29,0xc0,0x4d,0x6f, - 0x02,0x8d,0x6f,0x02,0xc9,0x40,0xa5,0x2a, - 0xb0,0x04,0xe0,0x00,0xd0,0x02,0x29,0xef, - 0x0a,0x0a,0x85,0x68,0xbc,0x80,0xf2,0xbe, - 0x90,0xf2,0x0a,0x10,0x03,0xbe,0xa5,0xf2, - 0x86,0x69,0xa5,0x6a,0xa6,0x57,0x18,0x7d, - 0x60,0xf2,0xb0,0x09,0x8a,0xf0,0x03,0x20, - 0xee,0xf3,0xa0,0x93,0x60,0x85,0x59,0xbc, - 0x50,0xf2,0x84,0x58,0xbd,0x70,0xf2,0xa6, - 0x59,0x29,0x30,0xf0,0x03,0xa0,0x00,0xca, - 0x84,0x70,0x8e,0xe6,0x02,0x86,0x71,0x8e, - 0x31,0x02,0xc9,0x20,0xa9,0xf8,0x90,0x02, - 0xa9,0xf5,0xe5,0x69,0x24,0x68,0x50,0x02, - 0xe9,0x06,0xa0,0x01,0xcc,0x6e,0x02,0x65, - 0x70,0x8d,0xe5,0x02,0x85,0x70,0x8d,0x30, - 0x02,0xe4,0x0f,0x90,0xb7,0xd0,0x04,0xc5, - 0x0e,0x90,0xb1,0xce,0xe5,0x02,0xa6,0x6a, - 0xca,0x8e,0x95,0x02,0xa9,0x60,0x8d,0x94, - 0x02,0x08,0x78,0x0a,0x05,0x10,0x85,0x10, - 0x8d,0x0e,0xd2,0x28,0xa0,0x18,0x8c,0xbf, - 0x02,0xa0,0x05,0xb9,0xbb,0xf5,0x99,0xc3, - 0x02,0x88,0xd0,0xf7,0x8c,0xf0,0x02,0xa9, - 0x70,0xa2,0x03,0x20,0x85,0xf5,0xa5,0x57, - 0xc9,0x0b,0xd0,0x05,0xa9,0x06,0x8d,0xc8, - 0x02,0x20,0x3b,0xf5,0x84,0x7e,0x20,0xb5, - 0xf5,0x24,0x68,0x50,0x12,0xa2,0x04,0x8e, - 0xbf,0x02,0x20,0x41,0xf9,0xa4,0x7e,0x20, - 0x3b,0xf5,0x84,0x7e,0x20,0xb5,0xf5,0xa9, - 0x02,0x8d,0xf3,0x02,0xa2,0x0f,0x4a,0x9d, - 0xa2,0x02,0xca,0xd0,0xfa,0x86,0x6b,0xa2, - 0xe0,0x8e,0xf4,0x02,0x24,0x68,0xd0,0x02, - 0xa2,0x40,0x8e,0x0e,0xd4,0xa4,0x7e,0xa2, - 0x70,0xa9,0x41,0x20,0xa7,0xf5,0xad,0x2f, - 0x02,0x09,0x22,0x8d,0x2f,0x02,0xa5,0x14, - 0xc5,0x14,0xf0,0xfc,0xa5,0x2b,0x29,0x0f, - 0xd0,0x03,0x20,0xb5,0xf6,0x20,0xa3,0xfd, - 0xa2,0x00,0x60,0xa6,0x57,0xbd,0x70,0xf2, - 0x29,0x0f,0xa6,0x57,0xd0,0x07,0xae,0x6e, - 0x02,0xf0,0x02,0x09,0x20,0x48,0x09,0x40, - 0xa2,0x58,0x20,0xa7,0xf5,0xa6,0x69,0xa5, - 0x57,0xd0,0x03,0xae,0xbf,0x02,0xca,0x68, - 0xc9,0x22,0xf0,0x28,0xc9,0x0e,0x90,0x1d, - 0xa2,0x5d,0x20,0x85,0xf5,0x48,0x09,0x40, - 0x91,0x70,0xc8,0xa9,0x00,0x91,0x70,0xc8, - 0xa5,0x59,0x69,0x0e,0x91,0x70,0xc8,0xa5, - 0x69,0xe9,0x5e,0xaa,0x68,0x91,0x70,0xc8, - 0xca,0xd0,0xfa,0x60,0xca,0x20,0x85,0xf5, - 0x09,0x80,0x91,0x70,0xc8,0x29,0x5f,0x91, - 0x70,0xc8,0xe6,0x68,0xa2,0xe5,0xa9,0xfd, - 0x8e,0x00,0x02,0x8d,0x01,0x02,0x60,0x91, - 0x70,0xc8,0xb5,0x00,0x91,0x70,0xc8,0xb5, - 0x01,0xa2,0x01,0xd0,0xd0,0x24,0x68,0x30, - 0xd2,0x4c,0x4a,0xf8,0x28,0xca,0x94,0x46, - 0x00,0x01,0x03,0x07,0xad,0xe6,0x02,0x85, - 0x6a,0xa9,0x00,0x85,0x4f,0xa9,0xfe,0x85, - 0x4e,0x60,0x20,0xfa,0xf8,0x30,0x3a,0xa4, - 0x54,0x20,0x79,0xf9,0xa5,0x55,0xa6,0x57, - 0xbc,0xb0,0xf2,0x59,0xc0,0xf5,0xaa,0xa5, - 0x56,0x20,0xc1,0xf9,0xa4,0x6f,0xb1,0x66, - 0x20,0xae,0xf9,0x0a,0x08,0x10,0x02,0x49, - 0x40,0x69,0x40,0x28,0x6a,0xa6,0x57,0xbc, - 0xb0,0xf2,0x39,0xc0,0xf2,0xa6,0x57,0xf0, - 0x03,0x4c,0xd9,0xf9,0x20,0x0f,0xfe,0xa0, - 0x01,0x60,0x8d,0xfb,0x02,0x20,0xfa,0xf8, - 0x30,0x0c,0xad,0xfb,0x02,0xc9,0x7d,0xd0, - 0x0e,0x20,0x4a,0xf8,0xa0,0x01,0x60,0x4c, - 0xf2,0xf9,0x20,0xfa,0xf8,0x30,0xf7,0x20, - 0x05,0xfe,0xad,0xfb,0x02,0xa6,0x57,0xf0, - 0x1e,0xc9,0x9b,0xf0,0xea,0xae,0xff,0x02, - 0xd0,0xfb,0x20,0xce,0xf6,0x48,0x20,0xa9, - 0xf9,0x68,0xa4,0x6f,0x51,0x66,0x25,0x6e, - 0x51,0x66,0x91,0x66,0x4c,0xd9,0xf9,0xc9, - 0x9b,0xd0,0x18,0xa5,0x52,0x85,0x55,0xe6, - 0x54,0xa5,0x54,0xcd,0xbf,0x02,0x90,0x08, - 0xae,0xbf,0x02,0x86,0x54,0x20,0xd3,0xfc, - 0x4c,0xb5,0xf6,0xae,0xff,0x02,0xd0,0xfb, - 0x48,0x20,0xc7,0xfc,0x68,0x20,0xeb,0xf6, - 0xa0,0x00,0x91,0x5e,0xe6,0x5e,0xd0,0x02, - 0xe6,0x5f,0x20,0x0f,0xfe,0xb0,0x29,0xa5, - 0x54,0xcd,0xbf,0x02,0x90,0x12,0x20,0xd3, - 0xfc,0x20,0xbb,0xf6,0x20,0x76,0xfd,0x59, - 0xb2,0x02,0x99,0xb2,0x02,0x4c,0xb5,0xf6, - 0x20,0xbb,0xf6,0xa5,0x54,0x20,0x85,0xfd, - 0xf0,0x03,0x20,0x8d,0xf8,0x20,0xc7,0xfc, - 0x4c,0x1e,0xfe,0xa6,0x54,0xca,0x8a,0x20, - 0x8e,0xfd,0x18,0x69,0x02,0xc5,0x54,0x90, - 0x01,0x60,0x68,0x68,0x90,0xe7,0xa6,0x57, - 0xbc,0xb0,0xf2,0xbe,0xc4,0xf2,0x86,0x77, - 0xbe,0xc0,0xf2,0x8e,0xa0,0x02,0x30,0x0b, - 0x2d,0xa0,0x02,0x19,0xe1,0xfd,0xaa,0xbd, - 0x3a,0xf2,0x60,0x0a,0x08,0xe9,0x3f,0x10, - 0x02,0x49,0x40,0x28,0x6a,0x60,0xa5,0x22, - 0xc9,0x11,0xf0,0x05,0xc9,0x12,0xf0,0x01, - 0x60,0xad,0xfd,0x02,0x20,0xce,0xf6,0x8d, - 0xbc,0x02,0xad,0xfb,0x02,0x20,0xce,0xf6, - 0x85,0x51,0x20,0xa9,0xf9,0xa0,0x01,0x20, - 0x83,0xf9,0x85,0x78,0xaa,0xa0,0x00,0xa5, - 0x54,0x38,0xe5,0x5a,0xb0,0x0c,0x49,0xff, - 0x69,0x01,0x48,0x8a,0x49,0xff,0xaa,0xe8, - 0x88,0x68,0x86,0x70,0x85,0x76,0x84,0x71, - 0xa2,0x00,0xa5,0x55,0x38,0xe5,0x5b,0x85, - 0x72,0xa5,0x56,0xe5,0x5c,0xb0,0x10,0x49, - 0xff,0xa8,0xa5,0x72,0x49,0xff,0x69,0x01, - 0x85,0x72,0x98,0x69,0x00,0xa2,0xcc,0x85, - 0x73,0x8a,0xa6,0x57,0xbc,0xb0,0xf2,0x18, - 0x79,0xad,0xf7,0x85,0x64,0xa9,0xf7,0x85, - 0x65,0x85,0x75,0xb9,0xad,0xf7,0x18,0x69, - 0xd9,0x85,0x74,0xa6,0x72,0x8a,0x38,0xe5, - 0x76,0x85,0x68,0xa4,0x73,0x98,0xe9,0x00, - 0x85,0x69,0xb0,0x04,0xa0,0x00,0xa6,0x76, - 0x86,0x7e,0x84,0x7f,0x98,0xd0,0x03,0x8a, - 0xf0,0x0d,0x4c,0x02,0xf8,0x20,0x05,0xfe, - 0xa4,0x57,0xd0,0x03,0x20,0xc7,0xfc,0xa0, - 0x01,0x60,0x86,0x6e,0x4c,0x02,0xf8,0xa4, - 0x6f,0xa6,0x6e,0xd0,0x33,0xeb,0xe5,0xe7, - 0xe8,0x0a,0x0a,0x0a,0x0a,0x90,0x05,0xc6, - 0x6f,0xad,0xa0,0x02,0xd0,0x31,0x4a,0x4a, - 0x4a,0x4a,0x90,0x09,0xa5,0x77,0xc8,0xc4, - 0x78,0x90,0x02,0xa0,0x00,0x85,0x6e,0xf0, - 0xd1,0xb1,0x66,0x24,0x6e,0xd0,0xcb,0x4d, - 0xbc,0x02,0x25,0x6e,0x51,0x66,0x91,0x66, - 0xa5,0x6e,0x6c,0x74,0x00,0x4a,0x4a,0x4a, - 0x4a,0x90,0x04,0xe6,0x6f,0xa5,0x77,0x85, - 0x6e,0xa4,0x6f,0xa5,0x51,0x51,0x66,0x25, - 0x6e,0x51,0x66,0x91,0x66,0xa5,0x22,0x4a, - 0x90,0xa5,0xa5,0x7e,0xd0,0x04,0xc6,0x7f, - 0x30,0x8b,0xc6,0x7e,0xa5,0x68,0x0a,0xa8, - 0xa5,0x69,0x2a,0xaa,0x98,0x18,0xe5,0x72, - 0x8a,0x48,0xe5,0x73,0x10,0x13,0xa2,0x02, - 0xb5,0x70,0x18,0x75,0x66,0x95,0x66,0xb5, - 0x71,0x75,0x67,0x95,0x67,0xca,0xca,0x10, - 0xef,0x98,0x18,0x65,0x76,0x68,0x69,0x00, - 0x30,0xb7,0xa5,0x68,0x38,0xe5,0x76,0x85, - 0x68,0xb0,0x02,0xc6,0x69,0xa5,0x6e,0x6c, - 0x64,0x00,0xa0,0x04,0xa6,0x7b,0xd0,0x08, - 0xa4,0x57,0xbe,0x80,0xf2,0xbc,0x90,0xf2, - 0x20,0x83,0xf9,0x18,0xa6,0x57,0xf0,0x02, - 0x69,0xa0,0xa8,0xa5,0x65,0x69,0x00,0xaa, - 0x65,0x59,0x85,0x67,0xa5,0x58,0x85,0x66, - 0xa9,0x00,0x88,0x91,0x66,0xd0,0xfb,0xc6, - 0x67,0xca,0x10,0xf6,0x85,0x56,0x85,0x54, - 0x85,0x5d,0xa6,0x57,0xd0,0x02,0xa5,0x52, - 0x85,0x55,0x4c,0xf2,0xfd,0x18,0x08,0xac, - 0xbf,0x02,0x88,0x20,0x79,0xf9,0x20,0xcc, - 0xfd,0xae,0xbf,0x02,0xd0,0x09,0xa0,0x27, - 0xb1,0x68,0x91,0x66,0x88,0x10,0xf9,0xa5, - 0x68,0x85,0x66,0x38,0xe9,0x28,0x85,0x68, - 0xa5,0x69,0x85,0x67,0xe9,0x00,0x85,0x69, - 0xca,0xe4,0x54,0xd0,0xe1,0xa0,0x27,0xa9, - 0x00,0x91,0x66,0x88,0x10,0xfb,0x20,0x76, - 0xfd,0x28,0xb0,0x02,0xa9,0x00,0x85,0x51, - 0xa9,0x00,0x38,0xfd,0xc1,0xe4,0x0a,0x39, - 0xb2,0x02,0x18,0x79,0xb2,0x02,0x6a,0x05, - 0x51,0x99,0xb2,0x02,0x88,0x10,0x03,0x6e, - 0xb3,0x02,0x88,0x10,0x03,0x6e,0xb4,0x02, - 0x60,0x48,0xa0,0x00,0xa5,0x5d,0x91,0x5e, - 0x68,0x60,0xad,0xbf,0x02,0xa6,0x57,0xd0, - 0x04,0x24,0x7b,0x30,0x06,0xbc,0x80,0xf2, - 0xb9,0x90,0xf2,0xa0,0x27,0xc4,0x53,0xb0, - 0x02,0x84,0x53,0x18,0xe5,0x54,0xb0,0x0e, - 0xa0,0x00,0x84,0x56,0x8a,0xd0,0x02,0xa4, - 0x52,0x84,0x55,0xa0,0x8d,0x60,0xbc,0x95, - 0xf2,0xa5,0x55,0xd9,0xa6,0xf2,0xa5,0x56, - 0xf9,0xab,0xf2,0xb0,0xe3,0xa0,0xff,0xa5, - 0x11,0xd0,0x04,0x84,0x11,0xa0,0x7f,0xc8, - 0x60,0xa0,0x17,0xcc,0xbf,0x02,0x48,0xa9, - 0x00,0x65,0x7b,0xf0,0x14,0xa2,0x0b,0xb5, - 0x54,0xbc,0x90,0x02,0x94,0x54,0x9d,0x90, - 0x02,0xca,0x10,0xf3,0x8a,0x45,0x7b,0x85, - 0x7b,0x68,0x60,0x20,0x83,0xf9,0x85,0x64, - 0x8a,0x18,0x65,0x64,0x90,0x02,0xe6,0x65, - 0x18,0x65,0x58,0xaa,0xa5,0x65,0x65,0x59, - 0x60,0xa2,0x00,0x20,0x63,0xf9,0x86,0x66, - 0x85,0x67,0x60,0xa9,0x00,0x85,0x65,0x84, - 0x64,0xa4,0x57,0xb9,0x95,0xf2,0x38,0xf9, - 0xb0,0xf2,0xa8,0xc8,0xa5,0x64,0x0a,0x26, - 0x65,0x0a,0x26,0x65,0x65,0x64,0x90,0x02, - 0xe6,0x65,0x0a,0x26,0x65,0x88,0x10,0xfa, - 0x60,0x20,0xb8,0xf9,0xa5,0x77,0xca,0x30, - 0x04,0x4a,0xca,0x10,0xfc,0x85,0x6e,0x60, - 0xa4,0x5a,0x20,0x79,0xf9,0xa5,0x5c,0xa6, - 0x5b,0x6a,0x86,0x6f,0xa9,0x00,0xa6,0x57, - 0xbc,0xb0,0xf2,0xf0,0x06,0x66,0x6f,0x6a, - 0x88,0xd0,0xfa,0x2a,0x2a,0x2a,0x2a,0xaa, - 0x60,0xe6,0x55,0xd0,0x02,0xe6,0x56,0xa6, - 0x57,0xbc,0x95,0xf2,0xbe,0xab,0xf2,0xe4, - 0x56,0xd0,0x0f,0xbe,0xa6,0xf2,0xe4,0x55, - 0xd0,0x08,0xa0,0x00,0x84,0x55,0x84,0x56, - 0xe6,0x54,0xa0,0x01,0x60,0x20,0xf2,0xfd, - 0x8e,0xfe,0x02,0x8e,0xa2,0x02,0x4c,0xf2, - 0xf3,0xa5,0x6b,0xd0,0x06,0x20,0x29,0xfa, - 0x10,0x01,0x60,0x20,0x41,0xf9,0xc6,0x6b, - 0xd0,0x09,0xa9,0x9b,0x20,0x12,0xf6,0xa9, - 0x9b,0xd0,0x03,0x20,0xd2,0xf5,0x4c,0xa5, - 0xfd,0x20,0x41,0xf9,0xa5,0x55,0x85,0x6d, - 0xa5,0x54,0x85,0x6c,0x20,0xa5,0xfd,0xa5, - 0x2a,0x4a,0xb0,0x25,0x20,0x70,0xfe,0x10, - 0x01,0x60,0xc9,0x9b,0xf0,0x1d,0x20,0xbb, - 0xfa,0x30,0xf6,0xa5,0x55,0xc9,0x21,0xd0, - 0xeb,0x20,0x8c,0xfd,0x18,0x69,0x02,0xc5, - 0x54,0xd0,0xe1,0x20,0x9e,0xfd,0x4c,0x3c, - 0xfa,0xa9,0x9b,0x20,0xbb,0xfa,0x30,0xd9, - 0x20,0x41,0xf9,0x20,0xf1,0xf8,0xa2,0x00, - 0x86,0x63,0xa4,0x6c,0x84,0x54,0x20,0x7b, - 0xf9,0xa4,0x6d,0xe6,0x63,0xb1,0x66,0xf0, - 0x04,0xa5,0x63,0x85,0x6b,0xc4,0x53,0xc8, - 0x90,0xf1,0x20,0xcc,0xfd,0xe6,0x54,0xa5, - 0x54,0xcd,0xbf,0x02,0xb0,0x0a,0x20,0x85, - 0xfd,0xd0,0x08,0xa4,0x52,0x4c,0x7b,0xfa, - 0x20,0xd3,0xfc,0xe6,0x6b,0xa5,0x54,0x20, - 0x78,0xfd,0x19,0xb2,0x02,0x99,0xb2,0x02, - 0xa6,0x6d,0x86,0x55,0xa4,0x6c,0x84,0x54, - 0x4c,0xa3,0xfd,0xa4,0x57,0xf0,0x0c,0xac, - 0xbf,0x02,0xc0,0x04,0xf0,0x05,0x48,0x20, - 0xee,0xf3,0x68,0x20,0x41,0xf9,0x20,0xf1, - 0xf8,0xa8,0x0e,0xa2,0x02,0xb0,0x1e,0x29, - 0x1f,0xc9,0x1b,0x90,0x18,0xa2,0x0e,0x98, - 0x20,0xbe,0xfc,0xd0,0x10,0xad,0xfe,0x02, - 0xd0,0x0b,0x20,0x69,0xfc,0x20,0xc7,0xfc, - 0x20,0x1e,0xfe,0x10,0x06,0x8c,0xfb,0x02, - 0x20,0x2a,0xf6,0xad,0xfb,0x02,0x4c,0xa5, - 0xfd,0x1b,0x1c,0x1d,0x1e,0x1f,0x7d,0x7e, - 0x7f,0x9c,0x9d,0x9e,0x9f,0xfd,0xfe,0xff, - 0x9b,0x7c,0x20,0x29,0x33,0xc7,0xd4,0x26, - 0x4e,0x8d,0xdd,0xe3,0x7a,0x72,0x6f,0xea, - 0xf6,0xa9,0x80,0x8d,0xa2,0x02,0x60,0x4c, - 0x4a,0xf8,0xa6,0x54,0xd0,0x03,0xae,0xbf, - 0x02,0xca,0x10,0x0a,0xa6,0x54,0xe8,0xec, - 0xbf,0x02,0x90,0x02,0xa2,0x00,0x86,0x54, - 0x8a,0x20,0x8e,0xfd,0xc5,0x6c,0xf0,0x06, - 0x85,0x6c,0xa5,0x52,0x85,0x6d,0x60,0xa5, - 0x52,0xc5,0x55,0xb0,0x0b,0xc6,0x55,0x20, - 0xc7,0xfc,0xa0,0x00,0x98,0x91,0x5e,0x60, - 0xa5,0x54,0x20,0x85,0xfd,0xd0,0xf8,0xc6, - 0x54,0xa5,0x53,0x85,0x55,0x4c,0x57,0xfb, - 0x4c,0x9e,0xfd,0x20,0x87,0xfb,0x1d,0xa3, + 0x02,0x8d,0x6f,0x02,0xc9,0x40,0x8a,0xf0, + 0x06,0xa5,0x2a,0x90,0x02,0x29,0xef,0x0a, + 0x0a,0x85,0x68,0xbc,0x7f,0xf2,0xbe,0x8f, + 0xf2,0x0a,0x10,0x03,0xbe,0xa4,0xf2,0x86, + 0x69,0xa5,0x6a,0xa6,0x57,0x18,0x7d,0x5f, + 0xf2,0xb0,0x09,0x8a,0xf0,0x03,0x20,0xee, + 0xf3,0xa0,0x93,0x60,0x85,0x59,0xbc,0x4f, + 0xf2,0x84,0x58,0xbd,0x6f,0xf2,0xa6,0x59, + 0x29,0x30,0xf0,0x03,0xa0,0x00,0xca,0x84, + 0x70,0x8e,0xe6,0x02,0x86,0x71,0x8e,0x31, + 0x02,0xc9,0x20,0xa9,0xf8,0x90,0x02,0xa9, + 0xf5,0xe5,0x69,0x24,0x68,0x50,0x02,0xe9, + 0x06,0xa0,0x01,0xcc,0x6e,0x02,0x65,0x70, + 0x8d,0xe5,0x02,0x85,0x70,0x8d,0x30,0x02, + 0xe4,0x0f,0x90,0xb7,0xd0,0x04,0xc5,0x0e, + 0x90,0xb1,0xce,0xe5,0x02,0xa6,0x6a,0xca, + 0x8e,0x95,0x02,0xa9,0x60,0x8d,0x94,0x02, + 0x08,0x78,0x0a,0x05,0x10,0x85,0x10,0x8d, + 0x0e,0xd2,0x28,0xa0,0x18,0x8c,0xbf,0x02, + 0xa0,0x05,0xb9,0xba,0xf5,0x99,0xc3,0x02, + 0x88,0xd0,0xf7,0x8c,0xf0,0x02,0xa9,0x70, + 0xa2,0x03,0x20,0x84,0xf5,0xa5,0x57,0xc9, + 0x0b,0xd0,0x05,0xa9,0x06,0x8d,0xc8,0x02, + 0x20,0x3a,0xf5,0x84,0x7e,0x20,0xb4,0xf5, + 0x24,0x68,0x50,0x12,0xa2,0x04,0x8e,0xbf, + 0x02,0x20,0x40,0xf9,0xa4,0x7e,0x20,0x3a, + 0xf5,0x84,0x7e,0x20,0xb4,0xf5,0xa9,0x02, + 0x8d,0xf3,0x02,0xa2,0x0f,0x4a,0x9d,0xa2, + 0x02,0xca,0xd0,0xfa,0x86,0x6b,0xa2,0xe0, + 0x8e,0xf4,0x02,0x24,0x68,0xd0,0x02,0xa2, + 0x40,0x8e,0x0e,0xd4,0xa4,0x7e,0xa2,0x70, + 0xa9,0x41,0x20,0xa6,0xf5,0xad,0x2f,0x02, + 0x09,0x22,0x8d,0x2f,0x02,0xa5,0x14,0xc5, + 0x14,0xf0,0xfc,0xa5,0x2b,0x29,0x0f,0xd0, + 0x03,0x20,0xb4,0xf6,0x20,0x9e,0xfd,0xa2, + 0x00,0x60,0xa6,0x57,0xbd,0x6f,0xf2,0x29, + 0x0f,0xa6,0x57,0xd0,0x07,0xae,0x6e,0x02, + 0xf0,0x02,0x09,0x20,0x48,0x09,0x40,0xa2, + 0x58,0x20,0xa6,0xf5,0xa6,0x69,0xa5,0x57, + 0xd0,0x03,0xae,0xbf,0x02,0xca,0x68,0xc9, + 0x22,0xf0,0x28,0xc9,0x0e,0x90,0x1d,0xa2, + 0x5d,0x20,0x84,0xf5,0x48,0x09,0x40,0x91, + 0x70,0xc8,0xa9,0x00,0x91,0x70,0xc8,0xa5, + 0x59,0x69,0x0e,0x91,0x70,0xc8,0xa5,0x69, + 0xe9,0x5e,0xaa,0x68,0x91,0x70,0xc8,0xca, + 0xd0,0xfa,0x60,0xca,0x20,0x84,0xf5,0x09, + 0x80,0x91,0x70,0xc8,0x29,0x5f,0x91,0x70, + 0xc8,0xe6,0x68,0xa2,0xe0,0xa9,0xfd,0x8e, + 0x00,0x02,0x8d,0x01,0x02,0x60,0x91,0x70, + 0xc8,0xb5,0x00,0x91,0x70,0xc8,0xb5,0x01, + 0xa2,0x01,0xd0,0xd0,0x24,0x68,0x30,0xd2, + 0x4c,0x49,0xf8,0x28,0xca,0x94,0x46,0x00, + 0x01,0x03,0x07,0xad,0xe6,0x02,0x85,0x6a, + 0xa9,0x00,0x85,0x4f,0xa9,0xfe,0x85,0x4e, + 0x60,0x20,0xf9,0xf8,0x30,0x3a,0xa4,0x54, + 0x20,0x78,0xf9,0xa5,0x55,0xa6,0x57,0xbc, + 0xaf,0xf2,0x59,0xbf,0xf5,0xaa,0xa5,0x56, + 0x20,0xc0,0xf9,0xa4,0x6f,0xb1,0x66,0x20, + 0xad,0xf9,0x0a,0x08,0x10,0x02,0x49,0x40, + 0x69,0x40,0x28,0x6a,0xa6,0x57,0xbc,0xaf, + 0xf2,0x39,0xbf,0xf2,0xa6,0x57,0xf0,0x03, + 0x4c,0xd8,0xf9,0x20,0x0a,0xfe,0xa0,0x01, + 0x60,0x8d,0xfb,0x02,0x20,0xf9,0xf8,0x30, + 0x0c,0xad,0xfb,0x02,0xc9,0x7d,0xd0,0x0e, + 0x20,0x49,0xf8,0xa0,0x01,0x60,0x4c,0xf1, + 0xf9,0x20,0xf9,0xf8,0x30,0xf7,0x20,0x00, + 0xfe,0xad,0xfb,0x02,0xa6,0x57,0xf0,0x1e, + 0xc9,0x9b,0xf0,0xea,0xae,0xff,0x02,0xd0, + 0xfb,0x20,0xcd,0xf6,0x48,0x20,0xa8,0xf9, + 0x68,0xa4,0x6f,0x51,0x66,0x25,0x6e,0x51, + 0x66,0x91,0x66,0x4c,0xd8,0xf9,0xc9,0x9b, + 0xd0,0x18,0xa5,0x52,0x85,0x55,0xe6,0x54, + 0xa5,0x54,0xcd,0xbf,0x02,0x90,0x08,0xae, + 0xbf,0x02,0x86,0x54,0x20,0xd3,0xfc,0x4c, + 0xb4,0xf6,0xae,0xff,0x02,0xd0,0xfb,0x48, + 0x20,0xc7,0xfc,0x68,0x20,0xea,0xf6,0xa0, + 0x00,0x91,0x5e,0xe6,0x5e,0xd0,0x02,0xe6, + 0x5f,0x20,0x0a,0xfe,0xb0,0x29,0xa5,0x54, + 0xcd,0xbf,0x02,0x90,0x12,0x20,0xd3,0xfc, + 0x20,0xba,0xf6,0x20,0x76,0xfd,0x59,0xb2, + 0x02,0x99,0xb2,0x02,0x4c,0xb4,0xf6,0x20, + 0xba,0xf6,0xa5,0x54,0x20,0x85,0xfd,0xf0, + 0x03,0x20,0x8c,0xf8,0x20,0xc7,0xfc,0x4c, + 0x19,0xfe,0xa6,0x54,0xca,0x8a,0x20,0x8e, + 0xfd,0x18,0x69,0x02,0xc5,0x54,0x90,0x01, + 0x60,0x68,0x68,0x90,0xe7,0xa6,0x57,0xbc, + 0xaf,0xf2,0xbe,0xc3,0xf2,0x86,0x77,0xbe, + 0xbf,0xf2,0x8e,0xa0,0x02,0x30,0x0b,0x2d, + 0xa0,0x02,0x19,0xdc,0xfd,0xaa,0xbd,0x39, + 0xf2,0x60,0x0a,0x08,0xe9,0x3f,0x10,0x02, + 0x49,0x40,0x28,0x6a,0x60,0xa5,0x22,0xc9, + 0x11,0xf0,0x05,0xc9,0x12,0xf0,0x01,0x60, + 0xad,0xfd,0x02,0x20,0xcd,0xf6,0x8d,0xbc, + 0x02,0xad,0xfb,0x02,0x20,0xcd,0xf6,0x85, + 0x51,0x20,0xa8,0xf9,0xa0,0x01,0x20,0x82, + 0xf9,0x85,0x78,0xaa,0xa0,0x00,0xa5,0x54, + 0x38,0xe5,0x5a,0xb0,0x0c,0x49,0xff,0x69, + 0x01,0x48,0x8a,0x49,0xff,0xaa,0xe8,0x88, + 0x68,0x86,0x70,0x85,0x76,0x84,0x71,0xa2, + 0x00,0xa5,0x55,0x38,0xe5,0x5b,0x85,0x72, + 0xa5,0x56,0xe5,0x5c,0xb0,0x10,0x49,0xff, + 0xa8,0xa5,0x72,0x49,0xff,0x69,0x01,0x85, + 0x72,0x98,0x69,0x00,0xa2,0xcc,0x85,0x73, + 0x8a,0xa6,0x57,0xbc,0xaf,0xf2,0x18,0x79, + 0xac,0xf7,0x85,0x64,0xa9,0xf7,0x85,0x65, + 0x85,0x75,0xb9,0xac,0xf7,0x18,0x69,0xd9, + 0x85,0x74,0xa6,0x72,0x8a,0x38,0xe5,0x76, + 0x85,0x68,0xa4,0x73,0x98,0xe9,0x00,0x85, + 0x69,0xb0,0x04,0xa0,0x00,0xa6,0x76,0x86, + 0x7e,0x84,0x7f,0x98,0xd0,0x03,0x8a,0xf0, + 0x0d,0x4c,0x01,0xf8,0x20,0x00,0xfe,0xa4, + 0x57,0xd0,0x03,0x20,0xc7,0xfc,0xa0,0x01, + 0x60,0x86,0x6e,0x4c,0x01,0xf8,0xa4,0x6f, + 0xa6,0x6e,0xd0,0x33,0xea,0xe4,0xe6,0xe7, + 0x0a,0x0a,0x0a,0x0a,0x90,0x05,0xc6,0x6f, + 0xad,0xa0,0x02,0xd0,0x31,0x4a,0x4a,0x4a, + 0x4a,0x90,0x09,0xa5,0x77,0xc8,0xc4,0x78, + 0x90,0x02,0xa0,0x00,0x85,0x6e,0xf0,0xd1, + 0xb1,0x66,0x24,0x6e,0xd0,0xcb,0x4d,0xbc, + 0x02,0x25,0x6e,0x51,0x66,0x91,0x66,0xa5, + 0x6e,0x6c,0x74,0x00,0x4a,0x4a,0x4a,0x4a, + 0x90,0x04,0xe6,0x6f,0xa5,0x77,0x85,0x6e, + 0xa4,0x6f,0xa5,0x51,0x51,0x66,0x25,0x6e, + 0x51,0x66,0x91,0x66,0xa5,0x22,0x4a,0x90, + 0xa5,0xa5,0x7e,0xd0,0x04,0xc6,0x7f,0x30, + 0x8b,0xc6,0x7e,0xa5,0x68,0x0a,0xa8,0xa5, + 0x69,0x2a,0xaa,0x98,0x18,0xe5,0x72,0x8a, + 0x48,0xe5,0x73,0x10,0x13,0xa2,0x02,0xb5, + 0x70,0x18,0x75,0x66,0x95,0x66,0xb5,0x71, + 0x75,0x67,0x95,0x67,0xca,0xca,0x10,0xef, + 0x98,0x18,0x65,0x76,0x68,0x69,0x00,0x30, + 0xb7,0xa5,0x68,0x38,0xe5,0x76,0x85,0x68, + 0xb0,0x02,0xc6,0x69,0xa5,0x6e,0x6c,0x64, + 0x00,0xa0,0x04,0xa6,0x7b,0xd0,0x08,0xa4, + 0x57,0xbe,0x7f,0xf2,0xbc,0x8f,0xf2,0x20, + 0x82,0xf9,0x18,0xa6,0x57,0xf0,0x02,0x69, + 0xa0,0xa8,0xa5,0x65,0x69,0x00,0xaa,0x65, + 0x59,0x85,0x67,0xa5,0x58,0x85,0x66,0xa9, + 0x00,0x88,0x91,0x66,0xd0,0xfb,0xc6,0x67, + 0xca,0x10,0xf6,0x85,0x56,0x85,0x54,0x85, + 0x5d,0xa6,0x57,0xd0,0x02,0xa5,0x52,0x85, + 0x55,0x4c,0xed,0xfd,0x18,0x08,0xac,0xbf, + 0x02,0x88,0x20,0x78,0xf9,0x20,0xc7,0xfd, + 0xae,0xbf,0x02,0xd0,0x09,0xa0,0x27,0xb1, + 0x68,0x91,0x66,0x88,0x10,0xf9,0xa5,0x68, + 0x85,0x66,0x38,0xe9,0x28,0x85,0x68,0xa5, + 0x69,0x85,0x67,0xe9,0x00,0x85,0x69,0xca, + 0xe4,0x54,0xd0,0xe1,0xa0,0x27,0xa9,0x00, + 0x91,0x66,0x88,0x10,0xfb,0x20,0x76,0xfd, + 0x28,0xb0,0x02,0xa9,0x00,0x85,0x51,0xa9, + 0x00,0x38,0xfd,0xc1,0xe4,0x0a,0x39,0xb2, + 0x02,0x18,0x79,0xb2,0x02,0x6a,0x05,0x51, + 0x99,0xb2,0x02,0x88,0x10,0x03,0x6e,0xb3, + 0x02,0x88,0x10,0x03,0x6e,0xb4,0x02,0x60, + 0x48,0xa0,0x00,0xa5,0x5d,0x91,0x5e,0x68, + 0x60,0xad,0xbf,0x02,0xa6,0x57,0xd0,0x04, + 0x24,0x7b,0x30,0x06,0xbc,0x7f,0xf2,0xb9, + 0x8f,0xf2,0xa0,0x27,0xc4,0x53,0xb0,0x02, + 0x84,0x53,0x18,0xe5,0x54,0xb0,0x0e,0xa0, + 0x00,0x84,0x56,0x8a,0xd0,0x02,0xa4,0x52, + 0x84,0x55,0xa0,0x8d,0x60,0xbc,0x94,0xf2, + 0xa5,0x55,0xd9,0xa5,0xf2,0xa5,0x56,0xf9, + 0xaa,0xf2,0xb0,0xe3,0xa0,0xff,0xa5,0x11, + 0xd0,0x04,0x84,0x11,0xa0,0x7f,0xc8,0x60, + 0xa0,0x17,0xcc,0xbf,0x02,0x48,0xa9,0x00, + 0x65,0x7b,0xf0,0x14,0xa2,0x0b,0xb5,0x54, + 0xbc,0x90,0x02,0x94,0x54,0x9d,0x90,0x02, + 0xca,0x10,0xf3,0x8a,0x45,0x7b,0x85,0x7b, + 0x68,0x60,0x20,0x82,0xf9,0x85,0x64,0x8a, + 0x18,0x65,0x64,0x90,0x02,0xe6,0x65,0x18, + 0x65,0x58,0xaa,0xa5,0x65,0x65,0x59,0x60, + 0xa2,0x00,0x20,0x62,0xf9,0x86,0x66,0x85, + 0x67,0x60,0xa9,0x00,0x85,0x65,0x84,0x64, + 0xa4,0x57,0xb9,0x94,0xf2,0x38,0xf9,0xaf, + 0xf2,0xa8,0xc8,0xa5,0x64,0x0a,0x26,0x65, + 0x0a,0x26,0x65,0x65,0x64,0x90,0x02,0xe6, + 0x65,0x0a,0x26,0x65,0x88,0x10,0xfa,0x60, + 0x20,0xb7,0xf9,0xa5,0x77,0xca,0x30,0x04, + 0x4a,0xca,0x10,0xfc,0x85,0x6e,0x60,0xa4, + 0x5a,0x20,0x78,0xf9,0xa5,0x5c,0xa6,0x5b, + 0x6a,0x86,0x6f,0xa9,0x00,0xa6,0x57,0xbc, + 0xaf,0xf2,0xf0,0x06,0x66,0x6f,0x6a,0x88, + 0xd0,0xfa,0x2a,0x2a,0x2a,0x2a,0xaa,0x60, + 0xe6,0x55,0xd0,0x02,0xe6,0x56,0xa6,0x57, + 0xbc,0x94,0xf2,0xbe,0xaa,0xf2,0xe4,0x56, + 0xd0,0x0f,0xbe,0xa5,0xf2,0xe4,0x55,0xd0, + 0x08,0xa0,0x00,0x84,0x55,0x84,0x56,0xe6, + 0x54,0xa0,0x01,0x60,0x20,0xed,0xfd,0x8e, + 0xfe,0x02,0x8e,0xa2,0x02,0x4c,0xf2,0xf3, + 0xa5,0x6b,0xd0,0x06,0x20,0x28,0xfa,0x10, + 0x01,0x60,0x20,0x40,0xf9,0xc6,0x6b,0xd0, + 0x09,0xa9,0x9b,0x20,0x11,0xf6,0xa9,0x9b, + 0xd0,0x03,0x20,0xd1,0xf5,0x4c,0xa0,0xfd, + 0x20,0x40,0xf9,0xa5,0x55,0x85,0x6d,0xa5, + 0x54,0x85,0x6c,0x20,0xa0,0xfd,0xa5,0x2a, + 0x4a,0xb0,0x25,0x20,0x6b,0xfe,0x10,0x01, + 0x60,0xc9,0x9b,0xf0,0x1d,0x20,0xba,0xfa, + 0x30,0xf6,0xa5,0x55,0xc9,0x21,0xd0,0xeb, + 0x20,0x8c,0xfd,0x18,0x69,0x02,0xc5,0x54, + 0xd0,0xe1,0x20,0x6e,0xfb,0x4c,0x3b,0xfa, + 0xa9,0x9b,0x20,0xba,0xfa,0x30,0xd9,0x20, + 0x40,0xf9,0x20,0xf0,0xf8,0xa2,0x00,0x86, + 0x63,0xa4,0x6c,0x84,0x54,0x20,0x7a,0xf9, + 0xa4,0x6d,0xe6,0x63,0xb1,0x66,0xf0,0x04, + 0xa5,0x63,0x85,0x6b,0xc4,0x53,0xc8,0x90, + 0xf1,0x20,0xc7,0xfd,0xe6,0x54,0xa5,0x54, + 0xcd,0xbf,0x02,0xb0,0x0a,0x20,0x85,0xfd, + 0xd0,0x08,0xa4,0x52,0x4c,0x7a,0xfa,0x20, + 0xd3,0xfc,0xe6,0x6b,0xa5,0x54,0x20,0x78, + 0xfd,0x19,0xb2,0x02,0x99,0xb2,0x02,0xa6, + 0x6d,0x86,0x55,0xa4,0x6c,0x84,0x54,0x4c, + 0x9e,0xfd,0xa4,0x57,0xf0,0x0c,0xac,0xbf, + 0x02,0xc0,0x04,0xf0,0x05,0x48,0x20,0xee, + 0xf3,0x68,0x20,0x40,0xf9,0x20,0xf0,0xf8, + 0xa8,0x0e,0xa2,0x02,0xb0,0x1e,0x29,0x1f, + 0xc9,0x1b,0x90,0x18,0xa2,0x0e,0x98,0x20, + 0xbe,0xfc,0xd0,0x10,0xad,0xfe,0x02,0xd0, + 0x0b,0x20,0x69,0xfc,0x20,0xc7,0xfc,0x20, + 0x19,0xfe,0x10,0x06,0x8c,0xfb,0x02,0x20, + 0x29,0xf6,0xad,0xfb,0x02,0x4c,0xa0,0xfd, + 0x1b,0x1c,0x1d,0x1e,0x1f,0x7d,0x7e,0x7f, + 0x9c,0x9d,0x9e,0x9f,0xfd,0xfe,0xff,0x9b, + 0x1e,0x27,0x31,0xc7,0xd4,0x24,0x4c,0x8d, + 0xdd,0xe3,0x7a,0x72,0x6d,0xea,0xf6,0xa9, + 0x80,0x8d,0xa2,0x02,0x60,0x4c,0x49,0xf8, + 0xa6,0x54,0xd0,0x03,0xae,0xbf,0x02,0xca, + 0x10,0x0a,0xa6,0x54,0xe8,0xec,0xbf,0x02, + 0x90,0x02,0xa2,0x00,0x86,0x54,0x8a,0x20, + 0x8e,0xfd,0xc5,0x6c,0xf0,0x06,0x85,0x6c, + 0xa5,0x52,0x85,0x6d,0x60,0xa5,0x52,0xc5, + 0x55,0xb0,0x0b,0xc6,0x55,0x20,0xc7,0xfc, + 0xa0,0x00,0x98,0x91,0x5e,0x60,0xa5,0x54, + 0x20,0x85,0xfd,0xd0,0xf8,0xc6,0x54,0xa5, + 0x53,0x85,0x55,0x4c,0x55,0xfb,0xa0,0x00, + 0x4c,0xcc,0xe4,0x20,0x87,0xfb,0x1d,0xa3, 0x02,0xd0,0x08,0x20,0x87,0xfb,0x49,0xff, 0x3d,0xa3,0x02,0x9d,0xa3,0x02,0x60,0x20, - 0xae,0xfd,0xa8,0x4c,0xbd,0xfd,0x20,0xae, + 0xa9,0xfd,0xa8,0x4c,0xb8,0xfd,0x20,0xa9, 0xfd,0xa8,0x8a,0x38,0x65,0x54,0x85,0x54, - 0xc8,0xc0,0x78,0xb0,0x08,0x20,0xbd,0xfd, + 0xc8,0xc0,0x78,0xb0,0x08,0x20,0xb8,0xfd, 0x3d,0xa3,0x02,0xf0,0xf3,0x84,0x55,0xa5, 0x55,0x38,0xe9,0x28,0x90,0x19,0x85,0x55, 0xe6,0x54,0xa5,0x54,0xcd,0xbf,0x02,0xb0, @@ -1934,44 +1934,44 @@ UBYTE const ROM_altirraos_xl[0x4000] = 0xa6,0x52,0xe4,0x55,0xb0,0x03,0xc6,0x55, 0x60,0xa6,0x53,0xb0,0xf0,0xa6,0x55,0xe4, 0x53,0xb0,0xe8,0xe6,0x55,0x60,0x20,0x8c, - 0xfd,0x4c,0xd5,0xfc,0x38,0x20,0x8e,0xf8, + 0xfd,0x4c,0xd5,0xfc,0x38,0x20,0x8d,0xf8, 0x4c,0xc3,0xfb,0xa4,0x54,0x84,0x51,0x20, - 0x79,0xf9,0xa4,0x55,0x4c,0x82,0xfc,0x20, + 0x78,0xf9,0xa4,0x55,0x4c,0x82,0xfc,0x20, 0x8c,0xfd,0x18,0x69,0x03,0x85,0x76,0xa4, - 0x54,0x84,0x51,0x20,0x79,0xf9,0xa4,0x55, + 0x54,0x84,0x51,0x20,0x78,0xf9,0xa4,0x55, 0xa2,0x00,0xf0,0x04,0xa4,0x52,0xa6,0x50, 0x84,0x65,0xa4,0x53,0xb1,0x66,0x85,0x50, 0x88,0xb1,0x66,0xc8,0x91,0x66,0x88,0xc4, 0x65,0xd0,0xf5,0x8a,0x91,0x66,0xe6,0x51, - 0x20,0xcc,0xfd,0xa5,0x51,0xcd,0xbf,0x02, + 0x20,0xc7,0xfd,0xa5,0x51,0xcd,0xbf,0x02, 0xb0,0x05,0x20,0x85,0xfd,0xf0,0xd5,0xa5, 0x50,0xf0,0x2d,0xa5,0x54,0x48,0xa6,0x51, 0xe4,0x76,0x08,0x86,0x54,0xa9,0x00,0x85, 0x76,0xec,0xbf,0x02,0x90,0x03,0x20,0xd3, - 0xfc,0x28,0xb0,0x0e,0x20,0x8d,0xf8,0xa4, - 0x54,0x20,0x79,0xf9,0xa5,0x50,0xa4,0x52, + 0xfc,0x28,0xb0,0x0e,0x20,0x8c,0xf8,0xa4, + 0x54,0x20,0x78,0xf9,0xa5,0x50,0xa4,0x52, 0x91,0x66,0x68,0x38,0xe5,0x76,0x85,0x54, - 0x60,0xa9,0xfb,0x48,0xbd,0x12,0xfb,0x48, + 0x60,0xa9,0xfb,0x48,0xbd,0x10,0xfb,0x48, 0x60,0xa4,0x52,0xb1,0x66,0xa4,0x53,0x91, 0x68,0xa4,0x52,0xc8,0xb1,0x66,0x88,0x91, - 0x66,0xc8,0xc4,0x53,0xd0,0xf5,0x20,0xcc, + 0x66,0xc8,0xc4,0x53,0xd0,0xf5,0x20,0xc7, 0xfd,0xa6,0x51,0xe8,0xec,0xbf,0x02,0xb0, 0x08,0x86,0x51,0x8a,0x20,0x85,0xfd,0xf0, 0xd8,0xa4,0x53,0xa9,0x00,0x91,0x68,0xc4, 0x52,0xf0,0x06,0x88,0xb1,0x68,0xf0,0xf7, 0x60,0xc6,0x51,0xa5,0x51,0x20,0x85,0xfd, 0xd0,0x0b,0xa5,0x55,0x48,0xa5,0x51,0x20, - 0xd5,0xfc,0x68,0x85,0x55,0x60,0xdd,0x01, + 0xd5,0xfc,0x68,0x85,0x55,0x60,0xdd,0x00, 0xfb,0xf0,0x03,0xca,0x10,0xf8,0x60,0xa6, - 0x55,0xa4,0x54,0x20,0x63,0xf9,0x86,0x5e, + 0x55,0xa4,0x54,0x20,0x62,0xf9,0x86,0x5e, 0x85,0x5f,0x60,0xa9,0x00,0x85,0x51,0xa2, 0x00,0x86,0x76,0xa4,0x51,0x38,0xd0,0x21, 0xae,0x6e,0x02,0xf0,0x1c,0xa2,0x00,0xa5, 0x14,0xc5,0x14,0xf0,0xfc,0xe8,0x8e,0x05, 0xd4,0xe0,0x07,0xd0,0xf2,0xa9,0x10,0xcd, 0x0b,0xd4,0x90,0xfb,0xcd,0x0b,0xd4,0xb0, - 0xfb,0x08,0x20,0x79,0xf9,0xa6,0x51,0x10, - 0x0c,0x20,0xcc,0xfd,0xa0,0x27,0xb1,0x66, + 0xfb,0x08,0x20,0x78,0xf9,0xa6,0x51,0x10, + 0x0c,0x20,0xc7,0xfd,0xa0,0x27,0xb1,0x66, 0x91,0x68,0x88,0x10,0xf9,0xe8,0xec,0xbf, 0x02,0xd0,0xee,0xa0,0x27,0xa9,0x00,0x91, 0x66,0x88,0x10,0xfb,0x28,0xb0,0x03,0x8d, @@ -1989,82 +1989,82 @@ UBYTE const ROM_altirraos_xl[0x4000] = 0xaa,0xbd,0xc1,0xe4,0x60,0x20,0x78,0xfd, 0x39,0xb2,0x02,0x60,0xa5,0x54,0x85,0x64, 0xa5,0x64,0x20,0x85,0xfd,0xd0,0x04,0xc6, - 0x64,0xd0,0xf5,0xa5,0x64,0x60,0xa0,0x00, - 0x4c,0xcc,0xe4,0xa0,0x01,0x84,0x64,0x18, - 0x20,0x46,0xf9,0xa4,0x64,0x60,0xa5,0x54, - 0x20,0x8e,0xfd,0x18,0xe5,0x54,0xaa,0xbd, - 0xe2,0xfc,0x65,0x55,0x60,0x98,0x29,0x07, - 0xaa,0xbd,0xc1,0xe4,0x48,0x98,0x4a,0x4a, - 0x4a,0xaa,0x68,0x60,0xa5,0x66,0x85,0x68, - 0x18,0x69,0x28,0x85,0x66,0xa5,0x67,0x85, - 0x69,0x69,0x00,0x85,0x67,0x60,0x78,0x50, - 0x28,0x00,0x00,0x10,0x14,0x48,0xad,0xc6, - 0x02,0x45,0x4f,0x25,0x4e,0x8d,0x17,0xd0, - 0x68,0x40,0xa2,0xff,0x8e,0xb2,0x02,0x8e, - 0xb3,0x02,0x8e,0xb4,0x02,0xe8,0x86,0x6c, - 0xa5,0x52,0x85,0x6d,0x60,0xa2,0x02,0xb5, - 0x54,0x95,0x5a,0xca,0x10,0xf9,0x60,0xe6, - 0x55,0xa6,0x53,0xe4,0x55,0xb0,0x06,0xa6, - 0x52,0x86,0x55,0xe6,0x54,0x60,0xa0,0x00, - 0xb1,0x5e,0x85,0x5d,0xae,0xf0,0x02,0xd0, - 0x04,0x49,0x80,0x91,0x5e,0xc8,0x60,0x2c, - 0x6e,0x02,0x30,0x03,0xa0,0x01,0x60,0xa9, - 0x40,0x8d,0x0e,0xd4,0xa2,0x55,0xa9,0xc0, - 0x20,0xa0,0xf5,0x4c,0xee,0xf3,0xa2,0xff, - 0x8e,0xfc,0x02,0x8e,0xf2,0x02,0xe8,0x8e, - 0xf1,0x02,0x8e,0xb6,0x02,0xa9,0x40,0x8d, - 0xbe,0x02,0xa9,0x29,0x85,0x79,0xa9,0xff, - 0x85,0x7a,0x60,0xae,0xbe,0x02,0xd0,0x02, - 0xa0,0x40,0x98,0x29,0xc0,0x8d,0xbe,0x02, - 0xa2,0xff,0xa5,0x11,0xf0,0x5c,0xad,0xfc, - 0x02,0xc9,0xff,0xf0,0xf5,0x8e,0xfc,0x02, - 0x2c,0xdb,0x02,0x30,0x05,0xa0,0x0c,0x20, - 0xcc,0xe4,0xc9,0xc0,0xb0,0xe2,0xc9,0x9a, - 0xf0,0x45,0xa8,0xb1,0x79,0x10,0x0e,0xc9, - 0x81,0x90,0xd5,0xf0,0x2b,0xc9,0x83,0x90, - 0xc2,0xc9,0x85,0x90,0xc5,0xc9,0x61,0x90, - 0x0f,0xc9,0x7b,0xb0,0x0b,0x2c,0xbe,0x02, - 0x70,0x04,0x10,0x04,0x29,0x1f,0x29,0xdf, - 0xa2,0x10,0x20,0xbe,0xfc,0xf0,0x03,0x4d, - 0xb6,0x02,0x8d,0xfb,0x02,0xa0,0x01,0x60, - 0xad,0xb6,0x02,0x49,0x80,0x8d,0xb6,0x02, - 0xb0,0x9e,0x86,0x11,0xa0,0x80,0x60,0xa0, - 0x88,0x60,0xad,0xd9,0x02,0x8d,0x2b,0x02, - 0xad,0x09,0xd2,0x29,0x3f,0xc9,0x11,0xd0, - 0x05,0x8d,0xdc,0x02,0xf0,0x1e,0xad,0x09, - 0xd2,0xcd,0xf2,0x02,0xd0,0x08,0xad,0xf1, - 0x02,0xd0,0x16,0xad,0xf2,0x02,0xc9,0x9f, - 0xf0,0x11,0x8d,0xfc,0x02,0x8d,0xf2,0x02, - 0xa9,0x00,0x85,0x4d,0xa9,0x03,0x8d,0xf1, - 0x02,0x68,0x40,0xad,0xff,0x02,0x49,0xff, - 0x8d,0xff,0x02,0xb0,0xef,0xa9,0x00,0x85, - 0x11,0x8d,0xff,0x02,0x8d,0xf0,0x02,0x68, - 0x40,0x6c,0x6a,0x3b,0x80,0x80,0x6b,0x2b, - 0x2a,0x6f,0x80,0x70,0x75,0x9b,0x69,0x2d, - 0x3d,0x76,0x80,0x63,0x80,0x80,0x62,0x78, - 0x7a,0x34,0x80,0x33,0x36,0x1b,0x35,0x32, - 0x31,0x2c,0x20,0x2e,0x6e,0x80,0x6d,0x2f, - 0x81,0x72,0x80,0x65,0x79,0x7f,0x74,0x77, - 0x71,0x39,0x80,0x30,0x37,0x7e,0x38,0x3c, - 0x3e,0x66,0x68,0x64,0x80,0x82,0x67,0x73, - 0x61,0x4c,0x4a,0x3a,0x80,0x80,0x4b,0x5c, - 0x5e,0x4f,0x80,0x50,0x55,0x9b,0x49,0x5f, - 0x7c,0x56,0x80,0x43,0x80,0x80,0x42,0x58, - 0x5a,0x24,0x80,0x23,0x26,0x1b,0x25,0x22, - 0x21,0x5b,0x20,0x5d,0x4e,0x80,0x4d,0x3f, - 0x80,0x52,0x80,0x45,0x59,0x9f,0x54,0x57, - 0x51,0x28,0x80,0x29,0x27,0x9c,0x40,0x7d, - 0x9d,0x46,0x48,0x44,0x80,0x83,0x47,0x53, - 0x41,0x0c,0x0a,0x7b,0x80,0x80,0x0b,0x1e, - 0x1f,0x0f,0x80,0x10,0x15,0x9b,0x09,0x1c, - 0x1d,0x16,0x80,0x03,0x80,0x80,0x02,0x18, - 0x1a,0x80,0x80,0x9b,0x80,0x1b,0x80,0xfd, - 0x80,0x00,0x20,0x60,0x0e,0x80,0x0d,0x80, - 0x80,0x12,0x80,0x05,0x19,0x9e,0x14,0x17, - 0x11,0x80,0x80,0x80,0x80,0xfe,0x80,0x7d, - 0xff,0x06,0x08,0x04,0x80,0x84,0x07,0x13, - 0x01,0xff,0xff,0xff,0xff,0xff,0x01,0x01, + 0x64,0xd0,0xf5,0xa5,0x64,0x60,0xa0,0x01, + 0x84,0x64,0x18,0x20,0x45,0xf9,0xa4,0x64, + 0x60,0xa5,0x54,0x20,0x8e,0xfd,0x18,0xe5, + 0x54,0xaa,0xbd,0xdd,0xfc,0x65,0x55,0x60, + 0x98,0x29,0x07,0xaa,0xbd,0xc1,0xe4,0x48, + 0x98,0x4a,0x4a,0x4a,0xaa,0x68,0x60,0xa5, + 0x66,0x85,0x68,0x18,0x69,0x28,0x85,0x66, + 0xa5,0x67,0x85,0x69,0x69,0x00,0x85,0x67, + 0x60,0x78,0x50,0x28,0x00,0x00,0x10,0x14, + 0x48,0xad,0xc6,0x02,0x45,0x4f,0x25,0x4e, + 0x8d,0x17,0xd0,0x68,0x40,0xa2,0xff,0x8e, + 0xb2,0x02,0x8e,0xb3,0x02,0x8e,0xb4,0x02, + 0xe8,0x86,0x6c,0xa5,0x52,0x85,0x6d,0x60, + 0xa2,0x02,0xb5,0x54,0x95,0x5a,0xca,0x10, + 0xf9,0x60,0xe6,0x55,0xa6,0x53,0xe4,0x55, + 0xb0,0x06,0xa6,0x52,0x86,0x55,0xe6,0x54, + 0x60,0xa0,0x00,0xb1,0x5e,0x85,0x5d,0xae, + 0xf0,0x02,0xd0,0x04,0x49,0x80,0x91,0x5e, + 0xc8,0x60,0x2c,0x6e,0x02,0x30,0x03,0xa0, + 0x01,0x60,0xa9,0x40,0x8d,0x0e,0xd4,0xa2, + 0x55,0xa9,0xc0,0x20,0x9f,0xf5,0x4c,0xee, + 0xf3,0xa2,0xff,0x8e,0xfc,0x02,0x8e,0xf2, + 0x02,0xe8,0x8e,0xf1,0x02,0x8e,0xb6,0x02, + 0xa9,0x40,0x8d,0xbe,0x02,0xa9,0x22,0x85, + 0x79,0xa9,0xff,0x85,0x7a,0x60,0xae,0xbe, + 0x02,0xd0,0x02,0xa0,0x40,0x98,0x29,0xc0, + 0x8d,0xbe,0x02,0xa2,0xff,0xa5,0x11,0xf0, + 0x5a,0xad,0xfc,0x02,0xc9,0xff,0xf0,0xf5, + 0x8e,0xfc,0x02,0xac,0xdb,0x02,0xd0,0x05, + 0xa0,0x0c,0x20,0xcc,0xe4,0xc9,0xc0,0xb0, + 0xe2,0xa8,0xb1,0x79,0x10,0x10,0xc9,0x81, + 0x90,0xd9,0xf0,0x2d,0xc9,0x83,0x90,0xc6, + 0xc9,0x85,0x90,0xc9,0xf0,0x32,0xc9,0x61, + 0x90,0x0f,0xc9,0x7b,0xb0,0x0b,0x2c,0xbe, + 0x02,0x70,0x04,0x10,0x04,0x29,0x1f,0x29, + 0xdf,0xa2,0x0f,0x20,0xbe,0xfc,0xf0,0x03, + 0x4d,0xb6,0x02,0x8d,0xfb,0x02,0xa0,0x01, + 0x60,0xad,0xb6,0x02,0x49,0x80,0x8d,0xb6, + 0x02,0xb0,0xa0,0x86,0x11,0xa0,0x80,0x60, + 0xa0,0x88,0x60,0xad,0xd9,0x02,0x8d,0x2b, + 0x02,0xad,0x09,0xd2,0x48,0x29,0x3f,0xc9, + 0x11,0xd0,0x06,0x68,0x8d,0xdc,0x02,0xd0, + 0x1c,0x68,0xcd,0xf2,0x02,0xd0,0x08,0xad, + 0xf1,0x02,0xd0,0x16,0xad,0xf2,0x02,0xc9, + 0x9f,0xf0,0x11,0x8d,0xfc,0x02,0x8d,0xf2, + 0x02,0xa9,0x00,0x85,0x4d,0xa9,0x03,0x8d, + 0xf1,0x02,0x68,0x40,0xad,0xff,0x02,0x49, + 0xff,0x8d,0xff,0x02,0xb0,0xef,0xa9,0x00, + 0x85,0x11,0x8d,0xff,0x02,0x8d,0xf0,0x02, + 0x68,0x40,0x6c,0x6a,0x3b,0x80,0x80,0x6b, + 0x2b,0x2a,0x6f,0x80,0x70,0x75,0x9b,0x69, + 0x2d,0x3d,0x76,0x80,0x63,0x80,0x80,0x62, + 0x78,0x7a,0x34,0x80,0x33,0x36,0x1b,0x35, + 0x32,0x31,0x2c,0x20,0x2e,0x6e,0x80,0x6d, + 0x2f,0x81,0x72,0x80,0x65,0x79,0x7f,0x74, + 0x77,0x71,0x39,0x80,0x30,0x37,0x7e,0x38, + 0x3c,0x3e,0x66,0x68,0x64,0x80,0x82,0x67, + 0x73,0x61,0x4c,0x4a,0x3a,0x80,0x80,0x4b, + 0x5c,0x5e,0x4f,0x80,0x50,0x55,0x9b,0x49, + 0x5f,0x7c,0x56,0x80,0x43,0x80,0x80,0x42, + 0x58,0x5a,0x24,0x80,0x23,0x26,0x1b,0x25, + 0x22,0x21,0x5b,0x20,0x5d,0x4e,0x80,0x4d, + 0x3f,0x80,0x52,0x80,0x45,0x59,0x9f,0x54, + 0x57,0x51,0x28,0x80,0x29,0x27,0x9c,0x40, + 0x7d,0x9d,0x46,0x48,0x44,0x80,0x83,0x47, + 0x53,0x41,0x0c,0x0a,0x7b,0x80,0x80,0x0b, + 0x1e,0x1f,0x0f,0x80,0x10,0x15,0x9b,0x09, + 0x1c,0x1d,0x16,0x80,0x03,0x80,0x80,0x02, + 0x18,0x1a,0x80,0x80,0x85,0x80,0x1b,0x80, + 0xfd,0x80,0x00,0x20,0x60,0x0e,0x80,0x0d, + 0x80,0x80,0x12,0x80,0x05,0x19,0x9e,0x14, + 0x17,0x11,0x80,0x80,0x80,0x80,0xfe,0x80, + 0x7d,0xff,0x06,0x08,0x04,0x80,0x84,0x07, + 0x13,0x01,0xff,0xff,0xff,0xff,0xff,0xff, + 0xff,0xff,0xff,0xff,0xff,0xff,0x01,0x01, 0x13,0x02,0x43,0x58,0x00,0x00,0x00,0x00, - 0x00,0x00,0x7f,0xc1,0xb5,0xee,0x93,0xc1 + 0x00,0x00,0x8e,0xc1,0xb6,0xee,0xa2,0xc1 }; #endif