From e292ce2fc8a07aa9eea37ed6accd53ea2b729b45 Mon Sep 17 00:00:00 2001 From: Liu_Weichao Date: Fri, 22 Dec 2023 15:14:20 +0800 Subject: [PATCH] feat support webserver function include net_4g/net_lora for xishutong-arm32, compile OK --- .gitmodules | 3 - APP_Framework/Applications/mongoose/Kconfig | 5 + .../Applications/mongoose/webserver_project.c | 251 +- APP_Framework/Framework/connection/4g/Kconfig | 10 +- .../Framework/connection/4g/ec200a/Kconfig | 10 + .../Framework/connection/4g/ec200a/Makefile | 3 + .../Framework/connection/4g/ec200a/ec200a.c | 24 + APP_Framework/lib/lorawan/Kconfig | 2 +- APP_Framework/lib/lorawan/lora_radio_driver | 1 - .../lib/lorawan/lora_radio_driver/Kconfig | 18 + .../lib/lorawan/lora_radio_driver/Makefile | 3 + .../lib/lorawan/lora_radio_driver/README.md | 5 + .../lib/lorawan/lora_radio_driver/SConscript | 12 + .../lorawan/lora_radio_driver/doc/README.md | 381 +++ .../lora-radio-driver_file_arch.png | Bin 0 -> 53991 bytes .../lora-radio-driver_func_arch.png | Bin 0 -> 25370 bytes .../doc/doxygen_image/mainpage.h | 41 + .../doc/lora-radio-driver_Doxyfile | 2523 +++++++++++++++++ .../01_lora-radio-driver_pkgs_struction.png | Bin 0 -> 80753 bytes .../pics/02_lora-radio-test-shell-cmdlist.png | Bin 0 -> 21400 bytes .../03_lora-ping_SX1278-SX1268-TRX-test.png | Bin 0 -> 267690 bytes .../doc/pics/04_lora-rx_sniffer-test.png | Bin 0 -> 269482 bytes .../lora_radio_driver/lora-radio/Makefile | 15 + .../lora_radio_driver/lora-radio/SConscript | 29 + .../lora-radio/common/Makefile | 3 + .../lora-radio/common/lora-radio-timer.c | 181 ++ .../lora-radio/common/lora-radio-timer.h | 216 ++ .../lora-radio/include/lora-radio-debug.h | 122 + .../include/lora-radio-rtos-config.h | 72 + .../lora-radio/include/lora-radio.h | 549 ++++ .../lora-radio/sx126x/Makefile | 3 + .../lora-radio/sx126x/lora-radio-sx126x.c | 1698 +++++++++++ .../lora-radio/sx126x/lora-spi-sx126x.c | 324 +++ .../lora-radio/sx126x/lora-spi-sx126x.h | 111 + .../lora-radio/sx126x/sx126x.c | 806 ++++++ .../lora-radio/sx126x/sx126x.h | 1131 ++++++++ .../lora-radio/sx127x/Makefile | 3 + .../lora-radio/sx127x/lora-radio-sx127x.c | 300 ++ .../lora-radio/sx127x/lora-spi-sx127x.c | 120 + .../lora-radio/sx127x/lora-spi-sx127x.h | 64 + .../lora-radio/sx127x/sx127x.c | 2173 ++++++++++++++ .../lora-radio/sx127x/sx127x.h | 530 ++++ .../lora-radio/sx127x/sx127xRegs-Fsk.h | 1142 ++++++++ .../lora-radio/sx127x/sx127xRegs-LoRa.h | 573 ++++ .../lorawan/lora_radio_driver/ports/Makefile | 3 + .../lora_radio_driver/ports/SConscript | 41 + .../ports/lora-module/Makefile | 5 + .../ports/lora-module/hc32_adapter/Kconfig | 18 + .../ports/lora-module/hc32_adapter/Makefile | 11 + .../hc32_adapter/SX1268_E22-400M30S/Kconfig | 45 + .../hc32_adapter/SX1268_E22-400M30S/Makefile | 3 + .../SX1268_E22-400M30S/sx1268-board.c | 394 +++ .../hc32_adapter/SX1278_Ra-01/Kconfig | 18 + .../hc32_adapter/SX1278_Ra-01/Makefile | 3 + .../hc32_adapter/SX1278_Ra-01/sx1278-board.c | 283 ++ .../lora-module/hc32_adapter/lora-spi-board.c | 158 ++ .../ports/lora-module/inc/sx126x-board.h | 256 ++ .../ports/lora-module/inc/sx127x-board.h | 261 ++ .../SX1262_ASR6500S/sx126x-board.c | 79 + .../SX1262_LSD4RF-2R822N30/sx1262-board.c | 174 ++ .../SX1268_LSD4RF-2R717N40/sx1268-board.c | 177 ++ .../SX1278_LSD4RF-2F717N30/sx1278-board.c | 292 ++ .../stm32_adapter/SX1278_Ra-01/sx1278-board.c | 225 ++ .../stm32_adapter/lora-spi-board.c | 100 + .../lora_radio_driver/samples/Makefile | 3 + .../lora_radio_driver/samples/SConscript | 14 + .../samples/lora-radio-tester/Makefile | 3 + .../lora-radio-tester/lora-radio-tester.c | 1402 +++++++++ .../lora-radio-tester/lora-radio-tester.h | 158 ++ .../third_party_driver/spi/Kconfig | 34 +- .../third_party_driver/spi/Makefile | 5 + .../third_party_driver/spi/connect_lora_spi.c | 457 +++ .../third_party_driver/spi/connect_spi.c | 130 +- .../spi/third_party_spi_lora/Makefile | 5 + .../spi/third_party_spi_lora/sx12xx/Makefile | 3 + .../sx12xx/inc/spi_lora_sx12xx.h | 51 + .../third_party_spi_lora/sx12xx/src/Makefile | 3 + .../sx12xx/src/radio/Makefile | 3 + .../sx12xx/src/radio/platform.h | 96 + .../sx12xx/src/radio/radio.c | 75 + .../sx12xx/src/radio/radio.h | 77 + .../sx12xx/src/radio/sx1276-Fsk.c | 616 ++++ .../sx12xx/src/radio/sx1276-Fsk.h | 1471 ++++++++++ .../sx12xx/src/radio/sx1276-FskMisc.c | 532 ++++ .../sx12xx/src/radio/sx1276-FskMisc.h | 251 ++ .../sx12xx/src/radio/sx1276-Hal.h | 170 ++ .../sx12xx/src/radio/sx1276-LoRa.c | 723 +++++ .../sx12xx/src/radio/sx1276-LoRa.h | 820 ++++++ .../sx12xx/src/radio/sx1276-LoRaMisc.c | 420 +++ .../sx12xx/src/radio/sx1276-LoRaMisc.h | 324 +++ .../sx12xx/src/radio/sx1276.c | 327 +++ .../sx12xx/src/radio/sx1276.h | 97 + .../third_party_driver/usart/Kconfig | 4 +- 93 files changed, 24135 insertions(+), 142 deletions(-) create mode 100644 APP_Framework/Framework/connection/4g/ec200a/Kconfig create mode 100644 APP_Framework/Framework/connection/4g/ec200a/Makefile create mode 100644 APP_Framework/Framework/connection/4g/ec200a/ec200a.c delete mode 160000 APP_Framework/lib/lorawan/lora_radio_driver create mode 100644 APP_Framework/lib/lorawan/lora_radio_driver/Kconfig create mode 100644 APP_Framework/lib/lorawan/lora_radio_driver/Makefile create mode 100644 APP_Framework/lib/lorawan/lora_radio_driver/README.md create mode 100644 APP_Framework/lib/lorawan/lora_radio_driver/SConscript create mode 100644 APP_Framework/lib/lorawan/lora_radio_driver/doc/README.md create mode 100644 APP_Framework/lib/lorawan/lora_radio_driver/doc/doxygen_image/lora-radio-driver_file_arch.png create mode 100644 APP_Framework/lib/lorawan/lora_radio_driver/doc/doxygen_image/lora-radio-driver_func_arch.png create mode 100644 APP_Framework/lib/lorawan/lora_radio_driver/doc/doxygen_image/mainpage.h create mode 100644 APP_Framework/lib/lorawan/lora_radio_driver/doc/lora-radio-driver_Doxyfile create mode 100644 APP_Framework/lib/lorawan/lora_radio_driver/doc/pics/01_lora-radio-driver_pkgs_struction.png create mode 100644 APP_Framework/lib/lorawan/lora_radio_driver/doc/pics/02_lora-radio-test-shell-cmdlist.png create mode 100644 APP_Framework/lib/lorawan/lora_radio_driver/doc/pics/03_lora-ping_SX1278-SX1268-TRX-test.png create mode 100644 APP_Framework/lib/lorawan/lora_radio_driver/doc/pics/04_lora-rx_sniffer-test.png create mode 100644 APP_Framework/lib/lorawan/lora_radio_driver/lora-radio/Makefile create mode 100644 APP_Framework/lib/lorawan/lora_radio_driver/lora-radio/SConscript create mode 100644 APP_Framework/lib/lorawan/lora_radio_driver/lora-radio/common/Makefile create mode 100644 APP_Framework/lib/lorawan/lora_radio_driver/lora-radio/common/lora-radio-timer.c create mode 100644 APP_Framework/lib/lorawan/lora_radio_driver/lora-radio/common/lora-radio-timer.h create mode 100644 APP_Framework/lib/lorawan/lora_radio_driver/lora-radio/include/lora-radio-debug.h create mode 100644 APP_Framework/lib/lorawan/lora_radio_driver/lora-radio/include/lora-radio-rtos-config.h create mode 100644 APP_Framework/lib/lorawan/lora_radio_driver/lora-radio/include/lora-radio.h create mode 100644 APP_Framework/lib/lorawan/lora_radio_driver/lora-radio/sx126x/Makefile create mode 100644 APP_Framework/lib/lorawan/lora_radio_driver/lora-radio/sx126x/lora-radio-sx126x.c create mode 100644 APP_Framework/lib/lorawan/lora_radio_driver/lora-radio/sx126x/lora-spi-sx126x.c create mode 100644 APP_Framework/lib/lorawan/lora_radio_driver/lora-radio/sx126x/lora-spi-sx126x.h create mode 100644 APP_Framework/lib/lorawan/lora_radio_driver/lora-radio/sx126x/sx126x.c create mode 100644 APP_Framework/lib/lorawan/lora_radio_driver/lora-radio/sx126x/sx126x.h create mode 100644 APP_Framework/lib/lorawan/lora_radio_driver/lora-radio/sx127x/Makefile create mode 100644 APP_Framework/lib/lorawan/lora_radio_driver/lora-radio/sx127x/lora-radio-sx127x.c create mode 100644 APP_Framework/lib/lorawan/lora_radio_driver/lora-radio/sx127x/lora-spi-sx127x.c create mode 100644 APP_Framework/lib/lorawan/lora_radio_driver/lora-radio/sx127x/lora-spi-sx127x.h create mode 100644 APP_Framework/lib/lorawan/lora_radio_driver/lora-radio/sx127x/sx127x.c create mode 100644 APP_Framework/lib/lorawan/lora_radio_driver/lora-radio/sx127x/sx127x.h create mode 100644 APP_Framework/lib/lorawan/lora_radio_driver/lora-radio/sx127x/sx127xRegs-Fsk.h create mode 100644 APP_Framework/lib/lorawan/lora_radio_driver/lora-radio/sx127x/sx127xRegs-LoRa.h create mode 100644 APP_Framework/lib/lorawan/lora_radio_driver/ports/Makefile create mode 100644 APP_Framework/lib/lorawan/lora_radio_driver/ports/SConscript create mode 100644 APP_Framework/lib/lorawan/lora_radio_driver/ports/lora-module/Makefile create mode 100644 APP_Framework/lib/lorawan/lora_radio_driver/ports/lora-module/hc32_adapter/Kconfig create mode 100644 APP_Framework/lib/lorawan/lora_radio_driver/ports/lora-module/hc32_adapter/Makefile create mode 100644 APP_Framework/lib/lorawan/lora_radio_driver/ports/lora-module/hc32_adapter/SX1268_E22-400M30S/Kconfig create mode 100644 APP_Framework/lib/lorawan/lora_radio_driver/ports/lora-module/hc32_adapter/SX1268_E22-400M30S/Makefile create mode 100644 APP_Framework/lib/lorawan/lora_radio_driver/ports/lora-module/hc32_adapter/SX1268_E22-400M30S/sx1268-board.c create mode 100644 APP_Framework/lib/lorawan/lora_radio_driver/ports/lora-module/hc32_adapter/SX1278_Ra-01/Kconfig create mode 100644 APP_Framework/lib/lorawan/lora_radio_driver/ports/lora-module/hc32_adapter/SX1278_Ra-01/Makefile create mode 100644 APP_Framework/lib/lorawan/lora_radio_driver/ports/lora-module/hc32_adapter/SX1278_Ra-01/sx1278-board.c create mode 100644 APP_Framework/lib/lorawan/lora_radio_driver/ports/lora-module/hc32_adapter/lora-spi-board.c create mode 100644 APP_Framework/lib/lorawan/lora_radio_driver/ports/lora-module/inc/sx126x-board.h create mode 100644 APP_Framework/lib/lorawan/lora_radio_driver/ports/lora-module/inc/sx127x-board.h create mode 100644 APP_Framework/lib/lorawan/lora_radio_driver/ports/lora-module/stm32_adapter/SX1262_ASR6500S/sx126x-board.c create mode 100644 APP_Framework/lib/lorawan/lora_radio_driver/ports/lora-module/stm32_adapter/SX1262_LSD4RF-2R822N30/sx1262-board.c create mode 100644 APP_Framework/lib/lorawan/lora_radio_driver/ports/lora-module/stm32_adapter/SX1268_LSD4RF-2R717N40/sx1268-board.c create mode 100644 APP_Framework/lib/lorawan/lora_radio_driver/ports/lora-module/stm32_adapter/SX1278_LSD4RF-2F717N30/sx1278-board.c create mode 100644 APP_Framework/lib/lorawan/lora_radio_driver/ports/lora-module/stm32_adapter/SX1278_Ra-01/sx1278-board.c create mode 100644 APP_Framework/lib/lorawan/lora_radio_driver/ports/lora-module/stm32_adapter/lora-spi-board.c create mode 100644 APP_Framework/lib/lorawan/lora_radio_driver/samples/Makefile create mode 100644 APP_Framework/lib/lorawan/lora_radio_driver/samples/SConscript create mode 100644 APP_Framework/lib/lorawan/lora_radio_driver/samples/lora-radio-tester/Makefile create mode 100644 APP_Framework/lib/lorawan/lora_radio_driver/samples/lora-radio-tester/lora-radio-tester.c create mode 100644 APP_Framework/lib/lorawan/lora_radio_driver/samples/lora-radio-tester/lora-radio-tester.h create mode 100644 Ubiquitous/XiZi_IIoT/board/xishutong-arm32/third_party_driver/spi/connect_lora_spi.c create mode 100644 Ubiquitous/XiZi_IIoT/board/xishutong-arm32/third_party_driver/spi/third_party_spi_lora/Makefile create mode 100644 Ubiquitous/XiZi_IIoT/board/xishutong-arm32/third_party_driver/spi/third_party_spi_lora/sx12xx/Makefile create mode 100644 Ubiquitous/XiZi_IIoT/board/xishutong-arm32/third_party_driver/spi/third_party_spi_lora/sx12xx/inc/spi_lora_sx12xx.h create mode 100644 Ubiquitous/XiZi_IIoT/board/xishutong-arm32/third_party_driver/spi/third_party_spi_lora/sx12xx/src/Makefile create mode 100644 Ubiquitous/XiZi_IIoT/board/xishutong-arm32/third_party_driver/spi/third_party_spi_lora/sx12xx/src/radio/Makefile create mode 100644 Ubiquitous/XiZi_IIoT/board/xishutong-arm32/third_party_driver/spi/third_party_spi_lora/sx12xx/src/radio/platform.h create mode 100644 Ubiquitous/XiZi_IIoT/board/xishutong-arm32/third_party_driver/spi/third_party_spi_lora/sx12xx/src/radio/radio.c create mode 100644 Ubiquitous/XiZi_IIoT/board/xishutong-arm32/third_party_driver/spi/third_party_spi_lora/sx12xx/src/radio/radio.h create mode 100644 Ubiquitous/XiZi_IIoT/board/xishutong-arm32/third_party_driver/spi/third_party_spi_lora/sx12xx/src/radio/sx1276-Fsk.c create mode 100644 Ubiquitous/XiZi_IIoT/board/xishutong-arm32/third_party_driver/spi/third_party_spi_lora/sx12xx/src/radio/sx1276-Fsk.h create mode 100644 Ubiquitous/XiZi_IIoT/board/xishutong-arm32/third_party_driver/spi/third_party_spi_lora/sx12xx/src/radio/sx1276-FskMisc.c create mode 100644 Ubiquitous/XiZi_IIoT/board/xishutong-arm32/third_party_driver/spi/third_party_spi_lora/sx12xx/src/radio/sx1276-FskMisc.h create mode 100644 Ubiquitous/XiZi_IIoT/board/xishutong-arm32/third_party_driver/spi/third_party_spi_lora/sx12xx/src/radio/sx1276-Hal.h create mode 100644 Ubiquitous/XiZi_IIoT/board/xishutong-arm32/third_party_driver/spi/third_party_spi_lora/sx12xx/src/radio/sx1276-LoRa.c create mode 100644 Ubiquitous/XiZi_IIoT/board/xishutong-arm32/third_party_driver/spi/third_party_spi_lora/sx12xx/src/radio/sx1276-LoRa.h create mode 100644 Ubiquitous/XiZi_IIoT/board/xishutong-arm32/third_party_driver/spi/third_party_spi_lora/sx12xx/src/radio/sx1276-LoRaMisc.c create mode 100644 Ubiquitous/XiZi_IIoT/board/xishutong-arm32/third_party_driver/spi/third_party_spi_lora/sx12xx/src/radio/sx1276-LoRaMisc.h create mode 100644 Ubiquitous/XiZi_IIoT/board/xishutong-arm32/third_party_driver/spi/third_party_spi_lora/sx12xx/src/radio/sx1276.c create mode 100644 Ubiquitous/XiZi_IIoT/board/xishutong-arm32/third_party_driver/spi/third_party_spi_lora/sx12xx/src/radio/sx1276.h diff --git a/.gitmodules b/.gitmodules index 9404ff594..f91fbc6df 100644 --- a/.gitmodules +++ b/.gitmodules @@ -22,9 +22,6 @@ [submodule "Ubiquitous/RT-Thread_Fusion_XiUOS/aiit_board/xidatong-riscv64/kendryte-sdk/kendryte-sdk-source"] path = Ubiquitous/RT-Thread_Fusion_XiUOS/aiit_board/xidatong-riscv64/kendryte-sdk/kendryte-sdk-source url = https://www.gitlink.org.cn/chunyexixiaoyu/kendryte-sdk-source.git -[submodule "APP_Framework/lib/lorawan/lora_radio_driver"] - path = APP_Framework/lib/lorawan/lora_radio_driver - url = https://gitlink.org.cn/xuos/lora_radio_driver [submodule "APP_Framework/lib/lorawan/lorawan_devicenode"] path = APP_Framework/lib/lorawan/lorawan_devicenode url = https://gitlink.org.cn/xuos/lorawan_devicenode.git diff --git a/APP_Framework/Applications/mongoose/Kconfig b/APP_Framework/Applications/mongoose/Kconfig index bb17a9631..858473e4a 100644 --- a/APP_Framework/Applications/mongoose/Kconfig +++ b/APP_Framework/Applications/mongoose/Kconfig @@ -4,3 +4,8 @@ menuconfig USE_MONGOOSE select BSP_USING_SDIO select BSP_USING_W5500 select BSP_USING_ETHERNET + select SUPPORT_CONNECTION_FRAMEWORK + select CONNECTION_ADAPTER_4G + select ADAPTER_EC200A + select LIB_USING_LORAWAN + select LIB_USING_LORA_RADIO diff --git a/APP_Framework/Applications/mongoose/webserver_project.c b/APP_Framework/Applications/mongoose/webserver_project.c index 9827d7553..6c3134e3d 100644 --- a/APP_Framework/Applications/mongoose/webserver_project.c +++ b/APP_Framework/Applications/mongoose/webserver_project.c @@ -34,6 +34,7 @@ Modification: #include #include #include "lwip/sys.h" +#include /******************************************************************************* * Local variable definitions ('static') @@ -50,6 +51,26 @@ static struct netdev* p_netdev_webserver; static struct netdev* p_netdev_ethernet; static pthread_t tid; +#define WB_EVENT_TASK_STACK_SIZE 4096 +#define WB_EVENT_TASK_PRIO 20 + +#define WB_4G_CONNECT 0x0001 +#define WB_4G_DISCONNECT 0x0002 +#define WB_MQTT_CONNECT 0x0004 +#define WB_MQTT_DISCONNECT 0x0008 +#define WB_LORA_CONNECT 0x0010 +#define WB_LORA_DISCONNECT 0x0020 +#define WB_ETHERNET_CONNECT 0x0040 +#define WB_ETHERNET_DISCONNECT 0x0080 +#define WB_EVENT_ALL (WB_4G_CONNECT | WB_4G_DISCONNECT | \ + WB_MQTT_CONNECT | WB_MQTT_DISCONNECT | \ + WB_LORA_CONNECT | WB_LORA_DISCONNECT | \ + WB_ETHERNET_CONNECT | WB_ETHERNET_DISCONNECT) + +static int wb_event; +static unsigned int status = 0; +static pthread_t wb_event_task; + /*define device info*/ static const char* device_name = "矽数通4G"; static const char* device_type = "xishutong-arm32"; @@ -76,10 +97,11 @@ static struct net_4g_info { char map_ip[20]; char connect_ip[20]; char operator[20]; - int signal_strength; + char signal_strength[20]; char connect_port[20]; } net_4g_info; -int close_4g_function = 0; + +struct Adapter* adapter; static struct net_4g_mqtt_info { char topic[20]; @@ -88,10 +110,17 @@ static struct net_4g_mqtt_info { int client_id; int connect_status; } net_4g_mqtt_info; -int close_mqtt_function = 0; /*define net LoRa info*/ +struct net_lora_info +{ + uint32_t frequency; // frequency + uint8_t sf; // spreadfactor + uint8_t bw; // bandwidth + uint32_t connect_status; //connect status + uint8_t lora_init_flag; //if 1 means already init +} net_lora_info; /*define net Ethernet info*/ static struct net_ethernet_info { @@ -106,17 +135,6 @@ static struct net_ethernet_info { int connect_status; } net_ethernet_info; -#define LWIP_TCP_CLIENT_TASK_STACK_SIZE 4096 -#define LWIP_TCP_CLIENT_TASK_PRIO 20 - -#define ETHERNET_CONNECT 0x01 -#define ETHERNET_DISCONNECT 0x02 -#define ETHERNET_ALL (ETHERNET_CONNECT | ETHERNET_DISCONNECT) - -static int ethernet_event; -static unsigned int status = 0; - -static pthread_t tcp_client_task; static int socket_fd = -1; static char tcp_ethernet_ipaddr[] = {192, 168, 130, 77}; @@ -210,6 +228,70 @@ static void Rs485Configure(int baud_rate, int data_bit, int stop_bit, int parity baud_rate, data_bit, stop_bit, parity); } +/******************************************************************************* + * Function implementation - define net 4G info + ******************************************************************************/ +static void Net4gGetInfo(char *ip, char *operator, char *signal_strength) +{ + //to do +} + +static void Net4gConnect(void) +{ + int ec200a_baud_rate = 115200; + const char *send_msg = "Adapter_4G Test"; + adapter->socket.socket_id = 0; + + AdapterDeviceOpen(adapter); + AdapterDeviceControl(adapter, OPE_INT, &ec200a_baud_rate); + AdapterDeviceConnect(adapter, CLIENT, net_4g_info.connect_ip, net_4g_info.connect_port, IPV4); +} + +static void Net4gDisconnect(void) +{ + uint8_t priv_net_group = IP_PROTOCOL; + AdapterDeviceDisconnect(adapter, &priv_net_group); +} + +/******************************************************************************* + * Function implementation - define net 4G MQTT info + ******************************************************************************/ +static void NetMqttConnect(void) +{ + //to do +} + +static void NetMqttDisconnect(void) +{ + //to do +} + +/******************************************************************************* + * Function implementation - define net LoRa info + ******************************************************************************/ +static void NetLoraConnect(void) +{ + char* init_params[2] = {"TestLoraRadio", "probe"}; + char* tx_params[4] = {"TestLoraRadio", "tx", "1", "2000"}; + extern int TestLoraRadio(int argc, char *argv[]); + + if (0 == net_lora_info.lora_init_flag) { + TestLoraRadio(2, init_params); + net_lora_info.lora_init_flag = 1; + } + + TestLoraRadio(4, tx_params); + net_lora_info.connect_status = 1; +} + +static void NetLoraDisconnect(void) +{ + char* disconnect_params[2] = {"TestLoraRadio", "txdone"}; + extern int TestLoraRadio(int argc, char *argv[]); + TestLoraRadio(2, disconnect_params); + net_lora_info.connect_status = 0; +} + /******************************************************************************* * Function implementation - define net Ethernet info ******************************************************************************/ @@ -271,6 +353,7 @@ static void TcpClientConnect(void) } printf("TCP connect %s:%d success, start to send.\n", net_ethernet_info.targetIp, tcp_socket_port); + net_ethernet_info.connect_status = 1; while (cnt --) { printf("Lwip client is running.\n"); @@ -287,37 +370,7 @@ static void TcpClientDisconnect(void) { printf("TCP disconnect\n"); closesocket(socket_fd); -} - -static void *TcpSocketClientTask(void *arg) -{ - ethernet_event = PrivEventCreate(LINKLIST_FLAG_FIFO); - while(1) { - if (0 == PrivEventProcess(ethernet_event, ETHERNET_ALL, EVENT_OR | EVENT_AUTOCLEAN, 0, &status)) { - switch( status ) { - case ETHERNET_CONNECT: - TcpClientConnect(); - break; - case ETHERNET_DISCONNECT: - TcpClientDisconnect(); - break; - } - } - } -} - -static void TcpClientSocket(void) -{ - char task_name[] = "tcp_client_task"; - pthread_args_t args; - args.pthread_name = task_name; - - pthread_attr_t attr; - attr.schedparam.sched_priority = LWIP_TCP_CLIENT_TASK_PRIO; - attr.stacksize = LWIP_TCP_CLIENT_TASK_STACK_SIZE; - - PrivTaskCreate(&tcp_client_task, &attr, &TcpSocketClientTask, (void *)&args); - PrivTaskStartup(&tcp_client_task); + net_ethernet_info.connect_status = 0; } /******************************************************************************* @@ -341,6 +394,58 @@ static void PlcInfoWriteToSd(const char *json) } } +/******************************************************************************* + * Function implementation - WebserverEventTask + ******************************************************************************/ +static void *WebserverEventTask(void *arg) +{ + wb_event = PrivEventCreate(LINKLIST_FLAG_FIFO); + while(1) { + if (0 == PrivEventProcess(wb_event, WB_EVENT_ALL, EVENT_OR | EVENT_AUTOCLEAN, 0, &status)) { + switch( status ) { + case WB_4G_CONNECT: + Net4gConnect(); + break; + case WB_4G_DISCONNECT: + Net4gDisconnect(); + break; + case WB_MQTT_CONNECT: + NetMqttConnect(); + break; + case WB_MQTT_DISCONNECT: + NetMqttDisconnect(); + break; + case WB_LORA_CONNECT: + NetLoraConnect(); + break; + case WB_LORA_DISCONNECT: + NetLoraDisconnect(); + break; + case WB_ETHERNET_CONNECT: + TcpClientConnect(); + break; + case WB_ETHERNET_DISCONNECT: + TcpClientDisconnect(); + break; + } + } + } +} + +static void WbEventInit(void) +{ + char task_name[] = "wb_event_task"; + pthread_args_t args; + args.pthread_name = task_name; + + pthread_attr_t attr; + attr.schedparam.sched_priority = WB_EVENT_TASK_PRIO; + attr.stacksize = WB_EVENT_TASK_STACK_SIZE; + + PrivTaskCreate(&wb_event_task, &attr, &WebserverEventTask, (void *)&args); + PrivTaskStartup(&wb_event_task); +} + /******************************************************************************* * Function implementation - webserver ******************************************************************************/ @@ -418,21 +523,26 @@ static void fn(struct mg_connection* c, int ev, void* ev_data, void* fn_data) } /*define net 4G info*/ else if (mg_http_match_uri(hm, "/net/get4gInfo")) { + + Net4gGetInfo(net_4g_info.map_ip, net_4g_info.operator, net_4g_info.signal_strength); + mg_http_reply(c, 200, "Content-Type: application/json\r\n", "{%m:%m, %m:%m, %m:%d}\n", MG_ESC("mapIp"), MG_ESC(net_4g_info.map_ip), MG_ESC("operator"), MG_ESC(net_4g_info.operator), - MG_ESC("signalIntensity"), net_4g_info.signal_strength); + MG_ESC("signalIntensity"), MG_ESC(net_4g_info.signal_strength)); } else if (mg_http_match_uri(hm, "/net/set4gInfo")) { struct mg_str json = hm->body; update_config_array(json, "$.publicIp", net_4g_info.connect_ip); update_config_array(json, "$.publicPort", net_4g_info.connect_port); - close_4g_function = mg_json_get_long(json, "$.close4G", 0); + mg_http_reply(c, 200, "Content-Type: application/json\r\n", "{\"status\":\"success\"}\r\n"); } else if (mg_http_match_uri(hm, "/net/connect4G")) { - close_4g_function = 0;//enable 4G connect function + //enable 4G connect function + PrivEvenTrigger(wb_event, WB_4G_CONNECT); } else if (mg_http_match_uri(hm, "/net/disconnect4G")) { - close_4g_function = 1;//disable 4G connect function + //disable 4G connect function + PrivEvenTrigger(wb_event, WB_4G_CONNECT); } else if (mg_http_match_uri(hm, "/net/getMQTTInfo")) { mg_http_reply(c, 200, "Content-Type: application/json\r\n", "{%m:%m, %m:%m, %m:%m, %m:%d, %m:%d}\n", @@ -449,12 +559,39 @@ static void fn(struct mg_connection* c, int ev, void* ev_data, void* fn_data) net_4g_mqtt_info.client_id = mg_json_get_long(json, "$.client_id", 0); mg_http_reply(c, 200, "Content-Type: application/json\r\n", "{\"status\":\"success\"}\r\n"); } else if (mg_http_match_uri(hm, "/net/connectMQTT")) { - close_mqtt_function = 0;//enable 4G MQTT connect function + //enable 4G MQTT connect function + PrivEvenTrigger(wb_event, WB_MQTT_CONNECT); } else if (mg_http_match_uri(hm, "/net/disconnectMQTT")) { - close_mqtt_function = 1;//disable 4G MQTT connect function + //disable 4G MQTT connect function + PrivEvenTrigger(wb_event, WB_MQTT_DISCONNECT); } /*define net LoRa info*/ - + else if (mg_http_match_uri(hm, "/net/getLoraInfo")) { + mg_http_reply(c, 200, "Content-Type: application/json\r\n", + "{%m:%d, %m:%d, %m:%d, %m:%d}\n", + MG_ESC("range"), net_lora_info.frequency, + MG_ESC("bandwidth"), net_lora_info.bw, + MG_ESC("factor"), net_lora_info.sf, + MG_ESC("status"), net_lora_info.connect_status); + } + else if (mg_http_match_uri(hm, "/net/setLoraInfo")) { + struct mg_str json = hm->body; + printf("json: %s\n", json.ptr); + net_lora_info.frequency = mg_json_get_long(json, "$.range", 0); + net_lora_info.sf = mg_json_get_long(json, "$.factor", 0); + net_lora_info.bw = mg_json_get_long(json, "$.bandwidth", 0); + + mg_http_reply(c, 200, "Content-Type: application/json\r\n", "{\"status\":\"success\"}\r\n"); + + extern void LoraRadioParamsUpdate(uint32_t frequency, uint8_t sf, uint8_t bw); + LoraRadioParamsUpdate(net_lora_info.frequency, net_lora_info.sf, net_lora_info.bw); + } else if (mg_http_match_uri(hm, "/net/ConnectLora")) { + //enable LoRa connect function + PrivEvenTrigger(wb_event, WB_LORA_CONNECT); + } else if (mg_http_match_uri(hm, "/net/DisonnectLora")) { + //disable LoRa connect function + PrivEvenTrigger(wb_event, WB_LORA_DISCONNECT); + } /*define net Ethernet info*/ else if (mg_http_match_uri(hm, "/net/getEthernetInfo")) { mg_http_reply(c, 200, "Content-Type: application/json\r\n", @@ -467,7 +604,7 @@ static void fn(struct mg_connection* c, int ev, void* ev_data, void* fn_data) MG_ESC("targetPort"), MG_ESC(net_ethernet_info.targetPort), MG_ESC("targetGateway"), MG_ESC(net_ethernet_info.targetGateway), MG_ESC("targetDNS"), MG_ESC(net_ethernet_info.targetDNS), - MG_ESC("ethernetStatus"), net_4g_mqtt_info.connect_status); + MG_ESC("ethernetStatus"), net_ethernet_info.connect_status); } else if (mg_http_match_uri(hm, "/net/setEthernetInfo")) { struct mg_str json = hm->body; printf("json: %s\n", json.ptr); @@ -496,10 +633,10 @@ static void fn(struct mg_connection* c, int ev, void* ev_data, void* fn_data) } } else if (mg_http_match_uri(hm, "/net/connectEthernet")) { //enable Ethernet connect function - PrivEvenTrigger(ethernet_event, ETHERNET_CONNECT); + PrivEvenTrigger(wb_event, WB_ETHERNET_CONNECT); } else if (mg_http_match_uri(hm, "/net/disconnectEthernet")) { //disable Ethernet connect function - PrivEvenTrigger(ethernet_event, ETHERNET_DISCONNECT); + PrivEvenTrigger(wb_event, WB_ETHERNET_DISCONNECT); } /*define plc info*/ else if (mg_http_match_uri(hm, "/control/setPLCInfo")) { @@ -539,7 +676,9 @@ static void* do_webserver(void* args) Rs485InitConfigure(); #endif - TcpClientSocket(); + adapter = AdapterDeviceFindByName(ADAPTER_4G_NAME); + net_lora_info.lora_init_flag = 0; + WbEventInit(); struct mg_mgr mgr; // Event manager // mg_log_set(MG_LL_INFO); // Set to 3 to enable debug diff --git a/APP_Framework/Framework/connection/4g/Kconfig b/APP_Framework/Framework/connection/4g/Kconfig index 17e05a974..29d552a1c 100644 --- a/APP_Framework/Framework/connection/4g/Kconfig +++ b/APP_Framework/Framework/connection/4g/Kconfig @@ -1,8 +1,16 @@ config ADAPTER_EC200T bool "Using 4G adapter device EC200T" - default y + default n if ADAPTER_EC200T source "$APP_DIR/Framework/connection/4g/ec200t/Kconfig" endif + +config ADAPTER_EC200A + bool "Using 4G adapter device EC200A" + default n + +if ADAPTER_EC200A + source "$APP_DIR/Framework/connection/4g/ec200a/Kconfig" +endif diff --git a/APP_Framework/Framework/connection/4g/ec200a/Kconfig b/APP_Framework/Framework/connection/4g/ec200a/Kconfig new file mode 100644 index 000000000..6be92e4de --- /dev/null +++ b/APP_Framework/Framework/connection/4g/ec200a/Kconfig @@ -0,0 +1,10 @@ +config ADAPTER_4G_EC200A + string "EC200A adapter name" + default "ec200a" + +if ADD_XIZI_FEATURES + config ADAPTER_EC200A_DRIVER + string "EC200A device uart driver path" + default "/dev/usart6_dev6" +endif + diff --git a/APP_Framework/Framework/connection/4g/ec200a/Makefile b/APP_Framework/Framework/connection/4g/ec200a/Makefile new file mode 100644 index 000000000..230718d52 --- /dev/null +++ b/APP_Framework/Framework/connection/4g/ec200a/Makefile @@ -0,0 +1,3 @@ +SRC_FILES := ec200a.c + +include $(KERNEL_ROOT)/compiler.mk diff --git a/APP_Framework/Framework/connection/4g/ec200a/ec200a.c b/APP_Framework/Framework/connection/4g/ec200a/ec200a.c new file mode 100644 index 000000000..ac5f1a381 --- /dev/null +++ b/APP_Framework/Framework/connection/4g/ec200a/ec200a.c @@ -0,0 +1,24 @@ +/* +* Copyright (c) 2020 AIIT XUOS Lab +* XiUOS is licensed under Mulan PSL v2. +* You can use this software according to the terms and conditions of the Mulan PSL v2. +* You may obtain a copy of Mulan PSL v2 at: +* http://license.coscl.org.cn/MulanPSL2 +* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, +* EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, +* MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE. +* See the Mulan PSL v2 for more details. +*/ + +/** + * @file ec200a.c + * @brief Implement the connection 4G adapter function, using EC200A device + * @version 3.0 + * @author AIIT XUOS Lab + * @date 2023.12.22 + */ + +#include +#include + + diff --git a/APP_Framework/lib/lorawan/Kconfig b/APP_Framework/lib/lorawan/Kconfig index be88cbf5d..1fc55954d 100644 --- a/APP_Framework/lib/lorawan/Kconfig +++ b/APP_Framework/lib/lorawan/Kconfig @@ -36,7 +36,7 @@ menuconfig LIB_USING_LORAWAN select BSP_USING_SPI if LIB_USING_LORA_RADIO - + source "$APP_DIR/lib/lorawan/lora_radio_driver/Kconfig" endif endif diff --git a/APP_Framework/lib/lorawan/lora_radio_driver b/APP_Framework/lib/lorawan/lora_radio_driver deleted file mode 160000 index 2d8abd3ef..000000000 --- a/APP_Framework/lib/lorawan/lora_radio_driver +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 2d8abd3eff2a2d5257e17c7f59acb2ba938cb90e diff --git a/APP_Framework/lib/lorawan/lora_radio_driver/Kconfig b/APP_Framework/lib/lorawan/lora_radio_driver/Kconfig new file mode 100644 index 000000000..fdee6831e --- /dev/null +++ b/APP_Framework/lib/lorawan/lora_radio_driver/Kconfig @@ -0,0 +1,18 @@ +choice + prompt "choose rtos for lora radio driver" + default LORA_RADIO_DRIVER_USING_RTOS_XIUOS + + config LORA_RADIO_DRIVER_USING_RTOS_RT_THREAD + bool "rtos select RT-Thread" + + config LORA_RADIO_DRIVER_USING_RTOS_XIUOS + bool "rtos select XiUOS" +endchoice + +config LORA_RADIO_DRIVER_USING_LORA_RADIO_DEBUG + bool "lora radio driver debug printf" + default y + +if LORA_RADIO_DRIVER_USING_RTOS_XIUOS + source "$APP_DIR/lib/lorawan/lora_radio_driver/ports/lora-module/hc32_adapter/Kconfig" +endif diff --git a/APP_Framework/lib/lorawan/lora_radio_driver/Makefile b/APP_Framework/lib/lorawan/lora_radio_driver/Makefile new file mode 100644 index 000000000..6c98fbf34 --- /dev/null +++ b/APP_Framework/lib/lorawan/lora_radio_driver/Makefile @@ -0,0 +1,3 @@ +SRC_DIR := lora-radio ports samples + +include $(KERNEL_ROOT)/compiler.mk diff --git a/APP_Framework/lib/lorawan/lora_radio_driver/README.md b/APP_Framework/lib/lorawan/lora_radio_driver/README.md new file mode 100644 index 000000000..c635b7967 --- /dev/null +++ b/APP_Framework/lib/lorawan/lora_radio_driver/README.md @@ -0,0 +1,5 @@ +# LoRa-Radio-Driver软件包 简介 + LoRa-Radio-Driver软件包是基于RTOS( RT-Thread、XiUOS ) 实现的LoRa Tranceiver芯片的驱动文件包,可用于快速搭建基于LoRa等通信的应用产品。 + +更多详细信息请查看[LoRa-Radio-Driver/doc](https://github.com/Forest-Rain/lora-radio-driver/tree/master/doc) + diff --git a/APP_Framework/lib/lorawan/lora_radio_driver/SConscript b/APP_Framework/lib/lorawan/lora_radio_driver/SConscript new file mode 100644 index 000000000..ca95be14e --- /dev/null +++ b/APP_Framework/lib/lorawan/lora_radio_driver/SConscript @@ -0,0 +1,12 @@ +import os +from building import * + +objs = [] +cwd = GetCurrentDir() +list = os.listdir(cwd) + +for item in list: + if os.path.isfile(os.path.join(cwd, item, 'SConscript')): + objs = objs + SConscript(os.path.join(item, 'SConscript')) + +Return('objs') diff --git a/APP_Framework/lib/lorawan/lora_radio_driver/doc/README.md b/APP_Framework/lib/lorawan/lora_radio_driver/doc/README.md new file mode 100644 index 000000000..bb77888bb --- /dev/null +++ b/APP_Framework/lib/lorawan/lora_radio_driver/doc/README.md @@ -0,0 +1,381 @@ +# LoRa-Radio-Driver软件包使用说明 + +# 1 简介 +LoRa-Radio-Driver软件包是基于RTOS( RT-Thread ) 实现的LoRa Tranceiver芯片(SX126x、SX127x等)的驱动文件,该驱动文件通过SPI访问LoRa Tranceiver芯片,可用于快速搭建基于LoRa等通信的应用产品。 +LoRa-Radio-Driver软件包在LoRaWAN开源协议栈[LoRaMAC-Node中的radio](https://github.com/Forest-Rain/lora-radio-driver/blob/master/doc)基础上,进一步封装实现。 + +> LoRaMac\Radio +> [https://github.com/Lora-net/LoRaMac-node/tree/master/src/radio](https://github.com/Lora-net/LoRaMac-node/tree/master/src/radio) + + +- 主要特点: + - 当前支持LoRa Transceiver(sx126x\sx127x ) + - 支持调制方式 + - [x] LoRa + - [ ] FSK + - 可通过EVN工具menuconfig直接定义LoRa模块的对外接口,降低入门门槛 + - 支持使用引脚号来定义GPIO + - 支持使用引脚名来定义GPIO + - 提供常用实例代码,可用于射频性能测试、空口数据包监听、双向通信测试等 + - 可作为phy层对接到LoRaWAN End-Device协议栈 + - 当前测试的LoRa 模块\芯片 + - LoRa Transceiver (SPI) + - SX126X (SX1262\ASR6500S\LLCC68\SX1268..) + - SX1268 + - [x] [LSD4RF-2R717N40](http://bbs.lierda.com/forum.php?mod=viewthread&tid=87) + - SX1262 + - [x] ASR6500S + - LLCC68 + - LR1110 + - SX127X (SX1272\SX1276\SX1278..) + - SX1278 + - [x] [LSD4RF-2F717N20](http://bbs.lierda.com/forum.php?mod=viewthread&tid=87) + - [x] [Ra-01](http://wiki.ai-thinker.com/lora/man) + - [ ] SX1276 + - LoRa SIP\SoC + - 当前测试的MCU平台 + - LoRa Radio Driver当前功能主要在STM32L平台测试通过,未来计划将适配更多的MCU平台(华大MCU、nRF、BK) + - [x] STM32L0系列 + - [x] STM32L4系列 + - 当前支持的RTOS + - [x] RT-Thread + - [ ] RT-Thread Nano + +# 2 LoRa Radio Driver 软件包组织结构 +![image.png](https://cdn.nlark.com/yuque/0/2020/png/253586/1598742766628-ea39cbc7-119b-4a3f-a323-45ba4cee9bbd.png#align=left&display=inline&height=677&margin=%5Bobject%20Object%5D&name=image.png&originHeight=677&originWidth=1111&size=80753&status=done&style=none&width=1111) + +- lora-radio + - sx126x + - lora-radio-sx126x.c + - 对外提供了上层访问接口实现 + - lora-spi-sx126x.c + - sx126x芯片的spi读写接口实现,独立于MCU平台 + - [x] rt_device + - [ ] SPI裸机方式 + - sx126x.c + - lora芯片sx126x底层驱动 + - sx127x + - lora-radio-sx127x.c + - 对外提供了上层访问接口 + - lora-spi-sx127x.c + - sx127x芯片的spi读写接口实现,独立于MCU平台 + - [x] rt_device + - [ ] SPI裸机方式 + - sx127x.c + - lora芯片sx127x底层驱动 + - common + - lora-radio-timer.c + - 提供了lora-radio所需的定时服务接口,用于发送与接收超时等,基于RT-Thread内核rt_timer实现 + - 注意这种方式提供的定时最小颗粒度取决于系统tick RT_TICK_PER_SECOND + - 注:如果使能了Multi-Rtimer软件包,则优先使用Multi-Rtimer提供定时\超时服务 + - include + - lora-radio.h + - 上层服务接口 + - lora-radio-debug.h + - 根据需要使能输出lora-radio不同层级的调试信息 + - lora-radio-rtos-config.h + - rtos适配层,选择,当前默认为RT-Thread + - 未来支持RT-Thread-Nano、以及其他RTOS.... +- samples + - lora radio driver示例文件 + - lora-radio-test-shell + - shell示例,主要实现了射频性能测试、空口数据包监听、双向通信测试等shell命令,便于日常测试 +- port + - 主要包含当前在不同MCU平台下支持的lora模块,lora-module文件夹中的xxxx-borad.c包含了与LoRa模块直接相关的主要硬件接口配置: + - lora-module + - stm32_adapter + - lora-board-spi.c + - STM32平台的SPI外设初始化等通用接口 + - LSD4RF-2F717N20 (SX1278 LoRa模块) + - LSD4RF-2R717N40 (SX1268 LoRa模块) + - Ra-01 (SX1278 LoRa模块) + - xxxx-borad.c + - LoRa模块功率输出方式(PA\RFO...) + - LoRa模块的RF高频开关控制方式(TXE、RXE、无..) + - LoRa模块的DIO口(DIO0、DIO1、DIO2....) + - LoRa模块的工作频率限制等 + - xxx_adapter + - 其他mcu平台下的硬件接口实现 +# 3 LoRa Radio Driver软件包使用说明 +## 3.1 依赖 + +- SPI外设——用户需根据实际MCU平台,自定义LoRa模块实际所需要使用的SPI外设 + - 选择SPI外设 +``` + Hardware Drivers Config ---> + On-chip Peripheral Drivers ---> + [*] Enable SPI ---> + --- Enable SPI + [ ] Enable SPI1 + [ ] Enable SPI2 + [ ] Enable SPI3 + [ ] Enable SPI4 + [ ] Enable SPI5 +``` + - 在bsp\目标板XX\board\Kconfig增加如下定义 +```c + menuconfig BSP_USING_SPI + bool "Enable SPI" + select RT_USING_SPI + + if BSP_USING_SPI + config BSP_USING_SPI1 + bool "Enable SPI1" + default n + if BSP_USING_SPI1 + config BSP_SPI1_RX_USING_DMA + bool "Enable SPI1 RX DMA" + default n + config BSP_SPI1_TX_USING_DMA + bool "Enable SPI1 TX DMA" + default n + endif + + # 根据实际需要,增加其他BSP_USING_SPI2、BSP_USING_SPI3... + endif +``` + +- 定时服务——用于提供射频通信所需的定时\超时服务,目前支持以下两种方式,二选一 + - 内核 SOFT_TIMER + - 若未选用Multi-Rtimer软件包,则默认采用内核的rt_timer来提供定时服务(lora-radio-timer.c) + - 注意检测是否**开启RT-Thread内核的SOFT_TIMER** + - M[ulti-Rtimer](https://github.com/Forest-Rain/multi-rtimer)软件包 + - 若使能multi-rtimer,lora-radio-driver优先使用multi-rtimer提供定时\超时服务。 +> 注:如果应用在工业温度范围、时间精度要求高(us\ms级别)的场景,建议使用multi-rtimer,并设置RTC时钟源为外部32768晶振,否则可能会出现下行丢包的情况。 + +``` +RT-Thread online packages ---> + peripheral libraries and drivers ---> + [*] multi_rtimer: a real-time and low power software timer module. ---> + Version (latest) ---> + multi_rtimer options ---> + [] multi_rtimer demo example +``` + +- 可选内核组件 + - ulog组件——用于打印日志信息 + - 使能ulog + - ulog缓存大小设置≥ 128 Byte + - lora-raido-driver内部可看到更多LoRa底层的调试信息 + - lora-radio-test-shell.c使用ulog接口,用于打印调试信息、原始16进制数据等 + - 如果没有使用ulog,默认使用rt_kprintf来实现信息输出功能 +``` +RT-Thread Components ---> + Utiliess ---> + [*] Enable ulog + [*] Enable ISR log. +``` + +## 3.2 获取软件包 +使用 lora-radio-driver 软件包,需要在 RT-Thread 的包管理中选中它,具体路径如下: +```c +RT-Thread online packages ---> + peripheral libraries and drivers ---> + [*] lora_radio_driver: lora chipset(sx126x\sx127x.)driver. ---> + Select LoRa Radio Object Type (LoRa Radio Single-Instance) + (lora-radio0)Setup LoRa Radio Device Name + (spi3) Setup LoRa Radio Spi Name (Define BSP_USING_SPIx in [Target Platform]\Board\Kconfig) + Select LoRa Chip Type (LoRa Transceiver [SX126X]) ---> + Select Supported LoRa Module [SX126X] ---> + [ ] Enable LoRa Radio Debug + Select LoRa Radio Driver Sample ---> + Version (latest) ---> +``` + +1. Select LoRa Chip \ LoRa Module + 1. "Setup LoRa Radio Device Name" + 1. 设置LoRa Radio设备名称,缺省为"lora-radio0" + 2. "Setup LoRa Radio Spi Name" + 1. 设置LoRa Radio Spi名称 + 1. 若在 [Target Platform]\Board\Kconfig提前设定好所使用的BSP_USING_SPIx,则会自动配置 + 3. "Select LoRa Radio Single-Instance" + 1. 选择为单实例对象,当前只支持单个lora设备 + 4. "Select LoRa Chip Type" + 1. 选择实际使用的LoRa芯片类型 + - 当前支持 SX126X、SX127x Transceiver + 5. "Select Supported LoRa Module" + 1. 选择lora模块,根据实际使用的MCU硬件平台与lora模块,配置关联的GPIO引脚等功能选项 + 1. 设定LoRa模块的GPIO口(比如 RESET、NSS、BUSY、DIO1、TXE、RXE...) + - " Select LoRa Chip GPIO by Pin Number  " + - 支持使用引脚号来定义GPIO,比如 输入 10 代表 A10 + - "Select LoRa Chip GPIO by Pin Name" + - 支持使用引脚名来定义GPIO,比如 输入 A10 代表引脚GPIOA的PIN10脚 (STM32) +2. Select LoRa Radio Driver Sample + 1. 根据实际情况,可选择测试示例 +## 3.3 新增LoRa模块 +在 lora-radio-driver\ports\lora-module文件下,参考已有模板,根据实际需要增加新的mcu平台适配文件、新的lora模块驱动文件xxxx-board.c + + +# 4 使用示例 + +## 4.1 硬件测试平台 +当前所使用的硬件测试平台如下所示 +| 序号 | 硬件平台 | MCU | LoRa模块 | 主要用户接口 | +| --- | --- | --- | --- | --- | +| 1 | LSD4RF-TEST2002 | STM32L476VG | [LSD4RF-2R717N40](http://bbs.lierda.com/forum.php?mod=viewthread&tid=87)
[ ( SX1268 )](http://bbs.lierda.com/forum.php?mod=viewthread&tid=87) |
- 用户接口定义
- VCC  - 3.3V
- GND
- SCK    - PC10 (SPI3)
- MISO  - PC11 (SPI3)
- MOSI  - PC12 (SPI3)
- NSS    - PA15
- RESET - PA7
- DIO0  - PB1
- BUSY - PB2
- RFSW1 - PB0
- RFSW2 - PC5
- 射频开关TX trace
- TX: RFSW1 = 1 , RFSW2 = 0
- TX: RFSW1 = 0 , RFSW2 = 1
| +| 2 | LSD4RF-TEST2002 | STM32L476VG | [LSD4RF-2F717N20](http://bbs.lierda.com/forum.php?mod=viewthread&tid=87)
[ ( SX1278 )](http://bbs.lierda.com/forum.php?mod=viewthread&tid=87) |
- 用户接口定义
- VCC   - 3.3V
- GND
- SCK    - PC10 (SPI3)
- MISO  - PC11 (SPI3)
- MOSI  - PC12 (SPI3)
- NSS    - PB6
- RESET - PA7
- DIO0  - PB1
- DIO1  - PC4
- DIO2  - PB2
- DIO3  - NC
- DIO4  - NC
- RFSW1 - PB0
- RFSW2 - PC5
- 射频开关TX trace
- TX: RFSW1 = 1 , RFSW2 = 0
- TX: RFSW1 = 0 , RFSW2 = 1
| +| 3 | Nucleo-L476RG | STM32L476RG | [Ra-01](http://wiki.ai-thinker.com/lora/man)
(RT-thread LoRa Adruino扩展板V1) |
- 用户接口定义
- VCC    - 3.3V
- GND
- SCK    - PA5(SPI1)
- MISO  - PA6(SPI1)
- MOSI  - PA7(SPI1)
- NSS    - PB6
- RESET - PC7
- DIO0  - PA9
- DIO1  - PA8
| + +## 4.2 Shell测试命令 +若使能 [* ] LoRa Radio Test Shell,则可以通过shell(finish)命令直接进行LoRa相关测试 +```c +[*] Enable LoRa Radio Test Shell │ │ + Select the RF frequency (Region CN470) ---> │ │ + Select RF Modem (Modem LoRa) ---> +``` +![image.png](https://cdn.nlark.com/yuque/0/2020/png/253586/1592550763879-ac947241-b072-4db8-89bf-ced6ab168af9.png#align=left&display=inline&height=163&margin=%5Bobject%20Object%5D&name=image.png&originHeight=163&originWidth=858&size=21400&status=done&style=none&width=858) + +| 序号 | finish命令 | 说明 | +| --- | --- | --- | +| 1 | lora probe | 测试lora设备(SPI)访问是否正常 | +| 2 | lora cw | 输出CW,可用于测试发射功率、频点等
\:频点,单位Hz
\:功率,单位dBm | +| 3 | lora ping | 单向\双向通信测试
\ : 主机\从机
-m 主机
-s 从机
\: 发送数据包个数 | +| 4 | lora rx  | 接收(监听)数据包,同时以16进制格式与ASCII码显示数据内容 | +| 5 | lora config  | 配置射频参数
\:radio参数,字符表示
freq 表示频率,单位Hz
power 表示发射功率,单位dbm
sf 表示扩频因子,有效值: 7~12
bw表示带宽,有效值: 0 (125kHz)、1 (250KHz)、2 (500KHz)
public表示同步字,有效值: 0 (sync = 0x12), 1 (sync = 0x34)
iq 表示iq反转,有效值: 0 (iq不反转),1 (iq反转)
\:radio参数的具体值 | + +![image.png](https://cdn.nlark.com/yuque/0/2020/png/253586/1598743470109-a54f4753-4ffd-4c7a-a3bf-30d13b8e15e1.png#align=left&display=inline&height=905&margin=%5Bobject%20Object%5D&name=image.png&originHeight=905&originWidth=1848&size=267690&status=done&style=none&width=1848) +lora ping 双向通信测试示例(SX1278 <-> SX1268) +![image.png](https://cdn.nlark.com/yuque/0/2020/png/253586/1598743657349-9a16556a-35da-4134-8d37-8924ac841578.png#align=left&display=inline&height=871&margin=%5Bobject%20Object%5D&name=image.png&originHeight=871&originWidth=1854&size=269482&status=done&style=none&width=1854) +lora rx 单向接收(监听)lora数据包测试示例 (SX1278 <- 或-> SX1268) + +## 4.3 应用层调用说明 +用户层调用可以参考如下步骤 + +1. 定义射频DIO中断服务回调函数 +```c + +/*! + * \brief Function to be executed on Radio Tx Done event + */ +void OnTxDone( void ); + +/*! + * \brief Function to be executed on Radio Rx Done event + */ +void OnRxDone( uint8_t *payload, uint16_t size, int16_t rssi, int8_t snr ); + +/*! + * \brief Function executed on Radio Tx Timeout event + */ +void OnTxTimeout( void ); + +/*! + * \brief Function executed on Radio Rx Timeout event + */ +void OnRxTimeout( void ); + +/*! + * \brief Function executed on Radio Rx Error event + */ +void OnRxError( void ); + +``` +2. 调用lora-radio初始化 +```c +void main(void) +{ + // Radio initialization + RadioEvents.TxDone = OnTxDone; + RadioEvents.RxDone = OnRxDone; + RadioEvents.TxTimeout = OnTxTimeout; + RadioEvents.RxTimeout = OnRxTimeout; + RadioEvents.RxError = OnRxError; + + if(Radio.Init(&RadioEvents)) + { + Radio.SetPublicNetwork( false ); + lora_chip_initialized = true; + } + //..... +} +``` + +3. 配置射频通信参数 +```c +{ + Radio.SetChannel( lora_radio_test_paras.frequency ); + + if( lora_radio_test_paras.modem == MODEM_LORA ) + { + Radio.SetTxConfig( MODEM_LORA, lora_radio_test_paras.txpower, 0, lora_radio_test_paras.bw, + lora_radio_test_paras.sf, lora_radio_test_paras.cr, + LORA_PREAMBLE_LENGTH, LORA_FIX_LENGTH_PAYLOAD_ON_DISABLE, + true, 0, 0, LORA_IQ_INVERSION_ON_DISABLE, 3000 ); + + Radio.SetRxConfig( MODEM_LORA, lora_radio_test_paras.bw, lora_radio_test_paras.sf, + lora_radio_test_paras.cr, 0, LORA_PREAMBLE_LENGTH, + LORA_SYMBOL_TIMEOUT, LORA_FIX_LENGTH_PAYLOAD_ON_DISABLE, + 0, true, 0, 0, LORA_IQ_INVERSION_ON_DISABLE, true ); + } +} +``` + +4. 数据发送 +```c +Radio.Send( Buffer, len ); +``` +5. 数据接收 +```c +void OnRxDone( uint8_t *payload, uint16_t size, int16_t rssi, int8_t snr ) +{ + Radio.Sleep( ); + BufferSize = size; + rt_memcpy( Buffer, payload, BufferSize ); + rssi_value = rssi; + snr_value = snr; + // ..... +} +``` +# 5 版本更新历史 + +- V1.0.0 版本 2020-06-20 + - 主体功能实现基于STM32平台 + - 支持SX126x、SX127x系列芯片 + - 测试LoRa芯片支持LSD4RF-2R717N40(SX1268)、SX1278、ASR6500S @ [**zyk6271**](https://github.com/zyk6271) + - 支持基于RT-Thread内核rt_timer的lora-radio-timer接口@ [**AnswerInTheWind** ](https://github.com/AnswerInTheWind) + - 优化日志换行功能@[**zyk6271**](https://github.com/zyk6271) +- V1.1.0 版本 2020-08-30 + - 完善用户使用指南 + - .lora-radio-driver软件包 + - 新增日志输出选择 lora-radio-debug.h,可以按需开启调试日志,也可以用于适配不同日志输出方式 + - 新增rtos适配选择 lora-radio-rtos-config.h,便于未来适配RT-Thread-Nano、不同的RTOS平台 + - lora-radio(sx126x\sx127x) + - 同步更新到lorawan4.4.4 release版本的radio + - sx126x更新 SX126xSetLoRaSymbNumTimeout(同步到loramac-node-master) + - sx126x更新 RadioRandom 与 SX126xGetRandom + - 更新 RadioIrqProcess + - 更新RadioTimeOnAir + - RadioIrqProcess 增加 临界区保护,防止出现硬件异常 + - 调整lora-radio-driver软件包架构,便于未来适配不同的MCU平台 + - port目录下新增mcu平台适配层,如stm32_adapter + - lora-radio-test-shell + - 修复 PHY CRC Error后,没有重新进入接收问题 + - lora ping命令 + - 新增发送空口数据包的TOA时间显示 + - 新增主机侧接收到数据包后,seqno显示 + - [Kconfig](https://github.com/Forest-Rain/packages/blob/master/peripherals/lora_radio_driver) + - 更新[lora-radio-driver\Kconfig](https://github.com/Forest-Rain/packages) 软件包配置文件 + - 区分单实例(单lora模块)与多实例(多lora模块)情况,目前支持单实例 + - 移除了Kconfig中对BSP_USING_SPIx的直接定义,BSP_USING_SPIx定义调整到[Target Platform]\Board\Kconfig) + - 重命名宏定义REGION_X为PHY_REGION_X(如REGION_CN470 -> PHY_REGION_CN470),以便与LoRaWAN协议栈中缺省REGION_X共存 + +- V1.1.2 版本 2020-10-12 + - 修复Ra-01未同步与v1.1.1更新导致的问题 + - 优化 drv_gpio.h使用,兼容RT-Thread Studio + - 优化 lora-radio-test-shell.c 功能 + - 新增接收超时时间设置 +- V1.2 版本 2020-10-14 + - 新增硬件测试平台 + - ART-Pi+LSD4RF-2F717N30(SX1268)模块平台 (470~510MHz频段) + - ART-Pi+LSD4RF-2R717N40(SX1268)模块平台 (470~510MHz频段) + - ART-Pi+LSD4RF-2R822N30(SX1262)模块平台 (868/915MHz频段) +- V1.4.0 版本 2021-04-25 + - 重设计lora config命令,便于快速配置单个radio参数 + - ping数据包长度最大支持255Byte,可通过shell自定义ping测试数据包长度 + - shell新增加iq version、public network参数设置 + - 使用LORA_RADIO_DEBUG_LOG代替rt_kprintf +- V1.5.0 版本 2021-11-15 + - 新增doxygen支持 + +# 6 问题和建议 +如果有什么问题或者建议欢迎提交 [Issue](https://github.com/Forest-Rain/lora-radio-driver/issues) 进行讨论。 \ No newline at end of file diff --git a/APP_Framework/lib/lorawan/lora_radio_driver/doc/doxygen_image/lora-radio-driver_file_arch.png b/APP_Framework/lib/lorawan/lora_radio_driver/doc/doxygen_image/lora-radio-driver_file_arch.png new file mode 100644 index 0000000000000000000000000000000000000000..48b1073ba4802765b7c7a0b554ed2fc8eceec63c GIT binary patch literal 53991 zcmb?@bySpV^e%#efuMktbV|nnBaPCnARyfX2n^lb-OUgJ0wN_0ohltecS<+N5K7+< z)N{`L-FyGLuH}M>@68?0e)iskyi$;Sc%S$_3JS_YX(=%!6qMT`C@83%cTs_N>~Dk5 zfgks*rPS?EP;l(8|KFN}kUOKGP@qVQy?En1wcTiDp{16wzE;|mloIq^etO-rKfV1s zr3k8#%X-qd1S$>ri1W#zFNN78n&whU!jLu-Nq19X5^drhgSKS*7U`unKb2}V~uOj$}*`jD+JvtBC)7$p`g?d z0dF@TPb;gSr24?8*E8!i)w(Fx+xW2quc5$W?4?{h@9Ld!|BS$y^h)mq1y>Y?E{+8b zTdJ>YxLP!`Y|=YrWq)8mYY;F9v*4^8NlTM?tw@KbnEA>19V5E!`O?u*8&P0`z>wZB z#1{nQ4ukv43e+k;f7I2d42Ci0nX{l2Tvpw&60L>nv$$Pp=&LQa ze7fbF2y@Bsi$bX@5reKPaae)v>eQAiIgtpfATq;=A^#|$q0_V4d|>myeRW!c?PP*k zMaYPa`qcwaFB#a^x+6s=-ud{0kwO^qc4XpSTR*7#1IVCHglMM;xiX#R_~qumn(;fD zvgz6?{yv{*4=ChNrb0`0l(=*`!Lq<@#b|~(6n$gPglYHjFhW4d=Gf2ZGmKQ= z-)9z}tGkNN<|iJ?4dPU)y|0G36cwe$WJ6z{a=B`}Qf4Q#B~#EH*N&L4!uHC1Lozg$ zKd7PCSgzuXnHQDkaZ!0ZtT;1_0^H3l6r(zr*=41O1+k$$E9Py3WrTp5YMAM5H0g0v zn_h{$XX(R4mQVq>A8>8B|ZZFN5RK*t4NRgG@JhkxbD_M*;lpXwjE(y8^( z%RL#=T^!-V`S*Yge}@2X9ds)So8>D!{v%{4tJ8?4%hW$2810Gq(5yeh%xUl4 zojV#fWvWUqVZ*ArQNU8KpN^icsCxJHeU*FdasQPZteWl+^ICHNai@?>$rx+8($TDY zQ};qAqsk;IzT(^+30c0@1Yi~3ym)Y2dQ7Hz>la%alr+4zujL)k36Z*2Z=bbU>}V8M zCF9DE&!uJUZOhr9i}i+=t1^#S(c-npaH>$npu z+IOSW*P6HLlR;)V$+-dP&&0*N(Qsgq$@G0`F$Rv?gfU+bcmJHlLF|}PpiB%KqYHSRNt$Er4mj!c4acDN{z|wj-z_9wx zrRzHZ_WS{)#MZjxN%8)Z$TPjB7@0>gKCkow>4pY=8omBny4%z+Bs4I=Ghkhv3%q87 zofcN=y{emR3j?vIg@Y1#BLw~~0`mRphm|LlmVt!lz>FG8tA(EPm%%yVi&D+;OW^QI zO0;a@wPAn1{zV`sA95IJO|Wb(sy7lZhbhXg_VB?=cD*gDaXg1itg3j=SC`qJO+I%F z%53#p3jQ#+yt+)e7wKwIc%{3Xww!|ga$%*rKyriH^h#?|YgSCRsBK0-<2{5P=_yEU z1BlC113xR(N@3G2OS_7E%O^vK_73GGNFURnU{_1xc0qBpAlpjKvyRo6 z>Z-O)G6BOy(vKsOLc%awU?O%^#d^`%9?bjV5l}FC*3(jxY`@8OeCJ0kx@! zP5oY_+?-w(AYlXApJP?~bn)w_?3moo>mp72%aB zA-SA$n=v57={)o{A3M55)+E^@r}eB z9{1KM=Vy1?Kic_)WPtA#!LtiJ{U3;cubGxYKenn8!YaqcDulNP(+O_agE8nii$O8i{&a5g%g$# zIJ5m5!yBHtMB|%Ve`OA$XZ*6O3d$`IBq3Xut6!~jZ3%#3J2C0#mg5R9^%~9M92fl) zGc$=?;1N%Y8zzr;mJyw>zY@^S$y-4BoMKkOSwTEN?!7U-vNGpVeiWGBK6oE;ZF;W# zYl^gfRz+&DW@S?oX4CymF4R8Xr%Q&d2 zN&>B#{YGp<+ET{}^yVai1#$*WSLb%6J&zGo;}R$;)?s1WT#;?kxp^3j<}Ih^s`23V zhxUp}<57o=0ywqgufTsE^)c!H&_cqWXgSW!^`Tgcfvq?l$Agm$vld71EZx&eiT^$v;c_T7)iViKck^*O z?tIYTmHD5~y84qgmDE!z2|gyhpK10|z{0=J{Pr`=gpuxhL(L*)Y=6jtKUb87 zZ^c?(-U=$nO$=&pVv&}&El940@y;?K zHCVx_Kc}-g2&+Dxv;KmckVXY0@M_4rtpG=6({t@7t__n$xkDjW;@sSJ^AOV3B^Lvm zuCgqn%Jx^x+Dq)}`)(+p{TwPO6O;1#0e+sTP`6flP!v|^@dAXw>0hh&SiUCZ^5u=`LpCpz zbX=QXV4TC8M(w(80^Q~AqYPf^(w`G$G#{7=%Maz$SZ0&sg+g@bRz``2#$pCX{{cbm zLludaQ$H1(FB+C=O}`-y39=iLt`4fcuFV|%u?NwfMi)iHSgx)W#y!il!isNSlfYvb zsK1QF7_oxkJa)att7)^nhC!c>)pMm5Q!#hM_u_scy=@C?Q#Bp-VG z(RnGw679HbC5=?kB&}BzY%b%h>ZCM zn8SoUAV8^qtYq|^dF|tCO}g=f2~9#9^f2(+$D|Aa1~y?fMF0_v-M#g9_>-(Ao$jtA z-PQG#2ZCppZYew?4=wx2cu!e{b(vVlWMnuiL-z3g>Sc@b50Q7$FJ35MWL2u1P9Rq} z@ze+WGj9F0LWH@wNV7|%F%@MPcx)6vbu!AdR)6g?d;Z;fkD>VYAK&|Ho05eOyAX^_ zA-Dh854o;8y+``}hBDn%@~IRyVoOB8CbM`xE=TWyXfmM`s-*{?!s!0B{D2(bY~Cz2{e> z(Bqf7##OPab&j>K^FIA^*SNx$&t|s|&8T7yp!f$AWSPC@&;QN@t8tXCn>;xXqhbKV z`Od{{Wn8Hk8fG@V2y^!`Jv^ckMnylKaXGCDVIa=fyZIKX+q)y(lS^T>2axVhuN~K) zcX1KZ2mP@~W@0vF_VB$XYMhYz6c5uxeHw}WFVP!fJ|8_$Ew}2`sw@pj`)xt}c0V4A zj3;zH)Mi}WfqZg1*&exxe*Owj8Xle$xZX2eie?+4aBon%P1J9jmkH#z9D{0Cvi;n@ z7+=bnde3fvYwh)6HI^_^Ykfg=LD{x8p(DU`&l*~1u=vN21ll1#*u#;wR5AC#AXi$A z?(BCFPLr6%|1$>$Q^kCS)t=#YgB{Thh+{>y#iy}~)izc9eZ&7?hA)1NZn-c)XAv44ClI0; zKUlsoyf45?DRh`j|?sEXOJcxOVVa*Hcz*5cSW5q|M0#0F(aaX*2K-0*%C2LHK862^_U7mi;`H>t zqAi;Qh&B=BzXK`CDadf(TD}X_lL`#1FzH{mu=+Pr;_2Wv`zt)!ghVk0Rqnho0~(qD zRu6ocq%zgOm1S~m;s6zh4#ULi##pR0x8u7D7>%FvPd)e#kN{us;ls*W9GLnq%F`O0 zWeG4^YEQ%eH-1{k>!kc=n)UT)jdEkzU5WRf2Rcc{#%%fj(Oz5@mLWNz3oc2vs|8WR z8f`=BpEm&IM)?K@C{~Pq?rJq0XHgo??YRA{`HzvR<71#dJ6>6=B*5!5pRbg~;zj$% zLVfrobK3RQkJo8IP;jc;7&($P3iy~dZ|0m#zMt}20 zN}Sh*s=CD0`7K}{bev7-t5Kj5guiVo*Y{oRf@fd#pxO>DE|JH}xBr@N<(HIZ40rDE z+IIm*b-aW8#KaW$K>eB=`I$e9r&X>e{W(Mv|Bqyq#||l(F|76X=VGDbPtc084shVh zJ}iq%!{q*{V#T0Y!G48sI+&l*xYU>Ra&|QHnDRc_s_g0_vHMS4B;u>p%qpH+v~o7>Me5k0MGj7L>Kx^o|mO)`Av!e7WH@TX(#-LhIzP z5(`6UFaJfcvDr0mL%WZ*K=W}!q^#C2ns~^zXBmieMT6_!DUW#YO(>ndI0^ff@s&)H zsaUxB=u2tk#hD4+^UbniPoEgOp#%AamD8@mtb1*DwWVgYW?O~BRwg{+MGy+h+W*F9 zIIHI_8<5=G0(Q_esD9sK&lqhk@IA42ze3LT@Yg+GVYjjUU)7TH))lG8-A+*#4|Xmu z@M=>$ZYNQ)N??48c6s9CUxzgX27~wQK&305KB)nn_3fXpq4afZOC$Qi#~uy?n>0`h zx?~IG)+hZUemQ}qW$yYmXitcg8M8@!^zwaiHDWNMN<|9%lw2_a##<^TY#4P=m0#5> z7S~j^luZJYoSVWgbo&t=;`CmL{N%X+(Vq*az&iX!=(Lw->Qv|F%owzH(4dPUo*A#H z1+A*J7)+Q_W|?J)R8_*Aaons1RSi6Y(#=gHBq}paN4a|k+Lj=L)a0eGTngkL%|t0! zXuY=qdGZ95RIb;#igPMjZ?fPteb7*9>-;nGU^?ILU-**K=(NZ-m4W#DMSMgk0vT}; z>y8dR3F@m#JZf)N%%MiUMosAMd}{Tk`N5sPftyGyi6Gi{x@5^FFGNC;1qYUJDSQloZ;}onO_dJ2fLux0Cn~2D+r!O5@#$2D-(&~pC%GJ=x z7@LcPePymwSBy$y{}HEnO^Nb5Rdmaoz(&WDI0hf(Gb+4IJKmXA8fp#DYIw#5aLj;l zOMXyg5d%#m8j8hR91=Q}(lM02H_y|X4SVv$EC|bN-YZj(lbUt;)WPNT%jY+Yptt(k zQdDmB;W1<(S6<%i=dPLgSm%Rtr0fa49?wis_DjuLrFt7`^Bfv~yHUoSuV}jjH;@bx zH(Homhl$WvUEt)BjOC4M45FSRuny_@6*+4%MhGuy{-HF`NnSIPZylK4$ZFIeGV{R*`jZ-Dsa2+ zoxwr+ORPIZE-l>Sc?N=@9=Xd}AOQ|1P1-@O=mD)5*J>KcC&2=uo~VDQNqIZCYNo&ew@gCOtnQv?{(Y?6chv^t3>mAf zdIFw;yUC)|TcU)C)fjtmMU1aJc{iCo{gY`q$=|1P+nL6msCK2QZ{{*4uPBr4=Ittb zGOLY%u}ilP+088_g*$Iw6jiG9X<`3n>jJxF%$OykG-LyVR(^oWKIhRDme?D-oXV>y zp;!Dh^;N>NDUF0mfswHyjvjZ??JdIoC+9;s0(#j_X36{h0tb*h!$}&}1)+#Ok7+e& zgWFRfxN@%7eEltv(7OR?Xl1NA@v>Otec!@H4}7MpIPP&z)YyvGyYtQ^fGuNJL~-7L z@{cFl7%U(XiL&pKnXIZ@4`OM3yvxYBG4g9t)c9CZgL4B*Sb5o>+^Cb(Em~S7wWhN^ zXMUc%Vs+}IiYmxLn}Pyy0zJ9VG7KXO&`0_Z=Z_yhd#W$0f}BcUoO!ctX!>|BLRbq= zmsYL&5HYl}CHTQ!yd5;=e!Ox?3aI3UYGiB~EyF zXTgufg&+Dm8^cCe`aQ4>*X55vR(0w|k2J*EG4Bk|pBi_}km0u>8fcj7*2R~)aCbT% zL#eJsj6yn1rDq83jPT+IXo4hdMNL;)?PP;~X~!hf_#~KlAFs(EprO5l)${QegFT&{ zlLNvnAgXq80sT7SiB*;u>b>lb-q6y2!8umdrF8!QQs4k$DUiNz>!G=!a-cO)_Mbjg=<$LxEySt>cwb?n8@*Yq}$_3SjP4?!chaN?&HCI-iw;{l>q6G+CQgl8} z{7!S-8B*p<#Bf@qWi~NZJl_i-Em)YS?wax1(e*T62BN#9Y>oGq`))>k@$shS&+g-0 z@g&SR3IAf_xpZg2ibRf&zmi4MpvZ0`HbGxu(eW(~X02yO`Yu!|MPrwG(P1MET<@hD zsdeZ26!ik3kTdG?ok=k-$Fa+y_84q zo5ItG2Vl6z(h51U)Tb>+a;nU5P<5hK*&Irzpwo;kKV)&UhGZXDEt#w3gY1XDLZ`0S z+oj4ntNL>IdBWUDE@*I9oxWxYZaFh&43hq3oSB|=hVbhdi2?3mQ(aQB9I~n}+g`o7 zS+QyZa-L|k%lG7$vwvn#VI^?Ia>@PqwGL~Xp{IiZ;FGrY=%vVlKL>xmQHAIRn2S{8 zDaH0hS)plVot*BhW=7g{-57Frm~e>(7xE7s6A3UeFYDAT`{IKK=&_$Wu}<=Lrk4Ye z+P-B9?!ykGAVA-oUKGyPyyBb&N5X0+s}=cezWt;Q#sS}0wbgEfMfyF%RfJahsMd5} z9L$nc(?0k3jjU5xPQu9TYL9(kh)aM(!m;B9q)@GAqbjbILsmr#x|(!!c&Y^O;G1C9 zncm}wq^pNl#1oH7$Z|EPT|mN}K#T_nE64%l)Xb@tDRH(Aa@ba#p zE5Q}R-?xlQ{-Qkqratd{**}e*c>vtt#n}{iUQE+xAJWwP_&O{E;0k0NqGQbCexG&< z<1R0fmSeWpO;dB6C#Ooxy;217*6iy4M)cHN?isWAr)4+k)J-B+G@P7ps-vf(R8CaW zI4$9{V60^RgKm zQ0&4pEk<+jAs2e}lETSFSBXu=9$;yO&WtAydim}1>1M5|V3xz&8)`TfihPJ7*xkALGF znvKm^4di}@#EX-ebGVaaP%kW`r?g-pveT?Ycbruxyi7qQ;dmuU+B9Vcn<+7mw>)=$ z88Op!eAt;mD$r^5=mw~PzK^kN(9kRNu88$+bVfWyBF9VQ%QJ+GFzTJmBO=PwG^>~k zTzT`NC*3$DY;_}BojXBRs~lF@WeWmlldb;eXaE`j` zJb)4f#HI{Y0BN;`67TEzIKNedHKe9Qg;DPtUJ@Bf7PDLKgn}HAiQNL*H-Sa!;sxW zeS&!pg7MVR(Ww;Bz1`W#!a*TlxrVuBuMjm13C&wEToSiGq}Fl%jzr{T!`{RcYvx8Q zub2TOo~sBQ{fag9_?AY(qfN3b5gPT? z1+A(LLM=iM62TNTpTff7m@hEjD(3p;Tq}+rC3fz56C)0Yr`BR=dBp zK_@|Ezj2Iod;2m9JXdyQ=`8dK4I-_pA`yM9>*R!|ZofU}YxGPmNEGx;|2S5R+m-MlI#?g(7BWr}E@y_-`KW_2zdf60+)u z?8>G+~8u$oIV(lEoEZ7X5ZQPB+pauJ{(*O&QXmy?SI!);`| zM_P|uFjiCyIy)2^y8P<0cgL9rEN?n7lq(@D(dcpEpakN+Wkj&EV;kB`v%WcmMbbI= zKI8#G(hd4r9s|Wa`dp}1*%DNVfEklF0EyzGt(AFmaokdI%__Oe-pKBUc9SK#^oHmZ zE~jt!UAej}12T&=5~SAJd-LlxFAu_!uWem4Zg`X|`Pn9u<^H0lBpPzCT~M^w-j7mtSE(*Sg|?~sD*It_lCmzOCU-(O5x{@OPzE?`(d zy*LPdu440Tv0`s7A&G)jOe?bH*|kVgnAf_iW07fAc6TO_3ilm$*hQr9;p)C{0`CJ= zDQzPoor9kxqu$j!b~T}#9UF^;P}sySzG=G`HjGct#tPUmYfvY$gQBrK+tkIyHX7Yy zb2VUVycnZ=(O@x#FaBQP>dH0sYpcW@mGb%SY+BuK)@(yoF^Yt#84_U+mxmes6i=3% znq~oOHfMzNS;L9Q-%8dx+Nn3t`~9XX*)j0&yUD_V3G64q^N*rVOkAgu2^8EJ7T14Lx5f2?o=osJki<>_R^i>BM2G|cVu zeX-~RquqjVC{pwdfBT(+P8Re$e@)ljnsfC@WvVT#mAdg6L)nbnuY(ahO6f|NdgEz) zYfOpYLR9!=(C)4`mSkvCxhtL>w}VMW{sLckrEhuDn@^wB1H!qNk7N30n^p=TF*{V5 zQ#ckexf#$z>wc*}G#CNBB5_Vnl~s}-f@0SBxc3n}foY}x)b(Yo5;#stf5V@ax(-8J z2P50*JPfF(0WC%IfDiZ|CZU|Nh9+k*$c#CNshTPEBDU_QY5Jqe-j2~`{I)vbbFpj! zR65+;h%Jv5&!=T_J~8&8_%aSAGdfS5COIjk4M-neECZbaF0xB~R=fu9}q0-SxRO$8Wc1dIv=Z9bTLcK4E%L zkpJgKqhAs~HTH0Cgw5ngwo=bdHqAcTXb_k@vv*I6{?LnOwqz7BG*4E;l7&(_9cK30+~*lj?oZ~MLY;F})iC4RXkDYIWnA0R<~N37XTA{AOY(%-fjRqV$X~lURv>F^Ma=C^5eNKAWN^ zAel0gM^1ahP#__FUh4*?{F4vz3(u`qOT2ibcr2U5smIXru@F8Z=kAdm5&r1OAI7y) z?z);pXogL<7YsSlFV zxSGCNPFI+ZFNc9lR;P=!0?0=+2;}#-fvoT!Y2fC8#-sI)6%CRJ(GaGD3e`>qK5TEb z&veh0SIjpZ7cw5nDYi-ot7hydbhu@>$94;BzFRn_RAs7v3ENx!6Dd9Kesg?emXI(N zB`g!da-G34H5>e$r3b7?5U;&dUvQ;uuHypg*G|2$V$f<1u1ubj;?8<9JsAEpQ8Jb} zqab+60sjBY`R+6xcLu9!e6pN<_kqZ4W6VF}cLx7Oq>|Qk23=Nids3906UL$$p0Bw8 z`TE}dwJHzwQ_!y^a)Re|RDlRaqaw-+h9ULA9nGe9_>-*20+z4%Dd9|2Fn}+9!10uj z%(?=|R?hOhGSO7=U+E)l(G%B%OYpnDJv-Li8DaRR$SK(>Lx>xP`DH)F@X5Jd3!j8U zMdQ@cr~h{*xAI)n zyfNh74$Lb2*WD10AKna9<&XYc%$xRhBQ=TrkBo;F*3r&J0;fg8*+<9kL`5ZNFKC+8 zwQGCBlco_PS%w*<38V}?-*i@;OX&w%UwVk7zBS_0umGQF|1jz2BfC0Ye;TPetaAdr z)NGfbx?Atm(^;fJOYhs#{U_Zt6h_J)9zKbH-KKu}++)fbUd3~AJi&2NS7DFtHWH`% zEk4!>7q%+`6DF*L zaV^{(i?$b(kcb^@qrO-DBv=n^oB-&2?Porai;LUFE&|Z50un7hGD-w>yr?TPvK?9< zbh`3%)OG!bwH2S%IvuyvRvD5yiVYvB{d>ea$?@0 z-CeDamaTCK6$zWTpGP*je9pwtnWZgaQU$rxeeiy-Cox zHW7mJS(PmvXdk!Z<~@MS!vw! zA%m1(g1tO$-$qoyarf|-y@lKy+Ub2J)y~K2iwrz}VSH&iKRuh>o(^w7oshp$g~OK7 zriD(Zk}Kb+z%KnQce;$Qs;06!&XgJq_CEY3jYJw8 zsy}h^H8Y(YNo0u|ADtJr`r1zk6wFrbYoYyqYK7U=sZ^zK`LH#*Z5?_%D9NFUi*>Lb zqpF&h&KtMy0@}CR(P$ZHeX#$!`||X?tZYqbhIK^pu$iU@vHaF6wcuD6Z zerG<7D6q-9UrQ`@IjqR|#;h>wLPr*Q8S?TgQ;9ds>askJ)kEnp2cAf%1?TB~88qo1 zb5LxusY|Ks&7z-UT$+e-wYSSm-2Hg}BV%l>mY@sU%AsdzO&Y6AOkuU<(1%W#T5sCZ zfNSK?7^qt_+e=ome4_|pKYNo4*H}ocuTHM@#t=#4`Kc>!eu@rqd1E-fCPmqxmnNCo z#HjGj;*Vz?bG_TI#FPYn=8(;4|rcdxy1X(E}@N;PmvKh=eox+EO z%VGr~eMOWC8AT0A0EekRX*(4WRM$MhsfHDt$yfPP|CWLeY^O%U=Hu^FRBlt#Pt=V* zirswYOIa)z75Iaz^Um+YF@=1s>!?(!<%9^kZ2&1h=F_YPg?+`E?G323vYs#}U8pnHcpRkHEKxbx&Rx4fik%s7 zgn7Rn+^$&b54lOod&9nxWcS-u8U#4*5P$8Y#3JLG+3qFs)z7Kd?2|6WkR-Hl;MTr@ zN`Sq9WNKDpf_r+X32Os{DwF2Cuu0_PI$xWZj}udBR4ee?iv9MyKtZ6Vn5-YqYkS^y zzN0_IL(#lIs-IjiiDmfygL@KC8{`K{vP>@p_6DM-!`}h$HW>{eZ%6e!@%-gfJ~rc>vII6(UOWvGk~v?wA+t!wda+39W#1lZs6-Ig8ymi z$D8Sc!F;gpm2=6@_JWMP=8cltGuO{fIKK_-Q20_uL_wO+iND@5m0AfQw_a=ivE$+` zbw$bHw{1s0i)?(&XUNeO<$fJf20FSM+fK~R$GGLSZkIY+CoW(cGo-|1b^MEC-+Lyj z**tsGVy7~FbbfcY=0IEbER4ed^><7JhMM*y^#mbvW$#Hu+8*SsKo&hwIvKus5O)OT zXQ*M#vu#{0*!PQo1>LT>DnFMOZ2iw#x9j)r0$<zIdx9Menmo`7b^C1z^S*%vFD&_=l^IImrRoSY!@qmM~){?CeUa~sf1?}zoU zzDrg{FmQ@cbhxB(ZqXGbS?hSoDDl$}NrmAN0F~s*BG*c^c^!`apQQzSvNOyKl(6Ol z1xYY0Eg9cc)ozdb>dnpJ!CTfcpGGZhjpK%E@8Qi*eyPlh~}?Kw~-hpQ6X5KlP5uN?^OpV(5#7l|?aF zc$f-XdrxY1Q7M^$&rtsBhkd>uF$gFfWr1w3ie^)ne=(iV0Pfw6!44$Ez(Nq->6@0uKjH zIGe0mXBunY2(CT*DGjMfQScfUGv3e}^yw?4ugjPv2ky!Vry>K(7J9ujA6S%-fd=Rm z8P8e7*+MUorSn@?fSa3IH|6A9bY661@8rUvGhww>YTZ1m>j(Q8hKn7Bzo=!psgCBXIwnQDk7~1PAw@# zuyg^2`OvjD`=@h_lQ!^QBTPhKJ1fFz1Wyu6os!$9-1@dbnRmX^-B%Ev+1@#0_9FFm z#wN6;?2^oImo&Gk+o z7N_hiz~&pJ9#@Cc{rnmHQ*I~1R!`kCIKc-(nr)i#a4d5*X7IsV-G@!Tdu%%B)WLR+ zpX?o7-qa=6?Zx#vf)d6(;vy6!J?o~tR-Dx?6RUtLV=TeuQi;NRC>L6toqkbtaSEP2 zFT6P+|Hm?U!oiu(U$BdC3R=$KoE;Ncq1`&+3F&%L1a%zTQtX{UEKUNe!fjahKA$srV3rQyF2*d zcL->$H_~zc+ymlvmZCUanz0Ub=5)W{znW3`#&+~Jj`0b0$(JXT%-(g--5!adALtR9WXC*v4>?xCRr0!Kv= z+eE-9wO@Cpfg)Lnpmq%GV2ro!$PmgMKfkeWTjLR~8Qk1rcdg+cQV3zYd*$*_M}4*n zLbIlwZ*y3lY`0LrJ+~aU*)y8O(Oyl~jn;5zXch+m6=Ah@?MR?KpgQUKEodT6DAsof z*HxJb#$=kBR&`5me&3%Gw&vY}A9#$K}g*_Vek__R+$oEuhB3$D|tC zbs4dYDCe*m^Zfkz!1}QZXeRu+CKvDw(oWSyS6RaDUi)|UQRpQj39CCM;kVIjAN>7> zUH53=6mkXG<#zP0INR6RJ1&m?As9Cn-5cmz-~xhPz_qdT-roQyPYrz(43j=Wr_NQx zZ8YnD=MXi?=YW4UJv)Ak{R1c&OzyVWP~w&3MS&((LXS74)s_X`xkdy?qMsq+wul?> z#ywqOl_B(!5PM=ofK7=&i(v|X$W?Gi1|paHUdvB?rMjBYl>N)Qd6mZz= zn*>IZ5#5OcNS*jw9sN!J*?0@&YKj(Ttl7(#;pt(G@`p}Dl2Jy}%(|Q`3WDVQ0VVoY z-DJHFMPm{yHCC1&WcneikTI2>72MU+nDZ?DKr)k$&yzuc`b3e;0-V1-JOVJ_4Cb3& ztOzDm(~Ap0%w3RTb2J#(-I< zgRL5t!Zaa-l#2;)GTj;`?7Pb#OC>=whME8E8$Xy^`Y88DmZ(9{r$T4e3XgZBTfyV+ z#>^z0K$35>*AQCT_@o}sA6UA8u0V&IlpArO*K9A?k3BtoEPi-IBIp^wXBZ2BEt0?1 zh|OSH!`1CTx!`mLOpcje)j$r7pKVg#I?5uA*^t4D>jpsvYVCB6x=1C-y?~6ITIPe- z-BRyT@qsSPZ?WF65cxE-#+Qo=#2NjfX;b2i*ACP;`8K$n1xxti0 zNC5R?#aC%x>F({IDH;!8eUC&6bhsqCH1nbb6(=#K(`%3Sn@G1Z*p zOSxIO1|ANA?%hD2SHGwi#E|KB5AU3Hx1)BPZoVEF&CU#*MfmzWqrU~+WDJDjA1^}e zb|4vc60iWlBEE<+Bt$0Vg`u&-qFIOJF-}-XDwSE4#H;xytXx**9kPGRY9ac)Nu~E##Y#xRfN*;(ZWgswqT4_5w-G5&z(cFlk99N z7r^sB;j-*X92!bXVFz`r#9SfY&fDN=vP7@vFU(0?;emUkt>Ic$Iu`-}@eWYT35Q4O zq{M9xypt`a>Gl%GREz60nx4CG=0aD8ia$e$%w66ln-{oU7|rzR>(&6R9CjAN-O5LfIQ;Oq!c35hO7fNls7p2L90Wr|-V|rsP^&|y!V9+WjwterK8h77|a9=^-Ulw0(BL;@QrpkJ(Qz%$HDH4d^sO3@l_ISt%< z58MQqF=(tV$TkCf5t^Y3DjJ9I3a^vhl1>e56Gf)FrjcAXk z3P3}%4SCyS7^JGngz@ASkPLlaZFmlZ=qAGE`CioW$A$s}4A4Mw1*fp5e!AT=V&_*! z!>g+i5fQ@2M}kj@H#3uy(=zf_oS&wrz9S*31xh042V>N9=lABL?tx|1+S@zR5J2h;O)0EmR_chMvJT#mX$r#*jt{lx`_ zsW;)^EH7qNkn;kGvoG$-L&J6-E1z7v7q?pR@Zg8RY~bMr^Fm9nIoTBXy)v9d3`m|+ zSY@OV?)P3;Hw6qRGhviLBf+ zK&Rjd;lt=h`HDTTwN?3>W{NK}1A-j;*xcN2F<3IH>T`38O0mH`Y4n&`MytILln~pU z)CQN((BEwqb}ez^rQ={OJ<$x^}ru(1Y`Bt=8ed||q!scU-?j@^a zTyXgVkgT^AK}Sc&Cp@cmwdXl~NRE%??)1>?D}n;So}Y%l^X1m!tuA&!OTwmcc4hDF z+t(eMcJNK%tDa9++q%3{Ve^-|A0I%`%?_k2Lnl9}ly~!r*sc$=3%H8WP^dZodR1@j z!;T^X0HxMe|LN{t)dQ1eq+>1V-Z@0la@lexe~+2fw)jUNTVDdMSzEK$Qo5qKa`Cga zuz6<_$;xr#%chAnuI()X7S9$FgqX%oK>uFO&+uvOw=R*W163+{-`YIEm%bYx$CpwzG4H?9Nvq-|i za)Pz+Yt-KsLTt4GpD4LAP-9N8@4Z~>r8_4Mr1gK$a@|Q{ev4zVSl|1x`QG-9g|mQw za0gaE1>EH1J_^OfY|(D>Nv6s}bLTzb4L9q%)6Q4k!$!>GNCb>_5n_;~JJ+>8Xi=Xc zkmmKRbYcNAxA7u>RlK$?Idc*6K7gNVb%n?P=+JlXLy<~7b~N;CC@5IYutR%*iAuS* z5{YdM8mLtfP|P8*njHelJuXqAFQKYOnbRZ|i$~`B!#j}vxl3{q*2l-JS<+-W*l}lh@xTm3Iem`%?jdqTy~okA(ckM+l|c-*o#jei{b;0s1nmVYi7&NVLPW|Ok z>-s_Ye7Cm*<`ThSSD#`U>0=ZK4-por*B3eR8x9U)$6oFm(vW)P44on_P@) zsqt#m9Y1>slM+)V0Br?(xti6nugS2tlmb}fzaT^?2}gEksWCq#&rY0`FPVB=?eh^w z;CtaVb1yp4-xGwXfSEKJYC1cy+B#vioC;)6{H`q8cyQRW6mCA**@V=$pz7iadmFJg zAC`l;S3G-X@mY>-;lWr$g$!!1E1pAy*!v3MUhnMSoeUfK`r73#c$rKd^kwguYSgDd zLabq4>p%-st>Y3prB8~IDxFpSaK1?*SUJ%pzbjrRa!g{O(yyI<)p00SU`*?MQQnrS z^TIsqm8Lnjacxsjn8%qB*zB$+XL%vzBUC*PDK@7+JdC2ir7L$LucbQ$^haNC|%GrOBL|9HRv&O zw6xQp5S_e!^F1c{njjiz;_*x)QxJLzDRD~TeTag2VM99Vt;uE%B7QhF1Aq)`Gb$%+ z`Et*4crALVdyMC2hN^$Ot2#T2ewY*5Rrd z=&F`!ckHRpq_`4+kTF`62V>oeEl9lOu)0RQ{ReV#y@=ef1>I85`xR{2%4}&r6=;kP znSVcN2S1%Zx7xq4Lb`Kud$Vhd-ui6q&y%35+eL&zi5||$z!5$Nt*Sg|WpM7}i?F31 z(*tReK;{twr2yXI2@EtU>D?ZXD&UZM0yLNBF*2llW$o2UPD*pBNh#0=3Lzrc8g7IA z@XBorIT;LQ!Xwk2U@LUQe+~3vcdWR8Lv}$|E~~r?gISdv5ER;xNN8H$5|+qDMzA zx7*ZLv68>Bssoe`#Z@$%fPt7zE2V!1cFCtQ+0Aa8A0`;}ss&XR_5B6Ab%h-{aQNE* zaF;`|SqIMrk6f$;o((pUQCgW4Bf$ns{tdJ+*xM^VI#Ox?I;ngsgQgvw z@tGut!U@6cr9(2vBeS7A4rV*irf^h8Pu;PIj$n>mGQB9vCTx9!oOjeU?Ap=U=LMx} zdM+o2-zUsAeRsQcl`7qT5azYl7*-7V_4-{J?%r=aUyB)G zCn+%!6Y@LE>IrWYLN0#ycOShW2PYra`}pS4ybAFX&kBSO+_Y=3K9VzWx0BvXwwgoDB@{H?+z6wchC&E!zMPylgY`yE96}Vg-mI=jfKFg-Ju3i(IZu< z-8m&uR(VD+;bxOSEx&%SYd5rQo&!7j1knhu#>5QI0);lfOX~r8VAzi8Jf`UB!Nbc! zbjj;7y_z-yJCG2_S-zn5ADQ4y`~z8Nf5AfM?Sg?^BElA2K^`x9UU|A~yqdk_b>JlS zsgMt3a3h`hv?oO~^Rhv-qx-ge^OGfaWXK<>1=1n==G;jzO+WZay5cygw`hx@7n0Z_ zZMWUZ3+eguB`X*|y`X2*bOlv(-pyPW>zipnha$-G9T-P^5sO6mjp%oiarOr6qc19f zUIpWWMjI=Tb3^_{inSujywm)RqvF27!K1%EUc?I{D@1bp^B8%swoz}hNZ z%k8CSyitNmtaS~?BW-bDK}RG&7WY`aOkxbOr!avA!%A8-MUF*1M)*q7Fd4T+tqj1<51u9_Y<Ai0)c55gERQp&g&n0~n z#i3gSSiMHdrb{tp8v<<2>)yLTxKvy9>f*EKo-Gv}h3M$HDcTZIjoN+JmeS_sp(G=O z_}B@d7l^_ONss~X+v+C^Zto4Le7*xo(yxpV*$N_@9LVIc*MG-hnbWtBIJbB!CWzor z<;>rG?tNmqN{HGPtAD~iH-lw-HIzO~+R z?9a=_QZ;v5KEfss5daVnf=nwq=G1fn%IlrJ`r1ZeVDp{NQbXdCh^%kiGaP0UKYJ8XLYbHISzq5qMx6vpi1ej^ z4M)KlmND~>ws-3G4bqP-`w_(H!?iHP?|b5hY;D+&!QmoH8`vLi5b9HT=~;BiCD{YgSi~GA2@?@t-P|lH?`tC3pl?FZsLvIj(z+}hQT>|v8pDb z;LG>c6r-8m<0GUg&H+nXWBu-<lEY9`9h}`*bxto&Bhu?tQOYGeZgWY%p~^O*~YGL*(5$hx0kBF!42n-!RAJb@M%AxQuX>&n-`1=PmtYy073 zYa-_>cMymicO*`O9~L@zImpJpih+a@sfNFcDpbxaWpB}m*x*AKIXQMSXFQ1&(##ea zeCM7Y{skP~I#lP5p;QI$D%$HlS)$Ukn$k4*D5@RjguLXNx;ieouKO>n%M*OfDa#9( zCTL>UyE>~kwiVt#wbUi$fTnf`bgyVskLNv_a++QCDKy`6fW#v!ibok0yy=N3=4`PJ zdmdiIp(_Gi)^!ktJZ*x0grBkC|ZfS&T{7Ua>@g6I3mEM&vYdZv%}FRhz~G=EL>x>gG4$-i;bKb^hFpKye~R9p$Kuz9?Tg%y(S!+43d$Fx2hf#z8IyImK_`es|| z#T$kzbaYyIfsQd%JIJ4>UrWSuDmzw(l7At#Rxs;^RxGLCioADTF^JhzKPp)psLL65 zzWba1cMtahd+8}^Qr5zp7haTtS-pQb-Md}5JRwv(XvE4OOb)U%3c1s*soSb))7F_w zE~sz$L?QESuJg4H^%H7V0oe?SvDw>Soc}M>S<^}tIU%@*3?YilNj0p|5cY_Q!NO`) z!3@o_8@Uk&Yt+I53Yv~|XopY-E6%KV%S!4_N7fO}JZCPxCo6MRTLZp1K2hTa<^t+Z z*$FKsUyt8cn*EXM)NDG(XV)tz4!4hwmm=@nbSB6)cWjFvF?j1{ud#^{N3BC>Fw={r2ZHLT!Rr|>&=g$_%QLr;GY|XK{e7PzO}pAS;n>j|0XpT``LXQr**bRRISo*CU&O zqJ=ZNeGcx!GBcz8XMGFwWA`0S7TyUqX9Q~D1VAQSCr!p`qutN>);^BpYXqm%6(ZOuwU41|}0lM%{vQs$of z8wpPXLlz(fK`@`>3N8F|AtH0( z`UwvZyo3x$MeOlrKj!3rU{m+U8Dw3JFbsxUP{P6bfAhH&{5PxXbKvntS#t)h#PJ^bt7wpM;gr7C`rrUvztL-j zT7RKasj6)Q;>?Vg#5jUns59hapLnx_>-P(!KDx3=D=>S47T* zP(l;u0dH($OdncdPx6r6(Kq4KqQO?V*Ua@dbu5WG(bVM1^A1pJXt z3rtf8`;g23H1w;$8E?>tRY%n9_!nayhU2xUHslH}znkI8QEPkZi!?9IxQJWF1Kuxs7O?Ww7q>tw0<;-Ln=!Q4-VG-}z6 zzoD$vg2&2wtW`h*ECn%ndSI4enIL)$@Ci4rm@AX>p<3mhPO+*@^fEKOxgqMp3~E~w14UeWy?jP5>&t4w=eP3yvZrrONDI%aE~EIUE8_C5RwWg)Dov{u*i zVG8Rn{=+s@SvaQSXPt;-Zz9*&3j_M+SXgT;E(90RCCDIT`Qq_g2t()vp z*yU(Q?uHZ>Qvzv<-BeNAH@1mMxqg>?fDp?Cyx8305F3}LT1Gf{xILn#+lv{U-nkES zhwECC=bWH8i}H&~J7M0>4E^w;u}*iuv_Iv;QFkOjt?Yat&0ks#O97%9c;K-aVVojB zEdBUodvR?AB9roCTrNd0>qTE3tSmGkR$Uf=Xp{F2$5%LICh+S2RPZ?r%frGlzw=47 zZ+IeHwng$XPKrrWgpKlI-Zgq3&&@onQzC^SUWwMtz5dX&8Crq44iP&(ked^if^iGJ z>oN;=ktwqxSy+P{y$I-D&WY?C(4~Rq3{OY*qaq$@o#=>7wY!4aYU|1zrNiy3OMv#W zE9)E2r#VKufp!#^hdcU$zj|Gf{o>4kV8D8|!u_5Q?J`%GTNP1wy%Ss2IeE@Ie&icJ zC&9E=be->rJS4hWTY78u8p`Cu54|wDY_)SmH6E9LoZVy@#kU(5dLc6?)i>}KVjsbR z6t^_OU-=nU#GA&`lmdGku>}cRJB>GJLh&Tdo4}Kc4GQZ$Uje|YvIwNGa08J$DQ=uL z%IuIRmshxIu~6J0G#jTk5WtSEvV&an^HQ>%fu5AoyeJ@9W(Z3~t0XcupDTvJl{jdR;7g9hBUZqC>}_)Dse=4QV%?I>YO zZCi(@E=h;!g6eU7UX@dZ5fxQoK}Od(QwEu8Iu__p&l;q#DiQWY?-&p4dNMUV3=@dn z5MlR*RT6~#FmU-%043Y9DLCDXvsNc zdwb#fdUWZZV09X}2Y+O>t;X&5wA!^4m0DY5-b|CSL|3lm(4FdbhX(tTn#HBSjpEsX zvIbFFPrzWHH+QZJ>Z!qSefP~Dtr1y(70vnx;DPGXNTUL|Hbh8_Of!7$O&{<+yOaEw z&8YFJYQ8OQCfI0X%gAUqx+ZJDITuefd=_{UP$q!(2r2r~D z79IQAQ`+kQ+sM<7v-UIF^Yj^?$2Gs>Rc3&0Rkd3_r+eo!hSPQrbSrvEkN~V?RTbD% zEUcJfB_$QEl9F`emybE4fI`U9+V6)@e(hAj%wiprYS^E0RmjL4;KELbvYR_%dsRZj zYG4Wjlta#yJR;zz+a*S}V3O;F8?gBlOsLvMb5(aYSL8U}lNLI#EsW@c65l$rM2T)3>P z!@*I*^+A66O??yiiV2T+qkP?9Zk*_TW#Dlfw$d+NRG{}x9r-Srq)J7v=Q$qrc&(yeUry8s`84&Q51l(og29HA32?V8stg zb0Lk5Fa4tb~uOYMr=^e~>(PJ6>030WMmWCrFV*5eol050oZNO|m(mgq! z0&g{@slG7XG#|O=1b`cE1kG5C)s|e`0HpADn}B~Lt9%DXQu`^*0A=!<3vR9hHt_E+ ze_v~CXrgBJmv)Mo?loi(#70z5@nxxd?{Rx1?=jq#V5$aMdLAa0N#pO&`hu^EiTzloX4>-2iiH8iv4+W#8A*}7j+NVL#* zud|Xl=ii^!eU5ULt+j}}@J|zb7!8rhER1zEauGk?uRdy~7tWp)dx}YcG?!F*5%Ip% z*)t45%uiz9u+FCmppXTc=ceDW-ae5e3#ZoS40Y~QUOG;PGNuh}oeNt+OMJ%o6wePh z_g<+($)k2#S(K+O7;8`L+0UbCuG{A4ydvNxH(LY7c0^L4IYxA!J+I}@=gjVSTpRLQ za_SjsD4*!d_Pwy7(s7=4UJ8WoBq@(j!6L#Pgw zDCS18MFSit?oPht`|r0FAzjf_UUW_Yj7ib+(2XcnkJ-WYFF^6Gj2T_z!07#s>V?n7 z2M=FrY%xH@z}R#FU{b%=qT^ZRVI1bn$W#lVkiC0n`vaS4{$`iI$+oHosf_|Ex-B(& zV1KmtbZXq++QB11%d$t@+Bfh@H>5hXCMT)3f$a;_pa@iS$}7h1_ga_+_hyPna@aZTtWDLF8o4TFl2z3WhJf&6`_J~=Yd6+i0k`3%5I3u_2G9TwKLpHumi;A zJzUrJK-~aYW59#tuB+U(JUrS@!xWq6SEe(V@~@EF!tfPIdnq8zR=@{30K4-RsH(h# zCR&@bWqQ6hHAyY855L>A+D;uHKBVMh~DJK8v9r36ORR(j&iM_u?16xtEz7ev6kmdyxxX1G%0?MQalR*vkOe|OH zo+Y#U(qOT?pyFEWX4cX||0+kx{-*n9;vrBO6}PLC80P%Be1(D=? z;@ylYW@i%FN*(>1kkF#=14o4s*dQeTF?A;Jz^A|iKd>BIml!=n%H-JIG6i%xpn$@* zA$5@N8k4J%=p*Nm@6*#9EyTk_kOBvY@7~&B@7#%Q6|5+Z7gu9cPtl{7J~O(ynfccH z1)d5rK&p~LCPHiNt`*AZ4dZP54Y@NGTY9;rnQnB~ucI3#FxJGc-HTtyRoUpp!9nI) zU-l24cB$ir*&-K^qIA)C&>Oe&j6?t3#q%1%SF(rCvIoRCCz z4UN#{Dj5Ak)ffhg6m67ea>meV2kH?#NAPPOYIuo>)aUK(=X}h?(*~Y~ONPP#So7y1 zg*%Yw0iJwgiJedV5{6fej(&Y{z?b>XZ_z+*U#CFEo)$KM?)|Ef=^Qz5%PlC6muJu6 zkf1VtT(FqzjX<`uM*1scZ$)EsMAE9I)Ko6N8G9-y)HN z598WZ^4M9S*(%hwb3SL-Ou-dd2`PT9;#@ihp*C?-d9r?`4H%2(z6_P|sp~n8B#e3xA}QdKDPHAYS42Eh35K$JS`z=r6~y6NsS`gi0A!7UFBW0m4)w;!lex@xKKBFmH_bZgTRsBhSr-jN4?DLD1VF z%k|E;cW&7G-J)dsKY@e#@77dA%#W;oxVyZga%lxLPWg{Wb7Ic(A37num2OBqHHVEjE zynlC^?*5Fp(*}!{_CK$nx4YzUabhb~x)V^p z#;Yh_#~Hg8TtE^3o&WpWGV_ql>{4S)zzG6<(JMZ$g5ZY|>cD-#T~*|7=j#QND1>T79{K%w;Sdn(5s>cBHHZ|MObxRWnQ4AdLcd0Z z1*;Zheg3;K^v)Sm3uMB&G~voRZ8Rl~PmB5T14`)Go?d=G-akS%W%rRtJ6W-d)l&Tm z?(sPT`5}|s!#5Z0^MgCva-`E9OM)zw@?K28Vley19Dt4ZkCFvrvzcy~R45B>*rjgx z$LilqA>$}*(^OIOo{TJ#+jsIOI&UtQt!OQb;ShSCcA*A)w z=?@;R&fVJ0RSKartfzZtei?sw*DK%?sLsYXz<8BC7n5q0IZ><))GF49W_Q=#w#YNS zJ4KmBv*bI>Tr_E$+lNw%Zl3&i_T~an)p?Fc_M_x2@aqhuC2C^R&w|%gD)z~uBWXAp z&aV&#RC7H6Q^W*}$qm$`rshw7k?^H(xREoIQ;l-9HH_XiG@+}0u!h{i=WI>2U)Jl+ zh;9MVEB#ylzCh!GXgZ937?TlH0xWKZcG>hL3U?+8PHktbEc$AT35(^kS?U3IsOflb z7BnaFSg|{9^xH6lW|tGQwdI=1(g)sJ<}0P*QK}|mpOzsIMZRL4z>?wG^_`nz_8xA} zuj=u>zM%7-b2b16Zn*UAOhavdVDYG8eLSJ#l2i?TB2#$#s|nvjX4)7A)KmTM&%r}o zU-Dk%Gbn?{^V)pgR=J944l8ovSm$p^V zs!OfN6tdAzd7N0oy)U`<);tesrhChwIYbo0ipj4bQkUOadG+im+SKfm&lvoaGW~tl z*9L$Uv9eIgZ01-ZxayX**RrDc$4E2Mjn8XA28sBt^q&e*iXbkD8)yjRT&%N}IJ1Uv zB~ZU@;(d9qet(D#@*tt$NA}S z+JMz*z7~Day#24FEs+=;Al*Qdc9DL#Cv(0>xL)TUD)nO3t|`>kvA@pc>pLQeXitAX zdcUCe2Ot#P=rReCqcWZ%r{`Cz_hxI8jPg)d_pa^%Yng!D)xocwlODvzG8cMByjOj) z$oggJuib~>K;kR8u;K z>Ux-XkvPCN9RvsjFvqW+pF7BYh6fV9Ah_E{WIRoP`D=#X!xKn1 zBQ=B`=D5fExa#~y<_~#MvE68S`Z8iH7!vKj_iEKB^c!nMqCiK$0JG;_lgu9DlY`F! z<$!kuICs-URCr=uIgZHrKbJ&p8A!=f>NhYo+So{A_&(6r_>|7r&ZMU_3Xk*}i20aD zcMbn_0J@X&gnt>P$*;q%YrVPkF}K8C#?9UWOf9XA(vn^3>pqzu27(ieRWNMY51efc zB#*m&ctI`%Gl1`O;~VJ0T6Vj6&o&dp22lPeF2AJXXVJX5^pv)G4=3(busT%YgI+$V zbK-5&B93rstmUf1H^5Im#FeXbbmzc2e_+_$UO#gBeNH8 zmo3OwtpKaifo(U(lc%=*61P{dmOY<3YD z`rB(-v9?)ly5=d6mQSyde3(BGwKy>*9}+%4~YdXg-EAVmsk1Aw5;kCbDNJ z-t&`E+Bdh}6HE0sz+a~c{T&03B;Qi+nT8`0VQ{f9@;a)TB7*jfl8Eqh>s2K!c;y#A zefzH3pnF7${bS2kin~NlxQ7VdyZR11`8Ce-cQL)@&z%foADF-QDO354j0N8pvBM~> zdWIKSmdxx&-Hd?pwyJV(U<)7zpDjNKSYOXhTQID;+>S{MXJ|^CcsY5KkD4xuc&j2v z8CG%qic08Qb6)nUM{>4F${Z65IZ$tMH(_WEt$gl?av(fTdrkIma7{}6{oq3R=w|si z|H?RjPaj1ga$I)HDAXVH`4`#Wi8<5P%&EK)tmP%PxlltmFH^E#%ynha1yjQMy}6IE z?eM4lO{SNNaSeIf68}_-N=(i+P;nX_ryPV^kPzX)S--k>2G*0Htq+g#l`96k*W;LJ zN4F29{P@>N)eu2Pb)@2=@`CL)4nJ8}6I=K37VXKf_@xTO%1Z zgzJhf6nr@gx3F)4(&2*1PfzRS6mQyY05hIzc3R$Z&9eQSEv255`Lj{zk;!8zj}xp{tC5ENht`dPz^6f;OLZQGS!?rrhh!Ap0W4@jSTP}_= zb;jD)5!AtZA>Tsdw`^Pq{`w*SVeRhK5n~`cvXz#Gbh`Iy!<72^=Xu#*YcBrEoFUKg zE&})fln$$~L6?qaO8m8{0S4#;48)pW{d?@SeP%68?Su0g$`S;X*=Wj5;ux_GF;mPR zcy?aPSC+(R<-qX zD+}Q#G2;{(JVZ|z7S*o55g`RCum(4?c5BgI0bRe#Ww)`}wR2sN=1D+dyF9Ag##z0F zrectv;P{&`B}(R?#kX6a^Ru6|yL##;$hF-XPahR{n)n&BI7mm zS$!~#{8B>`r6`^^pq~el%8r!}`c4z6#GfHes+>P#z!^U51Af7W;NM_MgFdnWb|KG74H^Y6oXbw z)tC*VE6Yo>bY&7Z18ZQ@Rw?RVzw@f~*==fy^SuGsToK0~mrq@rzUIe*4CdJV&WuJm zAKbXFSYQyBl6}GLpF4WNB1^ry$Mj-tvo)8vluPB24nG+Jsq=Ii((lKHUz~Z~d!uUl z&FShbgG*It=u*HwvtNu!nfmuBrET_&xQi{N?_&|U=DV)mNs5))DP9)dwyGtnv~SBm z;R-xM%BDSRJo_55nmw(WV=0PA-e~=PcN&iN^O7!pSOT1U>F~E*B3i&C5t^9#BUgzK z?{5?Z#=c)SE6lnkan~m7oTEeE94tK9`;J_)|FH&>w#=tRdWYm!(qn3%{`({NGg};s zqePrtxY>f=a~OG@Re?nk4R4;zzS?1z}zyCddInT`y6no2i+ zbNFod*DSg{VzJOl+fZQ6R(AMOuc5ZZ=cgcxAoElRx6ZbXZq@U3zoCQKz~0xrlkzc@ z7dyFm%i7N0RqhRBRWfli88rY3Bk}06wph5+x!_VFg8}mO9T&dC8HNz{>)l_5Rs)h5BVx^qW?r)z3&B4 zCv?=q7=*B8Xr;DJELp>FZgPAg4!Ym+Ltuj}U85!fr%iC>X@@qL$2>GcS*pvcQeEz= z_)Z`|76;Bowt88>1U3*-H;Nukkue-Cu~d`Dbr5X5ldDVwUe@(J@Se5iU`19SyXN2= zB%8rXU%7fB8}IwMbal6`xfuwtoiFT7ue!ULEu$pz2@abGPjl3ixFe)_DGMEA;F5cRYJ>A<1<=-F&3{m)YAQ@P= zvbE2>Hl+}HG2In0ug0?Eka1w~rM=gexUYf49zkgIlwdRx$3Z#hhuzWZ$Qq# z&oO5snK4sGP!+7TlA%d_!gq}e@9jG|+W_Nz1B(2->W_}dL1KNpvQSsL&Flfk4QoN_ z&e!N=(Y0VAKU{cLsAVsadLAwg7?cf1`Lu^5m)_Ds0(onof)QAl!CQ1UZ~@X-tHK4X zAd3hPeH35z(4?u%FA;7%ln7veLg6^ys7|3pCthzY!u=S}&iou+>OJG82Hx2uEm+~s zMn3wq&QBWQ%zt&2BeuhSyx7@J%DG9JMO`8R1{H0Ym4*^^N&5_HtP^KWSN&33K8W<;$|Fg&H^V(sWM4OBT+zmbydcQy*^vw26DZDPY9(;y@ELscln zgKECz&ECUH*=S!NwCFdxa~A`73P^`N5!mG%!^gQvF{o~Th;A|CXQC6e*VUfwQtQo@DTjeL5Tdr&-l z-7!CsrwZom%c*W{9BVMT!ju&3e~MD!?WyuHRzdGqQ7E*id&K(&Uu1Ta)GWob{LRKp z(CXmLZQx*4P4GK|26Kfj?>IPBOU#7dUtMZODTM88e`KDA7#141Bb!KlhmraH!X2$P zBslp*{5+lvY#pd_lh5)a147Z>iyVS>36IJs0_)eV><>6n4!gvMYGK}4obU`JkhIU- zZpe;gMDdiF2g4I0YF$kBaK5cIOs70*-E<@c{UI>h1B_m8x1Z(7)HIso;gZ}68=Uj8 zc+=hI{*jvEAu0J-u&8hK1M(I9OuX55^7@|d((~o!o`PnrA9m>JAaTLKXcauoKUF8^ zIlEg&_&7_@fX&YM&+}=yx~wS+DU-ppp1Xz`-{ETqau@tbmEVZem*yemhZD8BQH^A| zLIrwE-)lzSrDS_edspn!eGeLRl%%3n@B0q3FvX<|6lfRgEd#+kyDTo+3C#v7lgS15(&@vT=+;_XNTd z;yY85eliVyct;cAc44T5TbAT8%hrShXjeinq7c+j)9WePUsI}h(41&~Ac@c%*t*j; zjqd%U8_ykiALr3kz5tPeQYH@x&wgb|IBeWw3#X$@61iD?zV>D818^)-X$fK+qJ5MF zv)@KwW;aOI^Zdbq>qj?>i~0z@QkI2MpE<~W6lA)7oBYJBlbw+{l+(@s+ZnNT70iTy z(7utr24Tr4eZk6EjF5 z6&Rxx801);7$7?;e6^~JQ$?Q6|0LuH4kVMiET@5?56g=dQQ!@WWGxJMLIK#gszT;RT_l6la?Cf;Oh6BF4En(Y)*ibC`g#9Lwkh> zV+JURfE3@_t+w>xu*pm)pYVfa#VBPW>3P*%$hMfcn36QPJu-NT(SH?voD48J&f zLF!yHZ=b=L+c{@n75Ed7=);=4aO+_L`sLPD zy#q{#e-(M>{i7OsO-!T~kg{tAs8S1nvQS%YC-s;Re$dKr%SD3s{kw80Jc05ytv@nw zIy1G|wg&pTCp)fl^?*ofJ@XyJRB~CmA@c(my`OcoKI{4#Fi^pQf$XFe5H~Aj&4Vm- z2>6s4{a(jT_pwugGnZ|&qB`@+1t*8!Nz%KzUd+zR%)_@m z>}T4^4@xC;K{ZSS!!a-91cEYBIO!->vhP!69o7>^U0@tZ&5lIcetlkq`Mh9vR(Ymx z3dWbJo*H_#H}z(55uQP}=1l@}D&uCVs}~EEdL!R5nUraOPi&gY#m9ZUjZaWa#%7J) z?o8NZ@{Vz66j`2_RD&i~jgs&%u_qto4y-0$Ehu3icU41cMkXTR11@~*l^Wx)7kmde zg;n-Jj}lnZNogN;Omg7((J(k6-cdS&V%mQ4te9<(EPSmj&uW&HMtdkvS;GAG+uQfon(Zy%FO-N|m!qoGjph3>hX2y74Mubrx~9 ze_?FZNI3k&g}4J1wgEYKhbrLIoDe(6&#(Z4{`667c&vYB>O$dPNRhaKF2(5k5~fW`2@!|4<(ZYtsMV%T z;vR5?seS)8J}cOENi)KS^D{7?KFf3b&mmM6Tr2!UY`oK)99o%1?n`zl8C(e!xqfc> zBgXcC92a`W+c(P8tum$@q%WqZBsf(@Qj?1~iRSCcf7P2eJ@jpw&LUarwSL2yXV^i-mlN6l!(x_>wv zu}Ttffi!372d45^*L{(89VmryUG;;J_<`v1ZCwi8o=6&xgCWCx3)|0d`&$uw2?g9I zErb&&@8i8v&f52Vgm;xgNH3$|McXhYHVO3v)#F0|;!#M%_!jp$BWPT2|Ed^q91*Kb z^4|K1RU0(FJ}k`|9{XNPa4-;4XF@1rpPIFB?~Jan zoV9EJVdZV~CR%x?Mf#5ON-q_u@L=!Rehu8CVyY6sFV!*}h^(M|pt6Y#KPAZq+*_>K z=>2@&voYG|?WhNTW{Nqod~DgCzgZI;ZAN(6Br5892umBxy*y(J>vhp11c*xNJ3e)md<_|WN884}U8Q&w8JnQ}0u>Tp@-+=; zFWMpKW1ugDl@#TnR**|kty{L?fPB01F&`;7W}alE_e9pLjud@t_4;+_scP#hrY~3_ zwQEN4kQKXWj-H)V`UZzGbXK}#u7k-^Jx^Pb!-P$Fyt|38 z-3;=lH!&RzUS!AL_MTH=O zria9#?pGx_2*hO5+{vwh>6v<-Rl&|MZ)kHe83_g`(o~^Vnc5P>BwLA-^Hswy$q%KM z#Gr{N59J2AtsFs|b%pMH8~t%e#)WjFWR6!Ofol>1qtCSpG^f1FN!V9A$I?-EBL@!d zra3IPE#gO2VhLW>;>lSD6FtU8#J5=Ciu@dKTX)1X_qb$#B6Q)ZTpr?LmXUS8a2K#z z>^+fwNeuCAoP+2)30nfraH?EpfJMm81mng;a~r34WoV?18w0}|FQLiaL_gj(0PN;; z$G+07Bd^xM+Dsl9!7-8TKPVI8V-PWV?qT%)Q<6o~qRb{;wHReG4i}U;>CuKx%)2}f zDiiAiXTEDn@Y*MWgjWtVPCHW9X`|_&&gE2TrObhgyORThZez&R@j?}uGSD-J_JAu% zKhY$cbkS#<5%)iZxPhJMa6G&wM3_4ZgBxuSJKEB|lLK z@xj4B=qSI1`|tdONrfVJPg*D@P%^V@!9(FL7q!$gnJ8zAb%&sCuQS+-9MzGZicf}; zCs2b$eNq1teD#tFbHxIoyVx)@dh{)pZ;bi#t*o<&-P>~9ee#vL^#f*w=( z4TE;t*hT)kf=s+S^<`|2?TM@n*zTKnv z*5@ft-M*UWrCgO9>NjTS$RW(zGgFiP!i)N6X0t@=)RrM_8PW1>>+cl1-Ki~hnNZ0WCHL3JN!CZdPCTtM*CVvnzOk~J#!0r1 z9{@{Yh@Eml8CIgPmG*K(@oVKvl|pC^e<<%EilbbE?%*BWnd?ma9sz6ZK#gvn!>bQa zvXzrhkxI}Vg{xbJEJBdZ=C5oaLAN{oN%utCM+ox~+GD`*8P_7Zk>Mb?xW zE4%e}MjI_$nZJO_aJ`EyQ^R&Bv(~ajsCm+aGph4hoEfCN;VhluCH+o~D!?B4`S7$% zyrn+ZAy_hcFMT^Ugpdy^hl(^u7gHYkuzr8(D_$vT5I#RiJPgL3Xfkxk8eE+{tx!_q zQ#;LKrXy6RvW6I0TjcV0cQf*rn7a<>nCEhAoqOne#4Kr?e_$+Oc#4_vos(7$uiKRo z$fu|6tuU9<{g`EXH)Ms?1=uhvQuQibI<`AFi=zX~ouxsEuGJC*E}okjcN_}ZZ4WaT z_r~>1hj}wTbwAbK6&&m}Ry>m$yw1Yzf|lxHAfJ=;C+rk>^bjYqTA+wfv`0{5pSY^M z^9;g&y0^--yx_p58$}>HEAg@9E;i9JN;~j2w1V%10`LqkEA`C5$Q?}j&-nR?NizCi z_;?b@VSYbhe7^=QX%!3+&hXlJ+{Yjpk|?fb6Ly=Y`V&=%lkZO*FO|H~f!=RHx3B<; zKY*4YjG}^$haTP{zC4tzG*`Ox%X;LYaJzjeVBs zItJVy)Bx}PU14i_bP*A(N90_B?iZ~8EJVRPkXf8kP2iG3Gi z68~w+S1w7qpi%b9*6ZV2H7x!%l(PG&a~RIUxHzkQ-utSK&Amb_A$@g-X9`n=_A1~9BU%sJ_cBLDZ4_Gs- z%z&>wzy`C=y$ObYc=Vd$QcsXNlqFrT|8&a zF7!hn93%l=EWPj7^+Gh3d)NiMJcwbFA@XbFT>&L3bAvc^xZrb@0IgW2Q?jm+mEU7- zCy%{|?bnT^ZAuJ>+0fo_>F%A3w;;po=w1w@J68#jzejt&hkaYyxcyl?zGM@>rB>W! zNHbr5(4J4a=cj!4;2FVk5M1r9FtPxI>*@7lI3Aff57C!wU9v1;8eAPyb{3U22XBb$ zTrtmXMb!-~Cv;QQ54Td;8QaK85`SK?_;|tOEBah&;j)x;AVT`9y%;?KMr3BvBz2K1 zTS(Dho^-0`*ME|#V_PR92`d2xjU_o<$`sQLByB%&C64Oc(+!9q4S`<$)fBYgntQ|G18{<}+J6&`lY5n9bw!L*Ojo(Qp zxD+vBrL(PBtm#D&7nJH9tEV`seTzrqox1WC3!bhr58&m)#=Vn^94 zVdyky7#d_q>6Y%g-{9Wo+;h&o-yiTB_-4hs)_VJW){651QOYs8_UxI|sdxl5{f)7C zlL5SG)5oVi>m^*7%>83C0boAEVGB?HmErK5Ik%{dm|4l%H;9+@)XbS>R{LUne+X+7 z(xr3b%9o;j($-FZS*CZXq}sF0kre0%oE{6;6phCG3cq}H-WEZ^LEfbzyx9-5_~APw z22U5{E!9ub>-)e)Bl#{glUyVNYXqI2(fw-Or8<;GTc1?a=#=4iLxMXYdn>B20of3! zErveL0G%;0q7h;-?OCJ|9h2!Chs9kra+Qf1CGO}nqyLk=npk*}K2)-f zh!9PYbc0?4$mZIgTh31vtl`C;TaMxbNk&iXM6b9<( z_i^9x9n3Ck>%j)dpf)~Ip_l~%WO6?9w@JP2oGv2A=gV=1 z_W(#L96`%8B4bmQRO>*m9}4xfKeIp=dnN~O1o#z-Zit3G%J*0@uA&_Ayv-vHI+XyBm$kQQZ7+K1;{k9R^eCh9)>%u4vUZ#+{oK zoE}(wapf2H@oA3Ri5E5HewN(nk{h@y3suvX^=zG9fctXAa}MO{=e;M~c*(&pMbQxU z&NOD<%WwGyzT$dL?=r3v$I%2G{yPCScXaULbxbo=Fdl#|-onL^yIBJY6Z zUa&V%NaVY$Ox{JXY$29I@b)%&#Pz4WQoL+iJYs|=yGbpLi%A0W@`C__>-JNh>}fee`#xr$54;aXzT^fCI!@U-w?W{;;66Va|6btT67DvRb$)I!+;H?_n^;IW3XQR_}P9}^T=I6`X)s8F4K0R^rHB-?xD>Y%0me)c{jZtKmKhG)83o2xRMnTgz3#}man|e-`NvjT92qns7n*t^^mVrzf@=X-! zK9uhEt<#p%^aU;=k3-h@h~aqV*G731_Po?>uO!b^EMd$S;~Wbudr(o%r*^d;IyrmT zC)yK0Te$PuiL&GMo`TI@MuF7nmWwuks|YX-XZb1ZrUkSp0T=0qi#ZR9pBr=)*xHx* zj;~4;#AqmEl%mGLrMyJ53LGVZi5+}>(eaCJVZUVZMi~MltMVB2)%HVpDAchji{>fF zSi#2gH3X!6nDDB)-v#o9GEk6yx~$*Fn@1=_=U-P1_Q3V-M?T5+!9BZO;>qmdhZvuG zHwqL$l|4!Yz3;QSUlxUF49$F+s&;a8GbW!57q#o`t9yjtf7o{X=JEL%sV(>#kHhSt zU9FiU!Br2}MSq@UtGO~2S+|JD75a{e3!eiI<3?MnM~syBZ^ac|3Ljb0A3fAnN|_D1 z(JvHu2L+CIBR7O1Up~uqQB))uO28Wzer+tTTFH!m4Wd`d@Nndxd6$VGoO^Q$^SC@8 z*w?BWn;zV$ym1}?O;9EIQ^*HE%=J)JIDZcWwUG_XY~1E{*&7Y8DCe-^HL*&>%0(1H zrjJi^9o+|x{HCj1hcjJYYL4@a!aZh&m80wz@D{<(cR!rJU|D?QU=8GeySJ4%X8QwT zTskf6%Y-EHHB+?P>8`rv5#q0EWwX6q5g>PY$1>M^M!yw1WI*K0dA;qsZ?sR0^-K%q ztbF!w4LzcnW!mQJmOsombQ@1_hOj;_RLh= z(|5G-S8<}&2k$|ey;K)=jO6Ng%bdi#Im&S?bY$h-EK3?aK}|$icFbo=A$8BKC{xfz zrgGsGQ4g3lq`tvxqY1m{<NuxbZT0VHVF0-c5&i#7VBRh<%uEoMltR1XS->5b%5nfaA@Ny;)n2`rXhn< zG^=6;SJx1s|1gl=waG*Ms2OfX*VqR=@^ParA(> zSK-E~87Ix(7q#umeOtyD2gN4;)V>Yaeg!Q)ulk80Gxj^EU%Vmjj1eJvaTOK%zZX@F zAK+yTgjW_^nGheJ&Q9xonK!=3YAwyJ#JX>{c8P4GUr+Jk4kErLDYPO0|yjl4g(Z zG151Uvmw?w_i9N4J(mq?p8q74T3b2@h{(Dk-qX`(y1}ZKxPcB5ioOknXcExz(B}F!JJ+deTn>yu<^v~ajf^bba-ZQCJ*hvYP{6K0~HSg z&V7=eH;6^fMsmK-FCU0I*-5H>ZCjLSliw`F7K>9!JU}}d4JFEb%CMN{^^QK}W@3a6 zfOG}!-=Iw3ldp$V4ELPUsd1ldukz1imXqELQKAb{KzuBZwq;~=kdvXB;a@7{9mK_&aqukOcC+e@YO@YW+Ml=UiSW)rAv;DUHg&WTl&fs zbWD;m!zj=Di6vaEP(nL+-(PcP;@A0+NOEXnX;CHaEis91gx(ADM+QKabv@CuM=|b` zeU1XpcFXu%Z&j!?P4LK5BrY}3Ym7_Ds<@NTUy=y&K65L2oJH|~1&t&{*%Or{YY|g) zHCFzso2acer>FJ*>bjb|KEF*n<=nlAGg(%!rJgd7^sN&DARkSTK9XCB5Z+Aftyo8uJ_fHU<33^#^LU77*XYcbUM%E(Y1T3 z;e=&xb1u%?tr6fntOy2C)>KmJppm8MiD+;V>s<<;-=s%q4P&qJpm(BdP8-yy(GQq} z{v6-N(oN-PNIpvbFWrxq=_$9=4PFRxdNmzt?&OcGabkLTebaEIy4~HhhL+z3Kbdz% z>js>)2o(9b&GQ8LFA&8Z1xEqIEANK5D@4{KQ-AtR9rRKc&Y@40ia5cKKq1h5W4tAP zx}+Zk4603r`(PpiW2nBQ!lBpl+2gj+0fHS6fS~G6UyQD6PuR%*i z&&{<-9n4AW=U;9ij&!S)JH!NP#*IBr`9}OuK0S->*$~6zc>=M)4E=PP@_s@4%RAP; za&TuHZz~Cxz)hutimX`I2hdE5B!|0Qw#W#viYIvZezf=`SY&3Zv~Fnoeq*TguqDr0oh) zG$Hn^Ez;x`qj=uo8h6C>`+eo2*@AjsO};evy4+Us?Ow$@J=VVrsQ&WEqy4~;C$tLP zsr^m(;grRe*)l1P*7F;HTtS-n%FG#*)BGY8J`zKkzYjP#V#%WnP>XR7rNJ? zF(d{L){by81-It)@0O9s{#t(oP6Zk~`-TI=wJ(SH65A1WS>Ccn`|Ggm?BLqxQjXG{)e>x)WQY=9>_t)^M#c+N{>F7k67jJ zTW7~WhnH3O?YrpnhuMPyUQvnUbrz|K1C{8>Bf4P+)jr0|Mnf?Vm3;q_N2Tnky-<9%;BnhhQ7YqDQa`a7bWE%T8eH(tYWMZ zVn0D<3sNlYzJDp7_8?PeNoGzVcUbi6WhXF5i9VYYXDhZ}CFCjL7HJihN#^O;$`45NPcbR^aNe$kmju|0Iet^3`%_R_d?`NbX7q4!_cAB>AKnX7}TAw1#=nJvr;x z5|oe6>mm2g>%DpLd@A}*fl$%+x1X&kXWE|A@+>~Kt%zBW4s~)f7PiasT7lTz$}5VW z58ZpY3RFhTpmzgWt4;bgc)Nxuqw>&u{9p($mn<^FzwHpnrJ3nkJotFvcjQOITViMG z6~@;&{#FRmFuWplqKYE70G8vogvRI-Kfc~6x;0JSP4wIb1T@;1<`UBf%8G=-4K$wl zf|eVode%4dj-JGOcgu(~{|MA`Fj}MT|HDtUhQ$`Gma`s3s3& z^cW5UX$OwNIIA~QU^}6S@3l=-^d0xbdS=jZ$^IND*5~FpcB^HXOWz%Q*6XUE$G@d6 zH3mrFhau3wIon6xI&XQDTzcx32eBR|Y*9Ph^xb?s8k*jjlZn9A&_)B;!d>REo!Ux4 zS#xg2s`89<~}%o7-Y&3Nz(<)K0+fp^u%mgBD_Z5uAU*t~Sqs#H(lw_TiQ1t((`pFk4OB_`|8t6QbeSg}5pmiX{^R8+N@(>6p z_Bg=0x%$`)mOM{GIilDO22+uzbiQ4G`N3-Zz0XIJ?N7!kW`Hd3jFWqYPdhW2rI1EJ zXFU;qBv1x-m$uv=dg~_$c}gQx{mouz@v?Y13$*4AtN_J>U}3$;&kP?MQl_4%aksM4 zfty9J#RGukp1UmK5*_gq?$vmGAAvKsAgo3;JD!^tz^<%k$E7itz8qjry_XVE^I7Gu z#c{1~aAsu{Q8J+V=dR*m<@pQqNhUxH`)*}_k$VoRLT~d2=3gH9#BPEemAArd_SrwV z0H}1-o%`b$kqH(@I-m&CNFXWdZqSTLg?+n7@7vk$FguM0U_B8*)S>mx_fSZzv@h1~4d#wIk&qtl%(j!@Ma@^Q zH1cOvkv_b%?JKQ5^AQh`Hv!!h$W(sO#^HzpgeK4T%YvZqqiQ-!{RI}8y`Oz)8Kr`< z7(Q-%i4KFobnX_kR7mR2HHQ<7dTK=wDU6%=+^gC_`q|UKkxe}Q1!UU*b z#?30Xln8jRq4cH3L(G_8;Is6HV98V#_jmMXITEs#>YGaF8;gD2&neH^mEZy^E^?Hg z%lo7LH~nLe*7v#?rpz6BA+=E39-Ez0rl9a0~=x*q^VBcXE)K597Fk} z{CSFb(7o1O=eOmU?BvR`;*!7bqWlZ^KbrEIBQ38zrv$!nEGPQM$~L|-fRMm47K%yQ z)(tHjU{3NtmQzW?X6Imfzs_sJW|}Pgh|S|E<{r@mw(t@9hi|?kchg<<8^%HwM!uHP zIN_!)o-ZpKjT*PsVe4Zq)d#;$p4y$PqSh0!ldDPo2GYES`FwMA>BZr}^6LJnDX4j_ z$`@C9=_(A;i&&ez`YET8*c>LPrC@~XPLPy~mHf5F;iHzUD!zxvH0ZnD#w1A%Cm5R` zZQieSYNi+qtY~fxtR-+XQLJBmg9ACv*}&SqcURA8^~EVjt7$q&cgzo!QHZkL(9*Fn z=9A(!;y|e0!og8s_;_F z@4TQ$=td5uyP24&6?fhau1qY6fu9e(z4h23zjfhkw^E&^pk?lky(UrQv9G+-vr(5L&TWWV6VALV=6pQ74m1 z#PxukY?x2Ed@djgz3Z?QS$@tx(|$k4J(#;V#4y(n*DS{19SaX!l4+^PoF5=Z=5XwP zB)qbX!Pg63iSk}QC72%iVwvD;SvN)}Gt6hasJx?|&jTV{%T2eq5WUkRfkGsqg=_~N zj`_$+f#sTmdPK#U-;zbP9Q%8v_1X9!i8m-Xj-^tCHmfm@e(oadC`4E&$sN=`SI|2W2a7N4%$M0}fy4B>E7F6C6c1-RkcKA{V!?)sd7KiaAKX(XNjhb|1 zuhTK@2Y88bTb%d@1}tl)xZ*!oKalb=+{{!e;2cw`@F+6RD$5nhq5L2Jn4em{Xp{y$ zI5kE3LU)vyv1DCQvpHuG%RqtpT;le`QdyQE;0boJ^6Nyck??cmi2{gXvp<`WET1+$ z*b$(*@4E8_0pHg2vUseh@z)r=^a~Vrg4~GL<#R<*gy+0n`#{ZLG0z@zDlCrX-l7$A z((>IbysK|J_s$%Fp2@u_Fuzj(I%KQKxd#4)|$mKH*z>;$0#KOfd4K^&hG z+sf|dMa@RzMY?f(pXDjL* zSHE{=Tk;E>0o=Eqg2fH1tUG_mO9?uI?jB!mowUQ3 zT^t|OZF)Ex!51VtKzwWr>**c(1PCpSZL@`gxSs5WW;9De@=BXMVuiYZ;ZlwCT3~slcbt#Fv!F9XRYjMmDoK zsgo+JDBLhJPW$2NeI^_=?weF2OEGFl`k==H-YplIA>6Odl1t58oJsjVHX`1iBwF;@ zoNc{A26Akm(a>X7nF8TQ`XP6PSfUEXtwf&g0ySEx_R>j+!C^`8+Pt?o{y{mAlFd%b z7V+R>k{u{s2FMSPE;0IaHEkK(pU05p7Tf+dY8y;#pB>gepuPD-6(uFYRWOL^*&+SC zzpM63+`OV#-Dmm*$WH0aqE|13cv~ zKUkV{XBD<}7X^(gGj?ZL3Wj5-G;}lr%_pn3UF6-f2hH$4wAP@)Pb_=U_SKtD?Vezq`&Pg~> zZ5vL_38$MVe=-~?JFbJx)gK59?Vbo)%i0&lIF?5N>A%NNbJ~(; zZO*u>p+2tGjqwcwQY3AI{T)ajUPoGjm*-Z2!E~wvFa`#gg3VT^kNhThEW;&w)*edR zQ1gpjH~s4WT>}dvdZ6L>9IvXfxok0S`Ql#04j6hFzwoDwY&t`%tBQ2g%_RCM1K1h8 zg;|*&diAKx)KCjmJhdqYxPt7h7GJceLvoqjTd%m0HB^QgKsJ|t1a%j$iR=LjRhPltQr< zXbccTrVFCityu?uqhCf(NxU?Mv_?>$ADgt77lZThXW@Y?6Zt*RGNnGIBfziS47;5WdO6<@C%ywSCU{1EK-Kt!pCTxG`U$6rOboe#gfG1v= z$~#JnsENqTnQj=S9ivH)=97lIFKbuk!RnBoz-7SbKpeap>$0iah@&(mR(pN;-wN5X zi%LdVCpnG+;(bQAZlR;!km0LMp%GE}O??d37qbw0a!!Gg zBLd7nf&g39Rg6{C+mcbJInLu_1R!<*x6Pfstg^Zi#ghph~i{Oy(2U|SU zEV^3$;^SQ6*uYzPI~_0HJ^|Fw{-WsOq_C25?qsm#i@J;*A)UxNrRPycU;tw+fyt7M zJqBMZGjil4J~%N3x-lr^$t&O5klOv`kKK!Kp&F1h1y}{1*OkKY^?v-+L_w-2g)C<<| z^QHHq)U_j2wTexMHD9KAENMzzHNtD7q*FHnNmQZ#9lylpfF9yfhO~;H279$m#j0Gi zf%4ZTi>$^YS!}k!;RSLASiNb)TJo_zStnMt&{Zq=06 zTC)jpKt}mlRTi!4DZpGrw(w?3U5V@-_ACB~jKyBIsq<}8PM--Z-HzB!$n(Cn+rq3$ zvl3NV4+S95?uZz6&@860g3-(5ZYDEC!>E)q4f zzAw6hx&`BJfw=hSxQrt?Kks1FL7I%2>yQn|nKhJ=fZ$pdE@ZXE$JW8S$WyW)*P;81g?9{j=VE^QXN8JX@_| zclv5?a>~o?L^bXS0VOUPA_76&4TIEfgr~r-$utBJl7u`p(?m6 zJwG{Tr1lsyCgDiAaT0|K?kFv3MMza z|9W@sOmHS1%26|#5Q5gO5p`m8*yjpRDc4+=-oeEVg?0e>=AAZkKsQ!50OWW?KHa)U zu+|ng>ZjlnTFXgo=bKiKFnW>Q4s6}O2QViI*6CzS;5(d433LBG74q}N-U%Z|X(h3( znKZB;)Np_}IN&q}UcckxD~iq>6v>&j0@+V}c780FH+#1cPShh6n1=rD9#%?CYLZ~! z+Sk9|Hd6p{02b?soZJOCdsJ%IMQNg;n)}u}7ObEHv$oh`2d~*>TA9CLy5^Ms`C6h} zLLE4k!3RRvI5o$p0zj|P$eh`pSydO=i|CPfgDV-Ca#Jgn`sg?i_(k~nf0&M9H z24BD$*@HECWfD&Cxsd{ske&$Ci1PK^WRvWFzAA;zu&+GarzQ=C+0^hqKB+|n11L2p zxZ*#>mpku2nFh$m-s$P2!||eap6TH)AB-Nuj#z??5}8yyGqM4~7`=G1A(qc`0Ckie zWv_}BQOFNH5DsRhljgw$05}L09+^5aB%Hh z_yRxxvU@o4Z2L{}Ouy&oS9reiQ^4O9;p!8#%1QmR3y4Q9pHd87o9(MUA_heLj#`Pj zQo$o%1tpT4NXH^q(#LBbdVhraFyj85h$(?JG4@X)MIbj;1s&8XTPnVGVgi8rw zT%!mSO&@Wl_C+dq8n?rhME40CpShQ7-YXCIBxe^D!x@v_(%YuMPR2#CgtLpZzst&!n z+`I1n_#kS6kN`B|6dv>64!GfCk#fGz^W?ZUHBGLSNJi;zUpava#;ry}lN^nq@Z!f_ zV_jT~jxtpF07*YG04QEf*o#A$08P;s#5qH34lHH@nGA*!RrHcfD3R? zV*jeuVn(VDrbapTmHRr~qp~wLi!`Zyxn5_o-4lGekF#(IsQ`k#{cgm@W9PmtgItL2 zWiT%oFeY~7k60Gp&9y40IRb&SG<=JoNNL8P84ul*1iB@KAsj z-ZiunIayA<&-q#kfPu7=plW|}=4dIWUzH1N5( z+WAH!WD@py!3C5Vz6AC>?;x?@!YOe}yR8xxJBnm(^Zj+5&Gz1oLWdW>nV+b5+sqk5 zG#qG24p|00Xm}fN{wVbx0C1-DexY7tF|r15OB?>!5mG+Ck?_xmx+RJN|8`AVYr?1U zUEh-nu2oEec1Ht@`ExaZ_#{X+=VuP^X#jqV^le4xU1;+M$wuRmWPczM&4bW5pXu8W zX-0}I<-zf@P5>bg<)h+RQO67*Qc&H0+3UutaX-u~&7HQp3Xr6`cHtrh-T;s6_%VI@*n{WP zsG8)@E5H~O7F+3=qM_Il5oPyBZHaZ)(3C@oUKJ17{doh~$vaj$xim!>5f9mU3*m$g z9429LCy9`lV4qXYh}VKrI^{>RZjRBRBGwC+Cx^mKXAs})**`4+^T=-0h3PN$-@aw| zk-z_JzDWk%+6#LJfS5%-Kn(8F+tXq|NbaUX>XO1$sNYck`42EU{qLV56EFiS1vu?n z>^?=P2;M~JBljZk*gXuF?k9V@1rBtkKys@L_mDXQKono&D?nLp?Av`oA>KZE*^Un(a1&Lef zk_kuo@QA0ntk-V7yVNxr!4rLJtd#Zv!nzk_nDZD1_i z^2lBgHsu$wCv2Pry9uxm{?j}_JwBl4QtmCTi|3=}E8^zc6vRLP3;6(D-`kI3SAW?E zD21$~gI46XG@|bnfDIy=^Vgs81B5mHx)1nt_@i#D=%-tP4PQzB{cYsBeEHdaF!~|7 zJCb+WdqOaf(OkI6ea)SV;;wn*?z?}_R$g3TDX&OnR}Zu4b;Kg>l~{tp6YHaS zgYI{AdC=x-DaulZbIhrK4=Z^%=Sqo3N<2#iK z445I|SP3c6!wh-?&a3J0gkla;qrSsu0d3g91Kr=9ER>Jh7QkTBIgm?Zj+N_dG+>Ws zZj`!k;M_$G@21R+1bm?igl~tH1y7bB?e+Pq7*6ltT?Bj@Ywy+7!4Dt?26hArwF$97 zJYTJnfZ{Qrz(~Q%_78q3z#Uctmhu3uf475ADX_o6J$yQpZ}3m2hHq~yf8h^HV=TT zKzJ(1&3@qZhFJD*u^Sop33^GMc(Ze!ROhBf$Pj_XDZ9GCkGu)>PI1m1abJPszQK0ZEvHX?5^Yzj zFH_BCgufL0KBqDup=)H1ERPz|C)710IX5EYDnee~!Hc>Q*!F`Z5<0FF62kjLU}$~% z`w-+>N~Fq9Yc?9dLWQUut)YkGxkZprP)jn{&bSb^3;Ez*Au|uy%*nyTGWrMb7%;pYkx``5(G~y-su6n zsAjL-gyJxlZ`59)g@>HY3HxVYv;}JgK^ZQ5Q+-%E0^Bm_XvU%rH~hC6v-q2IH{I17 zOcMrdQ^UkIZ>ryQ>2PAE4w#)g^EV>?+r?3DX{S|A@G!Fkig*0I`(&zn>-(L?0z^md z0jEw=0ZmQx&3fg;i#_jgFC)A*H!_T-of!pkQ2wqp(?y7}GRT%7t+kSKnR)oNGI^u) zM$iam`~`+Lud`LipM3lOvOHAEdGg<&vljpLa-1K6vbpVsA`N8gaQHLLs|-kD>#0@!s+& zXwdEc+e#e~9gj2Un){714R~y0&LW${1m8sOJj~fP0#Pwv)!&R2b1X@ymW}EV3kv8jOT}o znR8|BGPA=={Y((64@1a6agaI8z?tpOe`}ZF3Pq%{uAl8*rr(H_36Ka-=frF*z_-5? z0ywn5_XXD{di_$;Jt)&FreD9jDbgWW&h2L&{b33~WuwHx_Z;`PD7o!cK~)Q;!h?cd zO5+dQFT6b_4{dmG$b3(ItRr^2Ip(c*kJBGRKC$^KPb3V>IPM3h-PEAh^zG43{bhMl z$A4XNk=84Mb=vutb*1Xf8agm3H->AQj_o~}>EnL4>WnoO)0J-b^X0E|{N5hnq{|V}b7t z%3~J;Ew9SpHK(yAnbbe?J65hVyi+`_>AHdy%59^HUB}8k2n%xKkkti1WW&Q}kJ9*Nw+%qrVR0c`vSXqlS^Hcuj6X9SP;I1Cn-7KH3C($1$alS@l5H$F_VAyyP%R zZKK`t9~RXTXF8hFo@T)C1c#Ca)t#)TMi@vDrN)nJudmsfGIreRPBn~vP088hWgl;5 zw*FjuF&L?wke?OZT$azd%Ho4um2U8)eWmg^=2$*>S$p(Y)RWSPG~DvaO)K@4P9=J& z5cROI#%e}py(N!RdKs9<$@`-drpeA0A}(j@r%}J?<;hE<5(^wB>MpN}#2A>k)n?H( z_c>d)zW+SZB(EZBeg}jar^oAcJx07VGb?!-9FFYGJSyGq>FxVD$t{-jf}t@nJ1n1T zEMz)YgQ-g5!cT-abq2r?yz?VZ#*_y)@?}Vy6a|59*fY>BFQ_sf)%-n%=-QgQ&0#M= zf5UqFMkhw)_gHn4&1$$oG-@BBbhA*g!hDT&#=eE$ouQhv*n*d?`t)+3nEHU>{HlvF zMe#}>pYw|KZcF~k6BjVjbJXf0E3_uQw6uJ)xq(GoPH-_z`az&KkARoywsO{HmGM^9 zC)p_uV(m8IQ!Qel?Jg`x!1+?yrR`lm3EocqE=gQUR&>g_#JSjQmoz&+Xi^JKQlMySJFCf;Jr)Q_$Wo1{3AK1kmaz=a-7{CL1^H(_Ra zufpewMxgNEt5^i707H&4rd`2rA68@UprE$0Q;i6hb~^$Oq5zskX%kx0M4+&8r+t7*Suz@=TtbRapi#(i)D1e^D%Y*$0+!=z*}FT*Bb*_z#jD z*Aqwum}FX+*4ln;xtTq2y!hFHh!mZhwvje}fGhZdKSHjNF^5acMs35ET$~CR00R9u zE?vHyjURft`ee1dw?H&j!oG+hS~o%+L0>x?MC z(~;+_N@p-39j;*Xb#(8&`ZyM;fWb^*qh|E2f;2hoQp-COyQXn)09=A~>Q%1CQEF`d zv3RKjEPy}%xyH8f!>f(%1J9o^x)EId3H$IbrDT)T&7Jl^p*B zKUmC;nWTht#j#CWVCl{NmxKN2mu4%{PLW9JRS~7W_V|u#(1^$?$mEt*z4VeEF#43^ zOPx7Mxl`Y3`NLe}E%YicZ6`tASL6607Wn%5!l&Y?f7Gg+tzv<*-cD=rS$3eq{h0jb6JSYXg{mz`o--m(+4DqBY+iG$-EbeWGiL z*;{m*sN7Z{KBZz^d2sWX-%T#+0S2jhQ{Kj|{F12Io&X4hGb;Q}iTYArog7W6u&|b=yEf^yMR5&~BM>L=YFeu##YdJ$l#X4J zQb?*>tWi*DrDU@4s>}v|tlG!C-jUU2>!1LoV8i!-p(jQU$+qR0te%K8*K&1$o@IBYdTRXFHq7Fr3)`6e=~Nk zh?o~h0x7$CO=3UeHB(yFnQxtkqw*9`9b@4`l8%QHdbHPLpJ+XnP|SXRL3b5g<;~DI zFN@{Z5v5r&L7pL40IduETXWC?XgwUYfP%ojXTd2ikmrJ0Qy~bs0Af56CUP^GZ~DLu zdAKbOC}t*{XO()n+QlGPYUuLIr(I(`)p|+9R zdXX|!_Oksi46@c*;n)q%G7m*fk#@~Tn}=*>KOSd2kPNZIU>Uvhhak{1R1=TbE;?3F z43Ji8Ec_SIR*4iWU9k}Pv5H72@y+X^EEwjjN4=Om@E4@kAbq3&A-Lw?$wIm_kYe3K zh*1Dz0aTTBzvb^nqQvRg1dbM^&0$B#m&AAi%%8h{ci{mE9{VTe+__Q!5f=xo3mkl# zgA}L0;9|-&?^ogw|7#qY*tvbrQsdI|sE`s7Xu@?Y9u{%4+``|8w74mt-#`Ethe;5m zX7Gak>4x`7PZ}aGeB-4D(Vf`~3{Pp%u-%3Ye^hyG1LIFm_RH|d^$|Fx@bMb02U18P z+uA3A71PT$DQN?rk+Y<$`+Snc!z~PYH}VguUe92bcoz!(F{qI(+cD5`NjMWt>~a1x zaY#FSZ%S*-87XIwvp%SdT<4^pM9u)9ZRPScKg@uD%!BfWp*gZ21p13gY6w|>KS1E> ze-W6DyV=-R-bghPB-a=x-eo6lBRK06b8_fA`o{}6{jZF>R=~i&Q zn!PMzX+^3?Ek9l9OqC|KWEhyPRerymx7n)Tn>%lp$0{FIcL|>wF#r4Px+Ru&MdX7Y z!Mj=Vy1~<2cx1LM2W4F_-nDjTNd;ldS&Nnf_-B5@WO6fVtfKzh7xfvXLNi);UwdOB zDy^^IRc6}!E@#Z+kl~q@p!i3;qJ=eK4_l@fz%^_-kK}K08T{;)%GBk| zq%AY4LHyHw*zx_!q>%}ek6U@0@2I=vr|bfLG_@35-216z%!F5_eS6f>3Oeoslf*f} znyc~QjA|;!-$(`%ZWaW*c3$1ORO#-2zENw`>?&O|k-5(#v&w6&l!;s|1Ug${y|8ud z7Pv_?vzy0<%V`zuxE>dk(a2Fq^?1aNY`pcx_y$oYdafr0O(Ef5^|akZlrkdfe}3c- zFh4JFA#47?<8&0b1WDb37dKWpPwL%w%FM|QAu~eWHvy=?S!ZjYY;^*IsFssbM$^PK zu8D4=t;!s`VTIcN&`XnTwD6p*V$AqaAxrbzFvL_ud2D{hl-u-47u+9u+hqKl+KCw0 z1wfM#?df0A;emtQ1MNLvZiD)H52ph)3x17ZI|Yl~)ATZJ9w&VVc=K|Gu#Poh2_rSX zA)`pqIHB9$t2M+Pk3|p&4wd(dq$J+IDDLG!{@+=emt+besH-pqYuuV5mrTXLVxTmrOzqp zO5wmelCsdx9b(_7M=^lD(2r^B`3Tc*e0Zt#r{_b_-_Uy7x{Plz+i!Wu%A7E+k4xRh zTh??ed5op>o$zPobBSd%_ev_AS#-{IV`?+uX#ws7s{8;s0YwhYQX*7oc6&$>*uT6} z2Ow>ZD;BGD?OarImq`=xnggwC=aWy~ESBk%yhzS13p*=(Pxg9})_g1PG@ zLx8{D@vmdI;Q?@VU#P)Td^L9gx|x2EJ5NTsRIM;phnpksWP;~iLZ`U zZY%6{Gy3tD08<89YN4%`V!Anx972bw#~5JfVG$5l#F|hqb8r)Iaeu+RHSYXPf0&)Q zYU3ib^y2Q^XJJ;wnQrT;I1_=J%1?@0No6tE)^HFKnfgx=D&IZ6ymbu)g%`pX?cj8m ztEDm#TB1wfJKZf7t};(kl~DD9b@H)d2Mp7|c_VBKRuq?5dYydwj*&=Bc7?N1b|#|m zOJiJ@m-K=1A!Ngi60)L&oE`%Gl9EJ;?l&Al@Bya7CJA@j-s=*9*1ljiy`o|p3EK86 zY0G3hSFZ)XNfTo~2)%hcg+Tunzhu3`^( znhY@8%O5P&fp<(sOooqO<71yX@>2rLg>}`Ou*uozZn-k+aiR?{1P)VX7c&QQgOi-( z8D1j;V!)^{q%fEiQ^Gvs&W>Y?h#32;OWb3?$;H&!@z5!rval`Fc8`2Ox!8CO`zkI7 zd;_T(J=yS@>t9|ivtiHRkn|9m0zf#iR!0Z5K|XPi=r#OOak@bQx$1Nyncr%SWUnRywgu84w z`m+r&i)l>okcn{WX|d=Al=L=nPDYGz*aoCja|T=*eeCpFPl03X}@rW=pLIncj-kv;tkr_rfX&(T5w{+yhg zw_ihGsC|(s;fRp8Kb>#QC9J$a^fM_VLVP{3?uLiuSV3O7o=0K|&;S@Rkh0L>!zpXV zKK;uCVL8oNvr_YywZBt`U$dT0Bz;pT+L|qc1ck+l{X^SLQr%uI0}b#TwAipk%S$DI zyD!HIQ>E2N?`hy_kfF~r!Xsk_2E+O_E|o&mS&{AUzW7Q@6M0d=orw9?!JGV$6a~Re zL-_ehm|7_Lfp~1VWgJuc}pjGhI%~?7D9#LbclB{K(i1E}uuqTNON2gIBWF zjgQyOtWna+%g$empauzqw6$rf@6Dy`*IEx?6XV$69^Hne8&(W8XPGBf)c6i{h+PW( z^1X-tbL0!CJir%>rkL5E**Ol`{Xq=t0VXw))-YfRmS9_DboK9GX`6ohIkVP8O3F1h zg*<+lGkZ}xw9$SyafMXHR&fB1sGbKLti9-FUs+eo%$T-0@MYK~TBCOyu^>oDt|_Q-fO zKWi?Y5?eWw!ahKW_b6csu{__*ab7a)f_`aG$V=zSVv zZTENg*+6*QwSiedN_!<75DLvGu(naYmjb8R$;sJwoaTy}E<4=3CD7|9Yn;%4+@?2#3++19yscIVAOmJ7we}+))&lR^MJwsLS!;4QFC4nX~jdMYv zIz(aTImMeYlL`2m_>a0bea4j~DFlq3Zvb_0w(+L3>uL;K0C`RhKBDQM-L|?h?e&=O zpQ1A-leFd!yUVoS%Xscm6n?S%yi%gS-Km<0d>u{ui|%yELx-zkE-uD#{{b7Ar0yE(RMN_>SpMIK}Nvay0p z#01S-UX35l&RlOgW>Y!U%(i2g-wq4TNU<=`$oqq$<99u|Bgs?v2|vhI~@fq_|{uQFsby!$SJ&C2pv0hSh~#irGRgL`;R*Ob;zM| z^&e*EIQ-kG9@0sZ?CARj1K=c`=HGFhXuqHW)`I+wrY9@ZT@$@W-OxqNd+tf;EUYX; z0{`&clE$}Qq5^xnEq?=b=L0pqU>GI{dPvjC)f@#U*Xj_@co+6Sbe0BWB3XOOL|9Cs z*ag|a&brWo=5iykvDb5pwAnZLiJ7x1HYdXDa&oipJtt~I68mW$(eGcuceeFa6h%}k z0yUL2XLMC-QRpx;JhKJBh>JR(&yvKq`$_Ejl_MzF!B;{f?z4b8ak0Jhe|H_w?PC6F zFo#QM=e018>yi5O*M0GX9PE#?OR*y|Ea|@Rw{qZp`fq7hogiIO3pdKaV7r(*t-OJ% zYNv&_^BF{6etdUK7HO0cQV^_$P)H%QpT@#`S$wn+s4$l|`sQcD)YlZ^D*!h==94B; zsHeYqmaTPDHSNKAO*kVlotMGx6tvL>+aKYbYVChn> zzH)EtASOfAa{qqqenlP9{%r4V8OV;JJtToVj{|B#!9=?aPCcMI!JH#^RNwGz`k$oa&JC9D=+&FUTRMz?PEwxHMIW@9SX?IpnN!ey^9=aZRKvK+K>j;hO>M zLrt!X(Q6N8GW7VQq5l}=95!(G-9$oUko@pYAGW(>;NsAZJ6bPbf7#}D59&{6b z{(N-~2T)>ia6TB{mDGiq+A!7duhtR5Phr!d&!=oJo^!4|T*GgWKdt!)*U_%M`JRK; zDz>hDO1bKDoI2~AN;7?)Gpggn6ofqg(|1W4Z*hzM)qYufOYhYP5J(^>inXicV0$}| z08=lh6*0N?5*n02=tgd^mHaIX7XQ!WB@vbbd^4qK9yWRY)7Pg#xLUaY5u5V=YPEtV zn8e{1C=PhI|JCy5mZ=Gvam*aNvJ1b6Yl>j5OmsV4bc*kkh|afukILhFM2_za{V>0> zx_UxRF^(e%bC3P#i;w(nyKi(Jgf)S_!mRp=us5c(=96bISG!A-g%V=>2Cq`iV%NRRjiT9U{o(#~dT&U6f zE?uDVg(i`KVar-vpSEyLIYH+{LR%`Nb5$0ZV`<`U8d##>?h`-ce^Q2nAJuU}yXh%> zvg`eOb{rcNAUIF&XL7Om84}4&gfxOyUhYa6eO9hupBX#~W|qwk_%$>oakE&Bw1B#^#6@jT*%ltX*sflnSXt@!je45Y#s7B$se-%qN!f568n;#bde)*{>Yz6`P6EF?aMsHGFCEjya5rq`xhWb5B@QbcyVztY^BbA`k^I}Ej`A{ z?>Co(f}Gq%ev|7H$B1~Z4*y4Rw{B6oEy}4?+kwp7@@=Z-_qw)cf5D9i;);rvc!+D>pc+4Nv^)e3ql~4D`obso&kxdg?poU5n1W-oDbMmV}BZR7$3ZmdIOk zKh!d&Po}n{e~%R<1A)EopH5GmhaS?G#+}DAIL(zjzKz63zQY>6J5S_Y{;aBV9(dUb zgGL)4k8d*67o^Z7O8Wa#zbNCo{_^;m{!vh8uz%RFwpyF(6Mr)-mY#NC3WZV8<3*2q zc>H0?#e`CG+80waN|1Pg`$Ro!3cIxc%E;p4;^z4sGAT(fTP&Rt0~6DqV+xHQ#W->w zcjk;YjI;3~rptvb4>_eTtW`jfYvsKX1|Tr>uDu=RxWD_N26_2%?UwoZz*s!e+uQq$ zX}YMWs8BtB)-e&*5%2AI=EmS+Nk&YpohF><(;}w=DiJSp5(}$c2*r5_%Pkemla0MS zmMd%X->x4kf9qE*8JIpKHLok$Z_ihnU~$6ncS=)?v=1`%>BnrC_ZHPr84|>JY`@#= zQ$>pW)sc`yb3X*ps?r_t^z?Lca#E0&uZsI7;X<{{8Lo@SK&v3U z39_~CQ^pUvoA92%C3m&5$VVwDgMSpEj*Y;|m#Fzpz%Os9ARE9*!|{ZWC}(u=hfaq# zQGbh|W~j{Iu}bURri{?$j5qRKm0QzD;Ypdvl!Y>ldW)HvnRzn3pxuXE$^{g8mt%Qd zdybxz+?8c?Idh}bTvD3DIl@e`iD`j-PJ>ZQ$P7~uqBAwyJHeX)(DNU)yM5kl`|uFk zzPnInl+lN4nMcsq>W7V`lLs?5xBA9ggTo^v?O}6-w>=Pn3u{^#ClZ`9jZ6tPEi(C7 zsrBtb`uI3JOmy^Q_dRa$W1!i2PUO+#h=}Jj&vm*SxyzuF`RRNeTHZ#$g231U1WBFB zFoZ(pUDBV=KB`21f!CD2zK3EcLzHlI)W8jPFjpm_b9m>SDzAn%7B<@(SP5u>$@2v1 z;ioWU*fgK+6JO-{2w$pKpRxOSbJ_^{58RcdC6O zfqqCc#CtP#7B$lJ@=^$Jzy8}ZROIJ*4sJots3;BaOo!(Q;KC(DIV(~C{uj(ejztQ^ z{RF2{V9*01@c5AXTHFx`@aKQG_wEJSA9DV;{r}g9)q0sIgv|PQ=9s4ykArr48m*MW zY&yhQZB3uleDKW_?Vl%3p8X%-AVB9U59qr?-Ddu}K5JXZdCuIIx5w8)!0g$F?j|m? z__ttsA*1V&U*KOC&BYEj#T_fcKMEi6+VEE)?)-&*hLZSmE}+q_QOmovCie=DfEIbC zXW@GuEDqU6_!xp1xPdVe>j2cKHe7X=G4ek(TA|zhw}7bNg_I{;EU?(RA$g?+d%Qe& zZrpAqtIL&5Kit1c#C+~VRKybrz~gJHY^59|d}nAC_5%aoBv+O1y^%f>@0K1iBD~tg zZ;zANygz|XVMX`ls00v-?P2neY20cFG-7$8(P@{7xeP&NSR-aK{0 zSvko3)l-E{md?-*dAYvZDBAo!wWZ0#K7y_EWoHZ$Oo#%PuBvuZcxJ zvtp<*^xe8cSef9@SIJpFSJG+_DO{l08#4_^4%=HWp~x`6GrylOaQP!7yz-fubX2oT zbJW-QUUXboQ8;rwT+J|gGS1(>#|u1?TD1CS=Ah0@qxW9MA_&h}v;w}NmzjCgih_2~EP?OizfZYaQ}Pn19f68;&ZS`9oP(WY)zM7P7A>tA&3Uw;ux zwlR`j>gu`V$DfHd-iPMo!P;DuNX6K|#_X)UHa)CGe5~a_l zR>x*0yP2M6N;eu*8TQDSKc~g~E1grehbiEACIt~De(NBieWE%$%4z%jan13c_T}Xqp%Y>J{1F{x`@)*=wXBbikB&~V3sR10BBdb{m{ik%(brCYGb3}j{hA0=OZTve z@@igmE+HAB{oK-<&>ZU&ICK=${|N3$SPXW76a*NMH!^Yl$p56MX=6N}%l~COu=ifA3E#{Am={WrN8Wuj z#mcw_5DqnUyshaV2c|-^J9opS+yvky>7v3)dw$*&JzL(9seVZFL4eLpSBgwITou@g zAc$eF15%6Rz4G&Zlb6QPy4Z=L-i?=2@cr1$+4G9 z0r5zCd;$XMPhz5gpbxa$J{#Ed*eS_SBB#$_Q{2`bJ(iPvf1GH0iLyN1-~Y(W?9z>+ zVFiMdo-Oa&-k!JnV5K1ggJZAP_Ss+7_37b0e-?DR?Xkd6fg%+BE}8F#@lw96_xZCm z*g;cD6EW`S;K08RlMoNj(C#fV0Btq=yYQ^5C%t(ifW{EnI_2UI@=E46TUIY_4IaZx zv{izC^mIL4o?2ND26x`Y=4T*qyg@=TuGE&3LouIye#a`%lC>)%#*)^Tr5-F8-f}US z_seG?>79SV^!LI2T>AaWM-Dj%w#Ymv)KVAPuielYki_6l{2h&bR zeec4+cuU^03Yh>)wxc5W_d|SXhWTT#)U*pK;q>A{fw3~ADYKxm;<9x+Z0=XiFH&3B zu#DJQOD}iVJGX6Zm$;0_l`5`AA5^s#TaMj-ydaAVu`DN1p41j_cn?=)`{g z;*@)`>D4j(h&E%_`h3^k5u?^%kY{RTda#UWk@49;rWkwZ5gt|m900!gS-vh%4oX?& zV$IgAm)uRaPT|uOYx6deB3qY`~=#e&6#J7Nmd_w{9IsC2Qk?2oH_lfBLkm#pREWAK5Mt1kQKs`2{8 z7LNd!t>&BIQZMBVV^uOm_34!c&iVk}nRa!c1$P9>ulv3=P*zcRU`r%`s!(TA!U4xL z%|MW2dmUTENf~r(XV-={Cg9W!qjB)6So=r=xyqA3T2q@($w_KQ{r*#CR zGSVpdc(YZyn01{+znti@%$u~qH(h_8 zpNF=|P=?m#!LQ3=y#(=p_i-)NSZo{hB`(D3XC)e9ki08E#-;>8a~@8W17i|1)QeG;1E$wF)PDqyH7r489!kH+7W z7nxjaA2I_dx{7B+=`(p*S$diz(k)G=67RgLn5eG^csg32njh)+VbTdrGp}s1TXGp5 z;_LYYK(1Bf`^m`M{0d630+!KoPV}gMviJp7CFfp!(%>sE+=n69hdWhIPlz2{KeRV!vurnV zCROk=FXouFtg?I%TG9tEb)4BAN1DmjTtm^Kqyka( zzuBwN-_$wZ1nfe}lLtQ$P-g`KyKLoZv^H+SrvdoX8V9U8bm`<}c^q+$(9y3K=Js8? zk?4hRRffg?uTYSSM}vb>M_D8Nyr<-SFXRh6L0dgOfKHe-D2T^bO47f0XLAx1F;V%v zbweGSSIMo8_e({OCsKg3P;g+OqrEHGPME0>;HsyF_?L^(KZ`N2SzGikZOvxcniblKT22I zEqr@>APzu7?0mOl-8lM+V$3>MzKWkod14~}Cyeug7R=|GqDd^0vt*1F7DVDH>``!| zV`=WWD$x-}3oVs9Jmy%Wj%Ef;UFPhn{Pj7>BwB7~@rbJ3UoKT5^2AwssOv=~a0;Kh zG#1uXM`_SAh-OVwt4tz_0`hKXUK;GwVR3@Acp8Q(tn0_ZM=}USS^h#Jlpl41v7TD= z3EKDmQhD+!7kqA(Vg{Uss8G?%JePwCo8<>~kr!;wNL%FbK1jzvxve#VMw}$frS%b7 z*(>RfLr~N zltU+xGuW^UfDEzsv9ay{Pur}onf#|$p&lBu-W$a|CX82c&OegxD$8tr?sK|j*WBsP z6=rolm_XX(7ki{zZ^RhO#u~i(?*@bb#WgrN!gLHsK$79876MxC4_1x(Ki=FG|Iv?V z%j_k8*aW}Ac?REiz+>0CN%!GdZDo7%gU`@~-9SK7Z4P~WlJPMzHlO93gV!L{V+mMX$I3O6xT2*SD+Lq!y#G_z}KT?*uUjkdOVvg`{ zONQ*$;E~ZQj(=iySGr0){fKP5j%fYju^jX0g>RLl9vxj{o9`7my{{en2Wr7I2A6Ws zDRjPXVSlzk?+a!jHiU-*2n5bI#%S|~O|}d`oR4LNa#yEAU0m?zPXpnWjKxy>*W>>T z(86q5%`;rC2~(a<5ZdG6dujCDfleE~b%m4g+TF!oEBO(p$pGqejTklRX`X@DAYwwEKpev* zm}r|&@S$mcmPF*f;W{t#X|Dr1z^3AuM>> z<);yk?NMEm`%8o^^Je^`MOlO6g49~;nV%-6el0Y`pycnyo3*d5fZNvg!y!65(8~L& zB+gEWRa0=P@H<9MGSr9MbjRW%T{0X$Dco%G(&Y2Ki=`O6n;yfDnLS+fBAOjW;;^Dv z*N*$#POT%0qk++legB!G%)bHB&-MrQ@^rWOq&`Jdu}E4uL!7gGLtipt6frz%r*#Bx ztr|Ul(3MVYv+?VbrEm4kDTbz1T|KU~p3jn8-F_UXAY=%81GOmc54Q@9aD*|m+?rf*cErx+LzyCq@yn6bE-e?P-ye9pz~SHM<)AG5iH4qD-bjNApwYQi5pLvwJ3 zTqK-U7^2!nA!zc?MdBb*df@(+%+~GL_S`IOoiyU6!rx1yztwb^Xm4>(CErkE^8}=k ze>@4hsdd_|Hk!zu46E}~?nq66$}&BFC%JV4@>K1DD#@d7uWqG=zfMLcPg$?K=k3ni zEdP+)bJWidv-Pe{w}R|aFiH-yqa(;CW94ri-cZJuft*IKd0&`FS*S?79i5ycevc=y zPv?A$H8%ap?H8j#%*Cmt8Or6-`#Je7<0q2J?srlL5H3W)_Z9ynS*3e@Tg%#kEf z`}IRdwJpB}j1?}x9i7qX_4fLvdW7%E%&$l1gX&;N-k1KOQ=6pJu-RO|og9`&CYRE3 z`NP+fAsfPO!RpMRWK6Ps9%Ha%RKhR9);E6LxdHD;VkQ}f}sL{nbPj~%ra9Q}) z!L)}O@4uip$F%A2NpcL5@-fO7obH}qNdHBhA=wM>?+WfOElJdDT8_=Kn>w)#Z@Ld^ zJf`Bc+`lb3ZfJKn&BC@r)UNZ~rCKb*IQ5f%Ll-$LUOgv5m-OtBA|nXiI=4E>0BvPs zhwxcj%RuJ&=;(-vfdMsm$|oCrJm#P&xDrMQf}bqOq%gwJ$oAVMn~{@N<3SG;JIL{i zl3*2i{R843W0EVw7@b}ika;y&xWO;eOA*J+F%*fZxa?zrsdzN8D^LgEKmAzMf0n1g zgo2xRAAKf@Cf5?1n4;)V#1d)B=}aY*^ykYw4Xy}ouxY?5!t=t`lD&8Ydg z|2`W@6c;%x+GJsk=#pfa;^C9RsAwizB6~JYIW6q$DeDn4MwBEZutr=2K*x=+lw3j2 zi01=iGrD?_at06yWD^*(y*-mU+;SSjrNqqgR=l?R%N72#mcI=apgPCXKj2t0@vy_@ z!~uQTv$4zOB*kI=cZs39$J7fE&kVc13Q$lmsnkyRR?8=yLpD5Xwv06YNlhx0)XYTf zcZHuO9s|K>FDuD?G`cG)LHG^-XBl~;Ow?v#T$V4SL_tdY>vEo4k`DzO-_o=@ZM=hHLP?S3H%+}YI8j{x^M;Crfk;%g=aVEG|{fGA& z_*>6nfjX^Rcyg3+u=Xubzi^E7$~x!^|6swlkV7q2H>GP~P>S~-*%g-@fjmrFFGRde zU=lEleyG|$IT^A-nythQ`HkolM#SSzOBfI}{FlG*cyrU$e+9%Q!>>{^Ak-)dYrPOU zI-R3{Z`Qf%RF$8SPGOp8)=;{8lp$ZG+RNl$Grk}^vNA#Z-8*P)*tD|x0a*=!>1Z5J zRN1p!SZ}4J!=kTF-_(?NelTZSkXaoWk1|qqj>|SStgQ>SWEP~{MluOiO#a!O(kkUt6?O(mPao;?%=h+xSz9RdR-D~oe@)1j`J=L;b z_t$-`ZE4{`qfIpeJ{6p=FD#HDEshDlxwHn=vph(LzGhTlC6vngFca``>5aHGv($eh zyWw(XTlVlk0G;iD$#G|;GW4ZjZ@W>0pIQvN=Vmt6UhR8LdRRQJ<{lJ-hD1)Vs_N&K zcFT81p6Yb`!?0lWGACx<*uUhkBn^MqK3PH=Im0q@M}18hF6lEE$5$pcK9b`7LX_cn zQ)>4&wt@Mu1eoV*@C6dU_t?NkC^&7);Aov@Z2g`7EV166FYNwO`;szKORm}nIqFh7 z4@Bk*^tG13A>NfiD7aU33PMJsgqx*W?_&=UX(R+P!RdN%sa?WklS4qvQ>d?}49*vz zB@jX;W4?xvph&T+ffnR<>oVTF*YhMiZ)+p*p9GPMihpqy3|2!} zk*;>SA27J;dHPR!xIFmuJty!)Qq)N+S8znS7#ar1{y@9=ic$Mt;taCocloMCm^cV> z$ZH6k!XH&mzWQ^eM;U?ZF(JJ-i{&+gV{hyIYC;5;WT1=0jLPHxnkPMXKOWk%z#UvY z6!oUiwr*tShIdZ=%1Sp&hxSVCpmn}A8HO>bt>Q|qYBJx;jtlO=_A9{xKmmQs{Qf~& z-p{L-`=U~O+XO?#-qyT*H~%W7heIE%_oHo8iQZB&!x8ilivuAaw_pXxg2EG5QAyRd_A4R>{(v-9YAK|&JN zoFe$y?nHY9ue^Ys(>oh8HF%HvPu>eP_b}au#zw$-HW_2wwtigIQ6CqXc`(M|HqUVx$G*t{UpZ+J`<*&ju2&=FU zMB;_Pdy7SS&o9@kVYC5$%U3-oN zOO8tZ!+69bsU~rt1v4bU8h*I3B8lK=jF)=|mwsI2e?Ev{hd$05auF0Mt|AqF7FD&O zUPNN2>AIp5h#jq|hwaGCpC6nN^pvaZKu?W5XSJ?7ivPsOB%UKooGAY(NU9n|!)PFQ zJuz#90iAIA!V)cyu4jlRA@BPRTneaFr@yx-1O|{9v|u5yI@PxXV{ed86{jcyMFUYI zDH~)3>A}bA!GK?qFW1gyB&F5?`Ro^tmPKil8XC~fm;o{La;7HZ!DS<+WD^J4Q1)*t zfc7v!#%EII)wN7-4}>Sj>(5xka&de+N5vZsKX9jiem1rM8S$^wt7_qc_D@ z`N&W~SFE&R=na?EXN$dE)NCa^FghnpTJ-V6_Y;-=2BRPi=K+EQDTxAF3*T%nfe=bY zdh;#?I$`?GZIWhJ|?wgdylaC$i>K_3R?hh>Ai$Zsm1j7?Xl z*ikQSBZ{Md!*D$MZk(}EqKc^y%0q)fwE#kroO=G;<#|qaOI4thrG`vc?jFIb7P__d^qm z*wBioU8!f(8q4IBn zTL@qT?l*D-zj-SP2H-^-S9vVSK0wi-@ zVfsCH1dQCfIG?sM`*^e*pXKwedcY$<&fUF^<|{kkMY71%`yfpjD!+-4fH}9ngR6^} z`bk0N^*EB}0s&oz$McHZr1sHFDZ@G^}O2#!pQj6*|HUo+pD4&6OFK7LF!5R)|l+H)Ep5!zhYhAJH6{ z8;sy5zy2>m!!Bx~V!>@&CKdMfmq63K%vytO8;w0L$woIC3qOVSBpCh^4M1p&Q~N?? z!;_*fL_l>5&B}H=>Bea@?y+PdJoD1nx#5 z0(W(M^UDuP)GbDfQs0|P7%E=;7J=191!#~oF_`-ajOF(zwX|t9U2xNW09|o~ObMDa zkv4$OmI5e_fG8}X&SUy_LX$Zm+*q*9ub@4O166nLlMg%vrmSt!n_TgXWUFKrz)ABREzj9D*gD7b55jAxhvm-rIW z=3`g}`(b3~6^Y6)u;hWWX?MS)aeT`OMLXTV9f^hd>$DecATaUoT}`e2IJC3Js#E95 z`ud0s*sG|=9~D9_A0HLo?!EhsN^{2ZP@zYekSqs)jry&EaeZ~gX9-_a zM+8La06ce(9QO-!KfeLVI^HmFKb1W=K*{C7#H?(xZ}?Nsi{WSLs^r%t!GySs_^=Vz&5wbiyveSnpTBU*8uH(i{TA<3M( zYV=5#MD}+eqp=B4sUu#;he3D?6o8pOOrWz;WBF2rvNRzBkp`Ein*!TyVb)wPmi@%I zm^x54eEsxVAw*Rn^!TWm=~Y7ygY`T78?vInj|Zuj-FYX5OfbzN6nYJqiZ-KR5AfLJ zWm`2+%y)czJTo)%P-`N0N)5a#uqF_`*Z26nZL^5vJk9fzr$uZi-S*aERT9iKZ?8Q9 z1Ave2sxcI&ZBJp0c2E}|gL2qX?Ve_2p}z-EvH-rT7^QS%4{g9iV|T|d3gSF<-Op7Mll6TJbb64TR=d$N3t zmUkT1bU=myW?+-?1G4?`=yx+WQ_oL^Zx{qlUWv6NVghA!Y?;Q?X~MHYjdk-XBdtI7n zusSI`=qzL4egD&2)8Ow8J;>**nEvneYzh#bRu5hypLrWVqOp33Uz!;mxbz3oNdPQ>6cQ`L8p? z8IPa=_UGsr^Jb*=pP#~5>cjpU%+|*8rtbq%M-!t?;3{a70)1@7@y{+Zr*fTVi94^g zNDE$$%x1HD7f`Y=_A2OHm0^4SdDo77ncZO{rV&dvtjt@*<_<ssFH`w1vdD|{@rJVDR}l{lhOy+u2LkoS^qskt$@Ubtx!`mh zH*K0V^HJ@Kt~UuUXY}zDLe1ZqC!`J{GpZ15V9JGkzSTA7k|VjKWv`7=0%`Vrp}_aF zf|d{o!Do-#H~4EUR~DFFU{tLn1nWQ4L-E(KL&*~t4m)Sy&19!M4M?Qp>4Lcb*+S;a z0=z=e>grwp$_ri|v7mv^#zOsqu~WjdAHolX`LIM~6Oq-LlR$d%<&KN#4U5-;i?5I;Z?ah3QqcD@!zGT@PE-urph%&ly6aT>AO8+s|$>JvMGLNIw=Ow8+ zq1ba*E=-y@?SacoV9Xb5#Fdv)-3Q-78pR5o0gm9pWZxoT*pwdq_SEAffqt%(X1Z71 zz%kF@oz3Rh6d#wISFDxJ=dcrNi$1lzL)Pb;1)jRm&T=mzfBE-e3+KB{K0X(XztT0Y z_n4kh`0GhfDGr4Y>=*|9j%eeU4Za%l+*cRJ)=ILa_S<+KCj_59xVa18FM|Cfrt~hK zanLVJJ~dK@fB~xP!`&3|QMHKA{y{kF%lY1}DBJao!P?J{vfu7LV7#AN3-9dHXdeWE zua54uI;8;8eDKMI0)1hC!DFghEe9uS!|tWUFhl9Oh6<@cZ$!dpMMIRb!-5cUeizi8 z_vW}1dpZhC4ouLqJxz&OdtWm3nYh#?6FZQAdYLgy(RVZ znW1qje@IFe_B`H!T zK&y0&`_zJY;b!j7d($tz4Y6@QqDGpR>V+#eqnk5@KDaY9>{8Yy{UP3x*^_3psv`mX z*N26*oCfy1t1BN}d*aK{97gctKd0eugy4;dtJ-b!?iz;F)}-H;8~sqf|T2 zYi2JtY$o~wA6=?*f*fFUKhw4uw_&^%lxDE}Gkn>8&(#UXugAR+r+8AF8yyv-xI$3v z5Zl>GKuq+fg!?340cow4YR0Ik+Zvx#@e7rf!kWu`xD*!b)NAH8^CT>AobuH`q`cnZ zdKcqlrls~z+?kyc_=inIN2nclN5^q?SbUv$E(wIN@zWwzw9H0Ou_p|1Do=n|GE_GSy`HKJ0?y zIyvR@AT79N)LZ!?nAGyM4x)K2GG!#dA;i}RzyT)$paK&_Xd~fg z{M^<8f=MWemF(+ztDE=OJnq~35a#w?N$Z@@xJ)btp7SG=eJisE)eke#n|PiK1AqF4 z{{ZaBZP#y9^M=@+?kfcXwUrYSa487`(?8z-8T(vWU8N>3E|U>&jLq@vB(#^28c`MJ zjf0lwQr4MBHR2ze{s1d$@d?u-xj~CTuJIVU9!Nr?0f4H!f5$UxzW4Q>f1zZh54tF- z)xq#A3aF3#Nv7P=^KX*44s__YNz4Z+CLMkCPXhte+(#GwyNHFiX3-l;h1xiDESEGJ zen2@oJu5@9y!^=0no08G#^#T=yp@c@1CFDnTdhaWj^v`}mXThlaZ2T~cDR^v9OaQG3~% z?lI3el#lU`IOSpmxnuNNgk>wT+Hlxxm_YcdNGE&5H_+fr)EmTu7%uflT1=B$!5FCj z3n;mceA|^r8Z|}!OGaJHEXc6#50~RMY9-o&zA<>3Rei|A>B9PO8FFoF%b3(>>uG8g zwi_)MRI)NRT)t*Ce|@#dJL2u9s8ds$g4`y9Ff93MZP2S1XmHj&Tt{jNncFl(o2fd>hVV-JFm)WUTb_73mRx#Z*L zqnNg3gDYh8s715#qsI*?lC~(FvTuF)7$TXQH>sx$0KL4pv{YOinEI~9y8~xc3cznc zyr~wod$Z7^&K)?YKIYCDxYh9Y zLxx_C``kdzKph;#Mb56_xeP4)z02Z5#CC?Dk8k#NAmSk>IgFyKxAgJ}!98Voom7)^ z7-L9elhD5WlVm{dpv2Jv1s!gu$fR*LyV98BuAiPBQ(uB;p>#ge04|H>;U zExi2WA$49b8GVRg(PUxx(pEUf%0*PkHT~e?Y%~$H;oZA%gf7>)VA=+qX*i>;(RiNL6O{j88{Xx}A25wn=p+btb) zAMj4|!Mn}#@AOao-s~_}xAL-=@DkbMQMzwgqS3$EgPR@$s-7s8iOb;V4jPVOaQPKF zW57tFZF)HQS_whK8mm+@q%50dSg?-!L_f;MLna*f3xotJ(wBxslHbz#~`+11rmu_fa)1yMWs z2>Tu&{!xX@P?SUa`}dL~=)9CyWjFQYm_zNKCW^7(yCq=aNO?IM%Z)ovjw##o?& zG~L%2 zxT&L~qyGN>RaG1#w9^NE%#nB9HXjt!z8XEO zPg`@Ma`4ck1OtVePNE8!qB9j6MNcm((vMwIAx9b}Vl|;@&hxQEPGx1gg<95}f znFddAa&n2ytf>a!OX;%)={rCHRd6~cn z({Bn{hSjtov1Y>Ym?-c?BzY8af(nzDIX~{X`SYWM`)Y$cjZK&)dhn(% z=ympF`c>7jH0Z|CQogcAQpA1`nIaGJZiA{%vmTXO0|I@sp}di>e|Iu2L3Bo8P02U(%I{Sfs}w z)PJ~q!ly^VZh}~T;$jeoC0p|HcJVd%>4T{H$hR-@>7w!n94)AZ!>>)#wo*P@1Fuvd zB%S&8Y*#hNGI^TTomt9SjSv5#XxVIqK1BRew<5jPv^RpzFOj?f9~~bvf0Pqc($18a zR1?5;GU+@nd2gQ#ko1XXSvY#HuMxYbAx2;C)$)2d?2}2rxBNgXY;`=DV__;Tsj9ZM znR5ACZ89`8Ht_$HcGZ7Pc;T9uIuK-(bdF91q+{f01O%iTX#oY494R3o-Kl~|N;lFi zC7`5AN_RN$p837^FSx($b9VCO?2Yq2??cJ$B#hlyf7M6d^F@1WY(qTPdGNehe+w}3G>V-IkwId z*!xi4lM|#h5+}%hgg*aHDw1{P!YT9JTFB8I7BuV?xMQVue$Y~6d+t6X%YH%ZbvnO4 z^cR(!Ucv>JMQt}#PWUklII`lEUb4LR;dy^tw!KagK&GXDAMSA2JbR<+u3@UJlpeoB z7f0STA(>|Mlk6w;QEEByA8UG}bN@iV3iZXA_);3^UX0e?1yy89r9sJena#bVxt=9x zb8yzFei_d8p?ddJkBwH4mzY97J!u%NT35i6aH;m&xz;%fyubs`I@b-gJ=RS$u*W1Z zI%)RpSSGoN&riBsF{j}13^TAwy4;4UTjb}Bam4+vLwJ7A1AA1}uS>RNgn2M^Vvl7V zZMj&{cw*`^H-?a`VD$Xbk@|Pl*qTsdq~UHJipHz7@RwHL3nczIDfa z6OB5s7T&Nl)dl{2-^v85gciT)z|^0IR=Vm)rc*{nhgBfSegcZ!z5hGb1+ns*KzCfl zOOLWb`!q|){!QnuF-yfbIC#aAo9>#h?%j1G%Euo1@Bz1Tc3qz`(6wB)Vl}yGcZ2U6 z+9*qc^11m(>a`go=#R4$OqG7XK*gD#_(NjNoGlBnQ4jo2zK<(h*sKFwXr_w$0jTt- zaOFDvxS4Z)Ehj^&74OBV=pWRBmPf?#=DEbR&5GxiXnW#H4*h?mB?98AW_j{2_^%(D z)oxy>?Q_Y(z0xH~3>YA??mGlIvz2BI>F=iX!}y*(HUWW_|kdO_KQsIL&ItcT=SIkIUCC zUBu*#1lSqTn(n*=PCNTFZy_1;pl&%$CfzPzWyh% zPu>xlJhZ%-k_X|%)1`dgW{-VqG9{!5NPf#|;`_4k4y?jG`dq4IC|mKE%7=?{8wp`xwnsKG4f4#m|l=JsIgxp|LpRPD~`#NXP{+73TVPE-D zd7GAVm2>ml+Qhi^)j1l8d0jX@fL~n_6l^;{gw`2$Bp-E6Di<8&V0aMpjon-NmgfqdhUzHO3dwMgF9t@tEgIR zm(w2|u}*RG52O6XCoi_C)2!r;b5RA{`A7`n=jis%{Mb)%Q(75uuf}I&`Fa5ukdNLv zL)q*^kbr3z)==DND_Z={IKMXr{*q=6ut2mpyR?e-$>ta|%H~CF;y{YEp;rz>_~6Ar>G7Ij?oR#HS($g4&%Qx_+-E9$ zkOIifOiAdvnh~?6l~NQJby;Q8LLy0G=e=b_C4W9bQ!X^`RV_(g15Z*m;5mrzr|(`~ z^c^qoS~Ct%Cq`G~F=6ev&gIZoF*_kcN{+9_uXN$MbV68qb8#REpc+>_Wa%Myj!%tK zNMJ*MhsWicj2tAU*=swed3pH9k00~%CjV8^04dQe_`ezqi9uys%a?9lmHnmMU=S^9 zbG5L@tBel}ZPV?|Gy4~>+)*Hm4dp7H3WLrH-(y*6I3S{_X#L>`rGFJ39?wAMa08hH z0+0zf^D-^YDFMmsAnwPnm5fKfxdQ_%zJ?fIA794QFJhI%G04#0d9_o8UE6?--E^|0 zn7UNmx>`xItwaNur$FX7$LOThYIh>8qr1BNssEAYLDSKZR$1Wgz{w{P3)1txTX#~D za7a@+f(eGj$)fUBQS# zZzQM4Nf3kg4p+cuv7Dr2zafzr8eRI6z~}g5z6j4#ws#T!j?FpMA^cEoMDy03?h85 zM%(t=?zVclulCGzu3mBrs;7K4-Zh3cr9QPOBX6IvZhdspxk^Lc@;nRRiY&}7Z@Z zS$Jq|>Gq!PpyDL0J+UK#uB0WCwD3{(N^@zy%&zjL+Lz$XGS>MPYkp;xL;|-rE2i;0 z+MhE%YXN4ma-k>59aSV^e#>m#J|x1#uk7R)-#-$qE=)_Vysf}eH$iy}rB+w_Q) zK%<7gNy^BUEV&XWYuN8#At|e`z6G-^?)~WwC9@<6h9NfURT}gg9HTIt(*x_BWAVy+ z$-aZ>#=c*zomY;56inn`GZ3}OrxlHkD!f0whJTw(x|%XHO=T4?9T5tJWIM8XctT|t zPfeK`?IKi6dUKnSrX#y;BM8%Tm7Nn!Wk<8}l0skgcB`rnDyVo#KhjZ`di`MPYZVDI zA_nD;R(_oCuv#%|OZ7Oqfw0)-n+8jarfKNU2CD(00Ta{P2D10t*KTip*MeXKNWx z>{NqhH58=9!9?=hg)e*2NjiVuyMUeI!pEv z9)KThhq3UgU(>GHiwa^?=Sp_YZ;OFe!mO~{=4m6U$#7-UX^#}PCz|B`gD~?ydal#D z-S2orhh`se^RsSxX>^=&Yvvj9&=TparE=4VIhm~g>m$d2F zkl~fSf<9zKtv}O7t%et5)G))cU>{WO#tO;{x)<;cWdg`@`S290vA`sWl+jdKf#Yq- z+-Q709v(&uLv#eCaR|x=@A0XYY&8o+H>#h7G?=98tCPxe&efib&lYyro*zqPDc&*T zH~gx>*3?`?#KFK0ctH@yNQ+nUa z&i}PL6eb?mVW~M!0qtC{6zw0>eaOW5cp9`+F|0#RrYStBeNW_LF_+bkZQ_pe`@RIY ztV}&|K^}9QPXKD?1>JSnGV!7Xbn}sXo|yuI2&X~1@D}UjAi_>Vl=#reLS=HLfDxnk zvB0rzBlKW+q0kx*KRgAz=MK3(Q=tGplmyPHgOj4@4xmT^_dnjT=0f}^lNlG2#|N(lf7WR*0~4F5@Ru#@n-Gn z_|yN#fW)??M*kTXkp(7Vuep)GPXIuQ%>i*AW84IQabv?RVQ~f3;OSYk_i1pf1qurR zkms8Xc8M(5iz?U)C-zW5!%7fY!dz7~?6n@oT9SZf-XJ~wV$sm<<#FkGZBk|nGHehk zYp)P|#WnJCT{zn3fBTif>`+6!oG?Ek8HSw+16)*Wd6Cp4a-a6x*2eXhwW*jbAlOmo z2TntKfBQzYUUPgFXNKU*M>b9Dy7UeGLCQhZQ=oo!01`E0lKu`>8VluMLVS)R{nB*( zC;AC<(m(Rdh4-d_S7MXicZ?*L3DFm~WGdA4*seRKNGwuFvhy0LK5CF|JvAZGE zVAzNbQfq>kV?F@Kir9R>yvzk@k=P&e&;r0Y>1PLq#GVz?IhV zQ(XglP*Pg$R4xJ6msQq%YpbhN#j$!YY)^=KEW;bxsxB%7R#Qw>UgBV%1iU*gV>gk9w?<>J$~d|N9`nKM8>^uf z=nbChV$-{r{#0QL4P5*RRG6}3pLU(g=`_C5FzAK?DglsJOht0vEmXkzg;edRY@mZa zJcRegc?qe)JT1_a-TL0GUy{(GgB?=0x%g-PMBi*8`)@_HY}smbFj&zFy^$L3oykBc z(^RH7MvnkIi_9bJL!<32M z0jPB_%D*?vW#e|Dn}09G$c6~}M$XdYJ>M2_tS@{QLB=pH?pa?~OP7oX@S-no&!?iC@7xF7ch_3KUGPlhZ!=I9Evz3GmL59S%bV>T=pP6kAPOL1w`YC4o zO8pe>!W6w7ddW*XiB0VuS`K9%6vpZep1^`?U0Qb(YsaBXyg~(`9Ee8-_Ft=EJ2radxwmKE1uhGNk+q!{Wk{4t2?7NYv1vy`l744%JJVC5h?TjGE>LZEhmf z9b z{eX#F1c7cw-*$NE-Hn@T=TTIAU8W7b1eyJ$y;(y_UT^OT=A(vQ>N4Ae{O_|f*ow69|j6lYz&R%guIDLOm`6g~5oZ4LdeQTLKjY?VMOEsU%r@uO->fZWA zXF7>F-4ywo#-ghGQ(yNF*V@ec&dAPTS#YDIQq0*6#Ae@7+CBXeL1ITJ*u~nF zMd+dv6J6L{zDIyncx(%L^2vdk0gj-2mylyUuG%+7t=T&Z%bsMU`mgW z%XppN%I}4a>j6DL(@}N4Lp9vGM=139&-AsgZ$pd*=WiaffqlHT_a1Zj7HE6$tfnl3 zlZ4)=y66+4rC+4JW#uzh@iY9=Ys=^7*`fB_!(S=a4kiPA zX)ABvIz~GfFXGS9Bz~7&FtNLc?#y|1Z+rGIr?Wm$x9X`DrO`PxGTXK39*BFL@^~e2 zo}YbD&wW%LI}dm)$?_E;1dMK@x__Y_H&n7y)2 z`w*~A-mjGEvFbaxmW#$#I#7av`}LY32KCyr2H1CP8aR)o1Q>}Sn5=(@Ap427Mo@n@ zcAYpV?45LHLU!IJz88wJn@QlcP$t)xgB)Y@e}>GV&sQrk1x7mTk#bgJENuk{k0L6C zK?;pVs<|utFl0t;2^!)=d@aK$zuM_1_!6;3maK!vA~<6%K$|UTY-{gr?6%VzC+um< zj60h%yOnyw_S#Qvhnl)M#RGVFJr)|h`92emxIuz)+L%_5$ata%9qw0<2^fU zV}}8dDJZDDoKgnOgUEnmd-*?;+ikKd$iTW%wU&ZkeZej97^X&Gl`Jecf)3!PkS$o= zuf7)8f=|7tSD_6kL#I@I4SX&wP(?2uKoB!fHAptzF_#rOB(28!L)h3d}cVcLpTMuL|2VNfE0Im%Tn;haMMcsVsUod`% z@dUs8^8_*MmH%;K3jqVB90JNTAg~}tro1ZY>Ydj1)6-)J9_;w*M`%(~%Jj%pmO&Y^ z*)$TRgpOF*7}S?9w1IWBMJ;qbhumuyrqclwq>MPym{6acFw&I~MDd$osf;_E_zGYP zxtLHtFY#bhNL3`rG*LgRpbk3Fy4?jINN*qC>)H3!wyDYzGWIG1di7| zI^gk5GARauPRpcVwEsl>#!YaZv{>NUZN?WMK&O2?Fk0F{`8h5)v^o-OJs&B36|pZPZxa^SbR;co@kX>rq!kJj?fvF z2x%uVsYMkDX9dP)-2}K{BG7QXpzCM=Sf(UO|6mu_ao;MXVQ^qx73MrO%;2msLQO^QWg3$&L$V=Y1pm;g*fm9S{LjC-$<;2vb*mmY67hen4 z+Fz67Zx?9xx8{h;0e!8*8!UBM9X`^X!J$dY)?t)iU$}PFkTHaD8)jHv`dmE9sAisi zNp@ZOfwu4JfvY5p<5^9a;8)MC#P=QZI4jExyHcG7uNfliXd_POV(OgZR6po9e(|Pt z2;uLka;)sV+rXUvkBG|0Xth}q2Z#~QvsmY{ zQ5La;rh_XD23OKGh7(Uetk4^>5qc+IJ9Q#Z{IGo@8U38WzHqOF_-dQ|Go&_MH1oUi#EoU9<$Jrl3sV!U-w~h z`Bf|e+BS2?Q`|q0;esKzx1dP15AlLrg(*RNYUgiMUOFOf>dQhTqfmk8 z+O^o>lP*2V4F~?I@(98&Lu_ zVVNNy^h(NxDLBxDB9S^B-?=#K#6&xVw^J>t!)`6XkD!NwJ>7Y=ftrN3^EG|*CxY7E zH!L+}i3@fL`EOYIlPJ=I2`DsJ6XS9RcPw>?E~hw>SN7&@9~|ji#`F+l(+~qWmIMj& zb@H##+h4CYYXril(nozh{7$E`6}Rq6>`5fnmnx30$Y$p`hP_apQxcT$qzN9->{pZTJ;iWgCp-I*Z%RJCOqHI4YTtpXt zBsc|(gpL=zVK+$&TiGb3tSh|j^i!4P&T79php(-sbixJ++x>NQH6501^4w>R8pJ#z z*{Z^t39S;&=_&;Rq>Yb-{Ts8mv)T|VpIl$BG2)~!!k_^x`FER1MqJu{+?9VcZ8K*? zyWxqx8Hi+^%&3}Pxz34o8KLd!j8)DjI8(zqg?ck{^1=)!XtX() zm-#RP7=B~-xOy#B)W?!Mb3fQ>4Z4z`FYV$VUMQ1b#a`Gm#gcuGNclsRwJ~Y4*qc3? zs?jN4|Ij}+smKH&UI1}LsXvaTSn%v}2_ReW@8@G~otyW0)N+n%Yk@CUBdg;c)Ngu4 zStbi9MReRcGdISLjWC^o2a z#u2Wxx*tH`JX!b)sQf$-z{9%Z8~oclw%b#9G;|8Ie%qNu4*E@u(^KR)smWB>pF literal 0 HcmV?d00001 diff --git a/APP_Framework/lib/lorawan/lora_radio_driver/doc/doxygen_image/mainpage.h b/APP_Framework/lib/lorawan/lora_radio_driver/doc/doxygen_image/mainpage.h new file mode 100644 index 000000000..c95c097c3 --- /dev/null +++ b/APP_Framework/lib/lorawan/lora_radio_driver/doc/doxygen_image/mainpage.h @@ -0,0 +1,41 @@ +/* + * This file is only used for doxygen document generation. + */ + +/*! + * @mainpage Introduce + * @author wsn-hxj + * @version v1.5.0 + * @date 2021-11-15 + * + * lora-radio-driver软件包是基于RTOS( RT-Thread ) 实现的LoRa Tranceiver芯片(SX126x、SX127x等)的驱动文件,该驱动文件通过SPI读写LoRa Tranceiver芯片,可用于快速搭建基于LoRa等通信的应用产品。 + * 主要功能如下: + * - 1. 当前支持LoRa Transceiver(sx126x\sx127x等) + * - 支持Sub-1GHz频段 + * - 支持LoRa调制方式(SF5~SF12、BW125~BW500) + * - 支持FSK调制方式 + * - 2. 可作为phy层对接到LoRaWAN End-Device协议栈 + * - 3. 提供常用实例代码tester,可用于射频性能测试、空口数据包监听、双向通信测试等 + * - 4. 当前支持的LoRa 模块\芯片,如 + * - LSD4RF-2R717N40 (SX1268 CN470频段) + * - LSD4RF-2R822N300 (SX1262 868/915MHz频段) + * - LSD4RF-2F717N30(SX1278 CN470频段) + * - Ra-01(SX1278 CN470频段)等等 + * @section application_arch 01 功能框图 + * + * lora-radio-driver功能框图: + * @image html lora-radio-driver_func_arch.png "Figure 1: 功能框图" + * + * @section file_arch 02 文件结构 + * + * lora-radio-driver文件结构: + * @image html lora-radio-driver_file_arch.png "Figure 1: 文件结构" + * + * @section lora-radio-driver 03 用户接口API + * 更多详细信息,请参考 @ref LORA_RADIO_UPPER_API + */ + + + + + diff --git a/APP_Framework/lib/lorawan/lora_radio_driver/doc/lora-radio-driver_Doxyfile b/APP_Framework/lib/lorawan/lora_radio_driver/doc/lora-radio-driver_Doxyfile new file mode 100644 index 000000000..31b452912 --- /dev/null +++ b/APP_Framework/lib/lorawan/lora_radio_driver/doc/lora-radio-driver_Doxyfile @@ -0,0 +1,2523 @@ +# Doxyfile 1.8.15 + +# This file describes the settings to be used by the documentation system +# doxygen (www.doxygen.org) for a project. +# +# All text after a double hash (##) is considered a comment and is placed in +# front of the TAG it is preceding. +# +# All text after a single hash (#) is considered a comment and will be ignored. +# The format is: +# TAG = value [value, ...] +# For lists, items can also be appended using: +# TAG += value [value, ...] +# Values that contain spaces should be placed between quotes (\" \"). + +#--------------------------------------------------------------------------- +# Project related configuration options +#--------------------------------------------------------------------------- + +# This tag specifies the encoding used for all characters in the configuration +# file that follow. The default is UTF-8 which is also the encoding used for all +# text before the first occurrence of this tag. Doxygen uses libiconv (or the +# iconv built into libc) for the transcoding. See +# https://www.gnu.org/software/libiconv/ for the list of possible encodings. +# The default value is: UTF-8. + +DOXYFILE_ENCODING = UTF-8 + +# The PROJECT_NAME tag is a single word (or a sequence of words surrounded by +# double-quotes, unless you are using Doxywizard) that should identify the +# project for which the documentation is generated. This name is used in the +# title of most generated pages and in a few other places. +# The default value is: My Project. + +PROJECT_NAME = lora-radio-driver + +# The PROJECT_NUMBER tag can be used to enter a project or revision number. This +# could be handy for archiving the generated documentation or if some version +# control system is used. + +PROJECT_NUMBER = Rev01 + +# Using the PROJECT_BRIEF tag one can provide an optional one line description +# for a project that appears at the top of each page and should give viewer a +# quick idea about the purpose of the project. Keep the description short. + +PROJECT_BRIEF = "lora tranceiver(sx126x\sx127x...)spi dirver" + +# With the PROJECT_LOGO tag one can specify a logo or an icon that is included +# in the documentation. The maximum height of the logo should not exceed 55 +# pixels and the maximum width should not exceed 200 pixels. Doxygen will copy +# the logo to the output directory. + +PROJECT_LOGO = + +# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path +# into which the generated documentation will be written. If a relative path is +# entered, it will be relative to the location where doxygen was started. If +# left blank the current directory will be used. + +OUTPUT_DIRECTORY = doxygen_output + +# If the CREATE_SUBDIRS tag is set to YES then doxygen will create 4096 sub- +# directories (in 2 levels) under the output directory of each output format and +# will distribute the generated files over these directories. Enabling this +# option can be useful when feeding doxygen a huge amount of source files, where +# putting all generated files in the same directory would otherwise causes +# performance problems for the file system. +# The default value is: NO. + +CREATE_SUBDIRS = NO + +# If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII +# characters to appear in the names of generated files. If set to NO, non-ASCII +# characters will be escaped, for example _xE3_x81_x84 will be used for Unicode +# U+3044. +# The default value is: NO. + +ALLOW_UNICODE_NAMES = NO + +# The OUTPUT_LANGUAGE tag is used to specify the language in which all +# documentation generated by doxygen is written. Doxygen will use this +# information to generate all constant output in the proper language. +# Possible values are: Afrikaans, Arabic, Armenian, Brazilian, Catalan, Chinese, +# Chinese-Traditional, Croatian, Czech, Danish, Dutch, English (United States), +# Esperanto, Farsi (Persian), Finnish, French, German, Greek, Hungarian, +# Indonesian, Italian, Japanese, Japanese-en (Japanese with English messages), +# Korean, Korean-en (Korean with English messages), Latvian, Lithuanian, +# Macedonian, Norwegian, Persian (Farsi), Polish, Portuguese, Romanian, Russian, +# Serbian, Serbian-Cyrillic, Slovak, Slovene, Spanish, Swedish, Turkish, +# Ukrainian and Vietnamese. +# The default value is: English. + +OUTPUT_LANGUAGE = Chinese + +# The OUTPUT_TEXT_DIRECTION tag is used to specify the direction in which all +# documentation generated by doxygen is written. Doxygen will use this +# information to generate all generated output in the proper direction. +# Possible values are: None, LTR, RTL and Context. +# The default value is: None. + +OUTPUT_TEXT_DIRECTION = None + +# If the BRIEF_MEMBER_DESC tag is set to YES, doxygen will include brief member +# descriptions after the members that are listed in the file and class +# documentation (similar to Javadoc). Set to NO to disable this. +# The default value is: YES. + +BRIEF_MEMBER_DESC = YES + +# If the REPEAT_BRIEF tag is set to YES, doxygen will prepend the brief +# description of a member or function before the detailed description +# +# Note: If both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the +# brief descriptions will be completely suppressed. +# The default value is: YES. + +REPEAT_BRIEF = YES + +# This tag implements a quasi-intelligent brief description abbreviator that is +# used to form the text in various listings. Each string in this list, if found +# as the leading text of the brief description, will be stripped from the text +# and the result, after processing the whole list, is used as the annotated +# text. Otherwise, the brief description is used as-is. If left blank, the +# following values are used ($name is automatically replaced with the name of +# the entity):The $name class, The $name widget, The $name file, is, provides, +# specifies, contains, represents, a, an and the. + +ABBREVIATE_BRIEF = "The $name class" \ + "The $name widget" \ + "The $name file" \ + is \ + provides \ + specifies \ + contains \ + represents \ + a \ + an \ + the + +# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then +# doxygen will generate a detailed section even if there is only a brief +# description. +# The default value is: NO. + +ALWAYS_DETAILED_SEC = NO + +# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all +# inherited members of a class in the documentation of that class as if those +# members were ordinary class members. Constructors, destructors and assignment +# operators of the base classes will not be shown. +# The default value is: NO. + +INLINE_INHERITED_MEMB = NO + +# If the FULL_PATH_NAMES tag is set to YES, doxygen will prepend the full path +# before files name in the file list and in the header files. If set to NO the +# shortest path that makes the file name unique will be used +# The default value is: YES. + +FULL_PATH_NAMES = NO + +# The STRIP_FROM_PATH tag can be used to strip a user-defined part of the path. +# Stripping is only done if one of the specified strings matches the left-hand +# part of the path. The tag can be used to show relative paths in the file list. +# If left blank the directory from which doxygen is run is used as the path to +# strip. +# +# Note that you can specify absolute paths here, but also relative paths, which +# will be relative from the directory where doxygen is started. +# This tag requires that the tag FULL_PATH_NAMES is set to YES. + +STRIP_FROM_PATH = + +# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the +# path mentioned in the documentation of a class, which tells the reader which +# header file to include in order to use a class. If left blank only the name of +# the header file containing the class definition is used. Otherwise one should +# specify the list of include paths that are normally passed to the compiler +# using the -I flag. + +STRIP_FROM_INC_PATH = + +# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter (but +# less readable) file names. This can be useful is your file systems doesn't +# support long names like on DOS, Mac, or CD-ROM. +# The default value is: NO. + +SHORT_NAMES = NO + +# If the JAVADOC_AUTOBRIEF tag is set to YES then doxygen will interpret the +# first line (until the first dot) of a Javadoc-style comment as the brief +# description. If set to NO, the Javadoc-style will behave just like regular Qt- +# style comments (thus requiring an explicit @brief command for a brief +# description.) +# The default value is: NO. + +JAVADOC_AUTOBRIEF = NO + +# If the QT_AUTOBRIEF tag is set to YES then doxygen will interpret the first +# line (until the first dot) of a Qt-style comment as the brief description. If +# set to NO, the Qt-style will behave just like regular Qt-style comments (thus +# requiring an explicit \brief command for a brief description.) +# The default value is: NO. + +QT_AUTOBRIEF = NO + +# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make doxygen treat a +# multi-line C++ special comment block (i.e. a block of //! or /// comments) as +# a brief description. This used to be the default behavior. The new default is +# to treat a multi-line C++ comment block as a detailed description. Set this +# tag to YES if you prefer the old behavior instead. +# +# Note that setting this tag to YES also means that rational rose comments are +# not recognized any more. +# The default value is: NO. + +MULTILINE_CPP_IS_BRIEF = NO + +# If the INHERIT_DOCS tag is set to YES then an undocumented member inherits the +# documentation from any documented member that it re-implements. +# The default value is: YES. + +INHERIT_DOCS = YES + +# If the SEPARATE_MEMBER_PAGES tag is set to YES then doxygen will produce a new +# page for each member. If set to NO, the documentation of a member will be part +# of the file/class/namespace that contains it. +# The default value is: NO. + +SEPARATE_MEMBER_PAGES = NO + +# The TAB_SIZE tag can be used to set the number of spaces in a tab. Doxygen +# uses this value to replace tabs by spaces in code fragments. +# Minimum value: 1, maximum value: 16, default value: 4. + +TAB_SIZE = 4 + +# This tag can be used to specify a number of aliases that act as commands in +# the documentation. An alias has the form: +# name=value +# For example adding +# "sideeffect=@par Side Effects:\n" +# will allow you to put the command \sideeffect (or @sideeffect) in the +# documentation, which will result in a user-defined paragraph with heading +# "Side Effects:". You can put \n's in the value part of an alias to insert +# newlines (in the resulting output). You can put ^^ in the value part of an +# alias to insert a newline as if a physical newline was in the original file. +# When you need a literal { or } or , in the value part of an alias you have to +# escape them by means of a backslash (\), this can lead to conflicts with the +# commands \{ and \} for these it is advised to use the version @{ and @} or use +# a double escape (\\{ and \\}) + +ALIASES = + +# This tag can be used to specify a number of word-keyword mappings (TCL only). +# A mapping has the form "name=value". For example adding "class=itcl::class" +# will allow you to use the command class in the itcl::class meaning. + +TCL_SUBST = + +# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources +# only. Doxygen will then generate output that is more tailored for C. For +# instance, some of the names that are used will be different. The list of all +# members will be omitted, etc. +# The default value is: NO. + +OPTIMIZE_OUTPUT_FOR_C = YES + +# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java or +# Python sources only. Doxygen will then generate output that is more tailored +# for that language. For instance, namespaces will be presented as packages, +# qualified scopes will look different, etc. +# The default value is: NO. + +OPTIMIZE_OUTPUT_JAVA = NO + +# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran +# sources. Doxygen will then generate output that is tailored for Fortran. +# The default value is: NO. + +OPTIMIZE_FOR_FORTRAN = NO + +# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL +# sources. Doxygen will then generate output that is tailored for VHDL. +# The default value is: NO. + +OPTIMIZE_OUTPUT_VHDL = NO + +# Set the OPTIMIZE_OUTPUT_SLICE tag to YES if your project consists of Slice +# sources only. Doxygen will then generate output that is more tailored for that +# language. For instance, namespaces will be presented as modules, types will be +# separated into more groups, etc. +# The default value is: NO. + +OPTIMIZE_OUTPUT_SLICE = NO + +# Doxygen selects the parser to use depending on the extension of the files it +# parses. With this tag you can assign which parser to use for a given +# extension. Doxygen has a built-in mapping, but you can override or extend it +# using this tag. The format is ext=language, where ext is a file extension, and +# language is one of the parsers supported by doxygen: IDL, Java, Javascript, +# Csharp (C#), C, C++, D, PHP, md (Markdown), Objective-C, Python, Slice, +# Fortran (fixed format Fortran: FortranFixed, free formatted Fortran: +# FortranFree, unknown formatted Fortran: Fortran. In the later case the parser +# tries to guess whether the code is fixed or free formatted code, this is the +# default for Fortran type files), VHDL, tcl. For instance to make doxygen treat +# .inc files as Fortran files (default is PHP), and .f files as C (default is +# Fortran), use: inc=Fortran f=C. +# +# Note: For files without extension you can use no_extension as a placeholder. +# +# Note that for custom extensions you also need to set FILE_PATTERNS otherwise +# the files are not read by doxygen. + +EXTENSION_MAPPING = + +# If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments +# according to the Markdown format, which allows for more readable +# documentation. See https://daringfireball.net/projects/markdown/ for details. +# The output of markdown processing is further processed by doxygen, so you can +# mix doxygen, HTML, and XML commands with Markdown formatting. Disable only in +# case of backward compatibilities issues. +# The default value is: YES. + +MARKDOWN_SUPPORT = YES + +# When the TOC_INCLUDE_HEADINGS tag is set to a non-zero value, all headings up +# to that level are automatically included in the table of contents, even if +# they do not have an id attribute. +# Note: This feature currently applies only to Markdown headings. +# Minimum value: 0, maximum value: 99, default value: 0. +# This tag requires that the tag MARKDOWN_SUPPORT is set to YES. + +TOC_INCLUDE_HEADINGS = 0 + +# When enabled doxygen tries to link words that correspond to documented +# classes, or namespaces to their corresponding documentation. Such a link can +# be prevented in individual cases by putting a % sign in front of the word or +# globally by setting AUTOLINK_SUPPORT to NO. +# The default value is: YES. + +AUTOLINK_SUPPORT = YES + +# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want +# to include (a tag file for) the STL sources as input, then you should set this +# tag to YES in order to let doxygen match functions declarations and +# definitions whose arguments contain STL classes (e.g. func(std::string); +# versus func(std::string) {}). This also make the inheritance and collaboration +# diagrams that involve STL classes more complete and accurate. +# The default value is: NO. + +BUILTIN_STL_SUPPORT = NO + +# If you use Microsoft's C++/CLI language, you should set this option to YES to +# enable parsing support. +# The default value is: NO. + +CPP_CLI_SUPPORT = NO + +# Set the SIP_SUPPORT tag to YES if your project consists of sip (see: +# https://www.riverbankcomputing.com/software/sip/intro) sources only. Doxygen +# will parse them like normal C++ but will assume all classes use public instead +# of private inheritance when no explicit protection keyword is present. +# The default value is: NO. + +SIP_SUPPORT = NO + +# For Microsoft's IDL there are propget and propput attributes to indicate +# getter and setter methods for a property. Setting this option to YES will make +# doxygen to replace the get and set methods by a property in the documentation. +# This will only work if the methods are indeed getting or setting a simple +# type. If this is not the case, or you want to show the methods anyway, you +# should set this option to NO. +# The default value is: YES. + +IDL_PROPERTY_SUPPORT = YES + +# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC +# tag is set to YES then doxygen will reuse the documentation of the first +# member in the group (if any) for the other members of the group. By default +# all members of a group must be documented explicitly. +# The default value is: NO. + +DISTRIBUTE_GROUP_DOC = NO + +# If one adds a struct or class to a group and this option is enabled, then also +# any nested class or struct is added to the same group. By default this option +# is disabled and one has to add nested compounds explicitly via \ingroup. +# The default value is: NO. + +GROUP_NESTED_COMPOUNDS = NO + +# Set the SUBGROUPING tag to YES to allow class member groups of the same type +# (for instance a group of public functions) to be put as a subgroup of that +# type (e.g. under the Public Functions section). Set it to NO to prevent +# subgrouping. Alternatively, this can be done per class using the +# \nosubgrouping command. +# The default value is: YES. + +SUBGROUPING = YES + +# When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and unions +# are shown inside the group in which they are included (e.g. using \ingroup) +# instead of on a separate page (for HTML and Man pages) or section (for LaTeX +# and RTF). +# +# Note that this feature does not work in combination with +# SEPARATE_MEMBER_PAGES. +# The default value is: NO. + +INLINE_GROUPED_CLASSES = NO + +# When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and unions +# with only public data fields or simple typedef fields will be shown inline in +# the documentation of the scope in which they are defined (i.e. file, +# namespace, or group documentation), provided this scope is documented. If set +# to NO, structs, classes, and unions are shown on a separate page (for HTML and +# Man pages) or section (for LaTeX and RTF). +# The default value is: NO. + +INLINE_SIMPLE_STRUCTS = NO + +# When TYPEDEF_HIDES_STRUCT tag is enabled, a typedef of a struct, union, or +# enum is documented as struct, union, or enum with the name of the typedef. So +# typedef struct TypeS {} TypeT, will appear in the documentation as a struct +# with name TypeT. When disabled the typedef will appear as a member of a file, +# namespace, or class. And the struct will be named TypeS. This can typically be +# useful for C code in case the coding convention dictates that all compound +# types are typedef'ed and only the typedef is referenced, never the tag name. +# The default value is: NO. + +TYPEDEF_HIDES_STRUCT = NO + +# The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This +# cache is used to resolve symbols given their name and scope. Since this can be +# an expensive process and often the same symbol appears multiple times in the +# code, doxygen keeps a cache of pre-resolved symbols. If the cache is too small +# doxygen will become slower. If the cache is too large, memory is wasted. The +# cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range +# is 0..9, the default is 0, corresponding to a cache size of 2^16=65536 +# symbols. At the end of a run doxygen will report the cache usage and suggest +# the optimal cache size from a speed point of view. +# Minimum value: 0, maximum value: 9, default value: 0. + +LOOKUP_CACHE_SIZE = 0 + +#--------------------------------------------------------------------------- +# Build related configuration options +#--------------------------------------------------------------------------- + +# If the EXTRACT_ALL tag is set to YES, doxygen will assume all entities in +# documentation are documented, even if no documentation was available. Private +# class members and static file members will be hidden unless the +# EXTRACT_PRIVATE respectively EXTRACT_STATIC tags are set to YES. +# Note: This will also disable the warnings about undocumented members that are +# normally produced when WARNINGS is set to YES. +# The default value is: NO. + +EXTRACT_ALL = YES + +# If the EXTRACT_PRIVATE tag is set to YES, all private members of a class will +# be included in the documentation. +# The default value is: NO. + +EXTRACT_PRIVATE = NO + +# If the EXTRACT_PACKAGE tag is set to YES, all members with package or internal +# scope will be included in the documentation. +# The default value is: NO. + +EXTRACT_PACKAGE = NO + +# If the EXTRACT_STATIC tag is set to YES, all static members of a file will be +# included in the documentation. +# The default value is: NO. + +EXTRACT_STATIC = NO + +# If the EXTRACT_LOCAL_CLASSES tag is set to YES, classes (and structs) defined +# locally in source files will be included in the documentation. If set to NO, +# only classes defined in header files are included. Does not have any effect +# for Java sources. +# The default value is: YES. + +EXTRACT_LOCAL_CLASSES = YES + +# This flag is only useful for Objective-C code. If set to YES, local methods, +# which are defined in the implementation section but not in the interface are +# included in the documentation. If set to NO, only methods in the interface are +# included. +# The default value is: NO. + +EXTRACT_LOCAL_METHODS = NO + +# If this flag is set to YES, the members of anonymous namespaces will be +# extracted and appear in the documentation as a namespace called +# 'anonymous_namespace{file}', where file will be replaced with the base name of +# the file that contains the anonymous namespace. By default anonymous namespace +# are hidden. +# The default value is: NO. + +EXTRACT_ANON_NSPACES = NO + +# If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all +# undocumented members inside documented classes or files. If set to NO these +# members will be included in the various overviews, but no documentation +# section is generated. This option has no effect if EXTRACT_ALL is enabled. +# The default value is: NO. + +HIDE_UNDOC_MEMBERS = NO + +# If the HIDE_UNDOC_CLASSES tag is set to YES, doxygen will hide all +# undocumented classes that are normally visible in the class hierarchy. If set +# to NO, these classes will be included in the various overviews. This option +# has no effect if EXTRACT_ALL is enabled. +# The default value is: NO. + +HIDE_UNDOC_CLASSES = NO + +# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, doxygen will hide all friend +# (class|struct|union) declarations. If set to NO, these declarations will be +# included in the documentation. +# The default value is: NO. + +HIDE_FRIEND_COMPOUNDS = NO + +# If the HIDE_IN_BODY_DOCS tag is set to YES, doxygen will hide any +# documentation blocks found inside the body of a function. If set to NO, these +# blocks will be appended to the function's detailed documentation block. +# The default value is: NO. + +HIDE_IN_BODY_DOCS = NO + +# The INTERNAL_DOCS tag determines if documentation that is typed after a +# \internal command is included. If the tag is set to NO then the documentation +# will be excluded. Set it to YES to include the internal documentation. +# The default value is: NO. + +INTERNAL_DOCS = NO + +# If the CASE_SENSE_NAMES tag is set to NO then doxygen will only generate file +# names in lower-case letters. If set to YES, upper-case letters are also +# allowed. This is useful if you have classes or files whose names only differ +# in case and if your file system supports case sensitive file names. Windows +# and Mac users are advised to set this option to NO. +# The default value is: system dependent. + +CASE_SENSE_NAMES = NO + +# If the HIDE_SCOPE_NAMES tag is set to NO then doxygen will show members with +# their full class and namespace scopes in the documentation. If set to YES, the +# scope will be hidden. +# The default value is: NO. + +HIDE_SCOPE_NAMES = NO + +# If the HIDE_COMPOUND_REFERENCE tag is set to NO (default) then doxygen will +# append additional text to a page's title, such as Class Reference. If set to +# YES the compound reference will be hidden. +# The default value is: NO. + +HIDE_COMPOUND_REFERENCE= NO + +# If the SHOW_INCLUDE_FILES tag is set to YES then doxygen will put a list of +# the files that are included by a file in the documentation of that file. +# The default value is: YES. + +SHOW_INCLUDE_FILES = YES + +# If the SHOW_GROUPED_MEMB_INC tag is set to YES then Doxygen will add for each +# grouped member an include statement to the documentation, telling the reader +# which file to include in order to use the member. +# The default value is: NO. + +SHOW_GROUPED_MEMB_INC = NO + +# If the FORCE_LOCAL_INCLUDES tag is set to YES then doxygen will list include +# files with double quotes in the documentation rather than with sharp brackets. +# The default value is: NO. + +FORCE_LOCAL_INCLUDES = NO + +# If the INLINE_INFO tag is set to YES then a tag [inline] is inserted in the +# documentation for inline members. +# The default value is: YES. + +INLINE_INFO = YES + +# If the SORT_MEMBER_DOCS tag is set to YES then doxygen will sort the +# (detailed) documentation of file and class members alphabetically by member +# name. If set to NO, the members will appear in declaration order. +# The default value is: YES. + +SORT_MEMBER_DOCS = YES + +# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the brief +# descriptions of file, namespace and class members alphabetically by member +# name. If set to NO, the members will appear in declaration order. Note that +# this will also influence the order of the classes in the class list. +# The default value is: NO. + +SORT_BRIEF_DOCS = NO + +# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen will sort the +# (brief and detailed) documentation of class members so that constructors and +# destructors are listed first. If set to NO the constructors will appear in the +# respective orders defined by SORT_BRIEF_DOCS and SORT_MEMBER_DOCS. +# Note: If SORT_BRIEF_DOCS is set to NO this option is ignored for sorting brief +# member documentation. +# Note: If SORT_MEMBER_DOCS is set to NO this option is ignored for sorting +# detailed member documentation. +# The default value is: NO. + +SORT_MEMBERS_CTORS_1ST = NO + +# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the hierarchy +# of group names into alphabetical order. If set to NO the group names will +# appear in their defined order. +# The default value is: NO. + +SORT_GROUP_NAMES = NO + +# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be sorted by +# fully-qualified names, including namespaces. If set to NO, the class list will +# be sorted only by class name, not including the namespace part. +# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. +# Note: This option applies only to the class list, not to the alphabetical +# list. +# The default value is: NO. + +SORT_BY_SCOPE_NAME = NO + +# If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to do proper +# type resolution of all parameters of a function it will reject a match between +# the prototype and the implementation of a member function even if there is +# only one candidate or it is obvious which candidate to choose by doing a +# simple string match. By disabling STRICT_PROTO_MATCHING doxygen will still +# accept a match between prototype and implementation in such cases. +# The default value is: NO. + +STRICT_PROTO_MATCHING = NO + +# The GENERATE_TODOLIST tag can be used to enable (YES) or disable (NO) the todo +# list. This list is created by putting \todo commands in the documentation. +# The default value is: YES. + +GENERATE_TODOLIST = YES + +# The GENERATE_TESTLIST tag can be used to enable (YES) or disable (NO) the test +# list. This list is created by putting \test commands in the documentation. +# The default value is: YES. + +GENERATE_TESTLIST = YES + +# The GENERATE_BUGLIST tag can be used to enable (YES) or disable (NO) the bug +# list. This list is created by putting \bug commands in the documentation. +# The default value is: YES. + +GENERATE_BUGLIST = YES + +# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or disable (NO) +# the deprecated list. This list is created by putting \deprecated commands in +# the documentation. +# The default value is: YES. + +GENERATE_DEPRECATEDLIST= YES + +# The ENABLED_SECTIONS tag can be used to enable conditional documentation +# sections, marked by \if ... \endif and \cond +# ... \endcond blocks. + +ENABLED_SECTIONS = + +# The MAX_INITIALIZER_LINES tag determines the maximum number of lines that the +# initial value of a variable or macro / define can have for it to appear in the +# documentation. If the initializer consists of more lines than specified here +# it will be hidden. Use a value of 0 to hide initializers completely. The +# appearance of the value of individual variables and macros / defines can be +# controlled using \showinitializer or \hideinitializer command in the +# documentation regardless of this setting. +# Minimum value: 0, maximum value: 10000, default value: 30. + +MAX_INITIALIZER_LINES = 30 + +# Set the SHOW_USED_FILES tag to NO to disable the list of files generated at +# the bottom of the documentation of classes and structs. If set to YES, the +# list will mention the files that were used to generate the documentation. +# The default value is: YES. + +SHOW_USED_FILES = YES + +# Set the SHOW_FILES tag to NO to disable the generation of the Files page. This +# will remove the Files entry from the Quick Index and from the Folder Tree View +# (if specified). +# The default value is: YES. + +SHOW_FILES = YES + +# Set the SHOW_NAMESPACES tag to NO to disable the generation of the Namespaces +# page. This will remove the Namespaces entry from the Quick Index and from the +# Folder Tree View (if specified). +# The default value is: YES. + +SHOW_NAMESPACES = YES + +# The FILE_VERSION_FILTER tag can be used to specify a program or script that +# doxygen should invoke to get the current version for each file (typically from +# the version control system). Doxygen will invoke the program by executing (via +# popen()) the command command input-file, where command is the value of the +# FILE_VERSION_FILTER tag, and input-file is the name of an input file provided +# by doxygen. Whatever the program writes to standard output is used as the file +# version. For an example see the documentation. + +FILE_VERSION_FILTER = + +# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed +# by doxygen. The layout file controls the global structure of the generated +# output files in an output format independent way. To create the layout file +# that represents doxygen's defaults, run doxygen with the -l option. You can +# optionally specify a file name after the option, if omitted DoxygenLayout.xml +# will be used as the name of the layout file. +# +# Note that if you run doxygen from a directory containing a file called +# DoxygenLayout.xml, doxygen will parse it automatically even if the LAYOUT_FILE +# tag is left empty. + +LAYOUT_FILE = + +# The CITE_BIB_FILES tag can be used to specify one or more bib files containing +# the reference definitions. This must be a list of .bib files. The .bib +# extension is automatically appended if omitted. This requires the bibtex tool +# to be installed. See also https://en.wikipedia.org/wiki/BibTeX for more info. +# For LaTeX the style of the bibliography can be controlled using +# LATEX_BIB_STYLE. To use this feature you need bibtex and perl available in the +# search path. See also \cite for info how to create references. + +CITE_BIB_FILES = + +#--------------------------------------------------------------------------- +# Configuration options related to warning and progress messages +#--------------------------------------------------------------------------- + +# The QUIET tag can be used to turn on/off the messages that are generated to +# standard output by doxygen. If QUIET is set to YES this implies that the +# messages are off. +# The default value is: NO. + +QUIET = NO + +# The WARNINGS tag can be used to turn on/off the warning messages that are +# generated to standard error (stderr) by doxygen. If WARNINGS is set to YES +# this implies that the warnings are on. +# +# Tip: Turn warnings on while writing the documentation. +# The default value is: YES. + +WARNINGS = YES + +# If the WARN_IF_UNDOCUMENTED tag is set to YES then doxygen will generate +# warnings for undocumented members. If EXTRACT_ALL is set to YES then this flag +# will automatically be disabled. +# The default value is: YES. + +WARN_IF_UNDOCUMENTED = YES + +# If the WARN_IF_DOC_ERROR tag is set to YES, doxygen will generate warnings for +# potential errors in the documentation, such as not documenting some parameters +# in a documented function, or documenting parameters that don't exist or using +# markup commands wrongly. +# The default value is: YES. + +WARN_IF_DOC_ERROR = YES + +# This WARN_NO_PARAMDOC option can be enabled to get warnings for functions that +# are documented, but have no documentation for their parameters or return +# value. If set to NO, doxygen will only warn about wrong or incomplete +# parameter documentation, but not about the absence of documentation. If +# EXTRACT_ALL is set to YES then this flag will automatically be disabled. +# The default value is: NO. + +WARN_NO_PARAMDOC = NO + +# If the WARN_AS_ERROR tag is set to YES then doxygen will immediately stop when +# a warning is encountered. +# The default value is: NO. + +WARN_AS_ERROR = NO + +# The WARN_FORMAT tag determines the format of the warning messages that doxygen +# can produce. The string should contain the $file, $line, and $text tags, which +# will be replaced by the file and line number from which the warning originated +# and the warning text. Optionally the format may contain $version, which will +# be replaced by the version of the file (if it could be obtained via +# FILE_VERSION_FILTER) +# The default value is: $file:$line: $text. + +WARN_FORMAT = "$file:$line: $text" + +# The WARN_LOGFILE tag can be used to specify a file to which warning and error +# messages should be written. If left blank the output is written to standard +# error (stderr). + +WARN_LOGFILE = ./output/build.log + +#--------------------------------------------------------------------------- +# Configuration options related to the input files +#--------------------------------------------------------------------------- + +# The INPUT tag is used to specify the files and/or directories that contain +# documented source files. You may enter file names like myfile.cpp or +# directories like /usr/src/myproject. Separate the files or directories with +# spaces. See also FILE_PATTERNS and EXTENSION_MAPPING +# Note: If this tag is empty the current directory is searched. + +INPUT = ..\..\lora-radio-driver-master \ + .\doxygen + +# This tag can be used to specify the character encoding of the source files +# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses +# libiconv (or the iconv built into libc) for the transcoding. See the libiconv +# documentation (see: https://www.gnu.org/software/libiconv/) for the list of +# possible encodings. +# The default value is: UTF-8. + +INPUT_ENCODING = UTF-8 + +# If the value of the INPUT tag contains directories, you can use the +# FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and +# *.h) to filter out the source-files in the directories. +# +# Note that for custom extensions or not directly supported extensions you also +# need to set EXTENSION_MAPPING for the extension otherwise the files are not +# read by doxygen. +# +# If left blank the following patterns are tested:*.c, *.cc, *.cxx, *.cpp, +# *.c++, *.java, *.ii, *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h, +# *.hh, *.hxx, *.hpp, *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc, +# *.m, *.markdown, *.md, *.mm, *.dox, *.py, *.pyw, *.f90, *.f95, *.f03, *.f08, +# *.f, *.for, *.tcl, *.vhd, *.vhdl, *.ucf, *.qsf and *.ice. + +FILE_PATTERNS = *.c \ + *.h + +# The RECURSIVE tag can be used to specify whether or not subdirectories should +# be searched for input files as well. +# The default value is: NO. + +RECURSIVE = YES + +# The EXCLUDE tag can be used to specify files and/or directories that should be +# excluded from the INPUT source files. This way you can easily exclude a +# subdirectory from a directory tree whose root is specified with the INPUT tag. +# +# Note that relative paths are relative to the directory from which doxygen is +# run. + +EXCLUDE = + +# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or +# directories that are symbolic links (a Unix file system feature) are excluded +# from the input. +# The default value is: NO. + +EXCLUDE_SYMLINKS = NO + +# If the value of the INPUT tag contains directories, you can use the +# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude +# certain files from those directories. +# +# Note that the wildcards are matched against the file with absolute path, so to +# exclude all test directories for example use the pattern */test/* + +EXCLUDE_PATTERNS = + +# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names +# (namespaces, classes, functions, etc.) that should be excluded from the +# output. The symbol name can be a fully qualified name, a word, or if the +# wildcard * is used, a substring. Examples: ANamespace, AClass, +# AClass::ANamespace, ANamespace::*Test +# +# Note that the wildcards are matched against the file with absolute path, so to +# exclude all test directories use the pattern */test/* + +EXCLUDE_SYMBOLS = + +# The EXAMPLE_PATH tag can be used to specify one or more files or directories +# that contain example code fragments that are included (see the \include +# command). + +EXAMPLE_PATH = + +# If the value of the EXAMPLE_PATH tag contains directories, you can use the +# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and +# *.h) to filter out the source-files in the directories. If left blank all +# files are included. + +EXAMPLE_PATTERNS = * + +# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be +# searched for input files to be used with the \include or \dontinclude commands +# irrespective of the value of the RECURSIVE tag. +# The default value is: NO. + +EXAMPLE_RECURSIVE = NO + +# The IMAGE_PATH tag can be used to specify one or more files or directories +# that contain images that are to be included in the documentation (see the +# \image command). + +IMAGE_PATH = ./doxygen_image + +# The INPUT_FILTER tag can be used to specify a program that doxygen should +# invoke to filter for each input file. Doxygen will invoke the filter program +# by executing (via popen()) the command: +# +# +# +# where is the value of the INPUT_FILTER tag, and is the +# name of an input file. Doxygen will then use the output that the filter +# program writes to standard output. If FILTER_PATTERNS is specified, this tag +# will be ignored. +# +# Note that the filter must not add or remove lines; it is applied before the +# code is scanned, but not when the output code is generated. If lines are added +# or removed, the anchors will not be placed correctly. +# +# Note that for custom extensions or not directly supported extensions you also +# need to set EXTENSION_MAPPING for the extension otherwise the files are not +# properly processed by doxygen. + +INPUT_FILTER = + +# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern +# basis. Doxygen will compare the file name with each pattern and apply the +# filter if there is a match. The filters are a list of the form: pattern=filter +# (like *.cpp=my_cpp_filter). See INPUT_FILTER for further information on how +# filters are used. If the FILTER_PATTERNS tag is empty or if none of the +# patterns match the file name, INPUT_FILTER is applied. +# +# Note that for custom extensions or not directly supported extensions you also +# need to set EXTENSION_MAPPING for the extension otherwise the files are not +# properly processed by doxygen. + +FILTER_PATTERNS = + +# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using +# INPUT_FILTER) will also be used to filter the input files that are used for +# producing the source files to browse (i.e. when SOURCE_BROWSER is set to YES). +# The default value is: NO. + +FILTER_SOURCE_FILES = NO + +# The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file +# pattern. A pattern will override the setting for FILTER_PATTERN (if any) and +# it is also possible to disable source filtering for a specific pattern using +# *.ext= (so without naming a filter). +# This tag requires that the tag FILTER_SOURCE_FILES is set to YES. + +FILTER_SOURCE_PATTERNS = + +# If the USE_MDFILE_AS_MAINPAGE tag refers to the name of a markdown file that +# is part of the input, its contents will be placed on the main page +# (index.html). This can be useful if you have a project on for instance GitHub +# and want to reuse the introduction page also for the doxygen output. + +USE_MDFILE_AS_MAINPAGE = + +#--------------------------------------------------------------------------- +# Configuration options related to source browsing +#--------------------------------------------------------------------------- + +# If the SOURCE_BROWSER tag is set to YES then a list of source files will be +# generated. Documented entities will be cross-referenced with these sources. +# +# Note: To get rid of all source code in the generated output, make sure that +# also VERBATIM_HEADERS is set to NO. +# The default value is: NO. + +SOURCE_BROWSER = YES + +# Setting the INLINE_SOURCES tag to YES will include the body of functions, +# classes and enums directly into the documentation. +# The default value is: NO. + +INLINE_SOURCES = NO + +# Setting the STRIP_CODE_COMMENTS tag to YES will instruct doxygen to hide any +# special comment blocks from generated source code fragments. Normal C, C++ and +# Fortran comments will always remain visible. +# The default value is: YES. + +STRIP_CODE_COMMENTS = YES + +# If the REFERENCED_BY_RELATION tag is set to YES then for each documented +# entity all documented functions referencing it will be listed. +# The default value is: NO. + +REFERENCED_BY_RELATION = YES + +# If the REFERENCES_RELATION tag is set to YES then for each documented function +# all documented entities called/used by that function will be listed. +# The default value is: NO. + +REFERENCES_RELATION = YES + +# If the REFERENCES_LINK_SOURCE tag is set to YES and SOURCE_BROWSER tag is set +# to YES then the hyperlinks from functions in REFERENCES_RELATION and +# REFERENCED_BY_RELATION lists will link to the source code. Otherwise they will +# link to the documentation. +# The default value is: YES. + +REFERENCES_LINK_SOURCE = YES + +# If SOURCE_TOOLTIPS is enabled (the default) then hovering a hyperlink in the +# source code will show a tooltip with additional information such as prototype, +# brief description and links to the definition and documentation. Since this +# will make the HTML file larger and loading of large files a bit slower, you +# can opt to disable this feature. +# The default value is: YES. +# This tag requires that the tag SOURCE_BROWSER is set to YES. + +SOURCE_TOOLTIPS = YES + +# If the USE_HTAGS tag is set to YES then the references to source code will +# point to the HTML generated by the htags(1) tool instead of doxygen built-in +# source browser. The htags tool is part of GNU's global source tagging system +# (see https://www.gnu.org/software/global/global.html). You will need version +# 4.8.6 or higher. +# +# To use it do the following: +# - Install the latest version of global +# - Enable SOURCE_BROWSER and USE_HTAGS in the configuration file +# - Make sure the INPUT points to the root of the source tree +# - Run doxygen as normal +# +# Doxygen will invoke htags (and that will in turn invoke gtags), so these +# tools must be available from the command line (i.e. in the search path). +# +# The result: instead of the source browser generated by doxygen, the links to +# source code will now point to the output of htags. +# The default value is: NO. +# This tag requires that the tag SOURCE_BROWSER is set to YES. + +USE_HTAGS = NO + +# If the VERBATIM_HEADERS tag is set the YES then doxygen will generate a +# verbatim copy of the header file for each class for which an include is +# specified. Set to NO to disable this. +# See also: Section \class. +# The default value is: YES. + +VERBATIM_HEADERS = YES + +# If the CLANG_ASSISTED_PARSING tag is set to YES then doxygen will use the +# clang parser (see: http://clang.llvm.org/) for more accurate parsing at the +# cost of reduced performance. This can be particularly helpful with template +# rich C++ code for which doxygen's built-in parser lacks the necessary type +# information. +# Note: The availability of this option depends on whether or not doxygen was +# generated with the -Duse_libclang=ON option for CMake. +# The default value is: NO. + +CLANG_ASSISTED_PARSING = NO + +# If clang assisted parsing is enabled you can provide the compiler with command +# line options that you would normally use when invoking the compiler. Note that +# the include paths will already be set by doxygen for the files and directories +# specified with INPUT and INCLUDE_PATH. +# This tag requires that the tag CLANG_ASSISTED_PARSING is set to YES. + +CLANG_OPTIONS = + +# If clang assisted parsing is enabled you can provide the clang parser with the +# path to the compilation database (see: +# http://clang.llvm.org/docs/HowToSetupToolingForLLVM.html) used when the files +# were built. This is equivalent to specifying the "-p" option to a clang tool, +# such as clang-check. These options will then be passed to the parser. +# Note: The availability of this option depends on whether or not doxygen was +# generated with the -Duse_libclang=ON option for CMake. + +CLANG_DATABASE_PATH = + +#--------------------------------------------------------------------------- +# Configuration options related to the alphabetical class index +#--------------------------------------------------------------------------- + +# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index of all +# compounds will be generated. Enable this if the project contains a lot of +# classes, structs, unions or interfaces. +# The default value is: YES. + +ALPHABETICAL_INDEX = NO + +# The COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns in +# which the alphabetical index list will be split. +# Minimum value: 1, maximum value: 20, default value: 5. +# This tag requires that the tag ALPHABETICAL_INDEX is set to YES. + +COLS_IN_ALPHA_INDEX = 5 + +# In case all classes in a project start with a common prefix, all classes will +# be put under the same header in the alphabetical index. The IGNORE_PREFIX tag +# can be used to specify a prefix (or a list of prefixes) that should be ignored +# while generating the index headers. +# This tag requires that the tag ALPHABETICAL_INDEX is set to YES. + +IGNORE_PREFIX = + +#--------------------------------------------------------------------------- +# Configuration options related to the HTML output +#--------------------------------------------------------------------------- + +# If the GENERATE_HTML tag is set to YES, doxygen will generate HTML output +# The default value is: YES. + +GENERATE_HTML = YES + +# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. If a +# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of +# it. +# The default directory is: html. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_OUTPUT = html + +# The HTML_FILE_EXTENSION tag can be used to specify the file extension for each +# generated HTML page (for example: .htm, .php, .asp). +# The default value is: .html. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_FILE_EXTENSION = .html + +# The HTML_HEADER tag can be used to specify a user-defined HTML header file for +# each generated HTML page. If the tag is left blank doxygen will generate a +# standard header. +# +# To get valid HTML the header file that includes any scripts and style sheets +# that doxygen needs, which is dependent on the configuration options used (e.g. +# the setting GENERATE_TREEVIEW). It is highly recommended to start with a +# default header using +# doxygen -w html new_header.html new_footer.html new_stylesheet.css +# YourConfigFile +# and then modify the file new_header.html. See also section "Doxygen usage" +# for information on how to generate the default header that doxygen normally +# uses. +# Note: The header is subject to change so you typically have to regenerate the +# default header when upgrading to a newer version of doxygen. For a description +# of the possible markers and block names see the documentation. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_HEADER = + +# The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each +# generated HTML page. If the tag is left blank doxygen will generate a standard +# footer. See HTML_HEADER for more information on how to generate a default +# footer and what special commands can be used inside the footer. See also +# section "Doxygen usage" for information on how to generate the default footer +# that doxygen normally uses. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_FOOTER = + +# The HTML_STYLESHEET tag can be used to specify a user-defined cascading style +# sheet that is used by each HTML page. It can be used to fine-tune the look of +# the HTML output. If left blank doxygen will generate a default style sheet. +# See also section "Doxygen usage" for information on how to generate the style +# sheet that doxygen normally uses. +# Note: It is recommended to use HTML_EXTRA_STYLESHEET instead of this tag, as +# it is more robust and this tag (HTML_STYLESHEET) will in the future become +# obsolete. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_STYLESHEET = + +# The HTML_EXTRA_STYLESHEET tag can be used to specify additional user-defined +# cascading style sheets that are included after the standard style sheets +# created by doxygen. Using this option one can overrule certain style aspects. +# This is preferred over using HTML_STYLESHEET since it does not replace the +# standard style sheet and is therefore more robust against future updates. +# Doxygen will copy the style sheet files to the output directory. +# Note: The order of the extra style sheet files is of importance (e.g. the last +# style sheet in the list overrules the setting of the previous ones in the +# list). For an example see the documentation. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_EXTRA_STYLESHEET = + +# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or +# other source files which should be copied to the HTML output directory. Note +# that these files will be copied to the base HTML output directory. Use the +# $relpath^ marker in the HTML_HEADER and/or HTML_FOOTER files to load these +# files. In the HTML_STYLESHEET file, use the file name only. Also note that the +# files will be copied as-is; there are no commands or markers available. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_EXTRA_FILES = + +# The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. Doxygen +# will adjust the colors in the style sheet and background images according to +# this color. Hue is specified as an angle on a colorwheel, see +# https://en.wikipedia.org/wiki/Hue for more information. For instance the value +# 0 represents red, 60 is yellow, 120 is green, 180 is cyan, 240 is blue, 300 +# purple, and 360 is red again. +# Minimum value: 0, maximum value: 359, default value: 220. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_HUE = 220 + +# The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of the colors +# in the HTML output. For a value of 0 the output will use grayscales only. A +# value of 255 will produce the most vivid colors. +# Minimum value: 0, maximum value: 255, default value: 100. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_SAT = 100 + +# The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to the +# luminance component of the colors in the HTML output. Values below 100 +# gradually make the output lighter, whereas values above 100 make the output +# darker. The value divided by 100 is the actual gamma applied, so 80 represents +# a gamma of 0.8, The value 220 represents a gamma of 2.2, and 100 does not +# change the gamma. +# Minimum value: 40, maximum value: 240, default value: 80. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_GAMMA = 80 + +# If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML +# page will contain the date and time when the page was generated. Setting this +# to YES can help to show when doxygen was last run and thus if the +# documentation is up to date. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_TIMESTAMP = NO + +# If the HTML_DYNAMIC_MENUS tag is set to YES then the generated HTML +# documentation will contain a main index with vertical navigation menus that +# are dynamically created via Javascript. If disabled, the navigation index will +# consists of multiple levels of tabs that are statically embedded in every HTML +# page. Disable this option to support browsers that do not have Javascript, +# like the Qt help browser. +# The default value is: YES. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_DYNAMIC_MENUS = YES + +# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML +# documentation will contain sections that can be hidden and shown after the +# page has loaded. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_DYNAMIC_SECTIONS = NO + +# With HTML_INDEX_NUM_ENTRIES one can control the preferred number of entries +# shown in the various tree structured indices initially; the user can expand +# and collapse entries dynamically later on. Doxygen will expand the tree to +# such a level that at most the specified number of entries are visible (unless +# a fully collapsed tree already exceeds this amount). So setting the number of +# entries 1 will produce a full collapsed tree by default. 0 is a special value +# representing an infinite number of entries and will result in a full expanded +# tree by default. +# Minimum value: 0, maximum value: 9999, default value: 100. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_INDEX_NUM_ENTRIES = 100 + +# If the GENERATE_DOCSET tag is set to YES, additional index files will be +# generated that can be used as input for Apple's Xcode 3 integrated development +# environment (see: https://developer.apple.com/xcode/), introduced with OSX +# 10.5 (Leopard). To create a documentation set, doxygen will generate a +# Makefile in the HTML output directory. Running make will produce the docset in +# that directory and running make install will install the docset in +# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find it at +# startup. See https://developer.apple.com/library/archive/featuredarticles/Doxy +# genXcode/_index.html for more information. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_DOCSET = NO + +# This tag determines the name of the docset feed. A documentation feed provides +# an umbrella under which multiple documentation sets from a single provider +# (such as a company or product suite) can be grouped. +# The default value is: Doxygen generated docs. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_FEEDNAME = "Doxygen generated docs" + +# This tag specifies a string that should uniquely identify the documentation +# set bundle. This should be a reverse domain-name style string, e.g. +# com.mycompany.MyDocSet. Doxygen will append .docset to the name. +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_BUNDLE_ID = org.doxygen.Project + +# The DOCSET_PUBLISHER_ID tag specifies a string that should uniquely identify +# the documentation publisher. This should be a reverse domain-name style +# string, e.g. com.mycompany.MyDocSet.documentation. +# The default value is: org.doxygen.Publisher. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_PUBLISHER_ID = org.doxygen.Publisher + +# The DOCSET_PUBLISHER_NAME tag identifies the documentation publisher. +# The default value is: Publisher. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_PUBLISHER_NAME = Publisher + +# If the GENERATE_HTMLHELP tag is set to YES then doxygen generates three +# additional HTML index files: index.hhp, index.hhc, and index.hhk. The +# index.hhp is a project file that can be read by Microsoft's HTML Help Workshop +# (see: https://www.microsoft.com/en-us/download/details.aspx?id=21138) on +# Windows. +# +# The HTML Help Workshop contains a compiler that can convert all HTML output +# generated by doxygen into a single compiled HTML file (.chm). Compiled HTML +# files are now used as the Windows 98 help format, and will replace the old +# Windows help format (.hlp) on all Windows platforms in the future. Compressed +# HTML files also contain an index, a table of contents, and you can search for +# words in the documentation. The HTML workshop also contains a viewer for +# compressed HTML files. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_HTMLHELP = YES + +# The CHM_FILE tag can be used to specify the file name of the resulting .chm +# file. You can add a path in front of the file if the result should not be +# written to the html output directory. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +CHM_FILE = ../lora-radio-driver.chm + +# The HHC_LOCATION tag can be used to specify the location (absolute path +# including file name) of the HTML help compiler (hhc.exe). If non-empty, +# doxygen will try to run the HTML help compiler on the generated index.hhp. +# The file has to be specified with full path. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +HHC_LOCATION = "D:/Program Files (x86)/HTML Help Workshop/hhc.exe" + +# The GENERATE_CHI flag controls if a separate .chi index file is generated +# (YES) or that it should be included in the master .chm file (NO). +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +GENERATE_CHI = NO + +# The CHM_INDEX_ENCODING is used to encode HtmlHelp index (hhk), content (hhc) +# and project file content. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +CHM_INDEX_ENCODING = GBK + +# The BINARY_TOC flag controls whether a binary table of contents is generated +# (YES) or a normal table of contents (NO) in the .chm file. Furthermore it +# enables the Previous and Next buttons. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +BINARY_TOC = NO + +# The TOC_EXPAND flag can be set to YES to add extra items for group members to +# the table of contents of the HTML help documentation and to the tree view. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +TOC_EXPAND = NO + +# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and +# QHP_VIRTUAL_FOLDER are set, an additional index file will be generated that +# can be used as input for Qt's qhelpgenerator to generate a Qt Compressed Help +# (.qch) of the generated HTML documentation. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_QHP = NO + +# If the QHG_LOCATION tag is specified, the QCH_FILE tag can be used to specify +# the file name of the resulting .qch file. The path specified is relative to +# the HTML output folder. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QCH_FILE = + +# The QHP_NAMESPACE tag specifies the namespace to use when generating Qt Help +# Project output. For more information please see Qt Help Project / Namespace +# (see: http://doc.qt.io/archives/qt-4.8/qthelpproject.html#namespace). +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_NAMESPACE = org.doxygen.Project + +# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating Qt +# Help Project output. For more information please see Qt Help Project / Virtual +# Folders (see: http://doc.qt.io/archives/qt-4.8/qthelpproject.html#virtual- +# folders). +# The default value is: doc. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_VIRTUAL_FOLDER = doc + +# If the QHP_CUST_FILTER_NAME tag is set, it specifies the name of a custom +# filter to add. For more information please see Qt Help Project / Custom +# Filters (see: http://doc.qt.io/archives/qt-4.8/qthelpproject.html#custom- +# filters). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_CUST_FILTER_NAME = + +# The QHP_CUST_FILTER_ATTRS tag specifies the list of the attributes of the +# custom filter to add. For more information please see Qt Help Project / Custom +# Filters (see: http://doc.qt.io/archives/qt-4.8/qthelpproject.html#custom- +# filters). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_CUST_FILTER_ATTRS = + +# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this +# project's filter section matches. Qt Help Project / Filter Attributes (see: +# http://doc.qt.io/archives/qt-4.8/qthelpproject.html#filter-attributes). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_SECT_FILTER_ATTRS = + +# The QHG_LOCATION tag can be used to specify the location of Qt's +# qhelpgenerator. If non-empty doxygen will try to run qhelpgenerator on the +# generated .qhp file. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHG_LOCATION = + +# If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files will be +# generated, together with the HTML files, they form an Eclipse help plugin. To +# install this plugin and make it available under the help contents menu in +# Eclipse, the contents of the directory containing the HTML and XML files needs +# to be copied into the plugins directory of eclipse. The name of the directory +# within the plugins directory should be the same as the ECLIPSE_DOC_ID value. +# After copying Eclipse needs to be restarted before the help appears. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_ECLIPSEHELP = NO + +# A unique identifier for the Eclipse help plugin. When installing the plugin +# the directory name containing the HTML and XML files should also have this +# name. Each documentation set should have its own identifier. +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_ECLIPSEHELP is set to YES. + +ECLIPSE_DOC_ID = org.doxygen.Project + +# If you want full control over the layout of the generated HTML pages it might +# be necessary to disable the index and replace it with your own. The +# DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) at top +# of each HTML page. A value of NO enables the index and the value YES disables +# it. Since the tabs in the index contain the same information as the navigation +# tree, you can set this option to YES if you also set GENERATE_TREEVIEW to YES. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +DISABLE_INDEX = NO + +# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index +# structure should be generated to display hierarchical information. If the tag +# value is set to YES, a side panel will be generated containing a tree-like +# index structure (just like the one that is generated for HTML Help). For this +# to work a browser that supports JavaScript, DHTML, CSS and frames is required +# (i.e. any modern browser). Windows users are probably better off using the +# HTML help feature. Via custom style sheets (see HTML_EXTRA_STYLESHEET) one can +# further fine-tune the look of the index. As an example, the default style +# sheet generated by doxygen has an example that shows how to put an image at +# the root of the tree instead of the PROJECT_NAME. Since the tree basically has +# the same information as the tab index, you could consider setting +# DISABLE_INDEX to YES when enabling this option. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_TREEVIEW = NO + +# The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values that +# doxygen will group on one line in the generated HTML documentation. +# +# Note that a value of 0 will completely suppress the enum values from appearing +# in the overview section. +# Minimum value: 0, maximum value: 20, default value: 4. +# This tag requires that the tag GENERATE_HTML is set to YES. + +ENUM_VALUES_PER_LINE = 4 + +# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be used +# to set the initial width (in pixels) of the frame in which the tree is shown. +# Minimum value: 0, maximum value: 1500, default value: 250. +# This tag requires that the tag GENERATE_HTML is set to YES. + +TREEVIEW_WIDTH = 250 + +# If the EXT_LINKS_IN_WINDOW option is set to YES, doxygen will open links to +# external symbols imported via tag files in a separate window. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +EXT_LINKS_IN_WINDOW = NO + +# Use this tag to change the font size of LaTeX formulas included as images in +# the HTML documentation. When you change the font size after a successful +# doxygen run you need to manually remove any form_*.png images from the HTML +# output directory to force them to be regenerated. +# Minimum value: 8, maximum value: 50, default value: 10. +# This tag requires that the tag GENERATE_HTML is set to YES. + +FORMULA_FONTSIZE = 10 + +# Use the FORMULA_TRANSPARENT tag to determine whether or not the images +# generated for formulas are transparent PNGs. Transparent PNGs are not +# supported properly for IE 6.0, but are supported on all modern browsers. +# +# Note that when changing this option you need to delete any form_*.png files in +# the HTML output directory before the changes have effect. +# The default value is: YES. +# This tag requires that the tag GENERATE_HTML is set to YES. + +FORMULA_TRANSPARENT = YES + +# Enable the USE_MATHJAX option to render LaTeX formulas using MathJax (see +# https://www.mathjax.org) which uses client side Javascript for the rendering +# instead of using pre-rendered bitmaps. Use this if you do not have LaTeX +# installed or if you want to formulas look prettier in the HTML output. When +# enabled you may also need to install MathJax separately and configure the path +# to it using the MATHJAX_RELPATH option. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +USE_MATHJAX = NO + +# When MathJax is enabled you can set the default output format to be used for +# the MathJax output. See the MathJax site (see: +# http://docs.mathjax.org/en/latest/output.html) for more details. +# Possible values are: HTML-CSS (which is slower, but has the best +# compatibility), NativeMML (i.e. MathML) and SVG. +# The default value is: HTML-CSS. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_FORMAT = HTML-CSS + +# When MathJax is enabled you need to specify the location relative to the HTML +# output directory using the MATHJAX_RELPATH option. The destination directory +# should contain the MathJax.js script. For instance, if the mathjax directory +# is located at the same level as the HTML output directory, then +# MATHJAX_RELPATH should be ../mathjax. The default value points to the MathJax +# Content Delivery Network so you can quickly see the result without installing +# MathJax. However, it is strongly recommended to install a local copy of +# MathJax from https://www.mathjax.org before deployment. +# The default value is: https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_RELPATH = https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/ + +# The MATHJAX_EXTENSIONS tag can be used to specify one or more MathJax +# extension names that should be enabled during MathJax rendering. For example +# MATHJAX_EXTENSIONS = TeX/AMSmath TeX/AMSsymbols +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_EXTENSIONS = + +# The MATHJAX_CODEFILE tag can be used to specify a file with javascript pieces +# of code that will be used on startup of the MathJax code. See the MathJax site +# (see: http://docs.mathjax.org/en/latest/output.html) for more details. For an +# example see the documentation. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_CODEFILE = + +# When the SEARCHENGINE tag is enabled doxygen will generate a search box for +# the HTML output. The underlying search engine uses javascript and DHTML and +# should work on any modern browser. Note that when using HTML help +# (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets (GENERATE_DOCSET) +# there is already a search function so this one should typically be disabled. +# For large projects the javascript based search engine can be slow, then +# enabling SERVER_BASED_SEARCH may provide a better solution. It is possible to +# search using the keyboard; to jump to the search box use + S +# (what the is depends on the OS and browser, but it is typically +# , /