Browse Source

led: fixup findme-wifi and relays modes

Renamings, and fix duplicate code paths and actually use all of relays
for the status check instead of just one (like the FOLLOW does)
pull/2508/head
Maxim Prokhorov 2 years ago
parent
commit
5865654950
24 changed files with 7137 additions and 7137 deletions
  1. +4
    -4
      code/espurna/config/types.h
  2. BIN
      code/espurna/data/index.all.html.gz
  3. BIN
      code/espurna/data/index.curtain.html.gz
  4. BIN
      code/espurna/data/index.garland.html.gz
  5. BIN
      code/espurna/data/index.light.html.gz
  6. BIN
      code/espurna/data/index.lightfox.html.gz
  7. BIN
      code/espurna/data/index.rfbridge.html.gz
  8. BIN
      code/espurna/data/index.rfm69.html.gz
  9. BIN
      code/espurna/data/index.sensor.html.gz
  10. BIN
      code/espurna/data/index.small.html.gz
  11. BIN
      code/espurna/data/index.thermostat.html.gz
  12. +28
    -29
      code/espurna/led.cpp
  13. +4
    -4
      code/espurna/led.h
  14. +103
    -102
      code/espurna/static/index.all.html.gz.h
  15. +1354
    -1354
      code/espurna/static/index.curtain.html.gz.h
  16. +1320
    -1320
      code/espurna/static/index.garland.html.gz.h
  17. +66
    -66
      code/espurna/static/index.light.html.gz.h
  18. +1316
    -1316
      code/espurna/static/index.lightfox.html.gz.h
  19. +1357
    -1357
      code/espurna/static/index.rfbridge.html.gz.h
  20. +65
    -65
      code/espurna/static/index.rfm69.html.gz.h
  21. +117
    -117
      code/espurna/static/index.sensor.html.gz.h
  22. +61
    -61
      code/espurna/static/index.small.html.gz.h
  23. +1340
    -1340
      code/espurna/static/index.thermostat.html.gz.h
  24. +2
    -2
      code/html/index.html

+ 4
- 4
code/espurna/config/types.h View File

@ -189,14 +189,14 @@
#define LED_MODE_MANUAL LedMode::Manual // LED will be managed manually (OFF by default)
#define LED_MODE_WIFI LedMode::WiFi // LED will blink according to the WIFI status
#define LED_MODE_FOLLOW LedMode::Follow // LED will follow state of linked LED#_RELAY relay ID
#define LED_MODE_FOLLOW_INVERSE LedMode::FollowInverse // LED will follow the opposite state of linked LED#_RELAY relay ID
#define LED_MODE_FOLLOW LedMode::Relay // LED will follow state of linked LED#_RELAY relay ID
#define LED_MODE_FOLLOW_INVERSE LedMode::RelayInverse // LED will follow the opposite state of linked LED#_RELAY relay ID
#define LED_MODE_FINDME LedMode::FindMe // LED will be ON if all relays are OFF
#define LED_MODE_FINDME_WIFI LedMode::FindMeWiFi // A mixture between WIFI and FINDME
#define LED_MODE_ON LedMode::On // LED always ON
#define LED_MODE_OFF LedMode::Off // LED always OFF
#define LED_MODE_RELAY LedMode::Relay // If any relay is ON, LED will be ON, otherwise OFF
#define LED_MODE_RELAY_WIFI LedMode::RelayWiFi // A mixture between WIFI and RELAY, the reverse of MIXED
#define LED_MODE_RELAY LedMode::Relays // If any relay is ON, LED will be ON, otherwise OFF
#define LED_MODE_RELAY_WIFI LedMode::RelaysWiFi // A mixture between WIFI and RELAY, the reverse of MIXED
// -----------------------------------------------------------------------------
// UI


BIN
code/espurna/data/index.all.html.gz View File


BIN
code/espurna/data/index.curtain.html.gz View File


BIN
code/espurna/data/index.garland.html.gz View File


BIN
code/espurna/data/index.light.html.gz View File


BIN
code/espurna/data/index.lightfox.html.gz View File


BIN
code/espurna/data/index.rfbridge.html.gz View File


BIN
code/espurna/data/index.rfm69.html.gz View File


BIN
code/espurna/data/index.sensor.html.gz View File


BIN
code/espurna/data/index.small.html.gz View File


BIN
code/espurna/data/index.thermostat.html.gz View File


+ 28
- 29
code/espurna/led.cpp View File

