From 23f7ed65c6d3890ce24403f559abba7acf5c786f Mon Sep 17 00:00:00 2001 From: Frank Date: Sun, 10 Dec 2023 19:54:25 +0100 Subject: [PATCH] POC: shortening JS calls to reduct stack buffer usage - adI = addInfo - adD = addDropdown - adO = addOption - adF = addField --- usermods/audioreactive/audio_reactive.h | 190 +++++------ wled00/data/settings_um.htm | 13 + wled00/html_settings.h | 407 ++++++++++++------------ 3 files changed, 316 insertions(+), 294 deletions(-) diff --git a/usermods/audioreactive/audio_reactive.h b/usermods/audioreactive/audio_reactive.h index e4bf2a76c2..186d806f0e 100644 --- a/usermods/audioreactive/audio_reactive.h +++ b/usermods/audioreactive/audio_reactive.h @@ -2626,7 +2626,13 @@ class AudioReactive : public Usermod { void appendConfigData() { - oappend(SET_F("addInfo('AudioReactive:help',0,'');")); + /* WLEDMM: to safe some stack buffer space, the following functions were abbreviated: + * - adI = addInfo + * - adD = addDropdown + * - adO = addOption + * - adF = addField + */ + oappend(SET_F("adI('AudioReactive:help',0,'');")); #ifdef ARDUINO_ARCH_ESP32 //WLEDMM: add defaults #if !defined(CONFIG_IDF_TARGET_ESP32S2) && !defined(CONFIG_IDF_TARGET_ESP32C3) && !defined(CONFIG_IDF_TARGET_ESP32S3) // -S3/-S2/-C3 don't support analog audio @@ -2636,189 +2642,189 @@ class AudioReactive : public Usermod { oappend(SET_F("aOpt('AudioReactive:analogmic:pin',1);")); //only analog options #endif - oappend(SET_F("dd=addDropdown('AudioReactive','digitalmic:type');")); + oappend(SET_F("dd=adD('AudioReactive','digitalmic:type');")); #if !defined(CONFIG_IDF_TARGET_ESP32S2) && !defined(CONFIG_IDF_TARGET_ESP32C3) && !defined(CONFIG_IDF_TARGET_ESP32S3) #if SR_DMTYPE==0 - oappend(SET_F("addOption(dd,'Generic Analog (⎌)',0);")); + oappend(SET_F("adO(dd,'Generic Analog (⎌)',0);")); #else - oappend(SET_F("addOption(dd,'Generic Analog',0);")); + oappend(SET_F("adO(dd,'Generic Analog',0);")); #endif #endif #if SR_DMTYPE==1 - oappend(SET_F("addOption(dd,'Generic I2S (⎌)',1);")); + oappend(SET_F("adO(dd,'Generic I2S (⎌)',1);")); #else - oappend(SET_F("addOption(dd,'Generic I2S',1);")); + oappend(SET_F("adO(dd,'Generic I2S',1);")); #endif #if SR_DMTYPE==2 - oappend(SET_F("addOption(dd,'ES7243 (⎌)',2);")); + oappend(SET_F("adO(dd,'ES7243 (⎌)',2);")); #else - oappend(SET_F("addOption(dd,'ES7243',2);")); + oappend(SET_F("adO(dd,'ES7243',2);")); #endif #if SR_DMTYPE==3 - oappend(SET_F("addOption(dd,'SPH0654 (⎌)',3);")); + oappend(SET_F("adO(dd,'SPH0654 (⎌)',3);")); #else - oappend(SET_F("addOption(dd,'SPH0654',3);")); + oappend(SET_F("adO(dd,'SPH0654',3);")); #endif #if SR_DMTYPE==4 - oappend(SET_F("addOption(dd,'Generic I2S with Mclk (⎌)',4);")); + oappend(SET_F("adO(dd,'Generic I2S with Mclk (⎌)',4);")); #else - oappend(SET_F("addOption(dd,'Generic I2S with Mclk',4);")); + oappend(SET_F("adO(dd,'Generic I2S with Mclk',4);")); #endif #if !defined(CONFIG_IDF_TARGET_ESP32S2) && !defined(CONFIG_IDF_TARGET_ESP32C3) #if SR_DMTYPE==5 - oappend(SET_F("addOption(dd,'Generic I2S PDM (⎌)',5);")); + oappend(SET_F("adO(dd,'Generic I2S PDM (⎌)',5);")); #else - oappend(SET_F("addOption(dd,'Generic I2S PDM',5);")); + oappend(SET_F("adO(dd,'Generic I2S PDM',5);")); #endif #if SR_DMTYPE==51 - oappend(SET_F("addOption(dd,'.Legacy I2S PDM ☾ (⎌)',51);")); + oappend(SET_F("adO(dd,'.Legacy I2S PDM ☾ (⎌)',51);")); #else - oappend(SET_F("addOption(dd,'.Legacy I2S PDM ☾',51);")); + oappend(SET_F("adO(dd,'.Legacy I2S PDM ☾',51);")); #endif #endif #if SR_DMTYPE==6 - oappend(SET_F("addOption(dd,'ES8388 ☾ (⎌)',6);")); + oappend(SET_F("adO(dd,'ES8388 ☾ (⎌)',6);")); #else - oappend(SET_F("addOption(dd,'ES8388 ☾',6);")); + oappend(SET_F("adO(dd,'ES8388 ☾',6);")); #endif #if SR_DMTYPE==7 - oappend(SET_F("addOption(dd,'WM8978 ☾ (⎌)',7);")); + oappend(SET_F("adO(dd,'WM8978 ☾ (⎌)',7);")); #else - oappend(SET_F("addOption(dd,'WM8978 ☾',7);")); + oappend(SET_F("adO(dd,'WM8978 ☾',7);")); #endif #ifdef SR_SQUELCH - oappend(SET_F("addInfo('AudioReactive:config:squelch',1,'⎌ ")); oappendi(SR_SQUELCH); oappend("');"); // 0 is field type, 1 is actual field + oappend(SET_F("adI('AudioReactive:config:squelch',1,'⎌ ")); oappendi(SR_SQUELCH); oappend("');"); // 0 is field type, 1 is actual field #endif #ifdef SR_GAIN - oappend(SET_F("addInfo('AudioReactive:config:gain',1,'⎌ ")); oappendi(SR_GAIN); oappend("');"); // 0 is field type, 1 is actual field + oappend(SET_F("adI('AudioReactive:config:gain',1,'⎌ ")); oappendi(SR_GAIN); oappend("');"); // 0 is field type, 1 is actual field #endif - oappend(SET_F("dd=addDropdown('AudioReactive','config:AGC');")); - oappend(SET_F("addOption(dd,'Off',0);")); - oappend(SET_F("addOption(dd,'Normal',1);")); - oappend(SET_F("addOption(dd,'Vivid',2);")); - oappend(SET_F("addOption(dd,'Lazy',3);")); + oappend(SET_F("dd=adD('AudioReactive','config:AGC');")); + oappend(SET_F("adO(dd,'Off',0);")); + oappend(SET_F("adO(dd,'Normal',1);")); + oappend(SET_F("adO(dd,'Vivid',2);")); + oappend(SET_F("adO(dd,'Lazy',3);")); //WLEDMM: experimental settings - oappend(SET_F("dd=addDropdown('AudioReactive','experiments:micLev');")); - oappend(SET_F("addOption(dd,'Floating (⎌)',0);")); - oappend(SET_F("addOption(dd,'Freeze',1);")); - oappend(SET_F("addOption(dd,'Fast Freeze',2);")); - oappend(SET_F("addInfo('AudioReactive:experiments:micLev',1,'☾');")); - - oappend(SET_F("dd=addDropdown('AudioReactive','experiments:freqDist');")); - oappend(SET_F("addOption(dd,'Normal (⎌)',0);")); - oappend(SET_F("addOption(dd,'RightShift',1);")); - oappend(SET_F("addInfo('AudioReactive:experiments:freqDist',1,'☾');")); - - oappend(SET_F("dd=addDropdown('AudioReactive','experiments:freqRMS');")); - oappend(SET_F("addOption(dd,'Off (⎌)',0);")); - oappend(SET_F("addOption(dd,'On',1);")); - oappend(SET_F("addInfo('AudioReactive:experiments:freqRMS',1,'☾');")); - - oappend(SET_F("dd=addDropdown('AudioReactive','dynamics:limiter');")); - oappend(SET_F("addOption(dd,'Off',0);")); - oappend(SET_F("addOption(dd,'On',1);")); - oappend(SET_F("addInfo('AudioReactive:dynamics:limiter',0,' On ');")); // 0 is field type, 1 is actual field - oappend(SET_F("addInfo('AudioReactive:dynamics:rise',1,'ms (♪ effects only)');")); - oappend(SET_F("addInfo('AudioReactive:dynamics:fall',1,'ms (♪ effects only)');")); - - oappend(SET_F("dd=addDropdown('AudioReactive','frequency:scale');")); - oappend(SET_F("addOption(dd,'None',0);")); - oappend(SET_F("addOption(dd,'Linear (Amplitude)',2);")); - oappend(SET_F("addOption(dd,'Square Root (Energy)',3);")); - oappend(SET_F("addOption(dd,'Logarithmic (Loudness)',1);")); + oappend(SET_F("dd=adD('AudioReactive','experiments:micLev');")); + oappend(SET_F("adO(dd,'Floating (⎌)',0);")); + oappend(SET_F("adO(dd,'Freeze',1);")); + oappend(SET_F("adO(dd,'Fast Freeze',2);")); + oappend(SET_F("adI('AudioReactive:experiments:micLev',1,'☾');")); + + oappend(SET_F("dd=adD('AudioReactive','experiments:freqDist');")); + oappend(SET_F("adO(dd,'Normal (⎌)',0);")); + oappend(SET_F("adO(dd,'RightShift',1);")); + oappend(SET_F("adI('AudioReactive:experiments:freqDist',1,'☾');")); + + oappend(SET_F("dd=adD('AudioReactive','experiments:freqRMS');")); + oappend(SET_F("adO(dd,'Off (⎌)',0);")); + oappend(SET_F("adO(dd,'On',1);")); + oappend(SET_F("adI('AudioReactive:experiments:freqRMS',1,'☾');")); + + oappend(SET_F("dd=adD('AudioReactive','dynamics:limiter');")); + oappend(SET_F("adO(dd,'Off',0);")); + oappend(SET_F("adO(dd,'On',1);")); + oappend(SET_F("adI('AudioReactive:dynamics:limiter',0,' On ');")); // 0 is field type, 1 is actual field + oappend(SET_F("adI('AudioReactive:dynamics:rise',1,'ms (♪ effects only)');")); + oappend(SET_F("adI('AudioReactive:dynamics:fall',1,'ms (♪ effects only)');")); + + oappend(SET_F("dd=adD('AudioReactive','frequency:scale');")); + oappend(SET_F("adO(dd,'None',0);")); + oappend(SET_F("adO(dd,'Linear (Amplitude)',2);")); + oappend(SET_F("adO(dd,'Square Root (Energy)',3);")); + oappend(SET_F("adO(dd,'Logarithmic (Loudness)',1);")); //WLEDMM add defaults - oappend(SET_F("dd=addDropdown('AudioReactive','frequency:profile');")); + oappend(SET_F("dd=adD('AudioReactive','frequency:profile');")); #if SR_FREQ_PROF==0 - oappend(SET_F("addOption(dd,'Generic Microphone (⎌)',0);")); + oappend(SET_F("adO(dd,'Generic Microphone (⎌)',0);")); #else - oappend(SET_F("addOption(dd,'Generic Microphone',0);")); + oappend(SET_F("adO(dd,'Generic Microphone',0);")); #endif #if SR_FREQ_PROF==1 - oappend(SET_F("addOption(dd,'Generic Line-In (⎌)',1);")); + oappend(SET_F("adO(dd,'Generic Line-In (⎌)',1);")); #else - oappend(SET_F("addOption(dd,'Generic Line-In',1);")); + oappend(SET_F("adO(dd,'Generic Line-In',1);")); #endif #if SR_FREQ_PROF==5 - oappend(SET_F("addOption(dd,'ICS-43434 (⎌)',5);")); + oappend(SET_F("adO(dd,'ICS-43434 (⎌)',5);")); #else - oappend(SET_F("addOption(dd,'ICS-43434',5);")); + oappend(SET_F("adO(dd,'ICS-43434',5);")); #endif #if SR_FREQ_PROF==6 - oappend(SET_F("addOption(dd,'ICS-43434 - big speakers (⎌)',6);")); + oappend(SET_F("adO(dd,'ICS-43434 - big speakers (⎌)',6);")); #else - oappend(SET_F("addOption(dd,'ICS-43434 - big speakers',6);")); + oappend(SET_F("adO(dd,'ICS-43434 - big speakers',6);")); #endif #if SR_FREQ_PROF==7 - oappend(SET_F("addOption(dd,'SPM1423 (⎌)',7);")); + oappend(SET_F("adO(dd,'SPM1423 (⎌)',7);")); #else - oappend(SET_F("addOption(dd,'SPM1423',7);")); + oappend(SET_F("adO(dd,'SPM1423',7);")); #endif #if SR_FREQ_PROF==2 - oappend(SET_F("addOption(dd,'IMNP441 (⎌)',2);")); + oappend(SET_F("adO(dd,'IMNP441 (⎌)',2);")); #else - oappend(SET_F("addOption(dd,'IMNP441',2);")); + oappend(SET_F("adO(dd,'IMNP441',2);")); #endif #if SR_FREQ_PROF==3 - oappend(SET_F("addOption(dd,'IMNP441 - big speakers (⎌)',3);")); + oappend(SET_F("adO(dd,'IMNP441 - big speakers (⎌)',3);")); #else - oappend(SET_F("addOption(dd,'IMNP441 - big speakers',3);")); + oappend(SET_F("adO(dd,'IMNP441 - big speakers',3);")); #endif #if SR_FREQ_PROF==4 - oappend(SET_F("addOption(dd,'IMNP441 - small speakers (⎌)',4);")); + oappend(SET_F("adO(dd,'IMNP441 - small speakers (⎌)',4);")); #else - oappend(SET_F("addOption(dd,'IMNP441 - small speakers',4);")); + oappend(SET_F("adO(dd,'IMNP441 - small speakers',4);")); #endif #if SR_FREQ_PROF==10 - oappend(SET_F("addOption(dd,'flat - no adjustments (⎌)',10);")); + oappend(SET_F("adO(dd,'flat - no adjustments (⎌)',10);")); #else - oappend(SET_F("addOption(dd,'flat - no adjustments',10);")); + oappend(SET_F("adO(dd,'flat - no adjustments',10);")); #endif #if SR_FREQ_PROF==8 - oappend(SET_F("addOption(dd,'userdefined #1 (⎌)',8);")); + oappend(SET_F("adO(dd,'userdefined #1 (⎌)',8);")); #else - oappend(SET_F("addOption(dd,'userdefined #1',8);")); + oappend(SET_F("adO(dd,'userdefined #1',8);")); #endif #if SR_FREQ_PROF==9 - oappend(SET_F("addOption(dd,'userdefined #2 (⎌)',9);")); + oappend(SET_F("adO(dd,'userdefined #2 (⎌)',9);")); #else - oappend(SET_F("addOption(dd,'userdefined #2',9);")); + oappend(SET_F("adO(dd,'userdefined #2',9);")); #endif - oappend(SET_F("addInfo('AudioReactive:frequency:profile',1,'☾');")); + oappend(SET_F("adI('AudioReactive:frequency:profile',1,'☾');")); #endif - oappend(SET_F("dd=addDropdown('AudioReactive','sync:mode');")); - oappend(SET_F("addOption(dd,'Off',0);")); // AUDIOSYNC_NONE + oappend(SET_F("dd=adD('AudioReactive','sync:mode');")); + oappend(SET_F("adO(dd,'Off',0);")); // AUDIOSYNC_NONE #ifdef ARDUINO_ARCH_ESP32 - oappend(SET_F("addOption(dd,'Send',1);")); // AUDIOSYNC_SEND + oappend(SET_F("adO(dd,'Send',1);")); // AUDIOSYNC_SEND #endif - oappend(SET_F("addOption(dd,'Receive',2);")); // AUDIOSYNC_REC + oappend(SET_F("adO(dd,'Receive',2);")); // AUDIOSYNC_REC #ifdef ARDUINO_ARCH_ESP32 - oappend(SET_F("addOption(dd,'Receive or Local',6);")); // AUDIOSYNC_REC_PLUS + oappend(SET_F("adO(dd,'Receive or Local',6);")); // AUDIOSYNC_REC_PLUS #endif - oappend(SET_F("addInfo('AudioReactive:sync:mode',1,'
Sync audio data with other WLEDs');")); + oappend(SET_F("adI('AudioReactive:sync:mode',1,'
Sync audio data with other WLEDs');")); - oappend(SET_F("addInfo('AudioReactive:digitalmic:type',1,'requires reboot!');")); // 0 is field type, 1 is actual field + oappend(SET_F("adI('AudioReactive:digitalmic:type',1,'requires reboot!');")); // 0 is field type, 1 is actual field #ifdef ARDUINO_ARCH_ESP32 - oappend(SET_F("addInfo('AudioReactive:digitalmic:pin[]',0,'sd/data/dout','I2S SD');")); + oappend(SET_F("adI('AudioReactive:digitalmic:pin[]',0,'sd/data/dout','I2S SD');")); #ifdef I2S_SDPIN oappend(SET_F("xOpt('AudioReactive:digitalmic:pin[]',0,' ⎌',")); oappendi(I2S_SDPIN); oappend(");"); #endif - oappend(SET_F("addInfo('AudioReactive:digitalmic:pin[]',1,'ws/clk/lrck','I2S WS');")); + oappend(SET_F("adI('AudioReactive:digitalmic:pin[]',1,'ws/clk/lrck','I2S WS');")); oappend(SET_F("dRO('AudioReactive:digitalmic:pin[]',1);")); // disable read only pins #ifdef I2S_WSPIN oappend(SET_F("xOpt('AudioReactive:digitalmic:pin[]',1,' ⎌',")); oappendi(I2S_WSPIN); oappend(");"); #endif - oappend(SET_F("addInfo('AudioReactive:digitalmic:pin[]',2,'sck/bclk','I2S SCK');")); + oappend(SET_F("adI('AudioReactive:digitalmic:pin[]',2,'sck/bclk','I2S SCK');")); oappend(SET_F("dRO('AudioReactive:digitalmic:pin[]',2);")); // disable read only pins #ifdef I2S_CKPIN oappend(SET_F("xOpt('AudioReactive:digitalmic:pin[]',2,' ⎌',")); oappendi(I2S_CKPIN); oappend(");"); #endif - oappend(SET_F("addInfo('AudioReactive:digitalmic:pin[]',3,'master clock','I2S MCLK');")); + oappend(SET_F("adI('AudioReactive:digitalmic:pin[]',3,'master clock','I2S MCLK');")); oappend(SET_F("dRO('AudioReactive:digitalmic:pin[]',3);")); // disable read only pins #if !defined(CONFIG_IDF_TARGET_ESP32S2) && !defined(CONFIG_IDF_TARGET_ESP32C3) && !defined(CONFIG_IDF_TARGET_ESP32S3) oappend(SET_F("dOpt('AudioReactive:digitalmic:pin[]',3,2,2);")); //only use -1, 0, 1 or 3 @@ -2828,13 +2834,13 @@ class AudioReactive : public Usermod { oappend(SET_F("xOpt('AudioReactive:digitalmic:pin[]',3,' ⎌',")); oappendi(MCLK_PIN); oappend(");"); #endif - oappend(SET_F("addInfo('AudioReactive:digitalmic:pin[]',4,'','I2C SDA');")); + oappend(SET_F("adI('AudioReactive:digitalmic:pin[]',4,'','I2C SDA');")); oappend(SET_F("rOpt('AudioReactive:digitalmic:pin[]',4,'use global (")); oappendi(i2c_sda); oappend(")',-1);"); #ifdef ES7243_SDAPIN oappend(SET_F("xOpt('AudioReactive:digitalmic:pin[]',4,' ⎌',")); oappendi(ES7243_SDAPIN); oappend(");"); #endif - oappend(SET_F("addInfo('AudioReactive:digitalmic:pin[]',5,'','I2C SCL');")); + oappend(SET_F("adI('AudioReactive:digitalmic:pin[]',5,'','I2C SCL');")); oappend(SET_F("rOpt('AudioReactive:digitalmic:pin[]',5,'use global (")); oappendi(i2c_scl); oappend(")',-1);"); #ifdef ES7243_SCLPIN oappend(SET_F("xOpt('AudioReactive:digitalmic:pin[]',5,' ⎌',")); oappendi(ES7243_SCLPIN); oappend(");"); diff --git a/wled00/data/settings_um.htm b/wled00/data/settings_um.htm index dc3d02c733..e1fe27b383 100644 --- a/wled00/data/settings_um.htm +++ b/wled00/data/settings_um.htm @@ -146,6 +146,10 @@ urows += `
`; } } + function adF(k,f,o,a=false) { //shortcut for addField(key, field, (sub)object, isArray) + return addField(k,f,o,a); + } + // https://stackoverflow.com/questions/39729741/javascript-change-input-text-to-select-option function addDropdown(um,fld) { let sel = d.createElement('select'); @@ -170,6 +174,9 @@ } return null; } + function adD(um,fld) { // shortcut for addDropdown(um,fld) + return addDropdown(um,fld); + } function addOption(sel,txt,val) { if (sel===null) return; // select object missing let opt = d.createElement("option"); @@ -181,6 +188,9 @@ if (c.value == sel.dataset.val) sel.selectedIndex = i; } } + function adO(sel,txt,val) { // shortcut for addOption(sel,txt,val) + return addOption(sel,txt,val); + } //WLEDMM: replace Option to set globals function rOpt(name,el,txt,val) { let obj = d.getElementsByName(name); @@ -285,6 +295,9 @@ if (txt2!="") obj[el].insertAdjacentHTML('beforebegin', txt2 + ' '); //add pre texts } } + function adI(name,el,txt, txt2="") { // shortcut for addInfo(name,el,txt, txt2="") + return addInfo(name,el,txt, txt2); + } // add Help Button function addHB(um) { diff --git a/wled00/html_settings.h b/wled00/html_settings.h index 286cd10602..4202c682ac 100644 --- a/wled00/html_settings.h +++ b/wled00/html_settings.h @@ -1734,209 +1734,212 @@ const uint8_t PAGE_settings_sec[] PROGMEM = { // Autogenerated from wled00/data/settings_um.htm, do not edit!! -const uint16_t PAGE_settings_um_length = 3215; +const uint16_t PAGE_settings_um_length = 3254; const uint8_t PAGE_settings_um[] PROGMEM = { - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x0a, 0xcd, 0x59, 0xed, 0x72, 0xdb, 0xc6, - 0x15, 0xfd, 0xaf, 0xa7, 0x80, 0x36, 0xae, 0x04, 0x0c, 0x21, 0x90, 0x8a, 0x93, 0x19, 0x9b, 0x20, - 0xa8, 0xda, 0xb2, 0x1d, 0xab, 0xb5, 0x23, 0x4d, 0x64, 0x27, 0xe9, 0xc8, 0xaa, 0x05, 0x12, 0x4b, - 0x12, 0x36, 0xb8, 0x8b, 0x00, 0x0b, 0x7d, 0x94, 0xd2, 0x5b, 0xf4, 0x7f, 0x3a, 0xed, 0x2b, 0xf4, - 0xc1, 0xfa, 0x08, 0x3d, 0x77, 0x77, 0x01, 0x82, 0xb4, 0x24, 0x27, 0x9d, 0x74, 0xda, 0x3f, 0x12, - 0xb1, 0xb8, 0x7b, 0xf7, 0x7e, 0x9c, 0x7b, 0xf6, 0xee, 0x62, 0xb0, 0xf9, 0xec, 0x70, 0xff, 0xcd, - 0x9f, 0x8e, 0x9e, 0x3b, 0x33, 0x35, 0xcf, 0x86, 0x03, 0xfa, 0xeb, 0x64, 0xb1, 0x98, 0x46, 0x8c, - 0x0b, 0x86, 0x67, 0x1e, 0x27, 0xc3, 0xc1, 0x9c, 0xab, 0xd8, 0x19, 0xcf, 0xe2, 0xa2, 0xe4, 0x2a, - 0x62, 0x95, 0x9a, 0xec, 0x3c, 0x62, 0x76, 0x74, 0x63, 0x2c, 0x85, 0xe2, 0x02, 0xc3, 0x17, 0x69, - 0xa2, 0x66, 0x51, 0xc2, 0xcf, 0xd3, 0x31, 0xdf, 0xd1, 0x0f, 0x7e, 0x2a, 0x52, 0x95, 0xc6, 0xd9, - 0x4e, 0x39, 0x8e, 0x33, 0x1e, 0xed, 0xfa, 0xf3, 0xf8, 0x32, 0x9d, 0x57, 0xf3, 0xe6, 0xb9, 0x2a, - 0x79, 0xa1, 0x1f, 0xe2, 0x11, 0x9e, 0x85, 0x64, 0xce, 0x86, 0x88, 0xe7, 0x3c, 0x62, 0xe7, 0x29, - 0xbf, 0xc8, 0x65, 0xa1, 0xb0, 0x8a, 0x4a, 0x55, 0xc6, 0x87, 0x6f, 0x21, 0x39, 0x97, 0x89, 0x73, - 0xcc, 0x95, 0x4a, 0xc5, 0xb4, 0x1c, 0x74, 0xcd, 0xf8, 0xa0, 0x1c, 0x17, 0x69, 0xae, 0x86, 0x1b, - 0xe7, 0x71, 0xe1, 0x24, 0x51, 0x22, 0xc7, 0xd5, 0x1c, 0xd6, 0x84, 0x49, 0x80, 0xb5, 0xde, 0x4f, - 0xf3, 0x54, 0x46, 0x0f, 0x1f, 0xfb, 0x49, 0x50, 0xcd, 0xdf, 0xe7, 0xd1, 0xc9, 0x29, 0x7e, 0x15, - 0xe5, 0x79, 0x62, 0x7f, 0x49, 0x23, 0x70, 0x72, 0x1a, 0xd2, 0x6c, 0x79, 0x21, 0x78, 0xe1, 0x67, - 0x72, 0x9c, 0xe6, 0x7e, 0x55, 0xc8, 0x8b, 0xd2, 0xaf, 0xe6, 0xfb, 0x93, 0x69, 0xb4, 0xb8, 0xf1, - 0xf3, 0x54, 0x94, 0x34, 0x07, 0xff, 0x0f, 0xe9, 0x3f, 0x84, 0xa2, 0xcd, 0xdd, 0x70, 0x52, 0x89, - 0xb1, 0x4a, 0xa5, 0x70, 0xa6, 0x07, 0x89, 0xcb, 0xbd, 0x45, 0xc1, 0x55, 0x55, 0x08, 0x27, 0x09, - 0xa6, 0x5c, 0x3d, 0xcf, 0x38, 0x19, 0xf2, 0xf4, 0x4a, 0xbf, 0xba, 0x69, 0x44, 0xd3, 0xf2, 0xb0, - 0x25, 0xca, 0xb7, 0xb6, 0x98, 0x1c, 0x7d, 0xe0, 0x63, 0xc5, 0xa2, 0x48, 0x5d, 0xe5, 0x5c, 0x4e, - 0x68, 0x6c, 0xf3, 0x49, 0x51, 0xc4, 0x57, 0x41, 0x5a, 0xea, 0xff, 0x2b, 0xf3, 0x5f, 0xba, 0xde, - 0xe2, 0x22, 0x15, 0x89, 0xbc, 0x08, 0x64, 0xce, 0x85, 0xcb, 0x66, 0x4a, 0xe5, 0x65, 0xbf, 0xdb, - 0x9d, 0xa6, 0x6a, 0x56, 0x8d, 0x82, 0xb1, 0x9c, 0x77, 0x5f, 0x4b, 0x29, 0x5e, 0xcb, 0xa4, 0xca, - 0x78, 0xd9, 0xfd, 0xe1, 0xd5, 0xf3, 0x67, 0xdd, 0x8b, 0xf4, 0x63, 0xda, 0xad, 0x43, 0xf7, 0x45, - 0x65, 0x62, 0xb9, 0x53, 0xda, 0x01, 0xd6, 0x52, 0xff, 0x74, 0x5d, 0x7d, 0xb7, 0x91, 0xf2, 0xd9, - 0xfb, 0x92, 0x67, 0x93, 0xb6, 0x74, 0x26, 0xe3, 0xe4, 0x0f, 0xc7, 0x2e, 0xf7, 0x55, 0xb4, 0xd9, - 0xf3, 0x16, 0x19, 0x57, 0x8e, 0x88, 0x92, 0x60, 0x5c, 0xf0, 0x58, 0x71, 0x1b, 0x01, 0x97, 0x99, - 0x14, 0x31, 0x2f, 0x14, 0x01, 0x94, 0x3d, 0x51, 0xaa, 0x48, 0x47, 0x95, 0xe2, 0x78, 0x51, 0x8c, - 0x99, 0xcf, 0x3d, 0x7f, 0x7d, 0x9c, 0x02, 0x81, 0xe5, 0x14, 0xbf, 0x54, 0xdd, 0x0f, 0xf1, 0x79, - 0x5c, 0x2b, 0xf8, 0x44, 0x30, 0x2e, 0xaf, 0x04, 0x54, 0x28, 0x0f, 0xd9, 0x1c, 0xc9, 0xe4, 0x2a, - 0x88, 0x73, 0x18, 0x9d, 0xec, 0xcf, 0xd2, 0x2c, 0x71, 0x05, 0xc9, 0xc7, 0x49, 0xf2, 0xfc, 0x1c, - 0x56, 0xbc, 0x4a, 0x4b, 0xa0, 0x94, 0x17, 0x2e, 0x23, 0x9b, 0x99, 0xef, 0x7a, 0xd1, 0x70, 0xf1, - 0x0d, 0x57, 0xdf, 0xbb, 0x5e, 0x38, 0x91, 0x85, 0x4b, 0xa6, 0xf3, 0xa8, 0x17, 0xf2, 0x81, 0x41, - 0x48, 0x90, 0x71, 0x31, 0x55, 0xb3, 0x90, 0x77, 0x3a, 0x1e, 0x65, 0x3f, 0xc8, 0xab, 0x72, 0xe6, - 0x9a, 0x77, 0x27, 0xfc, 0xd4, 0xd3, 0x50, 0x30, 0x83, 0x8c, 0xc6, 0xe0, 0xdd, 0xce, 0x6e, 0x14, - 0x19, 0xa0, 0x9d, 0xf4, 0x4e, 0xb7, 0xb6, 0xcc, 0xcf, 0xa0, 0x9c, 0xa5, 0x13, 0xe5, 0x7a, 0x37, - 0xb7, 0x1b, 0xc3, 0x8b, 0x42, 0x16, 0x88, 0x01, 0x8c, 0x41, 0x1d, 0x95, 0x32, 0xe3, 0x41, 0x26, - 0xa7, 0x2e, 0x7b, 0x4e, 0xe3, 0x8e, 0x8d, 0x30, 0xa2, 0xef, 0x4c, 0xd2, 0x8c, 0xeb, 0x58, 0xa1, - 0x70, 0x0a, 0xc4, 0xf4, 0x95, 0x1d, 0x07, 0x5e, 0x30, 0x71, 0x92, 0x4e, 0xab, 0x22, 0xd6, 0x29, - 0x31, 0xb1, 0x72, 0x26, 0x31, 0x26, 0x24, 0xc1, 0x3b, 0x71, 0x20, 0x80, 0x88, 0x1c, 0xee, 0x71, - 0x27, 0x8f, 0xa7, 0xdc, 0x49, 0x62, 0x15, 0x6f, 0x22, 0x87, 0xad, 0x2c, 0x1e, 0x23, 0xe7, 0x8c, - 0x16, 0xe8, 0x03, 0x84, 0x36, 0xf9, 0x40, 0xb8, 0xd6, 0x17, 0xe4, 0x85, 0x54, 0x72, 0x2c, 0xb3, - 0xad, 0x2d, 0x57, 0xa3, 0xbe, 0xe7, 0xbb, 0xba, 0x44, 0x22, 0x92, 0xc8, 0x8e, 0x95, 0x2c, 0xa0, - 0x95, 0x00, 0x7f, 0xa0, 0xf8, 0x9c, 0xa2, 0x3b, 0x3e, 0xc8, 0x99, 0xe7, 0x5d, 0x5f, 0x5b, 0x31, - 0xcc, 0x9f, 0xe7, 0x30, 0xf8, 0x05, 0xf4, 0x3b, 0x00, 0x25, 0x0f, 0x9c, 0xa3, 0x8c, 0xc7, 0x25, - 0x77, 0x10, 0x08, 0x5e, 0x38, 0x84, 0x4f, 0xe7, 0xe0, 0x08, 0x26, 0xf9, 0x2b, 0x1a, 0xcb, 0x55, - 0x8d, 0xa6, 0x2e, 0x3d, 0x0f, 0x52, 0x09, 0xec, 0x6d, 0xd7, 0xd3, 0x8b, 0x76, 0x3d, 0x45, 0x51, - 0xd4, 0x41, 0x01, 0xf1, 0xcd, 0x28, 0x72, 0x7b, 0xd7, 0xab, 0x85, 0x77, 0x70, 0x9b, 0x60, 0xf4, - 0x89, 0x20, 0x7c, 0x39, 0x42, 0xc6, 0x49, 0x38, 0x9d, 0xb8, 0xa6, 0x5e, 0x3d, 0xc2, 0x08, 0x65, - 0x48, 0x9d, 0x08, 0x5f, 0x9e, 0x22, 0xea, 0x87, 0xba, 0x6a, 0x03, 0x38, 0x51, 0xa4, 0x9c, 0x84, - 0x3d, 0x2b, 0x2c, 0x3d, 0x4f, 0x33, 0x49, 0x24, 0xfc, 0x5a, 0x93, 0xf4, 0x42, 0x9e, 0xc1, 0x63, - 0x48, 0x30, 0xe0, 0x06, 0x51, 0x16, 0x41, 0xc1, 0xf3, 0x2c, 0x1e, 0x03, 0xc3, 0x27, 0xa7, 0x80, - 0x3a, 0xf3, 0x82, 0xb2, 0x1a, 0x95, 0xaa, 0x70, 0x77, 0x1e, 0x6a, 0x4d, 0xab, 0x04, 0x20, 0x8d, - 0x01, 0xc4, 0x52, 0x0a, 0x20, 0x55, 0x03, 0x59, 0xe3, 0x53, 0x01, 0x9f, 0xf2, 0x44, 0x9d, 0x0e, - 0xa3, 0x1e, 0x32, 0xb4, 0x44, 0x2a, 0x8d, 0xb5, 0x41, 0xaa, 0x4d, 0xf2, 0xac, 0x1d, 0xf2, 0x13, - 0xe9, 0x3b, 0x45, 0xef, 0x32, 0xe5, 0x16, 0x33, 0x1a, 0x6f, 0x69, 0xe9, 0x56, 0xdc, 0xb1, 0x07, - 0xec, 0xc7, 0xf9, 0x32, 0xf6, 0x0c, 0x6e, 0x02, 0xba, 0x6c, 0xb3, 0x21, 0xbc, 0x3d, 0xc6, 0xfa, - 0xbc, 0x89, 0x48, 0xf7, 0xe4, 0xdd, 0x0f, 0xef, 0x4f, 0xbb, 0x53, 0x9f, 0x39, 0x08, 0x4b, 0x33, - 0xea, 0xfe, 0xf9, 0xdd, 0xc5, 0x62, 0xf7, 0xc6, 0xbb, 0x76, 0xdf, 0x95, 0x1d, 0xf3, 0x13, 0x32, - 0xa8, 0x1c, 0x1e, 0x28, 0xf9, 0x16, 0x75, 0x5f, 0xec, 0x03, 0x55, 0xae, 0xd7, 0x5a, 0x1a, 0xf5, - 0xf6, 0x22, 0xe5, 0xa0, 0x02, 0x10, 0x94, 0x8f, 0xbc, 0x81, 0xb3, 0x9b, 0x9c, 0x0a, 0xcf, 0x5b, - 0x68, 0x96, 0xef, 0x44, 0xdb, 0x83, 0x59, 0xe1, 0x8c, 0xb3, 0xb8, 0x2c, 0x23, 0x56, 0xce, 0x33, - 0x36, 0xdc, 0xf6, 0x59, 0x25, 0x3e, 0x0a, 0x04, 0x02, 0xa9, 0x8a, 0xd4, 0xf5, 0x35, 0x0f, 0x52, - 0x31, 0xce, 0xaa, 0x04, 0x89, 0x66, 0x7d, 0x46, 0xe0, 0xb6, 0x53, 0xcf, 0x06, 0xf9, 0x70, 0x50, - 0x0d, 0x1f, 0x2c, 0x6a, 0x2f, 0x95, 0x77, 0x33, 0xe8, 0x56, 0xc3, 0x41, 0x37, 0x1f, 0x9e, 0x19, - 0x66, 0x31, 0xa8, 0x91, 0x7e, 0x76, 0x0b, 0x6a, 0x60, 0xc4, 0xfd, 0x2b, 0xed, 0xb5, 0x5c, 0x80, - 0x0a, 0xaf, 0xbf, 0x7c, 0xee, 0xe0, 0x7d, 0x47, 0xe9, 0xd1, 0x9b, 0xdb, 0x53, 0x25, 0x96, 0xa8, - 0xc9, 0x90, 0xae, 0x6c, 0x20, 0xea, 0x74, 0x65, 0x48, 0xd7, 0x6a, 0x70, 0x4e, 0xb2, 0x53, 0x1f, - 0x14, 0xae, 0x93, 0xbe, 0xa0, 0x19, 0xa9, 0x5f, 0xd6, 0xf9, 0x11, 0x61, 0x79, 0x91, 0xaa, 0xf1, - 0xcc, 0x2d, 0xbd, 0xc5, 0x18, 0x31, 0x66, 0x23, 0x09, 0xa2, 0x8a, 0x05, 0xeb, 0x23, 0x60, 0xe3, - 0x19, 0x1f, 0x7f, 0x1c, 0xc9, 0x4b, 0xe6, 0xa7, 0xd1, 0xf6, 0x79, 0x9c, 0x55, 0xd8, 0xbd, 0x55, - 0x51, 0x71, 0xb6, 0xdd, 0x71, 0xc5, 0x1e, 0x73, 0xf4, 0x7b, 0x9e, 0xc0, 0x58, 0x50, 0xe4, 0x08, - 0x1b, 0xc3, 0xc7, 0x50, 0xeb, 0x10, 0xd5, 0x7c, 0xc4, 0x0b, 0xd6, 0x4f, 0xa3, 0x33, 0x3b, 0xeb, - 0xc1, 0x42, 0xdc, 0xb0, 0x33, 0xdf, 0x56, 0x48, 0xa4, 0x5a, 0x15, 0xb1, 0xe7, 0xa6, 0x48, 0x93, - 0x83, 0x2d, 0x3d, 0x62, 0x5f, 0xf7, 0x98, 0x33, 0x4f, 0x45, 0xc4, 0x76, 0x76, 0x59, 0x93, 0x35, - 0xb6, 0x0d, 0x73, 0x59, 0x2a, 0xb0, 0x49, 0xf4, 0xb5, 0x28, 0x08, 0x36, 0x8f, 0x58, 0x2c, 0xae, - 0x1a, 0x99, 0xcb, 0xcb, 0x8c, 0x6d, 0x5b, 0x0b, 0x12, 0x3e, 0x89, 0xab, 0x4c, 0x91, 0xfd, 0xb4, - 0xc9, 0x90, 0xed, 0x2b, 0x56, 0x60, 0xfa, 0x15, 0x1a, 0x12, 0xd3, 0xd2, 0xf4, 0xbf, 0xfc, 0xba, - 0x97, 0x5f, 0x86, 0xec, 0xec, 0x06, 0x11, 0xae, 0xf3, 0xee, 0xac, 0xa4, 0xdc, 0x81, 0xd9, 0x4d, - 0x20, 0xa2, 0xa8, 0xdc, 0x6b, 0xe0, 0x91, 0x8a, 0xbc, 0x52, 0x0e, 0x05, 0x32, 0x62, 0xb3, 0x34, - 0x49, 0xd0, 0x54, 0x39, 0xa6, 0xc5, 0x79, 0xb0, 0xe0, 0x37, 0xfd, 0x07, 0x0b, 0x75, 0xf3, 0x60, - 0x21, 0xf7, 0x88, 0x05, 0x10, 0x21, 0xac, 0x6c, 0xcd, 0x98, 0xc4, 0x48, 0x04, 0x1b, 0x9e, 0xf5, - 0x65, 0x1b, 0x6c, 0xff, 0xa9, 0xb6, 0x07, 0x8b, 0xf2, 0x06, 0xca, 0x3c, 0x5f, 0xb5, 0xe0, 0x45, - 0x71, 0x46, 0x11, 0xa8, 0x59, 0x5a, 0x06, 0xa4, 0xe4, 0x3e, 0x4a, 0x0a, 0x1b, 0x13, 0xd0, 0x02, - 0x00, 0xc1, 0xf7, 0xaf, 0xba, 0x1a, 0xbd, 0x1e, 0x45, 0x0f, 0xa9, 0x33, 0x3d, 0x61, 0xff, 0x71, - 0xef, 0x77, 0x21, 0x6c, 0x31, 0xbb, 0x6e, 0xb4, 0xb3, 0x0b, 0x5c, 0x46, 0x5f, 0xf7, 0x34, 0x24, - 0x75, 0x03, 0xa1, 0x68, 0xac, 0xc6, 0x6d, 0x01, 0xdc, 0x16, 0x03, 0x4d, 0x54, 0x16, 0xba, 0x85, - 0xdd, 0x90, 0x4f, 0x8a, 0xd3, 0x28, 0xa2, 0x5d, 0x49, 0x45, 0x45, 0xcb, 0x3c, 0x99, 0xeb, 0xca, - 0x6f, 0xfc, 0xce, 0x08, 0x52, 0x19, 0x08, 0x17, 0x92, 0x56, 0x08, 0xf6, 0x69, 0x1f, 0x00, 0x4a, - 0x04, 0xc4, 0x50, 0x61, 0xab, 0xec, 0x88, 0x08, 0x89, 0xc1, 0x96, 0x71, 0x67, 0x4e, 0x92, 0x96, - 0xd4, 0xa1, 0x62, 0x82, 0xe7, 0xdb, 0x41, 0xda, 0xed, 0xb3, 0x3d, 0x36, 0xac, 0x04, 0xc0, 0x94, - 0x0a, 0x8d, 0xf0, 0x21, 0xeb, 0x64, 0xb5, 0xc6, 0x66, 0x2e, 0xeb, 0xb8, 0x2c, 0x9d, 0x00, 0x15, - 0x56, 0xf1, 0x1e, 0x9b, 0x66, 0x72, 0x14, 0x67, 0xac, 0x5f, 0xaf, 0xe4, 0xdf, 0xb2, 0xfa, 0x5e, - 0x33, 0xff, 0x5f, 0x3f, 0xff, 0xfc, 0x77, 0xd6, 0x6f, 0x3d, 0xfe, 0xf5, 0x9f, 0xac, 0xb1, 0x82, - 0x0d, 0xba, 0xc6, 0xe3, 0x21, 0xbb, 0x59, 0x0e, 0x19, 0xff, 0x30, 0xa4, 0x79, 0xe1, 0x56, 0xf4, - 0x3c, 0x58, 0xe8, 0x6a, 0x89, 0x08, 0xac, 0x4d, 0x2d, 0x02, 0x24, 0xf7, 0x27, 0x16, 0xa0, 0xbf, - 0x41, 0xea, 0x9a, 0x95, 0x46, 0x05, 0x16, 0x59, 0xe1, 0xdb, 0x67, 0x85, 0xcc, 0xd1, 0x3f, 0x08, - 0x62, 0x95, 0xbb, 0x1b, 0x42, 0x6d, 0x1f, 0xbc, 0x90, 0x51, 0xbb, 0x57, 0x2e, 0x9f, 0x5e, 0x7d, - 0x8b, 0xd5, 0x6b, 0x6a, 0xf3, 0x4e, 0x76, 0x4f, 0x43, 0x94, 0x9c, 0x44, 0x8f, 0x7c, 0xf0, 0xed, - 0xd1, 0xdb, 0x37, 0x64, 0xad, 0x0c, 0x54, 0x3c, 0x25, 0x29, 0x84, 0xd8, 0xd4, 0xae, 0x19, 0x84, - 0x53, 0xd7, 0xd7, 0xb5, 0x23, 0xcd, 0x90, 0x67, 0x4c, 0xe0, 0x78, 0xd4, 0x88, 0x08, 0xa5, 0x46, - 0x7a, 0xb8, 0x4a, 0x8b, 0x32, 0x88, 0xeb, 0x96, 0xb2, 0x81, 0x59, 0xa7, 0x93, 0x79, 0x86, 0x07, - 0xa3, 0xf6, 0x6b, 0xd0, 0x64, 0x68, 0xda, 0xd3, 0xcd, 0x28, 0xd5, 0xba, 0x60, 0x9c, 0x56, 0xdd, - 0x1e, 0xd0, 0x8c, 0xd3, 0x1e, 0xd0, 0x05, 0xd1, 0x1a, 0x58, 0xeb, 0x63, 0xcd, 0xb0, 0x9f, 0x1a, - 0x23, 0xbd, 0x1b, 0xdb, 0xa3, 0xac, 0x77, 0xbb, 0xd4, 0xba, 0xed, 0x40, 0x44, 0xf7, 0x81, 0x32, - 0xc8, 0xe3, 0x02, 0x41, 0xb3, 0xb1, 0xab, 0x8b, 0xd7, 0xb6, 0xbe, 0x3e, 0x76, 0x74, 0xd1, 0xe8, - 0xa9, 0xb2, 0x6c, 0x25, 0x49, 0x87, 0x1a, 0x32, 0x86, 0xf8, 0xf5, 0x86, 0x48, 0x12, 0x08, 0x1a, - 0xf7, 0xcc, 0x8c, 0x90, 0x82, 0x26, 0x3f, 0xcd, 0x9b, 0x81, 0x1a, 0x78, 0xdc, 0x86, 0x13, 0x2d, - 0x0e, 0xe2, 0x8c, 0x24, 0x44, 0x0a, 0x18, 0x6e, 0xf7, 0xde, 0x72, 0xd9, 0x55, 0x9b, 0x4e, 0x81, - 0x07, 0x63, 0x7a, 0xf1, 0x2d, 0x1a, 0xc0, 0xb2, 0xdd, 0x34, 0x2c, 0xda, 0x2f, 0x00, 0x7c, 0xab, - 0x38, 0xe2, 0x01, 0x79, 0x0b, 0xff, 0x69, 0x40, 0x17, 0x68, 0x5d, 0xb4, 0x07, 0x28, 0xb8, 0xcb, - 0x08, 0xa4, 0xbb, 0x74, 0xa9, 0x80, 0x43, 0xf5, 0x1e, 0x6f, 0x32, 0x9e, 0xdd, 0x0e, 0x2c, 0x2f, - 0x34, 0x29, 0xcd, 0xc2, 0x0c, 0x6b, 0x41, 0x2d, 0x7e, 0x52, 0xb5, 0xad, 0x1d, 0x01, 0xd2, 0x5b, - 0x8c, 0xe5, 0x4b, 0x7e, 0x6a, 0xbf, 0xc6, 0x59, 0x20, 0x54, 0xb5, 0xd1, 0x92, 0xe8, 0xc8, 0x04, - 0x44, 0xb4, 0xed, 0xbb, 0xfc, 0xbf, 0xb3, 0xaf, 0xb3, 0x6a, 0x60, 0xf2, 0x9b, 0x1b, 0x68, 0xa0, - 0x72, 0xbb, 0x75, 0xf6, 0x5d, 0xcb, 0xb4, 0x21, 0xf1, 0xb3, 0xfd, 0x3d, 0xd0, 0x66, 0xa6, 0x00, - 0xf4, 0x5c, 0x9e, 0x5b, 0x3c, 0xe3, 0x80, 0xc7, 0x77, 0x76, 0xda, 0x16, 0xc7, 0xd6, 0xe2, 0x25, - 0xc7, 0xdc, 0x69, 0xad, 0x8c, 0x44, 0x28, 0x8c, 0xb5, 0xf8, 0x79, 0x8b, 0xb5, 0xf2, 0x1e, 0x6b, - 0x65, 0xdb, 0xda, 0x89, 0x04, 0xdb, 0xeb, 0x83, 0xff, 0xda, 0x89, 0x31, 0x7e, 0xdf, 0xde, 0xa2, - 0x68, 0x7a, 0x3d, 0x86, 0x69, 0xd4, 0xca, 0x68, 0xcf, 0x60, 0x80, 0xd5, 0xd0, 0x33, 0xa7, 0x45, - 0x3b, 0x7e, 0x7d, 0xad, 0x87, 0xb1, 0xe1, 0xc8, 0xcf, 0x78, 0x9d, 0x7c, 0x77, 0xf8, 0x3f, 0x70, - 0x7a, 0xed, 0x74, 0x6c, 0x6e, 0x4d, 0x56, 0x9d, 0xb5, 0x83, 0x6b, 0xde, 0xaa, 0xa0, 0xde, 0x38, - 0xc9, 0xe5, 0x96, 0x1f, 0x88, 0xcc, 0x91, 0x2c, 0x71, 0x2c, 0x5e, 0xd4, 0x4c, 0x4c, 0x57, 0x08, - 0x74, 0x8b, 0xc2, 0x30, 0x30, 0x7f, 0x5f, 0xa2, 0xf9, 0xe0, 0xd6, 0x2f, 0x5f, 0xd0, 0xc2, 0x11, - 0x0e, 0x5e, 0x9d, 0xce, 0x69, 0x48, 0x67, 0x23, 0x6e, 0xda, 0x95, 0xb5, 0x4e, 0x06, 0xac, 0x0a, - 0x16, 0xdb, 0x04, 0x73, 0x58, 0xe3, 0xbd, 0x75, 0x06, 0x5a, 0x73, 0x58, 0xd5, 0x0e, 0x8b, 0xe5, - 0x1c, 0x04, 0xea, 0xd7, 0x3b, 0x2c, 0x1a, 0x87, 0x85, 0x2d, 0x2e, 0xe6, 0x80, 0x38, 0x13, 0x9c, - 0xdf, 0xb3, 0x2b, 0xda, 0xbf, 0xff, 0xc6, 0x3e, 0x7f, 0xc9, 0xd0, 0x5c, 0x2d, 0xdc, 0xa5, 0xaf, - 0xe4, 0xc5, 0x39, 0x4f, 0x48, 0xdd, 0x3f, 0x98, 0x2f, 0x56, 0x22, 0x1b, 0xda, 0x19, 0xc3, 0xe5, - 0xad, 0x97, 0xa6, 0xcc, 0x36, 0x98, 0x04, 0x7a, 0x1d, 0x80, 0xc9, 0x37, 0x2a, 0xed, 0xca, 0x83, - 0xe8, 0xab, 0x95, 0x55, 0x74, 0xaf, 0xf1, 0xa9, 0xad, 0x89, 0xba, 0x05, 0xdf, 0x76, 0xf0, 0x0e, - 0x8b, 0xf9, 0xe0, 0x31, 0x9a, 0xff, 0x67, 0xac, 0xc3, 0xfb, 0x8f, 0xc1, 0xe6, 0xf8, 0xfd, 0xdd, - 0x8f, 0xd8, 0xd5, 0x9d, 0x37, 0x3f, 0xde, 0xa2, 0xff, 0x33, 0xe5, 0x73, 0x5b, 0x3c, 0x9e, 0x40, - 0xb3, 0xb7, 0xda, 0x7a, 0x1c, 0x88, 0x89, 0x6c, 0x4e, 0x7a, 0x68, 0x5f, 0xef, 0xe7, 0xb1, 0xcc, - 0x2e, 0x47, 0x7d, 0x84, 0x3d, 0x90, 0x36, 0x37, 0x70, 0x6a, 0x6b, 0x2b, 0x3b, 0xe9, 0x9d, 0xee, - 0xd1, 0x9f, 0x40, 0x6f, 0xab, 0x33, 0x99, 0x25, 0x38, 0xd2, 0xab, 0xbe, 0xa5, 0x3d, 0x86, 0xcd, - 0x5c, 0x90, 0x14, 0x76, 0x2c, 0x98, 0xc9, 0x0b, 0xf5, 0x24, 0xf9, 0x00, 0x39, 0xa1, 0x5e, 0xbe, - 0x79, 0xfd, 0xca, 0x65, 0xf1, 0x44, 0x71, 0xec, 0xce, 0x09, 0xfa, 0xe8, 0x2d, 0x31, 0x2a, 0xf3, - 0x90, 0x75, 0x90, 0x00, 0x9a, 0x25, 0xef, 0x99, 0x35, 0xe2, 0x88, 0x0c, 0x1f, 0xf1, 0x29, 0xf0, - 0xec, 0xcb, 0x4e, 0x3d, 0xd5, 0x5b, 0x3b, 0xd3, 0xbe, 0x7c, 0x4a, 0x87, 0xe9, 0xc6, 0x63, 0x74, - 0x4b, 0x33, 0x9e, 0xe5, 0xcc, 0xef, 0xf9, 0xdb, 0x03, 0x74, 0x0a, 0x0a, 0x52, 0x12, 0xb5, 0x91, - 0x8e, 0x3f, 0x46, 0xac, 0xb9, 0xc7, 0x99, 0x15, 0x7c, 0x12, 0x6d, 0xfd, 0x54, 0x49, 0x15, 0xd6, - 0x37, 0x86, 0xf3, 0x79, 0x80, 0xa3, 0x67, 0x70, 0x41, 0x17, 0x45, 0x53, 0xde, 0xb5, 0xd7, 0x82, - 0x65, 0x77, 0xbb, 0xc3, 0x3b, 0xdb, 0x46, 0x94, 0xd9, 0x76, 0xd1, 0xa8, 0x65, 0xc3, 0xbd, 0x41, - 0xd7, 0xfc, 0x1c, 0x6e, 0xb7, 0xaf, 0x01, 0xe9, 0x4a, 0x66, 0x31, 0xe1, 0x74, 0x46, 0xa4, 0x6b, - 0x9f, 0x3d, 0x7d, 0x29, 0x89, 0x15, 0xd0, 0x0f, 0xd3, 0xb5, 0x0d, 0x9d, 0xfd, 0x3a, 0xac, 0x3b, - 0x9e, 0x4c, 0x83, 0x0f, 0x25, 0xd4, 0xf8, 0x8b, 0x39, 0x57, 0x33, 0x99, 0xf4, 0x19, 0x52, 0xc3, - 0x6e, 0xbc, 0x40, 0xcd, 0x38, 0xda, 0x91, 0x68, 0x08, 0xcc, 0xca, 0x8f, 0xe0, 0x41, 0xcd, 0x04, - 0xe8, 0x5d, 0x8b, 0x82, 0x4e, 0x21, 0xd4, 0x3c, 0x11, 0xde, 0x91, 0x89, 0x2b, 0x3a, 0xe4, 0x65, - 0x68, 0xb7, 0x19, 0x75, 0xcd, 0xa4, 0x0c, 0x07, 0xfe, 0xe5, 0xfc, 0x85, 0xb9, 0xb1, 0xe5, 0x41, - 0x35, 0xf7, 0x97, 0xd7, 0x38, 0xa6, 0x59, 0x06, 0x24, 0x42, 0x7d, 0x16, 0x07, 0x1f, 0xac, 0x5f, - 0x72, 0x95, 0x3c, 0x2e, 0xc6, 0x33, 0x30, 0x8d, 0xe0, 0x17, 0xce, 0xdb, 0xef, 0x5e, 0x1d, 0xeb, - 0xe7, 0xa3, 0xb8, 0x88, 0xe7, 0x25, 0x68, 0x98, 0x10, 0xe4, 0xb2, 0x6a, 0x0e, 0xe8, 0x36, 0xcd, - 0x52, 0xfb, 0x40, 0x31, 0x98, 0x15, 0xc3, 0xc1, 0xec, 0xcb, 0xfa, 0x92, 0xba, 0x74, 0x5c, 0xac, - 0xec, 0xbc, 0x8e, 0x45, 0x3c, 0xe5, 0x85, 0x37, 0xe8, 0xe2, 0x15, 0xf3, 0x9b, 0xcb, 0x86, 0xdf, - 0x22, 0x45, 0xa8, 0x8d, 0xb9, 0x51, 0xff, 0xd9, 0x3c, 0xf9, 0x77, 0xdf, 0x72, 0x34, 0x6f, 0xd2, - 0xfa, 0xc8, 0x36, 0x96, 0x99, 0x2c, 0xfa, 0xb2, 0x88, 0xc5, 0x14, 0xa7, 0x4f, 0x77, 0x3c, 0xa3, - 0x1f, 0x20, 0x9f, 0x9f, 0xaa, 0x14, 0x0c, 0x84, 0x1f, 0x38, 0xfa, 0xab, 0x4d, 0xb8, 0x94, 0xfe, - 0x12, 0xc5, 0xcc, 0xdc, 0x8e, 0x7c, 0xa3, 0xcf, 0x3b, 0xce, 0xc1, 0x97, 0xfb, 0xce, 0x37, 0x47, - 0x07, 0x87, 0x08, 0xcf, 0xcb, 0x1f, 0xbc, 0xfa, 0x96, 0x84, 0xf9, 0xcd, 0x45, 0x04, 0x8e, 0x49, - 0xfd, 0xe3, 0x67, 0x4f, 0x98, 0xb9, 0x02, 0xf0, 0x77, 0x76, 0xfd, 0xcd, 0x5d, 0x6f, 0xed, 0xf5, - 0xfe, 0xab, 0xb5, 0xd7, 0xbf, 0xd2, 0x88, 0xe3, 0xa3, 0x83, 0xcf, 0x1b, 0xf1, 0xfa, 0xf0, 0xf8, - 0xe0, 0x3e, 0x2b, 0x5e, 0x1f, 0x1c, 0x1f, 0x7e, 0xc6, 0xca, 0x3f, 0xae, 0xbe, 0xf7, 0x7c, 0xba, - 0x73, 0xd2, 0xe8, 0xf4, 0xcc, 0xa6, 0x67, 0xae, 0x85, 0x40, 0x57, 0xb7, 0x5c, 0x0b, 0x59, 0x39, - 0x01, 0xe2, 0x5c, 0xa2, 0xec, 0xcc, 0xa0, 0xec, 0xe1, 0x90, 0xce, 0x66, 0xc0, 0xd4, 0xc3, 0xe1, - 0x20, 0x49, 0xcf, 0xdb, 0xe7, 0x35, 0xcd, 0x02, 0xf0, 0x07, 0xc3, 0xc3, 0x33, 0xbf, 0x75, 0xbf, - 0xd3, 0xdc, 0x31, 0xa1, 0x75, 0x68, 0x20, 0xac, 0x09, 0x8c, 0xd1, 0x59, 0x49, 0x2f, 0x50, 0x2f, - 0x14, 0xb1, 0x06, 0xc5, 0xab, 0x17, 0xcb, 0x42, 0x2a, 0x47, 0xf7, 0x29, 0x01, 0x1d, 0xfb, 0x8e, - 0x00, 0x87, 0xd2, 0x19, 0xa4, 0xc3, 0xe3, 0xf8, 0x9c, 0x13, 0x1c, 0x1c, 0x25, 0x1d, 0xfb, 0xb9, - 0x27, 0xfd, 0x0b, 0x77, 0xec, 0x0d, 0x4b, 0x19, 0xd0, 0xad, 0xbd, 0x29, 0x98, 0xe6, 0xbe, 0x4d, - 0xd7, 0x8b, 0xd3, 0xaa, 0x08, 0xf2, 0xc3, 0x02, 0x70, 0x1e, 0x17, 0x60, 0xbf, 0xbe, 0x13, 0x57, - 0x4a, 0x86, 0x2b, 0x18, 0x55, 0xb4, 0xdd, 0xad, 0x8a, 0xed, 0x64, 0x7c, 0xa2, 0xfa, 0x5a, 0xd4, - 0xb1, 0x23, 0x45, 0x3a, 0x9d, 0xd9, 0xa1, 0x15, 0x0c, 0x28, 0xc4, 0x4e, 0xcd, 0xea, 0x0a, 0x1d, - 0x74, 0xf1, 0x9b, 0x9e, 0x9f, 0x0b, 0xbd, 0x89, 0x9a, 0xe7, 0x2e, 0x84, 0x58, 0xf8, 0x0b, 0x93, - 0xd3, 0x64, 0x45, 0x6b, 0x4e, 0x6c, 0x56, 0xf0, 0xc3, 0x3c, 0x90, 0xbc, 0x56, 0x6d, 0x07, 0x49, - 0x77, 0xeb, 0xe0, 0xdc, 0xd5, 0xde, 0x2c, 0x59, 0x81, 0x99, 0xac, 0xe1, 0x30, 0xad, 0xa9, 0x8f, - 0xa8, 0x06, 0x3b, 0x84, 0xe0, 0x05, 0x6d, 0x0c, 0x26, 0x41, 0xb6, 0xad, 0xbb, 0x87, 0x5f, 0xeb, - 0x2f, 0x35, 0xdd, 0x12, 0xcc, 0xb8, 0x97, 0x47, 0x8f, 0x58, 0xd8, 0x24, 0xda, 0x95, 0x58, 0x64, - 0xab, 0x9a, 0x47, 0x7a, 0x23, 0xb2, 0xdf, 0x6d, 0x24, 0x41, 0x13, 0xf4, 0x0b, 0xfe, 0x01, 0x73, - 0x13, 0x7f, 0xfe, 0x02, 0xe2, 0xf5, 0xdb, 0x1f, 0x2a, 0xf8, 0xca, 0x87, 0x84, 0xf2, 0xfc, 0x98, - 0x76, 0x26, 0x1e, 0xe4, 0x05, 0xa7, 0xef, 0x1c, 0xcf, 0x0c, 0x08, 0x5c, 0xfa, 0x3c, 0x73, 0x3c, - 0x09, 0xf4, 0x0d, 0xd9, 0xf7, 0xc0, 0x47, 0x92, 0xaa, 0x2b, 0xd7, 0xa3, 0x4f, 0x24, 0x18, 0x2d, - 0xab, 0xd1, 0x3c, 0xa5, 0x2f, 0x24, 0x1b, 0x83, 0xae, 0xfd, 0x98, 0x37, 0xd0, 0x2b, 0x0f, 0x7f, - 0x9f, 0xce, 0xe9, 0x1b, 0xa0, 0x53, 0x15, 0x99, 0x6b, 0x8e, 0xd0, 0xc1, 0x18, 0xe7, 0x6a, 0x2f, - 0x84, 0xa0, 0x16, 0x40, 0x15, 0xe8, 0xcf, 0x93, 0xf4, 0xe9, 0x87, 0x9a, 0x2d, 0x78, 0x15, 0x31, - 0x6c, 0x45, 0x28, 0x02, 0x6a, 0x23, 0x37, 0x9c, 0x14, 0xcf, 0xb6, 0xa1, 0xb4, 0x85, 0x72, 0x3c, - 0x61, 0x8e, 0xd9, 0x7c, 0x22, 0x96, 0xa3, 0x05, 0x65, 0x98, 0x67, 0x2c, 0x00, 0x6f, 0x90, 0xf9, - 0x64, 0x37, 0x29, 0x20, 0x4c, 0x5a, 0x3e, 0x51, 0x32, 0x47, 0x02, 0xd8, 0x70, 0xa3, 0x3d, 0x48, - 0xc5, 0xf6, 0x14, 0x72, 0x96, 0xcd, 0x57, 0xe8, 0x77, 0xc9, 0xed, 0x2f, 0xc9, 0x98, 0x25, 0x19, - 0x9b, 0x2c, 0xd7, 0x73, 0x36, 0xee, 0x98, 0xf4, 0x94, 0x26, 0x3d, 0x8d, 0xc7, 0x1f, 0x97, 0xf3, - 0x56, 0x56, 0x31, 0xf6, 0x32, 0x5b, 0x7a, 0x8d, 0x48, 0x01, 0x03, 0xcb, 0x3c, 0x16, 0xda, 0xeb, - 0xac, 0x2c, 0xab, 0x31, 0x5b, 0xa5, 0xf5, 0x69, 0xc1, 0xb9, 0x08, 0x6d, 0x3e, 0xfb, 0x42, 0x22, - 0x99, 0xc3, 0xad, 0x2f, 0x76, 0x7b, 0xbd, 0xde, 0x57, 0xa1, 0xb3, 0xbf, 0xfa, 0x15, 0x09, 0xaa, - 0x93, 0x4d, 0xca, 0x08, 0x14, 0x0e, 0x9d, 0xb6, 0x5e, 0xc2, 0xc6, 0xaa, 0xde, 0x82, 0x27, 0x6b, - 0x5a, 0x37, 0xb6, 0xbe, 0x78, 0xfc, 0xe8, 0xd1, 0x23, 0xd2, 0x5a, 0x65, 0x89, 0xa6, 0x0e, 0x4a, - 0xce, 0x2a, 0xa3, 0x04, 0x56, 0xbb, 0x0d, 0x0a, 0xc5, 0x96, 0x56, 0x00, 0xf6, 0x87, 0x1b, 0xf5, - 0xe7, 0xad, 0x1a, 0xd2, 0x41, 0x10, 0xb4, 0xc4, 0x4c, 0x2a, 0xf5, 0xb7, 0xb3, 0xd7, 0xa0, 0xa1, - 0x98, 0xf6, 0x2a, 0xfb, 0x9a, 0x38, 0xf2, 0xbf, 0x11, 0x5e, 0x84, 0x82, 0x80, 0x84, 0x65, 0x08, - 0x6c, 0x84, 0x3c, 0xfa, 0x5c, 0xfe, 0x6f, 0x3c, 0xfb, 0x87, 0x99, 0x3e, 0x1f, 0x00, 0x00 + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x0a, 0xcd, 0x59, 0xeb, 0x72, 0xdb, 0xc6, + 0x15, 0xfe, 0xaf, 0xa7, 0x80, 0x36, 0xae, 0x04, 0x0c, 0x21, 0x90, 0x8a, 0x93, 0x19, 0x9b, 0xe0, + 0x52, 0xf5, 0x35, 0x56, 0x6b, 0x47, 0x9a, 0xc8, 0x4e, 0xd2, 0x91, 0x55, 0x1b, 0x24, 0x96, 0xe4, + 0xda, 0xe0, 0x2e, 0x02, 0x2c, 0x24, 0xab, 0x14, 0xdf, 0xa2, 0xff, 0xd3, 0x69, 0x5f, 0xa1, 0x0f, + 0xd6, 0x47, 0xe8, 0xb7, 0x17, 0x80, 0x80, 0x2c, 0xcb, 0x49, 0x27, 0x9d, 0xf6, 0x8f, 0x44, 0x2c, + 0xce, 0x9e, 0x3d, 0x97, 0xef, 0x7c, 0x7b, 0x76, 0x31, 0xda, 0x7e, 0x7c, 0xf4, 0xe8, 0xe5, 0x9f, + 0x8e, 0x9f, 0x78, 0x0b, 0xb5, 0xcc, 0xc6, 0x23, 0xfd, 0xd7, 0xcb, 0x12, 0x31, 0xa7, 0x84, 0x09, + 0x82, 0x67, 0x96, 0xa4, 0xe3, 0xd1, 0x92, 0xa9, 0xc4, 0x9b, 0x2e, 0x92, 0xa2, 0x64, 0x8a, 0x92, + 0x4a, 0xcd, 0xf6, 0xee, 0x11, 0x37, 0xba, 0x35, 0x95, 0x42, 0x31, 0x81, 0xe1, 0x0b, 0x9e, 0xaa, + 0x05, 0x4d, 0xd9, 0x39, 0x9f, 0xb2, 0x3d, 0xf3, 0x10, 0x72, 0xc1, 0x15, 0x4f, 0xb2, 0xbd, 0x72, + 0x9a, 0x64, 0x8c, 0xee, 0x87, 0xcb, 0xe4, 0x03, 0x5f, 0x56, 0xcb, 0xe6, 0xb9, 0x2a, 0x59, 0x61, + 0x1e, 0x92, 0x09, 0x9e, 0x85, 0x24, 0xde, 0x96, 0x48, 0x96, 0x8c, 0x92, 0x73, 0xce, 0x2e, 0x72, + 0x59, 0x28, 0xac, 0xa2, 0xb8, 0xca, 0xd8, 0xf8, 0x15, 0x24, 0x97, 0x32, 0xf5, 0x4e, 0x98, 0x52, + 0x5c, 0xcc, 0xcb, 0x51, 0xdf, 0x8e, 0x8f, 0xca, 0x69, 0xc1, 0x73, 0x35, 0xde, 0x3a, 0x4f, 0x0a, + 0x2f, 0xa5, 0xa9, 0x9c, 0x56, 0x4b, 0x58, 0x13, 0xa7, 0x11, 0xd6, 0x7a, 0x33, 0xcf, 0xb9, 0xa4, + 0x77, 0xef, 0x87, 0x69, 0x54, 0x2d, 0xdf, 0xe4, 0xf4, 0xf4, 0x0c, 0xbf, 0x8a, 0xf2, 0x3c, 0x75, + 0xbf, 0xa4, 0x15, 0x38, 0x3d, 0x8b, 0xf5, 0x6c, 0x79, 0x21, 0x58, 0x11, 0x66, 0x72, 0xca, 0xf3, + 0xb0, 0x2a, 0xe4, 0x45, 0x19, 0x56, 0xcb, 0x47, 0xb3, 0x39, 0x5d, 0xad, 0xc3, 0x9c, 0x8b, 0x52, + 0xcf, 0xc1, 0xff, 0x23, 0xfd, 0x1f, 0x42, 0x74, 0x7b, 0x3f, 0x9e, 0x55, 0x62, 0xaa, 0xb8, 0x14, + 0xde, 0xfc, 0x30, 0xf5, 0x59, 0xb0, 0x2a, 0x98, 0xaa, 0x0a, 0xe1, 0xa5, 0xd1, 0x9c, 0xa9, 0x27, + 0x19, 0xd3, 0x86, 0x3c, 0xbc, 0x34, 0xaf, 0xd6, 0x8d, 0x28, 0x2f, 0x8f, 0x5a, 0xa2, 0x6c, 0x67, + 0x87, 0xc8, 0xc9, 0x3b, 0x36, 0x55, 0x84, 0x52, 0x75, 0x99, 0x33, 0x39, 0xd3, 0x63, 0xdb, 0x0f, + 0x8a, 0x22, 0xb9, 0x8c, 0x78, 0x69, 0xfe, 0x77, 0xe6, 0x3f, 0xf3, 0x83, 0xd5, 0x05, 0x17, 0xa9, + 0xbc, 0x88, 0x64, 0xce, 0x84, 0x4f, 0x16, 0x4a, 0xe5, 0xe5, 0xb0, 0xdf, 0x9f, 0x73, 0xb5, 0xa8, + 0x26, 0xd1, 0x54, 0x2e, 0xfb, 0x2f, 0xa4, 0x14, 0x2f, 0x64, 0x5a, 0x65, 0xac, 0xec, 0xff, 0xf0, + 0xfc, 0xc9, 0xe3, 0xfe, 0x05, 0x7f, 0xcf, 0xfb, 0x75, 0xe8, 0xbe, 0xa8, 0x6c, 0x2c, 0xf7, 0x4a, + 0x37, 0x40, 0x5a, 0xea, 0x1f, 0x5e, 0x57, 0xdf, 0x6f, 0xa4, 0x42, 0xf2, 0xa6, 0x64, 0xd9, 0xac, + 0x2d, 0x9d, 0xc9, 0x24, 0xfd, 0xc3, 0x89, 0xcf, 0x42, 0x45, 0xb7, 0x07, 0xc1, 0x2a, 0x63, 0xca, + 0x13, 0x34, 0x8d, 0xa6, 0x05, 0x4b, 0x14, 0x73, 0x11, 0xf0, 0x89, 0x4d, 0x11, 0x09, 0x62, 0x11, + 0x41, 0xd9, 0x03, 0xa5, 0x0a, 0x3e, 0xa9, 0x14, 0xc3, 0x8b, 0x62, 0x4a, 0x42, 0x16, 0x84, 0xd7, + 0xc7, 0x75, 0x20, 0xb0, 0x9c, 0x62, 0x1f, 0x54, 0xff, 0x5d, 0x72, 0x9e, 0xd4, 0x0a, 0x3e, 0x12, + 0x4c, 0xca, 0x4b, 0x01, 0x15, 0x2a, 0x40, 0x36, 0x27, 0x32, 0xbd, 0x8c, 0x92, 0x1c, 0x46, 0xa7, + 0x8f, 0x16, 0x3c, 0x4b, 0x7d, 0xa1, 0xe5, 0x93, 0x34, 0x7d, 0x72, 0x0e, 0x2b, 0x9e, 0xf3, 0x12, + 0x28, 0x65, 0x85, 0x4f, 0xb4, 0xcd, 0x24, 0xf4, 0x03, 0x3a, 0x5e, 0x7d, 0xc3, 0xd4, 0xf7, 0x7e, + 0x10, 0xcf, 0x64, 0xe1, 0x6b, 0xd3, 0x19, 0x1d, 0xc4, 0x6c, 0x64, 0x11, 0x12, 0x65, 0x4c, 0xcc, + 0xd5, 0x22, 0x66, 0xbd, 0x5e, 0xa0, 0xb3, 0x1f, 0xe5, 0x55, 0xb9, 0xf0, 0xed, 0xbb, 0x53, 0x76, + 0x16, 0x18, 0x28, 0xd8, 0x41, 0xa2, 0xc7, 0xe0, 0xdd, 0xde, 0x3e, 0xa5, 0x16, 0x68, 0xa7, 0x83, + 0xb3, 0x9d, 0x1d, 0xfb, 0x33, 0x2a, 0x17, 0x7c, 0xa6, 0xfc, 0x60, 0x7d, 0xb3, 0x31, 0xac, 0x28, + 0x64, 0x81, 0x18, 0xc0, 0x18, 0xd4, 0x51, 0x29, 0x33, 0x16, 0x65, 0x72, 0xee, 0x93, 0x27, 0x7a, + 0xdc, 0x73, 0x11, 0x46, 0xf4, 0xbd, 0x19, 0xcf, 0x98, 0x89, 0x15, 0x0a, 0xa7, 0x40, 0x4c, 0x9f, + 0xbb, 0x71, 0xe0, 0x05, 0x13, 0x67, 0x7c, 0x5e, 0x15, 0x89, 0x49, 0x89, 0x8d, 0x95, 0x37, 0x4b, + 0x30, 0x21, 0x8d, 0x5e, 0x8b, 0x43, 0x01, 0x44, 0xe4, 0x70, 0x8f, 0x79, 0x79, 0x32, 0x67, 0x5e, + 0x9a, 0xa8, 0x64, 0x1b, 0x39, 0x6c, 0x65, 0xf1, 0x04, 0x39, 0x27, 0x7a, 0x81, 0x21, 0x40, 0xe8, + 0x92, 0x0f, 0x84, 0x1b, 0x7d, 0x51, 0x5e, 0x48, 0x25, 0xa7, 0x32, 0xdb, 0xd9, 0xf1, 0x0d, 0xea, + 0x07, 0xa1, 0x6f, 0x4a, 0x84, 0x6a, 0x89, 0xec, 0x44, 0xc9, 0x02, 0x5a, 0x35, 0xe0, 0x0f, 0x15, + 0x5b, 0xea, 0xe8, 0x4e, 0x0f, 0x73, 0x12, 0x04, 0x57, 0x57, 0x4e, 0x0c, 0xf3, 0x97, 0x39, 0x0c, + 0x7e, 0x0a, 0xfd, 0x1e, 0x40, 0xc9, 0x22, 0xef, 0x38, 0x63, 0x49, 0xc9, 0x3c, 0x04, 0x82, 0x15, + 0x9e, 0xc6, 0xa7, 0x77, 0x78, 0x0c, 0x93, 0xc2, 0x8e, 0xc6, 0xb2, 0xab, 0xd1, 0xd6, 0x65, 0x10, + 0x40, 0x2a, 0x85, 0xbd, 0xed, 0x7a, 0x7a, 0xda, 0xae, 0x27, 0x4a, 0x69, 0x0f, 0x05, 0xc4, 0xb6, + 0x29, 0xf5, 0x07, 0x57, 0xdd, 0xc2, 0x3b, 0xbc, 0x49, 0x90, 0x7e, 0x24, 0x08, 0x5f, 0x8e, 0x91, + 0x71, 0x2d, 0xcc, 0x67, 0xbe, 0xad, 0xd7, 0x40, 0x63, 0x44, 0x67, 0x48, 0x9d, 0x8a, 0x50, 0x9e, + 0x21, 0xea, 0x47, 0xa6, 0x6a, 0x23, 0x38, 0x51, 0x70, 0xa6, 0x85, 0x03, 0x27, 0x2c, 0x83, 0xc0, + 0x30, 0x09, 0x15, 0x61, 0xad, 0x49, 0x06, 0x31, 0xcb, 0xe0, 0x31, 0x24, 0x08, 0x70, 0x83, 0x28, + 0x8b, 0xa8, 0x60, 0x79, 0x96, 0x4c, 0x81, 0xe1, 0xd3, 0x33, 0x40, 0x9d, 0x04, 0x51, 0x59, 0x4d, + 0x4a, 0x55, 0xf8, 0x7b, 0x77, 0x8d, 0xa6, 0x2e, 0x01, 0x48, 0x6b, 0x80, 0x66, 0x29, 0x05, 0x90, + 0xaa, 0x91, 0xac, 0xf1, 0xa9, 0x80, 0x4f, 0x79, 0xaa, 0xce, 0xc6, 0x74, 0x80, 0x0c, 0x6d, 0x90, + 0xaa, 0xc7, 0xda, 0x20, 0x35, 0x26, 0x05, 0xce, 0x0e, 0xf9, 0x91, 0xf4, 0x27, 0x45, 0x3f, 0x65, + 0xca, 0x0d, 0x66, 0x34, 0xde, 0xea, 0xa5, 0x5b, 0x71, 0xc7, 0x1e, 0xf0, 0x28, 0xc9, 0x37, 0xb1, + 0x27, 0x70, 0x13, 0xd0, 0x25, 0xdb, 0x0d, 0xe1, 0x1d, 0x10, 0x32, 0x64, 0x4d, 0x44, 0xfa, 0xa7, + 0xaf, 0x7f, 0x78, 0x73, 0xd6, 0x9f, 0x87, 0xc4, 0x43, 0x58, 0x9a, 0x51, 0xff, 0xcf, 0xaf, 0x2f, + 0x56, 0xfb, 0xeb, 0xe0, 0xca, 0x7f, 0x5d, 0xf6, 0xec, 0x4f, 0xc8, 0xa0, 0x72, 0x58, 0xa4, 0xe4, + 0x2b, 0xd4, 0x7d, 0xf1, 0x08, 0xa8, 0xf2, 0x83, 0xd6, 0xd2, 0xa8, 0xb7, 0xa7, 0x9c, 0x81, 0x0a, + 0x40, 0x50, 0x21, 0xf2, 0x06, 0xce, 0x6e, 0x72, 0x2a, 0x82, 0x60, 0x65, 0x58, 0xbe, 0x47, 0x77, + 0x47, 0x8b, 0xc2, 0x9b, 0x66, 0x49, 0x59, 0x52, 0x52, 0x2e, 0x33, 0x32, 0xde, 0x0d, 0x49, 0x25, + 0xde, 0x0b, 0x04, 0x02, 0xa9, 0xa2, 0xea, 0xea, 0x8a, 0x45, 0x5c, 0x4c, 0xb3, 0x2a, 0x45, 0xa2, + 0xc9, 0x90, 0x68, 0x70, 0xbb, 0xa9, 0x6f, 0x47, 0xf9, 0x78, 0x54, 0x8d, 0xef, 0xac, 0x6a, 0x2f, + 0x55, 0xb0, 0x1e, 0xf5, 0xab, 0xf1, 0xa8, 0x9f, 0x8f, 0xdf, 0x5a, 0x66, 0xb1, 0xa8, 0x91, 0x21, + 0xbf, 0x01, 0x35, 0x30, 0xe2, 0xf6, 0x95, 0x0e, 0x5a, 0x2e, 0x40, 0x45, 0x30, 0xdc, 0x3c, 0xf7, + 0xf0, 0xbe, 0xa7, 0xcc, 0xe8, 0xfa, 0xe6, 0x54, 0x89, 0x0d, 0x6a, 0x38, 0xd2, 0xc5, 0x47, 0xa2, + 0x4e, 0x17, 0x47, 0xba, 0xba, 0xc1, 0x39, 0xe5, 0x67, 0x21, 0x28, 0xdc, 0x24, 0x7d, 0xa5, 0x67, + 0x64, 0x61, 0x51, 0xe7, 0x47, 0xc4, 0xe5, 0x05, 0x57, 0xd3, 0x85, 0x5f, 0x04, 0xab, 0x29, 0x62, + 0x4c, 0x26, 0x12, 0x44, 0x95, 0x08, 0x32, 0x2c, 0x28, 0x99, 0x2e, 0xd8, 0xf4, 0xfd, 0x44, 0x7e, + 0x40, 0x85, 0xd2, 0xdd, 0xf3, 0x24, 0xab, 0xb0, 0x7b, 0xab, 0xa2, 0x62, 0x64, 0xb7, 0xe7, 0x8b, + 0x03, 0xe2, 0x99, 0xf7, 0x2c, 0x85, 0xb1, 0xa0, 0xc8, 0x09, 0x36, 0x86, 0xf7, 0xb1, 0xd1, 0x21, + 0xaa, 0xe5, 0x84, 0x15, 0x64, 0x98, 0xd1, 0xb7, 0x6e, 0xd6, 0x9d, 0x95, 0x58, 0x93, 0xb7, 0xa1, + 0xab, 0x10, 0xaa, 0x5a, 0x15, 0x71, 0xe0, 0x67, 0x48, 0x93, 0x87, 0x2d, 0x9d, 0x92, 0xaf, 0x07, + 0xc4, 0x5b, 0x72, 0x41, 0xc9, 0xde, 0x3e, 0x69, 0xb2, 0x46, 0x76, 0x61, 0x2e, 0xe1, 0x02, 0x9b, + 0xc4, 0xd0, 0x88, 0x82, 0x60, 0x73, 0x4a, 0x12, 0x71, 0xd9, 0xc8, 0x7c, 0xf8, 0x90, 0x91, 0x5d, + 0x67, 0x41, 0xca, 0x66, 0x49, 0x95, 0x29, 0x6d, 0xbf, 0xde, 0x64, 0xb4, 0xed, 0x1d, 0x2b, 0x30, + 0xfd, 0x12, 0x0d, 0x89, 0x6d, 0x69, 0x86, 0x5f, 0x7e, 0x3d, 0xc8, 0x3f, 0xc4, 0xe4, 0xed, 0x1a, + 0x11, 0xae, 0xf3, 0xee, 0x75, 0x52, 0xee, 0xc1, 0xec, 0x26, 0x10, 0x94, 0x16, 0x07, 0x0d, 0x3c, + 0xb8, 0xc8, 0x2b, 0xe5, 0xe9, 0x40, 0x52, 0xb2, 0xe0, 0x69, 0x8a, 0xa6, 0xca, 0xb3, 0x2d, 0xce, + 0x9d, 0x15, 0x5b, 0x0f, 0xef, 0xac, 0xd4, 0xfa, 0xce, 0x4a, 0x1e, 0x68, 0x16, 0x40, 0x84, 0xb0, + 0xb2, 0x33, 0x63, 0x96, 0x20, 0x11, 0x64, 0xfc, 0x76, 0x28, 0xdb, 0x60, 0xfb, 0x4f, 0xb5, 0xdd, + 0x59, 0x15, 0x6b, 0x28, 0x0b, 0x42, 0xd5, 0x82, 0x97, 0x8e, 0x33, 0x8a, 0x40, 0x2d, 0x78, 0x19, + 0x69, 0x25, 0xb7, 0x51, 0x52, 0xdc, 0x98, 0x80, 0x16, 0x00, 0x08, 0xbe, 0x7d, 0xd5, 0x6e, 0xf4, + 0x06, 0x3a, 0x7a, 0x48, 0x9d, 0xed, 0x09, 0x87, 0xf7, 0x07, 0xbf, 0x8b, 0x61, 0x8b, 0xa9, 0x0d, + 0x4e, 0xf7, 0xf6, 0x81, 0x4b, 0xfa, 0xf5, 0xc0, 0x40, 0xd2, 0x34, 0x10, 0x4a, 0x8f, 0xd5, 0xb8, + 0x2d, 0x81, 0xdb, 0x72, 0x64, 0x88, 0xca, 0x41, 0xb7, 0x74, 0x1b, 0xf2, 0x69, 0x79, 0x46, 0x29, + 0x07, 0x8b, 0x29, 0x5a, 0xb6, 0xcc, 0x93, 0xb9, 0xa9, 0xfc, 0xc6, 0x6f, 0xae, 0x21, 0xc5, 0x41, + 0xb8, 0x90, 0x74, 0x42, 0xb0, 0xcf, 0xf8, 0x00, 0x50, 0x22, 0x20, 0x96, 0x0a, 0x5b, 0x65, 0xa7, + 0x89, 0x50, 0x33, 0xd8, 0x26, 0xee, 0xc4, 0x4b, 0x79, 0xa9, 0x3b, 0x54, 0x4c, 0x08, 0x42, 0x37, + 0xa8, 0x77, 0x7b, 0x7e, 0x40, 0xc6, 0x95, 0x00, 0x98, 0xb8, 0x30, 0x08, 0x1f, 0x93, 0x1e, 0xaf, + 0x35, 0x36, 0x73, 0x49, 0xcf, 0x27, 0x7c, 0x06, 0x54, 0x38, 0xc5, 0x07, 0x64, 0x9e, 0xc9, 0x49, + 0x92, 0x91, 0x61, 0xbd, 0x52, 0x78, 0xc3, 0xea, 0x07, 0xcd, 0xfc, 0x7f, 0xfd, 0xfc, 0xf3, 0xdf, + 0xc9, 0xb0, 0xf5, 0xf8, 0xd7, 0x7f, 0x92, 0xc6, 0x0a, 0x32, 0xea, 0x5b, 0x8f, 0xc7, 0x64, 0xbd, + 0x19, 0xb2, 0xfe, 0x61, 0xc8, 0xf0, 0xc2, 0x8d, 0xe8, 0xb9, 0xb3, 0x32, 0xd5, 0x42, 0x35, 0x58, + 0x9b, 0x5a, 0x04, 0x48, 0x6e, 0x4f, 0xec, 0x9d, 0x55, 0xb6, 0x46, 0xea, 0x9a, 0x95, 0x26, 0x05, + 0x16, 0x69, 0xf3, 0xed, 0xd3, 0x0e, 0xd5, 0xba, 0xbd, 0xf6, 0x3a, 0x0d, 0x77, 0x19, 0xfa, 0x71, + 0x21, 0x73, 0x74, 0x1c, 0x42, 0xbf, 0xfd, 0x74, 0x0b, 0x69, 0x3c, 0x82, 0xdf, 0x92, 0xb6, 0xbb, + 0xeb, 0xf2, 0xe1, 0xe5, 0xb7, 0xb0, 0xb7, 0x26, 0xc3, 0xe0, 0x74, 0xff, 0x2c, 0x46, 0x91, 0x4a, + 0x74, 0xd5, 0x87, 0xdf, 0x1e, 0xbf, 0x7a, 0xa9, 0xfd, 0x93, 0x91, 0x4a, 0xe6, 0x5a, 0x0a, 0x49, + 0xb1, 0xd5, 0x6e, 0x07, 0x11, 0x86, 0xab, 0xab, 0xda, 0xf5, 0x66, 0x28, 0xb0, 0x26, 0x30, 0x3c, + 0x1a, 0x0c, 0xc5, 0xd2, 0xd4, 0x46, 0xdc, 0x25, 0x52, 0x19, 0x25, 0x75, 0x13, 0xda, 0x00, 0xb3, + 0xd7, 0xe3, 0x81, 0x65, 0x4e, 0xda, 0x7e, 0x0d, 0x62, 0x8d, 0x6d, 0x43, 0xbb, 0x4d, 0x33, 0xa3, + 0x0b, 0xc6, 0x19, 0xd5, 0xed, 0x01, 0xc3, 0x51, 0xed, 0x01, 0x53, 0x42, 0xad, 0x81, 0x6b, 0x9d, + 0xaf, 0x1d, 0x0e, 0x33, 0x6b, 0x64, 0xb0, 0x76, 0x91, 0xbe, 0xde, 0x1f, 0xeb, 0x66, 0x6f, 0x0f, + 0x22, 0xa6, 0x73, 0x94, 0x51, 0x9e, 0x14, 0x08, 0x9a, 0x8b, 0x5d, 0x5d, 0xee, 0xae, 0x59, 0x46, + 0x5a, 0x42, 0xd1, 0xe8, 0xa9, 0xb2, 0xac, 0x9d, 0xa4, 0xc7, 0x36, 0x39, 0x9b, 0x7c, 0x76, 0x92, + 0xd6, 0x49, 0xe7, 0x91, 0x81, 0xa3, 0x4d, 0xb5, 0xd9, 0x6c, 0xb5, 0x2e, 0x84, 0x97, 0x05, 0x76, + 0x76, 0xac, 0xc3, 0x2b, 0x3f, 0xce, 0xb0, 0x85, 0x31, 0xf6, 0x08, 0x17, 0x78, 0xb4, 0x4f, 0xc8, + 0x08, 0xd2, 0x45, 0x15, 0xea, 0xa3, 0xdd, 0xd7, 0xcb, 0x4d, 0xc7, 0x6e, 0xbb, 0x10, 0x16, 0x4d, + 0xf5, 0x8b, 0x6f, 0xd1, 0x5c, 0x96, 0xed, 0x86, 0x64, 0xd5, 0x7e, 0x81, 0xa2, 0x72, 0x8a, 0x29, + 0x8b, 0x74, 0x5c, 0x10, 0x29, 0x3d, 0x60, 0x8a, 0xbf, 0x26, 0x84, 0x43, 0x14, 0xf3, 0x07, 0x0a, + 0x8f, 0xda, 0x2e, 0x1d, 0xd5, 0xce, 0x6c, 0xdc, 0xef, 0x38, 0xb9, 0x91, 0x2d, 0x30, 0xde, 0x80, + 0xdc, 0xe0, 0x88, 0xdf, 0x0c, 0xd7, 0x20, 0xb6, 0x40, 0xe1, 0x31, 0x87, 0x5d, 0xba, 0xb5, 0xa6, + 0xfa, 0xc7, 0xf5, 0xa3, 0x48, 0x76, 0x83, 0x63, 0x6c, 0xc3, 0x93, 0xed, 0xd7, 0x38, 0x93, 0xc4, + 0xaa, 0x76, 0x50, 0x6a, 0x5a, 0xb4, 0xc1, 0x13, 0x6d, 0x5f, 0x3e, 0xfc, 0xdf, 0xd9, 0xd7, 0xeb, + 0x1a, 0x98, 0xfe, 0xe6, 0x06, 0x5a, 0x58, 0xdd, 0x6c, 0x9d, 0x7b, 0xd7, 0x32, 0x6d, 0xac, 0xf7, + 0x09, 0xf7, 0x7b, 0x64, 0xcc, 0xcc, 0x50, 0x26, 0x4b, 0x79, 0xee, 0xaa, 0x04, 0x07, 0x4d, 0xb6, + 0xb7, 0xd7, 0x81, 0x87, 0xb3, 0x78, 0xc3, 0x5c, 0x9f, 0xb4, 0x56, 0x52, 0x11, 0x0b, 0x6b, 0x2d, + 0x7e, 0xde, 0x60, 0xad, 0xbc, 0xc5, 0x5a, 0xd9, 0xb6, 0x76, 0x26, 0xb1, 0xeb, 0x98, 0x0b, 0x88, + 0x6b, 0x27, 0xd7, 0xe4, 0x4d, 0x7b, 0xab, 0xd4, 0xd3, 0xeb, 0x31, 0x4c, 0xd3, 0x2d, 0x95, 0xf1, + 0x0c, 0x06, 0x38, 0x0d, 0x03, 0x7b, 0x6a, 0x75, 0xe3, 0x57, 0x57, 0x66, 0x18, 0x1b, 0x9f, 0xfc, + 0x8c, 0xd7, 0xe9, 0x77, 0x47, 0xff, 0x03, 0xa7, 0xaf, 0x9d, 0xd2, 0xed, 0xed, 0x4d, 0xd7, 0x59, + 0x37, 0x78, 0xcd, 0x5b, 0x15, 0xd5, 0x1b, 0xb8, 0x76, 0xb9, 0xe5, 0x07, 0x22, 0x73, 0x2c, 0x4b, + 0x1c, 0xcf, 0x57, 0x35, 0xbf, 0xeb, 0xab, 0x0c, 0x7d, 0x9b, 0x43, 0x30, 0xb0, 0x7c, 0x53, 0xa2, + 0x09, 0x62, 0xce, 0xaf, 0x50, 0xe8, 0x85, 0x29, 0x0e, 0x80, 0xbd, 0xde, 0x59, 0xac, 0xcf, 0x68, + 0xcc, 0xb6, 0x4d, 0xd7, 0x3a, 0x2a, 0x70, 0x35, 0x18, 0x6f, 0x1b, 0x2c, 0xe3, 0x8c, 0x0f, 0xae, + 0xb3, 0xd5, 0x35, 0x87, 0x55, 0xed, 0xb0, 0xd8, 0xcc, 0x41, 0xa0, 0x7e, 0xbd, 0xc3, 0xa2, 0x71, + 0x58, 0xb8, 0xe2, 0x22, 0x1e, 0x48, 0x36, 0xf5, 0xa4, 0xc8, 0x2e, 0x75, 0x1f, 0xf1, 0x37, 0xf2, + 0xf9, 0xcb, 0x8e, 0xe6, 0x8a, 0xe3, 0x53, 0xfa, 0x4a, 0x56, 0x9c, 0xb3, 0x54, 0xab, 0xfb, 0x07, + 0x09, 0x45, 0x27, 0xb2, 0xb1, 0x9b, 0x31, 0xde, 0xdc, 0xbe, 0x19, 0x7a, 0x6d, 0x83, 0x49, 0xa0, + 0xe7, 0x02, 0x98, 0x42, 0xab, 0xd2, 0xad, 0x3c, 0xa2, 0x5f, 0x75, 0x56, 0x31, 0x3d, 0xcf, 0xc7, + 0xb6, 0xa6, 0xea, 0x06, 0x7c, 0xbb, 0xc1, 0x4f, 0x58, 0xcc, 0x46, 0xf7, 0x71, 0x08, 0x79, 0x4c, + 0x7a, 0x6c, 0x78, 0x1f, 0xcc, 0x8f, 0xdf, 0xdf, 0xfd, 0x88, 0x5e, 0xc1, 0x7b, 0xf9, 0xe3, 0x0d, + 0xfa, 0x3f, 0x53, 0x3e, 0x37, 0xc5, 0xe3, 0x01, 0x34, 0x77, 0xb7, 0x0b, 0x6c, 0x22, 0x33, 0xd9, + 0xb4, 0x41, 0x68, 0xa3, 0x6f, 0xe7, 0x31, 0xee, 0x96, 0xd3, 0xdd, 0x89, 0x3b, 0x18, 0x37, 0x37, + 0x81, 0x6a, 0x67, 0x87, 0x9f, 0x0e, 0xce, 0x0e, 0xf4, 0x9f, 0xc8, 0x6c, 0xd6, 0x0b, 0x99, 0xa5, + 0x0c, 0x07, 0xb3, 0xa1, 0xa3, 0x3d, 0x82, 0x16, 0x41, 0x68, 0x29, 0xec, 0x6e, 0x30, 0x93, 0x15, + 0xea, 0x41, 0xfa, 0x0e, 0x72, 0x42, 0x3d, 0x7b, 0xf9, 0xe2, 0xb9, 0x4f, 0x92, 0x99, 0x62, 0xd8, + 0xf3, 0x53, 0xf4, 0xf3, 0x3b, 0x62, 0x52, 0xe6, 0x31, 0xe9, 0x21, 0x01, 0x7a, 0x96, 0xbc, 0x65, + 0xd6, 0x84, 0x21, 0x32, 0x6c, 0xc2, 0xe6, 0xc0, 0x73, 0x28, 0x7b, 0xf5, 0xd4, 0xa0, 0x7b, 0xb6, + 0x3e, 0xec, 0x38, 0xb9, 0xd9, 0x1c, 0xdb, 0xfe, 0x77, 0x7b, 0x83, 0x67, 0x0f, 0xf5, 0x2d, 0x40, + 0x23, 0x82, 0xa6, 0x6d, 0xc1, 0xb2, 0x9c, 0x84, 0x83, 0x70, 0x77, 0x84, 0x86, 0x45, 0x41, 0x4a, + 0xa2, 0x98, 0xf8, 0xf4, 0x3d, 0x25, 0xcd, 0x05, 0xd4, 0xa2, 0x60, 0x33, 0xba, 0xf3, 0x53, 0x25, + 0x55, 0x5c, 0x5f, 0x75, 0x2e, 0x97, 0x11, 0xce, 0xcc, 0xd1, 0x85, 0xbe, 0xe1, 0x9a, 0xb3, 0xbe, + 0xbb, 0xcf, 0x2c, 0xfb, 0xbb, 0x3d, 0xd6, 0xdb, 0xb5, 0xa2, 0xc4, 0xf5, 0xb9, 0x56, 0x2d, 0x19, + 0x1f, 0x8c, 0xfa, 0xf6, 0xe7, 0x78, 0xb7, 0x7d, 0x7f, 0xa9, 0xef, 0x92, 0x56, 0x33, 0xa6, 0x0f, + 0xb7, 0xfa, 0xbe, 0xea, 0xc0, 0xdc, 0xa6, 0x62, 0x05, 0xd2, 0x33, 0xf7, 0x4d, 0xfa, 0xd0, 0xda, + 0x23, 0xfd, 0xe9, 0x6c, 0x1e, 0xbd, 0x2b, 0xa1, 0x26, 0x5c, 0x2d, 0x99, 0x5a, 0xc8, 0x74, 0x48, + 0x90, 0x4b, 0xb2, 0x0e, 0x22, 0xb5, 0x60, 0x68, 0x03, 0xe8, 0x18, 0x20, 0x97, 0xef, 0x41, 0x9c, + 0x86, 0x3a, 0xd0, 0x74, 0x17, 0x85, 0x3e, 0x3e, 0xe9, 0x1e, 0x4e, 0x17, 0x08, 0x52, 0x77, 0xa9, + 0x4f, 0xa7, 0x19, 0xce, 0x09, 0x44, 0xb7, 0xfb, 0x5a, 0x99, 0x8f, 0x70, 0x36, 0xf3, 0x57, 0xf6, + 0xaa, 0x99, 0x45, 0xd5, 0x32, 0xdc, 0xdc, 0x3f, 0xd9, 0x2e, 0x1f, 0xe1, 0x8d, 0xcd, 0x25, 0x02, + 0x08, 0xe4, 0xfa, 0xed, 0x5c, 0xc9, 0x92, 0x62, 0xba, 0x00, 0x35, 0x09, 0x76, 0xe1, 0xbd, 0xfa, + 0xee, 0xf9, 0x89, 0x79, 0x3e, 0x4e, 0x8a, 0x64, 0x59, 0x82, 0xb7, 0x35, 0xe4, 0x7c, 0x52, 0x2d, + 0x81, 0xf5, 0xa6, 0x13, 0x6b, 0x9f, 0x84, 0x46, 0x8b, 0x62, 0x3c, 0x5a, 0x7c, 0x59, 0xdf, 0xae, + 0x97, 0x9e, 0x8f, 0x95, 0xbd, 0x17, 0x89, 0x48, 0xe6, 0xac, 0x08, 0x46, 0x7d, 0xbc, 0x22, 0x61, + 0x73, 0x4b, 0xf2, 0x5b, 0xa4, 0x08, 0xc5, 0xb4, 0xb4, 0xea, 0x3f, 0x9b, 0xa7, 0xf0, 0xd3, 0xd7, + 0x33, 0xcd, 0x1b, 0x5e, 0x9f, 0x35, 0xa7, 0x32, 0x93, 0xc5, 0x50, 0x16, 0x89, 0x98, 0xe3, 0xd8, + 0xec, 0x4f, 0x17, 0xfa, 0x07, 0xd8, 0xea, 0xa7, 0x8a, 0x83, 0xb2, 0xf0, 0x63, 0x22, 0xa5, 0xda, + 0x86, 0x4b, 0xfc, 0x97, 0x28, 0x26, 0xf6, 0x5a, 0xe7, 0x1b, 0x73, 0x50, 0xf3, 0x0e, 0xbf, 0x7c, + 0xe4, 0x7d, 0x73, 0x7c, 0x78, 0x84, 0xf0, 0x3c, 0xfb, 0x21, 0xa8, 0xaf, 0x77, 0x48, 0xd8, 0x9c, + 0x6b, 0x70, 0xbe, 0x1b, 0x9e, 0x3c, 0x7e, 0x40, 0xec, 0xdd, 0x45, 0xb8, 0xb7, 0x1f, 0xe2, 0xf4, + 0x73, 0xed, 0xf5, 0xa3, 0xe7, 0xd7, 0x5e, 0xff, 0x4a, 0x23, 0x4e, 0x8e, 0x0f, 0x3f, 0x6f, 0xc4, + 0x8b, 0xa3, 0x93, 0xc3, 0xdb, 0xac, 0x78, 0x71, 0x78, 0x72, 0xf4, 0x19, 0x2b, 0xff, 0xd8, 0x7d, + 0x1f, 0x84, 0xfa, 0xb2, 0xcc, 0xa0, 0x33, 0xb0, 0xbb, 0xa4, 0xbd, 0xcf, 0x42, 0x7d, 0xdf, 0x70, + 0x9f, 0xe5, 0xe4, 0x04, 0x98, 0x76, 0x83, 0xb2, 0xb7, 0x16, 0x65, 0x77, 0xc7, 0xfa, 0x50, 0x09, + 0x4c, 0xdd, 0x1d, 0x8f, 0x52, 0x7e, 0xde, 0x3e, 0x68, 0x1a, 0x16, 0x80, 0x3f, 0x18, 0x1e, 0xbf, + 0x0d, 0x5b, 0xc7, 0xc5, 0xe6, 0x72, 0x0c, 0xbd, 0x46, 0x03, 0x61, 0xc3, 0x78, 0x44, 0x1f, 0xd9, + 0xcc, 0x02, 0xf5, 0x42, 0x94, 0x34, 0x28, 0xee, 0xde, 0x88, 0x0b, 0xa9, 0x3c, 0xd3, 0xd8, 0x44, + 0xfa, 0xbc, 0x7a, 0x0c, 0x38, 0x94, 0xde, 0x88, 0x8f, 0x4f, 0x92, 0x73, 0xa6, 0xe1, 0xe0, 0x29, + 0xe9, 0xb9, 0xef, 0x54, 0xfc, 0x2f, 0xcc, 0x73, 0x57, 0x43, 0x65, 0xa4, 0x3f, 0x37, 0xd8, 0x82, + 0x69, 0x2e, 0x0a, 0x4d, 0xbd, 0x78, 0xad, 0x8a, 0xd0, 0x7e, 0x38, 0x00, 0x2e, 0x93, 0x02, 0x74, + 0x39, 0xf4, 0x92, 0x4a, 0xc9, 0xb8, 0x83, 0x51, 0xa5, 0xf7, 0xc7, 0xae, 0xd8, 0x5e, 0xc6, 0x66, + 0x6a, 0x68, 0x44, 0x3d, 0x37, 0x52, 0xf0, 0xf9, 0xc2, 0x0d, 0x75, 0x30, 0xa0, 0x10, 0x3b, 0xb5, + 0xa8, 0x2b, 0x74, 0xd4, 0xc7, 0x6f, 0xfd, 0xfc, 0x44, 0x98, 0x5d, 0xd7, 0x3e, 0xf7, 0x21, 0x44, + 0xe2, 0x5f, 0x98, 0x9c, 0x26, 0x2b, 0x46, 0x73, 0xea, 0xb2, 0x82, 0x1f, 0xf6, 0x41, 0xcb, 0x1b, + 0xd5, 0x6e, 0x50, 0xeb, 0x6e, 0x9d, 0xf8, 0xfb, 0xc6, 0x9b, 0x0d, 0x2b, 0x10, 0x9b, 0x35, 0xb2, + 0x5e, 0x1b, 0xea, 0xd3, 0x54, 0x83, 0x2d, 0x45, 0xb0, 0x42, 0xef, 0x24, 0x36, 0x41, 0xae, 0x0f, + 0xbc, 0x85, 0x5f, 0xeb, 0x4f, 0x4c, 0xfd, 0x12, 0xcc, 0x78, 0x90, 0xd3, 0x7b, 0x24, 0x6e, 0x12, + 0xed, 0x4b, 0x2c, 0xb2, 0x53, 0x2d, 0xa9, 0xd9, 0xb9, 0xdc, 0x07, 0x27, 0xa9, 0xa1, 0x09, 0xfa, + 0x05, 0xff, 0x80, 0xb9, 0x35, 0x7f, 0xfe, 0x02, 0xe2, 0x0d, 0xdb, 0x5f, 0x58, 0x58, 0xe7, 0x0b, + 0x48, 0x79, 0x7e, 0xa2, 0x77, 0x26, 0x16, 0xe5, 0x05, 0xd3, 0x1f, 0x68, 0x1e, 0x5b, 0x10, 0xf8, + 0xfa, 0xbb, 0xd2, 0xc9, 0x2c, 0x32, 0x57, 0x7b, 0xdf, 0x03, 0x1f, 0x29, 0x57, 0x97, 0x7e, 0xa0, + 0xbf, 0xed, 0x60, 0xb4, 0xac, 0x26, 0x4b, 0xae, 0x3f, 0xed, 0x6c, 0x8d, 0xfa, 0xee, 0x2b, 0xe4, + 0xc8, 0xac, 0x3c, 0xfe, 0x3d, 0x5f, 0xea, 0x8f, 0x97, 0x5e, 0x55, 0x64, 0xbe, 0x3d, 0xc9, 0x47, + 0x53, 0x1c, 0xef, 0x83, 0x18, 0x82, 0x46, 0x00, 0x55, 0x60, 0xbe, 0xab, 0xea, 0x6f, 0x56, 0xba, + 0x3b, 0x83, 0x57, 0x94, 0x60, 0x2b, 0x42, 0x11, 0xe8, 0xbe, 0x73, 0xcb, 0xe3, 0x78, 0x76, 0x1d, + 0xa8, 0x2b, 0x94, 0x93, 0x19, 0xf1, 0xec, 0xe6, 0x43, 0x49, 0x8e, 0x9e, 0x95, 0x60, 0x9e, 0xb5, + 0x00, 0xbc, 0xa1, 0xcd, 0xd7, 0x76, 0x6b, 0x05, 0x1a, 0x93, 0x8e, 0x4f, 0x94, 0xcc, 0x91, 0x00, + 0x32, 0xde, 0x6a, 0x0f, 0xea, 0x62, 0x7b, 0x08, 0x39, 0xc7, 0xe6, 0x1d, 0xfa, 0xdd, 0x70, 0xfb, + 0x33, 0x6d, 0xcc, 0x86, 0x8c, 0x6d, 0x96, 0xeb, 0x39, 0x5b, 0x9f, 0x98, 0xf4, 0x50, 0x4f, 0x7a, + 0x98, 0x4c, 0xdf, 0x6f, 0xe6, 0x75, 0x56, 0xb1, 0xf6, 0x12, 0x57, 0x7a, 0x8d, 0x48, 0x01, 0x03, + 0xcb, 0x3c, 0x11, 0xc6, 0xeb, 0xac, 0x2c, 0xab, 0x29, 0xe9, 0xd2, 0xfa, 0xbc, 0x60, 0x4c, 0xc4, + 0x2e, 0x9f, 0x43, 0x21, 0x91, 0xcc, 0xf1, 0xce, 0x17, 0xfb, 0x83, 0xc1, 0xe0, 0xab, 0xd8, 0x7b, + 0xd4, 0xfd, 0xfc, 0x05, 0xd5, 0xe9, 0xb6, 0xce, 0x08, 0x14, 0x8e, 0xbd, 0xb6, 0x5e, 0x8d, 0x8d, + 0xae, 0xde, 0x82, 0xa5, 0xd7, 0xb4, 0x6e, 0xed, 0x7c, 0x71, 0xff, 0xde, 0xbd, 0x7b, 0x5a, 0x6b, + 0x95, 0xa5, 0x86, 0x3a, 0x74, 0x72, 0xba, 0x8c, 0x12, 0x39, 0xed, 0x2e, 0x28, 0x3a, 0xb6, 0x7a, + 0x05, 0x60, 0x7f, 0xbc, 0x55, 0x7f, 0x97, 0xab, 0x21, 0x1d, 0x45, 0x51, 0x4b, 0xcc, 0xa6, 0xd2, + 0x7c, 0xf4, 0x7b, 0x01, 0x1a, 0x4a, 0xf4, 0x5e, 0xe5, 0x5e, 0x6b, 0x8e, 0xfc, 0x6f, 0x84, 0x17, + 0xa1, 0xd0, 0x40, 0xc2, 0x32, 0x1a, 0x6c, 0x1a, 0x79, 0xfa, 0x3b, 0xff, 0xbf, 0x01, 0xe2, 0xa6, + 0xd4, 0x04, 0xf7, 0x1f, 0x00, 0x00 };