From 26a601131dbaf9a6645bfe2978685507cbb20952 Mon Sep 17 00:00:00 2001 From: rofl0r Date: Wed, 22 Nov 2017 23:42:33 +0000 Subject: [PATCH] Revert "import inofficial 1.0.4pre by joshua" This reverts commit 9859b44888b00c0835c0c4997f5f2ae4f6dfaf52. This change causes 2 bugs with the GBC game Cannon Fodder ( Cannon Fodder (U) (M5) [C][!].gbc md5sum 762d6c94874d8ac894ad100c0a4b50ab ) 1) the 3D scenes flicker and there are some artifacts in the title screen, 2) as soon as mission 2 starts, the CPU goes into an endless loop and doesn't process input anymore - this is really nasty, as it is even impossible to get out of gnuboy itself, at least in fb mode. i was skeptical about this inofficial patch since the beginning, since it was not done by laguna himself but by some gamers, and now it's confirmed that it's broken. afaict this patch includes 3-4 logical changes, if further issues are experienced it may make sense to try one after the other to see if it fixes them. --- README | 12 +- cpucore.h | 2 +- docs/CHANGES | 16 - docs/WHATSNEW | 26 -- hw.c | 50 +-- lcdc.c | 4 +- mem.c | 8 +- noise.h | 1028 ++++++++++++++++++++++++------------------------- sound.c | 5 +- 9 files changed, 547 insertions(+), 604 deletions(-) diff --git a/README b/README index 0c18ec6..f10a5f0 100644 --- a/README +++ b/README @@ -45,20 +45,19 @@ all of the following and much more: Wave pattern memory corruption when sound channel 3 is played. Pad, timer, divide counter, and other basic hardware registers. CGB double-speed CPU mode. - Sorting sprites by X coordinate in DMG mode. - HALT instruction skipping in DMG mode. - CPU stalls during HDMA and GDMA. - Configurable color filters to provide more authentic LCD look. Aspects not emulated at this time include: * Serial IO (link cable). Undocumented 'extra' ram in OAM space on Gameboy Color. -* All Super Gameboy extensions. + All Super Gameboy extensions. * GBC, HuC1, and HuC3 IR ports. * Obscure mappers such as TAMA5. + Sorting sprites by X coordinate in DMG mode. + HALT instruction skipping in DMG mode. + CPU stalls during HDMA and GDMA. -Only the ones marked by * are known to affect the playability of +Only the two marked by * are known to affect the playability of actual games or demos; the rest are just listed for completeness' sake. @@ -129,6 +128,7 @@ Here's a brief list of what may appear in gnuboy in the future: Super Gameboy support. Serial link over the internet. Serial link to a real Gameboy with a custom cable. + Configurable color filters to provide more authentic LCD look. Custom colorization of DMG games on a per-tile basis. Support for more colorspaces in the hardware scaler. Recording audio. diff --git a/cpucore.h b/cpucore.h index 742daf3..934bd1e 100644 --- a/cpucore.h +++ b/cpucore.h @@ -7,7 +7,7 @@ const static byte cycles_table[256] = 1, 3, 2, 2, 1, 1, 2, 1, 5, 2, 2, 2, 1, 1, 2, 1, 1, 3, 2, 2, 1, 1, 2, 1, 3, 2, 2, 2, 1, 1, 2, 1, 3, 3, 2, 2, 1, 1, 2, 1, 3, 2, 2, 2, 1, 1, 2, 1, - 3, 3, 2, 2, 3, 3, 3, 1, 3, 2, 2, 2, 1, 1, 2, 1, + 3, 3, 2, 2, 1, 3, 3, 3, 3, 2, 2, 2, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 2, 1, diff --git a/docs/CHANGES b/docs/CHANGES index 4761174..2d934c1 100644 --- a/docs/CHANGES +++ b/docs/CHANGES @@ -9,22 +9,6 @@ GNUBOY CHANGES FILE -- detailed list of all changes made For an easy-to-read user-oriented list of major changes in each release, please refer to the file WHATSNEW. -1.0.4-cvs -fixed a possible out-of-bounds access which could allow a hacked savestate to -crash gnuboy and possibly run arbitrary code on the host machine. Challenge: -try to find a way to exploit it -removed an incorrect restriction on when LY=LYC interrupts can occur, which -broke at least one game and several PD roms. (extra special thanks to beware -for helping us track this down!) -fixed an SDL keymap issue which prevented the keypad '5' key from working when -num-lock was off -replaced the channel 4 PRNG tables with a computer-generated PRNG output table, -as opposed to an approximation based on wavefiles -fixed the HDMA behavior (properly?), several pinball games developed by 'Left -Field Productions' now work correctly (thanks to beware for pointing us in the -right direction) -fixed GDMA so it consumes cpu cycles properly, now the intro to Magical Drop -works correctly 1.0.3 fixed a typo in the SDL keymap file that kept . from working diff --git a/docs/WHATSNEW b/docs/WHATSNEW index 39703f1..75e964e 100644 --- a/docs/WHATSNEW +++ b/docs/WHATSNEW @@ -8,32 +8,6 @@ -CVS 1.0.4 - -Fixed a possible out-of-bounds access which could allow a hacked savestate to -crash gnuboy and possibly run arbitrary code on the host machine. Challenge: -try to find a way to exploit it - -Removed an incorrect restriction on when LY=LYC interrupts can occur (from -0.9.13, possibly to fix montezuma's return or pokemon yellow, though both games -work fine now without it) which broke at least one commercial game and several -PD roms. (extra special thanks to beware for helping us track this down!) - -Fixed an SDL keymap issue which prevented the keypad '5' key from working when -num-lock was off - -Replaced the channel 4 PRNG tables with a shifter-generated PRNG output table, -as opposed to the old approximations based on wavefiles - -Fixed the HDMA timing behavior (properly?), several pinball games developed by -'Left Field Productions' now work correctly (thanks to beware for pointing us -in the right direction) - -Fixed the GDMA behavior so it consumes cpu cycles as it should. This fixes the -intro scene animation in 'Magical Drop' - - - RELEASE 1.0.3 All ANSI C incompatibilities should be fixed. Please report any that diff --git a/hw.c b/hw.c index f214787..3c6caf0 100644 --- a/hw.c +++ b/hw.c @@ -54,33 +54,6 @@ void hw_dma(byte b) lcd.oam.mem[i] = readb(a); } -/* COMMENT A: - * Beware was pretty sure that this HDMA implementation was incorrect, as when - * he used it in bgb, it broke Pokemon Crystal (J). I tested it with this and - * it seems to work fine, so until I find any problems with it, it's staying. - * (Lord Nightmare) - */ - - -void hw_hdma() -{ - int cnt; - addr sa; - int da; - - sa = ((addr)R_HDMA1 << 8) | (R_HDMA2&0xf0); - da = 0x8000 | ((int)(R_HDMA3&0x1f) << 8) | (R_HDMA4&0xf0); - cnt = 16; - while (cnt--) - writeb(da++, readb(sa++)); - cpu_timers(16); /* SEE COMMENT A ABOVE */ - R_HDMA1 = sa >> 8; - R_HDMA2 = sa & 0xF0; - R_HDMA3 = 0x1F & (da >> 8); - R_HDMA4 = da & 0xF0; - R_HDMA5--; - hw.hdma--; -} void hw_hdma_cmd(byte c) @@ -94,7 +67,6 @@ void hw_hdma_cmd(byte c) { hw.hdma = c; R_HDMA5 = c & 0x7f; - if ((R_STAT&0x03) == 0x00) hw_hdma(); /* SEE COMMENT A ABOVE */ return; } @@ -104,8 +76,6 @@ void hw_hdma_cmd(byte c) cnt = ((int)c)+1; /* FIXME - this should use cpu time! */ /*cpu_timers(102 * cnt);*/ - cpu_timers((460>>cpu.speed)+cnt*16); /*dalias*/ - /*cpu_timers(228 + (16*cnt));*/ /* this should be right according to no$ */ cnt <<= 4; while (cnt--) writeb(da++, readb(sa++)); @@ -117,6 +87,26 @@ void hw_hdma_cmd(byte c) } +void hw_hdma() +{ + int cnt; + addr sa; + int da; + + sa = ((addr)R_HDMA1 << 8) | (R_HDMA2&0xf0); + da = 0x8000 | ((int)(R_HDMA3&0x1f) << 8) | (R_HDMA4&0xf0); + cnt = 16; + while (cnt--) + writeb(da++, readb(sa++)); + R_HDMA1 = sa >> 8; + R_HDMA2 = sa & 0xF0; + R_HDMA3 = 0x1F & (da >> 8); + R_HDMA4 = da & 0xF0; + R_HDMA5--; + hw.hdma--; +} + + /* * pad_refresh updates the P1 register from the pad states, generating * the appropriate interrupts (by quickly raising and lowering the diff --git a/lcdc.c b/lcdc.c index e247f92..759653e 100644 --- a/lcdc.c +++ b/lcdc.c @@ -23,10 +23,10 @@ void stat_trigger() { - static const int condbits[4] = { 0x08, 0x10, 0x20, 0x00 }; + static const int condbits[4] = { 0x08, 0x30, 0x20, 0x00 }; int flag = 0; - if (R_LY == R_LYC) + if ((R_LY < 0x91) && (R_LY == R_LYC)) { R_STAT |= 0x04; if (R_STAT & 0x40) flag = IF_STAT; diff --git a/mem.c b/mem.c index 37889d5..5d951e1 100644 --- a/mem.c +++ b/mem.c @@ -33,9 +33,6 @@ void mem_updatemap() int n; byte **map; - mbc.rombank &= (mbc.romsize - 1); - mbc.rambank &= (mbc.ramsize - 1); - map = mbc.rmap; map[0x0] = rom.bank[0]; map[0x1] = rom.bank[0]; @@ -162,9 +159,6 @@ void ioreg_write(byte r, byte b) } R_SC = b; /* & 0x7f; */ break; - case RI_SB: - REG(r) = b; - break; case RI_DIV: REG(r) = 0; break; @@ -436,6 +430,8 @@ void mbc_write(int a, byte b) } break; } + mbc.rombank &= (mbc.romsize - 1); + mbc.rambank &= (mbc.ramsize - 1); /* printf("%02X\n", mbc.rombank); */ mem_updatemap(); } diff --git a/noise.h b/noise.h index c642848..037499e 100644 --- a/noise.h +++ b/noise.h @@ -7,524 +7,524 @@ static byte noise7[] = { - 0xfb,0xe7,0xae,0x1b,0xa6,0x2b,0x05,0xe3, - 0xb6,0x4a,0x42,0x72,0xd1,0x19,0xaa,0x03, + 0xfd,0xf3,0xd7,0x0d,0xd3,0x15,0x82,0xf1, + 0xdb,0x25,0x21,0x39,0x68,0x8c,0xd5,0x00, }; static byte noise15[] = { -0xff,0xfb,0xff,0xe7,0xff,0xaf,0xfe,0x1f, -0xfb,0xbf,0xe6,0x7f,0xaa,0xfe,0x01,0xfb, -0xfb,0xe7,0xe7,0xaf,0xae,0x1e,0x1b,0xbb, -0xa6,0x66,0x2a,0xab,0x00,0x05,0xff,0xe3, -0xff,0xb7,0xfe,0x4f,0xfa,0x5f,0xe2,0x3f, -0xb3,0x7e,0x54,0xfa,0x05,0xe3,0xe3,0xb7, -0xb6,0x4e,0x4a,0x5a,0x42,0x22,0x73,0x32, -0xd5,0x51,0x00,0x19,0xff,0xab,0xfe,0x07, -0xfb,0xef,0xe7,0x9f,0xae,0xbe,0x18,0x7b, -0xae,0xe6,0x19,0xab,0xaa,0x06,0x03,0xeb, -0xf7,0x87,0xce,0xef,0x59,0x9c,0x2a,0xb7, -0x00,0x4d,0xfe,0x53,0xfa,0x17,0xe3,0x8f, -0xb6,0xde,0x49,0x3a,0x49,0x62,0x48,0xb2, -0x4c,0x52,0x56,0x12,0x0b,0x93,0xc6,0x97, -0x68,0x8c,0x8c,0xd4,0xd5,0x05,0x01,0xe1, -0xfb,0xbb,0xe6,0x67,0xaa,0xae,0x00,0x1b, -0xff,0xa7,0xfe,0x2f,0xfb,0x1f,0xe5,0xbf, -0xa2,0x7e,0x32,0xfb,0x51,0xe4,0x1b,0xa7, -0xa6,0x2e,0x2b,0x1b,0x05,0xa5,0xe2,0x23, -0xb3,0x36,0x55,0x4a,0x00,0x43,0xfe,0x77, -0xfa,0xcf,0xe1,0x5f,0xb8,0x3e,0x6f,0x7a, -0x9c,0xe0,0xb5,0xbc,0x42,0x76,0x72,0xca, -0xd1,0x41,0x18,0x79,0xae,0xea,0x19,0x83, -0xaa,0xf6,0x01,0xcb,0xfb,0x47,0xe4,0x6f, -0xa6,0x9e,0x28,0xbb,0x0c,0x65,0xd6,0xa3, -0x08,0x35,0xcf,0x43,0x5c,0x74,0x36,0xc7, -0x49,0x6c,0x48,0x96,0x4c,0x8a,0x54,0xc2, -0x05,0x73,0xe0,0xd7,0xbd,0x0e,0x71,0xda, -0xdb,0x21,0x25,0x39,0x21,0x69,0x38,0x89, -0x6c,0xc8,0x95,0x4c,0x80,0x54,0xfe,0x05, -0xfb,0xe3,0xe7,0xb7,0xae,0x4e,0x1a,0x5b, -0xa2,0x26,0x33,0x2b,0x55,0x04,0x01,0xe7, -0xfb,0xaf,0xe6,0x1f,0xab,0xbe,0x06,0x7b, -0xea,0xe7,0x81,0xae,0xfa,0x19,0xe3,0xab, -0xb6,0x06,0x4b,0xea,0x47,0x82,0x6e,0xf2, -0x99,0xd0,0xab,0x1c,0x05,0xb7,0xe2,0x4f, -0xb2,0x5e,0x52,0x3a,0x13,0x63,0x94,0xb6, -0x84,0x48,0xe6,0x4d,0xaa,0x52,0x02,0x13, -0xf3,0x97,0xd6,0x8f,0x08,0xdd,0xcd,0x33, -0x51,0x54,0x18,0x07,0xaf,0xee,0x1f,0x9b, -0xbe,0xa6,0x78,0x2a,0xef,0x01,0x9d,0xfa, -0xb3,0xe0,0x57,0xbe,0x0e,0x7b,0xda,0xe7, -0x21,0xad,0x3a,0x11,0x63,0x98,0xb6,0xac, -0x48,0x16,0x4f,0x8a,0x5e,0xc2,0x39,0x73, -0x68,0xd4,0x8d,0x04,0xd1,0xe5,0x1b,0xa1, -0xa6,0x3a,0x2b,0x63,0x04,0xb5,0xe4,0x43, -0xa6,0x76,0x2a,0xcb,0x01,0x45,0xf8,0x63, -0xee,0xb7,0x98,0x4e,0xae,0x58,0x1a,0x2f, -0xa3,0x1e,0x35,0xbb,0x42,0x64,0x72,0xa6, -0xd0,0x29,0x1f,0x09,0xbd,0xca,0x73,0x42, -0xd4,0x71,0x06,0xd9,0xe9,0x2b,0x89,0x06, -0xc9,0xe9,0x4b,0x88,0x46,0xce,0x69,0x5a, -0x88,0x20,0xcf,0x3d,0x5d,0x70,0x30,0xdf, -0x5d,0x3c,0x31,0x77,0x58,0xcc,0x2d,0x57, -0x10,0x0d,0x9f,0xd2,0xbf,0x10,0x7d,0x9e, -0xf2,0xb9,0xd0,0x6b,0x1e,0x85,0xb8,0xe2, -0x6d,0xb2,0x92,0x50,0x92,0x1c,0x93,0xb4, -0x96,0x44,0x8a,0x64,0xc2,0xa5,0x70,0x20, -0xdf,0x3d,0x3d,0x71,0x70,0xd8,0xdd,0x2d, -0x31,0x11,0x59,0x98,0x2a,0xaf,0x00,0x1d, -0xff,0xb3,0xfe,0x57,0xfa,0x0f,0xe3,0xdf, -0xb7,0x3e,0x4d,0x7a,0x50,0xe2,0x1d,0xb3, -0xb2,0x56,0x52,0x0a,0x13,0xc3,0x97,0x76, -0x8c,0xc8,0xd5,0x4d,0x00,0x51,0xfe,0x1b, -0xfb,0xa7,0xe6,0x2f,0xab,0x1e,0x05,0xbb, -0xe2,0x67,0xb2,0xae,0x50,0x1a,0x1f,0xa3, -0xbe,0x36,0x7b,0x4a,0xe4,0x41,0xa6,0x7a, -0x2a,0xe3,0x01,0xb5,0xfa,0x43,0xe2,0x77, -0xb2,0xce,0x51,0x5a,0x18,0x23,0xaf,0x36, -0x1d,0x4b,0xb0,0x46,0x5e,0x6a,0x3a,0x83, -0x60,0xf4,0xbd,0xc4,0x73,0x66,0xd4,0xa9, -0x04,0x09,0xe7,0xcb,0xaf,0x46,0x1c,0x6b, -0xb6,0x86,0x48,0xea,0x4d,0x82,0x52,0xf2, -0x11,0xd3,0x9b,0x16,0xa5,0x88,0x22,0xcf, -0x31,0x5d,0x58,0x30,0x2f,0x5f,0x1c,0x3d, -0xb7,0x72,0x4c,0xd2,0x55,0x12,0x01,0x93, -0xfa,0x97,0xe0,0x8f,0xbc,0xde,0x75,0x3a, -0xc1,0x61,0x78,0xb8,0xec,0x6d,0x96,0x92, -0x88,0x90,0xcc,0x9d,0x54,0xb0,0x04,0x5f, -0xe6,0x3f,0xab,0x7e,0x04,0xfb,0xe5,0xe7, -0xa3,0xae,0x36,0x1b,0x4b,0xa4,0x46,0x26, -0x6b,0x2a,0x85,0x00,0xe1,0xfd,0xbb,0xf2, -0x67,0xd2,0xaf,0x10,0x1d,0x9f,0xb2,0xbe, -0x50,0x7a,0x1e,0xe3,0xb9,0xb6,0x6a,0x4a, -0x82,0x40,0xf2,0x7d,0xd2,0xf3,0x11,0xd5, -0x9b,0x02,0xa5,0xf0,0x23,0xdf,0x37,0x3d, -0x4d,0x70,0x50,0xde,0x1d,0x3b,0xb1,0x66, -0x58,0xaa,0x2c,0x03,0x17,0xf5,0x8f,0xc2, -0xdf,0x71,0x3c,0xd9,0x75,0x28,0xc1,0x0d, -0x79,0xd0,0xeb,0x1d,0x85,0xb2,0xe2,0x51, -0xb2,0x1a,0x53,0xa2,0x16,0x33,0x8b,0x56, -0xc4,0x09,0x67,0xc8,0xaf,0x4c,0x1c,0x57, -0xb6,0x0e,0x4b,0xda,0x47,0x22,0x6d,0x32, -0x91,0x50,0x98,0x1c,0xaf,0xb4,0x1e,0x47, -0xba,0x6e,0x62,0x9a,0xb0,0xa0,0x5c,0x3e, -0x37,0x7b,0x4c,0xe4,0x55,0xa6,0x02,0x2b, -0xf3,0x07,0xd5,0xef,0x03,0x9d,0xf6,0xb3, -0xc8,0x57,0x4e,0x0c,0x5b,0xd6,0x27,0x0b, -0x2d,0xc5,0x13,0x61,0x94,0xba,0x84,0x60, -0xe6,0xbd,0xa8,0x72,0x0e,0xd3,0xd9,0x17, -0x29,0x8d,0x0a,0xd1,0xc1,0x1b,0x79,0xa4, -0xea,0x25,0x83,0x22,0xf5,0x31,0xc1,0x5b, -0x78,0x24,0xef,0x25,0x9d,0x22,0xb1,0x30, -0x59,0x5e,0x28,0x3b,0x0f,0x65,0xdc,0xa3, -0x34,0x35,0x47,0x40,0x6c,0x7e,0x96,0xf8, -0x89,0xec,0xcb,0x95,0x46,0x80,0x68,0xfe, -0x8d,0xf8,0xd3,0xed,0x17,0x91,0x8e,0x9a, -0xd8,0xa1,0x2c,0x39,0x17,0x69,0x8c,0x8a, -0xd4,0xc1,0x05,0x79,0xe0,0xeb,0xbd,0x86, -0x72,0xea,0xd1,0x81,0x1a,0xf9,0xa1,0xea, -0x3b,0x83,0x66,0xf4,0xa9,0xc4,0x0b,0x67, -0xc4,0xaf,0x64,0x1c,0xa7,0xb4,0x2e,0x47, -0x1a,0x6d,0xa2,0x92,0x30,0x93,0x5c,0x94, -0x34,0x87,0x44,0xec,0x65,0x96,0xa2,0x88, -0x30,0xcf,0x5d,0x5c,0x30,0x37,0x5f,0x4c, -0x3c,0x57,0x76,0x0c,0xcb,0xd5,0x47,0x00, -0x6d,0xfe,0x93,0xf8,0x97,0xec,0x8f,0x94, -0xde,0x85,0x38,0xe1,0x6d,0xb8,0x92,0x6c, -0x92,0x94,0x90,0x84,0x9c,0xe4,0xb5,0xa4, -0x42,0x26,0x73,0x2a,0xd5,0x01,0x01,0xf9, -0xfb,0xeb,0xe7,0x87,0xae,0xee,0x19,0x9b, -0xaa,0xa6,0x00,0x2b,0xff,0x07,0xfd,0xef, -0xf3,0x9f,0xd6,0xbf,0x08,0x7d,0xce,0xf3, -0x59,0xd4,0x2b,0x07,0x05,0xed,0xe3,0x93, -0xb6,0x96,0x48,0x8a,0x4c,0xc2,0x55,0x72, -0x00,0xd3,0xfd,0x17,0xf1,0x8f,0xda,0xdf, -0x21,0x3d,0x39,0x71,0x68,0xd8,0x8d,0x2c, -0xd1,0x15,0x19,0x81,0xaa,0xfa,0x01,0xe3, -0xfb,0xb7,0xe6,0x4f,0xaa,0x5e,0x02,0x3b, -0xf3,0x67,0xd4,0xaf,0x04,0x1d,0xe7,0xb3, -0xae,0x56,0x1a,0x0b,0xa3,0xc6,0x37,0x6b, -0x4c,0x84,0x54,0xe6,0x05,0xab,0xe2,0x07, -0xb3,0xee,0x57,0x9a,0x0e,0xa3,0xd8,0x37, -0x2f,0x4d,0x1c,0x51,0xb6,0x1a,0x4b,0xa2, -0x46,0x32,0x6b,0x52,0x84,0x10,0xe7,0x9d, -0xae,0xb2,0x18,0x53,0xae,0x16,0x1b,0x8b, -0xa6,0xc6,0x29,0x6b,0x08,0x85,0xcc,0xe3, -0x55,0xb4,0x02,0x47,0xf2,0x6f,0xd2,0x9f, -0x10,0xbd,0x9c,0x72,0xb6,0xd0,0x49,0x1e, -0x49,0xba,0x4a,0x62,0x42,0xb2,0x70,0x52, -0xde,0x11,0x3b,0x99,0x66,0xa8,0xa8,0x0c, -0x0f,0xd7,0xdf,0x0f,0x3d,0xdd,0x73,0x30, -0xd5,0x5d,0x00,0x31,0xff,0x5b,0xfc,0x27, -0xf7,0x2f,0xcd,0x1f,0x51,0xbc,0x1a,0x77, -0xa2,0xce,0x31,0x5b,0x58,0x24,0x2f,0x27, -0x1d,0x2d,0xb1,0x12,0x59,0x92,0x2a,0x93, -0x00,0x95,0xfc,0x83,0xf4,0xf7,0xc5,0xcf, -0x63,0x5c,0xb4,0x34,0x47,0x46,0x6c,0x6a, -0x96,0x80,0x88,0xfc,0xcd,0xf5,0x53,0xc0, -0x17,0x7f,0x8c,0xfe,0xd5,0xf9,0x03,0xe9, -0xf7,0x8b,0xce,0xc7,0x59,0x6c,0x28,0x97, -0x0c,0x8d,0xd4,0xd3,0x05,0x15,0xe1,0x83, -0xba,0xf6,0x61,0xca,0xbb,0x40,0x64,0x7e, -0xa6,0xf8,0x29,0xef,0x0b,0x9d,0xc6,0xb3, -0x68,0x54,0x8e,0x04,0xdb,0xe5,0x27,0xa1, -0x2e,0x39,0x1b,0x69,0xa4,0x8a,0x24,0xc3, -0x25,0x75,0x20,0xc1,0x3d,0x79,0x70,0xe8, -0xdd,0x8d,0x32,0xd1,0x51,0x18,0x19,0xaf, -0xaa,0x1e,0x03,0xbb,0xf6,0x67,0xca,0xaf, -0x40,0x1c,0x7f,0xb6,0xfe,0x49,0xfa,0x4b, -0xe2,0x47,0xb2,0x6e,0x52,0x9a,0x10,0xa3, -0x9c,0x36,0xb7,0x48,0x4c,0x4e,0x56,0x5a, -0x0a,0x23,0xc3,0x37,0x75,0x4c,0xc0,0x55, -0x7e,0x00,0xfb,0xfd,0xe7,0xf3,0xaf,0xd6, -0x1f,0x0b,0xbd,0xc6,0x73,0x6a,0xd4,0x81, -0x04,0xf9,0xe5,0xeb,0xa3,0x86,0x36,0xeb, -0x49,0x84,0x4a,0xe6,0x41,0xaa,0x7a,0x02, -0xe3,0xf1,0xb7,0xda,0x4f,0x22,0x5d,0x32, -0x31,0x53,0x58,0x14,0x2f,0x87,0x1e,0xed, -0xb9,0x92,0x6a,0x92,0x80,0x90,0xfc,0x9d, -0xf4,0xb3,0xc4,0x57,0x66,0x0c,0xab,0xd4, -0x07,0x07,0xed,0xef,0x93,0x9e,0x96,0xb8, -0x88,0x6c,0xce,0x95,0x58,0x80,0x2c,0xff, -0x15,0xfd,0x83,0xf2,0xf7,0xd1,0xcf,0x1b, -0x5d,0xa4,0x32,0x27,0x53,0x2c,0x15,0x17, -0x81,0x8e,0xfa,0xd9,0xe1,0x2b,0xb9,0x06, -0x69,0xea,0x8b,0x80,0xc6,0xfd,0x69,0xf0, -0x8b,0xdc,0xc7,0x35,0x6d,0x40,0x90,0x7c, -0x9e,0xf4,0xb9,0xc4,0x6b,0x66,0x84,0xa8, -0xe4,0x0d,0xa7,0xd2,0x2f,0x13,0x1d,0x95, -0xb2,0x82,0x50,0xf2,0x1d,0xd3,0xb3,0x16, -0x55,0x8a,0x02,0xc3,0xf1,0x77,0xd8,0xcf, -0x2d,0x5d,0x10,0x31,0x9f,0x5a,0xbc,0x20, -0x77,0x3e,0xcd,0x79,0x50,0xe8,0x1d,0x8f, -0xb2,0xde,0x51,0x3a,0x19,0x63,0xa8,0xb6, -0x0c,0x4b,0xd6,0x47,0x0a,0x6d,0xc2,0x93, -0x70,0x94,0xdc,0x85,0x34,0xe1,0x45,0xb8, -0x62,0x6e,0xb2,0x98,0x50,0xae,0x1c,0x1b, -0xb7,0xa6,0x4e,0x2a,0x5b,0x02,0x25,0xf3, -0x23,0xd5,0x37,0x01,0x4d,0xf8,0x53,0xee, -0x17,0x9b,0x8e,0xa6,0xd8,0x29,0x2f,0x09, -0x1d,0xc9,0xb3,0x4a,0x54,0x42,0x06,0x73, -0xea,0xd7,0x81,0x0e,0xf9,0xd9,0xeb,0x2b, -0x85,0x06,0xe1,0xe9,0xbb,0x8a,0x66,0xc2, -0xa9,0x70,0x08,0xdf,0xcd,0x3f,0x51,0x7c, -0x18,0xf7,0xad,0xce,0x13,0x5b,0x94,0x26, -0x87,0x28,0xed,0x0d,0x91,0xd2,0x9b,0x10, -0xa5,0x9c,0x22,0xb7,0x30,0x4d,0x5e,0x50, -0x3a,0x1f,0x63,0xbc,0xb6,0x74,0x4a,0xc6, -0x41,0x6a,0x78,0x82,0xec,0xf1,0x95,0xda, -0x83,0x20,0xf5,0x3d,0xc1,0x73,0x78,0xd4, -0xed,0x05,0x91,0xe2,0x9b,0xb0,0xa6,0x5c, -0x2a,0x37,0x03,0x4d,0xf4,0x53,0xc6,0x17, -0x6b,0x8c,0x86,0xd4,0xe9,0x05,0x89,0xe2, -0xcb,0xb1,0x46,0x58,0x6a,0x2e,0x83,0x18, -0xf5,0xad,0xc2,0x13,0x73,0x94,0xd6,0x85, -0x08,0xe1,0xcd,0xbb,0x52,0x64,0x12,0xa7, -0x90,0x2e,0x9f,0x18,0xbd,0xac,0x72,0x16, -0xd3,0x89,0x16,0xc9,0x89,0x4a,0xc8,0x41, -0x4e,0x78,0x5a,0xee,0x21,0x9b,0x3a,0xa5, -0x60,0x20,0xbf,0x3c,0x7d,0x76,0xf0,0xc9, -0xdd,0x4b,0x30,0x45,0x5e,0x60,0x3a,0xbf, -0x60,0x7c,0xbe,0xf4,0x79,0xc6,0xeb,0x69, -0x84,0x8a,0xe4,0xc1,0xa5,0x7a,0x20,0xe3, -0x3d,0xb5,0x72,0x40,0xd2,0x7d,0x12,0xf1, -0x91,0xda,0x9b,0x20,0xa5,0x3c,0x21,0x77, -0x38,0xcd,0x6d,0x50,0x90,0x1c,0x9f,0xb4, -0xbe,0x44,0x7a,0x66,0xe2,0xa9,0xb0,0x0a, -0x5f,0xc2,0x3f,0x73,0x7c,0xd4,0xf5,0x05, -0xc1,0xe3,0x7b,0xb4,0xe6,0x45,0xaa,0x62, -0x02,0xb3,0xf0,0x57,0xde,0x0f,0x3b,0xdd, -0x67,0x30,0xad,0x5c,0x10,0x37,0x9f,0x4e, -0xbc,0x58,0x76,0x2e,0xcb,0x19,0x45,0xa8, -0x62,0x0e,0xb3,0xd8,0x57,0x2e,0x0d,0x1b, -0xd1,0xa7,0x1a,0x2d,0xa3,0x12,0x35,0x93, -0x42,0x94,0x70,0x86,0xdc,0xe9,0x35,0x89, -0x42,0xc8,0x71,0x4e,0xd8,0x59,0x2e,0x29, -0x1b,0x09,0xa5,0xca,0x23,0x43,0x34,0x75, -0x46,0xc0,0x69,0x7e,0x88,0xf8,0xcd,0xed, -0x53,0x90,0x16,0x9f,0x88,0xbe,0xcc,0x79, -0x56,0xe8,0x09,0x8f,0xca,0xdf,0x41,0x3c, -0x79,0x76,0xe8,0xc9,0x8d,0x4a,0xd0,0x41, -0x1e,0x79,0xba,0xea,0x61,0x82,0xba,0xf0, -0x61,0xde,0xbb,0x38,0x65,0x6e,0xa0,0x98, -0x3c,0xaf,0x74,0x1c,0xc7,0xb5,0x6e,0x40, -0x9a,0x7c,0xa2,0xf4,0x31,0xc7,0x5b,0x6c, -0x24,0x97,0x24,0x8d,0x24,0xd1,0x25,0x19, -0x21,0xa9,0x3a,0x09,0x63,0xc8,0xb7,0x4c, -0x4c,0x56,0x56,0x0a,0x0b,0xc3,0xc7,0x77, -0x6c,0xcc,0x95,0x54,0x80,0x04,0xff,0xe5, -0xff,0xa3,0xfe,0x37,0xfb,0x4f,0xe4,0x5f, -0xa6,0x3e,0x2b,0x7b,0x04,0xe5,0xe5,0xa3, -0xa2,0x36,0x33,0x4b,0x54,0x44,0x06,0x67, -0xea,0xaf,0x80,0x1e,0xff,0xb9,0xfe,0x6b, -0xfa,0x87,0xe0,0xef,0xbd,0x9e,0x72,0xba, -0xd0,0x61,0x1e,0xb9,0xb8,0x6a,0x6e,0x82, -0x98,0xf0,0xad,0xdc,0x13,0x37,0x95,0x4e, -0x80,0x58,0xfe,0x2d,0xfb,0x13,0xe5,0x97, -0xa2,0x8e,0x30,0xdb,0x5d,0x24,0x31,0x27, -0x59,0x2c,0x29,0x17,0x09,0x8d,0xca,0xd3, -0x41,0x14,0x79,0x86,0xea,0xe9,0x81,0x8a, -0xfa,0xc1,0xe1,0x7b,0xb8,0xe6,0x6d,0xaa, -0x92,0x00,0x93,0xfc,0x97,0xf4,0x8f,0xc4, -0xdf,0x65,0x3c,0xa1,0x74,0x38,0xc7,0x6d, -0x6c,0x90,0x94,0x9c,0x84,0xb4,0xe4,0x45, -0xa6,0x62,0x2a,0xb3,0x00,0x55,0xfe,0x03, -0xfb,0xf7,0xe7,0xcf,0xaf,0x5e,0x1c,0x3b, -0xb7,0x66,0x4c,0xaa,0x54,0x02,0x07,0xf3, -0xef,0xd7,0x9f,0x0e,0xbd,0xd8,0x73,0x2e, -0xd5,0x19,0x01,0xa9,0xfa,0x0b,0xe3,0xc7, -0xb7,0x6e,0x4c,0x9a,0x54,0xa2,0x04,0x33, -0xe7,0x57,0xac,0x0e,0x17,0xdb,0x8f,0x26, -0xdd,0x29,0x31,0x09,0x59,0xc8,0x2b,0x4f, -0x04,0x5d,0xe6,0x33,0xab,0x56,0x04,0x0b, -0xe7,0xc7,0xaf,0x6e,0x1c,0x9b,0xb4,0xa6, -0x44,0x2a,0x67,0x02,0xad,0xf0,0x13,0xdf, -0x97,0x3e,0x8d,0x78,0xd0,0xed,0x1d,0x91, -0xb2,0x9a,0x50,0xa2,0x1c,0x33,0xb7,0x56, -0x4c,0x0a,0x57,0xc2,0x0f,0x73,0xdc,0xd7, -0x35,0x0d,0x41,0xd0,0x7b,0x1e,0xe5,0xb9, -0xa2,0x6a,0x32,0x83,0x50,0xf4,0x1d,0xc7, -0xb3,0x6e,0x54,0x9a,0x04,0xa3,0xe4,0x37, -0xa7,0x4e,0x2c,0x5b,0x16,0x25,0x8b,0x22, -0xc5,0x31,0x61,0x58,0xb8,0x2c,0x6f,0x16, -0x9d,0x88,0xb2,0xcc,0x51,0x56,0x18,0x0b, -0xaf,0xc6,0x1f,0x6b,0xbc,0x86,0x74,0xea, -0xc5,0x81,0x62,0xf8,0xb1,0xec,0x5b,0x96, -0x26,0x8b,0x28,0xc5,0x0d,0x61,0xd0,0xbb, -0x1c,0x65,0xb6,0xa2,0x48,0x32,0x4f,0x52, -0x5c,0x12,0x37,0x93,0x4e,0x94,0x58,0x86, -0x2c,0xeb,0x15,0x85,0x82,0xe2,0xf1,0xb1, -0xda,0x5b,0x22,0x25,0x33,0x21,0x55,0x38, -0x01,0x6f,0xf8,0x9f,0xec,0xbf,0x94,0x7e, -0x86,0xf8,0xe9,0xed,0x8b,0x92,0xc6,0x91, -0x68,0x98,0x8c,0xac,0xd4,0x15,0x07,0x81, -0xee,0xfb,0x99,0xe6,0xab,0xa8,0x06,0x0f, -0xeb,0xdf,0x87,0x3e,0xed,0x79,0x90,0xea, -0x9d,0x80,0xb2,0xfc,0x51,0xf6,0x1b,0xcb, -0xa7,0x46,0x2c,0x6b,0x16,0x85,0x88,0xe2, -0xcd,0xb1,0x52,0x58,0x12,0x2f,0x93,0x1e, -0x95,0xb8,0x82,0x6c,0xf2,0x95,0xd0,0x83, -0x1c,0xf5,0xb5,0xc2,0x43,0x72,0x74,0xd2, -0xc5,0x11,0x61,0x98,0xba,0xac,0x60,0x16, -0xbf,0x88,0x7e,0xce,0xf9,0x59,0xe8,0x2b, -0x8f,0x06,0xdd,0xe9,0x33,0x89,0x56,0xc8, -0x09,0x4f,0xc8,0x5f,0x4e,0x3c,0x5b,0x76, -0x24,0xcb,0x25,0x45,0x20,0x61,0x3e,0xb9, -0x78,0x68,0xee,0x8d,0x98,0xd2,0xad,0x10, -0x11,0x9f,0x9a,0xbe,0xa0,0x78,0x3e,0xef, -0x79,0x9c,0xea,0xb5,0x80,0x42,0xfe,0x71, -0xfa,0xdb,0xe1,0x27,0xb9,0x2e,0x69,0x1a, -0x89,0xa0,0xca,0x3d,0x43,0x70,0x74,0xde, -0xc5,0x39,0x61,0x68,0xb8,0x8c,0x6c,0xd6, -0x95,0x08,0x81,0xcc,0xfb,0x55,0xe4,0x03, -0xa7,0xf6,0x2f,0xcb,0x1f,0x45,0xbc,0x62, -0x76,0xb2,0xc8,0x51,0x4e,0x18,0x5b,0xae, -0x26,0x1b,0x2b,0xa5,0x06,0x21,0xeb,0x3b, -0x85,0x66,0xe0,0xa9,0xbc,0x0a,0x77,0xc2, -0xcf,0x71,0x5c,0xd8,0x35,0x2f,0x41,0x1c, -0x79,0xb6,0xea,0x49,0x82,0x4a,0xf2,0x41, -0xd2,0x7b,0x12,0xe5,0x91,0xa2,0x9a,0x30, -0xa3,0x5c,0x34,0x37,0x47,0x4c,0x6c,0x56, -0x96,0x08,0x8b,0xcc,0xc7,0x55,0x6c,0x00, -0x97,0xfc,0x8f,0xf4,0xdf,0xc5,0x3f,0x61, -0x7c,0xb8,0xf4,0x6d,0xc6,0x93,0x68,0x94, -0x8c,0x84,0xd4,0xe5,0x05,0xa1,0xe2,0x3b, -0xb3,0x66,0x54,0xaa,0x04,0x03,0xe7,0xf7, -0xaf,0xce,0x1f,0x5b,0xbc,0x26,0x77,0x2a, -0xcd,0x01,0x51,0xf8,0x1b,0xef,0xa7,0x9e, -0x2e,0xbb,0x18,0x65,0xae,0xa2,0x18,0x33, -0xaf,0x56,0x1c,0x0b,0xb7,0xc6,0x4f,0x6a, -0x5c,0x82,0x34,0xf3,0x45,0xd4,0x63,0x06, -0xb5,0xe8,0x43,0x8e,0x76,0xda,0xc9,0x21, -0x49,0x38,0x49,0x6e,0x48,0x9a,0x4c,0xa2, -0x54,0x32,0x07,0x53,0xec,0x17,0x97,0x8e, -0x8e,0xd8,0xd9,0x2d,0x29,0x11,0x09,0x99, -0xca,0xab,0x40,0x04,0x7f,0xe6,0xff,0xa9, -0xfe,0x0b,0xfb,0xc7,0xe7,0x6f,0xac,0x9e, -0x14,0xbb,0x84,0x66,0xe6,0xa9,0xa8,0x0a, -0x0f,0xc3,0xdf,0x77,0x3c,0xcd,0x75,0x50, -0xc0,0x1d,0x7f,0xb0,0xfe,0x5d,0xfa,0x33, -0xe3,0x57,0xb4,0x0e,0x47,0xda,0x6f,0x22, -0x9d,0x30,0xb1,0x5c,0x58,0x36,0x2f,0x4b, -0x1c,0x45,0xb6,0x62,0x4a,0xb2,0x40,0x52, -0x7e,0x12,0xfb,0x91,0xe6,0x9b,0xa8,0xa6, -0x0c,0x2b,0xd7,0x07,0x0d,0xed,0xd3,0x93, -0x16,0x95,0x88,0x82,0xcc,0xf1,0x55,0xd8, -0x03,0x2f,0xf5,0x1f,0xc1,0xbf,0x7a,0x7c, -0xe2,0xf5,0xb1,0xc2,0x5b,0x72,0x24,0xd3, -0x25,0x15,0x21,0x81,0x3a,0xf9,0x61,0xe8, -0xbb,0x8c,0x66,0xd6,0xa9,0x08,0x09,0xcf, -0xcb,0x5f,0x44,0x3c,0x67,0x76,0xac,0xc8, -0x15,0x4f,0x80,0x5e,0xfe,0x39,0xfb,0x6b, -0xe4,0x87,0xa4,0xee,0x25,0x9b,0x22,0xa5, -0x30,0x21,0x5f,0x38,0x3d,0x6f,0x70,0x9c, -0xdc,0xb5,0x34,0x41,0x46,0x78,0x6a,0xee, -0x81,0x98,0xfa,0xad,0xe0,0x13,0xbf,0x96, -0x7e,0x8a,0xf8,0xc1,0xed,0x7b,0x90,0xe6, -0x9d,0xa8,0xb2,0x0c,0x53,0xd6,0x17,0x0b, -0x8d,0xc6,0xd3,0x69,0x14,0x89,0x84,0xca, -0xe5,0x41,0xa0,0x7a,0x3e,0xe3,0x79,0xb4, -0xea,0x45,0x82,0x62,0xf2,0xb1,0xd0,0x5b, -0x1e,0x25,0xbb,0x22,0x65,0x32,0xa1,0x50, -0x38,0x1f,0x6f,0xbc,0x9e,0x74,0xba,0xc4, -0x61,0x66,0xb8,0xa8,0x6c,0x0e,0x97,0xd8, -0x8f,0x2c,0xdd,0x15,0x31,0x81,0x5a,0xf8, -0x21,0xef,0x3b,0x9d,0x66,0xb0,0xa8,0x5c, -0x0e,0x37,0xdb,0x4f,0x24,0x5d,0x26,0x31, -0x2b,0x59,0x04,0x29,0xe7,0x0b,0xad,0xc6, -0x13,0x6b,0x94,0x86,0x84,0xe8,0xe5,0x8d, -0xa2,0xd2,0x31,0x13,0x59,0x94,0x2a,0x87, -0x00,0xed,0xfd,0x93,0xf2,0x97,0xd0,0x8f, -0x1c,0xdd,0xb5,0x32,0x41,0x52,0x78,0x12, -0xef,0x91,0x9e,0x9a,0xb8,0xa0,0x6c,0x3e, -0x97,0x78,0x8c,0xec,0xd5,0x95,0x02,0x81, -0xf0,0xfb,0xdd,0xe7,0x33,0xad,0x56,0x10, -0x0b,0x9f,0xc6,0xbf,0x68,0x7c,0x8e,0xf4, -0xd9,0xc5,0x2b,0x61,0x04,0xb9,0xe4,0x6b, -0xa6,0x86,0x28,0xeb,0x0d,0x85,0xd2,0xe3, -0x11,0xb5,0x9a,0x42,0xa2,0x70,0x32,0xdf, -0x51,0x3c,0x19,0x77,0xa8,0xce,0x0d,0x5b, -0xd0,0x27,0x1f,0x2d,0xbd,0x12,0x71,0x92, -0xda,0x91,0x20,0x99,0x3c,0xa9,0x74,0x08, -0xc7,0xcd,0x6f,0x50,0x9c,0x1c,0xb7,0xb4, -0x4e,0x46,0x5a,0x6a,0x22,0x83,0x30,0xf5, -0x5d,0xc0,0x33,0x7f,0x54,0xfc,0x05,0xf7, -0xe3,0xcf,0xb7,0x5e,0x4c,0x3a,0x57,0x62, -0x0c,0xb3,0xd4,0x57,0x06,0x0d,0xeb,0xd3, -0x87,0x16,0xed,0x89,0x92,0xca,0x91,0x40, -0x98,0x7c,0xae,0xf4,0x19,0xc7,0xab,0x6e, -0x04,0x9b,0xe4,0xa7,0xa4,0x2e,0x27,0x1b, -0x2d,0xa5,0x12,0x21,0x93,0x3a,0x95,0x60, -0x80,0xbc,0xfc,0x75,0xf6,0xc3,0xc9,0x77, -0x48,0xcc,0x4d,0x56,0x50,0x0a,0x1f,0xc3, -0xbf,0x76,0x7c,0xca,0xf5,0x41,0xc0,0x7b, -0x7e,0xe4,0xf9,0xa5,0xea,0x23,0x83,0x36, -0xf5,0x49,0xc0,0x4b,0x7e,0x44,0xfa,0x65, -0xe2,0xa3,0xb0,0x36,0x5f,0x4a,0x3c,0x43, -0x76,0x74,0xca,0xc5,0x41,0x60,0x78,0xbe, -0xec,0x79,0x96,0xea,0x89,0x80,0xca,0xfd, -0x41,0xf0,0x7b,0xde,0xe7,0x39,0xad,0x6a, -0x10,0x83,0x9c,0xf6,0xb5,0xc8,0x43,0x4e, -0x74,0x5a,0xc6,0x21,0x6b,0x38,0x85,0x6c, -0xe0,0x95,0xbc,0x82,0x74,0xf2,0xc5,0xd1, -0x63,0x18,0xb5,0xac,0x42,0x16,0x73,0x8a, -0xd6,0xc1,0x09,0x79,0xc8,0xeb,0x4d,0x84, -0x52,0xe6,0x11,0xab,0x9a,0x06,0xa3,0xe8, -0x37,0x8f,0x4e,0xdc,0x59,0x36,0x29,0x4b, -0x08,0x45,0xce,0x63,0x5a,0xb4,0x20,0x47, -0x3e,0x6d,0x7a,0x90,0xe0,0x9d,0xbc,0xb2, -0x74,0x52,0xc6,0x11,0x6b,0x98,0x86,0xac, -0xe8,0x15,0x8f,0x82,0xde,0xf1,0x39,0xd9, -0x6b,0x28,0x85,0x0c,0xe1,0xd5,0xbb,0x02, -0x65,0xf2,0xa3,0xd0,0x37,0x1f,0x4d,0xbc, -0x52,0x76,0x12,0xcb,0x91,0x46,0x98,0x68, -0xae,0x8c,0x18,0xd7,0xad,0x0e,0x11,0xdb, -0x9b,0x26,0xa5,0x28,0x21,0x0f,0x39,0xdd, -0x6b,0x30,0x85,0x5c,0xe0,0x35,0xbf,0x42, -0x7c,0x72,0xf6,0xd1,0xc9,0x1b,0x49,0xa4, -0x4a,0x26,0x43,0x2a,0x75,0x02,0xc1,0xf1, -0x7b,0xd8,0xe7,0x2d,0xad,0x12,0x11,0x93, -0x9a,0x96,0xa0,0x88,0x3c,0xcf,0x75,0x5c, -0xc0,0x35,0x7f,0x40,0xfc,0x7d,0xf6,0xf3, -0xc9,0xd7,0x4b,0x0c,0x45,0xd6,0x63,0x0a, -0xb5,0xc0,0x43,0x7e,0x74,0xfa,0xc5,0xe1, -0x63,0xb8,0xb6,0x6c,0x4a,0x96,0x40,0x8a, -0x7c,0xc2,0xf5,0x71,0xc0,0xdb,0x7d,0x24, -0xf1,0x25,0xd9,0x23,0x29,0x35,0x09,0x41, -0xc8,0x7b,0x4e,0xe4,0x59,0xa6,0x2a,0x2b, -0x03,0x05,0xf5,0xe3,0xc3,0xb7,0x76,0x4c, -0xca,0x55,0x42,0x00,0x73,0xfe,0xd7,0xf9, -0x0f,0xe9,0xdf,0x8b,0x3e,0xc5,0x79,0x60, -0xe8,0xbd,0x8c,0x72,0xd6,0xd1,0x09,0x19, -0xc9,0xab,0x4a,0x04,0x43,0xe6,0x77,0xaa, -0xce,0x01,0x5b,0xf8,0x27,0xef,0x2f,0x9d, -0x1e,0xb1,0xb8,0x5a,0x6e,0x22,0x9b,0x30, -0xa5,0x5c,0x20,0x37,0x3f,0x4d,0x7c,0x50, -0xf6,0x1d,0xcb,0xb3,0x46,0x54,0x6a,0x06, -0x83,0xe8,0xf7,0x8d,0xce,0xd3,0x59,0x14, -0x29,0x87,0x0a,0xed,0xc1,0x93,0x7a,0x94, -0xe0,0x85,0xbc,0xe2,0x75,0xb2,0xc2,0x51, -0x72,0x18,0xd3,0xad,0x16,0x11,0x8b,0x9a, -0xc6,0xa1,0x68,0x38,0x8f,0x6c,0xdc,0x95, -0x34,0x81,0x44,0xf8,0x65,0xee,0xa3,0x98, -0x36,0xaf,0x48,0x1c,0x4f,0xb6,0x5e,0x4a, -0x3a,0x43,0x62,0x74,0xb2,0xc4,0x51,0x66, -0x18,0xab,0xac,0x06,0x17,0xeb,0x8f,0x86, -0xde,0xe9,0x39,0x89,0x6a,0xc8,0x81,0x4c, -0xf8,0x55,0xee,0x03,0x9b,0xf6,0xa7,0xc8, -0x2f,0x4f,0x1c,0x5d,0xb6,0x32,0x4b,0x52, -0x44,0x12,0x67,0x92,0xae,0x90,0x18,0x9f, -0xac,0xbe,0x14,0x7b,0x86,0xe6,0xe9,0xa9, -0x8a,0x0a,0xc3,0xc1,0x77,0x78,0xcc,0xed, -0x55,0x90,0x02,0x9f,0xf0,0xbf,0xdc,0x7f, -0x36,0xfd,0x49,0xf0,0x4b,0xde,0x47,0x3a, -0x6d,0x62,0x90,0xb0,0x9c,0x5c,0xb6,0x34, -0x4b,0x46,0x44,0x6a,0x66,0x82,0xa8,0xf0, -0x0d,0xdf,0xd3,0x3f,0x15,0x7d,0x80,0xf2, -0xfd,0xd1,0xf3,0x1b,0xd5,0xa7,0x02,0x2d, -0xf3,0x13,0xd5,0x97,0x02,0x8d,0xf0,0xd3, -0xdd,0x17,0x31,0x8d,0x5a,0xd0,0x21,0x1f, -0x39,0xbd,0x6a,0x70,0x82,0xdc,0xf1,0x35, -0xd9,0x43,0x28,0x75,0x0e,0xc1,0xd9,0x7b, -0x28,0xe5,0x0d,0xa1,0xd2,0x3b,0x13,0x65, -0x94,0xa2,0x84,0x30,0xe7,0x5d,0xac,0x32, -0x17,0x53,0x8c,0x16,0xd7,0x89,0x0e,0xc9, -0xd9,0x4b,0x28,0x45,0x0e,0x61,0xda,0xbb, -0x20,0x65,0x3e,0xa1,0x78,0x38,0xef,0x6d, -0x9c,0x92,0xb4,0x90,0x44,0x9e,0x64,0xba, -0xa4,0x60,0x26,0xbf,0x28,0x7d,0x0e,0xf1, -0xd9,0xdb,0x2b,0x25,0x05,0x21,0xe1,0x3b, -0xb9,0x66,0x68,0xaa,0x8c,0x00,0xd7,0xfd, -0x0f,0xf1,0xdf,0xdb,0x3f,0x25,0x7d,0x20, -0xf1,0x3d,0xd9,0x73,0x28,0xd5,0x0d,0x01, -0xd1,0xfb,0x1b,0xe5,0xa7,0xa2,0x2e,0x33, -0x1b,0x55,0xa4,0x02,0x27,0xf3,0x2f,0xd5, -0x1f,0x01,0xbd,0xfa,0x73,0xe2,0xd7,0xb1, -0x0e,0x59,0xda,0x2b,0x23,0x05,0x35,0xe1, -0x43,0xb8,0x76,0x6e,0xca,0x99,0x40,0xa8, -0x7c,0x0e,0xf7,0xd9,0xcf,0x2b,0x5d,0x04, -0x31,0xe7,0x5b,0xac,0x26,0x17,0x2b,0x8d, -0x06,0xd1,0xe9,0x1b,0x89,0xa6,0xca,0x29, -0x43,0x08,0x75,0xce,0xc3,0x59,0x74,0x28, -0xc7,0x0d,0x6d,0xd0,0x93,0x1c,0x95,0xb4, -0x82,0x44,0xf2,0x65,0xd2,0xa3,0x10,0x35, -0x9f,0x42,0xbc,0x70,0x76,0xde,0xc9,0x39, -0x49,0x68,0x48,0x8e,0x4c,0xda,0x55,0x22, -0x01,0x33,0xf9,0x57,0xe8,0x0f,0x8f,0xde, -0xdf,0x39,0x3d,0x69,0x70,0x88,0xdc,0xcd, -0x35,0x51,0x40,0x18,0x7f,0xae,0xfe,0x19, -0xfb,0xab,0xe6,0x07,0xab,0xee,0x07,0x9b, -0xee,0xa7,0x98,0x2e,0xaf,0x18,0x1d,0xaf, -0xb2,0x1e,0x53,0xba,0x16,0x63,0x8a,0xb6, -0xc0,0x49,0x7e,0x48,0xfa,0x4d,0xe2,0x53, -0xb2,0x16,0x53,0x8a,0x16,0xc3,0x89,0x76, -0xc8,0xc9,0x4d,0x48,0x50,0x4e,0x1e,0x5b, -0xba,0x26,0x63,0x2a,0xb5,0x00,0x41,0xfe, -0x7b,0xfa,0xe7,0xe1,0xaf,0xba,0x1e,0x63, -0xba,0xb6,0x60,0x4a,0xbe,0x40,0x7a,0x7e, -0xe2,0xf9,0xb1,0xea,0x5b,0x82,0x26,0xf3, -0x29,0xd5,0x0b,0x01,0xc5,0xfb,0x63,0xe4, -0xb7,0xa4,0x4e,0x26,0x5b,0x2a,0x25,0x03, -0x21,0xf5,0x3b,0xc1,0x67,0x78,0xac,0xec, -0x15,0x97,0x82,0x8e,0xf0,0xd9,0xdd,0x2b, -0x31,0x05,0x59,0xe0,0x2b,0xbf,0x06,0x7d, -0xea,0xf3,0x81,0xd6,0xfb,0x09,0xe5,0xcb, -0xa3,0x46,0x34,0x6b,0x46,0x84,0x68,0xe6, -0x8d,0xa8,0xd2,0x0d,0x13,0xd1,0x97,0x1a, -0x8d,0xa0,0xd2,0x3d,0x13,0x71,0x94,0xda, -0x85,0x20,0xe1,0x3d,0xb9,0x72,0x68,0xd2, -0x8d,0x10,0xd1,0x9d,0x1a,0xb1,0xa0,0x5a, -0x3e,0x23,0x7b,0x34,0xe5,0x45,0xa0,0x62, -0x3e,0xb3,0x78,0x54,0xee,0x05,0x9b,0xe2, -0xa7,0xb0,0x2e,0x5f,0x1a,0x3d,0xa3,0x72, -0x34,0xd3,0x45,0x14,0x61,0x86,0xba,0xe8, -0x61,0x8e,0xba,0xd8,0x61,0x2e,0xb9,0x18, -0x69,0xae,0x8a,0x18,0xc3,0xad,0x76,0x10, -0xcb,0x9d,0x46,0xb0,0x68,0x5e,0x8e,0x38, -0xdb,0x6d,0x24,0x91,0x24,0x99,0x24,0xa9, -0x24,0x09,0x27,0xc9,0x2f,0x49,0x1c,0x49, -0xb6,0x4a,0x4a,0x42,0x42,0x72,0x72,0xd2, -0xd1,0x11,0x19,0x99,0xaa,0xaa,0x00,0x03, + 0xff,0xfd,0xff,0xf3,0xff,0xd7,0xff,0x0f, + 0xfd,0xdf,0xf3,0x3f,0xd5,0x7f,0x00,0xfd, + 0xfd,0xf3,0xf3,0xd7,0xd7,0x0f,0x0d,0xdd, + 0xd3,0x33,0x15,0x55,0x80,0x02,0xff,0xf1, + 0xff,0xdb,0xff,0x27,0xfd,0x2f,0xf1,0x1f, + 0xd9,0xbf,0x2a,0x7d,0x02,0xf1,0xf1,0xdb, + 0xdb,0x27,0x25,0x2d,0x21,0x11,0x39,0x99, + 0x6a,0xa8,0x80,0x0c,0xff,0xd5,0xff,0x03, + 0xfd,0xf7,0xf3,0xcf,0xd7,0x5f,0x0c,0x3d, + 0xd7,0x73,0x0c,0xd5,0xd5,0x03,0x01,0xf5, + 0xfb,0xc3,0xe7,0x77,0xac,0xce,0x15,0x5b, + 0x80,0x26,0xff,0x29,0xfd,0x0b,0xf1,0xc7, + 0xdb,0x6f,0x24,0x9d,0x24,0xb1,0x24,0x59, + 0x26,0x29,0x2b,0x09,0x05,0xc9,0xe3,0x4b, + 0xb4,0x46,0x46,0x6a,0x6a,0x82,0x80,0xf0, + 0xfd,0xdd,0xf3,0x33,0xd5,0x57,0x00,0x0d, + 0xff,0xd3,0xff,0x17,0xfd,0x8f,0xf2,0xdf, + 0xd1,0x3f,0x19,0x7d,0xa8,0xf2,0x0d,0xd3, + 0xd3,0x17,0x15,0x8d,0x82,0xd2,0xf1,0x11, + 0xd9,0x9b,0x2a,0xa5,0x00,0x21,0xff,0x3b, + 0xfd,0x67,0xf0,0xaf,0xdc,0x1f,0x37,0xbd, + 0x4e,0x70,0x5a,0xde,0x21,0x3b,0x39,0x65, + 0x68,0xa0,0x8c,0x3c,0xd7,0x75,0x0c,0xc1, + 0xd5,0x7b,0x00,0xe5,0xfd,0xa3,0xf2,0x37, + 0xd3,0x4f,0x14,0x5d,0x86,0x32,0xeb,0x51, + 0x84,0x1a,0xe7,0xa1,0xae,0x3a,0x1b,0x63, + 0xa4,0xb6,0x24,0x4b,0x26,0x45,0x2a,0x61, + 0x02,0xb9,0xf0,0x6b,0xde,0x87,0x38,0xed, + 0x6d,0x90,0x92,0x9c,0x90,0xb4,0x9c,0x44, + 0xb6,0x64,0x4a,0xa6,0x40,0x2a,0x7f,0x02, + 0xfd,0xf1,0xf3,0xdb,0xd7,0x27,0x0d,0x2d, + 0xd1,0x13,0x19,0x95,0xaa,0x82,0x00,0xf3, + 0xfd,0xd7,0xf3,0x0f,0xd5,0xdf,0x03,0x3d, + 0xf5,0x73,0xc0,0xd7,0x7d,0x0c,0xf1,0xd5, + 0xdb,0x03,0x25,0xf5,0x23,0xc1,0x37,0x79, + 0x4c,0xe8,0x55,0x8e,0x02,0xdb,0xf1,0x27, + 0xd9,0x2f,0x29,0x1d,0x09,0xb1,0xca,0x5b, + 0x42,0x24,0x73,0x26,0xd5,0x29,0x01,0x09, + 0xf9,0xcb,0xeb,0x47,0x84,0x6e,0xe6,0x99, + 0xa8,0xaa,0x0c,0x03,0xd7,0xf7,0x0f,0xcd, + 0xdf,0x53,0x3c,0x15,0x77,0x80,0xce,0xfd, + 0x59,0xf0,0x2b,0xdf,0x07,0x3d,0xed,0x73, + 0x90,0xd6,0x9d,0x08,0xb1,0xcc,0x5b,0x56, + 0x24,0x0b,0x27,0xc5,0x2f,0x61,0x1c,0xb9, + 0xb4,0x6a,0x46,0x82,0x68,0xf2,0x8d,0xd0, + 0xd3,0x1d,0x15,0xb1,0x82,0x5a,0xf2,0x21, + 0xd3,0x3b,0x15,0x65,0x80,0xa2,0xfc,0x31, + 0xf7,0x5b,0xcc,0x27,0x57,0x2c,0x0d,0x17, + 0xd1,0x8f,0x1a,0xdd,0xa1,0x32,0x39,0x53, + 0x68,0x14,0x8f,0x84,0xde,0xe5,0x39,0xa1, + 0x6a,0x38,0x83,0x6c,0xf4,0x95,0xc4,0x83, + 0x64,0xf4,0xa5,0xc4,0x23,0x67,0x34,0xad, + 0x44,0x10,0x67,0x9e,0xae,0xb8,0x18,0x6f, + 0xae,0x9e,0x18,0xbb,0xac,0x66,0x16,0xab, + 0x88,0x06,0xcf,0xe9,0x5f,0x88,0x3e,0xcf, + 0x79,0x5c,0xe8,0x35,0x8f,0x42,0xdc,0x71, + 0x36,0xd9,0x49,0x28,0x49,0x0e,0x49,0xda, + 0x4b,0x22,0x45,0x32,0x61,0x52,0xb8,0x10, + 0x6f,0x9e,0x9e,0xb8,0xb8,0x6c,0x6e,0x96, + 0x98,0x88,0xac,0xcc,0x15,0x57,0x80,0x0e, + 0xff,0xd9,0xff,0x2b,0xfd,0x07,0xf1,0xef, + 0xdb,0x9f,0x26,0xbd,0x28,0x71,0x0e,0xd9, + 0xd9,0x2b,0x29,0x05,0x09,0xe1,0xcb,0xbb, + 0x46,0x64,0x6a,0xa6,0x80,0x28,0xff,0x0d, + 0xfd,0xd3,0xf3,0x17,0xd5,0x8f,0x02,0xdd, + 0xf1,0x33,0xd9,0x57,0x28,0x0d,0x0f,0xd1, + 0xdf,0x1b,0x3d,0xa5,0x72,0x20,0xd3,0x3d, + 0x15,0x71,0x80,0xda,0xfd,0x21,0xf1,0x3b, + 0xd9,0x67,0x28,0xad,0x0c,0x11,0xd7,0x9b, + 0x0e,0xa5,0xd8,0x23,0x2f,0x35,0x1d,0x41, + 0xb0,0x7a,0x5e,0xe2,0x39,0xb3,0x6a,0x54, + 0x82,0x04,0xf3,0xe5,0xd7,0xa3,0x0e,0x35, + 0xdb,0x43,0x24,0x75,0x26,0xc1,0x29,0x79, + 0x08,0xe9,0xcd,0x8b,0x52,0xc4,0x11,0x67, + 0x98,0xae,0xac,0x18,0x17,0xaf,0x8e,0x1e, + 0xdb,0xb9,0x26,0x69,0x2a,0x89,0x00,0xc9, + 0xfd,0x4b,0xf0,0x47,0xde,0x6f,0x3a,0x9d, + 0x60,0xb0,0xbc,0x5c,0x76,0x36,0xcb,0x49, + 0x44,0x48,0x66,0x4e,0xaa,0x58,0x02,0x2f, + 0xf3,0x1f,0xd5,0xbf,0x02,0x7d,0xf2,0xf3, + 0xd1,0xd7,0x1b,0x0d,0xa5,0xd2,0x23,0x13, + 0x35,0x95,0x42,0x80,0x70,0xfe,0xdd,0xf9, + 0x33,0xe9,0x57,0x88,0x0e,0xcf,0xd9,0x5f, + 0x28,0x3d,0x0f,0x71,0xdc,0xdb,0x35,0x25, + 0x41,0x20,0x79,0x3e,0xe9,0x79,0x88,0xea, + 0xcd,0x81,0x52,0xf8,0x11,0xef,0x9b,0x9e, + 0xa6,0xb8,0x28,0x6f,0x0e,0x9d,0xd8,0xb3, + 0x2c,0x55,0x16,0x01,0x8b,0xfa,0xc7,0xe1, + 0x6f,0xb8,0x9e,0x6c,0xba,0x94,0x60,0x86, + 0xbc,0xe8,0x75,0x8e,0xc2,0xd9,0x71,0x28, + 0xd9,0x0d,0x29,0xd1,0x0b,0x19,0xc5,0xab, + 0x62,0x04,0xb3,0xe4,0x57,0xa6,0x0e,0x2b, + 0xdb,0x07,0x25,0xed,0x23,0x91,0x36,0x99, + 0x48,0xa8,0x4c,0x0e,0x57,0xda,0x0f,0x23, + 0xdd,0x37,0x31,0x4d,0x58,0x50,0x2e,0x1f, + 0x1b,0xbd,0xa6,0x72,0x2a,0xd3,0x01,0x15, + 0xf9,0x83,0xea,0xf7,0x81,0xce,0xfb,0x59, + 0xe4,0x2b,0xa7,0x06,0x2d,0xeb,0x13,0x85, + 0x96,0xe2,0x89,0xb0,0xca,0x5d,0x42,0x30, + 0x73,0x5e,0xd4,0x39,0x07,0x69,0xec,0x8b, + 0x94,0xc6,0x85,0x68,0xe0,0x8d,0xbc,0xd2, + 0x75,0x12,0xc1,0x91,0x7a,0x98,0xe0,0xad, + 0xbc,0x12,0x77,0x92,0xce,0x91,0x58,0x98, + 0x2c,0xaf,0x14,0x1d,0x87,0xb2,0xee,0x51, + 0x9a,0x1a,0xa3,0xa0,0x36,0x3f,0x4b,0x7c, + 0x44,0xf6,0x65,0xca,0xa3,0x40,0x34,0x7f, + 0x46,0xfc,0x69,0xf6,0x8b,0xc8,0xc7,0x4d, + 0x6c,0x50,0x96,0x1c,0x8b,0xb4,0xc6,0x45, + 0x6a,0x60,0x82,0xbc,0xf0,0x75,0xde,0xc3, + 0x39,0x75,0x68,0xc0,0x8d,0x7c,0xd0,0xf5, + 0x1d,0xc1,0xb3,0x7a,0x54,0xe2,0x05,0xb3, + 0xe2,0x57,0xb2,0x0e,0x53,0xda,0x17,0x23, + 0x8d,0x36,0xd1,0x49,0x18,0x49,0xae,0x4a, + 0x1a,0x43,0xa2,0x76,0x32,0xcb,0x51,0x44, + 0x18,0x67,0xae,0xae,0x18,0x1b,0xaf,0xa6, + 0x1e,0x2b,0xbb,0x06,0x65,0xea,0xa3,0x80, + 0x36,0xff,0x49,0xfc,0x4b,0xf6,0x47,0xca, + 0x6f,0x42,0x9c,0x70,0xb6,0xdc,0x49,0x36, + 0x49,0x4a,0x48,0x42,0x4e,0x72,0x5a,0xd2, + 0x21,0x13,0x39,0x95,0x6a,0x80,0x80,0xfc, + 0xfd,0xf5,0xf3,0xc3,0xd7,0x77,0x0c,0xcd, + 0xd5,0x53,0x00,0x15,0xff,0x83,0xfe,0xf7, + 0xf9,0xcf,0xeb,0x5f,0x84,0x3e,0xe7,0x79, + 0xac,0xea,0x15,0x83,0x82,0xf6,0xf1,0xc9, + 0xdb,0x4b,0x24,0x45,0x26,0x61,0x2a,0xb9, + 0x00,0x69,0xfe,0x8b,0xf8,0xc7,0xed,0x6f, + 0x90,0x9e,0x9c,0xb8,0xb4,0x6c,0x46,0x96, + 0x68,0x8a,0x8c,0xc0,0xd5,0x7d,0x00,0xf1, + 0xfd,0xdb,0xf3,0x27,0xd5,0x2f,0x01,0x1d, + 0xf9,0xb3,0xea,0x57,0x82,0x0e,0xf3,0xd9, + 0xd7,0x2b,0x0d,0x05,0xd1,0xe3,0x1b,0xb5, + 0xa6,0x42,0x2a,0x73,0x02,0xd5,0xf1,0x03, + 0xd9,0xf7,0x2b,0xcd,0x07,0x51,0xec,0x1b, + 0x97,0xa6,0x8e,0x28,0xdb,0x0d,0x25,0xd1, + 0x23,0x19,0x35,0xa9,0x42,0x08,0x73,0xce, + 0xd7,0x59,0x0c,0x29,0xd7,0x0b,0x0d,0xc5, + 0xd3,0x63,0x14,0xb5,0x84,0x42,0xe6,0x71, + 0xaa,0xda,0x01,0x23,0xf9,0x37,0xe9,0x4f, + 0x88,0x5e,0xce,0x39,0x5b,0x68,0x24,0x8f, + 0x24,0xdd,0x25,0x31,0x21,0x59,0x38,0x29, + 0x6f,0x08,0x9d,0xcc,0xb3,0x54,0x54,0x06, + 0x07,0xeb,0xef,0x87,0x9e,0xee,0xb9,0x98, + 0x6a,0xae,0x80,0x18,0xff,0xad,0xfe,0x13, + 0xfb,0x97,0xe6,0x8f,0xa8,0xde,0x0d,0x3b, + 0xd1,0x67,0x18,0xad,0xac,0x12,0x17,0x93, + 0x8e,0x96,0xd8,0x89,0x2c,0xc9,0x15,0x49, + 0x80,0x4a,0xfe,0x41,0xfa,0x7b,0xe2,0xe7, + 0xb1,0xae,0x5a,0x1a,0x23,0xa3,0x36,0x35, + 0x4b,0x40,0x44,0x7e,0x66,0xfa,0xa9,0xe0, + 0x0b,0xbf,0xc6,0x7f,0x6a,0xfc,0x81,0xf4, + 0xfb,0xc5,0xe7,0x63,0xac,0xb6,0x14,0x4b, + 0x86,0x46,0xea,0x69,0x82,0x8a,0xf0,0xc1, + 0xdd,0x7b,0x30,0xe5,0x5d,0xa0,0x32,0x3f, + 0x53,0x7c,0x14,0xf7,0x85,0xce,0xe3,0x59, + 0xb4,0x2a,0x47,0x02,0x6d,0xf2,0x93,0xd0, + 0x97,0x1c,0x8d,0xb4,0xd2,0x45,0x12,0x61, + 0x92,0xba,0x90,0x60,0x9e,0xbc,0xb8,0x74, + 0x6e,0xc6,0x99,0x68,0xa8,0x8c,0x0c,0xd7, + 0xd5,0x0f,0x01,0xdd,0xfb,0x33,0xe5,0x57, + 0xa0,0x0e,0x3f,0xdb,0x7f,0x24,0xfd,0x25, + 0xf1,0x23,0xd9,0x37,0x29,0x4d,0x08,0x51, + 0xce,0x1b,0x5b,0xa4,0x26,0x27,0x2b,0x2d, + 0x05,0x11,0xe1,0x9b,0xba,0xa6,0x60,0x2a, + 0xbf,0x00,0x7d,0xfe,0xf3,0xf9,0xd7,0xeb, + 0x0f,0x85,0xde,0xe3,0x39,0xb5,0x6a,0x40, + 0x82,0x7c,0xf2,0xf5,0xd1,0xc3,0x1b,0x75, + 0xa4,0xc2,0x25,0x73,0x20,0xd5,0x3d,0x01, + 0x71,0xf8,0xdb,0xed,0x27,0x91,0x2e,0x99, + 0x18,0xa9,0xac,0x0a,0x17,0xc3,0x8f,0x76, + 0xdc,0xc9,0x35,0x49,0x40,0x48,0x7e,0x4e, + 0xfa,0x59,0xe2,0x2b,0xb3,0x06,0x55,0xe2, + 0x03,0x83,0xf6,0xf7,0xc9,0xcf,0x4b,0x5c, + 0x04,0x3e,0x67,0x4e,0xac,0x60,0x17,0x7f, + 0x80,0xfe,0xc1,0xf9,0x7b,0xe8,0xe7,0x87, + 0xae,0xc2,0x19,0x93,0xfc,0x96,0x08,0x8f, + 0xc0,0xe7,0xfc,0x2c,0xf0,0x1d,0xcc,0xc3, + 0x9e,0x70,0x00,0xc0,0x63,0x7f,0x54,0x78, + 0x40,0xfe,0x61,0x9b,0xf3,0x40,0x64,0x3f, + 0x0f,0xf8,0x2c,0xf3,0x3f,0x99,0x83,0x2a, + 0x79,0x07,0xcb,0xe1,0x9f,0xcc,0xce,0x60, + 0x6c,0x00,0x84,0x7c,0x0f,0xf5,0xe8,0xcf, + 0x15,0x66,0x80,0xb0,0xf8,0x5d,0xf4,0x33, + 0x8a,0x57,0x44,0x0c,0x67,0xd6,0xaf,0x08, + 0x1f,0xcf,0xb3,0x5e,0x54,0x3a,0x07,0x63, + 0xec,0xb7,0x94,0x4e,0x86,0x58,0xea,0x2d, + 0x83,0x12,0xf5,0x91,0xc2,0x9b,0x70,0xa4, + 0xdc,0x25,0x37,0x21,0x4d,0x38,0x51,0x6e, + 0x18,0x9b,0xac,0xa6,0x14,0x2b,0x87,0x06, + 0xed,0xe9,0x93,0x8a,0x96,0xc0,0x89,0x7c, + 0xc8,0xf5,0x4d,0xc0,0x53,0x7e,0x14,0xfb, + 0x85,0xe6,0xe3,0xa9,0xb6,0x0a,0x4b,0xc2, + 0x47,0x72,0x6c,0xd2,0x95,0x10,0x81,0x9c, + 0xfa,0xb5,0xe0,0x43,0xbe,0x76,0x7a,0xca, + 0xe1,0x41,0xb8,0x7a,0x6e,0xe2,0x99,0xb0, + 0xaa,0x5c,0x02,0x37,0xf3,0x4f,0xd4,0x5f, + 0x06,0x3d,0xeb,0x73,0x84,0xd6,0xe5,0x09, + 0xa1,0xca,0x3b,0x43,0x64,0x74,0xa6,0xc4, + 0x29,0x67,0x08,0xad,0xcc,0x13,0x57,0x94, + 0x0e,0x87,0xd8,0xef,0x2d,0x9d,0x12,0xb1, + 0x90,0x5a,0x9e,0x20,0xbb,0x3c,0x65,0x76, + 0xa0,0xc8,0x3d,0x4f,0x70,0x5c,0xde,0x35, + 0x3b,0x41,0x64,0x78,0xa6,0xec,0x29,0x97, + 0x0a,0x8d,0xc0,0xd3,0x7d,0x14,0xf1,0x85, + 0xda,0xe3,0x21,0xb5,0x3a,0x41,0x62,0x78, + 0xb2,0xec,0x51,0x96,0x1a,0x8b,0xa0,0xc6, + 0x3d,0x6b,0x70,0x84,0xdc,0xe5,0x35,0xa1, + 0x42,0x38,0x73,0x6e,0xd4,0x99,0x04,0xa9, + 0xe4,0x0b,0xa7,0xc6,0x2f,0x6b,0x1c,0x85, + 0xb4,0xe2,0x45,0xb2,0x62,0x52,0xb2,0x10, + 0x53,0x9e,0x16,0xbb,0x88,0x66,0xce,0xa9, + 0x58,0x08,0x2f,0xcf,0x1f,0x5d,0xbc,0x32, + 0x77,0x52,0xcc,0x11,0x57,0x98,0x0e,0xaf, + 0xd8,0x1f,0x2f,0xbd,0x1e,0x71,0xba,0xda, + 0x61,0x22,0xb9,0x30,0x69,0x5e,0x88,0x38, + 0xcf,0x6d,0x5c,0x90,0x34,0x9f,0x44,0xbc, + 0x64,0x76,0xa6,0xc8,0x29,0x4f,0x08,0x5d, + 0xce,0x33,0x5b,0x54,0x24,0x07,0x27,0xed, + 0x2f,0x91,0x1e,0x99,0xb8,0xaa,0x6c,0x02, + 0x97,0xf0,0x8f,0xdc,0xdf,0x35,0x3d,0x41, + 0x70,0x78,0xde,0xed,0x39,0x91,0x6a,0x98, + 0x80,0xac,0xfc,0x15,0xf7,0x83,0xce,0xf7, + 0x59,0xcc,0x2b,0x57,0x04,0x0d,0xe7,0xd3, + 0xaf,0x16,0x1d,0x8b,0xb2,0xc6,0x51,0x6a, + 0x18,0x83,0xac,0xf6,0x15,0xcb,0x83,0x46, + 0xf4,0x69,0xc6,0x8b,0x68,0xc4,0x8d,0x64, + 0xd0,0xa5,0x1c,0x21,0xb7,0x3a,0x4d,0x62, + 0x50,0xb2,0x1c,0x53,0xb6,0x16,0x4b,0x8a, + 0x46,0xc2,0x69,0x72,0x88,0xd0,0xcd,0x1d, + 0x51,0xb0,0x1a,0x5f,0xa2,0x3e,0x33,0x7b, + 0x54,0xe4,0x05,0xa7,0xe2,0x2f,0xb3,0x1e, + 0x55,0xba,0x02,0x63,0xf2,0xb7,0xd0,0x4f, + 0x1e,0x5d,0xba,0x32,0x63,0x52,0xb4,0x10, + 0x47,0x9e,0x6e,0xba,0x98,0x60,0xae,0xbc, + 0x18,0x77,0xae,0xce,0x19,0x5b,0xa8,0x26, + 0x0f,0x2b,0xdd,0x07,0x31,0xed,0x5b,0x90, + 0x26,0x9f,0x28,0xbd,0x0c,0x71,0xd6,0xdb, + 0x09,0x25,0xc9,0x23,0x49,0x34,0x49,0x46, + 0x48,0x6a,0x4e,0x82,0x58,0xf2,0x2d,0xd3, + 0x13,0x15,0x95,0x82,0x82,0xf0,0xf1,0xdd, + 0xdb,0x33,0x25,0x55,0x20,0x01,0x3f,0xf9, + 0x7f,0xe8,0xff,0x8d,0xfe,0xd3,0xf9,0x17, + 0xe9,0x8f,0x8a,0xde,0xc1,0x39,0x79,0x68, + 0xe8,0x8d,0x8c,0xd2,0xd5,0x11,0x01,0x99, + 0xfa,0xab,0xe0,0x07,0xbf,0xee,0x7f,0x9a, + 0xfe,0xa1,0xf8,0x3b,0xef,0x67,0x9c,0xae, + 0xb4,0x18,0x47,0xae,0x6e,0x1a,0x9b,0xa0, + 0xa6,0x3c,0x2b,0x77,0x04,0xcd,0xe5,0x53, + 0xa0,0x16,0x3f,0x8b,0x7e,0xc4,0xf9,0x65, + 0xe8,0xa3,0x8c,0x36,0xd7,0x49,0x0c,0x49, + 0xd6,0x4b,0x0a,0x45,0xc2,0x63,0x72,0xb4, + 0xd0,0x45,0x1e,0x61,0xba,0xba,0x60,0x62, + 0xbe,0xb0,0x78,0x5e,0xee,0x39,0x9b,0x6a, + 0xa4,0x80,0x24,0xff,0x25,0xfd,0x23,0xf1, + 0x37,0xd9,0x4f,0x28,0x5d,0x0e,0x31,0xdb, + 0x5b,0x24,0x25,0x27,0x21,0x2d,0x39,0x11, + 0x69,0x98,0x8a,0xac,0xc0,0x15,0x7f,0x80, + 0xfe,0xfd,0xf9,0xf3,0xeb,0xd7,0x87,0x0e, + 0xed,0xd9,0x93,0x2a,0x95,0x00,0x81,0xfc, + 0xfb,0xf5,0xe7,0xc3,0xaf,0x76,0x1c,0xcb, + 0xb5,0x46,0x40,0x6a,0x7e,0x82,0xf8,0xf1, + 0xed,0xdb,0x93,0x26,0x95,0x28,0x81,0x0c, + 0xf9,0xd5,0xeb,0x03,0x85,0xf6,0xe3,0xc9, + 0xb7,0x4a,0x4c,0x42,0x56,0x72,0x0a,0xd3, + 0xc1,0x17,0x79,0x8c,0xea,0xd5,0x81,0x02, + 0xf9,0xf1,0xeb,0xdb,0x87,0x26,0xed,0x29, + 0x91,0x0a,0x99,0xc0,0xab,0x7c,0x04,0xf7, + 0xe5,0xcf,0xa3,0x5e,0x34,0x3b,0x47,0x64, + 0x6c,0xa6,0x94,0x28,0x87,0x0c,0xed,0xd5, + 0x93,0x02,0x95,0xf0,0x83,0xdc,0xf7,0x35, + 0xcd,0x43,0x50,0x74,0x1e,0xc7,0xb9,0x6e, + 0x68,0x9a,0x8c,0xa0,0xd4,0x3d,0x07,0x71, + 0xec,0xdb,0x95,0x26,0x81,0x28,0xf9,0x0d, + 0xe9,0xd3,0x8b,0x16,0xc5,0x89,0x62,0xc8, + 0xb1,0x4c,0x58,0x56,0x2e,0x0b,0x1b,0xc5, + 0xa7,0x62,0x2c,0xb3,0x14,0x55,0x86,0x02, + 0xeb,0xf1,0x87,0xda,0xef,0x21,0x9d,0x3a, + 0xb1,0x60,0x58,0xbe,0x2c,0x7b,0x16,0xe5, + 0x89,0xa2,0xca,0x31,0x43,0x58,0x74,0x2e, + 0xc7,0x19,0x6d,0xa8,0x92,0x0c,0x93,0xd4, + 0x97,0x04,0x8d,0xe4,0xd3,0xa5,0x16,0x21, + 0x8b,0x3a,0xc5,0x61,0x60,0xb8,0xbc,0x6c, + 0x76,0x96,0xc8,0x89,0x4c,0xc8,0x55,0x4e, + 0x00,0x5b,0xfe,0x27,0xfb,0x2f,0xe5,0x1f, + 0xa1,0xbe,0x3a,0x7b,0x62,0xe4,0xb1,0xa4, + 0x5a,0x26,0x23,0x2b,0x35,0x05,0x41,0xe0, + 0x7b,0xbe,0xe6,0x79,0xaa,0xea,0x01,0x83, + 0xfa,0xf7,0xe1,0xcf,0xbb,0x5e,0x64,0x3a, + 0xa7,0x60,0x2c,0xbf,0x14,0x7d,0x86,0xf2, + 0xe9,0xd1,0x8b,0x1a,0xc5,0xa1,0x62,0x38, + 0xb3,0x6c,0x54,0x96,0x04,0x8b,0xe4,0xc7, + 0xa5,0x6e,0x20,0x9b,0x3c,0xa5,0x74,0x20, + 0xc7,0x3d,0x6d,0x70,0x90,0xdc,0x9d,0x34, + 0xb1,0x44,0x58,0x66,0x2e,0xab,0x18,0x05, + 0xaf,0xe2,0x1f,0xb3,0xbe,0x56,0x7a,0x0a, + 0xe3,0xc1,0xb7,0x7a,0x4c,0xe2,0x55,0xb2, + 0x02,0x53,0xf2,0x17,0xd3,0x8f,0x16,0xdd, + 0x89,0x32,0xc9,0x51,0x48,0x18,0x4f,0xae, + 0x5e,0x1a,0x3b,0xa3,0x66,0x34,0xab,0x44, + 0x04,0x67,0xe6,0xaf,0xa8,0x1e,0x0f,0xbb, + 0xde,0x67,0x3a,0xad,0x60,0x10,0xbf,0x9c, + 0x7e,0xb6,0xf8,0x49,0xee,0x4b,0x9a,0x46, + 0xa2,0x68,0x32,0x8f,0x50,0xdc,0x1d,0x37, + 0xb1,0x4e,0x58,0x5a,0x2e,0x23,0x1b,0x35, + 0xa5,0x42,0x20,0x73,0x3e,0xd5,0x79,0x00, + 0xe9,0xfd,0x8b,0xf2,0xc7,0xd1,0x6f,0x18, + 0x9d,0xac,0xb2,0x14,0x53,0x86,0x16,0xeb, + 0x89,0x86,0xca,0xe9,0x41,0x88,0x7a,0xce, + 0xe1,0x59,0xb8,0x2a,0x6f,0x02,0x9d,0xf0, + 0xb3,0xdc,0x57,0x36,0x0d,0x4b,0xd0,0x47, + 0x1e,0x6d,0xba,0x92,0x60,0x92,0xbc,0x90, + 0x74,0x9e,0xc4,0xb9,0x64,0x68,0xa6,0x8c, + 0x28,0xd7,0x0d,0x0d,0xd1,0xd3,0x1b,0x15, + 0xa5,0x82,0x22,0xf3,0x31,0xd5,0x5b,0x00, + 0x25,0xff,0x23,0xfd,0x37,0xf1,0x4f,0xd8, + 0x5f,0x2e,0x3d,0x1b,0x71,0xa4,0xda,0x25, + 0x23,0x21,0x35,0x39,0x41,0x68,0x78,0x8e, + 0xec,0xd9,0x95,0x2a,0x81,0x00,0xf9,0xfd, + 0xeb,0xf3,0x87,0xd6,0xef,0x09,0x9d,0xca, + 0xb3,0x40,0x54,0x7e,0x06,0xfb,0xe9,0xe7, + 0x8b,0xae,0xc6,0x19,0x6b,0xa8,0x86,0x0c, + 0xeb,0xd5,0x87,0x02,0xed,0xf1,0x93,0xda, + 0x97,0x20,0x8d,0x3c,0xd1,0x75,0x18,0xc1, + 0xad,0x7a,0x10,0xe3,0x9d,0xb6,0xb2,0x48, + 0x52,0x4e,0x12,0x5b,0x92,0x26,0x93,0x28, + 0x95,0x0c,0x81,0xd4,0xfb,0x05,0xe5,0xe3, + 0xa3,0xb6,0x36,0x4b,0x4a,0x44,0x42,0x66, + 0x72,0xaa,0xd0,0x01,0x1f,0xf9,0xbf,0xea, + 0x7f,0x82,0xfe,0xf1,0xf9,0xdb,0xeb,0x27, + 0x85,0x2e,0xe1,0x19,0xb9,0xaa,0x6a,0x02, + 0x83,0xf0,0xf7,0xdd,0xcf,0x33,0x5d,0x54, + 0x30,0x07,0x5f,0xec,0x3f,0x97,0x7e,0x8c, + 0xf8,0xd5,0xed,0x03,0x91,0xf6,0x9b,0xc8, + 0xa7,0x4c,0x2c,0x57,0x16,0x0d,0x8b,0xd2, + 0xc7,0x11,0x6d,0x98,0x92,0xac,0x90,0x14, + 0x9f,0x84,0xbe,0xe4,0x79,0xa6,0xea,0x29, + 0x83,0x0a,0xf5,0xc1,0xc3,0x7b,0x74,0xe4, + 0xc5,0xa5,0x62,0x20,0xb3,0x3c,0x55,0x76, + 0x00,0xcb,0xfd,0x47,0xf0,0x6f,0xde,0x9f, + 0x38,0xbd,0x6c,0x70,0x96,0xdc,0x89,0x34, + 0xc9,0x45,0x48,0x60,0x4e,0xbe,0x58,0x7a, + 0x2e,0xe3,0x19,0xb5,0xaa,0x42,0x02,0x73, + 0xf2,0xd7,0xd1,0x0f,0x19,0xdd,0xab,0x32, + 0x05,0x53,0xe0,0x17,0xbf,0x8e,0x7e,0xda, + 0xf9,0x21,0xe9,0x3b,0x89,0x66,0xc8,0xa9, + 0x4c,0x08,0x57,0xce,0x0f,0x5b,0xdc,0x27, + 0x37,0x2d,0x4d,0x10,0x51,0x9e,0x1a,0xbb, + 0xa0,0x66,0x3e,0xab,0x78,0x04,0xef,0xe5, + 0x9f,0xa2,0xbe,0x30,0x7b,0x5e,0xe4,0x39, + 0xa7,0x6a,0x2c,0x83,0x14,0xf5,0x85,0xc2, + 0xe3,0x71,0xb4,0xda,0x45,0x22,0x61,0x32, + 0xb9,0x50,0x68,0x1e,0x8f,0xb8,0xde,0x6d, + 0x3a,0x91,0x60,0x98,0xbc,0xac,0x74,0x16, + 0xc7,0x89,0x6e,0xc8,0x99,0x4c,0xa8,0x54, + 0x0e,0x07,0xdb,0xef,0x27,0x9d,0x2e,0xb1, + 0x18,0x59,0xae,0x2a,0x1b,0x03,0xa5,0xf6, + 0x23,0xcb,0x37,0x45,0x4c,0x60,0x56,0xbe, + 0x08,0x7b,0xce,0xe7,0x59,0xac,0x2a,0x17, + 0x03,0x8d,0xf6,0xd3,0xc9,0x17,0x49,0x8c, + 0x4a,0xd6,0x41,0x0a,0x79,0xc2,0xeb,0x71, + 0x84,0xda,0xe5,0x21,0xa1,0x3a,0x39,0x63, + 0x68,0xb4,0x8c,0x44,0xd6,0x65,0x0a,0xa1, + 0xc0,0x3b,0x7f,0x64,0xfc,0xa5,0xf4,0x23, + 0xc7,0x37,0x6d,0x4c,0x90,0x54,0x9e,0x04, + 0xbb,0xe4,0x67,0xa6,0xae,0x28,0x1b,0x0f, + 0xa5,0xde,0x23,0x3b,0x35,0x65,0x40,0xa0, + 0x7c,0x3e,0xf7,0x79,0xcc,0xeb,0x55,0x84, + 0x02,0xe7,0xf1,0xaf,0xda,0x1f,0x23,0xbd, + 0x36,0x71,0x4a,0xd8,0x41,0x2e,0x79,0x1a, + 0xe9,0xa1,0x8a,0x3a,0xc3,0x61,0x74,0xb8, + 0xc4,0x6d,0x66,0x90,0xa8,0x9c,0x0c,0xb7, + 0xd4,0x4f,0x06,0x5d,0xea,0x33,0x83,0x56, + 0xf4,0x09,0xc7,0xcb,0x6f,0x44,0x9c,0x64, + 0xb6,0xa4,0x48,0x26,0x4f,0x2a,0x5d,0x02, + 0x31,0xf3,0x5b,0xd4,0x27,0x07,0x2d,0xed, + 0x13,0x91,0x96,0x9a,0x88,0xa0,0xcc,0x3d, + 0x57,0x70,0x0c,0xdf,0xd5,0x3f,0x01,0x7d, + 0xf8,0xf3,0xed,0xd7,0x93,0x0e,0x95,0xd8, + 0x83,0x2c,0xf5,0x15,0xc1,0x83,0x7a,0xf4, + 0xe1,0xc5,0xbb,0x62,0x64,0xb2,0xa4,0x50, + 0x26,0x1f,0x2b,0xbd,0x06,0x71,0xea,0xdb, + 0x81,0x26,0xf9,0x29,0xe9,0x0b,0x89,0xc6, + 0xcb,0x69,0x44,0x88,0x64,0xce,0xa5,0x58, + 0x20,0x2f,0x3f,0x1d,0x7d,0xb0,0xf2,0x5d, + 0xd2,0x33,0x13,0x55,0x94,0x02,0x87,0xf0, + 0xef,0xdd,0x9f,0x32,0xbd,0x50,0x70,0x1e, + 0xdf,0xb9,0x3e,0x69,0x7a,0x88,0xe0,0xcd, + 0xbd,0x52,0x70,0x12,0xdf,0x91,0x3e,0x99, + 0x78,0xa8,0xec,0x0d,0x97,0xd2,0x8f,0x10, + 0xdd,0x9d,0x32,0xb1,0x50,0x58,0x1e,0x2f, + 0xbb,0x1e,0x65,0xba,0xa2,0x60,0x32,0xbf, + 0x50,0x7c,0x1e,0xf7,0xb9,0xce,0x6b,0x5a, + 0x84,0x20,0xe7,0x3d,0xad,0x72,0x10,0xd3, + 0x9d,0x16,0xb1,0x88,0x5a,0xce,0x21,0x5b, + 0x38,0x25,0x6f,0x20,0x9d,0x3c,0xb1,0x74, + 0x58,0xc6,0x2d,0x6b,0x10,0x85,0x9c,0xe2, + 0xb5,0xb0,0x42,0x5e,0x72,0x3a,0xd3,0x61, + 0x14,0xb9,0x84,0x6a,0xe6,0x81,0xa8,0xfa, + 0x0d,0xe3,0xd3,0xb7,0x16,0x4d,0x8a,0x52, + 0xc2,0x11,0x73,0x98,0xd6,0xad,0x08,0x11, + 0xcf,0x9b,0x5e,0xa4,0x38,0x27,0x6f,0x2c, + 0x9d,0x14,0xb1,0x84,0x5a,0xe6,0x21,0xab, + 0x3a,0x05,0x63,0xe0,0xb7,0xbc,0x4e,0x76, + 0x5a,0xca,0x21,0x43,0x38,0x75,0x6e,0xc0, + 0x99,0x7c,0xa8,0xf4,0x0d,0xc7,0xd3,0x6f, + 0x14,0x9d,0x84,0xb2,0xe4,0x51,0xa6,0x1a, + 0x2b,0xa3,0x06,0x35,0xeb,0x43,0x84,0x76, + 0xe6,0xc9,0xa9,0x4a,0x08,0x43,0xce,0x77, + 0x5a,0xcc,0x21,0x57,0x38,0x0d,0x6f,0xd0, + 0x9f,0x1c,0xbd,0xb4,0x72,0x46,0xd2,0x69, + 0x12,0x89,0x90,0xca,0x9d,0x40,0xb0,0x7c, + 0x5e,0xf6,0x39,0xcb,0x6b,0x44,0x84,0x64, + 0xe6,0xa5,0xa8,0x22,0x0f,0x33,0xdd,0x57, + 0x30,0x0d,0x5f,0xd0,0x3f,0x1f,0x7d,0xbc, + 0xf2,0x75,0xd2,0xc3,0x11,0x75,0x98,0xc2, + 0xad,0x70,0x10,0xdf,0x9d,0x3e,0xb1,0x78, + 0x58,0xee,0x2d,0x9b,0x12,0xa5,0x90,0x22, + 0x9f,0x30,0xbd,0x5c,0x70,0x36,0xdf,0x49, + 0x3c,0x49,0x76,0x48,0xca,0x4d,0x42,0x50, + 0x72,0x1e,0xd3,0xb9,0x16,0x69,0x8a,0x8a, + 0xc0,0xc1,0x7d,0x78,0xf0,0xed,0xdd,0x93, + 0x32,0x95,0x50,0x80,0x1c,0xff,0xb5,0xfe, + 0x43,0xfa,0x77,0xe2,0xcf,0xb1,0x5e,0x58, + 0x3a,0x2f,0x63,0x1c,0xb5,0xb4,0x42,0x46, + 0x72,0x6a,0xd2,0x81,0x10,0xf9,0x9d,0xea, + 0xb3,0x80,0x56,0xfe,0x09,0xfb,0xcb,0xe7, + 0x47,0xac,0x6e,0x16,0x9b,0x88,0xa6,0xcc, + 0x29,0x57,0x08,0x0d,0xcf,0xd3,0x5f,0x14, + 0x3d,0x87,0x72,0xec,0xd1,0x95,0x1a,0x81, + 0xa0,0xfa,0x3d,0xe3,0x73,0xb4,0xd6,0x45, + 0x0a,0x61,0xc2,0xbb,0x70,0x64,0xde,0xa5, + 0x38,0x21,0x6f,0x38,0x9d,0x6c,0xb0,0x94, + 0x5c,0x86,0x3e,0xeb,0x45,0x84,0x62,0xe6, + 0xb1,0xa8,0x5a,0x0e,0x23,0xfb,0x33,0x25, + 0x47,0x20,0x51,0x3e,0x19,0x7f,0xa8,0x66, + 0x0c,0xfb,0xd0,0x07,0x13,0xe5,0x9f,0x83, + 0xce,0x98,0x58,0xcd,0x2e,0x19,0x14,0x39, + 0x86,0x3f,0xff,0x01,0x85,0xff,0xe1,0xe1, + 0xb3,0xfc,0x46,0x63,0x0f,0xf8,0x00,0x53, + 0xbe,0x1f,0xfb,0xc0,0xe6,0x7e,0xbc,0xf0, + 0x01,0xe3,0xc3,0x9f,0xa6,0xcc,0x48,0x7e, + 0x40,0x82,0x9d,0xf2,0xff,0xd6,0x07,0x13, + 0xf5,0x87,0x80,0x0f,0x71,0x9c,0xfd,0x35, + 0x61,0x43,0xf8,0x78,0x7e,0xcf,0x19,0x99, + 0xa8,0x32,0x00,0x53,0xfc,0x17,0xfb,0x8f, + 0xc6,0xdf,0xa9,0x3e,0x09,0x7b,0xc8,0xe7, + 0x4d,0xac,0x52,0x16,0x13,0x8b,0x96,0xc6, + 0x89,0x68,0xc8,0x8d,0x4c,0xd0,0x55,0x1e, + 0x01,0xbb,0xfa,0x67,0xe2,0xaf,0xb0,0x1e, + 0x5f,0xba,0x3e,0x63,0x7a,0xb4,0xe0,0x45, + 0xbe,0x62,0x7a,0xb2,0xe0,0x51,0xbe,0x1a, + 0x7b,0xa2,0xe6,0x31,0xab,0x5a,0x04,0x23, + 0xe7,0x37,0xad,0x4e,0x10,0x5b,0x9e,0x26, + 0xbb,0x28,0x65,0x0e,0xa1,0xd8,0x3b,0x2f, + 0x65,0x1c,0xa1,0xb4,0x3a,0x47,0x62,0x6c, + 0xb2,0x94,0x50,0x86,0x1c,0xeb,0xb5,0x86, + 0x42,0xea,0x71,0x82,0xda,0xf1,0x21,0xd9, + 0x3b,0x29,0x65,0x08,0xa1,0xcc,0x3b,0x57, + 0x64,0x0c,0xa7,0xd4,0x2f,0x07,0x1d,0xed, + 0xb3,0x92,0x56,0x92,0x08,0x93,0xcc,0x97, + 0x54,0x8c,0x04,0xd7,0xe5,0x0f,0xa1,0xde, + 0x3b,0x3b,0x65,0x64,0xa0,0xa4,0x3c,0x27, + 0x77,0x2c,0xcd,0x15,0x51,0x80,0x1a,0xff, + 0xa1,0xfe,0x3b,0xfb,0x67,0xe4,0xaf,0xa4, + 0x1e,0x27,0xbb,0x2e,0x65,0x1a,0xa1,0xa0, + 0x3a,0x3f,0x63,0x7c,0xb4,0xf4,0x45,0xc6, + 0x63,0x6a,0xb4,0x80,0x44,0xfe,0x65,0xfa, + 0xa3,0xe0,0x37,0xbf,0x4e,0x7c,0x5a,0xf6, + 0x21,0xcb,0x3b,0x45,0x64,0x60,0xa6,0xbc, + 0x28,0x77,0x0e,0xcd,0xd9,0x53,0x28,0x15, + 0x0f,0x81,0xde,0xfb,0x39,0xe5,0x6b,0xa0, + 0x86,0x3c,0xeb,0x75,0x84,0xc2,0xe5,0x71, + 0xa0,0xda,0x3d,0x23,0x71,0x34,0xd9,0x45, + 0x28,0x61,0x0e,0xb9,0xd8,0x6b,0x2e,0x85, + 0x18,0xe1,0xad,0xba,0x12,0x63,0x92,0xb6, + 0x90,0x48,0x9e,0x4c,0xba,0x54,0x62,0x06, + 0xb3,0xe8,0x57,0x8e,0x0e,0xdb,0xd9,0x27, + 0x29,0x2d,0x09,0x11,0xc9,0x9b,0x4a,0xa4, + 0x40,0x26,0x7f,0x2a,0xfd,0x01,0xf1,0xfb, + 0xdb,0xe7,0x27,0xad,0x2e,0x11,0x1b,0x99, + 0xa6,0xaa,0x28,0x03,0x0f,0xf5,0xdf,0xc3, + 0x3f,0x75,0x7c,0xc0,0xf5,0x7d,0xc0,0xf3, + 0x7d,0xd4,0xf3,0x05,0xd5,0xe3,0x03,0xb5, + 0xf6,0x43,0xca,0x77,0x42,0xcc,0x71,0x56, + 0xd8,0x09,0x2f,0xc9,0x1f,0x49,0xbc,0x4a, + 0x76,0x42,0xca,0x71,0x42,0xd8,0x71,0x2e, + 0xd9,0x19,0x29,0xa9,0x0a,0x09,0xc3,0xcb, + 0x77,0x44,0xcc,0x65,0x56,0xa0,0x08,0x3f, + 0xcf,0x7f,0x5c,0xfc,0x35,0xf7,0x43,0xcc, + 0x77,0x56,0xcc,0x09,0x57,0xc8,0x0f,0x4f, + 0xdc,0x5f,0x36,0x3d,0x4b,0x70,0x44,0xde, + 0x65,0x3a,0xa1,0x60,0x38,0xbf,0x6c,0x7c, + 0x96,0xf4,0x89,0xc4,0xcb,0x65,0x44,0xa0, + 0x64,0x3e,0xa7,0x78,0x2c,0xef,0x15,0x9d, + 0x82,0xb2,0xf0,0x51,0xde,0x1b,0x3b,0xa5, + 0x66,0x20,0xab,0x3c,0x05,0x77,0xe0,0xcf, + 0xbd,0x5e,0x70,0x3a,0xdf,0x61,0x3c,0xb9, + 0x74,0x68,0xc6,0x8d,0x68,0xd0,0x8d,0x1c, + 0xd1,0xb5,0x1a,0x41,0xa2,0x7a,0x32,0xe3, + 0x51,0xb4,0x1a,0x47,0xa2,0x6e,0x32,0x9b, + 0x50,0xa4,0x1c,0x27,0xb7,0x2e,0x4d,0x1a, + 0x51,0xa2,0x1a,0x33,0xa3,0x56,0x34,0x0b, + 0x47,0xc4,0x6f,0x66,0x9c,0xa8,0xb4,0x0c, + 0x47,0xd6,0x6f,0x0a,0x9d,0xc0,0xb3,0x7c, + 0x54,0xf6,0x05,0xcb,0xe3,0x47,0xb4,0x6e, + 0x46,0x9a,0x68,0xa2,0x8c,0x30,0xd7,0x5d, + 0x0c,0x31,0xd7,0x5b,0x0c,0x25,0xd7,0x23, + 0x0d,0x35,0xd1,0x43,0x18,0x75,0xae,0xc2, + 0x19,0x73,0xa8,0xd6,0x0d,0x0b,0xd1,0xc7, + 0x1b,0x6d,0xa4,0x92,0x24,0x93,0x24,0x95, + 0x24,0x81,0x24,0xf9,0x25,0xe9,0x23,0x89, + 0x36,0xc9,0x49,0x48,0x48,0x4e,0x4e,0x5a, + 0x5a,0x22,0x23,0x33,0x35,0x55,0x40,0x00, }; diff --git a/sound.c b/sound.c index c441ff1..3650021 100644 --- a/sound.c +++ b/sound.c @@ -134,14 +134,14 @@ void sound_off() R_NR30 = 0x7F; R_NR31 = 0xFF; R_NR32 = 0x9F; - R_NR34 = 0xBF; + R_NR33 = 0xBF; R_NR41 = 0xFF; R_NR42 = 0x00; R_NR43 = 0x00; R_NR44 = 0xBF; R_NR50 = 0x77; R_NR51 = 0xF3; - R_NR52 = 0x70; + R_NR52 = 0xF1; sound_dirty(); } @@ -153,7 +153,6 @@ void sound_reset() memcpy(WAVE, hw.cgb ? cgbwave : dmgwave, 16); memcpy(ram.hi+0x30, WAVE, 16); sound_off(); - R_NR52 = 0xF1; }