@ -381,29 +381,30 @@ alignas(4) static constexpr char On[] PROGMEM = "on";
alignas(4) static constexpr char Off[] PROGMEM = "off";
#if RELAY_SUPPORT
alignas(4) static constexpr char Follow[] PROGMEM = "follow";
alignas(4) static constexpr char FollowInverse[] PROGMEM = "follow-inv";
alignas(4) static constexpr char FindMe[] PROGMEM = "find-me";
alignas(4) static constexpr char FindMeWiFi[] PROGMEM = "find-me+wifi";
alignas(4) static constexpr char Relay[] PROGMEM = "relay";
alignas(4) static constexpr char RelayWiFi[] PROGMEM = "relay+wifi";
alignas(4) static constexpr char RelayInverse[] PROGMEM = "relay-inverse";
alignas(4) static constexpr char FindMe[] PROGMEM = "findme";
alignas(4) static constexpr char FindMeWiFi[] PROGMEM = "findme-wifi";
alignas(4) static constexpr char Relays[] PROGMEM = "relays";
alignas(4) static constexpr char RelaysWiFi[] PROGMEM = "relays-wifi";
#endif
static constexpr const EnumOption<LedMode> LedModeOptions[] PROGMEM {
{LedMode::Manual, Manual},
{LedMode::WiFi, WiFi},
#if RELAY_SUPPORT
{LedMode::Follow, Follow},
{LedMode::FollowInverse, FollowInverse},
{LedMode::Relay, Relay},
{LedMode::RelayInverse, RelayInverse},
{LedMode::FindMe, FindMe},
{LedMode::FindMeWiFi, FindMeWiFi},
#endif
{LedMode::On, On},
{LedMode::Off, Off},
#if RELAY_SUPPORT
{LedMode::Relay, Relay},
{LedMode::RelayWiFi, RelayWiFi},
{LedMode::Relays, Relays},
{LedMode::RelaysWiFi, RelaysWiFi},
#endif
};
@ -816,10 +817,8 @@ void configure() {
led.pattern(settings::pattern(id));
#if RELAY_SUPPORT
switch (internal::leds[id].mode()) {
case LED_MODE_FINDME_WIFI:
case LED_MODE_RELAY_WIFI:
case LED_MODE_FOLLOW:
case LED_MODE_FOLLOW_INVERSE:
case LedMode::Relay:
case LedMode::RelayInverse:
relay::link(led, settings::relay(id));
break;
default:
@ -834,10 +833,10 @@ void configure() {
void loop(Led& led) {
switch (led.mode()) {
case LED_MODE_MANUAL:
case LedMode::Manual:
break;
case LED_MODE_WIFI:
case LedMode::WiFi:
if (wifiConnected()) {
run(led, NetworkConnected);
} else if (wifiConnectable()) {
@ -847,16 +846,16 @@ void loop(Led& led) {
}
break;
case LED_MODE_FINDME_WIFI:
case LedMode::FindMeWiFi:
#if RELAY_SUPPORT
if (wifiConnected()) {
if (relay::status(led)) {
if (relay::areAnyOn()) {
run(led, NetworkConnected);
} else {
run(led, NetworkConnectedInverse);
}
} else if (wifiConnectable()) {
if (relay::status(led)) {
if (relay::areAnyOn()) {
run(led, NetworkConfig);
} else {
run(led, NetworkConfigInverse);
@ -867,16 +866,16 @@ void loop(Led& led) {
#endif
break;
case LED_MODE_RELAY_WIFI:
case LedMode::RelaysWiFi:
#if RELAY_SUPPORT
if (wifiConnected()) {
if (relay::status(led)) {
if (!relay::areAnyOn()) {
run(led, NetworkConnected);
} else {
run(led, NetworkConnectedInverse);
}
} else if (wifiConnectable()) {
if (relay::status(led)) {
if (!relay::areAnyOn()) {
run(led, NetworkConfig);
} else {
run(led, NetworkConfigInverse);
@ -887,7 +886,7 @@ void loop(Led& led) {
#endif
break;
case LED_MODE_FOLLOW:
case LedMode::Relay:
#if RELAY_SUPPORT
if (scheduled()) {
status(led, relay::status(led));
@ -895,7 +894,7 @@ void loop(Led& led) {
#endif
break;
case LED_MODE_FOLLOW_INVERSE:
case LedMode::RelayInverse:
#if RELAY_SUPPORT
if (scheduled()) {
status(led, !relay::status(led));
@ -903,7 +902,7 @@ void loop(Led& led) {
#endif
break;
case LED_MODE_FINDME:
case LedMode::FindMe:
#if RELAY_SUPPORT
if (scheduled()) {
led::status(led, !relay::areAnyOn());
@ -911,7 +910,7 @@ void loop(Led& led) {
#endif
break;
case LED_MODE_RELAY:
case LedMode::Relays:
#if RELAY_SUPPORT
if (scheduled()) {
led::status(led, relay::areAnyOn());
@ -919,13 +918,13 @@ void loop(Led& led) {
#endif
break;
case LED_MODE_ON:
case LedMode::On:
if (scheduled()) {
status(led, true);
}
break;
case LED_MODE_OFF:
case LedMode::Off:
if (scheduled()) {
status(led, false);
}
@ -966,7 +965,7 @@ void callback(unsigned int type, const char* topic, char* payload) {
}
auto& led = internal::leds[ledID];
if (led.mode() != LED_MODE_MANUAL) {
if (led.mode() != LedMode::Manual) {
return;
}


+ 4
- 4
code/espurna/led.h View File

@ -13,14 +13,14 @@ Copyright (C) 2016-2019 by Xose Pérez <xose dot perez at gmail dot com>
enum class LedMode {
Manual,
WiFi,
Follow,
FollowInverse,
Relay,
RelayInverse,
FindMe,
FindMeWiFi,
On,
Off,
Relay,
RelayWiFi
Relays,
RelaysWiFi
};
size_t ledCount();


+ 103
- 102
code/espurna/static/index.all.html.gz.h View File

@ -1,4 +1,4 @@
#define webui_image_len 43700
#define webui_image_len 43701
const uint8_t webui_image[] PROGMEM = {
0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x02,0x03,0xec,0xbd,0xeb,0x7a,0xdb,0x46,0xb2,0x28,0xfa,0x7f,
0x9e,0x82,0x82,0x13,0x85,0xb0,0x40,0xf0,0x26,0x51,0x12,0x69,0x58,0x5b,0x96,0x9d,0xc4,0x19,0xdf,0x62,
@ -2084,105 +2084,106 @@ const uint8_t webui_image[] PROGMEM = {
0x5c,0x3c,0xb9,0x30,0x2a,0xe3,0xf3,0x44,0x41,0x29,0xfb,0x30,0x15,0x45,0x16,0xc9,0x9d,0x73,0xab,0xa7,
0x1c,0x53,0x2d,0x19,0xc1,0xc5,0xbf,0xc9,0x35,0xaa,0x56,0xf6,0xce,0x6c,0xcc,0xa7,0x6c,0x2c,0x7c,0x15,
0xd6,0xe9,0x18,0x4d,0xa1,0xb3,0xdc,0xa2,0x2d,0xdb,0xf2,0x0d,0x2e,0x93,0x22,0xa8,0x79,0x2f,0xbf,0x12,
0x85,0xf5,0x80,0x94,0xcd,0x9f,0xcd,0x0f,0xca,0x9b,0x8b,0xfb,0x6d,0x61,0x06,0x0e,0x14,0x9e,0xe6,0xd8,
0xd1,0xbb,0xcc,0x81,0x08,0xaf,0x35,0xb2,0xdf,0xf9,0x47,0xf4,0xce,0xf1,0x71,0x91,0xca,0x33,0x6a,0xf1,
0x41,0x2d,0x6f,0x0f,0x90,0x8f,0x73,0xac,0x10,0xd2,0x52,0x74,0x81,0x57,0x38,0x94,0x1b,0xe5,0x9a,0x39,
0xe0,0x24,0xa1,0x4b,0x1f,0x77,0x71,0x92,0xf3,0x0e,0x38,0xd0,0x96,0x86,0xcd,0x76,0x5d,0x8a,0x07,0xa7,
0xf9,0xb6,0xd8,0x2e,0x05,0x8e,0x6d,0x6c,0x5a,0xed,0x02,0x9e,0x6f,0x42,0xf6,0x2c,0xe6,0x40,0xb4,0x95,
0x5b,0x83,0xa5,0xdd,0xde,0x51,0x08,0xe7,0x90,0x32,0x59,0x31,0xcf,0x11,0xda,0x71,0x64,0xf6,0x8d,0x7b,
0x92,0x00,0xf1,0x02,0xb9,0x13,0xba,0xf2,0xc2,0x4c,0x67,0x80,0xad,0x68,0xd8,0x57,0x0b,0xef,0x27,0xf9,
0x1d,0x78,0xaa,0xa4,0x32,0x22,0x9a,0x84,0xe9,0x8a,0xd0,0x81,0xe6,0x9a,0xba,0xd6,0x38,0x2a,0x3a,0x77,
0x54,0xb8,0xf6,0xf0,0xa5,0xc6,0x04,0xb6,0x30,0x31,0x80,0x6a,0x0a,0xa1,0x7c,0xa1,0xf1,0x20,0xb5,0x5d,
0xe6,0x4b,0x74,0xfc,0x5a,0x80,0xef,0x19,0x3c,0xaf,0x5c,0x10,0x54,0x7d,0x42,0xd6,0xbe,0x73,0x5a,0xff,
0xb3,0x73,0xfe,0x12,0x3b,0xa7,0x3c,0x99,0xe3,0x45,0x39,0x73,0x64,0x99,0x22,0xb9,0x7f,0x79,0x55,0x4f,
0x56,0x82,0x39,0x5b,0xeb,0xd8,0x6e,0xec,0x48,0xbd,0x02,0x7d,0xeb,0xe2,0x37,0x52,0xbe,0x39,0x8a,0xef,
0xbc,0x24,0x3a,0x64,0xed,0xc7,0xdc,0x44,0x04,0xf1,0xba,0x80,0x2a,0x48,0xe8,0xf3,0xf3,0x47,0x88,0x55,
0x22,0x12,0xee,0xe8,0xdc,0xe9,0x3c,0x6f,0xd9,0x76,0x94,0x43,0xb7,0x59,0xd2,0xf7,0x62,0x06,0x5b,0xbf,
0xe1,0xea,0x94,0x3e,0x86,0x7a,0xab,0xec,0x35,0x9b,0xcd,0xe4,0x8a,0xcd,0xc5,0xab,0x86,0x7d,0x94,0xf6,
0xca,0x67,0xad,0x38,0x5e,0x59,0x2d,0xc4,0xa4,0x4f,0xfe,0x42,0x4c,0x3e,0x8f,0xd3,0x3e,0x9f,0x8f,0xbc,
0x3b,0x2c,0x32,0xf9,0x1e,0xe6,0x07,0x1e,0x6a,0x58,0xab,0xa2,0xfc,0xec,0x4d,0x37,0xb3,0x7a,0x68,0xfe,
0xbc,0x55,0x72,0xb7,0x5d,0xc9,0xd9,0x2c,0x73,0x94,0x57,0x39,0xc3,0x42,0x1a,0x2c,0x7f,0x9b,0x45,0x30,
0xb1,0x90,0x25,0xb4,0x74,0x1c,0x9e,0x1e,0x5c,0x69,0xb6,0x31,0x71,0x02,0x93,0xfb,0xcb,0x17,0xde,0x2a,
0x27,0x70,0x9a,0xef,0x51,0xa2,0x5a,0x0a,0x5d,0x93,0xfb,0x7f,0x07,0x74,0xa1,0x12,0x4d,0x11,0xcf,0xac,
0x14,0x90,0x4e,0xb2,0x32,0xdf,0x22,0x85,0x11,0x25,0xa8,0xc3,0xb9,0xee,0xdf,0x2e,0x83,0xaa,0x19,0xb4,
0xfb,0x77,0x40,0xd6,0x8d,0xcf,0x8c,0xa6,0x9b,0xdb,0xdb,0x4d,0xf1,0xff,0x16,0xed,0xb2,0x0d,0xe0,0x30,
0xb6,0xac,0x70,0x5f,0x18,0x71,0x87,0x17,0xbd,0x25,0x77,0xd7,0xc8,0xf6,0xff,0x5d,0xb6,0x17,0xda,0x73,
0x0e,0x9d,0x19,0x56,0xf7,0x42,0xc7,0x6f,0x9e,0xd6,0x1e,0xe6,0x2d,0x62,0x60,0xe6,0xee,0xbf,0xc2,0x10,
0x71,0x86,0x91,0xe7,0x3a,0x6a,0x58,0x82,0x7f,0x30,0x34,0xc6,0xd8,0x8e,0xb0,0xfa,0xf2,0x25,0x4c,0x49,
0x02,0x8b,0x58,0xbe,0x28,0x4c,0xbe,0x3c,0xcf,0x7f,0x87,0x38,0x20,0xaf,0x06,0x33,0xdf,0xd2,0xa8,0xfa,
0xce,0x6e,0x67,0xd9,0x1a,0x15,0x0d,0x1f,0x40,0x3a,0x75,0x42,0xaf,0xa0,0x57,0xca,0x56,0x45,0xd1,0x6f,
0xb3,0xc6,0xa5,0x35,0x1d,0x1a,0x78,0x69,0x57,0xd9,0xfb,0xd6,0x1e,0xf8,0xee,0xeb,0xe9,0x5c,0x09,0xbb,
0x24,0xac,0xe7,0x54,0x0a,0xaa,0x18,0xb4,0xdb,0x3f,0x2c,0x01,0xed,0x6c,0x1e,0xb4,0x2d,0x55,0x64,0x2f,
0x68,0x83,0xc3,0x2a,0x48,0x37,0xfd,0x03,0x2d,0x50,0x6a,0x48,0xcc,0x3b,0x16,0x0b,0x42,0xa7,0x00,0x07,
0xd0,0x5b,0x29,0xbb,0xef,0x02,0x00,0xbb,0xf6,0x48,0xbb,0x37,0x8c,0xdb,0x11,0xb0,0x30,0xd3,0xa7,0x7b,
0x0f,0x67,0x9c,0x07,0xe9,0x66,0x63,0x7b,0xd1,0x7a,0x71,0x31,0x3a,0x6d,0xcb,0x06,0xd0,0xdf,0x1d,0xfa,
0xf9,0xaa,0xce,0x76,0x54,0x69,0xbc,0xbe,0x59,0xdf,0xaa,0xbf,0xac,0x6f,0xd7,0x77,0xea,0xff,0xc8,0x9b,
0xeb,0x96,0x0a,0xca,0x66,0xd6,0x5a,0xb6,0x89,0xe6,0x9e,0x3b,0x36,0x4c,0xad,0xae,0x6d,0xd2,0xb7,0x7e,
0x68,0xf8,0x38,0x53,0xf4,0x8c,0x49,0x15,0xa6,0x4b,0x0f,0x24,0x4f,0x2c,0xa3,0x94,0x5a,0xca,0xd9,0xa8,
0x98,0xd5,0xd8,0x60,0xd7,0x48,0x48,0x67,0xc8,0xa5,0x64,0x1d,0xdb,0x80,0x77,0xba,0xce,0xad,0x50,0x34,
0x3d,0x51,0x21,0xf8,0x8a,0xe7,0x27,0x7a,0x59,0x9a,0x38,0xe7,0xd0,0x65,0xb1,0x5a,0xcb,0x13,0x66,0xb6,
0xcc,0xdc,0xb6,0xb5,0xf8,0xe8,0x0c,0x79,0x68,0xe5,0xa2,0x1b,0x1f,0x3c,0x29,0x73,0x8c,0x6c,0xc9,0x63,
0xc2,0xfa,0xe5,0x3c,0x9a,0x67,0xbd,0x90,0x1a,0x7d,0xca,0xce,0xd8,0x0f,0x3d,0x3b,0x6e,0x20,0x4c,0x19,
0x6b,0xd9,0x2b,0x17,0x73,0x0c,0xb5,0x7d,0x2a,0x04,0x9a,0x6b,0x63,0x5c,0xdd,0x42,0x08,0xd3,0xea,0xeb,
0x4c,0x8f,0x96,0x9d,0x6b,0xb1,0x3d,0x34,0x35,0x47,0x23,0xc3,0x56,0xdf,0x87,0x9f,0x2b,0x31,0x97,0xe4,
0xb2,0xeb,0x48,0x05,0x12,0x97,0x29,0x5c,0xb1,0x60,0x2d,0x17,0x70,0x29,0xb1,0x7e,0x85,0x78,0xea,0xf6,
0x76,0x8c,0x4d,0xad,0x80,0x6f,0x5e,0x40,0x72,0x5d,0x18,0xdf,0x5c,0x06,0xe3,0xbc,0x40,0xab,0xd4,0xd0,
0xc5,0x8b,0x05,0xfc,0xff,0x78,0x69,0x57,0xd7,0xf1,0x4d,0x5e,0x57,0x54,0xeb,0x50,0xf5,0x56,0x14,0x00,
0xb1,0x92,0x6b,0x87,0xd7,0x75,0xad,0x7d,0xf9,0x55,0xa2,0xa4,0xfa,0x6b,0x5a,0x25,0x81,0xa1,0xf5,0xac,
0xd2,0x56,0x91,0x55,0xa2,0x93,0x28,0xae,0x03,0x96,0x10,0x3b,0x93,0x49,0xe2,0xa9,0x3f,0x96,0xf9,0x3e,
0x32,0xb9,0xa7,0x3c,0x6c,0x45,0x0a,0x75,0x25,0x96,0x56,0xf2,0x89,0x84,0xf5,0xac,0xf0,0x04,0x98,0xd8,
0x2c,0xcc,0xfb,0x0b,0xc1,0x4a,0xe7,0xb7,0xa7,0x77,0x0e,0x0d,0x7f,0x18,0x4b,0x6d,0x5f,0xde,0x21,0x2e,
0x32,0xf9,0xee,0xa3,0x0b,0xa9,0x5a,0xe4,0x62,0xf1,0xee,0xd8,0x52,0x33,0xcc,0x03,0x3c,0xfb,0xec,0x3e,
0x2f,0x45,0xda,0xb3,0x6e,0x7f,0x52,0xc4,0x7d,0xe1,0x35,0x12,0x1c,0xe4,0x1e,0x95,0x93,0xf4,0xb5,0x81,
0x01,0x42,0x90,0x31,0xe7,0x1a,0x8e,0xf1,0x81,0x05,0xef,0xe1,0x5d,0xa9,0x33,0xbc,0x35,0x46,0xf3,0x20,
0xdb,0x8e,0x5e,0xba,0x28,0x72,0x77,0x55,0x1c,0xe1,0x57,0xa1,0xe5,0x1b,0x2b,0x62,0x9c,0xfa,0xc8,0x42,
0xf9,0xa1,0x63,0x7f,0x17,0x68,0x2e,0x3e,0x9e,0x83,0xf3,0x0b,0xc7,0x9b,0x91,0x8e,0x3f,0x07,0x01,0x9b,
0xea,0x6b,0xcf,0x82,0x02,0x96,0x6c,0x3d,0x0a,0x70,0x2f,0x54,0xed,0x34,0x75,0x36,0x59,0xce,0x75,0xb5,
0xc1,0x7c,0x9a,0xd8,0x6a,0x0a,0xaa,0x28,0x62,0x61,0x8a,0xfa,0x7a,0x60,0x5a,0xcd,0x82,0x13,0xa4,0xe4,
0x03,0x2c,0x0f,0xa2,0xaf,0xd4,0x15,0x2d,0x38,0xd3,0xad,0x9c,0x99,0x62,0x7f,0xbd,0x70,0x90,0x6b,0xf4,
0x6e,0x2f,0x4e,0xb8,0xfb,0x5c,0xb3,0x74,0xc3,0x81,0x65,0xfa,0xd3,0x35,0x4c,0xf0,0xea,0xaf,0x39,0xc1,
0xd5,0xce,0x2b,0xcd,0x2c,0xd3,0x17,0xa1,0x25,0x8e,0xd9,0x9c,0xe3,0xca,0x9d,0x0b,0x0a,0x9e,0xc1,0xe5,
0xa7,0x7b,0x99,0x2a,0x4f,0xbd,0xfc,0x8c,0xcf,0x61,0x58,0x4c,0x3b,0x9b,0x9a,0x30,0x4a,0x8c,0x40,0xa6,
0xd0,0xcb,0x13,0x33,0xbc,0xcd,0xf1,0x40,0xf8,0x12,0x9a,0xc1,0x42,0xd6,0x1d,0x79,0xba,0x9b,0xf6,0xd8,
0xc9,0xca,0x64,0x50,0x48,0x02,0x29,0xe3,0x56,0x97,0x11,0x6c,0x9e,0xaf,0x77,0x09,0xa3,0x41,0x46,0x82,
0x7b,0x09,0x7a,0x91,0x62,0xd3,0xaa,0x05,0x22,0x0a,0x05,0x02,0xa5,0x55,0x12,0xaf,0xc5,0xbd,0x70,0x9b,
0x68,0x0c,0x63,0x65,0x45,0xa5,0x54,0xeb,0xff,0x41,0xf5,0xf3,0xa3,0x3a,0xe4,0xc5,0xb0,0x96,0xc5,0xf5,
0x22,0x1f,0x9c,0xca,0x12,0xe7,0x8e,0x53,0x2f,0x05,0xb1,0xe5,0x4b,0x9d,0xf1,0xb6,0xeb,0x72,0x6a,0x9d,
0x9b,0xbc,0xbd,0xe0,0x82,0x97,0x5d,0xa4,0x39,0x29,0x17,0xf2,0x3c,0xa4,0x4a,0x4d,0x97,0x07,0x8b,0xf0,
0x01,0x76,0x33,0x59,0x6f,0x3c,0x74,0x9f,0xda,0x55,0xa4,0x96,0x97,0x75,0x84,0x04,0x1f,0xc0,0x14,0x0b,
0x45,0xba,0x64,0x6f,0x66,0x46,0x2c,0x12,0xea,0x32,0xc3,0x16,0xb5,0x78,0x1f,0xee,0xbd,0x77,0x85,0xac,
0x52,0x7b,0xa7,0x07,0x58,0x1b,0xe0,0x5d,0xad,0xa9,0x1d,0xc4,0x23,0xeb,0x45,0x20,0x1a,0xcf,0xe7,0x48,
0x37,0x31,0x2e,0xd5,0xd4,0x33,0x30,0xb5,0x95,0x79,0x67,0x68,0x54,0xde,0xbe,0x6a,0x99,0xb7,0x06,0x85,
0x47,0x58,0x03,0xe6,0x97,0xcb,0xce,0xea,0x14,0x73,0xb3,0xc1,0x49,0x01,0xde,0x45,0xd9,0x43,0x40,0xd9,
0xbf,0x47,0x67,0x62,0x8f,0x2e,0x78,0x74,0x6d,0x86,0x19,0x25,0x66,0x46,0x40,0xc5,0x2e,0x32,0x82,0x5d,
0x0b,0xcf,0xe5,0xce,0x41,0x6c,0xc0,0x5c,0x7e,0x71,0xb0,0xbe,0x6f,0xf5,0x97,0x1a,0x46,0x55,0x22,0x08,
0x34,0x0f,0x0a,0xd0,0xe0,0x20,0x74,0x0f,0x34,0x7c,0x1b,0xa3,0x52,0xd0,0x40,0x4c,0xcf,0xa7,0x0e,0xc0,
0x83,0x4e,0x0d,0x08,0xda,0x58,0x1f,0x9a,0x96,0x19,0x3c,0xd6,0x05,0x9c,0x11,0x94,0x22,0x3a,0x93,0x22,
0x35,0x79,0x80,0xc0,0x4a,0x70,0x0f,0x43,0xcf,0x23,0xb8,0xbb,0x58,0xbd,0xcc,0x00,0xc8,0xbb,0x35,0x99,
0xe0,0x56,0xa7,0x48,0xdb,0x7c,0xac,0x2b,0x48,0xaf,0x2b,0xc9,0x75,0x07,0x3c,0x5f,0x07,0x25,0xdc,0x50,
0x63,0xcf,0x83,0x7b,0x07,0x03,0x59,0xee,0x94,0xd8,0xd3,0xba,0x66,0x36,0x8d,0x26,0x5f,0x96,0x0d,0x81,
0x98,0xa6,0x16,0x0b,0x55,0x60,0x6b,0x35,0xe4,0x65,0x7a,0x60,0x8a,0x33,0x17,0x60,0x73,0x42,0x7b,0xc4,
0x6f,0x0f,0xa8,0x77,0xd6,0xc7,0xbd,0xe9,0x19,0xfe,0xda,0xd1,0x64,0xd8,0x46,0x2a,0x19,0x61,0x21,0x3a,
0xc0,0xc3,0x13,0x4b,0x51,0x81,0xb8,0x35,0x26,0x9e,0x05,0x77,0xd1,0xa0,0xa3,0xe1,0x27,0x69,0x4c,0x7e,
0x56,0x3e,0x5c,0xa4,0x88,0x06,0x79,0x68,0x16,0x2e,0xa2,0xb1,0x68,0x6a,0x98,0xfc,0x56,0x98,0x78,0xd3,
0xc6,0xbe,0xaf,0x3b,0x59,0x99,0xca,0x77,0x3d,0x53,0x8d,0x0a,0x12,0xaf,0x60,0x43,0xcb,0xaf,0x8e,0x9c,
0xae,0x0f,0xdc,0x52,0x8d,0xc3,0xe2,0x2a,0x8a,0x95,0x18,0x4e,0x96,0xd2,0x54,0x8a,0x25,0x27,0x4e,0x13,
0x6f,0x10,0xbd,0x90,0x94,0x27,0xca,0x9c,0x1e,0x6e,0x5b,0x5e,0x61,0xfe,0x07,0xac,0x07,0xf4,0xec,0x5e,
0x61,0xfa,0x1c,0x0e,0x3f,0x23,0xe1,0x49,0x3e,0xa2,0xca,0x4e,0x76,0x86,0x5e,0x6b,0xab,0xac,0xf5,0x39,
0x75,0xa0,0x55,0x0f,0x90,0x85,0x7c,0x3b,0xd5,0x3d,0xef,0x35,0x70,0x55,0x2f,0x5d,0x16,0x2f,0xa3,0x34,
0xf4,0xf6,0x96,0xb8,0xbf,0x46,0x9b,0xf3,0xfc,0xc5,0x67,0x80,0xe6,0x20,0x80,0x3d,0x5c,0x69,0xd1,0x99,
0xa9,0x7a,0x1e,0x22,0x52,0xb7,0xea,0x6d,0x4d,0xb4,0x82,0x47,0xf1,0x17,0xc4,0x03,0x8a,0xfb,0xf3,0xd8,
0x0c,0xf8,0x6f,0x27,0x46,0x70,0x65,0x0e,0x31,0x97,0x44,0xf2,0x6c,0x16,0xb3,0x91,0x35,0xb6,0x12,0xc3,
0x16,0xf2,0x1a,0x14,0x4d,0xe2,0xd7,0x8c,0x72,0xd6,0x78,0xd9,0x00,0xfb,0xf6,0xed,0x65,0xaf,0x88,0xb3,
0xe9,0xda,0xc7,0x77,0xf5,0x10,0xc7,0xbf,0xea,0xde,0x7c,0x9d,0xf1,0xf1,0xea,0xa5,0xb2,0x77,0x79,0x75,
0x74,0x51,0x30,0xd2,0x3a,0x63,0x4b,0xb3,0xbc,0x45,0x98,0xdb,0x74,0xa6,0x7b,0xb7,0x7e,0xb2,0x98,0x63,
0xf6,0x0e,0xc7,0x4d,0x84,0xce,0x8b,0x9e,0x6f,0x34,0x78,0x3f,0xca,0x56,0xe9,0xd1,0x55,0x49,0x2c,0x97,
0x51,0xd4,0x7f,0x86,0x11,0x24,0xd7,0x3e,0x3d,0x2f,0x05,0x50,0x6e,0x8e,0x9f,0xa2,0xf7,0x15,0x3c,0x95,
0x66,0x81,0x23,0xb3,0xdd,0xd8,0x49,0x9a,0xf2,0x78,0xb2,0xcf,0xa2,0xae,0xb9,0xe5,0xdc,0x6b,0xcb,0x26,
0xd3,0x8b,0x3c,0xa2,0xb8,0x47,0xed,0xa1,0x61,0xe5,0xf8,0x40,0x17,0xc1,0x4a,0xc0,0xf3,0x6f,0x16,0x4a,
0x15,0x9a,0x44,0x0b,0x4b,0xde,0xf9,0x2c,0x78,0xd9,0x4a,0x8f,0x96,0xaa,0xc3,0xfc,0x6f,0xb6,0x08,0x3a,
0x0f,0x0c,0x86,0x39,0xf0,0xfc,0xa7,0xbf,0x0f,0x2c,0xdd,0xbe,0x45,0xcf,0x6c,0x0b,0x5d,0x86,0xf1,0x84,
0x0b,0x42,0x3c,0x72,0xee,0x6d,0xd4,0x22,0x50,0xc1,0x3e,0xe4,0x9f,0xb5,0x81,0x3e,0xbc,0x0d,0x5d,0xad,
0xf9,0x2f,0x1f,0x60,0xa1,0xd2,0x57,0x0c,0x45,0xd8,0x20,0x74,0xf9,0xeb,0x7c,0x0a,0x63,0x93,0xe5,0xa7,
0x1d,0x38,0xa3,0x47,0xf8,0x33,0x0d,0x66,0xd6,0xde,0xff,0x05,0x96,0x72,0xb8,0x84,0xb1,0xae,0x02,0x00
0x85,0xf5,0xaa,0x86,0x5f,0x5b,0x30,0x9f,0x1f,0x62,0xef,0x2e,0xee,0xbb,0x85,0x59,0x38,0x50,0x80,0x9a,
0x63,0x4b,0xef,0x32,0x27,0x22,0xbc,0xda,0xc8,0x7e,0xe7,0x1f,0xd1,0x3b,0xc7,0xc7,0x45,0xaa,0xcf,0xa8,
0x05,0x08,0xb5,0xbc,0x7d,0x40,0x7e,0xce,0xb1,0x62,0x48,0x4b,0xd1,0x06,0x5e,0xe5,0x50,0x6e,0x96,0x6b,
0xe6,0x84,0x93,0x84,0x2e,0x7d,0xe4,0xc5,0x69,0xce,0x3b,0xe4,0x40,0x5f,0x1a,0x36,0xdb,0x79,0x29,0x3e,
0x9c,0xe6,0xdd,0x62,0xcb,0x14,0x38,0xba,0xb1,0x69,0xb5,0x0b,0x78,0xbf,0x09,0xf9,0xb3,0x98,0x13,0xd1,
0x56,0x6e,0x1d,0x96,0x76,0x7b,0x47,0x21,0x9e,0x43,0xca,0x66,0xc5,0xbc,0x47,0x68,0xcf,0x91,0xe9,0x37,
0xee,0x4d,0x02,0x04,0x0c,0x64,0x4f,0xe8,0xca,0x0b,0x33,0x1d,0x02,0xb6,0xa2,0x61,0x5f,0x2d,0xbc,0xa3,
0xe4,0xf7,0xe0,0xa9,0xb2,0xca,0x88,0x68,0x12,0xa8,0x2b,0x42,0x0f,0x9a,0x6b,0xee,0x5a,0xe3,0xa8,0xe8,
0xe0,0x51,0xe1,0x1a,0xc4,0x97,0x1a,0x13,0x58,0xc3,0xc4,0x00,0xca,0x29,0x04,0xf3,0x85,0x06,0x84,0xd4,
0x76,0x99,0x2f,0xd5,0xf1,0xab,0x01,0xbe,0x67,0xf0,0xbc,0x72,0x61,0x50,0xf5,0x0b,0x59,0xfb,0xce,0x69,
0xfd,0xcf,0xce,0xf9,0x4b,0xec,0x9c,0xf2,0x64,0x8e,0x17,0xe6,0xcc,0x91,0x67,0x8a,0xe4,0xff,0xe5,0x95,
0x3d,0x59,0x19,0xe6,0x6c,0xcd,0x63,0xbb,0xb1,0x23,0x75,0x0b,0xf4,0xaf,0x8b,0xdf,0x4a,0xf9,0xe6,0x28,
0xbe,0xf3,0x92,0xe8,0x90,0xf5,0x1f,0x73,0x93,0x11,0xc4,0x6b,0x03,0xaa,0x20,0xa1,0xdf,0xcf,0x1f,0x21,
0x56,0x8a,0x48,0xb8,0xa4,0x73,0xc7,0xf3,0xbc,0x65,0xdb,0x51,0x0e,0xdd,0x66,0x49,0xff,0x8b,0x19,0x6c,
0xfd,0x86,0xab,0x53,0x0a,0x19,0xea,0xad,0xb2,0xd7,0x6c,0x36,0x93,0x2b,0x36,0x17,0xaf,0x1a,0xf6,0x51,
0xda,0x33,0x9f,0xb5,0xe2,0x78,0x65,0xf5,0x10,0x93,0x7e,0xf9,0x0b,0x31,0xf9,0x3c,0x8e,0xfb,0x7c,0x3e,
0xf2,0xfe,0xb0,0xc8,0xe4,0x7b,0x98,0x23,0x78,0xa8,0x61,0xbd,0x8a,0xf2,0xb3,0x37,0xdd,0xcc,0x0a,0xa2,
0xf9,0xf3,0x56,0xc9,0xdd,0x76,0x25,0x67,0xb3,0xcc,0x51,0x60,0xe5,0x0c,0x0b,0x69,0xb1,0xfc,0x6d,0x16,
0xc5,0xc4,0xc2,0x96,0xd0,0xda,0x71,0x78,0x7a,0x70,0xa5,0xd9,0xc6,0xc4,0x09,0x4c,0xee,0x33,0x5f,0x78,
0xab,0x9c,0xc0,0x69,0xbe,0x47,0x89,0x6a,0x29,0x74,0x4d,0xee,0xff,0x1d,0xd0,0x85,0x8a,0x34,0x45,0x3d,
0xb3,0x72,0x40,0x3a,0x49,0xcb,0x7c,0x8b,0x14,0x46,0x94,0xa0,0x0e,0xe7,0xba,0x7f,0xbb,0x0c,0xaa,0x66,
0xd0,0xee,0xdf,0x01,0x59,0x37,0x3e,0x33,0x9c,0x6e,0x6e,0x6f,0x37,0xc5,0xff,0x5b,0xb4,0xcb,0x36,0x80,
0xc3,0xd8,0xb2,0xca,0x7d,0x61,0xc4,0x1d,0x5e,0xf4,0x96,0xdc,0x5d,0x23,0xdb,0xff,0x77,0xd9,0x5e,0x68,
0xd3,0x39,0x74,0x66,0x58,0xe1,0x0b,0x9d,0xbf,0x79,0x6a,0x7b,0x98,0xb7,0x88,0x83,0x99,0xbb,0xff,0x0a,
0x43,0xc4,0x19,0x46,0x9e,0xfb,0xa8,0x61,0x09,0xfe,0xc1,0xd0,0x18,0x63,0x3b,0xc2,0xf2,0xcb,0x97,0x30,
0x25,0x09,0x2c,0x62,0xf9,0xa2,0x38,0xf9,0xf2,0x3c,0xff,0x1d,0xe2,0x80,0x3c,0x1b,0xcc,0x7c,0x6b,0xa3,
0xea,0x3f,0xbb,0x9d,0x65,0x6f,0x54,0xb4,0x7c,0x00,0xe9,0xd4,0x09,0xbd,0x82,0x9e,0x29,0x5b,0x15,0x45,
0xbf,0xcd,0x1a,0x97,0xd6,0x74,0x68,0xe0,0xc5,0x5d,0x65,0xef,0x5b,0x7b,0xe0,0xbb,0xaf,0xa7,0x73,0x25,
0xec,0x92,0xb0,0x9e,0x53,0x39,0xa8,0x62,0xd0,0x6e,0xff,0xb0,0x04,0xb4,0xb3,0x79,0xd0,0xb6,0x54,0x91,
0xbd,0xa0,0x1d,0x0e,0x2b,0x21,0xdd,0xf4,0x0f,0xb4,0x40,0xa9,0x23,0x31,0xef,0x58,0x2c,0x08,0x9f,0x02,
0x1c,0x40,0x6f,0xa5,0x6c,0xbf,0x0b,0x00,0xec,0xda,0x23,0xed,0xde,0x30,0x6e,0x47,0xc0,0xc2,0x4c,0x9f,
0xee,0x3e,0x9c,0x71,0x1e,0xa4,0x9b,0x8d,0xed,0x45,0xeb,0xc5,0xc5,0xe8,0xb4,0x3d,0x1b,0x40,0x7f,0x77,
0xe8,0xe7,0xab,0x3a,0xdb,0x51,0xb5,0xf1,0xfa,0x66,0x7d,0xab,0xfe,0xb2,0xbe,0x5d,0xdf,0xa9,0xff,0x23,
0x6f,0xae,0x5b,0x2a,0x28,0x9b,0x59,0x6b,0xd9,0x26,0x9a,0x7b,0xee,0xd8,0x30,0xb5,0xba,0xb6,0x49,0xdf,
0xfa,0xa1,0xe1,0xe3,0x4c,0xd1,0x3b,0x26,0x55,0x9c,0x2e,0x3d,0x90,0x3c,0xb1,0x8c,0x52,0x6a,0x29,0x87,
0xa3,0x62,0x96,0x63,0x83,0x5d,0x25,0x21,0x9d,0x21,0xb7,0x92,0x75,0x6c,0x03,0xde,0xe9,0x3a,0xb7,0x42,
0xd1,0x14,0x45,0x85,0xe0,0x2b,0x9e,0xa3,0xe8,0x65,0x69,0xe2,0x9c,0x43,0x97,0xc5,0x6a,0x2d,0x4f,0x98,
0xd9,0x32,0x73,0xdb,0xd6,0xe2,0xa3,0x33,0xe4,0xe1,0x95,0x8b,0x6e,0x7d,0xf0,0xa4,0xcc,0x31,0xb2,0x25,
0x8f,0x09,0xeb,0x97,0xf3,0x68,0x9e,0xf9,0x42,0x6a,0xf4,0x29,0x3b,0x63,0x3f,0xf4,0xec,0xb8,0x81,0x30,
0x65,0xb0,0x65,0xaf,0x5c,0xcc,0x31,0xd6,0xf6,0xa9,0x18,0x68,0xae,0x8d,0x71,0x75,0x0b,0x21,0x4c,0xab,
0xaf,0x33,0x3d,0x5a,0x76,0xae,0xc5,0xf6,0xd0,0xd4,0x1c,0x8d,0x0c,0x5b,0x7d,0x1f,0x7e,0xae,0xc4,0xdc,
0x92,0xcb,0xae,0x23,0x15,0x49,0x5c,0xa6,0x78,0xc5,0x82,0xb5,0x5c,0xc0,0xa5,0xc4,0xfa,0x15,0xe2,0xa9,
0xdb,0xdb,0x31,0x36,0xb5,0x02,0xbe,0x79,0x11,0xc9,0x75,0x61,0x7c,0x73,0x19,0x8c,0xf3,0x22,0xad,0x52,
0x43,0x17,0x2f,0x16,0xf0,0x01,0xe4,0xe5,0x5d,0x5d,0xc7,0x37,0x79,0x6d,0x51,0xad,0x43,0x15,0x5c,0x51,
0x00,0xc4,0x6a,0xae,0x1d,0x5e,0xdb,0xb5,0xf6,0xe5,0x57,0x89,0x12,0xeb,0xaf,0x69,0x95,0x04,0x86,0xd6,
0xb3,0x4a,0x5b,0x45,0x56,0x89,0x4e,0xa2,0xb8,0x0e,0x58,0x42,0xec,0x4c,0x26,0x8a,0xa7,0xfe,0x58,0xf6,
0xfb,0xc8,0xe4,0x9e,0xf2,0xb2,0x15,0x69,0xd4,0x95,0x78,0x5a,0xc9,0x27,0x12,0xd6,0xb3,0xc2,0x13,0x60,
0x62,0xb3,0x30,0xef,0x2f,0x04,0x2b,0x9d,0xe3,0x9e,0xde,0x39,0x34,0xfc,0x61,0x2c,0xbd,0x7d,0x79,0xa7,
0xb8,0xc8,0xe4,0xbb,0x8f,0x6e,0xa4,0x6a,0xa1,0x8b,0xc5,0xbb,0x63,0x4b,0xcd,0x32,0x0f,0xf0,0xec,0xb3,
0x3b,0xbd,0x14,0x69,0xcf,0xba,0xfd,0x49,0x11,0xf7,0x85,0xd7,0x48,0x70,0x90,0x7b,0x54,0x52,0xd2,0xd7,
0x06,0x06,0x08,0x41,0xc6,0x9c,0xab,0x38,0xc6,0x07,0x16,0xbc,0x87,0xf7,0xa5,0xce,0xf0,0xd6,0x18,0xcd,
0x83,0x6c,0x3b,0x7a,0xe9,0xa2,0xc8,0xdd,0x55,0x71,0x84,0x5f,0x85,0x96,0x6f,0xac,0x88,0x71,0xea,0x23,
0x0b,0xe5,0x87,0x8e,0xfd,0x5d,0xa0,0xb9,0xf8,0x78,0x0e,0xce,0x2f,0x1c,0x6f,0x46,0x3a,0xfe,0x1c,0x04,
0x6c,0xaa,0xaf,0x3d,0x0b,0x0a,0x58,0xc2,0xf5,0x28,0xc8,0xbd,0x50,0xc5,0xd3,0xd4,0xd9,0x64,0x79,0xd7,
0xd5,0x06,0xf3,0x69,0x62,0xab,0x29,0xa8,0xa2,0x88,0x87,0x29,0xea,0xef,0x81,0xa9,0x35,0x0b,0x4e,0x90,
0x12,0x10,0xb0,0x5c,0x88,0xbe,0x52,0x5b,0xb4,0xe0,0x4c,0xb7,0x72,0x66,0x8a,0xfd,0xf5,0xc2,0x41,0xae,
0xd1,0xbb,0xbd,0x38,0xe9,0xee,0x73,0xcd,0xd2,0x0d,0x07,0x96,0xe9,0x4f,0xd7,0x30,0xc1,0xab,0xbf,0xe6,
0x04,0x57,0x3b,0xaf,0x34,0xb3,0x4c,0x7f,0x84,0x96,0x38,0x66,0x73,0x8e,0x2b,0x77,0x30,0x28,0x78,0x06,
0x97,0x9f,0xee,0x65,0xaa,0x44,0xf5,0xf2,0x33,0x3e,0x87,0x61,0x31,0xf5,0x6c,0x6a,0xc2,0x28,0x31,0x02,
0x99,0x42,0x4f,0x4f,0xcc,0xf2,0x36,0xc7,0x03,0xe1,0x4b,0x68,0x06,0x0b,0x59,0x77,0xe4,0xed,0x6e,0xda,
0x63,0x27,0x2b,0x9b,0x41,0x21,0x09,0xa4,0x8c,0x6b,0x5d,0x46,0xc0,0x79,0xbe,0xde,0x25,0x8c,0x06,0x19,
0x49,0xee,0x25,0xe8,0x45,0x0a,0x4e,0xab,0x16,0x88,0x28,0x1c,0x08,0x94,0x56,0x49,0xbc,0x16,0xf7,0xc2,
0x6d,0xa2,0x31,0x8c,0x95,0x15,0x95,0x52,0xad,0xff,0x07,0xd5,0xcf,0x8f,0xea,0x90,0x17,0xc4,0x5a,0x16,
0xd7,0x8b,0x7c,0x70,0x2a,0x4b,0x9c,0x3b,0x4e,0xbd,0x14,0xc4,0x96,0x2f,0x77,0xc6,0xdb,0xae,0xcb,0xb1,
0x75,0x6e,0x02,0xf7,0x82,0x0b,0x5e,0x76,0x91,0xe6,0xa4,0x5d,0xc8,0xf3,0x90,0x2a,0x35,0x5d,0x1e,0x30,
0xc2,0x07,0xd8,0xcd,0x64,0xbd,0xf1,0xf0,0x7d,0x6a,0x57,0x91,0x5a,0x5e,0xd6,0x11,0x12,0x7c,0x00,0xd3,
0x2c,0x14,0xe9,0x92,0xbd,0x99,0x19,0xb5,0x48,0xa8,0xcb,0x0c,0x5d,0xd4,0xe2,0x7d,0xb8,0xf7,0xde,0x15,
0xb2,0x4a,0xed,0x9d,0x1e,0x60,0x7d,0x80,0x77,0xb5,0xa6,0x76,0x10,0x8f,0xae,0x17,0xc1,0x68,0x3c,0xa7,
0x23,0xdd,0xc4,0xb8,0x54,0x57,0xcf,0xc0,0xf4,0x56,0xe6,0x9d,0xa1,0x51,0x89,0xfb,0xaa,0x65,0xde,0x1a,
0x14,0x22,0x61,0x0d,0x98,0x6f,0x2e,0x3b,0xab,0x53,0xcc,0xcf,0x06,0x27,0x05,0x78,0x17,0x65,0x10,0x01,
0x65,0xff,0x1e,0x1d,0x8a,0x3d,0xba,0xe0,0xd1,0xb5,0x19,0x66,0x95,0x98,0x19,0x01,0x15,0xbc,0xc8,0x08,
0x78,0x2d,0x3c,0x97,0x3b,0x07,0xb1,0x01,0x73,0xf9,0xc5,0xc1,0x1a,0xbf,0xd5,0x5f,0x6a,0x18,0x59,0x89,
0x20,0xd0,0x3c,0x28,0x48,0x83,0x83,0xd0,0x3d,0xd0,0xf0,0x6d,0x8c,0x4c,0x41,0x03,0x31,0x3d,0x9f,0x3a,
0x00,0x0f,0x3a,0x35,0x20,0x68,0x63,0x7d,0x68,0x5a,0x66,0xf0,0x58,0x17,0x70,0x46,0x50,0x8a,0x08,0x4d,
0x8a,0xd6,0xe4,0x41,0x02,0x2b,0xc1,0x3d,0x0c,0x3d,0x8f,0xe0,0xee,0x62,0x05,0x33,0x03,0x20,0xef,0xd6,
0x64,0x92,0x5b,0x9d,0xa2,0x6d,0xf3,0xb1,0xae,0x20,0xbd,0xae,0x24,0xd8,0x1d,0xf0,0x9c,0x1d,0x94,0x74,
0x43,0x8d,0x3f,0x0f,0xee,0x1d,0x0c,0x66,0xb9,0x53,0xe2,0x4f,0xeb,0x9a,0xd9,0x34,0x9a,0x7c,0x59,0x36,
0x04,0x62,0x9a,0x5a,0x2c,0x5c,0x81,0xad,0xd5,0x90,0x97,0xea,0x81,0x29,0xce,0x5c,0x80,0xcd,0x09,0xed,
0x11,0xbf,0x3d,0xa0,0xde,0x59,0x1f,0xf7,0xa6,0x67,0xf8,0x6b,0x47,0x93,0x61,0x1b,0xa9,0x84,0x84,0x85,
0xe8,0x00,0x0f,0x51,0x2c,0x45,0x05,0xe2,0xd6,0x98,0x78,0x26,0xdc,0x45,0x83,0x8e,0x86,0x9f,0xa4,0x31,
0xf9,0x59,0xf9,0x70,0x91,0x42,0x1a,0xe4,0xa1,0x59,0xb8,0x90,0xc6,0xa2,0xa9,0x61,0x02,0x5c,0x61,0xe2,
0x4d,0x1b,0xfb,0xbe,0xee,0x64,0x65,0x3a,0xdf,0xf5,0x4c,0x35,0x2a,0x4a,0xbc,0x82,0x0d,0x2d,0xbf,0x42,
0x72,0xba,0x46,0x70,0x4b,0x35,0x0e,0x8b,0xab,0x28,0x56,0x66,0x38,0x59,0x4e,0x53,0x29,0x98,0x9c,0x38,
0x4d,0xbc,0x41,0xf4,0x42,0x52,0x9e,0x28,0x73,0x7a,0xb8,0x6d,0x79,0x85,0xf9,0x1f,0xb0,0x1e,0xd0,0xbb,
0x7b,0x85,0xe9,0x73,0x38,0xfc,0x8c,0xa4,0x27,0xf9,0x88,0x2a,0x3b,0xd9,0x19,0x7a,0xad,0xad,0xb2,0xd6,
0xe7,0xd4,0x81,0x56,0x3d,0x40,0x16,0xf2,0xed,0x54,0xf7,0xbc,0xd7,0xc0,0x55,0xbd,0x74,0x69,0xbc,0x8c,
0xf2,0xd0,0xdb,0x5b,0xe2,0xfe,0x1a,0x6d,0xce,0xf3,0x17,0x9f,0x01,0x9a,0x83,0x00,0xf6,0x70,0xa5,0x45,
0x67,0xa6,0xea,0x79,0x88,0x48,0xdd,0xaa,0xb7,0x35,0xd1,0x0a,0x1e,0xc5,0x5f,0x10,0x0f,0x28,0xf6,0xcf,
0x63,0x33,0xe0,0xbf,0x9d,0x18,0xc1,0x95,0x39,0xc4,0x7c,0x12,0xc9,0xb3,0x59,0xcc,0x46,0xd6,0xd8,0x4a,
0x0c,0x5b,0xc8,0x6b,0x50,0x34,0x89,0x5f,0x33,0xca,0x59,0xe3,0x65,0x03,0xec,0xdb,0xb7,0x97,0xbd,0x22,
0xce,0xa6,0x6b,0x1f,0xdf,0xd5,0x43,0x1c,0xff,0xaa,0x7b,0xf3,0x75,0xc6,0xc7,0xab,0x97,0xca,0xde,0xe5,
0xd5,0xd1,0x45,0xc1,0x68,0xeb,0x8c,0x2d,0xcd,0x72,0x17,0x61,0x7e,0xd3,0x99,0xee,0xdd,0xfa,0xc9,0x82,
0x8e,0xd9,0x3b,0x1c,0x37,0x11,0x3a,0x2f,0x7a,0xbe,0xd1,0xe0,0xfd,0x28,0x5b,0xa5,0x47,0x57,0x25,0xb1,
0x7c,0x46,0x51,0xff,0x19,0x46,0x90,0x5c,0xfb,0xf4,0xbc,0x34,0x40,0xb9,0x79,0x7e,0x8a,0xde,0x57,0xf0,
0x74,0x9a,0x05,0x8e,0xcc,0x76,0x63,0x27,0x69,0xca,0xe3,0x09,0x3f,0x8b,0xba,0xe6,0x96,0x73,0xaf,0x2d,
0x9b,0x50,0x2f,0xf2,0x88,0xe2,0x1e,0xb5,0x87,0x86,0x95,0xe3,0x03,0x5d,0x04,0x2b,0x01,0xcf,0xc1,0x59,
0x28,0x5d,0x68,0x12,0x2d,0x2c,0x81,0xe7,0xb3,0xe0,0x65,0x2b,0x3d,0x5a,0xaa,0x16,0xf3,0xbf,0xd9,0x22,
0xe8,0x3c,0x38,0x18,0xe6,0xc0,0x73,0xa0,0xfe,0x3e,0xb0,0x74,0xfb,0x16,0x3d,0xb3,0x2d,0x74,0x19,0xc6,
0x13,0x2e,0x08,0xf1,0xc8,0xb9,0xb7,0x51,0x8b,0x40,0x05,0xfb,0x90,0x7f,0xd6,0x06,0xfa,0xf0,0x36,0x74,
0xb5,0xe6,0xbf,0x7c,0x80,0x85,0xca,0x5f,0x31,0x14,0x61,0x83,0xd0,0xe5,0xaf,0xf3,0x29,0x8c,0x4d,0x96,
0xa3,0x76,0xe0,0x8c,0x1e,0xe1,0xcf,0x34,0x98,0x59,0x7b,0xff,0x17,0xaa,0xdf,0xd8,0x56,0xb5,0xae,0x02,
0x00
};

+ 1354
- 1354
code/espurna/static/index.curtain.html.gz.h
File diff suppressed because it is too large
View File


+ 1320
- 1320
code/espurna/static/index.garland.html.gz.h
File diff suppressed because it is too large
View File


+ 66
- 66
code/espurna/static/index.light.html.gz.h View File

@ -1833,70 +1833,70 @@ const uint8_t webui_image[] PROGMEM = {
0xbd,0x41,0x15,0xc4,0x11,0x45,0xea,0x33,0x72,0xa7,0x2d,0x0b,0xb4,0x4b,0x87,0xf1,0x2a,0xad,0x14,0xfa,
0x22,0x8c,0xda,0xf8,0xf8,0x46,0x29,0x25,0x50,0x90,0xd2,0x68,0x49,0xcf,0xea,0xcc,0x18,0xc1,0x73,0x8a,
0x98,0x94,0x81,0x0e,0xdf,0x2c,0xa9,0x5b,0xde,0x76,0xd0,0x99,0xd9,0x5c,0xd9,0x14,0xd6,0xe9,0x1c,0xa5,
0x96,0x69,0x66,0x68,0xe2,0x9e,0x6a,0x21,0x0c,0x50,0x08,0x6a,0x56,0xe3,0x97,0x32,0x15,0x03,0xd6,0x1c,
0x5f,0x3a,0x9b,0xef,0xb5,0x96,0xab,0xfb,0x05,0xd1,0xe2,0x8a,0x1c,0x4d,0xb2,0x1a,0xec,0xa3,0x33,0x2f,
0x49,0x9d,0x58,0x52,0x26,0xbd,0xcd,0x77,0x51,0x9b,0xf3,0xf3,0x3c,0xf1,0x95,0x7a,0xba,0x0a,0x96,0x45,
0x03,0x64,0xe2,0x8a,0x85,0xfb,0x2e,0x8f,0x2f,0xcd,0x20,0x58,0x91,0x13,0x43,0x11,0x8a,0x2a,0x92,0x1d,
0x87,0x6e,0x71,0xbb,0xcb,0x9d,0x9c,0xb5,0xc1,0x45,0x4e,0x86,0x8c,0x4d,0x9e,0xc7,0x23,0x4d,0x24,0x75,
0xd0,0xd3,0x37,0x26,0x59,0xde,0x5e,0x6d,0x5f,0x79,0x0d,0xa0,0xa4,0x12,0x3b,0x45,0x02,0xca,0xeb,0xa8,
0x9f,0x19,0xda,0x9b,0xc2,0xc9,0x40,0x2c,0x51,0xa6,0xaf,0x45,0xb2,0x1c,0x4b,0x04,0x52,0x89,0x72,0x64,
0x63,0xec,0x42,0x6a,0xe5,0x8e,0xcc,0x54,0xb3,0xfb,0xd1,0x24,0x9b,0xdb,0x05,0x99,0xf4,0xd4,0xf5,0xcd,
0x9a,0x67,0x90,0x5f,0xb5,0x28,0x65,0x53,0xaf,0xd7,0x93,0x0c,0x7a,0x29,0x5e,0x19,0xf6,0x51,0xd8,0xc6,
0xc1,0xdf,0x12,0x78,0xe5,0xa1,0xf0,0x49,0x0b,0xc7,0x4a,0x4c,0x3e,0x8f,0x09,0x44,0xcc,0x47,0xe6,0xba,
0xcd,0x35,0xf9,0x2e,0x7a,0xad,0x0d,0x18,0x46,0x50,0x14,0x9f,0xbd,0xe5,0xa5,0x26,0x8f,0xc8,0x9e,0xb7,
0x16,0xab,0xda,0xdc,0x2b,0x65,0x10,0xcb,0xb2,0x84,0x68,0x72,0x86,0xb9,0xf4,0x69,0xd1,0x9a,0xdb,0x83,
0xb9,0x01,0x18,0x2f,0xa6,0x4f,0x2f,0x4f,0x6e,0x40,0x47,0x1d,0xbb,0xa1,0x25,0xac,0x0f,0xb9,0x49,0xe5,
0x02,0x76,0xf3,0x1c,0x59,0xcd,0x93,0xd0,0x35,0x9e,0xff,0x3b,0xa0,0x0b,0xaf,0x8a,0xe9,0x26,0x98,0x07,
0xa8,0xf1,0x1a,0x08,0x82,0x44,0x72,0x23,0x4a,0x72,0x87,0x2b,0x23,0xb8,0x7f,0x0a,0xaa,0xa6,0xf0,0xde,
0xbf,0x03,0xb2,0xee,0x02,0xb2,0x3b,0xb0,0xed,0xbd,0xbd,0xba,0xfc,0xff,0x16,0x51,0x59,0x63,0x7b,0x57,
0x4b,0xf6,0x97,0x1b,0x71,0xa7,0x9d,0xee,0x13,0xa9,0x6b,0xe8,0x04,0xff,0x2e,0xe4,0x85,0x0a,0xd0,0xa9,
0x3b,0xc5,0x72,0x08,0x1d,0xca,0x1b,0x4a,0x37,0x37,0x30,0x6f,0x69,0x51,0x5c,0x4a,0x7f,0xb9,0x21,0x4a,
0x66,0x70,0x4c,0x48,0xf9,0xa0,0x96,0x8a,0xf3,0x83,0xa3,0x31,0x9e,0xb6,0xf1,0xd4,0x24,0xdf,0xde,0xc5,
0x4c,0x69,0xf9,0x8e,0x7c,0x99,0x93,0xea,0xe9,0x67,0x3e,0xe5,0xcf,0x24,0xc3,0x9e,0xb5,0xa4,0x1a,0x9e,
0xa6,0xe6,0xec,0xa5,0x79,0x12,0x6a,0xa2,0x2f,0x80,0x74,0xe9,0xce,0xfc,0x0c,0xd7,0x41,0xaa,0x7e,0x89,
0x72,0x30,0xcf,0xdb,0xb0,0xbd,0xa3,0xe5,0xfd,0x4e,0x1d,0x97,0xd6,0x74,0x60,0xe2,0x7d,0x66,0xe9,0xe8,
0x5b,0xa7,0x1f,0x78,0xaf,0x26,0xd9,0x9a,0x60,0x71,0x58,0xaf,0x28,0x40,0x31,0x1f,0xb4,0x7b,0xdf,0x3f,
0x01,0xda,0xe9,0x32,0x68,0x35,0xaa,0x8a,0x12,0x21,0xe5,0x88,0xcd,0xbb,0xeb,0x9d,0xe4,0xab,0xda,0xba,
0xb3,0xd2,0x10,0x0d,0x38,0x80,0xde,0x0a,0x59,0xa1,0x57,0x15,0xe6,0x03,0x1d,0x62,0x6e,0x9a,0xf7,0x43,
0x38,0xc2,0x30,0x6f,0xae,0x83,0xde,0xed,0x59,0x90,0x6e,0xd7,0xf6,0x56,0xad,0x17,0xca,0x8d,0xa9,0x9e,
0xaa,0x00,0xfa,0xfb,0xd3,0x20,0x33,0x4f,0x05,0x72,0x1b,0xa9,0x77,0x55,0xb7,0xab,0x3b,0xd5,0xdd,0xea,
0x5e,0x75,0xbf,0xfa,0x5d,0xd6,0x5c,0x77,0x74,0x50,0xb6,0xd3,0xd6,0xb2,0x49,0x3c,0xf7,0xca,0x75,0x60,
0x6a,0x55,0xb6,0x4d,0xdf,0x7a,0x33,0x33,0xc0,0x99,0x9a,0xe1,0xa0,0xbe,0x10,0x2e,0xbd,0x38,0x90,0xda,
0xb1,0x9c,0x53,0xb2,0x38,0xfa,0xf2,0xa2,0x58,0x54,0x72,0x44,0x73,0x10,0xaa,0xb4,0x9b,0x21,0x03,0xd1,
0xe9,0x26,0x49,0x21,0xaf,0xdb,0x66,0x2e,0xf8,0xf2,0xfb,0x6d,0xee,0x16,0x66,0xce,0x19,0x7c,0x39,0x4a,
0x8f,0xf8,0x54,0xc6,0xcc,0x97,0x59,0x28,0x7d,0xab,0xb7,0x4e,0xde,0xaa,0xe1,0xb8,0x53,0x96,0x68,0x9f,
0xc9,0x6d,0xc2,0xfb,0x15,0x67,0xb4,0xf0,0x06,0x12,0xb5,0x16,0x53,0x14,0x70,0x5e,0xa0,0x46,0xd7,0x9c,
0x17,0xac,0x18,0xa2,0x86,0xcd,0x12,0x0b,0x46,0x8f,0xf2,0x40,0x64,0x2a,0xdf,0xeb,0xab,0xce,0x2a,0xe9,
0xa5,0xa6,0x3b,0xb3,0x18,0x0d,0xf1,0x74,0xda,0x7a,0x7b,0x4c,0x8d,0xa9,0xcd,0xa2,0xf8,0x3a,0x8a,0xb4,
0x8e,0xab,0xd6,0xf1,0x58,0x65,0x38,0xc8,0xb9,0x96,0x2b,0x4e,0x29,0xb9,0x7e,0xb9,0xce,0xd4,0xbd,0xbd,
0xd8,0x31,0xb5,0x06,0xbe,0x45,0x5a,0x83,0x4d,0x61,0x7c,0x3b,0x0f,0xc6,0x69,0x8d,0xa5,0x05,0xe6,0x09,
0x02,0x4d,0xb2,0x3c,0x0b,0xf5,0x87,0xf2,0x9f,0x76,0x75,0x1f,0x2d,0x49,0xdc,0x7e,0xe1,0xeb,0x77,0x5e,
0x8a,0x03,0x25,0xec,0xad,0xb9,0x27,0xc0,0x05,0x32,0x69,0x08,0x5d,0x09,0x16,0x66,0x0b,0x48,0x69,0x73,
0x6a,0x06,0x03,0xd5,0xa6,0x52,0xc4,0x15,0x2c,0xa5,0x40,0xf6,0x31,0xde,0xc8,0x4e,0x35,0x5b,0xe6,0x6a,
0xea,0xd0,0xfc,0x2d,0x08,0x9e,0x63,0x6e,0x42,0x5d,0x60,0x1a,0x69,0x06,0xb7,0x05,0xb6,0xb1,0xd2,0x72,
0x07,0x24,0xd2,0xa5,0xf0,0x79,0x4c,0xb6,0x3e,0xa2,0x62,0xc5,0x99,0x96,0x4f,0xce,0x61,0x56,0xb4,0x43,
0xf3,0xb4,0x3b,0xb8,0x37,0x87,0xcb,0x20,0xdb,0x8b,0x1a,0x75,0xf2,0xa7,0x63,0xcb,0x83,0xf0,0x9b,0x19,
0xe8,0x37,0x6b,0x62,0x9c,0xfa,0x48,0x43,0xf9,0xa9,0xeb,0xbc,0x08,0x99,0x87,0x8f,0x97,0xe0,0xbc,0xe3,
0xfa,0x53,0xd2,0x1e,0x97,0x20,0x60,0x5b,0x6f,0xf6,0x2c,0x28,0x20,0x15,0xa3,0x1c,0x5d,0x44,0xe7,0xca,
0xee,0xb0,0xb0,0x37,0x31,0x34,0xb5,0x94,0x5a,0xa9,0x3d,0x9d,0x27,0x6e,0xd5,0x9b,0x69,0x19,0xe2,0x72,
0xa6,0x5a,0x2b,0x52,0x75,0x9e,0x47,0x1e,0x04,0x5a,0x1e,0x85,0x27,0x94,0xa0,0xd7,0x67,0x8a,0xfd,0x75,
0x67,0xfd,0x4c,0x73,0x6a,0x73,0x75,0xb4,0xda,0x73,0xcd,0x92,0x72,0x9d,0x05,0x93,0x0d,0x4c,0xf0,0xe6,
0xaf,0x39,0xc1,0xf5,0xf6,0x2b,0xcd,0x2c,0xf5,0xfa,0x67,0x4b,0x6e,0xb3,0x25,0xdb,0x55,0xdc,0xe7,0xe4,
0xdc,0x83,0x4f,0x9f,0xee,0xf5,0x42,0x3a,0x9e,0xa7,0xcf,0xf8,0x0a,0x86,0xc5,0x40,0xaf,0x85,0x09,0xa3,
0x2c,0x02,0x6c,0x0a,0x7d,0x7f,0x26,0x54,0x5f,0x27,0xf3,0xd2,0xe7,0x4b,0xc8,0x9c,0x2b,0x8f,0xee,0xe1,
0xe0,0x93,0x92,0xd4,0x0b,0xcb,0x1d,0x9b,0x0e,0xc2,0xa4,0x7b,0xa1,0xdc,0x41,0x98,0xab,0xa6,0x86,0x3e,
0xda,0x52,0x7e,0x16,0xa3,0xcb,0x67,0x5f,0x7d,0xb2,0xca,0x7f,0x7c,0x33,0x53,0x8d,0xd2,0x8b,0xad,0x21,
0x46,0x2e,0x4a,0xf0,0x71,0x49,0xd7,0x47,0x1d,0x2a,0x3a,0x6e,0x22,0xc9,0x5b,0xea,0xf9,0x36,0x55,0xef,
0xd3,0x5d,0xab,0x10,0xc8,0x08,0xb6,0xe4,0x7d,0x8b,0x78,0x21,0x6a,0x90,0x40,0x78,0xcc,0xeb,0x74,0x15,
0x0a,0x84,0xe0,0xbe,0xc6,0xfc,0x45,0xb5,0x0b,0xbc,0x4f,0x5e,0x63,0xfa,0x02,0x8e,0xf8,0x5c,0x52,0xe7,
0xbd,0xc6,0x64,0x29,0x9d,0xd9,0x3a,0x6b,0x7d,0x45,0x1d,0xb0,0xf2,0x89,0x6b,0x0f,0xd9,0xb7,0x13,0xc3,
0xf7,0x5f,0xb1,0xf7,0x86,0x3f,0xad,0xac,0x9e,0x7b,0x73,0x6f,0x47,0x1a,0x07,0x41,0xbe,0x58,0xb1,0xf8,
0x1c,0xd0,0x0c,0x04,0xf0,0x87,0xeb,0xe0,0x41,0xfa,0xae,0x95,0x56,0x0b,0x6a,0x7b,0xb5,0xfd,0xe4,0x99,
0x2c,0xbc,0xeb,0xf2,0xde,0xde,0x16,0xbb,0x81,0x2d,0xea,0x1a,0x13,0x19,0xcd,0xc5,0xa5,0xeb,0x29,0x16,
0x5e,0x49,0xf5,0x8a,0xc9,0x83,0x95,0x50,0x38,0xbc,0xe5,0xf2,0xcd,0x4b,0xa2,0x65,0x31,0x79,0xe8,0xc6,
0xf0,0xb2,0xb3,0x38,0x5a,0x67,0xc1,0xcd,0xfe,0xdf,0x6b,0x11,0x0c,0xe1,0x1e,0x0e,0x73,0x10,0x0e,0x87,
0xbf,0x51,0x52,0x77,0xbc,0xbc,0xb7,0xf1,0x56,0x19,0xb3,0xc8,0x22,0x6f,0xa7,0x30,0x7c,0x77,0xee,0x60,
0x0e,0x32,0xb4,0xb0,0x9e,0x8a,0xcf,0x0c,0x2b,0x50,0xce,0x3c,0x56,0xff,0x57,0x00,0xb0,0x50,0xd4,0x38,
0x47,0x11,0xaf,0x1a,0x2a,0x9a,0x27,0x4a,0x7e,0x8a,0xfa,0x3a,0x98,0xba,0xe4,0xe8,0xff,0x00,0xcc,0xf5,
0xb2,0x98,0x32,0x41,0x02,0x00
0x96,0x69,0x66,0x68,0xe2,0x9e,0x6a,0x21,0x0c,0x50,0x08,0x6a,0x56,0xe3,0x97,0x32,0x15,0x43,0xd9,0x0c,
0x2a,0x2b,0xe6,0xf3,0x7d,0xac,0xed,0xea,0xbe,0x41,0xbc,0xb8,0x22,0x67,0x93,0xac,0x06,0xfb,0xe8,0xd0,
0x4b,0x92,0x27,0x96,0x95,0x49,0x6f,0xf3,0x5d,0xd4,0xe6,0xfc,0x3c,0x4f,0x8c,0xa5,0x9e,0xb2,0x82,0x65,
0xd1,0x01,0x99,0xb9,0x62,0x21,0xbf,0xcb,0x63,0x4c,0x33,0x88,0x56,0xe4,0xc5,0x50,0xc4,0xa2,0x0a,0x65,
0xc7,0xa1,0x5b,0xdc,0xf2,0x72,0x37,0x67,0x6d,0x72,0x91,0x97,0x21,0x63,0xa3,0xe7,0xf1,0x4a,0x13,0x89,
0x1d,0xf4,0x14,0x8e,0x49,0xb6,0xb7,0x57,0xdb,0x57,0x9e,0x03,0x28,0xad,0xc4,0x4e,0x92,0x80,0x72,0x3b,
0xea,0xe7,0x86,0xf6,0xa6,0x70,0x34,0x10,0x4b,0x94,0xe9,0x6f,0x91,0x2c,0xc9,0x12,0x81,0x54,0xa2,0x3c,
0xd9,0x18,0xbf,0x90,0x5a,0xbd,0x23,0x33,0xdd,0xec,0x7e,0x34,0xc9,0xe6,0x76,0x41,0x46,0x3d,0x75,0x7d,
0xb3,0xe6,0x19,0xe4,0x5b,0x2d,0xca,0xd9,0xd4,0xeb,0xf5,0x24,0x93,0x5e,0x8a,0x57,0x86,0x7d,0x14,0xb6,
0x73,0xf0,0xb7,0x04,0x5e,0x79,0x38,0x7c,0xd2,0xca,0xb1,0x12,0x93,0xcf,0x63,0x06,0x11,0xf3,0x91,0xf9,
0x6e,0x73,0x4d,0xbe,0x8b,0x9e,0x6b,0x03,0x86,0x51,0x14,0xc5,0x67,0x6f,0x79,0xa9,0x09,0x24,0xb2,0xe7,
0xad,0xc5,0xab,0x36,0xf7,0x4a,0x19,0xc4,0xb2,0x2c,0x29,0x9a,0x9c,0x61,0x2e,0x9d,0x5a,0xb4,0xe6,0x36,
0x61,0x6e,0x04,0xc6,0xcb,0xe9,0xd3,0xcb,0x93,0x1b,0xd0,0x53,0xc7,0x6e,0x68,0x09,0x0b,0x44,0x6e,0x52,
0xb9,0x80,0xdd,0x3c,0x47,0x56,0xf3,0x24,0x74,0x8d,0xe7,0xff,0x0e,0xe8,0xc2,0xeb,0x62,0xba,0x0d,0xe6,
0x41,0x6a,0xbc,0x0e,0x82,0x20,0x91,0xdc,0x88,0x92,0xdc,0xe1,0xca,0x08,0xee,0x9f,0x82,0xaa,0x29,0xbc,
0xf7,0xef,0x80,0xac,0xbb,0x80,0x6c,0x0f,0x6c,0x7b,0x6f,0xaf,0x2e,0xff,0xbf,0x45,0x54,0xd6,0xd8,0xde,
0xd5,0x12,0xfe,0xe5,0x46,0xdc,0x69,0xa7,0xfb,0x44,0xea,0x1a,0x3a,0xc1,0xbf,0x0b,0x79,0xa1,0x12,0x74,
0xea,0x4e,0xb1,0x24,0x42,0x87,0x72,0x87,0xd2,0xed,0x0d,0xcc,0x5b,0x5a,0x15,0x97,0xd2,0x5f,0x6e,0x88,
0x92,0x59,0x1c,0x13,0x92,0x3e,0xa8,0xa6,0xe2,0xfc,0xe0,0x68,0x8c,0xa7,0x6e,0x3c,0x35,0xc9,0xbf,0x77,
0x31,0x5b,0x5a,0xbe,0x23,0x5f,0xe6,0xa5,0x7a,0xfa,0x99,0x4f,0x39,0x34,0xc9,0xb8,0x67,0x2d,0xa9,0x88,
0xa7,0xa9,0x3a,0x7b,0x69,0xde,0x84,0x9a,0xf8,0x0b,0x20,0x5d,0xba,0x33,0x3f,0xc3,0x7d,0x90,0x2a,0x60,
0xa2,0x2c,0xcc,0x73,0x37,0x6c,0xef,0x68,0xb9,0xbf,0x53,0xc7,0xa5,0x35,0x1d,0x98,0x78,0xa7,0x59,0x3a,
0xfa,0xd6,0xe9,0x07,0xde,0xab,0x49,0xb6,0x36,0x58,0x1c,0xd6,0x2b,0x0a,0x52,0xcc,0x07,0xed,0xde,0xf7,
0x4f,0x80,0x76,0xba,0x0c,0x5a,0x8d,0xaa,0xa2,0x64,0x48,0x39,0xe2,0xf3,0xee,0x7a,0x27,0xf9,0x2a,0xb7,
0xee,0xac,0x34,0x46,0x03,0x0e,0xa0,0xb7,0x42,0x96,0xe8,0x55,0xc5,0xf9,0x40,0x8f,0x98,0x9b,0xe6,0xfd,
0x10,0x8e,0x30,0xcc,0x9d,0xeb,0xa0,0x87,0x7b,0x16,0xa4,0xdb,0xb5,0xbd,0x55,0xeb,0x85,0x72,0x63,0xaa,
0xb7,0x2a,0x80,0xfe,0xfe,0x34,0xc8,0xcc,0x55,0x81,0xdc,0x46,0xea,0x5e,0xd5,0xed,0xea,0x4e,0x75,0xb7,
0xba,0x57,0xdd,0xaf,0x7e,0x97,0x35,0xd7,0x1d,0x1d,0x94,0xed,0xb4,0xb5,0x6c,0x12,0xcf,0xbd,0x72,0x1d,
0x98,0x5a,0x95,0x6d,0xd3,0xb7,0xde,0xcc,0x0c,0x70,0xa6,0x66,0x38,0xa8,0x2f,0x84,0x4c,0x2f,0x0e,0xa4,
0x76,0x2c,0xe7,0x94,0x2c,0x8e,0xbe,0xbc,0x28,0x16,0xd5,0x1c,0xd1,0x24,0x84,0x6a,0xed,0x66,0xc8,0x40,
0x74,0xba,0x49,0x52,0xc8,0xeb,0xba,0x99,0x0b,0xbe,0xfc,0xbe,0x9b,0xbb,0x85,0x99,0x73,0x06,0x5f,0x8e,
0x52,0x24,0x3e,0x95,0x31,0xf3,0x65,0x16,0x4a,0xdf,0xea,0xad,0x93,0xb7,0x72,0x38,0xee,0x94,0x25,0xda,
0x67,0x72,0x9b,0xf0,0x7e,0xc5,0x19,0x2d,0x3c,0x82,0x44,0xbd,0xc5,0x14,0x05,0x9c,0x17,0xa9,0xd1,0x35,
0xe7,0x05,0x4b,0x86,0xa8,0x63,0xb3,0xc4,0x8a,0xd1,0xa3,0x5c,0x10,0x99,0xca,0xf7,0xfa,0xaa,0xb3,0x4a,
0x7c,0xa9,0xe9,0xce,0x2c,0x46,0x43,0x3c,0xa5,0xb6,0xde,0x1e,0xd3,0x63,0x6a,0xb3,0x28,0xbe,0x8e,0x22,
0xb5,0xe3,0xaa,0x75,0x3c,0x56,0x59,0x0e,0x72,0xae,0xe5,0x8a,0x53,0x4a,0xae,0x5f,0xae,0x33,0x75,0x6f,
0x2f,0x76,0x4c,0xad,0x81,0x6f,0x91,0xda,0x60,0x53,0x18,0xdf,0xce,0x83,0x71,0x5a,0x63,0x69,0x81,0x79,
0x82,0x40,0x93,0x2c,0xd1,0x42,0xfd,0xa1,0xfc,0xa7,0x5d,0xdf,0x47,0x4b,0x12,0xb7,0x5f,0xf8,0xfa,0xbd,
0x97,0xe2,0x40,0x09,0x9b,0x6b,0xee,0x09,0x70,0x81,0x4c,0x1a,0x43,0x57,0x82,0x85,0x19,0x03,0x52,0xda,
0x9c,0x9a,0xc1,0x40,0xb5,0xa9,0x14,0x71,0x07,0x4b,0x29,0x92,0x7d,0x8c,0xb7,0xb2,0x53,0xcd,0x9e,0xb9,
0x9a,0x3a,0x34,0x9f,0x0b,0x82,0xe7,0x98,0x9b,0x51,0x17,0x98,0x46,0x9a,0xc1,0x6d,0x81,0x6d,0xac,0xb4,
0xdc,0x01,0x89,0x74,0x29,0x84,0x1e,0x13,0xae,0x8f,0xa8,0x60,0x71,0xa6,0xf5,0x93,0x73,0x98,0x15,0xed,
0xd0,0x44,0xed,0x0e,0xee,0xcd,0xe1,0x32,0xc8,0xf6,0xa2,0x46,0x9d,0xfc,0x29,0xd9,0xf2,0x20,0xfc,0x66,
0x06,0xfa,0xcd,0x9a,0x18,0xa7,0x3e,0xd2,0x50,0x7e,0xea,0x3a,0x2f,0x42,0xe6,0xe1,0xe3,0x25,0x38,0xef,
0xb8,0xfe,0x94,0xb4,0xc7,0x25,0x08,0xd8,0xd6,0x9b,0x3d,0x0b,0x0a,0x48,0xc5,0x28,0x47,0x97,0xd1,0xb9,
0x32,0x3c,0x2c,0xec,0x4d,0x0c,0x4f,0x2d,0xa5,0x56,0x6b,0x4f,0xe7,0x89,0x5b,0xf5,0x66,0x5a,0x96,0xb8,
0x9c,0xe9,0xd6,0x8a,0x54,0x9e,0xe7,0xd1,0x07,0x81,0x96,0x4b,0xe1,0x09,0x65,0xe8,0xf5,0x99,0x62,0x7f,
0xdd,0x59,0x3f,0xd3,0x9c,0xda,0x5c,0x1d,0xb1,0xf6,0x5c,0xb3,0xa4,0x7c,0x67,0xc1,0x64,0x03,0x13,0xbc,
0xf9,0x6b,0x4e,0x70,0xbd,0xfd,0x4a,0x33,0x4b,0xbd,0x02,0xda,0x92,0xdb,0x6c,0xc9,0x76,0x15,0x77,0x3a,
0x39,0xf7,0xe0,0xd3,0xa7,0x7b,0xbd,0x90,0x92,0xe7,0xe9,0x33,0xbe,0x82,0x61,0x31,0xd8,0x6b,0x61,0xc2,
0x28,0x8b,0x00,0x9b,0x42,0xff,0x9f,0x09,0xd5,0xd8,0xc9,0xbc,0xf4,0xf9,0x12,0x32,0xe7,0xca,0xa3,0x7b,
0x38,0xf8,0xa4,0x24,0xf5,0xc2,0x72,0xc7,0xa6,0x03,0x31,0xe9,0x5e,0x28,0x77,0x20,0xe6,0xaa,0xa9,0xa1,
0x9f,0xb6,0x94,0x9f,0xc5,0xe8,0xf2,0xd9,0x57,0x9f,0xac,0xf2,0x21,0xdf,0xcc,0x54,0xa3,0x14,0x63,0x6b,
0x88,0x91,0x8b,0x12,0x7c,0x5c,0xd2,0xf5,0x51,0x87,0x8a,0x8e,0x9b,0x48,0xf2,0x96,0x7a,0xbe,0x4d,0x15,
0xfc,0x74,0xf7,0x2a,0x04,0x32,0x82,0x2d,0x79,0xdf,0x22,0x5e,0x88,0x1a,0x24,0x10,0x1e,0xf3,0x3c,0x5d,
0x85,0x02,0x21,0xb8,0xaf,0x31,0x7f,0x51,0xf1,0x02,0xef,0x94,0xd7,0x98,0xbe,0x80,0x23,0x3e,0x97,0xd4,
0x79,0xaf,0x31,0x59,0x4a,0x69,0xb6,0xce,0x5a,0x5f,0x51,0x07,0xac,0x7c,0xe2,0xda,0x43,0xf6,0xed,0xc4,
0xf0,0xfd,0x57,0xec,0xbd,0xe1,0x4f,0x2b,0xab,0xe7,0xde,0xdc,0xdb,0x91,0xc6,0x41,0x90,0x2f,0x56,0x2c,
0x3e,0x07,0x34,0x03,0x01,0xfc,0xe1,0x3a,0x78,0x90,0xfe,0x6b,0xa5,0xd5,0x82,0xda,0x5e,0x6d,0x3f,0x79,
0x26,0x0b,0x0f,0xbb,0xbc,0xb7,0xb7,0xc5,0x6e,0x60,0x8b,0xba,0xc7,0x44,0x46,0x73,0x71,0xe9,0x7a,0x8a,
0xc5,0x57,0x52,0x3d,0x63,0xf2,0x60,0x25,0x14,0x4e,0x6f,0xb9,0xfc,0xf3,0x92,0x68,0x59,0x4c,0x20,0xba,
0x31,0xbc,0xec,0x2c,0x8e,0xd6,0x59,0x70,0xb5,0xff,0xf7,0x5a,0x04,0x43,0xb8,0x88,0xc3,0x1c,0x84,0xd3,
0xe1,0x6f,0x94,0xd8,0x1d,0x2f,0xef,0x6d,0xbc,0x55,0xc6,0x4c,0xb2,0xc8,0xdb,0x29,0x14,0xdf,0x9d,0x3b,
0x98,0x87,0x0c,0x2d,0xac,0xa7,0xe2,0x33,0xc3,0x2a,0x94,0x33,0x8f,0xd5,0xff,0x15,0x00,0x2c,0x14,0x39,
0xce,0x51,0xc4,0x2b,0x87,0x8a,0xe6,0x89,0xb2,0x9f,0xa2,0xc6,0x0e,0xa6,0x2f,0x39,0xfa,0x3f,0x82,0x93,
0x69,0x1e,0x36,0x41,0x02,0x00
};

+ 1316
- 1316
code/espurna/static/index.lightfox.html.gz.h
File diff suppressed because it is too large
View File


+ 1357
- 1357
code/espurna/static/index.rfbridge.html.gz.h
File diff suppressed because it is too large
View File


+ 65
- 65
code/espurna/static/index.rfm69.html.gz.h View File

@ -1,4 +1,4 @@
#define webui_image_len 27228
#define webui_image_len 27232
const uint8_t webui_image[] PROGMEM = {
0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x02,0x03,0xec,0xbd,0xe9,0x7a,0xdb,0x48,0xb2,0x28,0xf8,0xbf,
0x9f,0x02,0x86,0xbb,0x6d,0xb2,0x0d,0xae,0x5a,0x4d,0x5a,0xf2,0xa1,0x25,0xd9,0x56,0x95,0x2d,0xc9,0x96,
@ -1298,68 +1298,68 @@ const uint8_t webui_image[] PROGMEM = {
0xce,0x77,0x3c,0xc9,0x97,0x6b,0x2b,0xef,0x35,0x2b,0x48,0x26,0xb8,0x28,0x36,0x26,0x7f,0x8c,0x6f,0xf3,
0x6e,0xcf,0xca,0x8e,0x51,0xeb,0x3f,0xf7,0x96,0xe9,0x86,0x6d,0xde,0x8f,0x59,0x18,0xd6,0x63,0x5c,0x44,
0x09,0xc0,0x5d,0x70,0x45,0xaf,0x71,0x2b,0x64,0x71,0x51,0x58,0x27,0x75,0x3d,0x63,0xe1,0xa5,0xbd,0x79,
0x97,0x28,0x16,0x5e,0xbf,0x9b,0xb9,0xd3,0xb0,0xf0,0x12,0x5e,0x55,0x72,0x79,0xbb,0x20,0x5a,0xf0,0x5b,
0xff,0x16,0xdc,0x1d,0xac,0xdd,0xae,0x57,0x78,0x7d,0xb0,0x7e,0xc5,0xde,0xf2,0x90,0x28,0x3d,0x7f,0x8b,
0x55,0x84,0x03,0x64,0xe2,0x32,0x22,0xf4,0x16,0x87,0x84,0x15,0x20,0xac,0x48,0x12,0xa3,0x10,0xe5,0xbd,
0xb8,0x9e,0x2b,0x35,0xba,0xec,0x76,0x97,0x3b,0xb9,0x68,0x83,0x8b,0x30,0xea,0x82,0x4d,0xbe,0x8a,0xf3,
0x95,0x88,0xc3,0xd6,0xf3,0x99,0xa6,0x49,0xde,0x56,0x65,0x5b,0xd6,0x41,0x7c,0x37,0xb9,0x48,0x44,0x89,
0x4e,0x57,0xcc,0x2c,0x52,0xe0,0x56,0x90,0xbe,0x9f,0x28,0x19,0x92,0x4d,0x49,0xe3,0x3d,0xcc,0xbc,0x90,
0x77,0x95,0x4d,0x61,0xee,0xe5,0xed,0x64,0x92,0x78,0x41,0xf3,0x5a,0x44,0x7a,0x12,0x84,0xac,0x32,0x75,
0xc9,0x85,0x58,0xdc,0xed,0x54,0xad,0x56,0xd3,0x04,0x7a,0x21,0x5c,0x2d,0x6c,0x63,0x6d,0x1b,0x07,0xaf,
0x25,0xe0,0xca,0xa3,0x57,0xd3,0x16,0x8e,0xa5,0x90,0xfc,0x73,0x4c,0x20,0x62,0x3e,0x32,0xf9,0xf3,0x4a,
0x93,0x3f,0x47,0x07,0xad,0x9e,0x85,0xc1,0x02,0xeb,0xcf,0xde,0x9b,0xe6,0xc6,0x7b,0x17,0xcf,0x5b,0x0b,
0x2f,0x6b,0x6c,0xd9,0x05,0xc8,0xb2,0x28,0x43,0xa0,0x9c,0xe1,0x4a,0xfa,0xb4,0x28,0xcd,0xed,0xc1,0xdc,
0x00,0x8c,0x07,0xd3,0x87,0xaf,0x0f,0xce,0x40,0x47,0x1d,0x06,0xb1,0x27,0xac,0x0f,0x2b,0xa3,0xca,0x2b,
0xd8,0xcd,0x57,0x48,0x6a,0xbe,0x09,0x5c,0xc3,0xab,0xff,0x09,0xe0,0xc2,0xa3,0x62,0x3a,0x09,0xe6,0xe1,
0x6c,0xfc,0x52,0x10,0x81,0x22,0x2b,0x03,0x4a,0x52,0x87,0xb7,0x6e,0xf4,0xf9,0x5b,0x40,0x35,0x81,0x7a,
0xff,0x13,0x80,0xf5,0x21,0xe2,0xd7,0xe0,0x36,0xb7,0xb6,0xaa,0xf2,0xff,0x75,0xc2,0xb2,0x5a,0x73,0x53,
0xcb,0x7e,0xb9,0x32,0xe0,0x0e,0x4f,0xce,0xbf,0x11,0xbb,0xfa,0x7e,0xf4,0x3f,0x05,0xbd,0x50,0x01,0x3a,
0x0c,0x26,0x78,0x3f,0xc8,0x09,0x25,0xd2,0xa5,0x93,0x1b,0x98,0xb7,0xb4,0x28,0x2e,0xc4,0xbf,0x95,0x47,
0x94,0x4e,0x69,0x9a,0x92,0xf2,0x41,0x2d,0x15,0xfc,0x83,0x83,0xd1,0xcc,0x63,0x7a,0xc8,0xc8,0x8d,0x35,
0x9b,0x3a,0x70,0x35,0x96,0x2f,0x93,0xca,0x7d,0x3b,0xcf,0xa7,0x84,0xb2,0x64,0xd8,0xf3,0x16,0x5c,0x0f,
0xa9,0xa9,0x39,0x5b,0x8a,0xe7,0xeb,0xbc,0x3d,0x11,0x7d,0x61,0x48,0xaf,0x83,0x59,0x58,0x70,0xe1,0xa7,
0x85,0x79,0xf7,0x51,0x0e,0xe6,0xa1,0xd6,0xcd,0x0d,0x2d,0x11,0x7e,0x6e,0xbf,0xb4,0xa6,0x3d,0x86,0xe7,
0x99,0xf6,0xfe,0x23,0xbf,0x1b,0x4d,0xdb,0xa3,0x62,0x4d,0x70,0xfd,0xb1,0xbe,0xa5,0x58,0xbc,0xd5,0x46,
0xbb,0xf5,0xf4,0x1b,0x46,0x3b,0x59,0x34,0x5a,0x0d,0xab,0x92,0xdc,0x25,0x2b,0x84,0xa1,0x7d,0xb8,0x38,
0xb0,0x62,0xcd,0x89,0x7f,0x49,0xee,0xdd,0x45,0x86,0x68,0x80,0x01,0xb4,0xb6,0x96,0x15,0x7a,0xd9,0x4d,
0x95,0xa0,0x43,0x5c,0x31,0xf6,0xb9,0x0f,0x2c,0x0c,0x13,0x49,0xfb,0xe8,0xc8,0x5d,0x34,0xd2,0x66,0x65,
0x6b,0xd9,0x7a,0xa1,0xdc,0xa8,0x64,0x4e,0x2e,0x44,0xaa,0xa1,0xff,0x78,0x18,0x15,0x86,0x96,0x23,0xb5,
0x91,0x7a,0x97,0xd3,0x74,0x36,0x9c,0x4d,0x67,0xcb,0xd9,0x76,0x76,0x8a,0xe6,0xba,0xa1,0x0f,0xa5,0x99,
0xb7,0x96,0x0d,0xa2,0xb9,0x6f,0x03,0x1f,0xa6,0xe6,0x58,0x4d,0x7a,0xba,0x98,0xb1,0x08,0x67,0xca,0xe2,
0xde,0xff,0x57,0xdd,0xb5,0xf4,0x34,0x0c,0xc3,0xe0,0xbf,0x12,0x71,0x01,0x24,0x98,0xf6,0x60,0x57,0x24,
0xa6,0x5d,0x38,0x50,0x26,0x8d,0x3b,0x82,0xb6,0x68,0x82,0x6d,0x9d,0xe8,0x26,0x10,0xbf,0x9e,0xda,0x71,
0xdb,0x34,0x69,0x1a,0xa7,0xed,0x78,0xdc,0x26,0x35,0x4b,0x62,0xd7,0x4e,0xe3,0xd7,0xe7,0xc1,0x85,0x74,
0xe2,0x88,0x34,0x86,0xa6,0x43,0x7b,0xc8,0x57,0xd4,0x17,0x2a,0x34,0x56,0x9e,0x94,0xa2,0xca,0x3e,0x2e,
0x8b,0xa9,0xb5,0x29,0xb8,0x83,0xc0,0xa4,0xed,0x47,0x0c,0x68,0xd2,0x3e,0x45,0x81,0x9b,0xb6,0xc9,0xda,
0x1f,0x3f,0x6f,0xf3,0xca,0xfb,0x70,0xb6,0x9c,0xcb,0x25,0x5e,0x68,0xdb,0x83,0x59,0xbe,0xe6,0x4b,0x66,
0x0f,0xe6,0x9b,0x90,0x02,0x55,0xae,0xf0,0x12,0x68,0x4a,0x83,0xf5,0xa9,0xab,0x89,0x9c,0x97,0xbe,0xd1,
0x94,0x0d,0x44,0xcd,0x47,0x6b,0x0c,0x70,0xd9,0xb1,0x49,0xb5,0x9c,0x0d,0x2f,0x06,0x35,0x75,0x6a,0xf0,
0x60,0x3c,0x60,0xe9,0xb6,0xd5,0xf8,0xee,0x6e,0x3a,0x17,0x28,0xb0,0x8a,0xed,0x2c,0x2a,0x32,0x24,0xf1,
0xe5,0xd5,0xf1,0x80,0x15,0xab,0x50,0xe1,0x7e,0x8f,0xb8,0x62,0xee,0x0f,0x68,0xf1,0x79,0xd5,0xbb,0xe7,
0xe0,0x7c,0x70,0x1b,0x51,0x02,0xc9,0xe5,0xcb,0xae,0x69,0xa7,0x7d,0xa2,0xeb,0x83,0xe6,0xfd,0x63,0x13,
0x20,0xaf,0x07,0xb9,0x5b,0xce,0xb9,0x2d,0x28,0xd3,0xae,0x19,0x33,0x8f,0xd3,0xb0,0x18,0x73,0xee,0x93,
0x98,0x54,0xe1,0x8a,0x24,0x79,0x06,0xf1,0x41,0xb5,0x2f,0xbd,0x5b,0x36,0x94,0xe8,0x3f,0xee,0x67,0x26,
0x1d,0x7a,0x86,0x08,0xd7,0xb9,0x7f,0x0c,0x21,0x76,0xfa,0x91,0x32,0x31,0x5e,0x62,0xdd,0x32,0x00,0x65,
0xbe,0x60,0x2f,0x69,0xab,0x1f,0x4e,0xca,0xbb,0x63,0x1c,0x38,0x4b,0x93,0xf0,0x2d,0x8e,0x9a,0x76,0x36,
0x2d,0x07,0x05,0x7c,0x3c,0x1f,0x0e,0xc3,0x17,0x87,0x75,0x1a,0x77,0xe4,0x38,0xce,0x51,0xc7,0xf2,0x79,
0xb2,0x3d,0xdd,0x8b,0x1d,0x3c,0x6e,0xe0,0x79,0x90,0xbc,0x6f,0xd0,0x96,0x69,0x60,0xc0,0x58,0x1d,0x76,
0x14,0x16,0xe0,0x85,0xf7,0xac,0x0c,0x8b,0xb2,0xca,0xea,0x0d,0xdd,0x84,0x9a,0x40,0x56,0x9b,0x7b,0xba,
0x47,0x0e,0x07,0xa3,0x3a,0x88,0x21,0x26,0x56,0x0f,0x93,0xc0,0x12,0x4c,0x59,0xa4,0x4a,0x01,0x3b,0x93,
0xd2,0x89,0x85,0x52,0x98,0x6f,0x79,0x78,0xb6,0x3a,0xf7,0x46,0xee,0x32,0xa1,0x63,0x51,0x89,0x60,0x39,
0xe9,0xaa,0x07,0x02,0x17,0x7f,0x93,0xc0,0x6e,0xfa,0x8a,0x94,0xd5,0x06,0x23,0x86,0xb9,0x9a,0x35,0xa8,
0x2b,0x45,0x17,0x98,0x3a,0xd8,0x9e,0xdc,0x7b,0x03,0x07,0xa5,0x3d,0xc5,0x77,0xd9,0xb2,0x50,0x76,0x64,
0x10,0x3c,0x9e,0x4e,0xe1,0x98,0x82,0x4c,0x94,0x15,0xa2,0xcd,0x5a,0x43,0x10,0x3f,0x71,0x03,0x72,0x7e,
0xba,0xa3,0xf0,0xab,0xb8,0x37,0x7a,0xdf,0x3b,0x7c,0x32,0x94,0x9c,0x37,0xc8,0xbc,0x5c,0xee,0x36,0xfa,
0xb4,0x9c,0x70,0x9e,0xb7,0x12,0xc8,0x18,0xce,0x6f,0x73,0xb4,0x7a,0xfe,0xec,0xd7,0x89,0x2d,0xb2,0x99,
0xfb,0x21,0x55,0x82,0x3e,0x6f,0xa5,0x02,0xba,0x3e,0x59,0x9b,0xa8,0x88,0x57,0x48,0x2b,0xcb,0x40,0x6f,
0x0f,0x92,0x28,0xb6,0x1f,0x52,0x18,0xe1,0x70,0x81,0xb7,0xc3,0x14,0x02,0xc2,0x29,0x1e,0x51,0x14,0xf7,
0xc6,0xf4,0x7c,0x77,0xff,0x7d,0xc1,0x0c,0x4d,0xcb,0xcb,0x7e,0xa0,0x35,0x07,0xb8,0x0b,0xd5,0x1e,0xfe,
0x0d,0x3b,0x10,0x7c,0x80,0xfb,0x12,0xd8,0x9e,0xc5,0x11,0xef,0xd8,0x7f,0xe9,0x15,0x54,0x83,0x6a,0xd9,
0x9c,0xd9,0x4f,0xb4,0x3e,0x2d,0x39,0x00,0x4e,0x69,0xa3,0xfc,0x25,0x86,0xac,0xe1,0x4a,0x55,0x46,0x52,
0x86,0x15,0x37,0x82,0xe7,0x17,0x85,0xeb,0xc6,0xa2,0x51,0x57,0xae,0xec,0xe9,0x65,0xb2,0xf2,0xb3,0x74,
0xb6,0xf8,0xf5,0x4c,0xf0,0xe2,0xcb,0xc4,0x5c,0x2d,0x30,0x52,0xad,0xff,0xd7,0x4b,0x78,0xa2,0x14,0xe1,
0x8c,0x06,0x4a,0x3a,0x7b,0x44,0x2c,0x5e,0x08,0xe0,0xae,0x21,0xb2,0x08,0xe0,0x7f,0x70,0xa2,0x62,0x29,
0x76,0xf2,0xb1,0x05,0xc8,0x25,0xf0,0xb2,0xcd,0xe9,0xb7,0x80,0xb6,0x9c,0x87,0x9d,0x18,0xbc,0xa6,0xd9,
0x5e,0xb0,0x72,0x58,0xb2,0x48,0xb6,0x52,0xa5,0xe1,0x5a,0x1f,0x54,0x02,0x88,0x07,0xa4,0x86,0xeb,0x6f,
0xc7,0x1a,0x30,0x45,0x41,0xb9,0x01,0x00
0x97,0x28,0x16,0x5e,0xbf,0xcb,0x73,0x93,0x94,0x58,0x54,0x5e,0x32,0x9f,0xa7,0x46,0xd9,0xe5,0x6d,0x83,
0x78,0xc1,0x6f,0xfe,0x5b,0x70,0x7f,0xb0,0x76,0xc3,0x5e,0xe1,0x15,0xc2,0xfa,0x35,0x7b,0xcb,0xc3,0xa2,
0xf4,0x1c,0x2e,0x56,0x11,0x1e,0x90,0x99,0xcb,0x88,0xd2,0x5b,0x1c,0x16,0x56,0x80,0xb4,0x22,0x51,0x8c,
0x42,0x96,0xf7,0xe2,0x8a,0xae,0xd4,0xe8,0xb2,0x5b,0x5e,0xee,0xe6,0xa2,0x4d,0x2e,0x42,0xa9,0x0b,0x36,
0xfa,0x2a,0x0e,0x58,0x22,0x16,0x5b,0xcf,0x69,0x9a,0x26,0x7b,0x5b,0x95,0x6d,0x59,0x07,0x71,0xde,0xe4,
0x24,0x11,0x25,0x3b,0x5d,0x31,0xbb,0x48,0x81,0x6b,0x41,0xfa,0x8e,0xa2,0x64,0x48,0x36,0x25,0x8e,0xf7,
0x30,0xfb,0x42,0xde,0x75,0x36,0x85,0xf9,0x97,0xb7,0x93,0x49,0xe2,0x25,0xcd,0x6b,0x11,0xea,0x49,0x10,
0xb2,0xca,0xd4,0x25,0x37,0x62,0x71,0xbf,0x53,0xb5,0x5a,0x4d,0x13,0xe9,0x85,0x70,0xb5,0xb0,0x8d,0xb5,
0xed,0x1c,0xbc,0x96,0x80,0x2b,0x8f,0x60,0x4d,0x5b,0x39,0x96,0x42,0xf2,0xcf,0x31,0x83,0x88,0xf9,0xc8,
0x04,0xd0,0x2b,0x4d,0xfe,0x1c,0x9d,0xb4,0x7a,0x16,0x06,0x0c,0xac,0x3f,0x7b,0x6f,0x9a,0x1b,0xf3,0x5d,
0x3c,0x6f,0x2d,0xc4,0xac,0xb1,0x65,0x17,0x20,0xcb,0xa2,0x2c,0x81,0x72,0x86,0x2b,0xe9,0xd4,0xa2,0x34,
0xb7,0x09,0x73,0x23,0x30,0x1e,0x4e,0x1f,0xbe,0x3e,0x38,0x03,0x3d,0x75,0x18,0xc4,0x9e,0xb0,0x40,0xac,
0x8c,0x2a,0xaf,0x60,0x37,0x5f,0x21,0xa9,0xf9,0x26,0x70,0x0d,0xaf,0xfe,0x27,0x80,0x0b,0x8f,0x8b,0xe9,
0x34,0x98,0x87,0xb4,0xf1,0x8b,0x41,0x04,0x8a,0xac,0x0c,0x28,0x49,0x1d,0xde,0xba,0xd1,0xe7,0x6f,0x01,
0xd5,0x04,0xea,0xfd,0x4f,0x00,0xd6,0x87,0x88,0x5f,0x85,0xdb,0xdc,0xda,0xaa,0xca,0xff,0xd7,0x09,0xcb,
0x6a,0xcd,0x4d,0x2d,0x03,0xe6,0xca,0x80,0x3b,0x3c,0x39,0xff,0x46,0xec,0xea,0xfb,0xd1,0xff,0x14,0xf4,
0x42,0x25,0xe8,0x30,0x98,0xe0,0x1d,0x21,0x27,0x94,0x4c,0x97,0x4e,0x6f,0x60,0xde,0xd2,0xaa,0xb8,0x10,
0xff,0x56,0x1e,0x51,0x3a,0xad,0x69,0x4a,0xd2,0x07,0xd5,0x54,0xf0,0x0f,0x0e,0x46,0x33,0x97,0xe9,0x21,
0x23,0x57,0xd6,0x6c,0xfa,0xc0,0xd5,0x58,0xbe,0x4c,0x2c,0xf7,0xed,0x3c,0x9f,0x92,0xca,0x92,0x71,0xcf,
0x5b,0x70,0x45,0xa4,0xa6,0xea,0x6c,0x29,0x9e,0xaf,0xf3,0xf6,0x44,0xfc,0x85,0x21,0xbd,0x0e,0x66,0x61,
0xc1,0xa5,0x9f,0x16,0xe6,0xde,0x47,0x59,0x98,0x87,0x5b,0x37,0x37,0xb4,0x64,0xf8,0xb9,0xfd,0xd2,0x9a,
0xf6,0x18,0x9e,0x69,0xda,0xfb,0x8f,0xfc,0x6e,0x34,0x6d,0x8f,0x8a,0xb5,0xc1,0xf5,0xc7,0xfa,0x96,0xe2,
0xf1,0x56,0x1b,0xed,0xd6,0xd3,0x6f,0x18,0xed,0x64,0xd1,0x68,0x35,0xac,0x4a,0xf2,0x97,0xac,0x10,0x8a,
0xf6,0xe1,0xe2,0xc0,0x8a,0x35,0x47,0xfe,0x25,0xf9,0x77,0x17,0x19,0xa3,0x01,0x06,0xd0,0xda,0x5a,0x96,
0xe8,0x65,0xb7,0x55,0x82,0x1e,0x71,0xc5,0xd8,0xe7,0x3e,0xb0,0x30,0x4c,0x26,0xed,0xa3,0x33,0x77,0xd1,
0x48,0x9b,0x95,0xad,0x65,0xeb,0x85,0x72,0xa3,0x92,0x39,0xb9,0x10,0xa9,0x86,0xfe,0xe3,0x61,0x54,0x18,
0x5e,0x8e,0xd4,0x46,0xea,0x5e,0x4e,0xd3,0xd9,0x70,0x36,0x9d,0x2d,0x67,0xdb,0xd9,0x29,0x9a,0xeb,0x86,
0x3e,0x94,0x66,0xde,0x5a,0x36,0x88,0xe6,0xbe,0x0d,0x7c,0x98,0x9a,0x63,0x35,0xe9,0xe9,0x62,0xc6,0xfe,
0xbf,0xea,0xae,0xa5,0xa7,0x61,0x18,0x06,0xff,0x95,0x88,0x0b,0x20,0xc1,0xb4,0x07,0xbb,0x22,0x31,0xed,
0xc2,0x81,0x32,0x69,0xdc,0x11,0xb4,0x45,0x13,0x6c,0xeb,0x44,0x3b,0x81,0xf8,0xf5,0xd4,0x8e,0xdb,0x66,
0x49,0xd3,0x38,0x6d,0xc7,0xe3,0x36,0xa9,0x59,0x12,0xbb,0x76,0x1a,0xbf,0x3e,0xa7,0x40,0x69,0x9c,0x85,
0x83,0x0b,0xe9,0xc8,0x11,0x69,0x0c,0x8d,0x87,0x32,0xc8,0x59,0xd4,0x17,0x2a,0x35,0x56,0x9e,0x94,0xe2,
0x90,0x7d,0x5c,0x16,0x53,0x7b,0x53,0x70,0x09,0x81,0x59,0xdb,0x8f,0x18,0xd0,0xa4,0x7d,0x8a,0x02,0x37,
0x75,0x93,0xb5,0x3f,0x7e,0xee,0xe6,0x95,0xf7,0xe1,0x6c,0x39,0x97,0x2b,0xcc,0xd0,0xb6,0x07,0xb3,0x7c,
0xcd,0x97,0xcc,0x3e,0xcc,0x37,0x21,0x05,0xab,0x5c,0x21,0x26,0xd0,0x94,0x06,0xeb,0x53,0x57,0x13,0x39,
0x2f,0x7d,0xa3,0x29,0x23,0x88,0x1a,0x90,0xd6,0x18,0xe0,0xb2,0x6b,0x93,0x6a,0x39,0x1b,0x9e,0x0c,0x6a,
0xec,0xd4,0xe0,0xc5,0x78,0xc0,0xf2,0x6d,0xab,0xf1,0xdd,0xdd,0x74,0x2e,0x91,0x60,0x15,0xdb,0x59,0x1c,
0xc8,0x90,0xc4,0x98,0x57,0xc7,0x03,0x5e,0xac,0x42,0x85,0xfb,0x3d,0xe2,0x8a,0x85,0x3f,0xa0,0xc5,0xe7,
0x55,0xef,0xa0,0x83,0xf3,0xc1,0x6d,0x44,0x09,0x26,0x57,0x2f,0xbb,0xa6,0xa5,0xf6,0x89,0xae,0x0f,0x9a,
0x07,0x90,0x4d,0x80,0xbc,0x1e,0x14,0xae,0x39,0xe7,0xb6,0xa0,0x54,0xbb,0x66,0xcc,0x3c,0x4e,0xc3,0x72,
0xcc,0xb9,0x4f,0x72,0xd2,0x01,0x57,0x24,0xc9,0x33,0x88,0x11,0xaa,0xbd,0xe9,0xdd,0xb2,0xa1,0x64,0x00,
0xe0,0x7e,0x66,0xd2,0xa9,0x67,0x88,0x70,0x9d,0xfb,0xc7,0x10,0x62,0xa7,0x1f,0x29,0x17,0xe3,0x25,0xd6,
0x2e,0x03,0x58,0xe6,0x0b,0xf6,0x93,0xb6,0xfa,0xe2,0xa4,0xbc,0x3b,0xc6,0x81,0xc3,0x34,0x09,0xdf,0xe2,
0xa8,0x69,0x67,0xd3,0x6a,0x50,0xc0,0xc7,0xf4,0xe1,0x30,0x7c,0xb1,0x5f,0xa7,0x71,0x47,0x8e,0xe3,0x1c,
0x75,0x2c,0x9f,0x27,0xdb,0xd3,0x4c,0xec,0xe0,0x71,0x03,0xcf,0x83,0xe4,0x7d,0x83,0xb6,0x4c,0x03,0x03,
0xc6,0xea,0xb0,0xa3,0xb0,0x00,0x2f,0xbc,0x67,0x55,0x68,0x94,0x55,0x5a,0x6f,0xe8,0x26,0xd4,0x05,0xb2,
0x5a,0xdd,0xd3,0x3d,0x72,0x38,0x18,0xd5,0xc1,0x0c,0x31,0xf1,0x7a,0x98,0x04,0x56,0x80,0xca,0x22,0x55,
0x8a,0xd8,0x99,0x94,0x4e,0x2c,0x94,0xc2,0x7c,0xcb,0xfd,0xb3,0xd5,0xb9,0x37,0x72,0x97,0x0a,0x1d,0x8b,
0x4a,0x04,0xcc,0x49,0x57,0x3d,0x10,0xb8,0xf8,0x9b,0x04,0x76,0xd3,0x57,0xa4,0xac,0x36,0x20,0x31,0x2c,
0xd4,0xac,0x41,0x5d,0x29,0xc2,0xc0,0xd4,0xc1,0xf6,0xe4,0xde,0x1b,0x58,0x28,0xed,0x29,0xbe,0xcb,0x97,
0x85,0xd2,0x23,0x83,0xe0,0xf1,0x74,0x0a,0xc7,0x14,0x64,0xa3,0xac,0x10,0x71,0xd6,0x1a,0x82,0xf8,0x89,
0x1b,0x90,0xf3,0xd3,0x1d,0x85,0x5f,0xe5,0xbd,0xd1,0xfb,0xde,0xe1,0x93,0xa5,0xe4,0xbc,0x41,0x16,0x25,
0x73,0xb7,0xd1,0xa7,0xe5,0x84,0xf3,0xbc,0x95,0x40,0xd6,0x70,0x71,0x9b,0xa3,0xd5,0x8b,0x67,0xbf,0x4e,
0x6c,0x99,0xd1,0xdc,0x0f,0xa9,0x12,0xf8,0x79,0x2b,0x15,0xd0,0xf5,0xc9,0xda,0x44,0x65,0xbc,0x42,0x5a,
0x59,0x06,0x82,0x7b,0x90,0x44,0xb1,0xfd,0x90,0xc2,0x08,0x87,0x0b,0xc0,0x1d,0xa6,0x10,0x10,0x4e,0xf1,
0x88,0xa2,0xb8,0x37,0xa6,0xe7,0xbc,0xfb,0xef,0x0b,0x66,0x68,0x5a,0x5e,0xf6,0x04,0xad,0x39,0xc0,0x5d,
0xc8,0xf6,0xf0,0x6f,0xd8,0x81,0xe0,0x83,0xdc,0x57,0xe0,0xf6,0x2c,0x8e,0x78,0xc7,0xff,0x2b,0xaf,0xa0,
0x1a,0x54,0xcb,0xe7,0xcc,0x7f,0xa2,0xf5,0x69,0xc9,0x03,0x70,0x4a,0x1b,0xe5,0x30,0x31,0x64,0x0d,0x57,
0x3a,0x64,0x24,0x65,0x59,0x71,0x23,0x78,0x7e,0x51,0xb8,0x6e,0x2c,0x1a,0x75,0xe5,0x4a,0x46,0x2f,0x93,
0x95,0xa3,0xa5,0xb3,0xc5,0xaf,0x6f,0x82,0x17,0x5f,0x26,0xe6,0x6a,0x81,0x91,0x6e,0xfd,0xbf,0x5e,0xc2,
0x13,0xa5,0x09,0xe7,0x34,0x50,0xe2,0xd9,0x23,0xe2,0xf1,0x42,0x00,0x77,0x0d,0x91,0x45,0x00,0x00,0x84,
0x13,0x15,0xcb,0xb1,0x93,0x8f,0x2d,0xc0,0x2e,0x81,0x97,0x6d,0x4e,0xbf,0x05,0xb4,0xe6,0xdc,0xef,0xc4,
0xe0,0x35,0xcd,0xf7,0x82,0xd5,0xc3,0x92,0x45,0xb2,0x9d,0x2a,0x0d,0xd7,0x7a,0xa1,0x12,0x48,0x3c,0xa0,
0x35,0x5c,0x7f,0x03,0x47,0x52,0xb5,0x88,0x45,0xb9,0x01,0x00
};

+ 117
- 117
code/espurna/static/index.sensor.html.gz.h View File

@ -1,4 +1,4 @@
#define webui_image_len 28784
#define webui_image_len 28787
const uint8_t webui_image[] PROGMEM = {
0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x02,0x03,0xec,0xbd,0x69,0x76,0xdb,0xc8,0xb2,0x30,0xf8,0xff,
0xad,0x02,0x46,0xdd,0x6b,0x93,0xd7,0x9c,0x35,0x93,0xa6,0xfc,0x68,0x49,0xb6,0x55,0x65,0x4b,0xb2,0x25,
@ -1324,120 +1324,120 @@ const uint8_t webui_image[] PROGMEM = {
0xaa,0xfb,0x9a,0x9e,0x83,0xa3,0x08,0x17,0x7e,0xca,0x9e,0x0f,0x7b,0x19,0x97,0xdb,0xd5,0x75,0xdd,0xf8,
0xda,0xe5,0x57,0xb8,0x3a,0x31,0x5e,0xf9,0xc8,0x6c,0xd8,0x90,0x33,0x26,0x52,0x12,0x43,0x5f,0xa0,0x82,
0x63,0xba,0xa5,0x7b,0x82,0x1b,0x23,0xba,0xef,0x5d,0x1e,0xa1,0xb1,0x9d,0x1f,0x9d,0x5e,0x84,0xee,0x00,
0x23,0x3f,0x09,0x7a,0x4a,0x87,0x11,0x74,0x4f,0x6c,0xc9,0xea,0x49,0x95,0xc3,0xff,0xd7,0xde,0xd5,0xf6,
0xb6,0x6d,0x03,0xe1,0xbf,0x22,0x78,0xc0,0x96,0x00,0xb2,0x9b,0x38,0x71,0xba,0x37,0x14,0x48,0xe3,0xa1,
0xed,0x87,0xa4,0xc1,0xd2,0x97,0x8f,0x83,0x63,0x33,0xb6,0x16,0x4b,0xf2,0x2c,0x29,0x6e,0xfb,0xeb,0xc7,
0x3b,0x1e,0x29,0x4a,0x22,0x45,0x4a,0x71,0xb6,0x05,0xd8,0x87,0xa2,0x4d,0x43,0x49,0x77,0xc7,0x23,0x79,
0x77,0xbc,0x7b,0x8e,0xdc,0x2f,0x20,0x38,0x5b,0x31,0x51,0x67,0x81,0xb1,0x00,0xbc,0x61,0x8c,0x92,0x28,
0x2e,0x62,0x41,0x84,0x6c,0x86,0x29,0x31,0x09,0x45,0xbb,0x6d,0x58,0x6a,0x90,0x10,0x13,0xc7,0x7c,0x41,
0xc8,0xc3,0x09,0x2a,0x78,0xce,0x64,0xc1,0xc2,0xa8,0xa5,0x34,0xd8,0xb2,0x2c,0x44,0xf9,0xc8,0x72,0xb9,
0x65,0xcb,0x99,0x3a,0xf1,0x9c,0x2b,0x65,0xa3,0x45,0x10,0xeb,0x6b,0x85,0x1a,0xc5,0x53,0x79,0x23,0x28,
0x10,0x2d,0x08,0x60,0x8d,0x6f,0x59,0xda,0x8a,0x70,0x90,0x59,0x33,0x36,0x61,0x7b,0x54,0x94,0xdf,0x60,
0xbf,0x81,0x6e,0x74,0xc3,0x33,0x96,0x76,0x40,0x35,0xaa,0xc7,0x47,0x3a,0xd9,0xc0,0x6d,0x49,0x75,0xe0,
0xa3,0x68,0xe7,0xd4,0x00,0x3d,0x4e,0x63,0x0a,0x3c,0x80,0xb7,0x5f,0xba,0xe4,0x79,0xca,0xb5,0x36,0x80,
0x3d,0x6e,0xf9,0x35,0x20,0xc1,0x64,0xd4,0xcf,0xbd,0x9a,0x74,0x24,0x3a,0x57,0xd3,0xb9,0x7b,0x85,0x4d,
0x4a,0x55,0x7b,0xf5,0x3b,0x26,0xda,0x9b,0x16,0x19,0x13,0x75,0x5c,0xa8,0x38,0x50,0xfe,0x82,0xad,0x24,
0xb0,0x6e,0x89,0x81,0x78,0xf8,0xc7,0x01,0xd1,0x9a,0x80,0xd3,0x30,0xf0,0x81,0xbd,0x26,0xa0,0x4d,0x0d,
0xec,0xc3,0x68,0x63,0xff,0x55,0x70,0xdb,0x1c,0x46,0x82,0xe9,0x06,0x26,0x79,0x01,0x97,0x29,0x0a,0xa1,
0xb4,0xab,0x66,0x71,0x2a,0x30,0xae,0x52,0xc3,0x96,0x6f,0x8f,0x1e,0x89,0x1d,0x71,0x0d,0xeb,0x54,0x9d,
0x69,0x1e,0xe2,0xbe,0x84,0x9b,0x8a,0x58,0x1d,0xad,0x18,0x60,0x11,0x61,0x12,0x6e,0x52,0x6d,0xb6,0x29,
0xe0,0xc3,0x51,0xe5,0xc6,0x5d,0xb4,0xe6,0x32,0xa2,0x96,0x1e,0x0f,0x69,0xc4,0x57,0xf5,0xa6,0xd8,0x46,
0x69,0x91,0x29,0x13,0x8a,0xee,0x1b,0xa8,0x9a,0x0a,0xeb,0x33,0x8b,0x44,0x3d,0x57,0xc2,0x2f,0x12,0x7c,
0x78,0x70,0x00,0xb8,0xe2,0x21,0xc6,0x54,0x42,0x6e,0x35,0xf1,0x29,0xe7,0xbf,0x81,0x80,0x0b,0xcb,0xe7,
0xa3,0x9a,0xb2,0x5b,0x2d,0x04,0x73,0xb7,0xb6,0x19,0x9f,0xcc,0x14,0x23,0x25,0x04,0x25,0x83,0x3f,0xd3,
0x56,0xe2,0xdb,0xb7,0x0d,0x9d,0x55,0xe7,0x85,0xb7,0x3c,0xc4,0x3d,0x63,0x80,0x46,0xd3,0x89,0xf0,0xe7,
0x91,0xc8,0xa1,0x32,0x0b,0xac,0x26,0x15,0x45,0xd2,0x64,0x4b,0xa3,0x08,0x82,0xda,0xe4,0x88,0x41,0xb6,
0x09,0xfc,0xd2,0x1f,0x69,0x78,0xff,0x20,0xd5,0x30,0x2b,0xcb,0x59,0x26,0x37,0x6e,0xc9,0x0f,0x5c,0x75,
0x69,0x91,0xe4,0xc6,0xb6,0x7e,0x57,0x1d,0x0b,0x71,0xea,0x45,0x84,0xf7,0x95,0xa3,0x7e,0x4a,0x20,0x37,
0x3e,0x8a,0x3e,0xa1,0xeb,0x61,0xb1,0x1e,0x85,0x5f,0x32,0x30,0x5b,0x4a,0x41,0xcb,0x95,0xa7,0x17,0x9e,
0x9e,0x10,0xb2,0x71,0xe6,0xd1,0x87,0x46,0xb3,0xd2,0x6e,0xc7,0xb6,0xd8,0xd3,0x03,0x8b,0x6f,0xc5,0xea,
0x9e,0x98,0xc3,0x81,0x6c,0xd8,0x91,0x1f,0xf9,0x96,0x60,0x10,0x96,0xda,0x2b,0x86,0x05,0x0c,0xa8,0x1b,
0xdb,0x6e,0xeb,0xba,0xcb,0x8c,0xfd,0x26,0xb6,0x79,0xfe,0x7f,0x51,0x6e,0x5f,0xb5,0xfd,0xe4,0x2e,0x56,
0x9c,0x98,0x7b,0x50,0xd8,0xa1,0xa6,0x79,0xf6,0xe6,0x61,0xf5,0x95,0x06,0x8c,0xa8,0x2e,0x06,0xeb,0xb5,
0x0e,0x9a,0x44,0x07,0x8a,0xae,0xd0,0x6d,0x73,0xf1,0x24,0x3c,0x89,0x73,0xd2,0x97,0x1d,0x99,0xe2,0x45,
0xa7,0xeb,0x3c,0x2d,0x12,0x2c,0x3f,0xc0,0xc6,0xbf,0x64,0xbc,0xf1,0x6d,0xfd,0x1b,0xdb,0xa6,0x7d,0x02,
0x12,0xfa,0x7f,0x81,0xf1,0x88,0x3a,0x8b,0x19,0x03,0xf4,0x03,0x74,0xd1,0x1e,0x8a,0xcb,0xa9,0x81,0xc1,
0x6f,0x09,0x1a,0xee,0x8b,0xad,0x71,0x67,0x73,0xd7,0x85,0x26,0xb3,0xdf,0xfd,0x4a,0xe7,0x09,0xfd,0x65,
0xd4,0x26,0xea,0x28,0xa9,0xf4,0x57,0x6c,0xe9,0x6f,0xae,0xdf,0xbd,0xb7,0x43,0x8c,0xe0,0xb9,0x3c,0x1c,
0x0f,0x4f,0xb8,0xe4,0x8a,0x98,0x7b,0x5f,0x70,0x08,0x96,0xff,0x1c,0x2e,0x37,0x51,0x3a,0x5c,0xcd,0xb6,
0x0b,0xa8,0x62,0x90,0xb3,0x24,0xfb,0xb8,0x5a,0xc0,0x93,0xdb,0x70,0x41,0xcc,0x34,0x5e,0x9a,0xba,0x85,
0x36,0x69,0xd4,0xbe,0x0f,0x4f,0x98,0x5c,0xa8,0x4a,0x3f,0x70,0x2b,0xa4,0x49,0xa5,0xf1,0x36,0x17,0xae,
0xbd,0xb5,0x67,0xb5,0x0b,0xb6,0x7d,0x28,0x9f,0x27,0xd5,0x8e,0xda,0x3c,0x62,0x32,0x30,0x36,0x8d,0x36,
0x0f,0xfe,0x71,0xd0,0xec,0xe1,0x6c,0x71,0xab,0xb4,0x91,0xee,0xf7,0x72,0x0b,0x57,0x74,0x39,0x6e,0x71,
0x35,0xb5,0x6e,0xc2,0xe6,0x31,0x2f,0x07,0x95,0x96,0xc2,0x6e,0x38,0x18,0x1d,0xaf,0x2e,0xb0,0xe9,0x00,
0x66,0xea,0x54,0xd0,0x89,0xda,0xe1,0x70,0x2c,0x0a,0x4b,0xa0,0x78,0x4a,0x51,0x7e,0xa7,0x76,0xa4,0x35,
0xea,0x9a,0xcb,0x5d,0xae,0x64,0xdb,0x02,0x27,0x08,0x39,0xcb,0x22,0xf7,0x29,0x3c,0x23,0x0c,0x3a,0x1d,
0xbf,0xbd,0xbe,0x53,0x4e,0x86,0x67,0xf2,0x19,0xd0,0xf7,0x6a,0x58,0x3b,0x43,0x60,0x77,0x3d,0x88,0xad,
0x3d,0x29,0x42,0xae,0x72,0x8a,0xac,0x25,0x15,0xf5,0x7e,0x8c,0x25,0x49,0x03,0x6c,0x92,0x13,0x81,0xb5,
0x6b,0x6a,0xdd,0x67,0xed,0x35,0x71,0x56,0x32,0x79,0x3c,0xee,0x18,0xb7,0x8b,0xd3,0x2d,0xe3,0x06,0x04,
0x96,0x4f,0x53,0x2f,0xcb,0xd1,0x68,0x54,0xdf,0xa0,0x5b,0xe5,0x1a,0xc0,0x3b,0x3a,0x27,0x5d,0x88,0xa7,
0x48,0xae,0x02,0xb9,0xab,0x9e,0x72,0xe1,0x94,0xe4,0xd3,0xe4,0x64,0x10,0x3f,0xca,0xef,0xf4,0x61,0xfe,
0x06,0x8a,0xd3,0xe6,0x01,0x00,0x25,0x74,0xe7,0x3e,0xda,0x18,0xb1,0xee,0xec,0x7c,0x6b,0xd0,0x3a,0xc7,
0x93,0x81,0x45,0x59,0xda,0x10,0x91,0x25,0x87,0x5e,0x36,0x39,0x8d,0x16,0x09,0x6a,0x22,0x23,0x0d,0x6c,
0xed,0xe9,0xdb,0x8b,0xeb,0x20,0x61,0xcb,0x34,0x8f,0x28,0x1d,0xc2,0x5b,0x55,0xde,0xf0,0xd5,0xbc,0x83,
0xad,0xa6,0x97,0xb8,0x96,0xbb,0xe7,0x20,0x2e,0x30,0x87,0x30,0xa1,0x5d,0x40,0xf9,0x88,0x26,0x68,0xa4,
0x22,0xde,0x82,0x92,0xbb,0xc3,0xe5,0x2c,0xbb,0xef,0x23,0xaa,0x98,0x3f,0xf7,0x1c,0x84,0xf5,0x31,0xc3,
0x44,0x88,0x60,0x3c,0x99,0x8c,0xe4,0x9f,0x23,0xd4,0xb2,0x17,0xe3,0x53,0x0d,0xed,0xdb,0x5b,0x70,0xd3,
0xab,0x9b,0x9e,0xda,0xb5,0x48,0xb2,0xe7,0xa2,0x5e,0x60,0x6d,0x4f,0xd3,0x18,0xfa,0xa1,0x5d,0x61,0xe3,
0x00,0x4c,0x25,0xe5,0x7c,0xcb,0x14,0xa7,0x56,0xfd,0xf3,0xa6,0xa8,0x0e,0xe1,0x5e,0xbb,0x76,0x64,0x6b,
0x79,0x7e,0x08,0x31,0x56,0x71,0xdb,0xa7,0x0c,0x4b,0x78,0x9b,0x50,0xc9,0x7e,0x47,0xbe,0x04,0xd1,0xed,
0x7f,0xe6,0x23,0x80,0x3e,0x46,0xc4,0xa2,0x96,0x76,0xd8,0xda,0xbd,0xeb,0x44,0x9d,0xf9,0xfa,0xd9,0x5e,
0x9a,0xbe,0x9c,0xa4,0xb7,0x69,0xb1,0xf5,0x8c,0x68,0x9e,0x68,0x8d,0x7f,0x8c,0xdf,0xc5,0x39,0x9d,0x33,
0x70,0xf8,0x06,0xaf,0xbe,0x4f,0x6e,0xb3,0xcd,0x2f,0x2b,0xbb,0x6b,0xd7,0x9d,0xd6,0x4b,0xc4,0x21,0xf2,
0xa3,0x76,0xf2,0x53,0x0f,0x6a,0xe3,0x36,0x6a,0x35,0xad,0x2a,0x71,0x5b,0x3d,0x20,0x78,0x3e,0x7e,0xb8,
0x08,0x72,0x0d,0xc0,0xc0,0xd1,0x6b,0xa0,0x35,0xb6,0x39,0x5f,0xf1,0xb7,0x75,0x4a,0x8b,0x73,0x75,0xe6,
0xe6,0x3e,0xc4,0x8e,0xb1,0xfb,0x05,0x3f,0xc2,0xa0,0x71,0x46,0x02,0x45,0xec,0x36,0x4a,0xc7,0xc3,0x89,
0x6b,0xbe,0xc0,0x6e,0x54,0x36,0xa7,0x30,0x22,0x15,0xe9,0x9f,0xa7,0x99,0x15,0x56,0x0f,0x76,0x1b,0xe9,
0x77,0x85,0xe3,0xf0,0x24,0x3c,0x0d,0x27,0xe1,0x59,0xf8,0xd2,0xc6,0xeb,0x89,0x4e,0xca,0xd8,0x34,0x97,
0xc7,0xb8,0xe7,0x5e,0xa6,0x09,0x67,0x2d,0x0c,0xc6,0xf8,0xd3,0x87,0x82,0x65,0xc0,0x29,0x44,0x55,0x43,
0x91,0x55,0xc2,0xfd,0x79,0x68,0xb2,0x98,0x43,0xd9,0x65,0xfd,0x43,0x6a,0xc5,0x8a,0x9d,0x32,0x68,0x04,
0xaa,0xbd,0x44,0x4c,0xad,0xdc,0xe1,0x8a,0x5c,0x84,0x23,0xf7,0xa1,0x06,0xf4,0xd2,0x7d,0xaa,0x82,0x6f,
0xf5,0xa9,0x17,0x7d,0xfe,0xe5,0xa7,0xa7,0x9d,0x37,0x67,0xcb,0xbe,0x5c,0xe2,0xa3,0xf7,0xdd,0x98,0xc5,
0x34,0x93,0xd3,0xe7,0x5e,0x3a,0x73,0xca,0x9c,0x75,0xc5,0xba,0x61,0xa5,0xb4,0x78,0x9f,0xf5,0x65,0x22,
0xde,0x4b,0x67,0x34,0x15,0x35,0x51,0xb3,0x75,0x83,0x03,0x2e,0x3a,0x54,0xea,0x9e,0x73,0x23,0x8a,0x41,
0x4d,0x2c,0x5b,0x22,0x18,0x1f,0x10,0xb6,0xce,0xea,0x7c,0x3f,0xde,0x75,0x56,0xa8,0xf7,0x9a,0xef,0x1c,
0x54,0x74,0x48,0xf4,0xd3,0xd1,0xc7,0x03,0x36,0x7e,0xe5,0x3a,0xdb,0x35,0x8f,0xf8,0x45,0x19,0x0f,0xe8,
0x71,0xbc,0xd6,0xbb,0x05,0xe2,0xfb,0xc0,0x1a,0xd1,0x32,0xdb,0x9b,0xb7,0x50,0x94,0x15,0xaa,0xa7,0x84,
0xaa,0xf5,0x50,0x8b,0xfe,0x79,0x33,0x20,0xcc,0x03,0x19,0x96,0x73,0x92,0x05,0x10,0x75,0x86,0x31,0x53,
0x96,0xcd,0xd5,0x98,0xc3,0x5e,0x41,0xe3,0x53,0x15,0x50,0x79,0x0d,0xd7,0x2c,0xb1,0x16,0x59,0x73,0xeb,
0x86,0x56,0x8e,0x80,0xf4,0xbc,0x16,0x01,0xbd,0x86,0x0a,0x9b,0xc2,0x3f,0x0d,0x25,0x76,0xc6,0x91,0xb8,
0x1a,0xdf,0x20,0x66,0x1b,0xf4,0xfe,0xe1,0x9b,0x3d,0x6b,0x89,0xc3,0x09,0x7d,0x77,0x8c,0x83,0x60,0x69,
0x3a,0xbf,0x67,0x8b,0x36,0xca,0x26,0xe5,0xa0,0x2b,0x7f,0x2c,0x63,0x1f,0x81,0x5f,0x17,0xeb,0x8c,0x3d,
0x52,0xe2,0xf8,0x0e,0x93,0xc8,0xa7,0x69,0xf2,0x43,0x1e,0x6c,0xe0,0xd7,0x2d,0x32,0xbf,0x4a,0xb7,0x31,
0xfa,0x32,0x2d,0x02,0x18,0xeb,0xc3,0x9e,0x44,0x04,0x68,0xf0,0x1e,0x94,0x79,0xda,0x5e,0x90,0x82,0x8d,
0xb5,0x89,0xf7,0xc1,0x95,0x07,0xda,0xed,0xc8,0xa3,0xd1,0xb1,0x09,0x5e,0xd9,0x13,0xa7,0xd8,0x93,0x41,
0xcc,0xa1,0x17,0xe5,0xfc,0x99,0x06,0xde,0xe7,0xc9,0xe9,0x89,0x85,0x53,0x78,0xdf,0x4d,0x71,0x6b,0x0d,
0xee,0x1d,0xbb,0x21,0x52,0x9e,0x8a,0x4b,0x04,0x0a,0xce,0x56,0x7b,0x60,0xf0,0xfa,0xbf,0xc9,0xe0,0xe3,
0xd6,0x2b,0x72,0x66,0xbc,0x8c,0x38,0x92,0xcb,0xac,0x65,0xb9,0xd2,0xed,0x82,0xe7,0x1a,0xec,0xcf,0xee,
0xfb,0x06,0x06,0x6c,0x7f,0x8e,0x2f,0xf9,0x67,0x01,0x3d,0xa5,0xc1,0xf0,0x78,0x32,0x81,0x6d,0x0a,0x12,
0xa4,0x56,0xd8,0xee,0xd1,0x7a,0x05,0xf1,0x4f,0x58,0x40,0xce,0xa3,0xbb,0xbc,0x0d,0x8e,0x92,0xbb,0xd4,
0x94,0x90,0xef,0x65,0x81,0x74,0x29,0x9e,0x32,0x24,0x64,0xdb,0xed,0x4b,0xe9,0x1c,0x55,0x96,0x8c,0x0c,
0xac,0x11,0xe9,0x3e,0x88,0xae,0xba,0xa7,0x55,0xa6,0xcb,0x70,0xe3,0x5c,0x6d,0x5e,0xee,0xb7,0x50,0xec,
0xa7,0x22,0xb1,0xae,0xa6,0x52,0xe3,0xe9,0xff,0x45,0xfd,0xf4,0xa2,0x16,0x89,0x0e,0xfd,0x65,0xed,0xec,
0x49,0xd1,0x63,0xdd,0xd1,0xee,0xa5,0x09,0xb6,0x33,0xc2,0xba,0x7c,0xb6,0x93,0x4a,0xb4,0x78,0x72,0x46,
0xb3,0xa2,0xe3,0x84,0x77,0x9d,0xa4,0x96,0xb2,0x04,0xdb,0x15,0x69,0x27,0x76,0x29,0xa1,0x82,0x3e,0xf0,
0xb3,0xf1,0xe8,0xad,0xa6,0xb7,0xe3,0x73,0x03,0xe5,0xe5,0x99,0x96,0x90,0x3c,0x07,0xa0,0x0c,0xc1,0xe7,
0x95,0x5b,0xd9,0x45,0xb0,0x99,0xd5,0x87,0xa2,0x33,0xa6,0xf6,0x05,0xd5,0x77,0x6c,0x76,0xdb,0x6b,0x38,
0x2a,0x83,0xcf,0xb3,0x3c,0xcf,0x82,0x83,0xcf,0x87,0xa3,0xe0,0xa2,0x9a,0x7d,0x2e,0x93,0xb5,0x4a,0x7c,
0xf3,0x19,0x37,0x5c,0xb6,0x58,0x30,0x01,0x35,0x8c,0x0f,0x0c,0x3b,0x70,0x06,0x07,0xeb,0xe8,0x1e,0xaa,
0x93,0x6e,0x8b,0xf5,0xed,0x21,0x66,0x06,0x8a,0xb5,0xba,0x82,0x12,0x63,0x80,0x80,0x4f,0x52,0xac,0xb0,
0x09,0x04,0xb6,0x37,0x7f,0x25,0x04,0xb2,0x67,0xa2,0x5f,0x6e,0xcc,0x72,0x84,0x27,0x34,0x24,0x84,0x7a,
0xf3,0xf2,0x90,0x82,0x34,0x38,0x2f,0x9f,0x52,0x00,0xd1,0x3c,0xf8,0x74,0x08,0x99,0x87,0x40,0x02,0xf2,
0x81,0x95,0xa0,0x44,0xc2,0xf9,0x45,0x00,0xa3,0x21,0x53,0x13,0x02,0x61,0xf8,0xfb,0x55,0xca,0xe9,0x81,
0xcb,0x5b,0x20,0xed,0x6e,0x36,0x8f,0xd6,0x51,0xfe,0x35,0x94,0x74,0x96,0x54,0xca,0x0c,0xc6,0x4a,0x33,
0xd5,0xc7,0xd0,0x0d,0xd0,0xf8,0x48,0xf7,0x79,0x0c,0x35,0xd1,0x9c,0xf2,0xf3,0x43,0x85,0xd3,0x32,0xc3,
0x6c,0x54,0xbb,0xd4,0x35,0xa1,0x87,0x55,0xe0,0x79,0xac,0x69,0xc1,0xa2,0x14,0x3d,0x3f,0x3b,0xdf,0xa5,
0x90,0xc2,0xf9,0xa0,0xe5,0x67,0x86,0x41,0x34,0x62,0x23,0x9a,0x96,0x17,0x52,0x30,0x35,0x58,0x7f,0x31,
0x57,0x12,0xc5,0x9f,0xb3,0x08,0xe0,0xe0,0x7c,0x01,0x25,0x0b,0x8a,0x92,0xe2,0xdb,0xc5,0x3b,0x76,0xd1,
0x96,0x65,0x7b,0x17,0x13,0x4b,0x58,0xa3,0xa6,0xde,0x6b,0x1f,0xa0,0x14,0xbe,0x4e,0xbb,0x40,0x35,0x1a,
0x53,0x05,0x73,0x71,0x7d,0x74,0x31,0xff,0xa6,0x82,0x66,0x4f,0x7a,0x0e,0x3b,0xc3,0x67,0x12,0x27,0xf1,
0xdd,0xe2,0x8b,0x63,0x1f,0xf6,0x64,0x0d,0x30,0x5c,0x64,0x28,0x8b,0xbe,0x2e,0x7f,0xf7,0xaf,0x33,0xab,
0x10,0x69,0xf6,0xc3,0xaa,0xac,0xef,0x1d,0xb8,0xbd,0xf5,0xc9,0xf0,0xac,0xee,0x98,0x51,0x05,0xb2,0x6f,
0x42,0x49,0xb7,0xa4,0x90,0xae,0xe5,0x83,0xe5,0x3d,0x1e,0xe5,0x81,0x4c,0xa1,0x19,0xac,0x31,0x51,0xcf,
0x47,0x2a,0x39,0x15,0x05,0x7b,0xd5,0x2f,0xd7,0xc5,0xd2,0x6c,0xbf,0xb2,0x37,0xb9,0x9c,0x34,0xbf,0x76,
0xd5,0x80,0x22,0x79,0x5e,0x93,0x30,0x23,0x08,0x0d,0xce,0x03,0x15,0x65,0xff,0x81,0x6d,0xf1,0x20,0x9f,
0x68,0x0d,0x89,0x2e,0xd0,0x87,0x07,0x74,0x1c,0x41,0x4e,0xd3,0x5d,0x02,0x67,0x02,0x98,0x4b,0x53,0xfa,
0x77,0x70,0x3b,0x9b,0xdf,0x17,0x9b,0x60,0xf4,0x67,0xc6,0x69,0x41,0x3c,0x4e,0x21,0x22,0x78,0xa0,0xd8,
0xd0,0x70,0x62,0xe1,0x2e,0x12,0x45,0xf3,0xd4,0xf3,0x17,0x40,0x93,0x5f,0xfd,0x0d,0xb3,0x8b,0xc2,0xe8,
0x20,0xd4,0x01,0x00
0x23,0x3f,0x09,0x7a,0x4a,0x87,0x11,0x74,0x4f,0x6c,0xc9,0xea,0x49,0x95,0xc3,0xff,0xd7,0xde,0xf5,0xf5,
0xb6,0x6d,0x03,0xf1,0xaf,0x22,0x78,0xc0,0x96,0x00,0xb6,0x9b,0x38,0x51,0xba,0x6e,0x43,0x81,0x34,0x1e,
0xda,0x3e,0x24,0x0d,0x96,0xfe,0x79,0x1c,0x1c,0x9b,0xb1,0xb5,0x58,0x92,0x67,0x49,0xf1,0xda,0x4f,0x3f,
0xde,0xf1,0x48,0x51,0x12,0x29,0x52,0x8a,0xb3,0x2d,0xc0,0x1e,0x8a,0x36,0x0d,0x25,0xdd,0x1d,0x8f,0xe4,
0xdd,0xf1,0xee,0x77,0xe4,0x7e,0x01,0xc1,0xd9,0x8a,0x89,0x3a,0x0b,0x8c,0x05,0xe0,0x0d,0x63,0x94,0x44,
0x71,0x11,0x0b,0x22,0x64,0x33,0x4c,0x89,0x49,0x28,0xda,0x6d,0xc3,0x52,0x83,0x84,0x98,0x38,0xe6,0x0b,
0x42,0x1e,0x4e,0x50,0xc1,0x73,0x26,0x0b,0x16,0xc6,0x2d,0xa5,0xc1,0x96,0x65,0x21,0xca,0x47,0x96,0xcb,
0x2d,0x5b,0xce,0xd4,0x89,0xe7,0x5c,0x29,0x1b,0x2d,0x82,0x58,0x5f,0x2b,0xd4,0x28,0x9e,0xca,0x1b,0x41,
0x81,0x68,0x41,0x00,0x6b,0x7c,0xcb,0xd2,0x56,0x84,0x83,0xcc,0x9a,0xb1,0x09,0xdb,0xa3,0xa2,0xfc,0x06,
0xfb,0x0d,0x74,0xa3,0x1b,0x9e,0xb1,0xb4,0x03,0xaa,0x51,0x3d,0x39,0xd2,0xc9,0x06,0x6e,0x4b,0xaa,0x03,
0x1f,0x45,0x3b,0xa7,0x06,0xe8,0x71,0x1a,0x53,0xe0,0x01,0xbc,0xfd,0xd2,0x25,0xcf,0x53,0xae,0xb5,0x01,
0xec,0x71,0xcb,0xaf,0x01,0x09,0x26,0xa3,0x7e,0xee,0xd5,0xa4,0x23,0xd1,0xb9,0x9a,0xce,0xdd,0x2b,0x6c,
0x52,0xaa,0xda,0xab,0xdf,0x31,0xd1,0xde,0xb4,0xc8,0x98,0xa8,0xe3,0x42,0xc5,0x81,0xf2,0x17,0x6c,0x25,
0x81,0x75,0x4b,0x0c,0xc4,0xc3,0x3f,0x0e,0x88,0xd6,0x04,0x9c,0x86,0x81,0x0f,0xec,0x35,0x01,0x6d,0x6a,
0x60,0x1f,0x46,0x1b,0xfb,0xcf,0x82,0xdb,0xe6,0x30,0x12,0x4c,0x37,0x30,0xc9,0x0b,0xb8,0x4c,0x51,0x08,
0xa5,0x5d,0x35,0x8b,0x53,0x81,0x71,0x95,0x1a,0xb6,0x7c,0x7b,0xf4,0x48,0xec,0x88,0x6b,0x58,0xa7,0xea,
0x4c,0xf3,0x10,0xf7,0x25,0xdc,0x54,0xc4,0xea,0x68,0xc5,0x00,0x8b,0x08,0x93,0x70,0x93,0x6a,0xb3,0x4d,
0x01,0x1f,0x8e,0x2a,0x37,0xee,0xa2,0x35,0x97,0x11,0xb5,0xf4,0x78,0x48,0x23,0xbe,0xaa,0x37,0xc5,0x36,
0x4a,0x8b,0x4c,0x99,0x50,0x74,0xdf,0x40,0xd5,0x54,0x58,0x9f,0x59,0x24,0xea,0xb9,0x12,0x7e,0x91,0xe0,
0xc3,0x83,0x03,0xc0,0x15,0x1f,0x62,0x4c,0x65,0xc8,0xad,0x26,0x3e,0xe5,0xfc,0x37,0x10,0x70,0x61,0xf9,
0x7c,0x5c,0x53,0x76,0xab,0x85,0x60,0xee,0xd6,0x36,0xe3,0x93,0x99,0x62,0xa4,0x84,0xa0,0x64,0xf0,0x67,
0xda,0x4a,0x7c,0xfb,0xb6,0xa1,0xb3,0xea,0xbc,0xf0,0x96,0x87,0xb8,0x67,0x0c,0xd0,0x68,0x3a,0x11,0xfe,
0x3c,0x12,0x39,0x52,0x66,0x81,0xd5,0xa4,0xa2,0x48,0x9a,0x6c,0x69,0x14,0x41,0x50,0x9b,0x1c,0x31,0xc8,
0x36,0x81,0x5f,0xfa,0x23,0x0d,0xef,0x1f,0xa4,0x1a,0x66,0x65,0x39,0xcb,0xe4,0xc6,0x2d,0xf9,0x81,0xab,
0x2e,0x2d,0x92,0xdc,0xd8,0xd6,0xef,0xaa,0x63,0x21,0x4e,0xbd,0x88,0xf0,0xbe,0x72,0xdc,0x4f,0x09,0xe4,
0xc6,0x47,0xd1,0x27,0x74,0x3d,0x2c,0xd6,0xa3,0xf0,0x4b,0x06,0x66,0x4b,0x29,0x68,0xb9,0xf2,0xf4,0xc2,
0xd3,0x13,0x42,0x36,0xce,0x3c,0xfa,0xd0,0x68,0x56,0xda,0xed,0xd8,0x16,0x7b,0x7a,0x60,0xf1,0xad,0x58,
0xdd,0x13,0x73,0x38,0x90,0x0d,0x3b,0xf2,0x13,0xdf,0x12,0x0c,0xc2,0x52,0x7b,0xc5,0xa8,0x80,0x01,0x75,
0x63,0xdb,0x6d,0x5d,0x77,0x99,0xb1,0x5f,0xc5,0x36,0xcf,0xff,0x2f,0xca,0xed,0xab,0xb6,0x9f,0xdc,0xc5,
0x8a,0x13,0x73,0x0f,0x0a,0x3b,0xd2,0x34,0xcf,0xde,0x3c,0xac,0xbe,0xd2,0x80,0x11,0xd5,0xc5,0x60,0xbd,
0xd6,0x41,0x93,0xe8,0x40,0xd1,0x15,0xba,0x6d,0x2e,0x9e,0x84,0x27,0x71,0x4e,0xfa,0xb2,0x23,0x53,0xbc,
0xe8,0x74,0x9d,0xa7,0x45,0x82,0xe5,0x07,0xd8,0xf8,0x97,0x8c,0x37,0xbe,0xad,0x7f,0x63,0xdb,0xb4,0x4f,
0x40,0x42,0xff,0x2f,0x30,0x1e,0x51,0x67,0x31,0x63,0x80,0x7e,0x80,0x2e,0xda,0x23,0x71,0x39,0x35,0x30,
0xf8,0x2d,0x41,0xc3,0x7d,0xb1,0x35,0xee,0x6c,0xee,0xba,0xd0,0x64,0xf6,0xbb,0x5f,0xe8,0x3c,0xa1,0xbf,
0x8c,0xda,0x44,0x1d,0x25,0x95,0xfe,0x8a,0x2d,0xfd,0xed,0xf5,0xfb,0x0f,0x76,0x88,0x11,0x3c,0x97,0x47,
0x93,0xd1,0x09,0x97,0x5c,0x11,0x73,0xef,0x0b,0x0e,0xc1,0xf2,0x9f,0xa3,0xe5,0x26,0x4a,0x47,0xab,0xd9,
0x76,0x01,0x55,0x0c,0x72,0x96,0x64,0x1f,0x57,0x0b,0x78,0x72,0x1b,0x2e,0x88,0x99,0xc6,0x4b,0x53,0xb7,
0xd0,0x26,0x8d,0xda,0xf7,0xe1,0x09,0x93,0x0b,0x55,0xe9,0x07,0x6e,0x85,0x34,0xa9,0x34,0xde,0xe6,0xc2,
0xb5,0xb7,0xf6,0xac,0x76,0xc1,0xb6,0x0f,0xe5,0xf3,0xa4,0xda,0x51,0x9b,0x47,0x84,0x03,0x63,0xd3,0x68,
0xf3,0xe0,0x1f,0x25,0x16,0xdb,0x01,0xcb,0x0e,0x1d,0xfc,0xbc,0xaa,0x8c,0x75,0xbf,0x9b,0x5b,0xb9,0xa2,
0xd3,0x71,0x8b,0xbb,0xa9,0x75,0x14,0x36,0x8f,0x79,0x39,0xa8,0xb4,0x15,0x76,0x43,0xc2,0xe8,0x98,0x75,
0x81,0x4d,0x0f,0x30,0x5b,0xa7,0x82,0x50,0xd4,0x0e,0x89,0x63,0x51,0x5a,0x02,0xc6,0x53,0xca,0xf2,0x1b,
0xb5,0x24,0xad,0x51,0xd7,0x5c,0xf2,0x72,0x35,0xdb,0x16,0x39,0xc1,0xc8,0x59,0x16,0xba,0x4f,0xf1,0x19,
0xe1,0xd0,0xe9,0x18,0xee,0xf5,0xdd,0x32,0x1c,0x9d,0xc9,0x67,0x40,0xe7,0xab,0xa1,0xed,0x0c,0xc1,0xdd,
0xf5,0x40,0xb6,0xf6,0xa4,0x08,0xbb,0xca,0x29,0xb2,0x96,0x55,0xd4,0x7b,0x32,0x96,0x24,0x0d,0xb0,0x51,
0x4e,0x04,0x16,0xaf,0xa9,0x7d,0x9f,0xb5,0xdf,0xc4,0x59,0xc9,0xe4,0xf1,0xa4,0x63,0xec,0x2e,0x4e,0xb7,
0x8c,0x1b,0x11,0x58,0x42,0x4d,0xfd,0x2c,0xc7,0xe3,0x71,0x7d,0x93,0x6e,0x95,0x6b,0x00,0xef,0xe8,0x9c,
0x78,0x21,0x9e,0x22,0xb9,0x0a,0xf4,0xae,0x7a,0xda,0x85,0x53,0x92,0x4f,0x93,0x97,0x41,0xfc,0x28,0xdf,
0xd3,0x87,0xf9,0x1b,0x28,0x50,0x9b,0x07,0x00,0x96,0xd0,0x9d,0xfb,0x68,0x63,0xc4,0xbb,0xb3,0xf3,0xad,
0xc1,0xeb,0x1c,0x87,0x03,0x8b,0xb2,0xb4,0xa1,0x22,0x4b,0x0e,0xbd,0xec,0x72,0x1a,0x2d,0x92,0xd4,0x44,
0x56,0x1a,0xd8,0xdb,0xd3,0x77,0x17,0xd7,0x41,0xc2,0x96,0x69,0x1e,0x51,0x4a,0x84,0xb7,0xaa,0xbc,0xe5,
0xab,0x79,0x07,0x5b,0x4d,0x2f,0x71,0x2d,0x77,0xcf,0x41,0x5c,0x60,0x12,0x61,0x52,0xbb,0x80,0xf3,0x11,
0x8d,0xd0,0x48,0x45,0xbc,0x05,0x25,0x77,0x87,0xcb,0x59,0x76,0xdf,0x47,0x54,0x31,0x7f,0xee,0x39,0x08,
0xeb,0x53,0x86,0xc9,0x10,0xc1,0x24,0x0c,0xc7,0xf2,0xcf,0x11,0x6a,0xd9,0x8b,0xc9,0xa9,0x86,0xf8,0xed,
0x2d,0xb8,0xe9,0xd5,0x4d,0x4f,0xed,0x5a,0x24,0xd9,0x73,0x51,0x2f,0xb0,0xb8,0xa7,0x69,0x0c,0x3d,0xd1,
0xae,0xb0,0x79,0x00,0xa6,0x93,0x72,0xbe,0x65,0x9a,0x53,0xab,0xfe,0x79,0x53,0x54,0x87,0x71,0xaf,0x5d,
0x3d,0xb2,0xb5,0x3c,0x3f,0x84,0x18,0xab,0xd8,0xed,0x53,0x86,0x65,0xbc,0x4d,0xb8,0x64,0xbf,0x23,0x5f,
0x02,0xe9,0xf6,0x3f,0xf3,0x11,0x44,0x1f,0xa3,0x62,0x51,0x4b,0x4b,0x6c,0xed,0xee,0x35,0x54,0x67,0xbe,
0x7e,0xb6,0x97,0xe6,0x2f,0x27,0xe9,0x5d,0x5a,0x6c,0x3d,0xa3,0x9a,0x27,0x5a,0xf3,0x1f,0xe3,0x77,0x71,
0x4e,0xe7,0x0c,0x9c,0xbe,0xc1,0xeb,0xef,0x93,0xdb,0x6c,0xf3,0xf3,0xca,0xee,0xde,0x75,0xa7,0xf5,0x12,
0xb1,0x88,0xfc,0xa8,0x0d,0x5f,0xf5,0xa0,0x36,0x6e,0xa3,0x56,0xd3,0xaa,0x12,0xbb,0xd5,0x03,0x86,0xe7,
0xd3,0xc7,0x8b,0x20,0xd7,0x40,0x0c,0x1c,0xfd,0x06,0x5a,0xe3,0x9b,0xf3,0x15,0x7f,0x5b,0xa7,0xd4,0x38,
0x57,0x77,0x6e,0xee,0x47,0xec,0x18,0xbb,0x5f,0xf0,0x23,0x0c,0x9a,0x67,0x24,0x50,0xc8,0x6e,0xa3,0x74,
0x32,0x0a,0x5d,0xf3,0x05,0x76,0xa3,0xb2,0x39,0x85,0x11,0xa9,0x48,0xff,0x32,0xcd,0xac,0xd0,0x7a,0xb0,
0xdb,0x48,0xdf,0x6b,0x38,0x19,0x9e,0x0c,0x4f,0x87,0xe1,0xf0,0x6c,0xf8,0xd2,0xc6,0xeb,0x89,0x4e,0xca,
0xc4,0x34,0x97,0xc7,0xb8,0xe7,0x5e,0xa6,0x09,0x67,0x6d,0x18,0x4c,0xf0,0xa7,0x8f,0x05,0xcb,0x80,0x53,
0x88,0xac,0x0e,0x45,0x66,0x09,0xf7,0xe9,0xa1,0xd1,0x62,0x0e,0xa5,0x97,0xf5,0x0f,0xa9,0x15,0x2b,0x76,
0xca,0xa0,0x11,0xac,0xf6,0x12,0x31,0xb5,0x73,0x87,0x6b,0x72,0x11,0x92,0xdc,0x87,0x1a,0xd0,0x4b,0xf7,
0xa9,0x0a,0xbe,0x15,0xa8,0x5e,0xf4,0xf9,0x97,0xa0,0x9e,0x76,0xde,0x9c,0x2d,0xfb,0x72,0x89,0x91,0xde,
0x77,0x63,0x16,0xd3,0x4c,0x4e,0x9f,0x7b,0xe9,0xcc,0x29,0x7b,0xd6,0x15,0xef,0x86,0x95,0xd2,0xe2,0x7d,
0xd6,0x97,0x89,0x78,0x2f,0x9d,0xd1,0x54,0xd8,0x44,0x0d,0xd7,0x0d,0x0e,0xb8,0xe8,0x52,0xa9,0x7b,0xce,
0x8d,0x48,0x06,0x35,0xb2,0x6c,0x89,0x62,0x7c,0x44,0xe8,0x3a,0xab,0xf3,0xfd,0x78,0xd7,0x59,0x21,0xdf,
0x6b,0xbe,0x73,0x50,0xd1,0x21,0xd1,0x53,0x47,0x1f,0x0f,0xf8,0xf8,0x95,0x2b,0x6d,0xd7,0x3c,0xe2,0x17,
0x65,0x3c,0xa0,0xc7,0xf1,0x5a,0xef,0x18,0x88,0xef,0x03,0x6b,0x44,0xcb,0x6e,0x6f,0xde,0x44,0x51,0x66,
0xa8,0x9e,0x16,0xaa,0xd6,0x43,0x2d,0x02,0xe8,0xcd,0x80,0x30,0x0f,0x64,0x68,0xce,0x49,0x16,0xc0,0xd4,
0x19,0xc6,0x4c,0x59,0x36,0x57,0x63,0x0e,0x7b,0x05,0x8e,0x4f,0x55,0x40,0xe5,0x0d,0x5c,0xb5,0xc4,0x5a,
0x74,0xcd,0xad,0x1b,0x5a,0x49,0x02,0xd2,0xf3,0x46,0x04,0xf5,0x1a,0x2a,0x6c,0x0a,0xff,0x34,0x94,0xd8,
0x19,0x47,0xe2,0x6a,0x7c,0x83,0xb8,0x6d,0xd0,0xff,0x87,0x6f,0xf6,0xac,0x25,0x16,0x27,0xf4,0xdd,0x31,
0x0e,0x02,0xa6,0xe9,0xfc,0x9e,0x2d,0xda,0x28,0x0b,0xcb,0x41,0x57,0xfe,0x78,0xc6,0x3e,0x02,0xbf,0x2e,
0xd6,0x19,0x7b,0xa4,0xc4,0xf1,0x1d,0x26,0x91,0x4f,0xd3,0xe4,0x87,0x3c,0xd8,0xc0,0xaf,0x5b,0x64,0x7e,
0x95,0x6e,0x63,0xf4,0x65,0x5a,0x04,0x30,0xd1,0x87,0x3d,0x89,0x08,0xd0,0xe0,0x3d,0x28,0x73,0xb5,0xbd,
0x60,0x05,0x1b,0x6b,0x13,0xef,0x84,0x2b,0x0f,0xb4,0xdb,0x91,0x47,0xe3,0x63,0x13,0xc4,0xb2,0x27,0x56,
0xb1,0x27,0x83,0x98,0x47,0x2f,0x4a,0xfa,0x33,0x0d,0xc0,0xcf,0x93,0xd3,0x13,0x0b,0xa7,0xf0,0xbe,0x9b,
0xe2,0xd6,0x1a,0xdc,0x3b,0x76,0xc3,0xa4,0x3c,0x15,0x97,0x08,0x16,0x9c,0xad,0xf6,0xc0,0xe0,0xf5,0x7f,
0x93,0xc1,0xc7,0xad,0x57,0xe4,0xcc,0x78,0x21,0x71,0x24,0x97,0x59,0xcb,0x72,0xa5,0x1b,0x06,0xcf,0x35,
0xd8,0x9f,0xdd,0x0f,0x0d,0x1c,0xd8,0xfe,0x1c,0x5f,0xf2,0xcf,0x02,0x82,0x4a,0x83,0xe1,0x49,0x18,0xc2,
0x36,0x05,0x49,0x52,0x2b,0x6c,0xf9,0x68,0xbd,0x82,0xf8,0x27,0x2c,0x20,0xe7,0xd1,0x5d,0xde,0x08,0x47,
0xc9,0x5d,0x6a,0x4a,0xca,0xf7,0xb2,0x40,0xba,0x14,0x50,0x19,0x92,0xb2,0xed,0xf6,0xa5,0x74,0x8e,0x2a,
0x4b,0x46,0x06,0xd6,0x88,0x74,0x1f,0x54,0x57,0xdd,0xd3,0x2a,0x53,0x66,0xb8,0x71,0xae,0x36,0x2f,0xf7,
0x5b,0x28,0xf6,0x53,0x91,0x58,0x57,0x53,0xa9,0xf1,0xf4,0xff,0xa2,0x7e,0x7a,0x51,0x8b,0x64,0x87,0xfe,
0xb2,0x76,0xf6,0xa5,0xe8,0xb1,0xee,0x68,0xf7,0xd2,0x04,0xdb,0x19,0x65,0x5d,0x3e,0xdb,0x49,0x25,0x5a,
0x3c,0x39,0xa3,0x59,0xd1,0x71,0xc2,0xbb,0x4e,0x52,0x4b,0x69,0x82,0xed,0x8a,0xb4,0x13,0xbb,0x94,0x54,
0x41,0x1f,0xf8,0xc9,0x78,0xf4,0x56,0x53,0xdc,0xf1,0xb9,0x81,0xf2,0xf2,0x4c,0x4b,0x48,0x9e,0x03,0x50,
0x8a,0xe0,0xf3,0xca,0xad,0xec,0x24,0xd8,0xcc,0xec,0x43,0xd1,0x19,0xd3,0xfb,0x82,0xea,0x3b,0x36,0xbb,
0xed,0x35,0x1c,0x95,0xc1,0x97,0x59,0x9e,0x67,0xc1,0xc1,0x97,0xc3,0x71,0x70,0x51,0xcd,0x40,0x97,0x09,
0x5b,0x25,0xc6,0xf9,0x8c,0x1b,0x2e,0x5b,0x2c,0x9a,0x80,0x3a,0xc6,0x07,0x86,0x5d,0x38,0x83,0x83,0x75,
0x74,0x0f,0x15,0x4a,0xb7,0xc5,0xfa,0xf6,0x10,0xb3,0x03,0xc5,0x5a,0x5d,0x41,0x99,0x31,0xc0,0xc0,0x27,
0x29,0x56,0xd9,0x04,0x02,0xdf,0x9b,0xbf,0x12,0x02,0xd9,0x33,0xd1,0x33,0x37,0x66,0x39,0x42,0x14,0x1a,
0x92,0x42,0xbd,0x79,0x79,0x48,0x41,0x1a,0x9c,0x97,0xcf,0x29,0x00,0x69,0x1e,0x7c,0x3e,0x84,0xec,0x43,
0x20,0x01,0xf9,0xc0,0x6a,0x50,0x22,0xe1,0xfc,0x22,0x80,0xd1,0x90,0xad,0x09,0x81,0x30,0xfc,0xfd,0x2a,
0xe5,0xf4,0xc0,0xe5,0x2d,0x90,0x76,0x37,0x9b,0x47,0xeb,0x28,0xff,0x3a,0x94,0x74,0x96,0x54,0xca,0x2c,
0xc6,0x4a,0x43,0xd5,0xc7,0xd0,0x0d,0xf0,0xf8,0x48,0xf7,0x79,0x0c,0x75,0xd1,0x9c,0xf2,0xf3,0x43,0x85,
0xd5,0x32,0xc3,0x8c,0x54,0xbb,0xd4,0x35,0xa1,0x0f,0xab,0xe0,0xf3,0x58,0xd7,0x82,0x85,0x29,0x7a,0x8e,
0x76,0xbe,0x4b,0x21,0x8d,0xf3,0x41,0xcb,0xd1,0x1c,0x06,0xd1,0x98,0x8d,0x69,0x5a,0x5e,0x48,0xc1,0xd4,
0xa0,0xfd,0xc5,0x5c,0x49,0x24,0x7f,0xce,0x22,0x00,0x84,0xf3,0x05,0x94,0x2c,0x28,0x4a,0x8a,0x6f,0x17,
0xef,0xd8,0x45,0x5b,0x96,0xed,0x5d,0x4c,0x2c,0x61,0x8d,0xba,0x7a,0xaf,0x7d,0x80,0xd2,0xf8,0x3a,0xed,
0x02,0xd5,0x68,0x4c,0x15,0xd0,0xc5,0xf5,0xd1,0xc5,0xfc,0x9b,0x0a,0x9a,0x3d,0xe9,0x39,0xec,0x0c,0x9f,
0x49,0xac,0xc4,0xf7,0x8b,0xbf,0x1c,0xfb,0xb0,0x27,0x6b,0x80,0xe3,0x22,0x43,0x59,0xf4,0x75,0xf9,0xbb,
0x7f,0x9d,0x59,0x85,0x4a,0xb3,0x1f,0x56,0x65,0x8d,0xef,0xc0,0xed,0xad,0x87,0xa3,0xb3,0xba,0x63,0x46,
0x55,0xc8,0xbe,0x09,0x25,0xdd,0x92,0x42,0xba,0x96,0x10,0x96,0xf7,0x78,0x94,0x07,0x32,0x85,0x86,0xb0,
0xc6,0x64,0x3d,0x1f,0xa9,0xe4,0x54,0x18,0xec,0x55,0xc3,0x5c,0x17,0x4b,0xb3,0x05,0xcb,0xde,0xe4,0x72,
0xd2,0xfc,0xda,0x55,0x03,0x8e,0xe4,0x79,0x4d,0xc2,0x8c,0x60,0x34,0x38,0x0f,0x54,0x98,0xfd,0x3b,0xb6,
0xc6,0x83,0x7c,0xa2,0x35,0x24,0xba,0x40,0x2f,0x1e,0xd0,0x71,0x04,0x3a,0x4d,0x77,0x09,0x9c,0x09,0x60,
0x2e,0x4d,0xe9,0xdf,0xc1,0xed,0x6c,0x7e,0x5f,0x6c,0x82,0xf1,0x1f,0x19,0xa7,0x05,0x31,0x39,0x85,0x88,
0xe0,0x81,0x62,0x43,0xc3,0x89,0x85,0xbb,0x48,0x14,0xce,0x53,0xdf,0x5f,0x00,0x4e,0x7e,0xfd,0x37,0xd5,
0xb3,0xf4,0xc7,0x24,0xd4,0x01,0x00
};

+ 61
- 61
code/espurna/static/index.small.html.gz.h View File

@ -1,4 +1,4 @@
#define webui_image_len 26143
#define webui_image_len 26146
const uint8_t webui_image[] PROGMEM = {
0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x02,0x03,0xed,0xbd,0xe9,0x7a,0xdb,0x48,0xb2,0x28,0xf8,0xbf,
0x9f,0x02,0x86,0xbb,0x6d,0xb2,0xcd,0x5d,0x3b,0x69,0xc9,0x87,0x5a,0x6c,0xab,0xca,0x96,0x64,0x4b,0xae,
@ -1248,64 +1248,64 @@ const uint8_t webui_image[] PROGMEM = {
0x5c,0x88,0x05,0x44,0x16,0xe3,0x9f,0xe5,0xc1,0xc4,0xf5,0xcb,0x78,0xcf,0x2b,0x9e,0xe4,0xcb,0xb5,0x95,
0x77,0x99,0xe4,0x24,0x10,0x9a,0x17,0x1b,0x93,0x3d,0xc6,0xb7,0x59,0x37,0x66,0xa4,0xc7,0xa8,0xf5,0x9f,
0x79,0xb3,0x64,0xdd,0x36,0xef,0xc4,0xca,0x0d,0xeb,0x31,0x2e,0x9f,0x02,0xe0,0xce,0xb9,0x96,0xcf,0xb8,
0x09,0x2a,0xbf,0x28,0xac,0x93,0xba,0x92,0x29,0xf7,0xa2,0xbe,0xac,0x8b,0x93,0x72,0xaf,0xdc,0x4b,0xdd,
0x63,0x94,0x7b,0xf1,0x9e,0x2a,0xb9,0xb8,0x5d,0x10,0x2d,0xf8,0x4d,0x3f,0x73,0xee,0x0b,0xd4,0x6e,0xd4,
0xc9,0xbd,0x32,0x50,0xbf,0x56,0x67,0x71,0x48,0x94,0x1e,0xb3,0x6d,0xe5,0xe1,0x00,0x99,0xb8,0x8c,0x08,
0xbd,0xf9,0x21,0x61,0x39,0x08,0x2b,0x02,0xc3,0x15,0xa2,0xbc,0x17,0x57,0x72,0x24,0x46,0x97,0xde,0xee,
0x72,0x27,0xe7,0x6d,0x70,0x11,0x46,0x9d,0xb3,0xc9,0x97,0x71,0xbe,0x12,0x71,0xd8,0x7a,0x0e,0xb3,0x24,
0xc9,0xdb,0x28,0x6f,0xca,0x3a,0x88,0xef,0x26,0x17,0x09,0x29,0xb9,0x99,0xce,0x33,0xb4,0x9a,0x9c,0xc2,
0xc9,0x25,0xca,0x75,0x2b,0x48,0xde,0x49,0x10,0x0f,0xc9,0xa6,0x44,0xb1,0x6e,0x80,0x0e,0xbf,0x19,0xe9,
0xeb,0x73,0xf3,0x2d,0x6e,0xc6,0x93,0xc4,0x4b,0x19,0x57,0x22,0xd2,0x63,0x3f,0x60,0xe5,0x89,0x43,0x2e,
0xc4,0xe2,0x3e,0x87,0x4a,0xa5,0x92,0x24,0xd0,0x73,0xe1,0x6a,0x61,0x1b,0x2b,0xdb,0x38,0x78,0x2d,0x01,
0x57,0x1e,0xbd,0x9a,0xb4,0x70,0x2c,0x84,0xe4,0xb7,0x31,0x81,0x88,0xf9,0xc8,0x84,0x8f,0x4b,0x4d,0xfe,
0x1c,0x1d,0xb4,0xba,0x16,0x06,0x0b,0xac,0x3e,0x7b,0x77,0x92,0x19,0xef,0x9d,0x3f,0x6f,0x2d,0xbc,0xac,
0xbe,0x61,0xe7,0x20,0xcb,0xbc,0xac,0x40,0x72,0x86,0x4b,0xe9,0xd3,0xa2,0x34,0xb7,0x07,0x73,0x03,0x30,
0x1e,0x4c,0x1f,0xbe,0x3e,0x38,0x03,0x1d,0x75,0xe0,0x47,0xae,0xb0,0x3e,0x2c,0x8d,0x2a,0xaf,0x60,0x37,
0x5f,0x23,0xa9,0xf9,0x2a,0x70,0x0d,0xae,0xff,0x27,0x80,0x0b,0x8f,0x8a,0xaf,0xe3,0x0b,0xcc,0x79,0x22,
0x70,0x81,0x22,0x4b,0x03,0x4a,0x52,0x87,0xb7,0x4e,0x78,0xf9,0x35,0xa0,0x1a,0x43,0xbd,0xff,0x09,0xc0,
0xfa,0x10,0xf2,0xab,0xef,0x1a,0x1b,0x1b,0x15,0xf9,0xff,0x1a,0x61,0x59,0xb5,0xb1,0xae,0x65,0xbc,0x5a,
0x1a,0x70,0x87,0x27,0xe7,0x5f,0x89,0x5d,0x3d,0x2f,0xfc,0x9f,0x82,0x5e,0xa8,0x00,0x1d,0xfa,0x63,0xcc,
0x09,0x7e,0x42,0xc9,0xf3,0xe8,0xe4,0x06,0xe6,0x2d,0x2d,0x8a,0x73,0xf1,0x6f,0xe9,0x11,0x25,0xd3,0x98,
0x25,0xa4,0x7c,0x50,0x4b,0x05,0xff,0xe0,0x60,0x34,0x73,0x97,0x1d,0x32,0x72,0x63,0x4d,0xa7,0x0b,0x5a,
0x8e,0xe5,0xcb,0x44,0x32,0x5f,0xcf,0xf3,0x29,0x89,0x1c,0x19,0xf6,0xdc,0x39,0x57,0x42,0x69,0x6a,0xce,
0x86,0xe2,0xf9,0x3a,0x6f,0x8f,0x45,0x5f,0x18,0xd2,0x6b,0x7f,0x1a,0xe4,0x5c,0xf2,0x65,0x61,0xae,0x5d,
0x94,0x83,0x79,0xa8,0x75,0x63,0x4d,0x4b,0x7e,0x9b,0xd9,0x2f,0xad,0x69,0x97,0xe1,0x79,0xa6,0xbd,0xf7,
0xc4,0xeb,0x84,0x93,0xd6,0x30,0x5f,0x13,0x5c,0x7d,0xac,0x6f,0x29,0x16,0x6f,0xb9,0xd1,0x6e,0xec,0x7c,
0xc5,0x68,0xc7,0xf3,0x46,0xab,0x61,0x55,0x9c,0xbb,0x64,0x89,0x30,0xb4,0x0f,0x17,0x07,0x56,0xa4,0x39,
0xf1,0x2f,0xc8,0xb7,0x37,0xcf,0x10,0x0d,0x30,0x80,0xd6,0x56,0xb2,0x42,0x2f,0xba,0x9d,0x0a,0x74,0x88,
0x6b,0xc6,0x2e,0x7b,0xc0,0xc2,0x30,0x79,0xa4,0x87,0x8e,0xdc,0x79,0x23,0x6d,0x94,0x37,0x16,0xad,0x17,
0xca,0x8d,0x4a,0xe6,0xe4,0x42,0xa4,0x1a,0xfa,0x8f,0x87,0x61,0x6e,0x68,0x39,0x52,0x1b,0xa9,0x77,0x95,
0x1a,0xa5,0xb5,0xd2,0x7a,0x69,0xa3,0xb4,0x59,0xda,0xca,0x9b,0xeb,0x9a,0x3e,0x94,0x46,0xd6,0x5a,0xd6,
0x89,0xe6,0xbe,0xf5,0x3d,0x98,0x5a,0xc9,0x6a,0xd0,0xd3,0xc5,0x94,0x85,0x38,0x53,0x16,0x75,0x2b,0x25,
0x6e,0xc4,0xb1,0x42,0x86,0x17,0x0d,0x44,0xe8,0xaf,0x98,0xec,0x48,0xed,0x58,0x4e,0x29,0x2d,0x13,0x7c,
0xcb,0x82,0x58,0x5c,0x67,0x86,0xe6,0x20,0x54,0x69,0x1f,0x06,0x0d,0x44,0xa3,0x0f,0x89,0x0a,0xcb,0xba,
0x6d,0x2e,0x35,0xbe,0xe5,0xfd,0x36,0xd7,0x57,0x26,0xce,0x39,0x74,0x39,0xce,0x11,0xf6,0xb5,0x84,0x99,
0x2f,0x73,0x79,0xc9,0x7b,0x17,0xdb,0x5d,0x71,0x50,0xb5,0xe8,0x78,0x09,0x77,0xca,0x1c,0xed,0x33,0xb9,
0x4d,0x78,0xbb,0x82,0x47,0x0b,0x6f,0x20,0x71,0xe1,0x58,0x86,0x02,0xce,0x6f,0x69,0xd0,0x35,0xe7,0x94,
0x15,0x43,0x5c,0xe4,0x30,0xc7,0x82,0x71,0x41,0xa1,0xdb,0xb9,0xca,0xf7,0xfd,0x55,0x67,0x95,0xf9,0x4d,
0xd3,0x9d,0x2d,0x03,0x87,0x78,0x4e,0x59,0xbd,0x3c,0xe6,0x87,0xd3,0x66,0xb1,0x78,0x1d,0xa9,0x47,0x69,
0x0f,0xf8,0x0a,0xf6,0x9a,0xcc,0x98,0x4f,0xed,0xa1,0x34,0xa2,0x1d,0x24,0xc7,0x8b,0x9d,0x71,0x85,0xa6,
0x9d,0xdc,0x0f,0x09,0xeb,0xdf,0xd2,0x13,0xe0,0xe2,0x81,0x34,0xcb,0x2d,0x1c,0x16,0x86,0x69,0x67,0x94,
0x39,0x64,0x61,0x57,0x95,0x29,0xae,0xe2,0x98,0x64,0x40,0x85,0x4f,0x79,0x1f,0xcf,0x07,0xf5,0xbb,0x68,
0x17,0xe3,0x86,0x76,0xfa,0x4f,0xe3,0xd9,0xe7,0x06,0xbd,0x14,0x0a,0x67,0x99,0x7f,0x52,0x48,0xbc,0xd0,
0x8e,0x04,0x68,0x7c,0x4e,0x71,0xcb,0x98,0xff,0xb6,0x4f,0xf7,0x47,0xe6,0xda,0xe1,0x38,0xbe,0x2f,0x28,
0x87,0xc6,0x52,0xbf,0x7b,0xc9,0x7a,0xf3,0x46,0xb6,0x11,0x17,0x3a,0x59,0x3e,0x9f,0xcf,0x32,0x00,0x3f,
0x9b,0x82,0xb4,0x7d,0x4f,0x88,0x53,0x1b,0x59,0x20,0x3f,0xf4,0xbd,0xa7,0x91,0x35,0xc1,0xcf,0x73,0x60,
0x7e,0xe2,0x07,0x63,0xd2,0x65,0xe6,0x00,0xa0,0xa1,0x17,0xfb,0x26,0x20,0x20,0x81,0xb7,0x10,0x1f,0x8b,
0x2e,0x15,0x56,0x9f,0xda,0x9b,0x18,0x13,0xb8,0xd4,0xd5,0xb6,0x42,0x8e,0xac,0x55,0xea,0x59,0x29,0x86,
0x96,0xcc,0xd5,0xb3,0xe4,0x04,0xe9,0xc8,0x9a,0xfb,0xc1,0x87,0x5a,0x00,0xfb,0x92,0x33,0x5d,0xcb,0x99,
0x29,0xb6,0x77,0x3e,0xed,0xe4,0x1a,0xf7,0xea,0x8b,0xc3,0x84,0xbe,0xd5,0x2c,0x29,0x59,0x4e,0x38,0x7c,
0x80,0x09,0x9e,0xfd,0xf7,0x9c,0xe0,0xfd,0xf6,0x2b,0xcd,0x2c,0xf3,0x30,0xa2,0x26,0xb7,0xd9,0x9c,0xed,
0x2a,0x4e,0x17,0x96,0xdc,0x83,0x5f,0x3f,0xdd,0xd3,0x54,0x1e,0x94,0xaf,0x9f,0xf1,0x5b,0xe8,0x16,0xc3,
0x8e,0x52,0x13,0x6e,0x6c,0x6c,0x20,0x99,0x42,0x4f,0x94,0x21,0x5d,0x79,0x90,0x7b,0x04,0xf1,0x57,0x48,
0x40,0x0b,0x59,0x77,0xaf,0xfb,0x39,0xeb,0xae,0xfa,0xe5,0xe4,0x8e,0x55,0x3c,0x94,0x16,0x4a,0x90,0x32,
0x5c,0xee,0xb8,0x77,0xb3,0xd4,0xe5,0xdd,0x0b,0xa7,0x86,0x1e,0xc3,0x52,0x9a,0x13,0xbd,0xcb,0x6f,0x7f,
0xfb,0x64,0x95,0x37,0xf3,0xc3,0x4c,0x55,0x7a,0x94,0xd8,0x8b,0x19,0xd6,0x46,0x79,0x33,0x49,0x9b,0x84,
0xcf,0xcb,0xb2,0x67,0x2a,0xab,0x9d,0x8b,0xac,0x7a,0x60,0x1d,0x9b,0xb2,0xc4,0x51,0xc8,0x21,0xe6,0x04,
0xcf,0x3c,0xab,0x5e,0x06,0x2a,0x91,0x70,0x43,0x59,0xca,0x63,0x26,0x09,0x96,0x74,0x16,0xae,0x07,0x83,
0xcb,0x5a,0xba,0xb7,0x93,0x94,0xf3,0xeb,0xff,0xac,0x45,0x70,0x84,0xd3,0x26,0xcc,0x41,0xb8,0x01,0xfd,
0x46,0xd9,0x51,0xf1,0x48,0x6d,0x84,0x67,0x3d,0x98,0x8e,0x0d,0x71,0x9c,0x82,0x63,0xfd,0x6b,0x0f,0x93,
0xe0,0xa0,0xdd,0xe3,0x50,0xfc,0xb6,0xc4,0x85,0xee,0x95,0x3f,0x42,0x18,0x0b,0xc5,0x72,0x72,0x10,0xf1,
0x0b,0xad,0x44,0xf1,0xc4,0x6d,0x54,0x22,0xf5,0x3b,0xc6,0xce,0xef,0xfd,0x7f,0x41,0xee,0x82,0x9d,0x91,
0xa5,0x01,0x00
0x09,0x2a,0xbf,0x28,0xac,0x93,0xba,0x92,0x29,0xf7,0xa2,0xbe,0xac,0x8b,0x93,0x72,0xaf,0xdc,0xe3,0xf1,
0xc8,0x05,0x16,0x16,0x17,0xcc,0x67,0xc7,0x28,0xbb,0xb8,0x6d,0x10,0x2f,0xf8,0x6d,0x3f,0x73,0xee,0x0c,
0xd4,0x6e,0xd5,0xc9,0xbd,0x36,0x50,0xbf,0x5a,0x67,0x71,0x58,0x94,0x1e,0xb7,0x6d,0xe5,0xe1,0x01,0x99,
0xb9,0x8c,0x28,0xbd,0xf9,0x61,0x61,0x39,0x48,0x2b,0x82,0xc3,0x15,0xb2,0xbc,0x17,0xd7,0x72,0x24,0x46,
0x97,0xde,0xf2,0x72,0x37,0xe7,0x6d,0x72,0x11,0x4a,0x9d,0xb3,0xd1,0x97,0x71,0xc0,0x12,0xb1,0xd8,0x7a,
0x1e,0xb3,0x24,0xd9,0xdb,0x28,0x6f,0xca,0x3a,0x88,0xf3,0x26,0x27,0x09,0x29,0xc1,0x99,0xce,0x37,0xb4,
0x9a,0x9c,0xca,0xc9,0x25,0xca,0x75,0x2d,0x48,0xde,0x4b,0x10,0x0f,0xc9,0xa6,0x64,0xb1,0x6e,0x80,0x4e,
0xbf,0x19,0x29,0xec,0x73,0x73,0x2e,0x6e,0xc6,0x93,0xc4,0x8b,0x19,0x57,0x22,0xd4,0x63,0x3f,0x60,0xe5,
0x89,0x43,0x6e,0xc4,0xe2,0x4e,0x87,0x4a,0xa5,0x92,0x24,0xd2,0x73,0xe1,0x6a,0x61,0x1b,0x2b,0xdb,0x39,
0x78,0x2d,0x01,0x57,0x1e,0xc1,0x9a,0xb4,0x72,0x2c,0x84,0xe4,0xb7,0x31,0x83,0x88,0xf9,0xc8,0xa4,0x8f,
0x4b,0x4d,0xfe,0x1c,0x9d,0xb4,0xba,0x16,0x06,0x0c,0xac,0x3e,0x7b,0x77,0x92,0x19,0xf3,0x9d,0x3f,0x6f,
0x2d,0xc4,0xac,0xbe,0x61,0xe7,0x20,0xcb,0xbc,0xcc,0x40,0x72,0x86,0x4b,0xe9,0xd4,0xa2,0x34,0xb7,0x09,
0x73,0x23,0x30,0x1e,0x4e,0x1f,0xbe,0x3e,0x38,0x03,0x3d,0x75,0xe0,0x47,0xae,0xb0,0x40,0x2c,0x8d,0x2a,
0xaf,0x60,0x37,0x5f,0x23,0xa9,0xf9,0x2a,0x70,0x0d,0xae,0xff,0x27,0x80,0x0b,0x8f,0x8b,0xaf,0xe3,0x4b,
0xcc,0x79,0x32,0x70,0x81,0x22,0x4b,0x03,0x4a,0x52,0x87,0xb7,0x4e,0x78,0xf9,0x35,0xa0,0x1a,0x43,0xbd,
0xff,0x09,0xc0,0xfa,0x10,0xf2,0xeb,0xef,0x1a,0x1b,0x1b,0x15,0xf9,0xff,0x1a,0x61,0x59,0xb5,0xb1,0xae,
0x65,0xbd,0x5a,0x1a,0x70,0x87,0x27,0xe7,0x5f,0x89,0x5d,0x3d,0x2f,0xfc,0x9f,0x82,0x5e,0xa8,0x04,0x1d,
0xfa,0x63,0xcc,0x0b,0x7e,0x42,0x09,0xf4,0xe8,0xf4,0x06,0xe6,0x2d,0xad,0x8a,0x73,0xf1,0x6f,0xe9,0x11,
0x25,0x53,0x99,0x25,0x24,0x7d,0x50,0x4d,0x05,0xff,0xe0,0x60,0x34,0xf3,0x97,0x1d,0x32,0x72,0x65,0x4d,
0xa7,0x0c,0x5a,0x8e,0xe5,0xcb,0x64,0x32,0x5f,0xcf,0xf3,0x29,0x91,0x1c,0x19,0xf7,0xdc,0x39,0xd7,0x42,
0x69,0xaa,0xce,0x86,0xe2,0xf9,0x3a,0x6f,0x8f,0xc5,0x5f,0x18,0xd2,0x6b,0x7f,0x1a,0xe4,0x5c,0xf4,0x65,
0x61,0xbe,0x5d,0x94,0x85,0x79,0xb8,0x75,0x63,0x4d,0x4b,0x80,0x9b,0xd9,0x2f,0xad,0x69,0x97,0xe1,0x99,
0xa6,0xbd,0xf7,0xc4,0xeb,0x84,0x93,0xd6,0x30,0x5f,0x1b,0x5c,0x7d,0xac,0x6f,0x29,0x1e,0x6f,0xb9,0xd1,
0x6e,0xec,0x7c,0xc5,0x68,0xc7,0xf3,0x46,0xab,0x61,0x55,0x9c,0xbf,0x64,0x89,0x50,0xb4,0x0f,0x17,0x07,
0x56,0xa4,0x39,0xf2,0x2f,0xc8,0xb9,0x37,0xcf,0x18,0x0d,0x30,0x80,0xd6,0x56,0xb2,0x44,0x2f,0xba,0xa1,
0x0a,0xf4,0x88,0x6b,0xc6,0x2e,0x7b,0xc0,0xc2,0x30,0x81,0xa4,0x87,0xce,0xdc,0x79,0x23,0x6d,0x94,0x37,
0x16,0xad,0x17,0xca,0x8d,0x4a,0xe6,0xe4,0x42,0xa4,0x1a,0xfa,0x8f,0x87,0x61,0x6e,0x78,0x39,0x52,0x1b,
0xa9,0x7b,0x95,0x1a,0xa5,0xb5,0xd2,0x7a,0x69,0xa3,0xb4,0x59,0xda,0xca,0x9b,0xeb,0x9a,0x3e,0x94,0x46,
0xd6,0x5a,0xd6,0x89,0xe6,0xbe,0xf5,0x3d,0x98,0x5a,0xc9,0x6a,0xd0,0xd3,0xc5,0x94,0x85,0x38,0x53,0x16,
0x75,0x2b,0x25,0x6e,0xc8,0xb1,0x42,0x86,0x97,0x0d,0x44,0xe8,0xb3,0x98,0xec,0x48,0xed,0x58,0x4e,0x29,
0x2d,0x13,0x7c,0xcb,0x82,0x58,0x5c,0x69,0x86,0x26,0x21,0x54,0x6b,0x1f,0x06,0x0d,0x44,0xa3,0x0f,0x89,
0x0a,0xcb,0xba,0x6e,0x2e,0x35,0xbe,0xe5,0x7d,0x37,0xd7,0x57,0x26,0xce,0x39,0x74,0x39,0xce,0x13,0xf6,
0xb5,0x84,0x99,0x2f,0x73,0x79,0xc9,0xbb,0x17,0xdb,0x5d,0x71,0x58,0xb5,0xe8,0x88,0x09,0x77,0xca,0x1c,
0xed,0x33,0xb9,0x4d,0x78,0xbb,0x82,0x47,0x0b,0x8f,0x20,0x71,0xe9,0x58,0x86,0x02,0xce,0x6f,0x6a,0xd0,
0x35,0xe7,0x94,0x25,0x43,0x5c,0xe6,0x30,0xc7,0x8a,0x71,0x41,0xe1,0xdb,0xb9,0xca,0xf7,0xfd,0x55,0x67,
0x95,0xfd,0x4d,0xd3,0x9d,0x2d,0x03,0x87,0x78,0x5e,0x59,0xbd,0x3c,0xe6,0x88,0xd3,0x66,0xb1,0x78,0x1d,
0xa9,0x47,0x69,0x0f,0xf8,0x0a,0xf6,0x9a,0xcc,0x9a,0x4f,0xed,0xa1,0x34,0xa2,0x1d,0x26,0xc7,0x8b,0x9d,
0x71,0x8d,0xa6,0x9d,0xdc,0x0f,0x09,0x0b,0xe0,0xd2,0x13,0xe0,0xe2,0x81,0x34,0xcd,0x2d,0x1c,0x16,0x86,
0x6a,0x67,0x94,0x39,0x64,0x61,0x57,0x95,0x29,0xae,0xe2,0x9c,0x64,0x40,0x85,0x4f,0x79,0x1f,0xcf,0x08,
0xf5,0xfb,0x68,0x17,0xe3,0x86,0xe6,0x01,0x40,0xe3,0xd9,0xe7,0x46,0xbd,0x14,0x0a,0x67,0x99,0x7f,0x52,
0x48,0xbc,0xd0,0x8e,0x04,0x68,0x7c,0x4e,0xb1,0xcb,0x98,0x03,0xb7,0x4f,0x77,0x48,0xe6,0xda,0xe2,0x38,
0xbe,0x2f,0x28,0x87,0x06,0x53,0xbf,0x7b,0xc9,0x7a,0xf3,0x46,0xb6,0x11,0x17,0x3a,0x59,0x3e,0xa7,0xcf,
0x32,0x00,0x3f,0x9b,0x82,0xb4,0x7d,0x4f,0x88,0x53,0x1b,0x59,0x20,0x3f,0xf4,0xbd,0xa7,0x91,0x35,0xc1,
0xcf,0x73,0x60,0x7e,0xe2,0x07,0x63,0xd2,0x65,0xe6,0x00,0xa0,0xa1,0x17,0xfb,0x26,0x20,0x20,0x81,0xb7,
0x10,0x1f,0x8d,0x2e,0x15,0x5a,0x9f,0xda,0x9b,0x18,0x17,0xb8,0xd4,0xf5,0xb6,0x42,0x8e,0xac,0x55,0xea,
0x59,0x69,0x86,0x96,0xcc,0xd7,0xb3,0xe4,0x04,0xe9,0xd8,0x9a,0xfb,0xc2,0x87,0x5a,0x10,0xfb,0x92,0x33,
0x5d,0xcb,0x99,0x29,0xb6,0x77,0x3e,0xed,0xe4,0x1a,0xf7,0xea,0x8b,0x43,0x85,0xbe,0xd5,0x2c,0x29,0x61,
0x4e,0x38,0x7c,0x80,0x09,0x9e,0xfd,0xf7,0x9c,0xe0,0xfd,0xf6,0x2b,0xcd,0x2c,0xf3,0x40,0xa2,0x26,0xb7,
0xd9,0x9c,0xed,0x2a,0x4e,0x18,0x96,0xdc,0x83,0x5f,0x3f,0xdd,0xd3,0x54,0x2e,0x94,0xaf,0x9f,0xf1,0x5b,
0xe8,0x16,0x43,0x8f,0x52,0x13,0x6e,0x6c,0x6c,0x20,0x99,0x42,0x6f,0x94,0x21,0x5d,0x7b,0x90,0x7b,0x04,
0xf1,0x57,0x48,0x40,0x0b,0x59,0x77,0xaf,0xfb,0x39,0xeb,0xbe,0xfa,0xe5,0xe4,0x8e,0x55,0xbc,0x94,0x16,
0x4a,0x90,0x32,0x64,0xee,0xb8,0x77,0xb3,0xd4,0x05,0xde,0x0b,0xa7,0x86,0x5e,0xc3,0x52,0x9a,0x13,0xbd,
0xcb,0x6f,0x7f,0xfb,0x64,0x95,0x47,0xf3,0xc3,0x4c,0x55,0x7a,0x95,0xd8,0x8b,0x19,0xd6,0x46,0x79,0x33,
0x49,0x9b,0x84,0xdf,0xcb,0xb2,0x67,0x2a,0xab,0x9d,0x8b,0xac,0x7a,0x68,0x1d,0x9b,0xb2,0xc4,0x51,0xc8,
0x21,0xe6,0x05,0xcf,0x3c,0xaf,0x5e,0x06,0x2a,0x91,0x70,0x45,0x59,0xca,0x6b,0x26,0x09,0x96,0x74,0x26,
0xae,0x07,0x83,0xcb,0x5a,0xba,0xb7,0x93,0x94,0x03,0xec,0xff,0xac,0x45,0x70,0x84,0xe3,0x26,0xcc,0x41,
0xb8,0x02,0xfd,0x46,0x19,0x52,0xf1,0x48,0x6d,0x84,0x67,0x3d,0x98,0x92,0x0d,0x71,0x9c,0x02,0x64,0xfd,
0x6b,0x0f,0x13,0xe1,0xa0,0xdd,0xe3,0x50,0xfc,0xb6,0xc4,0xa5,0xee,0x95,0x3f,0x42,0x18,0x0b,0xc5,0x73,
0x72,0x10,0xf1,0x4b,0xad,0x44,0xf1,0xc4,0x8d,0x54,0x22,0xfd,0x3b,0xc6,0xcf,0xef,0xfd,0x7f,0xdc,0x7f,
0xc8,0x47,0x95,0xa5,0x01,0x00
};

+ 1340
- 1340
code/espurna/static/index.thermostat.html.gz.h
File diff suppressed because it is too large
View File


+ 2
- 2
code/html/index.html View File

@ -1939,8 +1939,8 @@
<option value="3">Inverse switch #</option>
<option value="4">Find me</option>
<option value="5">Find me &amp; WiFi</option>
<option value="8">Switches status</option>
<option value="9">Switches &amp; WiFi</option>
<option value="8">Switch(es) status</option>
<option value="9">Switch(es) &amp; WiFi</option>
<option value="0">Manual</option>
<option value="6">Always ON</option>
<option value="7">Always OFF</option>


Loading…
Cancel
Save