Reintroduction of per bus auto white calculation.

JS/CSS UI optimizations.
This commit is contained in:
Blaž Kristan 2022-03-09 13:39:51 +01:00
parent ddadaa828a
commit 5b88894638
13 changed files with 2169 additions and 2164 deletions

View File

@ -657,7 +657,6 @@ class WS2812FX {
paletteFade = 0, paletteFade = 0,
paletteBlend = 0, paletteBlend = 0,
milliampsPerLed = 55, milliampsPerLed = 55,
autoWhiteMode = RGBW_MODE_DUAL,
cctBlending = 0, cctBlending = 0,
getBrightness(void), getBrightness(void),
getModeCount(void), getModeCount(void),

View File

@ -87,7 +87,7 @@ void WS2812FX::finalizeInit(void)
uint16_t start = prevLen; uint16_t start = prevLen;
uint16_t count = defCounts[(i < defNumCounts) ? i : defNumCounts -1]; uint16_t count = defCounts[(i < defNumCounts) ? i : defNumCounts -1];
prevLen += count; prevLen += count;
BusConfig defCfg = BusConfig(DEFAULT_LED_TYPE, defPin, start, count, COL_ORDER_GRB); BusConfig defCfg = BusConfig(DEFAULT_LED_TYPE, defPin, start, count, COL_ORDER_GRB, false, 0, RGBW_MODE_MANUAL_ONLY);
busses.add(defCfg); busses.add(defCfg);
} }
} }
@ -157,13 +157,8 @@ void WS2812FX::service() {
} }
handle_palette(); handle_palette();
// if segment is not RGB capable, force None auto white mode
// If not RGB capable, also treat palette as if default (0), as palettes set white channel to 0
_no_rgb = !(SEGMENT.getLightCapabilities() & 0x01);
if (_no_rgb) Bus::setAutoWhiteMode(RGBW_MODE_MANUAL_ONLY);
delay = (this->*_mode[SEGMENT.mode])(); //effect function delay = (this->*_mode[SEGMENT.mode])(); //effect function
if (SEGMENT.mode != FX_MODE_HALLOWEEN_EYES) SEGENV.call++; if (SEGMENT.mode != FX_MODE_HALLOWEEN_EYES) SEGENV.call++;
Bus::setAutoWhiteMode(strip.autoWhiteMode);
} }
SEGENV.next_time = nowUp + delay; SEGENV.next_time = nowUp + delay;
@ -574,24 +569,17 @@ void WS2812FX::Segment::refreshLightCapabilities() {
_capabilities = 0; return; _capabilities = 0; return;
} }
uint8_t capabilities = 0; uint8_t capabilities = 0;
uint8_t awm = instance->autoWhiteMode;
bool whiteSlider = (awm == RGBW_MODE_DUAL || awm == RGBW_MODE_MANUAL_ONLY);
bool segHasValidBus = false;
for (uint8_t b = 0; b < busses.getNumBusses(); b++) { for (uint8_t b = 0; b < busses.getNumBusses(); b++) {
Bus *bus = busses.getBus(b); Bus *bus = busses.getBus(b);
if (bus == nullptr || bus->getLength()==0) break; if (bus == nullptr || bus->getLength()==0) break;
if (!bus->isOk()) continue;
if (bus->getStart() >= stop) continue; if (bus->getStart() >= stop) continue;
if (bus->getStart() + bus->getLength() <= start) continue; if (bus->getStart() + bus->getLength() <= start) continue;
segHasValidBus = true;
uint8_t type = bus->getType(); uint8_t type = bus->getType();
if (type != TYPE_ANALOG_1CH && (cctFromRgb || type != TYPE_ANALOG_2CH)) if (type != TYPE_ANALOG_1CH && (cctFromRgb || type != TYPE_ANALOG_2CH)) capabilities |= 0x01; // segment supports RGB (full color)
{ if (bus->isRgbw()) capabilities |= 0x02; // segment supports white channel
capabilities |= 0x01; // segment supports RGB (full color)
}
if (bus->isRgbw()) capabilities |= 0x02; //segment supports white channel
if (whiteSlider || (bus->isRgbw() && !(capabilities & 0x01))) capabilities |= 0x08; //segment allows white channel adjustments
if (!cctFromRgb) { if (!cctFromRgb) {
switch (type) { switch (type) {
case TYPE_ANALOG_5CH: case TYPE_ANALOG_5CH:
@ -600,10 +588,9 @@ void WS2812FX::Segment::refreshLightCapabilities() {
} }
} }
if (correctWB && type != TYPE_ANALOG_1CH) capabilities |= 0x04; //white balance correction (uses CCT slider) if (correctWB && type != TYPE_ANALOG_1CH) capabilities |= 0x04; //white balance correction (uses CCT slider)
bool whiteSlider = (bus->getAutoWhiteMode() == RGBW_MODE_DUAL || bus->getAutoWhiteMode() == RGBW_MODE_MANUAL_ONLY);
if (whiteSlider || (bus->isRgbw() && !(capabilities & 0x01))) capabilities |= 0x08; // segment allows white channel adjustments or has white and is not RGB -> show W slider
} }
// if seg has any bus, but no bus has RGB, it by definition supports white (at least for now)
// In case of no RGB, disregard auto white mode and always show a white slider
if (segHasValidBus && !(capabilities & 0x01)) capabilities |= 0x02; // segment supports white channel
_capabilities = capabilities; _capabilities = capabilities;
} }
@ -1259,7 +1246,6 @@ WS2812FX* WS2812FX::instance = nullptr;
//Bus static member definition, would belong in bus_manager.cpp //Bus static member definition, would belong in bus_manager.cpp
int16_t Bus::_cct = -1; int16_t Bus::_cct = -1;
uint8_t Bus::_cctBlend = 0; uint8_t Bus::_cctBlend = 0;
uint8_t Bus::_autoWhiteMode = RGBW_MODE_DUAL;
// WLEDSR: extensions // WLEDSR: extensions

View File

