diff --git a/wled00/FX.h b/wled00/FX.h index 3d4e9844..00dddf8c 100644 --- a/wled00/FX.h +++ b/wled00/FX.h @@ -933,9 +933,6 @@ class WS2812FX { // 96 bytes uint8_t _qGrouping, _qSpacing; uint16_t _qOffset; - uint8_t - estimateCurrentAndLimitBri(void); - void setUpSegmentFromQueuedChanges(void); }; diff --git a/wled00/FX_fcn.cpp b/wled00/FX_fcn.cpp index cac3687f..8ba1b624 100644 --- a/wled00/FX_fcn.cpp +++ b/wled00/FX_fcn.cpp @@ -1225,104 +1225,16 @@ uint32_t IRAM_ATTR WS2812FX::getPixelColor(uint16_t i) { return busses.getPixelColor(i); } - -//DISCLAIMER -//The following function attemps to calculate the current LED power usage, -//and will limit the brightness to stay below a set amperage threshold. -//It is NOT a measurement and NOT guaranteed to stay within the ablMilliampsMax margin. -//Stay safe with high amperage and have a reasonable safety margin! -//I am NOT to be held liable for burned down garages! - -//fine tune power estimation constants for your setup -#define MA_FOR_ESP 100 //how much mA does the ESP use (Wemos D1 about 80mA, ESP32 about 120mA) - //you can set it to 0 if the ESP is powered by USB and the LEDs by external - -uint8_t WS2812FX::estimateCurrentAndLimitBri() { - //power limit calculation - //each LED can draw up 195075 "power units" (approx. 53mA) - //one PU is the power it takes to have 1 channel 1 step brighter per brightness step - //so A=2,R=255,G=0,B=0 would use 510 PU per LED (1mA is about 3700 PU) - bool useWackyWS2815PowerModel = false; - byte actualMilliampsPerLed = milliampsPerLed; - - if (ablMilliampsMax < 150 || actualMilliampsPerLed == 0) { //0 mA per LED and too low numbers turn off calculation - currentMilliamps = 0; - return _brightness; - } - - if (milliampsPerLed == 255) { - useWackyWS2815PowerModel = true; - actualMilliampsPerLed = 12; // from testing an actual strip - } - - size_t powerBudget = (ablMilliampsMax - MA_FOR_ESP); //100mA for ESP power - - size_t pLen = 0; //getLengthPhysical(); - size_t powerSum = 0; - for (unsigned bNum = 0; bNum < busses.getNumBusses(); bNum++) { - Bus *bus = busses.getBus(bNum); - if (!IS_DIGITAL(bus->getType())) continue; //exclude non-digital network busses - uint16_t len = bus->getLength(); - pLen += len; - uint32_t busPowerSum = 0; - for (unsigned i = 0; i < len; i++) { //sum up the usage of each LED - uint32_t c = bus->getPixelColor(i); // always returns original or restored color without brightness scaling - byte r = R(c), g = G(c), b = B(c), w = W(c); - - if(useWackyWS2815PowerModel) { //ignore white component on WS2815 power calculation - busPowerSum += (MAX(MAX(r,g),b)) * 3; - } else { - busPowerSum += (r + g + b + w); - } - } - - if (bus->hasWhite()) { //RGBW led total output with white LEDs enabled is still 50mA, so each channel uses less - busPowerSum *= 3; - busPowerSum >>= 2; //same as /= 4 - } - powerSum += busPowerSum; - } - - if (powerBudget > pLen) { //each LED uses about 1mA in standby, exclude that from power budget - powerBudget -= pLen; - } else { - powerBudget = 0; - } - - // powerSum has all the values of channels summed (max would be pLen*765 as white is excluded) so convert to milliAmps - powerSum = (powerSum * actualMilliampsPerLed) / 765; - - uint8_t newBri = _brightness; - if (powerSum * _brightness / 255 > powerBudget) { //scale brightness down to stay in current limit - float scale = (float)(powerBudget * 255) / (float)(powerSum * _brightness); - uint16_t scaleI = scale * 255; - uint8_t scaleB = (scaleI > 255) ? 255 : scaleI; - newBri = scale8(_brightness, scaleB) + 1; - } - currentMilliamps = (powerSum * newBri) / 255; - currentMilliamps += MA_FOR_ESP; //add power of ESP back to estimate - currentMilliamps += pLen; //add standby power (1mA/LED) back to estimate - return newBri; -} - void WS2812FX::show(void) { // avoid race condition, caputre _callback value show_callback callback = _callback; if (callback) callback(); - uint8_t newBri = estimateCurrentAndLimitBri(); - busses.setBrightness(newBri); // "repaints" all pixels if brightness changed - // some buses send asynchronously and this method will return before // all of the data has been sent. // See https://github.com/Makuna/NeoPixelBus/wiki/ESP32-NeoMethods#neoesp32rmt-methods busses.show(); - // restore bus brightness to its original value - // this is done right after show, so this is only OK if LED updates are completed before show() returns - // or async show has a separate buffer (ESP32 RMT and I2S are ok) - if (newBri < _brightness) busses.setBrightness(_brightness); - unsigned long showNow = millis(); size_t diff = showNow - _lastShow; size_t fpsCurr = 200; diff --git a/wled00/bus_manager.cpp b/wled00/bus_manager.cpp index eb26edce..83699344 100644 --- a/wled00/bus_manager.cpp +++ b/wled00/bus_manager.cpp @@ -101,6 +101,8 @@ BusDigital::BusDigital(BusConfig &bc, uint8_t nr, const ColorOrderMap &com) : Bus(bc.type, bc.start, bc.autoWhite, bc.count, bc.reversed, (bc.refreshReq || bc.type == TYPE_TM1814)) , _skip(bc.skipAmount) //sacrificial pixels , _colorOrder(bc.colorOrder) +, _milliAmpsPerLed(bc.milliAmpsPerLed) +, _milliAmpsMax(bc.milliAmpsMax) , _colorOrderMap(com) { if (!IS_DIGITAL(bc.type) || !bc.count) return; @@ -126,8 +128,81 @@ BusDigital::BusDigital(BusConfig &bc, uint8_t nr, const ColorOrderMap &com) DEBUG_PRINTF("%successfully inited strip %u (len %u) with type %u and pins %u,%u (itype %u)\n", _valid?"S":"Uns", nr, bc.count, bc.type, _pins[0], _pins[1], _iType); } +//fine tune power estimation constants for your setup +//you can set it to 0 if the ESP is powered by USB and the LEDs by external +#ifndef MA_FOR_ESP + #ifdef ESP8266 + #define MA_FOR_ESP 80 //how much mA does the ESP use (Wemos D1 about 80mA) + #else + #define MA_FOR_ESP 120 //how much mA does the ESP use (ESP32 about 120mA) + #endif +#endif + +//DISCLAIMER +//The following function attemps to calculate the current LED power usage, +//and will limit the brightness to stay below a set amperage threshold. +//It is NOT a measurement and NOT guaranteed to stay within the ablMilliampsMax margin. +//Stay safe with high amperage and have a reasonable safety margin! +//I am NOT to be held liable for burned down garages or houses! + +// To disable brightness limiter we either set output max current to 0 or single LED current to 0 +uint8_t BusDigital::estimateCurrentAndLimitBri() { + bool useWackyWS2815PowerModel = false; + byte actualMilliampsPerLed = _milliAmpsPerLed; + + if (_milliAmpsMax < MA_FOR_ESP || actualMilliampsPerLed == 0) { //0 mA per LED and too low numbers turn off calculation + return _bri; + } + + if (_milliAmpsPerLed == 255) { + useWackyWS2815PowerModel = true; + actualMilliampsPerLed = 12; // from testing an actual strip + } + + size_t powerBudget = (_milliAmpsMax - MA_FOR_ESP); //100mA for ESP power + + uint32_t busPowerSum = 0; + for (unsigned i = 0; i < getLength(); i++) { //sum up the usage of each LED + uint32_t c = getPixelColor(i); // always returns original or restored color without brightness scaling + byte r = R(c), g = G(c), b = B(c), w = W(c); + + if (useWackyWS2815PowerModel) { //ignore white component on WS2815 power calculation + busPowerSum += (max(max(r,g),b)) * 3; + } else { + busPowerSum += (r + g + b + w); + } + } + + if (hasWhite()) { //RGBW led total output with white LEDs enabled is still 50mA, so each channel uses less + busPowerSum *= 3; + busPowerSum >>= 2; //same as /= 4 + } + + if (powerBudget > getLength()) { //each LED uses about 1mA in standby, exclude that from power budget + powerBudget -= getLength(); + } else { + powerBudget = 0; + } + + // powerSum has all the values of channels summed (max would be getLength()*765 as white is excluded) so convert to milliAmps + busPowerSum = (busPowerSum * actualMilliampsPerLed) / 765; + + uint8_t newBri = _bri; + if (busPowerSum * _bri / 255 > powerBudget) { //scale brightness down to stay in current limit + float scale = (float)(powerBudget * 255) / (float)(busPowerSum * _bri); + uint16_t scaleI = scale * 255; + uint8_t scaleB = (scaleI > 255) ? 255 : scaleI; + newBri = unsigned(_bri * scaleB) / 256 + 1; + } + return newBri; +} + void BusDigital::show() { if (!_valid) return; + + uint8_t newBri = estimateCurrentAndLimitBri(); + if (newBri < _bri) PolyBus::setBrightness(_busPtr, _iType, newBri); // limit brightness to stay within current limits + if (_data) { // use _buffering this causes ~20% FPS drop size_t channels = Bus::hasWhite(_type) + 3*Bus::hasRGB(_type); for (size_t i=0; i<_len; i++) { @@ -152,8 +227,22 @@ void BusDigital::show() { if (_skip) PolyBus::setPixelColor(_busPtr, _iType, 0, 0, _colorOrderMap.getPixelColorOrder(_start, _colorOrder)); // paint skipped pixels black #endif for (int i=1; i<_skip; i++) PolyBus::setPixelColor(_busPtr, _iType, i, 0, _colorOrderMap.getPixelColorOrder(_start, _colorOrder)); // paint skipped pixels black + } else { + if (newBri < _bri) { + uint16_t hwLen = _len; + if (_type == TYPE_WS2812_1CH_X3) hwLen = NUM_ICS_WS2812_1CH_3X(_len); // only needs a third of "RGB" LEDs for NeoPixelBus + for (unsigned i = 0; i < hwLen; i++) { + // use 0 as color order, actual order does not matter here as we just update the channel values as-is + uint32_t c = restoreColorLossy(PolyBus::getPixelColor(_busPtr, _iType, i, 0), _bri); + PolyBus::setPixelColor(_busPtr, _iType, i, c, 0); // repaint all pixels with new brightness + } + } } PolyBus::show(_busPtr, _iType, !_data); // faster if buffer consistency is not important (use !_buffering this causes 20% FPS drop) + // restore bus brightness to its original value + // this is done right after show, so this is only OK if LED updates are completed before show() returns + // or async show has a separate buffer (ESP32 RMT and I2S are ok) + if (newBri < _bri) PolyBus::setBrightness(_busPtr, _iType, _bri); } bool BusDigital::canShow() { @@ -172,7 +261,7 @@ void BusDigital::setBrightness(uint8_t b) { uint8_t prevBri = _bri; Bus::setBrightness(b); PolyBus::setBrightness(_busPtr, _iType, b); - +/* if (_data) return; // use _buffering this causes ~20% FPS drop // must update/repaint every LED in the NeoPixelBus buffer to the new brightness @@ -182,9 +271,10 @@ void BusDigital::setBrightness(uint8_t b) { if (_type == TYPE_WS2812_1CH_X3) hwLen = NUM_ICS_WS2812_1CH_3X(_len); // only needs a third of "RGB" LEDs for NeoPixelBus for (unsigned i = 0; i < hwLen; i++) { // use 0 as color order, actual order does not matter here as we just update the channel values as-is - uint32_t c = restoreColorLossy(PolyBus::getPixelColor(_busPtr, _iType, i, 0),prevBri); + uint32_t c = restoreColorLossy(PolyBus::getPixelColor(_busPtr, _iType, i, 0), prevBri); PolyBus::setPixelColor(_busPtr, _iType, i, c, 0); } +*/ } //If LEDs are skipped, it is possible to use the first as a status LED. diff --git a/wled00/bus_manager.h b/wled00/bus_manager.h index 149cdcfb..b4ddc670 100644 --- a/wled00/bus_manager.h +++ b/wled00/bus_manager.h @@ -35,8 +35,10 @@ struct BusConfig { uint8_t pins[5] = {LEDPIN, 255, 255, 255, 255}; uint16_t frequency; bool doubleBuffer; + uint8_t milliAmpsPerLed; + uint16_t milliAmpsMax; - BusConfig(uint8_t busType, uint8_t* ppins, uint16_t pstart, uint16_t len = 1, uint8_t pcolorOrder = COL_ORDER_GRB, bool rev = false, uint8_t skip = 0, byte aw=RGBW_MODE_MANUAL_ONLY, uint16_t clock_kHz=0U, bool dblBfr=false) + BusConfig(uint8_t busType, uint8_t* ppins, uint16_t pstart, uint16_t len = 1, uint8_t pcolorOrder = COL_ORDER_GRB, bool rev = false, uint8_t skip = 0, byte aw=RGBW_MODE_MANUAL_ONLY, uint16_t clock_kHz=0U, bool dblBfr=false, uint8_t maPerLed=55, uint16_t maMax=ABL_MILLIAMPS_DEFAULT) : count(len) , start(pstart) , colorOrder(pcolorOrder) @@ -45,6 +47,8 @@ struct BusConfig { , autoWhite(aw) , frequency(clock_kHz) , doubleBuffer(dblBfr) + , milliAmpsPerLed(maPerLed) + , milliAmpsMax(maMax) { refreshReq = (bool) GET_BIT(busType,7); type = busType & 0x7F; // bit 7 may be/is hacked to include refresh info (1=refresh in off state, 0=no refresh) @@ -132,6 +136,8 @@ class Bus { virtual uint8_t getColorOrder() { return COL_ORDER_RGB; } virtual uint8_t skippedLeds() { return 0; } virtual uint16_t getFrequency() { return 0U; } + virtual uint16_t getLEDCurrent() { return 0; } + virtual uint16_t getMaxCurrent() { return 0; } inline void setReversed(bool reversed) { _reversed = reversed; } inline uint16_t getStart() { return _start; } inline void setStart(uint16_t start) { _start = start; } @@ -211,6 +217,9 @@ class BusDigital : public Bus { uint8_t getPins(uint8_t* pinArray); uint8_t skippedLeds() { return _skip; } uint16_t getFrequency() { return _frequencykHz; } + uint8_t estimateCurrentAndLimitBri(); + uint16_t getLEDCurrent() { return _milliAmpsPerLed; } + uint16_t getMaxCurrent() { return _milliAmpsMax; } void reinit(); void cleanup(); @@ -220,6 +229,8 @@ class BusDigital : public Bus { uint8_t _pins[2]; uint8_t _iType; uint16_t _frequencykHz; + uint8_t _milliAmpsPerLed; + uint16_t _milliAmpsMax; void * _busPtr; const ColorOrderMap &_colorOrderMap; //bool _buffering; // temporary until we figure out why comparison "_data" causes severe FPS drop diff --git a/wled00/cfg.cpp b/wled00/cfg.cpp index 89ac9aab..1c57afef 100644 --- a/wled00/cfg.cpp +++ b/wled00/cfg.cpp @@ -89,8 +89,9 @@ bool deserializeConfig(JsonObject doc, bool fromFS) { JsonObject hw_led = hw["led"]; uint8_t autoWhiteMode = RGBW_MODE_MANUAL_ONLY; + uint16_t total = hw_led[F("total")] | strip.getLengthTotal(); CJSON(strip.ablMilliampsMax, hw_led[F("maxpwr")]); - CJSON(strip.milliampsPerLed, hw_led[F("ledma")]); + CJSON(strip.milliampsPerLed, hw_led[F("ledma")]); // no longer used Bus::setGlobalAWMode(hw_led[F("rgbwm")] | 255); CJSON(correctWB, hw_led["cct"]); CJSON(cctFromRgb, hw_led[F("cr")]); @@ -167,8 +168,15 @@ bool deserializeConfig(JsonObject doc, bool fromFS) { uint16_t freqkHz = elm[F("freq")] | 0; // will be in kHz for DotStar and Hz for PWM (not yet implemented fully) ledType |= refresh << 7; // hack bit 7 to indicate strip requires off refresh uint8_t AWmode = elm[F("rgbwm")] | autoWhiteMode; + uint8_t maPerLed = elm[F("ledma")] | strip.milliampsPerLed; // replace with 55 when removing strip.milliampsPerLed + uint16_t maMax = elm[F("maxpwr")] | (strip.ablMilliampsMax * length) / total; // rough (incorrect?) per strip ABL calculation when no config exists + // To disable brightness limiter we either set output max current to 0 or single LED current to 0 (we choose output max current) + if ((ledType > TYPE_TM1814 && ledType < TYPE_WS2801) || ledType >= TYPE_NET_DDP_RGB) { // analog and virtual + maPerLed = 0; + maMax = 0; + } if (fromFS) { - BusConfig bc = BusConfig(ledType, pins, start, length, colorOrder, reversed, skipFirst, AWmode, freqkHz, useGlobalLedBuffer); + BusConfig bc = BusConfig(ledType, pins, start, length, colorOrder, reversed, skipFirst, AWmode, freqkHz, useGlobalLedBuffer, maPerLed, maMax); mem += BusManager::memUsage(bc); if (useGlobalLedBuffer && start + length > maxlen) { maxlen = start + length; @@ -177,7 +185,7 @@ bool deserializeConfig(JsonObject doc, bool fromFS) { if (mem + globalBufMem <= MAX_LED_MEMORY) if (busses.add(bc) == -1) break; // finalization will be done in WLED::beginStrip() } else { if (busConfigs[s] != nullptr) delete busConfigs[s]; - busConfigs[s] = new BusConfig(ledType, pins, start, length, colorOrder, reversed, skipFirst, AWmode, freqkHz, useGlobalLedBuffer); + busConfigs[s] = new BusConfig(ledType, pins, start, length, colorOrder, reversed, skipFirst, AWmode, freqkHz, useGlobalLedBuffer, maPerLed, maMax); busesChanged = true; } s++; @@ -717,9 +725,9 @@ void serializeConfig() { JsonObject hw = doc.createNestedObject("hw"); JsonObject hw_led = hw.createNestedObject("led"); - hw_led[F("total")] = strip.getLengthTotal(); //no longer read, but provided for compatibility on downgrade + hw_led[F("total")] = strip.getLengthTotal(); //provided for compatibility on downgrade and per-output ABL hw_led[F("maxpwr")] = strip.ablMilliampsMax; - hw_led[F("ledma")] = strip.milliampsPerLed; + hw_led[F("ledma")] = strip.milliampsPerLed; // no longer used hw_led["cct"] = correctWB; hw_led[F("cr")] = cctFromRgb; hw_led[F("cb")] = strip.cctBlending; @@ -766,6 +774,8 @@ void serializeConfig() { ins["ref"] = bus->isOffRefreshRequired(); ins[F("rgbwm")] = bus->getAutoWhiteMode(); ins[F("freq")] = bus->getFrequency(); + ins[F("maxpwr")] = bus->getMaxCurrent(); + ins[F("ledma")] = bus->getLEDCurrent(); } JsonArray hw_com = hw.createNestedArray(F("com")); diff --git a/wled00/data/settings_leds.htm b/wled00/data/settings_leds.htm index 12a3df27..d6b2c589 100644 --- a/wled00/data/settings_leds.htm +++ b/wled00/data/settings_leds.htm @@ -107,32 +107,55 @@ } function enABL() { - var en = gId('able').checked; - d.Sf.LA.value = (en) ? laprev:0; + var en = d.Sf["ABL"].checked; + d.Sf["MA"].min = en ? 250 : 0; gId('abl').style.display = (en) ? 'inline':'none'; gId('psu2').style.display = (en) ? 'inline':'none'; - if (d.Sf.LA.value > 0) setABL(); + if (!en) d.Sf["PPL"].checked = false; + enPPL(); UI(); } - function enLA() + function enPPL() { - var val = d.Sf.LAsel.value; - d.Sf.LA.value = val; - gId('LAdis').style.display = (val == 50) ? 'inline':'none'; - UI(); + const abl = d.Sf["ABL"].checked; + const en = d.Sf["PPL"].checked; + d.Sf["MA"].readonly = en; + gId("ppldis").style.display = en ? 'inline' : 'none'; + d.Sf.querySelectorAll("#mLC input[name^=MA]").forEach((i,n)=>{ + gId("PSU"+n).style.display = en ? "inline" : "none"; + const t = parseInt(d.Sf["LT"+n].value); // LED type SELECT + i.min = en && !((t >= 80 && t < 96) || (t >= 40 && t < 48)) ? 250 : 0; + if (!abl) i.value = 0; + }); + } + function enLA(s,n) + { + const t = parseInt(d.Sf["LT"+n].value); // LED type SELECT + gId('LAdis'+n).style.display = s.selectedIndex==5 ? "inline" : "none"; + d.Sf["LA"+n].value = s.value==="0" ? 55 : s.value; + d.Sf["LA"+n].min = ((t >= 80 && t < 96) || (t >= 40 && t < 48)) ? 0 : 1; } function setABL() { - gId('able').checked = true; - d.Sf.LAsel.value = 50; - switch (parseInt(d.Sf.LA.value)) { - case 0: gId('able').checked = false; enABL(); break; - case 30: d.Sf.LAsel.value = 30; break; - case 35: d.Sf.LAsel.value = 35; break; - case 55: d.Sf.LAsel.value = 55; break; - case 255: d.Sf.LAsel.value = 255; break; - default: gId('LAdis').style.display = 'inline'; - } + d.Sf["ABL"].checked = false; + // check if ABL is enabled (max mA entered per output) + d.Sf.querySelectorAll("#mLC input[name^=MA]").forEach((i,n)=>{ + if (parseInt(i.value) > 0) d.Sf["ABL"].checked = true; + }); + // select appropriate LED current + d.Sf.querySelectorAll("#mLC select[name^=LAsel]").forEach((sel,n)=>{ + sel.value = 0; // set custom + switch (parseInt(d.Sf["LA"+n].value)) { + case 0: break; // disable ABL + case 15: sel.value = 15; break; + case 30: sel.value = 30; break; + case 35: sel.value = 35; break; + case 55: sel.value = 55; break; + case 255: sel.value = 255; break; + } + enLA(sel,n); + }); + enABL(); gId('m1').innerHTML = maxM; } //returns mem usage @@ -161,19 +184,22 @@ function UI(change=false) { let isRGBW = false, gRGBW = false, memu = 0; - - gId('ampwarning').style.display = (d.Sf.MA.value > 7200) ? 'inline':'none'; - - if (d.Sf.LA.value == 255) laprev = 12; - else if (d.Sf.LA.value > 0) laprev = d.Sf.LA.value; + let sumMA = 0, busMA = 0; + let sLC = 0, sPC = 0, sDI = 0, maxLC = 0; + const ablEN = d.Sf["ABL"].checked; + const pplEN = d.Sf["PPL"].checked; // enable/disable LED fields d.Sf.querySelectorAll("#mLC select[name^=LT]").forEach((s)=>{ // is the field a LED type? var n = s.name.substring(2); var t = parseInt(s.value); + let isDig = ((t >= 16 && t < 32) || (t >= 50 && t < 64)); + let isVir = (t >= 80 && t < 96); + let isPwm = (t >= 40 && t < 48); gId("p0d"+n).innerHTML = (t>=80 && t<96) ? "IP address:" : (t > 49) ? "Data GPIO:" : (t > 41) ? "GPIOs:" : "GPIO:"; gId("p1d"+n).innerHTML = (t> 49 && t<64) ? "Clk GPIO:" : ""; + gId("abl"+n).style.display = ((t >= 80 && t < 96) || (t >= 40 && t < 48)) ? "none" : "inline"; //var LK = d.getElementsByName("L1"+n)[0]; // clock pin memu += getMem(t, n); // calc memory @@ -197,6 +223,8 @@ if (change) { gId("rf"+n).checked = (gId("rf"+n).checked || t == 31); // LEDs require data in off state if (t > 31 && t < 48) d.getElementsByName("LC"+n)[0].value = 1; // for sanity change analog count just to 1 LED + d.Sf["LA"+n].min = ((t >= 80 && t < 96) || (t >= 40 && t < 48)) ? 0 : 1; + d.Sf["MA"+n].min = ((t >= 80 && t < 96) || (t >= 40 && t < 48)) ? 0 : 250; } gId("rf"+n).onclick = (t == 31) ? (()=>{return false}) : (()=>{}); // prevent change for TM1814 gRGBW |= isRGBW = ((t > 17 && t < 22) || (t > 28 && t < 32) || (t > 40 && t < 46 && t != 43) || t == 88); // RGBW checkbox, TYPE_xxxx values from const.h @@ -211,6 +239,9 @@ gId("dig"+n+"l").style.display = (t > 48 && t < 64) ? "inline":"none"; // bus clock speed gId("rev"+n).innerHTML = (t >= 40 && t < 48) ? "Inverted output":"Reversed (rotated 180°)"; // change reverse text for analog gId("psd"+n).innerHTML = (t >= 40 && t < 48) ? "Index:":"Start:"; // change analog start description + if (ablEN && pplEN && !((t >= 80 && t < 96) || (t >= 40 && t < 48))) { + sumMA += parseInt(d.Sf["MA"+n].value); + } }); // display global white channel overrides gId("wc").style.display = (gRGBW) ? 'inline':'none'; @@ -220,7 +251,6 @@ } // check for pin conflicts var LCs = d.Sf.querySelectorAll("#mLC input[name^=L]"); // input fields - var sLC = 0, sPC = 0, maxLC = 0; for (i=0; i sLC) sLC = s+c; //update total count if(c>maxLC)maxLC=c; //max per output - var t = parseInt(d.getElementsByName("LT"+n)[0].value); // LED type SELECT + var t = parseInt(d.Sf["LT"+n].value); // LED type SELECT if (t<80) sPC+=c; //virtual out busses do not count towards physical LEDs + if (!((t >= 80 && t < 96) || (t >= 40 && t < 48))) sDI+=c; + if (!((t >= 80 && t < 96) || (t >= 40 && t < 48))) { + let maPL = parseInt(d.Sf["LA"+n].value); + if (maPL==255) maPL = 12; + busMA += maPL*c; + } } // increase led count continue; } // do we have led pins for digital leds if (nm=="L0" || nm=="L1") { - var lc=d.getElementsByName("LC"+n)[0]; + var lc=d.Sf["LC"+n]; lc.max=maxPB; // update max led count value } // ignore IP address (stored in pins for virtual busses) if (nm=="L0" || nm=="L1" || nm=="L2" || nm=="L3") { - var t = parseInt(d.getElementsByName("LT"+n)[0].value); // LED type SELECT + var t = parseInt(d.Sf["LT"+n].value); // LED type SELECT if (t>=80) { LCs[i].max = 255; LCs[i].min = 0; @@ -267,7 +303,7 @@ if (n2=="L0" || n2=="L1" || n2=="L2" || n2=="L3" || n2=="L4"/* || n2=="RL" || n2=="BT" || n2=="IR"*/) { if (n2.substring(0,1)==="L") { var m = LCs[j].name.substring(2); - var t2 = parseInt(d.getElementsByName("LT"+m)[0].value, 10); + var t2 = parseInt(d.Sf["LT"+m].value, 10); if (t2>=80) continue; } if (LCs[j].value!="" && LCs[j].value!="-1") p.push(parseInt(LCs[j].value,10)); // add current pin @@ -282,6 +318,14 @@ // LCs[i].min = -1; //} } + d.Sf.querySelectorAll("#mLC input[name^=LC]").forEach((s,n)=>{ + let c = parseInt(s.value,10); //get LED count + let t = parseInt(d.Sf["LT"+n].value); + if (ablEN) { + let v = Math.round(parseInt(d.Sf["MA"].value,10)*c/sDI); + if (!pplEN && !((t >= 80 && t < 96) || (t >= 40 && t < 48))) d.Sf["MA"+n].value = v; + } else d.Sf["MA"+n].value = 0; + }); // update total led count gId("lc").textContent = sLC; gId("pc").textContent = (sLC == sPC) ? "":"(" + sPC + " physical)"; @@ -294,27 +338,20 @@ gId('ledwarning').style.color = (maxLC > Math.max(maxPB,800) || bquot > 100) ? 'red':'orange'; gId('wreason').innerHTML = (bquot > 80) ? "80% of max. LED memory" +(bquot>100 ? ` (ERROR: Using over ${maxM}B!)` : "") : "800 LEDs per output"; // calculate power - var val = Math.ceil((100 + sPC * laprev)/500)/2; + if (pplEN) d.Sf.MA.value = sumMA; + gId('ampwarning').style.display = (parseInt(d.Sf.MA.value,10) > 7200) ? 'inline':'none'; + var val = Math.ceil((100 + busMA)/500)/2; val = (val > 5) ? Math.ceil(val) : val; - var s = ""; - var is12V = (d.Sf.LAsel.value == 30); - var isWS2815 = (d.Sf.LAsel.value == 255); - if (val < 1.02 && !is12V && !isWS2815) - { - s = "ESP 5V pin with 1A USB supply"; - } else - { - s += is12V ? "12V ": isWS2815 ? "WS2815 12V " : "5V "; - s += val; - s += "A supply connected to LEDs"; - } - var val2 = Math.ceil((100 + sPC * laprev)/1500)/2; + var s = "A power supply with total of "; + s += val; + s += "A is required."; + var val2 = Math.ceil((100 + busMA)/1500)/2; val2 = (val2 > 5) ? Math.ceil(val2) : val2; var s2 = "(for most effects, ~"; s2 += val2; s2 += "A is enough)
"; gId('psu').innerHTML = s; - gId('psu2').innerHTML = isWS2815 ? "" : s2; + gId('psu2').innerHTML = s2; gId("json").style.display = d.Sf.IT.value==8 ? "" : "none"; } function lastEnd(i) { @@ -364,6 +401,18 @@ ${i+1}:
+
+mA/LED:
+ +
PSU: mA
+
Color Order: ?


- Enable automatic brightness limiter:
+ Enable automatic brightness limiter:
- Maximum Current: mA
+ Automatically limits brightness to stay close to the limit.
+ Keep at <1A if poweing LEDs directly from the ESP 5V pin!
+ Analog (PWM) and virtual LEDs cannot use automatic brightness limiter.
+ Maximum PSU Current: mA
+ Use per-output limiter:
+ - Automatically limits brightness to stay close to the limit.
- Keep at <1A if powering LEDs directly from the ESP 5V pin!
- If you are using an external power supply, enter its rating.
- (Current estimated usage: unknown)


- LED voltage (Max. current for a single LED):
-
- - Keep at default if you are unsure about your type of LEDs.

Hardware setup

LED outputs:
diff --git a/wled00/html_settings.h b/wled00/html_settings.h index ac30b5c6..5a50d645 100644 --- a/wled00/html_settings.h +++ b/wled00/html_settings.h @@ -310,534 +310,555 @@ const uint8_t PAGE_settings_wifi[] PROGMEM = { // Autogenerated from wled00/data/settings_leds.htm, do not edit!! -const uint16_t PAGE_settings_leds_length = 8401; +const uint16_t PAGE_settings_leds_length = 8743; const uint8_t PAGE_settings_leds[] PROGMEM = { - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x13, 0xdd, 0x7d, 0xeb, 0x76, 0xda, 0xc8, - 0x96, 0xf0, 0x7f, 0x9e, 0x42, 0xae, 0xee, 0x76, 0xa4, 0x46, 0x80, 0x84, 0x21, 0x4d, 0x00, 0xe1, - 0x31, 0x76, 0x92, 0xf6, 0x1c, 0x3b, 0xf6, 0xb2, 0x9d, 0xce, 0x99, 0x95, 0xce, 0x74, 0x84, 0x28, - 0x40, 0xb6, 0x90, 0x38, 0x92, 0xf0, 0x65, 0x6c, 0xcf, 0x33, 0xcd, 0x33, 0xcc, 0x93, 0x7d, 0x7b, - 0xd7, 0x45, 0x17, 0x24, 0x61, 0xe7, 0x3b, 0x33, 0x7f, 0xa6, 0xd7, 0x8a, 0xd1, 0xa5, 0x6a, 0xef, - 0x5d, 0xbb, 0xf6, 0xb5, 0x6a, 0x97, 0x7a, 0xb8, 0x73, 0x74, 0x76, 0x78, 0xf5, 0x6f, 0xe7, 0xef, - 0x95, 0x45, 0xbc, 0xf4, 0x46, 0x43, 0xfc, 0xab, 0x78, 0xb6, 0x3f, 0xb7, 0x08, 0xf5, 0x09, 0xdc, - 0x53, 0x7b, 0x3a, 0x1a, 0x2e, 0x69, 0x6c, 0x2b, 0xce, 0xc2, 0x0e, 0x23, 0x1a, 0x5b, 0x64, 0x1d, - 0xcf, 0x1a, 0x3d, 0x22, 0x9e, 0xd6, 0x9c, 0xc0, 0x8f, 0xa9, 0x0f, 0x8f, 0xef, 0xdc, 0x69, 0xbc, - 0xb0, 0xa6, 0xf4, 0xd6, 0x75, 0x68, 0x83, 0xdd, 0xe8, 0xae, 0xef, 0xc6, 0xae, 0xed, 0x35, 0x22, - 0xc7, 0xf6, 0xa8, 0x65, 0xea, 0x4b, 0xfb, 0xde, 0x5d, 0xae, 0x97, 0xc9, 0xfd, 0x3a, 0xa2, 0x21, - 0xbb, 0xb1, 0x27, 0x70, 0xef, 0x07, 0x44, 0xa9, 0xf9, 0xf6, 0x92, 0x5a, 0xe4, 0xd6, 0xa5, 0x77, - 0xab, 0x20, 0x8c, 0x01, 0x4b, 0xec, 0xc6, 0x1e, 0x1d, 0x9d, 0xbc, 0x3f, 0x52, 0x2e, 0x69, 0x1c, - 0xbb, 0xfe, 0x3c, 0x1a, 0xb6, 0xf8, 0xb3, 0x61, 0xe4, 0x84, 0xee, 0x2a, 0x1e, 0xd5, 0x6e, 0xed, - 0x50, 0x99, 0x5a, 0xd3, 0xc0, 0x59, 0x2f, 0x81, 0x12, 0xdd, 0xb3, 0x57, 0x21, 0xbd, 0xb5, 0xba, - 0x5d, 0xc4, 0x37, 0xe6, 0x68, 0xff, 0xb0, 0x0c, 0xfc, 0x39, 0xb5, 0x3a, 0x74, 0x0f, 0x2f, 0xce, - 0xc7, 0x56, 0xc7, 0x78, 0xf7, 0x16, 0x2f, 0x4f, 0x2c, 0x73, 0x6f, 0x8f, 0x3d, 0x3c, 0x99, 0xfc, - 0x63, 0x1d, 0xc4, 0x96, 0x31, 0x98, 0x36, 0xd7, 0xcb, 0xbf, 0x56, 0xd6, 0xd7, 0x6f, 0xfa, 0xb4, - 0x19, 0x46, 0xb7, 0x53, 0x71, 0x15, 0xfc, 0x35, 0x5f, 0xb9, 0x01, 0xbf, 0x81, 0xe6, 0xfc, 0xae, - 0x6b, 0x0c, 0x10, 0xbf, 0x17, 0x38, 0xee, 0x4a, 0x8f, 0xdd, 0x25, 0x0d, 0xd6, 0xb1, 0xee, 0xac, - 0xa3, 0x38, 0x58, 0x5e, 0xc6, 0x76, 0x18, 0x47, 0xd6, 0x8e, 0xa9, 0x47, 0xec, 0xea, 0xc8, 0x0d, - 0xe3, 0x07, 0xec, 0x0e, 0x9d, 0x0f, 0xcf, 0xce, 0x6e, 0x69, 0x18, 0xba, 0x53, 0x1a, 0x59, 0x5d, - 0x1d, 0x7a, 0x63, 0x33, 0xf8, 0x59, 0x85, 0x41, 0x1c, 0x58, 0x64, 0x11, 0xc7, 0xab, 0x3e, 0x19, - 0xcc, 0xd6, 0xbe, 0x13, 0xbb, 0x81, 0xaf, 0xfc, 0xae, 0x6a, 0x8f, 0x77, 0xae, 0x3f, 0x0d, 0xee, - 0x9a, 0xc1, 0x8a, 0xfa, 0x2a, 0x6b, 0x10, 0xf5, 0x5b, 0xad, 0x1b, 0x3f, 0x68, 0xde, 0x79, 0x74, - 0xda, 0x9c, 0xd3, 0xd6, 0x8c, 0xda, 0xf1, 0x3a, 0xa4, 0x51, 0x2b, 0x12, 0x9c, 0x6a, 0xfd, 0x04, - 0x6f, 0x1a, 0xf2, 0x8e, 0x68, 0xcf, 0x09, 0xbc, 0xf1, 0x06, 0xbc, 0x39, 0x8d, 0x3f, 0x5f, 0x9c, - 0xa8, 0xa4, 0x95, 0x36, 0xd6, 0xc9, 0x5f, 0x11, 0xf5, 0x66, 0xd9, 0x5e, 0xf3, 0xe3, 0xa9, 0x4a, - 0xb5, 0xc7, 0x90, 0x02, 0x1a, 0x5f, 0x41, 0x9c, 0xf1, 0x7b, 0x8f, 0x22, 0xd3, 0xc7, 0x0f, 0xec, - 0x55, 0xda, 0x34, 0x98, 0xcd, 0xb0, 0x69, 0xb6, 0x4d, 0x34, 0x7e, 0xf8, 0x04, 0xb3, 0x0b, 0x8f, - 0xbf, 0x1a, 0xdf, 0x9a, 0xb7, 0xb6, 0xb7, 0xa6, 0x56, 0xc3, 0x4c, 0xbb, 0x78, 0x81, 0x3d, 0xfd, - 0xd7, 0x4b, 0x95, 0xea, 0xbe, 0xb5, 0x63, 0x68, 0x8f, 0x1e, 0x8d, 0x95, 0xd8, 0x9a, 0x36, 0x9d, - 0x10, 0x86, 0x45, 0x05, 0x0c, 0x95, 0xf0, 0x49, 0x27, 0xda, 0x20, 0x6e, 0x02, 0xad, 0x07, 0x71, - 0x1c, 0xba, 0x93, 0x75, 0x4c, 0xe1, 0x45, 0xe8, 0x10, 0x9d, 0x6a, 0xfa, 0xe6, 0xf3, 0xf8, 0x61, - 0x45, 0x89, 0x4e, 0x62, 0x7a, 0x1f, 0xb7, 0xae, 0xed, 0x5b, 0x5b, 0x02, 0x28, 0x34, 0xb4, 0xa3, - 0x07, 0x1f, 0x40, 0xf8, 0x1a, 0x4c, 0xef, 0x24, 0x98, 0x3e, 0x34, 0xed, 0x15, 0xb0, 0x66, 0x7a, - 0xb8, 0x70, 0xbd, 0xa9, 0x1a, 0x63, 0x7b, 0x7b, 0x3a, 0x7d, 0x7f, 0x0b, 0x54, 0x9c, 0xb8, 0x11, - 0xc8, 0x3c, 0x0d, 0x55, 0x82, 0x34, 0x13, 0x5d, 0xd5, 0xac, 0xd1, 0xe3, 0x47, 0x1a, 0xff, 0xa1, - 0x6a, 0x3a, 0xc2, 0x1c, 0x9f, 0xc0, 0x85, 0xb3, 0xa0, 0xce, 0xcd, 0xa5, 0xab, 0x22, 0xb8, 0xcb, - 0x59, 0x49, 0xdf, 0x68, 0x3d, 0x59, 0xba, 0x31, 0xd1, 0xe3, 0xf0, 0xe1, 0x92, 0x5d, 0x6a, 0x7a, - 0xc3, 0xb4, 0x2c, 0x2e, 0x7c, 0xc0, 0xa2, 0xdd, 0x5d, 0x7e, 0xd9, 0x8c, 0x16, 0xee, 0x2c, 0x06, - 0x38, 0x2b, 0xd7, 0x3f, 0x0a, 0x83, 0x15, 0x4c, 0x9a, 0x1f, 0xa9, 0xda, 0x73, 0x39, 0x45, 0x20, - 0x54, 0x41, 0x08, 0x8c, 0x00, 0x8a, 0x40, 0x35, 0xa3, 0xc0, 0xa3, 0x4d, 0x2f, 0x98, 0xab, 0xe4, - 0x3d, 0x3e, 0x57, 0x04, 0x9b, 0x61, 0x86, 0x95, 0x99, 0xeb, 0x51, 0xc6, 0x30, 0xd0, 0xc5, 0x10, - 0x18, 0x7b, 0x22, 0x9e, 0x07, 0x33, 0x05, 0x3a, 0xce, 0xdc, 0xf9, 0x3a, 0xb4, 0xd9, 0xbc, 0x70, - 0x86, 0x29, 0x33, 0xdb, 0x45, 0x39, 0xfb, 0xd3, 0x3f, 0xf6, 0x9d, 0x60, 0xb9, 0x82, 0xe9, 0xa1, - 0xca, 0xca, 0x9e, 0x53, 0x65, 0x6a, 0xc7, 0xf6, 0x0e, 0x88, 0x49, 0x66, 0xf6, 0xa3, 0x45, 0x70, - 0x77, 0x15, 0xd8, 0x51, 0xcc, 0x67, 0xd3, 0xd4, 0x1e, 0x51, 0x47, 0x62, 0x0b, 0x05, 0x88, 0xc4, - 0xf8, 0x82, 0x4d, 0xa0, 0xeb, 0x03, 0xc9, 0xbf, 0x5f, 0x9d, 0x9e, 0x58, 0x14, 0xc6, 0xe2, 0x78, - 0x76, 0x14, 0xa1, 0x84, 0x58, 0xfe, 0xbe, 0x18, 0x46, 0x9f, 0x20, 0x24, 0xa2, 0x3b, 0x1e, 0xb5, - 0xc3, 0x2b, 0xae, 0x5c, 0xaa, 0x50, 0x32, 0x36, 0x81, 0xf1, 0x03, 0x8c, 0xcf, 0xf6, 0xdd, 0x25, - 0x23, 0xd5, 0x22, 0x7e, 0xe0, 0xc3, 0xa0, 0x44, 0x0b, 0x0b, 0xe6, 0x42, 0x76, 0x52, 0x25, 0x6d, - 0x20, 0xf8, 0x59, 0x54, 0x99, 0xeb, 0x66, 0x48, 0x57, 0x9e, 0xed, 0xa0, 0x28, 0x31, 0xa4, 0x04, - 0xc7, 0xa4, 0xb7, 0xdf, 0x19, 0x46, 0x66, 0x64, 0x93, 0x13, 0x17, 0x66, 0x2a, 0xc2, 0x71, 0xe9, - 0xb1, 0x6e, 0xeb, 0xae, 0xf6, 0xc8, 0xac, 0x0c, 0xe5, 0x56, 0xc6, 0xe7, 0x56, 0xc6, 0x16, 0x36, - 0x26, 0xe6, 0x06, 0xc6, 0x4d, 0xfb, 0xc3, 0x1c, 0x46, 0x67, 0x7f, 0x53, 0x39, 0x43, 0xa8, 0xc5, - 0x44, 0xe3, 0x1f, 0x6b, 0x0a, 0x22, 0x40, 0x3d, 0xea, 0xc4, 0x41, 0x78, 0xe0, 0x79, 0x2a, 0xf9, - 0x69, 0x79, 0x72, 0xa8, 0xb8, 0xfe, 0x6a, 0x1d, 0x7f, 0x45, 0x83, 0xf8, 0xef, 0xd6, 0xc9, 0x37, - 0x60, 0xd8, 0x2c, 0x08, 0x55, 0x17, 0xcc, 0x93, 0x3b, 0x84, 0x39, 0xa5, 0xfe, 0x3c, 0x5e, 0x0c, - 0xdc, 0x7a, 0x9d, 0x83, 0xf2, 0x2d, 0xfa, 0xd5, 0xfd, 0xd6, 0xc4, 0xd6, 0x4d, 0x10, 0xac, 0x08, - 0xa4, 0xda, 0x9f, 0xab, 0x86, 0xde, 0xd6, 0x06, 0xee, 0x0c, 0x26, 0xd7, 0x20, 0x96, 0xe5, 0x3f, - 0x3d, 0x91, 0x13, 0x53, 0x5e, 0xb4, 0xe5, 0xc5, 0x1e, 0x5e, 0xc8, 0x19, 0x2a, 0x83, 0xc2, 0x61, - 0xac, 0xd0, 0xfc, 0x1f, 0x83, 0x0a, 0x96, 0xe9, 0x34, 0x39, 0xb9, 0x22, 0xf5, 0x38, 0x55, 0x6c, - 0xdd, 0x34, 0xb4, 0x91, 0xd5, 0x33, 0x34, 0x74, 0x0f, 0xae, 0xbf, 0xa6, 0xcf, 0x00, 0xe1, 0x15, - 0x64, 0xe0, 0x45, 0x87, 0xd1, 0xb3, 0xbb, 0x4b, 0xc8, 0x0e, 0x27, 0x87, 0x41, 0x84, 0xfb, 0x86, - 0x99, 0x7b, 0xc2, 0x49, 0xb6, 0x2d, 0x6e, 0xa3, 0x9b, 0x80, 0xc9, 0xb1, 0x91, 0x3a, 0xd4, 0x19, - 0x46, 0x71, 0x05, 0x73, 0x23, 0x76, 0xd3, 0x84, 0x99, 0x20, 0x5a, 0x13, 0x78, 0xfa, 0xde, 0x76, - 0x16, 0x2a, 0xea, 0x0b, 0xe5, 0x70, 0x47, 0x0d, 0x73, 0x77, 0xd7, 0x6e, 0xae, 0xd6, 0xd1, 0x22, - 0x1d, 0xb4, 0x78, 0xa7, 0xa1, 0x48, 0xd8, 0xcd, 0x28, 0x80, 0x31, 0xfb, 0xd6, 0xc8, 0xb7, 0xac, - 0xb4, 0x45, 0x4a, 0x98, 0xa6, 0x09, 0x13, 0xc9, 0x55, 0xeb, 0xfb, 0x65, 0x10, 0x86, 0x0f, 0x3a, - 0x9b, 0x7b, 0xe5, 0xe7, 0xc7, 0x7f, 0xbd, 0x3c, 0xfb, 0xd4, 0xe4, 0xac, 0x75, 0x67, 0x0f, 0xaa, - 0xad, 0x3d, 0x2b, 0x8e, 0xed, 0xbf, 0x89, 0x95, 0x09, 0x55, 0xc0, 0x23, 0x4e, 0x9b, 0xdf, 0x35, - 0x3d, 0x05, 0x66, 0x11, 0xc2, 0xef, 0x66, 0xe0, 0xdf, 0x40, 0xed, 0xf5, 0x1d, 0x13, 0xc7, 0xd6, - 0xfa, 0x75, 0x47, 0xf5, 0x97, 0x8a, 0x65, 0x29, 0xe4, 0xf8, 0x82, 0x28, 0x4f, 0x4f, 0x8a, 0xbf, - 0xb4, 0x2c, 0x32, 0xbe, 0x22, 0x9a, 0xb2, 0xbb, 0xfb, 0x6b, 0x2b, 0x71, 0x57, 0xff, 0xa3, 0xb4, - 0x26, 0x50, 0x81, 0x66, 0x3b, 0xa4, 0x5c, 0x44, 0xc1, 0xa8, 0x78, 0x0f, 0x2f, 0x13, 0x8d, 0xd2, - 0x7b, 0x6d, 0xb9, 0x75, 0x73, 0x70, 0x9d, 0xca, 0xef, 0xb5, 0x94, 0x5f, 0x0f, 0x26, 0xf6, 0xfa, - 0x05, 0xf9, 0xf5, 0xa4, 0xe0, 0x78, 0x52, 0x70, 0x3c, 0x29, 0x38, 0x9e, 0x14, 0x1c, 0x4f, 0x7b, - 0x64, 0xed, 0xe1, 0xd2, 0xf2, 0x72, 0x90, 0x4c, 0x8d, 0x63, 0x0a, 0x4a, 0x31, 0xbd, 0x56, 0xc6, - 0x83, 0x17, 0x64, 0x9c, 0x0b, 0xed, 0x75, 0x22, 0xb4, 0x19, 0x9e, 0x64, 0x9e, 0x6f, 0xf0, 0xfc, - 0xdc, 0xf5, 0x99, 0xcd, 0xf5, 0x5c, 0x07, 0xa5, 0x20, 0xbe, 0xa3, 0xd4, 0x07, 0xe6, 0x27, 0xba, - 0xf8, 0xdc, 0xc2, 0x1b, 0x41, 0xf4, 0xf3, 0x0e, 0x63, 0xf5, 0x75, 0x8e, 0xd5, 0xd7, 0x59, 0x56, - 0x3f, 0xc3, 0x7f, 0x1c, 0xc1, 0x8e, 0x91, 0x5a, 0x9e, 0xc4, 0xcd, 0xa0, 0x5f, 0x96, 0xda, 0x81, - 0xb6, 0x3b, 0x03, 0xa7, 0x89, 0x91, 0x13, 0x0c, 0xf9, 0x88, 0xce, 0xec, 0xb5, 0x87, 0x3e, 0x67, - 0x47, 0x1a, 0x2c, 0x49, 0x32, 0x30, 0x2d, 0x0e, 0x56, 0xe7, 0xe0, 0x87, 0xec, 0xb9, 0xcd, 0x0d, - 0xaa, 0x10, 0x49, 0x16, 0x3d, 0x8d, 0x4c, 0x30, 0x97, 0xc2, 0x22, 0x91, 0xab, 0x20, 0x50, 0x96, - 0xb6, 0xff, 0xa0, 0x40, 0xf8, 0x16, 0x29, 0x20, 0x00, 0xca, 0x92, 0x2a, 0x71, 0xa0, 0x2c, 0x6c, - 0x7f, 0xea, 0xd1, 0x1d, 0x32, 0x40, 0x63, 0x39, 0x34, 0x69, 0x67, 0x77, 0x57, 0xf5, 0xeb, 0x16, - 0xf9, 0xd3, 0xff, 0x33, 0x3c, 0x04, 0xa7, 0x05, 0x51, 0x51, 0x08, 0xaa, 0x80, 0xde, 0xc8, 0xf6, - 0x95, 0xf7, 0x97, 0xe7, 0x7b, 0xed, 0x26, 0x91, 0x8e, 0xca, 0xd7, 0x9e, 0x19, 0xe9, 0xcc, 0xbf, - 0xfe, 0x61, 0x7b, 0xee, 0xd4, 0x8d, 0x1f, 0x54, 0x0d, 0xbd, 0x25, 0x3c, 0xe5, 0x4e, 0x55, 0xcd, - 0x58, 0x6c, 0xea, 0x33, 0x7f, 0x2c, 0x0c, 0x2e, 0xf3, 0x40, 0x18, 0x6e, 0x82, 0xee, 0x33, 0x08, - 0x74, 0x3a, 0x60, 0x1d, 0x4f, 0x0e, 0x04, 0x1f, 0xe8, 0x3e, 0x0f, 0x20, 0xfb, 0x86, 0x2e, 0x1b, - 0x43, 0x5b, 0xee, 0x69, 0xa6, 0x6e, 0x04, 0x2e, 0xe2, 0x01, 0xda, 0x10, 0xd7, 0xf7, 0x5c, 0xf0, - 0x35, 0x7d, 0xe1, 0x72, 0x58, 0xd3, 0x55, 0xb4, 0x6e, 0xbf, 0xa2, 0x6d, 0x0e, 0xdf, 0xc8, 0xd8, - 0xdd, 0x4d, 0x62, 0x86, 0xcf, 0xc7, 0x79, 0xca, 0x4f, 0x0e, 0xf2, 0x9e, 0xe2, 0xe4, 0x00, 0x8c, - 0x17, 0xef, 0xb7, 0x49, 0x35, 0xa7, 0xe0, 0xe4, 0x00, 0xd0, 0x16, 0x48, 0xe8, 0x1a, 0x56, 0x09, - 0x19, 0x79, 0x64, 0x92, 0x86, 0xc7, 0xe8, 0xce, 0x8d, 0xc1, 0x20, 0x96, 0x30, 0x0a, 0xc2, 0x32, - 0x7d, 0x93, 0x0c, 0x80, 0xad, 0x67, 0xb4, 0x26, 0x43, 0x12, 0xa8, 0x9b, 0x63, 0x47, 0x54, 0x31, - 0xfa, 0xa5, 0xa0, 0x4c, 0x5d, 0x4c, 0xcc, 0x60, 0x02, 0x01, 0xde, 0xcd, 0x80, 0xb5, 0xdd, 0x33, - 0xfa, 0x05, 0x04, 0x7b, 0x46, 0xae, 0x45, 0xb7, 0xa4, 0x45, 0x37, 0xdb, 0xa2, 0x5b, 0xd2, 0xa2, - 0x9b, 0x6b, 0xd1, 0x2e, 0x6b, 0xd2, 0x4e, 0xda, 0x4c, 0xb9, 0xf0, 0xf7, 0xb7, 0x30, 0x54, 0xb2, - 0xf2, 0x99, 0xb5, 0x59, 0x9a, 0xd0, 0x20, 0x8d, 0x65, 0x50, 0xa8, 0x33, 0x31, 0x33, 0x8d, 0x4f, - 0xe9, 0x12, 0xe3, 0x05, 0x19, 0xd2, 0xbe, 0x60, 0x64, 0x0e, 0x49, 0xdd, 0x4f, 0x8d, 0x0c, 0x84, - 0x49, 0xf5, 0x17, 0x7a, 0x5c, 0x9e, 0x6c, 0xf4, 0x40, 0x34, 0x36, 0xc4, 0x09, 0x49, 0x9c, 0x8e, - 0x43, 0x3d, 0x92, 0xac, 0x07, 0x5d, 0xb3, 0xad, 0xce, 0xaf, 0x10, 0x3f, 0xd1, 0xe1, 0x5e, 0x7b, - 0x5f, 0x6d, 0xbf, 0x05, 0x8b, 0xb5, 0xbb, 0xdb, 0x7e, 0x07, 0x3f, 0x4f, 0x4f, 0x6a, 0xfc, 0xab, - 0xd5, 0xd6, 0xf4, 0x54, 0x31, 0xf7, 0x30, 0x22, 0x2d, 0xa3, 0xd3, 0xc8, 0x61, 0xdd, 0xa7, 0xa3, - 0x76, 0x6f, 0xbf, 0x6d, 0xfc, 0x1a, 0xd7, 0xed, 0xbe, 0xd9, 0x65, 0x3f, 0x08, 0x64, 0x64, 0x01, - 0x14, 0xfe, 0xb2, 0xc7, 0x1e, 0xbe, 0x65, 0x7f, 0xd9, 0x83, 0x0e, 0xbb, 0xdc, 0xc3, 0xbf, 0x1a, - 0x3c, 0xd9, 0x03, 0xb7, 0x4b, 0x87, 0x9d, 0xde, 0x7e, 0x97, 0x3f, 0x4b, 0x79, 0x08, 0x92, 0x4a, - 0x59, 0x14, 0x89, 0x23, 0xc3, 0x78, 0x52, 0x8f, 0xf1, 0x0f, 0x8e, 0x91, 0xcb, 0xd6, 0x72, 0x75, - 0x67, 0x87, 0x3e, 0xd8, 0x8b, 0xc2, 0x4c, 0xb1, 0xc1, 0x9f, 0x4a, 0x5d, 0xfb, 0xad, 0x6d, 0x18, - 0x05, 0x3d, 0x80, 0x99, 0xb7, 0xac, 0x9c, 0xe8, 0x0a, 0x0b, 0x60, 0x99, 0xed, 0x7e, 0x41, 0x57, - 0x55, 0xf1, 0x2e, 0x2f, 0xeb, 0xfa, 0xb6, 0x40, 0x8e, 0x07, 0x1c, 0x32, 0x92, 0xbb, 0xfa, 0x96, - 0x09, 0x3b, 0x5c, 0x08, 0x3b, 0xb8, 0xfb, 0x73, 0x8b, 0x1e, 0x49, 0x0f, 0xd2, 0x99, 0x77, 0xe5, - 0xe4, 0xa2, 0x1b, 0xe5, 0xc6, 0xc6, 0x98, 0x92, 0xba, 0x97, 0x15, 0xbc, 0x00, 0xbd, 0xd1, 0xee, - 0x6e, 0x30, 0x7c, 0xf7, 0x76, 0x9f, 0x1c, 0x9f, 0x2b, 0x90, 0x1c, 0x40, 0x36, 0x18, 0xf5, 0x49, - 0x3f, 0x18, 0x75, 0xde, 0xed, 0x93, 0x23, 0x30, 0xf6, 0xca, 0xc7, 0xf3, 0xe3, 0x33, 0xfe, 0xc4, - 0xdc, 0x27, 0x78, 0x83, 0xef, 0x09, 0x7f, 0x2a, 0xac, 0x98, 0x59, 0x04, 0xdc, 0x79, 0x87, 0x70, - 0xdf, 0x76, 0xf6, 0xc9, 0xa1, 0x77, 0x23, 0x61, 0x80, 0xc7, 0xb0, 0xeb, 0x96, 0x10, 0xf0, 0x40, - 0xf7, 0x20, 0xe7, 0xb1, 0xcc, 0x81, 0x33, 0xec, 0x0e, 0x1c, 0xe9, 0xd6, 0xa3, 0x0a, 0xe1, 0x21, - 0x75, 0x07, 0x50, 0x80, 0xf4, 0x0c, 0x22, 0x60, 0x69, 0x86, 0xf0, 0xdd, 0x5d, 0x67, 0xd8, 0x79, - 0x7a, 0xe2, 0x18, 0x21, 0x1b, 0x72, 0xd8, 0xb5, 0x89, 0x2f, 0xbb, 0xd0, 0xc4, 0xa9, 0x77, 0x8c, - 0x61, 0xb0, 0xaf, 0x46, 0x15, 0x0a, 0xa9, 0x47, 0x10, 0xc5, 0xff, 0x63, 0xed, 0x86, 0xcc, 0x5a, - 0x69, 0xfd, 0x62, 0x43, 0x3e, 0xe7, 0xd9, 0x66, 0x90, 0x9e, 0x27, 0x2e, 0x10, 0xe2, 0x3b, 0xd0, - 0x05, 0xce, 0xe0, 0x70, 0xc6, 0xd8, 0x20, 0x2d, 0x56, 0xc9, 0xb3, 0xa7, 0xa7, 0x3d, 0x20, 0x31, - 0xd0, 0x03, 0x26, 0xbb, 0x01, 0xc8, 0x2e, 0xf4, 0xad, 0xd4, 0x6a, 0x2f, 0x93, 0xf7, 0x42, 0x30, - 0xa2, 0x67, 0x01, 0x42, 0xec, 0x0a, 0xce, 0xff, 0xc6, 0x62, 0xf0, 0xf6, 0x31, 0x9f, 0xdc, 0x31, - 0xfb, 0x2c, 0xad, 0x7c, 0xd6, 0xe3, 0x27, 0xcb, 0x87, 0x29, 0x30, 0x7f, 0x43, 0x14, 0xed, 0x36, - 0x32, 0xa4, 0xdd, 0xc3, 0xeb, 0x3d, 0x76, 0xdd, 0x61, 0x9c, 0xeb, 0x00, 0xe7, 0x3a, 0x7b, 0x3b, - 0x56, 0xf0, 0xf4, 0xd4, 0xeb, 0x21, 0x4d, 0x0c, 0xba, 0x13, 0x30, 0xe8, 0x79, 0x16, 0x64, 0xb8, - 0x8d, 0xfd, 0x2d, 0x01, 0xa0, 0xb7, 0xcf, 0x79, 0xd3, 0x4f, 0x78, 0xc9, 0x40, 0x4c, 0xdd, 0x39, - 0xc0, 0xa8, 0x93, 0x3b, 0x52, 0x84, 0x23, 0xc9, 0x28, 0xa8, 0x54, 0x96, 0xc2, 0x72, 0x86, 0x7c, - 0x39, 0xcb, 0x33, 0xc4, 0xd0, 0xf2, 0xe8, 0x9c, 0x12, 0x74, 0xaf, 0xa4, 0x34, 0x24, 0x5b, 0x46, - 0xbc, 0xbd, 0x6b, 0x44, 0xfe, 0x67, 0x98, 0x35, 0x2b, 0x83, 0x63, 0xbe, 0x4d, 0x27, 0xcd, 0xea, - 0x1a, 0x52, 0xa1, 0xca, 0x02, 0x09, 0x09, 0xc7, 0x2e, 0xc0, 0xf1, 0x61, 0x9a, 0x0d, 0x98, 0xe6, - 0xed, 0xfd, 0xbc, 0x12, 0xfc, 0x9d, 0xde, 0x36, 0x8c, 0x60, 0xd2, 0x8a, 0xd6, 0x24, 0x1d, 0xec, - 0xb1, 0x7f, 0x0b, 0xb1, 0x17, 0x9d, 0x2a, 0x90, 0x4b, 0x43, 0xc8, 0x0f, 0x7d, 0x2f, 0x20, 0x50, - 0x04, 0xdb, 0x34, 0x55, 0xd4, 0x30, 0x88, 0x6d, 0x7c, 0x65, 0xf6, 0x8c, 0xff, 0xfe, 0x2f, 0x2d, - 0x09, 0x85, 0xa6, 0xdb, 0xe1, 0x4d, 0xe9, 0x3d, 0x9a, 0x10, 0xb6, 0x46, 0xd6, 0x27, 0xcf, 0x62, - 0xfa, 0xef, 0x8a, 0xf3, 0x1e, 0x17, 0x08, 0x8e, 0x99, 0x50, 0x81, 0xbd, 0x3d, 0xf8, 0xd2, 0xe4, - 0xb6, 0x95, 0x4e, 0x19, 0x40, 0x4b, 0xc4, 0x27, 0x87, 0x17, 0x99, 0x38, 0x43, 0xe3, 0xeb, 0x73, - 0x3f, 0x94, 0x6a, 0x83, 0xe5, 0x35, 0xf4, 0x08, 0xfe, 0x85, 0xe0, 0x62, 0xd2, 0xb4, 0xdb, 0x2b, - 0xa4, 0xdd, 0x2b, 0xcb, 0xab, 0x48, 0xbb, 0xf5, 0x75, 0xe9, 0x2b, 0x99, 0xcf, 0x1c, 0x42, 0x9e, - 0xb0, 0x12, 0xb9, 0x0a, 0xe6, 0x36, 0x2b, 0x99, 0xdb, 0xac, 0xb4, 0x4a, 0x03, 0xb2, 0x66, 0xfa, - 0x02, 0x5e, 0xd5, 0x62, 0xab, 0x0b, 0x83, 0x92, 0xce, 0x32, 0x31, 0x5a, 0xc9, 0xc4, 0x88, 0xe3, - 0x78, 0x39, 0xaf, 0x59, 0x67, 0x02, 0x08, 0x96, 0xd4, 0x3c, 0x32, 0xea, 0x11, 0x19, 0xf8, 0x47, - 0x9d, 0xdf, 0xb8, 0x3e, 0xb0, 0x84, 0x5d, 0xf2, 0x29, 0x72, 0x02, 0x2f, 0x08, 0x2d, 0xf2, 0xd3, - 0x6c, 0x36, 0x23, 0x83, 0x24, 0x0b, 0x4a, 0x3a, 0xa6, 0xab, 0xa4, 0x69, 0xff, 0x86, 0x99, 0x59, - 0x09, 0xd8, 0x46, 0xb7, 0x4c, 0xe8, 0x56, 0x62, 0x25, 0xc0, 0x2b, 0xac, 0x04, 0x78, 0x1b, 0x2b, - 0x01, 0x4e, 0xc5, 0x4a, 0x00, 0xce, 0xdf, 0x3f, 0xb3, 0x14, 0xe0, 0x6c, 0x59, 0x0a, 0xb8, 0x06, - 0xb9, 0xb8, 0x4e, 0xe5, 0x02, 0xd3, 0x59, 0x18, 0x9e, 0xbb, 0x63, 0x5d, 0x73, 0x9a, 0x6e, 0x81, - 0xca, 0x97, 0xd2, 0xda, 0x5b, 0xc9, 0x85, 0x5b, 0xc9, 0x85, 0x5b, 0xc9, 0x85, 0x5b, 0xc9, 0x85, - 0xdb, 0x4c, 0x5a, 0x7b, 0x5b, 0x9a, 0xd6, 0x2e, 0x4b, 0x31, 0xbd, 0x36, 0xad, 0x5d, 0x6e, 0x4b, - 0x6b, 0x39, 0xfb, 0xaf, 0x0b, 0xec, 0x4f, 0x9f, 0x6c, 0xb2, 0x28, 0x7d, 0x87, 0xd0, 0xb4, 0xe7, - 0x67, 0x87, 0x2f, 0x43, 0x00, 0x6b, 0x69, 0x66, 0x19, 0x22, 0x33, 0x83, 0xda, 0x7e, 0x51, 0xae, - 0xc0, 0x3b, 0x93, 0x7e, 0xe1, 0xf1, 0xc6, 0xca, 0xc6, 0x36, 0x90, 0x24, 0x08, 0x6d, 0x7f, 0x8e, - 0x86, 0x83, 0x89, 0xe8, 0xf3, 0x33, 0xf5, 0x22, 0xca, 0xb8, 0x35, 0x2b, 0xeb, 0x81, 0xb4, 0x0e, - 0xb2, 0x4b, 0xf7, 0x90, 0x99, 0xa5, 0x0b, 0xf7, 0x5f, 0xd7, 0xdf, 0xc0, 0xee, 0x30, 0x2b, 0xe5, - 0x45, 0xa8, 0x30, 0xc2, 0x73, 0x05, 0xc2, 0x74, 0x89, 0x87, 0x60, 0xb6, 0x30, 0xd5, 0x01, 0xcb, - 0x93, 0x85, 0xa4, 0xcf, 0x20, 0x32, 0x50, 0x1f, 0x52, 0xac, 0x05, 0x38, 0x9a, 0x56, 0x9f, 0x8d, - 0x02, 0x0c, 0x86, 0xac, 0x87, 0xfa, 0x4c, 0xd3, 0x67, 0xa3, 0x10, 0x6e, 0x42, 0x0b, 0x2e, 0x7f, - 0x4c, 0x7b, 0x87, 0xe8, 0xaf, 0xd4, 0xa8, 0x0e, 0x3d, 0x81, 0xf1, 0x1c, 0x0f, 0x5a, 0x55, 0x5c, - 0x00, 0x3f, 0x14, 0x9b, 0x35, 0x22, 0x3c, 0x58, 0x15, 0x9e, 0x5b, 0x56, 0xb4, 0x4f, 0x80, 0x5f, - 0x2a, 0xa9, 0x47, 0x75, 0xa2, 0xac, 0x16, 0x0f, 0x91, 0xeb, 0xd8, 0x9e, 0xb4, 0xea, 0x4b, 0x23, - 0x97, 0xe9, 0xd8, 0x3a, 0xdf, 0x31, 0xb1, 0x5b, 0x18, 0xea, 0xff, 0x0a, 0xa9, 0xbf, 0x70, 0x43, - 0x13, 0x3b, 0x75, 0xc2, 0x13, 0xdb, 0xb9, 0x99, 0x87, 0xc1, 0xda, 0x9f, 0x5a, 0xdf, 0xd1, 0x8c, - 0xdb, 0x61, 0x63, 0x1e, 0xda, 0x53, 0x17, 0x57, 0xf3, 0xdf, 0x19, 0x53, 0x3a, 0xd7, 0x95, 0x9f, - 0x1f, 0xf9, 0xda, 0xc1, 0x5b, 0x63, 0x9f, 0x5f, 0xbc, 0x83, 0x28, 0x9d, 0xcd, 0x7e, 0x66, 0x06, - 0x1d, 0xc7, 0x21, 0xcf, 0x8a, 0x21, 0x1b, 0x3f, 0xff, 0xa2, 0x2b, 0x3f, 0x75, 0x3a, 0x9d, 0xf4, - 0x5e, 0x01, 0xfc, 0xbf, 0x68, 0xdf, 0xc5, 0x6c, 0xd0, 0x69, 0x55, 0x4a, 0x10, 0x8e, 0x4e, 0xed, - 0x78, 0x81, 0xd6, 0x48, 0x65, 0x76, 0x54, 0xef, 0x19, 0x86, 0xf6, 0xf4, 0xc4, 0x31, 0xf7, 0x8c, - 0x72, 0xff, 0x58, 0x02, 0x8f, 0x8b, 0xa3, 0x84, 0x66, 0xdf, 0x97, 0x40, 0x33, 0x8d, 0xcd, 0x81, - 0x08, 0x37, 0x07, 0x89, 0x66, 0x14, 0xf8, 0x39, 0x66, 0xa6, 0xf8, 0x7b, 0xc6, 0x2f, 0xb8, 0x0a, - 0x0f, 0xe0, 0x9a, 0xb8, 0x72, 0xa2, 0x2c, 0xe9, 0x32, 0x08, 0x1f, 0x48, 0x3d, 0x5d, 0x61, 0xd9, - 0xff, 0xae, 0xa8, 0xc3, 0xc9, 0xe8, 0xfd, 0xc5, 0xc5, 0xd9, 0x45, 0x5f, 0xf9, 0xcc, 0x56, 0x4a, - 0x02, 0xf0, 0xc7, 0xc0, 0x0c, 0x96, 0x7d, 0x8e, 0x77, 0x86, 0xad, 0xc9, 0x48, 0xfb, 0x0e, 0x21, - 0xba, 0xd6, 0x07, 0x78, 0x06, 0x5f, 0x81, 0x59, 0x41, 0x0b, 0xe1, 0xc0, 0x99, 0x53, 0x9c, 0x5b, - 0x8c, 0x76, 0x87, 0xba, 0x9e, 0xaa, 0x02, 0xd8, 0x7a, 0xf4, 0x2b, 0xcf, 0x6e, 0xb4, 0x56, 0x17, - 0x46, 0xd1, 0x6a, 0x0f, 0xe6, 0xd6, 0x7c, 0xd4, 0xdd, 0x4f, 0x5b, 0xcd, 0xb5, 0xfe, 0x9c, 0x75, - 0x7d, 0xc0, 0xf5, 0xa2, 0x13, 0x48, 0xce, 0xad, 0xc2, 0xca, 0x84, 0x7e, 0x6c, 0x65, 0x53, 0xaa, - 0x74, 0xc5, 0x62, 0x3e, 0x34, 0x9b, 0x46, 0x7b, 0x77, 0x77, 0xe7, 0x04, 0xfe, 0x1d, 0xef, 0x03, - 0x88, 0xf7, 0x97, 0xe7, 0x4a, 0xf7, 0x0f, 0x5c, 0x6c, 0x54, 0xee, 0xdc, 0x78, 0xa1, 0x98, 0x07, - 0xca, 0xe7, 0xcb, 0xb1, 0x12, 0xad, 0x57, 0x2b, 0xef, 0x81, 0xf4, 0xd5, 0x87, 0xba, 0x75, 0xb2, - 0x4f, 0xcc, 0xf6, 0x1f, 0x0a, 0xe9, 0x1f, 0xef, 0x93, 0x2f, 0x97, 0xed, 0x9e, 0xd9, 0x55, 0xf8, - 0x3d, 0x81, 0x8e, 0x44, 0x87, 0x16, 0x73, 0xfc, 0x43, 0x0e, 0x44, 0x2f, 0x5c, 0x48, 0xf3, 0x59, - 0x48, 0x80, 0x2b, 0x4d, 0x38, 0x6c, 0xc2, 0x23, 0x80, 0x45, 0xf5, 0x60, 0x4d, 0x3e, 0x5a, 0x7d, - 0x62, 0x11, 0x95, 0xad, 0x52, 0x05, 0x51, 0xac, 0xd0, 0xd9, 0x0c, 0xc0, 0x44, 0xba, 0xf2, 0x9f, - 0x64, 0x30, 0xa9, 0x5b, 0x0b, 0x6b, 0x91, 0xe3, 0xc4, 0x42, 0xeb, 0x2f, 0xf4, 0x09, 0x43, 0xec, - 0x46, 0x0a, 0xf5, 0x83, 0xf5, 0x7c, 0xa1, 0x0d, 0x27, 0xe1, 0x28, 0x5d, 0x0b, 0xca, 0x4d, 0xef, - 0x43, 0x6e, 0x89, 0x28, 0x7d, 0x7e, 0x8c, 0xfa, 0x36, 0xe1, 0x2f, 0xaf, 0xb9, 0x4c, 0xe4, 0xc5, - 0xb5, 0x27, 0x38, 0x79, 0x7c, 0x25, 0x92, 0x53, 0x22, 0x25, 0x33, 0xb3, 0x75, 0x66, 0x47, 0xf1, - 0x7b, 0x7f, 0x2a, 0x56, 0xf6, 0xe8, 0xd0, 0x94, 0xab, 0x75, 0xc6, 0xe0, 0xf6, 0xa5, 0xf5, 0x86, - 0x4b, 0x10, 0x2c, 0xda, 0x00, 0x37, 0x92, 0x9a, 0x90, 0xfa, 0xcb, 0x4b, 0x14, 0x9b, 0x5d, 0x06, - 0x7c, 0xc9, 0xef, 0x65, 0x53, 0x55, 0xe8, 0x28, 0x28, 0xf5, 0x59, 0x0e, 0xe5, 0xf3, 0x1c, 0x0a, - 0x52, 0x6f, 0x4d, 0x77, 0xa3, 0x4f, 0xf6, 0x27, 0xf5, 0x56, 0xdb, 0x37, 0xfa, 0xb7, 0xe9, 0x50, - 0x21, 0xa9, 0xc5, 0x49, 0x4d, 0xb6, 0x09, 0xf9, 0xb6, 0xc5, 0x06, 0xba, 0x43, 0xb9, 0xa7, 0xa3, - 0x12, 0xf7, 0xf2, 0x0a, 0x97, 0x0e, 0xad, 0x38, 0x89, 0xdd, 0x66, 0xea, 0x8e, 0x0a, 0x69, 0x16, - 0xb8, 0x2d, 0x7b, 0x84, 0x91, 0xd4, 0xb8, 0x8e, 0x5b, 0x37, 0x4f, 0x4f, 0x0d, 0xfe, 0x10, 0x24, - 0xda, 0x16, 0x3e, 0xd5, 0xe5, 0x49, 0x1f, 0x44, 0x88, 0x84, 0xf9, 0x51, 0x6c, 0x20, 0x97, 0xab, - 0xbf, 0x0f, 0xa7, 0xee, 0xad, 0xc2, 0x36, 0x8f, 0x2c, 0x86, 0x64, 0xf4, 0xa7, 0x3f, 0x5c, 0x84, - 0xf2, 0x49, 0xb4, 0xf4, 0xf0, 0xc9, 0xcf, 0x8f, 0x76, 0xdd, 0x7c, 0xee, 0xc3, 0x2b, 0x1e, 0x6a, - 0x28, 0x7c, 0x7f, 0xfb, 0xe4, 0x0a, 0x5e, 0x3c, 0x13, 0x05, 0x02, 0x95, 0x05, 0x9a, 0x05, 0x8b, - 0x7c, 0x3e, 0x56, 0xe3, 0x10, 0xd8, 0x41, 0x46, 0xf0, 0x86, 0x93, 0x85, 0x13, 0xfd, 0x66, 0x18, - 0xac, 0xd8, 0xb0, 0x45, 0x82, 0xda, 0x6e, 0x13, 0x45, 0x86, 0xbc, 0x23, 0xa6, 0x0e, 0xf7, 0xc3, - 0x16, 0x6f, 0x32, 0xda, 0x68, 0xba, 0x67, 0x90, 0xd1, 0xe5, 0xdf, 0xde, 0xf6, 0xcc, 0xb6, 0x72, - 0xf1, 0x71, 0xfc, 0xa5, 0xb2, 0x99, 0x49, 0x46, 0x57, 0xa7, 0x66, 0xcf, 0xec, 0x54, 0xb5, 0x68, - 0x77, 0x08, 0x24, 0x99, 0xc6, 0xcd, 0xef, 0xff, 0x51, 0xd9, 0xa2, 0xcb, 0x61, 0xb4, 0xdf, 0x55, - 0xb6, 0x78, 0x4b, 0x46, 0x9f, 0x0f, 0x2f, 0x7b, 0xef, 0x8c, 0xbd, 0xca, 0x26, 0xef, 0x64, 0x93, - 0xce, 0x56, 0x82, 0xbb, 0x30, 0x2e, 0x1c, 0xb9, 0x61, 0x56, 0xb6, 0x80, 0x21, 0x1d, 0x9c, 0x1f, - 0x98, 0x46, 0xbb, 0xb2, 0x45, 0x9b, 0x8c, 0x4e, 0xce, 0x8f, 0x7a, 0x3d, 0xe3, 0x6d, 0x65, 0x93, - 0x0e, 0x6b, 0xf2, 0xb6, 0x57, 0x4d, 0x71, 0x77, 0x8f, 0x8c, 0xce, 0xdf, 0xf5, 0xcc, 0xca, 0x06, - 0xe6, 0x3b, 0x4e, 0xaa, 0x69, 0x2a, 0x5f, 0x16, 0x6e, 0x4c, 0xab, 0xda, 0x75, 0x60, 0x48, 0x67, - 0x7e, 0xeb, 0x6c, 0x36, 0xab, 0x6c, 0x01, 0x43, 0x3a, 0xff, 0x72, 0xfa, 0x02, 0x98, 0x36, 0x6f, - 0x74, 0x78, 0x78, 0x55, 0xd9, 0x64, 0x8f, 0x37, 0x01, 0x06, 0x57, 0x36, 0xe9, 0x24, 0x4d, 0x2a, - 0xe7, 0xa0, 0xd3, 0x4d, 0xda, 0xd4, 0xb3, 0xd8, 0xfe, 0xbc, 0xdf, 0x73, 0x76, 0x1a, 0x8d, 0x8d, - 0xc6, 0x6f, 0xd3, 0xc6, 0x47, 0x99, 0xd6, 0x8d, 0x06, 0x34, 0xa7, 0x6f, 0x9e, 0x41, 0x39, 0xf2, - 0x1d, 0x7a, 0xc0, 0x8e, 0xa3, 0xa3, 0x73, 0xec, 0xa0, 0xa8, 0x3e, 0x8d, 0xef, 0x82, 0xf0, 0x46, - 0x4b, 0x71, 0xf8, 0xa5, 0x58, 0x7a, 0xc0, 0xa1, 0xf7, 0x66, 0x73, 0xcf, 0x2c, 0xef, 0xc6, 0x91, - 0x15, 0x51, 0x01, 0xcb, 0x0e, 0xc2, 0xb8, 0xf1, 0x89, 0xc6, 0x95, 0xe8, 0x36, 0xbb, 0xf4, 0x12, - 0xea, 0xbe, 0x94, 0xb7, 0x6f, 0x71, 0x0d, 0x1d, 0xa1, 0x37, 0x80, 0x5b, 0xb4, 0x13, 0xee, 0xd4, - 0x22, 0x4e, 0xc0, 0x95, 0x9e, 0x99, 0x77, 0x8b, 0x08, 0xfb, 0xde, 0x17, 0xd1, 0xc6, 0xe8, 0x10, - 0xc3, 0x09, 0xe5, 0x2c, 0x9c, 0xd2, 0xb0, 0x60, 0x2f, 0x0e, 0xcf, 0x58, 0xd7, 0x22, 0x31, 0xc0, - 0xa9, 0x8f, 0x17, 0xe3, 0x6a, 0x62, 0x81, 0x29, 0xd9, 0xa9, 0x2e, 0xbc, 0x87, 0xe1, 0x8f, 0x2f, - 0x3e, 0x56, 0xbf, 0x07, 0x71, 0xb9, 0x18, 0x6f, 0x79, 0x0f, 0xb2, 0x32, 0xfe, 0x78, 0x51, 0xfd, - 0x1e, 0xe4, 0xe4, 0xe3, 0xf8, 0xa2, 0x94, 0x39, 0x2d, 0xe0, 0x4b, 0x96, 0x3d, 0x53, 0x77, 0x8e, - 0x83, 0xbc, 0x2b, 0x30, 0x88, 0xf9, 0xba, 0xd1, 0xe5, 0x9d, 0xbd, 0xea, 0x2b, 0x79, 0xb6, 0x7c, - 0x11, 0x6c, 0x29, 0x32, 0xe5, 0x13, 0xf4, 0xa9, 0xd4, 0x4a, 0x50, 0x4a, 0x65, 0x57, 0xa9, 0x54, - 0x80, 0x36, 0x7f, 0xff, 0xb1, 0xd2, 0x62, 0xf2, 0xf7, 0xe9, 0xa8, 0x5e, 0x1c, 0x93, 0x57, 0x31, - 0xa6, 0x43, 0x2f, 0x70, 0x6e, 0x36, 0x07, 0x75, 0x79, 0x5e, 0x35, 0xa8, 0x4b, 0x2f, 0xb8, 0xa3, - 0x51, 0xbc, 0x65, 0x5c, 0xd8, 0x62, 0xcb, 0xb0, 0x3e, 0x05, 0xe1, 0xd2, 0xf6, 0xb6, 0x8c, 0xeb, - 0x83, 0x5d, 0x0d, 0xbe, 0xc3, 0x5f, 0xe7, 0x08, 0x28, 0x1b, 0x38, 0xfe, 0x44, 0x2b, 0xdb, 0x67, - 0x0c, 0x58, 0x45, 0x53, 0x3e, 0x1a, 0xbe, 0xce, 0x03, 0x1d, 0xe0, 0xcd, 0x48, 0x19, 0xf2, 0x8d, - 0x63, 0x2c, 0xcd, 0xb1, 0x88, 0xbf, 0x5e, 0x4e, 0x68, 0x48, 0xa4, 0x6b, 0xbc, 0xe4, 0x5a, 0x82, - 0xbd, 0xbd, 0x88, 0x5f, 0x0b, 0x9f, 0xea, 0x29, 0x3c, 0x1d, 0x23, 0x0a, 0xae, 0x24, 0x00, 0x47, - 0x30, 0x44, 0x46, 0xcd, 0x7f, 0x67, 0x12, 0x49, 0xe5, 0xcf, 0x8f, 0x32, 0x16, 0xb2, 0x35, 0xe6, - 0x60, 0x19, 0x26, 0xf0, 0xc7, 0x99, 0x44, 0x0e, 0x81, 0x7e, 0xb3, 0xd0, 0xdd, 0x0e, 0x70, 0x0f, - 0x6c, 0x40, 0x14, 0xb9, 0x18, 0xac, 0xb4, 0x46, 0xbb, 0xfe, 0x24, 0x5a, 0x0d, 0x8a, 0x73, 0xe8, - 0x54, 0x2a, 0xee, 0x09, 0x8b, 0x2b, 0xfa, 0x5b, 0x07, 0x75, 0x98, 0x1f, 0x88, 0x18, 0x81, 0x29, - 0x46, 0xc0, 0xa2, 0xf6, 0xf3, 0xf1, 0x33, 0x49, 0xa7, 0x32, 0x25, 0x29, 0x19, 0x02, 0xd2, 0x4a, - 0x80, 0x42, 0xce, 0x6c, 0x61, 0x5c, 0x5a, 0x05, 0x8e, 0x1b, 0x82, 0xe3, 0x6c, 0x91, 0x5e, 0x30, - 0x7c, 0x1b, 0x69, 0x06, 0x27, 0x2d, 0xc1, 0x27, 0x03, 0x98, 0x8d, 0xe8, 0x44, 0x1b, 0x40, 0x94, - 0xfe, 0x79, 0x35, 0x55, 0xe3, 0x85, 0x1b, 0x01, 0xcf, 0x5a, 0x79, 0xac, 0xa6, 0xc0, 0xfa, 0x0a, - 0x84, 0x66, 0x8e, 0x17, 0x3f, 0x88, 0xa7, 0xfd, 0x7a, 0x3c, 0xed, 0x7f, 0x06, 0xcf, 0xde, 0xeb, - 0xf1, 0xec, 0xfd, 0x33, 0x78, 0x3a, 0xaf, 0xc7, 0xd3, 0xf9, 0x71, 0x3c, 0x1b, 0x32, 0x1c, 0x56, - 0xca, 0x30, 0x4a, 0x53, 0x4a, 0x15, 0x24, 0x45, 0x9c, 0x2a, 0xb9, 0xc8, 0x2b, 0xa8, 0xdb, 0x90, - 0x71, 0xb6, 0xc6, 0x3a, 0x09, 0xee, 0x25, 0x85, 0x87, 0x7f, 0xc8, 0xb1, 0x94, 0x9b, 0xc1, 0x68, - 0x2b, 0xfa, 0xcb, 0x1b, 0x77, 0xa5, 0xcc, 0xdc, 0x10, 0x52, 0x2f, 0x0c, 0xf0, 0xb7, 0xea, 0xd3, - 0xe5, 0x09, 0xe7, 0x45, 0xce, 0x0e, 0x40, 0xd2, 0x49, 0x52, 0x6b, 0xb9, 0xa1, 0x37, 0x95, 0x44, - 0xcd, 0xb6, 0x12, 0x05, 0x21, 0x99, 0x72, 0x41, 0x67, 0x21, 0x8d, 0x52, 0x05, 0x67, 0x1c, 0x9a, - 0x71, 0x02, 0xca, 0x19, 0x71, 0xf1, 0x61, 0x3b, 0x23, 0xec, 0xad, 0x38, 0x0f, 0xd6, 0x71, 0xd0, - 0x70, 0x6c, 0xcf, 0x59, 0x7b, 0x76, 0x4c, 0x95, 0x3b, 0x0c, 0xf9, 0xb0, 0xfa, 0x16, 0x52, 0x46, - 0x4f, 0x99, 0x85, 0xc1, 0x12, 0x43, 0x8f, 0x3e, 0x9f, 0xb1, 0xac, 0xe3, 0x38, 0xf8, 0x52, 0xe6, - 0x38, 0x8c, 0x6d, 0xbe, 0xd0, 0x1c, 0x8d, 0x43, 0x77, 0xbe, 0x88, 0x69, 0x58, 0xd1, 0xa0, 0x3d, - 0x3a, 0x70, 0x1c, 0x2c, 0x04, 0xac, 0x82, 0xb0, 0x37, 0x3a, 0x5a, 0x57, 0xba, 0x94, 0xce, 0xe8, - 0xd4, 0xbe, 0x2f, 0x7a, 0x0b, 0x6e, 0x62, 0x13, 0xe6, 0xb0, 0xdf, 0xef, 0x03, 0x17, 0x92, 0xe2, - 0x88, 0x86, 0xf1, 0xc1, 0xf4, 0xda, 0x76, 0x20, 0x8d, 0xc3, 0xec, 0x58, 0x25, 0x13, 0x0a, 0x09, - 0x39, 0xa5, 0xfe, 0x94, 0xe8, 0x9e, 0xf6, 0x2c, 0x52, 0x34, 0x35, 0xfe, 0xda, 0x68, 0xd8, 0xdf, - 0x9a, 0x21, 0x5d, 0x06, 0xb7, 0x54, 0xd5, 0x74, 0xb8, 0x13, 0xab, 0x70, 0xf5, 0x42, 0xfe, 0x6c, - 0x0f, 0x93, 0x1c, 0xaf, 0x61, 0x96, 0x2f, 0xee, 0x34, 0x8a, 0x9d, 0x46, 0xc5, 0x75, 0x20, 0xff, - 0xe9, 0x89, 0x95, 0x4c, 0xe4, 0x72, 0xd1, 0xc3, 0xb3, 0x53, 0x15, 0x98, 0x0c, 0xc9, 0x28, 0x6e, - 0x4a, 0x1b, 0x69, 0x4d, 0x5a, 0x55, 0x3e, 0xea, 0x04, 0xcb, 0xbf, 0xe0, 0x61, 0xf8, 0x00, 0x38, - 0xb3, 0x19, 0x29, 0x24, 0x7d, 0xb8, 0x54, 0x2a, 0xf2, 0xce, 0x5c, 0x76, 0x99, 0x76, 0xd9, 0x96, - 0x63, 0x2a, 0xdc, 0xc5, 0x6e, 0x53, 0x9b, 0xbf, 0x67, 0x7c, 0xeb, 0xfd, 0xab, 0x7c, 0xeb, 0xdb, - 0x6e, 0x77, 0xaf, 0x9b, 0x71, 0xae, 0xf4, 0x79, 0x43, 0xb1, 0x32, 0xce, 0xd3, 0x22, 0x24, 0xf1, - 0x9e, 0xaf, 0xf0, 0x89, 0x7f, 0x3f, 0xcc, 0x10, 0xe3, 0x6c, 0xf5, 0x8f, 0x9b, 0x54, 0xf8, 0xcf, - 0x39, 0xac, 0x9b, 0xaa, 0x2e, 0x14, 0xee, 0x87, 0xe2, 0x6c, 0x46, 0x85, 0x08, 0xd0, 0x05, 0x7d, - 0xff, 0xf7, 0x62, 0x6e, 0xa9, 0x6c, 0xcc, 0x76, 0x08, 0xb5, 0x13, 0xfb, 0xc4, 0x5c, 0xc2, 0x5c, - 0x1a, 0xb1, 0xc5, 0xa9, 0xad, 0x7a, 0xe8, 0x0a, 0x55, 0xbb, 0x0f, 0x48, 0xdd, 0x96, 0xab, 0xe0, - 0xb1, 0x3e, 0x89, 0x7d, 0x54, 0x06, 0x90, 0x45, 0x51, 0xc7, 0x94, 0xea, 0x09, 0xe8, 0x29, 0xbe, - 0x4a, 0x4b, 0x99, 0x5e, 0xa1, 0x1c, 0xa0, 0x51, 0x49, 0x95, 0xa0, 0xb1, 0x63, 0xe1, 0xc6, 0xa7, - 0x4a, 0xbf, 0xfa, 0x0d, 0x33, 0xa3, 0xf6, 0x02, 0x25, 0x3c, 0xe4, 0x28, 0xb5, 0x2c, 0xca, 0x88, - 0xc6, 0x4c, 0x39, 0xb5, 0x47, 0xb4, 0x18, 0x1b, 0x25, 0xf7, 0xa2, 0x90, 0x02, 0xeb, 0x49, 0x28, - 0xae, 0xb5, 0xbe, 0x8a, 0x24, 0x8d, 0x26, 0xa8, 0x07, 0x02, 0x75, 0xae, 0x34, 0x98, 0x3f, 0x02, - 0x84, 0x09, 0x4f, 0xc1, 0x40, 0x14, 0xeb, 0xc1, 0x86, 0x79, 0x5a, 0xca, 0x4d, 0x12, 0xf6, 0x06, - 0x64, 0xc5, 0xde, 0x45, 0xc3, 0x94, 0xb3, 0x47, 0xe3, 0xd8, 0xe7, 0xb5, 0xc9, 0xd2, 0x12, 0x31, - 0x68, 0x40, 0x5a, 0x94, 0x5d, 0x75, 0xd4, 0x5d, 0x56, 0x2a, 0x5a, 0xbf, 0x64, 0xbb, 0x44, 0x4d, - 0x74, 0x2a, 0x87, 0x0b, 0x3b, 0x3c, 0x0c, 0xa6, 0x54, 0xc5, 0xe5, 0x43, 0x63, 0xbf, 0xd3, 0xeb, - 0x77, 0xbb, 0x5a, 0x1d, 0xf8, 0x64, 0xd7, 0xad, 0xef, 0xe3, 0x75, 0x1c, 0x07, 0xac, 0x24, 0xf1, - 0x99, 0x17, 0x7f, 0x6c, 0x53, 0xec, 0x9f, 0x1f, 0xdd, 0xcd, 0xa5, 0x2d, 0x2d, 0x51, 0xed, 0xfb, - 0x28, 0xaf, 0xc7, 0xa3, 0xef, 0x58, 0x43, 0xf2, 0x5d, 0xb8, 0x84, 0x9c, 0x3f, 0xfb, 0xf9, 0x91, - 0x8c, 0xdf, 0xbf, 0x8a, 0xc6, 0x04, 0x4c, 0x41, 0x53, 0x81, 0x64, 0xc3, 0xc2, 0x2d, 0x64, 0xb9, - 0x68, 0x86, 0x55, 0x2b, 0xcf, 0xa3, 0x23, 0xb1, 0x49, 0x93, 0x28, 0x49, 0x69, 0xf7, 0x36, 0x76, - 0x6f, 0x97, 0x74, 0x3f, 0x5f, 0x47, 0x8b, 0x09, 0x63, 0xc9, 0x76, 0x00, 0x7b, 0x08, 0x60, 0xaf, - 0x02, 0x80, 0xe2, 0x8a, 0x3d, 0xf5, 0xed, 0x30, 0x3a, 0x08, 0xa3, 0x53, 0x02, 0xe3, 0x92, 0xd5, - 0xe9, 0x6d, 0xef, 0xdc, 0xc5, 0xce, 0xdd, 0x32, 0x02, 0x8e, 0x2f, 0x94, 0x88, 0xfa, 0x51, 0x10, - 0x6e, 0x07, 0xf0, 0x16, 0x01, 0xbc, 0x2d, 0x01, 0x70, 0x15, 0xac, 0x5f, 0x42, 0xfe, 0x1b, 0xf6, - 0xfd, 0xad, 0xa4, 0xef, 0x81, 0x6f, 0x7b, 0xc1, 0x7c, 0x7b, 0xe7, 0x1e, 0x76, 0xee, 0x55, 0x76, - 0xae, 0x60, 0x1e, 0x49, 0x4c, 0x1d, 0xe1, 0x40, 0x59, 0x48, 0x2b, 0x1c, 0x01, 0xc4, 0x31, 0x30, - 0xde, 0xbe, 0xb2, 0x0a, 0x5c, 0x1f, 0x22, 0x9e, 0x01, 0x93, 0x51, 0x56, 0x75, 0x43, 0xf0, 0xb4, - 0xca, 0x1b, 0x94, 0xdb, 0x37, 0x9a, 0xf4, 0x61, 0xbb, 0x3f, 0xdd, 0xb7, 0x7f, 0x33, 0xbb, 0x03, - 0x19, 0x98, 0x83, 0xc9, 0x14, 0x5b, 0x4b, 0x9b, 0xca, 0x64, 0x65, 0x2a, 0xd5, 0xe2, 0xb9, 0x77, - 0xe9, 0xa2, 0x09, 0x50, 0x73, 0x47, 0x80, 0xa8, 0xf6, 0xf4, 0xa4, 0xe6, 0x0f, 0x01, 0x6d, 0x16, - 0x7b, 0x26, 0xc7, 0x45, 0x1e, 0xd1, 0x30, 0x71, 0x43, 0xb9, 0x63, 0x62, 0x5c, 0x31, 0x00, 0x77, - 0xb6, 0x7d, 0x79, 0x5b, 0xda, 0x49, 0x1f, 0xcb, 0x12, 0x8a, 0x5b, 0x8c, 0xcc, 0x40, 0x6a, 0x3f, - 0xb0, 0xb6, 0xef, 0xe7, 0x97, 0xe8, 0x77, 0x4a, 0xb6, 0x2d, 0x7d, 0x09, 0x0f, 0xcd, 0x32, 0x16, - 0x86, 0x66, 0x13, 0x6c, 0xff, 0x1b, 0x2e, 0xcd, 0x8b, 0xbd, 0xc7, 0xc8, 0x20, 0xd0, 0xc8, 0x28, - 0x02, 0xc1, 0xbd, 0xc4, 0x6a, 0x18, 0x06, 0x83, 0xc1, 0x39, 0x1e, 0xb9, 0x99, 0xca, 0x51, 0xaa, - 0x4b, 0x26, 0xa7, 0xcc, 0x5b, 0xaf, 0xf0, 0x54, 0xcb, 0x07, 0xd7, 0xc3, 0xd3, 0x45, 0xa2, 0xfa, - 0xd8, 0xa7, 0x77, 0xca, 0xdf, 0x4f, 0x4f, 0x7e, 0x8f, 0xe3, 0xd5, 0x05, 0xc4, 0x0a, 0x34, 0x8a, - 0x07, 0x7e, 0xf5, 0x09, 0x9e, 0xcc, 0xf1, 0x90, 0xf4, 0xf0, 0x0a, 0xa6, 0x52, 0x60, 0xf2, 0xa3, - 0x55, 0x00, 0x1e, 0xf1, 0x8a, 0xde, 0xc7, 0x3a, 0x7b, 0x02, 0x64, 0xc6, 0xeb, 0x08, 0xcb, 0x59, - 0x60, 0x90, 0x1a, 0x78, 0xaa, 0xea, 0x63, 0x38, 0x29, 0x5c, 0x9a, 0x05, 0x8c, 0x45, 0xd4, 0xb6, - 0x73, 0xa3, 0xef, 0x48, 0x00, 0xfc, 0x50, 0xd7, 0xf9, 0x19, 0xcc, 0xa6, 0x4e, 0x5a, 0x7c, 0x38, - 0x62, 0xdf, 0x2a, 0x66, 0x23, 0xf9, 0x10, 0x84, 0x4b, 0xac, 0xdf, 0x93, 0xdb, 0x25, 0xb1, 0x38, - 0x9d, 0xa4, 0x12, 0x2c, 0xe1, 0x16, 0x35, 0xc5, 0xac, 0x9a, 0x1b, 0xcf, 0xf5, 0x44, 0xc0, 0x3e, - 0x3c, 0xda, 0xe3, 0x37, 0x23, 0x6c, 0x13, 0x6b, 0x7a, 0x49, 0xb5, 0xf7, 0xce, 0xc6, 0xd9, 0xab, - 0xc3, 0xd9, 0x3c, 0xe1, 0x9e, 0x1e, 0x0f, 0x88, 0x7c, 0x49, 0x40, 0x0b, 0xc1, 0xcc, 0x83, 0x97, - 0x14, 0x27, 0xc6, 0x90, 0xcf, 0x17, 0xd4, 0x86, 0x00, 0x6a, 0x1f, 0x46, 0xc2, 0xf0, 0xed, 0xd3, - 0x04, 0xef, 0xbe, 0x8a, 0x9e, 0x3b, 0xa1, 0x42, 0x15, 0xf4, 0x27, 0x7d, 0xb0, 0xd8, 0x0d, 0xd1, - 0x59, 0x59, 0xd6, 0xf0, 0xc2, 0x4e, 0xda, 0x04, 0x01, 0x00, 0xa1, 0x44, 0x9e, 0xaf, 0xbd, 0x58, - 0x0c, 0x9f, 0x9d, 0x41, 0x60, 0xc2, 0xa3, 0xfa, 0x6c, 0x1b, 0x26, 0x6e, 0x2e, 0xee, 0xd8, 0x46, - 0x17, 0x5e, 0x80, 0xec, 0x4f, 0x53, 0x9d, 0xc1, 0x92, 0x50, 0x1b, 0x7c, 0x03, 0x78, 0xad, 0xba, - 0x26, 0xb7, 0x8a, 0x40, 0x9a, 0x07, 0xb2, 0x29, 0x06, 0x37, 0x49, 0xa5, 0x87, 0xf0, 0x94, 0xd6, - 0xe8, 0x51, 0x36, 0x35, 0x79, 0x5c, 0x90, 0x82, 0xa2, 0x58, 0x1c, 0x22, 0xf5, 0x0b, 0x81, 0x96, - 0x69, 0xcd, 0x77, 0x96, 0x8e, 0xa2, 0x3f, 0xfb, 0x9e, 0x29, 0x69, 0x63, 0x5d, 0xbf, 0xda, 0xdf, - 0x06, 0x95, 0x7b, 0x61, 0x7e, 0xae, 0x35, 0x32, 0x59, 0xaf, 0xdc, 0xa3, 0xcb, 0xb7, 0x65, 0x9a, - 0xa2, 0xbf, 0xa6, 0x80, 0x98, 0x47, 0x51, 0xe5, 0x4d, 0x0f, 0xcf, 0x36, 0x9b, 0x06, 0x18, 0x16, - 0xeb, 0xaf, 0x29, 0x33, 0x46, 0x22, 0x20, 0x63, 0x2f, 0x6f, 0x7b, 0xf1, 0x41, 0xb6, 0x4d, 0xb4, - 0x16, 0xe6, 0x74, 0x56, 0x41, 0xc5, 0x1f, 0x65, 0x8d, 0x6f, 0x9f, 0xb5, 0x67, 0x39, 0xc5, 0x10, - 0x0c, 0x61, 0x2d, 0x84, 0x0c, 0xe9, 0xf0, 0xe4, 0x17, 0x7f, 0x9a, 0xab, 0xd9, 0x91, 0xd9, 0x98, - 0x60, 0x0e, 0x1f, 0xb7, 0x18, 0x12, 0x53, 0x33, 0xd6, 0x0b, 0xac, 0xb7, 0x4c, 0xb2, 0xe4, 0xfd, - 0xe0, 0x20, 0x0c, 0xed, 0x87, 0xa6, 0x1b, 0xb1, 0x5f, 0x95, 0x25, 0xa2, 0x9a, 0xac, 0x02, 0x2d, - 0x58, 0x7b, 0x02, 0xb1, 0xa9, 0x5b, 0x2d, 0x46, 0x18, 0x80, 0x21, 0x5a, 0x9c, 0x7b, 0x54, 0x42, - 0x36, 0xad, 0x58, 0x2a, 0x54, 0x3a, 0xf6, 0x2b, 0xb0, 0xde, 0x29, 0x4b, 0xdd, 0x66, 0x1c, 0x3f, - 0x33, 0xaa, 0xdc, 0xb0, 0xaa, 0x92, 0xf4, 0xf8, 0x22, 0xdb, 0x43, 0x34, 0x46, 0x6c, 0xe5, 0x08, - 0x8e, 0xaf, 0xca, 0x9a, 0x33, 0x9a, 0x38, 0x3f, 0x42, 0x0a, 0x61, 0x65, 0x15, 0xb2, 0x8b, 0x93, - 0x42, 0x6f, 0xd6, 0xbe, 0x1a, 0xdf, 0xc5, 0x29, 0xc9, 0x4d, 0x65, 0xa6, 0x0f, 0xb8, 0x6c, 0x99, - 0x19, 0xe8, 0xa8, 0xe2, 0xf6, 0xf4, 0x20, 0x42, 0xa3, 0x0a, 0x5a, 0xad, 0xf5, 0xc5, 0x21, 0xc4, - 0x73, 0x8f, 0x62, 0x85, 0xbe, 0x88, 0x03, 0x6d, 0x05, 0x75, 0x9f, 0x9d, 0x54, 0xe4, 0x2b, 0x43, - 0x3b, 0x24, 0x69, 0x79, 0x05, 0x96, 0x58, 0x99, 0x84, 0xc1, 0x1d, 0xe4, 0x2a, 0xca, 0x34, 0xa0, - 0x11, 0x9e, 0xa0, 0xc2, 0x12, 0x80, 0x20, 0x84, 0xb0, 0x74, 0x41, 0x95, 0xef, 0xcc, 0x04, 0x7d, - 0x57, 0x56, 0x21, 0x18, 0x57, 0xf0, 0x28, 0x18, 0xe6, 0x33, 0x48, 0x2c, 0x72, 0x8d, 0xf0, 0x40, - 0x09, 0x4d, 0xeb, 0x7e, 0x53, 0xb0, 0x94, 0xb7, 0x3a, 0x38, 0x3f, 0x56, 0xdc, 0x2c, 0x50, 0xb6, - 0x14, 0xab, 0xc4, 0x59, 0xb4, 0x0f, 0x60, 0xaa, 0xb2, 0xe7, 0x63, 0xf3, 0x07, 0x34, 0x99, 0x51, - 0xa3, 0xd6, 0x57, 0x9c, 0x32, 0x1d, 0x59, 0xf9, 0x6d, 0x90, 0x95, 0xa8, 0x42, 0x35, 0xda, 0x1b, - 0x5e, 0x85, 0x98, 0x0b, 0xa9, 0xbf, 0xbd, 0x49, 0xeb, 0xd2, 0x7c, 0x56, 0x97, 0xc6, 0x0a, 0xad, - 0x7c, 0x56, 0xe7, 0x05, 0x52, 0x95, 0x64, 0x31, 0x31, 0xcf, 0x62, 0xc0, 0xc8, 0x53, 0x31, 0x23, - 0x58, 0x88, 0x26, 0xc1, 0x58, 0x60, 0xc2, 0xd9, 0xa4, 0xef, 0xee, 0x52, 0x98, 0x07, 0xc7, 0x5b, - 0x43, 0xe2, 0x01, 0xba, 0xc5, 0xa0, 0x48, 0x42, 0x13, 0xff, 0x1c, 0xcb, 0xa2, 0x76, 0xdb, 0x02, - 0x81, 0x96, 0x23, 0x12, 0xcd, 0x75, 0x23, 0x35, 0x91, 0x58, 0xce, 0x07, 0xd1, 0x49, 0xa6, 0xd0, - 0x8f, 0x87, 0x20, 0xec, 0x74, 0x11, 0x2b, 0xc5, 0x4b, 0x70, 0xc1, 0x1c, 0xcb, 0x7a, 0xb2, 0x01, - 0x3f, 0x06, 0x81, 0x6b, 0x39, 0x78, 0xd2, 0x73, 0xed, 0xe3, 0xa1, 0x37, 0x0c, 0xee, 0xea, 0xbe, - 0x38, 0x79, 0x0d, 0xdd, 0xa6, 0xf4, 0xfe, 0x6c, 0x06, 0xbd, 0x46, 0x96, 0xb1, 0xbb, 0xeb, 0xef, - 0x88, 0x65, 0x1f, 0x88, 0xf0, 0xd8, 0x11, 0x39, 0xa2, 0xa5, 0xe7, 0xb1, 0xb3, 0x38, 0x64, 0x1b, - 0xf5, 0xa2, 0x75, 0xa6, 0x11, 0x7e, 0x12, 0xc2, 0xc5, 0x41, 0x9c, 0xb1, 0x20, 0x51, 0xb5, 0xf5, - 0x58, 0x07, 0x1f, 0xe2, 0x5b, 0x78, 0x1e, 0xc6, 0x4d, 0x8a, 0x47, 0x21, 0xd2, 0xe8, 0x27, 0x98, - 0xb3, 0xc0, 0xdc, 0x4c, 0x39, 0x17, 0xb8, 0xea, 0xe7, 0x1f, 0x2d, 0x23, 0x14, 0x4b, 0xb2, 0x42, - 0xff, 0x4b, 0xfb, 0x36, 0x21, 0x82, 0xe3, 0x22, 0xd9, 0x8c, 0x32, 0x15, 0xa8, 0x39, 0x30, 0x58, - 0x80, 0x67, 0xd1, 0xe4, 0x48, 0x99, 0xa8, 0x4d, 0x44, 0xce, 0x80, 0xb5, 0x43, 0xa7, 0x0e, 0x86, - 0x11, 0x1f, 0xca, 0x36, 0xb9, 0xb3, 0xb8, 0x09, 0x0d, 0xc2, 0xc9, 0x66, 0xea, 0x18, 0x33, 0x5d, - 0xb5, 0x41, 0x29, 0x24, 0x31, 0x57, 0x94, 0x4f, 0xbd, 0x0d, 0x71, 0xeb, 0xe0, 0x7f, 0x65, 0x1c, - 0x14, 0x25, 0x68, 0xd8, 0xee, 0x76, 0x93, 0x93, 0x97, 0xe9, 0x50, 0xc4, 0x2c, 0xbe, 0x82, 0xf7, - 0x89, 0x36, 0x78, 0xa8, 0x0d, 0xae, 0xe6, 0xb1, 0x93, 0x2d, 0xdc, 0xba, 0x63, 0xfe, 0xa8, 0x7a, - 0x4d, 0x9e, 0x2d, 0x44, 0xf9, 0x13, 0x18, 0xac, 0x8b, 0x65, 0xa7, 0x93, 0x9f, 0x9c, 0xb6, 0x90, - 0x57, 0xec, 0x68, 0x6a, 0x72, 0x2d, 0x68, 0x7b, 0x7a, 0xf2, 0x50, 0x48, 0x1a, 0xe6, 0x8e, 0x25, - 0x5e, 0xed, 0x43, 0x7b, 0xac, 0xa7, 0x93, 0xf7, 0x7a, 0xda, 0x7d, 0x43, 0x9a, 0x4c, 0x4d, 0x57, - 0x2b, 0xe0, 0xe5, 0x84, 0x4e, 0xe7, 0x00, 0x51, 0xa8, 0x21, 0x30, 0xf7, 0xf6, 0x09, 0x84, 0x29, - 0xa4, 0x1f, 0x6b, 0xa5, 0x0a, 0x50, 0x38, 0x2d, 0xc2, 0xc1, 0x49, 0x00, 0x42, 0x2b, 0xb4, 0xbe, - 0x20, 0x52, 0xaa, 0x5e, 0x4e, 0x5c, 0xb2, 0x1a, 0x9f, 0xc8, 0x4c, 0xf1, 0x14, 0x3e, 0xe3, 0x3a, - 0x70, 0xdc, 0xe7, 0xe7, 0xa7, 0x31, 0xf0, 0xc5, 0x28, 0x58, 0x25, 0x7c, 0x22, 0xe4, 0xe1, 0xfd, - 0x8a, 0xd3, 0xff, 0x2c, 0x8a, 0xdb, 0xdd, 0x25, 0xc7, 0x9f, 0xce, 0x3f, 0x5f, 0x09, 0xeb, 0x64, - 0xcf, 0xf1, 0x3d, 0x10, 0xcc, 0x8e, 0xea, 0xa7, 0x26, 0xeb, 0xe9, 0xa9, 0x60, 0xc5, 0x12, 0x93, - 0x25, 0x2c, 0xd5, 0x80, 0x9b, 0xa6, 0x8d, 0xd0, 0x0d, 0x08, 0x92, 0x87, 0xfb, 0x23, 0x19, 0xc1, - 0xd5, 0xeb, 0x76, 0xea, 0xfd, 0xd3, 0xd7, 0x18, 0xa5, 0xf1, 0x0f, 0x05, 0xec, 0x88, 0x83, 0x38, - 0x40, 0x1c, 0x03, 0x9d, 0x7d, 0xc0, 0x46, 0x9a, 0x7d, 0xc0, 0x12, 0xcb, 0xcc, 0x03, 0x3f, 0xff, - 0x45, 0x01, 0xfe, 0x58, 0xca, 0x80, 0xf6, 0x2c, 0x2b, 0x9d, 0x36, 0xbe, 0x3b, 0x80, 0x6a, 0xd7, - 0x80, 0x26, 0x44, 0x46, 0xec, 0xd9, 0x97, 0x72, 0x19, 0x05, 0x3c, 0x48, 0x76, 0x7f, 0x87, 0x7d, - 0xbe, 0x00, 0xa6, 0x1b, 0x18, 0x2b, 0xf8, 0x2b, 0x4f, 0xaf, 0xf3, 0xcf, 0x15, 0x60, 0x3c, 0xa2, - 0xfb, 0x09, 0xc6, 0xb5, 0xe7, 0xe5, 0x66, 0x58, 0x98, 0x43, 0xb1, 0x50, 0x04, 0x93, 0x81, 0x2d, - 0xd0, 0x28, 0x8a, 0xba, 0x31, 0x71, 0x84, 0xac, 0x30, 0xed, 0x5c, 0x7b, 0x60, 0x7e, 0xed, 0x64, - 0xd9, 0xcf, 0xe6, 0xb2, 0x84, 0x21, 0x4f, 0xf6, 0x7b, 0x09, 0x76, 0xaa, 0x8c, 0x3e, 0xcc, 0x86, - 0x0f, 0x81, 0xb4, 0x83, 0x2f, 0x3e, 0x05, 0xd3, 0x74, 0x36, 0x98, 0xb3, 0xc8, 0xbe, 0x80, 0xcc, - 0x31, 0xd5, 0x89, 0x8c, 0x39, 0x62, 0x86, 0x2e, 0x5f, 0xea, 0xef, 0x27, 0xfc, 0xcc, 0xa4, 0xdf, - 0x97, 0x89, 0xd7, 0x15, 0xa9, 0x8a, 0x17, 0x38, 0xec, 0x90, 0x2a, 0xab, 0xb6, 0x46, 0xbf, 0xde, - 0x27, 0x08, 0x9a, 0x7d, 0x65, 0xc3, 0x09, 0x3c, 0x8d, 0x7d, 0x78, 0xc3, 0xd0, 0x55, 0xf6, 0xf9, - 0x0e, 0x0b, 0x5b, 0x7b, 0x97, 0x60, 0x59, 0xec, 0x39, 0x45, 0xd1, 0x3d, 0x8e, 0xe9, 0x12, 0x33, - 0x44, 0xe7, 0x78, 0x05, 0x6a, 0x03, 0x29, 0x3c, 0x6f, 0x06, 0xbd, 0x97, 0x2b, 0xe0, 0x06, 0xe6, - 0x34, 0xca, 0x29, 0xd0, 0xdd, 0x54, 0x44, 0xdc, 0x42, 0x71, 0x61, 0x41, 0xf9, 0x82, 0x45, 0x9b, - 0xc7, 0xe7, 0x10, 0xac, 0xe8, 0x39, 0x88, 0x51, 0x1e, 0xa2, 0xce, 0xa0, 0x69, 0x60, 0x79, 0xb1, - 0x2a, 0x59, 0x66, 0x40, 0x2b, 0x3b, 0x5e, 0x30, 0xb1, 0x01, 0x9e, 0x36, 0x23, 0xcf, 0x75, 0xa8, - 0x6a, 0x82, 0x54, 0x00, 0x63, 0xa3, 0x2f, 0x6e, 0xbc, 0x50, 0x49, 0x8b, 0x68, 0xfb, 0x0d, 0xb3, - 0x7f, 0x1b, 0xb8, 0x53, 0xc5, 0xd0, 0x9a, 0xd1, 0xca, 0x73, 0x63, 0xf6, 0x74, 0x20, 0x4b, 0xdc, - 0x46, 0x6d, 0xf4, 0x83, 0xcd, 0x55, 0xb0, 0x62, 0xa1, 0x32, 0xff, 0x4d, 0xbe, 0x2d, 0x92, 0x8e, - 0x5e, 0x17, 0xa3, 0xe7, 0xa3, 0xa2, 0xcd, 0x45, 0x10, 0xc5, 0x88, 0xba, 0x0e, 0xcc, 0xc6, 0x88, - 0x67, 0x1f, 0x9c, 0x72, 0x9d, 0x5f, 0x62, 0x21, 0x69, 0x1d, 0x90, 0xd4, 0xe3, 0xe6, 0x75, 0xe0, - 0xfa, 0x0c, 0x9f, 0xf6, 0x2c, 0xbe, 0xd8, 0x51, 0xf8, 0x78, 0x48, 0x2b, 0x6a, 0x5e, 0x47, 0xfb, - 0x2b, 0xab, 0x4d, 0xf0, 0x6c, 0x30, 0xc3, 0xcd, 0x22, 0x4c, 0xfc, 0x0c, 0x06, 0x9b, 0x28, 0xab, - 0xd8, 0x05, 0xcc, 0x5d, 0x44, 0xb2, 0x2b, 0xb8, 0xa2, 0x49, 0xf2, 0xbd, 0x11, 0x64, 0xfe, 0xbe, - 0x1c, 0x05, 0xd0, 0x02, 0xc4, 0x30, 0xc2, 0x19, 0x69, 0xf4, 0xb9, 0x36, 0x6c, 0x89, 0xef, 0xc1, - 0x0c, 0x99, 0x5a, 0x8e, 0xfe, 0xc5, 0x5d, 0xb2, 0x58, 0x70, 0x1d, 0xa2, 0x97, 0xe0, 0x15, 0xbb, - 0x11, 0x16, 0x83, 0x42, 0x43, 0xd6, 0x60, 0xd8, 0xe2, 0x5f, 0xb7, 0xc1, 0x6f, 0x7d, 0x28, 0x22, - 0x27, 0x25, 0x97, 0x6c, 0xaf, 0x10, 0x44, 0x77, 0x59, 0x63, 0x7b, 0x02, 0x78, 0xf5, 0x57, 0x94, - 0xec, 0x3b, 0xce, 0x88, 0xb2, 0xa4, 0xf1, 0x22, 0xc0, 0xad, 0x5b, 0xe0, 0x16, 0x34, 0xcd, 0xec, - 0xd3, 0xc4, 0x01, 0xd0, 0x76, 0x97, 0x7f, 0xb6, 0xa0, 0xde, 0x6a, 0x4c, 0x46, 0xb5, 0x21, 0x5f, - 0x2f, 0x14, 0x0b, 0xa6, 0xfc, 0x26, 0xb3, 0x00, 0xf5, 0x3b, 0xa2, 0xdd, 0x1f, 0xb6, 0xf8, 0x8b, - 0x64, 0x8b, 0xbf, 0xac, 0x4f, 0x2d, 0xe9, 0x34, 0xc6, 0x4e, 0x63, 0xdb, 0xb9, 0x49, 0xfb, 0xe5, - 0x7a, 0x88, 0x0f, 0x8c, 0x8c, 0x2e, 0xed, 0x5b, 0x9a, 0x36, 0x59, 0xc8, 0xb5, 0xff, 0xe1, 0xa2, - 0x3d, 0xaa, 0xa1, 0xa8, 0xee, 0xda, 0xcb, 0xd5, 0x40, 0xf9, 0xdd, 0x0e, 0xb1, 0xc4, 0x19, 0x83, - 0xef, 0x78, 0xbd, 0x02, 0xe6, 0xb4, 0x47, 0x57, 0x41, 0x6c, 0x7b, 0x72, 0x37, 0x36, 0xd9, 0x1d, - 0xf6, 0x1c, 0x46, 0xaa, 0xa8, 0xe4, 0x48, 0xb7, 0xb2, 0x1d, 0x1c, 0x66, 0xba, 0x5a, 0x36, 0x74, - 0x47, 0x17, 0x14, 0x72, 0x34, 0xb0, 0x1c, 0x53, 0x88, 0x9d, 0x57, 0xc1, 0x1d, 0xa8, 0x86, 0xa8, - 0xd1, 0xc5, 0x22, 0xdb, 0x09, 0xdf, 0x79, 0x8c, 0x62, 0xbe, 0xc3, 0xd9, 0x1f, 0xb6, 0x5c, 0xde, - 0x6f, 0x22, 0x76, 0xa2, 0x6b, 0xbc, 0x80, 0x64, 0x9d, 0x62, 0xc3, 0xa2, 0xe6, 0xfc, 0x4e, 0x35, - 0x2b, 0xa7, 0x15, 0xfb, 0x19, 0x09, 0xe6, 0xda, 0x7b, 0x1f, 0xdd, 0xa7, 0x62, 0xaf, 0xe3, 0x00, - 0x3f, 0x0c, 0xe2, 0x08, 0x5c, 0x3e, 0x8d, 0x22, 0xc5, 0xc3, 0xef, 0x77, 0xd0, 0xf0, 0x85, 0xad, - 0xec, 0x83, 0x31, 0x15, 0xac, 0x16, 0x8b, 0xd8, 0xe2, 0xb0, 0x32, 0xdf, 0xae, 0x62, 0x67, 0x99, - 0x39, 0x56, 0xb9, 0xb3, 0x8b, 0xa7, 0xc4, 0x71, 0xb7, 0x13, 0xbf, 0x6f, 0xa4, 0x1c, 0xae, 0x43, - 0xb4, 0xcc, 0x09, 0x0e, 0xf1, 0x55, 0xa3, 0xd3, 0x03, 0xb2, 0xb1, 0x60, 0xbe, 0xb1, 0xdf, 0xd5, - 0xee, 0xa6, 0xfb, 0x6e, 0x86, 0x51, 0xd8, 0xc3, 0x4e, 0xf6, 0xbc, 0x46, 0x35, 0x65, 0x79, 0x90, - 0x47, 0x9f, 0x9e, 0x80, 0x95, 0x40, 0xf1, 0xbe, 0xa2, 0xee, 0xa8, 0xb6, 0xfb, 0xd3, 0xbb, 0x5e, - 0xaf, 0x37, 0x50, 0xfe, 0x2d, 0x58, 0x87, 0xf9, 0x99, 0x01, 0x09, 0xbe, 0xc5, 0x5d, 0x09, 0x65, - 0x01, 0x1c, 0x53, 0x1c, 0x3e, 0x90, 0x26, 0xe3, 0xea, 0x55, 0xa0, 0x80, 0x4a, 0xc1, 0x7b, 0xca, - 0xf2, 0xab, 0xc8, 0x9e, 0x51, 0x9e, 0x55, 0x3d, 0x20, 0x14, 0x26, 0x35, 0x3a, 0x36, 0x5c, 0x71, - 0x5b, 0x08, 0xa1, 0x05, 0x66, 0x4b, 0xce, 0x8d, 0xe2, 0x20, 0xbf, 0x22, 0xf6, 0xae, 0xb6, 0x5c, - 0x7b, 0xb1, 0x0b, 0x2d, 0x04, 0x56, 0xd7, 0xbf, 0xa6, 0x22, 0x4c, 0xc5, 0x55, 0xd9, 0x48, 0xb1, - 0xfd, 0x29, 0xa4, 0x7d, 0x33, 0xe8, 0xbc, 0x93, 0xee, 0x52, 0x81, 0x28, 0xd5, 0x0e, 0xe4, 0x64, - 0xda, 0x1e, 0x90, 0xc9, 0x66, 0x31, 0xca, 0xce, 0x6b, 0x1c, 0xe0, 0x0e, 0xe6, 0x03, 0x8c, 0x3e, - 0x88, 0xd8, 0x47, 0x06, 0x90, 0x46, 0xd6, 0x8c, 0x53, 0xff, 0x37, 0x4a, 0x57, 0x8a, 0x1d, 0x2b, - 0xbb, 0x5e, 0x3c, 0x30, 0x0f, 0x14, 0x77, 0xc6, 0x29, 0xc0, 0xca, 0x79, 0x56, 0x1b, 0x3f, 0x05, - 0xc6, 0x3a, 0x31, 0xca, 0x26, 0xee, 0xb0, 0x63, 0xe7, 0xb4, 0x38, 0x9d, 0x91, 0x52, 0x3b, 0x66, - 0x23, 0x65, 0xdf, 0xbd, 0x48, 0xbe, 0x4d, 0x00, 0xae, 0x8f, 0x86, 0x3e, 0x28, 0x49, 0x96, 0x89, - 0xba, 0xf0, 0x03, 0x48, 0x21, 0x7e, 0x43, 0xc7, 0x9f, 0x73, 0x12, 0x54, 0x21, 0x17, 0x0a, 0x08, - 0x3d, 0x7e, 0xb1, 0x06, 0xb4, 0x62, 0x1d, 0x81, 0x63, 0x90, 0xca, 0x25, 0x26, 0x6e, 0x85, 0x36, - 0x64, 0xed, 0xdf, 0xf8, 0x10, 0x82, 0x09, 0xa9, 0xd6, 0x52, 0xe5, 0x08, 0xb9, 0xce, 0xde, 0x06, - 0x5e, 0x8c, 0x1f, 0xdf, 0x51, 0x4f, 0xf1, 0x94, 0x80, 0x98, 0x27, 0xa6, 0x57, 0xb6, 0x82, 0xc4, - 0x01, 0x87, 0xa1, 0x99, 0x56, 0x52, 0x26, 0xc0, 0x2a, 0xf2, 0x37, 0x64, 0x1b, 0xbf, 0x33, 0x50, - 0xa8, 0x38, 0xc3, 0x72, 0x8a, 0x24, 0x43, 0x4a, 0x57, 0xe1, 0x47, 0xc0, 0x13, 0x71, 0x44, 0x5e, - 0x51, 0xbb, 0xdd, 0xe5, 0x81, 0x56, 0xab, 0xac, 0x28, 0xeb, 0xb2, 0xd6, 0x74, 0x36, 0x73, 0x1d, - 0x3c, 0xef, 0xa1, 0xa8, 0x7b, 0xd8, 0x7e, 0x5b, 0xc5, 0x72, 0x0d, 0x8b, 0xfb, 0xd5, 0x3d, 0x63, - 0x4b, 0x33, 0xac, 0xf3, 0x18, 0x89, 0xa3, 0x00, 0xaa, 0xd9, 0xde, 0xd2, 0x12, 0x4b, 0x85, 0x6b, - 0x87, 0x6c, 0x21, 0xbe, 0xa4, 0x66, 0x2d, 0x67, 0x48, 0xf8, 0x39, 0xff, 0x0a, 0x75, 0xe1, 0x20, - 0xf8, 0x81, 0x0c, 0xc9, 0x6a, 0x3c, 0x4b, 0x01, 0x1c, 0x4e, 0x74, 0x5c, 0x32, 0x77, 0x53, 0xc5, - 0x8b, 0x25, 0x2a, 0xcc, 0xae, 0x79, 0x76, 0xb5, 0x76, 0x4b, 0xe5, 0x96, 0x25, 0x41, 0xa9, 0xf0, - 0x4a, 0xbe, 0xbb, 0x19, 0x51, 0xf4, 0xa3, 0x35, 0xfc, 0xd8, 0x93, 0x00, 0x88, 0x60, 0x9a, 0x88, - 0xf8, 0x51, 0x2d, 0x51, 0xac, 0x9b, 0x89, 0xe0, 0x08, 0x93, 0xbf, 0x37, 0xaa, 0x15, 0x0c, 0xfd, - 0x5e, 0x6a, 0x47, 0xb0, 0xd4, 0x9d, 0x7d, 0x6c, 0x8d, 0x1f, 0x13, 0x89, 0xfa, 0xb2, 0x5f, 0xbe, - 0xe8, 0x40, 0xfa, 0x99, 0x5a, 0xde, 0x35, 0x21, 0x84, 0x7a, 0xc6, 0xab, 0x25, 0xab, 0xaa, 0x18, - 0x05, 0x90, 0x51, 0x3d, 0x71, 0x42, 0x4a, 0x85, 0x6b, 0x43, 0x00, 0x8d, 0x12, 0x00, 0x0d, 0x01, - 0xa1, 0x91, 0xf1, 0x74, 0x21, 0xa3, 0xf3, 0x94, 0x9d, 0x8d, 0x51, 0x3e, 0x67, 0xf5, 0x88, 0x0d, - 0x04, 0xa6, 0xde, 0x90, 0xee, 0x48, 0x69, 0x65, 0xdf, 0x98, 0x19, 0xf7, 0x35, 0xce, 0x59, 0x51, - 0x76, 0x6e, 0x49, 0xa9, 0x95, 0x16, 0x0e, 0x34, 0x26, 0x58, 0xac, 0x39, 0x60, 0x1f, 0xb6, 0xeb, - 0x9b, 0x86, 0xb1, 0xba, 0x1f, 0x2c, 0x28, 0x5a, 0x1f, 0xb8, 0x81, 0xeb, 0x09, 0x5b, 0x66, 0x6c, - 0xe0, 0xc1, 0xa6, 0x75, 0xd4, 0x6f, 0xc3, 0x23, 0x59, 0xfe, 0x53, 0xcb, 0xa1, 0xc8, 0x9c, 0x23, - 0xfa, 0x41, 0x43, 0x0d, 0x92, 0x04, 0xd8, 0x94, 0x70, 0x0d, 0xc3, 0xf0, 0xb9, 0xb5, 0x9b, 0xb8, - 0x10, 0xfb, 0x81, 0x09, 0x0e, 0x15, 0xcf, 0x9e, 0x2b, 0x6e, 0x14, 0xad, 0x21, 0xb6, 0x46, 0x74, - 0x9f, 0xc1, 0x04, 0x7a, 0xcc, 0x2a, 0x82, 0x8a, 0x2b, 0x19, 0x77, 0x2a, 0x0f, 0x1e, 0x8d, 0x4a, - 0xce, 0x04, 0x49, 0x9e, 0xa0, 0x11, 0x41, 0xfb, 0x37, 0x41, 0xdf, 0x4c, 0xef, 0xa1, 0x01, 0xe8, - 0xae, 0x93, 0xb3, 0xc7, 0x20, 0x0e, 0xb5, 0xac, 0x3c, 0x9c, 0xda, 0x37, 0x14, 0x0d, 0x0f, 0x9d, - 0x2f, 0xa5, 0x19, 0xa2, 0x90, 0x5c, 0x0b, 0xc0, 0x2f, 0xf8, 0xda, 0xd3, 0x4b, 0xc2, 0x99, 0x24, - 0xd4, 0x6c, 0xb2, 0x8e, 0x78, 0x31, 0x0a, 0x8c, 0x73, 0x0a, 0xf1, 0x6f, 0x54, 0xd9, 0x3f, 0x63, - 0xc3, 0xf8, 0x9e, 0x10, 0xdb, 0x9e, 0x11, 0x4b, 0x8f, 0xc2, 0x57, 0x47, 0x2e, 0xf7, 0xd4, 0xc8, - 0x92, 0xb9, 0x17, 0x4c, 0x78, 0x40, 0x03, 0x48, 0x66, 0xb3, 0x4c, 0x14, 0x50, 0x2b, 0x27, 0xed, - 0xe4, 0xa8, 0xb0, 0x91, 0xcd, 0xb5, 0x69, 0x53, 0x1f, 0x70, 0x7a, 0x6b, 0xbc, 0xc8, 0xdb, 0x0b, - 0xc2, 0xbf, 0x98, 0x30, 0xfc, 0xb5, 0x84, 0x84, 0x08, 0x27, 0x3a, 0x5b, 0x72, 0xa2, 0xc8, 0x7d, - 0xff, 0x7e, 0xa6, 0x2e, 0x3c, 0x2d, 0xbe, 0xa8, 0x62, 0x70, 0xb9, 0xbe, 0xc8, 0xde, 0x58, 0x66, - 0x90, 0x53, 0x1a, 0xb6, 0x4a, 0x9e, 0x53, 0xb8, 0xda, 0x76, 0x08, 0x58, 0x6a, 0x90, 0x42, 0x90, - 0xf5, 0x1a, 0x9b, 0x0a, 0x57, 0x45, 0x9c, 0x1c, 0x09, 0x5b, 0xd9, 0x14, 0xad, 0xc4, 0x16, 0xbb, - 0xc2, 0xf6, 0x5a, 0x99, 0x87, 0x84, 0x14, 0xb3, 0xb1, 0x5e, 0xb5, 0x70, 0x65, 0xe1, 0x25, 0xbe, - 0x1f, 0x9f, 0x73, 0x3e, 0xb3, 0x5d, 0x66, 0x10, 0x46, 0xac, 0xbf, 0x0b, 0xbc, 0x69, 0x45, 0xd9, - 0x41, 0x5a, 0x11, 0x59, 0xcb, 0x59, 0x5b, 0x13, 0x43, 0x28, 0x0e, 0xf0, 0xea, 0x2a, 0x63, 0x5f, - 0x11, 0xf2, 0xf1, 0xc5, 0xb6, 0x42, 0x06, 0x06, 0xa6, 0x61, 0x22, 0x40, 0x04, 0xd4, 0xe9, 0x25, - 0x84, 0x5d, 0x6c, 0xab, 0x6c, 0xd8, 0xf0, 0xb4, 0xc7, 0x57, 0x45, 0xe9, 0xa9, 0x15, 0x8b, 0x89, - 0x2e, 0xc0, 0x84, 0xc5, 0x54, 0x99, 0x6e, 0xd6, 0x24, 0x14, 0xcb, 0x8a, 0xda, 0x9d, 0xc6, 0x0d, - 0x7d, 0xc8, 0x1d, 0xde, 0xa8, 0x15, 0x8b, 0x8b, 0x44, 0x2b, 0x76, 0xa0, 0xae, 0xfa, 0x24, 0xc8, - 0x1e, 0x1e, 0xea, 0x61, 0x0d, 0x27, 0x70, 0x5f, 0x09, 0x0f, 0xcf, 0xfe, 0x14, 0xb1, 0x16, 0x2b, - 0x8e, 0xda, 0xe6, 0x8b, 0xa4, 0xbd, 0x25, 0xa3, 0xb7, 0x02, 0x21, 0xcb, 0x59, 0xca, 0x61, 0xfd, - 0x46, 0x46, 0xef, 0x58, 0xab, 0x30, 0xc3, 0x8a, 0x5a, 0xa1, 0x3a, 0x60, 0xc4, 0x76, 0x06, 0x42, - 0xc6, 0xba, 0x12, 0xdf, 0x5e, 0xb2, 0xef, 0x2f, 0xb6, 0xfd, 0x33, 0x09, 0xd4, 0x1b, 0xdc, 0xf6, - 0x67, 0x1b, 0x2a, 0x6f, 0xaa, 0x37, 0xfd, 0x6b, 0x07, 0x2c, 0x2e, 0x06, 0x79, 0xe1, 0x13, 0x89, - 0xa1, 0xe5, 0xd2, 0x76, 0xfd, 0xc4, 0xd8, 0xe1, 0xd7, 0xcf, 0x5e, 0xb4, 0x70, 0x67, 0x69, 0xba, - 0xc0, 0xf3, 0x4a, 0x76, 0xd4, 0xaf, 0xdc, 0xe8, 0x27, 0x7b, 0x1e, 0x1b, 0x50, 0xd9, 0x07, 0x1b, - 0x05, 0x44, 0xb6, 0xe9, 0xab, 0xd4, 0x6c, 0xc7, 0xa1, 0x2b, 0x08, 0x20, 0x9a, 0x0c, 0x5c, 0x85, - 0x95, 0xc8, 0xa8, 0x6a, 0x66, 0xec, 0x99, 0x2d, 0x73, 0xd2, 0x72, 0x43, 0x0e, 0x01, 0x18, 0xf1, - 0x99, 0x3d, 0x2f, 0x53, 0x7b, 0x5b, 0xa9, 0x81, 0x22, 0xce, 0xac, 0xd2, 0x6f, 0x8f, 0x32, 0xde, - 0xce, 0x6c, 0xb0, 0xd6, 0x70, 0x39, 0x0b, 0x21, 0xbc, 0x98, 0xb6, 0x20, 0x14, 0x62, 0xdb, 0xb9, - 0x16, 0xf9, 0x0b, 0xa6, 0xdc, 0xbf, 0x21, 0xa8, 0x75, 0xf0, 0x36, 0x18, 0xb6, 0x6c, 0xce, 0xdb, - 0x0b, 0xdc, 0x18, 0x7a, 0x95, 0x22, 0x6e, 0xe8, 0xe1, 0xc5, 0x49, 0x51, 0x0f, 0x6b, 0x19, 0x45, - 0x54, 0xf8, 0x07, 0x2b, 0xb6, 0x4f, 0xcb, 0xc5, 0x29, 0x91, 0xa9, 0x66, 0x85, 0xa8, 0xe4, 0x25, - 0x05, 0x77, 0xc3, 0xb6, 0x48, 0x4a, 0xd1, 0x2e, 0x42, 0x64, 0x25, 0xbe, 0xa4, 0x16, 0xb1, 0x30, - 0xeb, 0x0a, 0x97, 0xab, 0x98, 0xd7, 0xc5, 0x65, 0xb8, 0x19, 0xe6, 0x08, 0x3c, 0x6f, 0x00, 0xb3, - 0xc8, 0x76, 0x37, 0x5f, 0xb2, 0x8b, 0x63, 0x21, 0x47, 0x02, 0x6a, 0x26, 0xff, 0xd9, 0x88, 0x43, - 0x0f, 0x21, 0x0e, 0xad, 0x95, 0x5a, 0xc9, 0x65, 0x59, 0x48, 0x9a, 0x86, 0x9e, 0xaa, 0xd1, 0x80, - 0x27, 0x9a, 0xcc, 0x35, 0x0e, 0x44, 0x52, 0x88, 0xc4, 0x81, 0x0f, 0xc9, 0xa2, 0x18, 0x9f, 0x57, - 0x64, 0xb3, 0x45, 0x0c, 0x46, 0x2e, 0x75, 0x85, 0x38, 0x76, 0x12, 0x04, 0x90, 0x0c, 0x18, 0x98, - 0x23, 0x46, 0x32, 0xa8, 0x8d, 0x12, 0xa4, 0xe8, 0xaa, 0x3f, 0xda, 0xcb, 0xa5, 0xad, 0x38, 0x41, - 0x18, 0x8a, 0xfc, 0x10, 0x63, 0x0a, 0xe6, 0x5c, 0x5f, 0xe2, 0xd1, 0x47, 0x88, 0x60, 0x15, 0x35, - 0x8a, 0xc3, 0x00, 0xb2, 0x20, 0x34, 0x23, 0xc9, 0x1a, 0x04, 0x43, 0x50, 0xab, 0x84, 0x5e, 0xc2, - 0xcc, 0x0a, 0x0c, 0xb8, 0xa0, 0xa3, 0xa8, 0x3e, 0x8c, 0x61, 0x13, 0x7a, 0x0a, 0x9c, 0x59, 0xaa, - 0x8d, 0x59, 0xf9, 0xf8, 0x47, 0x35, 0xcb, 0x6a, 0x6c, 0xf5, 0x16, 0xbd, 0x1c, 0x0d, 0x81, 0x67, - 0xcd, 0xde, 0x46, 0x0d, 0xec, 0x1e, 0x5a, 0x0b, 0xba, 0x02, 0xb6, 0x36, 0xcd, 0x0d, 0x5f, 0xc6, - 0x86, 0x35, 0x4e, 0x53, 0x61, 0x50, 0xc3, 0x38, 0xc3, 0x27, 0x31, 0x5d, 0x1f, 0x5e, 0x98, 0x2e, - 0x33, 0x97, 0xa3, 0xa4, 0x12, 0xf1, 0x0b, 0x8a, 0xf1, 0x55, 0x68, 0xfb, 0x91, 0xcb, 0xb6, 0x4e, - 0x98, 0x24, 0x1f, 0x86, 0x41, 0x14, 0xcd, 0xec, 0x29, 0x7d, 0x81, 0x55, 0x57, 0x1f, 0x88, 0x58, - 0x92, 0x61, 0xa7, 0xa9, 0xc1, 0xf4, 0x03, 0xaf, 0x20, 0x26, 0x7a, 0xa1, 0xdb, 0xfb, 0xb1, 0xf0, - 0xff, 0x09, 0x5a, 0x05, 0x3f, 0xe4, 0xba, 0xb9, 0xa0, 0x72, 0x75, 0x54, 0x31, 0xa6, 0x7b, 0xaf, - 0x58, 0xc7, 0x0c, 0xc1, 0x00, 0x64, 0x56, 0x51, 0x76, 0x81, 0xe8, 0xdc, 0xf6, 0x68, 0x0c, 0xae, - 0x37, 0x4e, 0x47, 0xf7, 0x02, 0x61, 0xe7, 0x62, 0x3c, 0xb8, 0xb8, 0x65, 0xfb, 0x53, 0x88, 0x56, - 0x0f, 0x1f, 0x1c, 0x8f, 0xd6, 0x30, 0xcd, 0x4a, 0xc0, 0xe5, 0x48, 0x15, 0x94, 0x9e, 0xff, 0x00, - 0xf7, 0x47, 0x4a, 0xc4, 0x93, 0x06, 0x64, 0x3c, 0xc0, 0x9a, 0x2a, 0x1e, 0xce, 0x2d, 0x63, 0xbc, - 0xd4, 0xfc, 0x23, 0xf1, 0x75, 0xde, 0x4d, 0x3c, 0x27, 0x9b, 0x78, 0x6a, 0xdb, 0xa6, 0x39, 0x93, - 0x72, 0xba, 0x7e, 0xd6, 0xb0, 0x5c, 0x31, 0xc3, 0x5d, 0xa6, 0x12, 0x92, 0xf5, 0xe3, 0x57, 0x6b, - 0x7f, 0x77, 0x43, 0x5c, 0x71, 0xc5, 0x3c, 0x3d, 0xf4, 0x26, 0xe1, 0x7d, 0x29, 0x3b, 0xf1, 0xf6, - 0xc5, 0x76, 0x63, 0xb6, 0x24, 0x04, 0xe6, 0x67, 0x4b, 0x5c, 0xf4, 0x01, 0x04, 0x71, 0x5b, 0x44, - 0x84, 0xef, 0x15, 0x16, 0x84, 0x6f, 0x89, 0x86, 0x2e, 0xd7, 0x7e, 0xe8, 0x46, 0x25, 0xc1, 0x44, - 0x0d, 0xe7, 0x81, 0x1d, 0xbc, 0xc5, 0x8f, 0x59, 0x42, 0x9e, 0x89, 0x6e, 0x9f, 0x4d, 0x06, 0x7f, - 0x38, 0xb6, 0xc1, 0xb9, 0x39, 0x34, 0x63, 0x4e, 0xaa, 0x13, 0x16, 0x61, 0x9d, 0x0f, 0xaf, 0x36, - 0x96, 0x0f, 0xef, 0x1c, 0x32, 0xfa, 0xc8, 0xb3, 0x93, 0x40, 0x24, 0x08, 0xcc, 0x26, 0x95, 0x9d, - 0x05, 0xc9, 0xae, 0xe9, 0xd4, 0x92, 0xb3, 0x1f, 0xa4, 0x74, 0x99, 0xe4, 0xe8, 0x85, 0xa0, 0x72, - 0xf3, 0xa8, 0x64, 0xad, 0xc8, 0xdc, 0x17, 0x4e, 0x88, 0x20, 0x7f, 0x2b, 0xcf, 0x88, 0xd4, 0x52, - 0xf6, 0x6e, 0x39, 0x26, 0x82, 0x41, 0x66, 0xe9, 0x41, 0x11, 0xa6, 0xab, 0x87, 0xc9, 0xe8, 0x81, - 0x6d, 0xe9, 0xf9, 0x97, 0x17, 0x8e, 0x22, 0x5d, 0x08, 0xbb, 0x83, 0x7d, 0x20, 0x21, 0x02, 0xe5, - 0xbe, 0xa5, 0x55, 0xd6, 0xa7, 0x98, 0x47, 0x14, 0xd3, 0x08, 0x39, 0x73, 0xe3, 0xac, 0xd2, 0xfc, - 0x92, 0xae, 0xaa, 0x1c, 0x4c, 0x6f, 0x51, 0x08, 0xa6, 0x4c, 0x2e, 0xa4, 0x21, 0xc8, 0xe0, 0xcb, - 0x25, 0x06, 0xe7, 0xe3, 0xd2, 0x44, 0xe0, 0x84, 0x7d, 0x1d, 0x45, 0x51, 0xef, 0x42, 0x7b, 0x85, - 0x4b, 0x3c, 0xcb, 0xe0, 0x16, 0x3a, 0x6b, 0x5b, 0x04, 0xbf, 0x26, 0xbb, 0xd8, 0xde, 0x9d, 0xfd, - 0x10, 0x29, 0xd8, 0x53, 0xdb, 0x32, 0x51, 0xb2, 0xb9, 0x8f, 0xe7, 0xba, 0x36, 0x5a, 0xd7, 0x8a, - 0x2a, 0x81, 0xa2, 0x51, 0xe2, 0xe7, 0xca, 0xe7, 0x49, 0x98, 0x8c, 0x90, 0x9f, 0x96, 0xc2, 0x85, - 0x4f, 0xfa, 0x3a, 0x3e, 0x4b, 0x8b, 0x64, 0xb6, 0x93, 0x74, 0xed, 0xc3, 0x45, 0xce, 0x05, 0x7d, - 0x38, 0xbf, 0x2c, 0xcd, 0xb8, 0x59, 0xf6, 0x3a, 0x63, 0x09, 0x36, 0x7e, 0xb0, 0x5c, 0x89, 0xe9, - 0x72, 0xe5, 0x15, 0xf1, 0xf2, 0xc0, 0xb9, 0x96, 0x46, 0xce, 0x6d, 0xa2, 0xfc, 0xff, 0x47, 0xce, - 0x44, 0xd6, 0x4a, 0x26, 0x25, 0x95, 0x6d, 0xc8, 0xeb, 0x58, 0xa0, 0x54, 0x9e, 0x2c, 0xff, 0x2f, - 0xed, 0xe3, 0xb4, 0x70, 0x6b, 0x2a, 0xb3, 0xf2, 0xc0, 0x3f, 0xab, 0x2e, 0xd1, 0xb6, 0x70, 0x57, - 0x0b, 0xb7, 0xb8, 0xf0, 0x7f, 0xeb, 0xf0, 0xff, 0x00, 0xb6, 0x93, 0xa8, 0x12, 0xe6, 0x61, 0x00, - 0x00 + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x13, 0xdd, 0x3d, 0xdb, 0x76, 0xdb, 0x38, + 0x92, 0xef, 0xfa, 0x0a, 0x1a, 0xdd, 0xed, 0x90, 0x2d, 0x5a, 0x22, 0x65, 0xcb, 0xed, 0x48, 0xa6, + 0xbc, 0x96, 0x73, 0x69, 0xcf, 0xc8, 0xb1, 0x8e, 0xe5, 0x74, 0x66, 0x4e, 0x3a, 0xdb, 0x81, 0x25, + 0xc8, 0x62, 0x42, 0x91, 0x1a, 0x12, 0xb2, 0xad, 0xb5, 0xb5, 0xdf, 0xb4, 0xdf, 0xb0, 0x5f, 0xb6, + 0x55, 0x00, 0x78, 0x13, 0x49, 0xd9, 0x3d, 0xb3, 0xfb, 0xb2, 0x7d, 0x4e, 0x12, 0x0a, 0x04, 0xaa, + 0x0a, 0x85, 0xba, 0x03, 0x60, 0x1f, 0xef, 0xbc, 0xb9, 0x3c, 0xbb, 0xfe, 0xfb, 0xf0, 0xad, 0x36, + 0xe3, 0x73, 0xaf, 0x77, 0x8c, 0x7f, 0x6b, 0x1e, 0xf5, 0x6f, 0x1d, 0xc2, 0x7c, 0x02, 0xbf, 0x19, + 0x9d, 0xf4, 0x8e, 0xe7, 0x8c, 0x53, 0x6d, 0x3c, 0xa3, 0x61, 0xc4, 0xb8, 0x43, 0x96, 0x7c, 0xba, + 0x77, 0x44, 0x54, 0x6b, 0x6d, 0x1c, 0xf8, 0x9c, 0xf9, 0xd0, 0x7c, 0xef, 0x4e, 0xf8, 0xcc, 0x99, + 0xb0, 0x3b, 0x77, 0xcc, 0xf6, 0xc4, 0x0f, 0xd3, 0xf5, 0x5d, 0xee, 0x52, 0x6f, 0x2f, 0x1a, 0x53, + 0x8f, 0x39, 0xb6, 0x39, 0xa7, 0x0f, 0xee, 0x7c, 0x39, 0x4f, 0x7e, 0x2f, 0x23, 0x16, 0x8a, 0x1f, + 0xf4, 0x06, 0x7e, 0xfb, 0x01, 0xd1, 0x6a, 0x3e, 0x9d, 0x33, 0x87, 0xdc, 0xb9, 0xec, 0x7e, 0x11, + 0x84, 0x1c, 0xb0, 0x70, 0x97, 0x7b, 0xac, 0x37, 0x78, 0xfb, 0x46, 0x1b, 0x31, 0xce, 0x5d, 0xff, + 0x36, 0x3a, 0x6e, 0xca, 0xb6, 0xe3, 0x68, 0x1c, 0xba, 0x0b, 0xde, 0xab, 0xdd, 0xd1, 0x50, 0x9b, + 0x38, 0x93, 0x60, 0xbc, 0x9c, 0x03, 0x25, 0xa6, 0x47, 0x17, 0x21, 0xbb, 0x73, 0xda, 0x6d, 0xc4, + 0xd7, 0x97, 0x68, 0x7f, 0x73, 0x2c, 0xfc, 0xe7, 0xc2, 0x39, 0x60, 0xfb, 0xf8, 0x30, 0xec, 0x3b, + 0x07, 0xd6, 0xeb, 0x43, 0x7c, 0x1c, 0x38, 0xf6, 0xfe, 0xbe, 0x68, 0x1c, 0xdc, 0xfc, 0x63, 0x19, + 0x70, 0xc7, 0xea, 0x4e, 0x1a, 0xcb, 0xf9, 0x1f, 0x0b, 0xe7, 0xf3, 0x17, 0x73, 0xd2, 0x08, 0xa3, + 0xbb, 0x89, 0x7a, 0x0a, 0xfe, 0xb8, 0x5d, 0xb8, 0x81, 0xfc, 0x01, 0xdd, 0xe5, 0xaf, 0xb6, 0xd5, + 0x45, 0xfc, 0x5e, 0x30, 0x76, 0x17, 0x26, 0x77, 0xe7, 0x2c, 0x58, 0x72, 0x73, 0xbc, 0x8c, 0x78, + 0x30, 0x1f, 0x71, 0x1a, 0xf2, 0xc8, 0xd9, 0xb1, 0xcd, 0x48, 0x3c, 0xbd, 0x71, 0x43, 0xbe, 0xc2, + 0xe1, 0x30, 0xf8, 0xec, 0xf2, 0xf2, 0x8e, 0x85, 0xa1, 0x3b, 0x61, 0x91, 0xd3, 0x36, 0x61, 0x34, + 0x76, 0x83, 0x7f, 0x16, 0x61, 0xc0, 0x03, 0x87, 0xcc, 0x38, 0x5f, 0x74, 0x48, 0x77, 0xba, 0xf4, + 0xc7, 0xdc, 0x0d, 0x7c, 0xed, 0x57, 0xdd, 0x78, 0xbc, 0x77, 0xfd, 0x49, 0x70, 0xdf, 0x08, 0x16, + 0xcc, 0xd7, 0x45, 0x87, 0xa8, 0xd3, 0x6c, 0x7e, 0xf7, 0x83, 0xc6, 0xbd, 0xc7, 0x26, 0x8d, 0x5b, + 0xd6, 0x9c, 0x32, 0xca, 0x97, 0x21, 0x8b, 0x9a, 0x91, 0xe2, 0x54, 0xf3, 0x07, 0x78, 0xb3, 0x17, + 0xff, 0x22, 0xc6, 0x3a, 0x81, 0xd7, 0xdf, 0x80, 0x77, 0xcb, 0xf8, 0xc7, 0xab, 0x81, 0x4e, 0x9a, + 0x69, 0x67, 0x93, 0xfc, 0x11, 0x31, 0x6f, 0x9a, 0x1d, 0x75, 0x7b, 0x3e, 0xd1, 0x99, 0xf1, 0x18, + 0x32, 0x40, 0xe3, 0x6b, 0x88, 0x93, 0xbf, 0xf5, 0x18, 0x32, 0xbd, 0xbf, 0x12, 0xaf, 0xd2, 0xae, + 0xc1, 0x74, 0x8a, 0x5d, 0xb3, 0x7d, 0xa2, 0xfe, 0xea, 0x03, 0xac, 0x2e, 0x34, 0x7f, 0xb6, 0xbe, + 0x34, 0xee, 0xa8, 0xb7, 0x64, 0xce, 0x9e, 0x9d, 0x0e, 0xf1, 0x02, 0x3a, 0xf9, 0xcb, 0x48, 0x67, + 0xa6, 0xef, 0xec, 0x58, 0xc6, 0xa3, 0xc7, 0xb8, 0xc6, 0x9d, 0x49, 0x63, 0x1c, 0xc2, 0xb4, 0x98, + 0x82, 0xa1, 0x13, 0xb9, 0xe8, 0xc4, 0xe8, 0xf2, 0x06, 0xd0, 0x7a, 0xca, 0x79, 0xe8, 0xde, 0x2c, + 0x39, 0x83, 0x17, 0xe1, 0x98, 0x98, 0xcc, 0x30, 0x37, 0xdb, 0xf9, 0x6a, 0xc1, 0x88, 0x49, 0x38, + 0x7b, 0xe0, 0xcd, 0x6f, 0xf4, 0x8e, 0xc6, 0x00, 0x0a, 0x1d, 0x69, 0xb4, 0xf2, 0x01, 0x84, 0x6f, + 0xc0, 0xf2, 0xde, 0x04, 0x93, 0x55, 0x83, 0x2e, 0x80, 0x35, 0x93, 0xb3, 0x99, 0xeb, 0x4d, 0x74, + 0x8e, 0xfd, 0xe9, 0x64, 0xf2, 0xf6, 0x0e, 0xa8, 0x18, 0xb8, 0x11, 0xc8, 0x3c, 0x0b, 0x75, 0x82, + 0x34, 0x13, 0x53, 0x37, 0x9c, 0xde, 0xe3, 0x7b, 0xc6, 0x7f, 0xd3, 0x0d, 0x13, 0x61, 0xf6, 0x07, + 0xf0, 0x30, 0x9e, 0xb1, 0xf1, 0xf7, 0x91, 0xab, 0x23, 0xb8, 0xd1, 0xb4, 0x64, 0x6c, 0xb4, 0xbc, + 0x99, 0xbb, 0x9c, 0x98, 0x3c, 0x5c, 0x8d, 0xc4, 0xa3, 0x61, 0xee, 0xd9, 0x8e, 0x23, 0x85, 0x0f, + 0x58, 0xb4, 0xbb, 0x2b, 0x1f, 0x1b, 0xd1, 0xcc, 0x9d, 0x72, 0x80, 0xb3, 0x70, 0xfd, 0x37, 0x61, + 0xb0, 0x80, 0x45, 0xf3, 0x23, 0xdd, 0x58, 0x97, 0x53, 0x04, 0x42, 0x15, 0x84, 0xc0, 0x08, 0xa0, + 0x08, 0x54, 0x33, 0x0a, 0x3c, 0xd6, 0xf0, 0x82, 0x5b, 0x9d, 0xbc, 0xc5, 0x76, 0x4d, 0xb1, 0x19, + 0x56, 0x58, 0x9b, 0xba, 0x1e, 0x13, 0x0c, 0x03, 0x5d, 0x0c, 0x81, 0xb1, 0x03, 0xd5, 0x1e, 0x4c, + 0x35, 0x18, 0x38, 0x75, 0x6f, 0x97, 0x21, 0x15, 0xeb, 0x22, 0x19, 0xa6, 0x4d, 0xa9, 0x8b, 0x72, + 0xf6, 0xbb, 0x7f, 0xee, 0x8f, 0x83, 0xf9, 0x02, 0x96, 0x87, 0x69, 0x0b, 0x7a, 0xcb, 0xb4, 0x09, + 0xe5, 0x74, 0x07, 0xc4, 0x24, 0xb3, 0xfa, 0xd1, 0x2c, 0xb8, 0xbf, 0x0e, 0x68, 0xc4, 0xe5, 0x6a, + 0xda, 0xc6, 0x23, 0xea, 0x08, 0x77, 0x50, 0x80, 0x08, 0xc7, 0x17, 0x62, 0x01, 0x5d, 0x1f, 0x48, + 0xfe, 0xf5, 0xfa, 0x62, 0xe0, 0x30, 0x98, 0xcb, 0xd8, 0xa3, 0x51, 0x84, 0x12, 0xe2, 0xf8, 0x27, + 0x6a, 0x1a, 0x1d, 0x82, 0x90, 0x88, 0x39, 0xf6, 0x18, 0x0d, 0xaf, 0xa5, 0x72, 0xe9, 0x4a, 0xc9, + 0xc4, 0x02, 0xf2, 0x15, 0xcc, 0x8f, 0xfa, 0xee, 0x5c, 0x90, 0xea, 0x10, 0x3f, 0xf0, 0x61, 0x52, + 0xaa, 0x87, 0x03, 0x6b, 0x11, 0x0f, 0xd2, 0x63, 0xda, 0x40, 0xf0, 0xb3, 0xa8, 0x32, 0xcf, 0x8d, + 0x90, 0x2d, 0x3c, 0x3a, 0x46, 0x51, 0x12, 0x48, 0x09, 0xce, 0xc9, 0x6c, 0xbd, 0xb6, 0xac, 0xcc, + 0xcc, 0x6e, 0x06, 0x2e, 0xac, 0x54, 0x84, 0xf3, 0x32, 0xb9, 0x49, 0x4d, 0xd7, 0x78, 0x14, 0x56, + 0x86, 0x49, 0x2b, 0xe3, 0x4b, 0x2b, 0x43, 0x95, 0x8d, 0xe1, 0xd2, 0xc0, 0xb8, 0xe9, 0x78, 0x58, + 0xc3, 0xe8, 0xf2, 0xaf, 0xba, 0x64, 0x08, 0x73, 0x84, 0x68, 0xfc, 0x63, 0xc9, 0x40, 0x04, 0x98, + 0xc7, 0xc6, 0x3c, 0x08, 0x4f, 0x3d, 0x4f, 0x27, 0x3f, 0xcc, 0x07, 0x67, 0x9a, 0xeb, 0x2f, 0x96, + 0xfc, 0x33, 0x1a, 0xc4, 0x7f, 0x77, 0x06, 0x5f, 0x80, 0x61, 0xd3, 0x20, 0xd4, 0x5d, 0x30, 0x4f, + 0xee, 0x31, 0xac, 0x29, 0xf3, 0x6f, 0xf9, 0xac, 0xeb, 0xd6, 0xeb, 0x12, 0x94, 0xef, 0xb0, 0xcf, + 0xee, 0x97, 0x06, 0xf6, 0x6e, 0x80, 0x60, 0x45, 0x20, 0xd5, 0xfe, 0xad, 0x6e, 0x99, 0x2d, 0xa3, + 0xeb, 0x4e, 0x61, 0x71, 0x2d, 0xe2, 0x38, 0xfe, 0xd3, 0x13, 0x19, 0xd8, 0xf1, 0x43, 0x2b, 0x7e, + 0xd8, 0xc7, 0x87, 0x78, 0x85, 0xca, 0xa0, 0x48, 0x18, 0x0b, 0x34, 0xff, 0xe7, 0xa0, 0x82, 0x65, + 0x3a, 0x4d, 0x06, 0xd7, 0xa4, 0xce, 0x53, 0xc5, 0x36, 0x6d, 0xcb, 0xe8, 0x39, 0x47, 0x96, 0x81, + 0xee, 0xc1, 0xf5, 0x97, 0x6c, 0x0d, 0x10, 0x5e, 0x40, 0x06, 0x3e, 0x1c, 0x08, 0x7a, 0x76, 0x77, + 0x09, 0xd9, 0x91, 0xe4, 0x08, 0x88, 0xf0, 0x7b, 0xcf, 0xce, 0xb5, 0x48, 0x92, 0xa9, 0x23, 0x6d, + 0x74, 0x03, 0x30, 0x8d, 0x29, 0x52, 0x87, 0x3a, 0x23, 0x28, 0xae, 0x60, 0x6e, 0x24, 0x7e, 0x34, + 0x60, 0x25, 0x88, 0xd1, 0x00, 0x9e, 0xbe, 0xa5, 0xe3, 0x99, 0x8e, 0xfa, 0xc2, 0x24, 0xdc, 0xde, + 0x9e, 0xbd, 0xbb, 0x4b, 0x1b, 0x8b, 0x65, 0x34, 0x4b, 0x27, 0xad, 0xde, 0x19, 0x28, 0x12, 0xb4, + 0x11, 0x05, 0x30, 0x67, 0xdf, 0xe9, 0xf9, 0x8e, 0x93, 0xf6, 0x48, 0x09, 0x33, 0x0c, 0x65, 0x22, + 0xa5, 0x6a, 0x7d, 0x1d, 0x05, 0x61, 0xb8, 0x32, 0xc5, 0xda, 0x6b, 0x3f, 0x3e, 0xfe, 0x65, 0x74, + 0xf9, 0xa1, 0x21, 0x59, 0xeb, 0x4e, 0x57, 0x3a, 0x35, 0xd6, 0xda, 0x98, 0xfa, 0xaf, 0xb8, 0x76, + 0xc3, 0x34, 0xf0, 0x88, 0x93, 0xc6, 0x57, 0xc3, 0x4c, 0x81, 0x39, 0x84, 0xc8, 0x5f, 0x53, 0xf0, + 0x6f, 0xa0, 0xf6, 0xe6, 0x8e, 0x8d, 0x73, 0x6b, 0xfe, 0xbc, 0xa3, 0xfb, 0x73, 0xcd, 0x71, 0x34, + 0x72, 0x7e, 0x45, 0xb4, 0xa7, 0x27, 0xcd, 0x9f, 0x3b, 0x0e, 0xe9, 0x5f, 0x13, 0x43, 0xdb, 0xdd, + 0xfd, 0xb9, 0x99, 0xb8, 0xab, 0xff, 0x55, 0x5a, 0x13, 0xa8, 0x40, 0x33, 0x0d, 0x99, 0x14, 0x51, + 0x30, 0x2a, 0xde, 0xea, 0x79, 0xa2, 0x51, 0x7a, 0xbf, 0x39, 0x6e, 0xdd, 0xee, 0x7e, 0x4b, 0xe5, + 0xf7, 0x5b, 0x2c, 0xbf, 0x01, 0x2c, 0xec, 0xb7, 0x67, 0xe4, 0x37, 0x88, 0x05, 0x27, 0x88, 0x05, + 0x27, 0x88, 0x05, 0x27, 0x88, 0x05, 0x27, 0x30, 0x1e, 0x45, 0x7f, 0x78, 0x74, 0x82, 0x1c, 0x24, + 0xdb, 0x90, 0x98, 0xbc, 0x52, 0x4c, 0x2f, 0x95, 0x71, 0xef, 0x19, 0x19, 0x97, 0x42, 0xfb, 0x2d, + 0x11, 0xda, 0x0c, 0x4f, 0x32, 0xed, 0x1b, 0x3c, 0x1f, 0xba, 0xbe, 0xb0, 0xb9, 0x9e, 0x3b, 0x46, + 0x29, 0xe0, 0xf7, 0x8c, 0xf9, 0xc0, 0xfc, 0x44, 0x17, 0xd7, 0x4d, 0xfc, 0xa1, 0x88, 0x5e, 0xef, + 0x08, 0x56, 0x7f, 0xcb, 0xb1, 0xfa, 0x5b, 0x96, 0xd5, 0x6b, 0xf8, 0x4f, 0x22, 0xd8, 0xb1, 0x52, + 0xcb, 0x93, 0xb8, 0x19, 0xf4, 0xcb, 0xb1, 0x76, 0xa0, 0xed, 0xce, 0xc0, 0x69, 0x60, 0xe4, 0x04, + 0x53, 0x7e, 0xc3, 0xa6, 0x74, 0xe9, 0xa1, 0xcf, 0xd9, 0x89, 0x0d, 0x56, 0x4c, 0x32, 0x30, 0x8d, + 0x07, 0x8b, 0x21, 0xf8, 0x21, 0x7a, 0x4b, 0xa5, 0x41, 0x55, 0x22, 0x29, 0xa2, 0xa7, 0x9e, 0x0d, + 0xe6, 0x52, 0x59, 0x24, 0x72, 0x1d, 0x04, 0xda, 0x9c, 0xfa, 0x2b, 0x0d, 0xc2, 0xb7, 0x48, 0x03, + 0x01, 0xd0, 0xe6, 0x4c, 0xe3, 0x81, 0x36, 0xa3, 0xfe, 0xc4, 0x63, 0x3b, 0xa4, 0x8b, 0xc6, 0xf2, + 0xd8, 0x66, 0x07, 0xbb, 0xbb, 0xba, 0x5f, 0x77, 0xc8, 0xef, 0xfe, 0xef, 0xe1, 0x19, 0x38, 0x2d, + 0x88, 0x8a, 0x42, 0x50, 0x05, 0xf4, 0x46, 0xd4, 0xd7, 0xde, 0x8e, 0x86, 0xfb, 0xad, 0x06, 0x89, + 0x1d, 0x95, 0x6f, 0xac, 0x05, 0xe9, 0xc2, 0xbf, 0xfe, 0x46, 0x3d, 0x77, 0xe2, 0xf2, 0x95, 0x6e, + 0xa0, 0xb7, 0x84, 0x56, 0xe9, 0x54, 0xf5, 0x8c, 0xc5, 0x66, 0xbe, 0xf0, 0xc7, 0x59, 0x83, 0x0b, + 0x0d, 0x72, 0x38, 0x9b, 0x74, 0x45, 0xc3, 0xc5, 0x69, 0x63, 0xee, 0x82, 0x09, 0x3d, 0x69, 0xb5, + 0xad, 0x8e, 0x65, 0x0a, 0x37, 0x05, 0x31, 0x29, 0xd8, 0x07, 0xe9, 0x61, 0x26, 0x6e, 0x04, 0xae, + 0x61, 0x05, 0x1d, 0x88, 0xeb, 0x7b, 0x2e, 0xf8, 0x98, 0x8e, 0x72, 0x35, 0xa2, 0xeb, 0x22, 0x5a, + 0xb6, 0x5e, 0xd0, 0x97, 0x3d, 0x3d, 0x49, 0xae, 0x0f, 0x87, 0x09, 0x7e, 0x74, 0x8e, 0x26, 0xf3, + 0xa1, 0x05, 0xf8, 0xf8, 0xf1, 0x3c, 0x4f, 0xb8, 0x68, 0x15, 0x6e, 0x9c, 0x97, 0x90, 0x0e, 0x9e, + 0x75, 0x13, 0x5a, 0x32, 0x1b, 0x88, 0x99, 0x26, 0xa8, 0x96, 0xe0, 0x90, 0x24, 0x85, 0x0b, 0x0f, + 0xe8, 0x2a, 0xd0, 0xe8, 0x17, 0x68, 0x7c, 0xa9, 0x43, 0xba, 0x38, 0xfd, 0x92, 0xb1, 0x9e, 0x3a, + 0xb8, 0x42, 0x8c, 0x81, 0x04, 0xae, 0xe1, 0xe8, 0x23, 0xa9, 0xd3, 0x67, 0x51, 0x75, 0xe5, 0xbc, + 0x5c, 0x27, 0xa3, 0x74, 0xa3, 0xe9, 0x67, 0xa1, 0x65, 0x34, 0xd6, 0x13, 0x08, 0x12, 0x70, 0x61, + 0xfc, 0xdd, 0xdd, 0x1d, 0xdd, 0x45, 0x65, 0xdb, 0xdd, 0x75, 0x8f, 0x5f, 0x1f, 0x3e, 0x3d, 0xc1, + 0x8f, 0x03, 0xf1, 0xe3, 0xe0, 0xc8, 0x50, 0xab, 0x86, 0xec, 0xe5, 0x4a, 0x98, 0xad, 0x5c, 0x38, + 0xc2, 0xfc, 0xc1, 0x29, 0x7a, 0xec, 0x98, 0x97, 0xbc, 0x0c, 0xa7, 0x9f, 0xe0, 0x14, 0xb3, 0x18, + 0x9c, 0x22, 0xc3, 0xea, 0xfe, 0xe6, 0x3c, 0xda, 0xa0, 0xc7, 0x0d, 0xe9, 0x42, 0xd8, 0xe4, 0xdc, + 0x9f, 0xb0, 0x87, 0x52, 0x1e, 0x02, 0xcc, 0xd3, 0x14, 0xa6, 0x43, 0xd0, 0x7e, 0x39, 0xca, 0x89, + 0x9c, 0xb4, 0xdb, 0x1d, 0xf5, 0x98, 0xef, 0x8b, 0x53, 0xe5, 0x72, 0x96, 0x5c, 0xcc, 0x92, 0xcb, + 0x59, 0x72, 0x98, 0xe5, 0x89, 0xd5, 0xc9, 0xc4, 0xca, 0x71, 0x94, 0xf9, 0xb8, 0x29, 0x14, 0x98, + 0x46, 0xfc, 0x93, 0x6b, 0x88, 0x0c, 0x82, 0x35, 0x2c, 0xb8, 0xbc, 0x1e, 0x50, 0xa0, 0x17, 0xf1, + 0x20, 0x8b, 0xb7, 0xa2, 0x92, 0x4c, 0x8a, 0x03, 0x98, 0x53, 0xf8, 0x59, 0x86, 0x2e, 0xba, 0x77, + 0x39, 0xfa, 0xdf, 0x78, 0xe1, 0xcc, 0xcd, 0xa5, 0xc9, 0xb0, 0x11, 0x2c, 0xf8, 0x98, 0x46, 0x4c, + 0xb3, 0x3a, 0x37, 0x20, 0xe0, 0xdf, 0xbb, 0xe2, 0x87, 0x9d, 0x30, 0xd3, 0xb1, 0xdb, 0xdd, 0xcc, + 0x8b, 0x7d, 0x2b, 0x79, 0xb1, 0x6f, 0xe5, 0x5e, 0xa4, 0x23, 0xf6, 0x73, 0x23, 0xd2, 0x75, 0x81, + 0xec, 0x31, 0xfb, 0xa2, 0x95, 0x79, 0x03, 0xcf, 0xeb, 0x44, 0xa0, 0xd6, 0xa8, 0xbc, 0x32, 0xde, + 0x17, 0x52, 0x33, 0xb7, 0x61, 0x8a, 0x69, 0x58, 0x8b, 0xf6, 0x2d, 0x93, 0x3e, 0x31, 0x7e, 0xc1, + 0xe6, 0x52, 0x10, 0x65, 0x76, 0xf3, 0x8c, 0xbf, 0x39, 0x43, 0xf9, 0x4b, 0xfc, 0x0d, 0x28, 0x43, + 0xfd, 0x99, 0x11, 0xa3, 0xc1, 0xc6, 0x08, 0x44, 0x43, 0x21, 0x64, 0x4c, 0x52, 0x36, 0x58, 0xae, + 0xc1, 0x9b, 0x78, 0x11, 0x61, 0x5d, 0xa9, 0x73, 0xf0, 0x33, 0x84, 0xd2, 0xec, 0x78, 0xbf, 0x75, + 0xa2, 0xb7, 0x0e, 0xc1, 0x79, 0xed, 0xee, 0xb6, 0x5e, 0xc3, 0x3f, 0xa8, 0x4c, 0x3f, 0x3b, 0x2d, + 0xc3, 0x4c, 0x6d, 0xf4, 0x3e, 0x26, 0x27, 0x65, 0x74, 0x5a, 0x39, 0xac, 0x27, 0xac, 0xd7, 0x3a, + 0x3a, 0x69, 0x59, 0x3f, 0xf3, 0x3a, 0xed, 0xd8, 0x6d, 0xf1, 0x0f, 0x02, 0xe9, 0x39, 0x00, 0x45, + 0xbe, 0x3c, 0x12, 0x8d, 0x87, 0xe2, 0x6f, 0xd1, 0x70, 0x20, 0x1e, 0xf7, 0xf1, 0x6f, 0x03, 0x5a, + 0xf6, 0x21, 0x02, 0x63, 0x28, 0xf4, 0x6d, 0xd9, 0x96, 0xf2, 0x10, 0x4c, 0x24, 0x13, 0x09, 0x05, + 0xce, 0x0c, 0x53, 0x0b, 0x93, 0xe3, 0x5f, 0x30, 0x47, 0x33, 0x80, 0x3f, 0x1e, 0xfc, 0x89, 0xe0, + 0x4f, 0x88, 0x82, 0x04, 0x7f, 0x96, 0x30, 0x77, 0xa9, 0xf3, 0xe3, 0xa2, 0xfd, 0x9c, 0x57, 0xd8, + 0xcf, 0x17, 0xc9, 0xf3, 0x75, 0x56, 0x98, 0x5d, 0x10, 0x64, 0x19, 0x5b, 0xb8, 0xc5, 0xc0, 0x02, + 0x08, 0x4a, 0x56, 0xcd, 0x8d, 0x17, 0x06, 0xa3, 0x21, 0x69, 0x99, 0xad, 0x09, 0x46, 0x15, 0x19, + 0xa1, 0x89, 0xa4, 0x05, 0x88, 0xc0, 0x02, 0x9c, 0x90, 0xf3, 0xa1, 0x06, 0x39, 0x1e, 0x24, 0xf5, + 0x51, 0x87, 0x74, 0xa2, 0xde, 0xc1, 0xeb, 0x13, 0xf2, 0x06, 0x7c, 0xb6, 0xf6, 0x7e, 0x78, 0x7e, + 0x29, 0x5b, 0xec, 0x13, 0x82, 0x3f, 0xf0, 0x3d, 0x91, 0xad, 0xca, 0xe4, 0xdb, 0x45, 0xc0, 0x07, + 0xaf, 0x11, 0xee, 0xe1, 0xc1, 0x09, 0x39, 0xf3, 0xbe, 0xc7, 0x30, 0x08, 0x49, 0x1d, 0x1e, 0x0e, + 0xc8, 0xdb, 0xbb, 0x0c, 0x35, 0x4f, 0x4f, 0x91, 0xb4, 0x47, 0x11, 0x2e, 0x8d, 0x34, 0x76, 0x9d, + 0xd8, 0xf8, 0x99, 0xb4, 0xee, 0x28, 0x01, 0x8f, 0x4c, 0xcf, 0x30, 0x57, 0x8e, 0xdd, 0x5d, 0x1d, + 0xb7, 0xbb, 0xab, 0x38, 0xc2, 0x0b, 0x2b, 0x84, 0x87, 0xd4, 0x57, 0x32, 0xaa, 0xea, 0x86, 0x20, + 0x8f, 0x19, 0x74, 0xbb, 0xbb, 0xab, 0xe3, 0x03, 0xc4, 0x89, 0x54, 0x43, 0x62, 0xbc, 0x12, 0xcf, + 0x36, 0xbe, 0x6c, 0x43, 0x97, 0x55, 0xfd, 0xc0, 0x3a, 0x8e, 0x4e, 0xf4, 0x70, 0x83, 0xe0, 0x84, + 0xa0, 0x10, 0xbc, 0xe0, 0x3f, 0x96, 0x6e, 0x28, 0x8d, 0x55, 0xa7, 0xd8, 0x51, 0x5a, 0xeb, 0x6c, + 0x37, 0x1b, 0x7e, 0xc5, 0xd1, 0x10, 0x84, 0xfa, 0xa0, 0x0b, 0x72, 0x91, 0xc2, 0xa9, 0xe0, 0x4c, + 0x6c, 0xfb, 0x4a, 0xda, 0x9e, 0x9e, 0xf6, 0x81, 0xc4, 0xc8, 0x8c, 0x84, 0xec, 0x22, 0x83, 0x84, + 0xd1, 0xac, 0xd0, 0xea, 0x4c, 0x14, 0xe9, 0xd8, 0x46, 0xc6, 0x09, 0x78, 0xd2, 0x09, 0x54, 0x32, + 0x1d, 0x9c, 0x80, 0xea, 0x7d, 0xf1, 0xa2, 0xde, 0xe0, 0x19, 0x95, 0x65, 0x52, 0xe4, 0x42, 0x92, + 0x04, 0x51, 0xe6, 0x77, 0x47, 0x50, 0x7b, 0x82, 0x85, 0x8b, 0x1d, 0xbb, 0x23, 0xea, 0x17, 0x6b, + 0x93, 0x3f, 0x39, 0x08, 0xcc, 0xfe, 0x05, 0x87, 0xb7, 0x5a, 0x08, 0xab, 0x75, 0x84, 0xcf, 0xfb, + 0xe2, 0x59, 0x81, 0x85, 0x75, 0x39, 0xd8, 0xdf, 0x71, 0xa2, 0xa7, 0xa7, 0xa3, 0x23, 0x9c, 0xb1, + 0x80, 0x3e, 0x0e, 0xfe, 0x15, 0xd1, 0x11, 0x20, 0x26, 0xee, 0x2d, 0xc0, 0xa8, 0x93, 0x7b, 0x52, + 0x84, 0x13, 0x93, 0x51, 0x70, 0xb5, 0x59, 0x0a, 0xcb, 0xd9, 0xfd, 0xe9, 0x32, 0xcf, 0xee, 0x98, + 0x1f, 0x31, 0xba, 0x71, 0x09, 0xba, 0x17, 0x52, 0x1a, 0x92, 0x2d, 0x33, 0xde, 0x3e, 0x34, 0x22, + 0xff, 0x3b, 0xcc, 0x9a, 0x96, 0xc1, 0xb1, 0x0f, 0xd3, 0x45, 0x73, 0xda, 0x56, 0xac, 0xf2, 0x65, + 0x91, 0x6b, 0x0c, 0x87, 0x16, 0x43, 0x43, 0x58, 0x66, 0x0b, 0x96, 0x79, 0xfb, 0x38, 0xaf, 0x04, + 0xff, 0xc1, 0xd1, 0x36, 0x8c, 0x90, 0x60, 0x14, 0xed, 0x5d, 0x3a, 0xd9, 0x73, 0xff, 0x0e, 0x82, + 0x7c, 0x36, 0xd1, 0x82, 0x25, 0x87, 0x48, 0x05, 0xc6, 0x5e, 0x41, 0x46, 0x02, 0xd6, 0x73, 0xa2, + 0xe9, 0x61, 0xc0, 0x29, 0xbe, 0xb2, 0x8f, 0xac, 0xff, 0xfe, 0x2f, 0x23, 0x89, 0xbd, 0x27, 0xdb, + 0xe1, 0x41, 0x84, 0x86, 0x46, 0x4e, 0x14, 0x63, 0xc1, 0x36, 0x8e, 0x77, 0x77, 0xe7, 0x18, 0x4d, + 0x56, 0xf1, 0x1b, 0x12, 0x09, 0x3d, 0xa8, 0x6f, 0x06, 0x88, 0x4a, 0xdb, 0xd2, 0x1a, 0x80, 0xc0, + 0x7d, 0x5f, 0x14, 0x1e, 0x5e, 0x98, 0x35, 0x8f, 0xa3, 0xfe, 0xd3, 0x4f, 0xf9, 0xb8, 0x11, 0xdc, + 0x93, 0x68, 0x3f, 0xbb, 0xca, 0x26, 0x03, 0xa2, 0x9a, 0x7c, 0xf7, 0xcf, 0x16, 0x86, 0xee, 0x0a, + 0x85, 0xa1, 0xa9, 0x73, 0x57, 0x51, 0x18, 0x32, 0x6f, 0x4b, 0x5f, 0xc5, 0x19, 0xf7, 0x19, 0x64, + 0xb2, 0x53, 0x95, 0x4d, 0x63, 0xf4, 0x3a, 0x8d, 0xb3, 0xef, 0xa9, 0xa1, 0xec, 0x15, 0x18, 0xb2, + 0xdb, 0x2f, 0x58, 0x09, 0x77, 0x44, 0xb5, 0xab, 0x5b, 0xd2, 0x35, 0x4e, 0xd4, 0xa7, 0x71, 0xa2, + 0x2e, 0x21, 0xea, 0xb3, 0xb2, 0x08, 0xfc, 0x36, 0x61, 0xb0, 0x48, 0xab, 0x1f, 0x05, 0x75, 0x08, + 0x1e, 0x42, 0x2e, 0x53, 0xfe, 0x00, 0x6b, 0x67, 0xc9, 0x47, 0xc9, 0xf6, 0x71, 0xe0, 0x05, 0xa1, + 0x43, 0x7e, 0x98, 0x4e, 0xa7, 0x22, 0xa1, 0x90, 0x79, 0x78, 0x32, 0x30, 0xad, 0xd3, 0xa7, 0xe3, + 0xf7, 0xec, 0x4c, 0x2d, 0x6a, 0x1b, 0xa5, 0x71, 0x49, 0x61, 0xaa, 0x6a, 0x51, 0x77, 0x85, 0x5a, + 0xd4, 0xdd, 0x46, 0x2d, 0x6a, 0x55, 0x51, 0x8b, 0xc2, 0xf5, 0xf9, 0x57, 0x8a, 0x51, 0xab, 0x2d, + 0xc5, 0xa8, 0x6f, 0xb0, 0xee, 0xdf, 0xd2, 0x75, 0xc7, 0x82, 0x0a, 0x4c, 0xcf, 0xdd, 0x71, 0xbe, + 0x49, 0x9a, 0x06, 0x40, 0xe5, 0x73, 0x85, 0x95, 0x41, 0xcc, 0x85, 0x41, 0xcc, 0x85, 0x41, 0xcc, + 0x85, 0x41, 0xcc, 0x85, 0x41, 0xa6, 0xb0, 0x32, 0x28, 0x2d, 0xac, 0x9c, 0x97, 0x62, 0x2a, 0x14, + 0x56, 0xe2, 0xd5, 0x3e, 0xaf, 0x2c, 0xa3, 0x48, 0x66, 0x7f, 0x2b, 0x30, 0x3b, 0x6d, 0xd9, 0x64, + 0x48, 0xfa, 0x0e, 0xa1, 0x19, 0xeb, 0xf5, 0x4a, 0x96, 0xbd, 0x80, 0x91, 0x2c, 0x53, 0xf6, 0xca, + 0xac, 0x97, 0x71, 0x52, 0x94, 0x22, 0x08, 0x01, 0x48, 0xa7, 0xd0, 0xbc, 0x51, 0x49, 0xdb, 0x06, + 0x92, 0x04, 0x21, 0xf5, 0x6f, 0x51, 0xf5, 0x85, 0x40, 0xae, 0xd7, 0xcc, 0x8b, 0x98, 0xe0, 0xcd, + 0xcc, 0x1c, 0x95, 0x8d, 0x41, 0x6a, 0x91, 0x3d, 0xd9, 0xfd, 0x22, 0x30, 0x43, 0xe9, 0x6e, 0xd1, + 0xe7, 0xdb, 0x2f, 0x60, 0x3e, 0x84, 0xb1, 0xf1, 0x20, 0x1b, 0xbd, 0x35, 0x94, 0x17, 0x8b, 0x94, + 0x05, 0x52, 0x8d, 0x60, 0x7d, 0x70, 0x0b, 0x0d, 0x0c, 0x48, 0x16, 0x92, 0x39, 0x02, 0x5b, 0xa6, + 0xf7, 0x53, 0xc4, 0x05, 0x38, 0x86, 0x51, 0x1f, 0xf5, 0x22, 0x0c, 0xbb, 0x9c, 0x7e, 0x7d, 0x64, + 0x98, 0xa3, 0xde, 0x12, 0x7e, 0x2c, 0x1d, 0x78, 0x7c, 0x4e, 0x45, 0x8f, 0xd1, 0x7a, 0xea, 0x61, + 0x1d, 0xfb, 0xce, 0xa4, 0x2d, 0x9d, 0x09, 0x5b, 0x3a, 0x93, 0xb6, 0x74, 0x06, 0xb6, 0x14, 0x48, + 0x5f, 0x88, 0x0e, 0x3b, 0x7a, 0x55, 0x17, 0xc3, 0x90, 0xa1, 0x3c, 0x73, 0x4a, 0xf2, 0xbe, 0x04, + 0x5b, 0x17, 0x2c, 0x80, 0x83, 0xa9, 0x09, 0xb0, 0xdf, 0x06, 0xcb, 0xe5, 0xd5, 0x1d, 0xf6, 0xf3, + 0x68, 0xbd, 0x5e, 0xbf, 0xd8, 0x4c, 0x9e, 0x95, 0xe5, 0x9e, 0x1b, 0x49, 0x18, 0x4b, 0x17, 0x05, + 0x12, 0x8a, 0xad, 0x25, 0x02, 0x5c, 0xb3, 0x98, 0xf0, 0x0b, 0xca, 0x67, 0x20, 0x23, 0x4b, 0x7f, + 0x92, 0x17, 0x73, 0xac, 0xc3, 0x24, 0x00, 0x7f, 0xe6, 0x4d, 0x30, 0x04, 0xf3, 0xa7, 0x27, 0x2a, + 0x19, 0x41, 0x05, 0x23, 0xa8, 0x64, 0x04, 0x95, 0xbc, 0x4a, 0x5d, 0x4d, 0x52, 0x37, 0x60, 0x86, + 0x90, 0x21, 0xad, 0xe4, 0x95, 0x15, 0x7b, 0x21, 0x0f, 0xbd, 0x10, 0x6e, 0x6f, 0x9d, 0xa9, 0xad, + 0x58, 0x15, 0x93, 0x2d, 0x0a, 0xed, 0x8e, 0x13, 0x9e, 0x10, 0x90, 0x4e, 0x9d, 0xd4, 0xc3, 0x3a, + 0xd1, 0x16, 0xb3, 0x55, 0xe4, 0x8e, 0xa9, 0x17, 0xbb, 0xd2, 0xb9, 0x95, 0x4b, 0x5e, 0xa9, 0x29, + 0xf7, 0x43, 0x69, 0x13, 0xb3, 0xb7, 0x9f, 0x6d, 0x4b, 0x15, 0xc6, 0x26, 0x37, 0x34, 0x8d, 0x7c, + 0x6e, 0xe8, 0xf8, 0xfb, 0xad, 0x98, 0xbc, 0xf3, 0x15, 0xdd, 0x1e, 0x0d, 0xf7, 0x6e, 0x43, 0x3a, + 0x71, 0x71, 0xaf, 0xee, 0xb5, 0x35, 0x61, 0xb7, 0xa6, 0xf6, 0xe3, 0xa3, 0xac, 0x0c, 0x1e, 0x5a, + 0x27, 0xf2, 0xe1, 0xb5, 0x75, 0x22, 0x75, 0x2d, 0xa3, 0x2f, 0xe3, 0xf1, 0x98, 0xac, 0x35, 0x2b, + 0xee, 0xbc, 0xfe, 0xc9, 0xd4, 0x7e, 0x38, 0x38, 0x38, 0x48, 0x7f, 0x6b, 0x80, 0xff, 0x27, 0xe3, + 0xab, 0x9a, 0x32, 0x9b, 0xdc, 0xd3, 0xd0, 0x07, 0xfb, 0x52, 0x70, 0xc0, 0xcb, 0x9e, 0x58, 0x0f, + 0xb0, 0xf4, 0xba, 0xf0, 0x4a, 0xe6, 0x91, 0x65, 0x19, 0x4f, 0x4f, 0x12, 0xf3, 0x91, 0x55, 0x1e, + 0x94, 0x94, 0xc0, 0x93, 0xca, 0x1f, 0x43, 0xa3, 0x0f, 0x25, 0xd0, 0x80, 0xa2, 0x8d, 0x89, 0xa8, + 0xb0, 0x20, 0x64, 0x34, 0x0a, 0xfc, 0x1c, 0x33, 0x53, 0xfc, 0x47, 0xd6, 0x4f, 0xb8, 0xc7, 0x06, + 0xe0, 0x1a, 0x58, 0x17, 0xd5, 0xe6, 0x6c, 0x1e, 0x84, 0x2b, 0x52, 0x4f, 0xeb, 0xa7, 0x27, 0x5f, + 0x35, 0xfd, 0xf8, 0xa6, 0xf7, 0xf6, 0xea, 0xea, 0xf2, 0xaa, 0xa3, 0x7d, 0x14, 0x75, 0xd0, 0x00, + 0x82, 0x20, 0x60, 0x86, 0x28, 0x28, 0xf4, 0x77, 0x8e, 0x9b, 0x37, 0x3d, 0xe3, 0x2b, 0x64, 0x6e, + 0x46, 0x07, 0xe0, 0x59, 0xb2, 0xbe, 0xba, 0x80, 0x1e, 0x2a, 0x6a, 0x32, 0xe7, 0x71, 0xc9, 0x26, + 0x96, 0x41, 0x27, 0x50, 0xd2, 0x42, 0xe7, 0x8b, 0x2a, 0xd6, 0x55, 0x4b, 0x6f, 0xef, 0x97, 0x96, + 0x55, 0x60, 0x9d, 0x88, 0x54, 0x6e, 0xa4, 0xf8, 0x8f, 0x99, 0xeb, 0xe9, 0x3a, 0xd0, 0x0e, 0xa1, + 0x58, 0xb3, 0x0d, 0x3c, 0x6a, 0xb6, 0xcc, 0xbe, 0x43, 0x4e, 0xb5, 0x45, 0x70, 0x0f, 0x64, 0x45, + 0xcb, 0xc5, 0xc2, 0x5b, 0x69, 0xf7, 0x2e, 0x9f, 0x69, 0x1c, 0xa2, 0x38, 0x0f, 0x39, 0x40, 0xba, + 0xfd, 0xba, 0x73, 0xe3, 0xdc, 0xf4, 0xda, 0x27, 0x29, 0x8c, 0x1b, 0xa3, 0x73, 0x63, 0x42, 0x3b, + 0x0c, 0x75, 0x23, 0x2d, 0xce, 0xcc, 0x1a, 0x12, 0xd9, 0x69, 0x09, 0x32, 0x5b, 0x61, 0x7b, 0x70, + 0x88, 0x2e, 0x2a, 0xcc, 0x01, 0x16, 0x4b, 0xa7, 0x53, 0x30, 0x06, 0x91, 0xa9, 0xfd, 0x27, 0xe9, + 0x3e, 0xd4, 0x9d, 0x53, 0xe7, 0x34, 0x87, 0xe4, 0xd4, 0xe8, 0x9c, 0x9a, 0x0f, 0x31, 0x12, 0xe6, + 0x07, 0xcb, 0xdb, 0x99, 0x71, 0x7c, 0x13, 0xf6, 0xd2, 0x7a, 0x6e, 0x6e, 0xf1, 0xfa, 0xb9, 0x32, + 0x6f, 0xda, 0xfe, 0x20, 0xdb, 0xbf, 0xc9, 0xc5, 0xce, 0x33, 0xf3, 0xc8, 0x91, 0x31, 0xdc, 0xf9, + 0xb5, 0xaa, 0x8a, 0x90, 0x98, 0x6f, 0x99, 0x1d, 0x6f, 0x1a, 0xf1, 0xb7, 0xfe, 0x44, 0x15, 0xe4, + 0xd9, 0xb1, 0x1d, 0x17, 0xd9, 0xad, 0xee, 0xdd, 0x73, 0xb5, 0xa1, 0x11, 0x48, 0x0c, 0xdb, 0x03, + 0xdf, 0x9b, 0x56, 0x7b, 0xea, 0xcf, 0x97, 0x93, 0x36, 0x87, 0x74, 0x65, 0xa5, 0xfe, 0xf9, 0x7d, + 0x8f, 0xc2, 0x40, 0x45, 0xa9, 0x2f, 0xf2, 0x5d, 0x5f, 0xe6, 0xbb, 0x77, 0x98, 0xcc, 0xba, 0xd1, + 0x07, 0xfa, 0x41, 0xbf, 0x33, 0x20, 0xfb, 0xbc, 0x4b, 0xa7, 0x4a, 0x27, 0x13, 0x14, 0xd2, 0x64, + 0x77, 0x5f, 0xee, 0x36, 0x6e, 0xa0, 0x3b, 0x8b, 0xb7, 0x62, 0x75, 0xe2, 0x8e, 0xae, 0xb1, 0xe2, + 0xef, 0xf0, 0x24, 0xa0, 0x9d, 0xea, 0x3b, 0xba, 0x2d, 0x9c, 0x00, 0x58, 0x4d, 0xdc, 0x73, 0xad, + 0xe3, 0x8e, 0xeb, 0xd3, 0xd3, 0x9e, 0x6c, 0xb4, 0x1c, 0x87, 0xaa, 0x40, 0xc4, 0x95, 0x09, 0x3a, + 0xf8, 0x00, 0x22, 0x2c, 0x35, 0x76, 0x88, 0x77, 0x99, 0xbe, 0x1e, 0x4f, 0xdc, 0x3b, 0x4d, 0xec, + 0xf9, 0x3a, 0x02, 0x49, 0xef, 0x77, 0xff, 0x78, 0x16, 0xc6, 0x2d, 0xd1, 0xdc, 0xc3, 0x96, 0x1f, + 0x1f, 0x69, 0xdd, 0x5e, 0x77, 0xe0, 0x95, 0x8c, 0xcf, 0x34, 0x79, 0x2c, 0x65, 0x70, 0x0d, 0x2f, + 0xd6, 0x44, 0x83, 0xe8, 0x6e, 0x86, 0xfa, 0xee, 0x90, 0x8f, 0xe7, 0x3a, 0x0f, 0x81, 0x1d, 0xa4, + 0x07, 0x6f, 0x24, 0x59, 0xb8, 0xd0, 0xaf, 0x8e, 0x83, 0x85, 0x98, 0xb6, 0x2a, 0x26, 0xb4, 0x5a, + 0x44, 0x8b, 0x63, 0xff, 0xde, 0xa7, 0x51, 0xeb, 0xc8, 0x7e, 0x38, 0x6e, 0xca, 0x2e, 0xbd, 0x8d, + 0xae, 0xfb, 0x16, 0xe9, 0x8d, 0xfe, 0x7a, 0x78, 0x64, 0xb7, 0xb4, 0xab, 0xf7, 0xfd, 0x4f, 0x95, + 0xdd, 0x6c, 0xd2, 0xbb, 0xbe, 0xb0, 0x8f, 0xec, 0x83, 0xaa, 0x1e, 0xad, 0x03, 0x02, 0x29, 0xbb, + 0xf5, 0xfd, 0xd7, 0xff, 0xa8, 0xec, 0xd1, 0x96, 0x30, 0x5a, 0xaf, 0x2b, 0x7b, 0x1c, 0x92, 0xde, + 0xc7, 0xb3, 0xd1, 0xd1, 0x6b, 0x6b, 0xbf, 0xb2, 0xcb, 0xeb, 0xb8, 0xcb, 0xc1, 0x56, 0x82, 0xdb, + 0x30, 0x2f, 0x9c, 0xb9, 0x65, 0x57, 0xf6, 0x80, 0x29, 0x9d, 0x0e, 0x4f, 0x6d, 0xab, 0x55, 0xd9, + 0xa3, 0x45, 0x7a, 0x83, 0xe1, 0x9b, 0xa3, 0x23, 0xeb, 0xb0, 0xb2, 0xcb, 0x81, 0xe8, 0x72, 0x78, + 0x54, 0x4d, 0x71, 0x7b, 0x9f, 0xf4, 0x86, 0xaf, 0x8f, 0xec, 0xca, 0x0e, 0xf6, 0x6b, 0x49, 0xaa, + 0x6d, 0x6b, 0x9f, 0x66, 0x2e, 0x67, 0x55, 0xfd, 0x0e, 0x60, 0x4a, 0x97, 0x7e, 0xf3, 0x72, 0x3a, + 0xad, 0xec, 0x01, 0x53, 0x1a, 0x7e, 0xba, 0x78, 0x06, 0x4c, 0x4b, 0x76, 0x3a, 0x3b, 0xbb, 0xae, + 0xec, 0xb2, 0x2f, 0xbb, 0x00, 0x83, 0x2b, 0xbb, 0x1c, 0x24, 0x5d, 0x2a, 0xd7, 0xe0, 0xa0, 0x9d, + 0xf4, 0xa9, 0x67, 0xb1, 0xfd, 0xfe, 0xb0, 0x3f, 0xde, 0xd9, 0xdb, 0xdb, 0xe8, 0x7c, 0x98, 0x76, + 0x7e, 0x93, 0xe9, 0xbd, 0xb7, 0x07, 0xdd, 0xd9, 0xab, 0x35, 0x28, 0x47, 0x7e, 0xc0, 0x11, 0xb0, + 0xe3, 0xcd, 0x9b, 0x21, 0x0e, 0xd0, 0x74, 0x9f, 0xf1, 0xfb, 0x20, 0xfc, 0x6e, 0xa4, 0x38, 0xfc, + 0x52, 0x2c, 0x47, 0xc0, 0xa1, 0xb7, 0x76, 0x63, 0xdf, 0x2e, 0x1f, 0x26, 0x91, 0x15, 0x51, 0x01, + 0xcb, 0x4e, 0x43, 0xbe, 0xf7, 0x01, 0x02, 0xb0, 0x2a, 0x74, 0x9b, 0x43, 0x8e, 0x12, 0xea, 0x3e, + 0x95, 0xf7, 0x6f, 0x4a, 0x0d, 0xed, 0xa1, 0x23, 0x80, 0x9f, 0x68, 0x27, 0xdc, 0x89, 0x83, 0x65, + 0x51, 0xa1, 0xf5, 0xd0, 0x36, 0x3f, 0x6d, 0x82, 0x11, 0xeb, 0x68, 0x1b, 0x56, 0x01, 0xb7, 0x36, + 0x36, 0x0d, 0x83, 0xd8, 0x21, 0xe0, 0x33, 0x37, 0x32, 0xf1, 0x8d, 0xd1, 0xc5, 0xad, 0xbd, 0x2e, + 0x29, 0x92, 0xd5, 0x6e, 0x67, 0x2c, 0x43, 0xbb, 0x3d, 0x3f, 0xd5, 0x74, 0xbe, 0x5a, 0x34, 0xb4, + 0xf6, 0x6f, 0x9a, 0xb4, 0x13, 0x5b, 0xa6, 0xb4, 0x0f, 0xcb, 0xb9, 0x2f, 0x86, 0xb0, 0x71, 0x20, + 0xbb, 0xb7, 0xb6, 0x75, 0x87, 0xf5, 0xd9, 0xb7, 0x12, 0x0c, 0x76, 0xeb, 0xb7, 0x2d, 0x9d, 0x21, + 0xe0, 0x26, 0x3d, 0xbb, 0x85, 0xbd, 0x05, 0xe0, 0xf6, 0x96, 0xbe, 0x36, 0x76, 0x15, 0x74, 0x44, + 0x8c, 0x4d, 0x9a, 0x53, 0xea, 0x86, 0x2b, 0x6d, 0xe1, 0x3e, 0x40, 0xe4, 0xba, 0x65, 0x14, 0x50, + 0x73, 0x26, 0x92, 0x95, 0x17, 0xac, 0x81, 0xd8, 0x8c, 0x93, 0x2c, 0x16, 0x5e, 0xd6, 0x21, 0xca, + 0xcd, 0x76, 0x34, 0x74, 0xa9, 0xc0, 0x58, 0x11, 0x4e, 0x25, 0xeb, 0x23, 0xcf, 0x25, 0xc4, 0xcb, + 0x23, 0x07, 0xe2, 0x39, 0x30, 0x87, 0xf8, 0xcb, 0xf9, 0x0d, 0x0b, 0x89, 0x86, 0x95, 0x00, 0x62, + 0x13, 0x0c, 0xc3, 0x70, 0xb2, 0x07, 0xb8, 0x76, 0x62, 0x94, 0xb0, 0xe9, 0x60, 0xcf, 0x01, 0x18, + 0x12, 0x71, 0xdc, 0x04, 0x1a, 0xb2, 0xa4, 0x0c, 0x47, 0x1f, 0xa5, 0x38, 0xc0, 0xc3, 0x06, 0xa6, + 0x8b, 0x52, 0x4c, 0xca, 0xb3, 0x3c, 0x78, 0x0a, 0x69, 0x0b, 0x2c, 0xa1, 0x44, 0x7b, 0x08, 0xa1, + 0x8b, 0xf5, 0x2c, 0xe2, 0x4d, 0x02, 0xc6, 0x41, 0x29, 0x23, 0x54, 0x6c, 0xd6, 0x3b, 0xc3, 0xb8, + 0x55, 0xbb, 0x0c, 0x27, 0x2c, 0x2c, 0xf8, 0xaf, 0xb3, 0xcb, 0x58, 0x92, 0x8b, 0x6b, 0xf1, 0xfe, + 0xaa, 0xbf, 0x65, 0x85, 0x49, 0x2f, 0x6b, 0x7a, 0x8a, 0xd2, 0x42, 0x7a, 0xfd, 0xab, 0xf7, 0x5b, + 0x44, 0x0f, 0xc6, 0xf7, 0xb7, 0xbc, 0x07, 0xdb, 0xd5, 0x7f, 0x7f, 0x55, 0xfd, 0x1e, 0x04, 0xec, + 0x7d, 0xff, 0xaa, 0x54, 0x50, 0x36, 0xd9, 0x33, 0x71, 0x6f, 0x71, 0x92, 0xf7, 0x05, 0x06, 0x89, + 0xd8, 0xab, 0x37, 0xba, 0xa7, 0x8b, 0x4d, 0x05, 0xfe, 0xa4, 0xd8, 0x52, 0x64, 0xca, 0x07, 0x18, + 0x53, 0xe9, 0x25, 0xc0, 0x49, 0x68, 0xbb, 0x5a, 0xa5, 0x41, 0x6e, 0xc9, 0xf7, 0xef, 0x2b, 0x3d, + 0xb8, 0x7c, 0x9f, 0xce, 0xea, 0xd9, 0x39, 0x79, 0x15, 0x73, 0x3a, 0xf3, 0x82, 0xf1, 0xf7, 0xcd, + 0x49, 0x8d, 0x86, 0x55, 0x93, 0x1a, 0x79, 0x10, 0x93, 0x47, 0x7c, 0xcb, 0xbc, 0xb0, 0xc7, 0x96, + 0x69, 0x7d, 0x08, 0xc2, 0x39, 0xf5, 0xb6, 0xcc, 0xeb, 0x1d, 0xad, 0x06, 0x7f, 0x20, 0x5f, 0xe7, + 0x08, 0x28, 0x9b, 0x38, 0xfe, 0x13, 0x2d, 0xa8, 0x2f, 0x18, 0xb0, 0x88, 0x26, 0x72, 0x36, 0xb2, + 0x8a, 0x0b, 0x03, 0xe0, 0x4d, 0x2f, 0xd6, 0xbe, 0xbc, 0xbe, 0x29, 0xad, 0x1f, 0x49, 0x2d, 0xc1, + 0xd1, 0x9e, 0x32, 0x1d, 0x4a, 0x13, 0x3d, 0x4d, 0x16, 0x58, 0x94, 0x3e, 0xc6, 0xda, 0x78, 0x64, + 0xbf, 0x06, 0x7b, 0xa0, 0xa8, 0xfc, 0xf1, 0x31, 0x8e, 0xcd, 0xa9, 0xb1, 0xce, 0xa8, 0x68, 0xb6, + 0x34, 0x83, 0x40, 0xbf, 0x38, 0x18, 0xfe, 0x29, 0xeb, 0x9e, 0xa4, 0x2b, 0x5a, 0xb3, 0xb7, 0xeb, + 0xdf, 0x44, 0x8b, 0x6e, 0x71, 0x0d, 0xc7, 0x95, 0x8a, 0x3b, 0x10, 0x71, 0x6e, 0x67, 0xeb, 0xa4, + 0xce, 0xf2, 0x13, 0xd9, 0x30, 0x63, 0x22, 0x3d, 0x1c, 0xf6, 0xd7, 0x24, 0x5d, 0xca, 0x94, 0xa4, + 0xbc, 0x95, 0x01, 0x0a, 0x25, 0xb3, 0x95, 0xa1, 0x6d, 0x16, 0x38, 0x6e, 0x29, 0x8e, 0x8b, 0x4d, + 0x42, 0xc5, 0xf0, 0x6d, 0xa4, 0x59, 0x92, 0xb4, 0x04, 0x5f, 0x1c, 0x50, 0x6f, 0x44, 0xcb, 0x46, + 0x77, 0xe1, 0xfa, 0x1f, 0x17, 0x13, 0xe1, 0x1b, 0x81, 0x67, 0xcd, 0x3c, 0x56, 0x5b, 0x61, 0x7d, + 0x01, 0x42, 0x3b, 0xc7, 0x8b, 0x3f, 0x89, 0xa7, 0xf5, 0x72, 0x3c, 0xad, 0x7f, 0x05, 0xcf, 0xfe, + 0xcb, 0xf1, 0xec, 0xff, 0x2b, 0x78, 0x0e, 0x5e, 0x8e, 0xe7, 0xe0, 0xcf, 0xe3, 0xd9, 0x90, 0xe1, + 0xb0, 0x52, 0x86, 0x85, 0xe3, 0x4a, 0xa8, 0x0a, 0xd9, 0x9d, 0xa4, 0x2a, 0xde, 0xc2, 0x51, 0xd4, + 0x6d, 0xc8, 0xb8, 0xd8, 0xfc, 0xb8, 0x09, 0x1e, 0x62, 0x0a, 0xcf, 0x7e, 0x8b, 0xe7, 0x52, 0x6e, + 0x06, 0xa3, 0xad, 0xe8, 0x47, 0xdf, 0xdd, 0x85, 0x36, 0x75, 0xc3, 0x88, 0x8b, 0xaa, 0xc8, 0x56, + 0x7d, 0x1a, 0x0d, 0x24, 0x2f, 0x72, 0x76, 0x00, 0x23, 0x9f, 0xd4, 0x5a, 0x6e, 0x7a, 0xe7, 0x2a, + 0xa2, 0xa6, 0x5b, 0x89, 0x82, 0x14, 0x41, 0xbb, 0x62, 0xd3, 0x90, 0x45, 0xa9, 0x82, 0x0b, 0x0e, + 0x4d, 0xb3, 0x11, 0xc3, 0x26, 0x23, 0xae, 0xde, 0x6d, 0x67, 0x04, 0xdd, 0x8a, 0xf3, 0x74, 0xc9, + 0x83, 0xbd, 0x31, 0xf5, 0xc6, 0x4b, 0x8f, 0x72, 0xa6, 0xdd, 0x63, 0x0a, 0x82, 0x97, 0x38, 0x7c, + 0x9f, 0x79, 0xda, 0x34, 0x0c, 0xe6, 0x18, 0x0a, 0x77, 0xe4, 0x8a, 0x65, 0x1d, 0xc7, 0xe9, 0xa7, + 0x32, 0xc7, 0x61, 0x6d, 0xf3, 0x85, 0x76, 0xaf, 0x1f, 0xba, 0xb7, 0x33, 0xce, 0xc2, 0x8a, 0x0e, + 0xad, 0xde, 0xe9, 0x78, 0x8c, 0xe7, 0xc9, 0xab, 0x20, 0xec, 0xf7, 0xde, 0x2c, 0x2b, 0x5d, 0xca, + 0x41, 0xef, 0x82, 0x3e, 0x14, 0xbd, 0x85, 0x34, 0xb1, 0xf9, 0x38, 0xe9, 0x6b, 0xd7, 0x6d, 0xb8, + 0x7e, 0xc4, 0x42, 0x7e, 0x3a, 0xf9, 0x46, 0xc7, 0xcc, 0xe7, 0x58, 0xa8, 0xd1, 0xc9, 0x0d, 0x9b, + 0x06, 0x21, 0x63, 0xfe, 0x84, 0x98, 0x81, 0xb1, 0x56, 0x25, 0x03, 0x9d, 0x7f, 0xde, 0xdb, 0xa3, + 0x5f, 0x1a, 0x21, 0x9b, 0x07, 0x77, 0x4c, 0x37, 0x4c, 0xf8, 0xa5, 0xaa, 0x64, 0xf5, 0x42, 0x3d, + 0x87, 0x1e, 0x27, 0x35, 0x87, 0x3d, 0xbb, 0xbc, 0x8a, 0xb8, 0x57, 0x1c, 0xd4, 0x2b, 0x16, 0x1c, + 0xfd, 0xa7, 0x27, 0x71, 0xce, 0x2f, 0x57, 0x1b, 0x39, 0xbb, 0xbc, 0xd0, 0xf1, 0xf0, 0x93, 0xef, + 0xe0, 0x81, 0x16, 0x2b, 0x3d, 0xda, 0x5c, 0x55, 0x1f, 0x19, 0x07, 0xf3, 0x3f, 0xa0, 0x31, 0x5c, + 0x01, 0xce, 0x6c, 0x85, 0x84, 0xf6, 0x1c, 0xdc, 0x01, 0x51, 0x75, 0x90, 0x5c, 0xb5, 0x23, 0x1d, + 0xb2, 0xad, 0xe6, 0xa1, 0x49, 0x17, 0xbb, 0x4d, 0x6d, 0xfe, 0x96, 0xf1, 0xad, 0x0f, 0x2f, 0xf2, + 0xad, 0x87, 0xed, 0xf6, 0x7e, 0x3b, 0xe3, 0x5c, 0xd9, 0x7a, 0x43, 0xb1, 0x32, 0xce, 0xd3, 0x21, + 0x24, 0xf1, 0x9e, 0x2f, 0xf0, 0x89, 0x7f, 0x3b, 0xcb, 0x10, 0x33, 0xde, 0xea, 0x1f, 0x37, 0xa9, + 0xf0, 0xd7, 0x39, 0xac, 0x9b, 0xaa, 0xae, 0x14, 0xee, 0x4f, 0xc5, 0xd9, 0x82, 0x0a, 0x15, 0xa0, + 0x2b, 0xfa, 0xfe, 0xff, 0xc5, 0xdc, 0xb1, 0xb2, 0xa5, 0x69, 0xca, 0xd7, 0xae, 0x3a, 0x05, 0x22, + 0x25, 0xcc, 0x65, 0x91, 0xa8, 0x93, 0x6e, 0xd5, 0x43, 0x57, 0xa9, 0xda, 0x43, 0x20, 0x4e, 0x8b, + 0x4a, 0xac, 0xdc, 0xbc, 0xe1, 0x3e, 0x2a, 0x03, 0xc8, 0xa2, 0x3a, 0x0f, 0x9b, 0xea, 0x09, 0xe8, + 0x29, 0xbe, 0x4a, 0x8f, 0xf2, 0xbe, 0x40, 0x39, 0x40, 0xa3, 0x92, 0xc3, 0xe6, 0xd6, 0x8e, 0x83, + 0xc7, 0x1a, 0x74, 0xf6, 0xd9, 0xdf, 0xb3, 0x33, 0x6a, 0xaf, 0x50, 0x42, 0xa3, 0x44, 0x69, 0x64, + 0x51, 0x46, 0x8c, 0x0b, 0xe5, 0x34, 0x1e, 0xd1, 0x62, 0x6c, 0xdc, 0xdc, 0x52, 0x07, 0xb9, 0xc4, + 0x3e, 0x10, 0x96, 0xb4, 0x5f, 0x44, 0x92, 0xc1, 0x12, 0xd4, 0x5d, 0x85, 0x3a, 0x77, 0xc3, 0x44, + 0x36, 0x01, 0xc2, 0x84, 0xa7, 0x60, 0x20, 0x8a, 0xc7, 0x8b, 0x8f, 0xf3, 0xb4, 0x94, 0x9b, 0x24, + 0x1c, 0x0d, 0xc8, 0x8a, 0xa3, 0x8b, 0x86, 0x29, 0x67, 0x8f, 0xfa, 0xdc, 0x97, 0x57, 0x5c, 0x62, + 0x4b, 0x24, 0xa0, 0x01, 0x69, 0x51, 0xb6, 0x00, 0x6e, 0xba, 0xe2, 0xc6, 0x41, 0x7d, 0x24, 0xb6, + 0x7a, 0x1b, 0xe8, 0x54, 0xce, 0x66, 0x34, 0x3c, 0x0b, 0x26, 0x4c, 0xc7, 0x72, 0xb6, 0x75, 0x72, + 0x70, 0xd4, 0x69, 0xb7, 0x8d, 0x3a, 0xf0, 0x89, 0xd6, 0x9d, 0xaf, 0xfd, 0x25, 0xe7, 0x81, 0x38, + 0xd9, 0xbe, 0x96, 0x87, 0xcf, 0xb6, 0x29, 0xf6, 0x8f, 0x8f, 0xee, 0x66, 0xa9, 0xd5, 0x48, 0xb3, + 0xe9, 0x28, 0xaf, 0xc7, 0xbd, 0xaf, 0x78, 0xfe, 0xec, 0xab, 0x72, 0x09, 0x39, 0x7f, 0xf6, 0xe3, + 0x23, 0xe9, 0xbf, 0x7d, 0x11, 0x8d, 0x09, 0x98, 0x82, 0xa6, 0x02, 0xc9, 0x96, 0x83, 0x67, 0x3b, + 0xe2, 0x52, 0x0d, 0x9e, 0x9a, 0x5b, 0xf7, 0xde, 0xa8, 0x6d, 0xd7, 0x44, 0x49, 0x4a, 0x87, 0xb7, + 0x70, 0x78, 0xab, 0x64, 0xf8, 0x70, 0x19, 0xcd, 0x6e, 0x04, 0x4b, 0xb6, 0x03, 0xd8, 0x47, 0x00, + 0xfb, 0x15, 0x00, 0x34, 0x57, 0x9d, 0x98, 0xd9, 0x0e, 0xe3, 0x00, 0x61, 0x1c, 0x94, 0xc0, 0x18, + 0x89, 0xf3, 0xb7, 0xdb, 0x07, 0xb7, 0x71, 0x70, 0xbb, 0x8c, 0x80, 0xf3, 0x2b, 0x2d, 0x62, 0x7e, + 0x14, 0x84, 0xdb, 0x01, 0x1c, 0x22, 0x80, 0xc3, 0x12, 0x00, 0xd7, 0xc1, 0xf2, 0x39, 0xe4, 0xbf, + 0xe0, 0xd8, 0x5f, 0x4a, 0xc6, 0x9e, 0xfa, 0xd4, 0x0b, 0x6e, 0xb7, 0x0f, 0x3e, 0xc2, 0xc1, 0x47, + 0x95, 0x83, 0x2b, 0x98, 0x47, 0x12, 0x53, 0x47, 0x24, 0x50, 0x11, 0xd2, 0x2a, 0x47, 0x00, 0x71, + 0x0c, 0xcc, 0xb7, 0xa3, 0x2d, 0x02, 0xd7, 0x87, 0x88, 0xa7, 0x2b, 0x64, 0x54, 0x9c, 0xa9, 0x23, + 0x78, 0xe9, 0xf1, 0x15, 0xca, 0xed, 0x2b, 0x23, 0xf6, 0x61, 0xbb, 0x3f, 0x3c, 0xb4, 0x7e, 0xb1, + 0xdb, 0xdd, 0x38, 0x30, 0x07, 0x93, 0xa9, 0xf6, 0x30, 0x37, 0x95, 0xc9, 0xc9, 0x9c, 0x72, 0xe5, + 0xb7, 0xde, 0xc8, 0x45, 0x13, 0x90, 0x3b, 0x19, 0x00, 0xe6, 0xe6, 0xe9, 0x49, 0xcf, 0xdf, 0x25, + 0xdd, 0xbc, 0x34, 0x90, 0xdc, 0x3a, 0x7c, 0x44, 0xc3, 0x24, 0x0d, 0xe5, 0x8e, 0x8d, 0x71, 0x45, + 0x17, 0xdc, 0xd9, 0xf6, 0xed, 0x96, 0xd8, 0x4e, 0xfa, 0x78, 0x76, 0xa8, 0x78, 0x68, 0x40, 0x18, + 0x48, 0xe3, 0x4f, 0xec, 0x35, 0xf9, 0xf9, 0x2d, 0xa3, 0x9d, 0x92, 0x83, 0x08, 0x7e, 0x0c, 0x4f, + 0x6c, 0xed, 0xef, 0x58, 0xd9, 0x9b, 0xb2, 0x9f, 0xfd, 0x2f, 0xe2, 0x94, 0xb9, 0xea, 0x6c, 0x11, + 0xe8, 0x64, 0x15, 0x81, 0xe0, 0xa6, 0x75, 0x35, 0x0c, 0x4b, 0xc0, 0x90, 0x1c, 0x8f, 0x5c, 0x92, + 0x9e, 0xe1, 0x64, 0x66, 0xcc, 0xe4, 0x94, 0x79, 0xcb, 0x05, 0x5e, 0x8e, 0x7c, 0xe7, 0x7a, 0x78, + 0x49, 0x55, 0x5d, 0x62, 0xf1, 0xd9, 0xbd, 0xf6, 0xb7, 0x8b, 0xc1, 0xaf, 0x9c, 0x2f, 0xae, 0x20, + 0x56, 0x60, 0x11, 0xef, 0xfa, 0xd5, 0x17, 0x41, 0x33, 0xb7, 0x0c, 0xd3, 0x3b, 0x90, 0x98, 0x4a, + 0x81, 0xc9, 0x8f, 0x16, 0x01, 0x78, 0xc4, 0x6b, 0xf6, 0xc0, 0x4d, 0xd1, 0x02, 0x64, 0xf2, 0xa5, + 0x38, 0x79, 0x86, 0x47, 0xe9, 0xc1, 0x53, 0x55, 0xdf, 0xe6, 0x4c, 0xe1, 0xb2, 0x2c, 0x60, 0xbc, + 0x8b, 0x43, 0xc7, 0xdf, 0xcd, 0x9d, 0x18, 0x80, 0xbc, 0x1b, 0x3c, 0xbc, 0x84, 0xd5, 0x34, 0x49, + 0x53, 0x4e, 0x87, 0xc8, 0x4d, 0x3e, 0x2e, 0x66, 0xf2, 0x2e, 0x08, 0xe7, 0x78, 0x7e, 0x38, 0xde, + 0xbe, 0xe3, 0xea, 0x92, 0xab, 0x4e, 0xf0, 0x26, 0x90, 0xba, 0xfe, 0x21, 0x2e, 0x05, 0xe1, 0xf5, + 0xd0, 0x08, 0xd8, 0x87, 0x37, 0x44, 0xfd, 0x46, 0x84, 0x7d, 0xb8, 0x61, 0x96, 0x5c, 0x1a, 0xda, + 0xd9, 0xb8, 0xc2, 0x7b, 0x36, 0xbd, 0x4d, 0xb8, 0x67, 0xf2, 0x2e, 0x89, 0x5f, 0x12, 0xd0, 0x42, + 0x30, 0xf3, 0xe0, 0x25, 0xd5, 0xc5, 0x63, 0xe4, 0xf3, 0x15, 0xa3, 0x10, 0x40, 0x9d, 0xc0, 0x4c, + 0x04, 0xbe, 0x13, 0x96, 0xe0, 0x3d, 0xd1, 0xd1, 0x73, 0x27, 0x54, 0xe8, 0x8a, 0xfe, 0x64, 0x0c, + 0x1e, 0x65, 0x45, 0x74, 0x4e, 0x96, 0x35, 0xf2, 0x50, 0x38, 0x6b, 0x80, 0x00, 0x80, 0x50, 0x22, + 0xcf, 0x97, 0x1e, 0x57, 0xd3, 0x17, 0x57, 0xd9, 0x84, 0xf0, 0xe8, 0xbe, 0xd8, 0x16, 0xe4, 0x8d, + 0xd9, 0xbd, 0xd8, 0x78, 0xc5, 0x07, 0x90, 0xfd, 0x49, 0xaa, 0x33, 0x78, 0x64, 0x9e, 0x82, 0x6f, + 0x00, 0xaf, 0x55, 0x37, 0xe2, 0xad, 0x4b, 0x90, 0xe6, 0x6e, 0xdc, 0x15, 0x83, 0x9b, 0xdc, 0x71, + 0x12, 0xf0, 0x94, 0x4e, 0xef, 0x31, 0xee, 0x6a, 0xcb, 0xb8, 0x20, 0x05, 0xc5, 0xf0, 0x84, 0x57, + 0xac, 0x5f, 0x08, 0xb4, 0x4c, 0x6b, 0xbe, 0x8a, 0x74, 0x14, 0xfd, 0xd9, 0xd7, 0xcc, 0x81, 0x55, + 0x31, 0xf4, 0x33, 0xfd, 0xd2, 0xad, 0xdc, 0x9b, 0xf5, 0x73, 0xbd, 0x91, 0xc9, 0x66, 0xe5, 0x9e, + 0x71, 0xbe, 0xaf, 0xd0, 0x14, 0xf3, 0x25, 0x97, 0x0f, 0x64, 0x14, 0x55, 0xde, 0xf5, 0xec, 0x72, + 0xb3, 0x6b, 0x80, 0x61, 0xb1, 0xf9, 0x92, 0x2b, 0x0a, 0x48, 0x04, 0x64, 0xec, 0xe5, 0x7d, 0xaf, + 0xde, 0xc5, 0x7d, 0x13, 0xad, 0x85, 0x35, 0x9d, 0x56, 0x50, 0xf1, 0x5b, 0x59, 0xe7, 0xbb, 0xb5, + 0xb1, 0x8e, 0x97, 0x18, 0x82, 0x21, 0x3c, 0xb2, 0x14, 0x87, 0x74, 0x78, 0x81, 0x58, 0xb6, 0xe6, + 0x0e, 0xde, 0xc5, 0xd9, 0x98, 0x62, 0x8e, 0x9c, 0xb7, 0x9a, 0x92, 0x50, 0x33, 0x31, 0x0a, 0xac, + 0x77, 0x9c, 0x64, 0xc5, 0xbf, 0xbb, 0xa7, 0x61, 0x48, 0x57, 0x0d, 0x37, 0x12, 0xff, 0xea, 0x22, + 0x11, 0x35, 0xe2, 0x13, 0xe4, 0x05, 0x6b, 0x4f, 0x20, 0x36, 0x75, 0xab, 0xc5, 0x08, 0x03, 0x30, + 0x44, 0x8b, 0x6b, 0x8f, 0x4a, 0x28, 0x96, 0x55, 0xde, 0xb8, 0x29, 0x99, 0xfb, 0x35, 0x58, 0xef, + 0x94, 0xa5, 0x6e, 0x83, 0xf3, 0xb5, 0xa0, 0xca, 0x0d, 0xab, 0x4e, 0xa1, 0x9f, 0x5f, 0x65, 0x47, + 0xa8, 0xce, 0x88, 0xad, 0x1c, 0xc1, 0xf9, 0x75, 0x59, 0x77, 0x41, 0x93, 0xe4, 0x47, 0xc8, 0x20, + 0xac, 0xac, 0x42, 0x76, 0x35, 0x28, 0x8c, 0x16, 0xfd, 0xab, 0xf1, 0x5d, 0x5d, 0x90, 0xdc, 0x52, + 0x66, 0xc6, 0x80, 0xcb, 0x8e, 0x33, 0x03, 0x93, 0x8b, 0x8b, 0x6e, 0xa7, 0x11, 0x1a, 0x55, 0xd0, + 0x6a, 0xa3, 0xa3, 0xee, 0xb2, 0x0f, 0x3d, 0x86, 0xd7, 0x76, 0x54, 0x1c, 0x48, 0x35, 0xd4, 0x7d, + 0x71, 0xe1, 0x5d, 0x56, 0x86, 0x76, 0x48, 0xd2, 0xf3, 0x1a, 0x2c, 0xb1, 0x76, 0x13, 0x06, 0xf7, + 0x90, 0xab, 0x68, 0x93, 0x80, 0x45, 0x78, 0x11, 0x17, 0x8f, 0xab, 0x04, 0x21, 0x84, 0xa5, 0x33, + 0xa6, 0x7d, 0x15, 0x26, 0xe8, 0xab, 0xb6, 0x08, 0xc1, 0xb8, 0x82, 0x47, 0xc1, 0x30, 0x5f, 0x40, + 0x12, 0x91, 0x6b, 0x84, 0xf7, 0x12, 0x59, 0x7a, 0x67, 0x20, 0x05, 0xcb, 0x64, 0xaf, 0xd3, 0xe1, + 0xb9, 0xe6, 0x66, 0x81, 0x8a, 0x52, 0xac, 0xc6, 0xb3, 0x68, 0x57, 0x60, 0xaa, 0xb2, 0x9f, 0x59, + 0xc8, 0xdf, 0xf3, 0x57, 0xa7, 0xcc, 0x3e, 0xe3, 0x92, 0x99, 0xc8, 0xca, 0x2f, 0xdd, 0xac, 0x44, + 0x15, 0x0e, 0xbf, 0xbd, 0x92, 0xe7, 0xde, 0x72, 0x21, 0xf5, 0x97, 0x57, 0xe9, 0xe1, 0x37, 0x5f, + 0x1c, 0x2e, 0x15, 0xe7, 0x27, 0x7d, 0x71, 0x58, 0x13, 0xa4, 0x2a, 0xc9, 0x62, 0xb8, 0xcc, 0x62, + 0xc0, 0xc8, 0x33, 0xb5, 0x22, 0x78, 0x9a, 0x34, 0x06, 0xe3, 0x80, 0x09, 0x17, 0x8b, 0xbe, 0xbb, + 0xcb, 0x60, 0x1d, 0xc6, 0xde, 0x12, 0x12, 0x0f, 0xd0, 0x2d, 0x01, 0xa5, 0x70, 0x8e, 0x4f, 0xdd, + 0xc5, 0xc3, 0x53, 0x1c, 0x20, 0xd0, 0xf1, 0x8c, 0x54, 0x77, 0xd3, 0x4a, 0x4d, 0x24, 0x9e, 0xc9, + 0x85, 0xe8, 0x24, 0x73, 0x5a, 0x57, 0x86, 0x20, 0xe2, 0x92, 0xaa, 0x38, 0x4f, 0x9b, 0xe0, 0x82, + 0x35, 0x8e, 0x8f, 0x89, 0x76, 0xe5, 0xe9, 0x3d, 0xac, 0xe5, 0xe0, 0xe5, 0xc2, 0xa5, 0x8f, 0x77, + 0xa7, 0x31, 0xb8, 0xab, 0xfb, 0xea, 0x03, 0x1e, 0x30, 0x6c, 0xc2, 0x1e, 0x2e, 0xa7, 0x30, 0xaa, + 0xe7, 0x58, 0xbb, 0xbb, 0xfe, 0x8e, 0x2a, 0xfb, 0x40, 0x84, 0x27, 0x6e, 0x5a, 0x13, 0x23, 0xfd, + 0xac, 0x47, 0x16, 0x47, 0xdc, 0x47, 0xbf, 0x6a, 0x5e, 0x1a, 0x44, 0xde, 0xa2, 0x72, 0x71, 0x12, + 0x97, 0x22, 0x48, 0xd4, 0xa9, 0xc9, 0x4d, 0xf0, 0x21, 0x3e, 0x5e, 0xe9, 0x3b, 0x71, 0x93, 0x53, + 0xdd, 0x10, 0x69, 0x74, 0x12, 0xcc, 0x59, 0x60, 0x6e, 0xe6, 0x80, 0x26, 0xb8, 0xea, 0xf5, 0x9f, + 0x3d, 0x0b, 0xac, 0x4a, 0xb2, 0x6c, 0xcb, 0x8d, 0xbb, 0x06, 0x44, 0x70, 0x52, 0x24, 0x1b, 0x51, + 0xe6, 0x68, 0x78, 0x0e, 0x0c, 0x9e, 0xab, 0x8d, 0xef, 0x20, 0xe2, 0x0a, 0xca, 0x03, 0xc6, 0xc8, + 0x19, 0xb0, 0x76, 0xe8, 0xd4, 0xc1, 0x30, 0x62, 0x63, 0xdc, 0x27, 0x77, 0x87, 0x32, 0xa1, 0x41, + 0x39, 0xd9, 0xcc, 0xa9, 0xc9, 0xcc, 0x50, 0xa3, 0x5b, 0x0a, 0x49, 0xad, 0x15, 0x93, 0x4b, 0x4f, + 0x21, 0x6e, 0xed, 0xfe, 0x9f, 0xcc, 0x83, 0xa1, 0x04, 0x1d, 0xb7, 0xda, 0xed, 0xe4, 0x02, 0x7f, + 0x3a, 0x15, 0xb5, 0x8a, 0x2f, 0xe0, 0x7d, 0xa2, 0x0d, 0x01, 0x6a, 0x83, 0x6b, 0x04, 0xe2, 0x56, + 0x9c, 0xb4, 0xee, 0x98, 0x3f, 0xea, 0x41, 0x43, 0x66, 0x0b, 0x51, 0xfe, 0x06, 0x98, 0x18, 0xe2, + 0xd0, 0x74, 0xf1, 0x93, 0xdb, 0x5e, 0xf1, 0x93, 0xf8, 0xc2, 0x41, 0xf2, 0xac, 0x68, 0x7b, 0x7a, + 0x0a, 0x50, 0x48, 0xf6, 0xec, 0x1d, 0x47, 0xbd, 0x3a, 0x81, 0xfe, 0x78, 0x70, 0x33, 0xfe, 0x6d, + 0xa6, 0xc3, 0x37, 0xa4, 0xc9, 0x36, 0x4c, 0xbd, 0x02, 0x5e, 0x4e, 0xe8, 0x4c, 0x09, 0x10, 0x85, + 0x1a, 0x02, 0xf3, 0xe0, 0x84, 0x40, 0x98, 0x42, 0x3a, 0xdc, 0x28, 0x55, 0x80, 0xc2, 0x6d, 0x35, + 0x09, 0x2e, 0x06, 0xa0, 0xb4, 0xc2, 0xe8, 0x28, 0x22, 0x63, 0xd5, 0xcb, 0x89, 0x4b, 0x56, 0xe3, + 0x13, 0x99, 0x29, 0x7e, 0xcc, 0x45, 0x70, 0x1d, 0x38, 0xee, 0xcb, 0xcf, 0x70, 0x60, 0xe0, 0x8b, + 0x51, 0xb0, 0x4e, 0xe4, 0x42, 0xc4, 0xdf, 0x80, 0xa9, 0xf8, 0x88, 0x8c, 0x88, 0xe2, 0x76, 0x77, + 0xc9, 0xf9, 0x87, 0xe1, 0xc7, 0x6b, 0x65, 0x9d, 0xe8, 0x2d, 0xbe, 0x07, 0x82, 0xc5, 0x17, 0x5f, + 0x52, 0x93, 0xf5, 0xf4, 0x54, 0xb0, 0x62, 0x89, 0xc9, 0x52, 0x96, 0xaa, 0x2b, 0x4d, 0xd3, 0x46, + 0xe8, 0x06, 0x04, 0xc5, 0xdf, 0x88, 0x89, 0xe2, 0x08, 0xae, 0x5e, 0xa7, 0xa9, 0xf7, 0x4f, 0x5f, + 0x63, 0x94, 0x26, 0xbf, 0x37, 0xb3, 0xa3, 0x2e, 0x02, 0x02, 0x71, 0x02, 0x74, 0xb6, 0x41, 0xcc, + 0x34, 0xdb, 0x20, 0x12, 0xcb, 0x4c, 0x83, 0x9f, 0xff, 0x30, 0x8d, 0x6c, 0x8e, 0x65, 0xc0, 0x58, + 0xc7, 0x27, 0xef, 0x36, 0x3e, 0x5f, 0x83, 0x6a, 0xb7, 0x07, 0x5d, 0x48, 0x1c, 0xb1, 0x67, 0x5f, + 0xc6, 0x65, 0x14, 0xf0, 0x20, 0xd9, 0xfd, 0x1d, 0xf1, 0x15, 0x1c, 0x58, 0x6e, 0x60, 0xac, 0xe2, + 0x6f, 0xfc, 0x11, 0x14, 0xf9, 0xd5, 0x1b, 0x8c, 0x47, 0x4c, 0x3f, 0xc1, 0xb8, 0xf4, 0xbc, 0xdc, + 0x0a, 0x2b, 0x73, 0xa8, 0x0a, 0x45, 0xb0, 0x18, 0xd8, 0x03, 0x8d, 0xa2, 0x3a, 0xc7, 0xa8, 0xae, + 0x9f, 0x16, 0x96, 0x5d, 0x6a, 0x0f, 0xac, 0x2f, 0x4d, 0xca, 0x7e, 0x54, 0xca, 0x12, 0x86, 0x3c, + 0xd9, 0xcf, 0xee, 0xd0, 0x54, 0x19, 0x7d, 0x58, 0x0d, 0x1f, 0x02, 0xe9, 0x31, 0xbe, 0xf8, 0x10, + 0x4c, 0xd2, 0xd5, 0x10, 0xce, 0x22, 0xfb, 0xe2, 0xb3, 0x9f, 0x7e, 0x73, 0x21, 0x6b, 0x8e, 0x84, + 0xa1, 0xcb, 0xdf, 0xc1, 0xf1, 0x13, 0x7e, 0x66, 0xd2, 0xef, 0x51, 0xe2, 0x75, 0x55, 0xaa, 0xe2, + 0x05, 0x63, 0xf1, 0xad, 0x03, 0x71, 0x65, 0x02, 0xfd, 0x7a, 0x87, 0x20, 0x68, 0xf1, 0xb1, 0xa6, + 0x71, 0xe0, 0x19, 0xe2, 0xfb, 0x4d, 0x96, 0xa9, 0x8b, 0xaf, 0x40, 0x39, 0xd8, 0xdb, 0x1b, 0x81, + 0x65, 0xa1, 0xb7, 0x0c, 0x45, 0xf7, 0x9c, 0xb3, 0x39, 0x66, 0x88, 0xe3, 0xf3, 0x05, 0xa8, 0x0d, + 0xa4, 0xf0, 0xb2, 0x1b, 0x8c, 0x9e, 0x2f, 0x80, 0x1b, 0x98, 0xd3, 0x68, 0x17, 0x40, 0x77, 0x43, + 0x53, 0x71, 0x0b, 0xc3, 0xc2, 0x82, 0xf6, 0x09, 0x4f, 0x07, 0x9f, 0x0f, 0x21, 0x58, 0x31, 0x73, + 0x10, 0xa3, 0x3c, 0x44, 0x53, 0x40, 0x33, 0xc0, 0xf2, 0xe2, 0x65, 0x83, 0x38, 0x03, 0x5a, 0x50, + 0x3e, 0x13, 0x62, 0x03, 0x3c, 0x6d, 0x44, 0x9e, 0x3b, 0x66, 0xba, 0x0d, 0x52, 0x01, 0x8c, 0x8d, + 0x3e, 0xb9, 0x7c, 0xa6, 0x93, 0x26, 0x31, 0x4e, 0xf6, 0xec, 0xce, 0x5d, 0xe0, 0x4e, 0x34, 0xcb, + 0x68, 0x44, 0x0b, 0xcf, 0xe5, 0xa2, 0xb5, 0x1b, 0x1f, 0xb9, 0xec, 0xb5, 0xd0, 0x0f, 0x36, 0x16, + 0xc1, 0x42, 0x84, 0xca, 0xf2, 0xdf, 0xe4, 0x13, 0x55, 0xe9, 0xec, 0x4d, 0x35, 0x7b, 0x39, 0x2b, + 0xd6, 0x98, 0x05, 0x11, 0x47, 0xd4, 0x75, 0x60, 0x36, 0x46, 0x3c, 0x27, 0xe0, 0x94, 0xeb, 0xf2, + 0x11, 0x4f, 0x2c, 0xd7, 0x01, 0x49, 0x9d, 0x37, 0xbe, 0x05, 0xae, 0x2f, 0xf0, 0x19, 0x6b, 0xf5, + 0xe1, 0xa7, 0xc2, 0x37, 0xa8, 0x9a, 0x51, 0xe3, 0x5b, 0x74, 0xb2, 0x70, 0x5a, 0x04, 0x3f, 0x31, + 0x21, 0x70, 0xc7, 0xc7, 0x9a, 0xa9, 0x58, 0x28, 0xa7, 0x38, 0x04, 0xcc, 0x5d, 0x44, 0xb2, 0x15, + 0x5c, 0xd5, 0x25, 0xf9, 0x6c, 0x15, 0x32, 0xff, 0x24, 0x9e, 0x05, 0xd0, 0x02, 0xc4, 0x08, 0xc2, + 0x05, 0x69, 0x6c, 0x5d, 0x3b, 0x6e, 0xaa, 0xcf, 0x8a, 0x1d, 0x0b, 0xb5, 0xec, 0xfd, 0x9b, 0x3b, + 0x17, 0xb1, 0xe0, 0x32, 0x44, 0x2f, 0x21, 0x8f, 0x86, 0x83, 0xfa, 0x1a, 0x58, 0xd1, 0x11, 0x1d, + 0x8e, 0x9b, 0xf2, 0x23, 0x69, 0xf8, 0xc9, 0x28, 0x4d, 0xe5, 0xa4, 0x64, 0x24, 0xf6, 0x0a, 0x41, + 0x74, 0xe7, 0x35, 0xb1, 0x27, 0x80, 0x4f, 0x7f, 0x44, 0xc9, 0xbe, 0xe3, 0x94, 0x68, 0x73, 0xc6, + 0x67, 0x01, 0x6e, 0xdd, 0x02, 0xb7, 0xa0, 0x6b, 0x66, 0x9f, 0x86, 0x07, 0x40, 0xdb, 0x7d, 0xbe, + 0x6d, 0xc6, 0xbc, 0x45, 0x9f, 0xf4, 0x6a, 0xc7, 0xb2, 0x5e, 0xa8, 0x0a, 0xa6, 0xf2, 0x47, 0xa6, + 0x00, 0xf5, 0x2b, 0xa2, 0x3d, 0x39, 0x6e, 0xca, 0x17, 0xc9, 0x16, 0x7f, 0xd9, 0x98, 0x5a, 0x32, + 0xa8, 0x8f, 0x83, 0xfa, 0x74, 0xfc, 0x3d, 0x1d, 0x97, 0x1b, 0xa1, 0xbe, 0x53, 0xd5, 0x1b, 0xd1, + 0x3b, 0x96, 0x76, 0x99, 0xc5, 0xb5, 0xff, 0xe3, 0x59, 0xab, 0x57, 0x43, 0x51, 0xdd, 0xa5, 0xf3, + 0x45, 0x57, 0xfb, 0x95, 0x86, 0x78, 0x96, 0x1e, 0x83, 0x6f, 0xbe, 0x5c, 0x00, 0x73, 0x5a, 0xbd, + 0x6b, 0x71, 0xe2, 0x5b, 0xed, 0xc6, 0x26, 0xbb, 0xc3, 0xde, 0x58, 0x90, 0xaa, 0x4e, 0x72, 0xa4, + 0x5b, 0xd9, 0x63, 0x9c, 0x66, 0x5a, 0x2d, 0x3b, 0x76, 0x7b, 0x57, 0x0c, 0x72, 0x34, 0xb0, 0x1c, + 0x13, 0x88, 0x9d, 0x73, 0xe7, 0xc9, 0xf1, 0xbc, 0xf7, 0x8d, 0xdc, 0x79, 0x8c, 0xb8, 0xdc, 0xe1, + 0xec, 0x1c, 0x37, 0x5d, 0x39, 0xee, 0x46, 0xed, 0x44, 0xd7, 0xe4, 0x01, 0x92, 0x65, 0x8a, 0x0d, + 0x4f, 0xcf, 0xe7, 0x77, 0xaa, 0xc5, 0xc9, 0x6e, 0xb5, 0x9f, 0x91, 0x60, 0xae, 0xbd, 0xf5, 0xd1, + 0x7d, 0x6a, 0x74, 0xc9, 0x03, 0xfc, 0xbe, 0xd4, 0x58, 0xe1, 0xf2, 0x59, 0x14, 0x69, 0x1e, 0x7e, + 0x06, 0x8a, 0x85, 0xcf, 0x6c, 0x65, 0x9f, 0xf6, 0x07, 0x92, 0xd3, 0xc9, 0xa9, 0x40, 0xf1, 0xad, + 0x00, 0x85, 0x2a, 0x73, 0xc2, 0x90, 0xe0, 0x3c, 0x6b, 0xa7, 0x31, 0x26, 0xea, 0xc1, 0xec, 0x04, + 0x8a, 0x28, 0x8b, 0x94, 0x07, 0xb8, 0xbd, 0xb6, 0x02, 0xa1, 0x08, 0x22, 0xf1, 0x21, 0x15, 0x4c, + 0x50, 0x44, 0xb7, 0x86, 0x20, 0xf8, 0xaf, 0x8c, 0x2d, 0x34, 0xca, 0xb5, 0x5d, 0x8f, 0x77, 0xed, + 0x53, 0xcd, 0x9d, 0x0a, 0x76, 0xe1, 0xf5, 0x01, 0x71, 0x41, 0x60, 0xe2, 0x86, 0x60, 0xf9, 0x90, + 0x6f, 0xb8, 0xfb, 0x8b, 0x63, 0xdf, 0x8e, 0x86, 0x78, 0xd2, 0x10, 0x5c, 0xc2, 0x8e, 0x00, 0xa0, + 0xaa, 0xa2, 0xfa, 0xf0, 0xd3, 0x85, 0xa1, 0x51, 0x7f, 0xa2, 0xdd, 0xb9, 0x21, 0x5f, 0xaa, 0xc5, + 0xc3, 0xaf, 0x14, 0xf9, 0x01, 0xc7, 0xc8, 0x79, 0x2b, 0x4f, 0x1a, 0x92, 0x8f, 0x30, 0x9f, 0x0b, + 0xf9, 0xbd, 0x3f, 0x6d, 0x38, 0xfa, 0xa8, 0x9d, 0x2d, 0x43, 0x74, 0x33, 0x85, 0x23, 0x73, 0x2f, + 0x3a, 0x2e, 0x57, 0xab, 0x3e, 0x2f, 0x97, 0xec, 0xe0, 0xc5, 0x07, 0xe7, 0x3e, 0x02, 0x79, 0x90, + 0xa9, 0xed, 0xc9, 0xab, 0x10, 0x85, 0x85, 0xaa, 0x95, 0xaf, 0xd4, 0x70, 0x38, 0xc8, 0x1f, 0xdf, + 0x14, 0xdf, 0x5e, 0xd9, 0x58, 0x28, 0xf5, 0x15, 0x15, 0xad, 0x56, 0x7a, 0x0c, 0x0b, 0x56, 0xf0, + 0x82, 0x7e, 0x07, 0xc1, 0x5f, 0x82, 0xf4, 0xaf, 0x82, 0xa5, 0x32, 0xe3, 0xe3, 0x20, 0x44, 0xb6, + 0xcb, 0x8a, 0x74, 0x04, 0xb1, 0xad, 0xc6, 0x20, 0x60, 0x14, 0x57, 0x3f, 0x24, 0x89, 0x8d, 0x9a, + 0xe0, 0xfd, 0xf9, 0x54, 0x7d, 0xf2, 0x66, 0xbe, 0xf4, 0xb8, 0xbb, 0x00, 0xc1, 0x93, 0xaf, 0x23, + 0x79, 0x6d, 0x02, 0xbf, 0xe6, 0x02, 0x7f, 0x31, 0x64, 0xa6, 0x09, 0x4b, 0x19, 0x29, 0xdf, 0xae, + 0xa1, 0x8c, 0x48, 0xad, 0xc0, 0x14, 0x15, 0x4c, 0x15, 0x58, 0x3d, 0x21, 0x3f, 0x74, 0x1e, 0x80, + 0x45, 0x84, 0x90, 0x74, 0x29, 0x12, 0xd5, 0x5a, 0xa2, 0x19, 0x52, 0x6d, 0x13, 0xe9, 0x4b, 0x2f, + 0x84, 0xc4, 0xcc, 0xc7, 0xdf, 0x15, 0x67, 0xcd, 0x6a, 0xbb, 0x3f, 0xbc, 0x3e, 0x3a, 0x3a, 0xea, + 0x6a, 0x7f, 0x0f, 0x96, 0x61, 0x5e, 0x1b, 0x01, 0xfd, 0x1d, 0xee, 0x44, 0x69, 0x33, 0x90, 0x08, + 0x6d, 0x2c, 0xd7, 0x5b, 0x0a, 0xe6, 0x75, 0xa0, 0x81, 0x19, 0x85, 0xf7, 0x4c, 0x88, 0x5d, 0x44, + 0xa7, 0x4c, 0x66, 0xd2, 0x2b, 0x84, 0x22, 0x2c, 0x85, 0x89, 0x1d, 0x17, 0xd2, 0xff, 0xa1, 0x84, + 0x41, 0x7c, 0x32, 0xfe, 0x0e, 0x22, 0x07, 0x1a, 0x18, 0x89, 0x77, 0xb5, 0x84, 0x2f, 0x12, 0xab, + 0xeb, 0x7f, 0x63, 0x2a, 0x35, 0xc1, 0x4a, 0x7c, 0x24, 0xe4, 0x95, 0x6a, 0x53, 0x18, 0xbc, 0x93, + 0x99, 0xa6, 0xb2, 0x51, 0xfb, 0xbd, 0xbc, 0x61, 0x02, 0x6e, 0x40, 0x5b, 0xc2, 0x04, 0xbc, 0x2b, + 0xd0, 0x4b, 0x97, 0x24, 0xea, 0xc4, 0xe3, 0xf2, 0xbb, 0xe4, 0x15, 0xa6, 0x14, 0x21, 0xd4, 0x33, + 0x66, 0x38, 0x29, 0x03, 0xa2, 0xdb, 0x22, 0xbd, 0x7a, 0x62, 0x35, 0xb5, 0x72, 0x00, 0x38, 0x7e, + 0x2f, 0x6b, 0x92, 0xd3, 0x92, 0xa3, 0x84, 0xb0, 0x97, 0x31, 0xcd, 0xa1, 0xa0, 0xf3, 0x42, 0xdc, + 0x1a, 0xd2, 0x3e, 0x46, 0x10, 0x11, 0x64, 0xad, 0xea, 0xdc, 0x22, 0x3d, 0x4b, 0x19, 0xb1, 0x9a, + 0xd6, 0xcc, 0xbe, 0xb1, 0x33, 0xf6, 0xb6, 0x9f, 0x93, 0x6b, 0x71, 0xa3, 0xab, 0x20, 0xd5, 0x72, + 0x7b, 0x70, 0xef, 0x06, 0x4f, 0x17, 0x76, 0xc5, 0x07, 0x3d, 0x3b, 0xb6, 0x65, 0x2d, 0x1e, 0xba, + 0x33, 0x86, 0x2a, 0x0f, 0x3f, 0xe0, 0xf9, 0x46, 0xd4, 0xc5, 0xf6, 0xf0, 0xca, 0xd7, 0x32, 0xea, + 0xb4, 0xa0, 0x29, 0x3e, 0xaf, 0x52, 0xcb, 0xa1, 0xc8, 0xdc, 0xb0, 0xfa, 0x93, 0x52, 0x06, 0x66, + 0x00, 0xb0, 0x69, 0xe1, 0x12, 0xa6, 0xe1, 0x4b, 0x0b, 0x78, 0xe3, 0x42, 0xb0, 0x02, 0xf2, 0x13, + 0x6a, 0x1e, 0xbd, 0xd5, 0xdc, 0x28, 0x02, 0xc5, 0x6a, 0xc4, 0xba, 0xef, 0x09, 0x4b, 0x09, 0x7a, + 0xac, 0x65, 0xec, 0x7f, 0x7c, 0x25, 0xab, 0x57, 0x72, 0x5b, 0x2a, 0xe6, 0x09, 0x7a, 0x13, 0x94, + 0xce, 0x1b, 0x74, 0x26, 0xec, 0x01, 0x3a, 0xb8, 0xcc, 0x1f, 0xe7, 0x84, 0x09, 0xc4, 0xa1, 0x96, + 0x95, 0x07, 0xa1, 0xef, 0x14, 0x24, 0xea, 0x16, 0x03, 0x5b, 0x01, 0x41, 0x28, 0xb7, 0x04, 0xfc, + 0x8c, 0x73, 0xb8, 0x18, 0x11, 0xc9, 0x24, 0x79, 0x0c, 0x5a, 0xbb, 0x59, 0x46, 0xf2, 0xf4, 0x04, + 0xcc, 0x73, 0x02, 0x01, 0x5b, 0x54, 0x39, 0x3e, 0xe3, 0x51, 0xe4, 0x26, 0x86, 0xd8, 0x4f, 0x50, + 0xb5, 0x32, 0x43, 0xca, 0x53, 0xe4, 0x4a, 0xe3, 0x85, 0x2c, 0xb9, 0xf5, 0x82, 0x1b, 0x69, 0xc4, + 0x01, 0xc9, 0x74, 0xfa, 0xbc, 0x35, 0x1c, 0xbc, 0x29, 0xec, 0xbc, 0x4a, 0xd3, 0xb1, 0xa9, 0x0f, + 0xb8, 0xbc, 0x35, 0x79, 0x2a, 0xd9, 0x0b, 0xc2, 0x3f, 0x84, 0x30, 0xfc, 0x31, 0x87, 0x08, 0x1e, + 0x17, 0x3a, 0x7b, 0x46, 0x42, 0x8b, 0x37, 0xaa, 0x3b, 0x99, 0x83, 0xcc, 0xe9, 0x69, 0x81, 0x2a, + 0x06, 0x57, 0xeb, 0x4b, 0xbc, 0x2f, 0x9e, 0xd3, 0x3a, 0x51, 0xd6, 0xcd, 0x29, 0x5c, 0x6d, 0x3b, + 0x04, 0xdc, 0x1b, 0x4f, 0x21, 0xc4, 0x07, 0x0c, 0x36, 0x15, 0xae, 0x8a, 0xb8, 0x78, 0x26, 0xa2, + 0x14, 0xa7, 0x7a, 0xa9, 0x3d, 0x61, 0x4d, 0x6c, 0x0e, 0x82, 0x21, 0xd6, 0x16, 0x90, 0x13, 0xed, + 0x2d, 0x17, 0x4d, 0x4c, 0x85, 0x9f, 0xe3, 0xfb, 0xf9, 0x50, 0xf2, 0x59, 0x6c, 0x8b, 0x82, 0x30, + 0xe2, 0x81, 0xb1, 0xc0, 0x9b, 0x54, 0xec, 0x93, 0xa7, 0x47, 0xf8, 0x6a, 0xb9, 0xd3, 0x36, 0x36, + 0x7a, 0x49, 0x09, 0xf0, 0xfa, 0x3a, 0xe3, 0x20, 0x11, 0xf2, 0xf9, 0xd5, 0xb6, 0x9d, 0x77, 0x01, + 0x66, 0xcf, 0x8e, 0x1d, 0xee, 0xc1, 0x51, 0x42, 0xd8, 0xd5, 0xb6, 0xad, 0xf8, 0x8d, 0x13, 0x64, + 0xe7, 0xd7, 0x45, 0xe9, 0xa9, 0x15, 0x4f, 0xbf, 0x5c, 0x81, 0x09, 0x03, 0xff, 0x35, 0xd9, 0xdc, + 0x44, 0x2f, 0x9e, 0x83, 0x69, 0x1d, 0xec, 0x7d, 0x67, 0xab, 0xdc, 0xed, 0x97, 0x5a, 0xf1, 0x34, + 0x8c, 0xea, 0x25, 0xbc, 0x65, 0xf5, 0x55, 0x9a, 0x7d, 0xbc, 0x15, 0x25, 0x3a, 0xde, 0xc0, 0xef, + 0x4a, 0x78, 0x78, 0x79, 0xaa, 0x88, 0xb5, 0x78, 0x44, 0xa6, 0x65, 0x3f, 0x4b, 0xda, 0x21, 0xe9, + 0x1d, 0x2a, 0x84, 0x22, 0xc8, 0x2e, 0x87, 0xf5, 0x0b, 0xe9, 0xbd, 0x16, 0xbd, 0xc2, 0x0c, 0x2b, + 0x6a, 0x85, 0xed, 0xec, 0x9e, 0x28, 0x65, 0x87, 0x82, 0x75, 0x25, 0x07, 0xa8, 0x4b, 0x36, 0xaa, + 0xd5, 0x3e, 0x75, 0xc6, 0xbd, 0xbc, 0xc2, 0x7d, 0x6a, 0xb1, 0x03, 0xf0, 0xaa, 0x7a, 0x97, 0xba, + 0x76, 0x2a, 0x9c, 0x3a, 0xc8, 0x8b, 0x5c, 0x48, 0x0c, 0x37, 0xe7, 0xd4, 0xf5, 0x13, 0x63, 0x87, + 0x01, 0xc9, 0xb3, 0x16, 0xee, 0x32, 0x8d, 0xa0, 0x64, 0x22, 0x24, 0xee, 0x4a, 0x96, 0x1b, 0xfd, + 0xa4, 0x48, 0xbf, 0x01, 0x55, 0x7c, 0xa8, 0x56, 0x41, 0x14, 0xbb, 0x94, 0x5a, 0x8d, 0x8e, 0xc7, + 0x6c, 0x01, 0x11, 0x60, 0x43, 0x80, 0xab, 0xb0, 0x12, 0x19, 0x55, 0xcd, 0xcc, 0x3d, 0xb3, 0xc7, + 0x4b, 0x9a, 0x6e, 0x28, 0x21, 0x00, 0x23, 0x3e, 0x8a, 0xf6, 0x32, 0xb5, 0xa7, 0x5a, 0x0d, 0x14, + 0x71, 0xea, 0x94, 0x7e, 0x73, 0x59, 0xf0, 0x76, 0x4a, 0xc1, 0x5a, 0xc3, 0xe3, 0x34, 0x84, 0xf8, + 0x62, 0xd2, 0x84, 0x90, 0x56, 0xec, 0x3f, 0x3a, 0xe4, 0x0f, 0x58, 0x72, 0xff, 0x3b, 0x41, 0xad, + 0x83, 0xb7, 0xc1, 0x71, 0x93, 0x4a, 0xde, 0x5e, 0xe1, 0x4e, 0xc6, 0x8b, 0x14, 0x71, 0x43, 0x0f, + 0xaf, 0x06, 0x45, 0x3d, 0xac, 0x65, 0x14, 0x51, 0x93, 0xdf, 0x4f, 0xd9, 0xbe, 0x2c, 0x57, 0x17, + 0x24, 0xce, 0x8d, 0x2a, 0x44, 0x25, 0x2f, 0x29, 0xb8, 0x7d, 0xb3, 0x45, 0x52, 0x8a, 0x76, 0x11, + 0x22, 0x2b, 0xf5, 0x05, 0xc9, 0x48, 0x84, 0x59, 0xd7, 0x58, 0x5f, 0x11, 0x5e, 0x17, 0xeb, 0x46, + 0x53, 0x8c, 0x8a, 0x65, 0x0c, 0x07, 0x66, 0x51, 0x6c, 0xc7, 0x3d, 0x67, 0x17, 0xfb, 0x4a, 0x8e, + 0x14, 0xd4, 0x4c, 0xd2, 0xb1, 0x91, 0x4f, 0x9c, 0x41, 0x3e, 0x51, 0x2b, 0xb5, 0x92, 0xf3, 0xb2, + 0x63, 0xbe, 0x69, 0xee, 0xa0, 0x5b, 0x7b, 0xd0, 0x62, 0xc8, 0xcc, 0x31, 0xec, 0x9d, 0xaa, 0x88, + 0x16, 0x89, 0x03, 0x1f, 0x92, 0x45, 0xd1, 0x1f, 0x56, 0xa4, 0x2c, 0x45, 0x0c, 0x56, 0x06, 0x43, + 0x0d, 0x13, 0xb3, 0x9b, 0x00, 0xf2, 0x27, 0xdd, 0xc2, 0x00, 0x17, 0xd2, 0x31, 0xc5, 0xa2, 0x04, + 0x29, 0xba, 0xea, 0xf7, 0x74, 0x3e, 0xa7, 0x71, 0xce, 0x80, 0x9a, 0x8f, 0x31, 0x85, 0x70, 0xae, + 0xcf, 0xf1, 0xe8, 0x3d, 0x44, 0xb0, 0x9a, 0x0e, 0x69, 0x01, 0x44, 0xfd, 0x1e, 0x9a, 0x91, 0x24, + 0x69, 0x16, 0x08, 0x6a, 0x95, 0xd0, 0x4b, 0x98, 0x59, 0x81, 0x01, 0x2b, 0x10, 0x9a, 0x8e, 0x39, + 0xe0, 0x26, 0xf4, 0x14, 0xb8, 0xb0, 0x54, 0x1b, 0xab, 0xf2, 0xfe, 0xb7, 0x6a, 0x96, 0xd5, 0x44, + 0xb9, 0x11, 0xbd, 0x1c, 0x0b, 0x81, 0x67, 0x8d, 0xa3, 0x8d, 0x43, 0x9b, 0xfb, 0x68, 0x2d, 0xd8, + 0x02, 0xd8, 0xda, 0xb0, 0x37, 0x7c, 0x99, 0x98, 0x56, 0x3f, 0xcd, 0x3f, 0x41, 0x0d, 0x79, 0x86, + 0x4f, 0x6a, 0xb9, 0xde, 0x3d, 0xb3, 0x5c, 0x76, 0x56, 0x20, 0x6a, 0xa9, 0x44, 0xfc, 0x84, 0x62, + 0x7c, 0x1d, 0x52, 0x3f, 0x72, 0x45, 0xad, 0x5f, 0x48, 0xf2, 0x59, 0x18, 0x44, 0xd1, 0x94, 0x4e, + 0xd8, 0x33, 0xac, 0xba, 0x7e, 0x47, 0x54, 0x0d, 0x41, 0xdc, 0x44, 0x07, 0xd3, 0x0f, 0xbc, 0x82, + 0x98, 0xe8, 0x99, 0x61, 0x6f, 0xfb, 0xca, 0xff, 0x27, 0x68, 0x35, 0xfc, 0x80, 0x75, 0xba, 0xf4, + 0x0a, 0xfa, 0x9b, 0xe7, 0xb2, 0xe6, 0xcc, 0xc1, 0x5b, 0x08, 0x06, 0x20, 0x35, 0x8e, 0xb2, 0x15, + 0x8d, 0x21, 0xf5, 0x18, 0x07, 0xd7, 0xcb, 0xd3, 0xd9, 0x3d, 0x43, 0xd8, 0x50, 0xcd, 0x07, 0xab, + 0x31, 0x90, 0x67, 0x41, 0xb4, 0x7a, 0xb6, 0x1a, 0x7b, 0x4c, 0xe4, 0x94, 0x09, 0xb8, 0x1c, 0xa9, + 0x8a, 0xd2, 0xe1, 0x9f, 0xe0, 0x7e, 0x4f, 0x8b, 0x64, 0xd2, 0x80, 0x8c, 0x07, 0x58, 0x13, 0x48, + 0xde, 0x61, 0x6d, 0x05, 0xe3, 0x63, 0xcd, 0x7f, 0xa3, 0xbe, 0x4a, 0xbe, 0x89, 0x67, 0xb0, 0x89, + 0xa7, 0xb6, 0x6d, 0x99, 0x33, 0x35, 0x03, 0xd7, 0xcf, 0x1a, 0x96, 0x6b, 0x61, 0xb8, 0xcb, 0x54, + 0x22, 0x66, 0x7d, 0xff, 0xc5, 0xda, 0xdf, 0xde, 0x10, 0x57, 0x2c, 0xf1, 0xa6, 0xb7, 0xb4, 0x62, + 0x78, 0x9f, 0xca, 0xae, 0x68, 0x7d, 0xa2, 0x2e, 0x17, 0xf9, 0x2c, 0x98, 0x9f, 0x2d, 0x71, 0xd1, + 0x3b, 0x10, 0xc4, 0x6d, 0x11, 0x11, 0xbe, 0xd7, 0x44, 0x10, 0xbe, 0x25, 0x1a, 0x1a, 0x2d, 0xfd, + 0xd0, 0x8d, 0x4a, 0x82, 0x89, 0x1a, 0xae, 0x83, 0xb8, 0xb9, 0x8c, 0x1f, 0xf1, 0x85, 0x3c, 0x13, + 0xdd, 0xbe, 0x58, 0x0c, 0xd9, 0xd8, 0xa7, 0xe0, 0xdc, 0xc6, 0x2c, 0x63, 0x4e, 0xaa, 0x13, 0x16, + 0x65, 0x9d, 0xcf, 0xae, 0x37, 0x2a, 0x2a, 0xf7, 0x63, 0xd2, 0x7b, 0x2f, 0xb3, 0x93, 0x40, 0x25, + 0x08, 0xc2, 0x26, 0x95, 0x5d, 0x5e, 0xc8, 0xde, 0x55, 0xa8, 0x25, 0x97, 0x15, 0x48, 0xaf, 0xec, + 0xe6, 0xea, 0x9b, 0x67, 0x82, 0xca, 0xcd, 0xbb, 0x7d, 0xb5, 0x22, 0x73, 0x9f, 0xb9, 0xd2, 0x80, + 0xfc, 0xad, 0xbc, 0xd4, 0x50, 0x4b, 0xd9, 0xbb, 0xe5, 0x5e, 0x03, 0x06, 0x99, 0xa5, 0x37, 0x1b, + 0x84, 0xae, 0x9e, 0x25, 0xb3, 0x07, 0xb6, 0xa5, 0x17, 0x36, 0x9e, 0xb9, 0x3b, 0x73, 0xa5, 0xec, + 0x0e, 0x8e, 0x81, 0x84, 0x08, 0x94, 0xfb, 0x8e, 0x55, 0x59, 0x9f, 0x62, 0x1e, 0x51, 0x4c, 0x23, + 0xe2, 0x95, 0xeb, 0x67, 0x95, 0xe6, 0xa7, 0xb4, 0xaa, 0x72, 0x3a, 0xb9, 0x43, 0x21, 0x98, 0x08, + 0xb9, 0x88, 0x0d, 0x41, 0x06, 0x5f, 0x2e, 0x31, 0x18, 0xf6, 0x4b, 0x13, 0x81, 0x81, 0xf8, 0x6e, + 0x8c, 0xa6, 0xdf, 0x87, 0x74, 0x81, 0x45, 0xcb, 0x79, 0x70, 0x07, 0x83, 0x8d, 0x2d, 0x82, 0x5f, + 0x8b, 0x87, 0x50, 0xef, 0x9e, 0xae, 0x22, 0x0d, 0x47, 0x1a, 0x5b, 0x16, 0x2a, 0xee, 0xee, 0xe3, + 0x45, 0xa4, 0x8d, 0xde, 0xb5, 0xa2, 0x4a, 0xa0, 0x68, 0x94, 0xf8, 0xb9, 0xf2, 0x75, 0x52, 0x26, + 0x23, 0x94, 0xd7, 0x7b, 0x34, 0x94, 0x87, 0x97, 0xf1, 0x39, 0xb6, 0x48, 0x76, 0x2b, 0x49, 0xd7, + 0xde, 0x5d, 0xe5, 0x5c, 0xd0, 0xbb, 0xe1, 0xa8, 0x34, 0xe3, 0x16, 0xd9, 0xeb, 0x54, 0x24, 0xd8, + 0xf8, 0x3f, 0x6a, 0xd0, 0x38, 0x9b, 0x2f, 0xbc, 0x22, 0x5e, 0x19, 0x38, 0xd7, 0xd2, 0xc8, 0xb9, + 0x45, 0xb4, 0x7f, 0x3e, 0x72, 0x26, 0xf1, 0xe1, 0xbe, 0xe4, 0x0c, 0x60, 0x0b, 0xf2, 0x3a, 0x11, + 0x28, 0x95, 0x27, 0xcb, 0xff, 0x47, 0x1b, 0x0f, 0x4d, 0xdc, 0x4b, 0xc9, 0x54, 0x1e, 0xe4, 0xff, + 0x4e, 0x22, 0x29, 0xf7, 0xe1, 0x36, 0x0c, 0xee, 0xc9, 0xe0, 0xff, 0xce, 0xe6, 0x7f, 0x00, 0x0f, + 0xd2, 0x8c, 0xa9, 0xde, 0x66, 0x00, 0x00 }; diff --git a/wled00/set.cpp b/wled00/set.cpp index 9c21e7d6..0c9863af 100644 --- a/wled00/set.cpp +++ b/wled00/set.cpp @@ -94,10 +94,13 @@ void handleSettingsSet(AsyncWebServerRequest *request, byte subPage) } } - uint8_t colorOrder, type, skip, awmode, channelSwap; - uint16_t length, start; + uint8_t colorOrder, type, skip, awmode, channelSwap, maPerLed; + uint16_t length, start, maMax; uint8_t pins[5] = {255, 255, 255, 255, 255}; + strip.ablMilliampsMax = request->arg(F("MA")).toInt(); + //strip.milliampsPerLed = request->arg(F("LA")).toInt(); + autoSegments = request->hasArg(F("MS")); correctWB = request->hasArg(F("CCT")); cctFromRgb = request->hasArg(F("CR")); @@ -120,6 +123,8 @@ void handleSettingsSet(AsyncWebServerRequest *request, byte subPage) char aw[4] = "AW"; aw[2] = 48+s; aw[3] = 0; //auto white mode char wo[4] = "WO"; wo[2] = 48+s; wo[3] = 0; //channel swap char sp[4] = "SP"; sp[2] = 48+s; sp[3] = 0; //bus clock speed (DotStar & PWM) + char la[4] = "LA"; la[2] = 48+s; la[3] = 0; //LED mA + char ma[4] = "MA"; ma[2] = 48+s; ma[3] = 0; //max mA if (!request->hasArg(lp)) { DEBUG_PRINT(F("No data for ")); DEBUG_PRINTLN(s); @@ -164,10 +169,17 @@ void handleSettingsSet(AsyncWebServerRequest *request, byte subPage) freqHz = 0; } channelSwap = (type == TYPE_SK6812_RGBW || type == TYPE_TM1814) ? request->arg(wo).toInt() : 0; + if ((type > TYPE_TM1814 && type < TYPE_WS2801) || type >= TYPE_NET_DDP_RGB) { // analog and virtual + maPerLed = 0; + maMax = 0; + } else { + maPerLed = request->arg(la).toInt(); + maMax = request->arg(ma).toInt(); // if ABL is disabled this will be 0 + } // actual finalization is done in WLED::loop() (removing old busses and adding new) // this may happen even before this loop is finished so we do "doInitBusses" after the loop if (busConfigs[s] != nullptr) delete busConfigs[s]; - busConfigs[s] = new BusConfig(type, pins, start, length, colorOrder | (channelSwap<<4), request->hasArg(cv), skip, awmode, freqHz, useGlobalLedBuffer); + busConfigs[s] = new BusConfig(type, pins, start, length, colorOrder | (channelSwap<<4), request->hasArg(cv), skip, awmode, freqHz, useGlobalLedBuffer, maPerLed, maMax); busesChanged = true; } //doInitBusses = busesChanged; // we will do that below to ensure all input data is processed @@ -241,9 +253,6 @@ void handleSettingsSet(AsyncWebServerRequest *request, byte subPage) } touchThreshold = request->arg(F("TT")).toInt(); - strip.ablMilliampsMax = request->arg(F("MA")).toInt(); - strip.milliampsPerLed = request->arg(F("LA")).toInt(); - briS = request->arg(F("CA")).toInt(); turnOnAtBoot = request->hasArg(F("BO")); diff --git a/wled00/wled.h b/wled00/wled.h index 590fb41e..346f0ef1 100644 --- a/wled00/wled.h +++ b/wled00/wled.h @@ -8,7 +8,7 @@ */ // version code in format yymmddb (b = daily build) -#define VERSION 2311120 +#define VERSION 2311150 //uncomment this if you have a "my_config.h" file you'd like to use //#define WLED_USE_MY_CONFIG diff --git a/wled00/xml.cpp b/wled00/xml.cpp index 2fc946ef..c5bae580 100644 --- a/wled00/xml.cpp +++ b/wled00/xml.cpp @@ -354,6 +354,7 @@ void getSettingsJS(byte subPage, char* dest) sappend('v',SET_F("AW"),Bus::getGlobalAWMode()); sappend('c',SET_F("LD"),useGlobalLedBuffer); + uint16_t sumMa = 0; for (uint8_t s=0; s < busses.getNumBusses(); s++) { Bus* bus = busses.getBus(s); if (bus == nullptr) continue; @@ -368,6 +369,8 @@ void getSettingsJS(byte subPage, char* dest) char aw[4] = "AW"; aw[2] = 48+s; aw[3] = 0; //auto white mode char wo[4] = "WO"; wo[2] = 48+s; wo[3] = 0; //swap channels char sp[4] = "SP"; sp[2] = 48+s; sp[3] = 0; //bus clock speed + char la[4] = "LA"; la[2] = 48+s; la[3] = 0; //LED current + char ma[4] = "MA"; ma[2] = 48+s; ma[3] = 0; //max per-port PSU current oappend(SET_F("addLEDs(1);")); uint8_t pins[5]; uint8_t nPins = bus->getPins(pins); @@ -405,8 +408,13 @@ void getSettingsJS(byte subPage, char* dest) } } sappend('v',sp,speed); + sappend('v',la,bus->getLEDCurrent()); + sappend('v',ma,bus->getMaxCurrent()); + sumMa += bus->getMaxCurrent(); } + sappend('c',SET_F("PPL"),(sumMa>0 && abs(sumMa - strip.ablMilliampsMax)>2)); // approxiamte detection if per-output limiter is enabled sappend('v',SET_F("MA"),strip.ablMilliampsMax); +/* sappend('v',SET_F("LA"),strip.milliampsPerLed); if (strip.currentMilliamps) { @@ -415,7 +423,7 @@ void getSettingsJS(byte subPage, char* dest) oappendi(strip.currentMilliamps); oappend(SET_F("mA\";")); } - +*/ oappend(SET_F("resetCOM(")); oappend(itoa(WLED_MAX_COLOR_ORDER_MAPPINGS,nS,10)); oappend(SET_F(");"));