@ -41,18 +41,19 @@ void colorRGBtoRGBW(byte* rgb);
//temporary struct for passing bus configuration to bus //temporary struct for passing bus configuration to bus
struct BusConfig { struct BusConfig {
uint8_t type = TYPE_WS2812_RGB; uint8_t type;
uint16_t count; uint16_t count;
uint16_t start; uint16_t start;
uint8_t colorOrder; uint8_t colorOrder;
bool reversed; bool reversed;
uint8_t skipAmount; uint8_t skipAmount;
bool refreshReq; bool refreshReq;
uint8_t autoWhite;
uint8_t pins[5] = {LEDPIN, 255, 255, 255, 255}; uint8_t pins[5] = {LEDPIN, 255, 255, 255, 255};
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) { 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) {
refreshReq = (bool) GET_BIT(busType,7); 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) type = busType & 0x7F; // bit 7 may be/is hacked to include refresh info (1=refresh in off state, 0=no refresh)
count = len; start = pstart; colorOrder = pcolorOrder; reversed = rev; skipAmount = skip; count = len; start = pstart; colorOrder = pcolorOrder; reversed = rev; skipAmount = skip; autoWhite = aw;
uint8_t nPins = 1; uint8_t nPins = 1;
if (type >= TYPE_NET_DDP_RGB && type < 96) nPins = 4; //virtual network bus. 4 "pins" store IP address if (type >= TYPE_NET_DDP_RGB && type < 96) nPins = 4; //virtual network bus. 4 "pins" store IP address
else if (type > 47) nPins = 2; else if (type > 47) nPins = 2;
@ -132,9 +133,10 @@ struct ColorOrderMap {
//parent class of BusDigital, BusPwm, and BusNetwork //parent class of BusDigital, BusPwm, and BusNetwork
class Bus { class Bus {
public: public:
Bus(uint8_t type, uint16_t start) { Bus(uint8_t type, uint16_t start, uint8_t aw) {
_type = type; _type = type;
_start = start; _start = start;
_autoWhiteMode = Bus::isRgbw(_type) ? aw : RGBW_MODE_MANUAL_ONLY;
}; };
virtual ~Bus() {} //throw the bus under the bus virtual ~Bus() {} //throw the bus under the bus
@ -175,8 +177,8 @@ class Bus {
if (_cctBlend > WLED_MAX_CCT_BLEND) _cctBlend = WLED_MAX_CCT_BLEND; if (_cctBlend > WLED_MAX_CCT_BLEND) _cctBlend = WLED_MAX_CCT_BLEND;
#endif #endif
} }
inline static void setAutoWhiteMode(uint8_t m) { if (m < 4) _autoWhiteMode = m; } inline void setAutoWhiteMode(uint8_t m) { if (m < 4) _autoWhiteMode = m; }
inline static uint8_t getAutoWhiteMode() { return _autoWhiteMode; } inline uint8_t getAutoWhiteMode() { return _autoWhiteMode; }
bool reversed = false; bool reversed = false;
@ -187,7 +189,7 @@ class Bus {
uint16_t _len = 1; uint16_t _len = 1;
bool _valid = false; bool _valid = false;
bool _needsRefresh = false; bool _needsRefresh = false;
static uint8_t _autoWhiteMode; uint8_t _autoWhiteMode;
static int16_t _cct; static int16_t _cct;
static uint8_t _cctBlend; static uint8_t _cctBlend;
@ -208,7 +210,7 @@ class Bus {
class BusDigital : public Bus { class BusDigital : public Bus {
public: public:
BusDigital(BusConfig &bc, uint8_t nr, const ColorOrderMap &com) : Bus(bc.type, bc.start), _colorOrderMap(com) { BusDigital(BusConfig &bc, uint8_t nr, const ColorOrderMap &com) : Bus(bc.type, bc.start, bc.autoWhite), _colorOrderMap(com) {
if (!IS_DIGITAL(bc.type) || !bc.count) return; if (!IS_DIGITAL(bc.type) || !bc.count) return;
if (!pinManager.allocatePin(bc.pins[0], true, PinOwner::BusDigital)) return; if (!pinManager.allocatePin(bc.pins[0], true, PinOwner::BusDigital)) return;
_pins[0] = bc.pins[0]; _pins[0] = bc.pins[0];
@ -325,7 +327,7 @@ class BusDigital : public Bus {
class BusPwm : public Bus { class BusPwm : public Bus {
public: public:
BusPwm(BusConfig &bc) : Bus(bc.type, bc.start) { BusPwm(BusConfig &bc) : Bus(bc.type, bc.start, bc.autoWhite) {
_valid = false; _valid = false;
if (!IS_PWM(bc.type)) return; if (!IS_PWM(bc.type)) return;
uint8_t numPins = NUM_PWM_PINS(bc.type); uint8_t numPins = NUM_PWM_PINS(bc.type);
@ -478,7 +480,7 @@ class BusPwm : public Bus {
class BusNetwork : public Bus { class BusNetwork : public Bus {
public: public:
BusNetwork(BusConfig &bc) : Bus(bc.type, bc.start) { BusNetwork(BusConfig &bc) : Bus(bc.type, bc.start, bc.autoWhite) {
_valid = false; _valid = false;
// switch (bc.type) { // switch (bc.type) {
// case TYPE_NET_ARTNET_RGB: // case TYPE_NET_ARTNET_RGB:

View File

@ -81,11 +81,10 @@ bool deserializeConfig(JsonObject doc, bool fromFS) {
// initialize LED pins and lengths prior to other HW (except for ethernet) // initialize LED pins and lengths prior to other HW (except for ethernet)
JsonObject hw_led = hw["led"]; JsonObject hw_led = hw["led"];
uint8_t autoWhiteMode = RGBW_MODE_MANUAL_ONLY;
CJSON(strip.ablMilliampsMax, hw_led[F("maxpwr")]); CJSON(strip.ablMilliampsMax, hw_led[F("maxpwr")]);
CJSON(strip.milliampsPerLed, hw_led[F("ledma")]); CJSON(strip.milliampsPerLed, hw_led[F("ledma")]);
CJSON(strip.autoWhiteMode, hw_led[F("rgbwm")]); CJSON(autoWhiteMode, hw_led[F("rgbwm")]); // backwards compatibility
Bus::setAutoWhiteMode(strip.autoWhiteMode);
strip.fixInvalidSegments(); // refreshes segment light capabilities (in case auto white mode changed)
CJSON(correctWB, hw_led["cct"]); CJSON(correctWB, hw_led["cct"]);
CJSON(cctFromRgb, hw_led[F("cr")]); CJSON(cctFromRgb, hw_led[F("cr")]);
CJSON(strip.cctBlending, hw_led[F("cb")]); CJSON(strip.cctBlending, hw_led[F("cb")]);
@ -119,14 +118,15 @@ bool deserializeConfig(JsonObject doc, bool fromFS) {
bool reversed = elm["rev"]; bool reversed = elm["rev"];
bool refresh = elm["ref"] | false; bool refresh = elm["ref"] | false;
ledType |= refresh << 7; // hack bit 7 to indicate strip requires off refresh ledType |= refresh << 7; // hack bit 7 to indicate strip requires off refresh
uint8_t AWmode = elm[F("rgbwm")] | autoWhiteMode; // backwards compatible
s++; s++;
if (fromFS) { if (fromFS) {
BusConfig bc = BusConfig(ledType, pins, start, length, colorOrder, reversed, skipFirst); BusConfig bc = BusConfig(ledType, pins, start, length, colorOrder, reversed, skipFirst, AWmode);
mem += BusManager::memUsage(bc); mem += BusManager::memUsage(bc);
if (mem <= MAX_LED_MEMORY && busses.getNumBusses() <= WLED_MAX_BUSSES) busses.add(bc); // finalization will be done in WLED::beginStrip() if (mem <= MAX_LED_MEMORY && busses.getNumBusses() <= WLED_MAX_BUSSES) busses.add(bc); // finalization will be done in WLED::beginStrip()
} else { } else {
if (busConfigs[s] != nullptr) delete busConfigs[s]; if (busConfigs[s] != nullptr) delete busConfigs[s];
busConfigs[s] = new BusConfig(ledType, pins, start, length, colorOrder, reversed, skipFirst); busConfigs[s] = new BusConfig(ledType, pins, start, length, colorOrder, reversed, skipFirst, AWmode);
doInitBusses = true; doInitBusses = true;
} }
} }
@ -576,7 +576,6 @@ void serializeConfig() {
hw_led[F("cr")] = cctFromRgb; hw_led[F("cr")] = cctFromRgb;
hw_led[F("cb")] = strip.cctBlending; hw_led[F("cb")] = strip.cctBlending;
hw_led["fps"] = strip.getTargetFps(); hw_led["fps"] = strip.getTargetFps();
hw_led[F("rgbwm")] = strip.autoWhiteMode;
JsonArray hw_led_ins = hw_led.createNestedArray("ins"); JsonArray hw_led_ins = hw_led.createNestedArray("ins");
@ -595,7 +594,7 @@ void serializeConfig() {
ins[F("skip")] = bus->skippedLeds(); ins[F("skip")] = bus->skippedLeds();
ins["type"] = bus->getType() & 0x7F; ins["type"] = bus->getType() & 0x7F;
ins["ref"] = bus->isOffRefreshRequired(); ins["ref"] = bus->isOffRefreshRequired();
//ins[F("rgbw")] = bus->isRgbw(); ins[F("rgbwm")] = bus->getAutoWhiteMode();
} }
JsonArray hw_com = hw.createNestedArray(F("com")); JsonArray hw_com = hw.createNestedArray(F("com"));

View File

@ -557,7 +557,7 @@ output.sliderbubbleshow {
opacity: 1; opacity: 1;
} }
#rgbwrap, #kwrap, #wwrap, #wbal { #rgbwrap, #kwrap, #wwrap, #wbal, #qcs-w, #hexw {
display: none; display: none;
} }
@ -692,7 +692,6 @@ input[type=range]::-moz-range-thumb {
} }
#qcs-w { #qcs-w {
margin-top: 10px; margin-top: 10px;
display: none;
} }
/* Quick color select buttons */ /* Quick color select buttons */
@ -716,7 +715,6 @@ input[type=range]::-moz-range-thumb {
/* Hex color input wrapper div */ /* Hex color input wrapper div */
#hexw { #hexw {
margin-top: 5px; margin-top: 5px;
display: none;
} }
select/*, .sel-p, .sel-pl, .sel-ple*/ { select/*, .sel-p, .sel-pl, .sel-ple*/ {
@ -804,7 +802,6 @@ input[type=text] {
} }
.stxt { .stxt {
/*display: none;*/
width: 50px !important; width: 50px !important;
} }
@ -1109,12 +1106,14 @@ input[type=number]::-webkit-outer-spin-button {
} }
.lstIprev { .lstIprev {
/*
width: 100%; width: 100%;
height: 7px; height: 7px;
position: absolute; position: absolute;
bottom: 0; bottom: 0;
left: 0; left: 0;
z-index: -1; z-index: -1;
*/
} }
.fnd { .fnd {

View File

@ -126,7 +126,7 @@
<div id="wwrap"> <div id="wwrap">
<p class="labels hd">White channel</p> <p class="labels hd">White channel</p>
<div id="whibri" class="sliderwrap il"> <div id="whibri" class="sliderwrap il">
<input id="sliderW" class="noslide" onchange="setColor(0)" max="255" min="0" type="range" value="128" /> <input id="sliderW" class="noslide" oninput="fromW()" onchange="setColor(0)" max="255" min="0" type="range" value="128" />
<div class="sliderdisplay"></div> <div class="sliderdisplay"></div>
</div> </div>
</div> </div>
@ -168,10 +168,10 @@
<i class="icons search-icon">&#xe0a1;</i> <i class="icons search-icon">&#xe0a1;</i>
</div> </div>
<div id="pallist" class="list"> <div id="pallist" class="list">
<!--div class="lstIprev">
<div class="lstI" data-id="0"> <div class="lstI" data-id="0">
<label class="radio schkl"> <label class="radio schkl">
&nbsp; <input type="radio" value="0" name="palette" onChange="setPalette()" checked>
<input type="radio" value="${palettes[i].id}" name="palette" onChange="setPalette()">
<span class="radiomark schk"></span> <span class="radiomark schk"></span>
</label> </label>
<div class="lstIcontent"> <div class="lstIcontent">
@ -180,6 +180,8 @@
</span> </span>
</div> </div>
</div> </div>
</div-->
<div class="lstIprev">
<div class="lstI"> <div class="lstI">
<div class="lstIcontent"> <div class="lstIcontent">
<span class="lstIname"> <span class="lstIname">
@ -188,6 +190,7 @@
</div> </div>
</div> </div>
</div> </div>
</div>
</div> </div>
</div> </div>

View File

@ -56,7 +56,7 @@ function rgbBri(a) {return 0.2126*parseInt(a.r) + 0.7152*parseInt(a.g) + 0.0722*
function setCSL(cs) function setCSL(cs)
{ {
let w = cs.dataset.w ? parseInt(cs.dataset.w) : 0; let w = cs.dataset.w ? parseInt(cs.dataset.w) : 0;
let hasShadow = getComputedStyle(cs).textShadow; let hasShadow = getComputedStyle(cs).textShadow !== "none";
if (hasRGB && !isRgbBlack(cs.dataset)) { if (hasRGB && !isRgbBlack(cs.dataset)) {
cs.style.backgroundColor = rgbStr(cs.dataset); cs.style.backgroundColor = rgbStr(cs.dataset);
if (!hasShadow) cs.style.color = rgbBri(cs.dataset) > 127 ? "#000":"#fff"; // if text has no CSS "shadow" if (!hasShadow) cs.style.color = rgbBri(cs.dataset) > 127 ? "#000":"#fff"; // if text has no CSS "shadow"
@ -2043,7 +2043,7 @@ function selectSlot(b)
//force slider update on initial load (picker "color:change" not fired if black) //force slider update on initial load (picker "color:change" not fired if black)
if (cpick.color.value == 0) updatePSliders(); if (cpick.color.value == 0) updatePSliders();
gId('sliderW').value = parseInt(cd[b].dataset.w); gId('sliderW').value = parseInt(cd[b].dataset.w);
updateTrail(gId('sliderW')); //updateTrail(gId('sliderW'));
redrawPalPrev(); redrawPalPrev();
//updatePSliders(); //updatePSliders();
} }
@ -2123,12 +2123,12 @@ function setPicker(rgb) {
function fromV() function fromV()
{ {
cpick.color.setChannel('hsv', 'v', d.getElementById('sliderV').value); cpick.color.setChannel('hsv', 'v', gId('sliderV').value);
} }
function fromK() function fromK()
{ {
cpick.color.set({ kelvin: d.getElementById('sliderK').value }); cpick.color.set({ kelvin: gId('sliderK').value });
} }
function fromRgb() function fromRgb()
@ -2137,6 +2137,20 @@ function fromRgb()
var g = gId('sliderG').value; var g = gId('sliderG').value;
var b = gId('sliderB').value; var b = gId('sliderB').value;
setPicker(`rgb(${r},${g},${b})`); setPicker(`rgb(${r},${g},${b})`);
let cd = gId('csl').children; // color slots
cd[csel].dataset.r = r;
cd[csel].dataset.g = g;
cd[csel].dataset.b = b;
setCSL(cd[csel]);
}
function fromW()
{
let w = gId('sliderW');
//updateTrail(w);
let cd = gId('csl').children; // color slots
cd[csel].dataset.w = w.value;
setCSL(cd[csel]);
} }
//sr 0: from RGB sliders, 1: from picker, 2: from hex //sr 0: from RGB sliders, 1: from picker, 2: from hex

View File

@ -162,6 +162,7 @@
gId("dig"+n+"r").style.display = (t>=80 && t<96) ? "none":"inline"; // hide reversed for virtual gId("dig"+n+"r").style.display = (t>=80 && t<96) ? "none":"inline"; // hide reversed for virtual
gId("dig"+n+"s").style.display = ((t>=80 && t<96) || (t > 40 && t < 48)) ? "none":"inline"; // hide skip 1st for virtual & analog gId("dig"+n+"s").style.display = ((t>=80 && t<96) || (t > 40 && t < 48)) ? "none":"inline"; // hide skip 1st for virtual & analog
gId("dig"+n+"f").style.display = (t>=16 && t<32 || t>=50 && t<64) ? "inline":"none"; // hide refresh gId("dig"+n+"f").style.display = (t>=16 && t<32 || t>=50 && t<64) ? "inline":"none"; // hide refresh
gId("dig"+n+"a").style.display = (isRGBW) ? "inline":"none"; // auto calculate white
gId("rev"+n).innerHTML = (t > 40 && t < 48) ? "Inverted output":"Reversed (rotated 180°)"; // change reverse text for analog 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 gId("psd"+n).innerHTML = (t > 40 && t < 48) ? "Index:":"Start:"; // change analog start description
} }
@ -326,6 +327,7 @@ ${i+1}:
<div id="dig${i}r" style="display:inline"><br><span id="rev${i}">Reversed</span>: <input type="checkbox" name="CV${i}"></div> <div id="dig${i}r" style="display:inline"><br><span id="rev${i}">Reversed</span>: <input type="checkbox" name="CV${i}"></div>
<div id="dig${i}s" style="display:inline"><br>Skip 1<sup>st</sup> LED: <input id="sl${i}" type="checkbox" name="SL${i}"></div> <div id="dig${i}s" style="display:inline"><br>Skip 1<sup>st</sup> LED: <input id="sl${i}" type="checkbox" name="SL${i}"></div>
<div id="dig${i}f" style="display:inline"><br>Off Refresh: <input id="rf${i}" type="checkbox" name="RF${i}"></div> <div id="dig${i}f" style="display:inline"><br>Off Refresh: <input id="rf${i}" type="checkbox" name="RF${i}"></div>
<div id="dig${i}a" style="display:inline"><br>Auto-calculate white channel from RGB:<br><select name="AW${i}"><option value=0>None</option><option value=1>Brighter</option><option value=2>Accurate</option><option value=3>Dual</option></select>&nbsp;</div>
</div>`; </div>`;
f.insertAdjacentHTML("beforeend", cn); f.insertAdjacentHTML("beforeend", cn);
} }
@ -609,6 +611,7 @@ Length: <input type="number" name="XC${i}" id="xc${i}" class="l" min="1" max="65
<h3>White management</h3> <h3>White management</h3>
White Balance correction: <input type="checkbox" name="CCT"> <br> White Balance correction: <input type="checkbox" name="CCT"> <br>
<span class="wc"> <span class="wc">
<!--
Auto-calculate white channel from RGB:<br> Auto-calculate white channel from RGB:<br>
<select name="AW"> <select name="AW">
<option value=0>None</option> <option value=0>None</option>
@ -617,6 +620,7 @@ Length: <input type="number" name="XC${i}" id="xc${i}" class="l" min="1" max="65
<option value=3>Dual</option> <option value=3>Dual</option>
</select> </select>
<br> <br>
-->
Calculate CCT from RGB: <input type="checkbox" name="CR"> <br> Calculate CCT from RGB: <input type="checkbox" name="CR"> <br>
CCT additive blending: <input type="number" class="s" min="0" max="100" name="CB" required> %</span> CCT additive blending: <input type="number" class="s" min="0" max="100" name="CB" required> %</span>
<h3>Advanced</h3> <h3>Advanced</h3>

View File

@ -8,7 +8,7 @@
// Autogenerated from wled00/data/style.css, do not edit!! // Autogenerated from wled00/data/style.css, do not edit!!
const uint16_t PAGE_settingsCss_length = 824; const uint16_t PAGE_settingsCss_length = 824;
const uint8_t PAGE_settingsCss[] PROGMEM = { const uint8_t PAGE_settingsCss[] PROGMEM = {
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x13, 0xad, 0x55, 0x5d, 0x8b, 0x9c, 0x30, 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x0a, 0xad, 0x55, 0x5d, 0x8b, 0x9c, 0x30,
0x14, 0xfd, 0x2b, 0x96, 0x61, 0x61, 0x0b, 0xa3, 0xa8, 0xa3, 0xb3, 0xd3, 0x48, 0xa1, 0xf4, 0xbd, 0x14, 0xfd, 0x2b, 0x96, 0x61, 0x61, 0x0b, 0xa3, 0xa8, 0xa3, 0xb3, 0xd3, 0x48, 0xa1, 0xf4, 0xbd,
0x6f, 0xa5, 0x14, 0xca, 0x3e, 0x44, 0x73, 0x1d, 0xc3, 0xe4, 0x43, 0x92, 0xd8, 0x75, 0x2a, 0xfe, 0x6f, 0xa5, 0x14, 0xca, 0x3e, 0x44, 0x73, 0x1d, 0xc3, 0xe4, 0x43, 0x92, 0xd8, 0x75, 0x2a, 0xfe,
0xf7, 0x26, 0x7e, 0xac, 0xce, 0xac, 0x6c, 0x5f, 0xca, 0xe0, 0xa0, 0xde, 0x98, 0x7b, 0xee, 0xb9, 0xf7, 0x26, 0x7e, 0xac, 0xce, 0xac, 0x6c, 0x5f, 0xca, 0xe0, 0xa0, 0xde, 0x98, 0x7b, 0xee, 0xb9,
@ -66,7 +66,7 @@ const uint8_t PAGE_settingsCss[] PROGMEM = {
// Autogenerated from wled00/data/settings.htm, do not edit!! // Autogenerated from wled00/data/settings.htm, do not edit!!
const uint16_t PAGE_settings_length = 670; const uint16_t PAGE_settings_length = 670;
const uint8_t PAGE_settings[] PROGMEM = { const uint8_t PAGE_settings[] PROGMEM = {
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x13, 0x8d, 0x54, 0xdb, 0x6e, 0xdb, 0x30, 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x0a, 0x8d, 0x54, 0xdb, 0x6e, 0xdb, 0x30,
0x0c, 0x7d, 0xf7, 0x57, 0x68, 0x2e, 0x36, 0x24, 0x40, 0xdc, 0xb4, 0xe9, 0x30, 0x0c, 0xbe, 0x64, 0x0c, 0x7d, 0xf7, 0x57, 0x68, 0x2e, 0x36, 0x24, 0x40, 0xdc, 0xb4, 0xe9, 0x30, 0x0c, 0xbe, 0x64,
0x40, 0xd7, 0x6e, 0x2b, 0xb0, 0xa2, 0x05, 0x7a, 0xdb, 0x1e, 0x65, 0x89, 0x76, 0xb8, 0x5a, 0x92, 0x40, 0xd7, 0x6e, 0x2b, 0xb0, 0xa2, 0x05, 0x7a, 0xdb, 0x1e, 0x65, 0x89, 0x76, 0xb8, 0x5a, 0x92,
0x21, 0xd1, 0x69, 0xb2, 0x20, 0xff, 0x3e, 0xd9, 0x49, 0xd3, 0xae, 0x5d, 0xb0, 0xbc, 0x18, 0x26, 0x21, 0xd1, 0x69, 0xb2, 0x20, 0xff, 0x3e, 0xd9, 0x49, 0xd3, 0xae, 0x5d, 0xb0, 0xbc, 0x18, 0x26,
@ -114,7 +114,7 @@ const uint8_t PAGE_settings[] PROGMEM = {
// Autogenerated from wled00/data/settings_wifi.htm, do not edit!! // Autogenerated from wled00/data/settings_wifi.htm, do not edit!!
const uint16_t PAGE_settings_wifi_length = 1240; const uint16_t PAGE_settings_wifi_length = 1240;
const uint8_t PAGE_settings_wifi[] PROGMEM = { const uint8_t PAGE_settings_wifi[] PROGMEM = {
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x13, 0xad, 0x57, 0x6d, 0x6f, 0xe2, 0x46, 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x0a, 0xad, 0x57, 0x6d, 0x6f, 0xe2, 0x46,
0x10, 0xfe, 0xee, 0x5f, 0xb1, 0xdd, 0x4a, 0x15, 0x48, 0x60, 0xde, 0x9a, 0x28, 0xa2, 0x36, 0x57, 0x10, 0xfe, 0xee, 0x5f, 0xb1, 0xdd, 0x4a, 0x15, 0x48, 0x60, 0xde, 0x9a, 0x28, 0xa2, 0x36, 0x57,
0x02, 0x34, 0x44, 0xba, 0xe6, 0xa8, 0x40, 0x8d, 0xfa, 0xe9, 0xb4, 0xd8, 0x03, 0xde, 0xc6, 0xde, 0x02, 0x34, 0x44, 0xba, 0xe6, 0xa8, 0x40, 0x8d, 0xfa, 0xe9, 0xb4, 0xd8, 0x03, 0xde, 0xc6, 0xde,
0xf5, 0x79, 0xd7, 0x18, 0x74, 0xbd, 0xff, 0xde, 0x59, 0xdb, 0xbc, 0x87, 0xf4, 0x1a, 0xa1, 0x28, 0xf5, 0x79, 0xd7, 0x18, 0x74, 0xbd, 0xff, 0xde, 0x59, 0xdb, 0xbc, 0x87, 0xf4, 0x1a, 0xa1, 0x28,
@ -196,447 +196,448 @@ const uint8_t PAGE_settings_wifi[] PROGMEM = {
// Autogenerated from wled00/data/settings_leds.htm, do not edit!! // Autogenerated from wled00/data/settings_leds.htm, do not edit!!
const uint16_t PAGE_settings_leds_length = 6903; const uint16_t PAGE_settings_leds_length = 6928;
const uint8_t PAGE_settings_leds[] PROGMEM = { const uint8_t PAGE_settings_leds[] PROGMEM = {
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x13, 0xdd, 0x3c, 0xdb, 0x56, 0xe3, 0x48, 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x0a, 0xdd, 0x3c, 0xdb, 0x56, 0xe3, 0x48,
0x92, 0xef, 0xfe, 0x8a, 0x24, 0xbb, 0x9b, 0x96, 0x06, 0x61, 0x24, 0x5f, 0x68, 0xca, 0xb6, 0xcc, 0x92, 0xef, 0xfe, 0x8a, 0x24, 0xbb, 0x9a, 0x96, 0x06, 0x61, 0x24, 0x5f, 0x68, 0xca, 0xb6, 0xc4,
0x62, 0xea, 0xd2, 0xec, 0x40, 0x17, 0x07, 0xd3, 0xdd, 0xb3, 0xa7, 0xa6, 0x4e, 0x93, 0x96, 0xd3, 0x60, 0xea, 0xd2, 0xec, 0x40, 0x17, 0x07, 0xd3, 0xdd, 0x33, 0xa7, 0xba, 0x4e, 0x93, 0xb6, 0xd3,
0xb6, 0x0a, 0x59, 0xf2, 0x48, 0x32, 0xe0, 0x05, 0xef, 0x37, 0xed, 0x37, 0xec, 0x97, 0x6d, 0x44, 0xb6, 0x0a, 0x59, 0xf2, 0x48, 0x32, 0x94, 0x17, 0xbc, 0xdf, 0xb4, 0xdf, 0xb0, 0x5f, 0xb6, 0x11,
0x5e, 0x24, 0xd9, 0x96, 0x0d, 0x3d, 0xb3, 0x4f, 0x5b, 0xe7, 0x14, 0xe8, 0x12, 0x19, 0x11, 0x19, 0x79, 0x91, 0x64, 0x5b, 0x36, 0xf4, 0xcc, 0x3e, 0x6d, 0x9f, 0xd3, 0x85, 0x2e, 0x91, 0x11, 0x91,
0x19, 0xf7, 0x4c, 0xd1, 0xd9, 0x7b, 0xff, 0xf9, 0xfc, 0xf6, 0x3f, 0xae, 0x3f, 0x90, 0x49, 0x3a, 0x91, 0x71, 0xcf, 0x94, 0x3b, 0x7b, 0xef, 0x3e, 0x9d, 0xdf, 0xfe, 0xe3, 0xfa, 0x3d, 0x99, 0xa4,
0x0d, 0xba, 0x1d, 0xfc, 0x49, 0x02, 0x16, 0x8e, 0x5d, 0xca, 0x43, 0x0a, 0xf7, 0x9c, 0x0d, 0xbb, 0xd3, 0xc0, 0xeb, 0xe0, 0xbf, 0x24, 0x60, 0xe1, 0xd8, 0xa5, 0x3c, 0xa4, 0x70, 0xcf, 0xd9, 0xd0,
0x9d, 0x29, 0x4f, 0x19, 0xf1, 0x26, 0x2c, 0x4e, 0x78, 0xea, 0xd2, 0x79, 0x3a, 0x3a, 0x3c, 0xa1, 0xeb, 0x4c, 0x79, 0xca, 0xc8, 0x60, 0xc2, 0xe2, 0x84, 0xa7, 0x2e, 0x9d, 0xa7, 0xa3, 0xc3, 0x13,
0xea, 0x69, 0x25, 0x64, 0x53, 0xee, 0xd2, 0x07, 0x9f, 0x3f, 0xce, 0xa2, 0x38, 0xa5, 0xc4, 0x8b, 0xaa, 0x9e, 0x56, 0x42, 0x36, 0xe5, 0x2e, 0x7d, 0xf0, 0xf9, 0xe3, 0x2c, 0x8a, 0x53, 0x4a, 0x06,
0xc2, 0x94, 0x87, 0x00, 0xf6, 0xe8, 0x0f, 0xd3, 0x89, 0xdb, 0xb4, 0xed, 0x0c, 0x74, 0xed, 0xd5, 0x51, 0x98, 0xf2, 0x10, 0xc0, 0x1e, 0xfd, 0x61, 0x3a, 0x71, 0x9b, 0xb6, 0x9d, 0x81, 0xae, 0xbd,
0x90, 0x3f, 0xf8, 0x1e, 0x3f, 0x14, 0x37, 0x96, 0x1f, 0xfa, 0xa9, 0xcf, 0x82, 0xc3, 0xc4, 0x63, 0x1a, 0xf2, 0x07, 0x7f, 0xc0, 0x0f, 0xc5, 0x8d, 0xe5, 0x87, 0x7e, 0xea, 0xb3, 0xe0, 0x30, 0x19,
0x01, 0x77, 0x1d, 0x6b, 0xca, 0x9e, 0xfc, 0xe9, 0x7c, 0x9a, 0xdd, 0xcf, 0x13, 0x1e, 0x8b, 0x1b, 0xb0, 0x80, 0xbb, 0x8e, 0x35, 0x65, 0xdf, 0xfc, 0xe9, 0x7c, 0x9a, 0xdd, 0xcf, 0x13, 0x1e, 0x8b,
0x36, 0x80, 0xfb, 0x30, 0xa2, 0x1b, 0x94, 0xbb, 0x9d, 0xd4, 0x4f, 0x03, 0xde, 0xbd, 0xfc, 0xf0, 0x1b, 0xd6, 0x87, 0xfb, 0x30, 0xa2, 0x1b, 0x94, 0xbd, 0x4e, 0xea, 0xa7, 0x01, 0xf7, 0x2e, 0xdf,
0x9e, 0xf4, 0x79, 0x9a, 0xfa, 0xe1, 0x38, 0xe9, 0x1c, 0xc9, 0x67, 0x9d, 0xc4, 0x8b, 0xfd, 0x59, 0xbf, 0x23, 0x3d, 0x9e, 0xa6, 0x7e, 0x38, 0x4e, 0x3a, 0x47, 0xf2, 0x59, 0x27, 0x19, 0xc4, 0xfe,
0xda, 0xad, 0x3c, 0xb0, 0x98, 0xa4, 0xfe, 0x94, 0x47, 0xf3, 0xd4, 0x1a, 0xba, 0xc3, 0xc8, 0x9b, 0x2c, 0xf5, 0x2a, 0x0f, 0x2c, 0x26, 0xa9, 0x3f, 0xe5, 0xd1, 0x3c, 0xb5, 0x86, 0xee, 0x30, 0x1a,
0x4f, 0x81, 0x23, 0x2b, 0x60, 0xb3, 0x98, 0x3f, 0xb8, 0xcd, 0x26, 0xd2, 0xed, 0x49, 0xf2, 0x57, 0xcc, 0xa7, 0xc0, 0x91, 0x15, 0xb0, 0x59, 0xcc, 0x1f, 0xdc, 0x66, 0x13, 0xe9, 0x76, 0x25, 0xf9,
0x6e, 0x83, 0xd7, 0xf1, 0xe2, 0xba, 0xe7, 0x36, 0xec, 0x77, 0xc7, 0x78, 0x79, 0xe9, 0x3a, 0xf5, 0x2b, 0xb7, 0xc1, 0xeb, 0x78, 0x71, 0xdd, 0x75, 0x1b, 0xf6, 0xdb, 0x63, 0xbc, 0xbc, 0x74, 0x9d,
0xba, 0x78, 0x78, 0x39, 0xf8, 0xc7, 0x3c, 0x4a, 0x5d, 0xdb, 0xf2, 0xe6, 0x49, 0x1a, 0x4d, 0xfb, 0x7a, 0x5d, 0x3c, 0xbc, 0xec, 0xff, 0x73, 0x1e, 0xa5, 0xae, 0x6d, 0x0d, 0xe6, 0x49, 0x1a, 0x4d,
0x29, 0x8b, 0xd3, 0xc4, 0xdd, 0x73, 0xac, 0x44, 0x5c, 0xbd, 0xf7, 0xe3, 0x74, 0xe1, 0x7e, 0xf9, 0x7b, 0x29, 0x8b, 0xd3, 0xc4, 0xdd, 0x73, 0xac, 0x44, 0x5c, 0xbd, 0xf3, 0xe3, 0x74, 0xe1, 0x7e,
0x8a, 0xa0, 0xe7, 0x9f, 0x3f, 0x3f, 0xf0, 0x38, 0xf6, 0x87, 0x3c, 0x71, 0x9b, 0xed, 0xd1, 0x3c, 0xfe, 0x82, 0xa0, 0xe7, 0x9f, 0x3e, 0x3d, 0xf0, 0x38, 0xf6, 0x87, 0x3c, 0x71, 0x9b, 0xed, 0xd1,
0xf4, 0x52, 0x3f, 0x0a, 0xc9, 0xcf, 0x86, 0xf9, 0xfc, 0xe8, 0x87, 0xc3, 0xe8, 0xb1, 0x1a, 0xcd, 0x3c, 0x1c, 0xa4, 0x7e, 0x14, 0x92, 0x9f, 0x0c, 0xf3, 0xe9, 0xd1, 0x0f, 0x87, 0xd1, 0x63, 0x35,
0x78, 0x68, 0xd0, 0x49, 0x9a, 0xce, 0x92, 0xd6, 0xd1, 0xd1, 0x7d, 0x18, 0x55, 0x1f, 0x03, 0x3e, 0x9a, 0xf1, 0xd0, 0xa0, 0x93, 0x34, 0x9d, 0x25, 0xad, 0xa3, 0xa3, 0xfb, 0x30, 0xaa, 0x3e, 0x06,
0xac, 0x8e, 0xf9, 0xd1, 0x88, 0xb3, 0x74, 0x1e, 0xf3, 0xe4, 0x28, 0x51, 0x33, 0x3a, 0xfa, 0x0e, 0x7c, 0x58, 0x1d, 0xf3, 0xa3, 0x11, 0x67, 0xe9, 0x3c, 0xe6, 0xc9, 0x51, 0xa2, 0x66, 0x74, 0xf4,
0xde, 0x1c, 0xea, 0x3b, 0x6a, 0x2e, 0x33, 0x7c, 0xbd, 0x75, 0x7c, 0xd9, 0x18, 0x6a, 0xd1, 0x3f, 0x1d, 0xbc, 0x39, 0xd4, 0x77, 0xd4, 0x5c, 0x66, 0xf8, 0xba, 0xeb, 0xf8, 0xb2, 0x31, 0xd4, 0xa2,
0x12, 0x1e, 0x8c, 0x8a, 0xd0, 0xe3, 0x8b, 0xa1, 0xc1, 0xcd, 0xe7, 0x98, 0x03, 0xfa, 0x90, 0x20, 0x7f, 0x24, 0x3c, 0x18, 0x15, 0xa1, 0xc7, 0x17, 0x43, 0x83, 0x9b, 0x4f, 0x31, 0x07, 0xf4, 0x21,
0xad, 0xf4, 0x43, 0xc0, 0x51, 0x18, 0xbd, 0x85, 0x78, 0x95, 0x83, 0x46, 0xa3, 0x11, 0x82, 0x16, 0x41, 0x5a, 0xe9, 0xfb, 0x80, 0xa3, 0x30, 0xba, 0x0b, 0xf1, 0x2a, 0x07, 0x8d, 0x46, 0x23, 0x04,
0x61, 0x92, 0xde, 0xe2, 0x17, 0x90, 0x3e, 0x3c, 0xfe, 0x62, 0x7f, 0xad, 0x3e, 0xb0, 0x60, 0xce, 0x2d, 0xc2, 0x24, 0xdd, 0xc5, 0xcf, 0x20, 0x7d, 0x78, 0xfc, 0xd9, 0xfe, 0x52, 0x7d, 0x60, 0xc1,
0xdd, 0x43, 0x27, 0x1f, 0x92, 0x4c, 0xa2, 0xc7, 0xdb, 0x88, 0x25, 0xa9, 0xc1, 0xad, 0x10, 0xa4, 0x9c, 0xbb, 0x87, 0x4e, 0x3e, 0x24, 0x99, 0x44, 0x8f, 0xb7, 0x11, 0x4b, 0x52, 0x83, 0x5b, 0x21,
0x62, 0x3e, 0x0b, 0xc1, 0xbb, 0x48, 0x95, 0xa6, 0xf8, 0x82, 0x9a, 0xed, 0xb4, 0xea, 0x87, 0x21, 0x48, 0xc5, 0x7c, 0x12, 0x82, 0x77, 0x91, 0x2a, 0x4d, 0xf1, 0x05, 0x35, 0xdb, 0x69, 0xd5, 0x0f,
0x8f, 0x7f, 0xbe, 0xbd, 0xba, 0x74, 0xb9, 0x95, 0x56, 0xbd, 0x80, 0x25, 0x09, 0xa2, 0x75, 0xc3, 0x43, 0x1e, 0xff, 0x74, 0x7b, 0x75, 0xe9, 0x72, 0x2b, 0xad, 0x0e, 0x02, 0x96, 0x24, 0x88, 0xd6,
0x53, 0x0a, 0x02, 0x8b, 0x62, 0xda, 0xa2, 0x88, 0x89, 0x5a, 0x5e, 0xc0, 0x59, 0x7c, 0x2b, 0xd7, 0x0d, 0x4f, 0x29, 0x08, 0x2c, 0x8a, 0x69, 0x8b, 0x22, 0x26, 0x6a, 0x0d, 0x02, 0xce, 0xe2, 0x5b,
0xcd, 0x50, 0xeb, 0x67, 0xc2, 0x90, 0x24, 0x5d, 0x04, 0xbc, 0xca, 0x42, 0x7f, 0xca, 0x90, 0xae, 0xb9, 0x6e, 0x86, 0x5a, 0x3f, 0x13, 0x86, 0x24, 0xe9, 0x22, 0xe0, 0x55, 0x16, 0xfa, 0x53, 0x86,
0x4b, 0xc3, 0x28, 0xe4, 0xd4, 0x52, 0x10, 0x2e, 0x08, 0x40, 0x0f, 0x32, 0x34, 0x6f, 0x20, 0xa5, 0x74, 0x5d, 0x1a, 0x46, 0x21, 0xa7, 0x96, 0x82, 0x70, 0x41, 0x00, 0x7a, 0x90, 0xa1, 0x79, 0x03,
0x22, 0xa9, 0xc2, 0x75, 0x35, 0xe6, 0xb3, 0x80, 0x79, 0xdc, 0x50, 0x44, 0x29, 0xc8, 0xcb, 0xb4, 0x29, 0x15, 0x49, 0x15, 0xae, 0xab, 0x31, 0x9f, 0x05, 0x6c, 0xc0, 0x0d, 0x45, 0x94, 0x82, 0xbc,
0x6a, 0xef, 0x6c, 0xbb, 0x20, 0x8c, 0xc1, 0xa5, 0x3f, 0xf5, 0xd3, 0x04, 0xe7, 0x65, 0xa5, 0x16, 0x4c, 0xab, 0xf6, 0xd6, 0xb6, 0x0b, 0xc2, 0xe8, 0x5f, 0xfa, 0x53, 0x3f, 0x4d, 0x70, 0x5e, 0x56,
0x33, 0x9f, 0x85, 0xc2, 0x70, 0xa9, 0x30, 0xa9, 0x52, 0x97, 0x50, 0xea, 0x0a, 0xcb, 0x87, 0xcd, 0x6a, 0x31, 0xf3, 0x49, 0x28, 0x0c, 0x97, 0x0a, 0x93, 0x2a, 0x75, 0x09, 0xa5, 0xae, 0xb0, 0x7c,
0xfc, 0x30, 0xf9, 0xfc, 0x57, 0x43, 0xca, 0x81, 0xbb, 0x6b, 0xb2, 0xbc, 0x65, 0x63, 0x21, 0x4e, 0xd8, 0xcc, 0x0f, 0x93, 0x4f, 0x7f, 0x33, 0xa4, 0x1c, 0xb8, 0xbb, 0x26, 0xcb, 0x5b, 0x36, 0x16,
0xea, 0x87, 0xb3, 0x39, 0x8a, 0x66, 0x14, 0xc5, 0x86, 0xef, 0xda, 0x6d, 0xbf, 0xc3, 0xab, 0x01, 0xe2, 0xa4, 0x7e, 0x38, 0x9b, 0xa3, 0x68, 0x46, 0x51, 0x6c, 0xf8, 0xae, 0xdd, 0xf6, 0x3b, 0xbc,
0x0f, 0xc7, 0xe9, 0xa4, 0xed, 0x1f, 0x1c, 0xc8, 0xd1, 0xa1, 0xcb, 0xbf, 0xf8, 0x5f, 0xab, 0xa8, 0x1a, 0xf0, 0x70, 0x9c, 0x4e, 0xda, 0xfe, 0xc1, 0x81, 0x1c, 0x1d, 0xba, 0xfc, 0xb3, 0xff, 0xa5,
0xfd, 0xd5, 0x64, 0x3e, 0x48, 0xd2, 0x18, 0xd6, 0xd8, 0xb0, 0xad, 0x9a, 0xd9, 0xf6, 0x47, 0x06, 0x8a, 0xda, 0x5f, 0x4d, 0xe6, 0xfd, 0x24, 0x8d, 0x61, 0x8d, 0x0d, 0xdb, 0xaa, 0x99, 0x6d, 0x7f,
0xbd, 0xb4, 0xa9, 0xeb, 0x86, 0x2f, 0x2f, 0xf4, 0xd2, 0xd1, 0x17, 0x35, 0x7d, 0x51, 0xc7, 0x0b, 0x64, 0xd0, 0x4b, 0x9b, 0xba, 0x6e, 0xf8, 0xfc, 0x4c, 0x2f, 0x1d, 0x7d, 0x51, 0xd3, 0x17, 0x75,
0xbd, 0x16, 0x65, 0x58, 0x24, 0x8e, 0x19, 0x1a, 0xfa, 0x45, 0x98, 0x1a, 0x65, 0x4b, 0x4e, 0x2f, 0xbc, 0xd0, 0x6b, 0x51, 0x86, 0x45, 0xe2, 0x98, 0xa1, 0xa1, 0x5f, 0x84, 0xa9, 0x51, 0xb6, 0xe4,
0x6f, 0xe9, 0x41, 0x9a, 0xaf, 0xbb, 0xe5, 0xd8, 0x66, 0xd7, 0x3d, 0xb1, 0x4d, 0xb4, 0x6e, 0x3f, 0xf4, 0xf2, 0x96, 0x1e, 0xa4, 0xf9, 0xba, 0x5b, 0x8e, 0x6d, 0x7a, 0xee, 0x89, 0x6d, 0xa2, 0x75,
0x9c, 0xf3, 0x25, 0x60, 0x78, 0x03, 0x1b, 0x78, 0xd1, 0x50, 0x17, 0x37, 0x97, 0xea, 0xa2, 0x77, 0xfb, 0xe1, 0x9c, 0x2f, 0x01, 0xc3, 0x2b, 0xd8, 0xc0, 0x8b, 0x86, 0xba, 0xb8, 0xb9, 0x54, 0x17,
0xab, 0x2e, 0x2e, 0x6e, 0x04, 0xab, 0xfb, 0xfb, 0x94, 0xee, 0x49, 0x4e, 0x05, 0x31, 0xb8, 0x3f, 0xdd, 0x5b, 0x75, 0x71, 0x71, 0x23, 0x58, 0xdd, 0xdf, 0xa7, 0x74, 0x4f, 0x72, 0x2a, 0x88, 0xc1,
0x74, 0x56, 0x9e, 0x98, 0xcf, 0x40, 0x6e, 0x58, 0x9d, 0x4f, 0xff, 0x98, 0xed, 0xef, 0xcb, 0xdf, 0xfd, 0xa1, 0xb3, 0xf2, 0xc4, 0x7c, 0x02, 0x72, 0xc3, 0xea, 0x7c, 0xfa, 0xc7, 0x6c, 0x7f, 0x5f,
0xd5, 0x24, 0x02, 0x3e, 0x43, 0xb7, 0x1b, 0xba, 0x6e, 0x36, 0x95, 0x7c, 0x04, 0x32, 0x6c, 0x9a, 0xfe, 0xad, 0x26, 0x11, 0xf0, 0x19, 0xba, 0x5e, 0xe8, 0xba, 0xd9, 0x54, 0xf2, 0x11, 0xc8, 0xb0,
0x4a, 0xf1, 0xc1, 0xb9, 0xc4, 0xa9, 0x71, 0xd7, 0x8f, 0xe2, 0x78, 0x61, 0x89, 0x55, 0x22, 0xdf, 0x69, 0x2a, 0xc5, 0x07, 0xe7, 0x12, 0xa7, 0xc6, 0x5d, 0x2f, 0x8a, 0xe3, 0x85, 0x25, 0x56, 0x89,
0x3f, 0xff, 0x7b, 0xff, 0xf3, 0x2f, 0x55, 0x29, 0x11, 0x7f, 0xb4, 0x50, 0xd8, 0xcd, 0x25, 0xf1, 0xbc, 0x79, 0xfa, 0x8f, 0xde, 0xa7, 0x9f, 0xab, 0x52, 0x22, 0xfe, 0x68, 0xa1, 0xb0, 0x9b, 0x4b,
0x58, 0xf8, 0x63, 0x4a, 0x06, 0x9c, 0x80, 0x33, 0x1a, 0x56, 0xef, 0x4c, 0x2b, 0x47, 0xea, 0x52, 0x32, 0x60, 0xe1, 0x0f, 0x29, 0xe9, 0x73, 0x02, 0xce, 0x68, 0x58, 0xbd, 0x33, 0xad, 0x1c, 0xa9,
0x2a, 0xef, 0x46, 0xe0, 0x52, 0x12, 0xc3, 0xb4, 0xf6, 0x1c, 0x94, 0x64, 0x0e, 0xd0, 0x6d, 0xee, 0x4b, 0xa9, 0xbc, 0x1b, 0x81, 0x4b, 0x49, 0x0c, 0xd3, 0xda, 0x73, 0x50, 0x92, 0x39, 0x80, 0xd7,
0xef, 0xe7, 0x77, 0x1d, 0xa7, 0xb6, 0xca, 0x01, 0x2d, 0x72, 0x70, 0x7c, 0xe8, 0x38, 0x48, 0x8c, 0xdc, 0xdf, 0xcf, 0xef, 0x3a, 0x4e, 0x6d, 0x95, 0x03, 0x5a, 0xe4, 0xe0, 0xf8, 0xd0, 0x71, 0x90,
0x84, 0x51, 0x4e, 0x8e, 0xbe, 0x81, 0x1c, 0x8a, 0x6d, 0xcf, 0x0d, 0x41, 0x4a, 0x20, 0x48, 0x71, 0x18, 0x09, 0xa3, 0x9c, 0x1c, 0x7d, 0x05, 0x39, 0x14, 0xdb, 0x9e, 0x1b, 0x82, 0x94, 0x40, 0x90,
0x51, 0x60, 0xa0, 0x5e, 0xdf, 0x41, 0x12, 0xde, 0x12, 0x16, 0x73, 0x22, 0x14, 0x90, 0x44, 0x61, 0xe2, 0xa2, 0xc0, 0x40, 0xbd, 0xbe, 0x83, 0x24, 0xbc, 0x25, 0x2c, 0xe6, 0x44, 0x28, 0x20, 0x89,
0xb0, 0x78, 0x9d, 0x20, 0x2a, 0xe9, 0x37, 0xd7, 0x3f, 0x70, 0xda, 0xdf, 0x72, 0x35, 0xfd, 0xa6, 0xc2, 0x60, 0xf1, 0x32, 0x41, 0x54, 0xd2, 0xaf, 0xae, 0x7f, 0xe0, 0xb4, 0xbf, 0xe6, 0x6a, 0xfa,
0xd5, 0x94, 0xc1, 0x22, 0x7d, 0x7b, 0x45, 0x4d, 0x99, 0xd6, 0x0f, 0xa6, 0xf5, 0x83, 0x69, 0xfd, 0x55, 0xab, 0x29, 0x83, 0x45, 0xfa, 0xfa, 0x82, 0x9a, 0x32, 0xad, 0x1f, 0x4c, 0xeb, 0x07, 0xd3,
0x60, 0x5a, 0x3f, 0x98, 0xd6, 0x0f, 0xa6, 0xf5, 0x83, 0x69, 0xfd, 0x60, 0x62, 0xf1, 0x29, 0xbe, 0xfa, 0xc1, 0xb4, 0x7e, 0x30, 0xad, 0x1f, 0x4c, 0xeb, 0x07, 0xd3, 0xfa, 0xc1, 0xc4, 0xe2, 0x53,
0x74, 0xd9, 0x0a, 0x11, 0xc7, 0x94, 0x4c, 0x24, 0xa5, 0x4c, 0xbc, 0x55, 0xcb, 0x93, 0x57, 0xb4, 0x7c, 0xe9, 0xb2, 0x15, 0x22, 0x8e, 0x29, 0x99, 0x48, 0x4a, 0x99, 0x78, 0xad, 0x96, 0x27, 0x2f,
0x5c, 0xea, 0xe6, 0xb7, 0x4c, 0x37, 0x0b, 0xe2, 0x2a, 0x3c, 0x5f, 0x53, 0xb5, 0x6b, 0x3f, 0xc4, 0x68, 0xb9, 0xd4, 0xcd, 0xaf, 0x99, 0x6e, 0x16, 0xc4, 0x55, 0x78, 0xbe, 0xa6, 0x6a, 0xd7, 0x7e,
0x18, 0x39, 0x0a, 0x7c, 0x0f, 0x17, 0x37, 0x7d, 0xe4, 0x3c, 0x04, 0x9d, 0xcb, 0xac, 0x71, 0x79, 0x88, 0x31, 0x72, 0x14, 0xf8, 0x03, 0x5c, 0xdc, 0xf4, 0x91, 0xf3, 0x10, 0x74, 0x2e, 0xb3, 0xc6,
0x84, 0x37, 0x8a, 0xe9, 0xe5, 0x9e, 0xd0, 0xb2, 0x6f, 0x2b, 0xab, 0xf0, 0xad, 0xb8, 0x0a, 0x4b, 0xe5, 0x11, 0xde, 0x28, 0xa6, 0x97, 0x7b, 0x42, 0xcb, 0xbe, 0xae, 0xac, 0xc2, 0xd7, 0xe2, 0x2a,
0xf8, 0x27, 0x09, 0xec, 0xd9, 0xb9, 0xbb, 0x49, 0xe3, 0x45, 0x7f, 0x3e, 0x00, 0x47, 0x65, 0x68, 0x2c, 0xe1, 0x3f, 0x49, 0x60, 0xcf, 0xce, 0xdd, 0x4d, 0x1a, 0x2f, 0x7a, 0xf3, 0x3e, 0x38, 0x2a,
0x03, 0xe9, 0x8f, 0xaa, 0x43, 0x96, 0xb2, 0x02, 0x9e, 0x2a, 0x86, 0x3c, 0x98, 0xf2, 0x7b, 0x3e, 0x43, 0x1b, 0x48, 0x6f, 0x54, 0x1d, 0xb2, 0x94, 0x15, 0xf0, 0x54, 0x31, 0xe4, 0xc1, 0x94, 0xdf,
0x62, 0xf3, 0x20, 0x45, 0x6c, 0xda, 0x4b, 0x69, 0x96, 0x41, 0x68, 0x69, 0x34, 0xbb, 0x8e, 0xa3, 0xf1, 0x11, 0x9b, 0x07, 0x29, 0x62, 0xd3, 0x5e, 0x4a, 0xb3, 0x0c, 0x42, 0x4b, 0xa3, 0xd9, 0x75,
0x19, 0x1b, 0x33, 0xe9, 0x3c, 0x95, 0xa6, 0x89, 0xe8, 0xd7, 0x75, 0xc0, 0x35, 0x2a, 0x9f, 0x44, 0x1c, 0xcd, 0xd8, 0x98, 0x49, 0xe7, 0xa9, 0x34, 0x4d, 0x44, 0x3f, 0xcf, 0x01, 0xd7, 0xa8, 0x7c,
0x6f, 0xa3, 0x88, 0x4c, 0x59, 0xb8, 0x20, 0x10, 0x7f, 0x13, 0x02, 0xba, 0x41, 0xa6, 0x9c, 0xa4, 0x12, 0xbd, 0x8d, 0x22, 0x32, 0x65, 0xe1, 0x82, 0x40, 0xfc, 0x4d, 0x08, 0xe8, 0x06, 0x99, 0x72,
0x11, 0x99, 0xb0, 0x70, 0x18, 0xf0, 0x3d, 0xda, 0x46, 0x0f, 0xd9, 0x71, 0x78, 0x63, 0x7f, 0xdf, 0x92, 0x46, 0x64, 0xc2, 0xc2, 0x61, 0xc0, 0xf7, 0x68, 0x1b, 0x3d, 0x64, 0xc7, 0xe1, 0x8d, 0xfd,
0x08, 0x0f, 0x5c, 0xfa, 0xf7, 0xf0, 0xef, 0xf1, 0x79, 0x14, 0x26, 0x10, 0x16, 0x63, 0xd0, 0x70, 0x7d, 0x23, 0x3c, 0x70, 0xe9, 0xef, 0xe1, 0xef, 0xf1, 0x79, 0x14, 0x26, 0x10, 0x16, 0x63, 0xd0,
0x58, 0x17, 0x02, 0x1a, 0xff, 0xa1, 0x7f, 0x5d, 0xaf, 0xa1, 0xea, 0x49, 0x69, 0x85, 0xe6, 0x52, 0x70, 0x58, 0x17, 0x02, 0x1a, 0xff, 0xbe, 0x77, 0x5d, 0xaf, 0xa1, 0xea, 0x49, 0x69, 0x85, 0xe6,
0xb0, 0xee, 0x4d, 0xb8, 0x77, 0xff, 0x1b, 0x0b, 0xfc, 0xa1, 0x9f, 0x2e, 0x0c, 0x13, 0x2d, 0x1d, 0x52, 0xb0, 0x3e, 0x98, 0xf0, 0xc1, 0xfd, 0xaf, 0x2c, 0xf0, 0x87, 0x7e, 0xba, 0x30, 0x4c, 0xb4,
0x9e, 0x26, 0x72, 0x8a, 0x05, 0xef, 0xcc, 0xc3, 0xb3, 0xde, 0x65, 0xe6, 0x65, 0x45, 0xb4, 0xc1, 0x74, 0x78, 0x9a, 0xc8, 0x29, 0x16, 0xbc, 0x33, 0x0f, 0xcf, 0xba, 0x97, 0x99, 0x97, 0x15, 0xd1,
0x7c, 0x81, 0x9a, 0x12, 0x03, 0x1f, 0xb6, 0xc5, 0xc0, 0xcb, 0x33, 0x25, 0x07, 0x7e, 0x2a, 0x23, 0x06, 0xf3, 0x05, 0x6a, 0x4a, 0x0c, 0x7c, 0xd8, 0x16, 0x03, 0x2f, 0xcf, 0x94, 0x1c, 0xf8, 0xa9,
0x7f, 0xcb, 0xb6, 0x34, 0x30, 0xc0, 0xca, 0xa8, 0x32, 0xf4, 0x13, 0x08, 0x07, 0x0b, 0x80, 0x01, 0x8c, 0xfc, 0x2d, 0xdb, 0xd2, 0xc0, 0x00, 0x2b, 0xa3, 0xca, 0xd0, 0x4f, 0x20, 0x1c, 0x2c, 0x00,
0xb7, 0x1c, 0xf8, 0x10, 0x57, 0x5a, 0x2a, 0xbc, 0x08, 0xd0, 0x59, 0x32, 0xaf, 0xbd, 0x01, 0x76, 0x06, 0xdc, 0x72, 0xe0, 0x43, 0x5c, 0x69, 0xa9, 0xf0, 0x22, 0x40, 0x67, 0xc9, 0xbc, 0xf6, 0x0a,
0x85, 0x5e, 0xd7, 0xde, 0xdf, 0x87, 0x98, 0x24, 0x78, 0x2c, 0x32, 0x7d, 0x79, 0x56, 0x88, 0x0c, 0xd8, 0x15, 0x7a, 0x9e, 0xbd, 0xbf, 0x0f, 0x31, 0x49, 0xf0, 0x58, 0x64, 0xfa, 0xf2, 0xac, 0x10,
0x02, 0x1e, 0xc2, 0xb5, 0x1c, 0xb2, 0xce, 0xb0, 0x24, 0x7e, 0x79, 0x06, 0x14, 0x37, 0xa8, 0x37, 0x19, 0x04, 0x3c, 0x84, 0x6b, 0x39, 0x64, 0x9d, 0x61, 0x49, 0xfc, 0xf2, 0x0c, 0x28, 0x6e, 0x50,
0x6d, 0xb7, 0x84, 0x83, 0x5f, 0x2f, 0x8a, 0xc4, 0x34, 0xf9, 0xe7, 0xe4, 0xd1, 0x4f, 0xbd, 0x89, 0x6f, 0xda, 0x6e, 0x09, 0x07, 0xbf, 0x5c, 0x14, 0x89, 0x69, 0xf2, 0x4f, 0xc9, 0xa3, 0x9f, 0x0e,
0x51, 0x22, 0x23, 0x77, 0xcf, 0xb6, 0xd6, 0xd9, 0x00, 0xdc, 0x56, 0xc1, 0x60, 0x0a, 0x2c, 0x81, 0x26, 0x46, 0x89, 0x8c, 0xdc, 0x3d, 0xdb, 0x5a, 0x67, 0x03, 0x70, 0x5b, 0x05, 0x83, 0x29, 0xb0,
0xa5, 0x79, 0x2c, 0xe1, 0xc4, 0x6e, 0x95, 0xa2, 0x72, 0x2c, 0xb5, 0x26, 0xed, 0x41, 0xcc, 0xd9, 0x04, 0x96, 0x36, 0x60, 0x09, 0x27, 0x76, 0xab, 0x14, 0x95, 0x63, 0xa9, 0x35, 0x69, 0xf7, 0x63,
0x7d, 0x5b, 0xc0, 0xd6, 0xed, 0xd6, 0x06, 0x81, 0xba, 0xbd, 0x02, 0xd1, 0x2c, 0x81, 0x68, 0x16, 0xce, 0xee, 0xdb, 0x02, 0xb6, 0x6e, 0xb7, 0x36, 0x08, 0xd4, 0xed, 0x15, 0x88, 0x66, 0x09, 0x44,
0x21, 0x9a, 0x25, 0x10, 0xcd, 0x15, 0x88, 0x5a, 0x19, 0x48, 0x2d, 0x83, 0x19, 0x4a, 0xbd, 0x6f, 0xb3, 0x08, 0xd1, 0x2c, 0x81, 0x68, 0xae, 0x40, 0xd4, 0xca, 0x40, 0x6a, 0x19, 0xcc, 0x50, 0xea,
0xed, 0x10, 0xa8, 0x16, 0xe5, 0x52, 0xc0, 0x4c, 0x1d, 0x00, 0xc8, 0x53, 0x16, 0xd4, 0x67, 0xab, 0x7d, 0x6b, 0x87, 0x40, 0xb5, 0x28, 0x97, 0x02, 0x66, 0xea, 0x00, 0x40, 0x9e, 0xb2, 0xa0, 0x3e,
0xd4, 0x77, 0xf4, 0x21, 0xd3, 0x42, 0xcf, 0xc1, 0x86, 0xc3, 0x0f, 0x68, 0x61, 0x97, 0x7e, 0x02, 0x5b, 0xa5, 0xbe, 0xa3, 0x07, 0x99, 0x16, 0x7a, 0x0e, 0x36, 0x1c, 0xbe, 0x47, 0x0b, 0xbb, 0xf4,
0x79, 0x2f, 0x8f, 0x21, 0xb1, 0x10, 0x1a, 0x0b, 0x09, 0x8a, 0xb6, 0x4f, 0x73, 0x6d, 0x79, 0x00, 0x13, 0xc8, 0x7b, 0x79, 0x0c, 0x89, 0x85, 0xd0, 0x58, 0x48, 0x50, 0xb4, 0x7d, 0x9a, 0x6b, 0xcb,
0xdb, 0x15, 0x9f, 0xca, 0xec, 0x22, 0xcb, 0xce, 0x78, 0xa7, 0x5e, 0x3b, 0xcd, 0xcd, 0xa7, 0xee, 0x03, 0xd8, 0xae, 0xf8, 0x54, 0x66, 0x17, 0x59, 0x76, 0xc6, 0x3b, 0xf5, 0xda, 0x69, 0x6e, 0x3e,
0xba, 0xe9, 0x29, 0xef, 0xd6, 0xde, 0x9d, 0xd6, 0xec, 0xbf, 0x84, 0x2d, 0xa7, 0x09, 0x3f, 0xf0, 0x75, 0xd7, 0x4d, 0x4f, 0xb9, 0x57, 0x7b, 0x7b, 0x5a, 0xb3, 0xff, 0x12, 0xb6, 0x9c, 0x26, 0xfc,
0x6d, 0xd7, 0x85, 0xd7, 0xf2, 0xc5, 0x09, 0x3c, 0x3a, 0x86, 0xff, 0xe2, 0xa6, 0x01, 0x17, 0x75, 0x83, 0x6f, 0x3d, 0x17, 0x5e, 0xcb, 0x17, 0x27, 0xf0, 0xe8, 0x18, 0xfe, 0x17, 0x37, 0x0d, 0xb8,
0x71, 0x53, 0x77, 0xc0, 0x49, 0x75, 0x1a, 0x27, 0xa7, 0xcd, 0x56, 0xa3, 0x01, 0xba, 0xf2, 0xf2, 0xa8, 0x8b, 0x9b, 0xba, 0x03, 0x4e, 0xaa, 0xd3, 0x38, 0x39, 0x6d, 0xb6, 0x1a, 0x0d, 0xd0, 0x95,
0xd2, 0x68, 0xa2, 0xca, 0x28, 0x88, 0x9c, 0x0d, 0x60, 0x8a, 0x67, 0x69, 0x1b, 0x26, 0x70, 0x16, 0xe7, 0xe7, 0x46, 0x13, 0x55, 0x46, 0x41, 0xe4, 0x6c, 0x00, 0x53, 0x3c, 0x4b, 0xdb, 0x30, 0x81,
0xa4, 0xba, 0x6d, 0xb9, 0xc0, 0xd3, 0xd9, 0x23, 0x8b, 0x43, 0xb0, 0xd7, 0x0d, 0x71, 0x09, 0x61, 0xb3, 0x20, 0xd5, 0x6d, 0xcb, 0x05, 0x9e, 0xce, 0x1e, 0x59, 0x1c, 0x82, 0xbd, 0x6e, 0x88, 0x4b,
0x5f, 0x69, 0x5d, 0xff, 0xa9, 0x66, 0xdb, 0x1b, 0xca, 0x08, 0xe2, 0x77, 0xdd, 0x15, 0xfd, 0x51, 0x08, 0xfb, 0x4a, 0xeb, 0xfa, 0x8f, 0x35, 0xdb, 0xde, 0x50, 0x46, 0x10, 0xbf, 0xeb, 0xae, 0xe8,
0x16, 0xe8, 0x3a, 0xb5, 0xd6, 0x86, 0xad, 0x18, 0xea, 0xdd, 0xaa, 0xc2, 0xb5, 0x65, 0x78, 0xd9, 0x8f, 0xb2, 0x40, 0xd7, 0xa9, 0xb5, 0x36, 0x6c, 0xc5, 0x50, 0xef, 0x56, 0x15, 0xae, 0x2d, 0xc3,
0x96, 0x43, 0xc1, 0x5a, 0x73, 0x6f, 0x35, 0x89, 0x62, 0xc5, 0x24, 0x4a, 0x84, 0x0c, 0x11, 0x47, 0xcb, 0xb6, 0x1c, 0x0a, 0xd6, 0x9a, 0x0f, 0x56, 0x93, 0x28, 0x56, 0x4c, 0xa2, 0x44, 0xc8, 0x10,
0xb6, 0xa4, 0x51, 0x3a, 0x74, 0xb0, 0xd2, 0x04, 0xc9, 0x0a, 0xf2, 0xa4, 0x82, 0xad, 0x24, 0x15, 0x71, 0x64, 0x4b, 0x1a, 0xa5, 0x43, 0x07, 0x2b, 0x4d, 0x90, 0xac, 0x20, 0x4f, 0x2a, 0xd8, 0x4a,
0x52, 0x3e, 0x33, 0x7b, 0x88, 0x91, 0xa3, 0xa0, 0x28, 0x01, 0x06, 0x8e, 0xfd, 0xfd, 0xa0, 0xf3, 0x52, 0x21, 0xe5, 0x33, 0xb3, 0x87, 0x18, 0x39, 0x0a, 0x8a, 0x12, 0x60, 0xe0, 0xd8, 0xdf, 0x0f,
0xee, 0xf8, 0x94, 0x5e, 0x5c, 0x13, 0x50, 0x0b, 0xc8, 0xe8, 0x93, 0x16, 0x6d, 0x05, 0xdd, 0xc6, 0x3a, 0x6f, 0x8f, 0x4f, 0xe9, 0xc5, 0x35, 0x01, 0xb5, 0x80, 0x8c, 0x3e, 0x69, 0xd1, 0x56, 0xe0,
0xbb, 0x53, 0xfa, 0x1e, 0xfc, 0x32, 0xf9, 0x74, 0x7d, 0xf1, 0x59, 0x3e, 0x71, 0x4e, 0x29, 0xde, 0x35, 0xde, 0x9e, 0xd2, 0x77, 0xe0, 0x97, 0xc9, 0xc7, 0xeb, 0x8b, 0x4f, 0xf2, 0x89, 0x73, 0x4a,
0xe0, 0x7b, 0x2a, 0x9f, 0x2a, 0x87, 0xe3, 0x6c, 0x22, 0x6e, 0xbc, 0x43, 0xbc, 0xc7, 0x8d, 0x53, 0xf1, 0x06, 0xdf, 0x53, 0xf9, 0x54, 0x39, 0x1c, 0x67, 0x13, 0x71, 0xe3, 0x2d, 0xe2, 0x3d, 0x6e,
0x7a, 0x1e, 0xdc, 0x6b, 0x1c, 0x94, 0x0a, 0x09, 0x45, 0x6e, 0x79, 0x60, 0x73, 0x54, 0x60, 0x13, 0x9c, 0xd2, 0xf3, 0xe0, 0x5e, 0xe3, 0xa0, 0x54, 0x48, 0x28, 0x72, 0xcb, 0x03, 0x9b, 0xa3, 0x02,
0xf2, 0x49, 0x0f, 0x5c, 0xa5, 0x72, 0x41, 0xb9, 0x2e, 0x5f, 0x9e, 0xaf, 0xc6, 0xc1, 0x72, 0x20, 0x9b, 0x90, 0x4f, 0x7a, 0xe0, 0x2a, 0x95, 0x0b, 0xca, 0x75, 0xf9, 0xf2, 0x7c, 0x35, 0x0e, 0x96,
0x7b, 0x05, 0xc8, 0xb4, 0x46, 0x2e, 0xa4, 0x07, 0x1d, 0x28, 0x76, 0x30, 0x1b, 0x30, 0xb6, 0x71, 0x03, 0xd9, 0x2b, 0x40, 0xa6, 0x35, 0x72, 0x21, 0x3d, 0xe8, 0x40, 0xb1, 0x83, 0xd9, 0x80, 0xb1,
0x42, 0x0f, 0x46, 0x72, 0x98, 0x89, 0x4b, 0x9d, 0x4b, 0x69, 0x7f, 0x7f, 0xd4, 0x69, 0xbc, 0xbc, 0x8d, 0x13, 0x7a, 0x30, 0x92, 0xc3, 0x4c, 0x5c, 0xea, 0x5c, 0x4a, 0xfb, 0xfb, 0xa3, 0x4e, 0xe3,
0xc8, 0xe9, 0x39, 0xae, 0x3b, 0x12, 0xd7, 0x0e, 0xbe, 0x6c, 0x02, 0xc8, 0xe8, 0xa0, 0x61, 0x77, 0xf9, 0x59, 0x4e, 0xcf, 0x71, 0xdd, 0x91, 0xb8, 0x76, 0xf0, 0x65, 0x13, 0x40, 0x46, 0x07, 0x0d,
0x82, 0x53, 0x23, 0xda, 0x62, 0xad, 0x56, 0x04, 0x99, 0xfc, 0x3f, 0xe6, 0x7e, 0x2c, 0x5c, 0x99, 0xbb, 0x13, 0x9c, 0x1a, 0xd1, 0x16, 0x6b, 0xb5, 0x22, 0xc8, 0xe4, 0xff, 0x39, 0xf7, 0x63, 0xe1,
0xd9, 0xda, 0x04, 0x94, 0xba, 0x58, 0x04, 0x73, 0xe0, 0x4e, 0x87, 0x46, 0xd3, 0x5c, 0x42, 0x30, 0xca, 0xcc, 0xd6, 0x26, 0xa0, 0xd4, 0xc5, 0x22, 0x98, 0x03, 0x77, 0x3a, 0x34, 0x9a, 0xe6, 0x12,
0x97, 0x9e, 0x31, 0x1e, 0x09, 0x99, 0x6b, 0x77, 0x56, 0xf2, 0xec, 0xe5, 0xa5, 0x0e, 0x2c, 0x06, 0x82, 0xb9, 0xf4, 0x8c, 0xf1, 0x48, 0xc8, 0x5c, 0xbb, 0xb3, 0x92, 0x67, 0xcf, 0xcf, 0x75, 0x60,
0x56, 0x20, 0xac, 0x2b, 0x00, 0xeb, 0x82, 0xb1, 0x6f, 0x11, 0xa5, 0x0b, 0x49, 0x8a, 0x55, 0x44, 0x31, 0xb0, 0x02, 0x61, 0x5d, 0x01, 0x58, 0x17, 0x8c, 0x7d, 0x8d, 0x28, 0x5d, 0x48, 0x52, 0xac,
0x18, 0x85, 0x1e, 0x24, 0x05, 0xf7, 0xae, 0xc0, 0x77, 0x5a, 0xa8, 0x57, 0x54, 0x7c, 0x77, 0x96, 0x22, 0xc2, 0x28, 0x1c, 0x40, 0x52, 0x70, 0xef, 0x0a, 0x7c, 0xa7, 0x85, 0x7a, 0x45, 0xc5, 0x77,
0xad, 0xc2, 0xc3, 0xa5, 0x15, 0xbe, 0x80, 0xd3, 0x04, 0x50, 0xc5, 0x81, 0x10, 0x92, 0x90, 0x60, 0x67, 0xd9, 0x2a, 0x3c, 0x5c, 0x5a, 0xe1, 0x33, 0x38, 0x4d, 0x00, 0x55, 0x1c, 0x08, 0x21, 0x09,
0x03, 0x24, 0xd8, 0xa8, 0xef, 0x01, 0x53, 0x02, 0xbd, 0x17, 0x09, 0xf4, 0xab, 0x32, 0x28, 0x88, 0x09, 0x36, 0x40, 0x82, 0x8d, 0xfa, 0x1e, 0x30, 0x25, 0xd0, 0x0f, 0x22, 0x81, 0x7e, 0x55, 0x06,
0xbb, 0x30, 0xf0, 0xe4, 0x54, 0xca, 0xa6, 0x95, 0xc9, 0x52, 0x60, 0x18, 0xfa, 0x63, 0x40, 0x71, 0x05, 0x71, 0x17, 0x06, 0x9e, 0x9c, 0x4a, 0xd9, 0xb4, 0x32, 0x59, 0x0a, 0x0c, 0x43, 0x7f, 0x0c,
0x40, 0x3d, 0xba, 0x89, 0xe6, 0x6d, 0x23, 0x63, 0xba, 0x83, 0x81, 0xdd, 0x43, 0x13, 0xfa, 0x7f, 0x28, 0x0e, 0xe8, 0x80, 0x6e, 0xa2, 0x79, 0xdd, 0xc8, 0x98, 0xee, 0x60, 0x60, 0xf7, 0xd0, 0x84,
0xc2, 0xfb, 0xa8, 0x0c, 0x8d, 0x73, 0x8c, 0x43, 0xeb, 0x35, 0x44, 0xe3, 0x36, 0x6d, 0x6d, 0x4c, 0xfe, 0x9f, 0xf0, 0x3e, 0x2a, 0x43, 0xe3, 0x1c, 0xe3, 0xd0, 0x7a, 0x0d, 0xd1, 0xb8, 0x4d, 0x5b,
0x65, 0xf1, 0x1e, 0xfc, 0xd0, 0xa6, 0xf9, 0x65, 0x94, 0x2f, 0x42, 0x28, 0xf1, 0x53, 0x3e, 0x24, 0x1b, 0x53, 0x59, 0xbc, 0xd7, 0x78, 0xd8, 0x06, 0x9e, 0xb0, 0x7c, 0x00, 0x38, 0xae, 0x4d, 0x7b,
0x50, 0x6b, 0x62, 0x09, 0xd7, 0xa2, 0x37, 0x90, 0x5c, 0x81, 0x9b, 0x18, 0x12, 0x23, 0x8e, 0x52, 0xcd, 0x58, 0xbd, 0x08, 0x1f, 0x20, 0xc1, 0xe1, 0x43, 0x02, 0xc5, 0x29, 0xd6, 0x7c, 0x2d, 0x7a,
0x86, 0xaf, 0x9c, 0x13, 0xfb, 0x7f, 0xfe, 0xdb, 0xcc, 0xd2, 0x87, 0xe1, 0x4e, 0x74, 0x43, 0xfe, 0x03, 0xd9, 0x18, 0xf8, 0x95, 0x21, 0x31, 0xe2, 0x28, 0x65, 0xf8, 0xca, 0x39, 0xb1, 0xff, 0xe7,
0x84, 0xa6, 0x2c, 0xfa, 0x0a, 0x2d, 0xba, 0x44, 0x83, 0x8e, 0xc1, 0x8c, 0xfe, 0x31, 0xe7, 0x10, 0xbf, 0xcd, 0x2c, 0xdf, 0x18, 0xee, 0x44, 0x37, 0xe4, 0xdf, 0xd0, 0xf6, 0x45, 0x23, 0xa2, 0x45,
0x3a, 0x84, 0x87, 0x8b, 0xe2, 0xb3, 0x20, 0x30, 0x68, 0xf5, 0x11, 0x56, 0xc5, 0x9a, 0xbb, 0xb1, 0x97, 0xe8, 0x01, 0x62, 0xb0, 0xbb, 0x7f, 0xce, 0x39, 0xc4, 0x1a, 0xe1, 0x12, 0xa3, 0xf8, 0x2c,
0xf6, 0x71, 0xb9, 0xdb, 0x9b, 0x0b, 0x7f, 0x17, 0xa3, 0x93, 0x5a, 0x9d, 0x79, 0xb8, 0x3e, 0x45, 0x08, 0x0c, 0x5a, 0x7d, 0x84, 0x65, 0xb4, 0xe6, 0x6e, 0xac, 0x9d, 0x62, 0xee, 0x27, 0xe7, 0xc2,
0xe1, 0x30, 0x66, 0xaf, 0x95, 0xa5, 0xd6, 0xd4, 0xb5, 0xad, 0x07, 0xec, 0x79, 0x00, 0xfa, 0x9c, 0x41, 0xc6, 0xe8, 0xd5, 0x5e, 0x98, 0xa2, 0xf0, 0x30, 0xb3, 0x97, 0xea, 0x58, 0x6b, 0xea, 0xda,
0xcc, 0x6c, 0xa3, 0x44, 0x1d, 0xbb, 0xb3, 0x6d, 0x25, 0x6a, 0x52, 0xfa, 0x4a, 0x17, 0x05, 0xe7, 0xd6, 0x03, 0x36, 0x49, 0x00, 0x7d, 0x4e, 0x66, 0xb6, 0x51, 0xd3, 0x8e, 0xdd, 0xd9, 0xb6, 0x9a,
0x90, 0x51, 0x8f, 0x55, 0x56, 0x8f, 0x05, 0xc2, 0x58, 0x17, 0x08, 0x63, 0xf3, 0x15, 0x93, 0x82, 0x36, 0x29, 0x7d, 0xa5, 0xab, 0x88, 0x73, 0x48, 0xc1, 0xc7, 0xaa, 0x0c, 0xc0, 0x8a, 0x62, 0xac,
0x00, 0xe8, 0x8a, 0xe2, 0xbb, 0x5d, 0x32, 0x58, 0x57, 0x17, 0x63, 0x5d, 0x5d, 0x48, 0x1a, 0x46, 0x2b, 0x8a, 0xb1, 0xf9, 0x82, 0x0d, 0x42, 0xc4, 0x74, 0x45, 0xb5, 0xde, 0x2e, 0x19, 0xac, 0xcb,
0xc1, 0x95, 0xbf, 0xa5, 0x08, 0x30, 0x65, 0x09, 0xf0, 0x2c, 0x66, 0x80, 0x04, 0x21, 0x9a, 0x59, 0x91, 0xb1, 0x2e, 0x47, 0x24, 0x0d, 0xa3, 0xe0, 0xfb, 0x5f, 0x53, 0x35, 0x98, 0xb2, 0x66, 0x78,
0xf2, 0xc6, 0x0f, 0x41, 0x2c, 0xb3, 0x5c, 0xd2, 0x5e, 0x14, 0x44, 0xb1, 0x4b, 0xbf, 0x1b, 0x8d, 0x12, 0x33, 0x40, 0x82, 0x10, 0xfe, 0x2c, 0x79, 0xe3, 0x87, 0x20, 0x96, 0x59, 0x2e, 0xe9, 0x41,
0x46, 0xb4, 0x9d, 0xd5, 0x0c, 0xd9, 0xc0, 0x7a, 0x3d, 0x1f, 0x77, 0xe8, 0x14, 0x2a, 0xe6, 0x5d, 0x14, 0x44, 0xb1, 0x4b, 0xbf, 0x1b, 0x8d, 0x46, 0xb4, 0x9d, 0x15, 0x19, 0xd9, 0xc0, 0x7a, 0x3d,
0x3c, 0xeb, 0x8a, 0x68, 0xac, 0x2b, 0xa2, 0xb1, 0xae, 0x88, 0xc6, 0xba, 0x22, 0x1a, 0xab, 0x8a, 0x1f, 0x77, 0xe8, 0x14, 0x4a, 0xec, 0x5d, 0x3c, 0xeb, 0x12, 0x6a, 0xac, 0x4b, 0xa8, 0xb1, 0x2e,
0x79, 0xb6, 0x51, 0x31, 0xcf, 0x0a, 0x15, 0x33, 0x2e, 0xd1, 0xc8, 0xfd, 0xf2, 0xb5, 0x5d, 0x28, 0xa1, 0xc6, 0xba, 0x84, 0x1a, 0xab, 0x12, 0x7b, 0xb6, 0x51, 0x62, 0xcf, 0x0a, 0x25, 0x36, 0x2e,
0x9d, 0xcf, 0xe2, 0x98, 0x2d, 0xaa, 0x7e, 0x22, 0x7e, 0xeb, 0x92, 0xd7, 0xc4, 0x45, 0xbe, 0x87, 0xd1, 0xc8, 0xfd, 0xfc, 0xa5, 0x5d, 0xa8, 0xb5, 0xcf, 0xe2, 0x98, 0x2d, 0xaa, 0x7e, 0x22, 0xfe,
0x45, 0xbe, 0xef, 0xa8, 0xd2, 0x5a, 0xad, 0xf4, 0x3d, 0xac, 0xf4, 0xa8, 0x3a, 0x9b, 0x27, 0x13, 0xea, 0x1a, 0xd9, 0xc4, 0x45, 0xbe, 0x87, 0x45, 0xbe, 0xef, 0xa8, 0x5a, 0x5c, 0xad, 0xf4, 0x3d,
0x05, 0xfa, 0xe5, 0xfe, 0xab, 0xa9, 0x0a, 0x42, 0x1b, 0xca, 0xc1, 0x59, 0xb1, 0x1c, 0x04, 0x2a, 0xac, 0xf4, 0xa8, 0x3a, 0x9b, 0x27, 0x13, 0x05, 0xfa, 0xf9, 0xfe, 0x8b, 0xa9, 0x2a, 0x48, 0x1b,
0xfe, 0x9e, 0xfb, 0x4d, 0xd2, 0x5d, 0x00, 0x27, 0xaf, 0x95, 0x85, 0x0b, 0x2d, 0x84, 0x85, 0x16, 0xea, 0xc7, 0x59, 0xb1, 0x7e, 0x04, 0x2a, 0xfe, 0x9e, 0xfb, 0x55, 0xd2, 0x5d, 0x00, 0x27, 0x2f,
0xc2, 0x42, 0x0b, 0x61, 0xa1, 0x85, 0xb0, 0xd0, 0x42, 0x58, 0x68, 0x21, 0x2c, 0xb4, 0x10, 0x16, 0xd5, 0x91, 0x0b, 0x2d, 0x84, 0x85, 0x16, 0xc2, 0x42, 0x0b, 0x61, 0xa1, 0x85, 0xb0, 0xd0, 0x42,
0x85, 0xb2, 0x70, 0x51, 0x5a, 0x16, 0x5e, 0x96, 0x32, 0xf1, 0xd6, 0xb2, 0xf0, 0x72, 0x57, 0x59, 0x58, 0x68, 0x21, 0x2c, 0xb4, 0x10, 0x16, 0x85, 0x3a, 0x72, 0x51, 0x5a, 0x47, 0x5e, 0x96, 0x32,
0x28, 0xa5, 0xff, 0x6d, 0x43, 0xfa, 0xf9, 0x13, 0x25, 0xb7, 0x8c, 0x4e, 0xfe, 0x4e, 0x74, 0x26, 0xf1, 0xda, 0x3a, 0xf2, 0x72, 0x57, 0x1d, 0x29, 0xa5, 0xff, 0x75, 0x43, 0xfa, 0xf9, 0x13, 0x25,
0x96, 0xcb, 0x91, 0x6c, 0x60, 0x70, 0xb7, 0xcb, 0x0b, 0x0d, 0x8c, 0xd9, 0x6a, 0x03, 0xe3, 0x74, 0xb7, 0x8c, 0x4e, 0xfe, 0x4e, 0xb4, 0x32, 0x96, 0xcb, 0x91, 0xec, 0x78, 0x70, 0xd7, 0xe3, 0x85,
0x53, 0xd9, 0x20, 0x90, 0xd1, 0xd6, 0xc6, 0xe3, 0x2d, 0x08, 0xa0, 0xe0, 0x3f, 0xa5, 0x51, 0xcc, 0x8e, 0xc7, 0x6c, 0xb5, 0xe3, 0x71, 0xba, 0xa9, 0x6c, 0x10, 0xf9, 0x68, 0x6b, 0xe3, 0xf1, 0x16,
0xc2, 0x31, 0x3a, 0x01, 0xa1, 0xa7, 0xcb, 0x25, 0x0f, 0x12, 0x2e, 0x04, 0x74, 0xb1, 0x6d, 0x58, 0x04, 0x5e, 0xbd, 0x7e, 0x4a, 0xa3, 0x98, 0x85, 0x63, 0x74, 0x02, 0x42, 0x4f, 0x97, 0x4b, 0x1e,
0xbb, 0xd8, 0xee, 0x84, 0x62, 0x26, 0x6f, 0x76, 0x7e, 0x49, 0xbe, 0xbe, 0xbc, 0xc8, 0xa0, 0x19, 0x24, 0x5c, 0x08, 0xe8, 0x62, 0xdb, 0xb0, 0x76, 0xb1, 0x3f, 0x0a, 0xd5, 0x4f, 0xde, 0x1d, 0xfd,
0x24, 0xc2, 0xb5, 0xc9, 0x28, 0x37, 0x55, 0x41, 0x4e, 0x3d, 0x04, 0x17, 0x84, 0x25, 0x02, 0x84, 0x9c, 0x7c, 0x79, 0x7e, 0x96, 0x51, 0x36, 0x48, 0x84, 0x6b, 0x93, 0x61, 0x71, 0xaa, 0xa2, 0xa2,
0xdc, 0x22, 0x26, 0xeb, 0x02, 0x82, 0xa6, 0xc1, 0x72, 0xaa, 0x1b, 0x78, 0x4c, 0xf3, 0xe0, 0xa2, 0x7a, 0x08, 0x2e, 0x08, 0x6b, 0x0a, 0x88, 0xd1, 0x45, 0x4c, 0xd6, 0x05, 0x44, 0x59, 0x83, 0xe5,
0x3b, 0x05, 0xa8, 0xa9, 0xcb, 0x0e, 0x2e, 0x4c, 0xeb, 0xa2, 0xeb, 0xc1, 0x8d, 0xe7, 0xc2, 0xe5, 0x54, 0x37, 0xf0, 0x98, 0xe6, 0xc1, 0x85, 0x37, 0x05, 0xa8, 0xa9, 0xcb, 0x0e, 0x2e, 0x4c, 0xeb,
0x9f, 0x37, 0xe3, 0x0e, 0x86, 0x0f, 0xe3, 0xe1, 0x00, 0x46, 0x83, 0xbc, 0x25, 0x2d, 0x8c, 0x6d, 0xc2, 0x1b, 0xc0, 0xcd, 0xc0, 0x85, 0xcb, 0x3f, 0x6f, 0xc6, 0x1d, 0x8c, 0x37, 0xc6, 0xc3, 0x01,
0x29, 0x7f, 0x4a, 0xcf, 0x55, 0x93, 0x7a, 0xaa, 0xfc, 0xf4, 0xc6, 0x73, 0xd7, 0x7d, 0x38, 0xa5, 0x8c, 0x06, 0x79, 0x4b, 0x5a, 0x18, 0x0c, 0x53, 0xfe, 0x2d, 0x3d, 0x57, 0x5d, 0xed, 0xa9, 0xf2,
0x20, 0x33, 0x83, 0x1e, 0x3c, 0x1c, 0x50, 0x32, 0x9b, 0x2c, 0x12, 0xdf, 0x63, 0x81, 0x76, 0xec, 0xd3, 0x1b, 0xcf, 0x5d, 0xf7, 0xe1, 0x94, 0x82, 0xcc, 0x0c, 0x7a, 0xf0, 0x70, 0x40, 0xc9, 0x6c,
0x53, 0x7b, 0xa5, 0x4a, 0x48, 0x2d, 0xd9, 0x28, 0x4e, 0x8f, 0x30, 0x45, 0xff, 0x0b, 0x54, 0xcc, 0xb2, 0x48, 0xfc, 0x01, 0x0b, 0xb4, 0x63, 0x9f, 0xda, 0x2b, 0x65, 0x45, 0x6a, 0xc9, 0xce, 0x72,
0x2a, 0x2c, 0x0d, 0x58, 0x1e, 0x13, 0x07, 0xcc, 0xbb, 0x1f, 0xc7, 0xd1, 0x3c, 0x1c, 0xba, 0x77, 0x7a, 0x84, 0x39, 0xfd, 0x5f, 0xa0, 0xc4, 0x56, 0xf1, 0xa7, 0xcf, 0xf2, 0x20, 0xda, 0x67, 0x83,
0xe8, 0x96, 0x59, 0x7c, 0x38, 0x8e, 0xd9, 0xd0, 0x07, 0x7a, 0xc6, 0x3b, 0x7b, 0xc8, 0xc7, 0x16, 0xfb, 0x71, 0x1c, 0xcd, 0xc3, 0xa1, 0x7b, 0x87, 0x6e, 0x99, 0xc5, 0x87, 0xe3, 0x98, 0x0d, 0x7d,
0xf9, 0xfe, 0x59, 0x96, 0xdc, 0xc7, 0xf6, 0xa9, 0xbc, 0x78, 0x07, 0xc9, 0xb5, 0x58, 0xf1, 0xc2, 0xa0, 0x67, 0xbc, 0xb5, 0x87, 0x7c, 0x6c, 0x91, 0x37, 0x4f, 0xb2, 0x46, 0x3f, 0xb6, 0x4f, 0xe5,
0x2a, 0x7a, 0x9e, 0x47, 0x97, 0xc4, 0xd6, 0xc0, 0xcb, 0x1f, 0x2c, 0xf2, 0x5d, 0xa3, 0xd1, 0xc8, 0xc5, 0x5b, 0xc8, 0xc6, 0xc5, 0x8a, 0x17, 0x56, 0x71, 0x30, 0x18, 0xd0, 0x25, 0xb1, 0x35, 0xf0,
0xef, 0x09, 0xd0, 0xff, 0xc1, 0xbc, 0x53, 0x2b, 0xc2, 0x87, 0xdb, 0x32, 0x79, 0xaf, 0x7b, 0xc5, 0xf2, 0x7b, 0x8b, 0x7c, 0xd7, 0x68, 0x34, 0xf2, 0x7b, 0x02, 0xf4, 0xbf, 0x37, 0xef, 0xd4, 0x8a,
0xd2, 0x09, 0xba, 0x27, 0x43, 0x38, 0x55, 0xeb, 0x04, 0x2a, 0xfd, 0x97, 0x17, 0x49, 0xf9, 0xc4, 0xf0, 0xe1, 0xb6, 0xd4, 0x7f, 0xe0, 0x5d, 0xb1, 0x74, 0x82, 0xee, 0xc9, 0x10, 0x4e, 0xd5, 0x3a,
0x2e, 0x8f, 0x90, 0x25, 0xf8, 0xa4, 0x0a, 0x6a, 0x6c, 0xec, 0xa9, 0x04, 0x9b, 0x63, 0xaf, 0x4f, 0xb1, 0x6d, 0xf3, 0xf9, 0x59, 0x52, 0x3e, 0xb1, 0xcb, 0x23, 0x64, 0x09, 0x3e, 0xa9, 0x82, 0x1a,
0x44, 0x62, 0x7b, 0x84, 0x22, 0x2d, 0x89, 0xc2, 0x15, 0x61, 0xe6, 0xf4, 0x4f, 0xec, 0x1f, 0x48, 0x1b, 0xfb, 0x56, 0x82, 0xcd, 0xb1, 0xd7, 0x27, 0x22, 0xb1, 0x3d, 0x42, 0x55, 0x97, 0x44, 0xe1,
0x34, 0x22, 0x80, 0xae, 0x8a, 0x0d, 0x07, 0x32, 0xe5, 0xd3, 0x28, 0x5e, 0xd0, 0x83, 0xbc, 0x31, 0x8a, 0x30, 0x73, 0xfa, 0x27, 0xf6, 0xf7, 0x24, 0x1a, 0x11, 0x40, 0x57, 0xc5, 0x0e, 0x05, 0x99,
0x71, 0x7a, 0x47, 0x8c, 0xce, 0xa0, 0xfb, 0xe1, 0xe6, 0xe6, 0xf3, 0x4d, 0x8b, 0xfc, 0x2a, 0x1a, 0xf2, 0x69, 0x14, 0x2f, 0xe8, 0x41, 0xde, 0xc9, 0x38, 0xbd, 0x23, 0x46, 0xa7, 0xef, 0xbd, 0xbf,
0x0c, 0x11, 0x84, 0x64, 0x10, 0x06, 0xae, 0xc4, 0xb2, 0xb7, 0xd7, 0x39, 0x1a, 0x74, 0xcd, 0x3b, 0xb9, 0xf9, 0x74, 0xd3, 0x22, 0xbf, 0x88, 0x8e, 0x44, 0x04, 0x21, 0x19, 0x84, 0x81, 0x2b, 0xb1,
0x48, 0x97, 0xcd, 0x16, 0xe0, 0xb3, 0x65, 0xe3, 0x62, 0x06, 0x10, 0x2a, 0x86, 0x8b, 0xa0, 0x38, 0xec, 0xee, 0x75, 0x8e, 0xfa, 0x9e, 0x79, 0x07, 0xf9, 0xb5, 0xd9, 0x02, 0x7c, 0xb6, 0xec, 0x74,
0x71, 0x05, 0xef, 0x1e, 0xf7, 0x03, 0xc3, 0x00, 0xb4, 0x07, 0x0f, 0x7f, 0x91, 0x45, 0x89, 0x79, 0xcc, 0x00, 0x42, 0xc5, 0x70, 0x11, 0x14, 0x27, 0xae, 0xe0, 0x7d, 0xc0, 0xfd, 0xc0, 0x30, 0x00,
0xd4, 0x84, 0x59, 0x1c, 0xd5, 0xda, 0x13, 0x77, 0xd2, 0x6d, 0x9e, 0xe6, 0x50, 0x13, 0xb3, 0x35, 0xed, 0xc1, 0xc3, 0x5f, 0x64, 0x15, 0x63, 0x1e, 0x35, 0x61, 0x16, 0x47, 0xb5, 0xf6, 0xc4, 0x9d,
0x69, 0x33, 0x57, 0x65, 0xe1, 0x3d, 0x91, 0xa3, 0xad, 0x97, 0xa1, 0xd6, 0xc0, 0x2d, 0x56, 0x42, 0x78, 0xcd, 0xd3, 0x1c, 0x6a, 0x62, 0xb6, 0x26, 0x6d, 0xe6, 0xaa, 0xb4, 0xbd, 0x2f, 0x92, 0xba,
0x79, 0xb5, 0x3f, 0xe9, 0x38, 0x55, 0xbb, 0xb6, 0xbf, 0xbf, 0xd7, 0x83, 0xff, 0x83, 0x53, 0x40, 0xf5, 0xba, 0xd5, 0xea, 0xba, 0xc5, 0xd2, 0x29, 0x6f, 0x0f, 0x4c, 0x3a, 0x4e, 0xd5, 0xae, 0xed,
0xf3, 0xa1, 0x7f, 0x4d, 0x9a, 0xbf, 0x61, 0x97, 0x8e, 0x40, 0xc5, 0x3e, 0x21, 0xce, 0x19, 0xf9, 0xef, 0xef, 0xf5, 0xe1, 0xff, 0xee, 0x29, 0xa0, 0x79, 0xdf, 0xbb, 0x26, 0xcd, 0x5f, 0xb1, 0xad,
0xb5, 0xdf, 0x23, 0xc9, 0x7c, 0x36, 0x0b, 0x16, 0xb4, 0x65, 0xb0, 0x03, 0xb7, 0x77, 0x4a, 0x9d, 0x47, 0xa0, 0xc4, 0x9f, 0x10, 0xe7, 0x8c, 0xfc, 0xd2, 0xeb, 0x92, 0x64, 0x3e, 0x9b, 0x05, 0x0b,
0xda, 0x6f, 0x84, 0xb6, 0x06, 0xa7, 0xf4, 0xf7, 0x7e, 0xed, 0xc4, 0x69, 0x12, 0x79, 0x4f, 0x61, 0xda, 0x32, 0xd8, 0x81, 0xdb, 0x3f, 0xa5, 0x4e, 0xed, 0x57, 0x42, 0x5b, 0xdd, 0x53, 0xfa, 0x5b,
0x20, 0xb5, 0x00, 0x62, 0x82, 0x3f, 0xe8, 0x99, 0x1a, 0x85, 0xfd, 0xa7, 0x10, 0x32, 0x08, 0xc8, 0xaf, 0x76, 0xe2, 0x34, 0x89, 0xbc, 0xa7, 0x30, 0x90, 0x5a, 0x00, 0x31, 0xc1, 0x7f, 0xe8, 0x99,
0x49, 0xd2, 0x48, 0x4c, 0x9b, 0xca, 0xa2, 0xaa, 0xbf, 0x7d, 0xb2, 0x8e, 0x9c, 0xad, 0xf5, 0xe4, 0x1a, 0x85, 0x0d, 0xab, 0x10, 0x32, 0x08, 0xc8, 0x49, 0xd2, 0x48, 0x4c, 0x9b, 0xca, 0x2a, 0xac,
0x52, 0x43, 0x34, 0x77, 0xa2, 0x24, 0x25, 0x7c, 0x34, 0x02, 0x34, 0x89, 0x45, 0xfe, 0x8b, 0xb6, 0xb7, 0x7d, 0xb2, 0x8e, 0x9c, 0xad, 0xf5, 0xc6, 0xa5, 0x86, 0xe8, 0x06, 0x45, 0x49, 0x4a, 0xf8,
0x9f, 0x0e, 0xdc, 0xbe, 0xdb, 0x5f, 0x91, 0x44, 0xdf, 0x6c, 0xf5, 0xad, 0x27, 0x41, 0xd8, 0x4f, 0x68, 0x04, 0x68, 0x12, 0x8b, 0xfc, 0x17, 0x6d, 0xbf, 0x39, 0x70, 0x7b, 0x6e, 0x6f, 0x45, 0x12,
0x08, 0x0f, 0xa3, 0xf9, 0x78, 0x62, 0x76, 0x06, 0x71, 0x37, 0x6f, 0xa1, 0xac, 0x2c, 0x2f, 0x5b, 0x3d, 0xb3, 0xd5, 0xb3, 0xde, 0x08, 0xc2, 0x7e, 0x42, 0x78, 0x18, 0xcd, 0xc7, 0x13, 0xb3, 0xd3,
0xe9, 0xac, 0x14, 0x96, 0x1d, 0xed, 0xed, 0x49, 0xbe, 0xfc, 0x26, 0x75, 0x62, 0x55, 0x5d, 0x4f, 0x8f, 0xbd, 0xbc, 0xe7, 0xb2, 0xb2, 0xbc, 0x6c, 0xa5, 0x15, 0x93, 0x3f, 0xef, 0xa2, 0xbd, 0xbd,
0x94, 0x24, 0x2f, 0x6e, 0x55, 0x4d, 0x49, 0xb5, 0x66, 0xe6, 0x25, 0x6d, 0xc0, 0x92, 0xf4, 0x43, 0x91, 0x2f, 0xbf, 0x4a, 0x9d, 0x58, 0x55, 0xd7, 0x13, 0x25, 0xc9, 0x8b, 0x5b, 0x55, 0x84, 0x52,
0x38, 0x54, 0x0d, 0x31, 0xde, 0x71, 0x74, 0x93, 0xcb, 0x6e, 0x3f, 0xbc, 0xe6, 0x3f, 0xfa, 0xa0, 0xad, 0x99, 0x79, 0x0d, 0x1c, 0xb0, 0x24, 0x7d, 0x1f, 0x0e, 0x55, 0x07, 0x8d, 0x77, 0x1c, 0xdd,
0x58, 0xfc, 0x10, 0xa2, 0x47, 0xee, 0x43, 0x0e, 0x5e, 0x19, 0x72, 0xbe, 0x39, 0xa4, 0x2d, 0x8b, 0x15, 0xb3, 0xdb, 0x0f, 0x2f, 0xf9, 0x8f, 0x1e, 0x28, 0x16, 0x3f, 0x84, 0xe8, 0x91, 0xfb, 0x90,
0xe9, 0xd7, 0x7d, 0xd5, 0xc6, 0x40, 0xc5, 0x69, 0x28, 0x4a, 0x8c, 0x50, 0x96, 0x18, 0x50, 0x31, 0x83, 0x17, 0x86, 0x9c, 0x6f, 0x0e, 0x69, 0xcb, 0xea, 0xfb, 0x65, 0x5f, 0xb5, 0x31, 0x50, 0x71,
0x9b, 0x96, 0x9f, 0xfc, 0xc2, 0x7e, 0x31, 0x1e, 0xcc, 0x53, 0xbb, 0xf5, 0x90, 0x4f, 0x15, 0x0a, 0x1a, 0x8a, 0x9a, 0x24, 0x94, 0x35, 0x09, 0x94, 0xd8, 0xa6, 0xe5, 0x27, 0x3f, 0xb3, 0x9f, 0x8d,
0x4c, 0x5c, 0x54, 0xb9, 0xf7, 0x62, 0xeb, 0x7e, 0xff, 0x1a, 0xb9, 0x73, 0xbd, 0xed, 0x01, 0xe9, 0x07, 0xf3, 0xd4, 0x6e, 0x3d, 0xe4, 0x53, 0x85, 0x8a, 0x14, 0x17, 0x55, 0x6e, 0xd6, 0xd8, 0x7a,
0x5d, 0xff, 0x16, 0x3b, 0x6e, 0x6e, 0x9a, 0x25, 0x72, 0x23, 0x63, 0xcf, 0x80, 0x9a, 0x02, 0xa2, 0x83, 0x60, 0x8d, 0xdc, 0xb9, 0xde, 0x27, 0x81, 0xf4, 0xae, 0x77, 0x8b, 0x2d, 0x3a, 0x37, 0xcd,
0x15, 0xeb, 0x62, 0x5a, 0xd5, 0x7b, 0x79, 0x39, 0x94, 0xf7, 0x36, 0xb6, 0x5d, 0x25, 0x4a, 0x5f, 0x12, 0xb9, 0x91, 0xb1, 0x67, 0x40, 0x11, 0x02, 0xd1, 0x8a, 0x79, 0x98, 0x56, 0x75, 0x9f, 0x9f,
0x96, 0x43, 0x53, 0x98, 0xab, 0x88, 0x9c, 0x08, 0xa0, 0x6b, 0xe7, 0xbb, 0xce, 0xd0, 0x7f, 0x20, 0x0f, 0xe5, 0xbd, 0x8d, 0x7d, 0x5a, 0x89, 0xd2, 0x97, 0xf5, 0xd3, 0x14, 0xe6, 0x2a, 0x22, 0x27,
0x62, 0x6b, 0xc5, 0x15, 0xf8, 0xbb, 0x7f, 0x0f, 0x3b, 0x13, 0x78, 0x83, 0xeb, 0xa6, 0x36, 0x00, 0x02, 0xe8, 0x62, 0xfb, 0xae, 0x33, 0xf4, 0x1f, 0x88, 0xd8, 0x8b, 0x71, 0x05, 0x7e, 0xef, 0xf7,
0x5b, 0xb5, 0x63, 0x7b, 0xf6, 0x84, 0x6f, 0xbe, 0x7f, 0x66, 0x07, 0x50, 0xdd, 0x00, 0x88, 0x2c, 0xb0, 0x33, 0x81, 0x37, 0xb8, 0x6e, 0x6a, 0xc7, 0xb0, 0x55, 0x3b, 0xb6, 0x67, 0xdf, 0xf0, 0xcd,
0xde, 0x89, 0xdc, 0xda, 0xbb, 0xbc, 0x85, 0x17, 0x4b, 0x4a, 0xa0, 0x30, 0x9a, 0xa0, 0x67, 0x70, 0x9b, 0x27, 0x76, 0x00, 0xe5, 0x10, 0x80, 0xc8, 0x6a, 0x9f, 0xc8, 0xbd, 0xc0, 0xcb, 0x5b, 0x78,
0xe9, 0xaf, 0x17, 0x46, 0x1a, 0x83, 0x44, 0x04, 0xba, 0x68, 0x26, 0x66, 0xab, 0xca, 0xb6, 0x5a, 0xb1, 0xa4, 0x04, 0x2a, 0xa9, 0x09, 0x7a, 0x06, 0x97, 0xfe, 0x72, 0x61, 0xa4, 0x31, 0x48, 0x44,
0x8d, 0x12, 0x39, 0x9a, 0x0f, 0xbb, 0xc2, 0x0a, 0x9e, 0x3a, 0x47, 0x12, 0x64, 0x13, 0xb8, 0x6e, 0xa0, 0x8b, 0x66, 0x62, 0xb6, 0xaa, 0xce, 0xab, 0xd5, 0x28, 0x91, 0xa3, 0xf9, 0xd0, 0x13, 0x56,
0xd3, 0x6e, 0xff, 0xaf, 0xc7, 0x27, 0x4e, 0x8d, 0xdc, 0x7c, 0xea, 0xfd, 0xbe, 0x03, 0xd0, 0xa1, 0xf0, 0xad, 0x73, 0x24, 0x41, 0x36, 0x81, 0xeb, 0x36, 0xf5, 0x7a, 0x7f, 0x3b, 0x3e, 0x71, 0x6a,
0xdd, 0xdb, 0x2b, 0xe7, 0xc4, 0x69, 0x6c, 0x87, 0xa9, 0x35, 0x28, 0xa4, 0xee, 0xf6, 0xfd, 0xcf, 0xe4, 0xe6, 0x63, 0xf7, 0xb7, 0x1d, 0x80, 0x0e, 0xf5, 0x6e, 0xaf, 0x9c, 0x13, 0xa7, 0xb1, 0x1d,
0xff, 0xb9, 0x1d, 0xa6, 0x09, 0x04, 0x91, 0x29, 0xdb, 0xd9, 0x01, 0x03, 0xb4, 0xce, 0xae, 0xcf, 0xa6, 0xd6, 0xa0, 0x90, 0xba, 0xdb, 0xf7, 0x3f, 0xfd, 0xe7, 0x76, 0x98, 0x26, 0x10, 0x44, 0xa6,
0x1c, 0xbb, 0xb6, 0x03, 0xa6, 0x46, 0xbb, 0x97, 0xd7, 0xef, 0x4f, 0x4e, 0xec, 0xe3, 0x1d, 0x40, 0x6c, 0x67, 0x07, 0x0c, 0xd0, 0x3a, 0xbb, 0x3e, 0x73, 0xec, 0xda, 0x0e, 0x98, 0x1a, 0xf5, 0x2e,
0x75, 0xda, 0xbd, 0x7e, 0x77, 0xe2, 0xd4, 0xb7, 0x83, 0x34, 0x80, 0xd6, 0xf5, 0xef, 0x57, 0xe4, 0xaf, 0xdf, 0x9d, 0x9c, 0xd8, 0xc7, 0x3b, 0x80, 0xea, 0xd4, 0xbb, 0x7e, 0x7b, 0xe2, 0xd4, 0xb7,
0xf7, 0x89, 0x9f, 0xf2, 0x1d, 0x60, 0x35, 0x09, 0x76, 0x7e, 0x7e, 0xbb, 0x03, 0xa8, 0x2e, 0x81, 0x83, 0x34, 0x80, 0xd6, 0xf5, 0x6f, 0x57, 0xe4, 0xb7, 0x89, 0x9f, 0xf2, 0x1d, 0x60, 0x35, 0x09,
0x40, 0x92, 0x3b, 0x80, 0x1a, 0x19, 0xd0, 0x0e, 0x71, 0x37, 0x9a, 0x19, 0xd4, 0xc1, 0x2a, 0xcd, 0x76, 0x7e, 0x7e, 0xbb, 0x03, 0xa8, 0x2e, 0x81, 0x40, 0x92, 0x3b, 0x80, 0x1a, 0x19, 0xd0, 0x0e,
0xbf, 0x3f, 0xd5, 0xbd, 0xbd, 0xc3, 0xc3, 0x35, 0xf0, 0xe3, 0x1c, 0xfc, 0x7d, 0x01, 0xfe, 0xf0, 0x71, 0x37, 0x9a, 0x19, 0xd4, 0xc1, 0x2a, 0xcd, 0xdf, 0xbf, 0xd5, 0x07, 0x7b, 0x87, 0x87, 0x6b,
0x10, 0xc0, 0xf9, 0x06, 0xf6, 0x13, 0x58, 0x84, 0xf7, 0xef, 0xaf, 0x11, 0x9c, 0x18, 0x21, 0x4f, 0xe0, 0xc7, 0x39, 0xf8, 0xbb, 0x02, 0xfc, 0xe1, 0x21, 0x80, 0xf3, 0x0d, 0xec, 0x27, 0xb0, 0x08,
0x1f, 0xa3, 0xf8, 0xde, 0x7c, 0x8d, 0xc6, 0x09, 0x48, 0xea, 0x83, 0x53, 0xad, 0x3b, 0xe5, 0xc3, 0xef, 0xde, 0x5d, 0x23, 0x38, 0x31, 0x42, 0x9e, 0x3e, 0x46, 0xf1, 0xbd, 0xf9, 0x12, 0x8d, 0x13,
0x34, 0xa9, 0xf2, 0xb1, 0x20, 0xbe, 0xb3, 0x38, 0xfd, 0x85, 0xa7, 0xbb, 0x07, 0x77, 0x8e, 0xa4, 0x90, 0xd4, 0x7b, 0xa7, 0x5a, 0x77, 0xca, 0x87, 0x69, 0x52, 0xe5, 0x63, 0x41, 0x7c, 0x67, 0x71,
0xe6, 0x76, 0xd1, 0x39, 0xc2, 0x2d, 0xda, 0x8e, 0x3f, 0x74, 0xa1, 0x72, 0x97, 0x06, 0xa0, 0xac, 0xfa, 0x33, 0x4f, 0x77, 0x0f, 0xee, 0x1c, 0x49, 0xcd, 0xf5, 0xd0, 0x39, 0xc2, 0x2d, 0xda, 0x8e,
0x46, 0xb9, 0xbb, 0x96, 0x0a, 0xbe, 0xdd, 0x73, 0x8c, 0xae, 0xe4, 0x73, 0x3c, 0xe4, 0xf1, 0x86, 0x3f, 0x74, 0xa1, 0xd4, 0x97, 0x06, 0xa0, 0xac, 0x46, 0xb9, 0xbb, 0x96, 0x0a, 0xbe, 0xde, 0x39,
0xed, 0x9c, 0x7f, 0x16, 0x43, 0x37, 0x45, 0x0c, 0x32, 0xf8, 0x74, 0xb3, 0x63, 0xa1, 0x60, 0xba, 0x46, 0x57, 0xf2, 0x29, 0x1e, 0xf2, 0x78, 0xc3, 0x76, 0xce, 0x3f, 0x89, 0xa1, 0x9b, 0x22, 0x06,
0x3b, 0x17, 0x12, 0xa6, 0xd4, 0xbb, 0xf9, 0xb4, 0xc3, 0x62, 0x60, 0x7c, 0x6f, 0xc7, 0x7b, 0xd0, 0x19, 0x7c, 0xbc, 0xd9, 0xb1, 0x50, 0x30, 0xdd, 0x9d, 0x0b, 0x09, 0x53, 0xea, 0xde, 0x7c, 0xdc,
0x83, 0xde, 0xa7, 0x9b, 0x1d, 0xca, 0x0b, 0xfc, 0xf5, 0x56, 0xde, 0x17, 0x85, 0xd3, 0x39, 0x02, 0x61, 0x31, 0x30, 0xbe, 0xbb, 0xe3, 0x3d, 0xe8, 0x41, 0xf7, 0xe3, 0xcd, 0x0e, 0xe5, 0x05, 0xfe,
0xd9, 0xe0, 0xc3, 0x64, 0xc6, 0x42, 0x21, 0x23, 0x28, 0xa4, 0xe5, 0x4c, 0x65, 0xa9, 0x0c, 0xd0, 0xba, 0x2b, 0xef, 0x8b, 0xc2, 0xe9, 0x1c, 0x81, 0x6c, 0xf0, 0x61, 0x32, 0x63, 0xa1, 0x90, 0x11,
0xf0, 0xa6, 0x4b, 0x3a, 0x72, 0x27, 0x2b, 0x5d, 0xcc, 0x00, 0x67, 0x38, 0x9f, 0x0e, 0x78, 0x4c, 0x14, 0xd2, 0x72, 0xa6, 0xb2, 0x54, 0x06, 0x68, 0x78, 0xe3, 0x91, 0x8e, 0xdc, 0xfa, 0x4a, 0x17,
0xb5, 0x5b, 0xe9, 0x4b, 0xa9, 0xe2, 0xe8, 0x20, 0x91, 0xd7, 0xca, 0x53, 0x05, 0x44, 0x66, 0xb4, 0x33, 0xc0, 0x19, 0xce, 0xa7, 0x7d, 0x1e, 0x53, 0xed, 0x56, 0x7a, 0x52, 0xaa, 0x38, 0x3a, 0x48,
0x94, 0x60, 0x65, 0x06, 0xb2, 0xc2, 0x0c, 0x03, 0x75, 0xe0, 0x9d, 0x43, 0x35, 0x83, 0xdf, 0x3f, 0xe4, 0xb5, 0xf2, 0x54, 0x01, 0x91, 0x19, 0x2d, 0x25, 0x58, 0x99, 0x81, 0xac, 0x30, 0xc3, 0x40,
0xeb, 0x50, 0xc2, 0x4c, 0xe1, 0x9c, 0x04, 0x25, 0x97, 0x16, 0x73, 0x61, 0x44, 0xfa, 0xd5, 0x45, 0x1d, 0x78, 0xeb, 0x50, 0xcd, 0xe0, 0x9b, 0x27, 0x1d, 0x4a, 0x98, 0x29, 0x9c, 0x93, 0xa0, 0xe4,
0x57, 0xd5, 0xc6, 0xfe, 0x6e, 0x9b, 0x12, 0xdd, 0x6a, 0x22, 0x47, 0xdd, 0xfd, 0x70, 0x90, 0xcc, 0xd2, 0x62, 0x2e, 0x8c, 0x48, 0xbf, 0xb8, 0xe8, 0xaa, 0xda, 0xd8, 0x10, 0x6e, 0x53, 0xa2, 0x7b,
0xda, 0x85, 0x65, 0x1e, 0xfa, 0x63, 0x1c, 0xe0, 0x6d, 0x5d, 0xe8, 0x4b, 0xe1, 0x96, 0x5b, 0x3b, 0x53, 0xe4, 0xc8, 0xdb, 0x0f, 0xfb, 0xc9, 0xac, 0x5d, 0x58, 0xe6, 0xa1, 0x3f, 0xc6, 0x01, 0x83,
0x27, 0x75, 0xbe, 0x3a, 0x11, 0x35, 0x03, 0x47, 0xcd, 0x40, 0x24, 0x3d, 0xd7, 0xbd, 0x25, 0xcd, 0xad, 0x0b, 0x7d, 0x29, 0xdc, 0x72, 0x6b, 0xe7, 0xa4, 0xce, 0x57, 0x27, 0xa2, 0x66, 0xe0, 0xa8,
0x97, 0x39, 0x67, 0x29, 0x9b, 0x02, 0xf2, 0x4a, 0x81, 0xc3, 0x4c, 0xca, 0x52, 0x1d, 0x73, 0x59, 0x19, 0x88, 0xa4, 0xe7, 0xba, 0xbb, 0xa4, 0xf9, 0x32, 0xe7, 0x2c, 0x65, 0x53, 0x40, 0x5e, 0x29,
0xdb, 0x4a, 0xd6, 0xa2, 0xd3, 0xf8, 0x16, 0x51, 0xdb, 0x92, 0xab, 0x15, 0x69, 0xd6, 0xeb, 0x05, 0x70, 0x98, 0x49, 0x59, 0xaa, 0x63, 0x2e, 0x6b, 0x5b, 0xc9, 0x5a, 0xb4, 0x26, 0x5f, 0x23, 0x6a,
0xda, 0x8a, 0xdf, 0x64, 0xcd, 0xcb, 0x9b, 0xf4, 0x68, 0x95, 0xb2, 0xa3, 0x28, 0x2b, 0xa2, 0xbb, 0x5b, 0x72, 0xb5, 0x22, 0xcd, 0x7a, 0xbd, 0x40, 0x5b, 0xf1, 0x9b, 0xac, 0x79, 0x79, 0x93, 0x1e,
0x68, 0x3a, 0x5b, 0x68, 0xbe, 0x95, 0x54, 0xed, 0xed, 0xa4, 0x6a, 0xff, 0x22, 0xa9, 0xfa, 0xdb, 0xad, 0x52, 0x76, 0x14, 0x65, 0x45, 0x74, 0x17, 0x4d, 0x67, 0x0b, 0xcd, 0xd7, 0x92, 0xaa, 0xbd,
0x49, 0xd5, 0xff, 0x45, 0x52, 0x8d, 0xb7, 0x93, 0x6a, 0xfc, 0x53, 0xa4, 0xd6, 0xb4, 0x39, 0xde, 0x9e, 0x54, 0xed, 0xdf, 0x24, 0x55, 0x7f, 0x3d, 0xa9, 0xfa, 0xbf, 0x49, 0xaa, 0xf1, 0x7a, 0x52,
0xaa, 0xcd, 0xc2, 0x8e, 0x33, 0xc6, 0x20, 0xbb, 0x94, 0x8c, 0xe9, 0x86, 0x99, 0x62, 0x70, 0x4d, 0x8d, 0x7f, 0x89, 0xd4, 0x9a, 0x36, 0xc7, 0x5b, 0xb5, 0x59, 0xd8, 0x71, 0xc6, 0x18, 0x64, 0x97,
0xdb, 0x45, 0xb7, 0x75, 0x10, 0x3d, 0x69, 0x26, 0xcf, 0x7f, 0xd3, 0xd3, 0x51, 0xaa, 0xba, 0x46, 0x92, 0x31, 0xdd, 0x30, 0x53, 0x0c, 0xae, 0x69, 0xbb, 0x68, 0xcf, 0xf6, 0xa3, 0x6f, 0x9a, 0xc9,
0x3e, 0xd9, 0x49, 0xbe, 0x7f, 0xef, 0xcf, 0x88, 0xd3, 0x81, 0x74, 0xb8, 0x9b, 0xa4, 0x40, 0x10, 0xf3, 0x5f, 0xf5, 0x74, 0x94, 0xaa, 0xae, 0x91, 0x4f, 0x76, 0x92, 0xef, 0xdd, 0xfb, 0x33, 0xe2,
0x7e, 0x63, 0x1e, 0x9c, 0xd1, 0x44, 0x44, 0x49, 0x20, 0xc5, 0x50, 0x4e, 0xbf, 0x7f, 0xb9, 0x9b, 0x74, 0x20, 0x1d, 0xf6, 0x92, 0x14, 0x08, 0xc2, 0x5f, 0xcc, 0x83, 0x33, 0x9a, 0x88, 0x28, 0x09,
0xfe, 0x68, 0x27, 0xfd, 0xcf, 0xa3, 0x11, 0xb9, 0xe1, 0xa3, 0x98, 0x27, 0x93, 0x15, 0x9a, 0xf1, 0xa4, 0x18, 0xca, 0xe9, 0xf7, 0x2e, 0x77, 0xd3, 0x1f, 0xed, 0xa4, 0xff, 0x69, 0x34, 0x22, 0x37,
0x68, 0x17, 0xcd, 0x9b, 0x8f, 0x6b, 0x34, 0xc5, 0xef, 0xbb, 0xb6, 0x0f, 0xb9, 0x72, 0xc2, 0xe3, 0x7c, 0x14, 0xf3, 0x64, 0xb2, 0x42, 0x33, 0x1e, 0xed, 0xa2, 0x79, 0xf3, 0x61, 0x37, 0x4d, 0xb6,
0xf4, 0x6c, 0xf8, 0x8d, 0x79, 0x90, 0xdd, 0x61, 0xd2, 0x6c, 0xd0, 0x01, 0x87, 0x3c, 0x9d, 0xf3, 0x93, 0xe6, 0xd9, 0x3c, 0x8d, 0x0e, 0xa1, 0x50, 0x1d, 0xcc, 0x03, 0x96, 0x72, 0xf2, 0x88, 0x91,
0x70, 0x48, 0xad, 0xc4, 0x5c, 0xaa, 0xf4, 0xcd, 0x48, 0xbf, 0x1c, 0x1e, 0xb2, 0xaf, 0xd5, 0x18, 0x1f, 0x4f, 0x81, 0x41, 0x9a, 0x1d, 0x90, 0x51, 0x1c, 0x4d, 0x31, 0x46, 0xb5, 0xe4, 0xe2, 0x14,
0xea, 0xa5, 0x07, 0x6e, 0x98, 0x16, 0xdc, 0xa9, 0x02, 0xfd, 0x60, 0x23, 0xad, 0x66, 0x1d, 0x4c, 0x23, 0xc9, 0xd9, 0x6f, 0x8a, 0xea, 0x8a, 0x9f, 0xb6, 0xbd, 0x9f, 0x21, 0xbf, 0xce, 0xdc, 0xf4,
0xfd, 0x0e, 0x9d, 0xf2, 0x72, 0xef, 0x70, 0x13, 0xbe, 0xbb, 0x59, 0x19, 0x86, 0x2f, 0x2f, 0x62, 0xea, 0x4b, 0xc7, 0xeb, 0xc6, 0xfe, 0x78, 0x92, 0xf2, 0x78, 0x0b, 0x40, 0xcd, 0x3b, 0x1b, 0x0c,
0x87, 0x6b, 0x25, 0x3b, 0x3d, 0xff, 0x7c, 0x65, 0x70, 0xd7, 0x86, 0xf4, 0x54, 0x6c, 0x2c, 0xe9, 0xe6, 0x31, 0x4b, 0xb7, 0x61, 0xa8, 0x7b, 0xef, 0xe6, 0x2c, 0xc8, 0x5f, 0xea, 0x18, 0x20, 0x7d,
0x03, 0x03, 0xdb, 0x33, 0x54, 0x2f, 0x9a, 0xfe, 0x01, 0x0f, 0xa1, 0xc2, 0x33, 0x57, 0x72, 0x54, 0x67, 0x26, 0x00, 0xf1, 0xf7, 0xae, 0xed, 0x43, 0xb1, 0x90, 0xf0, 0x38, 0x3d, 0x1b, 0x7e, 0x65,
0xc8, 0x4e, 0xb1, 0x19, 0xa2, 0xd2, 0xd1, 0x95, 0xa4, 0x33, 0x1f, 0xf2, 0x96, 0xd4, 0x93, 0xc8, 0x03, 0x48, 0x6f, 0xb1, 0x6a, 0x30, 0x68, 0x9f, 0x43, 0xa1, 0xc2, 0x79, 0x38, 0xa4, 0x56, 0x62,
0xe8, 0xb1, 0xcb, 0x97, 0xfd, 0xad, 0x10, 0x36, 0x9e, 0xde, 0x14, 0x36, 0x8e, 0x9b, 0xcd, 0x7a, 0x2e, 0x55, 0xfe, 0x6a, 0xa4, 0x9f, 0x0f, 0x0f, 0xd9, 0x97, 0x6a, 0x0c, 0x05, 0xe3, 0x03, 0x37,
0xb3, 0x10, 0x37, 0x78, 0x31, 0x5c, 0xac, 0xc5, 0x05, 0xa8, 0x17, 0xb3, 0xc0, 0xf0, 0x06, 0x77, 0x4c, 0x0b, 0xee, 0x54, 0x87, 0xe2, 0x60, 0xa3, 0xae, 0x60, 0x1d, 0xcc, 0x7d, 0x0f, 0x9d, 0xf2,
0xff, 0xb7, 0xf3, 0x02, 0x33, 0xde, 0x4e, 0xd7, 0xbf, 0xce, 0x45, 0xb8, 0x5c, 0xa1, 0xba, 0xe6, 0x7a, 0xf7, 0x70, 0x13, 0xde, 0xdb, 0x2c, 0x8d, 0xc3, 0xe7, 0x67, 0xb1, 0x27, 0xb8, 0x92, 0x9e,
0xfd, 0xb5, 0x2a, 0xff, 0xa9, 0x94, 0x43, 0x70, 0xa1, 0x72, 0x15, 0xc5, 0xdf, 0xff, 0xbf, 0xf4, 0x9f, 0x7f, 0xba, 0x32, 0x40, 0x86, 0x90, 0x9f, 0x8b, 0xad, 0x38, 0x7d, 0xc4, 0x62, 0x7b, 0x8a,
0x43, 0xdb, 0x5b, 0x9e, 0x86, 0xdc, 0xb5, 0xd5, 0xfe, 0x8a, 0xd4, 0x34, 0x9f, 0x27, 0xa2, 0x6c, 0x3e, 0x88, 0xa6, 0x7f, 0xc0, 0x43, 0x28, 0x71, 0xcd, 0x95, 0x24, 0x1d, 0xd2, 0x73, 0xec, 0x06,
0xdd, 0x69, 0x8a, 0xbe, 0xb2, 0xb6, 0xa7, 0x88, 0x1e, 0x30, 0xdd, 0x23, 0x4b, 0xad, 0x41, 0x1a, 0xa9, 0x7c, 0x7c, 0x25, 0xeb, 0xce, 0x87, 0xbc, 0x26, 0xf7, 0x26, 0x32, 0x7c, 0xee, 0x72, 0xe6,
0xa2, 0x51, 0x80, 0x2e, 0xaa, 0x1d, 0xe1, 0xdc, 0x5e, 0xc0, 0x54, 0xf1, 0xd5, 0x96, 0xa3, 0x63, 0x7f, 0x2f, 0xc4, 0xcd, 0x6f, 0xaf, 0x8a, 0x9b, 0xc7, 0xcd, 0x66, 0xbd, 0x59, 0x08, 0x9c, 0xbc,
0xe5, 0x46, 0x02, 0x96, 0x95, 0x9d, 0xc8, 0xb1, 0xf7, 0x5c, 0x3c, 0x09, 0x64, 0xf0, 0x2f, 0xe1, 0x18, 0x2f, 0xd7, 0x02, 0x23, 0x14, 0xcc, 0x59, 0x64, 0x7c, 0x45, 0xbc, 0xfb, 0xfb, 0x79, 0x81,
0xa1, 0x53, 0xb0, 0x7c, 0x45, 0x12, 0x1e, 0x4a, 0x92, 0x66, 0x91, 0x64, 0xc2, 0x53, 0x61, 0xa4, 0x99, 0xc1, 0xce, 0xd8, 0xb7, 0xce, 0x45, 0xb8, 0x5c, 0xa1, 0xba, 0x16, 0xfe, 0xb4, 0x5d, 0xfd,
0xe6, 0x33, 0x3a, 0x8d, 0xb5, 0x43, 0x8c, 0x5c, 0xb6, 0x7a, 0x03, 0x48, 0x6b, 0x39, 0x76, 0x61, 0xa9, 0x9c, 0x4b, 0x70, 0xa1, 0x92, 0x35, 0xc5, 0xdf, 0xff, 0xbf, 0xfc, 0x4b, 0xdb, 0x5b, 0x9e,
0xde, 0xc4, 0x92, 0xc9, 0x33, 0xd2, 0x6d, 0x45, 0x7a, 0xe5, 0x5c, 0x9d, 0x7c, 0x04, 0x04, 0x33, 0x87, 0xdd, 0xb5, 0xd5, 0x8e, 0x94, 0xd4, 0x34, 0x9f, 0x27, 0xa2, 0x6e, 0xdf, 0x69, 0x8a, 0xbe,
0x99, 0x82, 0xa3, 0xd8, 0x3c, 0x60, 0xd1, 0x59, 0xe5, 0xa5, 0xdc, 0x35, 0xe1, 0x68, 0x20, 0xb6, 0xb2, 0xb6, 0x6f, 0x11, 0x3d, 0x60, 0xba, 0x49, 0x98, 0x5a, 0xfd, 0x34, 0x44, 0xa3, 0x00, 0x5d,
0x39, 0x7a, 0xd3, 0x41, 0xad, 0xf8, 0xa5, 0x5e, 0x1a, 0xea, 0xad, 0x77, 0xe9, 0x91, 0x04, 0x36, 0x54, 0x7b, 0xe8, 0xb9, 0xbd, 0x80, 0xa9, 0xe2, 0xab, 0x2d, 0x87, 0xed, 0xca, 0x8d, 0x04, 0x2c,
0x60, 0x2d, 0x29, 0xf6, 0x23, 0x2c, 0xdf, 0xc5, 0x8e, 0xf3, 0x41, 0x5f, 0xb4, 0x8d, 0xab, 0xa3, 0x2b, 0x3b, 0xc3, 0x64, 0xef, 0xb9, 0x78, 0x76, 0xca, 0xe0, 0x9f, 0xc3, 0x43, 0xa7, 0x60, 0xf9,
0x38, 0x9a, 0x9e, 0x4f, 0x58, 0x7c, 0x1e, 0x0d, 0xb9, 0x81, 0x8d, 0x05, 0xfb, 0xb4, 0x71, 0xd2, 0x8a, 0x24, 0x3c, 0x94, 0x24, 0xcd, 0x22, 0xc9, 0x84, 0xa7, 0xc2, 0x48, 0xcd, 0x27, 0x74, 0x1a,
0x6a, 0x36, 0xcd, 0x03, 0x90, 0x13, 0x3b, 0x70, 0xef, 0x7a, 0xf3, 0x34, 0x8d, 0xc4, 0x19, 0x9f, 0x6b, 0xc7, 0x3e, 0xb9, 0xec, 0x75, 0x07, 0x90, 0xd7, 0x73, 0x6c, 0x43, 0xbd, 0x8a, 0x25, 0x93,
0xa5, 0xdc, 0xa2, 0x2d, 0x37, 0x6c, 0x61, 0xb4, 0x87, 0xda, 0x6a, 0x1b, 0xb6, 0x36, 0xa5, 0xef, 0x67, 0xa4, 0xdb, 0x8a, 0xf4, 0xca, 0x49, 0x44, 0xf9, 0x08, 0x08, 0x66, 0x32, 0x05, 0x47, 0xb1,
0x9f, 0xfd, 0xe5, 0x46, 0xc4, 0xd5, 0xc6, 0xfe, 0x94, 0xac, 0x5a, 0x76, 0xf7, 0x0e, 0x3b, 0x3d, 0x79, 0x24, 0xa5, 0xb3, 0xca, 0x4b, 0xb9, 0x6b, 0xc2, 0xd1, 0x40, 0x6c, 0x73, 0xf4, 0xa6, 0x83,
0x77, 0xd2, 0x93, 0xac, 0x56, 0x04, 0xdf, 0x3f, 0xd3, 0xde, 0x87, 0x37, 0x71, 0x9d, 0xa1, 0xd9, 0x5a, 0xf1, 0x4b, 0xdd, 0x34, 0xd4, 0x87, 0x15, 0xa4, 0x47, 0x12, 0xd8, 0x80, 0xb5, 0xa4, 0xd8,
0xb0, 0x5d, 0x98, 0x84, 0x8d, 0xa7, 0x0f, 0xa8, 0xae, 0xb4, 0x71, 0xb7, 0x79, 0xd9, 0x7d, 0xaf, 0x90, 0xb1, 0x7c, 0x17, 0x5b, 0xee, 0x07, 0x3d, 0xd1, 0x37, 0xaf, 0x62, 0xec, 0x38, 0x9f, 0xb0,
0x9a, 0xba, 0x99, 0xd9, 0x94, 0x0e, 0xaf, 0xe1, 0xf0, 0x5a, 0xc9, 0xf0, 0xeb, 0x79, 0x32, 0x19, 0xf8, 0x3c, 0x1a, 0x72, 0x03, 0x3b, 0x2b, 0xf6, 0x69, 0xe3, 0xa4, 0xd5, 0x6c, 0x9a, 0x07, 0x20,
0x08, 0x21, 0xed, 0x46, 0x50, 0x47, 0x04, 0xf5, 0x2d, 0x08, 0x88, 0xaf, 0xb6, 0xe0, 0x76, 0xe3, 0x27, 0x76, 0xe0, 0xde, 0x75, 0xe7, 0x69, 0x1a, 0x89, 0x53, 0x51, 0x4b, 0xb9, 0xa9, 0x5d, 0x6e,
0x68, 0x20, 0x8e, 0x46, 0x09, 0x8e, 0xbe, 0x38, 0x0f, 0xb3, 0x7b, 0x70, 0x13, 0x07, 0x37, 0xcb, 0xd8, 0xc2, 0x68, 0x0f, 0xb5, 0xd5, 0x36, 0x6c, 0x6d, 0x4a, 0x6f, 0x9e, 0xfc, 0xe5, 0x46, 0xca,
0x18, 0xb8, 0xb8, 0x21, 0x09, 0x0f, 0x93, 0x28, 0xde, 0x8d, 0xe0, 0x18, 0x11, 0x1c, 0x97, 0x20, 0xa1, 0x8d, 0xfd, 0x5b, 0xb2, 0x6a, 0xd9, 0xde, 0x1d, 0xb6, 0xba, 0xee, 0x54, 0x9c, 0x58, 0x09,
0xb8, 0x8d, 0xe6, 0xaf, 0x11, 0xff, 0x09, 0xc7, 0xfe, 0x54, 0x32, 0xf6, 0x2c, 0x64, 0x41, 0x34, 0x64, 0x6f, 0x9e, 0x68, 0xf7, 0xfd, 0xab, 0xb8, 0xce, 0xd0, 0x6c, 0xd8, 0x2e, 0x4c, 0xc2, 0xc6,
0xde, 0x3d, 0xf8, 0x04, 0x07, 0x9f, 0x6c, 0x1d, 0xbc, 0x45, 0x78, 0x34, 0x73, 0x7e, 0x54, 0x22, 0xf3, 0x1a, 0x54, 0xb7, 0x1a, 0x70, 0x7f, 0x7e, 0xe9, 0xbd, 0x53, 0x5d, 0xed, 0xcc, 0x6c, 0x4a,
0x15, 0x59, 0x9b, 0x0a, 0x0d, 0xde, 0x3c, 0x86, 0xf9, 0xb6, 0xc8, 0x2c, 0xf2, 0xc3, 0x94, 0xc7, 0x87, 0xd7, 0x70, 0x78, 0xad, 0x64, 0xf8, 0xf5, 0x3c, 0x99, 0xf4, 0x85, 0x90, 0x76, 0x23, 0xa8,
0x6d, 0xa1, 0xa3, 0x62, 0x03, 0x9b, 0xe2, 0x89, 0xe1, 0x1f, 0x51, 0x6f, 0x7f, 0x34, 0x75, 0x54, 0x23, 0x82, 0xfa, 0x16, 0x04, 0xc4, 0x57, 0x7b, 0x90, 0xbb, 0x71, 0x34, 0x10, 0x47, 0xa3, 0x04,
0xdb, 0xff, 0xee, 0xa9, 0xf6, 0x93, 0xd3, 0x6c, 0xeb, 0xf4, 0x13, 0x9c, 0xa8, 0x6a, 0x43, 0xaf, 0x47, 0x4f, 0x9c, 0x20, 0xda, 0x3d, 0xb8, 0x89, 0x83, 0x9b, 0x65, 0x0c, 0x5c, 0xdc, 0x90, 0x84,
0x9b, 0x57, 0xf1, 0xd8, 0x6c, 0x3a, 0x0e, 0xfa, 0x3e, 0x3a, 0x05, 0x63, 0xe5, 0x98, 0x35, 0x37, 0x87, 0x49, 0x14, 0xef, 0x46, 0x70, 0x8c, 0x08, 0x8e, 0x4b, 0x10, 0xdc, 0x46, 0xf3, 0x97, 0x88,
0x5f, 0x5e, 0x8c, 0xd5, 0x83, 0xd6, 0xeb, 0x07, 0x69, 0x44, 0xee, 0x04, 0x63, 0xcd, 0x67, 0x74, 0xff, 0x88, 0x63, 0x7f, 0x2c, 0x19, 0x7b, 0x16, 0xb2, 0x20, 0x1a, 0xef, 0x1e, 0x7c, 0x82, 0x83,
0x55, 0xd2, 0x75, 0xee, 0x39, 0x98, 0x71, 0xb4, 0x21, 0xc0, 0xed, 0x6e, 0x85, 0x69, 0xcf, 0x19, 0x4f, 0xb6, 0x0e, 0xde, 0x22, 0x3c, 0x9a, 0x39, 0x3f, 0x2a, 0x91, 0x8a, 0xb4, 0x55, 0x85, 0x06,
0xe2, 0x7e, 0xe6, 0xe6, 0x96, 0x84, 0x70, 0x99, 0xe6, 0x9f, 0xe8, 0x03, 0x86, 0xab, 0xed, 0xbc, 0x48, 0x60, 0x60, 0xbe, 0x2d, 0x32, 0x8b, 0xfc, 0x10, 0x52, 0x9d, 0xb6, 0xd0, 0x51, 0xb1, 0xe5,
0xbd, 0x92, 0x6d, 0x8e, 0x50, 0xe3, 0x43, 0x47, 0x8d, 0x07, 0xb0, 0x8a, 0xd5, 0x64, 0xf8, 0x15, 0x4f, 0xf1, 0x8c, 0xf5, 0x0f, 0xa8, 0xb7, 0x3f, 0x98, 0x3a, 0xaa, 0xed, 0x7f, 0xf7, 0xad, 0xf6,
0xdb, 0x78, 0x4b, 0x7b, 0x73, 0x20, 0xee, 0x35, 0x6c, 0x1f, 0x67, 0x8b, 0x71, 0x52, 0xca, 0x89, 0xa3, 0xd3, 0x6c, 0xeb, 0xfc, 0x1b, 0x9c, 0xa8, 0xea, 0xc3, 0xaf, 0x9b, 0x57, 0xf1, 0xa0, 0x71,
0x5f, 0x38, 0x95, 0xc5, 0x2d, 0x2d, 0xd8, 0x5c, 0x60, 0xf3, 0x59, 0x10, 0xb1, 0xe1, 0x47, 0x3f, 0x3a, 0x0e, 0x7a, 0x3e, 0x3a, 0x05, 0x63, 0xe5, 0x60, 0x3a, 0x37, 0x9f, 0x9f, 0x8d, 0xd5, 0xa3,
0xc0, 0x53, 0xdd, 0xea, 0xdc, 0x4f, 0xc8, 0x1f, 0xc9, 0xdf, 0xae, 0x2e, 0x7f, 0x4e, 0xd3, 0xd9, 0xe9, 0xeb, 0x47, 0x8f, 0x44, 0xf2, 0x08, 0x63, 0xcd, 0x27, 0x74, 0x55, 0xd2, 0x75, 0xee, 0x39,
0x0d, 0x64, 0x0c, 0x3c, 0x49, 0xdb, 0x61, 0xc9, 0xa9, 0x26, 0x1c, 0x48, 0xad, 0xe2, 0x09, 0xeb, 0x98, 0x71, 0xb4, 0x21, 0xc0, 0xed, 0xee, 0x05, 0x6a, 0xcf, 0x19, 0xe2, 0x86, 0xee, 0xe6, 0x9e,
0xfc, 0xfc, 0x77, 0x3a, 0xf1, 0x13, 0x70, 0xfc, 0xc9, 0x2c, 0x82, 0xb8, 0x78, 0xcb, 0x9f, 0x52, 0x8c, 0x70, 0x99, 0xe6, 0x9f, 0x68, 0x84, 0x86, 0xab, 0xfd, 0xcc, 0xbd, 0x92, 0x7d, 0x9e, 0x50,
0x4b, 0x3c, 0x01, 0x36, 0xd3, 0x79, 0xd2, 0x75, 0x1b, 0x78, 0xb8, 0xda, 0x84, 0x78, 0x55, 0x82, 0xe3, 0x43, 0x47, 0x8d, 0x47, 0xd6, 0x8a, 0xe5, 0x74, 0xf8, 0x05, 0xfb, 0x98, 0x4b, 0x7b, 0x73,
0x56, 0x1e, 0x01, 0x2f, 0xe0, 0xe5, 0x45, 0xc4, 0x78, 0x36, 0x91, 0x79, 0xf7, 0xd6, 0x9e, 0x46, 0x20, 0x6e, 0xb6, 0x6c, 0x1f, 0x67, 0x8b, 0x71, 0x52, 0xca, 0x89, 0x5f, 0x38, 0xc7, 0xc6, 0x2d,
0x20, 0x0f, 0xbd, 0x5f, 0x7f, 0x86, 0x15, 0xb4, 0xe8, 0x91, 0x9c, 0x8e, 0xea, 0x6b, 0xa7, 0x62, 0x2d, 0xd8, 0x5c, 0x60, 0xf3, 0x59, 0x10, 0xb1, 0xe1, 0x07, 0x3f, 0xc0, 0x73, 0xf0, 0xea, 0xa4,
0x26, 0x1f, 0xa3, 0x78, 0x8a, 0x67, 0x6d, 0x74, 0x3b, 0x35, 0xad, 0xb2, 0x19, 0x8c, 0xc1, 0xcd, 0x54, 0xc8, 0x1f, 0xc9, 0xdf, 0xaf, 0x2e, 0x7f, 0x4a, 0xd3, 0xd9, 0x0d, 0x64, 0x0c, 0x3c, 0x49,
0x18, 0x78, 0xaa, 0x8e, 0xea, 0x89, 0x43, 0x92, 0x23, 0x90, 0x42, 0x02, 0xe2, 0xb3, 0x38, 0x22, 0xdb, 0x61, 0xc9, 0x39, 0x30, 0x1c, 0x48, 0xad, 0xe2, 0x99, 0xf4, 0xfc, 0xc4, 0x7c, 0x3a, 0xf1,
0x4e, 0x10, 0x26, 0x35, 0xad, 0x92, 0x43, 0x94, 0x7b, 0x85, 0x33, 0xef, 0x48, 0xef, 0x7c, 0x34, 0x13, 0x70, 0xfc, 0xc9, 0x2c, 0x82, 0xb8, 0x78, 0xcb, 0xbf, 0xa5, 0x96, 0x78, 0x02, 0x6c, 0xa6,
0xce, 0xa4, 0x67, 0xa5, 0x6d, 0xaa, 0x5f, 0x52, 0xb0, 0x3c, 0x70, 0xf6, 0x10, 0x2b, 0xd5, 0x09, 0xf3, 0xc4, 0x73, 0x1b, 0x78, 0x1c, 0xdd, 0x84, 0x78, 0x55, 0x82, 0x56, 0x1e, 0x9a, 0x2f, 0xe0,
0x7d, 0x94, 0xf3, 0x0d, 0x67, 0x90, 0x46, 0x9d, 0xc2, 0x4c, 0x04, 0xbd, 0x53, 0x9e, 0xd1, 0x3d, 0xe5, 0x45, 0xc4, 0x78, 0x9a, 0x93, 0x0d, 0xee, 0xad, 0x3d, 0x8d, 0x40, 0x7e, 0x26, 0x70, 0xfd,
0x35, 0x30, 0x7e, 0x67, 0x5c, 0x18, 0x8a, 0xff, 0x6c, 0x0c, 0x9e, 0x15, 0x41, 0x72, 0x6e, 0x51, 0x09, 0x56, 0xd0, 0xa2, 0x47, 0x72, 0x3a, 0xaa, 0xb1, 0x9f, 0x8a, 0x99, 0x7c, 0x88, 0xe2, 0x29,
0x34, 0x18, 0x8e, 0x71, 0x18, 0x28, 0x00, 0x28, 0x22, 0xca, 0x7c, 0x1e, 0xa4, 0x6a, 0xfa, 0xe2, 0x9e, 0x4e, 0xd2, 0xfd, 0xe4, 0xb4, 0xca, 0x66, 0x30, 0x06, 0x77, 0xa3, 0xe0, 0xa9, 0x3a, 0xdc,
0x44, 0xb3, 0x50, 0x1e, 0x23, 0x14, 0xbd, 0xda, 0xb4, 0x3a, 0x79, 0x14, 0x8d, 0x70, 0xbc, 0x00, 0x28, 0x8e, 0x95, 0x8e, 0x40, 0x0a, 0x09, 0x88, 0xcf, 0xe2, 0x88, 0x38, 0x41, 0x98, 0xd4, 0xb4,
0x7d, 0x1f, 0xe6, 0x76, 0xc2, 0x5c, 0xbb, 0xcd, 0x20, 0x1e, 0x40, 0xec, 0x3a, 0x30, 0x75, 0x2b, 0x4a, 0x8e, 0x9d, 0xee, 0x15, 0xbe, 0x12, 0x40, 0x7a, 0xe7, 0xa3, 0x71, 0x26, 0x3d, 0x2b, 0x6d,
0x19, 0x34, 0xb8, 0xad, 0x41, 0x31, 0xc5, 0xa9, 0x02, 0xf4, 0x07, 0xe6, 0x4d, 0x0c, 0x15, 0x2f, 0x53, 0xfd, 0x92, 0x82, 0xe5, 0x81, 0xb3, 0x87, 0x58, 0xa9, 0xbe, 0x69, 0x40, 0x39, 0xdf, 0x70,
0xdd, 0xee, 0xb3, 0x06, 0x75, 0x64, 0x76, 0x90, 0xa3, 0xe2, 0xd5, 0x99, 0x1f, 0x6a, 0x9b, 0x42, 0x06, 0x69, 0xd4, 0x29, 0xcc, 0x44, 0xd0, 0x3b, 0xe5, 0x19, 0xdd, 0x53, 0x03, 0xe3, 0x77, 0xc6,
0xa4, 0x65, 0x96, 0x72, 0x27, 0xea, 0x29, 0x8c, 0x61, 0x77, 0x85, 0x23, 0x32, 0x62, 0xe8, 0x17, 0x85, 0xa1, 0xf8, 0xcf, 0xc6, 0xe0, 0xe9, 0x1a, 0x24, 0xe7, 0x16, 0x45, 0x83, 0xe1, 0x18, 0x87,
0xf6, 0xb5, 0xbd, 0xb5, 0x57, 0x1e, 0xae, 0x40, 0xa3, 0x90, 0xad, 0xad, 0x3d, 0xfc, 0x55, 0x58, 0x81, 0x02, 0x80, 0x22, 0xa2, 0xcc, 0xe7, 0x41, 0xaa, 0xa6, 0x2f, 0xce, 0x80, 0x0b, 0xe5, 0x31,
0x61, 0x29, 0xdb, 0x0f, 0x3d, 0xad, 0x02, 0x03, 0xf7, 0xe5, 0xa0, 0xe7, 0x9f, 0xd7, 0x41, 0x23, 0x42, 0xd1, 0xac, 0x4e, 0xab, 0x93, 0x47, 0xb1, 0x13, 0x80, 0x17, 0xa0, 0xef, 0xc3, 0xdc, 0x4e,
0x4c, 0x8e, 0xb7, 0x1c, 0x0c, 0xbc, 0xd4, 0xc0, 0x99, 0x25, 0x56, 0x13, 0x28, 0x45, 0xcb, 0xa1, 0x98, 0x6b, 0xb7, 0x19, 0xc4, 0x03, 0x88, 0x5d, 0x07, 0xa6, 0xee, 0xa5, 0x83, 0x06, 0xb7, 0x35,
0x6f, 0x3e, 0x6e, 0x42, 0xc7, 0x7c, 0xb4, 0x85, 0x8f, 0xdf, 0xca, 0x80, 0x1f, 0x96, 0xe6, 0x52, 0x28, 0xa6, 0x38, 0x55, 0x80, 0x7e, 0xcf, 0x06, 0x13, 0x43, 0xc5, 0x4b, 0xd7, 0x7b, 0xd2, 0xa0,
0x2f, 0x32, 0x24, 0x45, 0xe0, 0x24, 0xb2, 0xd4, 0x0e, 0x3f, 0x9f, 0x90, 0x4f, 0xb3, 0xb5, 0xe4, 0x8e, 0xcc, 0x0e, 0x72, 0x54, 0xbc, 0x3a, 0xf3, 0x43, 0x6d, 0x53, 0x88, 0xb4, 0xcc, 0x52, 0xee,
0x72, 0x15, 0x45, 0x1e, 0xa6, 0xc4, 0x23, 0x67, 0xae, 0x26, 0x25, 0x0c, 0x4d, 0x8c, 0x02, 0x9f, 0x44, 0x41, 0x89, 0x31, 0xec, 0xae, 0x70, 0xa8, 0x48, 0x0c, 0xfd, 0xcc, 0xbe, 0xb4, 0xb7, 0x6e,
0xad, 0x8b, 0x2e, 0x7d, 0xdf, 0x5e, 0x3d, 0x41, 0x20, 0x6a, 0x52, 0x53, 0x1f, 0xa3, 0xda, 0xf0, 0x16, 0x84, 0x2b, 0xd0, 0x28, 0x64, 0x6b, 0xeb, 0x26, 0xc6, 0x2a, 0xac, 0xb0, 0x94, 0xed, 0xc7,
0xf1, 0x14, 0x72, 0x54, 0x7f, 0xbb, 0x22, 0x61, 0x22, 0x86, 0x64, 0x71, 0xf5, 0xd1, 0x0c, 0xc5, 0xc4, 0x56, 0x81, 0x81, 0xfb, 0x72, 0xd0, 0xf3, 0x4f, 0xeb, 0xa0, 0x11, 0x26, 0xc7, 0x5b, 0x8e,
0xc2, 0xe2, 0xd7, 0x18, 0xa5, 0x73, 0xbf, 0xbd, 0xa5, 0x85, 0x15, 0xf0, 0xab, 0x69, 0xba, 0x14, 0x52, 0x5e, 0x6a, 0xe0, 0xcc, 0x12, 0xab, 0x09, 0xd4, 0xe2, 0xe5, 0xd0, 0x37, 0x1f, 0x36, 0xa1,
0x5c, 0xf9, 0xf1, 0xb6, 0xa3, 0x58, 0x17, 0x37, 0xc5, 0x11, 0x0a, 0x18, 0xa9, 0x95, 0x13, 0xb8, 0x63, 0x3e, 0xda, 0xc2, 0xc7, 0xaf, 0x65, 0xc0, 0x0f, 0x4b, 0x73, 0xa9, 0x17, 0x19, 0x92, 0x22,
0xb8, 0x2d, 0x03, 0x17, 0x3c, 0x49, 0x79, 0xc4, 0x1c, 0xd2, 0xcb, 0x6d, 0xc4, 0x6e, 0x2e, 0x37, 0x70, 0x12, 0x59, 0x6a, 0x87, 0x1f, 0x9c, 0xc8, 0xa7, 0xd9, 0x5a, 0x72, 0xb9, 0x8a, 0x22, 0x0f,
0x46, 0x0b, 0xf8, 0xed, 0xf4, 0x6e, 0xae, 0xe8, 0xca, 0x52, 0x16, 0xc6, 0x40, 0xa0, 0xd6, 0x15, 0x53, 0xe2, 0x91, 0x33, 0x57, 0x93, 0x12, 0x86, 0x26, 0x46, 0x81, 0xcf, 0xd6, 0x45, 0x97, 0xbe,
0x82, 0x85, 0x46, 0xce, 0x86, 0x67, 0x09, 0xba, 0x55, 0xb0, 0x6b, 0xb3, 0xa5, 0x0e, 0xf6, 0x5f, 0x6f, 0xaf, 0x1e, 0xa1, 0x10, 0x35, 0xa9, 0xa9, 0x0f, 0x9e, 0x6d, 0xf8, 0x78, 0x0a, 0x39, 0xaa,
0x07, 0x1c, 0xcf, 0xbf, 0xaa, 0xec, 0x8f, 0x11, 0xb4, 0x7e, 0x82, 0xde, 0x04, 0x7e, 0xc4, 0x49, 0xbf, 0x5d, 0x91, 0x30, 0x11, 0x43, 0xb2, 0xb8, 0xfa, 0x68, 0x86, 0x62, 0x61, 0xf1, 0xfb, 0x95,
0xba, 0x47, 0x33, 0xc8, 0x5b, 0xf0, 0xc5, 0x64, 0x10, 0x47, 0x8f, 0x50, 0xb3, 0x90, 0x61, 0xc4, 0xd2, 0xb9, 0xdf, 0xde, 0xd2, 0xc2, 0x0a, 0xf8, 0xd5, 0x34, 0x5d, 0x0a, 0xae, 0xfc, 0x78, 0xdb,
0x13, 0xfc, 0xc0, 0x01, 0x37, 0x09, 0xa3, 0x18, 0xd2, 0xd3, 0x09, 0x27, 0x77, 0xc2, 0x09, 0xdd, 0xe1, 0xb5, 0x8b, 0x9b, 0xe2, 0x08, 0x05, 0x8c, 0xd4, 0xca, 0x09, 0x5c, 0xdc, 0x96, 0x81, 0x0b,
0x91, 0x59, 0x0c, 0xee, 0x15, 0x62, 0x0a, 0xa6, 0xfb, 0x02, 0x93, 0xc8, 0x60, 0x13, 0xf1, 0x91, 0x9e, 0xa4, 0x3c, 0x62, 0x0e, 0xe9, 0xe5, 0x36, 0x62, 0x37, 0x97, 0x1b, 0xa3, 0x05, 0xfc, 0x76,
0x40, 0x7e, 0x70, 0x2e, 0x47, 0xcb, 0x25, 0xd4, 0xd9, 0xf5, 0x05, 0xf1, 0x8b, 0x48, 0x45, 0xb7, 0x7a, 0x37, 0x57, 0x74, 0x65, 0x29, 0x0b, 0x63, 0x20, 0x50, 0xeb, 0x0a, 0xc1, 0x42, 0x23, 0x67,
0x91, 0xa4, 0x45, 0xb2, 0x0b, 0x70, 0x56, 0xc5, 0x2f, 0x93, 0xfa, 0x10, 0x3f, 0x3e, 0xf1, 0xf4, 0xc3, 0xb3, 0x04, 0xdd, 0x2a, 0xd8, 0xb5, 0xd9, 0x52, 0x9f, 0x42, 0x5c, 0x07, 0x1c, 0x4f, 0x0c,
0x37, 0xd0, 0xd0, 0x2c, 0x88, 0x5b, 0xd9, 0xa9, 0xe9, 0x0a, 0x24, 0x10, 0xf2, 0x5b, 0x2e, 0xf5, 0xab, 0xec, 0x8f, 0x11, 0xb4, 0x7e, 0x82, 0xde, 0x04, 0xfe, 0x89, 0x93, 0x74, 0x8f, 0x66, 0x90,
0x4d, 0x17, 0x49, 0x62, 0xcf, 0xa5, 0xfa, 0x53, 0xa7, 0xea, 0xb7, 0xe4, 0x74, 0xe6, 0xd6, 0x44, 0xb7, 0xe0, 0x8b, 0x49, 0x3f, 0x8e, 0x1e, 0xa1, 0x66, 0x21, 0xc3, 0x88, 0x27, 0xf8, 0x49, 0x08,
0x9b, 0x4b, 0x83, 0x61, 0xba, 0xd2, 0xfd, 0x37, 0x7f, 0x2a, 0x26, 0x35, 0x8f, 0x03, 0x08, 0x86, 0xee, 0x92, 0x46, 0x31, 0xa4, 0xa7, 0x13, 0x4e, 0xee, 0x84, 0x13, 0xba, 0x23, 0xb3, 0x18, 0xdc,
0x72, 0x73, 0x3a, 0xc1, 0x7d, 0x4f, 0x44, 0x28, 0x20, 0x3a, 0x47, 0xf2, 0x63, 0xb7, 0x41, 0x34, 0x2b, 0xc4, 0x14, 0x4c, 0xf7, 0x05, 0x26, 0x91, 0xc1, 0x26, 0xe2, 0xb3, 0x8a, 0xfc, 0xa8, 0x61,
0x5c, 0x10, 0xe5, 0x5f, 0x69, 0x1f, 0x4b, 0xe2, 0x0e, 0xe8, 0xe8, 0x54, 0x14, 0xb9, 0x78, 0xf1, 0x8e, 0x96, 0x4b, 0xa8, 0xb3, 0xeb, 0x0b, 0xe2, 0x17, 0x91, 0x8a, 0x76, 0x2b, 0x49, 0x8b, 0x64,
0x47, 0x92, 0xf5, 0x80, 0x46, 0x90, 0xac, 0xf3, 0x74, 0x12, 0x61, 0x7f, 0x2d, 0x4a, 0xf0, 0x13, 0x17, 0xe0, 0xac, 0x8a, 0xdf, 0x72, 0xf5, 0x20, 0x7e, 0x7c, 0xe4, 0xe9, 0xaf, 0xa0, 0xa1, 0x59,
0x34, 0x28, 0x0b, 0x2b, 0x3a, 0x37, 0x4f, 0x23, 0x90, 0xda, 0xa3, 0x7c, 0xa8, 0x9f, 0x4d, 0x78, 0x10, 0xb7, 0xb2, 0x73, 0xe6, 0x15, 0x48, 0x20, 0xe4, 0xd7, 0x6f, 0xea, 0x2b, 0x38, 0x92, 0xc4,
0x30, 0xeb, 0x61, 0x0f, 0x48, 0xd6, 0x04, 0xb2, 0x02, 0x90, 0x37, 0x85, 0xfc, 0xe9, 0x67, 0xa4, 0x03, 0x97, 0xea, 0x8f, 0xc3, 0xaa, 0x5f, 0x93, 0xd3, 0x99, 0x5b, 0x13, 0x7d, 0x3e, 0x0d, 0x86,
0x7a, 0x0a, 0x9c, 0xc9, 0x37, 0x5d, 0x5d, 0x78, 0xee, 0x1c, 0xd4, 0xc3, 0x41, 0x3d, 0x08, 0x89, 0xe9, 0x8a, 0xf7, 0x57, 0x7f, 0x2a, 0x26, 0x35, 0x8f, 0x03, 0x08, 0x86, 0x72, 0x77, 0x3e, 0xc1,
0xf9, 0x30, 0x35, 0xa0, 0x22, 0x47, 0xa8, 0xc3, 0xc7, 0xdd, 0x3e, 0x7b, 0xe0, 0x39, 0xcc, 0x44, 0x8d, 0x5f, 0x44, 0x28, 0x20, 0x3a, 0x47, 0xf2, 0xf3, 0xc0, 0x7e, 0x34, 0x5c, 0x10, 0xe5, 0x5f,
0x57, 0xb3, 0x9d, 0x49, 0x4d, 0x7c, 0x3b, 0xb7, 0xcf, 0xa6, 0xb3, 0x36, 0xf9, 0x99, 0xc5, 0xb8, 0x69, 0x0f, 0x4b, 0xe2, 0x0e, 0xe8, 0xe8, 0x54, 0x14, 0xb9, 0x78, 0xf1, 0x47, 0x92, 0x35, 0xc1,
0x9b, 0x8f, 0x5a, 0x94, 0xce, 0x67, 0x20, 0x9b, 0x5a, 0xb7, 0x72, 0x1b, 0xa5, 0x2c, 0x10, 0xfb, 0x46, 0x90, 0xac, 0xf3, 0x74, 0x12, 0x61, 0x83, 0x31, 0x4a, 0xf0, 0xa3, 0x3d, 0x28, 0x0b, 0x2b,
0xc5, 0x50, 0xc2, 0x64, 0x0d, 0xbc, 0xc0, 0x03, 0x5e, 0xb3, 0x5e, 0x70, 0xde, 0x70, 0xf4, 0xf2, 0x3a, 0x37, 0x4f, 0x23, 0x90, 0xda, 0xa3, 0x7c, 0xa8, 0x9f, 0x4d, 0x78, 0x30, 0xeb, 0x62, 0x43,
0x5e, 0x23, 0x56, 0xcc, 0x7e, 0xb7, 0x72, 0xc3, 0xc1, 0xdb, 0x80, 0xa2, 0x0f, 0x41, 0x0b, 0x66, 0x4a, 0xd6, 0x04, 0xb2, 0x02, 0x90, 0x37, 0x85, 0xfc, 0xe9, 0x27, 0xa4, 0x7a, 0x0a, 0x9c, 0xc9,
0xd1, 0x23, 0xac, 0xbd, 0xda, 0x8f, 0xc6, 0x0d, 0xe5, 0x41, 0xec, 0x8f, 0x27, 0x29, 0xa4, 0x18, 0x37, 0x9e, 0x2e, 0x3c, 0x77, 0x0e, 0xea, 0xe2, 0xa0, 0x2e, 0x84, 0xc4, 0x7c, 0x98, 0x1a, 0x50,
0xe4, 0x11, 0xf7, 0xa4, 0x5a, 0x9d, 0x23, 0x5f, 0x0e, 0x1c, 0x74, 0x8b, 0xcd, 0xfe, 0x79, 0x4e, 0x91, 0x23, 0xd4, 0x71, 0x6d, 0xaf, 0xc7, 0x1e, 0x78, 0x0e, 0x33, 0xd1, 0xd5, 0x6c, 0x67, 0x52,
0x0c, 0xe5, 0xb3, 0xd6, 0x4c, 0x14, 0x5b, 0xc7, 0xaa, 0x42, 0xcf, 0x48, 0x7f, 0x08, 0xb1, 0x38, 0x13, 0x5f, 0x1b, 0xee, 0xb3, 0xe9, 0xac, 0x4d, 0x7e, 0x62, 0x31, 0x1e, 0x67, 0x40, 0x2d, 0x4a,
0x21, 0x6c, 0x0e, 0x09, 0x24, 0x4b, 0x7d, 0x4f, 0x91, 0x0a, 0x79, 0x92, 0x90, 0x00, 0xbf, 0xe6, 0xe7, 0x33, 0x90, 0x4d, 0xcd, 0xab, 0xdc, 0x46, 0x29, 0x0b, 0xc4, 0x86, 0x39, 0x94, 0x30, 0x59,
0xe2, 0x90, 0xc5, 0x56, 0x76, 0x76, 0x1b, 0xcf, 0x7a, 0x3c, 0x2c, 0xd6, 0x60, 0xea, 0x4c, 0xbb, 0x07, 0x33, 0x18, 0x00, 0xaf, 0x59, 0x33, 0x3c, 0xef, 0xb8, 0x0e, 0xf2, 0x66, 0x2b, 0x56, 0xcc,
0xec, 0xbf, 0x88, 0x23, 0xef, 0x92, 0x28, 0xae, 0x74, 0x45, 0x3d, 0xa3, 0xdd, 0x2b, 0xf9, 0x0d, 0xbe, 0x57, 0xb9, 0xe1, 0xe0, 0x6d, 0x40, 0xd1, 0x87, 0xa0, 0x05, 0xb3, 0xe8, 0x11, 0xd6, 0x5e,
0x23, 0x39, 0x9f, 0xc7, 0x31, 0x98, 0x77, 0x56, 0xf7, 0x49, 0x9c, 0x57, 0x67, 0x74, 0xad, 0x02, 0x6d, 0xc8, 0xe3, 0x8e, 0x7a, 0x5f, 0xb6, 0xcc, 0x92, 0x54, 0xb6, 0xe6, 0x5a, 0x9d, 0x23, 0x5f,
0x5c, 0x6b, 0xe0, 0xd4, 0x9a, 0x50, 0x70, 0x55, 0x54, 0x0f, 0xc7, 0xb6, 0xed, 0xf5, 0x56, 0x4d, 0x0e, 0xec, 0x7b, 0xc5, 0xdd, 0x8e, 0x79, 0x4e, 0x0c, 0xe5, 0xb3, 0xd6, 0x4d, 0x15, 0x7b, 0xe7,
0xd6, 0xc5, 0xe9, 0x92, 0xe9, 0x59, 0x46, 0x5e, 0x50, 0xcf, 0xcf, 0x68, 0x93, 0x8a, 0x4e, 0xd7, 0xaa, 0x42, 0xcf, 0x48, 0xbf, 0x0f, 0xb1, 0x38, 0x21, 0x6c, 0x0e, 0x09, 0x24, 0x4b, 0xfd, 0x81,
0xb1, 0x73, 0xd3, 0x92, 0x47, 0x2c, 0xda, 0xba, 0xad, 0x23, 0x4a, 0xe0, 0x6e, 0x65, 0xff, 0xbb, 0x22, 0x15, 0xf2, 0x24, 0x21, 0x01, 0x7e, 0xff, 0xc6, 0x21, 0x8b, 0xad, 0xec, 0x6c, 0xb7, 0x9e,
0x77, 0x27, 0x27, 0x27, 0x6d, 0xf2, 0x1f, 0xd1, 0x3c, 0x5e, 0x5d, 0x19, 0xd0, 0xe0, 0x07, 0xac, 0x75, 0x79, 0x58, 0xac, 0xc1, 0xd4, 0x57, 0x00, 0xb2, 0xff, 0x22, 0x3e, 0x12, 0x90, 0x44, 0x71,
0xb3, 0xc9, 0x04, 0x44, 0x46, 0x3c, 0x39, 0x91, 0x2a, 0x12, 0x03, 0x6d, 0x20, 0x60, 0x53, 0xf0, 0xa5, 0x2b, 0xea, 0x19, 0xf5, 0xae, 0xe4, 0x57, 0x9f, 0xe4, 0x7c, 0x1e, 0xc7, 0x60, 0xde, 0x59,
0x9e, 0x0b, 0x4f, 0x91, 0xb0, 0x11, 0x97, 0xfe, 0x61, 0x81, 0x58, 0x84, 0xda, 0x58, 0x08, 0x38, 0xdd, 0x27, 0x71, 0x5e, 0x9d, 0xd1, 0xb5, 0x0a, 0x70, 0xad, 0x81, 0x53, 0x6b, 0x42, 0xc1, 0x55,
0x93, 0xde, 0x68, 0x9e, 0x20, 0x1c, 0x68, 0x2a, 0xf1, 0x50, 0x60, 0x89, 0x78, 0x57, 0x99, 0x42, 0x51, 0x3d, 0x1c, 0xdb, 0xb6, 0xd7, 0x5b, 0x35, 0x59, 0x17, 0xc7, 0x23, 0xd3, 0xb3, 0x8c, 0xbc,
0x8e, 0xe2, 0x03, 0x84, 0xa2, 0xea, 0x87, 0xdf, 0xb8, 0xfa, 0x60, 0x0e, 0xab, 0x8a, 0x84, 0xb0, 0xa0, 0x9e, 0x9f, 0x6a, 0x27, 0x15, 0x9d, 0xae, 0x63, 0xe7, 0xa6, 0x25, 0xcf, 0x98, 0xb4, 0x75,
0x70, 0x08, 0x0e, 0x6c, 0x04, 0x83, 0xf7, 0xf2, 0xbe, 0x0b, 0xea, 0xd2, 0x99, 0x5e, 0x4d, 0x16, 0x5b, 0x47, 0x94, 0xc0, 0x5e, 0x65, 0xff, 0xbb, 0xb7, 0x27, 0x27, 0x27, 0x6d, 0xf2, 0x8f, 0x68,
0x00, 0x9b, 0x62, 0x19, 0x93, 0xe2, 0xc2, 0xa6, 0x11, 0xf6, 0xe4, 0x16, 0x20, 0xd3, 0x28, 0x11, 0x1e, 0xaf, 0xae, 0x0c, 0x68, 0xf0, 0x03, 0xd6, 0xd9, 0x64, 0x02, 0x22, 0x23, 0x03, 0x39, 0x91,
0xdf, 0xa1, 0x20, 0x8f, 0x02, 0x4c, 0x72, 0xff, 0x57, 0xce, 0x67, 0x84, 0xa5, 0x64, 0x1f, 0x72, 0x2a, 0x12, 0x03, 0x6d, 0x20, 0x60, 0x53, 0xf0, 0x9e, 0x0b, 0x4f, 0x91, 0xb0, 0x11, 0x97, 0xfe,
0x24, 0xe7, 0x8c, 0xf8, 0x23, 0xc9, 0x01, 0x9e, 0x12, 0x11, 0xe7, 0x40, 0x86, 0x20, 0x58, 0x2f, 0x61, 0x81, 0x58, 0x84, 0xda, 0x58, 0x08, 0x38, 0x93, 0xde, 0x68, 0x9e, 0x20, 0x1c, 0x68, 0x2a,
0x45, 0xdd, 0x84, 0x42, 0x59, 0x0c, 0xce, 0x0f, 0x62, 0x08, 0x56, 0x2a, 0x17, 0x62, 0xa6, 0xe2, 0x19, 0xa0, 0xc0, 0x12, 0xf1, 0xae, 0x32, 0x85, 0x1c, 0xc5, 0x07, 0x08, 0x45, 0xd5, 0x0f, 0xbf,
0xab, 0xa9, 0xec, 0xf3, 0x15, 0x70, 0xc4, 0x3c, 0x86, 0x8a, 0x6a, 0x45, 0x88, 0x16, 0xe1, 0x58, 0x72, 0xf5, 0x89, 0x21, 0x56, 0x15, 0x09, 0x61, 0xe1, 0x10, 0x1c, 0xd8, 0x08, 0x06, 0xef, 0xe5,
0x20, 0x11, 0xe4, 0x30, 0x66, 0xe8, 0xa6, 0x24, 0x0b, 0x86, 0xd2, 0x0b, 0x02, 0x4a, 0x8f, 0x1f, 0x7d, 0x17, 0xd4, 0xa5, 0x33, 0xbd, 0x9a, 0x2c, 0x00, 0x36, 0xc5, 0x32, 0x26, 0xc5, 0x85, 0x4d,
0x30, 0x82, 0x55, 0xcc, 0x13, 0x36, 0xe6, 0xda, 0xb8, 0x94, 0x3a, 0xcc, 0xd0, 0x87, 0xcc, 0xc3, 0x23, 0xec, 0xc9, 0x2d, 0x40, 0xa6, 0x51, 0x22, 0xbe, 0xdc, 0x41, 0x1e, 0x05, 0x98, 0xe4, 0xfe,
0xfb, 0x30, 0x7a, 0x0c, 0x95, 0x56, 0x9b, 0xb9, 0x71, 0x00, 0x1e, 0x34, 0xda, 0x87, 0x28, 0x48, 0x6f, 0x9c, 0xcf, 0x08, 0x4b, 0xc9, 0x3e, 0xe4, 0x48, 0xce, 0x19, 0xf1, 0x47, 0x92, 0x03, 0x3c,
0x61, 0x28, 0x31, 0xae, 0xf0, 0x44, 0x8c, 0x5a, 0x27, 0x61, 0x57, 0x8c, 0x20, 0x73, 0x20, 0x61, 0x26, 0x23, 0x0e, 0xc2, 0x0c, 0x41, 0xb0, 0x83, 0x14, 0x75, 0x13, 0x5b, 0xc3, 0x38, 0x38, 0x3f,
0x00, 0x33, 0x5b, 0xd2, 0x5c, 0x56, 0x36, 0xd9, 0xf1, 0xf4, 0x09, 0xa8, 0x49, 0x51, 0xb9, 0xf1, 0x89, 0x22, 0x58, 0xa9, 0x5c, 0x88, 0x99, 0x8a, 0xef, 0xcc, 0xb2, 0x0f, 0x7e, 0xc0, 0x11, 0xf3,
0x7b, 0x14, 0xd0, 0xe8, 0xb5, 0xe2, 0xb7, 0x99, 0x6f, 0xb0, 0xbb, 0x79, 0x15, 0xd9, 0x05, 0x99, 0x18, 0x2a, 0xaa, 0x15, 0x21, 0x5a, 0x84, 0x63, 0x81, 0x44, 0x90, 0xc3, 0x98, 0xa1, 0x9b, 0x92,
0xa8, 0x4f, 0x29, 0x88, 0xd1, 0x6c, 0x4e, 0xcf, 0xcc, 0x4a, 0x56, 0x44, 0xae, 0xd7, 0xef, 0x4d, 0x2c, 0x18, 0x4a, 0x2f, 0x08, 0x28, 0x3d, 0x7e, 0xf2, 0x09, 0x56, 0x31, 0x4f, 0xd8, 0x98, 0x6b,
0x01, 0xcd, 0x47, 0x23, 0xdf, 0xc3, 0xb3, 0x4d, 0xc4, 0xa8, 0x23, 0xfc, 0x56, 0x70, 0x1b, 0x54, 0xe3, 0x52, 0xea, 0x30, 0x43, 0x1f, 0x32, 0x0f, 0xef, 0xc3, 0xe8, 0x31, 0x54, 0x5a, 0x6d, 0xe6,
0x13, 0x0f, 0xb2, 0x18, 0x75, 0x7b, 0x07, 0x58, 0x0d, 0x18, 0xeb, 0xaa, 0x63, 0x2f, 0x86, 0x53, 0xc6, 0x01, 0x78, 0xd0, 0x68, 0x1f, 0xa2, 0x20, 0x85, 0xa1, 0xc4, 0xb8, 0xc2, 0x23, 0x41, 0x6a,
0xdb, 0x01, 0x89, 0x9b, 0xf0, 0x95, 0x73, 0x51, 0x48, 0xe6, 0x20, 0x2b, 0xbb, 0x8b, 0x99, 0x23, 0x9d, 0x84, 0x5d, 0x31, 0x82, 0xcc, 0x81, 0x84, 0x01, 0xcc, 0x2c, 0xe9, 0x6f, 0x8b, 0xe3, 0x37,
0x91, 0xdf, 0x83, 0xac, 0x77, 0x41, 0x95, 0xb9, 0x48, 0x14, 0xf2, 0xf0, 0x91, 0x16, 0x35, 0x9e, 0xa0, 0x26, 0x45, 0xe5, 0xc6, 0x2f, 0x78, 0xd6, 0x3b, 0xde, 0xb4, 0xd9, 0xcc, 0x4f, 0x18, 0xb8,
0x1b, 0x2a, 0xee, 0x20, 0x68, 0xe1, 0xd2, 0xb2, 0x2e, 0x8f, 0x6e, 0x10, 0x23, 0xeb, 0xd2, 0x5f, 0x79, 0x15, 0xe9, 0x81, 0x4c, 0xd4, 0xc7, 0x27, 0xc4, 0x68, 0x36, 0xa7, 0x67, 0x66, 0x65, 0x4b,
0x04, 0xec, 0x75, 0xeb, 0xd6, 0x1b, 0x37, 0xb9, 0xf2, 0x6a, 0xb9, 0xfb, 0x05, 0x55, 0x0c, 0x93, 0x53, 0x9b, 0xd6, 0x9b, 0x02, 0x9a, 0x8f, 0x46, 0xfe, 0x00, 0x0f, 0x77, 0x11, 0xa3, 0x8e, 0xf0,
0x39, 0xfc, 0x62, 0x83, 0x08, 0x98, 0x10, 0x96, 0x88, 0xf4, 0xd1, 0x2c, 0x51, 0xad, 0xab, 0x99, 0x5b, 0xc1, 0x6d, 0x50, 0x4d, 0x3c, 0xc9, 0x63, 0xd4, 0xed, 0x1d, 0x60, 0x35, 0x60, 0xcc, 0x53,
0xe2, 0x28, 0x97, 0x5f, 0xef, 0x56, 0x36, 0x3c, 0x7d, 0x3d, 0x77, 0x24, 0x78, 0xb6, 0x43, 0x04, 0xe7, 0x7e, 0x0c, 0xa7, 0xb6, 0x03, 0x12, 0x4f, 0x21, 0x54, 0xce, 0x45, 0x21, 0xb9, 0xd9, 0x5a,
0x05, 0x79, 0x24, 0x2a, 0x69, 0xe9, 0x71, 0xe5, 0xed, 0xf4, 0x4a, 0x79, 0x88, 0x42, 0x4c, 0x07, 0x5f, 0x75, 0x24, 0xf2, 0x0b, 0x9a, 0xf5, 0x2e, 0xa8, 0x32, 0x17, 0x89, 0x42, 0x9e, 0xbe, 0xd2,
0x85, 0x48, 0x95, 0x55, 0x0a, 0x50, 0x3f, 0x81, 0x9e, 0x1d, 0x64, 0xc1, 0x88, 0xac, 0x45, 0xac, 0xa2, 0xc6, 0x83, 0x53, 0xc5, 0x2d, 0x14, 0x2d, 0x5c, 0x5a, 0xd6, 0xe5, 0xd1, 0x0d, 0x62, 0x64,
0x22, 0x82, 0xc3, 0x12, 0x04, 0x87, 0x0a, 0xc3, 0x61, 0x21, 0xe4, 0xc5, 0x82, 0xdf, 0x2b, 0x71, 0x5d, 0xfa, 0x8b, 0x80, 0xbd, 0x6c, 0xdd, 0x7a, 0xe7, 0x2a, 0x57, 0x5e, 0x2d, 0x77, 0xbf, 0xa0,
0x1e, 0x8c, 0xfc, 0x2a, 0xed, 0xa9, 0x92, 0x2f, 0xec, 0x14, 0x74, 0xc0, 0xd6, 0xd1, 0xea, 0xa8, 0x8a, 0x61, 0x32, 0x87, 0x3f, 0xac, 0x1f, 0x01, 0x13, 0xc2, 0x12, 0x91, 0x3e, 0x9a, 0x25, 0xaa,
0x10, 0xaf, 0xa6, 0x4e, 0x21, 0x8c, 0xf5, 0x56, 0xdc, 0xa9, 0x38, 0xab, 0x97, 0x39, 0xd2, 0xd5, 0x75, 0x35, 0x53, 0x1c, 0xe5, 0xf2, 0xeb, 0x5e, 0x65, 0xc3, 0xd3, 0xd7, 0x73, 0x47, 0x82, 0x87,
0x96, 0xf8, 0xe1, 0x20, 0x88, 0xbc, 0xfb, 0xb6, 0x14, 0x83, 0x63, 0x83, 0x18, 0xda, 0x13, 0x8e, 0x5b, 0x44, 0x50, 0x90, 0x67, 0xc2, 0x92, 0x96, 0x1e, 0x57, 0xde, 0x4e, 0xaf, 0x94, 0x87, 0x28,
0x5e, 0x08, 0x6e, 0xe0, 0x7a, 0x20, 0x12, 0xe7, 0x43, 0x3c, 0xcc, 0x37, 0x4f, 0x5a, 0x35, 0x21, 0xc4, 0x74, 0x50, 0x88, 0x54, 0x59, 0xa5, 0x00, 0xf5, 0x13, 0xe8, 0xd9, 0x41, 0x16, 0x8c, 0xc8,
0x25, 0x29, 0xc3, 0xca, 0x0a, 0x89, 0xc2, 0xd9, 0x39, 0xf2, 0xe7, 0x1c, 0x36, 0x68, 0x14, 0x50, 0x5a, 0xc4, 0x2a, 0x22, 0x38, 0x2c, 0x41, 0x70, 0xa8, 0x30, 0x1c, 0x16, 0x42, 0x5e, 0x2c, 0xf8,
0x23, 0xf1, 0x1c, 0xa6, 0x11, 0x4a, 0xaf, 0x37, 0xf0, 0x03, 0x1f, 0x5d, 0x71, 0x4c, 0x02, 0x36, 0xbd, 0x12, 0x07, 0xe2, 0xc8, 0x2f, 0xd2, 0x9e, 0x2a, 0xf9, 0xc2, 0x4e, 0x41, 0x07, 0x6c, 0x1d,
0x86, 0xfc, 0x2b, 0x81, 0xca, 0x5d, 0xb8, 0x9c, 0x5f, 0xc1, 0x15, 0x06, 0xc2, 0x3b, 0x82, 0xa9, 0xad, 0x8e, 0x0a, 0xf1, 0x6a, 0xea, 0x14, 0xc2, 0x58, 0x77, 0xc5, 0x9d, 0x8a, 0xc3, 0x8a, 0x99,
0xab, 0xb9, 0x0b, 0xf5, 0xd3, 0x87, 0xed, 0xba, 0x25, 0xe7, 0xe0, 0xb4, 0x4c, 0xd0, 0x99, 0xa0, 0x23, 0x5d, 0x6d, 0x89, 0x1f, 0xf6, 0x83, 0x68, 0x70, 0xdf, 0x96, 0x62, 0x70, 0x6c, 0x10, 0x43,
0x1f, 0x1c, 0x60, 0x8c, 0xe6, 0x4f, 0x00, 0x00, 0x36, 0xec, 0xad, 0xf8, 0x65, 0x50, 0x8b, 0x4a, 0x7b, 0xc2, 0xd1, 0x0b, 0xc1, 0x0d, 0x5c, 0xf7, 0x45, 0xe2, 0x7c, 0x88, 0xa7, 0x19, 0xe7, 0x49,
0x99, 0x5e, 0x5c, 0xb1, 0x7b, 0x8e, 0x8e, 0x88, 0x8f, 0xa7, 0xda, 0x2d, 0x71, 0xc8, 0xf9, 0x15, 0xab, 0x26, 0xa4, 0x24, 0x65, 0x58, 0x59, 0x21, 0x51, 0x38, 0x3c, 0x48, 0xfe, 0x9c, 0xc3, 0x06,
0x81, 0xad, 0x3b, 0x7d, 0xea, 0x0b, 0xff, 0xab, 0xbe, 0x8c, 0xae, 0xca, 0xec, 0x06, 0xf3, 0x44, 0x8d, 0x02, 0x6a, 0x24, 0x9e, 0xc3, 0x34, 0x42, 0xe9, 0xf5, 0xfa, 0x7e, 0xe0, 0xa3, 0x2b, 0x8e,
0x6e, 0xb7, 0xc0, 0x7c, 0x87, 0xbe, 0xc7, 0x93, 0xed, 0xe3, 0x73, 0x9f, 0x26, 0xfb, 0x1d, 0xa2, 0x49, 0xc0, 0xc6, 0x90, 0x7f, 0x25, 0x50, 0xb9, 0x0b, 0x97, 0xf3, 0x0b, 0xb8, 0xc2, 0x40, 0x78,
0xf5, 0xa0, 0x92, 0x6a, 0x15, 0xbc, 0x13, 0x5f, 0x85, 0xee, 0x2d, 0x2a, 0x9d, 0x87, 0x74, 0xb1, 0x47, 0x30, 0x75, 0x35, 0x77, 0xa1, 0x7e, 0xfa, 0xb4, 0xa1, 0x57, 0x72, 0x10, 0x50, 0xcb, 0x04,
0x1e, 0x7f, 0x88, 0xf5, 0xfc, 0x63, 0xca, 0x66, 0x33, 0x5c, 0xab, 0xe2, 0x7e, 0x08, 0xd1, 0x4d, 0x9d, 0x09, 0xfa, 0xc1, 0x3e, 0xc6, 0x68, 0xfe, 0x0d, 0x00, 0xc0, 0x86, 0x07, 0x2b, 0x7e, 0x19,
0xe9, 0x56, 0xe1, 0xfc, 0x46, 0xbe, 0x33, 0xf0, 0x9a, 0x8c, 0xb6, 0x9b, 0x8e, 0xee, 0x85, 0xaf, 0xd4, 0xa2, 0x52, 0xa6, 0x17, 0x57, 0xec, 0x9e, 0xa3, 0x23, 0xe2, 0xe3, 0xa9, 0x76, 0x4b, 0x1c,
0xe8, 0xbf, 0x28, 0xe1, 0xc0, 0x76, 0x2a, 0x9b, 0xc6, 0x53, 0x8e, 0x01, 0xfb, 0xe1, 0x39, 0x06, 0x72, 0x7e, 0x45, 0x60, 0xeb, 0x56, 0xa7, 0xfa, 0x4d, 0x84, 0xab, 0x9e, 0x8c, 0xae, 0xca, 0xec,
0xbd, 0xa9, 0xb0, 0x6e, 0x3b, 0x95, 0xdd, 0x06, 0x9e, 0xcd, 0x4c, 0x14, 0x74, 0x6a, 0x4a, 0xa2, 0xfa, 0xf3, 0x44, 0x6e, 0xb7, 0xc0, 0x7c, 0x87, 0xfe, 0x80, 0x27, 0xdb, 0xc7, 0xe7, 0x3e, 0x4d,
0x77, 0x09, 0xaa, 0x81, 0xbb, 0x99, 0x51, 0x30, 0xcc, 0x96, 0xa3, 0x52, 0x9a, 0xdd, 0xac, 0x6f, 0xf6, 0x3b, 0x44, 0xeb, 0x41, 0x25, 0xd5, 0x2a, 0x78, 0x27, 0xbe, 0x0a, 0xdd, 0x5b, 0x54, 0x3a,
0x92, 0x39, 0x76, 0xd6, 0xe9, 0x86, 0x3a, 0x2e, 0xf7, 0x7a, 0xc8, 0xcd, 0xc5, 0xcd, 0x4a, 0xc3, 0x0f, 0xe9, 0x62, 0x3d, 0xfe, 0x10, 0xeb, 0xf9, 0xc7, 0x94, 0xcd, 0x66, 0xb8, 0x56, 0xc5, 0xfd,
0xbc, 0xf2, 0xc6, 0x8e, 0x39, 0x54, 0x77, 0x3b, 0xfa, 0xe5, 0x59, 0xfc, 0x53, 0xea, 0x05, 0xc5, 0x10, 0xa2, 0x9b, 0xd2, 0xad, 0xc2, 0x01, 0x96, 0x7c, 0x67, 0xe0, 0x25, 0x19, 0x6d, 0x37, 0x1d,
0xdd, 0x3a, 0x74, 0x77, 0x73, 0xd3, 0xea, 0x06, 0x1c, 0x4a, 0xca, 0xc9, 0x70, 0xbd, 0xd3, 0xad, 0xdd, 0x0b, 0x5f, 0xd1, 0x7f, 0x51, 0xc2, 0x81, 0xed, 0x54, 0x36, 0x8d, 0xa7, 0x1c, 0x03, 0xf6,
0x21, 0x2b, 0xf9, 0xfe, 0x55, 0xad, 0x71, 0x78, 0xcf, 0x17, 0x2b, 0xc7, 0xa1, 0x36, 0x37, 0xb1, 0xc3, 0x73, 0x0c, 0x7a, 0x53, 0x61, 0xdd, 0x76, 0x2a, 0xbb, 0x0d, 0x3c, 0x9b, 0x99, 0x28, 0xe8,
0x14, 0x90, 0x38, 0xd2, 0x59, 0x38, 0xe8, 0xb4, 0x8e, 0xae, 0x8e, 0x47, 0xcb, 0x04, 0xe4, 0x00, 0xd4, 0x94, 0x44, 0xef, 0x12, 0x54, 0x03, 0xb7, 0x73, 0xa3, 0x60, 0x98, 0x2d, 0x47, 0xa5, 0x34,
0x3f, 0x1b, 0xdf, 0x82, 0x0f, 0x0f, 0xa0, 0x6d, 0x27, 0x5a, 0xc9, 0xb7, 0xb6, 0x6a, 0xce, 0x6b, 0xbb, 0x59, 0xdf, 0x24, 0x73, 0xec, 0xac, 0xd3, 0x0d, 0x75, 0x5c, 0xee, 0xf5, 0x90, 0x9b, 0x8b,
0xac, 0x1d, 0xd3, 0xee, 0xb1, 0xa2, 0x27, 0x4a, 0x89, 0x2d, 0xb8, 0x7e, 0xa2, 0xdd, 0x77, 0x02, 0x9b, 0x95, 0x86, 0x79, 0xe5, 0x95, 0x1d, 0x73, 0xa8, 0xee, 0x76, 0xf4, 0xcb, 0xb3, 0xf8, 0xa7,
0x2c, 0x2e, 0x91, 0x45, 0xd6, 0x73, 0xee, 0x8a, 0xca, 0x33, 0x16, 0xa2, 0x2b, 0x89, 0xb8, 0xe8, 0xd4, 0x0b, 0x8a, 0xbb, 0x75, 0x68, 0x6f, 0x73, 0xd3, 0xea, 0x06, 0x1c, 0x4a, 0xca, 0xc9, 0x70,
0x57, 0x2a, 0x6b, 0xed, 0x64, 0xd5, 0x4d, 0xce, 0x55, 0xf5, 0x47, 0x6c, 0x26, 0x8b, 0x82, 0xfd, 0xbd, 0xd3, 0xad, 0x21, 0x2b, 0xf9, 0xfe, 0x55, 0xad, 0x71, 0x78, 0xcf, 0x17, 0x2b, 0xe7, 0xc1,
0xc7, 0xed, 0xad, 0xe4, 0xca, 0x99, 0xc8, 0x56, 0x41, 0x5f, 0xe4, 0x3a, 0x62, 0xc2, 0x37, 0x65, 0x36, 0x37, 0xb1, 0x14, 0x90, 0x38, 0xd3, 0x5a, 0x38, 0xe9, 0xb5, 0x8e, 0xae, 0x8e, 0x67, 0xeb,
0x7e, 0x98, 0xb9, 0x1c, 0xfc, 0xa2, 0xfd, 0x95, 0x13, 0x05, 0x57, 0xfd, 0xcf, 0x79, 0x16, 0x5f, 0x04, 0x64, 0x1f, 0x3f, 0xb4, 0xdf, 0x82, 0x0f, 0x4f, 0xe0, 0x6d, 0x27, 0x5a, 0xc9, 0xb7, 0xb6,
0x11, 0x5a, 0x2e, 0x0e, 0x9b, 0x96, 0x27, 0x01, 0x59, 0x4d, 0xbd, 0x86, 0x15, 0x1f, 0x69, 0x8c, 0x6a, 0xce, 0x4b, 0xac, 0x1d, 0x53, 0xef, 0x58, 0xd1, 0x13, 0xa5, 0xc4, 0x16, 0x5c, 0x3f, 0x52,
0xa2, 0xad, 0x48, 0x2a, 0xcc, 0xf3, 0xf8, 0x0c, 0xc2, 0x7a, 0x55, 0xa0, 0xdb, 0x62, 0xe8, 0xda, 0xef, 0xad, 0x00, 0x8b, 0x4b, 0x64, 0x91, 0xf5, 0x9c, 0x3d, 0x51, 0x79, 0xc6, 0x42, 0x74, 0x25,
0x3a, 0xa6, 0x2a, 0x17, 0x93, 0x73, 0x2f, 0x34, 0x65, 0xe9, 0x91, 0x1f, 0x4b, 0x0c, 0x20, 0x88, 0x11, 0x17, 0xfd, 0x4a, 0x65, 0xad, 0x9d, 0xac, 0xba, 0xc9, 0xb9, 0xaa, 0xfe, 0x80, 0xcd, 0x64,
0x5f, 0xc5, 0xf3, 0x15, 0xcb, 0x55, 0x86, 0xcb, 0x48, 0x05, 0x0c, 0x71, 0xe4, 0x96, 0xfe, 0x35, 0x51, 0xb0, 0xff, 0xb0, 0xbd, 0x95, 0x5c, 0x39, 0x13, 0xd9, 0x2a, 0xe8, 0x8b, 0x5c, 0x47, 0x4c,
0x11, 0x21, 0xda, 0x11, 0x03, 0x9f, 0x09, 0x97, 0xa3, 0x18, 0x82, 0xfe, 0xf0, 0x08, 0x12, 0x14, 0xf8, 0xa6, 0xcc, 0x0f, 0x33, 0x97, 0x83, 0xbf, 0x01, 0xf0, 0xc2, 0x91, 0x8a, 0xab, 0xde, 0xa7,
0xd1, 0x30, 0x74, 0xe9, 0x1f, 0xb0, 0xe4, 0xe1, 0x3d, 0x45, 0xab, 0x83, 0xb7, 0x51, 0xe7, 0x88, 0x3c, 0x8b, 0xaf, 0x08, 0x2d, 0x17, 0xa7, 0x6d, 0xcb, 0x93, 0x80, 0xac, 0xa6, 0x5e, 0xc3, 0x8a,
0x49, 0xd9, 0xde, 0x60, 0xe3, 0xe1, 0xed, 0x3b, 0x57, 0x78, 0x52, 0x44, 0x9d, 0x57, 0xb8, 0xdc, 0x8f, 0x34, 0x46, 0xd1, 0x56, 0x24, 0x15, 0x36, 0x18, 0xf0, 0x19, 0x84, 0xf5, 0xaa, 0x40, 0xb7,
0xb4, 0xc3, 0x4a, 0xc1, 0x10, 0x89, 0xfc, 0x6a, 0x6a, 0xf7, 0xb2, 0xdc, 0x5c, 0x51, 0x95, 0x97, 0xc5, 0xd0, 0xb5, 0x75, 0x4c, 0x55, 0x2e, 0x26, 0xe7, 0x5e, 0x68, 0xca, 0xd2, 0x23, 0x3f, 0x96,
0x55, 0xde, 0xa4, 0x29, 0xd8, 0x6d, 0xd9, 0xa1, 0x29, 0xdb, 0xfd, 0x2f, 0xe4, 0x3d, 0xea, 0x53, 0x18, 0x40, 0x10, 0xbf, 0x88, 0xe7, 0x2b, 0x96, 0xab, 0x0c, 0x97, 0x91, 0x0a, 0x18, 0xe2, 0xc8,
0xf8, 0x44, 0x24, 0x41, 0xb7, 0xd8, 0x23, 0x16, 0xb1, 0x10, 0x37, 0x07, 0x47, 0x98, 0xc1, 0xcb, 0x2d, 0xfd, 0xfd, 0x15, 0x21, 0xda, 0x11, 0x03, 0x9f, 0x09, 0x97, 0xa3, 0x18, 0x82, 0xfe, 0xf0,
0xac, 0x7e, 0x3e, 0x3b, 0x12, 0x5d, 0xb4, 0x75, 0x47, 0xb7, 0xce, 0x79, 0x4f, 0xe9, 0x93, 0xc2, 0x08, 0x12, 0x14, 0xd1, 0x30, 0x74, 0xe9, 0x1f, 0xb0, 0xe4, 0xe1, 0x3d, 0x45, 0xab, 0x83, 0xb7,
0x5a, 0xa8, 0x4e, 0xd6, 0xb2, 0xc4, 0x73, 0xc8, 0x12, 0xcb, 0x9d, 0xe5, 0xb4, 0x2c, 0x61, 0xcc, 0x51, 0xe7, 0x88, 0x49, 0xd9, 0xde, 0x60, 0xe3, 0xe1, 0xf5, 0x3b, 0x57, 0x78, 0x54, 0x46, 0x1d,
0x13, 0x43, 0xc3, 0x3e, 0x84, 0x27, 0xa6, 0xae, 0x04, 0xce, 0x54, 0xc9, 0x86, 0xcc, 0x65, 0x05, 0xd8, 0xb8, 0xdc, 0xb4, 0xc3, 0x4a, 0xc1, 0x10, 0x89, 0xfc, 0x6c, 0x6c, 0xf7, 0xb2, 0xdc, 0x5c,
0xad, 0xe2, 0xe5, 0x7a, 0x4b, 0xb1, 0xb9, 0x49, 0xc1, 0x2e, 0x50, 0xa8, 0x60, 0x96, 0x39, 0x88, 0x51, 0x95, 0x97, 0x55, 0x5e, 0xa5, 0x29, 0xd8, 0x6d, 0xd9, 0xa1, 0x29, 0xdb, 0xfd, 0x2f, 0xe4,
0x22, 0x48, 0xd5, 0x6d, 0xac, 0xe0, 0x12, 0x9d, 0x72, 0x26, 0x19, 0x51, 0xcc, 0x29, 0x3e, 0xb1, 0x3d, 0xea, 0xc7, 0x03, 0x12, 0x91, 0x04, 0xdd, 0x62, 0x8f, 0x58, 0xc4, 0x42, 0xdc, 0x1c, 0x1c,
0xe9, 0x94, 0x11, 0x2f, 0x8a, 0x63, 0x55, 0xbd, 0x61, 0x84, 0x97, 0xf9, 0xcb, 0x2b, 0x32, 0xfa, 0x61, 0x06, 0x2f, 0xb3, 0xfa, 0xf9, 0xec, 0x48, 0x74, 0xd1, 0xd6, 0x1d, 0xdd, 0x3a, 0xe7, 0x5d,
0x04, 0xf9, 0x25, 0x31, 0x92, 0x34, 0x8e, 0xa0, 0x46, 0x41, 0x6f, 0x92, 0x75, 0x08, 0x04, 0x81, 0xa5, 0x4f, 0x0a, 0x6b, 0xa1, 0x3a, 0x59, 0xcb, 0x12, 0xcf, 0x21, 0x4b, 0x2c, 0x77, 0x96, 0xd3,
0xca, 0x56, 0xec, 0x25, 0xc2, 0xdc, 0x42, 0xa1, 0x07, 0xf9, 0x12, 0x31, 0xf0, 0x4f, 0x69, 0xac, 0xb2, 0x84, 0x31, 0x4f, 0x0c, 0x0d, 0xfb, 0x10, 0x9e, 0x98, 0xba, 0x12, 0x38, 0x53, 0x25, 0x1b,
0x63, 0xc7, 0xff, 0xbd, 0xbc, 0x64, 0x04, 0xc3, 0x48, 0x0b, 0x1c, 0x2b, 0xc1, 0x7d, 0x5c, 0x17, 0x32, 0x97, 0x15, 0xb4, 0x8a, 0x97, 0xeb, 0x2d, 0xc5, 0xe6, 0x26, 0x05, 0xbb, 0x40, 0xa1, 0x82,
0x5c, 0x65, 0x4d, 0x72, 0x4e, 0xf9, 0xda, 0xfc, 0x80, 0x0a, 0x75, 0x0b, 0xd9, 0x5b, 0xe2, 0x23, 0x59, 0x66, 0x3f, 0x8a, 0x20, 0x55, 0xb7, 0xb1, 0x82, 0x4b, 0x74, 0xca, 0x99, 0x64, 0x44, 0x31,
0xd3, 0x52, 0xa7, 0xce, 0xe3, 0x28, 0x49, 0x46, 0x6c, 0xc8, 0x5f, 0x93, 0xcb, 0xed, 0x47, 0xa9, 0xa7, 0xf8, 0xc8, 0xa6, 0x53, 0x46, 0x06, 0x51, 0x1c, 0xab, 0xea, 0x0d, 0x23, 0xbc, 0xcc, 0x5f,
0x3b, 0x39, 0x02, 0x82, 0x7f, 0xc9, 0x66, 0x8d, 0xb9, 0xdb, 0xf7, 0xdb, 0x98, 0x7b, 0x0a, 0x36, 0x5e, 0x90, 0xd1, 0x47, 0xc8, 0x2f, 0x89, 0x91, 0xa4, 0x71, 0x04, 0x35, 0x0a, 0x7a, 0x93, 0xac,
0xcf, 0xa2, 0xe0, 0x5f, 0x62, 0x22, 0xd3, 0xa4, 0xd0, 0x12, 0xb9, 0x66, 0x01, 0x4f, 0x21, 0xaa, 0x43, 0x20, 0x08, 0x54, 0xb6, 0x62, 0x2f, 0x11, 0xe6, 0x16, 0x0a, 0x5d, 0xc8, 0x97, 0x88, 0x81,
0xa5, 0x39, 0x9b, 0xaf, 0x31, 0x76, 0xfd, 0x51, 0x9a, 0x0a, 0x72, 0x33, 0x84, 0x82, 0x1a, 0x84, 0x3f, 0x3e, 0xb2, 0x8e, 0x1d, 0xff, 0xef, 0xe6, 0x25, 0x23, 0x18, 0x46, 0x5a, 0xe0, 0x58, 0x09,
0x27, 0x66, 0xa6, 0x95, 0xfc, 0xfd, 0x3c, 0x16, 0x7f, 0x29, 0x22, 0xc7, 0xa3, 0x58, 0xbd, 0x7c, 0xee, 0xc3, 0xba, 0xe0, 0x2a, 0x6b, 0x92, 0x73, 0xca, 0xd7, 0xe6, 0x7b, 0x54, 0xa8, 0x5b, 0xc8,
0x45, 0x01, 0xb7, 0x88, 0x11, 0xde, 0x09, 0x45, 0xd0, 0xf8, 0x6f, 0x85, 0xb3, 0xda, 0x6e, 0x4b, 0xde, 0x12, 0x1f, 0x99, 0x96, 0x3a, 0x75, 0x1e, 0x47, 0x49, 0x32, 0x62, 0x43, 0xfe, 0x92, 0x5c,
0xb7, 0xbd, 0xd7, 0x15, 0xbd, 0x52, 0x42, 0x08, 0x89, 0x5c, 0x45, 0x62, 0x61, 0x56, 0xca, 0xe3, 0x6e, 0x3f, 0x48, 0xdd, 0xc9, 0x11, 0x10, 0xfc, 0xed, 0x9f, 0x35, 0xe6, 0x6e, 0xdf, 0x6d, 0x63,
0xdb, 0xdf, 0xcb, 0xb2, 0x81, 0xdf, 0x99, 0x9f, 0x8a, 0xde, 0x04, 0x58, 0xda, 0xd6, 0x72, 0x17, 0xee, 0x5b, 0xb0, 0x79, 0x16, 0x05, 0x7f, 0xbb, 0x8a, 0x4c, 0x93, 0x42, 0x4b, 0xe4, 0x9a, 0x05,
0x52, 0x81, 0x8f, 0xb0, 0xd4, 0x3b, 0x92, 0x00, 0x7c, 0x4d, 0x44, 0x0a, 0x99, 0x01, 0x55, 0x36, 0x3c, 0x85, 0xa8, 0x96, 0xe6, 0x6c, 0xbe, 0xc4, 0xd8, 0xf5, 0x07, 0x69, 0x2a, 0xc8, 0xcd, 0x10,
0xcf, 0xb3, 0xf4, 0xe7, 0x61, 0xec, 0x27, 0x65, 0x01, 0x14, 0xe4, 0x2e, 0x0e, 0x70, 0xe3, 0x1f, 0x0a, 0x6a, 0x10, 0x9e, 0x98, 0x99, 0x56, 0xf2, 0x77, 0x78, 0xac, 0x09, 0x10, 0xe5, 0x78, 0x14,
0xde, 0x80, 0x42, 0x07, 0x23, 0x9d, 0x58, 0x8c, 0x8a, 0x7c, 0xda, 0x63, 0xe0, 0xd0, 0x3d, 0x5e, 0xab, 0x97, 0x2f, 0x28, 0xe0, 0x16, 0x31, 0xc2, 0x3b, 0xa1, 0x08, 0x1a, 0xff, 0xad, 0x70, 0x56,
0x30, 0x9d, 0xd7, 0x0e, 0xd5, 0x9d, 0xdf, 0x16, 0x8f, 0xe7, 0x69, 0x65, 0x7a, 0xf4, 0x68, 0x17, 0xdb, 0x6d, 0xe9, 0xb6, 0xfb, 0xb2, 0xa2, 0x57, 0x4a, 0x08, 0x21, 0x91, 0xab, 0x48, 0x2c, 0xcc,
0xfb, 0x2d, 0x87, 0x1e, 0x0b, 0xbc, 0x79, 0xc0, 0x00, 0xb5, 0xe8, 0xd1, 0x89, 0x60, 0x1b, 0xf2, 0x4a, 0x79, 0x7c, 0xfb, 0x5b, 0x59, 0x36, 0xf0, 0x1b, 0xf3, 0x53, 0xd1, 0x9b, 0x00, 0x4b, 0xdb,
0x40, 0xf6, 0x48, 0x20, 0xa9, 0x28, 0x69, 0x2f, 0x9c, 0x15, 0xe4, 0x57, 0xc9, 0x05, 0xf8, 0x0b, 0x5a, 0xee, 0x42, 0x2a, 0xf0, 0x01, 0x96, 0x7a, 0x47, 0x12, 0x80, 0xaf, 0x89, 0x48, 0x21, 0x33,
0x04, 0xd1, 0x1d, 0x72, 0x93, 0x56, 0xc9, 0xe3, 0x1d, 0xb2, 0xab, 0x9c, 0x79, 0x1e, 0xea, 0xda, 0xa0, 0xca, 0xe6, 0x79, 0x96, 0xde, 0x3c, 0x8c, 0xfd, 0xa4, 0x2c, 0x80, 0x82, 0xdc, 0xc5, 0x09,
0x56, 0x34, 0x20, 0xb9, 0xf7, 0x73, 0x16, 0x94, 0x57, 0xfa, 0x95, 0xf3, 0x6c, 0x2a, 0x30, 0xe9, 0x76, 0xfc, 0xa9, 0x12, 0x28, 0x74, 0x30, 0xd2, 0x89, 0xc5, 0xa8, 0xc8, 0xa7, 0x5d, 0x06, 0x0e,
0x7c, 0x02, 0xaf, 0xc8, 0xe7, 0x86, 0xaa, 0xd1, 0x30, 0x06, 0x92, 0x70, 0x30, 0x99, 0x07, 0x28, 0x7d, 0xc0, 0x0b, 0xa6, 0xf3, 0xd2, 0xa9, 0xc2, 0xf3, 0xdb, 0xe2, 0xf9, 0x44, 0xad, 0x4c, 0x8f,
0x88, 0x02, 0x70, 0x29, 0x50, 0x0d, 0x6c, 0x89, 0x8e, 0xbb, 0xf2, 0x5e, 0x65, 0x1c, 0xe7, 0xbd, 0x03, 0x48, 0x74, 0xb3, 0x93, 0x73, 0x00, 0x94, 0x9f, 0x97, 0x7b, 0x01, 0xdf, 0x8d, 0x44, 0x57,
0x55, 0xcf, 0xa1, 0xc2, 0x15, 0xac, 0xe4, 0xd9, 0xf0, 0x01, 0x97, 0x70, 0x28, 0x96, 0x55, 0x9b, 0xc1, 0x31, 0x90, 0xb4, 0x82, 0x8a, 0x3d, 0x40, 0x01, 0x11, 0x80, 0x09, 0x42, 0xf6, 0xbc, 0x25,
0x6b, 0x81, 0xe0, 0x6a, 0x2a, 0x7b, 0xdd, 0x2b, 0x53, 0xd6, 0x4b, 0xf1, 0x45, 0x19, 0x31, 0x1e, 0x9a, 0xec, 0xca, 0x13, 0x95, 0x32, 0x9d, 0x77, 0x57, 0x2d, 0x4d, 0xb9, 0x77, 0x98, 0xf9, 0xd9,
0x63, 0x36, 0xc3, 0x56, 0xc1, 0x34, 0x7a, 0x80, 0xc1, 0xe6, 0x0e, 0xf1, 0x57, 0xf4, 0x10, 0x16, 0xf0, 0x01, 0xa7, 0x3c, 0x14, 0x62, 0xd0, 0xea, 0x5d, 0x20, 0xb8, 0x9a, 0xfa, 0x5d, 0x77, 0xcb,
0x3c, 0xb2, 0x45, 0x42, 0x70, 0xa4, 0xb9, 0x63, 0x2d, 0x34, 0x78, 0x88, 0x47, 0x38, 0xd7, 0xa0, 0x16, 0xf7, 0x52, 0x7c, 0x82, 0x46, 0x8c, 0xc7, 0x98, 0xcd, 0xb0, 0xb4, 0x9e, 0x46, 0x0f, 0x30,
0x4b, 0x14, 0x1a, 0x17, 0xbf, 0xc4, 0x23, 0x97, 0x2f, 0x94, 0x32, 0xf8, 0x58, 0x9e, 0x96, 0xc4, 0xd8, 0xdc, 0xb1, 0xcc, 0x15, 0x3d, 0x84, 0x05, 0x8f, 0x6c, 0x91, 0x10, 0x1c, 0x69, 0xee, 0x58,
0x06, 0x1a, 0x7f, 0x9b, 0xa0, 0xb5, 0x43, 0x71, 0x6a, 0x59, 0x61, 0xf0, 0x11, 0x0a, 0x83, 0x4a, 0x77, 0x0d, 0x1e, 0xe2, 0x99, 0xcf, 0x35, 0xe8, 0x12, 0x05, 0xc0, 0xa3, 0x86, 0x25, 0x1e, 0xac,
0x2e, 0xe8, 0x8f, 0xd7, 0xfd, 0x57, 0x0b, 0x1d, 0x6f, 0x24, 0xaa, 0xbc, 0x70, 0xe4, 0x8f, 0x49, 0xb4, 0x85, 0x51, 0x51, 0x06, 0x12, 0xcb, 0xe3, 0x95, 0xd8, 0x70, 0xe2, 0xaf, 0x13, 0xb4, 0x36,
0xca, 0xa7, 0xb3, 0xa0, 0x48, 0xbf, 0x52, 0x9e, 0xf3, 0xd5, 0x28, 0xf9, 0xe7, 0x73, 0x3e, 0xaa, 0x40, 0xa7, 0x96, 0x25, 0xd2, 0x1f, 0x20, 0x91, 0xae, 0xe4, 0x82, 0xfe, 0x70, 0xdd, 0x7b, 0xb1,
0xf7, 0x91, 0xb3, 0xed, 0xe6, 0x1a, 0x14, 0x24, 0x22, 0xb4, 0x97, 0xe5, 0x7b, 0xd8, 0xbe, 0x2f, 0x30, 0x18, 0x8c, 0x44, 0x55, 0x14, 0x8e, 0xfc, 0x31, 0x49, 0xf9, 0x74, 0x16, 0x14, 0xe9, 0x57,
0x45, 0x5e, 0x79, 0xc3, 0xc6, 0xc0, 0xae, 0x7d, 0x81, 0x23, 0xdc, 0xeb, 0x28, 0x94, 0xbf, 0xf2, 0xca, 0x73, 0xa4, 0x1a, 0x25, 0xff, 0x7a, 0x8e, 0x44, 0xf5, 0xbe, 0x6b, 0xb6, 0x3d, 0x5b, 0x83,
0xaf, 0xb6, 0x69, 0xb2, 0x47, 0xb8, 0x4b, 0x82, 0x5b, 0x26, 0xf8, 0x57, 0x03, 0xff, 0x17, 0x9c, 0x04, 0x5e, 0x84, 0xc2, 0xb2, 0xfc, 0x08, 0xdb, 0xdd, 0xa5, 0xc8, 0x2b, 0xaf, 0x68, 0xa4, 0xef,
0x8d, 0x75, 0x4e, 0x45, 0x50, 0x00, 0x00 0xea, 0xa3, 0x1f, 0xe1, 0xde, 0x40, 0xa1, 0x5c, 0x94, 0xbf, 0x0b, 0xa7, 0xc9, 0x1e, 0xe1, 0xae,
0x02, 0x6e, 0x31, 0xe0, 0xef, 0x12, 0xfe, 0x2f, 0xdb, 0x92, 0x54, 0xe1, 0xa7, 0x50, 0x00, 0x00
}; };
// Autogenerated from wled00/data/settings_dmx.htm, do not edit!! // Autogenerated from wled00/data/settings_dmx.htm, do not edit!!
const uint16_t PAGE_settings_dmx_length = 1324; const uint16_t PAGE_settings_dmx_length = 1324;
const uint8_t PAGE_settings_dmx[] PROGMEM = { const uint8_t PAGE_settings_dmx[] PROGMEM = {
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x13, 0x95, 0x56, 0x5b, 0x6f, 0xdb, 0x36, 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x0a, 0x95, 0x56, 0x5b, 0x6f, 0xdb, 0x36,
0x14, 0x7e, 0xd7, 0xaf, 0x60, 0xf9, 0x62, 0x09, 0x71, 0x25, 0x2b, 0x99, 0xbb, 0xd5, 0x91, 0x94, 0x14, 0x7e, 0xd7, 0xaf, 0x60, 0xf9, 0x62, 0x09, 0x71, 0x25, 0x2b, 0x99, 0xbb, 0xd5, 0x91, 0x94,
0xd5, 0x4e, 0xe0, 0x04, 0x68, 0xb2, 0xa2, 0x6e, 0xd7, 0x0d, 0xcb, 0x30, 0xd0, 0x12, 0x6d, 0xb1, 0xd5, 0x4e, 0xe0, 0x04, 0x68, 0xb2, 0xa2, 0x6e, 0xd7, 0x0d, 0xcb, 0x30, 0xd0, 0x12, 0x6d, 0xb1,
0x91, 0x48, 0x8d, 0xa4, 0xec, 0xb8, 0xc3, 0xfe, 0xfb, 0x0e, 0x45, 0x49, 0x76, 0xd3, 0xa6, 0x5d, 0x91, 0x48, 0x8d, 0xa4, 0xec, 0xb8, 0xc3, 0xfe, 0xfb, 0x0e, 0x45, 0x49, 0x76, 0xd3, 0xa6, 0x5d,
@ -725,7 +726,7 @@ const uint8_t PAGE_settings_dmx[] PROGMEM = {
// Autogenerated from wled00/data/settings_ui.htm, do not edit!! // Autogenerated from wled00/data/settings_ui.htm, do not edit!!
const uint16_t PAGE_settings_ui_length = 2784; const uint16_t PAGE_settings_ui_length = 2784;
const uint8_t PAGE_settings_ui[] PROGMEM = { const uint8_t PAGE_settings_ui[] PROGMEM = {
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x13, 0xad, 0x59, 0x6b, 0x73, 0xdb, 0xb8, 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x0a, 0xad, 0x59, 0x6b, 0x73, 0xdb, 0xb8,
0x15, 0xfd, 0xae, 0x5f, 0x81, 0x20, 0x19, 0xaf, 0x38, 0x66, 0x68, 0xd9, 0xd9, 0x4e, 0x13, 0x49, 0x15, 0xfd, 0xae, 0x5f, 0x81, 0x20, 0x19, 0xaf, 0x38, 0x66, 0x68, 0xd9, 0xd9, 0x4e, 0x13, 0x49,
0x94, 0x1b, 0x3f, 0x92, 0xb8, 0xe3, 0x34, 0x69, 0x64, 0x37, 0xbb, 0x93, 0xf1, 0x78, 0x21, 0x12, 0x94, 0x1b, 0x3f, 0x92, 0xb8, 0xe3, 0x34, 0x69, 0x64, 0x37, 0xbb, 0x93, 0xf1, 0x78, 0x21, 0x12,
0x92, 0x10, 0x83, 0x00, 0x97, 0x00, 0x6d, 0xab, 0x8a, 0xfe, 0x7b, 0xef, 0x05, 0x48, 0x89, 0x92, 0x92, 0x10, 0x83, 0x00, 0x97, 0x00, 0x6d, 0xab, 0x8a, 0xfe, 0x7b, 0xef, 0x05, 0x48, 0x89, 0x92,
@ -905,7 +906,7 @@ const uint8_t PAGE_settings_ui[] PROGMEM = {
// Autogenerated from wled00/data/settings_sync.htm, do not edit!! // Autogenerated from wled00/data/settings_sync.htm, do not edit!!
const uint16_t PAGE_settings_sync_length = 2814; const uint16_t PAGE_settings_sync_length = 2814;
const uint8_t PAGE_settings_sync[] PROGMEM = { const uint8_t PAGE_settings_sync[] PROGMEM = {
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x13, 0x95, 0x1a, 0x5b, 0x77, 0xda, 0x38, 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x0a, 0x95, 0x1a, 0x5b, 0x77, 0xda, 0x38,
0xf3, 0xdd, 0xbf, 0x42, 0xeb, 0x87, 0x6e, 0xd8, 0x12, 0x30, 0x10, 0x68, 0x4a, 0xb0, 0xfb, 0x85, 0xf3, 0xdd, 0xbf, 0x42, 0xeb, 0x87, 0x6e, 0xd8, 0x12, 0x30, 0x10, 0x68, 0x4a, 0xb0, 0xfb, 0x85,
0x90, 0x26, 0x39, 0xdb, 0x34, 0x14, 0xd2, 0xed, 0xee, 0xd3, 0x1e, 0x61, 0x0b, 0x70, 0xb0, 0x2d, 0x90, 0x26, 0x39, 0xdb, 0x34, 0x14, 0xd2, 0xed, 0xee, 0xd3, 0x1e, 0x61, 0x0b, 0x70, 0xb0, 0x2d,
0xaf, 0x25, 0xe7, 0x72, 0xf6, 0xec, 0x7f, 0xff, 0x66, 0x24, 0xdb, 0x80, 0xb9, 0xf6, 0x21, 0x46, 0xaf, 0x25, 0xe7, 0x72, 0xf6, 0xec, 0x7f, 0xff, 0x66, 0x24, 0xdb, 0x80, 0xb9, 0xf6, 0x21, 0x46,
@ -1087,7 +1088,7 @@ const uint8_t PAGE_settings_sync[] PROGMEM = {
// Autogenerated from wled00/data/settings_time.htm, do not edit!! // Autogenerated from wled00/data/settings_time.htm, do not edit!!
const uint16_t PAGE_settings_time_length = 3013; const uint16_t PAGE_settings_time_length = 3013;
const uint8_t PAGE_settings_time[] PROGMEM = { const uint8_t PAGE_settings_time[] PROGMEM = {
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x13, 0xcd, 0x1a, 0xfd, 0x73, 0xda, 0xb8, 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x0a, 0xcd, 0x1a, 0xfd, 0x73, 0xda, 0xb8,
0xf2, 0x77, 0xff, 0x15, 0x8a, 0xdb, 0xc9, 0xc1, 0x85, 0xef, 0x94, 0x16, 0x02, 0x76, 0x8f, 0x00, 0xf2, 0x77, 0xff, 0x15, 0x8a, 0xdb, 0xc9, 0xc1, 0x85, 0xef, 0x94, 0x16, 0x02, 0x76, 0x8f, 0x00,
0x6d, 0xda, 0x06, 0x92, 0x39, 0xe8, 0xe5, 0x5d, 0x3f, 0xe6, 0x2a, 0x6c, 0x01, 0x4e, 0x8c, 0xcc, 0x6d, 0xda, 0x06, 0x92, 0x39, 0xe8, 0xe5, 0x5d, 0x3f, 0xe6, 0x2a, 0x6c, 0x01, 0x4e, 0x8c, 0xcc,
0xb3, 0xe4, 0x90, 0xbc, 0x34, 0xff, 0xfb, 0x5b, 0x49, 0xb6, 0xc1, 0x0e, 0x26, 0x69, 0xef, 0xde, 0xb3, 0xe4, 0x90, 0xbc, 0x34, 0xff, 0xfb, 0x5b, 0x49, 0xb6, 0xc1, 0x0e, 0x26, 0x69, 0xef, 0xde,
@ -1282,7 +1283,7 @@ const uint8_t PAGE_settings_time[] PROGMEM = {
// Autogenerated from wled00/data/settings_sec.htm, do not edit!! // Autogenerated from wled00/data/settings_sec.htm, do not edit!!
const uint16_t PAGE_settings_sec_length = 1936; const uint16_t PAGE_settings_sec_length = 1936;
const uint8_t PAGE_settings_sec[] PROGMEM = { const uint8_t PAGE_settings_sec[] PROGMEM = {
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x13, 0x95, 0x58, 0x6b, 0x6f, 0xdb, 0xb8, 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x0a, 0x95, 0x58, 0x6b, 0x6f, 0xdb, 0xb8,
0x12, 0xfd, 0xae, 0x5f, 0x41, 0xab, 0x40, 0xd7, 0x06, 0x14, 0x29, 0x71, 0xe2, 0x36, 0x0f, 0xcb, 0x12, 0xfd, 0xae, 0x5f, 0x41, 0xab, 0x40, 0xd7, 0x06, 0x14, 0x29, 0x71, 0xe2, 0x36, 0x0f, 0xcb,
0xbd, 0x79, 0x38, 0x9b, 0x00, 0x49, 0x13, 0xc4, 0xee, 0x76, 0x2f, 0x16, 0x8b, 0x82, 0x96, 0xc6, 0xbd, 0x79, 0x38, 0x9b, 0x00, 0x49, 0x13, 0xc4, 0xee, 0x76, 0x2f, 0x16, 0x8b, 0x82, 0x96, 0xc6,
0x16, 0x6b, 0x99, 0xd4, 0x92, 0x54, 0x5c, 0xdf, 0x6e, 0xff, 0xfb, 0x9d, 0xa1, 0x24, 0xdb, 0x49, 0x16, 0x6b, 0x99, 0xd4, 0x92, 0x54, 0x5c, 0xdf, 0x6e, 0xff, 0xfb, 0x9d, 0xa1, 0x24, 0xdb, 0x49,
@ -1409,7 +1410,7 @@ const uint8_t PAGE_settings_sec[] PROGMEM = {
// Autogenerated from wled00/data/settings_um.htm, do not edit!! // Autogenerated from wled00/data/settings_um.htm, do not edit!!
const uint16_t PAGE_settings_um_length = 1767; const uint16_t PAGE_settings_um_length = 1767;
const uint8_t PAGE_settings_um[] PROGMEM = { const uint8_t PAGE_settings_um[] PROGMEM = {
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x13, 0xa5, 0x57, 0x6d, 0x6f, 0xdb, 0x38, 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x0a, 0xa5, 0x57, 0x6d, 0x6f, 0xdb, 0x38,
0x12, 0xfe, 0xee, 0x5f, 0xc1, 0xb0, 0x41, 0x22, 0xc1, 0x8a, 0x6c, 0x37, 0xdb, 0xdb, 0xd4, 0x36, 0x12, 0xfe, 0xee, 0x5f, 0xc1, 0xb0, 0x41, 0x22, 0xc1, 0x8a, 0x6c, 0x37, 0xdb, 0xdb, 0xd4, 0x36,
0xe5, 0xdd, 0xf4, 0xe5, 0x1a, 0xa0, 0xbd, 0x04, 0x48, 0x77, 0x0f, 0x87, 0x20, 0xd8, 0xc8, 0xd2, 0xe5, 0xdd, 0xf4, 0xe5, 0x1a, 0xa0, 0xbd, 0x04, 0x48, 0x77, 0x0f, 0x87, 0x20, 0xd8, 0xc8, 0xd2,
0xc8, 0xe6, 0x46, 0x22, 0x05, 0x92, 0xb2, 0x93, 0x73, 0xfc, 0xdf, 0x77, 0x48, 0xc9, 0xb2, 0xdd, 0xc8, 0xe6, 0x46, 0x22, 0x05, 0x92, 0xb2, 0x93, 0x73, 0xfc, 0xdf, 0x77, 0x48, 0xc9, 0xb2, 0xdd,
@ -1526,7 +1527,7 @@ const uint8_t PAGE_settings_um[] PROGMEM = {
// Autogenerated from wled00/data/settings_pin.htm, do not edit!! // Autogenerated from wled00/data/settings_pin.htm, do not edit!!
const uint16_t PAGE_settings_pin_length = 549; const uint16_t PAGE_settings_pin_length = 549;
const uint8_t PAGE_settings_pin[] PROGMEM = { const uint8_t PAGE_settings_pin[] PROGMEM = {
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x13, 0x95, 0x53, 0x5d, 0x6f, 0xd3, 0x30, 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x0a, 0x95, 0x53, 0x5d, 0x6f, 0xd3, 0x30,
0x14, 0x7d, 0xcf, 0xaf, 0xf0, 0x8c, 0x34, 0xb5, 0x52, 0xdb, 0x8c, 0x09, 0x24, 0xc4, 0x92, 0x00, 0x14, 0x7d, 0xcf, 0xaf, 0xf0, 0x8c, 0x34, 0xb5, 0x52, 0xdb, 0x8c, 0x09, 0x24, 0xc4, 0x92, 0x00,
0x85, 0x49, 0xec, 0x01, 0x56, 0xa9, 0xbc, 0xf0, 0x34, 0xb9, 0xf6, 0x4d, 0xe3, 0xd5, 0xb1, 0x23, 0x85, 0x49, 0xec, 0x01, 0x56, 0xa9, 0xbc, 0xf0, 0x34, 0xb9, 0xf6, 0x4d, 0xe3, 0xd5, 0xb1, 0x23,
0xfb, 0xa6, 0xa1, 0x9b, 0xf8, 0xef, 0x5c, 0x27, 0xfd, 0xd8, 0x26, 0x21, 0xc1, 0x4b, 0x9c, 0x73, 0xfb, 0xa6, 0xa1, 0x9b, 0xf8, 0xef, 0x5c, 0x27, 0xfd, 0xd8, 0x26, 0x21, 0xc1, 0x4b, 0x9c, 0x73,

File diff suppressed because it is too large Load Diff

View File

@ -219,13 +219,14 @@ void changeColor(uint32_t c, int16_t cct=-1)
if (!seg.isActive() || !seg.isSelected()) continue; if (!seg.isActive() || !seg.isSelected()) continue;
byte capabilities = seg.getLightCapabilities(); byte capabilities = seg.getLightCapabilities();
uint32_t mask = 0; uint32_t mask = 0;
bool isRGB = GET_BIT(capabilities, 0); // when RGBW_MODE_AUTO_ACCURATE this is always true bool isRGB = GET_BIT(capabilities, 0); // is segment RGB capable
bool hasW = GET_BIT(capabilities, 1); bool hasW = GET_BIT(capabilities, 1); // do we have white/CCT channel
bool isCCT = GET_BIT(capabilities, 2); bool isCCT = GET_BIT(capabilities, 2); // is segment CCT capable
bool wSlider = GET_BIT(capabilities, 3); // is white auto calculated (white slider NOT shown in UI)
if (isRGB) mask |= 0x00FFFFFF; // RGB if (isRGB) mask |= 0x00FFFFFF; // RGB
if (hasW) mask |= 0xFF000000; // white if (hasW) mask |= 0xFF000000; // white
if (hasW && (strip.autoWhiteMode == RGBW_MODE_AUTO_ACCURATE) && (c & 0xFF000000)) { // white channel & white specified if (hasW && !wSlider && (c & 0xFF000000)) { // segment has white channel & white channel is auto calculated & white specified
seg.setColor(0, c | 0xFFFFFF, i); // for accurate mode we fake white seg.setColor(0, c | 0xFFFFFF, i); // for accurate/brighter mode we fake white (since button may not set white color to 0xFFFFFF)
} else if (c & mask) seg.setColor(0, c & mask, i); // only apply if not black } else if (c & mask) seg.setColor(0, c & mask, i); // only apply if not black
if (isCCT && cct >= 0) seg.setCCT(cct, i); if (isCCT && cct >= 0) seg.setCCT(cct, i);
} }
@ -235,13 +236,14 @@ void changeColor(uint32_t c, int16_t cct=-1)
WS2812FX::Segment& seg = strip.getSegment(i); WS2812FX::Segment& seg = strip.getSegment(i);
byte capabilities = seg.getLightCapabilities(); byte capabilities = seg.getLightCapabilities();
uint32_t mask = 0; uint32_t mask = 0;
bool isRGB = GET_BIT(capabilities, 0); bool isRGB = GET_BIT(capabilities, 0); // is segment RGB capable
bool hasW = GET_BIT(capabilities, 1); bool hasW = GET_BIT(capabilities, 1); // do we have white/CCT channel
bool isCCT = GET_BIT(capabilities, 2); bool isCCT = GET_BIT(capabilities, 2); // is segment CCT capable
bool wSlider = GET_BIT(capabilities, 3); // is white auto calculated (white slider NOT shown in UI)
if (isRGB) mask |= 0x00FFFFFF; // RGB if (isRGB) mask |= 0x00FFFFFF; // RGB
if (hasW) mask |= 0xFF000000; // white if (hasW) mask |= 0xFF000000; // white
if (hasW && (strip.autoWhiteMode == RGBW_MODE_AUTO_ACCURATE) && (c & 0xFF000000)) { // white channel & white specified if (hasW && !wSlider && (c & 0xFF000000)) { // segment has white channel & white channel is auto calculated & white specified
seg.setColor(0, c | 0xFFFFFF, i); // for accurate mode we fake white seg.setColor(0, c | 0xFFFFFF, i); // for accurate/brighter mode we fake white (since button may not set white color to 0xFFFFFF)
} else if (c & mask) seg.setColor(0, c & mask, i); // only apply if not black } else if (c & mask) seg.setColor(0, c & mask, i); // only apply if not black
if (isCCT && cct >= 0) seg.setCCT(cct, i); if (isCCT && cct >= 0) seg.setCCT(cct, i);
setValuesFromMainSeg(); setValuesFromMainSeg();

View File

@ -76,7 +76,7 @@ void handleSettingsSet(AsyncWebServerRequest *request, byte subPage)
} }
} }
uint8_t colorOrder, type, skip; uint8_t colorOrder, type, skip, awmode;
uint16_t length, start; uint16_t length, start;
uint8_t pins[5] = {255, 255, 255, 255, 255}; uint8_t pins[5] = {255, 255, 255, 255, 255};
@ -85,8 +85,6 @@ void handleSettingsSet(AsyncWebServerRequest *request, byte subPage)
cctFromRgb = request->hasArg(F("CR")); cctFromRgb = request->hasArg(F("CR"));
strip.cctBlending = request->arg(F("CB")).toInt(); strip.cctBlending = request->arg(F("CB")).toInt();
Bus::setCCTBlend(strip.cctBlending); Bus::setCCTBlend(strip.cctBlending);
strip.autoWhiteMode = (request->arg(F("AW")).toInt());
Bus::setAutoWhiteMode(strip.autoWhiteMode);
strip.setTargetFps(request->arg(F("FR")).toInt()); strip.setTargetFps(request->arg(F("FR")).toInt());
for (uint8_t s = 0; s < WLED_MAX_BUSSES; s++) { for (uint8_t s = 0; s < WLED_MAX_BUSSES; s++) {
@ -98,6 +96,7 @@ void handleSettingsSet(AsyncWebServerRequest *request, byte subPage)
char cv[4] = "CV"; cv[2] = 48+s; cv[3] = 0; //strip reverse char cv[4] = "CV"; cv[2] = 48+s; cv[3] = 0; //strip reverse
char sl[4] = "SL"; sl[2] = 48+s; sl[3] = 0; //skip 1st LED char sl[4] = "SL"; sl[2] = 48+s; sl[3] = 0; //skip 1st LED
char rf[4] = "RF"; rf[2] = 48+s; rf[3] = 0; //refresh required char rf[4] = "RF"; rf[2] = 48+s; rf[3] = 0; //refresh required
char aw[4] = "AW"; aw[2] = 48+s; aw[3] = 0; //auto white mode
if (!request->hasArg(lp)) { if (!request->hasArg(lp)) {
DEBUG_PRINTLN(F("No data.")); break; DEBUG_PRINTLN(F("No data.")); break;
} }
@ -116,10 +115,10 @@ void handleSettingsSet(AsyncWebServerRequest *request, byte subPage)
} else { } else {
break; // no parameter break; // no parameter
} }
awmode = request->arg(aw).toInt();
// actual finalization is done in WLED::loop() (removing old busses and adding new) // actual finalization is done in WLED::loop() (removing old busses and adding new)
if (busConfigs[s] != nullptr) delete busConfigs[s]; if (busConfigs[s] != nullptr) delete busConfigs[s];
busConfigs[s] = new BusConfig(type, pins, start, length, colorOrder, request->hasArg(cv), skip); busConfigs[s] = new BusConfig(type, pins, start, length, colorOrder, request->hasArg(cv), skip, awmode);
doInitBusses = true; doInitBusses = true;
} }

View File

@ -340,7 +340,6 @@ void getSettingsJS(byte subPage, char* dest)
sappend('c',SET_F("CR"),cctFromRgb); sappend('c',SET_F("CR"),cctFromRgb);
sappend('v',SET_F("CB"),strip.cctBlending); sappend('v',SET_F("CB"),strip.cctBlending);
sappend('v',SET_F("FR"),strip.getTargetFps()); sappend('v',SET_F("FR"),strip.getTargetFps());
sappend('v',SET_F("AW"),strip.autoWhiteMode);
for (uint8_t s=0; s < busses.getNumBusses(); s++) { for (uint8_t s=0; s < busses.getNumBusses(); s++) {
Bus* bus = busses.getBus(s); Bus* bus = busses.getBus(s);
@ -353,6 +352,7 @@ void getSettingsJS(byte subPage, char* dest)
char cv[4] = "CV"; cv[2] = 48+s; cv[3] = 0; //strip reverse char cv[4] = "CV"; cv[2] = 48+s; cv[3] = 0; //strip reverse
char sl[4] = "SL"; sl[2] = 48+s; sl[3] = 0; //skip 1st LED char sl[4] = "SL"; sl[2] = 48+s; sl[3] = 0; //skip 1st LED
char rf[4] = "RF"; rf[2] = 48+s; rf[3] = 0; //off refresh char rf[4] = "RF"; rf[2] = 48+s; rf[3] = 0; //off refresh
char aw[4] = "AW"; aw[2] = 48+s; aw[3] = 0; //auto white mode
oappend(SET_F("addLEDs(1);")); oappend(SET_F("addLEDs(1);"));
uint8_t pins[5]; uint8_t pins[5];
uint8_t nPins = bus->getPins(pins); uint8_t nPins = bus->getPins(pins);
@ -367,6 +367,7 @@ void getSettingsJS(byte subPage, char* dest)
sappend('c',cv,bus->reversed); sappend('c',cv,bus->reversed);
sappend('c',sl,bus->skippedLeds()); sappend('c',sl,bus->skippedLeds());
sappend('c',rf,bus->isOffRefreshRequired()); sappend('c',rf,bus->isOffRefreshRequired());
sappend('v',aw,bus->getAutoWhiteMode());
} }
sappend('v',SET_F("MA"),strip.ablMilliampsMax); sappend('v',SET_F("MA"),strip.ablMilliampsMax);
sappend('v',SET_F("LA"),strip.milliampsPerLed); sappend('v',SET_F("LA"),strip.milliampsPerLed);