From a1d7766e47d1641c039c597ca4d4606083d79ed2 Mon Sep 17 00:00:00 2001 From: Alexander Zhirov Date: Mon, 20 Feb 2023 09:41:03 +0300 Subject: [PATCH] =?UTF-8?q?=D0=92=D0=B5=D1=80=D1=81=D0=B8=D1=8F=201.2.0=20?= =?UTF-8?q?=D0=9D=D0=BE=D0=B2=D0=BE=D0=B5:=20-=20=D0=9E=D1=82=D0=BE=D0=B1?= =?UTF-8?q?=D1=80=D0=B0=D0=B6=D0=B5=D0=BD=D0=B8=D0=B5=20=D1=80=D0=B0=D1=81?= =?UTF-8?q?=D0=BA=D0=BB=D0=B0=D0=B4=D0=BA=D0=B8=20=D0=BA=D0=BB=D0=B0=D0=B2?= =?UTF-8?q?=D0=B8=D0=B0=D1=82=D1=83=D1=80=D1=8B=20=D0=9E=D0=B1=D0=BD=D0=BE?= =?UTF-8?q?=D0=B2=D0=BB=D0=B5=D0=BD=D0=BE:=20-=20=D0=9E=D0=BF=D0=B8=D1=81?= =?UTF-8?q?=D0=B0=D0=BD=D0=B8=D0=B5=20=D0=BF=D1=80=D0=BE=D0=B3=D1=80=D0=B0?= =?UTF-8?q?=D0=BC=D0=BC=D1=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 27 +- freerdp/client/X11/cli/about.c | 21 +- freerdp/client/X11/cli/gui.c | 44 +- freerdp/client/X11/cli/images.c | 393 + freerdp/client/X11/cli/images.h | 3 + freerdp/client/X11/cli/keylang.c | 53 + freerdp/client/X11/cli/keylang.h | 13 + freerdp/client/X11/cli/settings.c | 28 +- gui.patch | 21 +- img/main.png | Bin 37833 -> 27643 bytes img/settings.png | Bin 47337 -> 59863 bytes sqlite3/sqlite3.a | Bin 935258 -> 0 bytes sqlite3/sqlite3.h | 12836 ---------------------------- 13 files changed, 585 insertions(+), 12854 deletions(-) create mode 100644 freerdp/client/X11/cli/keylang.c create mode 100644 freerdp/client/X11/cli/keylang.h delete mode 100644 sqlite3/sqlite3.a delete mode 100644 sqlite3/sqlite3.h diff --git a/README.md b/README.md index 30ddc45..e37459e 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,9 @@ # GUI для FreeRDP -- Основано на базе [FreeRDP 2.9.0](https://github.com/FreeRDP/FreeRDP) ([локальная версия](http://git.belpig.ru/forks/FreeRDP)) +- Основано на базе [FreeRDP 2.10.0](https://github.com/FreeRDP/FreeRDP) ([локальная версия](http://git.belpig.ru/forks/FreeRDP)) - Надстройка для FreeRDP на основе библиотеки [`IUP`](https://www.tecgraf.puc-rio.br/iup/). ![main.png](img/main.png) - ![settings.png](img/settings.png) ## Сборка программы @@ -14,16 +13,16 @@ ### Подготовка -Скопировать файлы из [freerdp](freerdp/) в оригинальный проект `(2.9.0)`: +Скопировать файлы из [freerdp](freerdp/) в оригинальный проект `(2.10.0)`: ```sh -cp -r GUI-FreeRDP/freerdp/* freerdp-2.9.0/ +cp -r GUI-FreeRDP/freerdp/* freerdp-2.10.0/ ``` Перейти в оригинальный каталог: ```sh -cd freerdp-2.9.0 +cd freerdp-2.10.0 ``` Применить патчи: @@ -35,8 +34,13 @@ git apply ../GUI-FreeRDP/xrandr.patch ## Сборка -Параметр `IUP_WITH_COLOR_BUTTONS` отвечает за окрашивание кнопок (по умолчанию `OFF`). -Параметр `IUP_WITH_SOUND_CHECKBOX` включает поддержку параметров звука (по умолчанию `OFF`). +Параметры сборки: + +- `IUP_WITH_COLOR_BUTTONS` - поддержка цветных кнопок (по умолчанию `OFF`) +- `IUP_WITH_SOUND_CHECKBOX` - поддержка параметров звука (по умолчанию `OFF`) +- `IUP_DESCRIPTION_ABOUT_ARCH_X32` - в описании "О прогамме" отобразить пометку для x32 архитектур (по умолчанию `OFF`) +- `IUP_WITH_LANGUAGE_KEYBOARD_ICON` - поддержка отображения раскладки клавиатуры (по умолчанию `OFF`) +- `IUP_DESCRIPTION_ABOUT_MIRATORG` - в описании "О прогамме" отобразить рабочие контактные данные (по умолчанию `OFF`) Создать отдельный каталог `build`: @@ -48,7 +52,7 @@ cd build и выполнить в нём сборку: ```sh -cmake -B . -S ../freerdp-2.9.0 \ +cmake -B . -S ../freerdp-2.10.0 \ -DWITH_WAYLAND=OFF \ -DWITH_OSS=OFF \ -DWITH_ALSA=OFF \ @@ -64,9 +68,12 @@ cmake -B . -S ../freerdp-2.9.0 \ -DWITH_DSP_FFMPEG=OFF \ -DWITH_FAAC=OFF \ -DWITH_SSE2=ON \ - -DIUP_WITH_COLOR_BUTTONS=OFF \ + -DBUILD_SHARED_LIBS=OFF \ + -DIUP_WITH_COLOR_BUTTONS=ON \ -DIUP_WITH_SOUND_CHECKBOX=OFF \ - -DBUILD_SHARED_LIBS=OFF + -DIUP_DESCRIPTION_ABOUT_ARCH_X32=OFF \ + -DIUP_WITH_LANGUAGE_KEYBOARD_ICON=ON \ + -DIUP_DESCRIPTION_ABOUT_MIRATORG=ON ``` и компиляцию программы: diff --git a/freerdp/client/X11/cli/about.c b/freerdp/client/X11/cli/about.c index 0f55c44..5c91ae9 100644 --- a/freerdp/client/X11/cli/about.c +++ b/freerdp/client/X11/cli/about.c @@ -9,7 +9,24 @@ char* getAbout() { - char *about = "" - "GUI FreeRDP\nv1.2.1\nСобрано на основе freerdp v2.9.0"; + char *about = + "GUI FreeRDP v1.2.0\n" + "Собрано на основе FreeRDP v2.10.0\n" +#ifdef IUP_DESCRIPTION_ABOUT_ARCH_X32 + "Для тонкого клиента архитектуры x32\n" +#else + "Для тонкого клиента архитектуры x64\n" +#endif + "Все вопросы оставлять по адресу:\n" +#ifdef IUP_DESCRIPTION_ABOUT_MIRATORG + "http://git.belpig.ru/a.zhirov/GUI-FreeRDP/issues\n" + "Электронная почта: a.zhirov@agrohold.ru\n" + "© Александр Жиров" +#else + "https://git.zhirov.kz/alexander/GUI-FreeRDP\n" + "Электронная почта: alexander@zhirov.kz\n" + "© Александр Жиров" +#endif + ; return about; } diff --git a/freerdp/client/X11/cli/gui.c b/freerdp/client/X11/cli/gui.c index 7744dcf..7cbd9aa 100644 --- a/freerdp/client/X11/cli/gui.c +++ b/freerdp/client/X11/cli/gui.c @@ -15,6 +15,7 @@ #include "images.h" #include "arguments.h" #include "address.h" +#include "keylang.h" #include "db.h" #include "xrdp.h" @@ -121,6 +122,23 @@ static void createHostsList(Ihandle *iupList) dbFreeHosts(hosts); } +#ifdef IUP_WITH_LANGUAGE_KEYBOARD_ICON +static int k_any(Ihandle *self, int key) +{ + int langcode = getKeyboardLanguage(); + if (langcode) + { + if (langcode == 1) + IupSetAttribute(IupGetDialogChild(self, "KEYBOARD"), "IMAGE", "keyboardUs"); + else if (langcode == 2) + IupSetAttribute(IupGetDialogChild(self, "KEYBOARD"), "IMAGE", "keyboardRu"); + else + IupSetAttribute(IupGetDialogChild(self, "KEYBOARD"), "IMAGE", "keyboardEmpty"); + } + return IUP_DEFAULT; +} +#endif + Ihandle* guiStart() { Ihandle *dlg; @@ -184,6 +202,22 @@ Ihandle* guiStart() hBoxPassword = IupHbox(labelPassword, inputPassword, NULL); IupSetAttribute(hBoxPassword, "MARGIN", "10x10"); +#ifdef IUP_WITH_LANGUAGE_KEYBOARD_ICON + Ihandle *keyboardRu, *keyboardUs, *keyboardEmpty, *iconLang; + keyboardEmpty = IupImageRGBA(32, 32, empty_keyboard); + IupSetHandle("keyboardEmpty", keyboardEmpty); + keyboardRu = IupImageRGBA(32, 32, ru_keyboard); + IupSetHandle("keyboardRu", keyboardRu); + keyboardUs = IupImageRGBA(32, 32, us_keyboard); + IupSetHandle("keyboardUs", keyboardUs); + iconLang = IupLabel(NULL); + IupSetAttribute(iconLang, "NAME", "KEYBOARD"); + IupSetAttribute(iconLang, "IMAGE", "keyboardRu"); + IupSetAttribute(iconLang, "FLOATING", "YES"); + IupSetAttribute(iconLang, "POSITION", "13,222"); + IupSetAttribute(iconLang, "TIP", "Текущая раскладка клавиатуры (Alt+Shift)"); +#endif + btnConnect = IupButton("Подключение", NULL); IupSetHandle("CONNECT", btnConnect); IupSetAttribute(btnConnect, "NAME", "CONNECT"); @@ -215,7 +249,11 @@ Ihandle* guiStart() IupSetAttribute(hBoxButtons, "GAP", "10"); IupSetAttribute(hBoxButtons, "MARGIN", "10x10"); - vBoxMain = IupVbox(labelImage, hBoxServer, hBoxUser, hBoxPassword, hBoxButtons, NULL); + vBoxMain = IupVbox( +#ifdef IUP_WITH_LANGUAGE_KEYBOARD_ICON + iconLang, +#endif + labelImage, hBoxServer, hBoxUser, hBoxPassword, hBoxButtons, NULL); IupSetCallback(btnConnect, "ACTION", (Icallback) guiConnect); IupSetCallback(btnClose, "ACTION", (Icallback) guiExit); @@ -229,6 +267,10 @@ Ihandle* guiStart() IupSetAttribute(dlg, "PARENTDIALOG", "MAIN_WINDOW"); IupSetAttribute(dlg, "DEFAULTENTER", "CONNECT"); IupSetAttribute(dlg, "DEFAULTESC", "CLOSE"); +#ifdef IUP_WITH_LANGUAGE_KEYBOARD_ICON + IupSetCallback(dlg, "iup_XkeyAlt(K_LSHIFT)", (Icallback) k_any); + IupSetCallback(dlg, "GETFOCUS_CB", (Icallback) k_any); +#endif return dlg; } diff --git a/freerdp/client/X11/cli/images.c b/freerdp/client/X11/cli/images.c index 45b3b18..d919419 100644 --- a/freerdp/client/X11/cli/images.c +++ b/freerdp/client/X11/cli/images.c @@ -1,5 +1,398 @@ #include "images.h" +const unsigned char empty_keyboard[] = { + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 37, 0, 0, 0, 116, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, + 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, + 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, + 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 116, 0, 0, 0, 36, + 0, 0, 0, 219, 0, 0, 0, 130, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, + 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, + 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, + 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 131, 0, 0, 0, 218, + 0, 0, 0, 239, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 239, + 0, 0, 0, 239, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 239, + 0, 0, 0, 239, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 239, + 0, 0, 0, 239, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 239, + 0, 0, 0, 239, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 239, + 0, 0, 0, 239, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 239, + 0, 0, 0, 239, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 239, + 0, 0, 0, 239, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 239, + 0, 0, 0, 239, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 239, + 0, 0, 0, 239, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 239, + 0, 0, 0, 239, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 239, + 0, 0, 0, 239, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 239, + 0, 0, 0, 239, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 239, + 0, 0, 0, 239, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 239, + 0, 0, 0, 239, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 239, + 0, 0, 0, 239, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 239, + 0, 0, 0, 239, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 239, + 0, 0, 0, 239, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 239, + 0, 0, 0, 218, 0, 0, 0, 131, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, + 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, + 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, + 0, 0, 0, 119, 0, 0, 0, 99, 0, 0, 0, 0, 0, 0, 0, 94, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 131, 0, 0, 0, 218, + 0, 0, 0, 36, 0, 0, 0, 115, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, + 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, + 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, + 0, 0, 0, 119, 0, 0, 0, 103, 0, 0, 0, 0, 0, 0, 0, 98, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 115, 0, 0, 0, 35, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 +}; + +const unsigned char ru_keyboard[] = { + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 3, 18, 30, 36, 83, 34, 43, 48, 201, 30, 39, 45, 228, 30, 39, 45, 228, 30, 39, 45, 228, 30, 39, 45, 228, 30, 39, 45, 228, + 30, 39, 45, 228, 30, 39, 45, 228, 30, 39, 45, 228, 30, 39, 45, 228, 30, 39, 45, 228, 30, 39, 45, 228, 30, 39, 45, 228, 30, 39, 45, 228, + 30, 39, 45, 228, 30, 39, 45, 228, 30, 39, 45, 228, 30, 39, 45, 228, 30, 39, 45, 228, 30, 39, 45, 228, 30, 39, 45, 228, 30, 39, 45, 228, + 30, 39, 45, 228, 30, 39, 45, 228, 30, 39, 45, 228, 30, 39, 45, 228, 30, 39, 45, 228, 34, 43, 48, 201, 18, 30, 36, 83, 0, 0, 0, 3, + 26, 33, 38, 107, 60, 67, 72, 244, 185, 188, 190, 255, 211, 213, 214, 255, 211, 213, 214, 255, 211, 213, 214, 255, 211, 213, 214, 255, 211, 213, 214, 255, + 211, 213, 214, 255, 211, 213, 214, 255, 211, 213, 214, 255, 211, 213, 214, 255, 211, 213, 214, 255, 211, 213, 214, 255, 211, 213, 214, 255, 211, 213, 214, 255, + 211, 213, 214, 255, 211, 213, 214, 255, 211, 213, 214, 255, 211, 213, 214, 255, 211, 213, 214, 255, 211, 213, 214, 255, 211, 213, 214, 255, 211, 213, 214, 255, + 211, 213, 214, 255, 211, 213, 214, 255, 211, 213, 214, 255, 211, 213, 214, 255, 211, 213, 214, 255, 185, 188, 190, 255, 60, 67, 72, 244, 26, 33, 38, 107, + 33, 42, 47, 224, 208, 209, 211, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, + 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, + 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, + 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 208, 209, 211, 255, 33, 42, 47, 224, + 18, 27, 33, 255, 248, 248, 248, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, + 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, + 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, + 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 248, 248, 248, 255, 18, 27, 33, 255, + 18, 27, 33, 255, 248, 248, 248, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, + 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, + 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, + 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 248, 248, 248, 255, 18, 27, 33, 255, + 18, 27, 33, 255, 248, 248, 248, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, + 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, + 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, + 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 248, 248, 248, 255, 18, 27, 33, 255, + 18, 27, 33, 255, 248, 248, 248, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, + 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, + 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, + 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 255, 248, 248, 248, 255, 18, 27, 33, 255, + 18, 27, 33, 255, 22, 31, 37, 253, 22, 31, 37, 253, 22, 31, 37, 253, 22, 31, 37, 253, 22, 31, 37, 253, 22, 31, 37, 253, 22, 31, 37, 253, + 22, 31, 37, 253, 22, 31, 37, 253, 22, 31, 37, 253, 22, 31, 37, 253, 22, 31, 37, 253, 22, 31, 37, 253, 22, 31, 37, 253, 22, 31, 37, 253, + 22, 31, 37, 253, 22, 31, 37, 253, 22, 31, 37, 253, 22, 31, 37, 253, 22, 31, 37, 253, 22, 31, 37, 253, 22, 31, 37, 253, 22, 31, 37, 253, + 22, 31, 37, 253, 22, 31, 37, 253, 22, 31, 37, 253, 22, 31, 37, 253, 22, 31, 37, 253, 22, 31, 37, 253, 22, 31, 37, 253, 18, 27, 33, 255, + 18, 27, 33, 255, 16, 56, 144, 255, 16, 57, 147, 255, 16, 57, 147, 255, 16, 57, 147, 255, 16, 57, 147, 255, 16, 57, 147, 255, 16, 57, 147, 255, + 16, 57, 147, 255, 16, 57, 147, 255, 16, 57, 147, 255, 16, 57, 147, 255, 16, 57, 147, 255, 16, 57, 147, 255, 16, 57, 147, 255, 16, 57, 147, 255, + 16, 57, 147, 255, 16, 57, 147, 255, 16, 57, 147, 255, 16, 57, 147, 255, 16, 57, 147, 255, 16, 57, 147, 255, 16, 57, 147, 255, 16, 57, 147, 255, + 16, 57, 147, 255, 16, 57, 147, 255, 16, 57, 147, 255, 16, 57, 147, 255, 16, 57, 147, 255, 16, 57, 147, 255, 16, 56, 144, 255, 18, 27, 33, 255, + 18, 27, 33, 255, 16, 58, 151, 255, 16, 59, 155, 255, 16, 59, 155, 255, 16, 59, 155, 255, 16, 59, 155, 255, 16, 59, 155, 255, 16, 59, 155, 255, + 16, 59, 155, 255, 16, 59, 155, 255, 16, 59, 155, 255, 16, 59, 155, 255, 16, 59, 155, 255, 16, 59, 155, 255, 16, 59, 155, 255, 16, 59, 155, 255, + 16, 59, 155, 255, 16, 59, 155, 255, 16, 59, 155, 255, 16, 59, 155, 255, 16, 59, 155, 255, 16, 59, 155, 255, 16, 59, 155, 255, 16, 59, 155, 255, + 16, 59, 155, 255, 16, 59, 155, 255, 16, 59, 155, 255, 16, 59, 155, 255, 16, 59, 155, 255, 16, 59, 155, 255, 16, 58, 151, 255, 18, 27, 33, 255, + 18, 27, 33, 255, 16, 58, 151, 255, 16, 59, 155, 255, 16, 59, 155, 255, 16, 59, 155, 255, 16, 59, 155, 255, 16, 59, 155, 255, 16, 59, 155, 255, + 16, 59, 155, 255, 16, 59, 155, 255, 16, 59, 155, 255, 16, 59, 155, 255, 16, 59, 155, 255, 16, 59, 155, 255, 16, 59, 155, 255, 16, 59, 155, 255, + 16, 59, 155, 255, 16, 59, 155, 255, 16, 59, 155, 255, 16, 59, 155, 255, 16, 59, 155, 255, 16, 59, 155, 255, 16, 59, 155, 255, 16, 59, 155, 255, + 16, 59, 155, 255, 16, 59, 155, 255, 16, 59, 155, 255, 16, 59, 155, 255, 16, 59, 155, 255, 16, 59, 155, 255, 16, 58, 151, 255, 18, 27, 33, 255, + 18, 27, 33, 255, 16, 58, 151, 255, 16, 59, 155, 255, 16, 59, 155, 255, 16, 59, 155, 255, 16, 59, 155, 255, 16, 59, 155, 255, 16, 59, 155, 255, + 16, 59, 155, 255, 16, 59, 155, 255, 16, 59, 155, 255, 16, 59, 155, 255, 16, 59, 155, 255, 16, 59, 155, 255, 16, 59, 155, 255, 16, 59, 155, 255, + 16, 59, 155, 255, 16, 59, 155, 255, 16, 59, 155, 255, 16, 59, 155, 255, 16, 59, 155, 255, 16, 59, 155, 255, 16, 59, 155, 255, 16, 59, 155, 255, + 16, 59, 155, 255, 16, 59, 155, 255, 16, 59, 155, 255, 16, 59, 155, 255, 16, 59, 155, 255, 16, 59, 155, 255, 16, 58, 151, 255, 18, 27, 33, 255, + 18, 27, 33, 255, 16, 58, 151, 255, 16, 59, 155, 255, 16, 59, 155, 255, 16, 59, 155, 255, 16, 59, 155, 255, 16, 59, 155, 255, 16, 59, 155, 255, + 16, 59, 155, 255, 16, 59, 155, 255, 16, 59, 155, 255, 16, 59, 155, 255, 16, 59, 155, 255, 16, 59, 155, 255, 16, 59, 155, 255, 16, 59, 155, 255, + 16, 59, 155, 255, 16, 59, 155, 255, 16, 59, 155, 255, 16, 59, 155, 255, 16, 59, 155, 255, 16, 59, 155, 255, 16, 59, 155, 255, 16, 59, 155, 255, + 16, 59, 155, 255, 16, 59, 155, 255, 16, 59, 155, 255, 16, 59, 155, 255, 16, 59, 155, 255, 16, 59, 155, 255, 16, 58, 151, 255, 18, 27, 33, 255, + 18, 27, 33, 255, 16, 56, 144, 255, 16, 57, 147, 255, 16, 57, 147, 255, 16, 57, 147, 255, 16, 57, 147, 255, 16, 57, 147, 255, 16, 57, 147, 255, + 16, 57, 147, 255, 16, 57, 147, 255, 16, 57, 147, 255, 16, 57, 147, 255, 16, 57, 147, 255, 16, 57, 147, 255, 16, 57, 147, 255, 16, 57, 147, 255, + 16, 57, 147, 255, 16, 57, 147, 255, 16, 57, 147, 255, 16, 57, 147, 255, 16, 57, 147, 255, 16, 57, 147, 255, 16, 57, 147, 255, 16, 57, 147, 255, + 16, 57, 147, 255, 16, 58, 153, 255, 16, 59, 155, 255, 16, 58, 150, 255, 16, 57, 147, 255, 16, 57, 147, 255, 16, 56, 144, 255, 18, 27, 33, 255, + 18, 27, 33, 255, 21, 27, 34, 253, 21, 27, 34, 253, 21, 27, 34, 253, 21, 27, 34, 253, 21, 27, 34, 253, 21, 27, 34, 253, 21, 27, 34, 253, + 21, 27, 34, 253, 21, 27, 34, 253, 21, 27, 34, 253, 21, 27, 34, 253, 21, 27, 34, 253, 21, 27, 34, 253, 21, 27, 34, 253, 21, 27, 34, 253, + 21, 27, 34, 253, 21, 27, 34, 253, 21, 27, 34, 253, 21, 27, 34, 253, 21, 27, 34, 253, 21, 27, 34, 253, 21, 27, 34, 253, 21, 27, 34, 253, + 21, 27, 34, 253, 82, 31, 51, 227, 176, 38, 76, 194, 35, 28, 37, 247, 21, 27, 34, 253, 21, 27, 34, 253, 21, 27, 34, 253, 18, 27, 33, 255, + 18, 27, 33, 255, 230, 31, 51, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, + 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, + 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, + 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 230, 31, 51, 255, 18, 27, 33, 255, + 18, 27, 33, 255, 230, 31, 51, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, + 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, + 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, + 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 230, 31, 51, 255, 18, 27, 33, 255, + 18, 27, 33, 255, 230, 31, 51, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, + 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, + 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, + 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 230, 31, 51, 255, 18, 27, 33, 255, + 18, 27, 33, 255, 230, 31, 51, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, + 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, + 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, + 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 230, 31, 51, 255, 18, 27, 33, 255, + 31, 27, 34, 224, 193, 30, 48, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, + 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, + 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, + 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 237, 31, 52, 255, 193, 30, 48, 255, 31, 27, 34, 224, + 26, 26, 33, 107, 56, 28, 37, 244, 173, 30, 46, 255, 197, 30, 48, 255, 197, 30, 48, 255, 197, 30, 48, 255, 197, 30, 48, 255, 197, 30, 48, 255, + 197, 30, 48, 255, 197, 30, 48, 255, 197, 30, 48, 255, 197, 30, 48, 255, 197, 30, 48, 255, 197, 30, 48, 255, 197, 30, 48, 255, 197, 30, 48, 255, + 197, 30, 48, 255, 197, 30, 48, 255, 197, 30, 48, 255, 197, 30, 48, 255, 197, 30, 48, 255, 197, 30, 48, 255, 197, 30, 48, 255, 197, 30, 48, 255, + 197, 30, 48, 255, 197, 30, 48, 255, 197, 30, 48, 255, 197, 30, 48, 255, 197, 30, 48, 255, 173, 30, 46, 255, 56, 28, 37, 244, 26, 26, 33, 107, + 0, 0, 0, 3, 18, 30, 36, 83, 34, 27, 34, 201, 30, 27, 34, 228, 30, 27, 34, 228, 30, 27, 34, 228, 30, 27, 34, 228, 30, 27, 34, 228, + 30, 27, 34, 228, 30, 27, 34, 228, 30, 27, 34, 228, 30, 27, 34, 228, 30, 27, 34, 228, 30, 27, 34, 228, 30, 27, 34, 228, 30, 27, 34, 228, + 30, 27, 34, 228, 30, 27, 34, 228, 30, 27, 34, 228, 30, 27, 34, 228, 30, 27, 34, 228, 30, 27, 34, 228, 30, 27, 34, 228, 30, 27, 34, 228, + 30, 27, 34, 228, 30, 27, 34, 228, 30, 27, 34, 228, 30, 27, 34, 228, 30, 27, 34, 228, 34, 27, 34, 201, 18, 30, 36, 83, 0, 0, 0, 3, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 + }; + +const unsigned char us_keyboard[] = { + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 37, 0, 0, 0, 116, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, + 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, + 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, + 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 116, 0, 0, 0, 36, + 13, 8, 15, 248, 31, 31, 70, 255, 43, 45, 85, 255, 43, 45, 85, 255, 43, 45, 85, 255, 43, 45, 85, 255, 43, 45, 85, 255, 43, 45, 85, 255, + 43, 45, 85, 255, 43, 45, 85, 255, 43, 45, 85, 255, 43, 45, 85, 255, 43, 45, 85, 255, 43, 45, 85, 255, 43, 45, 85, 255, 43, 45, 85, 255, + 5, 3, 4, 255, 122, 53, 59, 255, 122, 53, 59, 255, 122, 53, 59, 255, 122, 53, 59, 255, 122, 53, 59, 255, 122, 53, 59, 255, 122, 53, 59, 255, + 122, 53, 59, 255, 122, 53, 59, 255, 122, 53, 59, 255, 122, 53, 59, 255, 122, 53, 59, 255, 122, 53, 59, 255, 110, 48, 53, 253, 12, 6, 6, 230, + 6, 4, 8, 254, 63, 63, 143, 255, 36, 38, 72, 255, 80, 85, 160, 255, 80, 85, 160, 255, 36, 38, 72, 255, 80, 85, 160, 255, 80, 85, 160, 255, + 36, 38, 72, 255, 80, 85, 160, 255, 80, 85, 160, 255, 36, 38, 72, 255, 80, 85, 160, 255, 80, 85, 160, 255, 36, 38, 72, 255, 80, 85, 160, 255, + 10, 6, 8, 255, 229, 100, 110, 255, 229, 100, 110, 255, 229, 100, 110, 255, 229, 100, 110, 255, 229, 100, 110, 255, 229, 100, 110, 255, 229, 100, 110, 255, + 229, 100, 110, 255, 229, 100, 110, 255, 229, 100, 110, 255, 229, 100, 110, 255, 229, 100, 110, 255, 229, 100, 110, 255, 229, 100, 110, 255, 8, 3, 4, 247, + 6, 4, 8, 254, 63, 63, 143, 255, 74, 79, 148, 255, 57, 60, 114, 255, 60, 63, 119, 255, 74, 79, 148, 255, 57, 61, 114, 255, 59, 63, 118, 255, + 74, 79, 148, 255, 57, 61, 114, 255, 59, 63, 118, 255, 74, 79, 148, 255, 58, 62, 116, 255, 58, 62, 117, 255, 74, 79, 148, 255, 80, 85, 160, 255, + 7, 4, 6, 255, 92, 49, 53, 255, 92, 49, 53, 255, 92, 49, 53, 255, 92, 49, 53, 255, 92, 49, 53, 255, 92, 49, 53, 255, 92, 49, 53, 255, + 92, 49, 53, 255, 92, 49, 53, 255, 92, 49, 53, 255, 92, 49, 53, 255, 176, 93, 100, 255, 183, 97, 105, 255, 92, 49, 53, 255, 3, 2, 2, 252, + 6, 4, 8, 254, 63, 63, 143, 255, 36, 39, 73, 255, 77, 81, 153, 255, 77, 82, 154, 255, 36, 39, 73, 255, 77, 82, 154, 255, 77, 82, 154, 255, + 36, 39, 73, 255, 77, 82, 154, 255, 77, 82, 154, 255, 36, 39, 73, 255, 77, 82, 154, 255, 77, 82, 154, 255, 36, 39, 73, 255, 80, 85, 160, 255, + 8, 7, 9, 255, 161, 161, 164, 255, 161, 161, 164, 255, 161, 161, 164, 255, 161, 161, 164, 255, 161, 161, 164, 255, 161, 161, 164, 255, 161, 161, 164, 255, + 161, 161, 164, 255, 161, 161, 164, 255, 161, 161, 164, 255, 161, 161, 164, 255, 219, 219, 223, 255, 223, 223, 227, 255, 161, 161, 164, 255, 8, 7, 7, 253, + 6, 4, 8, 254, 63, 63, 143, 255, 74, 79, 148, 255, 57, 60, 114, 255, 60, 63, 119, 255, 74, 79, 148, 255, 57, 61, 115, 255, 59, 63, 118, 255, + 74, 79, 148, 255, 57, 61, 115, 255, 59, 63, 118, 255, 74, 79, 148, 255, 58, 62, 116, 255, 58, 62, 117, 255, 74, 79, 148, 255, 80, 85, 160, 255, + 10, 8, 11, 255, 242, 242, 246, 255, 242, 242, 246, 255, 242, 242, 246, 255, 242, 242, 246, 255, 242, 242, 246, 255, 242, 242, 246, 255, 242, 242, 246, 255, + 242, 242, 246, 255, 242, 242, 246, 255, 242, 242, 246, 255, 242, 242, 246, 255, 242, 242, 246, 255, 242, 242, 246, 255, 242, 242, 246, 255, 12, 10, 10, 251, + 6, 4, 8, 254, 63, 63, 143, 255, 37, 39, 73, 255, 77, 81, 153, 255, 77, 82, 154, 255, 36, 39, 73, 255, 77, 81, 153, 255, 77, 82, 154, 255, + 37, 39, 73, 255, 77, 81, 153, 255, 77, 82, 154, 255, 36, 39, 73, 255, 77, 82, 154, 255, 77, 82, 154, 255, 36, 39, 73, 255, 80, 85, 160, 255, + 6, 5, 6, 255, 63, 54, 55, 255, 63, 54, 55, 255, 63, 54, 55, 255, 63, 54, 55, 255, 63, 54, 55, 255, 63, 54, 55, 255, 63, 54, 55, 255, + 63, 54, 55, 255, 63, 54, 55, 255, 63, 54, 55, 255, 63, 54, 55, 255, 63, 54, 55, 255, 63, 54, 55, 255, 63, 54, 55, 255, 3, 2, 2, 254, + 6, 4, 8, 254, 63, 63, 143, 255, 74, 78, 147, 255, 57, 61, 114, 255, 60, 63, 119, 255, 74, 78, 147, 255, 57, 61, 115, 255, 59, 63, 119, 255, + 74, 78, 147, 255, 57, 61, 115, 255, 59, 63, 119, 255, 74, 78, 147, 255, 58, 62, 116, 255, 59, 62, 117, 255, 74, 78, 147, 255, 80, 85, 160, 255, + 8, 5, 7, 255, 183, 80, 88, 255, 183, 80, 88, 255, 183, 80, 88, 255, 183, 80, 88, 255, 183, 80, 88, 255, 183, 80, 88, 255, 183, 80, 88, 255, + 183, 80, 88, 255, 183, 80, 88, 255, 183, 80, 88, 255, 183, 80, 88, 255, 183, 80, 88, 255, 183, 80, 88, 255, 183, 80, 88, 255, 6, 3, 3, 249, + 6, 4, 8, 254, 63, 63, 143, 255, 37, 39, 74, 255, 76, 81, 152, 255, 77, 82, 154, 255, 37, 39, 73, 255, 77, 81, 153, 255, 77, 82, 154, 255, + 37, 39, 74, 255, 77, 81, 153, 255, 77, 82, 154, 255, 37, 39, 73, 255, 77, 81, 153, 255, 77, 82, 154, 255, 37, 39, 73, 255, 80, 85, 160, 255, + 10, 6, 8, 255, 229, 100, 110, 255, 229, 100, 110, 255, 229, 100, 110, 255, 229, 100, 110, 255, 229, 100, 110, 255, 229, 100, 110, 255, 229, 100, 110, 255, + 229, 100, 110, 255, 229, 100, 110, 255, 229, 100, 110, 255, 229, 100, 110, 255, 229, 100, 110, 255, 229, 100, 110, 255, 229, 100, 110, 255, 8, 3, 4, 247, + 6, 4, 8, 254, 63, 63, 143, 255, 73, 78, 147, 255, 57, 61, 114, 255, 60, 64, 120, 255, 73, 78, 146, 255, 57, 61, 115, 255, 59, 63, 119, 255, + 73, 78, 147, 255, 57, 61, 115, 255, 59, 63, 119, 255, 73, 78, 146, 255, 58, 62, 117, 255, 59, 62, 117, 255, 73, 78, 146, 255, 80, 85, 160, 255, + 6, 4, 6, 255, 31, 21, 22, 255, 31, 21, 22, 255, 31, 21, 22, 255, 31, 21, 22, 255, 31, 21, 22, 255, 31, 21, 22, 255, 31, 21, 22, 255, + 31, 21, 22, 255, 31, 21, 22, 255, 31, 21, 22, 255, 31, 21, 22, 255, 31, 21, 22, 255, 31, 21, 22, 255, 31, 21, 22, 255, 1, 1, 1, 254, + 6, 4, 8, 254, 63, 63, 143, 255, 37, 40, 75, 255, 76, 81, 152, 255, 77, 82, 154, 255, 37, 39, 74, 255, 77, 81, 153, 255, 77, 82, 154, 255, + 37, 40, 75, 255, 77, 81, 153, 255, 77, 82, 154, 255, 37, 39, 74, 255, 77, 81, 153, 255, 77, 81, 153, 255, 37, 39, 74, 255, 80, 85, 160, 255, + 9, 9, 11, 255, 226, 226, 230, 255, 226, 226, 230, 255, 226, 226, 230, 255, 226, 226, 230, 255, 226, 226, 230, 255, 226, 226, 230, 255, 226, 226, 230, 255, + 226, 226, 230, 255, 226, 226, 230, 255, 226, 226, 230, 255, 226, 226, 230, 255, 226, 226, 230, 255, 226, 226, 230, 255, 226, 226, 230, 255, 11, 9, 9, 252, + 5, 4, 8, 254, 59, 59, 133, 255, 69, 72, 136, 255, 75, 79, 149, 255, 75, 79, 149, 255, 69, 72, 136, 255, 75, 79, 149, 255, 75, 79, 149, 255, + 69, 72, 136, 255, 75, 79, 149, 255, 75, 79, 149, 255, 69, 72, 136, 255, 75, 79, 149, 255, 75, 79, 149, 255, 69, 72, 136, 255, 75, 79, 149, 255, + 9, 8, 11, 255, 226, 226, 230, 255, 226, 226, 230, 255, 226, 226, 230, 255, 226, 226, 230, 255, 226, 226, 230, 255, 226, 226, 230, 255, 226, 226, 230, 255, + 226, 226, 230, 255, 226, 226, 230, 255, 226, 226, 230, 255, 226, 226, 230, 255, 226, 226, 230, 255, 226, 226, 230, 255, 226, 226, 230, 255, 11, 9, 9, 252, + 1, 1, 1, 255, 17, 9, 17, 255, 23, 13, 17, 255, 23, 13, 17, 255, 23, 13, 17, 255, 23, 13, 17, 255, 23, 13, 17, 255, 23, 13, 17, 255, + 23, 13, 17, 255, 23, 13, 17, 255, 23, 13, 17, 255, 23, 13, 17, 255, 23, 13, 17, 255, 23, 13, 17, 255, 23, 13, 17, 255, 23, 13, 17, 255, + 27, 16, 19, 255, 31, 21, 22, 255, 31, 21, 22, 255, 31, 21, 22, 255, 31, 21, 22, 255, 31, 21, 22, 255, 31, 21, 22, 255, 31, 21, 22, 255, + 31, 21, 22, 255, 31, 21, 22, 255, 31, 21, 22, 255, 31, 21, 22, 255, 31, 21, 22, 255, 31, 21, 22, 255, 31, 21, 22, 255, 1, 1, 1, 254, + 11, 4, 5, 251, 219, 71, 86, 255, 229, 100, 110, 255, 229, 100, 110, 255, 229, 100, 110, 255, 229, 100, 110, 255, 229, 100, 110, 255, 229, 100, 110, 255, + 229, 100, 110, 255, 229, 100, 110, 255, 229, 100, 110, 255, 229, 100, 110, 255, 229, 100, 110, 255, 229, 100, 110, 255, 229, 100, 110, 255, 229, 100, 110, 255, + 229, 100, 110, 255, 229, 100, 110, 255, 229, 100, 110, 255, 229, 100, 110, 255, 229, 100, 110, 255, 229, 100, 110, 255, 229, 100, 110, 255, 229, 100, 110, 255, + 229, 100, 110, 255, 229, 100, 110, 255, 229, 100, 110, 255, 229, 100, 110, 255, 229, 100, 110, 255, 229, 100, 110, 255, 229, 100, 110, 255, 8, 3, 4, 247, + 9, 3, 4, 252, 175, 57, 69, 255, 199, 87, 96, 255, 229, 100, 110, 255, 197, 86, 94, 255, 183, 80, 88, 255, 183, 80, 88, 255, 183, 80, 88, 255, + 183, 80, 88, 255, 183, 80, 88, 255, 183, 80, 88, 255, 183, 80, 88, 255, 183, 80, 88, 255, 183, 80, 88, 255, 183, 80, 88, 255, 183, 80, 88, 255, + 183, 80, 88, 255, 183, 80, 88, 255, 183, 80, 88, 255, 183, 80, 88, 255, 183, 80, 88, 255, 183, 80, 88, 255, 183, 80, 88, 255, 183, 80, 88, 255, + 183, 80, 88, 255, 183, 80, 88, 255, 183, 80, 88, 255, 183, 80, 88, 255, 183, 80, 88, 255, 183, 80, 88, 255, 183, 80, 88, 255, 6, 3, 3, 249, + 3, 3, 3, 255, 61, 58, 59, 255, 91, 76, 79, 255, 238, 201, 207, 255, 81, 69, 71, 255, 63, 54, 55, 255, 63, 54, 55, 255, 63, 54, 55, 255, + 63, 54, 55, 255, 63, 54, 55, 255, 63, 54, 55, 255, 63, 54, 55, 255, 63, 54, 55, 255, 63, 54, 55, 255, 63, 54, 55, 255, 63, 54, 55, 255, + 63, 54, 55, 255, 63, 54, 55, 255, 63, 54, 55, 255, 63, 54, 55, 255, 63, 54, 55, 255, 63, 54, 55, 255, 63, 54, 55, 255, 63, 54, 55, 255, + 63, 54, 55, 255, 63, 54, 55, 255, 63, 54, 55, 255, 63, 54, 55, 255, 63, 54, 55, 255, 63, 54, 55, 255, 63, 54, 55, 255, 3, 2, 2, 254, + 14, 12, 13, 254, 226, 226, 231, 255, 242, 242, 246, 255, 242, 242, 246, 255, 242, 242, 246, 255, 242, 242, 246, 255, 242, 242, 246, 255, 242, 242, 246, 255, + 242, 242, 246, 255, 242, 242, 246, 255, 242, 242, 246, 255, 242, 242, 246, 255, 242, 242, 246, 255, 242, 242, 246, 255, 242, 242, 246, 255, 242, 242, 246, 255, + 242, 242, 246, 255, 242, 242, 246, 255, 242, 242, 246, 255, 242, 242, 246, 255, 242, 242, 246, 255, 242, 242, 246, 255, 242, 242, 246, 255, 242, 242, 246, 255, + 242, 242, 246, 255, 242, 242, 246, 255, 242, 242, 246, 255, 242, 242, 246, 255, 242, 242, 246, 255, 242, 242, 246, 255, 242, 242, 246, 255, 12, 10, 10, 251, + 9, 8, 9, 254, 150, 150, 153, 255, 161, 161, 164, 255, 161, 161, 164, 255, 161, 161, 164, 255, 161, 161, 164, 255, 161, 161, 164, 255, 161, 161, 164, 255, + 161, 161, 164, 255, 161, 161, 164, 255, 161, 161, 164, 255, 161, 161, 164, 255, 161, 161, 164, 255, 161, 161, 164, 255, 161, 161, 164, 255, 161, 161, 164, 255, + 161, 161, 164, 255, 161, 161, 164, 255, 161, 161, 164, 255, 161, 161, 164, 255, 161, 161, 164, 255, 161, 161, 164, 255, 161, 161, 164, 255, 161, 161, 164, 255, + 161, 161, 164, 255, 161, 161, 164, 255, 161, 161, 164, 255, 161, 161, 164, 255, 161, 161, 164, 255, 161, 161, 164, 255, 161, 161, 164, 255, 8, 7, 7, 253, + 4, 2, 2, 254, 89, 46, 51, 255, 91, 45, 49, 255, 92, 49, 53, 255, 92, 49, 53, 255, 92, 49, 53, 255, 92, 49, 53, 255, 92, 49, 53, 255, + 92, 49, 53, 255, 92, 49, 53, 255, 92, 49, 53, 255, 92, 49, 53, 255, 92, 49, 53, 255, 92, 49, 53, 255, 92, 49, 53, 255, 92, 49, 53, 255, + 92, 49, 53, 255, 92, 49, 53, 255, 92, 49, 53, 255, 92, 49, 53, 255, 92, 49, 53, 255, 92, 49, 53, 255, 92, 49, 53, 255, 92, 49, 53, 255, + 92, 49, 53, 255, 92, 49, 53, 255, 92, 49, 53, 255, 92, 49, 53, 255, 92, 49, 53, 255, 92, 49, 53, 255, 92, 49, 53, 255, 3, 2, 2, 252, + 11, 4, 5, 251, 219, 70, 85, 255, 219, 70, 85, 255, 221, 78, 91, 255, 224, 85, 97, 255, 224, 86, 99, 255, 224, 86, 99, 255, 224, 86, 99, 255, + 224, 86, 99, 255, 224, 86, 99, 255, 224, 86, 99, 255, 224, 86, 99, 255, 224, 86, 99, 255, 224, 86, 99, 255, 224, 86, 99, 255, 224, 86, 99, 255, + 224, 86, 99, 255, 224, 86, 99, 255, 224, 86, 99, 255, 224, 86, 99, 255, 224, 86, 99, 255, 224, 86, 99, 255, 224, 86, 99, 255, 224, 86, 99, 255, + 224, 86, 99, 255, 224, 86, 99, 255, 224, 86, 99, 255, 224, 86, 99, 255, 224, 86, 99, 255, 224, 86, 99, 255, 224, 86, 99, 255, 9, 4, 4, 249, + 19, 8, 9, 238, 107, 35, 42, 255, 117, 37, 45, 255, 117, 37, 45, 255, 117, 37, 45, 255, 117, 37, 45, 255, 117, 37, 45, 255, 117, 37, 45, 255, + 117, 37, 45, 255, 117, 37, 45, 255, 117, 37, 45, 255, 117, 37, 45, 255, 117, 37, 45, 255, 117, 37, 45, 255, 117, 37, 45, 255, 117, 37, 45, 255, + 117, 37, 45, 255, 117, 37, 45, 255, 117, 37, 45, 255, 117, 37, 45, 255, 117, 37, 45, 255, 117, 37, 45, 255, 117, 37, 45, 255, 117, 37, 45, 255, + 117, 37, 45, 255, 117, 37, 45, 255, 117, 37, 45, 255, 117, 37, 45, 255, 117, 37, 45, 255, 117, 37, 45, 255, 107, 35, 42, 255, 19, 8, 9, 238, + 0, 0, 0, 36, 0, 0, 0, 115, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, + 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, + 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, + 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 119, 0, 0, 0, 115, 0, 0, 0, 35, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 + }; + const unsigned char idata_icon[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 127, 191, 191, 4, 69, 144, 162, 88, 67, 143, 160, 189, 67, 142, 160, 234, 67, 142, 160, 226, 68, 142, 160, 122, 255, 255, 255, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 70, 146, 165, 40, 67, 143, 160, 196, 67, 142, 160, 254, 67, 142, 160, 255, 67, 142, 160, 255, 67, 142, 160, 255, 67, 142, 160, 253, 71, 142, 163, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 142, 163, 75, 67, 142, 160, 238, 67, 142, 160, 255, 67, 142, 160, 255, 67, 142, 160, 255, 67, 142, 160, 255, 67, 142, 160, 255, 67, 142, 160, 255, 70, 143, 162, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, diff --git a/freerdp/client/X11/cli/images.h b/freerdp/client/X11/cli/images.h index 8b686c9..0285cbe 100644 --- a/freerdp/client/X11/cli/images.h +++ b/freerdp/client/X11/cli/images.h @@ -8,6 +8,9 @@ #ifndef IMAGE_H_ #define IMAGE_H_ +extern const unsigned char empty_keyboard[]; +extern const unsigned char ru_keyboard[]; +extern const unsigned char us_keyboard[]; extern const unsigned char idata_head[]; extern const unsigned char idata_icon[]; diff --git a/freerdp/client/X11/cli/keylang.c b/freerdp/client/X11/cli/keylang.c new file mode 100644 index 0000000..9d4369c --- /dev/null +++ b/freerdp/client/X11/cli/keylang.c @@ -0,0 +1,53 @@ +/* + * keylang.c + * + * Created on: 17 февр. 2023 г. + * Author: alexander + */ + +#include "keylang.h" + +#include +#include +#include + +#include +#include + +/* + * 0 - unknown + * 1 - us + * 2 - ru + */ + +int getKeyboardLanguage() +{ + Display *dpy = XOpenDisplay(NULL); + + XkbStateRec state; + XkbGetState(dpy, XkbUseCoreKbd, &state); + + XkbRF_VarDefsRec vd; + XkbRF_GetNamesProp(dpy, NULL, &vd); + + int length = strlen(vd.layout) + 1; + char *current = (char *)malloc(sizeof(char) * length); + strncpy(current, vd.layout, length); + current[length] = '\0'; + + XCloseDisplay(dpy); + + char *lang = strtok(current, ","); + + for (int i = 0; i < state.group; i++) + lang = strtok(NULL, ","); + + int langcode = 0; + + if (!strcmp(lang, "us")) langcode = 1; + if (!strcmp(lang, "ru")) langcode = 2; + + free(current); + + return langcode; +} diff --git a/freerdp/client/X11/cli/keylang.h b/freerdp/client/X11/cli/keylang.h new file mode 100644 index 0000000..e37cf14 --- /dev/null +++ b/freerdp/client/X11/cli/keylang.h @@ -0,0 +1,13 @@ +/* + * keylang.h + * + * Created on: 17 февр. 2023 г. + * Author: alexander + */ + +#ifndef CLIENT_X11_CLI_KEYLANG_H_ +#define CLIENT_X11_CLI_KEYLANG_H_ + +int getKeyboardLanguage(); + +#endif /* CLIENT_X11_CLI_KEYLANG_H_ */ diff --git a/freerdp/client/X11/cli/settings.c b/freerdp/client/X11/cli/settings.c index f845248..32f1d86 100644 --- a/freerdp/client/X11/cli/settings.c +++ b/freerdp/client/X11/cli/settings.c @@ -363,15 +363,41 @@ static Ihandle* settingsBoxMonitor() static Ihandle* settingsBoxAbout() { - Ihandle *inputAbout; + Ihandle *inputAbout, *formattag; inputAbout = IupText(NULL); + formattag = IupUser(); + IupSetAttribute(formattag, "ALIGNMENT", "CENTER"); + IupSetAttribute(formattag, "SELECTION", "1,1:7,50"); + IupSetAttribute(inputAbout, "ADDFORMATTAG_HANDLE", (char*)formattag); + + formattag = IupUser(); + IupSetAttribute(formattag, "WEIGHT", "BOLD"); + IupSetAttribute(formattag, "SELECTION", "1,1:1,20"); + IupSetAttribute(inputAbout, "ADDFORMATTAG_HANDLE", (char*)formattag); + + formattag = IupUser(); + IupSetAttribute(formattag, "FONTSIZE", "11"); + IupSetAttribute(formattag, "SELECTION", "1,1:1,20"); + IupSetAttribute(inputAbout, "ADDFORMATTAG_HANDLE", (char*)formattag); + + formattag = IupUser(); + IupSetAttribute(formattag, "FGCOLOR", "0 0 255"); + IupSetAttribute(formattag, "SELECTION", "5,1:5,100"); + IupSetAttribute(inputAbout, "ADDFORMATTAG_HANDLE", (char*)formattag); + + formattag = IupUser(); + IupSetAttribute(formattag, "WEIGHT", "BOLD"); + IupSetAttribute(formattag, "SELECTION", "6,20:6,100"); + IupSetAttribute(inputAbout, "ADDFORMATTAG_HANDLE", (char*)formattag); + IupSetAttribute(inputAbout, "READONLY", "YES"); IupSetAttribute(inputAbout, "MULTILINE", "YES"); IupSetAttribute(inputAbout, "SIZE", "160"); IupSetAttribute(inputAbout, "VISIBLELINES", "6"); IupSetAttribute(inputAbout, "PADDING", "5"); + IupSetAttribute(inputAbout, "FORMATTING", "YES"); IupSetAttribute(inputAbout, "VALUE", getAbout()); return IupSetAttributes(IupFrame(IupHbox(inputAbout, NULL)), "TITLE=\"О программе\", MARGIN=10x10"); diff --git a/gui.patch b/gui.patch index e3fb147..9eccada 100644 --- a/gui.patch +++ b/gui.patch @@ -1,8 +1,8 @@ diff --git a/client/X11/CMakeLists.txt b/client/X11/CMakeLists.txt -index 869652c..c1fffe4 100644 +index 869652c..ab6fe67 100644 --- a/client/X11/CMakeLists.txt +++ b/client/X11/CMakeLists.txt -@@ -57,6 +57,38 @@ set(${MODULE_PREFIX}_SRCS +@@ -57,6 +57,39 @@ set(${MODULE_PREFIX}_SRCS xf_client.c xf_client.h) @@ -22,6 +22,7 @@ index 869652c..c1fffe4 100644 + cli/address.c + cli/monitor.c + cli/about.c ++ cli/keylang.c + cli/xrdp.c) + +set(IUP_FEATURE_TYPE "REQUIRED") @@ -41,7 +42,7 @@ index 869652c..c1fffe4 100644 if (CHANNEL_TSMF_CLIENT) set(${MODULE_PREFIX}_SRCS ${${MODULE_PREFIX}_SRCS} xf_tsmf.c -@@ -74,7 +106,7 @@ if(WITH_CLIENT_INTERFACE) +@@ -74,7 +107,7 @@ if(WITH_CLIENT_INTERFACE) endif() else() @@ -50,7 +51,7 @@ index 869652c..c1fffe4 100644 add_executable(${MODULE_NAME} ${${MODULE_PREFIX}_SRCS}) set_target_properties(${MODULE_NAME} PROPERTIES OUTPUT_NAME "xfreerdp") include_directories(..) -@@ -226,13 +258,21 @@ if(WITH_XFIXES) +@@ -226,13 +259,33 @@ if(WITH_XFIXES) set(${MODULE_PREFIX}_LIBS ${${MODULE_PREFIX}_LIBS} ${XFIXES_LIBRARIES}) endif() @@ -61,6 +62,18 @@ index 869652c..c1fffe4 100644 +if(IUP_WITH_SOUND_CHECKBOX) + add_definitions(-DIUP_WITH_SOUND_CHECKBOX) +endif() ++ ++if(IUP_DESCRIPTION_ABOUT_ARCH_X32) ++ add_definitions(-DIUP_DESCRIPTION_ABOUT_ARCH_X32) ++endif() ++ ++if(IUP_DESCRIPTION_ABOUT_MIRATORG) ++ add_definitions(-DIUP_DESCRIPTION_ABOUT_MIRATORG) ++endif() ++ ++if(IUP_WITH_LANGUAGE_KEYBOARD_ICON) ++ add_definitions(-DIUP_WITH_LANGUAGE_KEYBOARD_ICON) ++endif() + include_directories(${CMAKE_SOURCE_DIR}/resources) diff --git a/img/main.png b/img/main.png index d1637e1e8bf92bb0755e84f91b6b2d66211c099d..2e975ecc66e106b8694e611f9e5edf59722a845c 100644 GIT binary patch literal 27643 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�%AL6d$Sl4-2CV#}821LU$%NM!w;P%XKUZqu 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%0At17}bCH)l@#|Ek$oTkUDIRoKHewlHw! zfsqmisD0U5%v7V5j2+BQ<`Wp!$=Hp~&ZL_;#gYYWa|Wz$qt6MGTZjM>4Efzzj^qJ0 zrJT%Xrl<9R%trO7jaoN~jmjd83n~|58w@KHZP~qSlqdEWyH>Bo8?!p!9nMQGV9JGo z4K=Q3-ByfqT*SKk&f}f?hdZ|!+gagQ(%Yv0T`qIk(^zM7n|{jJuB@>+SYx@@R-IC} z2dvv;$D5W7ZNskLVO1G#028r8GnrOStf!ewRx*syTB5pxa&`nrc4W0x4_K3pH#(C! zw8xF?&LgUmu4ZZTh>vD@^;DZKE1tZ7on-9eWOCp7#ItUjJ;U_;B5Hn5{ZI3&@9c3i zJA0Zk!{h(^IWiDA65o^vaO+Ncz8ta+>mY*qKQrI;=bW!SS!SJ{uk`~odf}q?k+i!Z zPVxH?SdP?dEeCFJn>UY3r8xfTOiOG`%OA1;gRi*}#P1_R#McVVtlz-?1bxZ3PoBY~ z5J{GWXLZ}Man?xB+S%jq3LldE3U9!fD+HC!^SR!~8j8pv+1dPO@h_zqcaCgS7;6-@ zr5&o^eNw7*#B1`5&0%y()VYB1*k^37kG<>itQHcBnn?+c@5J79qdbV?Tw}a}Lhq5$ zqS#HxadZ+>d2}y!nd=foQ8AFHcD^La0(f&=yNWt>=UapT&6Sc+&HH^}TL@twa0Xr< z?{OpFHglj)k-&p&%Y~O#whY`hZ9VT)0xMKIU+Z?|z=@;-v{?w}WT0WDgfdj($MRt$ zJGSqS^&_)zGr?A{7uhS%Y*eHgCgB`*5&!Aj4jaMd6^$2(JHIP>^Rw>gD6)CYR#Yqb z*MEmx|NIZcL|rS-an*lzs;w&ato_6`+Zk~E=9Q`|t|U(Tk4l(QR~x0ajqu3hg+|2J zG&66>$wZh+@s|Fel=&^$ZA}v)dQ(!Upi+Q-fO3;nFfV`$Q=P2WJ-3w-@$05+5aPs(9&nU(aSt*cdV~a zt;+bJ3UD=CsaZzm+0`MumaBep^(PV_XKChROZoPCqtmnY?bBb@cP6uqw`1>S4cj8G zna^h$GTy0gxj%0s08NZQvQN}-TxCol0_wNu@he4?p1uW9dM#n~T)(QciAT&Oud38Z znF_M+yk?hNu!GW-+CeQl<44QWA$}l>;GmQaK{=6U;`o7=>Z>_!oQAm&b5#ffar1K# z*8fujp3gME*JlMFr-krhQDBg2m_?NRPv*;3iB$dH4SJFUN84kD$Cq7D)4@dYqpR#8 zr$f9|Dqw24;+UQn|NTO9d=|oq$mqN73?~Jy`B1LHxU|Y|T zIP;nL=>q7daCE0$zz#Y6Yza}RzZ*n2S#wwu(AKRphSu&G61sV62aJ(Kx%yD65uf$D&LIU^_ zc!`dWKjcd+LFjq|j|WkuKJuQ}j#bslimJLJfwGg0*YFiZ;mkcEb#rpAdW!~-=kpMO z^TXL+!z-RbaI4(rFL+Sd<|2%b!8ilhK zeH>F1+l11`b-VJViiD_HL^*a!>BU5EB=F@~ztkzNBp2K2nVEXCXcb?4tYTt7||M}0^G3{<^T6DN9%WTX}Mkn(C#~#Gh z*t{7SqcLpts2v5mQ{%K@BVNOO*vYwt>`yUw=S4FLGz!H44us>hV zUMF2Mik#*~r=(OXq0QLwQ&G2Zo40$G^Av|_htwas&D(a9lNRv@svx_9?Y`| zo9GZ>em~KRJ^_mGWX$ud4UbEOp%L~|2!~}Re*$i}#q5%Ek#^?BuZ7b)*0Xjr8b4YZ z=Zs``JALAhXx(udIuzu`nu-x7XNpMYR#fiWcVEz=&9B3q~5OQMOUpDWQ?XnT+ zu5hBdRvi5B(VC6}%Afn5<{$I?{~ACOC88PSYf^zW5;>p`GZCfvuu^aSeF32DT#7b# z3GZORK4Lz8h-d0RDdSPv_#oO!;N=T)GVxNOmah4VlI_x(`TzO_V5km(AOhtL&<8od z!6+`_32!m^>G2V%Es3v+)+0Jvk6kZGNzr^Xho=Oclz$Q>2*lxgGBl^vJU5ud2x~=6 zDb3su6Crtm2Q{)a;kqjX0OK>`x4H%PW!`2XV+uPh1-g~TB!%x}a|}bvOceC9Lja;Q^=e7K@$q(C@3)4Xon?KEmwMK( zyvAYv_6738aRn#aon>^HKjk--@P>7@jkeyvg_N`0A!tSE&fup|xCni{Cywg%Qv$-$ zaNl_lCcHb}e2fU245Z-bgu#bk3M0Ec=xVEUp{4N#%A$@&-<)`48q0G?OLdz!nyJ(r zBQWLIoH%KO<`}Li6fpfvQc>9tIwu#JZj=|G;K`MNNOsksz?D+F8lRfm$t9((nS0LJ z1F`cst8lLmC7q(ns08@JHCZfSThbeMY7k-J&fD!bm!Dp*x7axC714#My;D0DmQi`7(!mkgGx4WU z<5YKKd|p#LQPkS;jvBFfF90tqM%szVg%xdqOA8rmvGreP3=)ilM^!j+!(ld3hMP7K z{>|1t#y)6}&6YgKXB*ZRh*L_qz=wUwvsxJN_00@P(8|bnG7#ul{S*%*o0(5-0S}+& z*sAnq=^LDUpDF4GxmkSrW}$f!8B%VRp1xUZKAiqsT;y}KMGf>y7WiL@k?JJBgZN|S_wcik1Ly3 zIf&X`;uS%mynwCK)S{+4lsnR`IYr$KDuNQ84z5%bWG~Ya-uy+uSVOF^j zEa#7(CF4)A5iI7|j=8G~XG> zQF_^_$lQ2zYT2@>(Mm>9U$(3`dOeFf%$%`hAXTnWF}np3u_=|R&3oKr+il{Ovi3>Q|djxR$yovwM}C zW1%-k?CO%(513?hs<>O2zk>9XSI8+}!Y;@=N7*gg0RhK<$*oJ)o75euBb%A`tX?h4 zlUW*D7YGJe>NDSgw#t4&7^E=}yE#mTZ`X#BTNs?b`Kh`CHs>WNKywhWoL9g{>c%Fs zmN&wJ@WYZhet(#wZHqK}L3uXuN)CDZ^C$#jcZNFC+?%@4y**>Ju{+?RrO+6%vY9vp~H7U;*38F zhvDvfPRe6}r19jJc0@{>@@1KpU?f4Wgn5Xp8=V2^FsCmNhKZ0d@S&`O`RzL(^r>#e z$bDa$$_vj>{*loUcy95^pnI^G>0O`EP@HL|R~vP77HHh(iq_zfaZh2$`1nQ8Jq!w2 zq4oGOZX63IYM9#YK-q(;~A@(>LpULk@}B8>@qb~L?@C{x!o26cVoH+s3Zf&55=j_)Cciab zGd@*P7kWj{x^*4$R{Y9(00Gys4NvgX*>84UB%t$a`6WkkH`c}3iF>E1LOtpWyq@Y* z&U`b1^Df|_UWH;zgjs6jB&R)jV;!)Q4f~90Q%n6JYNi1NEl}Dgi@nfp#c88{gi?|P zS0A8g`rk~ZLdebmDWZa3*AeY@c;h=ucHB+YT=X`{`(F}8XbsUy2wX7RyTgg8y`gw` zkHdIJxM;y6dTOINllQc;zcd}l^ou8JDgFZuX)VlqI1y*i* zrMEQbl@zI8!=(IS^ax)@A5IGYMyivn2$WB_a`Q4Y@a)2*`20M{n}gTx&0Y2J`Qt>* zUmqv&4n@Y?wRFv!Moi z&QU#nwb@iHCo_qQ2}Rmh7A#;a<{So+Ry`ij;|MYLsd2AZ-@uS%!OD9DZZ^a9rQH(X z)jv^d8zhf$Ns3IY(*^p1ey&Qh9Yz%8$tvAa`#=Xt2F^YSmoklliNZ$`{4+}@c#7tg zXVIMTLTlxxx&Bkh*e0Qg;7zj395J_{cE%BTditltbSWh-?UBljwaiqFDHC84w%xOC z{&cnH6eB$C+DwTJ&&&IVFUe`Hn=oMIay@EEj#8uh*cn&!l8nP z1w!Zhuqofij5DV*ou{wco7VZ`BVKBb#Re~PWan!dI7*;mkUrue&Um6ywHa6uorFyg zT3ELXYx>uHWy|tbei8K+x=Z*~GL{#cPYQKJG!{W|qSk!C3Ew7*an!v1I>nXvI6O+5 zKmuNDdOcEbliC)2PuF`Ms?4wVEdIz@?`g!Fu5L*lZZ4F60IZaiCVPob>)(_W&8D7( zLd2p|9@8Jpag(65Zq-z?^n-y^{j^cQ5n0Vy&{%igO9ZAn%*q#e5HRX-v7YsTEc`ux zLmcXRj%fCdw2IAkzEmM0#vje|_@M1>@Nq}vS^%IlKQcsJ zZ>!?qLLu{wx49upZM`7>ZtSlpc6(O8#}Lvo0P0bw)y)3cQ(edi9m!4}h2uZ{F@GqL zf(jLE5cUM#v#VathMc1wiu)VX?)3YMaV-#U{|M!|mtUI|$xQ`|dxH5RK*!b#q4<*p zf+2Ci6(TqyT(;01snz2bS|8aNZm+;@gRXaRpI{LVGhW6U&0oLCO|&*bw>_<2W%oky z)v6u%ToKDlLx$aMqM9&qmpIYldh0c6@+6A36bvv3TY`xO3nhx$T|h%L#NZcT3br8; z4VlmUL6D#5nmwzZWxS9WoM0#%)aKKTMf{iK4+jzv)xi~fmaOxlQe*j471~kl?(swU zn~C}H7xRiRPDXd%(^_|+NC$1IEDWLeBW`_4Os5Ua(58FVp5I(P+VRNv<`a`%q)*q& z&HUpDbZNshm-+Y)UmX5l+JuJK@xf zTioM2Ci5=IMBL3@7T9IoLc-BdLeoQr=0=ACKX^5VTXY9*HpZ!w5k4|a?TWoY|MQMy z|Lf@;5zf+m4u%k8fZ7afECO|ZD%qiSyCQkj^ci;xHfW)Ue^b`cInvfILI<(MQe zwSXfB_kIq2SfRq>7=(g$3<>rzQG~rp|9;qpvxXps#)VyJfi)f}cAJGqU~&jXxSu{Y zQ=v)l!r+#8S~tmzW1IX6(;v#$~>yUf)mqD~ZA-CDam*Uw>o_ z2+s6D{nc0G5+wvl>4ykqsPxO4A>A&3W}P{Y)7H?>PGlyEIu`3BgJr#n8E@`c3sz|F zS-yGo+XE>GL9UXagg}cMq0jt+k`K{%o?~N*?W%zNss^+0tdc6vc(Y^&+}xGMtHMUK z2v$~r9J#-~b@%ey>$S3brblk|Z0LiqhCLg0o0pE{mCnDqsN+ zeDp2mpV%TAxi(|2g1jrPaON$7{v>hsJLW@I+SlYbSWvR#&h?M5b9X0wA_Cj)5^2ty z5-0g)%O?XV6{RP8){ZF~9mY~r(C@(?;M%AX@FQ%Y--6?p^H@_a_DnW7dbwmg zTz?Ghx|tG3NFe1hDKR1p5&ml(z+a`0c8f2E@NkuyOT&^fyN0~Y8TRNF<=QXbUM@^n zp+ph@&?qo>M7(<04 z#uc0i76sAY&QKaob1oY!j+b$$wsc#C61}iWFhGc}5rRPWRfy9N65NBO8U<10^3MW! zgaUV7L4*9Pm8(Va&vF%rd%h?$3PlHYkXl}z$Gb{CG^0~wGXG;Z``M~nu_)1FO1L$2 zg9=5)K4=KU>!-)>0pXpYcwso-DwW-cUm0-Xl(FV{7Qim39yZjIdPX@e{;g*2b5$-B zbU0yVl9DU7JEblBfoL9aC65%8WB1nUxMEOB^J$FuJt%HKP3K+&=_^&#+#tP5so`AD3{p)udx+<*D)_gA|2#;kmf453kBj zaS}?uEE)bTP`P*+h-McCDE){)0KwPRSapLZ=qk)hTlKime!NjVX2kK?%Lkvq%h9;` zjQwo6HC%?|X?;iz7zY9od0xS|pmBd;y=Khz;q7q|A#u%&u4LUHVHb;J zXQHzL-y*Px$_=FcR?;h7%~+>8F5*HOTs%T=IUyY^JD)h%8SB*Wa>)vyIw|X2G9-Bg zD}&>ScowSA`@5-32HGZC+s^22-ZvBYuk=zLY0AR<}1Q0zt2P z6NbS{{zQtZY(ZC9wtdwEnIbPc2E+Cz&=AFP?pMmWY+OBz9Y6`9FWEAU9uvQ~lqEAU zr=2$WqlZLp){L9Ii?ggAXr)Kbp6xbnW_`A)k!Ls&crZw& zsGm2IrovV~BbTISeEXCviW z$_s2iQrjg;JppY|*42&*2;r15UDOT)#iU=AplaDCatuuajU3X!dAF{UVPU_6jLI{s zN3}{HO*ljZLQsX8rE7<2b0^85~%~t&8zUFAP2U zTIyBFO3A>0|1%pqeLR!Pgxyxh!)E`K{T#+?2e_T+cY7U_ZWXBLgCDcQyu$J8&Z3XY z5mJ#vwD`B$=v<4fmmD6r4Ti<+kN1U8e9kAK(NKMHJT7-Q8UxKU9G=xr!Zhf{9u~5B zRcd%72Q#fB`mr!OK9$NdU5ia7We`0t@<0)a7fVgkdIet22a-Nz=V9`+?%+Lv?H|0( zrl30X@d@5a@_DjEx{BkJm46>1j3iK6c94xJu|c#C?U+eCpfu3ytFRSb?%*D_wyE&i@NL zN<;C-o29$7`(5I}tSv8#j1vzkU*a{i`D{UC9=bio$e!8nrPB+km0B#gj7R@T@yB9`EkpnGL7?yRDx-o8?*kL%s{P z*War(|J@n6N0Do#xdaFlT2)j@DKLaQ5nl2KaVdu>0+|xOW6nhnsNPXRu-Sqr7CSan zs%)VOvPPD4;OJgHl<^c>AL#KacYHqH$eER3vT9|ufj@Xwk72m7ZGLkB7(D6XCrRET z7o2ldl9a1dC+}r8HnXy~MjgaIZXmD^@D?DrSd@z4RMe(J>+I8mf zkoVN>WGn3>2ba?}jIV9ilJ^C`@_r|M|5Nc$^J_|WD^K)m_4rf5UW-BiJqxl1OSC+b zUq}g7jUqf6*llIE1|KP}a}Xh-hu{;Cn^^+Gu4be#jABd-F-7hbWCXj-p;oT3@U_}2 zk`q`}*%s6um~wvrn_0DFpFq&)+@EFsM3x=%wJ;)-J|no)8l}Y_7oL?QCMffs&Dc9I zDCZx=R`pg~4`k~)dN)OotnbGklebY{RvWqBLAD7QM{UO1_RWQ2hU3?YX86>$fs~y} zL+hVCiahwCMEMowA?{*(!d+yuNQOK4X)D?#Fu#sK&%7z-jp9!LKF4)#C~hSxpc(5G zRF0^Sn@2ga(u2$-r$G7o5Zu<63IS3F`ZIANCP_gZ@(KPWRQV=vhm<3c71%F!ds#&R z`AV;{E?Sq0s5U2&`(tj>gkILw_zLE`hWNa(tVxT+!6^NQ(wV1|A^aUd4vGba6lUXm zrHqwn`(KhJ7SE38)kGcCjpL@ho7mfkw8}TXBtuB=rl=HEr1ftpr;8iq^?KbDmCXJq zIVJSY_wWQUPy9(*3`}7Qy0zw43T#!TQe%%$?zM-^J6_=xMJ#t_kiM<@ep5-Cj59vV zrAFcGNK~f`e&C9Z6_Nq@%-1m_X9k4y7-iCX&9^R=USYTPno%wZCam)+9VaFoWxoUp z@wsDZ6W_pytQ!xA$`f7cJ|%pk;g@y6ylp)W9+atF13!gk#DQHVWuPvfbu&7m2wjn9Boo zm+GzA?!f_wlLniF{wW-Prdlw6{QR>>E?Ow%(eS6leuS^LdRauPfD4bihJ ze4I#@*6;537ZS1}D@1k&v0wOf=mxO!s@b5>sQgIGhvA3%iEw3GLSy9RB1;oXDC#Vi zGShono240CH1)(6YgO3}+1uoM7;ZglhiAOfyR1*Bv6Xg1C!@CYv0n5?(RSvmPn6b7 z6bj}q`0nf;B9~bV{LDU4DoB6EpH)vMCy<(gF{nW(xMKf50jVtj!I@8pS_9{qJC$MI z?{q|$Dd9f;P^oZHb-HK6Jy%KYj?TXhX}Szk@?niVK{X%Vo|1E<=i9d&|Ei=hr^Ri9DRd zUei5+UTDG)^YxEaUxKo|T2Bz6T=WI|NwWZ~0Xr|b86BJF1gZ(sNkOuW-i)DMMlG1A z?Ju&f**%p7B5B*n%0@EHf=fez1-)y2StBJ45 ze9u}*)-SDVnJBJ5{ELcFyfAj`yy%GAc^em}%bvi+$-Z37uronk2bIS4i23N_syy8e z@C|v9wv=qOe#RelF0Cg^wvstJ&7N5%s*_`wm@u(0MmQm*2Eu(t;jQ@eF5cA^Se^EK zuQ#8Xir^{@Af>7g7!FWq{rId_|HYnupYaxjd5g$}g!-o`9ff6kEy=gm_@ZvfwkE@o z7{16+7@*T@AtPpwsSN}Iv#2q!MdhbYD#^3|McJ;9aoiK^#`l5M?k5vm#8+(`g{@UH zrCD<$;dfzTcUiXXk`=i+F>)D&m+wpp%ObK;dZ`Ad zn;b%WZnRLDhoXFK+X|VYyG)1Gl7a$;2 zd#_0Q(h%*ShTn_dSaKXwgDb1Ku)4w= zUmuPy$~Wg;&Q20S1`}e={rAAy0sJGoeq5M4Z0n4hc`F<)@J~aKK7h8#X zQ&tan=M4bl&g55VM+`^9BF*Ez*)c-sqc!{cl5nnj&!QDalkx;g# z_>t!2qsa*gCQJH&ppA*#al+7jiiDC(;)R-8gT(^qh>oTT9HF$UX&3`rzeygQ&2?ZH0J&(_;c+k_jg^)PhqagkV7Q<5&jXRLjokn~#xRt2T3*IH`)0w;3T=ie+NB zD_Ae6`pwZ zf6d!=M<-0b>ZnsX>dbWXwiY`v#PgVPrpDN>oQ6W?&j6ovc8~|!!v)lt_v7LbJbli$$+SdcA_^^}-nP}|yEp4b4p>`2!5vk=QKGs$8mB&W<)6IZxP zFyuVIxEK3+D!g(wbmMY5!*POL?+ztiDacow{J#0Lw5#Aca+S{fsPulwyqb0ua2_&G zp?qU{;}jTUnm=EjC`*3B5eBFZ+~DMtmIBl^KWuDPOoYPyO{|%0yOC$>V#E(QWFYe= z(`@TrGb!X3B)iuPY-^g~1=fX_Opy)PiRgA|v3ks>Dx@IKHG+3XM^@_AHEZv5+!4@Wzb)Ni#zKnYri`D08 z{Vp?T74G3-}bxxeXZF?3V`h)KU`PX(plpqP41z>XbfI9kG0JY$W#(=;Sh*I}J+ zRso1ocM_>-CBl%#2hm`L@$o>{1t5#$q?@ZsSO; z-*vq+k`r)tb4NX*s7og5L|9gPyAl2|*QxVm{b!Bw2`jih zK&xg_QN&8zo+NLhQC)ba{Z`2iYxVqq^2R%<-D*bFYh#+fL7cW)t(YTL<&^P& z?J_%$481m|A~W^#5fg+B;THlURbOzSF!yaxwsDkwo4oc?d8IJgc1HJr1DA}bj0?$7 z5M=&F7?177YsM!v>mTPn<5rW9P98X6#(B%L?o&A#6R_%Ox8uf6p1|y~MTLz_e6P8Z zyQBp`+rC14O_CRj)1w_088kL44?5sV+4^n4ZKiqZ{|XsYSpjlF5~b!OdG)&}gAZ$< zH!Kbvrg(bXaeIa;r9Fi?EDY)_-IOr+9Cc2W@C}@FO{q0PRGdzct49f6Xm@E9(~NJP z_>Ey?!$jdKNEa-o0GX>md+~2{7&fTni8AfTdNEU&*UAD3TRy0cI;~hxnN@8(i4hdR zb*r)c|Ksh=1Dh)Ih5w{YX$plCuxe41qEU;Y7Da8ON)AnE0;v=zi{OIRsf@TVk|>I_ z!4&P`Ow@Zvoqfi+@5~+VcxUw983A?d!qNgWDB!rFf?k&sB8v+ZRLJ}JJ}2oS-uM3g zxxYW4$;oq`_4|DHW!0AEf>1+edXygb>CJ~STPPip-iv#iGous3nrY^QI!G+o{0YX& z(_|^m&sb~QLI$fFyVdBlPG>9Ckz~abg&$UavY7_`R^8%V$AeIoF&C~p&>deVZW*K& zYrw@QV&1zDWweKsO6&_&^!y?7vY>ef_y{i@iS!(*-G4a^dpgUsRpa>(Fb=$+E`&{h z5+7G^kvy>rrS0H5-Hp1+QCfz7N0vn4sOTKIE3=_-6|_xx#v&W+fTP6!B2&43wX-~Oi@%Y(s34L zZ7u!hI0-OYxoW2SHuWwfauAbh);yd3m2SKt6Df5VYCuCYSxTv+Lg`@;|$R@j&-m3R((xQ#3UDmM6w%O~ZTBBa!M+fxDCDt+=>wpI4<({9eG?3pWLdCyd-7Fyf(Z?!l>f#_2FPNtXXBGl%r znX0`S3W;SA@t$V~+!Bc(hnH)kezqGv{cBKWvVv8~m6W6lf}yzmrRF0-9O`cQN*dw> zgz97d)gjZqg~y?Wl^ZwHI)}KFk=u6sQgPxU;Yo^hL1e7?4mh_-Tn6{#tX=^xIy8no zLd%M+*M2Dh-+U6vK9XG4f*LSI^>v=QfCxn9DPcq7w**`DbAyuD+-a_oDc2e|;8LfT z8E<^~M%b89svBYNNcv7C{_BFdiLS{Yx?4UK(rEpwSoolYN*B?u`*ZIXp{FDDCgw1` zzD;&V@t+b81Rs706U;K_(?iKeS{d^>;aNCr@x&#kv{*mHZ(X^?a;vLR^(ve!+NNrE zo1fO;W>sK|6zJTdYdzL#!MoW!A|gu4@<&lk;RzZ$#48H@+Cn!;!)wl@o-vKVmSGfY zWJ&1}>7G4?u5OwYP+rLN$&ss!%6j5xo;qzYF%?)bd_VnK+rB#1QfnOHofL(f+omvz zkf47O8z7sat-%|%*ZEk#K2@?33O5&<5Z-(Yr5JMM3lfT$x0G_6#p8SWp=1@K%hw>;&mqs0$m3VS~m+ZpJb;`v!ytwkGm}-?F{C;RCQA2 z{Z=2=Ibye=BP9_6FKnnVzwkbEI!_TQ$x%VPRzz|;_w&ybO;obQ8)pRS+mxz-1jaeV zGDQQb$t(greXpfMYmr-6wKO&riBf70YT2UWPzs~On-)*~-{CtzZaf%<=`CQCq>e*(nUoH!bXhjaqnu&$BA~5l`$`zNx z3nTVO>S@qip6MowdE4(8mdQhdLx~M#)^pqs909E7L9;NK7|Ssuq&u?HMG7=_2#YMI zl?6c$08xzLubDT+&1QGonfz$|3ShS>0{raWw(EEX8bVcF$q&kPo2FLuK3nraatzs! z)Kh#nK4nF4{#;*2YA~(wk}zv3(I6UkR9cVA1eyL>U~?lyGtAW-YPU`ubL(yFU}E1H z-vf955PdOkyhfC!6`fj}tz2JkTY>d5dwa1pnN-K{J5#?DGny)iHrZAx3%=CWzGdO1 zz^<$yx}J#|Z(1>CMWC(VycHhfP4Vv+Y#=L`&rh+jv>dL`JX~ zW`+M%krx>R1?r1J*d)F#dlfcVD-*(D?KV1fg6GTlSxZ24#|EoaKQ zciuuiHp=N)%?#A$Q(Lne7&VmyOcAwYD9>7h1y6ySoWN(qbzgm5dStG}XKi+b%5G`- z6m-S@fj$E2ba|X*-X@z9p0IAAFS==~W+;Vct>4fgQ?#+55GZS%q1IttD^$uhpz{iL zrm5zHJ=PJF81rB#v4`byeL=WRBZ@>wmTr78d)7<>En#CPMR0I?TsjdA0xWb7z3Yh= zTlnLMU5B2fjzV;vXnlP7nEBDG%xMdSbRTG&CX?6$dNpUE>psvnTD~8{i<|EOvw9)V z#&1y&YW-ZEDvpGQ$tB0EQ&>%E6)%|67U9s^#2`xs+@Nd3gdCJ^X){}vx8h7;0}KZ z2Wx?AK_C5OFU+3TgO`_5Go&XPX0w!Z`GwV}CN#?vFqbc5-yjKSNb}4*-Pt{Um+m{g z=`=lAJUS>A>#RU2SCyddM~HVyzdHa=sT@M^EhM(Hl`vTp5E9l0A`S)em{YM6xxD7& zQ4l4sSrf=?=0mwr6F|%2XbpJJ5B#UN5?@oo9r%*Ru#vFTSIw5$~Ea6iGnOE{BM;?Gal(?p?)58 zkP9Xi7`^zG2={GPR|Z9OLktLs=+UE@)f4z6->WACS(##N+J@28`s03PVRSNk(e{i} zVL_4!NfKqL)o~JqPU{4kNm`^zd0j07O^=ntF_nj2VT9Yp2%reFGe|A$u40}dUsZY4 zG%BqX?3p0o5;cwjVO~>jJi8AaaYy>{-oDPr_4Pb-M>mh_Ydn3?RjI5>$zB2HVOeW{ zG-%^Hd@QDEq-1aq6H`TF;=bV&V9O`bg7|{HCu_yuGgI4uMkBMVD!jPcZm6w|I7cCs zM_rjM=|L12qLKuSWg#W%I?80HBwdx^%*&ROIj7szQCWkl3bY4jf^oCdmGVKM2G{+# zW@q*&nxmF1aGcv!YyBszpk4s3%4?+Bn&m9EfvV*@t&4TTlAje}vL2(c{GdpXwLJz3 z5F<*RYyl11Zctx@H&7S@`zrPdIpD2FDG$HAb}obmXzZM6*d0=>?^T3luS!B^UN z04}AMnu-lI^(+sA;yVg9l>w~#u@}*sx)V?U_chp0@NN@FY_~^`7OCow*CW3KGWVG<{cCb5_SWYsirrI>7`$mJ5&_IXL)w9jBWE@ zw6UImproJSxl6q=L}vIrBcy*}yS?2??~J4%(E8*xcH0K((l#$m?duXNXgixP(t%Y+ zf4Xb}=m_qTSqKTSZl+7RQP&=>w;%JJ`Z1mAb0wv?m?3+klW+q{d_pCKMlnk-GjH`S zfgvg5N_hoBk$vOzD^hAX|2PkXG(Nb2q)}A103nGzLTh=NR=Qd8YwG(^pf0TI!mgYHatns_GG<<2h0938M5FW>|?mc}0g4 zo24FoN&J0xl=RqZDd0~1WBI#KH;aGG81^Zsfs!Sqfu!!VR__%T6@~Rg$_OnzM%ucY z*kU}1un~~ogc0m85V$x4h*^u*tttYMrZ>f)oDkE865R0r54P*Be9 zmnnFWDX5XHpQ8b``y%|5L7(U1!v^lRX1ycShbJ6LC7Aq+KK?cJ^qu_1 z>NsdwN2}UA_|<5-Q!Z3y{w`&lqhU;u0->dnG~G}!=aKUMMt8FeqVUNg{)$REZksSh+eo$ z$ZD{zZe>U8V@cgDHl*GyP)Xb7|k5LnV zGHES;WMl;vSh3qYvYG!%)=in-Lfz<+(z}oWrz-gdv=z6_rwJXE=reCQOe3!OecsX_ z!055I@gk3qk9gE3dRnqA=*D)dkRQ}TiUM1!m%tZFdwE;2Q|c$dB*pOX8SBlDdRwP# z9#mu%>pgI@zCcI!kZ-4Xcm?vIn|BMb0mI7uia`5T2OU+#(Wblas2Z%be8G!VL$p;h zgwnt*dA) z-KGjwn;73@sWx3Zd^@QZmA%1w8q>5)>G%9iH<`6AwZgXP%t*3_*$33j>**U3D~cVl z6NDK9kM6dP-UVwE^WfX7UXj-7HJC5^t#H2?wkfL7BK?f)+sG`9kt3MM%+ZXxp$R9j zXN&CFR>=XD$)aRXbyntfzGaE8+ol}nOSgkmUWigQUG6}6Ka3PIzKSGku)#cs!U~DE zJCeL#?D-@T7w(4#xJQ}~%u{E5za5Y8xc%*-coWI1QO_$4GWtT)j8zYcAXgtr-t0j` zD&h(H7&D)^+od>B)>+!xCFt)+bxEjpl03vSFJpG%KGmlmJMw^l!eX~fvX_y!9ZL?) zQcAjVY6lLqA)(TddgjrIQi6O}H1Er|1}a7DLg%t{)H*oJC|R;^7gBFQQb@Cl4hV=8 zdnPhk{t&Ug`t#GfP#DLtml= z$quA&w}d;S9$zI84>0shuE zaX;)u8=r|%P61Nta0@UbQTN6UZcx7; zcFPYc*F2KLl(OvJ`pe9Ube~Nj^&G9h`bR=$lgD}pylAXf?-1SQR4M3Av9saHdoby* z;T3GWY(bea>EV=6+DaV00Km)EKl4b@;rUrF%SnVPm_I(qRjB1A-W+e=Bu5at&Q1*D zh|MO0*=$V~~!_HV)@5%%*oXYIhiK7yJ2CDP)=zl|#nTaZ`WcDWQw!TPY z$4REsO`Bx~&dVZQ;EM!7t=Cq4#^Ln$trb_6DsY(dXTsi~hmg^i&B z>yiQ;NF!nkxK#pPtyx2Wc(kO(DH*fihMkqE!(-ncfUVUA!WS!HP9};FG zaj%=zoqu^0Up; z;Km5oEo5M0&fisL0ax?Bhn~3KX9#5s|->H@KcTXfZ0?*~I zIA7ond(ti`*nnyJHKlmBR$Qfa2svhfUjh@{>9>0!2)bnbHqO|Ija=*x8%Q63^ot(fL3SixBb?#O(p ze+ihn9YzgI<0O#vLyK{X0noV{1^b`j6)m_vf9*I02atFp`w^Thw-ZZ*ND| zMgkpyxBb*P@;u^jTf+)vH-!zIT|V{^>ByW_ZtT#D{;~2sPu$@ss&yrnOD)`n^5(xL zmQ^@NFChv6Hb=}kCEv=S=~v`dfOly8%88Vh_*#5I2E|lRO4dv!8#2(8QpsdxLtc|j zkPrn)=nViHUrGq`tukQ|6O#oGQ-&+I`~%38@;SFsv!)ycxY{+gE4x13cVSa=Xz`}f zS~FVc7UkXd6^nxwrrh2)d&^WsAGJ+FQqwc-I6&)Qf$R=&K$_z6vG=R(sV)~`K{hXX zve9LqQqkX6ek8l47u`judwJsC3PJVf3su#WN`7nITALuic_Lp zs>M#ta#N_+?37EjLYWrHs9p)g!(xqM&Nhq10xt_m7JbsV<3&-)d8$pS3!BbvTUcjC ztO+ZH>8}j=rYwvOTDg@}We)k@NjF@D-4UZ0qaS+?kuJ9`gR+3uxi0%uu06SC7bu(F zquwVO;5ax~xlwQg#sML}vC*JZ+oEQCS!bQw0fLSJ<-56;sdX5hl-+OW%Bx%skDtlT zDNAn_U?);9O+2nL<|_6e>lfWynF2icViRi-hrEvH)i8ns@{3XDL(=ouCC7)0RO2FL zPw83iJU>*^B@VEN8bKZ|_Na$N)h=0?(ar?z@L*In!K)zlP zvMSf`9#KgDKq4;93#E!!*%i#FEUKB4U436;muJVnd%WB|w{^xAff0o%-nCAYFHlLv zUMteSpiR=jU7MQvZ0?sg#bi5DQL?!57ypHJI z*c$s*6;uc>Tb4Ep)+5JIx4zet#w zO9FI<1wa>-^r{m2yi|nqVo0Ha-1BAweHWdEagzwAUWIIqMTdi zPTRi4Dg&7HXkVL20b|KH0O<+7|Zm~}3FL~J9s>Pkw1;FVLBdV%)?0)E_6+rvyx&ddaj9bsc9 zoMp)gJ+2d+QSBKjF6@kbKn{JJh0={J9nk_YMKGl!?z`sd$$P$hUQ98)Gda>X6N>jr zOLRc7V%|F!lS!05&exM+PIoJV6c6cf4IxYCGvr{~k$$bWbM8TTp7!9yU>x!voaEHk zkQ>o^q9Z*U7et&121PCM5V(dA4iVc&iu7%)gp5|XEr`9TqZ+Mk*fM?#`c&$aE9r2` z>IrT&bBfGqzvxK1RtZ_5!AT(1@&HQVN(F-9WVFDEtfHv0L~ADA%~&sRL^g`nTITXz z|EO^i4RY}aJNel13MNOutq^Z}h}v%_ce&03^0B|~v*rYjWvpG#aHd-O>`T!Mxf%TA zpz%u3x3_5`KHsY&-jgvqyCTlbm7yUqWHkESZT*S&lptfgmEC3;YWH1W^)tvEmF@^@ z?XRe*OD;}=lkk|aBJ0#0kPLxY1o$t6b)@8a5yU(DQryGc(vWP;9@N|?i=J{eF&o!9 z^w!`IE@bQseRa^yluit`#)?oF}PW3}aE z6*-85!t=+}UX$v%_kzkI@5GxqW$-@gbn;uGu2FZFpSZrW`7wQmc+7ZgEGw**a?%9> zVzjXHmmUCuJ{PcFp3l0!(T zL{t=4@NtLW2t?nDkZof-L29qE58~Iazz8T7Fv?;slFtl3Na34YPnM6KQorQ|j{H7v zF@CT2%iEx-Dk^U!zAD5w94NQ5k5VrnYij86UMZ z+Z**E_1 zPp|`PhT`b)5*Rjqr*G?uYLd?>-+AZ39{-8EECQL1DH54T94id0CRr< z&;W;lLjJ;lZ#=Q=y~lVbEhug^53zz&`sP$DJRL6k-rVPO5{mO34=3m*arR^$o@Lj#e~EyG8QBxE$mDYJN7-x=i zy>ex1jmXKN+|1CD*)x;@MTa2BGd!d`);>wb#rRpS36{HQ3rMB61yD0+5QC^Szc0*ZwwwxRX_ zCi}C6vIUDNE3uDcJsqhp**z>Ip=8iqn_NLK8GJjJAn5xZ=^}(w##i_qvBp}eZcvgU z3KkSEQYbx#WBpEb#-{)Ul1G!AX&zi%UGEVIk8NFk2k1`)P1K=w6hf2O_xdW*NYzbykm3?Yy79Tqc`XzR01q z2%Chv?4p404DF$_r8zyR-CW#J!A|CtS=$No1F;s+Y5E`QL^%MZ?XQT&m{%TO#$pRa zf^|@N_sU;H$-Ir?4D57r{CP!6qXk`q?n$Tc7Od-As5Sd`Fr4&xH3B4AYQ#Jt+Q){| zldcndQ(Q~ug`B%2I}Sc}&R4GJre)KK&u^AV^dgwy^pP%Kryc@xz6~L5`Ws}g%@7y{ zSFnDGwft$p1!!1U270pe4~%(Opgh!1h%{_=T8gz_6mfQt>Xy14e{UWcUc6-yaJVE) z;7T&;c0YFtBU13|UFY6V!?u9)L*4L5A}49Kc>N;UI1o>Wy7~MMzE_(@$TOHJlCwHO z>}e*w7Zs>VP0~vkRdJ-V(X^T)lqnkq-}*|4jUvm(r~xHWYx}K9xNhKUbBSK$scF23|SY~zN-z z*m{r)Oa`TEs7ADEABh>M_8FZ(v@JQ*&xcS-lV?o9LxjH~A zz6H+nq))Y5SP6OBuNkNK7H|lP$}W^7%HsOIJ#73fNQ9rd*y75pG%q4{8Qg&Z9G~di zkSfY-L=4iaxXQfsgECQz`~bBG+P2f!2K?VCfT-wk7+*;g>)M)XCoW0Fu_|rN#o#>F zD+pI~B$Ql{S5zfGPVrRa2z-sFCyT??+M0ltrx&dcC%(y#J)YL|4B75CpAT^$k887RSe%~O2>YKQ^)@S)->h>;R>SZi!lcTge3(KbF5B{a0f@>7_B zW7b+wlo1uu-BW#$D>gQ4&Y34#mNIg6*|ivuY0$3uX-cJBBrV)d(QEl3J4iEZpa()o zCMztM@DAW>q?ysynwx;)dhcjnx=C@&RgcFO_*)lyhzq}Jk{&4&mwJUo~rw zcKBPmqNlGsx{{t__}z*ao>=z;-#~24c(`6fMrD-ZSR_|nE|(g!!Us_d!n)z|QVJ?P zOuoB<#yGD;EbS94`K^>YiKclDyuL*Nkkvl2R8lN~JflVN_Sa>wXt9usV(HeAE=aK@ zAbpG)2WR+K-!%zy9EHuDF?9Y*>ckH6^R$pSNj3#qUbe^)yD2>$=f{eFbK)&QoVYpZ zNvF6G*HnmF$b$n&^tAXrr#qrU(kEI!Mxd0z!loy?Yv~ds_Av~R7bA=)_f#&*%htaw z%9+y0?kdHKYjIQLp4IlE7VOEFMerb6DEQ?v*^Z0sVlBhP+sW;So|$EF(>Y$Z_pq#K z^qzW)4G=(6ydHO32>(P}gzS)Bt>syMXQ4u%lJhb-#oK}~<)(-38iNN|$RkB!;yH(evCo3(MYNhsqvNjV`rLMs; z@EA!Yfl&$!Dq2by*DtLrpB7{ zTor2G8J)D+9Y6A*B!2VPF~Qiu^!f24tD^@S6ZhgmImXPBd_t=_mQi>4AmKM5LF5-v zh@l`aIs^kEV3^vX&SZ1?P3T5joG-QJI5?RD)(6}y`(R>&6%9}QieI(49g@-j<7B5c zoJ%x*=Zx`NZXwD+_@2!$Yu8;bJN43YWi(cN^}FMDio&tFT%|{sp1=6D@GW-Ob_9vG zD}S{Lk`fEB3MCI#NORISL z?@&=@`I&5RZ9km>_QMOYCSu_4wLq{Cv9%qr&V;{`3<4@0f=JtsIbY#k~S=|J@XQk&Zb#e4*Tw@)G*ru<02cW z23sU*&08GSg}-42DrG;yM1@GB;xZ;Ts2tEC*+OpPr=!+n;~}6RHWri3DMwAe#KtmP z=E(tBY91clS?kXqB(Lg#H~I(&uk`|^A|K=~7xF=JK!~omdI?WW4Wmgm2?5CSBMp~w zgR~Y=rzj<-XcD0aq@P`_b33BdK!oVKM%UqP&`D7)Fc_D;pYwus#!Vm!k!x-I50A7` zT%wdF8@?&C32#F@RrdybsphxSzHF;^t;2tkR?1THmWjln1ewfc%8iw{6$c2?iR2^G zhK)dpJH1AiTyC+`WNP4S?4%<|rCv%E?2Fw-XdF;gO1?P7Dl>)hgK~2}690{R@DY&B z@5h-)=wntRVh3Yj)m|t(mYDqebSG9#1F)`Y**V*UofR&rsWCV0*odn^4senmE6y&p zej5WBt2$&WSbg%6>95EGBvoK-k=v@eO?)k-ph)b7uIe-38W!geI%c7=$MXa{IYnY> zs10i_s|+Qp=aC8LaqbcKYB_goxu1+C{9U{-Vkb(lMt3s?$wxFQk7ok`Q%^JPoQ_}c z4hA$p_(D;*7uVGD5)qlqJzo@usqWg(~GJb?T}cStOY#&%i%S!4gH@ z6baiM+=b1{BtFX!Z<#|96lpUL<*;^Hzn}X#C`b z8l59@of&_E?sT8a+jMe#1zxRvj#uI$vEc?>B&NCCwzDSovNEgk12!`AQq0A3l}8|V zw739aya4Um&UJb{tJnW32WuC~5%m|lFpuLAQv^R`@o+RiWvdVpl@Q882=_uql$>mr zTa)Iqy{o9!bRwPPWE?SPWZ4|}FdUVb<|w8KS#rf#Q@$Dh39U&QvSK9R^e6U7`*seK z)PaS$m?7x31mCJ`1nj7kKw*y7+fRvrw2?wGBIj+2dg(O2PRVVtQgb%kg$N&t2^JK* z+xjIv0y(y>Or4Zo1c`8`l;hbeQUG!=$VB$|;xy#1 zCw5UfOq~NX>_APlz+*jpzLIT6^hH|>8Sc2A-N!ydc`Pp;1p>G4c_C1T93e?D>XMw-$$D1FNj~4MD4KOtLeL)lL3||$7+pg9_UV46d zU5KE1dxE^e-Gpz+c@*2pb!Xd}3htM+!v`mWEa^zV4cpP@(pB0Mi($R#a4t;70P2A zugKU>O)93DLo6zV%C)Jc>*Tei+|dJ8BZ@k4va#DiWqPBEBsw{Wu#vsl*iooCBE*aL z5H^BFH%B(iR!-{AU(GUM;SKUc^yrCi=E1TP#5_CZYLP^diKBCI&-uc>qI0RWj9%k;m_{{wk|L(_3pSAh#+!)bZTK$rvg}IXB)Sj1XQgQE@?r<#V#S8T|45HNr|v0NAsVSQ z4O$4G*do zgk0{VSZMRMkoiI-KN^P`eSelItSD+U)Q7ZRYwxihzmVf)*{eRKU$i%7yR^oQ3(m^= z(Q>$(O=LB;Gv}L$-qk!MpKyJ8P84Yo6E2XiTKhH#~mc|V`lzI_11k4e3t``I9sHw@4$N15~XH=%hL)IPe)1sdck{PX|$B2kYA}>j3 z(WqDhbc7q0xI#(Sv(iVM0g^Xe^^#WoSVs)A_fn8r#t1Nv#WN$_P9?GA>TFB#7 zX*Hjt=)w7^CHxjKHpqtKb$AHggd%l$)^uP(p;mG;fpgJ|ZJ^Z2E~2wg1`w`rgvH{< zr(fsW6dhD+hRf5I9>3>CNA&Y>;vN!ieZs)8i}c<^EpH2$|ZjwnD8ZDY~R z^Kx?CyVmshF`JyH@m{9VgCPpkZ_&G6C7xpZ1|SGn5?r3g`?VHvw2C)PV&4vFtDce# zq_;x?cH6FZu#~Ev}AeQqq41 z&q>mxy|wJ42n@TTb4BWUOSxEn8Zst`_$#QbMcE#(2BQ1AKwEq7b!ctWsJ?EghCS6S zWem+?oeV((M(V&*-&|0d{;i_&-vQj1@%H54dqe!nC#gQ0Xu^@_6m&jwWTUdE7X{D> zb45Wk-%ffh{3n?{Q23I)v|B~7*$EwF15w5UKy_u34k>~KoAjK-xR8oNNFhmlLIx`_ zXCRt}z_%a;N;6CFJ-K9548AbhO9I9jz&)3@*w?)x6lx$rwQ`G@T-K!*fUy>qM~n|c zV-AIVpTx!ljCamlRMLpWgsiald6zk2gID`cPFUe8=Upz^JBf8lbQY(di8NRuN+DM( zf*J1oFrT902)%eeO4d#+Wn6*J|FG`IFIUf~HLi~Um}7#*+;R*dRiSl%ntWURNVx?@ zO+dTaO5-pL5RSf1KGc->`aNW3LS=gA)XGl8wGpN-9f)Yd(WG?h%sH~|V@#9P# zVk=|9NAUo}keM!?e^(`ro)8TujuyrWtrzA%&CZs>;5jG<2x5aFu^&GnV1uA7)_W^D zTR>jSFU(JJsni-+iBkV8)=+t@)~0?NPcWq#H4HE3(NWRPEIX*uBgJEUMoRWEaJfqy6!zvw`H}lf6cR~$8 zw~xqB?V+js4iTbuA!y4txkP(N=nb_R{Go=I!pUN?tNAdyOFFIiiUNn$GLlcZ^VW?c z>bQ%})P0|a4E#2PhG>y@w6hfIAbH%5P$_p5za(I>JG}X_XzAOqs*&z+z3lvQ&&%u!P;4tAa z0LCSWN=9@D5=t~zI-=O>}O}FaFY8Z~{3EXnuhWjSNfcrx@|AV3B?9&SJ`w9 z!<0vCa}1teZll44v*0YmnTr%z<@)Nmm2lFlt4Af?m#oS~+gqzgiT1aK;x#oDu#srJ zSXGq-SFWz{v{s+?nXY+isNP#W0weSdzsC@4Hiwv4iS;uA6DefP=aY=>@edA=!m7?0 zE#ULtJxXzgeDS3&57Q&06MCkjh6@M@!^?6pwfKBbOI*aXDdwiIPMT4bwoDA5TL z{8nb4d2)H-D~zbO9u1%g&*}2wbS!K!AgF#5{HoZo?6(N|2Xh{X27>_nK&XLBCt3-1 z4AY(5l!)`QkU66sju7X=T(Q~O={(c!^~p$V}ei7oz& zaqiegM=Q<=ABMp7Hxki8KtTFOlRTYVybmcof2AA<#6YRt!Su zC<<{;g$TKETu5vxO}~#e*^?I?oPJtsX{9sj5w9++`aQ8G>V2`|lF==s`)bCe7gqfs z)(RAO;+4PGRxKA`UrZ7nT11A0e4%mLs+;AR*1oKQ3({QCh%e+%WI~mp&X3`1$Q3$t zvS1@AseqorrW!y?E)}Y_N^HIm;UhkuvT}e`P_VQ4&0bjVTLN|GIHiRPOT> zxlVXYnjv6eSxM0MwU+!l{gHHT#)zKva0TLa9BTMfH+4LWdy1)LVhrL7U~`?DB*-lB z{mdkm_?0s@TBT&w%{ft03_+;vK!I2G6s^~dInne`Y2}X zI-E|vayY3Fndqn?xpjI{pmmPx$*SmOxSFdnLibNpM}JP@h}LXp*?eV>UbIm<^uz|y zl{-B|zPL!>HN{ny>C`hD!imnx)Om8O4UhvUflghP#rsObN!NwwGUQIk+C8{NL@y`P z8~5pDrSP?W1u5g0M++k6Ds2MblJ%P$TDx9h?XrcQ#K!S`+qk#uGJ zmRjn`%QR8>*Vl!JUYLh)t*&}hCNEK}Gte>X*UyJ3sCPuYw~!9$AUXoxKCb0C(vnmp zA}l2Uoe0(k=1>>@@>QXWXOfg3%WbTPm20URX#l(cRLph4Ettf%X6RZ8e0I&Zie(A4`E8gx#&MZun=ZGhq8+5UrOFiA6y55xqb!>W+=Q#i91;|Mk+(cxnFCBtU`2 z!b>()7pkAQ!LR}+X9D{P%&CncOri}%-w6O%3Yh&SewXwhO#%ZpN{jFC>wl?ypw+87{_lJ@#s*ErR(>(G!W3wo5SvS!c z71<{q>)EL+#7Nj(aN~}X5ms)LMW9DfOEOPJH-};Q{)1e^Q2zav{8`n}OkFK3Ac^KW z^6@rRaG6iY7ew5rAnr=6r<*)$_c0O{v?atY(|LIGStDqcq3+55PkY6l>|tbf=zrLj zU!hbIh?4yn2vPQapa}@$s-oOKl*fzsGUU$vxabSQ8wCo=I0JmxriA1$AYl(y*t-|y z!Y*>h0O9`ryzoOWivPT|hb;>O^rHJ1SGbQcDO`~ji$6VIR#k(f_}q42{eg$ z8(Y9nkb|fJ2*Xspl6;Y=Vbp2K2VA+cFXqi+mxo=bAG3Zi$ zQ)og62i?wEf;;&&;A$L4P%ERup3WCk;DM}2^Z8R@a|%kzlS76_&(wH8Q+|iuJ*AXp zj@Y>4Peh(uS1}&^ts3p$9$^Sk$A}47!e&ZDJe-1b8pD{{BOb8$-f0in0e35?hy6v4 zJ?i`bFZz$IFWQ82LWu6RIu@vc2k;F+YJ6NgEjdBU#!x6NtXdlM=S0az;jWI~r)A1w zZqlr3gLX#?@X}0g4j3;7sW>|ihamZVkTYUz9=S8IzA)7AS;ToPkaXn*ee3TV8d&Wb z6l`@Biq>aub-YSLWX6m!sJbhlWvE(N5y}4^3AbfAE;xsXcUWFxb6(mlqG8F9U@TQWTeXZYVq!G!QudrLBId;*b5R*oJ%W-4Va7wP7-y|{dxg4+O2D@C z#D{?ddOo?{)&{)F1Nh7r2b8C#oPT)nMy`FNfGbpAfL?SYA3ZAkB~v1LFoMi=hsh%A_ilSha3 z^REEeWWg`xQX8G=i^CF~O_WQ$H|OMKw_8fPG_1}`BELO#m3nEB{SwElTx4!EH#n53w|t6JMjB@Mu=O31Cgsc#{B9}w4r^%ty9zJHPiL8AH6WO__AMN>JM~Hu;$BNYfs{|+MBH0uB zz;`VW`~l`RYf7FR7cFG@jYdt0KYo;ybU$KMZ2lojLyvE4NL|OUau{l6L}vY6e0|E; z+ymfa&|;(LKp-8vqSpxWU-LDLVRZ@RaV7VBeqZYO{PYEC`z6nB=X>P%*ebqqir;HI z%l}zoGrKoL)EsFNXuL(@6Z;IM&-0isF$VvTV@MpmCw7LKi*;l0TYD_3a_d&`VR{E! z@-x20ZnT?T*4tEe@-cpqNK~|Gd1CcypDkdf&Tl`CXU1FBIT(HIyuY$dT;aEpa)rAL zsgZ*y)3Duo$_s4ay&=0V$}m)V3N6!(wKNi>5PQ$TY3N&&Hl)YKn+NBRK{N}%-0;7$3nH1%%RoyhaBQQ{R*fQ(+%d>y|} zG}Wcj+W=&N&O2=E5qtqBajEKe6l(Wfl4FG8(blhD6xr9W{hC;V-PTnP*&71F$vQgq z*^Nqt;IV2*9b!;cAlS~(|9i4P`~_8zfQyi{nSWavI4)=MKoQ_Suaxs$?lH{@g+SPV zPL+&3VE+CQ=1UfK%!yVH_PqI5`&;%!3j@agk){F)-z6}}BGpzaAFb@lg?Eva!#X1O zh~0f2Qqbih1t9=ML;!l!8>f*7LNcrfLQkl_|DF|q{^IRW-~Z~B5e6I^INp$4rMuxv zi>-^{a&f~Ef@QOpD|wK z73r{kc!lhe>Oi3`1jIUtD#RP_3v^p)Sl`{&d@dNgt&Adyu%E~d9e-I?Zj{Yf04%aM zp96*!-(JhAOcPaZpky%LuVwQ{Y!%-I5#pe%03#+;6{O7tr85Tum36uD)tMYWVqzmq zx#ZEviKPE)(kL6dhv|fj_x=Z{lSwNI^xsKXoaRB%|Gt#-QIZsOYOP|0LfCqBmht%v zt6?|+tEw|ZAeciunB=-MgZ)Zmkk9yxrD|xGOIe?DZG~TiaZ!4$sBATYM}RG^v?}Z5 zUW0G>R$-mXw@3rLAcraJyI>v4dKze*VVN7CtGM-uxF+Z_%XL}js(ixY1*o-LCUhV6 z{=MnaE$J;KPJ!M^Ya8|nP77;Kqe6=ga#}~^E-J5@*z~NN_8Gu5EjjK|c`-W#flkTj zZ4T>isk;OHOinjL~K?kUEa@sOB2{| zC6x-~YAshwcV-b2wGs9qjOXNFT$f>M{iW3CG^dbp z^D4kIPqyY_m{Bn%YHJ2%Po>9|Hzhh)oL?$xjjz)8#;b;%K^nNQ@mB2iU^3`TgZzd1 ziR33yC$EzY#M6bJfc0V_=ci;fYD8zXGDxR1Mb{Uv$~z~ks^Rqs*})=O5YEpA4jy}~ z8?NFY=^9mM2WDg5<<^jk6Z8DJ&V&X@FLm0LMa)O$l?KMOezgq+0bMZA6ij4IWa z%)TmkUL!hv8i|PP4>~sz&!mF&D7hwyJ(7W;cs8J!qkOrXoOokwx&cw~ain=!V|lLf zsj*-DPz6k-9bjwyl6Hbk)U)G6C%u0Bmf5qEdPz`NKh)9UJ zoh0xY65O_vMuIv>WnvEj9GGXxVAknXGC3t{iU-+xJ@b!{X?J@Zg;-X9$IU6L9-u**x=RL{ zB>{Yr`0?j>tyV$;?NojYOyQaD96|MO0}K~HUD5CCNA+SH`Tx|52*Tez8$s|#LGUbi zo~=POn;CB4%CoasB^s!9M<7p7SF~1A0xs#*?+J>qRaWL7#rx9io9|#mwsPx_=;@pL3ZMJ4u~r& z%<#87&q4->O$;qdBp3{Yd8>CB6o;Z2{5N^({${J^YO>PJiT4W6a=0rU%%(hX#AVmhXg-0O!(U!VH`)}V{ zmwiu_e&!U0r%HHR2}J1vCB-pNi3~(-#13`_ogMpZjWEfpDc^W!299ir_wy0+YP2?0 zLDY9JhQ%EyPOKAFQuHMV$M#hx4Xx<>tx1?5*2$;Tzwn>xl|*Pi9R(*@3^Nrfvb2^5 z_@#IJtRIjX{zt2Yj`!6uNBFzbuli7exmEkD;!qX%V{Xq#o_Sn_(4rVO`a{MoWz^(Y ziAP@QR8e|x%-M06Hb9$ z2`pl$MH1RxA=jgl4*_cz+Dq9CG1suq#zyO3u9p0@B9B;en!aoKWwu~7H#zy60a0;w zxfLM~a;n0yc%J+^dNz8h_jPyyE^pplr!!W0d-3lE-1?D6&>Q>}1PX|YnJ_#0uL)PP zVL)s7rTi$q+**rx*CbxZ-5LABsO!RvVYP;QMqMCvXGE!{B8aS;N5Z&iYo@ppd%h%c zAU0DuN+n-d$e7ko3s@v+WeJFmE83;6p5m^|6SO=TXL|`+6h#)MPj_a!x-G)UOona< z2}-OlmzYl!h9!2jq3q<}e}HKyW}F^C>Vo+{V*My{1LO*i&pAYdbHhLWjKY9ER;E183>1E-1l9F zDKr9AGBd@reEvvY4pz$&+j)d!h;a1-E8?k1fF+*)pPK* z$(lS@KH!C^N<$!6oGmo zzxi92<%Kb~hKwc4LPl$xff~)J7vLx}%$!=0o|rgB*_NSqdjxJSd5=Gh-8E2zka0K7 zAC~5^p}cTzqcNQq#-#_hKUVB?q(t*YAD-1S&uXnB?OQHW8fjy=BQ;dxy}6FeXlN(a z6GiR9cc#3U2x+rca>S$Het9g?=jVUW)~u%vPAj?Fb|>Cx)G*nwvdFx$cmu8lVj=O^xC*@Dy@&Q0!{ee=Kt zQqII}y$@p#;Vp*lGY56?KoVR$OQ|tc{Jh&r-byQlDCkO5akI2F)A0hnyACxYuDhrw zuOE!h*7fKC>xUHt%sNgjFl-PI5g3-&`M$ddzz9SMIF&a zdh(WUaE-sBeKP=-UJ_~8GlhI#XOr}+{%ogCOTB2j`jW@T{_LG=eYCL_^nu|g~^EUFU-Rk{9PwaEibm`#sQ|0&J{LU-U>x0SL zrHeb~1bm11@f`W_3m}6DNcOaAE|9&ezaYQ!zu3E1oN3=R-Y;l(uCxsOReY+nqIy0pFXvHAUVU#;M^!dpKIsUc>i3#wPV6 ztZ;@kx%Jjzd7zQWtqKOa^;Va6a_cq22Bin{X6v{?t&u^_u;~x6TU)M5jvChE2Wbt# zKWeMkq@d=bmATZ+~6mdt$RK@)Uel% z+JgdC%7x+b*J*2-i*SSFo>UJGBuVrdc5be1=$V>yffMDbHFQDtotsG6hAJ#@KDY;A zl%N35RCC;uHre)Vx^rQ~w`u7D9+yth)=m(uTG;tX*!M+rqDVX!hQ_`G#LC5n_?2sG ziStG{65?BGoen`$DT0LPfogbG>)W%mAbp|kd`-`EQ(gvohYMt01pi1+EFnFf)Y~JS zS-ZG3!nO+Y1$-Xv+j)?LZXC?w3F8$TRm>GsftOW7Cz+Qj8%-?d##;~U365RQF$8?u zwTB-96hjRbnZ+)^oe^&2fzJfbzaALdy{s;g$!{J#HCaEbFn+o3?sB4BEGj6p6yfr?C#UnF@g>{ z<6eUbsb@>V#P+2_^Bidsq|Fiap?HPbirJh=QO*|RO;(v>yX+$+fzcMCHRB{vKoy2* z5~65q$!b(#FJGgbL?gD}OV8*St;P84VW;C55eqgbAM*E^K~B$Wrx}@z@)UIpYEc5- zLiu+rY*fWKr-z{Tb=>HiiyAw-*vX!x>m;9ExwN?bhB8h;qwjQ)^)y!zOjV#8h3OUS zNoF&a!BUV{ta|)T7=W`19o0ttS-83{E2HTE;gVp7ju3td;16^9$8&rH~oEDG%@D*ubOYL=<$Hdd$osN zq^0=rl!hB#jaQujFhzMMe%}dBK7OB%ymn1KXf2SR-+qX01S97c=wNugNGMJqe~=(% zy{IeT`&4`AHu{^Kbd97>+mE^ZFfUPgS^J@QFfmH|SN3G;PoUTO6Y_NktzNXVI$3`r zp~_!r51&gr^tw3vlT_)TfL+Dd_0+xzIp5{;ILZ3t+#L{y1;uGd#HOu2lSoax8RZ9X zO)02moRZ*z&R5dIi4$o*rl!)Z{ji&b)g-+a6AanV6KO!b%Xx+yzF`P8UTzHPX@#9& zHNjlYcVtYFD(%sPeUZTk3E^iM+a4|AJE|q7GC(8Ip%3fjQ>6PsZ8o+uA$`r_^yPAlsml)O-9WoJPGAX{DskHQrD-Ibjeh2*{Eu z6|Pt7)iX1eu>e1wOuV3v-AKLM=2KWj`(>3=2t6Oa^Wz3Dt> ztM@#-Ut(hezW1UN733O6rY0wxI(7%Txrq6scxX+NVt=(FJS#1G6hhOmQOIA&`35PH z)MLEt(ROXhOO+~PE+nc;&=`MNG_^t)*(_va$f@0rqi zQ~n^KpBDBmY~7kt1=>+klCDznYK!@K zQHUEEGQTeu_C9Y>Ewft4=2nCn>L9o{uU~V;Ag*vl$c)Q!L&Pp$} zQZDlq1=k z9wweSiLVP|2VcO+iYvY$+^|jQt7^^qE?{+w_{quHA=*wLRA36ohIAI7%!u!$JI|C~ z+K{ND;LWBYBE<4iCjupGMZ*TQ?sS?)6;cxo z!3IYy{QhOnIrJ+40{-Xd!C2mr0K^sflK8w-J}D(#xxW=B$YARbX;=8I=?~Nm&lBA+ zyZaYq_!g-jUI(?u0DX4|*)r*JGk&q|>(G)H0ufZ)mfDx!b%M;r6KVLc)``Q~B9_S1 zB6w18ux5Y*H82LD7YZn_QD(dN3a6uSidkGn;mP<4RO4mx5-9Pj(Af1{s!qwd^+WM5 z36I6#nc)C|O~9dE;BM`w!kwvP$`#gH6a(S}ULiYMiGaw)NB=`0h=w~TmimMMPKeAH zOHofV6JHlpcRz=0{qz7-mxJQv%qDe)(nm#PES&5=TFFSpA+^pp#<>Pnh06F!EwlJL&sU12i$m-n#ay!XWN*$r~~u4A>~_pjvj>- znS>`X3F5n?f>r(3N2zhO5yn8JU<{1?JUQy;u+8p7y5OE->o>UNwvR3X@Xs}Ntu85T zo$V0szQJao)TwROVV|rfnozeZv$@K3*US#_pEHUp60Rd|$%`0r$_|HKLaJA95{Gr5XJ ziTb@jejh3q!g_=j>``&z@b{vxDv!^0hmALh5E?BwcRfM&5$C~1llZEhXeD`B%N6AI9(?QykYIWH zg@{epg#*w@QPDs3m2y=H{A zc5Z2${ACpGLfHccS;s!RMG6d545$_q!-=OG=CbALz5Bb7TWyu zORx@Z6c(wb!uCN!0sOP!vANh-Pj=%#iZ^m*)-o=4F&u((GvKx2+4do{V~ue05{jcr zUp<(H>F3cvdP)%p<-T=C5ga{IX^ffP4Bimi&mwsPKyfRD%6T&MjoO;K2aEDYaP)+( znqo&XGTx1j5HH!tC2kRLjOhzSz-=_)bIbRAnA-8wWYg1Iwn7*jdoSpx` zXEb7$wsJFie4CdJZ}(-VEh?GU_llkkxt#s#t|<|E(&N9VjN-Q}LK^%~w8CmZe8V4B zqV62g5wInViDp!H5WsHbSes1}h9z{Ha0_Jv$N~G|yW7v$|6pwEMh3-0GAYM zEU>z$RgT>%eQp?>-KdhgxL4OwGr}3YtUV>u*p(8W*D9~E!8-OAT8has zdg|(6eP(lOus)=c|%3R{Su#*BFpbEWhiF`c3r1ULt9%!b7Dz8$OJ zD$F4qe<80r$ri1xbvYl{(|G1&qS!mk6BLP!z@MJo0E8{}J?= zch~SLSIlkJxKu?2>x~*w{a3rG$_-jhss*q|)p-o+wjMyiB4~VbgGiR00s)_F zlK3(=65$N?BC*UxI`sAvcxgfEC*)Y8OHP19f^q^LCgND2y_EWbc~NpD8)ZW!tVt}j zr^e}y7E-kVL1+x^tv}k-Xta=>-FQ`4qS1ytx#QEE5bksdv-&bUEOFQqE9wr43yULd zp-<2G;=xD@4r%1AEDnhcqx*}wv7QB~!912%-Q7q53d_r5C5^w{i$zhF1^~D3E+YeS=%`ggV9c z?DB?Jej-2VD?bv-5$^m1mhf%u;V0-uY+=IT9}rAy-S~mfS8df}G5`;t*X_c7L)C80 z6Drk)C*|JSdm!B1xAy=lh(1zfnX!(Y#+9Y35nQNCosuoY=#CXx4WAs%kWT${>kXzQ zsG1C%*#0t)dflv6?!(7_lCXU;7s%T~yZs_a0wjKadcPf!1K_XxcRQB%t4XbN@Q1!g_SZCE;+GFcmc0|vtx-B}IfM&JX zywtBli%9`8^Eaq2xf*KB0-}fUUNXM6{==p%2NKK4(Tb1e@|>g6@=|kgy?Wa&M9oyA z=Lz|gH7SDi``%MaWEWg>I0aCq`^nVMzWnJzS@jyZ6p>)rBodVSMnWVeo1*`NwlF&4#rudXcq&dCP^k5vSE%95AC2PHNL8#L8g3(02gW>a9c|(Sft;R=xDObq zSN5!0A04qe0V_v-^lzk8y81l7m*Iw`YYc0YV1$2_G?NYQ&M@A!-sJMyqGJ^)e^LFc zQWHpCQ@UC1inj_YcUZf<%eqa0a;zv~NWrxdHy1g`zh(9z_YOmba83bJMld)McgRuF)fMu321AN+Ig%P{bO2n8*R!m}5s!N=wbXA`W2BRWED0%+V zZ~`QLB3md3IJy zxy4i+^Bj0U$|bigG+%TgZtG8&t|GACt01ErV|R)V)pho9B7mZc+NM$_DEL9-EZr=L zK}?+Q)RCPWBzglB9fUK6$y#!g^(>)7&=N9;fb>q}jOO|U3|2V!`0CY4)E#ilX-}Bi zjccoo-+kSVeLX{+d0kl=bRk8LbXk9$xs8}BYJ~7|-=RPw5 ztowWY{`mQl%z3!a{dnEieLY{9L!Yf0hq+b^qZ~MyG4M9gBVl75ec2CzFF4MRvHeEWX(mpojBoCSxA&)@+e%U= z=hB%&fz)}q?+{Fi;DQUX$FZIy3+_x>-x(T>RR+^#?F)dGxlZ*5>GUvQrG?Ix}x-hrcDrrvc=E90nlrfPu@6A4f<4T1E`+)E6#dpZhw za|)Pzw};Ju1P06np$r zIK-;Y&eP?Ho0=d$39pDuy>;&Y+4;6^o5pj5B|~VSjC!85ASr1KJf>$v)aq1(F@Ez- zEP3!6@zOQ+n?wL4saqU59P3^@<&kC>OIe`(Bk1};A0RNds3%6Oc#?lKhlg;nQ{VDmth-`CmCm@w7=ONPD@(cJABx0^-mv*TT*%st( z^+SETZ?7Ia{%<%J%F!@x)D=9ety>PnDUM)~UEksR@rxKqYH*Et1`H8Z<3wb?$6ONSd^+!nErNBC=S$gRBT? zVwT3870|^i7D$-b-V!;OI=*$<;W-0qE-S!<*>)y^?qTFkq{}wYpuE$Cjl7aAq*vYx znSq|z>gD3gT~NFLB^x7l_H&{T<-~J>B41{Htj3nir};GD=;k(T{38+CIa=z$00c8~ zpJvOkZrCw_(U*d_k$5j7kAx<*0CAPaP*fho9fibcneY-zsC0Z+t4=qvj2H^A<4utx zD0Va5OMR*1TK)f>j4W$kdlIbPlq6yC+?!cvfMb8|xYp8+rET`jzI;<_ZeP)a3cI6% zp&#h%t7EHhmIROie1scf3zR1B_k$DQsK*ksXFmlEpe8y>jt}EM8>F%Tc{hO;f5h^{ zosK$;`mMfxZaD5SIB-veO@Jy3;!kA2x6S^rWq5xnf`e)v*GP_bmg40SLh*{#75L^( z@w${NGsUr0X@h;;Wo}q`yeTU;Rs5Z*Kj31Zo5z5Rzcf)QGq1gbXlS_p$TVi}xZrRx zg0{icilaV%uHwLcH!29awZ*wXUFD2ZFTEY+5TSdZsi8G;K)yao2-F>9hY{Hizfn_! z#i4Z4Zu8VG?$a-`;B)HIr^}}yr17jq2!ChD8;klXGh6pRDE76YT+c{T+)2>i#c^%K z+Em+n5oO25b!VN|;t+2(eu;^F|6dnw&262lP5p`MQ&?-}(d#(*x^q7>Llm(^oak?2 ziLwaS8`iek`3l=7xanv2dXslhM~Dnga^~CI%O*a1xTXjv-b`^AHynkLP`MFN`r+AA zA|q>*tLbuWZ0EbM9iNyPTg9E7X-IaW~19(+Lz{GNzXOZ}I_jK1`zc zeB5)Y4pW(HF-1V{>E3|gRR{*wRBi4aoiH9e@swbz!(dsj8a@@C@|il!g=%z1ey@rM z29>BL7upw8m+RJIO%y-m%>eo9s?yVhZb47(bK!yHeQ-s)94o=WjNe>>;Vp|Qs& z1mVBcQN18gf-m1TMcIV*y5C_f$C`jdPmhnU@0gMu;_;*U>VJ~m7vurQ$O1xc3?-n4 z&2JDqUH6j5^_l)>)=u%Ip!GVdy#*uO)gK*|Y#ZN4xQo>>$r%%h;40-YMW!#e?gg_nu^Q;<{kUCS$Fqan5uC0pOLiRc)Wt9 zy!IT?jHMp5k>ogcQLFtnM57WC*ssJPlnZph?GwEDY6ztMxasbnN~^dZOtl}wm;Z^~ zHNMRvust^&&x^Ie>8die;Gf?h5}X7DJpi-;%TQ0@!U!Y0e&8%I0g)ClTKa6>GC9Fc zD4=w@=gu=pA~Vu-mjBTp!xhoDHe^nk@JopiEp*?sCiBh@HbSG87OBe!gyh%hxflQ(o`&01CL=er zcL7H?v>W_b)C3f){E^pi7#%gu&}}?WlIIK3mt&7?^?sdc>FM%ckiIbUaY_2TOn0Tf zd!i?_%qDmz>`icl{0^BuOrex;a&|329%?%DD{q~$nJBt_Q zg?dR8Aa)U!1AOjxGc(!dm0t8|l~xq&{c_k8avh^840D@0zW`??R__+pXz+!9VxjJT z7K%$(f=h2c?CrT*MJb-`d)Mc?%=cqiq$#N(DOX55ZqE%|wu8H_iorjqf_YSsThTi3 zpWz?!bdzMIvgRkm~Gu5Q7j&9OD4}YKB`6ImnRpTSXuzoL0 z1rI)7x~wv0zZJJTDhpwSYI&0@v0>r7iT?tESqoG=cMC#12;BP7x%DsiW3+-We|)2% zRk!92L|$2YqWybVR~$||FrIwJJq~Qvv*vW9bJH_?O=K_%kW}^l zq2YZ<_3sO-pUl|j2|kU-j8pU+=r06ieAM{B2L-MHyc;o)WKNi4QB?Yy0AYh<^&2le zvcU!?1gJZk#FS^W=}ST7dJ##J3I~cfFny}T#a^vE-jpybz+U%NfTAuHgiOm zisPlxN#OqQ;ar2ZkCjlPrt{j!52ag7{c;PNa0*=B4EBLB92KmOflz^3gfoI@-*^j9 zIyhm%(Uj+1_}JKcGW+}rV~~>nSAlf5vFF0h@^VH}XB|iVQ^{< z=1z@K%OOP*zF3>7erQluriJ0}F{?}!2j-H`64Y7n-~U`4Cy(I+^Kp@7^aM=>9#O*2 z)M-84x2`ne(A3%PuTX^26NIqdk?eI~P&b7dOiD4sI~YJ)_tq}n$=s&SSg^=~C~6Fg z*rWgd1nF~{rpP?Lhj#Ki@=eu}&Du>EP!xi63@mF9IR&!}UtVxr<+wZ&r7uo#F5_K6xKm0Fg^lnMKE5sO>O1A+#0StW=jIy?(hB}V;?|>X}=l6S4^p;%;&O_kR8a|22Dlx9d0wpq(nsN=!RRnA_fW&w0=0kS|rLSN7#lxWiGZy>3 zfo6FLF*e^?z|WCMgKB6*zW|oY~ddVbcDcLnWCzr=anZK-p0J?zP}i zspv2zWqAlVg+^9d`*-A&kas_O!7u=)jqQfQ_~~E5e#=B6(kv))ovbxh!=07(N2hwe zsR?IQAZ9%cB%e^fbCZ|>ugyu!9_27d9(GGIZVC22D^C4f3wz*j)rG^kMfGo!Nw@1O zd_nNuUj%zrPsQx*x2Y2gbr!tthUt=bNhV$w=S{M3B&L0sJDuibzKgS`bE%!(1TJR3 z?L`rOFJHuz_6$2R2IH>1?{MDwU3NF0iWgZZsERaIL)I~=V>{Z=yzyzTnh__-Qgkd7 zq^AoSl|Bg!T9iZ`aiu5Q!(q8yQs&P$fQZo~LoiDmpth9heXaj$cj4~}HerWvD| zm*jv~m-N|9HJTBa7JJ0~28RvUGXAzUA_V?8v!z1T#5?kM z1`RQ?hP?hJ*;I+3Jv_XxWZD+0o4U6WBT4wk_w1lC|_WOn`RvF&f9t zn)_rj^Q~~S#Cil9Z5(pmjYSUMR+eC6olYf5d8K%m2oQm#yaTt}?9XY8Ig8U?irLpv z|A6MrEVPEfbQquF%^AxZU8MC$Z}?w$txgfYmv7?!cgYVMUNPwy5I93sE6ycmoPHm9 z1n~doBd=}@eTXc1CYCvoC)b>I^mpn-mHXNu51S)X>@}T%Jm7nEWi?NJO#9X&_k|(v ze3{dIjLC zGnu366s(y!2)u3b37j6{^Atcawb)k<%oss<@^~MF;^Rl%g-8?P^b_FWPi`ELgd2Mv zd-&{LHmdrww0<|UD`O5=qPaCz?+=-F11b01=PiIYf@KSE$m+n}JlWAoC>VBP=5RiR z@qB=N4`j0VGMpm~^wXa0+zT?5;}mH1?~mo@%alGu_kfjwR7rmLwb1w%+{X|hXv9^y z|1%pGy+*&;WF?+2#uLJ~kv43&?E`vVQKF4kQEE0Gqby^T|IH}hann@8_q7$Km~rLE z4Qkj8sEI_ji1UIn>GL`10QouQ2evEyfp<9O+k68RzDS$zw&`)w1>4U!YaR!|Y?&2V z)5k~rv6`NBEOOAR0z97Lk>T6$JuJ6__O9GETxqRGMuy)EMRwh$U7{F8W2@v|2Oq3F z&gs@%sCnR9=dqNdv1w0aZ=!YPK8#!6D4lL?EGLX*SssTAY>)7p07V|D1p>vQo}5A@ ztcb0bw)8QBo824kk*H7z8Z@Gd1zgneTTPk;c8k#YpV7hVw&@TMbunhxj~}f$BTRBy zqZeHFmNC9?76TMY;ey_dgTmu?k{k_(s6wW!bAuWlnS<)mClNy-vlhqU#{e5ecpM>0 zq7iMFIN~zCgPYSX47vL`CCz3~&W@cL?-Wm`A<3rQ>zzDKDcd&cVUU5|@O{*(o2AJ| zZ{pJTCyc^ua>aDS3fPB6Z<}QAFvP8> zF}E~XN@dTz77URgFom75LHJ@hYs_S*H(-(`uv4_%Nrp)>W9_t_bid6K3$MzepTxO~ zRHWxljGUchd+K7C;@vU=INnM1`6BOGvtCft+qa#T>DJE3lL{w9{RNN#UiQK!<|b!u zkNT9}?U+~FctzboRx7z~33*=k=H*qY=;m=>YQZcg^=ls;zfx_Z6g6LC(vf-B-@Apt zGl$8L49%oDG8X^tJuqG7ls8`rZ&fEZYIpHpx4Q-;MUY)GL(nAA3p{1QFZtSJ{3s*~ z$J{z<-K7wdrWaN(0&ND)JjU#|$!g+3)bQJ-%&<8&akvW9#GZRSF?F9i`I*lkwFtA| z(S;MZC0%w)u9nQ3<1~u&W!jTWf^sm9x?ABKP2D&W1#04b`%Rd~@8Q}v_U0;x+RTJ?36!p#w(|Kjup}Sk%)yod&Gj~?_ zQsanPw>yUvJANZjXMZJqW z4GJnUr?LxY)VVcyq58MvvC~vNC8nOtPyjo@hnuF@Tk=EJFGes(MhDkali#AF^uYSL zQx=l6<_6^-hs#QydN^;GqoS0>?Wxv;Za4jBVzr4df4p2XBc3#4>>CT_D$WcA9MCdh z%76~B@X-O>>LirHt>LH8s{>Ns`vgYt~RU&|i5<=2fe| z!dgGC*}uM`SvwMyOW(@_m8a3`q}8&u5Q2Xs&}>#RJA-;n*9#=MF`&V_A?eIGiVla2 zE3m;{zG7B`&~$}Ri9&ZF&^tfDWkWZimoW+JbiOm}DXB7Wa<0^wTOnZ?{J5bQu-r6> zrVBbyGv;_?MO9aern!FiEGO{Gf#rVI(nKGOkIN?yj$$HFl0IqK&I#UbUp6{18F@Ns zHEl6ItqOXKeu>G_T;_gNVAq#u=9qOvNPlKwcEovMY~@D2^aU&Tkg;7ETe)K4&recO zn3lBB5`X||WzBmo3Iw<95f}?hRj6XD8|l*p2SCTdY-P4A+50cn*a{|dvVkicKN(D?JBmuxnP~Fe_HQ1}Uypchp~6oUpzVh2L%)P>E$X<*y7A(CVt^^45lw&< zO{?M;s6ee5=Q}DX2C)Sk&>_E-bVEPiF^pRIcwx*)lrGeePX3+Mp|Vp>+P`;iB-6OE8D=Jc(n zaQ)6abSa)QIu00;PCbskAX~83L_Muzg&{s_h#bMW_pPwmzSGGbq0tgIP4C^?@Sp)j zJT+Z;)!qQp5C~fD1-T7h0GvthH~?!GQTAA8kKi(yKU`_B*#Rb;{W-ls$n0cOaS@qK z1DWB;_Had@zhc7rigChSZ`r>W+VWzutEDW-+zRMQ4Pq69RJ*V-P)adl9`;m=^Gu6- zF$<%`Etmc|`uqyi%c-irq5jiq?PN637+ zo-f(d^+Wv=*wLr4d9|ah{t1O0jdjkJ+@F}Ry=o^yY2v1sGq`2h2NmuUmmCQ@g^MLF zuoe5z(xB9s;Y-yK!+E4<#$a;bHvh^KqWza=-WZDZatgY>-#f=SP{Asa#ZOKSR$e-0yz_S_c&mun8fsC;cT;o7{lp7Acqn z!vGxVrtDu*#Zga?iSt0jG)YF!=C?o8yE`>S$H2z|no#C7uFU!l<^Cjp#8+ZO(@4+u zdUg^GTbuTsK@9X2O$wBJ@D)`wxus(S2k_e$C8zBIEr?wHWAfbFaez0DJ_;`}}cWzf&=?cG-?zHUuNG>qZ!2$n9WenOXTV9S5S;pHJikY*KCsF zu}5Q!SM9vS8sb6ivcMqxg*0_T%m}Yz$kE9N;JL_6(5~rtIyn$HDH++(WhJM*sq{kK;=lR!EAt7EDOorfaqYQPN&jI}Om;-+N^#CqObjg=<}4xMcMWRug4=G<=oxDC&phVLnYA34 zmkAT;+n0DJX)JR025MSMhuP_4Cx_K1jfsv(?_kcg5jfQ9!?2BAFlO7Kty{>e@ZY?V z!CCjeBOTfyCF8NxJ+Jp;)v>VEY?$K2XG^y0I71Nb{`TMGi6EUsII<@-fs1(9AK8=s za?A;Yt%rAM(?x!tmPsRO)rYt7O4rBvM6_0rxtstS;S&1jEeRJvBKeuwVmq*AsmonP8!Q)l-=z$#}|HewO7WJb_=qT&5 z0+}BDGx|Y>5)j^o2tZhY3}%KlqvR5GqSvQ$)~{dBqzU;dOh&C415~BeJCmj9J_)+g zi#i3dojNHS(|R2Wcp|IpSGaRuz}kbe@s|ofM@>E%-xs--0#jL7Jqd)F17kGnnU}aX z|Fvg#|JzRM0#xXCjI(;*Gu`pNlu7=!qboPv%RWO9cQy7%g(lgvS>w>h7>l$YS4Wm) zZ+ze;UjV~+lqc@GsnYy2cB}7hwMCbz#esW-9ArQ^)?YCW2Fh?x$FFalMaI2~abtI- zLLD#0&?J5u%l}qZuq7qu@~0H{yOIUxDj`i>?m`b3yh`aGgDCJ!xk^txQ+(x(G)}Zo zLvtN|Rl_>&y7M)w9JnJWPrgm|F>#ygR!B z5l2C;ll>;w#yW}T3yar=3Cxl+4g(I)lGga`q*5XZy$9~Wr;O$rc{iLy;Tgm6i4RH7 zI)>r!j?;5+-(>ghtI4-1TkT<2vh6Gq0B=g2Baz6&Ghd=oiS zReo-jy;aq$#=(87?e1M=HBW#VhF!Aj$p~Tie#Td<9BQz%WdXWe+<(M zdq;fQ(AEvLR_|R*4sWOK*bq*YDd$oX`Dm)iM`Q7C91l9J3x}=m^-+wg9oCO9CnY%L z=ukLy&ggJ3RiR?|b7w!;`dOahJ+FpS3yHp!jGVG&uJsQ?xm~fIeL+JKq?!uvXSVZE zdD6Mu9pt009o(~ZLrLls%9W%h^}NcZD35YnGlD=s_N9SBe)O$;z7sI{StMvAo&+y0#*BZBJx>R-IY%2GaB?rb`@zP zMv=A<)vtL1BPoc5c>TKxtK|(y{@hb-9k0_pzWVRa2SS)icSQ~schu3L8$74zFSHt! z_>DcVn`w#sKUoneV9XdfFeS==klUWi|IQ<805cgq?=xw4Jh_!Ti34Hx%MXZ5Yz+HS zw_Ahr>kRpAzu1--O)3P?CQ_197J<5O?MV686)H@i;DT+COo{*@>xm zC2x9l;%yTiHD`z-nE`Z>L=by3c2ZVr0R=vzG(E9#cDku&=B?@Hb5lrn{2_oq_!OD; zYvcbPzyr&*z2uj}G}Jtokk0*E@A*&64$H2fHh>G#J)fTBBm!S)3j8d9J%iON1xt1{ zb=X@nuYJ<<@rHC#&d2T#|5@f6R^JW0ipks9(p;{t@ph~C5ZzFHbiCZ`M-&u8*KhdD>Rrj#EV0%5Z7$3!?bIdQWV3vv zc?wx~X^-i$!n*4@U6S+^zJskvdr(}2UwXs+1(3)NnVS8TX>2a2+{}>P{k8Y*ciH>R zyA^D+wdh6PbcMJyzO_7Oo*UCvZ!4FLKeu}0{Ho34t-B&z;x648X{#gryNb>!X=p1+ z1sh3DP2%W$W4+Z|sX~d`NK-8;69srPD>!wRf5>c?u@h$u6Cbk`6wY@1yQ%Mv*=umJ z!gRphe#rEsy+qcM$XB{0@vkK=(OFkI^Un6o>W`ltn$-|L zE0iW2c9x9y>^k=cz$hn)35)YoaSsyn3oeM+-%Mo%au?PKyR_YDFA;MVBV%9xEY7y~ z8=9-rx&B#G8=9x4|JXn4%!cMO(=YeW3O6)|(@6KPsUh274LcLYjxFk*;WfAsv+_FD zzK+LQilF!SAGJC<#$YMjJX1&Cut!iT>^rOU4DpzrRg26yjXDI6Nh%QA2)`tLFZ&pF z6GaCH1K|uNpZXSvP*lJt*AV{_ugg)HQ8z6o#A8(41BPq!+0E?@IShbA#FHe!w3T`( zcRYSQ%Mtle_=X0ubm}vhC9yru@{oI-SFU{B95#(l5e>I)O+K3En*aRCv&JPiJyg7j z>`I^5&Wx}nx@%l1ePy}Fe9Ou7VC>q0aEeJE)4axENsG!IBONjO7{%3Lcee@SNGOMw zd)E4Hx9;DXCEBr18PRWB6=}SA)r7{n)bdrQHJ+5aG2?bNR#@NrfR2DcS~>!E6O<>v zudzOLX~v!2SZ00iC0=E5PVotR|AXIEq0G?S#)6NB38vZjYmYO@{u{504neWe*<~TC z_xt+%e*UyM->l}HF?es0zU!z?du+aOJ!8(xe?xD5xtmpry$Ao`4Xsd0JDpOO9FKY2 z+t1<1-GjviH5NA3^*uAsPo0CDZsu3gZ9<{2e>7cCY_yoxy$vmwdxK#M@BV?6RnLTt zj(lO8r>TF>{kRC93a}1D4|X(Zq>8>1WKQ`rM&i0AVO@ zlhpgZMpoTLjv*)sDo9c8&&xtFZbuu%Ik`bv$xj*OHbFJfkTCjsmfWPITs#1l^N8zl_FY=Fa85 z)R(0!XxNBRv{#{22}@9ty#KGLJ-$u6d*eEcVV3)M;F}m(rPK|=1m=De%ab|&iK^^Q zR!Zdk(lPQrjddflZpKLrBn3&#Y+GGK^B4`@NM?s)KRI#^tv1Viq%a$X2;3WWz!(7t z6l&(JWQ#)tzRv1n7PdjWJ(8Ce`&G}!`^9+wvSqDs=^=*WD2?zla62PS%ZT~Gvcd_~ ztn&r2*S{KATfc0XNkD%tFnxhitTJz)V-74Q6$rYoV7v}49?RTp8`F{$3|!#?*1e_8aa6ZGQ%9#cupwae4dA)bN+3Mv#+nv<868W| z8`=;}qsGP%p|KQZ?V6p2f*$?*;O0GEGhn>TH?Xa1ax$Efy8`K-WYqHcJ-g* zbWwPz`!uAH6aWoozS?Y4yVZ9VV^OnVI>*~7YC1Bf+WLp#;a5u$?3UH_H=j&)jqy9y zH=m4@JX-^*J91KN_q@9OQEEY%2739s@OsALK3|xttsKVK_C3He%|?U0rDy*jHbHuz zm@QSYn0**{`u80#67IM=`G(n9w%9Ws#kPcs(&pTb+`%DW~-(57o(~#G0SK;Zmc-jX2k|TDis)6aA z!17gN_EaZR5Jbm4tC2OGnVm&R^KC(g$I0lvWRBO=p6uDYT=!EmrFo`X3u3983nbUL zE-Npkqra6Nn9u*#d~WqAaPwGGR^J|O$uf^Q%9gH80D2YTLJ;3^!O>VClqx!4iEwLY zz38knBN9nnY(3mC8Z9d!0GTHkWMAtTbw5JBaO9CEg33Kfmb>M&(}vWr9dn*)RGe1d zd62D&KTrc6xZb?IIjI-Dt=w=D$DE3=b_x@Ns;hozrXy3>uF50TyML*gCs8~yjHg}4 zF1o&KcU7$Crpn2m(|=>pEb+&iGmDElElnm8elngg`x1W=6j zSmcE@ueCYfmg_u38PHMa-a0O+r@93Zl`-|ATL@wKilhdn;xf#@Y0jL0A~~GnQ?3CgQVR|n<#~uh%}%RtUpz9W z7TJpZUhZ{v)U)YCb|(FY`Coc{_qhvn^N`i|C2mHW%h6d7MTpr-fL)d0 zDAE+QdOxM}pq*$g*XmqohSI`x_T2GJpVcR!jqE@(Yq3rvZq8bnkFrjS4`|6{L6iP6 zDcw7^d2|!{U_&~k#s%Hqzim+Gd7^y8&PUFH0C>EoVMDrf#P^UMLG{HlzsIKaVBw4;7ZJNJ1SE$rWhgn*K>g5g<^qDDi4q zof-^0X>DnUIk$QVG4IQ4xt_zM=e5tQzDjzEQ?AvkE<5$C(1>-<2b%f(kTbV7x$Mx= zne#|UsU}__5LeE#PBXNRGr&r=0tu_Fu^r$ z-^l=~Zt&furSX-kyJ)u;$X}DyC8F;aXZSM2n}54CsJjyDrV1b zu-o~bZ3CZeIrA$3Fgsn*X}6!6yEsmo1x#0WcfFBZ_OT9~%Y!{vJcz_*=ImOeuJM^y z*I~Fw(N02`l;?(JT(JulykVsDXPx$(i?X8p3D{brg<~45K7kp@xJn|ktF1n1vs#_C zb--3Ua&to$u&@tv!?G4OAE-*&#Cqj zwk)~LW@a3)PGNQ$;{D&e$?d2VPvlJz_NzNrf4hbGA$Pmxrgfk(r1VHF_8B<#A}pxZ ze8lYQaKs-%k)GZOrPk)YV8thFs7`6rUpr} zQlVCy=Af|q-c6Th^F1$jFF?NRQ|wQ~ z#WO!>lkC@s&gH&Le+=)w-!Sg%^aN=OD!Zn^Z3l?FhitzdW?VvDcb{t}sH`*7b|M)T zb?i6fb`=+RYp2t^xHB?)vDLQ&*e>d+?f0GLB|Kh&eq<;s3#b0(Z?IGiv%iskr?4hn zcWSMY%)y+2$}q_iLY*@MC#0VtT)|;+*NFx;dc&;#K=rJKz?rGq+^>zqe}4NBuGYT= zFM8(l8meI}FE(9GZOb`)9Yqegj~4iC+y^AMbOI4;YF+jgGkQ;u=k3E!36{zse4j+! z8kr{^i`mZ^^Sss-aeV1|Lll1A}p6qQDk0HW{4MY$1d|bBb8wG-a z6mCgmdSpUCC24Ig&$aN!diXj&zA-tg)0yqJHlK3$KAdcDw;8`H`9QA5DYtgyMoqD+ z{mykI#@)?&(#C>iAGr~B<#!I zK-T0Fr6(1h;@W5o8c4?(6h-KwPcM}izEakw;K_flO8kTztg3=8h zAat)JN;d<784J1_KVnc^j1BBnR1+FlAC63UGqA#-R-8O|Ap>!n?*&P(Z$5(!y^jj* z13mi#snc-C@*jYasDK*iSyP_(rQXYt&F=itTw`koJ??n6&}l;J?of}((tg!0trc~! zA0ZhSg*qHW*PAPs7ey>Lj=wVt#7v7bsf~cL&NWrD`YUH(*mm>imXg$D)IRVTQ+!6t zlN#sDsYGeq@MLQC!9BSq{GpnsD2WwW!D5o~Po3Z^ziT(wWoux(8$JvJN_jyGBqI@Mj^>BIguUHQg zZ@tNn?`YId798TJ!~3Kot)49{=Q(etlq4{vy;Hs<vh>pIKcAmD(;bCmgi112T9N6zD?|zd~TxD;Srxv zWLn8BXmf!>DOs+mk~L{N^WCa}0?0K))g9+wIWs05rA+o0CL#FJv*eZ^n-hH z$7fNP(v2bqG;>yHZJD)sR`u2{{Y=G!<&G)-l@m3Ihy; zCH;bsx`39ym0cKMD+FK;1DQ`Ic2CA)^4mHk1&i@d^?d*R5I z>;6TG5SLV0otsB`4Kx^u&Y1R+e9bPf5FZ%!F^?FSzt>FCbS=T!A2y+gVVSr5b6Rs`PA{W1lQ`Vl0tSwb;FN4HLV8(DXm6EZF##IV$CaNGFgG0e z#G6hja?Fg1;?rEh=UgZuG91zF^!a8{(C>_jJv-o*6N^zKCIf;~eSEpul-9%WD!Eyx z2gp&}C+0f$M^Dhe7yE~cRtc#)lFs9@I7Xt5tB(Eq{Qdgg1ob)Kp1TkFHS_pt)tG8m zTi^c;G%RyNNCtyMFxeA6DErCbyqSJkDLDTqI(Jz7N~QJid{)2MLjHbLr7|_+R1asC z{fak;S;rR#fwO_~D5N`zF>jr^wt;V!0x6f)?=*Ud18${Cs}yuKF&BnB%?D|w{uxfX zI#+|)NL%C$WkIHi0+EBuBMHL~xQib__`W?+<=3b)+p0)he)RmK=zY(Sz8{L(Ms4j} zVLg2B6U+b<**9-Ovnrd!zdjBFh2FQ*XKR$@UWX@(0Rlr}*s~WAgjZ=6yTCDhaxp}P zQ6_&?3IM#~S1#cnH20X#$Q7fB4g&bY;7of@scCWFcAuIkzx}rhQ{t_5YEgm^6!iuA z*yZ$&9F{5k8!qk=`77;s4%#mP)m;gKZz2m*CG+w`?n&W?I`X^sCvMu{Pg@GfoVY25 zq^Zgeg(eQ=?++6~{bho@9z8RNgKiAD5vtahPcVZV*#zduFU+1$F3+Q*l#tJ(!n5Jg z-eIU9Py4C*ot#d$#^&O%M@EEJr<5!zA@}JC;#=!_(q}t!YU0-5oQ8z$GVmDjiuZG( z9%a3M{Yf+o+rtaWxTV-n@Sd_xl4;-SK8~!03x)YVvYgr3bZ>0dwV>Ke3VMh{snr>j zIG^~+R`1Vs(ZOj*q1x2gtZ>~@k%-PZtug3F8v2d70k;RJ6cFB+Kd&jVD;8(C<( z9a?g)-Ck`kozA0nyM12g_UM&pw_GUKHjLg-PyqVJ+IeKmK!}W$4e|D9Nf9Y~db+Og zx58;GQA~-Yj3NZ7dP;gyYw9A2mRu=BR(`*QD_ZZ!2Y;%hoH=3Ko%U7;HsN9G*R3E|$uOko5; z7u>Vxm#lNqljzOkf5Q?(N>^b6z=j#lu3=6ibEmH%j90GAo;y8vkohO})0lfe5x|tg z&II>1VAepZt93fbSG-nsoXp8X;U3^ZeW_+5Yuuln!fM)qu+ua>zk??srzxJ_!R*v% z#*q!g)54($3LC@ruyHnU-{fL&0H)vSx!+1HY?a&Y>iU_bXg@dOBi^x@`< zX!8Md)Z_f_ulYE)4Fedfub17fmY|XE+inyRvhUE0y#8bGKDFU2WNNks>)fAEp(=~p zuWtV8k@{|?K0U_k-hOR!1uxudc!VZfUsfd}319mBL~lNIj!LOVn z>Y;X$+w_2%&@z$dk$%J;UCv{znfnt+bDnZ=t0}(TtT?Cc4$cAIn^C$yMhKR40%6lo zkJ+2c4{M6tdQ-9b{*HS#*B*{`?}v)bc5w_)1xnPta_Sn-&|~z$08Q;?(}6;}R8{F- zON+)zW3QWo#MLY*yH~L5LNimE{|#;$&VV`)d@!_jI{HAIyvdq>5U_g@64KmAG6Lz~ z85uG?Rdm>H9=CJC4gsE4bsqv*T`+fIA z24*Ib$izrQub-Y8N3r-gx+=Cmirc%@n?6o5^Ekv~cj$*CfEXB?(za9el9==R ziHa?#8``{tVlDP?I}L`~3yZ~+v!C5JsES1b5V_ktMa`&ywx3phihI9TK-&<-)?W7l z$m6eFFZk}=E#tsa%ua%cOEbUuF(3QV=k(lJP13#CMs%ErKXzbI&SxfQ)8>=V0lE&N z)ZA19#E96baT>OTG{u3(K;@U>ZsXh-8&4fZgGDf66E`f}dEK0T^djQm= zR&OsCG4L@I+3kAfoU>^W?H4@5HOt(=NL#&M<2CBjCEmnlnJ2BM$ah9bv$e?w%mhm` zoh*%2Lm4?f_tf)@?5l4IUki(ZXhE>`3is1EkSJjqw5_^AE;nBP1?FZ)ns|EMdTa?I11W2uWG9?Vq@T3;ar0Ly|d8j%KTBM!2 z#R|}Yuhcz%EBx0KPr_z`M%lRV=)?O@=yZ|Y9NEAqk*vM z@sCwpoj%tvpo{%!vR1DNf5VrWL|1C)TzKO z?uAlynS-}6Jg_|PK1mf#PU>-QjE`~0+jcb!x-}E0?y3`Nu!7#2=DMF6tMLc#i!GvW zFzN2kc5@W97nV3?^q)+US?ekj`h}WX-7p7I?0PaX&{in(sKCT$^(wqNuY;yl9sll| z<#e|AgvhTP?%Unxy@wu(2D!2}9?i9xXqy#~gxRE2k=icg#A?lULZtm8@r*+bJlteUUyXKu)Z})2jyac??|yTj#~Lt!Fe{=4cO zPaUD`Ixa8!mF@|J-&~EEpn@DU8=PJpDr~<7%0*iMTpeN#3kXt?4jNQ#`szJRt z-k9NV`j2?|N}Q{xs2St4ohkA-qEJtt?nLT$M_$BDdD(kd_aOF6)dx)_$SvR1hbG^O zkvhU}V{R5=ka86mt2snH0h#0DZTK__6I_#t0`iZT)}e@gfoUn|P(34K ziIR~NzKEUiFcaL1jzCdj2Q6YG_9Xn^f?u zlbn%Hj9giZNRo&6AzWFPx!5vT_PMW62oD{jOf$R3;U#YH#+-l-AqPXaM!l z8L9@sb!BJl;8tHS^__VC{PSWxA5U0ylUD_qq}~v|;M;4Go8**G&A;SXA;O10$W^)# zYQ%bYcjUdUDkoVRY5jFAAz_k0Q)_wwWd4_7Sk)C6wZJ5jvpC=vKx#% zQY-z>2r&ePm`7+2V^w1OK^olft)}EZ=jy#-5#E3iP3mcQFnxm4RvSsyrpG&N3pyjo zx)gb{TkUkP4QSm-FN=`xyPn(r#IzZS^Hv<6A8JL%zCJN6 zi}AP-&9ok4G-0+afxF#_@K&5|>zis8W?x6wQ@9a?aT48v~mgOqYqmu=AK{jgo z$ZmxlH5>MKbMYow_s6>g0_)z=xpEU6s}W{PIK3KluNYDGvoaPZmd6|JF_K+w0d+pk5Ljit)fIxj-_K!XAlE+tonG_6ENBUayE@x6}kNUYZC>ob)# z2c56hb8^y=qp&^y>7@gp1I8h1`$uAw!61ZGP9i>ptiZ%C?X( zB4!U+gYUUBzt1t+FqFPn08W<}5us(>Zq!r)-!HW|*Rs$J5X`U1CgO_k2*}gr#Fsl$ z)1KK@b8ODH>tZHq_?S1C7n6~WfPXNZWyUzCm@f8bco8cbD6DL+iO!gWJkY#~RCkP_ zny&F(8!m?+!^;^(Sx8WYo@sSoeP8PWj!|V- zn##ySu12eMGlPp1ewbF@KY-IDoJArr9%E7{_^ z`gX5AS+>tr-lm-u9E}F8)VSR7`7H#vaoTEH&blg?LIRY}ewjL{=On6wrOL||S)&<^ zHZDk=A`}M_FI8&yMGSFaG_qiNdWRXK$9MHdt5YX=Y-s*T>`!acI9r$GN|E;)dtw1p zol*3#b=NmZci$MZo9jBcU@7e8DqSts)u~)8*Tob)nxU)dT%@osbKjO#6EnQJZ^+*2 zb=-zMrQvI*Bf*FQ(7}OOe)CQ8;ESzx?F-uC?JX1M*CeNY++t5s=pn0DPGQ=G5K^HO zY0-y%a{*5h^)Kgl5WfX2N8{6S#KQ>h6q4?~oXijB-bgyLsv*kQ3@12MkP#D;9iO-- z;^kuv?$IQ4_-?;iXXBOQyNHitRv)dRy|>euUgv)LCv>wT6FSdNg|D3UN~eG1_On!W zk>9$vONgBEb)(U5lvsV=vyHPwVtdp$FV(}+39Dc zXTM|ea$ymR8b=*|TS?Mi?{cK@5YIV|e1k;tB`JIU4J!biMEpO zzt0b+hIIY0un1-R>EdeJ^rqUEy_6e{$?d>gg>gb?uFIaqGog$sW}gm*tzO(Ne3>0* z8sd*`M%!#xbwV<^zeI>>me@dA`s{?WxX$dO*yz?0tJibgum*RLD97MbV=rPB*T7H9 zK%&9G5OAK~;_iFOORH%0p)-XCc%&H^xHhVfX;*nuXzQx!NxKnJ^jfbWZA2m(#PFcY zJQeDB4g0%Y343v!)q9w3=T>BPocKi@KL{H1Ity6R+3NIZNA>$LK2?~sAeE7XX-)wg zo9PMh-BoenVi7lQ@qM*-c! z4|?KvBh?sn>+o1W^q}3dp`?@CkKYO>I}`SICT$3%FZRYe6Xd>PT4#*k#kW-$*`HDQ z5KKj2tx?mDrv$#|0tIZ;q}Sp=A&&9gh>yVP*#$;Iuaf~Bd0UG;PJLS1Qs~?gE}&Ew zh0pVBfO%KzZPEM?M8bfCvHEaEq0Aoc3!Nc$m1iVbz!G1NT7BAN1tbH$XU|uaOtbF! zCxI2Bz!~bb&@H=U6PEc*0d#L)uj(vrlg?NkzE!7%*(mwuOU!r~+f~yG5|E@_vBflE zFhGwwSRp)JRl;Wr>@CxtWB~w|*2(03eQnyXHMr9)MMpa}M@M0I7U>e68>F8^n|X-7 zjF~nZA-saDJ$4dDL`_>!{YN&}h?TC8_b`cU+PcgBzodb!RhFLeR8n>9hB7-O5`3nBR?3 zGj!t5C9#F}d|p0}v?ceqM|mQDs}1@c=nWem1MVf-P_>QvP*{e5Dm?y_E9QYa-`QM# z3i2&0<+&cP3w82wr%LFeU#{k`y<#(Xx`PjrP9O{|Z{!G*1sTE4gVA_(2>&f8Cx`R8 zzQ=@w)|~lFJo^5o%Qlpz-_l8d0`>I`$@IR_rp8eE_r>;*!Kx^1wy6EY1KiYNFaKi|uTDmuSn)$d88w?}$xv-oEoU_cp;*lAE1p>8rN4qM z9ufZ~VjjXOT0bgu%&N86E33JhuAY*@hB|BFepiRo6(y-f(I$x9)#_wWxx|JgwAI2&< zdl4k8(ae8{kgvtLI*B|dJq_*eO<_M8fvVK>`cVOj)%RNpNL7nNOby1`PiD9BfVek} z!~$2VA@}($#_V}Z?zb(@?2y6}b;?bGDaS@I0+YjL>_$oF3iHgLZb*@{^PX`wH)-xZ!BBHF1;TlP&&-7*#ferrux(EZ;% z;{UcouD}M#35*_)i96xzekuD4%8DIr<5{gd8RE`$NY-}WeujExOl`(0S2Qh()nsKc z0`j3%D>t=33FIY<`dRFS^|35nXA{6^c2kWcjKSl-g4H}OOu(8 z{F8?=`=VuXRmqh<>Jfj)6DQuWqS~A^9Ooapq=^NzP()T?zfH`Y)Jx7JrCxatz ztH&a<7g+-$Xteau-EkaPujjVsGUgGG>BSJ6clv)cx}-XFoN--3^Hd{%lNRi>vnS|8|USQ28auw+LmP- zkm?zefY#CtvPe;w062se#0t7tDvVan?caGehrH=FTw$1++w23}>Sd^dC|eLV4`S!KJyCvV6E) zd}LucSw?p$;&GuT+%YoU?LP4(Yz;Y>ntkog+k*R=9to+WiFE`%L}U93Z0kt0+9yk~ zm4Cv{dqi(~R#zi}YJe4stwR7QB%75-q*$Liesv`2`1pb&N%->^8B6TCjmI-_N3pgw zAORUHNvh41ak_k$gGbcEfal&SrELw)EM#-3Zt0kRbP^}pCqdpoMOpRjE z5o~1Mq2kd5X}+O*64f~cFldY<5Fh@Q7h)h=?T5k*T#xjccty3GhT<;x-^Zo4gD#Vl zYUe_*R;ORuHNT8?DThY2PEmD)t+e_Ie;Ue9Q(Gj}s@;n&L$(8Xso4jbs@>n99Y)9j zi~u^HD=S_L`Nt#QH&sH0r!Cd50}22+jrQTZQ|G7?Kj2BH{eAOJ%WBTx;a9PsA{Ary zb>1qEiM|xIAo34Lq|=TX`x*e z8sZoJRBtg)_U_}6JzX~^Gduwg@|Qi=eWLdHB5QDYNgS8<1@7}tNj);y9f~3NS0S0# z4DnEtgEDj##L?iB;zjf_IdSG$j-%L%C+(D`@5aV!sLBt;GnsKQSlm z0Smd>dFwQZ7P$;bx~?nkUm6t4~Cfur;*BGX_r)OQ_Yk1wmpb)5`gxoep`Y z&S%Zm7NJM7clVd#%NrfHrGc}XR=EWMw5X}nm4khh$8!7W0YE@ zMVP`qLfMtsx->UZR1JA5Di#p+Ea3^!+xL0Z%I){sY3AEFu`6YEG5Qb=_C(Bd#2VHmQlu3haK~aL>Gp z?&v5#;C`3#vHn1~@#mfvZY@2H(eD4!L2lgMW3(L11sfksUC?-I>O2iYOa0e4Kouj$ zGb~hPfPwdFr!h(2CIAZLK|8JXAG6Y4HvUKYcyG>_OXDobI@0k2?q3*uXB36#A49Hm zGNVmp)JP~cyQwN=8M0YL|A~r-X3Ev|T#YuB`%`tWn^B%fj*@iAzQVRJ6Lp}4z9-!} z3hD_m+XL=d+z1$xe+G=1Z41V%q>ZoWjDqDp4w3{g`i==;bWMEbS!-bk(}J%;ydC%F z3=$t{H}~2YkQq3Vl+VyH#A7Q&3I^)Tm=3sqYY4Ix4eHcA-gQ#fcX`(uko#3tOl&l+ znTDtv(`-5&07_F`g00U+!+>|R3-o~@%h()sQ-vs$%L1w6^oDUAaIq(2Z$8Z@OLI>t zY8sK;7qVXn(DfI*DsDnlx<|*x*`VpNF<6}!4jr{uJW3VR7pf{KMtiD=awV;`Wv0(@APMytHOL$&sD!4PHTyibg*U%F>W$U+7F(5dh6Azse!w%l!M&&H&Xn^~Uv+nw;s$7=GE&4#be|DUnElJHqhhp7(DQ`@x7jV($e61$dbLSPv z%g^A}tL9{`_yCG@B3I!2kPiePF@>-DOVR%B<|qR8^jEU72^xFLwGZd9(OL1R)%P6a zLb5|=2VIEvuer>8lA7Gwu_zpBTlVtOtDHrrFQwrV;gbG^!t|``a_O%{69Y9R@#@qC zvGIpk(4Kv;RWfvJB}xS!4=ueiv!<+_fq$2W(VjODLfowOoIsdhZ|$wl2E&u7v}$wW zWr7X(*4M4xcj+Yx8ZmiR--UcN{!cxxGIM8g$xtfUP={E3?$CvdCt)a81TojgsqsAx z-?RD-p+vz1za|sG)-9)-%xXc>J}%8H$2ul1cW~y3G>keZbUP_xA9H)qV983${x0+sqN9 z19o6~9|+dxRLD>L|PhBK>{y_IHB80f&o zfB&ZHdGyB`dS5At;l+r6ZFMas9%XO7?rUIz4-nfRk=uPJJj~s5(~t}LuB%LiNRlrGzEv&Vqc5g z0yB`ZI6gyE!m=8HkprQ(_sqsK4ZkSXE^5SE4?uQH<-T0Zs%d$EXw$STHeEXU z*$dn)u(A%I{#midmuYQ2xdhGq zCy~_gzlm_0tN2ZWe#(9$55x^<;AIz~CbhYZ0li!Odr4bHGM`+UI!9ktQb+nC9dwkd zFlBP5>K3zOh+$vuxUqK^achpke<$9pF7W0mlyd*q*rQR`*TFc86^?y$J0%_+PZjn{ zNX;%uKIbwH7OXL>94|lqh8(Mw1dA5yB42jjqH4mM)23YrOn2)`+QS@#^i{%Ph=$N+ zjokfo&taT_%)lb)ak0#2x1=UAM%)N8pDiQ46CVZDC;Jr*(~M&0|0V8SprfkJ1^$_2 z0s{n2fT&Rs0|pxuG*Q%yM9DA{I3tNt0YycnhEgonBFq35A%l}>PNqX2w)bjlANST; zTiaV}Z!OXa36BtbB37l+3gYV=PZ5P09t!jSeS4ot!o%MF*ZQyZcP+`8bM||G``h39 zql$jdalyGux09q;vXmwky0>m+qElo45*K;LG?GF6vJKoB;+!wx?$_bv;bl#xCD zCH)JxG5f;}Y-^nDpxTUfR!Q6@QoY>)ohx}Q@D{^j9!uA-^_R>S{mSJxj7$ru_yla} zqod!myVU(Bj@vo{J^}zzKokVg`)2}U!lBJ8;30%*JRpJ*dxVTqd-X<2!mTq7;?PS% zC3o9#j=G8$vtFccVIgtDMN%a$S%O;J;>D90 zGrmn&EUvv#R$PhAKld6oS9aPQnm;?f!K`N$b`s+l`!jDm+ zO^XIv5^h-g@t00dDpvOPIR|otDL;WcBhz_BG&H};ShbQGspZAKrC-<9-U~`$y)kaT zl4P_vg@Rzo8*=I0N69yagBil>$+9$pcgui~^o(L)d+lNx`68ZhLfRhq>Oos5K$R5J zlW>rufz~;$0cU^)( zVO2E{iEo+Dr#wmAGjGtF*=s{~{rQN_VeN(O=#?T3QG|#)<1bnd8pw3i1_4YDIUcw24!asAwt{7oT?1Utw-Gv%MD z@=wqsT?Ea{7LUuIk@}wSWnG(Kp<8*P(V~#1Z;Wp$K8?{J1w(9kQ_$>($ld$80x6a! z9*1WsVvO7@?C`Mda}Vg*``~Ox(ziM`Cq-O0SU zD-S2R^M~@zxkf(dHs+2>DpQ2}n0mYq`!yU^5*3spq$~F*VjfH1G?%7F(qoR^#<7NS zf|q1Aq$$>s6UFB{XgRT0_JmXK!ZZJ!CM5%%eF_*+;x-8V(8-ElnOVBjJn*vpH>~tyO06AVo~|jD-APULk{9{$YZ`yQDT8?qG81pY*$3qf>8=-2AeSoMuO#`MQU zB?NE4wls2S$Znj7+PelU?2tQWZZiuUH|G8_>3@Rw5VZ%LFcqHkbJrqYI?cqfGt?oG zN~?)&*oHY|;v>>2=RJv`cvt+3vGmpG?k5GYrOQTJ%SQ9N1o3iUUO4rRfA0A3xcDXb z9Bdbl>@l^?JC>fx$+#nQwDD|hj~Z6?sG^k~@l{${tYG$euffP@81!<3oTsK~En zK*1Pd&6OFM`#7pi5Xs_9EhU32O_`z(jAqA!Bj#6SKXfZssR963JGgp#{O&G&F51X{;ry4hgmgsc$*L$Jn;(`J+?uicNmG?!?@hlIr!oBj z`VZQb!FHF#b%Wo)bCvz-CjwE|$(WEQd|>B=g-Xa(j0fHOWn_tUqDYssh*+F;pKC>i z%K#XGAUJw%o!+O!8)8j-s9XP}AH$9^Q2^GIIDZ2Yt*w9%>X3Ql^NwCLr|kA{)yBk) zE`-;60xtf_4lz`aw?auZmFN1bb2GVM+e@5BWF)MJaU?;i0)kY>_vH2Ye7huJ<7Yj;1Sm#5#OC%I5^>87G9)u|a z)1R%zB(y>9bR$u~=yhKBr~Kr;$<`Ra$LeRypG?S+*Li7 zTTVi)oCVZvhBKAc-&t{ep^35gm^o%I-Of^Vp}`%ARR~|JjHf1>$VAS!aC=1rYH--e zv&TW%G&ys}Z-}dS4~g4hn7C`@`VFcJF5vc2=OsV@nRwaxj5ZK!*dv=S(X&|6u>)kxW$lvADG0 zt**)xe!{dV4qJm#n^osBCi6vVb7`IbHSCQ4!4MH*o+Eo(x(0CarIT_AVDLD3JsM*b zdVMa!H1{f5*Ahg$#&6rFWD3g&*`&%V1Rx!P1@`|+wbQE!i54c+S3{I!jVLmLmRj`0 z%tazoR=y)xbhaqk;zckgL~6%XeMCqmZ%6_avp$Tqzf%CF z%9pBBugXM6fp6cDAM>QpycqFpnEYT5b)7N1MGZ`)604}4$dB&<)y!EvBuZ8oM6xa8AP7Gj+ zkeBj$aWMw5c0NDm*5+TYx|k_&RE|5>^s?J(o7(Qa*!bg=D2J`+`g-e-ieI!-l)+0O zU=g&~593ZQ{=4YUap`OM8GGUO6AUi1T0m^Ct=R4dj8!7NmpRrDoAD!)wDSIrxdf+6 z+{nAY=&ht~f9L>PYc?FTi}3$sf5t>Jv--Y>Z+F*5nNE7yq`6Q)V;axs+USoD7FZqA ze?>p4kI5|UasyJsSeLcmSr01oZ=Y-RQ8tIhx=ZbI9#?E{d8(~IP0sC0t@6xN0&B5@ zg#HM<6)zQ#m}!o$O7x3bn`smfo~;+uZSHk@2lR%ZvVV z$4@ObGEeXvOAm?-xCYOSshBC?f37i)1x;30wjkP4gM-M@A|(a4%%BVhFCkoBOffQ_ ziU|lrU7b~3B%=iv$n+%no~iEqx#^lAvH%Da`G8bgCUok8;uV9_ON-}nC@+w&Q4eh$+`(-ECrEY(r!T*?EPa0N4RSwX<5 zGvYX67lm|t0Jnds8j1@lMljnQ+seNG4kE!HWKF}Nzr>k3qX^XxF^y|%uc!CT%ma6D znku)13d@9=g+EEHUtp#Kofra|*2I4hm$0a1;`5rwj3^>=;04W zvMIjAwHnb8sY@EcS@Y>6D-Vk&i(LYm14SaoFFFV>BgFd$gl1^dKyUwAq)Ozq3EyI@ zZ42KzJ}(jIh)l_Ajnv5*N$vWyg(uNCjAAav+8L*&r$k$(#k$&)@xkLyHJTr#C#m54 zNV=57W7e_-P1_pp5zNyOiTRACl=>ng1A#G);K6V@tO&w|^G5|}_6qqYek*Zt)ldbw za;-7}(q=G=@U@J(*N_kGQ$sEa-y}nx#gNNn&le=8)S>T>EO1Xb`fOsb$^|zd`Br|M z9EJgA(G{u9ivxd)ij1|9*!Vt)>r|1cB9??n(tV3SjizKF>6F1%9lTa`typGn&6aut zxPks}p?f8um+qN-WP$hvSP{f?AeC;}SOV}7eKtK+o#+I<|2rbl=v_WuV6$rY^=)k7 z&x!XY{2!)HIM+#d$l7!{u#C5&1Q@co3y;E0sdPKmk@KkXalKH1BGjXGoV#hR)^b#!735O(Yn1A#{1GA&<;8DL^tx76tvA*Rs-_;4 zll?RAla2{+8~q~;6jJH*-?9U#jpfILSd(az|HPB=4JEHZp3Ol>ppECM9$#|LFv3BO z6}NQQSo>vWCz~6DL`amTKRn9#(4{}0MFHj90t3lVXQc@>#mETIMHmosQ zp`z2{5so;adB>&6MC>fF08B+N3J~J&fph=}F4gCXC)p~asR(+4R`gr)c@tBE5ui%Y z4Ee|OnXK|j;O>iMX_%{*e@G_kRIC(uUY1L|y9^sbU0=G=3H`aJuBj0-86o#RRW|J{F8HF4}^rzv?#H%9ChpNT?-;ql!mZ+gL*zdbMavalRu? zGvov{GGZXDqH)^hgE9X`K~BWlo?ezU8=AMpi0eC}0kD-MR1PUi#Ne|25v+IWdVtbI#2?p z2F&bc`|+PBVl6Uyf>Or@iSerHO#MA>4gr zs(V^G!am*e&iMQlTha)%R8Z*G+-IWxWoC5zvfzq9)FOku$U4MU{=X?e_S@~g5VHZm1A%nxATEVPXoI$|1iXlwAO z{?NYbLUo1{!LSN~?uwJ{(*8v3HvNRym{!FgYpnUx>2qp0wGrFnDK+8LI|oI{n3&{a zG4ZlCI0XS}!8(plVAn7OzSbYDr~>8TY>-%$SZ=O}zLuaD>@ib2qCgAjWLx ztM`jo>A&yw%kTW0Uuj{QFI>{s%m-Du1!|onoJK}9;0{0ecRIX8=H?kWZr=ZMXXgLi z*myH_h1BvThI;kaF+&u|3Vr+^Jrz;X{oct6!OyF~IEg1~;R}}- z$bi-d)vT@JGV*~6fB--M&U7BqQqBW}|GRi@1Sjv@8{K7}GdlX(>OzU!LJ&9(@^>vPiz_3sfG#9nr7X1CV(Bx9j>16b|?s`Ux z4Ux4st2RLu^BUIJM7M1HQePX;bpHXM#;;v7G5Yh{-{4ZWIqgCgGey?AV*fcB-;J>d-odnhuzXA@_j+Clz@ zwy-Oz8>+L;lG5(ksrL?As^V%{0!!7_FH(nYY#d~DhSi6M!UqnbXR*}!Yf2fBkQ%JS ziLwsX=^tT>2%xGx(Uqla|H46JwF>_Zy(HwtNA5omq`qkSU#e}|LKF+{i0f84NI~r<{Fn#K^WdGvVx&f58ua!aR8Xk!1!JXul z-W5s7?X9?;A&4vx^aKf*`jP4gvjbOC{b|ZB}S+OEH{=&rFYEr^9ena&O zehz4sO0RI8{-Z+179yuDG*=-$Q}y$*0zMZ&TZSg)PIKF60* zJBn5)oD~63j$s?W&Xfr(`jhCMl@E0P)q(-lB@8YWbfTR1NmDjP@V>X@82+)X%aPD` zNoeusleHGUe+vAiCy^7_FFS;*Z*w}R6@zm~ZJuHe=STT?} z_anH^P0mG6%U)}PKF`1kkbhyC62B}p8zv)=99PD@vg&17lZI`k|5?I}zfD3^_sfX} zH8<#+8!#UBQ|6<&h{QzCq|JT z94dP`bdR1VG#owksuGDFQLm8VaZurJN0Z9i+zR0WZ2)mOn*7q&~w9%pD!j8)&_g7@+9qEfqVv%=w5)2{|nYH z64VWOu3@s2BC9~K*k4T-p^a))t%1nbW%}XN(E_7sJ;%t}kUGfYA9*~cq{mQjhsh}y zLR02Ty+EQo^=Tk+R!^g1EhLRXkTGQCPblT$BPka@NjV++n4<2NR6W7eOjVl5$!En) zQea5EldbBOzjo6t`hGK-c2g!tk(kynFS2qSNoB~ve74}*ri~Oq{@za+CW$6fh}CyY z!~{rTqpd^3ijPnNm}qFvJ-5_Wof;o5ZrCrN@*s6++zGe#N$nyWQDUch=VF-wQc`#I z0TINWEkaN&Q4%3&iHKy+W~m=v zIUvN#c|f$f3D(V~8nyJ8dQ~!>7JfmILQ-MqO=1AP-+qp}iAiGrJ+x!u>3$;aDg)Tu z(D=kn$uCA&;_Q4D&DE>9|;I`cC_+FUr+Ii~_18mre2| z%&y49y!b>3F}l;f>jlU%9e7HlK;jTNb$rO zNcKLk)PpXTP`;eVCMo@T%a5MbYTTK9ba zNguKU4^ptSaZn{ja$O+tVa_1=K;gQ~BV~{AkxW^o{6YOZ-`2hxE|4Y&Ky(Q%D#XsnMygnkc z*T@;5eWTM#35c2$Tg~5^mSr#))mB0i@)GGasu(OB{GD3$O(1D1fux4X=NcKiEUB5YAyZ6DT59CI zS>Qt|YmVKC=)-Kc3wbrivfGaoRkZc9EBA;U2FXmD%6{tgJr5*$O9H*!hB5=!wncLw zY_3a3W-~N0X>N3GW|Kv`AbYVObp%Uh=vkS>>BL_`;{UWSiCfWb=>~nw=$GYtRr`l| z))q+(fiT1LzouwQndj6+h1pG{z?oyDP`2wEM8SZHkop2`(Bv?(oX=raUPj!=Yr@v`edd=nOq5fF>6Tcv z^KxZ%&R+Z1xOBK{HrLK$rdfA4M0T#g=4kUAd1+fxgn;%1i7}GLH}zRT!b&ZhMPzR? zot9ywr_Ed^@n*OiG>xQY#Zru+^K!;zPofEhn7a{5V&ric>Ky51poim#8AMV6!D{hx zS)Ha){M6X;;&(N!C4OvwPD}y|+?PPU6VzeuWHcvelvZxs&g+v$=97r=N)GTT7av9; zz4V6ov!xCdtT->Mq=>0QbBu3AKzd3}k~-86ajMhL`0bYYAAdo#)Xos@6MQW0V@zt? zr>+&;Dw8i`W>9TF-aPjkU>|wc2ir{X;9*fGC;&@UaihFQ6`h=sB70D!sUNDY(ez6` z3Zd8h3=iS81uVGpB#+>Z=3ntw-vRr1?KV-4s|>yFCu%F4hj}a7aO~u(1<~Suk>Rwh z5%5J5pPf3-+NAE#_?cWFXhU_tFCJge9KUm;YGE2mkBEo!A^Fl5!3Y9?h%dnT-yMu_ zTclK1NIaFQvm4LIC4)>Yo9RnD>2dbX5kYiRkec{zDx_~myvp&yTrnBB6q#vemd#re zR@qGp?K12EH(D$pfIHHht{5TIQAs)#2y8C;otrbl-CkZR5|HDJkSOZgJo$e8>) zQ=u8wWSqQ)cWEzG@LHD{6RaDLmtG_My2469{9f$u7b(Vctl$L-qTjE#4zjN@-U|D6 zoWeM52CFd6m%vZnai2_evNqCW3AfDboFGLmRtY|Zc`Ob$+o zXg^3r)kcT?OCAYtk$~+4!DSYi%4ij%e5}4%E1#+$7t@ur@0`y+isfjQpXn(x#pYn1 zvR`KK08RR$Xz1v|!J&_9j0ZN?G+{ATYxDn6B*LlnXxHjgBp!7KN-qOt{E2(q`9e)$cDg5;`5H2wos#SOL)K#pIBi4mYU`cJ@y8EHw1f`$F?OXk z^qH~h8R|?)-*be}2YB4cQMn?UE%Ggy^2=oQY-~bX^3Ci9=UbE#MxX4%?H}|>wI_e+ zJIL1|soiI{5Wgt3AushoP0O^S?(N{M-4ohBEKIGZjE^!QxBu!RBt2Ls|5)qW?LHLG zZ~ve$wcAL2P}(x>2=wJaDy4Q!pi-(WNjohOQc<=)h$E1)~kJ|s-qknr^}E9;4RwOI%fFaI9R)BrXLu$6a= zCplNVO^$QT%o+xR_KxY_5DmS%V(64~^?MR8o^=5c&C2(?wrs2Vi6DZV7Dsr74n|<9 zt;lEcdB{w)#L>`^6@#aw#~qanMn^H1W7*vgI{MPmWHKHDAe-&?<+a?;^5YGD%-t+q z!CxI~v^7mhso@EFv1O++*5jl)JmSU(|KEFnqF1~k=Ba@VnxmZ zTVb>VT3S2Nmj|sVs#yEL#d7^mE(xa^OMG{Kxu=Y;r_3u}8B&N&ShxORYCWp5lT9xx zdRl&Z9RWJOh8F?!STFmRm&v2n(AwWFMoj)BBMWy-CSx@QGjuc)fSYa~d`$xPtE`@j zs}(5%INzj6075?Ov}gBjXtFePIW&fRnbiBsSozXds9E}7+n?*!KDYPxf$|-*9JnsB zWM(Hru+Oit4-k2v8>oo0svryvMKET4U0*(2Oh(gkY`mQfz?nDF=f~$pdWJ-4#f*HT z@y%s?M>(gsWS)2BdZDfEbiS<-c+uXKv3I~0pUpH;NdHS|`6td8Q zyYsT^_0&XDn>v_H)Tl1Lrn=yqyLDKV63{dNDZ=)JKN zCE7tjgBVU`Ze@y@aRxT8<=EOc5agryqdNaScPE=>d}}h0CV@W^#D8cU>2oj1!NEPZ zqe@;YV)U3*?{k{zgiqI(5<_4lcK*gUL5bZbf#J&)@*3^iV}B_?ndr%RgQsPl@9EZ@@h=+LST1wkY=&P`=}er zg+uP-{TH=_MBDW~jr= z6tfd|^yzOJ6F*2cmiposCL2fi)U}xqVnO3O4m=WOT-(x904VG?c72zX!57MBfeLshEekuDNyWcp;gLYs>=z_ZS~Ru5%z$s$~uuuD!)!;Z^D zz%r$zre#c?J4kU+c7)Al7=OdV8w~(NPG#4zN`$X)BpBP;<*c0jQ%bi+Ml_Mh>}Y4= zw%kPAnK((vM8xl-OcJ4*n=$DIC212<%3$H$oyxVgYdJzpe%ET4_URgxz1>qZ|m zLy@9|uvpT{6krAAv$d$CBjBHvdj}nreIfTD+ENBQMoLmg`X+wo>}Hi|ZdT${_qUmZ zqQb-vi2nY^c};&id&wUOr2o8UpU_%pU|SNz6hH+el0oz(uB{BhxHn0ST&KDIdJm-6 zyTnP#ad=Lc1n)Rwa@I0okuqZ8x(j<+qsYq}H-hhm5OP%|Mi?Nf=Fc z@KrVD5*tUO#DCcxUS1RXQ7>jLQ)rlp=BE$6VkjxoiX(k3mOh z<#IO;Jt6WQ0VkolRu#{jC&VnYF%?C@*g_ex?-9cf-Jjg%_wlw{Re5fmRcdBxMy_2Z zZ^3L}*v*lmIrSRGzcV=3X^uV6V%Up% ziNSOr2f44`HK900nwD7ULqLEU<*mpwa8y+*Bp$0QkG+OH5)`@@DW^i8-6Q~aplrfP z?m+2TE`e?pC}voA9n0&Jj7Gva#xIjA^_b?2=0RW=JhP-)4{*r3hHqA0A%8s`4oT1B zZJA0~yfT=L+HaZ9&hFX3cOwgt3FhWiDl$7_5iCIuyGL)d91G$bz2DQB1}tFWM_)#s zd8bVMTdaIf74?LKN)^hxi^Ac_%JCdGFES9n_MWdCC&@pAH7qmI}XKQk>c(op%1TOWo@>4pb`u}J)q*8FT|b)O}ez$>`Tr|)S2h5HF<+Y4tqKV%ns zKHbo3R0{cQ|{dp~g_asxVG&r}0CU|+_7 zYBObh-5;GWqGko&Gml-;-_VL6r~RLg3wkgU)Un1)AATNYdfCHFGg95K=E-wDAJ&e; zOpHb>GoZ_R9TAX3Wm{|C&xIi+Kj_AKMze@k#o~|Ksh8g0x%g(0kkD9nQMK>!Go6g8 z(EE$gd^hh0H5zR!lhLZ>TExx0=UwmG5Fi|G$+dbVNZk%J-SicTJ``pVIkP__m9Y#1A>(ncBl)B0!`>=9`K1 zA(&!dmeIUY{pu^f5{V@Uqec50WKe;8J2OtUfS=apmG4Wdq;LEi>bI%w@AV&*1r!L>9C(%n?&M~p`v3q`EknQZYR;C*j`4EV*Qeid%%8)+FQV+^?0 z>Y|;yRITF*w)n#>m$?^K-x)unv9S8KcuDo##2HT%x~Enzj2BhM6N8@U=k|Z1zuV`D zpqux^K$?)13ukWe*IMn)9FS1BBM$)Vy{!pcAO|vW6ok*#5k>OE^K|qch=yb88m+?lY*&3c`GKsd13CN<)U4IK6&x6DzaMUi`mfn#zGA7&WdH* zQcj+G3R0Oua*#~*PwWZ|>Jxvb&f4nk0MN;j>s`%aHt#$vJ1I6p!l{I>#rg6SeHpJU zWAN&FcNVGzn2ft|%sLWHmpy2AU3;?X&e9=ZQ&5&<*yVNuU5)LJPVWlV`+j&)99t-dJm`Lz96~ZYyCCxD#*to_agPo$Tt-kPtBk^AyTL^ZmS~# z$eyp{3okJ4zgpT8+3;SargpC6cTH=;U(@y>NX9P+{)|wh&`6EqgN(*#679bl!nk`C z)HwZl!Q~|MqLk=n8)DWwy(q?bH*p;|GofQJa6_fm@g6?HIAD52@;mJJARL~jxA7ftt#j-MP@nCCWuA!DQjs`Gc& zv{ZD|fWF1m$P9)vHGZovd1!>twhrjtEBaV_U^uUc=AD`zB_V)`k_a;l4cgs0lz zI+8}GcI4bEw)Qpd7tM(d^ShAxs6|H1&DM`h9XzVFNC?BTDDDyhjz}JytrSl#FXhJT z;3+-BN8qdW-Q@qC5lmi=8O0Ow{VIQrVPW4(Sy|%e~l7}uQQ32nT9BQwfM}N|n z4EAnbpR~%DM3BH84qBUR^3Zalc`5~C4X=d{ycW$TXoS~w)LIx&a`Eb$jOGojp;{PE zQD!#)`^p2XMFI%aHGG7rHerK=0tkdhXie;)Sbd2`&!0$dQ zb?}IxA{S;igl=Y4o}id)g0n}K|743WCebIFS?YIJB@f+fG$$!ubM4WcEJZf^DQ&m1tI5M>FP=b^oOF++(WXtWL~uR&Hvk}~fDJ7^$z zp9N3X`iR1#lEl{rqb;-jDhprrorwv(`95{<0EK1=AiH>M-B zqZ(uleeQ2EHCwCuE$$yq9vy2mKPNkwJX+B>8dE8Gg=rNV%I+oaImK6z7?N$1Sol80 zG#K|0(LkMHn(Go0moJ&ATa$7z4W^hv1o2T!%@t9aL%7T?^URxkz z9F4r-cI_zl3HOnxoBm?^pz1`m5H}mdoc>;Z<-J=0}>iVfzaSEzy>&9^^~x zt87Eatir|&>5&iRYRXOb%V}O1Swa8ZvMN=-tzi49M6S?2ev797gSTiXTQPm|o67eqs|%MxgQmclrpbc;3oMbUy@ z56aFa(XS&s0wn%|J18A4$Jk|2pD>w-2`C*dCu-_MJG(&~2p)=B`{j-<%5DmG)Q(^n zUn^I!Cu0qt;apa!n$-RPVn*({KrlSF5#s=KbzJHP)FAdh9?M);A;zD6BI6fHRsx9? zA>YKeN68PEK!15w>%Jztsn(jy@>G|tbQgZB4}ITRE=ia6LCr5E9h)~D&0||{_9D>R z`oYOSwb$i*A5~x+t#TvzlWB>S#n*uzVXk>*=UKN#m19&_!eQ39!Vnaxey{V<_fn?ua$8PdOqm2Or$$ zYgG|_HSDxaui?Zm()p5>{00@y1&I#=!g6p%PYVhBhD}H>pJN zW=UW}O02(zTl<>a__55GK?Kxm+Q=v%1%rth)fa%znHl6@-^64|RnzDnS)cj3AFiM< zQHv!71UVdo!onVQZ`wv48Bng=pa0<2K&u`PDns)^_lkOJOj+d~=Qesk%XAho+X~?x zBw=-duSu;gU4DOkP19?Moq#ph@C%aHyGYEr3PD17`bweCa&VLMT^bG51{U58S)wIc zHjdF6K;%Is@TY?it3aoL~lVJ$uc3NDDc_MisHnCFdzv*xxXK0 zc#<-`2{$DgoEntXDz&x?v7i@aYk2g|r0Fk>T1$fylXVyQ{mxFgJD@yX+<>^h+J~8~3jRP6ZgwF`7lP0epZL-Y}X= z89@w~3{4FzJPTjA_V*!IHY0;g?Fv-;Q?L2#E6a{#{p;PohuNgk_$jsdQ-iAe`iAu} z?%R6YzT0UzZ)}1L^iNIB_lDFJ@CV|d$~JXEtk>ta_3s&L^@L2cYHQ{jTpEX|Q$0b( zop=MW#=YNWtwwja1xl%FAt!W%w$-iKxU#p=HIMF5lz*}%NN;`=0zv;7Ap#5e1uW{1%tGzeadx`F^cimkr)%*HiaemGX4O7-UP__$LCev1v zU!FA>uxh@wa-{90|CE<(HXAK!0KSX2@sC9!EtaCWZQe+OYMcKg4@exiY)AiHBb7-( zy}k2-ZohgCw)3A-Cbh8&$Iu>(cg)T53W%;Md3j$8%k0ECf)PZ_b41#U`8(uj1;fcJ z`x0Z&nK_k%h{x_1B`x3zvAqB&JcbbeBWQu)!U%!1=os~98Dcj{p z2u;cV6RgWm1PR!Bt{G~NpOcLFnR7Vko=%7)063PZzS6#bgvhJ!>FalDILfsI3iD*| zwc}R=$Z17O09P4%ERwX|$6WCE_f<4Pa4p-+3hY%Uor~1IhYt$53phy0`MeM^l$?@A z^Gv}SXnue#`v?ON9zflaG*iSGhu7kty3Du=q4Jsf=%W(0$=?Y#Q)(>~nBdZ!jmr0Z zyQ5Sla7TgPxk{D*(5O2$A251j@is(bOgK_ykOpj*HqB6b<(Eu(Dw4pGkn zFtYK*3JP;_#neW<@rc)?OB0*|k^{8|EeD2bmD*``rVUO_M7 z_b7kd^TN*v0ZoxI(Qec-BJpV^ZX<$`K3IJeNm#zEzyw&WRvZjevoHPPNcKihw%+KT zn}KAoLIKyMFO;R_3V3Fdbfa^In8Y@;K82!;rJp&-K>%kL#PVxP>(Xh_V_-&8M|3jl zWulC)Re=JmkHXpSf5azi6ZRqrM3aJTt;2|`dxaDUrSEliVWv~|*y=&X{o7Ba^%K>^)ejp@`zW>Kl~TD`9*YY_G*^#x*BWJ z80Rj&!_9btj)#@)VEQV~@U<9jZL{i9p9xcvI@s6vv1B)>X?iiSi!42gsI+(eKcU*nQt#NT^us zPB|12BzcM@E{*p$(>F5tYfD@@A_EO1e)nvpph80FiTtJW#bm6)C0IZJXP#^RQ&vm= zj%AjBQr@t~t9JoOEh#?n5OSrI^*k6zu!sSQ21 z;zGH_ND=w08~{SHB4OQKP?tZoG{%j!dgo_yi*l$YmdL2eT~kEk<+S9(g-UAVPD@4? zg=wcbC@a9gkh~AC}+x$<0JtT_k1FoX# zPW(PhnOLpQ3$kWd+wmS^Yu5Onk-36Tpq5f8T+vl~WvTWB;uRxd5WJqMf@ttCPetyZ z!&8;CF_ku|q>V0yAPq9)Vp;}a3hJC^@5(5!Y}(9se8#^-^8v|nw%k;O>~{;~``yFM zwC7q(tr9!FOnIPt8{x)UYpWkC(pefF3nu8Jcj3v$6ef-ZR^#igsgMf>)U8X(t@G?n zL@QR~#@AI+vIVmn#6G%09B!*5c?CKGe^Kkieko+*6Z=W@`GE+~Sm8NB2{5C&S_+HslU}v8F z-rtD3Dc84*V55|+y^_6M@mL_vEtcEa0Rib(l{$WVzkl~J+gq!)H@^IYttCL$S1D?G z_~Y}pcJB>BP~a!bNQ`w~9LHl-YFBCK+4$M=$Sz+~0ZS*UhRc9WNQ%9-*$2Am!?_&r z3JBD<^scTiaz0^Ci3$Wn%4w*n%u5XATT}sz8|(!Hvrx3nbDmVJn8@hjmq-=%iBp)a zsR6QJY}AXIQVDxRW<(QX)RotuwJ2ptYi7&IDktnk^UFo7u|hsZ^ZA^{dVHE6V`1wh z(c%T(9>2;9ADYvL%l^Vce0FWR9x=&tE8q6fpw4`#fG%+gqMVhVCMkpgybQzn5>3R? z0H7qelN!LWefACwL()<28qGVTjth(f!PwBZdyT~_B~lx6LL2T~?|*wk;WmXO=>pVP zJDO z8*Gy3oV4OzDltNa@WZ`GG70xH@YR-;Q%7wdkM-&LB6pZqON1cax4(GbDtB;1jHb=< zrPn-))jZ-Oo&WL5$w30E_sn$PU)4;{jHSahl{@OV&E;kgbfETVv1(8b*@jvu7T~2m zeH9uV0w$*?&aO4q-FT_m>}cq(%P$IFe!~EXn9qTVr9&X?3i|Jfd7a1)d^MH*@I6ax1xp|38dl17= zbpquYk?g*%N4qR4uYAWmFlru_=C)Cb9O;a(`Eq^1J5_;~zm@_s>r9bMG;?e^OI zn~Us6qNIsIo9Ig;{-`^O*_|H-w4axOc4kwD z&Tj0hNR3x^^;;h%eVTlb#_IX&{!WT+{k)>`!F{E2ha8{pLcnl(qW;80IYk`BiGV
@(@Si&7xw=!#@Hnx&b!>U)tSuxi5S!jBA%`7^2R>Z{O0_o%sn(DbpmM7g|Rw;La|?8)J2DQ*Y07yC8iiV z7VlLu^}tIkyQsV_yDZ|ZBY_nusq0r8svA?QCN_J&Ixul1iFbQ<+jecKu2{cXgqGSp zUWPY%P+ z7;UdSJ+IBl)81#Y?2x+f--$hIp=P zeHv$?r9@6nM3cc!&5vPK>$1Um0go4l7j;>EtNF)S%Ei!SyoH6&ZG8U4yV6w((coWt zz%dfHdFS^@43N5Zhnm{vouzb$1{e|WPWC@I_X1wTeS`+<<6!^89tQ*XaNT>KpXmSG z=5_ItvAPldT^}@S>E-K%LS5dA{IoLuf@W`xtuT#^GLzd3QA*&_X$Id8YWc6FycSZZ_MzLtIV>wjtn!{0~uJ@AGmMQ|F6_+okm!y@cVvZIf$P z){7o?Oe1{Q%vG97UB~0PtfpK8irhwiHkgs<*>n*7rcYD$JXCA1-AHRcAcvcHB)R56 zBucVFj++vbh_e<@zlTRiBBcY2?k;9A$!JXc7fS;oWFlD0zL8)RBQ&gwo7W`?Z?>b+Pkkh)Y>G_EKF-E;b#gSgmD@u4|Lo zk$7ycqinZzPU5bm%&^t%U5j3cOpRp;yXvx6HN=(&HMW5_%`NVcV&kUE?BBC*WhkkU z8>^2E=CO{#?f(PQf~>=MNj{$7& z>j<)7tL^koup_&UvA7CXgM9F=7tMkpQVf!c6@qGG}I42~E_lf@G&gh-5l1 zDY8F#9#qX~l<->64XvJzgsW&KIcIJF^?m)kw@d4S|Ip)jdr-4XBgahOsu>rVvOTem zcn_D1xCODF`j@OYXHaIx7n#k$<>w6Yj-w>)p=y#bx0&~Mbp_0|UDlc3VTi(*wt4%? z7(8&Xr8MMO*iLEqtl|#7ojW7?kcPkM0P<|OP`{CrZP7(c%(i)%Yjc(N3)+Nf;k*rx znAYXpqb^u!n4FdTB#Z+$fXlkf*#p_rEjDFl7ye}7w(I%G6>*5)b|t^CauYA3`86+3 z7S(v?t853SED**Vr(@c-2Ef@VMDMWV(VT{li$JX_8gKOe;wxk4i-f88Dp%YtPd^oh z&t(GCTFC;Lk-!!Q3Gdy}g}y9$&!kp^dZ8K0ZLjOF_-)os60{ZxkF^VAY$g;MmE&bd z6biiUwH2@9Ev<=oF&N(H-A=ROmA7C6;@!-L_6-fJWN5Xa2AoOg!!lx~Nlh~<9xVH& z216l0r+eb`QQ*`be5mU(%Mg%xIR^|&4+5wwy;CTfnG~$=xDuj$U6*@EmD2}9JUp*V zY=&!m5RHQeYCm=fM%i0a*XN3eAb|d%6QMOR@55$n#t9SgItn_3|HUQAj>#4LM&@3u zzudw0q=t0Y_75qlTH??MCWOVrg`f9473VjifK3G9*}nsIY;0_8jDOyGZoF90{+mnq zzm)$g1UJFr_%N_ocq~Xd2F0)F5F5(9LrDQ3Fu9gLgCQ~x!qoeW7wQ*oURby=gJ*EN)Z)dz zl1cBCA@9$}_;tHM7Po^u^X>nS+DE(E+q`>iZL!ymGd!J&3^e3rY=#ck0@HYe%i88O zyDTwSt6Z&~N?VJ)=HekvrUbwfqiDu$(AJDcym788UNv`>UT~Edva2+rPo*!``<1?k z^dW4!`Jhcu&_Q(pBZ9~3@?N(YP9$_FG|Ode^PaX@@DC0+RPQtsTxO^DV`ajF*f(JI zFz+re=aT57E(`KYXj)7XMys%k{9o=}#U}&=@gY27<~Hvl<#s}R_XGp9rZ#FxQnP%( z|Je_bEK7^bw%wqS6+RYmaEkB}`)Va@@d#TGA_&&4{__EafYB!NoC^KpXxp1s=q-Ns z()>TVj|khm$J<l98<2j>D+H?L$COAC6cUTxlX^2H=aw0<>Fj5F{$7m$O^f5+x0@Ow!7+R~ZmL-qJya%Yip41QPg`4MwclZ% zEax;`EH9*8l#B6cY-xPb8cVW zZCir7XmwdyTrD5N?i7~^x4+VyPs9oDQdgjp935PcaW^YXeVht>g90#<^^&wsv%jCG ztd<()uggq>Dtbrs_F@k$I5zQP>Iim?TaO9mg$Fd&TLYTfKZv2ic+}-eyJ#w?LO*kb zEa$h0LZlVeRZ_EQxB1NK7q$h}Zf7Y6lM_b(6<~@0&1=%VZ`b}>`N4th>>wOy<_-{Jk{4u-# zC?;a|ih{7fN&CU3q^ z>*R*KVdSzNf}BNu=aBxeX2_(VTP|&C<5dZ@uxTK$?4E zClT(~?hUvPr5qz(7V^GD1);uuag37YcigAiMy2jKTg`RM$249|b}SB>+1EqGk0;r2 z-biez6AzfNZbVI|2B#UzXc*?eaV8t=j`a?=Fj@@*DHQ9nfHJoUgqCL+L+?-@X@D`` zLqPduh|xl=cAKB@%loP*nFl)GC6YLY(Wf;C!fS_MKeaD ztGsWMNup#GQ9tvf%jonjaJ958wHGY$yH}ZRk$s|5Yl~mE(mUR@v#QX}_5V_Ilq9u*?hGdNd( zKKbj~-@oBt4(Ws449&TIr#c&%Vz}+4!(6lm_J_BQ-}JayOL9Pun@ywZag~MAMl)GG z78YuwInxb*MfUSwb&MayzdC^DxndS#Fo0Ed0QG$a5aYKN$nJK>mHnqH-{l?W^56wm zf8C$VQkS>Q8)Wl(;cG**m`jxl?4CT$754#RT7}VXaMc4H(f;pb%&UJ%8FO->hTj1- z$XsWps>aXu*AT9{K0g22zw|-oIx|W&7VNJfxVb)_FVxuIhoEG334vm^hS)?9#Gk*) zi$gq)ym8%Ju`SzmwGaAe_)c6BZrb=O4Ss&1;1^r~`73CCjx$!Db-MkXuOP}8pP}|P zQE6N^Hvu8v`weJWg)N&$$d;&@%In_v_M@Q_K5?BkqC=`;jfC=~c#~o-OGLw*_g) z^dlOr_vuK)#!4QM;|0kJMaPaDZ4EeSzIIh>>;%+2-Ub!H!;gNQGbJAp8F9UD zUFo>#8($W_O?-6Syp7J4us(N9aY*iIzfBL2^Ifi_iaW#9$(g;JQvE5ZK4tO3)%!5} z>0dyHr*4L4z58zb1Tkt)M-ahbS$yG>ItA_0?GS%NBCB5_o-s=owt6F9R|F}vkgVe5KbjRYAQzr@Rg)_qoIBBHYaiekias4R%Y)A!VnvO`Ib16LkiPI) zF#_kPSgyFte{YnRk=M)6EnY0!@kXcD{ZX)YGZn`E;Nj9@2yQ+KnWd!oLofT+p)VoV z4n0I(0bpQ$z+A4JUVwE93a63eZ69Ih52arHBZoxhOj{I+?+`ad>}IRJlG1p)nf;bl zcB3WNIw9vX(~YLHl(z1mEs(?fF<`-98Sn4#+xxETL=1u5%B8eHqoF?Y>aQdLeX1?% zMA*+?>|4$b`mZ}|xlZqR*Jkh8y541M^M<(wEJy#88W2;sr$p2AIqp0k@!ajDRz|3` z$^T6oob*ejffSE+P& zg|Uj0T?f6c#|agv;LM?Fp;CRl*ADX8L7_R(~f^%izjJMSZh_#_W@$}@L9SX11Xh`n1}3J33C;)mufq-Z3lCJflJYb{DP5s=~ zDY$B^^;5B@rh|f$#}j_)QkRNml!2PN{M0LL2MZ(lAImVe!8?I1B<~(q>N>wvj8Z<* z$5z4B8mY8n^0Zi!~B=W|V`eDVREpe5phpda~35@KG%ibE{08 zxS6zM$H<`h$FHG9d_Dl)h$@ue(#UF8gKg^QpM9TcvqxeO3o}Aa$whjOM_KUHdyit(@6Z zY3`GWfVB@z4Wrd$_MfKWKR7N~;H4Fbs-@-W!+{-##io#Xb*}6O8)gx8B?`jLa#5@l zE@QX3q(=_@@+~r3c|+10J5+nwUQnUA_>J8;R`0>yUj>mstz{{cZZAdS+#OZVqHX3E zzXsavPv5!N>c)%+4!y_J0L2oO!sw6%n4G^-&LpJeQn^>?bdPrYfuf+g>_uuX# za*RIiDwM;yuIB;?a zpmAOUuZzs`s$51_A{(9Mjpc(;a?BQN?9j?FTqgM2+o7RD$?uzG?on#@;IE{%D|H8{ z=!inAH8>zCTH@1r|6;H%ce^_huIuC`Ynvzo_6v4Pn@>@J`zze+BmBZcl4$+`0oMZM ziL7Cs!@-Jj z(8#wx6Ux|+cg>K(hb~7S>&A{dYjt2=&mcEJsPL-Q%iJWHnO2yYY4v%+t&3?FW>zl+ zfC!d3oY`3}2Jek=TmAVha(msM%Dd*4-&&;(%#a3%4?F*-d8z5z=<;|_&e4a$bPBRk zhLo89fVa{%E5X-1f3!dRZqr4CRu#67zS!AKkUwEzb}K*CPI|~H)=ptU2x{Eg+k=j= zZeQKXyfh82R?VCT1uq*^a16e<&hBKOI0C$lOnl=Si z3^5P{k>uJ?07;0&jk((F8_WbU&{J?Z_H%5cS-np)G*34;UR;#$#ZS}3_ zWyCw2KoJh~&gBh3?@0ZIX$Vrv8}5Jf(?`%YG)5+jEOE%WAO6n3m@KSLoc0JKj%%6 z*^)ZEx|29`*X3?>L~&Om>uQN2UT7LBamVhro>kBBRfpBY0o&Sa&wb9@JYVA(l6SQ} zZ+;8`95c|OKqu6%D|Wt(kgaR@g2ktp<;~{nL_5(v=RU5(CD>o+co1Ztf<+_>q`-M* z2<3?1<=KbvSdj;Tg$~P&)N{wsujW7+A9uIv!mt&7iJz)vT~O9@51DSTvfT%!{TBuN z3%A`&iST3TD*maHRGLUd)aON%7-wrg9m8A0?V>3 z90=!cmuvY+Dh7C))#k`P9gfhD=77usmJXyuzc`0u1z~E<3Zkqz$fqK$izfwBgWV0- zB*JU@V`$PC{(v+|c|R%4g1Vm&IuoaW+?9x}goai#IBC$n9^#$4*ahatmjJ5o(ZB)p z_sA7c+J&V0wrA#@>)_(%lAyU2Sj{a;Y)~Q;s4(f(*ONFw4dyZ>;5Sx?&}Yk=_REx# zVAWsWlL5{lU#Z%XA~9gA%5apy(s0O`jrLlRnz9GkCVxh1C6j~Gv9fk&worX78E&2% z7xVeB%5fp7{NE|zCnRvpqP>Cv7V8_cn$!Z5Oo&i)#R+E%r|7zvK75-h8{?A*4Le#* z$)WuGRU)+3h7cB`Y=B&7-M2Z6510fNknX6BT!Vy-+P0By-N$*R|JPx4rgS0ryw>nojGT;p!O6i7AS6o>$KPhAEX+sbDXHnqTcfUI_R; z1!j{m6?Zmo$AquQqSILm;SA3BTk2yuMI#j|bfij4o z8S(>iYDc}H4KZzh4rQHN{{cxp16B;r)=}~!NE2aa_fK&iT7EBNe?X(X@DX>Xk-T$y z&@0Px%WZptU-l{ltZy2;}p|Wi!8Il{fa3BPlBzLLaCpj z^h#;RSN~YcNQO#J9bM_(;g#g93fV(_Q3I_bDQ+6ga0hIx^JV5?=*zp#LVg;5o%2mK zd9~fT1E&h6W)R%@fY~vEN8C`qcGYIFoU!f#O7$ffLJ;f3>Z0TAp6#{U<-TkdSM4qg z)9y--N<8khy3+k0^VxjDT;_dz(EGU0#o-hs7#bT}GmSNqo$2{c>4%{e&v*bVGtMh5 zUN;A&m5M0KX?Nj{*v(!|qMP9@;>RASnJpq+G^!Bfc}Yc2VUK%q`1f?YZ%%{{y8mD-f;;bTEdWRdap2tN?&K|qSQc4K#NIrnHWAmJ6c{ZK<$xfFmmstSN*F8dEXXYg7@(ybN|p=8NGub9KJ@sZ{3`d%-ku7N97}RowAI54|#= zqp7$O_RQTU2%$FAxbl{Cag!BUH!=Bi6*yt%xQ4n(?E~Y6lFiMy1T``p&*#^ zM<;vp>d?d%yTIM`GP$CzeKWL>>5Syo3fF0Fpw|_jAbvoNYIkO7ejzA{~QR z4t3A9nH`Me_-z%p8zrTK ziQ7lb)g1!NEPH<|AmwuZ3DBn`3s{il^#OLID zI_r$3UPXG~Y7_>ECd&qR6tA^9i5N_4icR?pf8(?{gVG8NZK(vRGy&6~w@r<>FzA!s zq63&qSonDS5yI5$jJmtL_<_L$Yl~uc3}nvbD$eMq_!W7$Sbfu~hQ!twrZRMd+*eN? zE?z1i*XY=?W2I_eep;VlXP9=|%LNZ@DKj6Y0Btwlq!kytC!7 zQXoZao1WdX)D>6BQF+Ks!A;7#0MPS^Ai`N!axj-@YbIAL{bQ!v*e)@bIe$M#6pe5@ zMj|s;wVdD16uf!Iq4zh@6*@lfO=~okSgSsK#mPvjT;B&M&KXs-2<%jJ?^NDq*D=dl#AuwDmow1ar7=Td6dL z039=6o@Ios{=!DFOh9If#eql;wawdg$o$o8$m7F?rEyV4C zZEH6(tU&U5EB&Y`Z*eKMsbSP^2}~E&E&rvVJMAAVV!`c>kp|dH0{Fc$Q0Ja+i`90R z(|M2~aWcVkW@y7)-S0or(anQUjI>0v zx%rA8DVQJAjlamlqFK_(S>(O(?mb0Q(sx&5Pez$Y@r6S{oMW$&ZY2|8^FS1`g98%- zuN{n?Fp1$~kMrD;BjgA3#+LaMI5FMJJ7@BFNq#OdD4^Xl59_f`JJTZLjmjbd0nlX&{57L7yi1%@#TD-|N|K1#oP?XZ_o z?nrYlh8VO<%b_A6=b2WHdO7C{0b0x)o1*K}B?bLOoId=5h({9T#KO=??c?8^btHQ; zXw<0u2yex1)uE9xx0h-?oUvShxb038%g%%~FzcotKfd>@9Q8V=_cT1F%EH3$#Y9rR8-K}bCbKhdOHj=(zdZYb{A~(hC zKal$9sDkIA5~SX*0DQ&$h%FG1q+Y38?@thK)x1kQUrCsIWhyO)Sw!XXnvu_EWdfx=p-dhoId%w8P6+bJlE59RUUKKLDBgov zMRyj@tQ)K5PUB}jI2;&24$>2r1@dP#Pbx`G9$jlLGFa@G?4*&xOx6=)ZlYA-N#1pK zHvK!hhK~VPG0Pj$Um(2A2g!j|+udfK$!u6=>PL8pth&bMg>B=mYqsn|ULdTsYPK7_Xk%$_FWua>P|w!55I*(-WHNmYd$CPtyAJeJM2% zOkPz}U%I4___+{T_$xc@)>KS#Uwkw6gi<#EF?FHx#Nz+801$Yno;xi{dpKlLL5Nk=f%z z({DM_PKN1h=KIFr0@jtDU%{}CV_iv(isa)D#Ey$xYbcuj;%IXU;J250d3`?|%jdZD zl+x6(AT+?}Ad7Nvi_~rCc}V=)zr;#%4YJlEXSMN8vI0Ms^D|eTM`_#r9-q)7o2JAf z3iFfZ+f;I`LDp-iQVOWG5ZNdYb^ffppRlurbLNh&hx>N?9V%*M zujW4x1gOaB98J5Jrr4n@WLBZPYpWHuG3fqT1ow-a^!nct1IPv$ND^5PC#&^rhJf?4 z>`_i>6IJ#WaT&#AvAVR|k;sHVAGUgxox{IYcqQTixOdSg(Q3VDpn!4-w$#$)o%dlZ zHv*s}y@6+_8o$I|Di8%NT}}Ue--Ij3+b+VkMajhKqcEM>AYj5Sfs9>|dbbernHDpSr zf`ve72}_Y({sEur!E|S&4Tyru5z-g#p58~R^bJo1zfyXVy1=dzTVg&CHa#*&0#=fq zrNK5;WVU%(eVg>%dNsbxkP zj=zgVGPsm1;X`7+Gq+JP)sk@Lb0*Nl$-GV8A1CR|xc`;y(@ZR7voNy|2g0DL?qsmF1=aJtLhm$uZ9zWxN7P@#oLKV)__t50E zq(Ie9Ywic!C)+GU!m?m27qxXO?jhuu3=M5Ze-nA=HtP8Yq4a;?IhKB0;EAW#%hkvV5+XU<3-#HO2jN;&YM3}> z>5Rb%spfVuuC0Bwr6Iy|>C4;-7>LMeaI?GQ6N-{pS+)m4;xY&S!k}FeX}`%Uo13mb z2ltv!XhJ; z0JJbV=x&*5CRm)GU|(IZG)S6W-p4Tvgjw-4^JfPULN)mr5Raq^UoDUFUf81V(wC~^ z!H3#_7-rc;&a;S9%$xXDD3!cS7JHXi({%-5c>u7HHMz0{0p^HRuQh zQ|R9f)XhX?i~*y@#Fjs5-iTX2$rl0{77(B@(Lj^FX62ciWY2j58Yh#^uedY;RfWgD zl)y9UQIn?3Cydy}D6!F8^6>Vp&IP7n^UIlq_&m=vU|8mR=_LrO=3AUl&IcJoqrc&; zQFKN+vBJ-97o0sBi6DF#kbpj>4i-f^ZYl$zuHqk@UgEH|InMB7FgT&UUE*GMN52n8 zkBaj#k~Bw4CGNTXzrF2$)AEJ``y(X<`y<1Mb8&mW`Y%#O!7|Ok{sHIb%ML4LF&E-kUqUX561sw5X!UEzJo&YMG6j+-C}4#*_YwXyRy34P z)Km)2)!9^fT4=d7+-@oXEX9f!av{?)^Z<4ej;wAhuxg5jqy6w&wMx!)i~3J|)4wGU zZYCGT#r5ITl2EYzbi$_Ztgq~=w`Z0xfu3NHP>;z{km%vxax@c9ZI-tis_kCq*c13e z@tf;brcAv(tt7jZXv!ZW0O_XE)b6g-Hf;4xrEUkUaqKPDI^dfWvBj!xzQjpL?APZ!`&XClV!dxLZl1>Q)%r1`I`daF;9CDtEX2 zH%Xd}bUew-8=CJCqr<;$?g#9_%`LG5^`(JFJln)2ObAb*vv3ZY3Fs$+4`y*n+unJ) zWoT`gLU5M4n{HDx$&i{-5|O!m)oM&oF)hb~Jv6K#{+;%oJBi`&0Oox36ArFOQ8KYK z7^t_Wl#vJK)LMd!q%*b>z1SBi%+Z0Zok~v$=U*|RNx~l+PUwuJABHZ@Q0W(8c z3)}xX11P3w+>DJ(-e?C*+G<`BHm#efTFl*=n}y2vSivpM#q{R>L=}Yrl+05}Qz$(q zXa!$&&U>6vODSdI`#ZzAQDU}DdqV>o{u_Ky0(%trJIcc-;9TDqIU8--G#q7PoQN1t z0#;HwC_eT-fmp0>(!HTXG@f34kPq^|+r2)dBH71{#Yd?sVUV$Pvw3Na+HssgW(`NL zbW6>$igo#XHOvA7<}S0kQ#!|JR^fQ?We?J!U@SecRFPSuu_3jkD}%;q&v}on?f&Ri zK+1=clfw;lkg9t?LUx(6y$xA-c*_C4211Do^6w|z;8Bzc&4q>~ewU?o9W@=)r>)Xh zUw8lJ2-2tKQfls0khq)H&P6)+ULT5kt^EmLnwCrpske{Tr<+RZ3#XGv1%;)4?Bk+0 zk*_^OvBnxF);YhxU@DS-X{+Y*N&mc(cV3XJp4x{z6r>-EV0QVC;T3R3yV>bNt(|s)KCurm~uft5=pq>ma{@y?k@xPZjf718n zWHIiaX0gHI*f}r9+6WBYImXCn>|}KPbZu#RdMV-BgfklV3IYVCan1|39lkqp=E6wZ z;V&eHwH=Upo-;%D?(40ZH&K{V zhq8$&7D4pBWgR%g$T$|vr%UHsvdHk8;|1OnR>bY=JdlSB$lRJ~fxw{Nm86e&+6<96 zwazr`gi?UYU~{aKQ_nL={$P9!9z+861VS<+}WMET9pcWw=*L_aE zMNzac*!-X>AF0fZrVOm#P?g*cHJr}SpAD2`sf)Eat9RDlS%OEbNn3ClleTnDKYzjQ=WOPZj>Xm zN*(H6Jj6Qi$IN-8-Mzl`%=m#f8f-ih`mAo}dg{%Iak+|`aVY0#dmG>M5|#7!y9hV@ zdk6F11H+!HW!Xl(Ch@}h{cdYeFJsZ>x39`AGaJLb95R|`^o2W|sK5^Xyx>Bt_p%Z%_N|8AspHKZWn_XMVSNAm95Sz$#ZrI)HH+!q& zZxs>yEq#+p%OmY;`QpqY_Nn_Tetmp|VmqN^)O3zhn=$^EVwA8qx)qi;l$+~4i7D|X z_q(PSUvUuO)k12nX5X^)%>IM=#?p`h zglYZmqpVIJYT0@Lw}j@GocR40{&(qr?!KFtWTz}S0k8JMd_~%*gUZ&r+xbc=sTPvm z4cgYXA(*&sWn1F>+O~Iti9wvld8UQFZnojs^p@{bU9T*Obd2vmlCRKKYS*N3<69@U z?JkJ4Z==gPdtYkTr7fw01>~;KR>SOnB}NX-)!yoVige(AX?W&dh-StDA8y^&b0Ho9wi4%*d)sn{s^)zsT6ip5w zTzBfFg1+v81PjedlO`LXUw5Vq6mLDHi&y+7)94OU5Jk_)BHtiC9Qsa<$9l(!f;VX%Nj6R z8BBx@aB?ge0_?hlq3Y4SfgfBVa<2h=rkw{)WB(gv`?zNBmQ#vb*y4M1-|xc^RTqss z@%2Ba^xNQGR8d1xw>THc013f0FHy_#Bw$kKm<1xugD4O~_Vad5V{;!gZnT2^nw>O0 zvZ}b!>rh}avfDnCftF>v5gQH_B#U!8!F>!NwGF*4Y*d8L_8$?lt|ww{alS3%7vs4C zRiSxbel!}%D_@1eU*y+=et1H@Dtbg@3nDpGE0`R~-nyA~%;{%Gm#)A%UsvT18a<*^ zp@&_1pcTparXRIpupqb@`CfE1KsmEyk&geRv{DaZKG5=i@Mq}q0cbg7`Efo;De?4v z-`-3hkn5G^d{no!M(VHrv$_uzA~S4dzrQ`O+bOgP$5%#HRYsnA#oizJa`wZlm%#V; z?+)6(yd+bcZVc5}m{s28gS>D=1k$x3yFTQW)1}y{8FxSE-9gZ>jxP6qsG-kXhFVe_ z(ELvTUeGV72UnndOZzwkN9y`I@H^?sDKml zi%jVyAh-ksABktEo%J6GOe#z*VqEv4d9xcU(7>CF3T0Fd@@+@CX$;xskh~y}i0cAv zVX`9LTu(Ih)-r>_W+cI_2-4&?pUwZXxQG*WpJD2N^~ApaY}5CnlTCYt7(bE~i7SoL z57{}LhAKL53Z_Gk@HB)pon_gr?&sLr!mh{X_$gn@-DRf!b%BIYjj#H&_aV~pdEQs; zbZbnF1J1!k;A47XEs?&fIgPdJXT{TB5n6DnFvA*!wJu_HDCHj|Fq z(`NACG1$ne!FJf3$E6M}U4TQKh#Y<{QU#o6P~3EwgHnLbR9`JHM}_y}!94u8z5?5mSIG}&4O6Y^GU~SPU&AO+MJm#j&Zhfv zKpR7|^4;h%fMIs@(Kx=rvxn7_CZH}ope|kfu+io4SA=WTU{9}ed25P};oJHTn$nk>tuDwv^_hz8DxN|o2 z#F;%_1}N19b~EfQfw_ss&6Mlx;^kr%Fs_RELmO*)?jI^Hz+HeW5A#oItl2mJWSH@+ zhMKL(LH>{X3Gtz2cqs*d%S9LC#Zn(`fIDkLoo=#9znPv$psp z~u9(^#Y)OZjJUwX9B$L0*3_;@MO0sU5DJ&QW^Do2IYh_z9f=F2A z#Aa?ZiY#RhU}dJ*@HSrl+ek6yNU1Xe>6K7aPAx>(~Y}}7kNgB z4Azjor^J(($nPEOiL3&~S`jjA){`0uOX4zWw4`Gvt(=uOd1YCo<2e8>ZWQVGxj?_} zzCi#C8S;SS?+R}hoqL}o&gn+_D>K<$k;Id&D`Md;Cp4}oQMqu$xPrvU&Ur&q?~?Z6 zSa9KI+jfVNGudXDFLB5|D06e$?vi9<=62-n$;+{#}HEgFqrg+T& z{V7@_F(_|sXF3h(LDmyQ8V;;IrC2-hO1^{H#Ty*+!=pl&<7M>s4f16}@R)0@?+4*L zcuxQ=AufEFIS0Q8q~Kij$y#aOD?_s6pJc@M)UG3z&QkeL)7;H8w^=oBFwL$0G`mw< z^V7uOkR@;G5|*U>l{zqn*=8PP%X+ef)HI3LAGeW-O~%Qzfx!hF77~I6o4I3>JXOd6 z1@tZgfD-OEnYcj^@YBPQbyb>&Wxr~~Y$IGd7ce6uOA8GvVr@0`$zkc3W;U1^G4>Wa z##lM5?ylx*Ah{;<*vfJe0@8XsUBict?4pU5eauQ_mo6nAX*RfYLagnD@{JTIb}tjc3rf_sIt>PpY( z_c-e=&>Mr_9K)A*ngQXMRbMzPg9kRtSZDXb1A`l!-U|+AgWc}aOgwd{wH3?sA?F42 z4();8&+xluUuyv)1udct%`e59lVuGcA@_f3_AMPOkpRItoVhOEyjpZv!}2hpW?$rM zf0@7=3@zqPPlfZN%cRPZ3Em(_N0&wx>3D}ix@;JQVNc@_1Hrrmhf{UvJ%o^6z>6i} zDV?Ju2s%r{%kj^?HK^N|ujs~R)Vcm)-#TP9_gcZjem;v>dOHdOWFXkfQ5?rcdp%oeym@*_Jovg1B;qx%MB1;6c^ea_5BCls zOinHqLA8*L8`ASCpgoD9PV#DV+T;EXxH^5;DC+VD_QupfPFR1FCoTq3~{3UU(`@34Y7-ihF zO>Hj5Oq|{_c6{{ySF>H>ebdbwD}6(g-X;e}R*fH&P6Wdla>>r0Wd*y=KbA#gTpb$l zm0d08jUN$N-NpF<{X|}I?x-<*r-9jWRz(z?+#%V&-qyKMg?rZ9xMS5L=qF1=RCM^W zl_|th>v!-c(0cmuBg?g-(a!VSj&q~6pgKJM7hJCAzbf>U*X=~T8Lc0y^uNNVREi^OfY#y|FRx%zNd?R zN3K)92#HbkS`q1xs}%FO2j0-ZPg5J)jyx~|$pyZH@E+%CAdBfhOYpzyj;RBbJx=}A zxszV`YI>(L*7JF7*gK&?A>N?FpGpHUcN9~OQFaVYo`bztvl*5k88C4oK-@CI>K7W2 zYDCHdQG0&wcTvDxJj<)p$q zqS)%%{!9JxFWx0o8F6JERnR#lhvMnd4^_wwc2Kqx4^^HCj@rSUySri_;}~sj_Zphh z$PNmM%z2DXxnrq!XDb!nnSAt79*)R4xBuWv>x2p0#~7-*%#LyXE6A|-jn!5_fsx7y z?STtaJRdC63Qnp-s3LH3Z({iQ0TR7(HV{00XXs*Oe zYl!`sd4k2J@=2Avqh`5Vu3;$bklJ|qPVD~&5Hq6Ax45au%|vY+=P-u{dcV<`iZ$*3 zYKINdekHWtT}XTB?;5bz%;fHxwgB=chOk6S9N+$x%tZ_R%KdbaBY9b8`ZQe)@jOgiT#U^#q}e+eNwZ%H&y?j<77C=N6|0Po2ogn{Eq~UcYr7r{Cb>`9Sb+5!3rCb| z(Q@G8c=Se&_xlYT#!ku-T*>9Cz!iObYa7#7W!`T{&#}Z6$d{R{)XWyG!7Z<9Cy&)U zHrg{Qox6AiIY-lnNrW@KI(v}th4)bL@}_wyTtSkjc+@J&NnWh&#|8-h)>hnAF})heX$(JBGjUv!u&J#T&h7`%Ob38;Ik2X76&~9fY5$q2TVIUhNF6CTC4xp< z($fkoT$A(jvy5TA42$x8No*Ol(G|7xV%M}Ak$wJ2c5iA|IJGqdo<%c*wMH9Rql|-! zmpG%|e%WXpGTI`c$h!3XKLLVtV_-#naNNP<5b01DF{Xtx!^Ry=;zm<~7?COBpQ`QY zWJvx4WI~l3{M2_Yb%z|fRDM*PIP1R^Pbv*V4GDGsAo;-6K=OzDgU|+-$3AI#W(3@o?IiV-+JTNHV0L-%ej#T^;ci{C(zE6;i3=|#0hn-uk6 z?XAMScxQ4P8Kxtvw>yuH@Y(*^vGlZ1RhMau1n%9t26J=~peY2{`cP(;=BWPBT@75( z>?@p=gsibQR&{00(W9TK)r=2CWSkjihbi(5q=jA0ApH(DFiZyPjT8pTCIWW1U(CJW zC0Gh#J)CVpfa>@S{6P}mC2fy$Z0vC)c~^@Hmxn&F*%2r!o&EUw7^dDHrmkDbKY3#~ zW`ZLsS2T(v{`OR{J5Km93)TktZte8}o+Et)F@N_Pd8y%L~EUo_c56?2`JZ?jfOfvYA7^dM-=rN8dcsAgEa2N-6XzfYnzEjohj9n& zID&*@r8Y<1C#enPG{Ey~w1O*(hUm>{$;+`>UaEl`nW;@(mEbaNWQUt{$+6=Hmvd^~ zUan8tADOZFk{LAX){2g(_AY-?^~V!y@7q2-|kW!ml<*JvQ`E4&^``eu_)*)gVa~fm>@#}TRyVd8c_4vl0h8P z4sh4f0A!-(waCNI@YB5eZ+;xFlp5Cyc)!6r_kq{?nI_a)WOeO;vGpa9&V;GL$yvTH zPVTfmhKF;kU{Lx6Gv^#Cx1e%dq9tQ_guFQ3Pam1v5N1;WJ8cf<@9kgr(~^56Q}zv;?`Qr~WLn>Cm*)h4W3C^RzB|qci05oQ$00 zq)j-*#8d8E8e_Y5ym}c#D?NQA6uyVJG~A#XiR8#J1GzTujN*(nZe(&O-nt!=2LPF8 z&!rX*Kj-hb5xDEDe$;GN3!mvOrcl*Yvmx?u8AYwR`>IJ0-d9(JhroO8gQ{?Pq@##W zz(`h=0q(&fEr5KD%^4{EnZX_$3(Aw%siXu1BmmCc>L5dA31-EQN&J-UtpMD! zXL27AI-zf{U<+Q#>1txQ=Z$nKy{@mmhiwuVX0{3B@8(MZ(}Vnzm#d2vpGaJTyNXP7 z(Qz&|kDEvHA%Q`6Bo%PDHSW{KmB*v7w9$}5j?J&;n(5DYIMpvINZxJG2pZeQIGqDr z{P8IN{!5Ni{=`WZn^qGsbgQN@eQ$-N&AV@xHd9||d6r%FzG#KYSv9@5c(hF^Dj>); z2M4*=MhZ(T_M|X4Va{iuflCK6)t;hs0_mH%C$>HLPpdEnYcO(c4>O>rK);^oVes0a z^yN-ssNQ7uT4TNb@mcHFtG^2JRLDGNN+#})zX%1;f7i#>%+`o~HnTp=L!F^4{4i8V z6B3k&>f^JohI2l&uz=Ve);KLtXb);Hj6M#vWJJd|WwGqm7Gn+fbIkAAKRhaLn)l(b#mXgoXMuzwj{HP$HM1i8zw< z#ZC<+3er_VvQ`!zBwDt61*I6pF8<^|m*cs1w{s190a;dLA!aXNBgioJgNwCqsEs>P zr2Q&3iKi-nsPA#*rjj`{0G2MAM5f12EO>ff>fIx$p3`t|)(qVO>g0GEEUdT}NC7fv zD2P?Ho$WQ$LoER@U0P_R7a(^$P~p71BPUFcU=VQ0cP|n#F_0DzJ(k7}6G2W+&OcS; zMny*-Vl2K7)H%%3tPe&4%^2+?(ym}JMkwWiHi%wd*%mR;6?~XArYBnKbS){4;%9o! z_PUouJxEov^8N1MD6V6*>y8q#`FZ-m!<4<UxtDkcW=XJN@2ci z4{X{rj+w&HV1P9v>UJ;^4+dK*`jPD0wt2J`Fy)JrLEH#S(Hu7}S&_ArH`+cSuYKM(}(aI6!%)D6Jbp=Uc%6Te)$X!GF>UerUwrLhD548p%;2L?y z?@Ww$|41vq(0LVA$=lakymtF{^$@ReBI3kp{-*Gm09OM05oGrcisq5gtQhg?kfpCP zN}2DCxyLEE)Yr^D5VV^@a9Uq6s{{R{u(GUHMa!~nL3!8leS2HAQQ_+Brf8(&U#Kkx z7sepXxO?=J+W~M-K}++m^VJ5_3_EdIj<7kq$WQ_m&GU0Z*y`E75_W(})ZIvfsBy#v z&t@g4w|DR&v(7O4uif)URx8oJ%UsKvFLo@$P5(eA9zYjR6ailgfn53E=>j;mosqzi zTi2}r@~;Gl_Kunc^AuivUGlKl2iKeZk=+I+c#N}ybVm4K?ntb9f+JB*(ORF22Qz>1AaD7foZ1s=d(g8 z5QNFw`1%-NPB=*Q)Qb-^iVr~V9;c>n-;6Dv3H&(m<(2z&XjZ?0V{1dsV8k;5i5C9c z77(>vQsNvK>?eL1{^%)n>RtjhUw80R9RG9L_$f z{M1W|$t*ptp93tM#km<}8q(=8`1WQlhP%(5=W!n6gJ=e1#_iuvLC`Do27HF#hK}Lf z((B`W`+2JW0QJ@X$Xx$#x-GoQgErUw@uq$KUwV=-CO2DoMcaFGno~}tGD4PQD-Q-; zOx#)NAAm(V{(Y|5d2PH6B%{W0L1Xzlr+5YySG#|rggI{~F@>P(Su6NfWYs__E>^{pRdF#E$nI1MD~?R`Ed@E9oQ3=NCnyjO|ue@=DMb@Odj=eR;=^#~{$s#zQTX_TTp z&XmufZ4!#kd+l7$H0nOhOF3KnillMhb%wCj-N($Ay!Y+6-nONM5cXe` zG03;DbeOTUf00t|X5Qry6yAXdCI*YU_v?d5HO{9gMmKO^7lIW4CmAl8sE-C)!uu%b8f}{5|gcFt4f% zqvro@V~NZojxLuVHahEog}vjzj=p+AycBj$2*Q6JexQ$8zkM=u%E9w9-MH3q^)?vb z7=h!pT>*2vR`ZZda;>Mt*oPbVRj_sd|GJMt^sMGaR&G)m_aHpBlb(r2!nO3bi&%^> zR0|g>F+2(9PW%s&A~5<0|Ai<-0y%piGJ)PP%)|5e-t1|AGN|ID9=8V|cZ%bjPj?u7 zLG-dnd*&?dtVv~Q9X~XLqi8_7l1mgi(%p`|wIW$)FJu7&nfLfo;eWA8#@;l8FZazb zU*t!L8FG^QeHs%F$OSQ`Fe|7$hl}Q zmN@)hfcS3Hd>#k!09Uf6c@;@gCuE(Tt)S^hiliqtS-3gkyxQY@uPBF_1$=QY(&yYF zy|5k;oJijugZ5<|3G|%1Vd6Sryvc$b5!u5TNq>oLF*m7V$0p5_2P`-zFE@>b*#u(8 zZk*@si(4t={*sz%TPkTISh|uT{Z7Bo1CwKbdeqtXJ)K#9ZuDLq2-<%|B36sPCB&II z4$Pm+f$>LaLz+0&eK88K)WaT#pBS3VTE1Y&_1UfF&CTrpUzB(8JAHF4<#w32m{^^^ z{7wEW-m%yJ@HUoE)hotMmol!l(@gudU0`^4{ex6y!F^Z4fjkwYdy4b!0obmstQ|9!3U363sOk4x(*-ad>5cx)d=b&ZdOEPEhx&rS@ zg@NIqq${~sL4c?8u?ha4bzc5fuB)5=UtLu@chQxneMZ_ZP*J6%u31!pV?0-I%?y4N zWHbz=oVcItRBi;JV8U=&709bGqI z>d^)@e1X$jDWu*(tFFE48?&m;$(y?gvVsS>HHjZ4jL8Wfb+8!_MmRY(1I2|=I4kcm5cs|OQ`XuPjx7IE)LUk7cM+IL zD;Ae2rUEN>J)d|{hR^(%Nc%gi5!M#G5m3QjZ^pMs2?6L z@+4B+M0Ai0aF>+CJ0+1To}+?csmiJ%RU!WPJ%a2k(dRZ=m!)lvvneFAi7;l4%2@st z3+Ec%%c+6BGEbpvsq`%8R^}JCH)s}34K^d)o*-}q8uwyGV2^0DKNWT+neN6zy9v{f znsRxt(VkMm{|Yc&hN3b?r}tQ3BkemeGvt;QXDzwT)`XV~&4umv1tQT@9cjPwG{IiYAu~L~q+>Ph z_~!)zi%;~X;!VIg@@JOhHfmt8DKY38={SuqSPJd#*eO$r*M%u2=~SMGb6*=M5hC0< zj#K)H#8?>ktpmq8>kcl`PHo-?xXPT}7mLgqU#s`5b$PcuzExPGwkdK84p%Zq2>F{L z?eo9~A@Y9cv7`xuEyli5!pcwtEtfOqp?5{JqK%c5;o^0DxMA+y<>6}E;w*hiiQU8j z4erPdb{RCVEXMD0+nRktXG6szyXg*nLpE>X0tqg^c2kp#Mm#6|k08n` zti(-=teS0!QpH4~RB8k6FAwg@WYCWD26h<+1Xj+!7a2KGk_Lh?Ve+f_TdPj>V@^C> zTFz=}0Q1zb93A;>S9IPHE*rz`simEoU|?Q+w;yFRVK!7X(NI&aGm407p>|i z#J|4^Ff&MX49AnO*gSqJWFpGF!ji&y+@tR^!8;1)mzi)L&KDO!WL$v>p^a!7mxmL@ z*hl3k=x*nAYDox-8E@o8=yvfY9%L)It8(84V;k1DKxRN3`q6}{_HC6)tyddlcYyAkul6 zy0Qnj7xLF*fZ`T(!xVd*U;akm8&0j(^VFjm zb5$Qfj7Jfr!HQU~aBl+6ibvO~Q|NF@K;|v?XZmfVi2vxk{b9aE9==+#5+OUOI9fkH zR@jUAz;L_YCQQV(Nc#-6Xv#-A8u;z@{hFK8FjlrIaN9fw$in&M`up$&{dO!{^tt?| z^)~Bkz%|mo6&N6w;--U9u!NmexmCArx5Us-8tez6_I+&KMs^}Q$O^9@*bvz;qCK^v z0`{WvDlomLYsK!v`THc z#FbEpY*S_C3ho@1bWUOVFWFnI>`MewIF{I62=#{=hw*tg>vj+)!k4Qve=(J!#5FHR z$()30)e6mA;>(vgX?G6_4Pxv5H+4y9W;wQkQGvvHaMSmR#D!fQ^;PuO_~Gcj@b|GC zV0{~f!b4NzZqjdcYHM5W>AuzbMz~p|qoe)LKzH8}(NdDLcJF z_-MwB@XP`Q{5~^-MQVSF4vYx9GjWcds0t19Wq%(U@4Nw97|-DIg3{I3@aCNmA@PN< zR_9mC|7k{=#a5!;&08WTH*|W>($F-TEcPZz%?Toz7DYPtlo-Da6<~0nz90jX zF@Omq%>IVvU;jd%fdE&DtklM8r(A$Y9W6}$&HW)R6nSW0Fx~AsdDm;E3b$S&>DrjVGTe?gKaMX}&bj!?*IArzL_{-R6jKN! zhy=3N`N6S6T4&C9hN{QAtGWyp^NGb-LosK>(OiiPj|9foiJ=f%3#<}&6)no-%5339 z&eAJgY_BsF6NT4yfGZ~!NsPvk(I9%lqU zXd3p0m+@ych0U(8v2ob1_QZw+$M!CHsven)otambAUv8jnW#I+1+Jff|-T1{Cg z*Z;r_Z7lL178|@FV+K#2G;A9D`B1p0gz@3emp+Lw2u?%;FYBxqrn z1QHc(R1=qVb@kO+uzP*o#=6#c@LXnPZc?VMwi2G9ufgWfNW1B;{qZDHH zIQl#1faHc0L{=eI>~)6tnZ<1z&o>&}H)b;R2e59}EuSazy7Oi80)px+;#b>|0g;Z?Lzub@ zuz5NS%ewwGus=_YM0=YJX0slgFW+Ll5%LTCGx23hT&%%a}Zv* zTaJqIjcZ6>#lh7)IOUVnt=Z5zg0zil2d98;j+NszFDG39^DVy0#?U(#wTPPLo(dD$ z<9vZ;-Ju$(eIS;dZmd>`VYyBl^mXrGM$!C`MjKB*uGVAe)w-M#D_pJH1Gth331jxx z%!KUG8%W<0#S;{>=2tW>iFm;8nEE?>J}qLJ<{T_pmVG7LD>U?G_!ghUhL_SGW1h?( zF;_#;yqo@TQ^g~O=kP0M)5ZM>(a(53IZqKXl22HQ=$0vY7A@s^5)K;E#BMJ9+=|q5 zvh%oDQ|J09gONEUU29qCs3I%R-ggLjNw>R@QqiH)U;x*726Dv4ZJR4B`%n2LMJ08f z>_rrVQfQ#&-iRdkl{`4Vx4;r*&S`|f>Wyz|IU6Jp1x|j3xuc(Eo$q1zQ-4=Emwdth zR-OB{jBoK~gDw8*cFreA-fBVHvO}+BYb9nlE$Zw5^h^)8>ESAR)tJUFBmc^tofM_8;*Z)ujjQtB5xaA$_teL24pa;k&IT* z4U7UGB<|r581It4#J#dM=&PY0(<{wN>A*jJo`;q0K-KhEaGE;<*n0Oo#|luP!nyk- z2`wH9X#PZOSX99-2)ixt3-(pDdo7^$hVuhj@_s$0Hgm`C>k+RY2cvr({(_Mn?hc?D zbh<(;EG+2>WBzdy5RNFQt_qgwuFRb~z=;4e=h0x4XHUcJj(YXT2gbbS`9X|89zJaz zuPfcRIg7w%fg88S8-}v2k-at#3n>!1PRkonl7c(ZR&~0PWC`;c(}QbXYaJT5 zq3YQUys6F*_>zq&Hy{X~F7ifW*_&!50+#_Vz|3oau@SY9x;Ry z@Hm}@Ud?+p3fOQpq~DmxK`!W)k&Fc2ZAD!3A=xL-i zd!x~KVS@oqow(4(=2-SOJ>dx@qoJqm`S)txy~HCwd!o}koG}8WO8fF7{o?n0D zf!jE9=+zh>FQkn;!dAUhzhdFtLgIOzO1Y!v6%Lf_&^Dna!R<49~p2GI4l>dXxq zcH5$nfyBA$2EV;f;wt_vN*1jVoydi3c7LEMrt)L_@+g6lVtT)p@eA74$RBNYv$>0Z z!d`|Uoj{RAMorv$i?n-Z^)LRHAFKE$NJ_W@K%6d=X&WeT2vpM>nb1onENA~}h_f64 z(;S~a^8&-opaBp*u;2T%d9SyRO{D|v5+cW8PjH`Pe%h{iHiKc8?i( zp`Y=+W!datY4(7-rvC>Bob*>2FNj`&%V~UWufB2E-?exALjJCF7 z(!DEVk@jbWa(>Kqt`%pz5(4{cFL|n6FD9K=8u*2 zOQoS(CMfpe>u_xNO@g@ko+HNdQQm6-0yRCv-^5#fIlryoYi%_rC5t#be;}mDEE~82 zU-gpR7|L?l3Lt6B?$bX+X-jc;CH*8+aJz}fue1s!CXBso+Lf7N^P9s&T@5$HNR|ap z|MMIilXaO3mmL{=4nlhI`gKG_a2j@t9Og?U&*L+UCvk?{Q;c!O`OzH`UVID9_|4#< z?)2(tH|xAV!P`d2#_uUT>&Jqodo6rY?DX74?E(?sJ&tqWXx8glsm8O8GYnPX4a@Gsl zdbQq0+IPz-M2gXBhJq(fE+b9s)A^hvuKne`T~s$W52FTGmv>+0+RVS> zxQg~9f4y`-ZG8Us}*YM!nGUjl0MXHCN*$%a^vNky& z+p&XR?OhM>>ks@wg7)%w6x7+bS8|iKkUXpO&!>PJgWY=#lo#XlX_)vBa}1@kCyWl0 z=a@q%h3wG}v<$6*UHe59}TieRGL*~vu;1hCYX#tdw*zwsmuEA^gi5~p(h>)uYY z&T3QUC9h0cWfFh(dag^S9^nylBx!F_yNZ{G$}<HeTFR`WVigq-ZN8|n&U;mn8J$Bo&qWV`EY zdKOpc6e+b0U@$Z^2Ci3tr0i z0SJZAsu|at;ADS)W)B~d57u{1BM}l;zt}h9JIB0E74FS#kW8)xsI3DX>vR`eX^kqJ z<~`;luU0ZSn}=y6KNCwYrG4^HG&X;L&=^L_#Ibl!?S5V8sH-a+A5Ohma)Vv!DB(~w zqVdwwn7y#1ZCrU6H|pj$I3kF~R+JJl`?pR1#-`_279bQYZEAQtD7JKe~ZCRTg3 zDJ=y9XD44BYlzgLp-jS|%QqBD7H24n8NS!u_!Xhbl?7I$ZrjS>@jw;am?iv(xBV8g z{Y(wxC+=5sXM*7pW5ExvX{O$(?kuKhbCJsQ=p?gQJbY_rO3F$Jjj#5qd0Q=RH zqS-5bX|6OaWG3i{7J`y*KG$YASBiM#fecspD8?n+l?6mhO3x3QjM^*9WiG&@(ttK& z5!&huhPkA2BOO7`my z#RnNzTM`3t{xS5dez5ogUy6(QVTa0v_Th%kMe`aupION$8ah|*;*Uq!AZFvj$s6O` z3_)mwa5^t@ilImNf7a>pA2387aGvGCN{=CN<2EtB{w_7n?#$ur8um@V{SE&}Ypn2^ zYo!wMdTDvi-OJ#we?Ez~wOnw1LS-`o_0o8}|GiGF=~9Y0BPzB!*F;%%=c3$OHb-8zQ*SzS`i=V=K%Pi21v~3YN zvj#yeFsTGGV-Nu+kI9V8c1Thcm-^*nY>`eq!7Eb-XD6$+)HluM(cF4-byYD(##@Of z`B$Y@e3nby-W6z9w@&}#`#1DGbrhfV)qHMSa+eZtzIYeE-RJqIzUm$EoSJ(`()wl9 zCmUfS7fZX}B@yr9N^FYR#9fvR5+r^m5U_h7vc}-pCSeKkksRoZB9&q0I)%}tK(N_WiiN+r%#dNabePAjw0FV5j*olTN~4{u19UYEZz<{g!h&XbF7Mq-jr&t+VfGaw>6JQXa!Ij!Pke@B^L{GSJnfECiCe za~$%GMmpq`NM;k9gg)X|L;B*nbTe0_c7Q;URq0Iz3eQRaiA^V&qR}vm!644VF`^liwsy-m~ z>5=JHb`sT>hD~))HF3IveV8XjQh3XU`?pf0C~=vWAoI2UZJt2x?QGdaEZsDIXO43J6gR&2?< z|8JsrXaz2IBA`3Q<%!~iWGh9}G zEJ-lNtr)3odt%e#B*~lVrM6AIk5DpIZi5KHv#ov_h9ys11T&{?fbRHtIc=?cKaq}~ z7#g){#`@14Izh)+z3qr{b0i1)VhMu1hk6Q)!KDom+)gA8BOhT%L=J3!m2E3A1cNDE z8dd>yk@hob zLkK+5#C;G~(9QP}{*rcz0|ZwmGZ-YM00$(py>*e*Yr0sG37v`SgYsGGez(x64{1G> zb2rj{F6Bj2?GNi~_O_mEIH;CzvK@LKBA0nLb!2w3CEmP6_qalv?8UGnjS+mPtKlIb z_W+~~pCuckI8!S>;VmXRGQ^@ciaj{rDL~l#8NaaD6_dCrocT>vA0cl5j*)rb#trt{ zb%Y58SW%NEj}1Srd~Haz3;%f(PjhpDh8B(B?M#K?Wo|ce1j8k5Y#ljQJU1 zS~yaRo4hBu$^RkH7b4dI+i`PdpP#q(^$PDOr@{!+tVh+(Od)?nuxiC!ikuWp`lbJy z(jMWwqtSB!NL-!`%9<8=S~dxut-^&TZi1-JH1CaKibRakIf@bF0;$hd?#+B? z&O!RUZToEV(#(eq=?g>@J)$8dp|cBncY{3}b^BSJ{!?X&0%j#G-sh={G>O0e`bgH$ zFb}~J7Xks(80JOr9Pk&U2;Rr+VOB7Nw;&mxzEBRQ(<N4aZ8lV%RJ+d)v?tIybMRyY140J ziy?_fKfSElFnC5^VWl>eIVaPkCLsHI*vpY?G&G3`NINgHCBWbzNJ`I3mW|YNKDDW$ zAGhrfZ!huqzkIeS=IasAbr|yy!#+q{EvlKQLZ%X^p7{{x8e&{NP^PpFzHTMW)L7D9 z6vUj*tV4J?zX}sJyVb3;ciU^1i+)pmi1s_E)B`eEm25@R=$1Hw*4kd`%6yZ`nQu&5 zb|{YlE)ysWfgmLOaX4$zet81q~cQ-=!|7P%vMyXI8d+vqQr8|F>Tp~dB} zqSu-1M@`OSTXfWI2B4muM|u8KRTn}2=1UiG`*+hCBw?i9XUq3v zUnq$U_Q@Irffin>w>hABCozzo>uvFm4-x}JUzT_#T!T<@OaxcU);~$lB8^cQ6U%T} z3n`K5^m_f+}Ajc1S8nugyAg`ldUfT$;MqBp4wj-frqq!78 zU1WHjQDMSkKme;a=>pX=lG$d-}mN!2(H#pH8mliQ{?@~=CLLwN~CtQ6Nq zR50^dni@S8@#p^Y4EMTtiy=VxKQJB?aXgYtxl0UR@?NI8IG!D-meM)Y^+#AxyaQd8f*x$Dph|1NwH2Ox3|VQS@l*fW3J-|{^*6nZ z=`AV`YgtIHHF76e>6uaY)2ft*I~-1I{RZ=rBm|1wpeO@wwcb48QL>4QXqG{z6_Ny5 z`D6ZCSW+K#@N=kj$aXEt)ND;}l zSU}r+k<_9&{x?7uZ^q?H%Z3*`MnQG!U zL3*0^ou57md41Z55N43n`$YNl;|P)`fv+3sG)MpNom~nr*jtK;Sp0Eh5xQuYrYnh^ zaF#NQ`z{_C`G$K4_-^4Y!qTw#l(97M>0`Ug^KN*OMsiE^mYQW3A{TpYYn!3Gng{8t zi`&w&<%a5(8-sX*ARzOH2GaJFJ{>{MOiuC#at$6}phV(oD=i|(GUBPnffWp@q@iYi zgFPo2k2GL_4f6)mi5$F}N^EPiX)rT7_5wJFdwc8!?K}f-^F{kKf-$F<%u`ZRy|%yP zA(z(d6JcLx@9NKd(Ac^fJdj9nLqXv94NN_*CLlEQqpo2={cY11AQ4=@PQTnJFV{ZR z5ER*ac50H+9!Bnbo}=M__6+K*3IdX-d3RhA^4}+)#kq$7qp>kp?7G+u+n0)-84^ z#GH1fCq@0Ie79_qCX}D_3CBwxG2Jz$AH*oL&H4@3a}y)TT`R_zRI5MIX$6LRw||`aVjU^0I>9g(Le{IA?}m>sI=0lHZv7C(uxW9_Dr}ppzFZe z1g6c=)|%|o*}Xt5Yn?}ZYiQ62K@+GsfkXiNMA=d64RMrE01JS(8ylEHk)l_mCsgof zG-ST#C@49%0pcS3{}pK6(0q6KXob~nD4bj7%{>m+N!$eA!KK$Uv&a&RXIUu%=3c35 z`?H*(>kNVAswB6;0sz%OGdIn@dhm3t$@G$%JerNZ$NAI~LW#YMrdFfBAzfD) zP0vd>Audj8+wE~)f7~n4&`KtA#*Y}JH2`3`gqGZEWa>sCVK=Dvv9Pb3|-14 zS+%`3vZ^oG=lp8P(Og0KN_&t>m$W^IC_WeuS(LHu_AQC@yfFyNwZ`b;-2Xg^Az>JS zK10y|RtKOY=kJ%WlAfD6HGO~LcUbh|eUOg+;we?!e z$#1%e%v;BzcikJz3X=(9)h3bAaIyTP7H6d0W0|<%w>03rG_(GK5|Kk}A}K^)sW-*z zcQ3WZ8bcLtl-oT?;mq_gABO;2_Sp)hl0WZnRuZ&!`P7z@K8bDL6f8Sc2X`$fXLh#- zbK^jAewhyN*>?v`shR4=aK&lZQwwcy4GPL@9U@59{$BcFzf=U%^Nm)xcN&zs8x|}G z{g%Js5-}%mPiV(RJg>4BA6vXW#*fAAM%l~lsv?Cdc0Xtg6C%53W;>_22Mvt(%Nh<@ z?PcpM{NQ)|^0L&O=Jue&?My{$bW#eTxr4Dpj4q23Kk!yKf%HY;#(H-~roDEj`v<2D zt?0A-)o2@@C>5Nc$BVybpAn9Be%BYcoWEf-?wc}HHjyfEtQ&bB@&=PiFb0@vGS|?# zuqu)s?0$gTzZy!1{andk65sLW>Bp@n5r%MWG4np%-}ZztChg#44P_8v!P{CtP)-Ih=|bgdcZtNeGg-8?1z3@=)=TC_Kj z-M$+)4i7n72}2XFPM)Rvrh`h za?pAmF6{01RAvfQgl|=H=f(J|zmS`E15tzPGR0xnObPK79nGPcVtR&43GND}JhMC!>3irvg98`6V!Pk~3 zF5K=phQun@#P%&KoUbONB${k^BWgK6ssK-=CrTgOe~m;bUgiE@m>#Zhi0A+P=^c`Hp#B#hHKc z&$FUzHQ}=dMR2$Qk+|NOO!r2cO7Y z4qlVXy!EQZ7hJYA_KmVs75psGGqX5(`iEk%g<4VU_c>m?F;{1&)aJs3KIUQ-M#PIx zHD}(5V##0l&%*vH{+1mTHn~6fDlg-q+W9({h~mMpM`rq%U4^YB_&;*qx$wf{O5Ptw z$u7YCN7|8RLRjdpvN)kGJE6KTymS87BdLnaz1_Y1nP*OYzLZD=1!;J^}jsEAfev@wTKsdN-c=q%6tp3-0?L ziU`dU33xOwAy+2?9>|0Nh2G?PX39h*5qR;nY(tK4sf5ytrMQ{v$}x z0#4bPxr&AqPLaE?b^EhRe_fOTre+Gipj;NGV0x0AqwX>s&ed|AA4WB21YV~`_~}Ga zb@>ex=N)!hYg!1kDc(~tF?n0CY%B?*-*QoFBlTpyU;;-IsJ!XS+}H+p7ZR8ne}?zQ zzjOw0XB`SmK&4iuJt~r}N7ah)UaFaJ)ZrZ1X#GbHD8>&aUS!ig_4gg z7EjMjIk|dmY>e0@Z%$qZ09)JPH8M7r@HXgHXb5w6XPhbW;7v+$4@8~k*MM)67&Q|| zskB$G%mmt7|C;zQ!Hrip#Le-S(!A`Q&c~*nGs~NL7L>&^YX&8}2h?7+PFelHP%5qB-`E!x00#!^>-H+8+2@lk2MIc_%{xFXJ71KdyN zb~SxmWT!P<=1bo%wqixy>wH1NMzns{&7=b%!Z2vC?l~Bh+B=aYiB0b$_4q;y3d~XQ z`vf9hYs%lz`=8T7HnW1Cf=oThl}$ik#5`kX2`%_$-f*XUiKKWN;x>S$>}D(3dlhxH zQh%c*+_(tc!j9^@*+K6Mt?74N8w22!42T|(TDrBxA5MBF`|q=gZZ!??nL3^RT~l_u zE9YhCc=oP4^=Z_ZU*4T2q|XyQ=)I0A0|>#XR9iFQ5V8slRIYIqh0zY-`GCSxQT6X$ zu%8q?yui=Q z^>vY;`$&F;2NNkpMCCTc7eQ|2{pOCG4#Njo+D)@`_ZOhc00-20SuQfQ$b)`G+=VEt z^a?8dj+=Fb&K^PcT86i1GSoMUhNnbLuQ@<%QOwYz86>!jB!+CQW)iZ-^vynS;C5GH z{g2}UdRn>M>!ZnBMUDA*3~tHpEL<5>WvUqbjAXE2MX)yr+}UtSYB+*@R9DMU0ojez zJNzw?3(~FK#&MvW-d2&Qj;n9CR*Wc1!Y~#nkWPLnZWBv|20w84PL8dJWu8Gx;QQ zhj9|da5=nY0FE#fvJp=hQ(I)>w>O{{4($vHwlN;Gp^ret8)?pIyABtLyuM;BqB2kqmjW%j)fxaLz_>TR26h@ zqt}p@Z*yn7$?Qyx6?DDK2Vo=9_BQto5&0}CSg8>eTZq86%{@Ad?IG(`Gd93l-mIB$ z8lj03qiZJ^rI#qS=#08Zr-=Rp*Z`-DcK11JOAbHM@T_hZ#R@%4?&Se9nA(o)R_Z5w zXwIF*mVvat+|r{NQE1W+N)EzP#r;lXDB=eoSN27B!fP6{4RjO(#h$1t6Y#ImA+5G> zxpa!<>1k`44k<$%>mb5zidHanrYRdgEeSN?l{F6I9oR6uX0j|G)}8u#*R6e(gBRiC zSf~02;r_^55g8C2%p7UH%_Ypt>~0*(zK>UGb9P6wQdMnD9nEp*uom#`&d+POt!Rb` z7Whj^LofYrWxS1}UhZ^`gXidT{&0ka_<1coU#pByQD$pwn#t^k^;^$9+x=MjAmYiI z4ILhF6{ia{BzeTTP=OJh4z0XF^mg?%dQK9yQ?_HW*^V$s`o z2;8~DwEKj;FjNxRqONEm*YmUZsDtSTQnRGDgqtpPpv1v4<)RX%ZgPk2 zsqAy4#Q|qb*ZLd>m9TL7Xx&OeEd62H6Ra&hF}c$ll8woBhRT?>?} zfklO4yc6n_Te8oS52;07V9*VB|N0%^8<2e7?fAMU&$>-9?EV6}FNGWaOJqZ+xBqUK zbIoRU*0X#Qx3EL@Lq!lF^vX~k39iH}Ny+cJ;tjT37bliHEFn7HSuDGzEjgWG%ZiS9 zIyp!vgHL>BZG-#p9xvRT#1d==yks0T9NldMA8uk9hSNK4S)ALYF*XleMVu@B0cbRol6_?OOP+<2j%eMY-g6P6_9dxe5etRw~6+ zRpX;}9c+R7xZ>PgE1p{&3%i5>fUSzoRmMJ={)hfh+2LGTc)n@-kfBikh+GGCU&P7BdzTv=+^xbnV@hp7tG+x2&_ zNgPyro9c7s`DNdSS9<>D2KG)a-7bAa71Iq_=bIuCZaBNP#6DjU9%gS8-?r>iR0z*M zx~6+ZcEU-;bwAj)gCs+hLI(4_s&J2k%qTDW#R80v6R<_OJHIW?crNHL$b!gjP$ekV z{A95F4Dt}l0p@ub4_3ZX@xd>HxpmtqWjf9g<3;o zpIU|T1$-G+c#0-kEymhih8|vuem4GuR)2@yY;F~h;s^Fk>WYxNXGsv7Sxr2#RPp_5 zlV3xWRs4cbIitmy*^)aAp|1*V0E?W4w7QYD!EI4Uo^j7e(wO%N^zFO#XfxIx5hxbt<7= zCV9`UNwy#Yx2DdJah!XJLmHMkB~AfM^o=Wnn~zk#Qp3vlv+~sn+^t8(GUM*$<@?v} z6D%i*XmLg3bLnSjc}yhrWaopLf&6KkE`+5RR;z8|q@$|ka&)Gi=X)O(Tzbe-zT&0ILTJXH~M^A5L=l&aq2=?sbVww@_v zWsJMped$!rrmNB0PpKJ`d92v`6JNj`#rynMv|A_!#3`#xx?Dv*LJ$<#8@OdLxD`YqPGd#kTU-%D0R0}OZ^3SBMGq$E zyEtJi0K#fVjZ|Iy+{xMe_9!_XQ^C<*4;w1$^I<_+PMLjn7$1hZ-YUAhZ*5j-)njSNt zw=3vPJsIm422G2|(e1LD%KWj2cw)y{j@c3hN_fuACY&>W01S09V2G8hA2ZQEt*KE= z1huFcVNe=icc8is6^&HTAjd?~2U||M^hkW}mogJvqB^gSf|mPJ#CTmls@XZ{k@<#d z2ZyM3sI_F+yDvZUn`lDrY98J1o@H39#RbL{HOOo}(yBSf_RZl>)Kp8(vg%@NOwJZ( zWTdCHEPF0ju{I@BHMSn1QJ9rNC53b>br=7%xi9>CS8>`UwxX#sOS7j8C1Ho2O*Jh^ zRUB)8t{zzRgAcg**5-fVmr1ITd1Gh1b5~^wQo70g_{kmc0~6u^byKx_7YDc`c%&71 zlAKXmk?K6jv;5lF3bgZta=^^#`lr>XO`cNVEK+|*%DZ!6@r5kU=C=;yjya9x?t0qYm9XW>RMu|@-671a-n&QbUK_UWbv_K>F z0#Sq=)%m?h$tqN%<&WJ%WCQlxGW9Y(FzrMowDkB~W$tjP9RWGL3k4onMC-H=b<<`` zrQq#9OPWqw+*KpRm92KBp^WGbrXI_wY>Thz;={dO^BM%%To@Yd&)1V_i-PUaXna{; zCybRF8@diU_$AFk|9nmmLISXlRf)_u=x!S209osP(ho8qMx~#AV{Io zV{16Hux}e7D6hU+rvEZb6HQE9HVM~mItjIrI_yc5l_hU$?n!l(yV~dc@MU8mJt631 zB?b0sM7N%bMa__Wl;mCJf6?4SJe>wut3enE>Zw?)uZw9onS03o{-I3nOQm{Gs^4Z^5GM^Cr6Z6hPp|rX(3%s=zSP*){OTf|cp4 zn%^ZTsB`IZ+>H&w3b?&Z<@Rb&nP{b`Ap>frHnC*d5#ME~Jy*Rl1RT*$vz+gcPk!?IjShE9fFwsBdOxCVL*T(YaOU7;$Zgd|Vpz~u2kB$CeG-v*T{?A-T`bV@| zgWQJlsgWGTNThGgAHrxPV)pVkB1-pjRLZEcgRVim(M82LfkPO^udT2whVpsKtgg;q z0WvP}vp^1MW0xYzlh>@seA=koUYEm{_2&xPk>DN4VMXU%*<3&3CS=N-7S zHXSF7Q@CbRLjV3}_xyAr&4k_O##H`pT28_bJad6E7qSRzU$ge$c9v1P{H5xF+e zV!qcENfJG5jg4qeoiHOeN5@rk=Wf$^qE>czUhB4AY(O**ziMyJVS0D`^qbrofb()Q z_}4-@q|!9DSSYZ3UppVNS?U5z_P>Tx7W{NoC6~;#5Z+Li9+{g!-i>=NXfLiPTa`Vx zAur0;oLiWbp?7cVUxS%z{ig}x*s93YX^LE(BSoB~n>p;kjw5Z0XT~jxbeuV`O^|Hf zFd9yOsc;0*x1|;pbxX!?qz3$3tNrZuFOa2Y;iZGq`wRpa0Ss#jOH64Ok^pu;PUd0~ zHyO#8oLg8sK3nk{K|&s-bl>-B`j+B~(|d;hCOe@aTLuKQ4j_%!cWZ*4!f5cdA~T)W zA4;+Ytx;v?VtEKwiEiGZTC95%bPK-QRr5BFAvhzkCHL5~-f!W3Z0J4yFWxxrqBD0E zg+D>pJ$w?0+00)=$dh0v{`MF~OFlG+b#3;Hh9x%{5gB@uHJKjG@~KUFl!+nmlc{aE6Qn4U-YhQeW^I}X6c9eA*c7z$5NZBhz5K@gGuCnnCW*ERVZ>>$zS`XYiG3w zFq-LG`arQ2rOA;X5c1W(vwnq<(3*F7hdLU_b^kYqn8MMzal;ChXyi}W^${UxUx&vh_Z{){ZH zV9`gy2Hhw1GSE$L;B8C12d2djRjQrXGbU=a6WJ>okQRcQM=?3^^Yn=!yGALOssSbO zJ|)rSDVVFJFNSLuE|!Sddxi~YlN-^>A?0+AbKKfyqZOf{AFARr6D$Wvs8T9!V7HC3 zsC57s3!9~jvP!oJA4Kj5fF?diTOv}~H9Ccr4>I}HQ?~aO&QInAS`XUB#1P$bWr+HCXsPGaD)KTFe#gaSL10RtdN@xGhD0%}A8GZp0ViBx`{U zSAdkm_K@F<_eH4*rp=1Xst_`0s|jB1?!Mn5+)hKg)MnJ|bL6rR3Q#Vy$zTnI z65&tIeCYBr&1qs!1y>4p9NY(@1Sen}w*;YsCve@A4@jYWUGM+Wor{bXu!I{7FXB$V zo5Kl2=f_QWYL(kko(8B*+UmX0#wTW;KaN^pwld1v3S)bvA9vq)x;Rg*V`{YWg)eDQ zeP54}6wkgfomkrHbM|YTLuQ^=~495VW z7XN-c=`GZtpMZ>%Za%Fj|7m;vPK_25UGdT0ujos91r}VkEftbYFdy~p%6z9$UXJv} zRC~QA9oj{ldY`~DU=Zq5Gk-Z+0Atlbcz?&&H#hInDA>=m2osGLSN9&NqW_|(Hcf&I zF|`X0>nk&CzrBt4$$EjGi?(W8}u?7AAx)BUi#k!pP- z#8JYaSw@lk9V2v-DY~C*;Nu|8z=>bQAHWP+bn7sV77qMu8@sse z05}-deDMA%KCANHqq#BmF%~eX3LuK==3nBU zCAXUFH}u>?Ermmx3=g3w1Ml^+=`b&uB0cN!cdmM62`m-D>rf;S;%z2Tlh zI4`_zAIQbL;CL;+r@%r*)&&KFq3PL>_Tl4cccfd&m4DhSGts#ggiA^CeyI;s9jv_W zFfqJ+!+l+?zvYpZcXQm_!_03bk$ua^c>J7Zq8-oIEas?EwJR`YhA>A6*yK4zHT1oA z34?Y&=41S#_|y>PW(x1{GY*MR0yR)a&^;IhtF20EACT6>FGZ^q-JLJ)D)ymqmyS#x zsDnYu!nL%rf>)7_L&K%~4~w^^g0uSWD}4~soYq*n>2Q_bCvV@HioN|H(m&s}ex*CC z(Q7mo+-jidh3rP$8WLu*7iW1OZ>oQcv=E`x@qiqKMCl}KyHxNAdNly7px_X)L$0y2 z8IWIqp2EX`zFrDK+h?>?{5mu9g2G8`T#{52IvDB?JYk|3f3HrwA}B7Rqyu<(ivzV}etc0Z?0bd+sa zwjSp>zm0!rq1{^eCJ!DoKMY%FH-7g@U-!P_7igq#k>F$1BwF}t(~Zq(%(XTgecl~% z@&D`4Lio8zX@uzm3sdVKv%x}01>01M!8^S#?OtY5o=DiU4TyM$X}*`)a0Eke(DjY# zu0xF#Q3J%YpkU{C6{;Uf$FUKtnH}$fu1~1SQn8(G<(Iq(ygKm%b6zDQ1PI#2hh})* zWAXdgtRnshS`cS$&k~X}i#i$9Wmi=A&lFK8;#It1LB*^bOop)jGnR zUTGGS2GC^%J?MZJFT*QvS20!1B@BmMGyFbrm1j05y5CFh5$}ApEG08rXqkh9PZwZ=5_Cb^OaFqh29o!FXq}nshKIoQ&9XIDl;Du7F zxF$as0K)*=Q~Q7bf`i;$LC`a}X0y~MccqEo2-FZ~U+5h-_ynEc@*dEp3co;bpTaWS zL_4kEb_}?)Pla2m3q%JGqz^_K{PN#$ zuthY#a8wJ9TZCsZc+1IP?Qw5x(Pv#g| zTmw25ercdOVs}tQg~8g1rpNG!PR`c~X5X0=DPn9)_HzW{BDM5g!n?Vj7;fEJ?z@lKK%eD_gyxoQ&t)6}&k)%5=bf-fBO|A1hO zkA0NmPz^_lNZAc#=P>IRP^ooCzk+g%-5bXQTKeX-?o=`IvGZHI)RIKV$bg;RE0*Fu z*WXRqLL2&ieZc0hbc4$L4F>TahJwDMe<)A@_oK~9*vUpqmY>ZxWIHkRO+AT7#VkB` z8IL3|K~z+a$Bp_!atAks57w{gA45555f^v3RB!iPT$|Q$b5-Fb_6=V7c)XP1TCbrS zk{bpsRaI%-`8$cPlPZpXDsvOD zv^~wQk**+TFTh(3?|U@pl6FnZ9_z=*plbwATgP(%n8-5q-V8L{ukWxkJhWk44N@{D zwHTaNPeN84zCqPPRB$LdEDPe>IS?42wlOAh9Ti?a*^Lf{UI}NKz2(0G$285 zE&UMUWq$2#Y`B)(y-PL6+;P&1N)Z-AaH=o|Dq(AqGW9D+Bh(TkNWA~9`|5*qj74Bb z{g(XSD?oJI!E@gf8}F@CLvqYjbl+Wi<-VxW1haWRwG^|OXnvHrTV&=VKYMLU_CEcD zm}3zAY6N4sXuc{Z*EWrU#ZuqY$W^YY4#@Z1TGPqL`W1bb25?J&9HqRW(O?8_qY)B= zLLb|O)lJ7_5S`!hrB))*s>M(@^_vlUynS zLK_`3#YT6w%-33$`*9U35+o_NGA~@yzdVr=BGJdipj0N*HD;2e$pc85{~PT}d>GQR~s=s&%-fvf6(t z>gmG@zD&-|M(9*Oq8J8K9^?!kbPWX%?CjVufDubq#FsRcF?VcQO!Pb~P#aPWhT7q5 znd%I#qhWIx1%H6aE+k#a%HBWI&#aGBw9dV<@5jYU;%&4Q8P^$fmDAX`MM0NjnsEz* z?$fOCwC#{8ca_{1b7|iT#xvi!Mw=8ZO1Ph3&Msj+S=#lb!M(bX>GeEhlQFG04p911 z=k7a8v4^ONCF&$3J<+suv*?=`U9G$8a1KDfWh{N2(R!_X8iB9x^5B11mv#24)aAEj zR{xJ(Hqm8&Z>*&6P`%NsoAojVm2v7MY|lN2gW!K|>Z3D-M;dOacGZ_Wdx`dD7_&Qr z#L0u#6jVFX|8S}F9>JB3EzwUI#g6j{6#g;F}}qz?k2HZ!hd_G;8Oa+t7vL~J4l ze!o2KH9`wb6D{N@IUcc zwh!662C&+5lert0YNXIs`9&m{W~c2rM1g&hjdiI#WO69H*O;tMe~42bM}Gs z-W(TGr(s5p62IVHxKmCEspBy2?h_$(o=oYW8QLXM;E}~{BK-)8 z|5CGp>~XIr;OD}+g$Z6cxO$Iceurcr#9eSZ9mowBx;aCy*)CX~nAy<{GCmhQ>L|KQlt`Ui8q8;4GySvxrO!K;&WL}qe{p)-{H zZF#P9-}+3MHkA=g3CqOX6_gR1Xfw$6_V{nE;&|aNe8j&#F?_uRBebX|Kr~ER<@Vwf z@7Gp+RDwc=0AT?^)>j-e$MI)+VvZ{aSHal70G?<;LxLV|&HpjRvzu(~7#fr{M4C z#y%kH2@UGBaVl9Cyw?N^VuEI!o3v6%J|4BHcdw+U=G-;y8o)&#sxamT`E(g=x2$It zAcNBK4h<>?H3;#%h{ZQN9GZ!dCPK7#iwO?(5jm-fHLu{s~q5&dy!Qq?QbVmms{sscJ4n8Fjw*XB;shM#3 zs@yy}ph9&qr`bH938aV2$bIK0Jk7{{M^ow>%%l7H!9f0S3kV;gdMMjp0Vw8MF^KoX zW|irNOzBA6TQWk~r^$Liyc` z{MY#6ku|B;?p`z*i;~it;Fa7|r|=sB>Y(ZI#phKO1}oz15WqRpX3H89hvm;~^3(V+ zmQXVBRp-CWm1>gN#gYDl^s$lGyK%dw>{?|HB>Tf;&y~Y4yX*(?bBNOmy1q$`VA;7< z+4YIWS5pUeUcV02QguN4u+i~K_UC()9tGn%&CP2hg zBaMCw0YV~gk|06k3quS}9j|Xg)CEcpFQt_TzD^*FFCmxlrN`)ia#1XQ71BoAZUgU2 z!$CA{_5-8{&AO8|q?Pnk5)786Sqw_-jEy{oG9u*?+T|I?{ z%?aA}mAOe+h&qb7iEP`2iK99xX+~GRMLRF6i4N-I$HBV4^l;s_6Gb79s(`HQny54v z9yQ%x_Ye!14`0>BdKrh1E$*uqdQ7e+n>>=4xPJ^ZJi9sjg0~c4F*r|1se=ZfI7r#e zO@P6U=Dv+@Pq6%4LU2%Mm{vZ%=jvP&qRC~*Cq3a< zzn(-znak8*Fy|9@uKn7mj18Vym;~{z7tH}y?Kuw!cBm7`oT523xEmBxK$Do=R!4zW zZQ~7Erv;<`pMYFUtQbb~krH}68IzmEs~#?H=Mxw%u0O3j=vqlr!nl$AHgiAr9<`ZF|y1sc{1R38y{Q_qfK*M{^)JpUCuQnrG8 zYA0yw7&R&6X7inO^Aihay1`vS01tBj%Jq-6hHB4Fni~k%(c)0FA;4lZ-qpWp@-yC5 zh!o*z+B-g3xujf23+#hh){O;k$(>n;wo=!E@F6L8SyjdV#iUFd zxwxz5r@Z62P7akn<~Of?q!w~Rw38aV-jFS|b!BG?NoYZpOOIv)@U1$yH#UvG9fhEN z1&b?v3O(z?1FsAVGPOvXgbK;)`gPtWxJJfr-dY{~)d|nZ`j@gB8>iMJf}0ghn9LhN(DgrjprP}|Hm(Y~ZsuV|u4zPeRp!<9%;xsg2pRSFB>VT+ z{5RABFfiYY6uAs;vY(l8KZsnr=L~Y2TU~%4U)>$@L&+(VrOJWDON5p38FXrJOTX-O7Jjgp?H<^dBS3ExMRZWRs!TKv z+~r6^raAm_>P+Sl$^*}c`@s?}3qJ^0Ht?wFn5o^WxN|G1Tzn*th1Q~=hOrE(9=dH7;Afg2B#p;goK?5v7 z&~5!wIaoHerVch;H*6cXXH1Hj86ik)6j}+LS+F|lM;n_W!Oc5)(Q*Yeo&$A=8Ds`L zk=e3HX?Vcv=@T^~n-3hBNFsLuy6VDVOcgok9z!90t#vOSC%^FY6ZxOeXgoIwos%c? zg0ox_nzENC+`7lLKTLXSu*)hAGF2Yr&hUU5?sYDCu)1ou!3|TO0(p@4r8iB|!}eiF zf8prUb1f%UWj^MX$_Lp`k@)>OvOyWMFZL>QiYDDRhJ-7KF(iIZnfqda0f2+iyrPdu zZ32umdFf1rAdpipZ3bP<)?1f-3d135rR!zl{$(duDhJ&PXGL`8&NshtD|At-ngfV4 z^ZII0rXSP3u(#O_sfo%r+*nam4DmQC$RdhxBWN3~|E!T<5rkNcw=}^vA8z zfExALYgM5(iJJadD4k3@k;0+%TS9Q`f&4eKFoGM{bc-=F;XlN^5QVp{ZciV8Uf4uG zEWC6~Ly};tS=wrTt5At5_Ox*j zx+H-{_tey(eOMDLyVHnf`Ydj8Was5&T@9AGal_L6g&r1yrjL~a-Bz>}b@}(S<|V{S zkHi6)gH&ec;Gjzu&irb9Ms+Ae;@~p}5~foR^E+E;Cl#7U!t~MP&}26jjxW7QEwEWz zA|ZDKnoA~Jhg*O^;a~0*zI+%BOQi5$1HOFli7(DT(xqt+PMzGGnO{YgGQfiVvcA7O zlX)0=8F3F%&z$$8g{bkex`!na6y&s4zzf$GvoA828Y51Pv4$WeBYQ=ZvoFZVs!wFt zWFOdgB|o_nx)B^e8Cld@vM&s<*srG`V@=gB@+*UV*XBy}+uCER)QJIXRqY@Jn{RW@rd2T1&>TDT{U0o_Ake&f#TV-Dk9+;2a2+TxkKsgn=5Y0A2A+4EZDO3eX`ulc&_oV}nboYNL;t5iV?{v0C)Mw41cwTwl*C?-FiieP=W;#YH;lxP(59NZ1M z61Uo|+)fxnJ1BY4>mY5r%?|E8qdn31N^rAIfP|b>f~vD+0&Y)~y)q-SYghUhwVHjL zHhp`|(^s2^(4YyeO3m(mx4*o0C)lwhEgn{6(l{`1kMheG~MHa-&E+EpVd0kSHQ zB%)Kd7qC-9d8bd2bY-yYic3k+zAr$I`8KXcyOsa;V5?|SYHDbS_7;X_b`DDqw!N-f zUbsAVL2cQATQdLLm3edzCxWJkS2dr+06Oq~mWv#uU?@%>0=p|DE5CjR1ooR(5 zB7CACZ`NQ#3~4bmr|r~y2M&dR;Q&z z?pQfnAe>S@Uqmng$MOC z5lvctO_CH`o_p=jlI9OYlz_XX>xEINqzp^Dafto@@hJ{*3#XX;YvE#68skgkY>`r& z$cpZ*o6xVxftye5kr-}au_Nv@L^H=Lwgwx#_jXPA_rzkw&!OLWUK(rFxkAUXR&mW> zxnEdxVl6e?SM?v5XZ03N^6<4e3>&{gjknUcjjqHheZD_RjkO^R;IrFGjL8c$ zMc$s6x1&hjRGH<1WjJkkH?V+=0PCpL`O(cOOe)ChlKkG^TCsOo(A%nnAFV+m zS=sr~PGXa$`#Ljn9p#B!Ym$(mnx%iY3 zRgl0=!&1f+djkQ_IP?R>1CNOMw6-Az*`V#QAdPCYD_hN#(U`i=@UY z&734lg8H%JjYwuX8X}yPg6?0VfMu;ckJEv4B1E26+6>O_wdPrK0rIPt&)N?)HD}M&Dk!&ZtU=eTUMnmoKU7=24U_)d%d^gm)Ii z>!%bY#f)eq?$kv@?_aIfOfya}^mkiuNTP1lF8CyOc>+ z0Dz<|WznW&tGSfhF|2+~*X~x_N{E2Wp3nv~!m?-9CRhn{fjuDSEc7f{aWl0`L8UlzaZBoL|BWeIg8w5eT27k&o??NxJ($wc=~~f-qwrhU5;Qa!B4)^4$ZaN7&{nVAE<%cHN-s z1>PcI5THGz6r0UH;SNbwAN$6(LD#qW-JIK_ zIn%qCH8Ow`gLb`2s5SQCOb($}@QebO!0oT_iw`py#?;LAVd=9+$9|FhP0pXg)HKYO||I}NUQD1 z#-{e5Yq8#5U6-3&mwi9GZsl7;R=OdX_sev@=c{EzZZ)h5x-X+l=ls(c!G-)n%X!j_ z#tA0{-7TuyG?s_4_*C%_Jn%-<)k9IURt1^kcs56Fa(ID3Rm30!H}3_oTey{Ua`x@! zm9LY@;?0&pU#%qj#H11YGo@xk{i@Da+nGP7<2%~ZRdSHqGu|+1&s1anW!_Qf8d4){ z;t1zfkNl{}vrp|Oqw$}3p)4zF+`MI$Ib&u1x75L<)D2l=XH1eCx=%Xw6Eo~u$I79N z54yW3MdF~!AT>Nr(#%S9yI1*Fn1Ig%V>p1HS?b!ge7fILc)@0kas7rc^wyQJhNpw> z<7h!!ct1({$=r4R0xxy9A75nqeFZI8OYREJX}X6qbqUURmqzXrI+7BMEDlZEEgR1p zNZpq8^If;;N%O`VqNF{wg;(O-pc^MpsV%h!{!_J*#Qd_R-&-!_v|D|VB?5Uh|8v?% z=B|d-Y$d%RhzwPX)uH7X@r?rtQA|luE)jCA_ZiqW<*!z8ot1*_nfgh=XmG>D)=0Wt zw6npzK=xiwIy&5?a8DKjc^MxYtoH8B;oRGhn>d!2IDTO$ahPf|czou;ES+UACC6#cdn#F&co z1-3D-9m4RdBIznF^5ZzgHZ88h(l%E{C#FmDn0Jq)MK_xE?S)A*GKF0sHKmG3Z3&ii zq&RaEZ>|uF&Y)Y?Em{#rZ#9Qk#x_SS-SE6c`xtNPYyNQ}M7a^0K>hz3>bb62d_Qf8*dI$GBZ&`49 zGd2-*s&GLa_1tN6R5-!I1(zoeuu3~@MlImGu&0LB7tU4X_8Ks>_@95XH8!RqwZ8`D z0hXoJ_@8fcBN>?=Gr~geBHs3uala$cdgph@S0x0mhPA|{%FZ&kSUdDJ?7@Iq{wk0>nq*(wd z^mI?-)6Bh`EgYQdALEU%*xk=d)GVf4X~|8;QT2_$RH~bFlsC7k?h~^2$odSmPm~dm7Z=VO^*7HQhv5( z-TO_t^pQor)=x>x9Da;iOsaoB@!~(ecJXXnS|I0lzhlw&PYe*|?WfiO6L2>N^ zU->1K`^@^QNC{0#ND+Sb!%cTzmNsV)d zlvcugekL*?_wJTHI0>&LM>$~{Gi!sks`3Azs_RHQlg%{w#~)=N@<(5?6pxAJeC z5f9)O{fE@jeePkMq0U!G-bE*gZm?cGrz?cIlLp53Bn~QrfHp`tLF#Nx@6~g9Ipmd} zdX0P~Y3wMK-8P{vR>4BBG7^4jC4t_;dlDsqRKl9tHOLf+9J&L_nC{x9j)OZlJ5wsSp%&~I{L30f#sTsB#rtpO~kYBg1D9qsw&^W z#55nO!kxTu$e3pbU1O2!DZde@Y>NAW8&qxuFC zM0RbFu4T65@M;@`&kTo6W;+e-1^6ofyc{QR-IBDgybcjwwP60L;x8pC`Qv`{^PMI! zzd6E&qMUbCLYn7!W`)&?HbG_f9llI;x0amS;9KsID+P0tWTjY;tZ1q08iKB;=~BFz zv6b>bRFQ61?08OE?q;jqO#Xrb=F;H1c+^Egw&-u9;wZ17yJ|WOOHSpc1}khwF!A!c zP#Urit9%oAV>0eO@iAUP(Bon55#tN4(;VoS57*SVHmJ2#)5F%;a$YcsIO9pQaqqZG z_=A7>l(PI#1Kc*ZiDn^r+7OA{Vxa`Wp3Zq!w>IZab*V}@Y^^fFA8&kY!P&}cy4KC1 zHz%ab*fu zbT*~9T*GI!<%L~r>S0XL587|w+FWH=6|GEv6?XA4D*kukq10rZnfux-#mYE;8a$D+ zoQP{AeN4Qw_gVXOxVdp_j|{LwPV{z2Qf|WB>bIiT)%mnsC;BJ{Lw+ZF{2^WGiFDX) zwUh$!%sNS;`lw@Xt2^*7o;$~q(_K%x+$TRScgJ*tx~xncH;Ax`U9~pmGYA~fXvnnt z?1F=Xd#`F2dPkGF=Gtt<_siY`Zlc_Um+CigzZ6?4sz;IHVbggCYAIz{izo8`EW^Q>0khe6l%kb-2-Jr?K1ENW;L$9-nOP?s`P zct9I}u2QYr>|>W1?E!`OHJ?@L_GE5W6(w{x2c9SC7AXs*6)^QQQCT49k7^uWgYG-{ zSD&N&me(mw=mXupxZCd8(#Zna$||sqzr}SzL)A@S>Qq|`>&Ut+aVFV>wd`AQ zNj~_{dFz3a8?D!f;Mf{j{wsVY3#UeSAC;*We5*}WhU#XThJ2@aC0<#Z9}AaYQ-ieo zQH};)u3xddieJT*PA~FjP=G^x)Z#2w;B%KJaY?9WO-%~ft!J;$lZg8%x=(F*k@SPv zT~lejwLhK0_@0psZnF3h@fKg)vUSEHyf@`Bms6p6Ms`*_g_ko(pVTUTA0iev1(iRxQdMN>o2lYhkT&R1ip!#I5gT_P5q z?Z4IA!f$SY0Rf-WTd)-y;LySuA>FStX_LUK`o`xL9GpbTRctIi%j=qvBqubE8)ca@vIKw6;xD();6W*E)H_E3^T z5ITIuhAKu>n502eM^ZHqZU2~TKHHL4 zJSJUhWu<%S->fo;7*^*WVi6(omIkINJ0oGB7!M$eYpCJskv6#0sk?YB0ofAVR-$z= ze|-0IVi5D4^yi0r@POg2!2j2ec-o7MqFPy2S!_n(vrQ<)#OVy71a9;C>!hf?pa=4+ zO`>H_MP32PXt26i|gFq3HIGOflL!4 zATYF{S^e`PvRj5slufINp>qJk-R%f*T;-zBC47(pLxgyGFb`)_`5I^4==G*NF0NzK zdnJZ@;IBpRh@4p+wf2jvTyE8lz8-?E#~|7g^U|UOoiu7)mTdW7*1^5I7%VRG#RKyY z$sanxB6E63S`8O4nZlPn0;JC_fwd2)ou^)#K29B_Myr8&w!x(9epoYMNA}^kdvqhK zCx;h0AzcMmslE?PR8>izm>e+awRLfnw8y^IeA~V?R_MA?0TyW2SI|5iC6udFGyVRJ zp27Dd%h|^bZU*+Y{%&j~7tu;#w2fdy>4X$?od{)8zq14U-T- z$Cyr{EDX>WP~xp*QXy|g2jM6^UFN+QX70F!;;mfdYL3=KtSC{$3N^uW+ksAp8~uz3 z@9LPH=vIVCW{&n+THQiaGJ6?L%fXu!N@gs4Tpks~)t%3V@z7{JPpPTcubT2wI-;L8 zcdJfQpg5Do3@GZ_A>yWd9<(|)<#k^Q`m9Q~zv3Tj{o@PE z^~h-)Z23$?3ym1e>aYRI&ev}P%>U%4fTZH6Hf9|R`*eXQtJ`f9Rgf3|LM2!wNO189QOjWTA? z>PV%}pb4C^SW~XA9Lu2rkvuhmn=DK*hm1b1umvQ&pgeuVr}76cR!>NDo%YvK2Qv(p z7n`GTZyNkHhX~7?QnCyR)8SGo`TV~>5&qM3)DMDX3W0Lv?|hm@+L1RNGMY~a6P`mn z`uP*Qh=&a8`s)uTI=Yv{c~^y32`w}TfCn-dJE(w9=wa-rioOoJL8<{K3p{lw4Vf(nkEe!-V+U>(U8XjS45t7K@D!We7^ zDP7Jflbzh3s;oiP#2rtxyiXyVKEPDO*qrz#rT(r9rOTN)+?%le%s!OhywdFE>dNH3 zIGg`!_^+yPu_fW1OBI*cCZuLugc|zPr4*-Kw9IHGs}y@xXX##i{?QssmRh4^ssAS7 z0jhkz5oWs?590X3D1mS$FuS}sd5`B zB&@WwVg+JE`1u>=L__1$Y<15ZX++#1DJkAoqY3d*PqpqVieN?ZE)*Z)5fNYAk z=@oSc$w>s=zh#X1k&u2vpi@{y(Ivh$xc#4Gqh+`EeuW~IT$8@$C?9x73B=WIG4Z1E zu;TQ@oWb|}*!@MhN==sU+%pf%8GksYY0 zV`gvCw6bD)aDRzm71BbqbEu4ZglT%+)W35odSR64e=(wS6Jqc-gBjJ;R9s5n;UeYOv9&@N>kxM`J2_`Av7^i_lt zRF&z&X%1ebQJQ$8#`>-es#r528adlUSKC$f8)kiI?S_(^=<oEUWwqPB__%o--j4>jZ90|J|qo(Y6^GH4{QJ8bNsllz=UO?E?DyH%OH7$ISI zZpXd8yIL3R#zp;0g7hf5(k`v(PbDT3*?B}Ko7Yr>)po<+AP}MO>5lU_O^FZf)5nL5 z;G9f6qLKU5ekCc0EDxrxa1TIFBr_QsMjy_wO1yYLLNWVF-I#&Jb>Si4nWwGD!y7%h z#VGQIJNtWj=rSeDXN0gtt0hkLi(aAom8JP8rHnEstlUBblCGK-I0 z3L^XpTmIbyG6{aX2X;_jQ_`9R`7T7SPh!^0Z6gDIRaPnf^owgRbn3}80 z{ItwyYVpj`1ia;|urFRI7+5il_rFA28@-bCjiJQdz4SjPLv^@e#WDmC9?+7T5Ov4@ z8GnFa`B^8KrhjmAt^$25Tt!))U<~U2O5;HuQZoyeC{HHyF<*Ty=RghG;4VKI%>~xG ziCFJa@XIx1KwJ16@q+wKGx#YK564`E8ZqelmB8oU01d``_u*b(6_~sTyY@~_bBD2X z$T6vo`VCtr)W=d|33gA0cY$kcHMx%3`o|jovS7dF>|@P@N{w$!RmPgRn=*;fNo1XNZs1PI$IKV4D3`; zU~00NA-{DgXsncNVauNs1aoFZBDaTac9t}1D`t-5BV8O3%bqPVv9xKnpY0L8vUd;K za=%(@yU^1db(VB3=V&Wl4h7{Y=+^$B>5=i=1+~_X?;}~E{<5vydU!xKIUF~D;aSTT zK$JYNv&zcdP<@pus)04J19v8SNd4~{XpQ0sdBI89WQ|P7t*zN)ZPJdeYy`{Y-l-p; zd+3Mv7O(1zn09bqA5t&hCz#DBOr8dq8hFR&Boy$uLn<1L3GSKKp2DTxR>; z=`SXGNM)_y=s!FQ2;}$u^22-6gL|HXV*Y6qn=JX!_KKLLE!ObSg`w!W_p#r@ZFAOd z;Udw(LApYSB`I>{@Y_>&B6q#Ps9e>5qZ2^0-zM=f;;F4CR_x9eI3g(G_9bI`Sbj5! z4E$P;VoX-v<(6rIuCGSzqDDkY{^Oz09|d>IvD6p#+(dScDgH9y4@n&GL>T|vlKbLr zG)DxDUC;=VG(0mD`|jttRa2lh^+@lpH3p25--EH(ZHS7wi?5y3z#d^U`NWZKHF;cw zq~Pe{DKt>T=>D~6>M&{0gg`oIpTF35Q%5)H{qx6COwPx5zy1lw!PK+)QM}Nu+yB#M zg5e}d3BJ z?SYjz`-o0Oi${Cf%Q5=_%-9;O&`yhJYp!Y9120#EFEIpoMj;aAwe<`j`_09`#TJfH z)H2a9dP)Fw|M*_GBb%|>L6PCHYL;-m4_d=70+`;p8?`7XmF=G46Rs zd1~Ln=d~)gu!UHaxALi_i-79B$7HBeSzI^n^TCZ3M++N_FQaJE zRWRILU);>Lgc*vpY@G~R`!>eLGoX*X_J{S5pC9-Lw20&U+D^%Ib$EzplNH(IsJv6- zv{L0x7RhJLu2uTCNN1{I+e?MP53<`AiW$khwCHa5Cqk9_)T?-QWA9}YwMbxhH$8wC z3~7EP%DJ{w{yYwhepnS?Zrf|0 zp!lEE5UxuP*Qb>T<2@ZrY6WtrGC7=_^_Dk!ru+M$+J4oWN1CjRD#DN{$O$Smq-lmQ|x9X#!(V6Uv z`9B{~T7{Gala}tAcU{NtC>r|$SfdAm(aqvZb`7uh;Q$}PEryrY#Q!QZhmZC5$LQz* z5vq9O`LzoUQCtI&%DF@(=)4kOa(5AO#5EJpX#XR=cYWA-R(}5NA*|^&CQ1m^4X~BnKmut@K*dzUq0w@2;v;VDn&AoCab7X0{jSkyPS4wM>I+wboNq)Qa4T ziWT^ip7VRulpvYpB0*>iEc92EAoQE6^{{t*H;vf!D1ns(Rbkfzy+h1<^?>2^NKXiB@dS7gyuFAuqiXW>(Lmwm*Q zm)@d1@gJ0D+C5Btn@RQs|F&LlZ|{5ivKyXcHkb8nQSkss==3?Me3M=paDT?&jjFEE z$LySxdq4~Mh5lNH60*8=VqG-o3ar-rO81SybUppO{4PVl0k8<61QtZxmrpRTp!A<# z33D{s(MUy~@~^4{Eeo#L|A!=;S;6K|Hp$GoXrUsR*^IC_u`VCuWR&bFAt!yAa8RoR zt8y!Zd`2JGhyKL-`xmJgZd~FS_$KD8{_~S5OtUer9%oB?o7l- z-#f#JeR@X+i_@Tl?dsgrS`^1GrOpBYs~aEf+u5h}QC+2Y_J_Hc2|liDkd_b;NPyJal`F5 zqGu>_snL-1U_0?FZmL?-w0BwFG;v-=imC#mf5&~HN4PGWZa%W9N@$*c8V7vqxH)%m zReDh8o6D_vTHf#b+5o9Nn)jSmSBNWD$hP&(hfltq=#(8qv2yUn ztD#=ywvAHM*TGi41Nr%7j6vsNJJV@m2*9Vf$?k5!ccgQ~bTb_#69SBlBmJh&jJ6AOH-ehi_o5&_o~g^!}$Fj(e!>wdW192M`Z_Y$h^8Mvr6iEccyUewCzMtkkxeFwpR2{IbuS=E$!r_C4?it`4?wE(eQ9BU z^!_g*4K{wQHn{l*qwr(Pof&Pmc&EXW%U)5RXzj7IoA~9mP0Va?lB+2mZ_b@voyg4^ zp6nTqbktVKAuZ_IV7q0b9U0eHPpwrmGS{7i8R#Z^+$WqjxWwj4D$zk!aeqj7y7_Sh zJ|LpC;g zs`$zRIvyix@@I;Z&9}7EPHOJCuJp})|7fG5cpG`4=SF+(Ydo>OFr>vFl{C#zsy9qH zJvTfWN2fbEyPo88=f=5pQi!nvQBR1GKSEHjnUf&QsOl6Qi7~_p#QRH5w6&4eth9M; z=W0(Mm7=ngPhX+t)|gxhFR(T`s@(VfUaA^&jklLq*Qv>~f5s70Ibz6Z~KfU z?qNewg{;%eoj@Fk@bn#D*^&b(p_TP32I{$FgNVB2h&(n7nHQp|hTz@_uSU znhkj%Y>Q+rD_PDDx36>B0Z>cNQNlVmdZ{OW;yQo=mNx!5QP3+<9kR*Ztp)@=#*%=7 zyd?2i3ckBiqQxCl3BUP?^X?D4V|yqIMd>j9-4!~WE#*V;k=7+miij!Rv)U>%A@VOP z#K?UQkrv2YS$j$0o1z^EOOjoCWY*yDG!3dTU1Ncv^qoXo5mPp#kO$5|L77kH_UXKC zU*ca|a!WQ+3A?*NjB}-kY&aa?c??~V1+DNK^#dPbGu}0mzhP%`HSF4UfVOfIG9NG} z4N%YYGO{{bLy7EbG)+6N5sZRwVx;g?JU4AjiQt8RZSJ|#G$$(ygV}A9b7N{`nJ@`O zOf?jB-3rD+8?nMG&6(AeEsg(7|E)Q9SF1*&Va#C|xEqv)!BrFA(%{wUCUvNZHRpa3 z?H|1*6K%9=y6l(Hm&TpUB^CB@ETe|b6rKwQ8qT^I-`P602)C4bBNf#`gl1&bZY!A9 z()e0>Q~vM!Gp2AWuh(y3cHdUMCEKssxtp(@9SV@W!^*WKZFK)*54&OEFMjN?uu|)0 zSoqL0+;XZ6RPd!MFjy25jn~&MxF}e5{joAeYU1(Y+GOU@D)-eEsV=VnLNdG3eVN}a zxihNZUi(o5&$_c)lhd2tE2g(=yEb#VSFsKXlLSctPJ=s?c|oD-3O^+QYNdF%C~z*n zmFlLtps+4Bj#-rE|6%XlyuG#u*Sp&AcuN1K$OfB_K`M9n}3CYnHmfOv$E zOh_aoA(=r?!LSJ}<22oFYg@bR@7M0OwQjYi)pb2=0hN>XptZHyBWgX|<7lzErHa-( z@6Y$TXEIT{&+~g;&!10UmCSwL*YSIOukZQ#UUu2d!0vG}t%-mb8AO{WpGLbo|F)BQ z4mydsBc#mPg|6-%5kkI5Il(6J@l0AjZ{TNzq27%=N~{uUX)Mo^^mAYn(G7!Z_=1H6 zT5bt@{*eGPZDl|HRRw~X`7?GaG}Vlf&RD~SL9+0>o_J^2o$<4?d?I@OtGCM;zF-a$ ztSCAVIe$^r)?&>`9 zc?Cs-fZ&FPxcO5;iwBL0e?{w(zOUv`2vxbqC!r4kK@V7i<%70rPK0buCU7BjJAhim}m(f^{-S z-Xpa`jpK5P9Z@S9ORTo~(XDO5Lee@-lx!KBpPsZMJCUPk+6C$QaW%GtT*EU#_C(~I zAk!T#dU;@u{n_8l5DGwJBk`5~@%KOkSe4b{W-GBIWw%Qs)x6+#D`jxHRIB~RJFo~e z;Jx3ybF~&*uJ6?>zy2B}=-<^Q168h~#9+YoArcoj3HB|WH_^wDBd32wby;;T( zku$rW$e^Ld3PV0u`c2=XU*W$B`e!}B6F_3sK1KV)g%YvZpBU%v6t^Pt|HBm_7bhAe z+e^zw-Jzbb)Fj}yh71(`5q!*a=Ft8=Or4(NzQwAY@2>mHc|`iFzXO9D#DsCLFUdSh zAT-UjThol@6E>P6f6v`k-@W&zoQIKvqvm-zsSn?fs$iatIm4d+pHNqp%WNz*YWuE-i!jfi#kIuMNB|V!c$j zqM(927*+mnPPXE>hyTFR+8|tyEP3N?%tdw#`!+sSe7~B>4b-2h&sUXIj9*!t`3iEY z*0Zv1U|v~{FJtlOr$Q_LVH(ac)0>OOp!>I5NS3C9NG<7^!Ivh^GT6k1?zW2lU8kGu z`cX9Tej4#^npn`J@*kjJWT(%3ga%573CPYlZycQjw@?=ynZBn(WE!$*>t!}BXY_JI z9BLG$?evej3$++gM~VwRa=Un)+(-D^1+2*V3oAlHiepfR-lh<GUF$#Ha1qAcon5}8kA(51+JS|dj4cuAh$u7Bx||oJxbY zPagP{BrmdUGM741dS>4!+83$bTN|qP5sk9) zWQe#@mPS&Oei%#rS-x&B`@=|TJWk%K$WXK-h^XI(ZDgl7P4(lU`iB6sVQMthZG5}& z+Sj$XrT$}@o_>YydBaMWwa?zTL`;iSz^OxkE%mVD_$O3A77la%$x5;rW2kf z5$zl3(8|dY7(&~>#To?wo){yoQaH5zbG$Oc(N$%ujouLral>T4>oHLdh2RW17K=FV zPVqT_-QUBoK*%3S1XCI5(2aimmx4LoCu|79F#UIig z&|yzv2Id$jE9ERy$^nzDQZf99f2j!$`qZzA>6r>qSVzF$^O0>Y=-zONJmgageI|np z3G+r8cZYardS$F=Z*aJWjNO_5m$@Ax!@n`zCF+l-! zh}V=%|G>WB1d4(@Pi8RvRo5gZxUn6=IiL>6Hp5V@t`SXlB;v_$3vvy-4^k0r3eXVD zyK(r)u;H0u9#QZP_1raIrT!7B>T+lF4cwyx&%8EovL)_|Ss(uKu$}A#_xs0a1F*17 z?&+Hv(Sli64EHc1>dJ!kTK^Hw^WMda-G1@NDD%0+cJEXS1CFX&YePGWi-^PcDa1a{ zO)rrx57=&^xnKsggNs%*V(Am)4I^kGT?`SM$lSjEE@bry+bYbCsWsY6b94JBb7R2J z0Bzs5|0&ou{uoWfx%%Cwr_WaIIvqcnfH^A2@)8>S6Jx~-Fp~p*f8?ifUH#QxaxKD! zOgt#cq3yd>B)zD12vR+?`dx-sA=#AkZ>hDlEVYte*5VCoXn7SFZ#}JU-QH5Lk4sh9 zKXt=DMVcH};(zfwgo_?T7%VBsC+&av+Xz+&n-1Rd7(V;ZEparp1QL2KolCj=^567n zx50sEM_p<@3Jxa<#s-5DX)yYw^9(P4)`?97+G%3<;1{rclWcvVwMl35E>Zg(1R%~-ZmMA`pvzMf>f zpq~G1?rmWu6>ycF`9{#0&Hy+E=lB1|8mKth@BX)Q75#-+wsR}US5aR7@Tuauiv}wH<$ofPal3AG50})pouOzcH9nNg?3< zue(M!S)=|JXffY~Kld~C#EB0`wqHgEfrkreWjuGJP4-JEpX+0^!_h!Brut73) zfmojhG*;O$*EKu_YGG~BbN-ru!6Fq16^MZw;^H&Q#ph4?R|oYH%XNu+a@AR|NFC(R zSlmj!kS{aBwe1qp`-K4h^Zybw;Sby!{DOa9W9?|L#CLNRVTtV!p?kOrR5r-; zY!}Po|B_|R%%cz#Zdy%f`%JYH2x#eZq@Go&+sXd-jy1PcS?Hd=k{T}47-#!ivJF%N zR$W@Nqi2JE)jz{1aAQ6^Ig6ZoKJvyhOxq;oyhtSd=-UhEb}ye;*HW98>=*v_Gntvq zA`vAY;rNo|h4!(Kr1-ae%>fQsVlP-#nz}liiWYNSp#S)ZZxIU~J%y7B(XvdN^~}QL zYHL0Hc4~uyrKy!=E>b7EFlQFyzT|bz$_;cSZaO1?S&mX!e`0RwoTwptl2hu=hQVZE zO2Wre@a|<^p(oQ+G(6>Bt#FfqEL9{-V$L}u{mUks4l>Jt9DvB5?_RPGfqd@ebbDz? z8LE9cJIVZ*1QJ0er3gDo0?ValsTtYddo@bGn>jnmrAHg68+j6zkhzeO0no8jYpr*D z*p3Ne*`+w4UYKkbMsf94e^Q6eL)*t_el7Rd!R^EJFTSCYnKyU{nj$fln!13dQV-wG z%`Z>!jp4pKY=mhxx=X3x;gZFKi9lI2J9$drW6mBc6{slrVY99cp#FpvF|sw2na2Qx zGs5v7?|R4F&t~<3dB~==S_!5S2O3!7$&tg6nFuCGa7uR9~D@H=*AhgWbOzv-Wvb;n;@-wyXn4F{Ex%#8Zqg?(gCzSLMH5%xy}`_i4aFepDvjg?n4q|3@O&zV#s zN_CsQ{DjeEA^>Of;-`-L3{ z4LQ`+`kprNgTO`gpZ4I=bbLT$zGgNmG9OlBxBvVt(&R4o9(bjyHI`3;Dk=gYPtR4J zRP<#KT>n5lSC%>`5o|(0x&0;}p5(YVHk@?Gm7@B60bP2B2lnxAabjH%Md0d!+W1y= zx+pYwnC%_9=Z-xTlU*S;b{!zyg6Bk$!{?vzH&7H`acroeByyiNS1h$0hu7`^w|OF! z>u>x^zlZNOwI`FHMEdjJq_JA;$>^CR;KGBo<-~k>MYaEqQ7<)xX)wNv0#U zx>4((e-T0rdyFy0=4=f zU|&BZ5S@N0vIgALHnEOqg$Phq6LD-1>Dqcgm26YsBe2jU{{zyvH$X&1c5JrR=vycC4W5? z6=b5`z6IUbyFpRzJUl)*y%2it${xS{&qs#$MJJDi=olzn*Qe7o_xmKq>r>_%LIN}r z0r0Rwfpwd=SY!Vt&I(Vv`I6SE*aoC>hi8<6l-h+r{sdaLX0t~{{!4nfaLAu7hNpl9jEBsf-nlN#fpB<&L(du0hhnQPtq-^>cERt13w$<&(cX{we(NqSJn_U z)(K(;jeFMVp{BE!~zO6Kwd6Tykj19qM z{C^`8J`aLxGaq$<)8JDh)k539zyrBpbu3O(sB1Z7TP97IqxQ@3{=|==&a;EGgs8Iu zAEVgEC^#xdqMdh+PK=LiduPHVB7wlNgZ>@o3pFGb@zA%1*%rXozxxpT*8h?9leS{@{0Qb@9BR z!4wTQgmxuoH>CbsCpdTP;6<)2NhCMOQ2dgg`M#LzOOR*(M@WioQTF&ToGIBdTakuP zl#qg@A_LDBF}&L9zY_eEj#ow=d}VB8;CZZ>yOWm${`2g7O#q7=mp0++%$}2b%pMi| z(rfwtPUe}`O=1Wt2dn^~iHOu=fsP5{HU5n_Aq1>a0LwGDLe4Qt$U+RSsZUkwD`7YG z9FC=m^jzU#Vy1jWs#1@Y_L-HgO<8;{QEL=uooiEJ>|*EPv*hSDZEHQ9r!c)ryW02~ z6r@mJ@E>}`;WRc(GH%=pTt^*J!F+8eR5sxL%C+gwqd6BT`)BTX8FexR1HcG^A8#lY zt$sbU{VIf`%qfzP2KKa%KA{3vh9z?*7l9rWq0HhaDKOe z1eUXO0eWpZIn5ovjSXR#)p(?$!h95gJ=w;E&0HU~&3HMfGI&|)-*&EqO?Qg8f6H28 zANDUORSfCyg39dW?=JW#-3+n9_npDJ`k_0NMlm*Ym;Su*E%!2Y2+t#Yj^xn|)5iEO z{`c_OgM9xcD|2XEC@=9bKT{*p5Y-$?C=5W9ZUF~Jm>)IXksF*5bEOm&tU z$_y>B2md(EzXLNRb)$;4dd3eyJP{+y1N z#?5qinQqiQ9BgNVuqB4?szKQMux&4NE4&u`t_e%TLk(!rQs_$q?d0@9|=q{+iIEn^d< z_|Oa4`j@Dd(RF{sa-vDFq}S7vGun`6Lb5=8%bSE3g$?cvsdwrgd}*9GsKmP>LcdTg zG2PHWDEhb-sJP7k^>kXeLZbNas~<@178>Gekf3A+=!?@QaGK433@4U881VUKhE%_t^>A7L1c@AuszdtYG*|AnfE%d5rfi@>gFR$9 zsUqJLIKGDIToTq3rYSAQ3d)CI#~<{!1z+#xtJcZv;Q<=dryesx3n1q-3|)G(Sv~XL zo(jGtBKJ=anmN>|PvzfF&7PWGPCEVPCiQWv&rAMA*O>%%6mLR$^Jq{ddm`z2H1&@V zKJ%a}c>&|8=q~(o#px7TZv!YuJs|nXb!-5%1%A@u0ci%xC#`uc)kTq>~xi+D@;zilk*`~gt9@{ z|4S7&P2*S%EzK%P9wjX(`#kwIg!iT9E8i)8joE%dt!1v6?Ee%hzHdN^2QDvgTnhNG zzhs5{UW^U#-oN{v;h>0aV4&fMu+(g;5F2Z;F!H6s-%Ohk3r&%Gx*7LptwuFXueuvTf zE7Jf;E&R#9=m*C7xXcfhr#T=$`VW|y+th}dn(Q-Vs3}pnzfA;clP8&u1+LM}+kfw4 zl#jNaUlzo*8>X#*%HTd$h=n6FVTOI0k(#$|*6JPf?}0DjK*??(qG;ys?YkkA`>P-9 zMFoGgW^gz$Hj=_w#|5jz6`Y*zU0J=acbwiI9jX3HZD>AuV6Z7Z$EueKInNL&V7mTc zZa#3tB=wO0Jad#VU7PZ=|62nK4Yt5L$;iR*c7DkQr*R2vVH@04431SeO#^%yvMlId zaXA6wm1INe9iuygRx+gD>PFDt|}|Z6r=a{?<%7@=9jm*`Wiux`)F<~s~?m6jpqBng`(WapJ~vjl?VMl z5n4qr(|CEGQ&mEPZ_tVCF6{*V5h|-p>uQou_Rk{2ky&*Ov)&NzLH zZK){R<>6TR;;LA6Y_%E9^Py1nL${dsO`=ab>r#QS28tCpv;9Aq@q%VW#ZJ3lVhPxa z&0L(ZvBaN6PdUSyV)WTm6-CK1=mAz?;^OGAD)HgE^a-PED489Mm%|wfI1EcMBnl1t zHT%ea>bsIbU=-P@_33X2@aUJJ!SA5DD1dUcgd{xb1HIBTF+~Xo4e3c`qo_3bQ41(_ zc@99QIe;d(zBxx}1XNxmCEZ z2K_R#H!EN$AEsMsvi=AC#&0{OKM|szd8b69Wmh;An@(Y|HN+!j-zbFRA^)$xFP!9F zs<~-+iLvk2934z)BX^gH@P@WO$!M~1Lzo6+U3aUL(8}?o(ej?`B|dIb0Z6wk%{*)s zg|$+%CGfdGZJ+_SFY+I-!impiF3|9mO=pgR$FOPQ9~`P3^IF?L>=-6er8u}v{!#OQ z6?!H)M*-c=^BEgjZ$E$hzg!&<^?kmtpDd%8UTE--nEi0h)&N#BLhbjT#krv4cw&p` zvFY*EmSBDh5!=C>&ZR+cLO>sw0t-Ul4Q>Al?FewW#2{LX9DPkLLOIQF%Px@p(*$Sv^yvM^{xF zvJF2-cRJvJ(A*7+2cG-y z@sIPhMHGWZOG3ACg*pS*9LsT!tSUWcKC8g8+ z>(c?635M26J$mTIi8CQm3qcex4^|fm{pUg=1-NJGM%Jz_9isXB!>o+8{g{8}zXCwE z!I$X6Ez!#ev}9EwKfm8~EOKwvw~6bmHu97|Y3P>q&T_WQ11dhSwULX3Y!ITC(07di zUl}>A_ZPRnI~?h6Yxye~tV7!e={tLAXxFC7)LUfzJrR=`S0C4<7gIDfuY)ql)!CV` z(60SL-@3675{qUSXH6WgIVPOo=i*kv3DtUPQoE`UZr=;8kT`?zAiu2Ip$iMbBk7+M zLzsF>t3+bV>?i1#qnd`N*^^@}!?6cnq9@_g>o_?Bm+>D0T9lYVPc^J;W8J|1(u-51 zwh7&{2n}vU)#(T3??BpcPd+CXL~EVP+$&Ot2)P zDd2>*X7;k?;?yKx?yzqVmRO(uig*-{4V+9^=zpFR1^Tvx0R`OVI8L3_m(3BOUq*gKlrOlhdJ3?MFw*JPmjo@K)=vM&b{; z5r}N=kF-V4zvi0IcA06E;~ZEn#Adu4+)5Y6+U8dmUz{ux25?i*0d^pN=N;gVr8h14 zlU?1yjX@7)ad-VV*+WW_HSGK~RgWjm>OV3uanihr=yank1j#cH*9q^Lm@J9hyl_oq zM|6#olDITTC#2pPI538nEjh@2awUV0r3Y4O1E&^Zfx1gSGxfaYoJd7xIxC2wvN>3U zv(jJK&14ueX9rfS1am~g6DL$Ru1t=vtKJvd?xG(__4E>jV5D=*_pmAKFXzO9%Hl&g z}*+ove$#jhhHUN*1zm<`DnUS|sR(b!Ea@(<8us|=>KB5@(K0i5TSW2^~GSr9^@ zjWfIIOKoj)6#Mo zIjp%(PEldOx&52g;C*VWK>ZmaKUV7TtlxkAnsHo=k|KNQ#k}F|kp9lEP&ss|Boa0L z%R~NiDbZk)^bh%Gaci<3uznr#`#BDzhY~$pwMY-#&;TsnXOi8vM{3K6Vl#5*Xe_17 zQg6owUg46m{}fq*?3PGd6UjUck9lbD$Gjy9rIP$X94*c{sX>GP{wRno;xll7<2|ro z{Oc9ao~}6@-fd`k!FhYyP`qBW3)f_K*IH$^@lX0F<)8d1(0bndV{|tOsx%oYHEC;0 zY#jiUs!kAScwlF?HeV{E$FzvA#8-?VshDGN+-8Zs(_1 zMQH>{BtVOei-=209`_wLgs@MCJ)_NqNT}bDqqc8*?Q)p%jcbO&UzN zK#N6I3-U`(_IGasrV{#e8$o?bCkK0F&j-jPGICp232*AhwukGu78P}4U+pvu)zaNe z*O87xCl&s!jR1@VLl=5g+?tD3{|V5G%2489-N3%d=JCiM*l~1W{R@~67Tn0?MNwsg zuFBrZ9x}VUQ$H+OG1IuS%6h5ZpfroJ&r~GJR4i;AG#CjpZO9E8*d9;I*<Tu##fMDUFy&KXAWbh z*Kwa7W*##GaJ*wIo&=>Do`|po+o?_8U`etk*K!xMJhLCQV~3FRXzDe531(39_pZ~a zzOu6H??tMA0@Gnbin^V2dFtgWcYcvU295=6(N}LG#Hw(-474uwq?}fPi#)w?bu4|6 ze`pQqxJ3MkI^OGl=F1vw-|WcH!m$ic;>CyRusa6pot-FsEqJKqPFdR-QK+-c;*#05 zsXyDL=`YeC$IgoU$qZV<{m960Pq>m0v4YWNet6xH;oMM-Fq%KaMw{CP5Tdh3A-~Q5 z&qiF3YB>w6$8V$HB4n&MXRMzC7IG_CAc4AX0MG=oW}k@+Y$1II!92z+CRPiGaI$^! ze!mKtb2OjU{7*+L7GV?lr8FB~@%NdOFd_A<%~3$}kH_?dIVXV@XiXz<+-lYZd}8(7 zk(Zv0{ppbZuT>HzM-ZJb&poBam~$WoJK`8kN0%GH^3suV4@Xug z3h`HD=Zq{5av}bN<4S~r{RM^<-nZzqq6l{qK29c$oaBLCQtDs*tn8eJIrJmlmVEDw z0cAm%8&fX_C9kGw=LS2Q(kc;P?+9;PMkn}C&JKJiD7lHFXTF;Gp-GXV8mT9Rx^J6N z>uN5*2tfQ>fC+M+?;p2X047ZT5LD@eAW5ouD_KRr*||t@#Ol6zIN>-s21*Zx~C# zKWJK8;68coKKJogLS?lyM%Fjd=mqi|Yg}>?y#5}m{Bs)w6lLcrhK~pRf56W?8oBcG3}3OQ#oN9tk&_uon@9zNFBgiC!l2qdstrWG2DT89S- zgCaM9KW!2h+^6Reoq-zvra$42Z(@IO5~p1oFb%8fjb$ekkqem?Dk7Ib3?bbJkf}%g z*g^K-Wjb?POFuz9osG%BIU~r%umkSg^~02N4+DF`3^pj~zfeI-`#g_qa2V8ucuDZw3FjP6-mb>lg4IE>Z1KNRtMTEWi@8CI>@i;@hkwN%del z?B&>zmyB#JujLz&=z%rlS=B78wutX$4GTERV^D2+2|72MU(mfjK*#W5WeE>$ztrem zv}FEaKp75gkLVeUdj!78hH-A|SgN>;s|?&#+APH+E;PVdC@Ev#Rd#pvq!>Hbo&3M3 z#~cw=pgu*XSyBk@KB%(W7vzAlvYgfW6gZFV&3^`l5!w}sC);Og<1)#XIj>CKWu5P5}rx^j-nhl_W z0mw8W@4!4jI1TxS4LL^r)>dOw(m7aNa}ah%4eRj>%PveZ3>njs*F{rDB(R)UE1Sw8 zf9qJC^V#(@HXI!>ditgn0AyaY=y!fAUx?VaHNquuUy}tgGIe*hm;ru*zI0iw?yH_x zhNlxRr7ocGpGh*<<8xD~P5qqR>;L-@_n;5&lj(_&OfkIVX~P&1tm?Bt)ri>){IAh~ z@B;R%hX1VKg=V$9wo9_`s|j6PQlSnQnB6u21RF>t!)>^`DUv-^waZj!XFv6FL-D8Z zQKjtYi@)ZtZ|aP`jls@BshqOLe~kW_zJ2fqDCIV>NCU!&whwg1C291A3-=;2fdPe3-8hE)d(xn7z>UiH@E4e;fxR zVb(aApgCs^c)X9Wkf{Ns>x>P3UN4Z$gZ;(kTC!L3v?vD2YE>&W<_3ZTWcJ`v8kl=P zB`hKdG~%$~f%LLXFcyU-J^Hk0(#|_`o)e@(Dg6( zI8LB&52=y=K{@0^%J^%^c3}KNwGI`sj}2-JGH+o+uV2a6t9RZ344lk^3^oJ{fl98f z8~U%ZQiGwm8qfg!OZWlxuk`-}hjm6MISS`dz^n}~#|HM7_#66wftd8SX_vmBZiTAM z;gC8Y`O5CZo`I?{TX%7Zl}uJ%;y+9*^Y@=YM55%PbTL|3k0le};t=?Z_~K_3XB6qb z=^`)5xu-=lCnqm#NQb~D$|sp^KBi)dB+1f9|Gc7A$y4iwZY(O&q7HvnebG0e;Y%u& z_se{vqa|EmRmEjgvA%F=5@ZAxx zWRCyPk>T4{hqm9Z6~@|u-*usmT0h3K>DMvzv4Cf1WJm#VCihouPCP|mFd6r!s$bHl zoIX-mVr-7fyB*_y?@8DkA&zXC`yy&tc#gOd$TolS|Mkaix_fQmpuk=bc4ys7m~+Bx z(B3t)Clm|&|9XWkxx2llZ~&vqvJcsu)2Tq_1DTBI+h2s!mJ6PRxh)(R#Z&qrMn&{V zebMf^>fL=Oh3?^6=kv)@IecIrp1kbKhl`IbO8z+ld8}#7(Sg*#oY=?ykLcVKp!Xm8 zrIW?jEQkEtaRy)qg)D4=Bj&8Viqqy@V8m_V$)9}$x(e!3Nr#^H`#)$mda4(G%j<6r z--l`jT{+?o`u`B#rU#{fr9>ocwk%S&_+R3S8geH&`DW)ZEw#3P6>V}Eh=z03rO*{g zm*BhS-v;s4LIU<<3;_}s@rS$AA?JnYq$I4MgLXlHOaUyeoVk0%G_YGY;Ek#`qWrx# zsJ<@sGmBfc3?wP+DLUjgoTvu>TtjeaM-cxTKh%PlVC= z2&0P#23d{vz;^PJOSQG6Ogv(ninC-n4Q&zf8cTr1QA*mkwp&XxvU37N$V;rM-as}W zhf*UF>+i-xv0p_-$$U~6YX`Ocj~Z5)4*o~vf@Nm8RH!}qgrqZ>ETNn2tNi6pjW|UT z<`m&N46a_l%9&)FYmPa=4ztdyekc89PNgdljp$KFr74CUG$K&ivF^$K?XL;^vZqlX zKV&ILQ=X7m`M09Pan^;~OaLmxd%eME;eY4dH{m_QcKMqV{X>KQ3gEHp)pM|C)ZS7C zn#S6jXOCgAOC#G}?57-FfyfFHsUt_oC<#*mtxqdBe#=4s8SU~ zhnnbbQ$al#bs&PsKN?O(5!MW>aCtafX}4|tdkzhA+|Ryh=oj}$YvAjDyG8tciLXUu@p)Q*HImpMZe({{T3Ox?G$P{( z)!_*891XIe#I9`n1o$FHthU*}rgl%a&`79%)t`iegS)k_DYA?3=jfvom*MtU(ICR6r~(Y4 z@5svdMh@Axy&@6R0)}+cN#!V9dy`4)EKtg96@rLE3-AHyLOJGR_*lXRD5eX*rm@=m z^g{P6n-D0z^+WR>zrVuXEtp6+!`AR6=}Cu1ZFt=9R_lJMd)cR=1W&>GQH75mRm>&Y zwUSKa@PhGSuKW;fa)iSzfPL=2Vf;lK3oDa=z&@zBWAXv#)?oG0PaVyIiEh4R1%<82 z%3X>9brqe}@>> zaX%u4hVCTqrl2ic(8BWvtf3ZU^cpq=lWa)s!5I0sWp0pMXpua}&R5uToz?{GC7N^p zeT2Vw++o3f(A|!3ZGPzNw}y~X7axf03pQqi97R}dfR^oqnP=qzCrO( zQER~z>E^gAcP;$)qMQvrQ~S#!!#^mJQb@u&?Bs|1q5pn!c*piVwBSs1`vw#*HYS!j zYyZFj-tyr2XZ62p;XKJ1Oy+DZ@sh0TaUa3J11s&-~IyiaNNC` z$UbYGY1vbbo(96TGpO4+kZrF>;~0h6?#eBWOc8(*9Nw*y8x2{9hFLMAHv912zeeY= z)aTtFk)My=CS`6oG+0EV(B9DCn-r-ZYAx%5&+GU~>NkPD^ku{(*I% zrCQ5sUAEDz z40>v2KB1mp+SXP)JbaMSkRC$Ac2LH@?;kOp8;O;m2iEDW5vT34T22ma{}+3~F8Ft% z2r@slCmrPB&5w839bkl-s^ieEMRUl^^%=zx<5V^`s*@uYag}<{B>!*QMZ-)c@&~9Y z*=(|+zJ4ThKj6mBfi@LM_cZ#QRwnr3UdH^3d6~Ufo2h-SY`Pkx?j=S-7dd@vDzYN4 zvX_c_KCU)3(o;V}Ep)Y@)GsJySdpz~QS7)(;NQLy^)^?G9pnF-+AA&tqo$!(D*v}44n4}Qv1NO92c@O4r6ovQ}TpEt& z*QN63%^lAlg{dO+!Krg$>OaVy3Z^=a%tG*S3sGBp{C4|-Fl<=(ESCEE^aF;rEf29u z*aa7`sFlP?JgTG2DK}&=Z*oL}Tb{|2%n)Fh1XO~}V8jX@^#)=|TmH+hA`B{2|6>g;^J^N4o~cVmN^YJ!_(bBE z{v*?fALRO|RHP*9lVt*h_St}FN(Vn!KlM5P?YkHiw^&#TagIRkfkNAE&l7Iz=1Z^V zC!C#N-V`e&4AxqFz~V}X8d=%AaxYekCb5htZif~5L;~(^u7Xts9$H7}PmWV<0ojpb z{m*gcnJ=gzH&l*V^GcoJO4!%5R#_w~piI<`>9#z@!u4OzvES`RXofJf8PAlyU7<+7bT5?eA&8#igeF^7_{XI=6#ie9mDCFj z$_vluO`>$$`JG*E0gnqKDP?1Xi)TktE`DTIMN#IWP-sCcq&vFZ!tsSXe z?T~5G96P~tmxSj}=rCY8Ewb+q2=h7Z#R&rx5E?LG`9D9-rPM3&H@)UIJ<@T0(~ALo z0A6U---j2r+jW*wc+vh|zO<4T@4*YZGfs=mZF5#hn){3AdWTgrVkEGhM`;OLVg zo`_=p!bAGuZaAwT!gcVW(BO?|+Abi9eAW7$V{`}WIeWS?Hgsp%Zdz2+VQnCrs{e5= z1QDWC;nanT8MA`;lJTrWg(1Erk~YX0LGBa*4zmNcM~IDMWxHOMB^LCAit62J*xPCX zyY;(0mPUR-ri2F$mi5z~7-EmV{I47~-zSVy+?+^sJ#>FEzay!iJDe;wF8mHvh|9wf zl;W$} zq*ug5IDcQ4z8om!iy@_#Ky)WPfSr!f9E2Xk%E%f>-+IZIkH_ z+1L5nf9bzDY`J0T*%o3m4fHs*E=}{Uz+DtDc)ZLU>e4+i4f}_@>MyPS=d5>wwfZ`5Y`D_mZ$hr%<_OYEKayy# zOK-;4I;=BAA25BjGKS_G(wB!7t$I{Lx~?(H#Sc$JtB>FMdfmE*z!Mwkjboi|TL3#% z-un`~1Bv5to4(XFr=nwfGHJxWlFWN{1K2X%oXaRiwtg}s<0{U>fZfj&)i}URJcX!$ zwq|iPr)u6!d+#x%s)pORDq6kEUJ-$i^MQ?U$?5DE{@!Lz2R2gy)zDu50IDIHFp6r_ zkpan>22k970o8C73%E&)Dmkjro>Td6fQHkdAsChbdS*Z7o{VUe`m>YbE;m&22?Zd> zdv0Lp2&Ddr?rV*nR{AA+f{>7yfM;~+?Iv9CJ0|&oFJUiq%R}QI*UuXLEP0%Z-rWJo z(2ig8L*P01&+1YNrC_Z$$B|4e2xT}Xw5w*0QCxJzn<_==HMcyJNS>-@w(T)GIqEoS zExrkbK_XQAB~OkjILcXkak|)uqG_+IHFz2(LUrcuH|}uJ$)ZWb()jnn4TmG4=w30? zFSzNwO!>~(kUPnr=Zd>t$1DVG=?6IidA=tG->gzoC81-3yhUUuPzkJJ8(x6)@wmf1 z{^aALdO;#_sxUy8Pf>)f41!#r{&bng)Y&tk!51MPk((nTZH*1-<{Bq7?MAcT)>>v1 z3l$5hDO~jr3@BDcHkH3o9|-ELn*FI^3HkFW?C-lC0`L{y4D#jk{0%N~ao8gfpa-`y zqy$1UXd|f~A~`K7^JAI6(I9|};HUJro+K$uYiU3&;Sh4AU&8@Akf77sd}7_urL&bd z1XBNBmJGrFI3MfM8^ZPQn0{K)-f6Le`9VMUX2g|`gXCHC#zHeoV_sb*QZ3b<}~-zaruF+5Uq0p9u~f>d_DlChkN9yr->)AkAw zh(v}TsvCH4aa=XN&t7}-4hM|TUXcLD=*+7x%q9j+DyJ>Rls6O=ve-0k4 z>~|Z|8w^B<6fR90MC&^vCGm-KU7AXMLBQ4wrN~d!GJ{YkN()TR3qA#JV}6*o868Pg z!4kiEx(k7M!QKoSk7T_dyRRm$BhC=A`$VE$2+H200(lJkk0FYvdQWnx0_4>vf{(&v z#G-A{tl^hAmO*{PZL%(DG4)=g{Y=b^d}8gXB4%$D?xO;5YRnGSW9<{KuCM+kCwS1} zPo;FYpo5_RE1soFjE8;(k1*$70)vuOcBRVJ*kB;g#c{||T>C<*>+CD3v7yIf_BMc@4$FFJA#;W*^q zc&dn(gc+fY5kUXPv-IvgglfbhCrUMnoabrzwpX+>W9g5@Qc%?xO8ewdnx6)Z?1i0M z^ftY)m_KC$2WnCai%oV`oJ?r@#S=|bF2nw|2>^Qo&(u)v#?bbkk>R&(;HEM!acp{E zkS~NC*x%GbfPe&vWo3tIU>P-bu-d&%*M!v}h@vv-n)U=@ers9Thx@99AwW2IzrUtf z)w33IQ?j#$-~LzsTfh+dq$2GUPyRgfZxhr7bhW4U+weJ!ZR%$ry?axl8>Q zU{|7gXIl5??`-F5eL7y@zx4*4r#Sm*p+up<@m4^m*3REwGtB@ZgSvn05lBKoL>$Jv z`@SW&Sri0)rXk&0)`*QP`35rzQ@3uYfhg?dbNpA2CQf2oL!~#L#o+KI#FP|G?`xW{q36MAf!dVhu|Y zCZjUk@ZtGivN9Y{v4CBI1ocTwXUa(stS?hb&aR%A7^zebLlZX*G zt|&P!vTxCG@Z@76W=(i~D02M{>9-uWtt6naf}_+(P#Y8WB5;afj?sF@*6ju|_2Ynu ztv|laapBP5GYo@MJ#0H82EUSZt%d^{?f$6>e1P!P=-lVU?U{#Fa-iBvoJq1i7*l(+ z`r#Y@ba?)_aN@I^es7#RA-SWTZ2X+?j;4=p7+Nwpi@vd$bG^ffpX#7P4Oqcpw_1kS zxPuepNWJ4G`%5_ae=|>_x|~r{k1Lb^tFGnYhE#JYgKm%Lm{z2}{^)2;dVX=}{%1ba z7a9qL%_KpT{-1%IgTz(OFCru>n!29?iA$y_dLv`zZ$x_vRxWfMu zKADDf&m%KllBz9d>0Bo(w4U6#qyQWL(ecc%fUx|4U6!tyc7gJ(Zaf{nmt!_IShlkN zaT{+koY_uMVOVq;N69XlSCsfD2w7|hnVVrou|)`LgU_-2!eYiMn@4SWb(ueKhGYE~ z(2lh*CRwX8go>ThpCnx0Xn8oh?f>E!w_URMu#*?| zZ@IwR%)zSVEY1@NG7-=$jXBD~VUmj7{?T*if28mI?bgz+jZ{>*Ewb(TVUKicNeqU# z=h&Y6Yw!plQv22TNUb0TAXk@hv?V!58d?Y+WVhs&w+%=KvqqqK({n8p#NlHbR zIT`|t!C7kCqaU~6CH7?~^{OF&G^j${e<}lQy+C{Lx#Hw_b*ZVpH_OovRq7;40V(xI z2x5(i@i&QUqZ#;4LXIfNa7?lpk12zd2_0J)5lD|Vkb>0(IMPEprXN+0C+-7ws2Dx(NBYW z@t$PXf%UPW!7`Kz70)uv0 zqd(#II!uPK1k@e9)UUjRWU@r>E1hf2_h+$V!5qEofrg<@Ge}L5^fiNJ{rvEcW@hM5 z`pv{I})1e0J3`mGJR*s)vtXo;9rREcxA-OWxk4LT3gtQ;o zgzS?@W#*R(D_{3G@W5wA!zY#0+&rtM|J}P2>-cvlaaDS0@%W~)8@cnL`oWu?bj^wI z3F;4u8_-@!I`vrqAYt-Wy(-*6UwH8?T@bbjjPo*|wF-#AY0lnczlYVjwEx1plV7QR zaO<}at+)Z`&a$slP}``ca^RU-!2C^~)or^D^xF>*Q-##sF*HaT_;joowq>T7s++y> z^<_8CyF1Z4Zzwsgf9~B0LRFgB{*K}uKU1)>c=uUp>RyIt=eKqN$GY961i8jiVt=v8 zk()0&_U4+C2c8?t8RYSg?}&_VNUfqQSN5Ki`4k*ML#bkzlICsMOS6175=8Re-Sz2j z+V+7X)q)c>D!#flUBVv-(}SVUe26w=S_y0Ed-Ti34?DJ`)4a3zCD2J#OPqA|G&EV~ zjxP)+FcCmE+;vWkjKSK8Wmh|El2Yab;$Er$=)Vi;L)(V}icZV$BuMmX&OgBHv!G=4+K}oliy!E5z#q!t|n!b$lz2#NNLTO#mtEd|+aP;JXXKoxg@DCg>KUq7XA`>@G z0{h76OKJ^m5j5PPb{S+3*r(qj@zn>gf*9`#zH7jg)n>4=Qq=Xpsmb7gvc)O`fr`W@ zv`~aqViIm*>9MZ#Q&Ndf{ThxO+5Qrl1}3^>IeN_D$Wi1!BIW${f8+h(J;jL=+*&8+ z=fJJx&}Jvxiq~I8#pD$CsrO@sHO0ajdNq3Jze|J~-K3hV8!e3hX7Kkvf0~PBWX51^ zWdyVC)@#(pyqZKy(B_qVtcgrTyMHD!{4=5yw$||%s?~nD-*6#8Snu^QNytnxp{2j2 z>~<#U4_eQgKcofI3;f>MUAdFmpWLoDqL~Hb8OwM$L$PznN*`qH<-8diCvS<%n1kZE z5xcYPNp>(o6~=!%wJXusZv)MNNF(ySnr6e~r+WLT?`_(@qt(q`Zo8MEp8oGikm9ID zXi%x;(*cGHyFvr|7*uZbpSn*YbW6*sI;?f*%yriOu}E*(Gt7&ll|}T;BWrF{{_S6+ z_m(GP>z;rh(f$0%H_r!El?h?T{F8%)JicHd&;6A#wR6<%N}Vir>`s1-Q`{#;Vgw~; z8?7lhTw4+4LOc2cB2e)2oo zPAK)cUb%1ZWoG$%cWfax9BhsO2aD2-jxxD#VncNUd)hO9K>k#i3(f(dtt@8R6orhW z{u#3z6uzqF6|H}r5i1)>hUC-6upt=x{Jj@D@fYsb9?mS_(_gXRlz25>f|Dt5#ceUj zVKJCCXqK$JIXtj3QDhS~@dGqoXlZh>UOsQVlwyT?cd>gs|L5P4B^tM@GxzHvQz7vM z`ZIHP_2Ye$;Gp&Ax9)#4`FeIva`sSf5m{izT00VTKbroK)kuwVf3S0w9Tc7E$5Kha<}dY?NMtgvzil z8;8|`+10wDxe_0XrQP@#F`0#|-tgmayIR+9u3XIrmJ6gF^CL+1B?(RHTutbWJH*DU zwct;#p%V)l8Z%4+P&d4pyRUdy0e5d-Y6ArZv6;jE7oKIsxyk+!J0PX)n%Zx%S^mWR z`f|t}qxq);dN4WqXse!jSdcw`n(oeh_=+p9Ce{E*$f6jym37*gQ>1XONwL(VvesDM zOC%1wyFPV{6c02X9AnlZXGz3w4}f6(4!B^`q{Jzq`=1H*p1{A89sc*0)Q0Xc5b*A} zzM}~o;Hs=+a|anJlnyqZ zh4$?qxRqwrGS=a?{R3asPw(X2tUQn^*O%b~sRfvM-2DVxD!|VjYDL!&>{}2oBEuEA zVy|U?8V05A3RH#E4cruYkg?X}Oav(lWV`p7{^Dn1;};-|53FW9{AqW8dfcB<_b2TB zXvmx?|23zQ{4bGZfnk9M08DQm=B;FE;BZ6!8x{2J+aupr<-ciqeESj^bw+5Af6;rt zf1bJp-#^B87Zmmd8XtJ!=zAB^4(aggL*MXwC++&`x5s$?8q$-Ih6D${vW|gIzgBR_ z5SXJ_j>-NRZ!0DOtF^)<6Bp%gR_Oelod0OyW_4#Oh_g8@lSy+oj^p^kNx#EbV;35i+GsY^WFEv~r$$d%FBxUES?mER)bq1Xss^}z6>Q}j% zCBd70HIp&S$HMz+DvQ)In7I*41OsuEH+<+Vcl@yc?7$eb3@)IE{#N_ppmJ7B*9QZI z_TrN&MN(#6h!7cWdetNSL-s{|k-Qr0xX|F&dB|6GboKBz1JX`h8(+QitzoTTuZtHU zPLMwFp=29kj_`9rI6eCzD=oMq%j{s)x4vV zpy9!pzqLlQC7@j~aKFDUbsDNK!7lb*EOX@0QO*-Hpu=ge74Szk-BG|O!&&s<%-#IM zSpisPkS`*2R50-5jk?d9L&F~tM4{ckwsrd;+P&mKt!O~IpL|FUM!U}rx{?X}5;`(& ze2OKUOwR{rYm`H@C|R;^e(RWhH5&+#C5qq^M&mW!hiC47SbhJU|JC#U3jSOEp6{3c zAHKgTXhUrk{!j09pXYnut6%l`LGShM@4bKTI4S!7`Ts;5_+O3v`*;2kXBY+h46r|q10TidM4nQdO*hR%*ed{ypmBEG(7RbNYce0_87 z)##`7&3%b@Z|<8F4_>wO#+wsyFVWkvb}c3J$^Pl?ZSLLd#k*QPCetY}C3=%_udTVW zFYc{cy5zFD+Et$Y@s`xpdd+LPdlTW-WIUYc4li9&Uq3&x;1aL7t2@yi?+pWqaP!9I zj?U&aopG$k7wvd%JtRWLI}@YrHq!dZyQR{RLN6POrZD zOltP6>*(ogY3@1`xVFrlRT<~6{##?e1F-bQ6UpALj;^(~K#QVFy=9ly*EK~~d0unx z+T{9pS0dcq7Vb)PbjHK$lYNQsns~T5+|%9Hk?7bM4|jAW;sQqSH{883-rLsMeVy0Y z-O}6{PIRn~hm&0+6Y2wcU2DVLz2P;T-D`kAcX&<5TCYM#HPtiJTHL%C33P^6acy@; z*Yxt_RIj2hxn@H$-n-eJx|24f^>HAx*(*PN#>{iqdf~|8+A!p0nm5(E$eTVr?3H(R zwt7>_XPmiVig$gyw_E*Hl($axHcj!$D`#!;rg+!(b$6|bH@CFAUy0s$9K?<+T@drY z=*3>+(z=Go(#yk_L@&o6-L#|u9=0Id7+Km>7pV^~Sh6Czv~KaDaNXkC=*ofu@A+V# z!{vS6==XY4-gm)8US#p*73F%ROrMusGp@5rwJbU3igA zTurrHG}Q~Qs9V~!oUt`U=GWte*TBN%t#kPvu8%Hkntt(;y2Y$jYkX69N;!a;7WS_5 z*a%)zg~8jjX2#@|_Xf}U91f7Mx4CO= zoZ0lXcPBerwKvwp6W7J#UE!JG<}RCDuA}Sdsrx$XDGJSt18+tmoC|mK8ALnTaq)1) z`sPg?>yzult?`~jJK&k>ReCeM=FaPyH}`pK<6W!(aPwM|J)Ipb{0t@*?rL5ix8_^p zZOzHfL;zAdlLWqIG#>Px_F>F#2YyAmD*LeE;efS!jLR&zMtQBZrN=io(OIH<~` zK^xnXP_RN2^)`0&CX&Jz5wm;+_0`h7z9*^W4=^HE)ay$?@1UfjY+8f&jw5_VdEXh{ z!n&o)n!Nf5|A2hSo*qaljj3hkD>AZ7OWH*AX=E7mhusNQ%R1hcD!;$5Bk zmWLwMZL~t2uH^bP@m{rq4jaBt zV-DH}tsY0i1NI^U98PTR5n45|)$Kp8Hd-HTih9c%Ya{%jr=`)RpaO7B9dNnSoAD6 z4GQ$eHzYeiALC1JfE(&HL{LgXu+PY;;b&D4?<>oem zZ1fOzn>w7MNCiYB$36Q5gWPu^)sm&P5c2t#d-Zhk%o+O@s$wa{V>1Lh~Z>zlD@e!MSHXUw*cYdQ8Sx!3Uk1cO*~!6ncb zNOCXYW1>%dIMKn(T-nQF(WTJ<#sw@ON0sO++|%3L-mwPu+$tJE{|lEajn*w%EZL=? zS+*p5`w;CqH#?ZVzocv9?|p6UXf>>Djl($EgHF1( z((N6st#OgE84f^B>USv0nm}RtJOi~?eyNoRHz$xeAkOSqzez0>nsE)cYv5gCwIVS32zNVR=`w>snLG}I0EK~9WG{M|MJg4Nvv z$8Q6&UY-aCvWa#;o|mys{6Dw14J1O0?%wqPK3~%TOyV7gbUnfapa}YD)9}NsYpgH5 zSD)cz7cg2!6W6utQG;=9BLsBx@J62{Vpui%Wc6TxY}fZy3;OEpSP#{`3}Lbl8O&-$ z8tZasa$N_qiTEs-7YAEuCJ$OtMT{;76Kn32AooFqJG!97D1W(1kOql8eIoz?OS@ol z5|?`5NNjp<4I4v*wK=>d*|+%vnw@LXj@O)!mX^@mZHxrHs)fsF*KGFIuW#=0*7u@L_INFw z-3W@-P!h?owR^qShAP-4Db4E?d^}XhRxJnORHEg&R%m-ULRi@JpXVgXZDo zltd5{g|ai=wKmaSFdIOVFW-iI9F%I77?wmI4YUuff38{31@>PK<3~9h5yt7TQ3ESa z&XrV?BNysGBAIH>2-syycWYc=SR;wN4xvjGE2c6FDad^VrGzXR7JRN50kUADFA3y% zH>zZ~CEnRdY5L|%?j;)-1426@IJ?!pwYBvzAO=55sVHxqF@v6>n-W+S#53Di79)dd z$y+LmNmxp5u9_JEyaj62b>(4MkHN6SXFo(5>gz=LLvZb?WlvHu$z&U$RlE_ zi~>ndP)ojtDvS3RjjOM_Br5a7qWUHC0Sok_msLfFl(5wq-{eIx4KzlzD{?wqPRwYA zQg*F{-nO(i_rh=Dy|PZo=u&>E7mKWrgzS__N4mPYyQb$Qhp-tqoOI|dTDoL;qc`#` z$IM_Ja8${J+VR%`BnjwXvQ;QhR{0!W5vgAuUFM87?alB$73`CMHlm|2#`S%k6CaI3 zs7zMgBtX( zE71cSAPj3+V&Z$c$r7_BJwTniU9$ z)o~-z&Ik_Wrq$=HX!$BwFyoy8j8XEMqAQ!c8B#&KE6ZE2_R1g>IoU@8@vf{yvWu^8 z#Y)#RO@vKy^o;WBz2=q{BxPfL*K5a*$hw7yfL+OJUXL*`*_}lDHA9mr4W83AMz)hD zBtK)u84?MwrC>qDT#8-^1hC+?bS7J&B?ZELX9u<=mM@? z;+Zolfm5M9O`wEe=G9U;+I4(gZ#OE{2OyNjnJXH!u&}NkKf?P)V!UEBJ#}WtrIE#pqK=io zLB(eqmqr&vYoWzwFU0naaUQB1*bSts$4AK02#LquWZeeTTW~PD5om3IaI7kiAMXJP z)>UV}?ueUa2MGqsyfx3nIjiDg@v;W4lCj6@>-IW3)(Ewo7-lkWV7%)>xG`ay67o7Y zDc30&tw}Sjo54upw()SIha-}Y2*dlEU{7A19}U9MD%1H`@IWWD=_Rg1hQ|IXy9!(z zZb%2xzeE8wv*z%7^;llL*L>$eKTN6p0CW>d8ndBir^L>#Y@0r7W;6e_QXWfnGSTf_ zn`A?FwKi{dJ_flMknK7)A)sK%PbOMC46y6?9>$m$7$&{--B4U_bG*416%DUJ|$KbAm4&FA|6mY)9&WFS+;lgCA^%l%|hp_;|Xc$qNy9( zAWF!v!W%Pe)4!e#0fOJ*0?EPN=gLyqp3AQEAj~shCit-+O5(L0U8vIu=+oJ8oIo4; zRzaFKmA6=D-ECe^AL}CUPZ#N=*bG#Wb+k~xx+IGQoC~Tr*C{4*8L1WRSie4L2v-0} z!&8iKC~xLn8&L+0?MZr-p;)GvkuuhZ^m^wU%PZ9M+1H)yMOK$kgVvWoA2oF{C%GY@ z@~$P}6@JXuhvk5dEUs4*#;-JEb_>!X_|oDvTpXAl40=3CAi>CGkJHy*3x=(%2G>^R zS0&e|l?YfbM3+?`nIhxO6*DaA3ky#0q>-s=@&Gl*yrDzLoVX$+CLkYZ!!l%9F`Mzt zIB&@a6)-(D=YdRiji~2&6&^~6Osy{+eeJZm27gepr_Wm44~{2u--$rXxyYz>S8>PhaLWV6k3`@2>6&_Y9{)3fc5`1U+*C zvI1t8TCim4(r7*PaWgKBN-|uweEy}&qqqm@r@RlXpgyv6)Js>a9s}~I*X4chd*yt7 z<{}O|2V@w@%sKJcyOKNW7EfQ&7+o4^TC&txzjNNb_kV^D#^2|z0f)MKq<5JAq(HjK zaV_9#j=S9U$uZvC`=yb(Wzj$gcpvi%kj)(9(~-~CVhHx+aRq0gchF9FL<_XUd5aNN zJAq=(ZID}U(a$q%)-%pL10?QjZE5ap?IWIm5Q8Xo|D5`i*XWQ6&9Na#p#wLFX)GRM zEZ&WPXH%6~}EAHo!5$LrSP!j?1y#k1~P~NbcXV@ceMnv0ynH#6b zyE;%1o6tuQoR%+LR<{DwZ;Cd04bi2DR%WJ@Z`lo#9oNvfWI4`w+Z&#Fog0=EYytL4 zKp_fLt2}*#WhFZu{gkhV2}|N{>F8}qVogRtLwUg<-0B&cKs}H^ycKoP%Wxnf!cUm$ zO`8Cb)_*xf7A=(%%Ls%?)snq&gs=&uup8kWUBI0Aczu>e8=|an0o&BV$~6K}(bCt| z2KZ4JD-g~#Oj#SCmTg4UlubKMkO@smm+zYXJ{gIAAvD4M_kt%NVT|7S-NNOU&Im#{ zTyzR_qse@A7l;Nc7)%iF0-nhIH9xwDh=klyIcRnF zh&e-dB-co5f-y^SmmP3quLY(Cp*G+(3F?gUrZeV-3%y`$qKX+aW=sv^Ah1}Lc4xkl zmIFXXhauE0UKU;21YK=f@_z6-Yf43aX48Nz|F4`jCAV5IIE82c2>=5aMxbDju{E%u ziw(HM&EFYdhrYbuvIFwC0Zj|LC7)*Ei}SuB{p9=@Ic6V#9NP=ptL;eL1?}xr zxhf?4k2rz?(~0PL-g2krPzy0ui*T8!#I$lVV)}WS?OYu4E#Y-=2EH>TMajR0VIePo zVOv$`UBEn0>*V#B&axKDj=~=2K+6?$n$;))Glz(yUgpa8A{a}E{GXZz9^Ia^for|Y zpke;doY%7adRwAq3!sCH!kzyw_PzwZs^a>8=58-+k086CJY)+PAYn7emX##P5(pq5 z8kVq0AP~Z)sAv?a0;0tVRxMTA($==NwZGaH6hy6U(bBr1buU$`sMxx&=l?xt&VBFZ z@dC7@{rmfUGB%JfW=3{}ADO1Mk%doRDd%o>syH#Zvpmhjw_${IgDE2ki`B9c{%K8A#cf|U2kJ25L~ z!h}($AgNS?;GL3PNV8yZK_h08MSj}o@sYThY$++7K`joV)5weIWn@QQiP;VGwf@8a z=?R7wTpCe3M0y&olKzflcQ;yzN$Cw9+RaCmd32*9_$JR3Ul69IcORPOSHPL3#T?&F zLUjvv-O-Zu>b7bX+g@2?>Aq@Jw@7@msENU&%vf+g_q4?n`KcLUATQ{c zAeC!+#|VpFH>KM$sJGoxqv}U@2ypIepk+jkzEiCSUAY?YB33RsW7o`K zw3twb{Iy#-W+G>LDGc*s6ro|UESeMMVr0Zxf(ntch#nX}3Ngx(&nZURX2}MoSrS>g z2+|G$7-Af2{*B@rjZwIt`ty?vz$RM5Vi=cGCx$cv(>2U1HT==d`^r8|@8i`>QAL&$ z&ymJcMvDhya54|Z0%4^h>-D6m&Z9Y88VJlXOUPr#PkV+l+N7A=8qB3u?JG zg1&}oWc(v7%5U7!YLOV2{bEhcuUXcOgRy~arCNxdG@A&W6O9rYWto{Lqh(@>2GO*1 z+}suBC$P*}^~6fY*%;(1THu1BL}&Tgs7>>Hw0MRG4;(dX{iV@WHN{v@UbzzEWN0Ko zUiYn>pdPIytf^{Zf*AJdfLJA|s+J&sl)ZUNCLxdWCMm46QH$o&^AgTAp2(LSOiiQn zut;SRreNmJQayU~Kt)CMYih{=HROE?LG_Z9O6qUnZ)7biodk`a5)oCFVudfN2rK=4 za{-%fjV8yj!Kw~(jLZTdfOwhdvQDI@(F75uUMM#4ET12<9mA?U9~@71VhHBwY-^2C zfjJ8m40^fGkLh?~OfiVm z1(Jb;G#csnO~=qpiK;ESxGaV~*=j&WnP{&Jk!0e9k%i-o`jFMdFBexNN?NQ;m15O$ z`AlOsi73JWKyoTq4N}ECYHW${P2V7XRyzQ zB}h<#ufc>=j0l;|cww20h$fYE>C!DCE6KV|GUFoDUI0<}P!tqGCn+Q~Y*y};U|n8i z3fXu8hM^biZS20O(0=d_4-A8c@G4z@cqQ2-W#1ofdByT+}SlnfnKkC_$~k*N{ciO;A@Pr-}YU;weme36nTTT_!h^*N|956OYFrU<{XH zfJW8?-}a7{Gm@qcAxUP!R@9wpGs3wJRJy6&cL~D$5nXGJG50IJPW!TgWvLiu7N4pW4Nf0U-N+1K# zcR!@52sE(hW?`5P{%saX?;e|mK|KX3r&j*pf=A-HvDWsE2Gq^$D=?w~6F_O*qt(qc zk1|St?w}jwU&OaAL}KOz6^sqNS)kLRo!c1EDAF#XBLu8E@Ox170Qln`(${HxEsag_ zqMvYZAjbSKB^UIQ!3RZjF#`PKC=v}iU6&7QZymz&)U3o-}Pg_!oU zlt9AP#zE06b)!J2I&j~ADqCklDXJNmE6HF^Oa3W4+>->w+z{XHWW++Pe2jSw-pUqW z7QaKSxmOwEMQODs=?O$PQNLM?opy3Fjq^-upQ&6P3DcCPqH6XvdK3$fDko?*si{&E z1#0?76{M5B#^nu%EE}DZSL`l7_+2*NBz9YX%D9QdW4JK&wP0px@$*)u)x-AQ?d-St%a4dQ@VBO zg3Ss`Acbf~tNTek0I^W|g=VKmO3g4PMECA~UqCWx2qcl|v3z4PcW*w`VgeM4l4s5@ zfq@n?OT1#g8xOd9bThIqNM7TEviZC0WGLQE`lK4T0a_>i|KCwv#azSE+D$+1s zz#}euP!3M^q}uJ#O&Jj`wLtSRXH*j)F`aWEs-ZMrqI*rnkTe$7S^{_M>G@ZrV60P) zbVN-B`e6|RTv^@yT>lG_@L$Pwx}Rwh4W<|KH2|>TGK{}45AV;-XVGy8D=-bj-BJqw zred{Dq@XZ2H*d5`mDvn=tr;u@JET(Cu9M1IAeM|T!0;fIw!L8rmn>X_LF+kFY1O<$ zno7fad5-3U*3Hp2#|8dwoY*3q*rFye#>hrY%)t zqYI{$-}!R=_)A`5$x58Ou0ECtZgw2Azvd>EJcFZyURg;Yrr0=>YjjRAns-je^yRc7 zYC!+~eftMi_EUYa&JbMPU-Mjv8cK-KFQ!LEXJHW;_9*gJb$>9;wto!mFkU4CEFY+0 zRxJ49j?tI$>K~Di&_sGllVd{C?jF=Gjgn_T^DqMsEOL(SFo>3ntQiOmL{16Yf3b0k zCL!@l4}LwwNDBzR1V_(NikbXye1RP=<6vbUMe7%FHc4y+8&(6DmE%~bFrAkKm_319 zQ^bm9G4u3_3aokN4ITVgB3telf;ecilIl4We?twHtodbsv-HBi!Q%d5DXg>@C^m3m zn~MKzRt|GeGRN`*H5>B;cEM@`2F|G{U%IFykT(O6^k{lP@!D>B;s*>RX7d9Y2DQAB zlU`uH#F;$4H%F03EUKD7u8VjWRBay=(1(1GNLgQVQ#7vtLu?7USlU@r0*!;sE>NSe zPQGH6dGWExAOpRKR@YY2D)#B6u{{8O3KS3%w`MI=3Cw4uiG8qm7Uoj2R+k|vy3Lzg zUS4V*0f9`!<{AWO*s1KEea&K-lN3mq-0)wljFPo#x#JgcG z^#0foGVr*f}818vA@VeWnr|O!wY8A z_`o{r9MVR3Nr@VPW#`!XJc`ITk#{$$iNoj7Sqp071fD@t`Q=#jl3$L@t3t3tPC2Ly zW7{k>dEP9{%8tVBux#u{#h!tsVC^wDvP2ak%dz%&0MYhx-@7Q!H< z;#rmBum(XM$5T5jk_E-X=NHbNLfbzJXBU;jxX8t)d{M~}zsg&z@+;NIS!!gZ%Ev1X z-~xz=#o=;i&8#3gnn*AyH&c1QH5m@CdEREGs0W3>~ z?us5!gJyj*?gRR%Vl+5#WA>~$^A;8_ol#M_P;o|!%V(P$XA>Jvl*3unC=#MM<%?Eg zi7)*k621?g&m0A^(iTgq;2bQbDxS4iWtEl|E?5AM>1A2IG|8d5DZ=tb?5W^**?B+@+n@loCo`K7ZaUuoQB~ zPvan@W-UZzs_c1{REfBuI*aGdn_W2)TS?8+IND1}IaVNr>2YL7@=BFEZy9Fu5IdbQ zhpoX#jhiX)DDwh6T*})S5jU|n0dkk3J>X8wkaZj(cm_lB7U76DI;=|gkT8*HOsJs= zF;@|!XvwUlrR6GzH|`rkESW&Eme{@+)(Czm07Lje!Dh=%dnjZPMSPkw3+$K6XHZZr z5oL&4rd{~-H*dLEj7&lNJGComwv;5ei<*T*ZGy-Pz>-8R>4Vr6N&yJlWM??<)nHgI z8cjv{N)(IsJ8_OoR4S)}mOfT zg&kl#4a4}UkXJhruNewx?mo+2wwU(Zq^*gq4GtPPd))Ki`FPI?J`vQ0EoQw0oj;XHe)neNY*d- z(${}6TY=Eis*2_Kn@Q8@bS@8i=4GT1Nd#u16noufXV6dj0MrrRXJBI0@F6;B)M2H< zu1AHndTPS>;TiPP)BJJ}dQBgIFnI6*{yRJjSV0$n(uebHptdMEpogZ3X+}u)RQk(= zrbBgJ*mEHrg%dm+&;-Ki1^;Rgo{m0!AhR`3@^(haNC>kj8D^7Fispe-gw+6}+y(8M zYI>=^21Q{PP+k^xqX1Najn=FpElO95`lv;H)uMiCQGaM03uuiA=1vufUOX)UUllz0$Tq-nU5yE<$~ugAFO>UA8-;0(oHo#*5LfQfRr={;?n^+Yd(b#J+1QP-oQT=1DY9*%b=_fL74KfGUGLRQWXwNS%PyaW}&(8 ziI~xM+TBRn@QR+`ZnM|4XK8sQm(C1dWXv*MBqx@Il7z$dH9nz_clKfj5c(-O<03YM zgQ81|$mtXt9?n4d!x$C9xP(tikw=UKK)2~j0HyIBH7=xq1uAsH2xA%>7&K*H_bj2B zF=xquD&{~Vvs@M2Nh6CAGqj)?UdZUER!x;$;w$TZjhldCGAs$?51?5UC9-O%1XhqG z3MTBzl`un*vI11I>>FTNwC*o)B4o*QAh<~=0Kh3X=&NX%tt_CWVu^8@r`CWFEvUa` z&BOx9Sz3a#Mi$|fs$BWfds6vtQ-8ZD1nc=efo+*b*dRXWxd!#p}r1*{f5 zRu)W0=Xhdo1S<(q?!ci0(2`4}!@;RL7_gZZC^fTWE)?MTC9>FS3Dn+TebAvtbFuXw z$2FK4eM4`SU8cC^(a_sW#bMhktO7hMM~@}36=RiisceX;0wbnbrT!7W5ET{C45J?` zp;j1cCDb*V3N!;Yl8)4C`@u152nNL57VS(}SYlQ^(vuW=CPX~VDJa$xAWasMJS?3J z)@Q?*kW7K%WjK%n+n5$FEJqi;WG0#&FwqFm_Aw&FzCyGR#8ojz%`TfhXNg)~iVf>? zNok&4hF7x~3|mj;VKhPA3Y`z9X3s|kNO*vmFw%{-{y_i0t9OXR*e6fYg_MsHvKsKi zqNPjbnkT4_m8v(6(Cb}^foAWeOXPvx_}noy8){J*vk>$V5ZnA>ptFcO6}jPk_RP89 zTCD$*W2w}F`KTyWv4DQziKC0@{Hs|@k@*En7t+yLcqK+=KAu;OqgWJ<#l?#CF{27| zO3*dqpxxraoZ=zriZ&P)j?5c3WX{Z)J=6R2O7E2(p@XB-`uFLBRYAk)Na_+gt=BA) zkAiZr?mn-i7+Zgb^z4(CmKOEEKGD1qtSN?ZZAiZ;bi^2(X_+;W1C;PljYE2-M}0?) z$|^E(#o{T-%9r^2r41YqMJ+N37mh9*Up!?Gup>wjwj57(;h^%<> z=$wLaV@8jeP&_17S{%~GC1ztq5st(hKO{X^Lh`RAh!ce{Q#a+Vzw^ik}*X?`fw%@6GwAt%{s`yK42K4NXn3{o&Y7{t+=IPKD1SM-Yz0|vU3e;1eo&xn0sHZ?Z1?nkKPl0+0)Kj3I z0`(NAr$9Xg>M2l9fqDuADX=2=68Ag<9|fZ?0WHEEi@($Y1rs;^D*(gXH2+qrxdO>j zMXC_61!^8XCAJj*v*O|_2egty&1Sq=z@>Or#^L#|AJ}-xRO&;zD@T3FceVNe-!s)m zeAnt@x+f|13BRva2l=k_r{-?`!`zeqiMs~oXXf4c!rUXDn|tOV-0_`Ubr|>6xC8f$ z+zhPgnO$)*YGV~vZBz#}NHy(tvM5$h>RE zw)g|e68ZOWUxfejm8-8n^y5(g`s(n%;?AVZTHDH19+BKQ%D+c%$(dGWva*PX+_#seHW6M_J6X zR`lg%KV3mreSt$C(VUL^YTU2#J!-k*{8@Y#54~TcOE`;QZcil90yLt zxsc;IDGl97*iCEhWVCj5d)MyNp=*~ODOlxBu2YBBEn2l4c##P=5I6cCAa{BWx`quK zG)PJcg+d;4mIG(AV=lC;jw%9PYOl_X2C_gos`(IT*Z_BOmXl;2a86T>%2j#FwoH9o z0^d&f;s|(A^#lIRxL*O9)3FRnA>fxv&)L-Okhz|0PH%0q9I){NI81`@07z{O?7xp$|)ch61nt*}GwC z0}b(Cv>V_3#S8gGWksN5Gb+E`?c(mMays5PbXadI>w&IqZb@GDtwvQ_FI(NR<%NC5 zHTl{VeVb>m?7h}&zhv3{`3+huzbh~IhEbDCQoi2XU3SgY_PJx1g(GR3r{2-2!-{(s zH!DrL?Ydsh`NOA&*7dyp)}m?m-C5A?yqT#tU3zWP^v;7Dc3Dpay_b;buqd*O?W z{n54t;S-%%;QTx_T8#y7Pr-EsUwpf`kLCH?oeM>o7FvPtJN8x2)G=l22D+(kiL0G%uOqsfzEJnk z89G;w(qr@lJw;E|GxZ!@p;zjw^!55?y38%8`V+pYb&}P{YHGEx+F22+yVcW5v-(>XS%a(`tI!&0O|Yg|GjPqe%B@Ok zrFETkgLRX&*1E;I&H8#&dIu_29z!7)0?W0%knMS)ke!5{3?inX6Y?53cy7?Z38ANR zyhfgdF0Fyr(D5ugga?Fj8+vZYaYG1*2Rnp7jT<-vCl$kw@pL?m~0PBy%qK%fJ95rUz zG6hkoW~Qo()JRnl={T^hnyu8O9LE0{KXuKxdH5*$6>36(>fdQ%Q`KYofXO#ES8AO~ zxn8xJ56)Cq7pc)6mPmeGtwn#4rlzz}%~ZSLt8*ZIc+~xdhl`897wOU=Ez@#&}c2g~SF1;L!+~lNBb4CG8 zo#)_7a^~zUd{z$AkNKFq9hoJ^R^d~SS=m`;;+N(=htuA0O#J4J8%M9$^F1kN4qcd6jHUPFfvH{oPBcE?P;5RXZFc%#u9ps?rs(J> z;z>ANyO@tc1{epo4j+!)qUJy<`trkQIx#yhH;)e8%c2kPU~xa4I16}myQbOGIc~BX z>kA)V;Af`0v-8GZnwN(>6(BHul?Ug1<4@+aX(OWS>o;4*a6mHlfQ~PrPh%F28insn z;DJ6;Nry@C?j6v~9I9gu2#lUbZis~d=5v!~FRVEsLpI7@nl-r?+w?~BRy{e1Ig56V z@=<7cqq9ckVYehsVadYxiD?F%7C}T0F-BI$n;Cm^@~(f7N6xr0#l?QM#}|&mH@ve( zMZb|TJgbmCvTBaf&O_dF^7zxM(NAa4Hpt;rT{z6Q5Q`}AZAT`6yS+qfi#DD?ET$(+Z)=l8V_K}liYp!V_=d~9X z3bn`INiNhh$#q(_NosaZ%NDI0ottcw8~SydHx4)Ppdci4&`=v7GAk*eFFJe6YTvMZ z+xG4LyYBq>t$=v^_z8UP{lxJTcv00S4j(=Gg;K{AV8>3VFOO9p$6xh{>My@IcC@-$siO#v zm`X82*q)#Ej6N(fuegdW`ap@*X{M z;>6LFAp6-B#8gm5h@W9JaYI*^`YuxhZGfx{*G_~jvhhj5DRcYEo2`5 zxDyQkC-Q(aC>7o*yKq1`MtLK869(VunaPg4Ar~M!$PjZo(5r7(kEzGydJNCz+O3{a zzs2=5t|xK*0oSv*o>P1I`jdK5y`)~Q^?FOarC!7J2Clc|dIvg#x!zQ7s=xB}d-XT< zZuI)QdKK3PxIV=7nED8p$vE=p>rHl|K#fgYaySZ9;(&nxTsM;+m-7X z^^E!$m#58z(H>v6rYlK1xDKns>OEY4;j003nFjhx^(8c$L+XfJkEt(kHPYsKOf}Z# zqWm?5?&Dv{x(Ti@E)0Y9E6Tt2L2ud@eKXMbcY>Z12;+w}_vX4e{95Q1H85K1*18R@ zR=8Y!94&>ku*Xze-B!P@URUqqI#-_y2wm-b<`cX%w2U?-5uA3xKed*z8aolpfm^y7hR-y z1@8nQXYT%+k7aNZ|N7x#VGJbpn>gIrKx1+LZ+a^C=-Tb>bMo;|*KU`teaIb>> zA32=@d1>S|M2Q~&z+Io@{D-5j~{+&*raJH$QWyy?vGu5&Bh zT>O`M74CJo=rW<}Z$YlHW3SxjQZ{zMJHIbsT)3GqXnc{qA2GW6Vi-v0Nve z!Y_sud%E(J_&vO7QU575@)C=|JQaKW+}nV=!M(%%80~65x2>w`*R7WJr>cv-sd`v- zR&`-@UiEjOYuu#Ls|Qwpexj)QNcA4|cb#dCt)6K8*qUR#Xic>n+D+`q_FQYZeJOgR z%<9d$!fJ0{Vo$U`v_CyjS630fwKGsJvsc*rVbJL040J|1mpiMSD(6;by>pv$yR*r; z$GOkh>ipPw*xBJc?)=XA1IqQTbI@t-wgyi{+@5GB1Kq*yF!2B7;Jho{DtDc`5j6N2 zq~0z_+TXf~^LvZ>gI=d+RKEm0Aho)I^*c4B`oZen)-r1a{y#mj!n(;GrtZ>y=x-~! zj;b+wjJ?x-!EOty&Xus`JdA5fbxHO8RxA5lyMtY9kGI!UZ?o1`|J4pV-_q@zYwYvw zC+v-SsME;)rhShc(#@Rb?KkW}PN5TWe&AfG-?5iCAK6WupEa5j`-Tv+%$gFI4xI4zZ!o9^^ z@7@FHKGymtjQoGIzvKSg{gv~Y`<8paEkld=*!=`D_@J9+{lopI`wXTy(>L8;qW5?KE&KuZCHDz;kNc|oocjhO@)7r_dmQE|n2o%* z-FMJ7_Pd{=PkYhT-Z8hEx7Xe0rg;~8e?w1{=~>E4}L>*S_mr;oaa>c{h7s^S9g}2>%+}r8x@b-uu-q$e}c~7~AoNS#9g}obO+VgJD z5M3{`zV(vIbIg09U(&aCJG-5IYLc(&}#;F2CpmBk99WewTsk3-O_4l?YBO1=sre`Q7x@| zU@^T%k5c#Ot6?l#tXkpflhh}vK-2Y!dO@4(OZ!WEi(aVbIrnpDis5wE@9YKE0$|-> zwXj>*dz?Ma0DFL)qmDR~LhNei{@VVvU1;sotF0>iOY2S+aY%Yhl5C#(mg(*qe^)bzIY-MK1Ba^!9tza!vQbq4j_*@zyhZ zJ^a=KFC4nX`zPN!gy@a_JA|I}=(0j-xajTo{6?_vc>O|ecyD-weH>TQP}9(J-ac;v z-v8)5=e_Cu4e?$YnuqHuzG8Gv^z=uS?_8qGtefqwb|2^vo88~JJ=`hK0X}pa!6Mzr zYY9zYs5i{J8+ze5?|9{N@2@zAc&n9!uq&d^<Q>dT z*7#0cy0NM=V(+Yb=wKf5u&QFIT87vuce^BK12DBf6uB4^3yJf-0y!dz-d-!ldzk#V zRbqcoZ9!?ii5V{wZ*8%z#!Q!AJEtzqKIFA6M(|W;-%;PiJqPP0YKym!^E&7Zc%Zfz zR-&YonxWQm*gy7Q-uY^^3hB2{Yar{_Vur3cra-R4{QdRFODoLz8SKsoS6jSP{};iE z@-ox^Q^a6$`6lWgTQ0e7?oul-kDiZM`oSi%OWlbS27=F<=+klFaV~MGDgpfmf&Q+h zT5gM&X5oJq>}nNwGpQ_AX?i7Kdw{tdDXx_AUBhvh_Eg1n`fjbI*`n@7D)*>+nXgT} zBN1n7l&dW$avV>`@LPu2sy%8l^7FKsieH1d3wEf!+nE;*7P)GYo>1l)-p^}*2ak=;X4SnKof5o z*F$H78jN}(zMP8iRFkckU*7` z=~Kr>c!CDfMASRX8+^f8YIwOo{Yo*kwbJH9#UX6)aYT3KM z>%NrVB@%WrICB@MISBXl_&;@Q?e(|Mplr#}KFh4G>92Q#Yn}qnHy3JpkXNlBP13%Fb3t>jgn9w*<6u*nQGTi@f}XDAyWU=DSF=8>a8)S z_rB_(KStgSEkDMJ1_vn|Q|-8)--UG%d+5SpuyK5-iTi>T@{g_>jLs3Bxs zV=Sr&BgOu@8CJiXKzdZqBhfb!Zhzevv7QfT1bV}z_@At9fd5pCHe11`9b?s2>K^JF zpbN!gqyhEhyAW=;av<+_p~jPtT1byp!_*M;AeC6ju?v2?u#RUJ`*nm?K((31>CBK4 zF9D4HO;1ko`~TJaL_K*G{@Y?K>HE-~s5k)@D&pW>SP4Y^7XAA;2404>aFk!_$=3-7 z6Gnx)U&=wVBZjjHz6+Gxg)sC>y5u^3I)S%cpr_&B^?14y)UcQu6e`w}BM{cN5X?oX z?n9`pftsOGHdEIEO4P%`5NV$Z6f-`eg&HwjKt4h0RUkFvLp4JhlIhziF3O*u4oO~<*IfbX8OZ(7lwx!xs#07o z(`OLq6XW+?SO?k+ekO&8CcgUz$8i9#7*(k^HWW&Urr`74F3`JJjYnR#Kt_EN;qp1R zMy^oGL`AxW^DoIIny2jmey_&t?O4n_SF7%zYEzAGqv_8v!}=2DS&2SnxHr`^Fr(W= zS70vL(5DgXJ}Uu#8>6zn;lC9BW-ixez4I_;s|Tw#dOc#VP=}*b{Tx(%1}PD*$LP~t zKZ6yX#8r2pl+S=W*D0C-Y^9PRWj|2ofZxNw>5Q4^Sg4OwJ56)b=U|5XPUJEfv%Sf{ zx)0A^Ak-lIe*wP>^ia$zK7*%Ln2B8i+R$t?&8xr8Gu@PKCj4H-TzD(Ym|u(k@4&B( zN=K;0Dg$-$DoXw;N_nn+Rb7UsAzaGW5#n6Tl#WxIP|60PISzuPSc#Zg>idvR1Kn2r z9&7oIAl=rw2_zfMm>yO%r@aod+h1UPteHurSXr>L#P!SK|LxQ1J%T{|59`ZBVw2Xw@44xdD=`KdvtDr~3^EcLDs?gD+cw zF5kveEZw$Pc$TX!!3xGDh@}egG*{OEZyNqvVFX6}m;)Nq=%>BBw?aKo8zEhfT4WdS z_IiFN{jn`#n}ih2H4$%@!|wuwzW{!1__sB3O8==Gsx^8Aiic8cg>q8N^wbu)rhHS2 zyjcy?wO{LjH4I!>J4U_Fe})3Sby=wlYcKwnfsg(cxL@F|)J@#Yx{pOyhP4GNQZI0i zIo-i=bnR7NxcO)^f3P3W^!_1QM{E4=vDZUR<%1WmC5_(M<(%uB=Op8z6|}45dQET9 zuQg|48H?lUICO(t#0%5<&7wSuqZ;Pvg% z6%4=Dban7n=#JhtXSu%B>2J~h7QotCwtfe=vq+P`I*Z=cL5c0;_)cBA4Umr8oMOFG z2lH^9+U9&8b1j?Huk@oj!!kMZDYCTIw4R2|sR^zNtlCQVUCynE{Z93avqeAS`0>^j z=1+Q}ZsIg?+BxStr!Gyk)6jYYc_$ut3ybD{qQ;>&t1aG7>}1HbZO%>T{ZAclZ80=+ zF0i&aOF==R)-iRrdz(I_Ki8k>a+PKcupD)teV_eP{ZH(S*#mq2Tz!jv(J|P4!Kt;y zOY2w`>r^k_Bl_R1w&)$qsh->4dP>4iP`|}KlAcxv%eLBj8P*K-wBxB0&OUuQ4(w`C z9of!N(0-fqjMK$h0Q=$_Xi+aYKf&)0^+JrwcIb<(f!2?8vUk|d)7?1`)Zl|bRru1u2M7^)zvE1{jILn_wAP0 zM6t$ktb6quCj}`IRWqu*w)cXV6*Ps}kL11~L=`rqb^*Mm@kLEyyBsQ(>ynf*AV z1*N(gE3#JA+Wt?Sn=Rm=MX0q|c4>f`OLd-bg`ru0>$e!&EY*KM4aK&&kJ}m6e)X7L zTiva3_M=qy;-BiGnMa({6Q$YftZ|?tqMnxO-ri=%Rm879!aR+wcGMc%>B_cOT?Cpr z(X!mA$J^gj$=>pRfjHnHY=x9TMt zJ+C_)BZsEkA0Jdb-MOded26He6sF=s=(9d|cR0V~*8V5Az`aPniu5jX{$PKIlwMJv zfR+{{;~x8upoZ-nRM+XLPN-I?d&Hg(X_k-Om_*x+Xc;fNrfkzy*!mFZ-EQ~7>|95* zX)1Al>n@DFUv^({J^h5fh-WD>RDa9JyWi-M&>WgtjWN4)YWiIUylM6cl;zZTi=BDi zt9qWd1o2gzf^ILng`mVGwbtez)U7C2*qvtY)jOO=YQ^hrEq1Q-+F4h6O`$Qbs0cSvK+GvcAZu@R59;6RwYYA^D$<*DxzoxUYv1nNh4eD4EVQAQbSm`ymfjTS z2l@l#AqQ$(du+N~=zj;skoe{a z+cjy{sy9ZD>9~3#%pCZas&{oC%rXwcm5D3e`j&2O-3=cb@wc+52ciEg*nz^h3|v_c z+H>tAHudBWpuf$AU9Jk(LbV&Z1NG!v^-sasH)5_S2UmvmJYsy%ep!!q+d-Fnz#gQF z-Maw$1M0(Y@F!T$GZEv(;ch?7c+way)|01u_c)L1JnTV>=;;{QyWW*5Rx=q^xjoii zf)+&7`!lGQVQq#5qATuY&If9p&S4FyDKw7_EI9S68p6 z)f$u?hWMxIHrA*1E1I@;UTt4xf2hcZsQMS(3Y#~}HBqmDwHC8-G{&`^g;=v;s7F4B z?fYRpxCd8;wGe3AlcX#MCSR8M0`&!T0f3$O*9Ebj|uzOnHQ1{!}?qW6C?O|qemJ*Yp7WKDhN7?1&zN)#NMOzo;Un+%~(r zzQO%aP0+7HgZx4$x7fWNCEth<+5-KidJdtUbuV#8x+B~|m#Df&4fggry{rbXhb+YW ziBHukQ1!U`b49!!qtCnQsQaul2DF&~+r|Bu0qty!g}rLKy4L*>*4;b{s&-P(fi}Mk zQ1wyuyi0TRpXh(Us<%Pk=yq0B?tXoldQso5*MK%V)idrF>J9e;>}+hQ55ea2k*kGZU7VQWw)3(z` zYd1+3VwDw@vO>3Z`|9@I|LD~yj z&N)^x)(%{)|Ew-@J6YH38?c^Xi1kRN2m9JJT7iA5q^|+nxVWqxHw?>-MLr$oY->f%>8P zj=mHYmhb5uu#Hbq52<43pK6Tr87yMwzFi8$ z8e%s`dsy+;=o5B{y$BZfe%5_hL)2J546D(-_Nz|qR}-D>z3OCnI0aeZ;|ir@b(lS` z0w;i*BbDiWVddPw8@4dwt0w|jSV^bOi<`N00UZ*J?;se5v+QTmm!ohf{Cvef296W< zapH9hP*J|TM7|Ng2x;kk`u6KT;G&FyS=l+*s@J7NDg5gm!!DDU<8J0$1lj+IlMpQ1 zcCfRRHp3<*HE7VVVWUQk8#ieZ4mWL@oZPJ0Ip;KQ-l9dzmaST~Zr!F$+qUPP+pb;v z_UD~<{`nm`L?RtKUT{IDPMte<>C&}pw{9sZ-Mjbbap8rjsXcr4>eahv%v`TG<)jW=WA#DOiO9AVuMafV#^>_vIBrFw} zxKb4jbyKB!u1Hgp(&DnG;`t%=K7Gba9Eu;0AOG&*?DTSc>!ow#d2IY$Je#nm=?# z{(p9Ud#$Z~M><~6sdJaE-BP;uxG=S6uii2Ky?D^zAw!2{8aAFYcixrr%N8swU$hwV zcj>a_D^^~0+0@IgD4ABf|JAFmx%Rr%*WXZe<4tRBUi-CMZe6#2!)+UHzvJth?)=7G zo44Hk&3o>>?^|2Heg6Xwe&@U2+xGn*{P3Y4{rD#j|MX`+f8-bc^UFtn_3Phk-|^Vv zJ9j;?`^l%C{_Qir`~4sGJp0@q_x|b6&%f~EOE2$x<<-Bu_WB!dzV-Gyf8GDLci(&e z?;m`4;G>T}Ir!;6{`uMGUwnD!Ft(Rs8!Y&bcn}OscY5mEtM9;G(L=HUsdx1hsHZ?Z z1?nkKPl0+0e8nh0{qujakH)c7|IzsWTjY$VQT%(nQcUFzy3_dwasQp?%(y_=aqn4i z?>TYr|Ls>9u>ZG{txvC>0`(L~KmoD>C302^1C4L5_MM5aVMP%9*ofcYxyc#vB9lG5 zTH*<9N*sSuydV{{Xu2v=BcKnDFJ6P>t_fpm7>{^T{5AVCtBpZ`0jq{6napY93=-j>puJ!E+fB?1G zm>BNU0lqazbZ#y9?P`g?ed6fVdC3jpv(A|3cT60hw)i{L(!L_K#2+hH&5EmyZc+Ri zREY79iqy<+6u)Nl%9lU!h3*)K=f~#9lj#HGenA{R`QDvsiKlZda;eL7|0G^N26OM) zv1vj+2R>}xHDw09cdMoSro_>UaLIMAC7*tIS2I@Z$ERC-rh3FsYCPer(}eBFk011p zZ`w7&*T2+Lpq>Kt6sV^_Jq7A1P)~t+3e;2JOejEleY|deCgIK$ht&T6Wc;MA|0m=B zPsV+wG&~hv!a>8S0{oZ#>gjiO1plhn@7a~^|9)uVf1R}TtP6_M*Xtyny2=mB^{-I5 z{QR7)yz%3q``Ng;A^ zXv%f=@%Zs`{im$OjA!(|8*1q}_XG<(NKo z5D%BDuHs2rT{rEb4&vc*A)d2s7fk0mh{w-QowRr4=WOF4{kul?a$D?(SpSp^N=&b(_=BKX8 zRaf<1SNZv>#bfBR^K6?1ho?Q?XX}_gbr27gt79Fs3o6f7$=>r-<7cK%9n{xXEgsT) z>O!v8ReP_idatW;ebw?)S90U477w=zefIjQl^G_Yf4T`5p9msi#$E|~S zsD0H%JWS_0$Pe>R9mG>t`7wI$PRiCa+fvuZ_ODVPDi+R6ocycN*W=eypq>I>Sqi+h z+hpyn9CJT7jP8rJY|6qdbMG~S>8{qk_;%)Oa%-;0q<8hgvdrn@$93DfWhlSTdiHhT z?X0e@ev|Q)>c?=UI?KJl-2Z%+xo6&%x%HV3Z~Et+x34qjR2B{U&5oB}d2`iYhK!o? z&Zq8uzZiVY?oC~ORQR*;=6uS$q2_$cUvd7F+A8V1^|)g97QrL8UN;`_t&fadSMY>d z{dnZab)&LXX6f%khu_OqZ}kr8(j(ahzkTL;Q%VQDSv@M#yr&5r(m;m@;#hs%VXI|P zWcy@qXp9Bxi#Gj z!^u_F$Z%5DZpQaB@9Ulv$27u&3&JW5s0M6p0@ytQYbJM!?_qgv9DqG3&o~s69pUYh z=U}=A1V(EJ$Pu1Tm|)lzLM)s7;Rr7!0c>yrSdqX6b4U}mRABy@3>4pr1h91iqxvF8 zcv}U=o3;h^h`@sRdq!Y5O_LpkeNA9NS{+OPbEH!a;pFo0Jou>1gQg}{0RVCw`% zbRn0C|E&URNO{i=C*NijgxhSev%`_~PIfqDotqU-TjOPgGpa)NM>?FA8%}{=cDN02 zvq4G9(|(C#G@i*(eH;?l-2})Dr&)J~lL$9inD08_6M}UX7(J7tdxpS*G#V+ej~UCP zGfiOG1j`Lau8};g5V(IFEycM`V0|S#!L|zQ0)Y{29uZg>!I)>PD~V|cf3Nrjd3k>V z*r7OB1YsM?pq=@H2|(#{QMS~oNdCtngy8s2EKk4t%( zD!9S6yGUR{er^Ld3XJ)j)1AucQ9W%HKbFPtn*txA!J`82hG&zHSn#JtMG& zR3tf*fs)N7r;vu*m(h1roeg#EEV_h0xKn0K{$Dxl^bre z#?A^ysvN5*+y>Q%rkS<-={+X>8wJ0U#6k7GSzs(55MYkf;ll#&F1W-OPYSFX!GK%R zFr1Xv$nY%j%6{?Z^1;8#Dvt7se~QKm3Y#0AW-T#tpp8_1M}or$hF)7{s0%y6x>E=+nz?kbNs|c@g0}80{Z4S5^ zcq^iKM2CKY=l3lsfE5Ug@=tO)Sm*QnDu);4vr=%G4wO$+F2%b};9c=dj$m5_CO3vX zA}_+q40}dksT|ViZm$W9`z(~F$|?*;W`>hCW-Q}JOFDiu(knMn!t7kV7UV8E-<3wB!OK?uoyq& zqqCS8Zj;N5OEg<8c=HJl;3~_SO+=$I-Xng#9z}fiu)qcqek|TRk}b2tZSqX7Z^FMO zxXlR{j^aEhu>K4&FsHG3aRRV531F!L>mhi=%b5bZgkZ$W!woM_5_quA$^<4=!TDJ& zFrSYokDCO>?G^6?+a|DfcqT`%?E*_>h=J`DSWrLQFR(}e?~uT_Z2(U3HOA+>$gwVp zJHa9X3-UleffW)m9N`rR>L?os$(#S>p~5r&W3R;Ueqqa2fzm3Zlw7#ko~qYV8M3$mcV>{lhXK1U_uT~gF7Jjjlw@U!fQ`Ia6x@1O<+M@$Q76`7wDD0 z!hyRl6A4x(c)@g63rw=a>24BOkOtcX7L*Cw1s3F)y#n)jhGgb`f!%^-Y)DNx|*fau+;C^r{>BvNn z2gNTq27FXtms6ua4(&-gs%yL;ew!#RIEw#$fn7)duGe{tPcp!f4sy2miC&t6ioeVk z0z{uw!7Cv=*uF%^8_jxsW{i(0&yxgq3gN;LtW0177y=sNzFJ`XHKF`)@_H*T+-4o= zrfZzMa7q=?@hT=FcouY)fy1*D-*yQrH%?=30@!|mjg)jL>>+^#+iYWLG=6-Pzlgx@ zps-xemry;!#vt;{)bq0VdM3I~m9X4aShg0D-i>x=P4?+ZdAU*WGVx3zMY23bx2^Gw;2C&xtM=*n19E`my5#o6XCa+@>YA; zs`#)})6c)Hc+3jo_Js#@xU4{mux%*=s4zwGhp;V-w`zQ zP~3YYp8gaMTtEE3C9nztAnx@R+Ntmt%30;+Ve~bnCWBG9HlhR-Q8?yH4u`s1L;YBl zyD}W9$&rS~izHl7Pb(GJ2#O1i^14D`QVk4SCoo^%CA_Tyn?M2K2=<7;g8IWV0t?E_ z*8~>S3l0jblw&jFF-H&>1`fLnl7Z4`FYt#1mtbiE`-#8`aL*OkFG&`0{ef0ee{7>e zpD#AL{O}_C>pD>dA}GbbQR3>0XL1C4P+$&24D3;X1@-1V0=qeY_m;qdy2EDziv;kJ z+L#v+lcxLvBc3P6pSdt0KVapPPU7Y~7Nnm2G;;`G|V4V@~c7buf zz%qizs*s)IeDT6z_s4~$avTy^kfx1=p@Mmi2rLvRM?ZlL5g6sAKwzu`a9+?ljBR5P zcb%|pP?C!TFO$LougbcX`yuLI)`?#>`GJq5f8qYOBGCU*`+QVziv>5>Z{$e7VT5wD zm9jiIDB(s&!^O!1$ePM<3ev0@E=7dr*l4&|Kjq62ghQWMGu$)@7t80#>8(tV-ew8s z)8Zt#g?!FU5N_|k87@f#*1wuwri7bv3c6gAfG#Wkjr53bAC_>zKJQ6^4Wc~25iji% z81rZxFD(f065%?cke&{g+rQuj+h(r7d>KRSVUoalqvNT zl*T53`SOI?%{GC>>u-err1(kIa~%5wCS+jP0f9*uz%YMsL-CNKdkaz8nHTV$f&UbN zeFx8Er`bULsOUifeRq9)pHFSIRKgZf*tkA;IJH%D=W#k7=i?p;C&P4xJuI-z6c-$q zUtsrK%6c_I>0`OXA#B2x;o_28q%v_gP*h;{ln8xruRh03`t_l?Lqi(Y4~q1 zu*V3%Z3z0S*zxnj2QBNnEbUMlnrSn1E0Qoijp$w~uy0a47~5DIO<%A|;NKR~r#XzMP|aOcfXpol%G}KqlPW1h|s~wgLXsF06IoB#L8^ zz}embcp>5-_*#LtBz(+|!;H%P^;UteCOFdvJh+a=P-`5f57-~sr%`sab*@u1xW=lfay@mO$pxX4ba zZ7e}u-D?sT^8nKwQ)t!|ER)IqnE3l+Y@Q!NmC|%K)k}L~4!8*YU>@0@HzXQlh#%E4 zIf9K8SWq{aCNRGbqjW0;b{hrce2qlDR&%=KwMqPmj}1Q#Cw_$Np5n73r?*}3xE%wP z@~~H6ITRL-cxb=CSjJFai1HCH9uxRVLYzqY_9&85V9qLMC8vZ=ERUyYIquXhgs2qj zG`Q#DKT}}eA&oq{!^lS z5#ui&W5)P`TF?OS1uPhG9V6l)8hs{ljl(lJf+cn3N5$g;JW|=(3v4-gaoN}|5$lT~ zV`W^M3%kVBL}jDAmr6Vj*?v5=@-*fB7CTWy2uk^USmI(CEU+g97REa{!rLb>Une5i z0fBjh1V=E{jeeB!@hHD71a>`npxhhCCKv4cKx_0ZV;Y82pv1rrIM4uS%DslQlVr@a zxVWT$WBJYFCYlPkvZnkde%LJGVls0g&+1d3Lu~t~_%Fk=X+y}$Qs`6Q?d(RC(YExK z;N35H(K+`_>+61FqWF@yu|YkF;&C4U8AHo6yIurUq)~^f^8BQg(XL_Xq&)TKjZc>m*b|qKPi5L2pN9T ze<2l&n(>aTa~uZ*kL{ZrM-j)7fnZ79DX>yZ&)VzUSjy1!OqFA86vE_6*a$^XBmGOG z=@VYr8Q^jG1<#kGTz-KOPnr6zi01uC@%st+ao*97t+xxJx+2dxSsQ9{r=hD7h1b{1 zt7riTq9IbX7eBv$TxY@d>+8@@aM4)tr92l1Zeu)?BOabAuwDdUdV@zV=b-`nuM&T* z7N#5gFE#!|uY1JbZv(=+s8>v(!zM}fN@1TAyq`)sYp~7%{l$pzR*hLUp94&J55}cg zWv1Ji?;5i*p_DIMC=U^VrBU2WTkea{erHArKzId$*N*VGEWRyjOf&~Xr$vHCZGs%Z zZWI{NogDdX4&os`U)OwC;4WjD@J|Yi;vz@)eFF3QU4k7*08>od*vE8;*IEdS^T_o! zj(LLo(!?(v&!$ex*^lBMDSkfvh*zfx%Dy8GvmP*akcso`b*%+8WH* z=ITW4d9Q@!s^+xJJQwBTfcVj~sk@2MdQIX+suas-w5=)&({Df{9_TE7VF`y7-z@hA z3%o?&F&hsS@k+C!@TG#+Q1D3qrgE+lcpkxHa}4Nn);MezK|gy1Y<#;hws{&NcMrPR zXAze2|EPrZ`J;*!nE_6IFNhy^eN2Pc+Q@_ANAk(t@x%`3`pXMro_oMJU{=b5T|129fi(jlBW3rR@=27uyd4qT2 z`#l2VzLa^{mq9cbL7~uSu9_yHFdx0)% zKdl=kQq=Mq%}6x3L6lVIizJPoNg5k0$VahjTtegaOGvk}ud?Epo67uPget$3E^(S%Bk zPTbIh@Ej4oY{Tb#FzpBrMmKaIh?~llDtMPr9^j}9nF8xb0LU(2b+G@B&IyADkp%{eGG9S0*rD zW)W<)!2C8uuuTH<=|tW6Hi0e0^GR!}r!%RLc5F@cKEe0fNG^gM5ZDZgBT@T{@pul} z4FnwkaYJazUq4osm13EIcY+lNjQcXYx4{2Yf$hLEx3xzNA5{um*pubP+8~VU*7RqT zGDna1vZev!BJkFi}=ylpas@OU~*$RrOHb_p(9PE6VLI^ zGYVf|K4FsJ`h69pQzo!h6dsP+^lE`IYjXRSejaKk!M2KjHU&W426frRq;y725Ap~! zN^75lBN;=E>gIsJ(gUVNTc>uFD`6q#q+LP0 zp0s|2^#<51t@~7rBw(QOsjOo|&~z6yOr1k1{Z6QC-wjC)dWST6fCs@=3v^54JVVWg6b+&;4GI!mPTM|ff1bB`$+L; zSq6XF#Y6Fx3Y_a5bxgK>N_&;S<;J)h<%RV=q)jX633r>oo8p-q!L|#`{{k<`$-M%* zk&rHl@(W}(?EV;+7=AHwvJK&|!fSYu#y?e75gTnN{`TTGi}2ux9%%v_O90e|=)48t zw8gPO54?zXrwVQpjTh8QaO?-3;M%w87$2HJCF+HE zB2(Zs^z`XQ3K0#b1^w|(aa9Ik=tF6Ak_PxXfqx6nrrg|DlMU`_qvU{d@)||;IZA)0 zgqa{=O#48^gGL2_y(RwFkw4b~?3KYej%=9TFNGy@c%b*lCQBw%glMf8`H?!9B0+nn zA21T;f4ILVz9DAdzWCOjlCUa zGvy-!f05u^$2>0!4Dk39K97t3Be>%T7afS`m@sM@2|_Z9+D(!u8}AVw#LGI`XSv3P z5gu{=(qAwU(=Rdv|1S;&Flmhx*zE)WeZ)RM`PZ^f$gm+8&HR99E<}=HWb-E)2vzs*pS=L zBNCR|DOjC$45uN^Jp%tbC4!wWLVu9Y`jhD@QMloaqPl-3;fW&imgFN?7u@f$j*DTG z{kZ1cwZY0ja4Ji##BqDgvH)`p)hEk2dkM;dt}9p;s-x8swgaBYQGA;O_7VY5zLWGl zTC@2*V;ISOI%XK5uzMw}-!>AL$9g=G&fYka5;VL+ccN(|lb)1XPe05rER(1;E&)xU z1%al4ffto&d?q2s){{_QFgKGRC=UIw9D)+Dj@G!wXawb=28AfDt(g=6?bF=2UwI_c zynKyrvACGtsIw}UWLn&U8j?{5GAV#k_tOu{4b+CeF2NXzqw=gx79q)5R-%`gIY?T& zoF6p|QoOl>JDUQ;;x+QftRUxjsef7|xU9FEg@W{C*tKfT`QaTC~7+e7~#NFJnUte^`M01 zcFpBwnRN+f=U?`*i7tBtZz`q1c+oV9eY`gC`b_XT3SN~}0tsSdcybN_m0~f;abQlE z^NCdjhTFM*G6XL|$iS<@ygJ1}@sAfj*7w-YoN2)IFMgLwIFV84eQ}V6l$>b0S@3Ql zJf3t=q_ma zsAPL<;8d!w0>NXo z67kD84b-S|0!yBlKPm;6RTJpjf~zd zxWsehNM7z0Sa8g{UtkRx%jo8Z1jbE)>A~`tWhl?fpgzmv>V)_pZMcafJ3*cJ>yhkk z-~&jEXq_Mkk-tpBx)Sy_vqmOnUuK=cU)y5sPh>`>zT^>!=XuIXEbmBB`V#Py_3N5h zAle*|a6Kp-9KjSbr5W4!uoeRAN&q;*OA%N*h8Uf3u)uy!FkU~xV-1#-SmP)1FQzk= z2|kY%5QN48s|AKC<@)x=hMNU$5gd;4@Q}d#JP?2G6c|05_RIY<>M^=?iN`7L3!dL+ z@Hk32Mf6S`Zw`Z`vUyHF};{iAt&XmpA7M9ZBSTm87VL(GwLPrx(Tz`Az(t_ zvaOY{=SqB({yhTgLNIO%Gg-z`ejgRT_T&dguss56#t_l}1$G6&xc#y`CnG{s52Un` z3QeFQxTxnr{9mk&Z}tn=5f#j%RXd_+KS3 zws&yed|jNU6S;B%sukDc!xDzVn>k1nWdi2RpEh!6ulWC%{8rL<`aP9WIhLvAx=z_BJ122QTQUkJ%@1N2v#aE8FDjh zg}~Y}mcd&mFrNpg>b453%PD0Bk3;e?*0e)9@j!&~aX{h<+Cz;(8smGyYr#sYsUylB z$>|hZqt=gG7dkii$=#DkdcrB^sF)1sWDA79|zc zWL9Y8ONMV)`1XCCwV(6no_j9(`~1#)=H7Fkz4qGw)?Rz! zeMpPT{NKWCieq+J)CLK+j@e9GM1MaSm~7de2=1A_%~HcCVtuEH1h6;w0lKd223!TJh=1jzfl~Te+C0`3nCo!>x`{ zreL4V%BYU(5WGsXW*>ky-A`MOCAtGKUxjvpJjQh`%e7NHn6@jI=^aqI&P)Tt^#3># zc-}OAjHG(w%D1y0Y85t`kC4*J=Df>tNLx zt|aUa#?K1;H!3{PacrYjVMB56+UQoJXTR%E*og{@_RfsJbl9yqH}rM=W4UO}t}^{{ zqxq%TW@{BTpM0#%qPDg+8x8rHQP|kEAl;>SyA?04M<92>de7TQ1;V-*Y|d2A`v&8h z>~WjHw`|~0d#kyRg_`?_<7qJz>Sl_&eJufV4h{HAs z)0Eig-V)YNbd=d$!fYC3e&N9Ox+YNV&i^&hMVi4clWiMs;69lax)g`?jp8t0lN85y zQ7sQ`DcHOeY;g*gif^AH}dQz~R!s7WWpJc4PI98d0)g-X~h*mGG4_Tm& zxW9{a+$#KC;j#U4e-0{nFv8}G?l#hy4C7gUJ>z0B3?D3p%L3DiGW@*awJDzF8}Oyb zkM8y-K;)q6VjbG#UvX~=hU4LN9gxMHNo)%gDlZVOb_A-qGZVi?Yxr>^cHbKVqpuKMLb67TtlQ z!^ODEg_&#H;s$*cK2!Xry~4N~MHlE`#_bVibyyIWeq1*=)qt+t9CDtQLf0Hq$msko zLF(`!igO9>DYx?ZpiGz-wHT!t1Xh00Qa={Za@`axNl3cIqBHdr@a*FHCHHY5zaSh0 zx;3J+;#u232Eui{8f;#v!XS(Q&{Jn`6aDG9clD2Ma=BZ(W}eDT091b1S<=}bvDe2e ztyh_!M#Z=JZ6ZI+e0+0?jenvyJ3c69VDq{s6RhsYd%0+bua*x_vNHpRF86}5@mm*Bkf*50hU zC8C|m!3eZk|FXG-`6js>caC3Zh=P=5+oZV1;GP%j^DSX^t}_;hV+(^Yn%BK_B|5Bc zgOlsq$hTLAc$HJ}fve9R_3Uu&EyXs58f2}|aAdva#pBatgnqREZY69Wt{4t~4f}hi z!oR?9Bp+L|>|NE<-KqXmvv2(^esKml#<QjYh4a)E*b?|( zqOeW4XZxp@%j%tT@$aOW?aaeg@u?yoOQR)}>KZ`16>c_QRQIR_?yL%I@KEL3e6+?C zoaenjp2%BVH$?rK_V5!$wrwM#v@3ofQ}MN37%J{Oo?p2&jZlF%V9mOqXSsR7^WtTC z!paBd4JwiCw?$!BF`u~DueJ-@hYe+U$6Vn~_%niM%F&0h_xk-zLMgGmsxQI^E?bMC zRWUwe?Zqx1g!8;PrRc7sA%#q&wl%Vm)ohlRI=hKdinHL-n0_K9=?U<1{ZZ$BK%J z$pC$YAK;^PPRP%KvS94V{-UrqQl1(WuZr<-4a9$|Fq>|felfchzW8WQKHFx#=pJN5 zYa32@7MrqUo|Y^8w+zSHgz^L#(0Ui-GP|}oPg@o5AjZSRcG)59>I{BF^@MhiJjG?a z*>5f-Y8kt+1@s9^HxHM6$!ZDt5Uw;Wc za2?DKYd?4HF^8AD!g?5%sBe=?t8eMXy6m^`NKLVBq@`C2!bIwnyS3tPzBl}4*)|Is z6P7KlFDT7suGXe72OpNLYC1mn%?~S^+viY^pF^++!4GTQdF*(eBU4xLC$AbMEL- za4Tc!p+x#c+-S;2)B7Y=()#wAfhf7ev0@k;66;- ze={xA2F&Lg(XsuRAMW5`{7oMtKFhO9bU}G$C)#I#O?0&O4gMF4e~s`Cri*;*Sz{{f zOM?tDA1$K0wU`bYkr5FZj&z-(TNcvU7=gKtR%<~=8C@YdbK4?1)~6|o);8-E_AT+C ztz85AlW9;6-ctCX497)&yM)VYt z5Vn^gPL3A|GhJcz3)#BZ=_bZmnG$F1N5tt-_-RUqe0C=I5G%jj5d?M2Hmnr(<^lL& z@@qDHVtmsxkvlT}a|fi2aIR0aiPyK8%*b3%2HWe(aZ9Rwn9uf3_@__6(qtrPla_2+3&)>?z-$w z^RXgvSQn&k68&;U8kewR76jf~=cud&$vn~DNP5`ycX3Nnd|#102cXk=!wC?EJCLtY z+!c%)$!25=o9#8qJ@?$4?MO2#DSO@=ejvO2i0Z@2s9B2HPK^j2B-$rJoo4g=M1L@y z#@+j!B~+S?4ISe31Es4oj}!A+>sy?!!Q!D^jHzGT{2ta99FXO!|ITGBetvo;Wkmy#WSQA$r!`5YZpcNKxHEsJqJCPHd|>%S)SR^P;_z zj~2^c&(S)*7|%YtRP+s`w>96JtRJz@u2vZ3!08K{Kf#cT)*+d{t)iPux@gZeWCUJ5 zt$onf$@I$GNu>2{>rd_+7={g0*l-eHa@LiN`gEPbPGA_M#=U#Ut&3A;@(Q0D%1ks4 zM)Pu$8JlO7ns727E5(cVuFt!D)vfrsL19%&C+?Sn)GX+Q$s5jW`iXNeV1G2)3$4@8 z7hCNL+zFg(6##BdReco`#duhT59@ERDbm;6Y#-Xc;p8fwu{l57T=BYHyyAI9;@VH> zUtN~SNClE!rMNcE;&&bX*9*I&uTrrcTUuD8CwvaG8tn zTBm0zYgNK+$-u@38=GjKIXTR>i`%DV*t3PO*A#xhls`#xK8y0mzPh zP{z@nu66twr&{5Wp0vGS&`DRiJex3~AG+bdY@Alb32Yp;U%N0iJulYrd||f{u=;>} zx_xG|0vn6vUMaf!NM|x=^Lo?2317lc=**Hjf2a7^TA=BLV2z@bU07R=vWHJ6F$ z`5&Yi`K#?2lI#2As>TPMX;|M&3pRbTym`f+Zd{z*FjtthKX8uo3x!b+vkqvxvdrDW zA0u9}%)ywGU63};k^eUFIf;DW`n(wYS@+(x{Lp((3S^Oo@B=_)OhS0I=xo@9$)ddm zsQdU{gIjR!Sv9ueR^dtT0XVCsV%Vz`vxG+B5c0~a&K~I$-!aSt$`?QLJNB4|<#nZK zFCi@!{$l6N;IIj|UcoxuEV`RW2cAXx#q_y(M0ALSEKy%vLHI zgYy0;Jj<9`CdzY-P5#2y2H9M%UfAM~Q)kWo+){Nm82lHDmnUBG^+Mn3y$fi&?Ee%l zeGWmq4T`r0_k3rb-aBOS8I37$Di^f5lSJyb@(xDyJew*+{eZT@_(G)&g@Hc7_8p=) ziy1N6n`wE)nA_Eh%V3w_p}uuc3s}1e4sc?dbSUnAAE(YR589PJoSN;jUc9C;A1FI~ zBlhkX_WK@%eUf2Vx8~VZOn;Z~z+Tv+oHzSrdup@#8_3-A7Vsm|kx`pLnsib!22T)R ztY9AIDV}A;;z2I8@5$;9`!p|c1`8(L=-)QR%&{g68G(wfHZ$Nr>kiuRfBlGyFrdg#u)Hsa|m@zi#{r#*^uR3biz5i|)^)OXwxD(NIsY z(KZ&Y0XZ9Ih2l~dJ3WaSSirT*t};BnJ^)f_wbP1wh%fH>5PL8hyE@t~9`BI{Y?Puh zy7YfuSVY%HI4%t`h3a{KWqjm6eohLj_x0F(kYh`$=+7g)^(otfPib)NiGD<#GGBD8 zdR}agrNZn?WRnflsoFDGhw=~36eJQ8`H zsSnGe&HveRX9SJMIL94pG3+DV3V(#*CNra%ZZz(qk3eQFcHIOr4;mAM(S=e(9k*S)CX!cFR_Hjc z_hUfCY9%dI4f|G?RX3B^^X}${wYkY1EJ)Pl{7AqCAh=1iBS~vz!M3MzSI=z<8>+Bq z?7lWkkL6t~y3RtqXk%58-w^H|y!I+}up+Om;x)s^59B@m?&t(B8$*Yen6p$Pdi5>% zz;zctY#)o{q$caORH41lQ_Sw2BwFTy7yCk+ur~-;-J>4e8RM@96+pVhqKoQDc6MxT zOS(0p3+%-O^qmCH>4HD9V|nQj-4RR|S0(;;3Oj~?Ro73L&#uv7M z+1ZipF_gX)p258z)+}qs78ya5q+0ZfV%v!I(xEgagl%Kw1)^Tg-j4bm##Hn>ryIc_tQ7TGq#@*V|%xo#h@Z`Vkh(?J;WUjJI>bJF_p%1aJ;IrJ)_teq*_XvbeTDlt^?b`^h2wS;;;m7v!~FGl4I^yZY``!mc7gh=6O{tA8M=%ujpmj8CIpRGs3WIEo=yW4^de0crqE| zNw|M3c3ogMKo`0+w!DZ2C!aNg;f!-dUESPte33{dnnXHun~&(;Ei-^Bzb>UDLuqGsQx?? z@Vwvh!|E7q9=Ahn?!YnTg`zQrdcIBZ=O})BPjfg|9$#qAv&`L!*NgFRQMOkL8%6-y zjgsH2y(NsZIT5E8*fwG21}&L?t~J4I2n}~P7a6#a33=Xk`C-1VsO;uju<;e`R|J{Am6j&_k~P0oxKVilZu^0`9VHKP4aAzx%3_Q4YoE$izo(T*Z5 z+UW+=*RZ~P^N!PLWnW-G;k%Cq2;0jAnXC;Gb~rKDCqo{M3fo)s1M%G|EYMN1`C*q# zw+sflYQE@BV_YjYOs~tFjX)V+u5e2iT@Ti(y|{q3%UXp^U|i%$`(+?W80;oki-dzt zJxF$lemv<-4lp*ypL@bdeqFsU$kmR@)inhj5mr}BBuppNS|fShmqI>iGQs|^z)avc z3zn%v@ux8Uyxf2>xvH_O%ohAyqOhO(_<=m`!8bE9*O~Qi^K%O^YAuFoun;R-op|m% z)$pDUc00s-E$$s}vrVG;733q_v(}6kYNV>}>vAoPx%}9){VHI~KG^a_CIGw2eVI<5 zEzI1J*3LFBH#<{@MA|~+lbo^;YUa} zN9zjVKHJVrc3y5_rUBa^&cinvHj|xQXuaWCGw@n3UTc^J#;16_VEs$)&$aPo3wHL-MJ)?x@j$rn>bx!K{M$xv4HeMdn z???k?Fukwg1Yi(oI~9+z>C%8}XaV2dVe2bcgow;`%GD~-??-xEHTYjI%xoFc0Z78; z*4WiX&lnVqJuHMU>KyXfr8p;&39efF_q)q(-8*1x{oBTQlh2u0*%&b5B`77lGcRBU zX{FUqevOLz3CF_PrBzsUIQ~LMl-`p)EY}FJottaq#IVyk9%>F&Rb2NlpR2|9s8Du5 zp*a(T)841(@1H5GY{WDDr?^)zpL^CV%m%tov2ajF)tW;HXG4?~@QM0jq(`8mGX7t) z5aF>924C)P4Y!l8|Kp;q=?8E$>o@;E% zHIK6P=Ei>vYq4N3kN1^4@~~2Q*}=(&wVl;VWOrMgOJC*TTWA}GvrMkxR~}xZ)ms;G$mPMLjT3*cbw)2avAp66awtwe3+2HH-G=VcVI^TOOmeCd=c9 zTppW-Yw_;0qL$-%l^B6*aDYZ!{u}z@u{`35e$mkP)-*X~d3uzeW0`kc#C8e``YN&V zdl{;IVECr)t`yeH0O$_5Wo<9&VBzL30gk!RJcx_cS+l}SC8MtHq@Osx4gs?S_G&@f zHuRlo_QttEA>s{>q^Vz5i0=c;3-}iK?&-1aG`^v_Xas4G;>}mQ_gYF{}9T{rxxw@3^xoX5h1N5Mqk2H&BJPF|fK;3Z3$@bFDR@mzd zYuTe+!}mX=o|ElXBVMz4!1Llaiu|k{(1mVrqY~S1tHRmed8RGj;=?g#r||zJZt{$R zN}jQ(n|(VrpQCIHTtdR=j3m};t*}4`@4-f^r~d1c+T&dRnlD~fFDM6}k;M4bl-rcy z(YrvXjU4SN(VAU^xrl6PC>yK~W2;Ha#t7t!odtMwnb_n|_0h1%76}Nw(L$IE3 zd!Zyb860#!BYAGiTvTs1K4$6i2^OJHoyfE)g#nttA+E*PK8;Qw6Y_z zohi@v%fT$xq6F@-VugCZM&rP@#PY0F{N9E789hkr#jO48`-L42@#^uvTXA>co^_!% zv@y(dRWvW>bC$0M-7~I|C=2!0DY2E}qwRH*h1L?jZ1P$xUKj3Be-7oGohK6cgCSRG z2ClWgcvXQfufh1=A*?K{FX(dVC$k;U{@Lw?)zu&Isvjf=9hZ>LRnT|N{MHF?DpmH# z4xq2|I20X7Lg9lCc`XvJk)_HWjr)B5kdGu48z}kQcPMMyhcz;v8xIYT<^z1w5hOZR) zN?H(SiQ*3l>j6IB_`JmG)W%Sg?l)ml)x)&H^e;nW>-;^`@ec8x9`d&FIg)wfZF2?g zZ>d8ar?wa6Ysf<^py!?CzO3Gxg_(+l{>PGotz)(czb;HSVY@_a%XBA|N|*h1wRnA2 zyy9b;WVku|^;`=WjmfnPg$r^?p+JMjZ2a#QpIY&WkEs|N)lPggV}VVUMw>yEk1@u| zd+}QD^rA*ZTFm$Chw*_cnDZ6so2Xrx=m%+4Px)9aKHJDFA(u9$!^Y?+8q)cMR)MGn z`?A7Oo^4uT4h?LtB5z!j=Yhh$Ng&db7;G1n+5Sr8+nv|mRaA7wpB|47yI~RcG6iQ{ z+{TF&P6J4rSRrmL{+BEM<+x}1Mg0j+&0x$LYsCw#AEyU;6n84)Vtm1=C*^F5UBdrG zJStOUr5c=D^ak;Hhxv%cQS|F&vFlYgd^9v=c8-QpEIgOJ`wsY|yP$sWgn9>qV78G`Kb zxjg1^m+%Q?_+jmDI@Wyh(L80S^NqLrN0+5P{_3qj^!l&h1J}&n_%L3PZY!!&jM=A@ z44&`&#@Si{Izto4;Y$uK`iO`PxFqy&(f$tUFk;%Ro2o-_` z;J;C{7m5~kzb(8mY`Vg}&9K|seT(*rZIHF{i*^oat^C@D##LXs>tH_DA!uheK5%`=594V% z3k!{1W!AXg&h3KSbz%$nE{NBT3^o9OA`lJBSM8&W9F1irN0bftqxZ=~#Fe0#F4}fR z02e-=SqJw7-G`Kq`3hgjaFdVaHs4|Y?N(SYci_x{WnCluG{&*Anry<3n;A+b+owl# zFNXSV4}BBQxqr39=GPkV8uSBno*PYGYT3AmkTV8R#&xlsGr>$%Z zo2Rg#Y+Y!ka^M_?mnw|+ylU~kQrHayutlusoO@flfXg(ohQ<2Yrnoa1H>xi-MEH_s z)_29@BnZ#L;XzvE#H&+q@~soTj*%k1@XKYN4rFc#g4#rPa~3~PcYB;Kw`cFcu#@&I z>~*=023WYmVCm8?J~X$~6l80zeQe1P|Ckc}x0QKb&JV1S@x$^J$%l=dqS@H#x!jUy9q4w;?I5ne+V2bRTvUrpkYYIsAY?Aq+2LDlLgRW zQk_b-N_0nwAL!8D7@@%ri^t|`sYBQn(JdpL$tsx2$ALz_HrF^T*W8e6forhdN^@SW zZgxz3^N3dY1S5Oij0`@kZlF)%y4mW+<_egP;mN1eCiC}3^{47Qmb+7FL~?05n{w$+ zkc0fO53CSfFWmDQjQ{6_QNEbJ_?m;w1K47T_n?s1PQ?rKEU|KPhj*k!^#8^*y*e{`@H z1Y^AXLd@3&(Y{SuYwySo&2EJE1ZkRQFE+-vkoHM_K);0j(w;MbZGR`1z-OZ0(gPsz1ihy4|{#(U6@HNEuUq*J(2MbE?rwxEKA+aZ17BnwEE-pk zk>`EO$A|TmNRLGPWK&?A8SA6Fpl%_j@tSMsi#PP9b(TEXu2dTPg>4nt8qr)qX~1r& z;lfB-8rfB8xY@-OUqeE;z7+QPJ3u50+43 zbJAq96?v@tIzDi%=7+U=$@-!;>MGG95VYb}XB~En|4+p~+~_9GwHU z9;$$PrAP5A86OvU?i3dIOyhH^s9m^q3v()LwvSgUc@BPxoY21R%h~_J&L(F1&6Y$g zY`Vf4!Z55s!_YDPudtKY#ug9eqiII&@fyjc1*2Oby7R>&+Dk%b0wRLY`oHK{PR9@8 zf*o26Z|I8`O5&UO-X*$=LOI_?XVz?(#4uI-4Q`RLKz@LuVv(3I~_ zKHuPnvoFc>I@CAu0m5znBKDo~1Ob+-CXRzXI^HF4kYWFy6DiCCBJu(fexZ z5wuivK|2*u(j_ILDA1CjW%K_hF1kW80n~)=JK}Ob1E}7SQ z(Z0+GppE-ABOPmF=_n`_>~BQo69XUh$|CXUOFp=Wbqj;Ku#4DgVYwK#L0H_T+nS(b zee4j{&A2E8o?eDf!jFs3Ci}#3$Iv@d@Y$$6g_OhURgBVZhH=EPwq4K(XIDE?R8bm2S&@rEz zL|bzGD6;36PdgmD*hFyppwb*R((`z(Fm7L)+@tSZRoL^)B&tC^S`;_X!#dv|%9sm< zFt~6?da#X#I-WXtk>dOi_c1xLu{vQxac{~)CB{-1K*c3u+iw^DMdDwyZh&c7_9mM> zhy9=P^nu@D1g&$R{=0B04dt-{|8)wZNydxxlY|{Y!05UA+sz-^6*iJ#)*oRn#B~s| zo_yA%7Njc_@AIJ^jN+jy@g19a|GG?JYakx=%v*~4E8IJs6WYW-4aA4_)9+~#c;0jT zu)Nvc1*k))E%6wEdzMRMtogfQuW7WsWEHDP1b+!X zjMjWSHhvu9UFt%+8e>p~@U=ZQ#_ty0Ipm3R zO*rwgZ;;bP4NKLoO} zLcAt3bIm-mupIp++JCu0;V&>es(+K)>?4pYti{^now0T!U$?2<^G@J>AiHqQQYQ}v zRP|j3=($JZ3kJd3-Hoo-T8qZ`Qs=iQ-hUYx@rwE_+KOw2`RreddM)#{RPodD#s08H z;qBxf$krkzTU*dk$9n1%-RDV%deRsR1rq7pTXKyJ zxn{hI1FZ=zpmKek?Xy<#e;&p!8W-BLKPns+7;l&2U8Q*8yprn*c+`g4C)uuyS0iWG zytH_DlqoG<9<*(W*Dv&4>}kH`Z)V?xL4v&S*NwR6^NdApgP7PO^4Y>RaUR@eL@ECPBYNH|{J``iJ~yzr z4(A5l^fRo35`GC_`M3_RHWBWi_Gr5|6&C7$uT=DBEER*rGb~imOeycM69aPlC zEpMApiWdo8S+^*SA2ZL^cSeVO$J!HWFZZP(Jeh^b*U~CR=ZE+)TH*6< zSTo6%rHPswcLtd-;XG8Pjf;J%PFOIvl-{sDW#`nOPt7#TEi^E!Uw0^8@J{8Tcv#EN z{ucTMJw1%s(ARn6!`|ugwO+hz{)s$stlA>%xD0-z)v?W+IS{YIP=#H5m<@*#*wFXN zqTvf{TJc{4zbvnF#Wy}CM7luws6D$KJvZ$EkLhW(Ou1hy{+)&VBV7}<7sebPZyZi> zCV~%nZ56KzanCv^@_nLhu0R!!jhWR&n<5dFV`lYwGKt=M6EAnvAFbT}DV*ilA^v|X zc$C1y(!6_q{^>9*sRFU*e0g=l*PN4YuB` z&0LM|pvuIh(G7D@dw|94$cu^j_ z_FM%w6jIJs3-`15ktQ2a8*+c?TaYtIOR<~{Am0uA@Vrm(!}=rN#Ngz*QejUr3>U|) z8e#VmK-xt*rI|8vWnl$@v=RTa6*rha6!mS(x9x|(CZp2(X2@%ec#ST1`AFYep?(bC z($VGVl|Wu)ws7Nl_ZIevsIOVR#H%Ok&xOsCW@M6Avv~a=?6+v;__GTIyn6c&!{?RO zIMcyvnRwX}R>^j@d~vb*v$mV*!qjI$`Mheb136p7)w=cDzOoo#$A1Pa9{5-9ec zX7OVFlk*6(2M`gDcNIu`(0?djixvN9$#%T|AVHof*_rWk*`zawaW^V%9q!rp<9!!n zGuH@e+yp2zAS`L-yZmR2XMxbYcJFvX*LF)QT3-} za&6;s?Q?Q%LvwlPzSMkkY;Cd$66Uo`Gpd7VY>CEhp7Sy#P4Zh2b&2@cSAtJuV})`* z7e>IuB5|~NH@x2o+n@#fcZ&Zu<`XLpMYfEMt;V1Eygk=AI@gS+m0{T6$cN%qb5ih{ z*@w+Gf%d$I$veus%~zwjosF+tx5f(zQyyRA`~FhWp`5J}{|z5YS7rQ_CFW<#!E3j8 z)$Uc0SJQj8ri-F#ZZI0dxqn$Uw;^*bp2}>(H%$Ql4I<4z#^AewL;eG}85;*K7R6|M z*MkCwucQ>Mp>Jy%?8c4duOffAW`DGPqP(69^^~TbZEa_Vcu@}6KH9ep$;9J9126#E za18sx-J0z?@HG;9&L)W3G_Ai-5C1Stu4@o~w)k|AS!Bmxu9Tgg=7d@dvTnthQrK71 z$EMBeBySKjcceOJTbzZ>*3(kAEe!icRk~QXBNlLF<)zhpG`cGFZUJ*w?M;bRt+@Mz=tAkS!Ae=3|@qjrxduggil) z$A8skM)177OX(kECiEZW{pU+*nbe6N__E#SD~+gcqmE2wE(@yC`qxU)4Pu6@-Dg?< zqP??0VF!g_?)*xVe}x^(FjS4(?PRYeHNIuPWB}ae{4l;av;rNs5kIRGcHKvhx1(_a zl|KpNZJM$pui4_YybM3krs;Nv*6$&gon`5~Xd|r=uTu+U+{T5-MjGRu->Vx_O85UF zS9@NO;MaryfM4MQmwj1Y&F`KV^DM780~c@kOer}m!1E%x4CulmkIm;$FS_L2yPcGO)g%<<_qg%i1TAC z6=rkqB+oAv@?4+7b4!9J)7dWUD5cZH?=9}fHz`M$_oUCst)1a4^}AAazYO4NuxJ*) z;bd$1hDOo(0`a{@%+Ea026fQ}Y_TxQs>O#QQ(cb6*092DH1J+Viq2`lQ13PL%_nqZ zjMm2F-AZdknAb=*XBWlH!H}mL%LkkDU9S$YJjUY1ccRDQv2JE7-WQl2`hxZj^T}5{ zrX#^aP#*tFMSEFF|BmJn)*nW~+`b+i9Fv`*5iI-f5@U58(%7vuY&wW?=(+OI$>$4T z)<0&v<5OS6r@Ytw1|PV3Qt}zug28+T9ly5NbZF=c+dD;nSPQ1oQ=g^r;cFs_wJ+;_ zoASAUnN8GvIA9}aEB^ccmPFVSRE7`KOOc*7`@!m-8+b}(21gL2XY%n<0mDiKV7pE# zEC2OUOM`F&rOts^7durx+skWpVS0_vu4dnh$szk_6)ObS#qP__XB;fd^e5^k?xP9T zig}E9B`aYa_m^guM~Uf{laG{0lQD*~ah{_}|8mU9#S1 zi`PQ(Ps}^`qDM4^jT3nUFBR=ADgDa&emZ`NbHeQmBnANI{?PG}0$FrLFhw)wh^01lx>%IeU}AA8RL6A?ZunRW3mDg%EF*OkQndCQJbh< zP;=4w;(k3^g3f(Z4A`P#idWQ_eusG7MTVBX$trm9+{eWktl&hl3X%c%U#U1|%5(KS z`!lnDXIUcL7i^)cCv6WuJntQTARpp{v3(ZfyH8&$7W*xY$Bs7Bl7IU1%x$%~%Ibe`F%iMJatYvSEX<(EmiLErs~i z_+Khs)}GkS8NCOa&wIJYBVcx!t*~CShwP1rCEL)(t0vkS(1R%*120;BDBUT|vQ@u{ z4_qbBxr(<*51ze5qX0@6B(7|8#p?#vQ#2Oye26PDiSegfv@9C0f%so7%*^56j`nZ@&)&*G6A4u>G*ZXU&98J8*!W7qC2Nd+9OLBiI|1 z{dJ)Y3_~j#^q6E^$xt6uyu}1PFEO@9dW54zqs8W5WFJlo+H3 zB6`K2@qudvKcalod{`E=57Vp_-HoI}zU9xeeamJ8v7W{{BPgty;-SFHBl>*t8t6M- z>G`+*YimdUDCK1Fd!?!r=69RYxEJ@S`DF=besq3^Ao}3HkV$mrQ>pc-_U!7SX+s|I z<|_VSlG#0!mj_JDgStxdPh+1!s*15X-J&$2_s*IRFtXbseMOltCwQ^Gf_EGzP8H)$ z?uPu8wcvU0svL29z}7nLsfHCa2+)6GQjl1LWcw@>FMAF+p~LMAYqK*=2JDEM|E8&M z@Zor|S-d{CM|raTVCU6LqdcLIMW@aBCzO&jJa?Bq=CUl4w&4TUZ+qjz$^xT5er^W( zhTivpxo;o;8zt7L$g5kteiM#u5w9XUcn9o?z0)g(zK-qUHCF9aB)704_)JDKj^1b) zmCHBUd3Stdb8V68q0KeqZG7Nr;RnhYw;}mx2-GyrHwktXn`v+R$LA_up7Ee#x-g_y zVNtvSk8ZHcOBDXSa{NfhLQ$Eqx8dOudmE^Gd&JAeJMbzhGupkYH}_f;ENq)ztu&($ zI#IfLkNvdWe;>*x)efseKH9|V^^`sz*6}< zR=hXDzEe_fVJAe^|Nb8O&Q|gIWnudz%A;|yGvlu+v5A)Xs@~3mVBWaLG1l}G>*j+} zHaU6C6|dS}_+j!5+o04Q8Ti2uF5&BCJ+Bq7pW@#2LFn0FeeM}_Li8`2gh5o?t(!~j zQoM5*&-$QyrnL?~`~RJw=lz>kp>!X`7o`Y!rl{GDvjaK?SrL$TB`6$hT~$sRtmG_&8SYz*4I-k z5cQ#bvv)_bPJ8Vw#aoMeKEI&)fz2L0V+ZTDplUI<{5f2p! z)(k^Aace=#MSELl&nL!`M7=&%s$O}xV@kc|k%jV|%n0@Ym*L~1>J{@PJUX1-cGy2t zDvjAn3UO5-gS#>$b{%VKHB=4sA; zKdles5p}@(WB@-%p)Hs`e{9cAD^VR>e@nHA^WZ&CY4i@;wWJ-yr?u)zq~Sl9-mK;` z?ok?5NRQ9pbzyG9!-Y8B?^f7?P}gD|Gv3c>MfXJ`6pRe0{+2={4_=M`iw|6XC~RA^ z9g6H7wCx>Plm-jBMQvN+aDqkPy;5lm?vEcOWmNLBw#@(fKDiBLQ*xWiuwSukSPsYx zA9tgGG~;_Hkn9(5gZ+vib0nAIdpv$)L!*oGD_Hp{eWnFj81gTC;5sI>V@;kD_L9k( z+3Nkv@P4vJ>=GHF_mrip2QLqvOU1k7zMIGvqmKkHuukuePo-zywZGChBb2|Aa}7$u zVd*{F>8QqCtO@Lu_&B`K{vWXYi|f^%X)K1F-*=_b_&gJeYzU6;H`&MvH)<7vHjA!_ zbip$q*O`}<$7-2>eV1s4k;e2d`kwYFxHodU`FaI{2b$3mz2}&Hr&d_c9_3wQEqsnY zC^5Gh3|{la>k8a6FDZVcy5w9j57Orq@3=4zd(t1+I*~3S>r04;$w-wM)t(onktX9R zXWs8qqL}9Qm@Qssv7Bb}LiJx|?P6&yQg~Bge@f_F>2B2N2_@!*w0XCP*V9Z3XQ&j- zf%xd(eT90=wy}UbkN*L-VB~q(Q2(1Plh9{YZtj1=X*a1m2yxPLy8f?48uOG!H}2W) zMRqkt4$NC{lp8E9R69saC~0S|QQS8bH~t(b&9j$de*RX_Y!khSJs8PuNh=TcrT;9o zcXEw4rPI=$Y23|>MD-QV4=sGR=I`b)b444RiyEIBX5VvjcI?(-Y6G0Ttp2Zfr!gVx z|G|E&SwZ)=wTI23TM*KLk=ujnP7H^hu<=iH4TbaFba{i$Iu7&QQo5<}Lnh{VSMej# zO`PAf1)1Zp)h@ak(joM6tTwgccA;>~Qq(?)yr`cwV__k+FK2(8mP6{WZQ|dL>Ea@` zJAn-({(lU0e&j?sW(Ny5Z0}mpEhaJcjaeJIb7sSBUPISyw7J!E(I));iE&cnb~8;T z7-x&&c9PK=XOs-U*5-PVdOM><@LyII(e2sqisc5yTmMk&*(kaM>AZqZpg;rCqpSJ;4ucRrQj zN17h8`IG4(zJDwGcIrTZIsDmKypw}x!HmZ@-`U~&nKb2uWN4=?RJuEGU(`=#P~2?r z!{h^d2sJ7U)P}pj^4}o<_m_TK(a6{ z#H7uCuGCD~pHr6Gf~T{4@Gg}tnW5l_fCwq{>_hs2| zHR8Wc*tG;qSDJo8&(?cwMi`OFYS{Cv`8KvvAo?3@Jz1&3@ zMukAQb2382$@UiU8cANb>hQl^Sd(nJB6|yZqpSBQK41zDW3eNXa#hpI>4muNtQXb? z;k;NcEyBtRbyQ-^(|8VB_H7u>X|@IJ#O31kJei}8m2Vi&1<$4~Pb!=$WVJ_ee|@rx zo9?eNn;Osf`Tm1txea~;eC@+>TkzlGUrO}ky?{2-13wBkc#O~Yzes2ppmXt!skG0% zI~#E5kUsT0@qadkcl_iit>`EM}p zbd}BGEA?QSroB?H4dgo&_ciKftkI|%CE#Dy&*kx8$#2oPhJ;xUX+zYI8VV+r(>h3NKqXGTqh4=jGtf z@s9$lG!xI(VF%mGH1xb6@)h56i7j*kU~b2Im!F;LW-9Mx`}_X<^?APx7JMy(RpLl)4%n zp4~4SU{lr~zK4EPV+Xe3Z0vB2H|mp#^;g)F8UH`&OSzV>dEzxU95*9g*1t`LEnnPI zG`WO{Y`ivzSJWS(`Fh05`u7;{8dIW(wtuq!ey;uR4WDI*@|7r~t?N9(&NVu1UN)tq z5qDnybor}Bdo5A=pJF>E^b1~O=+p~>*tTm$J2`AyD>t6Zxw8y?RPSXN>dvOjmwXkR zojKNTe^>6I;hZHZcT|TVujN^@okqBGVXjCo5A!%(eE%5QjS=5OeX^a`mk=2%?<(=C zDAb{8V*)p%yjwzr+J2GU;&l=7$a>bk81O2XS7BRhd~kF1UVDJ6tF>WWMe-JvNqwr_ z|5B-ZaQvMwUhB$TK4gzXww&oQ^#hD^bKUiTfo%#B|#hHsCf1oM$3-rr?Vg&VH zy-2Ud_ZUST%0Y8Ndar6lRx10uGM<-G*H*?TUwC9G>pz0joQ3xUZt#A>tpAr%{cJY) z&lCTLKDz(oeTx1qnOp}a=gsbjJ1$Wa57G9-8}vq^E^OT1uJlGDZKv0ZZLwJiTa5BM z@IY4&U*#9%ByKN8{X%V>_ve=?^CU!X7q6N^Ug>S!jyGy{G@;0oT#@k>u9TvAo#4Ac zd?$zUnCN5iwrbD*!12Y~pxuikFUJ0YnQjs^IoCn2>FHEmX@_E@Pre2t4^0QTdWy!) z$QKmYy4jAxVX_|a<}2Pb+K@Q z2t0AvS^(tx2ijc^HXDfM&#AlDS+*5QKNq%dl)jbC+E==HM+Pr{z`JYls!+_<+&gUT zRrbZwL-{Tn;L7%=a7<5IN0$C+_g^fr<=AY-X7S2|`AoDyB!^}nG{M0Gg|sPi6~5u9 z$>3!dDNW#QLOxfD_tFE3+aPLR)xoMPUX8d06VbJJ0m&N7CRb(se!Xyq28T1qA(Qoc zT0rp+_#m)myEdD>-hvRR9m@x#1~#-W7kNZ5(@+rHh9feK>v{GKWD<#(&IHkLU9MPH zQO9=L#(ca-xKIb0KCm)jCKvAigSwtcjZOtVMoyq{e0t^5H2rVuiap|Q(*={;$WM@v z8}1{?UIm4K12(|ky;=4efS06A*O7P1PMy6Z1?T1!=0EbC#pSZye+Z)ukfe5YXX`E! zujpOHws$MyW%i)j7p4ARiYK@F7$j>!#64M1jq8Qo1}lD$PKGy=p#&A?gW8^>-EyC&s? zktc{Dv4A0;BXP-`k8fB>@IkrXZTN=i1GV6CJze3~D}1uT@sh@+&>!7!WVs00yKuvz zMCmL=KD+T&WS4?}59^6h0t&~QzeR!7D_4_amH#owiGMuv%KB{(I+o~PiIV>?q4dj9 z5lv+14X^?&H}wb&YRrFyDC593v{H`7cR^d8#nze%im{^bw-Ff&Bq#@KtO>uN1dPW8 z_$E*OW=+DWbO60RVoJaBPTdl!X4qb7}qkV_-BFYfZ;%jd-0? zXq%eejOMh~m(d<&ennY2uQueX>~PmVY>P~ye-E)iVHT zwJR;&V~q`7lPY^>HGeNs*r5u;BrXhFp|DDYp`f;3fp+wIg+BicguO|Gr3mdKRqR1Ztsp2zu zb$IZSZ~d9Vhm7m!k4t)ioE)qbzmn@M(fDJp?#e(8inXWX)$a&bt~t|?(S#gC^{DY- zN7iqemd>jk(Obl8J{JYkctv9w?I50Enl^Cw2k)&B0?TZf;ne@{rHPiU`)^d5XCg^2 z+FJm>)g1F0VB3@R!=0kLpT)JjC2Tayo7u^n30#R0HLV+Zc|@-}($(31VV{m z9WiFtl`7~1unbaCp}DLNSyFM&uv==<;*P0LH zv0tXGA=f^XQ>{)cm*-Q*(;?tH_$XKA7je(}OMl*o4_Q50B(>}pa~1zs#>Yi$p|F02 zxIL=NgdI-|r>sQpPr<>H(Gd{VrW-{2LRePwM?`j{^#ip7*7-0$NULt+)qkKXUu2V} zwW;-kQIL;+fmK?UGG2M{niuBFbbgdClQqj1Wet{dIxo%>SBjTyUoyGHQ5c$oVFg0( zYF8QUtdinv)q>AX@v+BcOrB6z@jX>`64L95-CRyb)Ew>V<}2YGGaADZHl*pBc_r3U zIUddvujpN+Q9VbztUT0#pF!QAwu)_M%H#&|dI$HE$@u;$Xj2}PhKJFDm5FS(x$Nah zWSx{BWkqXtwC;!@4V3Uieir zSvJ8RMRu zn_;(K7~5ULm)WE?lG#7v{a_03B3+sHJD?F$+q*yVxkkLm*PD>5m=4`eUAam4RN^Mv zX!b?eLIGWg#ho+LimxLVGHjdqw)g&Y-xwEIo7NHA%d>$_%{37}|KL=~pM>g}{wXJ0y;9^pva7-|08Y4$ap=@}=k&ZLSKFN9 z$xNtQv_0yYo8Z}3pBLYmrDOwhcll1>(&*)X236GymDdaNm|m!vUYz-)3^xP7d%*E7 z&m4EC)4H;l`IJM~;pbq5J<71C?Gs~~+P;}mR6Gt%N7Q-Zv!WCq>vJKW3vKJcs8mf? z^8F62;Qf};c{lX$mFz?2$KT31BzI~A^G=&@{w}qBSs(R-TwQ%{kL9rT<+BBg(|T1W z;w}=OGecW4EuWGTj1MnC`(vVv1Fdi~oFhgDZg_gyFnO;g0`yPIh%Q1?8U*RH9V$+6 zW%*0tz8dS-k&afIU?0q><*~W>FwD)dg$@6kusIE(d-X=>aCkGUDs4y0av)>Ozp)0O zqsJ3z*=eMwO2UkLRrW&T3gpAoT8ExTUY}Q9_X~AUT74<6c>3+#eeqD+WO$yZ;TwL0 zGQSr*Ol9MMjD!ce8NTVsL|@0|IrC7r+Bcq(;{$YXL;-XzY`Cf5%HDzhUBEhfU4Upe zgNCl}p>k>yYXioo>l%S!6Dppp1N*vC&V%Psro|_^`k%8menfq%gkH`1Ytg4skKNcZ zB;UlzP+8`Kf&Me^h5uC|^xMo8VmEY(gpoc)5^ijw!-mcw`hK9|IC6mfDnwrcci39^ ztl+D{;X7#qGsnK>lU)AqEerA=wMjyLFz+kl{@heMoaYuT6R&bk01|Z(&0nlP(C6f@ z+y|M3Du*v;4ZL02spWA$7B*s|7*67B|JL3_#{$LnY;(r>BZx5ePZ-f z4Zjw)VYD6+wV~BJ*Q*zz3Dd;E&40w}AA2180)3M4H>FR5y*lJ;rFhL|_8<>MHac>_ zcfn)a9-k?idAhM{hj{!DESyZ)912^i^*&7-b8s{O-(}gJy(6t?^yAc?;_4_^S18I0 z__+N$*XA1GH5+AH)3UQuvSn-W3&rnVxMZc%kA*HPOctG0A| ziL+vcr5OQ8gLce(rSnTp{;i)!IwN5(v%mRA_eIa5GP=NeDv+yEr8y6FJ>q>}DfzQ9 zm@IR@#1FAI6?6Jg?rn0zFmS?7;=Wis$5?E{fIriyAM9k|sj&X{WD93-a1y3##oS76 zMxzb0LTRkRy{n_NwISQzLmT57qyTSH(RMdlhDYqRISaxeho|u#yO>_M1!eGuHilrTajrZ%fKQ*C@I2k7c8J#$+*6MfoVx+31?l&~piXme9Rir_gP!>vPa{)?el!P9OrgmJjBF+-v+LZONX*9J^lpV{?RhryN8qWt@(D0(%Wd!P z28FK?uk16q@`1ST5pMp#$Ty2MA*`BH+Vw1axgA>Vd1s~6ccSg6`wuGN*0!~bN#Yf( zWpI6?O&HnpvhoXihyV@Xa#Z2HUs)@Md=pKH6GFjblg(R>va4RA7Z~ekFFVB_4p?~%zj1q zMB&sWyaM_exF`KMLnHip;k1u=?dQJixl__J9-eb(?UOgIDle=zYTVs8J|k zj|sPV6X>aWc&!GW0acy&tkL(6ML%4>gZh76cvAxZlkf?`ZA}LJ|0Vnp;Rji&Si{G7 z#QJ$g_+i2a3Gat*Ue~xUZwP*8P|7MBKs~Qc_&CwuD*9UC7YqNc@IVf)623wB$)dkS z_y@ud5q_WW10*>1+!w+g1J3+-=ZjF~_>SmXMQ?f&BrgenT= z52aqj_-WH!e_|5BI!v86`8s}h-&jGWZhpGV|7T#aDos|siR;7Ei@Czi!fqb4W ze3tN_K1Y{YabmUC9lLhlCAqVQuK?A;^$M&Snv|FZDAg$MQXE#Miv(O~Tnj&P~ye<1n? z6ZEf(zA8cgN6|l$pnqTVomGYWd!s+FKA#kQpvR67{te+ly`3O@bpk(A`1cd|2;o0Y z;NykAoWL&oW7U9Qe zU<~B&O5tOL2j#k5_%z`i;`6ZZ-w2m@d0!L$AK?%uyPgyNU*UoN|B3KMDafluzeV_S z!e781B4%<0eraV2MWJX_~F7&6FyJ)VBw9z zR|yaDd4cd@2RK5hWA9SoV}v8yc3m%gyzoK77Yn~x_{qW_7yeD*tA(!?KCQn4%r?jE zI^q8jezfR+E4)e#9@w|rh1UrmFZ$k4M6Azyga`FdCHzIEd!ol9N!nX=vC;Vr^9}!{DU;ZF` zgYa3R-!A+V890{<-zEIZ!aps%0s_E#dqen{!mET=Z~}r$&FP&a{3zk4xnS=c;d$YK z-WV(V4&h@&f4=Zv3O`HuT;UZOpj6G?9l~u*610JwJR3E|fX zKSr!*S23S!RiHZIuZn(Xl>?p^{(Ipc3dc{o-W9%=6n4<=IoL_8pK{@WUOG;API!?2 zdg1#E5A32A;Rg!W@Z-%8ew6UB%1?*zcHyd4?>^yo3YS{(zApSR;hz$pp9r!k-deC;F+v|0eu0;j@J2Udk9U(tUZCp`S3H zlYb&y^w)|0VRfK@&*z2v$2!7b+<8d&$-?vE^OW#=gsXYH7ll79-1dMX&aZ`6NC20J z&)QirwYGH_^rZ& zai>f8y$Sq2;ZF!}5}$72{}8U^y=Q?_&*!B`)`r75)3-Q zFpn-nhh@DTdxFF3M8B`_ONE~+yb?I)P2Fe*UNy>BwdkJ}eP0*soi6-G!utpxA^c~; zHJp2&75-=8mx}&s;Y}wxV5#s<;cp2)L--Qmho0ns2ZTQ*{M*8VezaEjUxZ&R`d5Uv z)HtA7c#rTE!h`Ypec|hbj~4x26>i+=QA70-zAtdr{}CE^13Tv!;ZuccSoKa3zDjs7 z{tglTvhYC9j1vC7@W3v;NO-?fTt=oVKXZk*C-4QrHw#}W`p1QLp6Y;a3IDF}lVsR_ zS9<0Z;h$8;l6vy~EPR;o&x=p5{apRLEL?27{e}Njc$MgDguf$vf8is6bKI{}g=q`6 zH$K3n$RAe!IA3_D1oJ-e$&3G|C1`;>Un6{(@Xv^TzVP#E9Z)CyOX8oG;Z`I3tD?Vl zhy#ug{fD>-l88Zysz-z3vU&^TljF{*9kwT&H;fvaJTS@ z!iS3fG2u&u2mSp!!e18tZ_)oq_&PCY7ygFuQ&nMse*Tm23x)qc^#2ros4^bp(?|a| zeV%oMi$%W=aMtrlqW_ZcPYD01@UIF#T6nt*hpz}fQFyMw0YQF-3g0OF7ST@uZvEmQ z2L$qbk?2Q{aQN>;KS%hnBOUNX;kOF^j_{j=-z)rtMhA$Uw_Nx&!XFgXPX{|7k7ud03yQ1V_cG?4iNHE;#^zQEZo+raQJ2mRtj;V%gf)?r>1zP}X4Z1MS% z@LPnREBv3rUlCp<{6pb?7hW!WZ&Wzj<$d95Htzu8-grkC)X!nU_Yr=#_?#+yneb}i z=LlafJn%D&75<^{Krfvyyl#SH5Xkuq;R}S{ApUcO|5x})!tWA(;zS1odicx2e<57S zdn<$woaE>)kpBN3aLP}`6o&`(_7l<^szX%n9^(H|;&dIGN&pZo=maBtC{A^bAoy@fXkzcN98f$$FD zw~4+@_y-C62H`i#zz_QAox;B={5tV@Qg~&n10ECpg76;*mpbr%4&3y=6kC<(-w^$* z3mp*Hb?*r860YREe+&P;@SuIm4|ermagpP5miQkke2j3Z74IbB7YV;k^o_zd3$GG> zq41pv{0iayHNgt{<88tZ7d}{gmI|LJ{9D4G5uVLE;56Ys5q^g7H-x_-Ja@4J0zLV6 z;fDx6QS|>3-Y7ii@4aA$QEuCX2kpL}@MXfkEk4!4$4+xVz^6g@wZiuk{Z!%43O`i% z)xuvF4s~bO7li*kfj@hv%V+OP99_^)?-G8H@Idd?3qLA>-!J~P!h>|bA-qZW$;!`j z!fzHHlxvglUYbAzdh8wHgM|m}(i?)!dae^*Fa8G$pD+A$;e&)fC;aQeYlTmr;ebyG zZxnu)@Kc3fB>YFh?-D*&__;G35R99j6Mmy`6vwWIh2JY2KkZs6{3+o%;olSfJ>e2} z?^WQmH|h>|giA%=Bl-cCIv^OY-xq$V@SvXmEBpcB$BIwx5LeGH2(J`gDg4*MKP|jQ z_yKJWP`13Yg`Xl^(Yy)59}*t$zeM;m!h`;Po$$AX2le~~;r%aj=?4Ac0pTYJ5AEY64+Yh|0&V`LG%Y_UBL6A@0P-=6a9;#Uopo4M+^V8@K=OCD14jvY*M=A!v86J zm2fnNUAu*MC+K^lfXx4v1il||_KWFPy7*AvG{6gr6(=TZA8cl>-(Czeo6&g*Rkez}JModA0j}zUZF=ZtbN4RSEy0 z=+C;w0aCBtE5erve?atGgr73k0YinqBm5fSLH>D=KkMzs!Y>g0zQQZ7b-)l|I6Kj#Rq7JicW%oBc|@WB4LM|fU% ztLVQZ{CVMlzFjGNgK$)rT|W^1C*gryZ5E!n-q8i+{j>11g{yep`@)|Ve!BSY`$<>- zZwuEjX6r_5moXiV@F>xrA^JJO8-$M#{Ju>^jj@Xf-uRTKT=-WREA1nMI(Z4VJ65)e|_rt)%`gu_JFyV&@|F!UH;e&-| zZgoJ7@X^9g7A~>yT7-XH_)DU{LU?q7TZoS@@^V>}{06c>0d;Ge74T1nu~5;a3X}==ZL2_4#Gt`zqZ5 z!dD8{G5g+8!k_7Kg!4szs_-)fR0^*bK3Vt-;bVk9Cw#o{slxl-?tox_=oP|OY9MM5 z{Y}FEAv`GW-NHZhc}IA(=pPsUwD6!FUJ(BK1pcz{y%#zLkGL=I_rgCEeyi}^!smU# z0rkTBU_hbVt`#nI<{d1&_6|qbBKnhrFBX2F@Y97qA^b1GM+^Vr7aj0R;WLEi7dar9 z@82r?JHr1e`UipAczvh?0{h_+;cJBl<$Y3kw-j4I|1I%<2=fnKzb$j$KNNir`nO#f z_w^Ie&%M|EzQ=uen?%2MpaZ!7nAdMb-%APp*TLRf!poL8An1?%j&${Zsc>KP1BA~K z{u$wC3x87h1;R%Q&)n~T+q3R_qVNR|y5GvCH&giMg>O>8)xytv$k7M#d5`dU!rykm z-Xp?iJnVoT@%gs!hGh=FNB9fEmp|t4(c<%}@THGCV50Ef3-5l!0l~cTJ>g&KcDTgX z>wA=|&-;XzyI}7K;lKK_0}dBHSor(Gee~)Zsz@x>NWnl}qC2Ju1Ah+tH74U*30w4-_9&pZ8PYXA77q`Zt8XEBsX9e-nPh z;|@4M_)g(}6MmcUeIVb|53`p$;IqPy6#g^efjpcheDxEKuvPS9gjamk0Y?a*CH!RJ zft=qae2(xc(Q_XI^K+N*U|fDu_;TUriT*j^{}C?r31OKABw*GYc61H#(n3|ahT7^Uw6MpD&9ch%Y;u6{bz)~_mm_2oao03pS#il z*9o5~{2k$+7TzIz;5QsFMED)RGajV)SO*05#zUgdi(W^zcq@e8@l8iBHR}CD_+!FP z6#qX6zvSBv_=WHfgl`gkAL08R!`F+m$yw9C` zPyFs5?%db&x#v00dCqgT=b53tC}}9V9N7C{5ZTlemOoBPse}4>*3jW zr8Nrfx+}x`;Ejo2gpbADd3h3#;3rd`U&I$buL-z$-!6P3-hlM~#CPGYe5$wC3W4r@DcdDwF-0_!8rUv(z%)VnRp86+=eg0A1Io4V1&QuPu1f7xi;4{w_Wnua19%FTlIvRpml6_2C7)8vAXGZ``1P%ZcxS zhhI`C!n5#x5zYTReUrbbrRl#zysOWb;+0<31m=;>&G^GPnvoXd=OO%Z;$8kX;?Lpb zr1J&daiap4N3b8?i@SEdhBREJ9A4h4JDkjZJK(F*tJ;L@@8HT$r{iN=R<{1`@w%T3 z{G~iC0P`Hbc}>Kh-=?4STk`)f;}h&JT+81e)6Ky(cn{8dHhvd=8=i+hf&YuQ#9zUi z|4*R@z84>hyYu)b{u1um!{blY^7$AaOFF0FT{bJ!!AIf!@$c~ne%cm=D)?Nyo98#- zr{gn;zYAZ9pNKz3`?GlSS2fUGcQ4|rak)(F>rH$&?#k^$yy0saw~zQQ#Lc+q zCq3=<_lwP@ABg{(_$cvJJ8F3rzpn5r^{qZWP^@tycV{7!uPTMCciPvLXkR`?y?f|tLe&>#N{UyWD8f5l(K zDc0av$*?Jhm+*Aro8U)teI0|h!Rz1y@icra9>z2Ab-24uC*d1B&%-x*9>f2Kb9#fh z_-4-+;#)jliofdlWB6;h%jbIhP0zRDZ+rd`zTNY$@f~;#%I6@y8~*{XE*-QvFO&I& zRr_}uWLpC~e2?bv00q$+&wN)CC?K7V_-gzjd?3F0Jq35YkHPoh(tO!hE?#Fxa(pSC zisunO7hjA|A)nXdzwOk(@x(93AK9gFGQJLf8=r>1jSqTXp#i=JpNOA@|Aa5W-Su8Y z1~#UgtAC(@F8}TD2%bYaY4|q04<5p6eW)-RpM_7s&%qbttMDH9AW=#Mn; zJmRF>e^e5UT&t3CKg+|{4o@c-e> zNWXFy-R~YeA8(3h>``#%r9J)xK2a~r;4E>ou2_e0j7xtg-U)Z@a~A1z`a;t;e+R+5 z3h)76>Sy-LDl+z@NfXar67q=CuxQ_Pu^~=jAm#8*ibTgHQ3x z@YC@>@$YcA-{WLpX|FFDwzr9IkN<_cexwWD_eTv}NBl_qZ`_qbHeTgt4RrOS6rY4& zNII9}Z{p_fAeh%;adW;l)YH#%^etFQ{7d^4Xhwra@SFcqA459p@vr|@Ka+G`$J-oK zh;V*Ccj^42&a@%;8xI{)pGP{!b~E{`9_((ea2tN2xGCqo#6L><9r1-nDGVY0EPNO4 zo(~^^|657p_Yyw=-&0xrJKX%gSZ2Rlk5+Gi&%%Gev+&FDG!|NJ#TVndaGJm1LHy|y zO}`=WFX6A^Zk_xcyf+iCO~n6*AHv=G&r#hq{~fvU!etpW!auF4`!#vwg$Gqm*CIgQsnmaq;neJ&xzlNcfC{t zcslOJSAXFpcmv{(>8a&E4|nIWG5##xj`+6t$6kDAymkXEPnXX# z@!_~k=k4okd^$b@KL`I2pN*f7mo(J$@5Cc`jpNlv;S2DI_!IaYF20e*H^m>sPsWGi zYw;*P4Bv&X$Ir*V#hW$O^qaW~Bo)up^DG7wBZ#ks--A!ao8Un+O=mjZ3ZIVurJI9P zeBX%*?)(nN58!=B=K{P(bB$kwPs2mp5OCM&Li`f^YWBMV-$FVr{%L$KF2hCpdIg`+ zLKBc?!M=9j&*1L7d?s%D&2u#FYT~~peo!w>r$7ED@x6{$sE!}Pr;Jl*iC2{YhDm=Y zUKOv6Phr3AdOu#=oX70$y59xFx5eKlKdtdI@#;M_-pyNww2GVeu>#oNrjd$%ydpr+!@%``zaaVuF;J@SU zdY^(H#5vp`f(N5@zjMjYHTYcoCj1`!xGasAZr8q6;zRN4@QwIRJQv@I_a39^Nb_Z1 zU*R$QRQyl;ZhSdjQzi(e+|tHsIm&!3|H9O-w$n}^h=;=}Q)@rC&Lc#~|6ud8oC8GcHR zLN@UW@ayms@VoHWay9-6{Aqk-SbYY*Rou?+>MLwvzq^RvLVS$)ukhY^8h8rjupiGW zP_P!B4}t9&K(c;zB>vKh?7 ztKdC!bFdiiU99jV=|75pi%-Y5;MpY_PxlkNhu?_yPQG{8#+;QjK@>otpi$ z+`hwaAigzz(S;g681II^jHls4@XAq*pQCTV1bkjhAzWF%P$F*X!xR>brzi&(iJSBI z)ijO29=`^kHeKD#_wU5l<2#9e8s9NP<6V2T3D20RPO}^Az?aNYA5A{L#ly@uUAg^> zKZmys^wls;^ZzM+8GZ^Lnyu-(_U#OOEB+|)Bk)-i5OyfK2Tkrxta-Kp%;@`vb@Ok(*_}6$V{aWx3Uh{GVH~y^FU(2TyzmRm= z<40Yg@jdaLcrV?}e5XBr3%-^3bUgQ3jjxZNgHOj>;Kkx*zSC^HLRI`y;%_DX zc1rY9NP}#SciEllGF`Q=~Ye=qSk;_F+Nzh6W}cI|mHaZ~=amTLm7N#_*2^SuhL z|Lun_#pfNZI~awxT%qy21sCA2KBVr}XD-7VKdjF5EVvb)`iQ!F?&C>(;^XRWT)G*5 z0(bMBo%jKKn|>|$9Dn0Ug|?K>Klrb>E9d${w0w?vO5;x^zCGRDW7R;)yrw0n~Iz3w;}yq3h^EBI-U<8oo`>%beJ{=6Y(K0skb1VX?Ow7 zZMooTyy#_(cm2q6{AGL?`FtL~bF;?pBmKAWxm(m-`~NlmEB-C<|Kgv#s_}jFEvO|I zvMGnRsW`6wG{Khvtw^VhxGB#juWJHKvx776OW#oMO?)Q42EPdp;ltk4c&1gsrFhG? z)qCk%uo$24j)Lotp2TO-@O(x3oAB)I8ZW~q``U%yk3WuohiAR3@y;s`)8jqrJ@u)? zH^qzaiTJ7bX8cdQH@<#{rt>O30>5&ndJ}yMLijzq6uu#T27b-^>cjLh2yVi6eyC1z z!87>dAFEf@x8N20*-sSOlm6%UC-`XkodbBM&ow@e3#OI~{7ikgi-sxNQr|_}(XZTrM7ln9>A2q(1_&NA>IHxnX0}uVI@pqHXvv}~kx|=V& zhTnm^c5Dw`{SS@*hyDJJr~Ikz>Sy&4T0ZH2sk?TsDIUVRlTKUw7W@^?Z+Cp+K~2Y9 zNB!}K{z*=MEWR19L;3~ccHBbyRs)X`Uq#NQd0oPO=i`@EQrJuUE%@Z4)mbJB9>6!I zsJrrf0pH>ITlm-b8q)s|UtU$yc?I8#=T}pgWnTOG6TcTURat84sZydl0A z{~A9Pzl8s2qL+Rx=z%}Wf7IdH^8xr89&GuTbVlK~)Y1e##V3oKaftc*$L7^Y-+~h2 z%WG@=cldNXR7d>@>g^SHo#WK&>RYe~Z`n|RX+W?XU&|k^c#iZR#mgFL{3%+Eg0=YF zjn$9EU&kM9qW%o&e1lJEs{R_jAMe18-)4Aa8OWLQG6;A5yZL)w#)qAt>9~2piTDb< zFX^P>U*IzRv9B}nQ%=-$P9y(A@N=81Pau8*{xt6D)l~dP{Cv{61|Qy1(>X{wx8NDA z)N}9^_@nr<__KJZwZ`9!zl{HZ_rl-BQ%}-(w{G(zUh`!2TIBNp-nE^&>vt;40M(T9 zC+*cM6JHzutb@8-R`%5jKaB-%cRhB(f5Y9ls1H7>qo(7|;~@Mo+?8_{{x$w0`<;TX zNY!+%#f$N7r>VQ~#zlAp*R4TtC4M2^gmf0;*WfZev9J5^Z8*zh!4vp|&YJQL;@60q z=jY8WX7j41Z^1_5PwS%b&*R&OuR}cDY_Oa7uZfTMFZdT-HJuAcr;;panDaQYoBDdr zwaAZ2)9U%7az(={D;otEQMa5rzd z8owKNiWi)%@on(V zcs&Myo$x+*fBZ^33x5^ghM$k$Fo{nbcex3;-+6KAkNkQdDdlJ zvA%9__551WSv*qHZ>w*?t@sP066VzRKR+a@5b3HzPuKE+CQwuMgsP58lj6a6E z_QCwUMUzhcB#p00{p^WlS^A*0){KsVSYKI@fzs2vu>&taz%3(oN<6S$}2H%Ri zde;~45!3i0(wTxU$KS`x@Qcbc{v;~s&G_9j)T~N`-sTeZIr#6SKck^0z-bTuA^rjLAGgWtJl!1BlLZ7*K9y&yyY{Lbz5#DV zd_Q~-ek(o-pE*a<`3%n%H^*DrK!L*!N{K&ruEx7|ZvlP*UdnOZi+^yL#&6}oR^ltJ zQ2&MY`DJm_p18l`F@*eV!_D6fGB4+Q@D`r`O!`Z%)AT!&pQFcVxxIe9dOw?55VXK+ z-k?r$!5Mga+?CHDyv9O}zm;^x;lJaRb#oBL_b*a#>z@nox;LpmNIJLR&*6*kNARJG zHQu#LFXD4RehFTxn}Zej z_s=W1er+RO_=37?-?ro3*Q$R-`g`%!>(sYUp8w*rH>vlc;b&G6kV6_%0yNiH4Y-MHv9aZ~;yKGwkR$p7iicdN6!6%4{3-=jW={ho{ehP(P) zgg^1Q#%B;e8{dz!+z?!aAN7UCpF#X>cyIhv{2@FaZ-_sS|A0?R(G9QRx!-I0_iesN}Kk>Er8F-2e$W1x_f!~KW!k7H5>A3#19exk) z`qN(cBe-i1Gw{&|lhYZGPrzL|`FIZAn*3aZUx9P`D!5kM^mkLJe=Uf=mH2M|>VDJl zNAc;nJFe&POYxn=zlM)Jr0KZ&{678sS8wRkh{#=GXg)>bG zZWK4|(j3~Eex$R6_yfmk`UUt?cy=xI9{9`nZTL>||Bg*x&adkzD2I=UkJQ(67Ld-D z_@DTt#Q%wxH_-SF#8;7lnW_JGWC=bMUDx)W5-}iJN-fPsWwzRa4)B%kfU0UxS~F(>w%=@kTh!cW^&m z4R_b$)A-*q-Zw9rt6&|z1$XKH58s4SY{6FR(tkD3bcR&Z_YcHP`42f$kN0ooU=N<& zSKZzJ`V*hcjRjY3HO|*`{>GbB*M#bdn{rz=PCri}{bs~B$k6oN{k!&f2$;$F>VbbS zT;oYT7=(Y0?;!nw_?i*P@gwn<@y4W|iGP@x96tfyi@WwDA1@xM@fWe*a{MdY^`}?h zjYetwx$Ji#{tpi-_9C4J@$Oj~&$KOAg+Dk}{cTS0HgPi^Sk_V#aQoej_rph${`aIa z{aj7QwX6H_=KP}YEaIz7*7JKiev*DIXn?OfU%`#H+vAy&)n6r@UU;J^>L*eTL+~CU z^)h^nxc&QM9H(nPrx1TzuEx9d>Qa0&52#+In}a!cMxlcHf32^=PbyXafQq#g|97VP zaPspwe)dJ`Zv43hzZajv@oo|~`KLJvT>js~`*A_L>+}oU{6DVd<$OQsubr>^b@leR zDSBSsyIj2v?O_XXbKRXvyG{0kQ;FYqrN(o6IOv71x=P)(+avI9*Qlol`kI1I$LFzw z68ylm8h-)t7vZ_rsqf^tuf}^XRyY6Oxp^(0qQ_O|R`ug3h!^pb?ojVV!?zWmv`qaq zNyEH8pQ7os;qOtLWl&xRrl?Q9U*n~)?5lnVe?a|A8v2vO&3PP2{%Agf-o#I2BDhJD z2?pcOJf-P8i%-T2SE~Pn7vfpwKO&b`M|>_m2d8@omg4W>1BqXQH+fdmX@$Rq_raUt zpX1~4ZTO#fhgF)+2E1Ojmd`hMXUe}l-gK?T|3&-&{J3@MgOAb;6YxVXsxKoxEN<#; zAnOq3RY%`~DDii1(D?7EKUd+`ZdT7Hei{BNelxxrU$8~vN082|_>QgW?!0Wr|M!;q z{iL%OpZd1?KlpEW!8_{9@R~VVZq>G_&(*h}HGb853XQ4fo$%%Ft8+UcI17LOL-oC+ zKNes2k@_{1a{)f&6ZI5*3!?al&lFma&P8|$&STTTV*Ix~8vkh}{leY&_I>KzSnzrR zuX;ee4fSL--tmySo8P^P_c%%mpr>vQ_Tt4ytDk}Yf_=nZ&r{#92gSs2HG{R3fRo$)Mw#KhxBFJz&I352CKj7L! z{KL~UofpZ^H2lF%>RpJRhex`ocP0LId^z46e+WOStHy8SI(iA;)IKOzMeiPyWO+&enA9B>mb2S`Pd0!FXr< z)L|MwjPp1EziPO8HO@;Oe&a~>wWKo}A3jR`{m#1KI=sze>KVk}g`e}II?YY+F#h$~ zRcz$vDf)%y@%evh{KjhPui+2Bpnehg-z{#g-?ypYEJFl8;k$7+pZ%9~N{-Y0n!nFt zUUdq!+{(Y!^gq+hL2LZez3OAxZ-2baO7-KZpV|1*qcwrs@iP2}TQ#2Lw%|(q&9NGP z8|zp%x%7FE{7%wYfxpZzG`G>@f*0_wu2Sev{y)Gw+@St3{vCeb2KD>27=pj?2KWtl zZ5c?L>#OR`8viBvX^B7fk~+V37<9(JTB6>!o+dO{+?=mc7DTI&ekSqrp3?Yx@e+Ip z>4)*_@H(qBekkW<1s`M$_l<)8GJp?rQc+ z{BcvYeD1?jbaT)iKY5+PLgLTBpT%Fshv3uKYy47cM$(9^}hr8eA>oW52jRC=!ZW~e77$&{WRK> zxA44Q)n%G*U%T;5IK%7UM|`k(Mn_)b^lL%QA}!~hRn>>utukN1=i(1gZUgbQ)iu5o zo`a98p+1&;PQxEPR^8SAtMT5o)U(;|9r#`NJGwb|THKW9Pn4&t=P%-4;~ZA-D*mNc z{@d_sLo?>K`Z=O?AU{fA;On&NBQs^3I??ul<~p?(Yb9D(03Uh}_< z^b7IKQ#5`K<$M`F;biq3{C08MU$oQ%>cD;<#5d3ocEMMXPQ#-#9d{kQf&aErPxw&c zKgRp6Qa_9Qe}`Z4y!zjiXQfgtpUp3*yY;U6c$6D}L&<+zeC>-G@5Tu|@Ta?L`81+@ zhT?lRYJ5qy?)Y4BbAI~~*Mj`yT9@atj#Hp|1{dOUJii2=hI6>V6{Igau`kyS+-SW@ zeEo&Z!QJAf9ecfp=6^aHo+6z&G_;+_=ZnNY!9wR!J-py;;`{083R)2V5k7@Ac%X_j@|=zvIVtR(I_~icA(5gE8Sf=->fw0Gtp=V( z{O~~<@1En$#1{`yUrhW&(#d1|aG_XFVFeVj&C6Sn~0yB zrSYyEco=^WpGf?R_-W^Ad=JWbE8c#d`aQ(&#iv}Oz6L*lkG?_u3&xpEqFVmZ`RYID zTW|_K>mr3J99J4X`x5m$@-q_OcbWPC_Ip158u?s-&%zsDtMR9Ez278m#{-P-8xemu z-jDwMB>V}y11beN^{Wz|dg}OQTiTIz` zA)AAL@ZC74Kd2egavt@kru+~YYKV`Mx@%r;J)tAsn*L}J`#lqXi5m}(aQ&SvZrYzI zT&JCgA4_~u6W#D69>$x|zdVFT@zL}z)9`tCn@*a}CiZ(X{!M4~bBMnm@7G2Bef$}` zaaZ++saKovjosDxb+TXwetS>#M#O)CKXtk~%Ob%a_?Ks@zeWA5TBhYwhlZgJ`Dq|- z+Mg=pHNH3Tt%%>i33T!1Yn4quewbI~_}%7;jlFF;GQJ(7R+CLbN&mT)3aV1z zSJvxzD*ulO@pHT_zY*`oJ#O;>>nXv}UVZ}G@T3HtJx{S-J6PZn;Qbil`+M>AaDIIx z{;fv1n@_q8CzAd`2fUwz-{yG-e3|E+tk-eV>-g3l#IJ~p{?LbbH$HQl`xF191Kx*N zPYK-f)^76%e7aW-WAMv7KNp|xx&FV@DFKh|yX1pB;xG2%i*UEz?Y!d;YFUGg7dhOOD5=oU+Kl4j`LVk zJiZ^k!iyh_^LS1?egwYSiyw>gSVug568^ClpM!tp`33m5o?nRn==lu%d(UU%KYM-! zzTflfaCcwO9l&DTJ$LK;4!pkC0W8N;J%0%A@A;E>iRY_vxBlz)yB_B@n&aRV`~feW zH*jtT#pAc*+?I*^2lyT@ozL*!JpT%>&%Dkh^drt~RmZ^}`1xM^Klt^YA8kA8lwhIf zHStBB*TZl3yfJ>S=PhvedkZe3ZSils_*A^UHbe6HuC@CQ5} zk1z9lGX99?dH80}i}4hlrn_PY%J5vzFTxjjei^>O^Q-V(o-f1?dVVYZujfngX4T?Z zv_IUBxAy!|yo2XY}0u{hqhR+qi{fPG<+aq350Po}Tx@ z&-VN*yvXxG__dx7$5(ki2LH_SiTHlcv+G&kiFU3ndzZ}2Q z^K0=rp5KH&?)eh@WzX-ycYD49ui*{!pTOIBz6w9b^L6-no^Qf)JbxW8@_ZX!?)m%p zEYEl2?)Qc`UBQ?5ah2d=~zX=X3F9-cs!X{4~#Rz&m(;3*N)?yYN1q--l;-{s^As`AU3(=WFn6&o|(O zo^Qs>Jl~36k3Z>oC;T!LRWAJp2*QbMcj)PsLyKJc@7fd?x;y=X3BkJ--rnf8W)W()IXfUi{7Y z7oOjVS8nK1(D!@s9-cppkN5m3{Cv-!!*e`;5f6L*KfKKIH*xp(b6jrU#jo_@Kg6%| zd=LJK=U?MLdj1psv*&-}zkB{K{+H)fE-^Wl`-#W9oa_5BcuUXgd>&q>aq@nz#xp&?5kJ@S+wgb2^1mB@)AI-L-d=tl!^2+s&)^q( z{sKPR^Ox~?p1+De?)lsJR?m0hzk2=&-mOV;x$VQx_53@0u;;(xIi4TDuk`$=OU?dL zf}1?AX1#Xsc5-%t+V~dF8#f%gs(JZ*1+U}z8>G{= zY0_Z@+woI9{{Wxt`DgeQo_~d3>-mrPEuQ~@uk`#Me5U6|&o=o^308St6QAvQJ^TgF z8{=ls%c^=F$aVfzC zo>#?}d0q?e;CTc5N6(w#S)RAXw|L$G-|2a0{7cV!;oo|G7T(qKL3kg}hvO;DgQV9O z{6xKY~B!`AYl+&)47^Jl}v{>g9hkey!(Q@jE+r%iG?!|<@@S@=xP&&40~JcK{zc>(^8 z=MnrP&!^!BJii1#wrz6$=i?`Oehq$#=Zo-|=eOglJzs{u<@tm7+;++Nc^tpR^Jnq9 zJYS1H>-k3f6VG46>$Xqc?>l%~&v)VHdHyNh#7qAR{AcfYzsHAq@xS4Vz4ZUapY*)a zJd^K~;3dziO{ASN*;#)kQgTL+hmH2g@Uyr}%`OWypp5KXo z=J~z&KF=S)=lwanqvtQ;{XPF5KEd-h@dD4^#fv=u5HIz74}P2HU*j7+ z{|SH3^FQ(LJpUK3dTMexRGDu+rvx$2kHH`EyguHqV{$r8@Nq4Yy*WPF^ONwGy>w2& zKlQu|{;TJw-(jU+(!Ne1_*a_zKT2z;}3lA%4j78F=H< zl8+rL@bQa^ep5K8l@_ae|jOP#G+dO{~-{<*iyn3hP<64h5^ZXUO zz2|S>Jw4x!Px1T%e2(Xz;m>&f75=8@KjMFT{s(?s=j7x12e0G#(U+UJl;AwiYvNNq zuZLgjd1L%x&s*SIJ#UMD?s+P{-}CPH4A1-E^F2?;)4C*=!%%#n=cDkJo{z_ycs>~) z>UkcX>3K0e(epBVisu*M`JP{fyT8Zcj_xY_SucJe-qrJ4@l!lsiof9b{rDN4KZ?KZ z`P29|&!5M4dj1mrk>^|RPdtAM-|hJh{BzGg#=rJ_FaEvf-{OCH{tNz-=YQeReX)-weYo`H^8fU-VAT#uoAD`!W7+>mn5x&{;7=Fm}S@={$nJ*eBUn;(vL*2CvjNIer6P+w;x% zNuF=TyLR`PKj!nb*zvcSZp1ZVe4jz1PZ z&-3H(a?hLMyF71&f9rXByk=UE^y-9P>3L7Qjpu#wkmm#OwVn^dzwtZ^uhKs$JHfg5 zt)7SQOVX3$3-B8}kKh9bB*#y~w|IUDzSHyh_$QuUgYWfx5&o0sx8sLAUxtq!n4HfC z@pCw zzu{MS{x|-<=asH9$C(m5=y`R#@!;fgsDnp6KOXPv`H6VC=O^RCJU%@ z-|Bf9ewXJ%#OujJP0f$e<2r`Jn~0y{c?5TV2gb$E!!wAlOgc;OYw`N{3Vb_W8()jN zzxz=We+&Pf_~!U$_&e;d5&pAy9ez%Ht8}#R5Zc6JD2m_QA(c(Ok2Vg>N`j z1M`W$5I>e3y5qeX|AKjho3<^%8#69-_47&mAnt~Vui)Jn_olGl5AgxGJC8qz*OkAG zS8t*QRwe#l;)i+ZG`dd9ZM5g7;N$Tsq|*mK&+~KeY`himW%ztA{tEmm+?B&E_;t8D zuE+74ad%vs@b~dc+3ybgRtnM$FTQp0coy+TU$5nGD&y)Acs+a;J_>J*zmB_fy5c7? zu6Fw!j8E}=BEH=73-P`9x$O69yf5Q(m;N329K0s+PvY0$yans={{d$bzZ0*_c;5Lh zct70Lhw3+Ixedf=?t>QiApA7a?~C7p*TBc)uj5Vd0(>9d6u%e`$Y4YK7X0h86kPpz z5dRr><+DcIwFx9)-!>3mBSV$b9PBtk{I^H&qZS@M{o{_{O~pt>EhCx%f)lU5^p*I(#?rZTb;>!4dq1BlxXH@MG^h{C@8{Lj0pg@RdjKHAnCb zNAN92@VCWH`KNKgxqe|cJ{qq@;nleD@W=HN@zu`LKo?(0;!XPI|A92GG5QwN#=pQj z;4SehvK2bvJ@I|GtLH=UqjEIRU8j@rPPmJY;n(BSN&jlR6&>9`{4Vi2{G9mqH1Ss# zs*YvjCj5`73M(t=`+NATh<xe9~_`|&L}mwj;TA}!ATK6dVIwK1y>Hs#1B_)4<5nSAHjDW z!M{C%SGno%`#tUm-tq|EUfk5%2cOpCa`mS-{sivMS0?@jeiG%AjsJvq#HZt1w<~a( zgGG3k_ta_rf=BU-ahkc{WqjB!jh{^V@8kEruaJlTDt@^0@;C7{zReZK`C^RIq(e;@u4 zyhc4upq_3HUcq}cRd@aA2jYh-hrPs?@*hLF_`mUM@K&UM{LNZEkKw1{o$>eaWAF_8 zxE7ipH?BJmZ;HF?D~b>D;uqkS_4T zcx&QaJ*j$&mcvusH2x{#o8kw1sk`d7H|Io^Z#+P7;t?83X^?eNBJG@X3B4?YJUfoI}dahK02_;%d&Us3!|TrPk6x)Q&( zt?t*Qe;57%K7sgW@q_I&z9zmIui9SS^|K%1wQ)C|{2o66rx^>5TB7CC$%}7*_r;g7 z-*)1MtIzFw9o|nnLj2w%jPtkLarkt)lb?ly^?1jUpCS12A?j|NFbSW;e@NoI6uk%>aKlTjQ7G_IuGMt<8J+JJ^l;s`mcBKe?9*WuQ6WtTbul(NI95sRAc;V z{CNCc+||QWdfR{YyyaUi^|T)Z60E z;P>G}@lAN|Up0OQ{t;gHH}!7#cX%cKz^)r-{)=CKqSl1#iLZT^mS?l(>f7<=czgbX zk>;HD9(Z)L#=G(vi9ejJ{)2WuL5_G``9IcN`{mwe5nuUYjbFot8}JEFs~;dg_u|c8 zRNsxS!PoHzUWakPyorCo=6cb@*!jpz0z$4Z+>`fxk7K zpY`$!*5Pk;)S5sy5NyL+oTKipm#^_h@WJdiWto=GFZgr#@#5w>axZrsrHY&O@ZoWq z{zL-O@P6m1yK)G63g6}(me|H4`{Rke! zE-Wf63wKS;aX)31h04lfV@nf1yPq>-=|z!PxZ>mJa45Ip)3~T4Rq=65w7euIlqiD= zi^5rjvl3#Aq(@51qLHGCFDBrS!jiIz4Fkf{3Uk8g1)*ptrz{*TjFlDU#40vt6%-GP zxA%+hd4#is$`qHtnv(sFXbv4pP=DDsXjt0){U4W{MA#+DQnmP|E24U>Jk6#Iws z3rqTkOA7N#hKGuZBJm;|5{XQWr#rAD_i!=8!^MduAsQ5toJJ+>^bSK@g$pT|T)C9%$l5#}Tft0?_Jq4J`#tioa!k`Wsb8sR?J zU5$y13`Jw%_-+P-FD#E#oUZh;nWf?3p?LAIc}!$##ZI!yq8aJM@sP2lrQzt9$gs%t zid56eB85G=xg8GQmDT!Z}k%hvkIHmu;xJ{V_LE zcK8^R0l7*?%as!;87Wzm6KZU1NpYyuWQR|A;j)~9pfnOIoRJYRM-`4{6qgn`86GYx zh~&n|N>YU8A|v8L$VyU7++0v`xHvca@QsVzL`$JzMYdJpXIpgxK4i@-c0X!MVtsU| zBsWrAVwxKJSz8tRqtuaMp;%c$BI)JPsGRFDg~eg1Jr$L)e_`3QaL$;p)RBl(6FE)P zn~DuVX-+7oK(3LJP=0toVYFD`rmwa9$8povP4X0 z^K*_glw}S^ho^>T2GPiL$-C70=*;0J8DLB_9F_*awAmUlVt};hM)_ z&`aGOkR8}hrY_6R7evaVC844rxip8maq{#~VcFzJ$z=15AU9MN%9aw!kiMeWUQhX2 zmU?bEStj>UIqC7@F`vhUin7W}OC!-TxeD!m2hPYTDvuRT(@SuAsK{PyvGQVb{lzrK zB&7wBn6}BWT&Ke$x#mhTIqP30N2{0nh2`Ps%q(e_!@0Hsj0t6Pl^2#w3l$a0F-WD$ ziDnl?vZWrzBJ!UdmX<~3$}~GGi3HguE!#?`hl`5RaxW;4Nt-?^JV-i%2N4eCxy16rgQAh*0of+c zYEt0#gS4fgq5;{7wcD1?=*aYRQ>COy4ss&J(iMcw@!2?gS>(n)+Cvx;4wYtDk_hUaL&oiHWzYO&U0FxWT3EYraSo~q~jhS7j(2drz{fh z_RJTChou{cNTcmS4UP_%$IJ;!H0fkZ^1~zJeSnFRqs=Up{~xWmcxGzPu8Gk@%Zp2g zgri9*NXK3jl1r@ON;YYXjfG>jXcE6ZC@LM3WKD)qiJT?luu#z$>75gL#;juLNsO67 zlt#wJBvgE}6aAvW(4eAFerlKaVMu`uk{VN%E+<23tJ|C8wJ;hU84VlEHRDvBxx)&lhKu60%4|O;Y-&{E5gW~jsRsq&!u$d^sLKzP6@;T%(!S@& z2t#_R=`sD_7m7*3G?&uOnj+4ON}ueGjIYbV4+<5=Ylr!U%mK;@lCB7&G7u~+D$FYk z=Su!F{&w83{cCuZFxgZgm;Q`rZXj@!yiU-LM#*E|h zWaMKrlb-E%Y7*BLk1y*k%o$G%8IY|*LY=84R2kFmnD&xyyOJ?`L#hlJ=jPfv=f0j+UKR<@kmkoGZOgbc8p9837bk!a1xEY%Yo%_)*{8y(i+ znpbifDh;-o4+Jr(YO>q3qQX!tkU^ac%8>*Kw7yJ}j1MS`o^ zBvLFLf^3(uS}dGbUSy}xS!Ll;Q;}Td(6&$~{$@a-#V!{@EK)R0I%6})qrH?1I&}6p zohk>j&K@_$R;shdCG>}8;68AMTprR8Q0y`R%82zZkImFUN=C^vnaY~aLu9^CB*z#U z5{k-2RV-g|qf4zG+74)|FeZ}JPlslii(9(8%u=0|n&Pk>LE;p(o1L)Qft-{?QHG4L z%@tw>OeRbZPO61zabuPS%7npGe6!j7Ji;8J`=Hl=`_x|!RnKav9Xt&(Q#mvbBC5a0^m4A-JkAEwH3h#hhn;B%?jHd#hZNoz}*RD8urgXCmM{n3%Xog0{r z%S{}z3d+l*w<~du@SD*3 z$`DM}T1s+l&Cd^)4JgbnEE60)BeioUcSPo##LVJfG?Fb7hsk;Ib7)oo3P><2B?3pcY(NBLiGkE<;_oJ7Zq+OIH z4Q*OX#wI~_VTm+nMYgesmPHFqd#|75$jwY4qa-g9OgC$xUAttPa*+Bnup~#WL_36b z(?=69ImeFR?L^KrYcfBPp4J7Lb4(KEN0}v>_SH^CgAhLq59Lb>N5#~2r680llM%TL z3#BX77Is`=uIViFaCE6jjz`v-%8MmCWl}%nm~^n6FZI$ML6M9r%?~3Y((3b78U7D4 zvu8eL#0FH5LN=Ux}r?AeM)n`-;B&bF8mel~rR+ooNo886tCTB2OHG`1ub$_v}V zH`9--(ojzPQnKB+-MNnUOg*-9S2>gE1?44jLjlpHMG8lH>4aJ%rSF;rR!A#Gsucr1 zI{BFNji%GK;{empCVaHV=z4U`P(_3p0B9!6332^dRQvd(o+q(JY4?@19A-c8HBOIi z&#_}zIT~59ERw#rIJHasnwI$7F?J!u4mndh_mJ^hj?@!-t;lpB-_{{%i?gJ#Wf3$y zO%^N)b$FKAty3_|^iru^PY(+1#gf{!S5PQJwfwSz)Nb)x7}6c}k3^*Y#n&vQ6U?wD zwc^s0nURik_y}CIOdv`R!7RP z*i1!C61oZ`ZMRt+=E8B8q1&-8hYTtV7fIKeEmI$voR!K@J1i^q`C&H`mh+ypVq&JW zabQ+pzAG6RVi#6q?X5JNYno>Hs;uqV;dk8P1M;}o?Hp`IOfnhHj1CGFRjjs~q%v~N zGIe=aH<zq!_ee8ha?EB%DqW-W++}v$YL?eBrGuBbm-(hlj>klpoV&81 z{q$Bv5;b9EM63BgGf6cw64U*dj*i-&>-#8kA5WG)%yGzE$z&lTcSgEY%J}fvUeNk| z$(qb5O`A%Yn2}v(Ns(E(mhrlcjQ5Ya>X6(yXUR0UIOMI3oE@HN#xi3|qTxK3u$jM0 z?^#|H{txSYfW*Lr=F?S7`MSp0Dv=}AQ@cwuK~0E>x6cm8nc1#f^LE}GpUK*`e{6~A zr<2WnO`1ki7em8i`KdkKEllPeX5LsaEYdD~oEc2oS&6wH?NZ5%XeTZs_ClR$CN;@v zrG*1$*h#8g2cIx}fSlYS(+x{2tfLQiXl9w)Ht>1UMUCucFFW%&votwQu0~Ff3A7ES z9bdY1WP6&OJxCfk+VI;e-7F=_J!+S6bCF9Pq!yS32wR!Wg`Qp{YpPPQNlk{&nNhtJ zTQSzih$YmW%skh6a2t?wZHE2+Lb0~C_I`q0=r@CEGn%dFRV!w@xpv?#gBg4DsWQut zm6ggmh762l9%>d1((J-u(iUl*rpvwdbQ$s|xvVGHDYm@ZK1be7j5|uHJbL3hRG3~A zk{gTp4rb1j7D5-Z3v*=%E!~g%5?6dyL1CU{`lx!7g$TY>YmKE8ln77zbTW0nJc6Hl~-OB9}A1TQkH58pWM%p`h%gD2% zba`SXX>hBd6qs55a=A>};80uDqy+4UP$qP`$pxBLbzo_vWM*-sJZ1|l=}VgU=x~`# z`DCo-zNOW{4A!0K*gIV&zOoc+u5{a#4J?tVN_a$gx*Ll~CS-n+INIhbi7Oy!`rM36 zzY25gT1PmR+AF?1qkEG6I|$`UHydxS)uqOkXJ4Q*R5P~8$QvzBrpS$`__FU9yVR19 zQyqMml~CQ3Fd{K1xp4w9B&QXXCD{ihJU)=T#bqn5rsmnSv`@;E#Yl5|%N#}0RcmUgj)gSZzh7V$!%e>2 z61B9AQCVk}HBlYN*lMnYVFoMO4RXxV=}ASA{ybjb!_6Inf##}p88)4RG`)JGNg6}j z4BJ%)ZQbK{)ZG`PbCd_Obb-RGTd4Y z#Pg&=n3+Dq`P9N#G$j4cbTi<{jA{$&uvix9$H*diS}eVwuqf9tNlOoNj=gw2r@1io z!flbkpM9)Er-=h1aw|ceHOW8x=2*quFBzQ3aYdpsXfBcAnTsa_BV}Pt+Ace8lN(KL zt32FNG&5Eh8zv7FR1CAU=9tRl;z(t5#R`l}&E*~kC87gX`_z&7Rz;@9$vsR4^(0}$ z#F#^N1@Fw9ICCdi#-(<%`DkKYobKL8k-3n}Lr!k+5wm@ges^@(t`-i|T^wcuS^V!7 z&8izz$Lwst?cD4(Ln&c`psMY%8KT(BFtGPy!{)Z0=_+Ijk(7wJS!*_y9A;yhIU%#c z(i%m>axYmX1NIapNMceI(TT-bQB1aom`>QA;|IvuFxj^oWVTITm$0Scw%=Ggkz+zm zg66DIe_ft5dGkntxh*3T68p@7JPaahTV~84y+L`leQt(3$+G{Dc^b`)=}dlX-^mzH zzn0jWs+fJ-2Loa@U75hUgl!WqQxlgZxnJz&X0q5RD{ZE4bM-cPWy~ohU>ZTa3oZ-0 z(n`C{GWC+#i>!>~$de)A5?L2?`!e5*OcB=!zPl9=Yy%-eHiilq+&+7I?#k-BY?72V?< z_EUV8Z$IfemHkm}@R%{aw8Od-WfE}vWP?ppZ%+)$DUh2(ZaYVnDNlFV+&DMm5?KH< zxeZ5koMXs5HDX4k{CcutolSu3&ZMND&5CPDu9=-A3?7MyI*V=Zp~Kj>g>6w2$G+#6c>!o%We9y$8o)fSh=3>CF~UK6!BDK+uyUeXA^TBr1cAYN1$<_+H(MH;$if^8<4Jd3 z@ol>`;oG_Ko0SRk_)=3?lgsU6a%Ki)4rsXaUhZde<0GUuzdI zS18S=G_VO5E@*F-{wGvxi1ZI8fAS!c+yF964o>9FgQmaTO2yTWg!mkiN+zr zv%GDxwli7O9lag%%W6WotfZTntBxAYN{zh~OYOxXt&rS$uNW`Sk_nrPQB!;N3}y|I zhksLho*vAcIXO3ef6EmiC(1mTqmw6ZgSkaRxws6Ov+N#O%#6wdFEW0OkHF+<`az~2 zke0VdNB!)E+7JQ1h%TGk7bL3nP<@xqB3qevO)E zW+EYz4|BuSzjAoJcIP%Hni)Eqk&Uz&=0{WIO3F)h9&f6eY5w9f zad!;%*pjy-6u7<3m+)EdsU*!)6Sjt>>y?LCjF{e7>Q}jWQYm4^p2&VrZbx`Ysl~f= z+xM7F2@4i+i`NYk{$K5%pX3QC*xOj~n_%bIc|qYXB9P~{wz zOVg#PCN~~BnXuKC_L^45t^i4nO$%gy*6LI&-GZ62%N}K{;m$C1!Tj!pz4Q{7M%k9Q zLJmm_VeTfBm{S@r0m*m#a6;KJTk2)<{D$1ykcUa)b;_2aCXjS>B^;e>l}Wkjn_NRb z&D12hiDjx*LZD7q?Bg*B%YiPFcIii&=D>bifBnII*`)VhvFXcT&b+5Z^Mkx%nfS=; zs?_{)SDtCP`j_Vgv*hvR)Lxx~kb6=|##Ay*3PMr)TX^vd4wq#J`I`GIC1w{~q>$us zHm7n+#r}Gm`)t=@S7NdQj+f?gnvfGvIbfiT%%qD%BG+~zs%PeO6?Di*( zl+IslLl-{;IUaekI36Xrk|j8?230(E&=)q7ibpMN6PA$oMIhw znmM@}y~s4ye6;1Et3>W=ri$5P)En$(#A<%+F+NU9+7?&2wQZguoEAScvyLHirr~J` zW*6%cIub1etI2_KjOC@akx$H(w9PiZ_OX9E7^xVAR6Ly{9cO>DP+?F1kuF2i%u6#a z51&U}W9}|+TJ!>K;*+$Z<+q93$O=mem9|J8CD1U}5GGilKfABEqm*A6?cAd*(km(3 zVL4A3Biy07W+SoIj4;*46umYYBfBN8WSjHp-0eq3HnLn}z9kKbxi92@los99bN3z7 zW|>h@@^6;vqwMxt2(bwhZ=;vg#~#@0obn%+>-!}IrIT0!$@V43vY z=I)4;pWb4&zXy_cV=K7PuD>~kJF`hq^pzGA)z<@Kf=xfOsXRL+k;_s%~?^*ig~0n zC}u@b1Vk|{I*!aBNEnn%10MaZQ+6*PJn8&We~5rms$&Q(bSDeg9uS z4@39czkBLb)v0jn*1cVw$A)rnIrM|>Zlm1AVz(I8s{gy0tCq85QEpn$PclCWM@r%@ zYi_}I-=juI5xJ4h#e-an@6&vE?QLxJxR$*u11W1;0Cr2vHA@fLhRqWce2fE5(xsr| zH_mgvuD7SZpcTBXrpj883fH?ks%!R0%wI}zS0rs|#rAXdcN19`jbg^G5X7YAUBeM> z61=}3YC_t6??UJiYkFt5JT7Mi)>d2_bOq*GpR1gH?KaDB*GLDq4)arshB5BKW!n%x zax_nrDQsiKuSB@nX4`0)c(^H=|5oP3?xTMnw^e8v1h1+|`8W`_<;Eo0|6d(gWFg{k zw}#;D$h2FJadWF?z3T!8`O&Juov#k}4I`xDKe)MWb*qf+8LA0-m!NNX`?ekxmQ$=A z@J+DjB1fj7>Ezax+0JgD8*ot2$)V!7pOBe3xs0wofNoK;^E3NkqCH(kz1!jFc(;ZL zr6}a~=Gx=@I2J})=T2}$*8${|TtdS(^3;Su@Xoa?7n1!(OB~e`^cyYP*!4ahcN>?Q zt6p)JhUpLgGpX*t^o>^v+ts$4!pD=3aBR)Vu(wu}b+**QB8gl!bos@s(p>SAOU=H! zv*}MZ++bESSqXi&WKw!D7uzkei)qBsp;UvyO!#Javx_Gc(a3f14a zC*|lz+mX%U@CX+LeWZ?>C%Ry7EL1}JvS~>tWxL23v^>tj?;HnFLGb(Z*MGhZ%~1_Dqh=1Nw9xwYr8*0HeQXAo8bI;&VIP}Rn{_PqmmAf zvV!i;BU_Jf_k0}fQ`GLs4WYqt-;6`>RL$z`ZSGQG(g?8o$DdmreY9H<96UT+k@MMf z^(I&KLIN@jgy3?UG%zo9<~#gV$=b6;zi8=^oXcA1_`yU5qTbazDBSw|P@kuuiOY7) z6C2Cj1Kw|Zn{!*|$;~Y-+9SDBbhpgmBEymJe!n*9{K8?ruaY^p-T!5dxB`@M+~0=0 zy9@|!Qmz#yy=geO>aK0gtvy)2)rn)fO`pcNQXDEc7_ejnNmr-pS}ShOVbv>5OmTGADAPToP0$Y^*OwI*N?a=5gx%>`o9_L!`er=(j z2_t^(F5!Od)uNIuA!D_|fjXs@?nchmqoprwEOiTKj~#x(dbHah8!trcrze)qX+XCNJL#8d9P+1^ zn5UWzS%!1E;FZ*hxUQM7d-r2m|7i=Ip3Lp!Lzp%~qjy)9o9?Xoq|eX=CVzfrN=Z`h z4|j|8?gY<0ohBIRHC)ymZT+d<6r_*GB@vf`3O(?xb`Ho@dqus>U zpV!H$pmTbE_gEZvXStlo*1_)ju`FK?YmqH?bq3$s{?Uy{zT4|noiK*g!f~$qlJQ$d z*qXA0x|y_59cQM<`*R z9jQ&}-$(kZL9WI1cMpUZ<<6%4Rqb6zXrA@-e7BZiWA^oDQgSicZG^_aFu>ip=9lo| z!t~z5I^4xXD>OF`_t*79;?|zsud6E3Z4AMA$*jLWzmxAv9mR^wbd z)H}VBEiVdvLF_xsbw2IxnHC}*ILhsgc26U6e{`;^wBwxxot?om0>pE`# zh=Q<0Mtl#J;A?sQ!IVsGwqR_*!pN@u=#0kb)M}P0Q}W~p{*07 zi*dJZO=!{E(`9Wy+Ld$O_Zsr8yU*R-2~o}l(>&1?dSgkFls9GBXWlVJMeck#EOCTOhjKf%Kh8fE z(Z3t)@0Ri7sXIsRH^h~2W8N*fOSjvY)0J|U3AZ`OeN%hd>wxrc?kicMAK5&?U#}eH zDtDN!+9>tOSn0~p5{@yX1APKTCv}uy)yllX&tzqY^_xolG%s`xa;$wLZ*`E?vlUmu zW88zLddtqlu-sWQ`?oo~4g4~N+0Wk~?c?Rod5~u-c~AD1?rmqi&ehtIufytHOp=MU zau>5Bj;42Uc<*SK;LZztL5vyZ=27ar`68#Zddec1^}+rMAK+ zq3VX!YJ=xzm-p&N?RzwswKyzox1G;zIJde;N<-zoy@YQD%OuWLzumHiPU?D(@+V*# z82b)x9_9C#_^GCRl0nwTfY_@U{Awhjl)Nn&Ed6}kOI$~PM5~?)$QhYuHn;U-uSVFP zaE;JCa7+3-%V{!C)N@idRd)Gw_cF`O#npvm+NNUCN%^+vyQ^>t8>nw=L!8zvY`b*@ z-8wzmU7g+4?WXnlk-Vg9K4PzL-%zsSU5@2E*Db9{ZsplIp+qd~!lc)yrgC?aQ|owH zn32B0&1mE?3$mfdO-Frc$e6XS%R+~H>R5;M5%@;d5~?>3Na=(f(+$qbm|>dD;2@A$ zGQVo7G&C7^G7$D=_*ECT*?fe%@t<9*bOm~m*ze#7RpP=~9x7u`DQ(QT31lrPHZ<$} zQVfg1j>cS}p;^0H`19NcM?JS4-2+x8#}$MUJsEqCELE{!?=5W|+ko7|(0-BWCa zxZ9+k0;R0Ubwtm-AgiRj9pr;l6VQZiiXLFkT_zCiL&tH z&C9yAJZC^Y$p6*-yS|5TUU+PlBp6(q!*2KD~Y^#j7rgKVvcOqtx{%HU72rXs#3d}!gP7aq&$8*=^ zyJw!Xw1_9Jk8m^FKj8>sF}VAE{i8L!S7IWH{N7%*;`Da0N_0BLXiRvyf@@p52_pA{3pL< z%fEAbCR_AP^AY}k>vG&FbcegX)$CSusy%0uJI!lyt!spP=1_HQ)txc9(-iHB+~fXS zH__01pnE>VNM8f4X%3NXUp|}iT!iWeccsc*ZXeU^Za$Cz@*nk`$oxAwBXCOs?$KX9 z#KyV{)1z9NkJeAFybox1*8ts$k6ZM0&kvA|EdDFYft&P(+VKkjQbQ6ru3X)cR2U6> zcnoYGRuhWNzKY%Ia%*Fu)Zo_iTSw^!ed?K3tFK|nWYr&6RPs>y>Sy10-4Gkj2E+q< zx=Uy?ZpowCk;~U^V#GZ3Z+F+_r5N1oLpsn=VNr#_A>aEB&ob`Lj(3q0A^#YlkWYdB z)Kbsw{1y^@%k*T~y~QVLw&e84UEPh(n9=dqlkxKOskpVbrUX0O!#l!$bAMgcJ$1OT z(%tT3@JH%<-}(2Ei}Jd|IruB*WbHaK$lmp_qupf9pQq_3y*JBDxYYnz39zRcH@Ol$ zT2$`A%B@YZ3{YdUdSxMWiK1w)9#o?ZJLfeWJ%4sHnJTtI^1k}g4Wq7o;iprq8a;*f z(dFkIK5aM0b~j^$g#F+oW2HT=$v?i`8wv`U)$H%rGHiv&Qj1&~a=2O*T#+9d@a5?e zaD#^|iQ)DfSGvJ>y_rR4fYnl7F3|)>eYt3s zW&NNQ%L6R^BfF$!F)nvr7+Pyq|7}w*$pbekoVD#)-@XtJk|iIcQc18 zI@v8y-HGny;%azMwR_ybXnkb0J0Tu7WQ06I+D!-ja+ayDYQWXFWEQuXoJ6m-lkQ8EVwUhI_uL{LV#q z3U`O=CUlw8Oj19nH%$m{hF zGG~{yVKv{kud5U1i6z$CJ@8Gsd$X%r2i)aEcScgfu7>N%l(67eI1M`|)NXua4htIH?w%P9O&Tb=9+b>*?;4a?yCQ&bbf?w`{Rx8)qOUXeXjXNYGtoIOk-dOdZomKwgz}QiHx(CJfa|2*-%w^VfBd%y<2bZlZ zHdgZC>yR$*cd--n#FgrlEgaIz&5Yb*$K3gmUmUAmUAJrV9*VY~?a2s9+C8g-U2WN= zcX_+pQTqIHzi{Wjb3fSwCV?quGX33xyR3})lCg&)xaVqjG?uDcs5IbR%HeCjO{r{+ z!(H;0iAV@W*>j-_NxBm3e%DAI8#1O%VQ|__RNTp(yD;reCBoCN!*`NN3rn}_tzP|v zqVzH6ClT6;19y$ae^q-y$X&nj&zjcddl$6s$CISE!zRi>{lt`^{_n4{IG?Pa?e9{H1>h55{xDhO94!PzvooJjc>L>m17R zsC#D1)iwIQZsH)MioY=KKDhT)&v; z-~ji;JGrm7uj@&IF<)pkGc&jB^5-2pf11Ck(~|RGNo!pSvtAkL)V|&~He6ZeBq1$| zkXygyKO|x&4*s5wz+^TQF1!0pFik_;nR;WPY?B%LSP1&io-6^skm?q`T)owngS1oa zcdD!6RTJ`^xT<4c4fZb9KSEQfJw{eOH5IMoSWSIgExG!0+q=iQGXY=AC?pFif1abw z&~=*@8r7ncHOFe)$myJ$thw0oM_T?Rt{?Nv9F+iQHlNrDCMxsmijq0`nOL7vIw z3%lAe^cudC-Vbw2CHr|fKPQ(*3A^b*O0zD%EpT}w_+ztT#dONvNy#q zxX4bA#-iIw>YkeE&P>XU#Y#hXKDleS?w$}g#c-uvtQN6tQj}HyYD^T}FAT|5P}v;Z zSS-5JAX$#pPj2Awod#Fb{F#WHTl$*naQ%oIHQSDs4KMzjTRg3P?S6&G4`=QfzRh}x zG7M$mv(~qsd&xyD>#Sk`xH=f+_L=y_NnIw_&w7Y&)DndHF+5e(JKR$3gZxKJL;Ueq z&+r-FYX{`P827Uw%_CYn2D^aGy9tQf@)DM?tPbreky|Ep_guRr7`MP&y+2%x_ znU1y|>`PSl)XJZf~i3@8&A< z*B|AkGV4N8bBm-SphO zcavrL>-Fv_vhv>R-4i_Iy()bw?g5F8xF495zusDRuj%eJJ-oH=URFl+zH(S%g`*X+-5Tq;eWl zxx5{xzPK^YTTx#$ymA^}ISsI!##T-PEvGS-(;&-feC0IQavEnj4YZs_T24bPr%{&E zFw1G=bgy(}>OW zP-7aoISt)h5ARD}V>hp{o7dRQYwYGVcJms$d5zt?#%^9?H?KjP*AUKY?B+Fg^BS~y z4cff+hxDHFonF zw0RBTyvA-`V>hoso7WJ|YwYGVcJms$d5zt?#%^9?H?Ogq*PzX72xDHFonFt$B^syhd_fBRQ|J zo7dRQYwYGVcJms$d5zt?#%^9?H?Ogq*VxT#?B+Fg^BS~y4dJ}TZeC+IuYGS`V>hp{ zo7ZT~YY68xg!3A^d5zt?#%^9?H?KjP*AUKY?B+Fg^BTJajopIAZb4(Wps`!f*ez)6 z7BqGX8oLFJ-GT;fK|{Epv0KpCEokf(Gu2;ToR>jn9I{XF=n$pz&GI_$-8Zfggwp z8m$El(}D(VL8G;x(OS@GEoihBG+GN9rUi}9f<|jW!?d7bTG03`XnYoI@)2etn!1K* zK_jxD@mbKIEojgdG)xN`rUebtg2rb-qqU%6TF{6rXhaq?ObZ&c1&z;w#%Dp}v!L-= z(D*E9d=@l53mTsVjn9I{XF=n$pz&GI_$+9A7BoH!+Exl0rUebtg2rb-qqU%6TGTKt zYM2%^Op6+(MGe!UhG|j5w5VZP)W9riU=}qniyD|k4dJ53XHg@$s9{>vFfD4B7Bx(Z z8m2`J)1roHQRB0y(OT3nEozt+HB5^drbP|YqK0Wv!?dVjTGTizY8PA7dM|1e6g7m4 z8p1^l;i64FZ8mDtQJaZ|NvIzNi#9RUpe@=&)MldEjTSXNiyFd3?J{yG4!NqQ-7fW4EaBS=7KRYG4*M zB8wWIMGH)g@}fq0QKP)5QC`xZEosn}G{8z4ktL1Dl7?bQ1GA)YUDALqX+W1W%1av8 zC5`Kn#%@Vtx1>Q^(x5GA(3Ui4OB%E#jn9$>ZAnA8q_JDlpeOB&uK4cd|hZAnAFq_JDl*ez-7mNa%t z8oMQp-IB&`Nn^L9v0KvEEonrSG$KnHktK^rjq8%ebxGs8q;Xx+xGveeKxWXs|0rt| zmoo25m)ywxU5>(V(qp&{i~PD;l&F z4cdwZZAGKCqOn`ipsi@oRx}hV8oL#Z-HL{3MMJovAzaZAu4sH#G+HYfZWRr_iiTT7 zE?|Y_Pk+-_+D0Pl|AtIfge4 z!2>IrT5Q4BZPjsmgxmby?ds9)vY6}~?r@vsTU(k2yRAVndE4RR?&Wb;59GRh@YTK; z?Y5-(=Vw;GXq_;czn`K{plfpXlZ=s#-{ElYe^VXge(ulzYHFe!;x0M*J3E7ccE8=^ zPj=nSaqT|0)#KfjW>;%tn%sR4&anIOQmOFXakXHQ_%y-7#jQd+4gWw$X+Mqqu5!bXbQgdwB*; z^>B~f@A1Zf8zn^{IBMKQhft`p@2u%?wTk2&<7bR}v z#t8YQt;w0x%LdhNeaW_sav2>p#69gHCg#6@gZ{HTSk`U5jH==KpoXTJq6o0I21X1! z+-=bG+eU+H>E|f1ZTVF<$N1m&@ju%c4t53ZTX|LEFNEl(&8Bw#9=tD^>~A%yI$SRo zOdF|w_79k~-w39zhDY^;QPQ~GCjMYg>eWIz){A?@pLMo#FnQnHfW$o_XF~6m|Mk!%2&Oh(n?-`EKB-dbTlpX%J zv8C4=Ro$K3qz}&z`E-p;Z%=C)<#$n5{Yk%Y19dn?8}XPn%|;b#g*VCOT=zWcD)s^F z_Gh|wC67IGVe2jiR=<^Ukw~m|qSbF)u+)U8`~0VtDLdDk0evo-+^11Jy2Bo+Rt4_z ztSblixC3{aW4mrzZBXv7t_mf@+MA@`cY`Kk$;}<~ zMxCT??CNv%c;}2sw$-B4zK+cTPb&UU{&IK2w&7=V-}oBi(i}iL;SzOK`OSG+V6jDnWf)rYMW3M#rWv4;iQ? z9}A~(B;wH}pj=YJh>t<52>xy1*b+l;Sv0&E51J+0bvvrRXlcEhF% z$11ET@KJ59g{5D~Br|0-nKu){P)aovGnE=1AC6cP5Pn2Y(-c4cT<4N1sP-C7BWreV zHPui~qhza&iP2fgc}Dxt4m}mBx-qU}ls-+QN~*w}rSK_8vZ*eLd`}D)lV+u7m`yd^ zjj^HbVHo3Ot83MmpMNJU)iO84?XT2ZhQgHJcc6ZwrEq534$=MfRYf(G#3CxyzHtr1 zrg)f=rr)LJst3WIFE+Q0atKFv2Ww8LtJA&o3*Rv&ot$SnT!mgYpsGV2)C~Wgq`kF= zp|`0$I8aopSJ$+aDoIr}t;eg9D6TRTm1o+Z-Gpqkdz{b^xi_@xmvv!mtfBv^!)jb` ztER7qPbhGK_jCyes zL;q_Uf9}up_Uuu(H@L}d;vMaNA*bD*Bo?a1t)$55WbGWsmdW@HRw#3bvX# zQ@VPLCxd>C#^o|rwdK$fh9ftMri%#N z>!pM*X8C_7gLht9kCVeYoX;)#v7w*w)SuI#7t>v=Uhf4LJ2#r0uQK@J%cvl=zp?S) zPtojblkh>7-ysR#()hXHBb`69*H=RqCA^FAD-u3wJ=J$!PX8CPlHZNY{t*dZ%=pxV zFJpX0!h0J3IpM+n^UG_xY5Cl?LVdp0iuL)*E7#{=tx}(FwQA(YB5r#a7q_JxPBH&K zN_dEe4cClz82?8a4|amSWi8bUAMffbw3p++CxAa?JT0H|yF@$koqcR5uN}Fx(@6vM z^Yny=bhlflRzJ$h>(PYIUQKnst*ie_nv+m&tF9M0%X2%C9jz&2Q z=^FJ+_bhOxyXz+P?F=?9{!fPg<1_eN*zx_I^-EW78tr>-{qtg*ML(IZAGe5lNqdmX zo4j7xQvXlO^G)MY4)R@SM;|17R}r|^ZwU|jwYSpm#Rkh~bK`ROM3i$6@MFOD1fK+c z0Qj-shk_pmeiXR$S2LGY|E3uiKUpsyH|qD|=kc)f1NaHxOK%PqO}HckpWv&!de? zzSv&oXYf6{M?V=S*MZZ{GvL&J1y21=J)(W`;o!7$9ys;)fm8nuIQ7eK6Vs)>08afr z;M9)=r~W)}>hA=nel9rmzkyTVZQJ_(?+Z@-QQ)+HwQ*@j63>IyP`j@}Pdh(>)6S|r zqd(M_z^UICociJ5)Gxc8+7~~ie;BlZex9~NtjcDiTqy^Kpi*qe@i08$;e5FRT-sNcWi-8s37>7}GgHCE{!3>6 zoP^IaenG-#8vj?quQYyh!ozv`-3gy<`Z)=oWBl2Khx7M06CTzF-cNY&bCEr@Jf!@e z`D=`yRgFtI%XeY^_9*nM_gQ;IJI}+;hv2l|xsU2YoQL!4etnw| zPdmfxyjI#G?L1;U*y&^A#bC21`Ztl^-w$xWy@EcpyEP6>_(A%47vo~*E!cV1zOUM` z&y5G`ajBoZjR$>;`F%jb4>LaeZ}shbWnAnq9#$GuUw?ZBU;Yr)iydjdpqri=X1t9C_nja}yrchu=zgn7_Sm zTx`(K&l3GSv;TF%ue5skDdE9>r&jNlFHcG11GBSa!h`)468@m+S4()Xvq8c?F@2AO z2Y+@lF1|3odnEcB7gxXgB|O;K4|Z6OlZWVWVxRT+&kR1_xVSCztDd%A_D6<(%_HjD z@0-ELW$;Tg_-z^dy$t?&2H#|8eLqjk;Qs>u9Pz)~uxN+%HPN_~oAm!(R#DyGGx$Ff z{;T!3-H+7c#17XFPXIr~)k`=pIK{Zs@BF_;ei`(qI=%EM^12oLH1G$(PX~V${0yY~ z2{`S12QGH1eh%04C13RaY~!i_mqJhbw}8|B)8NeSyWsS{(}?Jg)K?fcmrD3do3GwE zGU}%xUk?~h{eJ`cGogP!L;nZ#XFSFV^tupwN;BtP^qK7y9k?^AN4aU?@w~uj&2Wji!`r56~v;SXg zY_vnZYz9B#=%{D;JOIw~!Hp-XUi>)^an%!iI{3t6qW&M?XM@iGzYP3*@PAB-eojWc zzn#G!J|XH^4g*e%{#*e2hk{=SJ`(&Q@MFO*20s;C#@TS4_(E{%-#0FC{%_>#=M28q zNikpdLci?fn6H`eXC3f=f^PlqdU#Z^3DQ<5Q!3jjZ3;*Pu>&!a_3JNe-8xb_1Rm%X=jboHC?fP1?=rHJgmJM?eHr?zq2D$`e<3*gho@o3k6$()dnw`Jy442> z57)mIB)rR7nx9pt#e9kV*~Yshyk{5HO-%SqyWVkW!so4{`uh`Z-G0N12@mmq{#mvD z1b$BjfB5YB`uQ3BgmdcaXJ+unGx)RT*4ml9k$zriJdL;fdA0hGuWyZ~`Uj`0UieRl z!)J|$b{*DrUxl9Sdb@u_JM70kGcI-(b^pS;;&0H?&So>zPO2YhT>PYdScZN^hW^bA z{dXCBo%7Y7G~Geq?4OSUXFu={wvSr>I!}x>=eMS z2cHB^`yYYd0R0{p#&Tf34mK|Nk}?`>=jp8p59>=u!cI-OW$4cVm-q?mS66^by21W6 zu+KQW1$wbFsgwKTUjG3XJFB=n%j=;G{#e3WEWfWOJgkGgm+;Z1|0dxhjCZ<7(+}kt z>@1t`V5c*<=Iq4tZ{7BdTjLEX5WUpPfmXk#fpeYe&>K}R`T7n1+yVYO_PyVK8 zpXWP$jEkS6q#nDfZurgmzwnz-zb6hqpYM9%(sXXBDDsr&iz#=Uwc{5#_#5+3v&2@m?? z5+3x^j7yq~{~3us*trUN_McCJ)6SdV#~@BV1gE~&lRn#ieV*4_Ta1gJjH@TWS)RS0 zRy(4npY6t_7{>)}Ne_@DGe%13UEd)(pPKvoT%j$2}K0{r?`E`j+SG>u0&&S_+C)&9c<@O0U zuiGvJzYY4S??yZ14ev+Jar{i<%n^naa?luI^6-_7*iy6RK0Jd@$lx=6(sac> z+wTqF%)oFxJlOdPcIfACi9Xm_^k>ai@H1Q= zUpnF8dish95BjwdzLAS*d2N*N&<}5w@Ss01;UQm#8JDtT`5ckxgPqYCd`iND{ZnC| zw-wTb4 z8`3||TUU>N9eSoazCj%mz3;d8SN-wE#UJ*c$9GbF>VKz2B4_`wp>eS<$U z7vqvH^+$q_g`JUW$9%CL9t*w-{5-~Z=>K1oH|}*x!oxh|KGt!?>$KO zk_`Q)(91YJ+sgUr4P&`^ZsYq08N6YmTKz^c$hcRxgwHlRhi35O?STm5hNN3uU92=T zT$}J<=az&IIzaWuZc^({(4Uj=UZx+qY1H3~a+?S){tPnzUj?5H{koe)JNJP%gWnH6 z1Dxk;S7q=!!5@H~N5CHh-+c4v5AAmce+c@$wy3XvD1&ckC)%ODLOB-_9_rQ{}%ia*cp51jg+%h5i0|B7;{ug6dhe{_#r zy2xMMKY4B3Bii9ScEL80(|&QgT07ysxvtyS@-xH%_Zpn=T~yX^iXABJk#YD9IQ`kh z4ir84QQ-9R(LL(>e_HS8r}V2`tY4jJ53&)rA4j?U%ebV=IJ^U#{(lEfe;(=|{o(v) z9{9$HlSTHauU{LS`kldPe_RGX8=Q9T2B)35;M9*B5dCC+x8JX}oWr{1qzu0M-|E}> z_aXK98iVWei&|s4em!AjS8?vudwAqh@4=tX?8H{;oqV&A_3a-psy?66R-b>B!H?{y zub(wWx%lI+gSeQG*W7XS^(#+^`~#e?P08S6kB;`AK%7rBE^*HO?JVe@gnoL4{xayF zg8tqN{VU)cFTT&Pvk-dvxx~bnucwjjGRD(2^%4U*>n`4BnQ(XJznTj7z+6Ua_GqdbWk@GyU8~7#|r>-Xk6@bKJx|iTSNcJsnHJYuXI}EC!ripI77MEmv{*G>lUWf@^F93!x?*;Su1B!>Pt4UD>D9b7S|$z0L%G8SUi)*y)D+-VD9inY5AGxdZ$a*!cr?_?&@` zb8GY4^FXz;);}WWdQo5F(*Ll%Y&|3DUq!n6fWHPl7@Ycxz+Z>{9^+}h_bv2qK;P;7 z=+8Xx<-y+s?*jf7_=ezbgKr1^4*1T-#ZUHc2Z6JnJQsG}g`JC_r=9;n&-uwy8TwbD ze-HNOgTD{H5O(P2>KDZF`~do$z&`{(6rAJuVB=}|oCy6C*f|aSBk*%!hko7){m0PX znW29H`cI&LEkpk`^q)fiTZVqs3uC!`27MRfX*>@DXZw2e;%Mh{*m>G`YUefR=R?2D zOtq7ie;07hGq*G@{T0_Ya?mqAw*#l0Y2eJ))|W(o$om_YbiaWA=YuZ*zXbeC@F&4# zJRP*8Gw5D(!M}oji_2pS#ywLv7u4^&4V-d0u?k z%~8*FiI2d)hMyPQ67}DJUuInDm-|$&fu8w#4V-q~&9L(c^xq=gh2XTa$gMHI^k;eF zQorn>dpGPeem;f%d*~OrEtcC4;9bFg1b+nlC-Bd}e+J+4-_gFrLr*tm z%jRf3`(Na%f(gbvN{@!~PTCYk)8Iq^6s;_qoO;9y&um4}4AVkHOahU;F8puP)#P@U_9G zfUg5S4SZej>EP>uuk>8~eC_speg1%P$?y8GbHNMI{|&$wdogm}Pjn9WhR}C@De5-@ zzX5z>@PC7M1)mMR3HW^QO~H4V8`Iqk{5bGaFkYN&JdLYa&~FYq>%1K8Zvp-X_?FZLyk>mKcIMqY%S%imI-+IiBr zBFdJewQ+y*6#%9IS(KB zX?^>X!8vYTVO+|mJN&#Iya)Ik@NK}K1m70?Rq&qR|NSibNq?68JeI?D(9boV)^E@G zQNKO(dw&u64&Xd@6X!bMElHdUvQoWJqf-W?9cc%+TnWLEbs~F z&p-dJzCXWyU!VW*Lw&x+Pxbjoa9*!J4V>}0!Ozi75$l{4aO(RRmwIHp9Rz&|cG|$p z;KyayISqQ+`3?GBDF0P{QUAps>1V?A(`InayT*aD-cJPI9rn*KF7Zr%UIpjA#N4m3 zJh=|P8#w#bYr$Dx|28i9l5sQahrd7JVSn0Nu*3Q~;I~*lVkhjk|EKY^o!$<;TsK+4 z9V4%M!1qA;JODct)bCT!_lEuxa9>}x-|RPV@hR*BU+(wlzwmH>!D_~Zas7YoL?8B_ z?*u)s3rq&@4*zceXL-H`PW`vw)UW$Tj0fs_fKz`2IP>*BIQ{<#oObT)B$1=f&)gH` zfAb>B({k&vXylB~{@_ga6L9+3Z?R~nMsHlc-3$JFym-{pPM5z#PCNU9Q-3Qs^^X}B zYkiRJ8{m6`zqFjDD}QAjsf&vVd3^%j7y8wgkNRiO&#wdC5Bh%K{lT|gLG4Jrus?Zt z#rnM4O7;2VRqONJSFg{n184jkwno&G-)LOEmHwoQhIhl6o$KpotXZG;Si3&oX8rnn z`wi;z*Nw}!9j^Stb=yzD_dz)~Y^ZkR?*Q=C!S@C42EHG7PvcTw?DzHqXSqEII|E_o zCFp7AQ*he(19tX@ouxO5FW-yNpz(dmRru17YWk4E@#M(!S=XnTA_n zhvok&ILo=Qp!t=*V&_J)a~t?z`2U7+@tt-$7h}0G-OY^4x3sf#sW#m+^kc*7#>GDE z^nktv{+tXh{*N&`H-fi9zYzB6{}tt0fBINCJP1AncDAgjJ}rj>!S_c!HiI)?rx_P( zN5KB|;F7PIHa^}7JGB2EIPVP_!pv@;lb?pvM$J_2@52j_hI{0#dC zZWHr05_S$VF8SiVprgULUu!Bj*PX5dXE|@NZA^C*(%l!l4Sa&}G|s0%KN|Xbz>fky zpl3|C9sF+a4)FcAi~2F(hk%a-KLdOm_`i*({_nJXv_BsDHt-4H*MlDo{s8zy@VVf} zfFHO+Om`Ca>N`e$EOq&bviBoQL!V zpA0*9fKLH`4*c)nNA!yJPX_-Dd@A@RyQ^OORr-ILe9rh=i?HTh$ zz85&lXC(OAD4(k`_?O_c(`m1mF3)q<0%y5x1kQ9vXYgae7lWS-RfT*WGZ-euGmhZr6=QnWrv-!T! zKG*a2$>6QvEVpaHY5!T{lFI35cke?_KiAn${gJ?g~8uIl6^t8Xk{;?c*|6ph1>G;?coaH|Nb~yfC z20hFF8tBi2pR=H+pASRN^N1&)=RAKtIQz+8z&}B`EqOq!FWz6aHaP3IH~1lFU*~{x z9J~pf`a8i{K6Al24z7J*tS>3&GwivDjS25*eCLD*{qDx4e(C2y;Pi7!2EPEDe$G88 zmM6>Y>4PI@fATIk+sjvfi+b{v2i51RA5x#M56*Hv z{z|=^VCzwzwnWZ-?;p3;xAX5I_4y9NqMftQUbZIXTZ*M;}V}N=bMgFeaicciJbL#{@7?=>SdPI%O>Na zp5yqu41UIhsHZ<&j;^)evWiQ@y;hi5%b&7z`yCVQFx^MNX@AP3`udfRjhy=8akc4= zSxx;?WvJp06QBSmwI^z?dX70qh97?;dg4bIlY!o zT1Wj{^^98H#du%v3z6<>)1sdIy|W{idJp;fDuZ{QuKF~tZu@6_e(@F2zEthbwywDA zmG$+VuC32^xxPMM>c(jQBINfui-FT`IGh2{rQ>5*$*%OY~-9*tO-tiUvTOV2B&@kIQ3tGvpw$dT=Zu(jPKLId4K(q z&#PYka=!XCxYSvA9{A5MMEh*NtG^iSh<-8aH?}Y?jN^4*aE`xCup=fc>>Hi{mv-@$ z*?%2e(DoM3pJebKGWc3AMgPT4Sa07pgAYykAWQeCg#XR>G2qgl%ywzWYpQW6pCeIU zS3xiS1pALAyr#iGyB>V)^-;nSREZtcNx9zeG_k&A* z!|%8~VLZ+6C(uiNgZ*`1uJymarMqpy!~TJ`gwHbnrzPCFg@&6G9{R&)6TXY3yVWbT z{){mDJ0#quPYs78+=hdOV-kL#*}pj9bIkso#--fY?*5zT&occ&=-KWXUaj^2V$&~? z@ae|aNO*|n4Zs=CjmFdZ-2r;3-ww0CJGdMZ_KWrd7ySg&|1IG*4QMzr;UUgPCp^UY z_=Hcl@;^4=;de}nmdN5U^KJ}2Qe95*~}JhlH^qPO9-VJ`Hn z_cs!K=vUuOc&PWE6TX9$Pp8+^Vfich3hAzDJoR&Z=zY1lzCd0%aIq8o*$G_k5AC^( zmp2SZ_^)ovme=5fhxi$j@X-JKJ>j#LRXb;ci$9lIz5FZTGmYP9T=Fym{q}>2KJ_WMIGX@_=k2)N`oj5~u99@_7b2@mak3b@$+!0PMtgx_U+ zM#6*s@`MNdH3<*n$U_Ma{r0m7f6&sMm+*PUKT7x~##eYl-^gFdSJ1DX@TW|_9=Mce z7CXJYn>l?$o5qjFc9C}H6zPizHZNk4Z{sQbU&VL54@$)S`F!&Sty}iL@ybHg(aSS;9 zIVs`6pG%C3mgCwr;PmJA#7@ZXJqZu?Urcz=e+n+;9P-uaZOyOv(}B2J*|>bmeC-B3 z>#={L5A&9R(6b%~CHn9?9YYfy?2LpRme06EAAY~%tc1_Bes4y?L%P=`Jgg7gn(*My z9mb_>=+8ai+n_w(24}f_mSO)(=vi(*B>IrwMc#>VD?WvM{Wal1zh=UNe*J`p{B|{- z=C=gSd_DDUj4RG3cYd!vzaN~}BVGm{kMdmd{b+~!4Z-<)5N+VJbCGeeb{YE52cW0@ zSHWp#)eoXSygsr)2Hydk>tK6j@FT$wLOG1j;OByK{q52WehWDBbq_f0JOfVuUk9h1 z55Z~YXK>m%_QP17^RSM68~8`y^TD|uxWY%#4&!jQ3_cZ{@q9D*1eE_L#w8W$SATW? z_IDEvow7Uw@-Rp~JhwCSO7er3`XJ_y?GWa52*0-}J zIO}CQaOQU(aQgFc24DQE`sq#vXS#QP9rfhjfU|ry`6lY==ceB(m%sFLkZ~!0-WPL3 z1|O5b&(7eNg43UMY(STE8HY2#Cn5fC1*e_GzK{8mea_*2rOw9Fd=Luou>ThHwDUPQ?R*b@8v22)|A_gz9`=jI#eeSe zYz1e1-49NGo&cvm%lgq?&y8qjF8G=7^9yjcqduLachu)0+yMWtF`kzH-O%3%{r%80 zzpsNcUmt@rU*$#AA4!+~_XVf_i!NGUzZN+4#~GJelQ?XVgxqTeIOF6>@bg^%7S_Gz zfKLZ+TfDwMQ^D!a!^VR@CzwCSE)nf;-q`V1<)UXlbCq#9oc2#$D%#<5Y%T=nyy8x9 z+Ih`*@H0G5rt{L#pPLX5r-0uK{vEiK|4hs8V7qZo?92MbB)d-WfN_!W_YGHCHs*`| z?_gZ)Fx~sXZ-GD0zz+MpkHA?Dn=TjA&mPdz&NVB?^5MAiALD8Hyas+N>g8S7 zVSlpfD$zdslMTSxpY#Pk7v(t~ob&c4z&U?-1DyFGBi^q=j$FF5TV0#1L1fm44IIOnn7fb%}Y z<=2h=usqKOr=4fOk3}554^BIs*HilvSN}$Qu4i2Of#YE3ZRq*jxeqe*zd?UH>@T){ z%opu1XI%W51^w3GeBSj{;LV=nZ1N*uR|&&i-?a4Ws@Jq`R#BV5RtTG{*gv zx<>tfpkLj%xWV=R`!|jHJE8v`{4Vg5H;eka!LQBWKW(9UNp~{(z0O-kJNLj&8T?-G zgTeV6@-?=Kc4kArk#R|v>qT>+zYqE)8l#>2!Pf?V0K6+W^?QIn2>o#Ihro{qr=4lw z4?}4ou9zxfcMEoJO2fr4*n?k*nHIg5Bxsx$G{hWKMp>y z5bZnxzFjHuC&3Q`e+v9$a5*x}lYb_M{+LR%|1|ic;Lm^`);;POhi8L73;j&+=fJN9 ze;$109%^6Wmi^(u;9PGR19>?i+w%^byMg$Z`?ZNcE8~?*kL(e0ZxA& zg`K(Z=Sk?fPWUA_^Sflv7!TxKj7$CceR{SZetYnjk?wA=!*U(~PWxZO&MUC<1N8KN zo$aEZT=y%0GoFtE=ltXr<7wPJouPjp{CLabQlm1+7T+-$Jx%WZOa{CyZ z<+cEJUPZZm4?XSl+9CSG__^4)`12a<+y?$S_+8*{fd3DC9{3B!({}ehILqyGaOQWy zj?sV4pU(tm{XT14^7SVC`5Bz;ap+EJU-WN5{|@-u;NO5x#W?so_&d;VxpTDtE_l(n zl+R?$TZVu$Umf6_SDyv@K3~?KT$6H1$i1FRx!sREAN)P|`2+a-;7jfj^K~1_VFmCH zpzi|yA^1kd({dOH{YTIrlA%8n`j4TXk)gj0diwtmIQ@SS{1e#!5S;bC=&rGRK81cs z<7s}MhyF9@UxS|GOJ%oc|8wZC1fLInqj5=>c0Psv3+R7^p7FVIubA!v=+`iw=Bo_- zm(XvUp}!n@w$pQVkLi8|JC}m9{I3QVJ2UM$!~Zp&mcyISe+~O%_lW5-P9}lV{vy3q zFZS90?+wm&eUWkLf5cAF_RlPYp6Bm3?HT>~27b;0{}%iS@bAE1GA@4dzT=j?qW$lo z9}oTm`0?QE4^K6o+P@ik-hcf>hWg%5ar~dH%QBQu4afu(6|C<^5FQNYl<@pozoIm_^pO`Mk z>z%)^k@&b!7X4wSo-(1yrny;?ltgn&a?0-%I=e*)< zaLyZF1E>EV8W%sgzWo{WEQc=p#qy{9LE!YW9h`oi08Tqkg4548jEkSYp*-J#o_H1+mEcQ(-<@Hn?;$b2XQKRHFfRGx_0V6TXE~g9Xni}^ zfU`X3gVWB`rf7%!h77*MVNp-}t;WUwrBM!3pr`$tGWgHn{5|vyo9m}L#<--r4AMOY zd|B|@V2A$vn!z_dJf_RI9RW^1&j)AuJO|F}Q(u8|{_ux!$(O|9w(`flmL9DBq`b57 zw0~GHL%$QaSPb_mi~|>2J6O7>CwzP3(-Yp)`2P|f^v|T+&TC#uc*yS?3E$4_znAb} ze?h{7Kijm_mRqp1Q^JFtlZ{JqtjEit=Y2h|f}ezW+M=y7UD+Sl;_S(57EEX&CoB0cpd>g*F{f*UeXQrZ-$=vT4qS}Q~JqCRxbyGi=D84^&W8UlU(`;wIlxX zxx~8~m$)5_`N@1U1_h38bSG%Whh zd3z3=<@OmkpV$4B@z73}QL_y{X6QQ|8T}VugZ?kZ(|Fi2(c5;%hF!oJZ+*eVmTgmP zI0p7vK6ik#9Oh*37r|LCpA3)rS{`xxg>muaS&V}XBch)EPcSZe#?{q{KE!#ak<>|*747xeV=Md(>>-(~RSMr*!A%YNXJ_Q>h~D;a#7 zu~AQd+B5hashw26)$x(Dd`cO7uyH8|Ir1s%-|hyNG{St~!Guq-a(fP3>~!hm z{D=?uQYiM4k6Si1Ry?`C|zgxl?J4L2wJEKB!ucs( z#Q8G&`(ztt85bWpF1()TH?@7d&rOZ?nQqG|(Z2MzJ=azHr-F+jJdfx@aO%H4t-k%O z&WQHqU5Kj>jEn#DXX9zn4(Btyz*%4GoEh~jhgNWw=Z0rRJ^6a)M9%%{&w;Z&Zhmgm zlW#mda^`E{jQael^OZ}uvOJf+xW0a~OCo2w*IgPp=O^!gQ~zlO|1E=WbXoLsWsKvS z8JBwGez{)YEQd=kk9Oo;7i*_aB|O}R^-;ouzWJ({U)sM0ocV3Ox;EXOmhQvgs~}(h zGcNgJd46_HOqcezy0$(qW$=B#8RtVX_(+1}@ z+;uU(w7(iS?Q987eG#1c_Uog4&NGkC;2YnhdMTDwQI7@VQf8dz?+yKG&=1JacfL9L zLqFHNHKr@?!hCyEyx z$hi1U{X5We9boy}qn$NiXLsYNopx}R+c6n@D(rWL{S{`#bk_uLG%o3~9(#bZe0Is; zkKa+h{BOM{a*jt!&W@br*605Eyz)TgEQhzi>F4GTs$SyXuan#FhOGT?v_pRmG@j~P zGxR?~zZS~#*9`sG|JG0U+eag3IsE(S=)b%R^Mvv<_4y;l)A+gl+4}YeJy)L(e7-&( zH@7}N>$UoPo^dHpQ3U`0{<`W@{^%R^?Ud(5&ic9*oWDCzcq{5zp4+}#pMUsXeZKpL zk<n<5N`-kSgM*HGfsNb8Gj(Ym@?6URsy_T!5f7*B&C!ekm_3Q^0Td_XhZKe9@&RDrV z-(Z#cd|C#7Y}J@9`=7Tm__yFJpDjB_JLDZ}M$Y_B1!ubF8JBXCBg4GtUm5&y*x_^J zo(HG>W!8%RFdmN1;9qC(g&F*-_0@ie+h6TD=Ra*w%e&cm-0mAj-Ua>esmA47p4ZHT zer@P)g`VqgpF+P5^xs3zdHy0@qd)6HznpRTmiisQS)N;Ls&?cr<6+ayB4<4O7o7EV z`sVfZ^TDa#b<3#d^~Ap!mwMs#k(t=6TqioJ$x!S{hyJ+|C7OA2WNg4fHPmyN-Dn;_jzherFfv*clsvwtf$N4_QOA91*H`8yf) zwe#Sp-wOKaLnHU=^ZU62-RsJP&oe$N;d6}7N%(`tzZzcO{*MU{_J2=!u)p|-T06o1 z-6L!HQzQxep0_0cnNl{0cSf}=I_zYqKNYwji>%^b#l~~ zVSk6Ik<*`E;Pih#@CxkAJyq?b>25qN+V2j1&od+M0sh_e`gTtFN7PF@+R?5@ym5Yg z{rC%N^^;6L_oDjxV=u1N-(~uX6E644%4_P(TKx!{ul^3c4f56N%BbHKe5I=*?+HEt z+~?PQC$FJbN4<mk*b#pAcp-8=$KW_{DbMfhzSKM3i1v9u!t3Ciw_p2Kv@dqTb46}R zx!q6q1Nctxv-8{04tXQEw{Lc~Pk8v9rUTxKcI5ibAUAf(>(UQmzF5CAKZ<&>AI6u{ z=hyNueqEgKFn-NWco@GPNqDf|V?llUlQa1B3v2ZUy0VkkTM3_T{OLbx_0JhEHs}Rt z`IhCdz_`TE&Zw8abc%Z3-?Y7P(ZA=)Im{3D$k6W({VuS7NQV9*=%0Z7OQGleM|VI^ zf9`>v{yz=<)3E;n^t3-|u~-f)w_TU2&o5lIK7V|9djy z8~UW&B){{mzgn^s?U47X)bbBae`f|iahqCwD9>-Ui+oS``Je40-wS+~og){2-nVoI zCH!6E5AUJ+v^{q39qsgi{TKJDufKC(eSYr#(GKTVmw@jL``3W?1wa3wXy2{2)-})Ti_?6{qETu?d%7Aufg^C1Few{gns-Hk?#+F zCHMj0FAR-(>6=4;xc4ySY5fizUZ0P%2cD<;MMp;a2f=2t{3}|H2OkW+m2LDA|69N-;2dAJ2WPqU27e0iJP^DU_FKV+fL{uJ1o+j)C9b&s zx$LpA-pRK&F8Pvq)I6I+vza9LG;KF8P)C`E@Jz$Gy%;_@un@nF*i0k@A-kK4@3v?U}-hI^=8MW1!!7X4IdDcDE%s&zrXTXVkO( z_5@!5JG+37MY?xi5$&7_{SH?~J`Va5z{i7ky*lbAfbRr;H24AF6TyGGF4{Q;ymWo! z(hr2+eLE!KGi|-%p&O!p671}ATjWwNlWd>)kc7|PT-(Lz2@maJ)W4%0*5irb$0FUg zj7z++y+1Z9+BpvTBkqWt{o6mlkB9yu<6@ul_S?XDeWB}r)PCyEJmb>;Jcf9facA`B z1f=^E_=(^z-yQYzzxAH_>AnWe>n4Za8}+wJ{+1p*_0Y3%lHi4fCejGUC{37tvpugX^ z_{ny<#0$|M@$;pF#mk0S(}r*>ZZYqZ1haltZ?&w%}JR*e2|{rP9(k}viH z4J+5zFJU~@cU>i>E9DUO|6B=vKK!`}`~vV<;1`0gv0Ah*aV~QsdEK%`H_>~mgp`XpIxYtB-=uZT{2}T$Vp6AQ|gZ@&a`!YD~ya|38^q+!X4*o0nw=V0UoR|84blm}b)bsxb@Kck+WRhH( zIts(+WNJu8#i~`S7FP{N`8PkwAq>N4IE2w~SQ<@6qfs&pLo(!NF$|+&vJg8DOn zd^!11aNSO3Q~pWHhr7w&O!+-2e;eib^OWV3ub})&${#|Hm(*k8%fdUj<~4HOZ+uT4rT+g;&aXSpJucoKZufGyS&zJbyN2?7 zo`)5be~QNQL(21bZlwIvl;2Ewe%$>{&UN-27GEzbsLuXy-L6KF-$&z~XD;P=eC{IW_2oN0-hbYY9RfG~=lyw*ocmuw&g*^ewD|fxkCyjz@>%3T@;_kEf77Lp~pF#)pp&Unb}JcaDhH zf0pXp57#;uq{o+w$Nw(48Hbfr=Qqmp@=iN3Ugu#N=gs7NyyQD6p6BICBma@s%XsoG z+bvwT&vPix+vmmPT<7L)yo8+lQ`3#_b8>vSc)h$y&g0MnU#vF$ucC3@2X59E_dl7O z`#*x5A1|kqb3T`xA4gY^_oVfB7diKT1$ht3`%a0E1Mi2AA?NW~NY2~gYPcDn=V*Lh zp*)YzMsgm9E#y27iKF8E&baPxtN^Ct%97F_hC#3 zG}}M>X1M9kYU zUn1wvkM15F&%Z?Z8uFLPHr4{7dpOxg?pO?wsq~-dT{4Me&6XX54 zlg8&ya?_t&^k?xTo7er%uW&Q|YpH%@a=bqG|CsE!^YP^KaIHUUN<9BI)t?PFdH!6u zg!1NfSrgv4Ts}2khqt#s$k$Q*PV#ri511CO!`Ep#n*2?A9i0W&<+?B@UZ;-g511bJ zyJP=!+w+Cw?^1pf`FrI3&WhKGP@REr9k(MX|31~3NWPwY7WoI{7m)v#yqNq$a{t-! ze)4vB1UWxmt_j+_j^~GPvmMq`{jbS4kY7F{-tI@_-_DHJUr5jUQ_qV#?|+V&9k25- z)hQu=AQo}!@kR0m%71%pyv`@&bFTZ}?Y>bE&;LX9H{1~SPpQu9H^!ac=UjiYbsf(o z<|1LSn;B2OzT1oBd_A}wW+OxX6x#mBo0S^7Y5nWW#vQwv`uw`D5N`53{)P9(^QTk& zFPFyM>`z8w-bL@_@pie+_2m41<3CS#t>fll_FVD5>r_1x&wobayotP#{D$Y^`OnFp zBmaW@-{<4`FUfnaihC3JudCz!6?xH`xPMK4KirHn&%e6=)p&j*<&$5tuIusmcjEbG z%0C9z{9$$RI($6vG~8?t-%y>`$-gCUB>#^5+;`*sX(11je^34t`48kh-;3ATM4m@( zwzn;~K6vx{@jO4j^j{xeUOt{Vj-2-={XU4-X{B~Qf}8Q&kB&bN{cpTJzn&TkH{;3u znbA%Deaf5VT7dWedwv-2&(6me<_~Ws-%S1d9d7!`kGt9RUF&pW-bKF+asQF(1jv6P zUrNsT<>Z`ypZt09RKK45SMole#q&4Qb~2f~jq-EJIX@3>`pMf>A?10yx{dPu z{=?mr=lV;!@pa@|sh_tr#+U0i@;l(Vy?y(6JijvbPxt)m{UYwaQym|9JNaU`*8hU? ze^7q+FKvC3zn8|p4>`a7N`ssAZgy#|pM{j?$59#O`MCNS^1bQ#@l|quy|9-2PwM|B z@(A^(9d4G3A1^(d;^S$a>dm%mZu^s)<2UDrkl#-Ak0rl@{6zACXujd|W7 z|0QN_JLw=d`?u14V*e?2+d)nO zT=H=axc|c^mDw}cDomOGx^@+zF*_{MDiJJao>mh`K@s`+k<(} z%iK10<0t$U&-bP}myw%s*n;t2Dc%JC0&ce1byR2c@A3Nlycs0lm-3g8Cy{T0oBCVH z_iMNHjeBW-d(t2AcK4%v3*6+}$Orrxud{&a4C%%vl3zvni@Nd4yYXuBSE)ZI{}t~K zA0OUB&hN)Q(v3e2H`^OO53cFP*OB+3{=851`MNg!I^yGOwiAD!*k7^R8RYv@ovX#ApW zlfRDghf@8;p zr~FY=XB+v^klQrftw z{0iD{2a@9X0JZxMIq&y+_lf7(=k6c(*#*+C%Eb7aH=!k7jJh2xvziR&GBKbz3Z7zo=*8I$xkHzfSmWY zGYp?vi>R@?(yS*U2GIBcD!wJ^5MWMdX}+ ziu`QKSCMnRiQMd0-Tc74j*9m)NOk%h9rqdJBjLJ#`=0W=o&Q44+j%GXOsc9F^{~vLzZPz#- zhu=Ol-XA`0{}ZnH-hp@>K0ZGUZuZ0HP(L4_JkQsCjPmArrwN~%yh(m8)mcw<4yD&Y zn<;-D<^Sv^zt?f`}IwHZg!$y6sQ+ic zO`fkWKZ*Q1%3n;*{aHxP{aH`W{b}sRJG${BPK+Bfh5<2l`UFe6@{m+OMl{ z@60pf{(t1pkk2K*Gc%sgBj0me+%F=}BL5HhEb@!V*O1R6|B3t(@{IBEcIT5v$uA|} zJu99MlOIif8F|~pc>Z$oizdb0JZ~n(_O0f2=H$3vLHWP3LPxrh~Hzn>1D1T*6 z+^;0>KRxcJQ=MY+t0=#W{A%)EXW2UD@yOdr3OQeAc{Dj6&y0hc?aI`0*LBJkA7cWs zTbS$6^U-yZcXe(ScXjR+clk1^&&OBKkn?h_Bj@G%K}I+tRx>E`>$?)xDIZ{nV0LL zS@HVU(DD3rpgix#PM5sfFHP(wUqJb5X&mmNJdg7u-FO8#kHc$J-)tv2 z*lyQ~XT!gwI$NnfE#$nsTgbWH?c{gTdO6@6yPcS^V4zyp#M3@;#@-^Iwu*i1W>u{(M7j z(;kl*cGLe1%%&ey@+d0Cu)3r~{# zUvNy<*j2y(KpS-H%hfp%o-B1vf&0bJfDaKL4^I()AN@%c{|fH56W5=mAsbAS{4#jD z_`~p#;;Z2q;??jm;x+J0@vq@o;*IcZ@ym-WU~}9x{@1~SlD`q2E4~mO5`PgsNBl{6 zp7;j%Jn<+zEdDHff%qfveDSJ#Efk1f3@;Ra2##{Q#;5uo8;nSPOR;*TR=BYrKs zR{Re5TJZgo6dhutGuNUuxH;6xq{x^z018)+qfj5hHz+1$(W4meUE#gJUw~B9rZxMe6-X>lMZx=6tcZf&fo#OlQ z6H#o}Lcv<1jMW1Y2r2Tbn!iov2{j@e|W6*4DpZQW5g$;PNw+9@GS9Z0b4&? z{A_rR_^4qv9~2KBZ#`E$7vmNZpNsl)#K$3@C;k9@p7@j}ZM$Ld$Cq1QAU*+}FMc=b z6o^klzEHd`@a}UMl_oyiELIc)9qa@CxxI z@JjLT;8o&p!&i%c1+Nx=@=7~yHR8{~YsKGyuND6SUMJoHUoW0;m2J0P+<&e02Jxfd zjp8T4o5ZKVo5jz8w}=q1Sp0YR0`b4#`Ql%|3&i^; z*meuWZ-W<{z28 zqxsW+wDkn>!qcsL#b+X)C>}u`mv7y*|5*g@EBRu$PrL-4EFOjX#Y^Es#B0ae{-=nS zBcCe%B9<#4UWt5~`1Ucje!BQuUhpjOO4P{~?}L1f zct3bh{2;iSr{=bkf$)&z4~5SW??iv{#E(KAm;Kzeog51fOMV!9fp~w^$7L{g)j0|I z0?7}87m6S8e|DUU#FHq8s;U(ge;8F1a>X(YA!OO(c;pO5F&9(in z5YIrqQhYP=RpPbq)#6#GQ!SniuMzj<+5Xgu2a#VZJ`4Fe@euOs#b+R2FCHnd?KX%% z1#c980^THk#PzmLv-nvzT5l1Lz+1(?fo~D-hZm-8;zz;T#os_bJH#g=-zoks@}6Gi zC_n!GPp_M7{}aT^QO7HO1@ejF$HSAvze2lx#p{b~yFT%)sFN)I6x=VKc(biDM0_jS zO%Xq6q0Og??}zmp5WfcPrisr&opkYs;3LKNMEwl$Q!x%W{qwH<*faOrC-6+kKL^he zpYedrXNymG(0Y#eWOz{A3(plF3=fI_jCSXUZ-wWH-wvNAeiu9}elL81`2FyF@rU3A z;!EI#;-xqMFA^_(ApRh{QQU2xP2z(w&duUSz+1$Nv0Sa< zKKK^#Z!!LD;y=LK#b;w2I>hI~JH;=Cd%Ruu|ChoO#IJyR#jl1ZiciBhB#FD{oxbAk zdB-R2o_CVPXQRGfd@g*5_{H!PareBFDt-m>0de=dlP2!=hw0+(d1s{fLe$R?e;aSa zjuAf}kJC)?BbM9kIZM1BJX^dMJV*Qzcu>3n?dFRA@{esdB%bK8FEr1GIG2i#MV&J7C(zGw@k%ULg}58%N^v*NRpM@(SBtxGt`=`We`>_P zg4c?l3tubl#<@wGtbNX?9B0N=m3f!F2kMpzP<{WzLbK&XY8{i|w zTjA#1Yh0(t&9?tz#FOFX++~~}2hS3p3peKk$DY!Y85!ZPa zK1aL_ZqA{>dCx+-yyn~&?EAsZIV;#NhMRLou)hY+7vBgs-$CYlJG@YQAH4BjBz`zN zB7Q1-k@ysNvG~RC67lQdQSl}4Qt{W|W#Sv*<>GyAvEy7Jeipn^`~!HE_!jtT@&32k z`qkpY;WgsZ;kDxP;cLYYz0KCI6F(8YUVIa_w|eojkZ%y53vU#^3f?4sFT7d29Nr@S zBD__+9==6<3%pHyJG@=IH$Ir^5FZ5Z6c4~XvG0=e4sKzT($myY-3RhJ3R4U&#B#A3=VI_$%-f@gL!-;(Od~x3_@!1T1fw_^HUJ zi)X{lxyX3j&V*-(-+}&&5x)reOz~^sS>kuXv&El8{T%U2v0Op%XHmzT^Nsue13V<2 zaEBeYIpSIHJn#}A>IP76d!rF?N62Xfo}gVJ`MS5 z@eANJ;`#7e@$=wo#Vg@;;v3=X#r^l#{@05~;0@w0z#GMX#0U6I;`7jMvv|V2w%r!- zG4NLLTj5*8m%-b_--Ne|Z-;k?55Ld$r&Ih)xM%OKkE1#81o4G%uXs5;QT!EnlK4mP zzT$_Y|32}}$R~?;!u{e)u{{qFKX9=fhZOM?c&hkxctHFHc$)ZK@O1G<;UmRY!ZXBQ zgO3q^8lEZs4wg4d{8Z$##lM8-i2n!=ihl>s72g35i4VfWmO0|5!Slpt!{>?rh5BLf zUdS&Hcm2s1?~QzccqzP4{6%Q#E*wZ#iznc#jl2! ziI>95#Vg?z;&t#!@qge|;)5Tw{a-CU23{?GF}y~+7oNv!#eajZ6_21!op=L| zz4$tKgZMY_M)BX^P2zvTo5g*Yz||stA-q-mFZdSmZSXengCDZv-!484-XWg&u+4Xh zPlS6CyYBy2!V|>n;a>5d;fdn@M{K)E;*;Th#pl6&;`Q)k@t@&-@vZP7;(x$X#Q%n; zif@Mp#CO9)yfpFM;pyT>z(o5jv&C1zbHq2pgW`i8 zwe9ALPlt!ZXTax(Ujxq*Uk;xqz7ZZ4f5#pFi~ojvzW7h@0&({`qEI}%)Glw4_$`lF zkBC1HUnJi1ahop|e-mCJ{wq8x9$aSYl!`~-W#Yr}yi+bd6kZ|z?P^=UQhWsRRpLW& zoV;4R4*jVX{~lf=elqIRiuWkD{aGu%KfF%-dH8zqx8U{Slil&Zct7MD#lL_ziSK|n zi*Lj0qZaX#@%ph<{HQ1F@@^3y4Q~^l32zs_1M90pd?CD3{5sU};5v=&eVd2i3F0ro zz2cw46U95>N#bRAJ=Isd9PSf8V!0ikWbvb(vhEjO0v{s25}qPn3r`i_01t?N0#6hF z1)eUx$J4f-BgGGdXNaf3$B2)GXNsQ%&l0~Do-JMi&k=tX9u!}^!uCH`Jg?GvNc>~? z9PwkGvH3jlAbg(qo$#=@+x{1bmm!}o{v5nO{LW`>e+tEG;6>uoFg_9S+3-c;ZKzW$ zzW++wZi#rX%6e4%5_qZjt?)AOrSNj`ci|P{-@+@!6Q8sFsS-aDzFK@Fyjpw;yhi+p z=WYF3@p16A;uGO@;#1)3#TUWr#f#w$;!ndH#jD{>;_Kke;tlW?@zJa7^0tbf3*RDs z_!^sU6TcDpcJT^$hxn)PPVxQlyzlAV_4t1{JVE?2xL5pi^fOUBihPpzOYpwpt#F_C z!7tcxNESa0pA-4TXQDqt#Al#RiueV{r;4ACd_epfc$)Y{@O1G9;UmSLfMh} z7l@y{zn$QmFJ1>P5D)dU`9krF4z^w-{@oz!5%E*rw*6Toz8}0;{402g_*v_0ov3)) z2J5BbLq4%yCjRlK*2~4me`dWx{1SMj__OdT@e>zwXt!G2+h+4M;)(ED@g(?K z@xJgn@t=OT_1BAg+pX7&9}aI2KMLL`ek{C6yzmcOzgfHy-Xi|acAIY%AN8;GE#k}I zZQ@VD+r?MGJH*2~Z2eC0gFJS7_UtSBe|Um=g3WuyPl6|kkAf$OpAPRU{v)<$pZG8E zWbqw)+5Y&&OZT=uM100R)>FhsCRtAv{}3J!AAs#YO?){#U3~FJcKk<*KM2nde*`{8 zd?`Frd>K4T{7HDW__qzVKRMzH_Os&<6n_GqD}LF5HXjoI68p(H;;#<2`8@H1hFG5` z{=lKu!{QIa7l=QA{b#u1>!ft3&kIS7m5E>XX`}7`@U;^k@z-vvH0}&Y`#Q% z20SYM3cOVO8+e)cN$=bG<>F7nE5rw`xA{u(C*f7%pTJj(?|@f}Cx2k;*NE?r=e1h# z5!i0mioXP}6aNOjUi^W>?DkVHJ`eko2Jw-2zH1cU?Q`4zCh_H{-z@$x@-5=qzP5E* z#m{fHzD4{Oc$@gWI9_TO|NAFfr$hXtE!I25y+2#`Bz4{YUx)RQAbumt8$-yz-x?-Xx`d-m(P|4%x|)=3Z_ z2ltB4g(r&N0#6eE&j4G$ulV9*>pt;qcs-sh{{29k_lw_*bC=GsMq5+V*FR_=r^Nnc{aLpC$exJX?G)>g0&OhkQ_c zCGxrAw;W~r6B54~b>@h_f;xHPFTm%Ce+UnYzmEC~#Lt1}i@*J+?Pq~_)^FAe#drVM zdXad4oERV?-t>pfFA{&X!FsXyU+@y~r@y!PsQ7^!t(S_oq5oy#?dVUr_$y!AIu+u3 ze`vi@yl$)YD)GtRSYIuE2~LDiEnbNJ*ND%@dZ`s3jPY43{ya{=P$%98%e7v7-4C{( z_2PSfWW7PW8Qv(KiheeU|7U}((=7fBPB_sb{>djc-zt6>#%+uE-R(BtCfP+ z>U4-tMSnWQ??rtNuJh(T|1H4sCWsHi_U{!x<8#~3MDa~uSWgm9{>*w`@h9Lu@qvHY ze6siz=)Yh5-QUr!eOmLFvjv-F8#>y8PkaE}FMi9D7E;8Mue1;l--g#$>EfHWS;!EN zpiZXv4%EpOe;fIr_?rtXgv93}pGQ74_HXw+@Ivvk{T3qP=fR7`$HSxIW8r1u-yC3} zmfWnDLr*k+dpvbJ|F+lfGZMme{_4d)O}F_*@g2C|EZ)pGdC%z5t7r)vrmM25pGr_i-DSq%M>)GOaA|Djr7akHH0M8RY z3?3E_!1KjN!VAUEgh#}u!HdOb!lU9Bz{|w{1FsOj6ka8MCA?aEA-q=nc6gomVtBoH z6y7Ml1l}xO25%K#4sR1*1@91l6~1$47uz(D}c)s{4@Ivu1 z@QCTt@t_cI`RL5*Na~aZxmkuZx+7>-YR|ryiL3a-XXpS?y;vS z*|i=^;9l`Z;Ys4l;Xd(a;C}I!;VI&;!vo^)!_&n-hG&R>0nZfw9-b|}1s)Xt9UcJ&p@mt}o;`hMY#2o!QC%zu;7yk^N zBHjWIi2n*t7ykpEA->yW9RG;#1@PPP0c)Ive@C@pkGcp5xK{6u&_{4{um_^Wt5lPNv{`E2ot@Sylqcu4&FqwM(PiSNK0 zmSOR;QKwLR4!oM&bp7B|`-I#`J~ZZ+A@B3r_RV@R`6+l`H=W$%qsZrpFNcT4SHSbd zSHa!+{oMBO3OpkDH{r$N@4=(u{~m9b$DM!A)ejA`ULpDaqK-S?oy&g&cju{d{u$hz zU(WegaCcrf=Rd$bIM0vsU*SpOf5H9YJKzEFUQ_LIg~Su#VeyT4pR-WB2ga>fybtP> ziT8)Q^H#a#ngp+s{3N{3?9M~w@;4!0EBP1T&Eh@rcy#A$a&?c zvzHw|=YPSI#4kF~=KSK@kxvm%m}c_<@g#VL_(el(K2v-E^4a1ukPnFuMm|qG1s)b3 z3eOiG1}_vp0Ui-ghZl>V43CPBf|rS(0k04r2d@&(hF6OR;kDxD!Ry55!5hU3;LYOq z!&}9d!P~^wz&pg<^@BZocij#@MBXc2dX&v2iMJ!~6R$bm=KbP5bF8O`9{>-C9}7!Q%{#S_~ zIo*1-_)vH)xf$n^M%a9v_zm~ij<$&(jswyT@h9%Ebv*mnpKd++=Gyy7;=BD|A7DQ5 z$A{VDK)?7t$Jqn+6!C_D^?>-AV{E(W;-1^=a%G6WfqWUcS-->Gc#4mO*Nf-C-S;$2 zYo<;J?&)p&as#yn5$r;7Lhc$6+lzMZ5u?A^tNwDDFAi)(wmA4UdTTgS+{_uAhg(t0g}SUN3$s z+|5&Ub*92S`*mI33*kQT%i#g>o8Xz^cfv#B55n`s%izW0E8rF4FTiWX-+;S$Uv7EV z!`md^2zT?KTz)g$%|~+H2~Y3Sb=>-4B2TvXVemZhg0=0hZl<9f!DJU@gVZW;%+>n;;x@%;^(4H zh4^fEm3SV!THMvI6`zNEowysHdhrFwH;U)Oo5in(w~Ajj9NWM6Uhod_g{b2>pzHP@ zfqTX8f+vZ4;XZLUK7R50kWUeR2p$kGgQttT$90By*e;GIQ{268kS$(;`ayBGTp@9{ zTzTTN@c0UgKZE-D;?Khi#n-?i;%~u=#n;25;_mpiO#EZyYsvfIy$CaOb>xfp#9+pL z)RRx5d?WdphLbvwbtq<9k!yOa36`lgP6v?<1c|?kAr{ zo|mi%P$I`Wgq z>&dSmZzM0E6YkUvHJ&m{LzKAZd)@*w#_@(}q=OUWbT zOUR4KPo(}t$?qU9BQGMaAdgV}D)QUNtI2PrI<@5MC|^gOK>2#|QRI!}`;s@4KTY*p z$&)DGMt%l)2l)tc&w%*$zku9J{tmU9ME*OukKA25%v4Sx-%9xa`NPz1I{7P<&me!4 z@|ol#$+O8HqdGzIMU)Sb??s+R{x;PKlY1$jPyQ?A3&|fLkB~n^UQE7_JWBoxc^Ua% zqkNS77Vn?=Bvp~z6JRXa+B`^S?>`4w})L` z59*nFX1SW*wRx|2?MK#=#9u_-Cq4-7@5Te-zYelrNX-y`5}*I(iPvMf!s5@v^Tn5< zPDK2&p>{hd7GF2Xv-1`epWI-*O#FxAZJi47kt3{EiPzq4>r{(BiS=G9UVwa^cz-Nc zz4$v9+VN~u|HQNN)-1l^E9-6Im%MMiLww6P>z+gG&)s4_%#v0dYnRt6KIIteN#fU{ z|32{t;VI&mVtoa~-TF!wck3%d+^w%naksv*#ohV}iuXf5L*lRE@scOLFY;k=x4!b# zvAzn$-TEpPck3%E?$%eCxLaQp;%SKdwTZj+)givy{n%~~?YiB5gzd^JoF$82%89z*2j`SG@yc6sx}AAyI(tKs?L@52klTi_A#f8fR9zFD?E zQSnrGnfPdUg?KK!O8jbgwRkbSR(v_UPJA7_Uc4FJDE>FRSv)D%E^n*2AKoS&fOm*z z!aaj+z1?Cz%=(=T_ljQ)PZD1Q_lZ9a_lwuUQ^Y@q2gHAer;G1#j_r4b_#yC2@pO2$ z_*8gMJP#fczaE|^z6c%`e;A%G{v;e9=9d}$>;UlxnSvb@pc_&u07L2h}`7o z^sxCtax$VT|)5%T!hi2LOL2}cdA5g!L zobzSmCjUF~d|oWh>-ntyL_W!cVmDLH{B!vEwm$)KQ~w|2gXHF)+dMX(Pj2$PGGl+m zZe`@=pYxJ!zLwnN`ykKf9Ws&2QQvF-+ph6E82JFX$-C_#o7~h-K|Y_{WlSvN2dBbQokKBw*2D+I~Zd$wq8%UJg)G0kE_E+r2=c(X2d_D?Or)9Doe?5XLZH__G!lbbrXp-zOH>+tyvOr7(y zY#lu>!6MYD@1_o)Pr%eUV4SVv*&}u*b~CHP^yhxm;qU32{7V=I{oehf$n*E&P5uik zZ?V*0fxLb%{!6Sc{a*a5$m{pw=l8W6kl!0?EOs;ZOuM7uDcyKL{N3T^f5+a3A%8S> zKV$k%_Jqhy{UcF7PyDC-ZGXbuIDhZn)N$<=Qr@&1K)d|Cc#~g?`c;%SUJS49#%sl0 zyLIHI-NVps8@Z{UkNO?rDR9r8u~6*h#^1SD`~c*W$W6OGw3|+D+Pxe34Dqk}*m2J6 z#DiMw{g;;voy8Jugk9_^NOlXr71T>oAD zD#<&q7I*E|lAGnNL%XfyW_ew{P2AP*=*B(rJz`hKOU~^E$hqBgao27}H=Zf(+RY~C zcKLhX+-@P|jk|Uu-FUIMYnQ(dZrWXoajxwqUnlO`t?$P5d*80zX3BHBUc3+FwjY;I z5_j$Tx^cg_tCK>`?FPxscy2nyKEdXbo9FTOGGl+mZu~uKlYj0+o9FLGoBT%PTd9u8 zKQzMTz4HCv-;vkvBfoWm&1Xx#*SJ`**e##j)bD@1%}2>ifBGZeNN)1K-D*bMt@hCh~3MCLft({*KLm-f!oRUE}#K^6BK950abuE?-E_`7&~o z{}A=-$T{Ci&iSN1@qThXKyLD%pni~?^ZDeQFC#bkXJ(ndJ)T-}lixIOCwsi|eN5*8 za#P{unYK>4cqfiS`1`6R`3F3k^4xAdxyieJM#)Y7C-hUlf9l-ZHx`QB+~dpjGfCX_ z(x0M8|3+Wg(m;^c=LDcc7Xli z_79tpPa!wS4jeaTlAHQ%$n*E$O#a<0TVKDw_9ybyREP8Y{W4R3JMtd-o{q`ij{f_} zO+I0K?624@licLJzuErek(+!X^8Ed#oylY~BC+=YB)=c>jpQcpn_~C3{Cy%*{{ZCu z^!*FYXOMF~kKE)FvHyvXoBROO=kKSO{38?1-?8I-$sd9|e;>poKg_gwAI+0D^^ZV4 zgWM$D{y9W$@<$`j-(N8KW!Ks9;qM)o{4nJCdjTdt0ePO!Z}KN1@9Q7C6T7*`<3-s2 zq?4Qc8016b-2Xyylb?V*&kr~GQam1cUbo55M4snen|vQ^|4Dd1$vwUDY0X6#I(4*LFYelHB z&zm0m%iLuC)fLlh|NZ2q&PMb_5kD zuKs4!&k(D_G`D;k4s{o zSybcyd&$l6j=RV{j*`TG!F)5Hc$_$Opx5fQQ8APqgjkiT6Q1EPe&vpUD?L23{!s{F%0X8M#?s zeXzbN$j$n4+g}xVk67NVuWE6(zG}tY`l=Im>#JVet*=ILx4xRi-TG=3ck8Q7+^w$; zaksuagY7t(t)oZmk6T|}aksvb#NGPhc_yZgTVH<3yY-bK?$%c(xmjPySYJFp#H_D; zf9#jB8_y3h?Yi~F^Fxfg^_55Ujl1>5^Fxfg^~Li;jJx$!D0STWiio@QRV?n-S5(}s zuQGABzAD7s`l=Fl>#JJat*=^fx4!Dc-TJB*ck8Q-+^nymIIis==l!8)h#AEA^NU+w zUU9d+lEmHm@`=0kpQ;TVFwOx4uH+Zhhs6 zyY&?ock3%(+^w%-@gI-F`_B4h3_CuJ;=9eX-YmWsyjA>WJDjmM zvh4pe+ncGs5P7foHXPq3iT@1uiT`d7-#mWtt;nZ{{|UFfi62+Let;D(e&HS$lP6ig z+ibgz!-wx{-B0-yd*M#(M}XWc?~QmLCY`*J@;F@ERsRCi$6?=2e}?iQs$=T+9&Q1< zm7V!#DW5O-eKG!piZ>sEb8!lQPb`Ta72doRmmj$^9ebY!Kb@bB`)+^Y-0i;>NglgT zPnmcQ?ynZV5cl1Fz}3GD-X!@Oao_C+T>ch#0=75jcf)<+rSMeorSJ^#$Kg5RPr%*d z-L?A-yg>4<-^JoPkS`Z^*Y9?ZUsvBDi7{9hwJ4c;j3zE9__x9Ixsz89H*_3Yezztt!1zNefj?!E`@=GD78?sZm<cxI9vpRoAL@TmCV``LWG_&xAe@l9|yzuhg@L6~=yj{T7HbKqIx z1@L_FD!7|}?&>6CzErv7Pls2FPk^r%p8|LD$zA>H;U4UtoIeZiD}F&=J8mPzx52Z; z{doN~PkaQtP&@-(B7QI2&Fgmkd>ihL)t$R}OZ8IcOw1o@5x)}d=4rb+Ut%6lBKFhH zvwU_O{NiuH)5M$LZr-)4vlR1S-1C5QH{Yd5>I^%`wp%8?1io7QGq{`Q?CQIDC+(6S zjQ1rV@Oi{yWWd+>bX^4sBk#d{61%atPD8$MEeFg#m42R=tU z7w)bn<@$3me39gf;AP@&{=sVTa^&m8-MoY*@pq7S*O_wt`4XOh=RN1Y!c)clemib% zp1I2h;5m{%4PGL?9q#6tyE=Ou;@Nqtk-Qh~=AXNKZ+MI3`@r4xq+I?0cp{#+oezfl z#oauHH1WHTcgF>;&g1Z0$*+fp#s7d8iT6Czjzd(u54=)58D1+s8Qvg13*IVzDZDR^ zM|#A%VgCFLPZPg#uA#W%v;^`~5a1|MeI zZIJv`a5vxHD!;6>s?j<$7b#czZ+h~Ecy*N1ZL zJ^}BP{8qS|x9{=;Qf<3KaQx`}Sa?Xh79J5l;uu?}RD3SnT|daxch^;Hki5HoqPy;o z%fF90os$0^o{r;Cm(M!Z_Gf{33p^q|V5rU4i$4c%5&r?6jN?|@Xmp=qvF8Nt-cij+|uY#|a{JU^>JrS4x1KuwA#9_8SUL23Rd>HQL z`8#ibr%Ar>cv~k^d}x~W67e5SuwEhFf4KD;@q^)R{=e(b>F^fGyYBc$#?H2rRF-yIyLp_!#8F;#u$_@u~2rco1GGeh$1=`~tYUzJOcaB6z3d zZ-*!0^^?or1s@`QKiqv!!R1TgS(5)8zCir!bUU8K;t#@W#6O3(i>IDw>!jlKnd{HB z@Hyh|!`*o@Tz=q5woZfOL-0hru5$Uu;bX*G;05BNPPX+|ixucl7i&68;ock_SR#W$a7 z+x6mgn`?I~JXyRG9uPk@!`2xiJ`FxkyaZk%{w};p{H@b${Y1P@a{WC1bn9-uy7P13 z?)9Sc0i$i+%}aMa6z=AwJ9pTUm)(z6Szox8}jAi zN#kulo5YLZ-b3y0UH?1b0rB%E*j$$Q^YA?J26#l=lV$6ai@SLOHR7Wu+Ps_3+#`0^ z{BiRkJ$T*b+@04kUEIxI$`U_olC57N?#^S`Ebiu8dhoi|>`o-Nm&ynJ8zG$|% zn_oId+|5&U^EO?(`%JO@k4nB2?&ejx{91T}s!~Nm|&$4+pZ_wrMhp(3WX)|rUPJAl7NjwB^ z6Tb+afY-aO-Amza{+{!E_#Daq4KEeHc9!jDjkr6HWs7)nF2*gz{&elW22T_Bo?~;F z;{D+B#Qy^?5?=_9ihm8S6#oHUC!Tb!?N6Kd1bE_+U6<=zc&2y*JS^T0kBav_&(^IJ z9|W%xp9W9B`wDKHdxUHqzxW7vmU!>;Z9XJ^5WG-46J91BhS!Og!rR3sUSQizI@uO!5hUh;0bu&#r3}k9uR*So+m!% zLfdYU_}%cR_#5yB@yY*Z>$Hhq3s1!RJ+7bk!BfOnz%#^Og6E0*=Gt}(#Sewoh|h&L zia!8v7k?F=i1(RX|38PPh`V|I8REn8Y(MkFAA%Q(zW^^4-wdx2?|YH0UoSos-YI?u zJPGf6x#ijjUm*VH#kPKxc*T6{YsEi+Cmv^i@9NLF)ZQN=el0vhd%|Ye%C_4go&rxyv%h!!KO62B55aTA zYv5t=I(U)zckrnAZdcoWREoRncQlEwLcUFWGd%r-uFEwc-`>v>pAQd-uY%``hp(}9 z7KuL&uMls5H;W&7t*z58J_YU_-nIX?!qddBzRu<{#n-@d#s3QriyvKJ>lBHPg-6AM z@EY+|@MiJt@OJT|uea@b@xG?p4(Gs=#h-=;#J_>(il^LQ>xacB!rlA0uHD)2a>+jk zZxa6;-X^}=jkeuHywB?D9|zAAe;Qsa9xk+X%Ecdp*NG?GWb*`+TXkWJPP-T zm%#(#b?|KQ-EX#a^TY?k3&l@_mxx~uuM}SbuNAL^H;BKm(Do@Z3>Na~nReUmhjCce- zM|>4LU;Jx$vG|@5+wNNN3V4h7c6eZ9*ZvpWZtrJ_yX%SMi>KdV^NYlb;qHBLH$G3m zt0jNuowiPkcxaLJ#8d1~SLb>7Nb!g6vbk*W1@~Fc7vFuc^=k2i66@>5-F2y&#s7nR zySTfaQSvBT&-LG3hb2$^)(35_K>Rj%wfNZ&*?hft0X*TjjuJ8#LS z*`KbT>)@H)uKQt@Bl)#8UNvvr!qC&Bxk-nBnbc!u~-@Ok3%%I*KJ5Pu(D zFTVN-o9_@$T5i4X=&t=a4n9(RK0GLXH++G3IlNSS8@x{ZmM3jL62^4x&$J4AKULiO zl=VFE=}%iP6EB5t5&vz4%?}xCfA)y|Fn<(%13pR?X3KKyy>31`}$u6_va6OX`C#h-;| zh`$RDix;f2?G=eX2`?3239k}=4(_f$9Y?!S&}Qc$wrshS!L9!0W~PzF_;=B7PV=aa`BsS_n@O{}}GhPwe{n-5UG<3nicN zqV?6{m%$svAA@_wckR#QYJ0!0_+{`E@mt_I;%)Fe@g6VP`tH1pZn;Ln-RFVMr^DTO z5S?ENZLg`%?Z3MoYo@rn zers6VT?e*Qyx)7aZk_lxc(b^>j$!JQuKfvpVDD#%-wzLoKMF4p-w3Y|-{-%!zWW^8 zZRgYAos$0yo<6l}KR^D^-Vcfw)?1H?U%A10rTB~RTJhK64dQRWTg4MTvh_Q~li)+9 z+26b6oemF*zYL!z?yg%}DDJNRTO$4z>Qsok>pRqlzk__ecpbb&{9Sm5_S7@jHa&es$YZ$>^M{@;&nKWfF@^-Md(Uu>}X^yyvuKkO5GKTEs-?#=`1 z*6%y;e93*ZypQXNga3 zvbh5BmGBDjDPP%qqj(8CVMf<>-F0bw;=dxFE57eW`~RcjAHnOzk8HMicinZj-H!Rj zx;t-{^K5wHO#6H1>)@&4-@@mKkNejC|ETy%c!T&}KiGV$cmVF7)wMrkHre}g#3!{{ zFA|TyE5-NQZ1c6^$HM==wL1=rs!ZDeJ|ZS68WkBT=9pxpNKmMlXjE)rp`qf6N(l;z zi9(2pii%2wD;ir^q?BlstYKlHVvdT6D;63hB_Gjl)3cQ5pkdA^m@L%gy*5;e!szU z$oI9t%gERK0k@K$zY2Goj7Q`1-`9%gQRHj>gcp!UT!S}~$6SZIM&r@wuNMy|&u-Jk z5lkSj5w9e_=7hX^jN>%Nzx%PzINcT=Mt)S@Kq#90qIf3xqwUaBNM0jeNB+qz$TyQ8 z77w1H*E!S$`Bd`j;>F~T${Pb&$$#jCp3tefe?Vt=EP04{Ik{ICK^hQTEGoiPP&b_R;eqH}>@lA~*I2j3PJo zD@-Fd_Cw4eH})$mBsca|tROe`XRISP_D^gkH};EkpQf+Z*k96z+}PJLjNI408T*sn8(+<0Go3%T+B{MF>fJ_1&9WB&rr>H4~i{S*Sojr|Lv$c=p&GRTenZHve| z-X(wD$R~+6kav_f7_*Y!EAA1m*PkpNK)y#jn%uJ+)>BR%DEnE|kQ@75I?vE^jr}kD z$W5~UP89h(@j~*XyRjY%`AYFB@-5;G#NZ#NqjJ!fTp1fW> zjojUg>&hnYAzn=Wgm^jmNb!2|RPh$_E#j^-_4SsBo5{ZrPaxkKfc0mRPZy1)H1$a|5;iieT!7EdLgAC8_Pa${fJN^)bL-$rs{ ze__`-dY#68#6IMkMq_R?xv{@q3c0Z#UnaRp-te)Qe5rT~x%*i8yrt-MJ|!MYeq212 zd}suEvdHI%7m%+PZzO+o9D1DR>h&av`;hMz&miyjck~pK&lRsBuMu~DQO_Ma9zDkI zjT--4y*d(}M|uAV@CNdUli&gKbbrOO@KEyO;yL8gCnI0U9u0R*)&0F<;KAho5KklT zJ_Y#-^8Qod_2jF>t>l}zc?-CJvV$g+?#xw zcqI9G@dENrFQKQ3JW1STxt@DU+>5-;%jgLv4-`))Un!nL{+f6pxv~GIh1}RDx0?LM ze$(W}K4{Jv`npWAU!IvfL_C0ew0J1_Sn(+GXz>*CwcFeDk9!TD01$y$xPl;EM_x}g-?l0^9bK>6Qt}Bs`Cx1h{m^?NM`Ev4k;&tS2 ziu=5x*WJO)d%{X<_@ zxp*4+(o@R3Yci};=>bdWT=aTm>MBYk%_+N0ZY~9msGrX95<_B>1f9m|C58>YA zABjhhUlFe-uPjDS3;88+*Vpu1*R9B#$^FFx$(M>pkY5)sB47D2`s>Mie**V=U9aao z@d)yI@g(wrCFm(5zhxV|j{F(%7VQ|BOgM(Up$+<%fFGYB_DT4=91@$n{)Ntr4`6Wl3xAkfA91g(VszH-VRdf;ayNIl`@eL)cUO2cx#cc+K6#1< zyq(YCU2Jg zJ;8ZT;34FR;*sPph^LUR6fYwGO1y!5f`%OJRWiJoihs~$=oG#L35a%122BJytnk*^`Y zX9(Q1P0x)M_aI*{9!9?NVf5sZzcdtHOkOAMzFp5fI1Kq{^7D_wi^#K|gjbTE6?fjD z`!|Ln??wKFcog}wBaqJ{k9rDjAzvZhK>mlgTd7`8{L|?1BVR2ZMSgo2@)_ihiIeTnc`LCIpN5MeX4tQje)0-&lwA^BflO2_u8dYSc$pP!DNpo6-9;!=1x`Sap=wHT0OtZ+jhX{P))OXZCxk zcoOBG%0b>jp1ua|a#+v(>}_}ic~k*BpS*ja^n9j!D#RnmCu~MOhkUnq75V8Rlq~;LH_U$ z$fuDX6wfBF7B40DuR~7_`6%(AV|qRQr;(2(|4=-Syji@F{G&7I@v7GSE#jHvZO$QI zOg>b+l6<;&1NkCxm#_8Q0&y?$i{eS-u|H!y7IK$g;hx{<{-KxPvE;Wk!?Vc$CSF7C zbOreqa({92aXr@}9!mbZcnbO2tLV=p-yohx{(*P}`4}sDYRM;vH<3>jcdpUve_1?& zJm4Do)5+(F=a4TJH=WS^Nkk2E( zEN=Q<_s_i(c@OgS;<4n9cSXLKd~|oXl{~={?)QV9+ovZyjePap(ogQ$3tmb7i@0;0 z?w@H!K8$=^Z+I^G{X^jOOTGvamRJ4YekOuk>-d`7S5YmM0;92CkvG5x5LvirP2Hi7a2E2gWD+%62er-NH_`L3UdLcZO{9W-}^0sNn*OOZ^ z;N}au|Ld3F3FK#Affti+Ujet02dsp<{iOTniARxN$wEGdJa!elj(lhi+^13ZyS)id zCHGnfFDH-6hg-?}Zh(9Ito!4{qsS+}i+m0Fy!YU47j@6P_u*0GC0pTHxq9fEuOs{1dAhm&VkAYVfM%~80O{NG=|11{|h2$<@!Cjkm&x)_%N#q+(z^lnmoP>M+rh9hR!qdq^zlYb8k2(c6{jPgv zi-(anpGLlz{McD|@MYc8{t7&ge86>?+oJP>+BiEPjC__eyqJ7bdw31GuM6BtzChgj z4?Wi+9z=ddJd^xDC-j$*`?5Aco_L`Z}g;)eoXz7nAq&LEcKfY5?5hx?ayI@mTVc4i-zc6%zE8ZAyv;-C@ob~lQ$9%g z$rlfX=aJtN2rnmpR@`|1B;$H#ikqDDT%RH6aVMWFo<;uUFyw2=_YH?PkzW^&XshQw z|0we5PUDf`4aIc z@)hER#}koUM%_uN?qk0mb2_F-Lq6Yh5Wt_$XAk&?+6d?s(Xq$!!yZ; zc7a!szb)=_m+qPEj(idM$xyh9ht8jW8XiGjIR;)#eq7{+qr|=Z=)Lrmw@@(-U z@(;v~_pdV6b4WbUtmi(p8~tJAq z@@hYL3wdXMc*s4vf8&GjLh?@r!t2OC9|RBVqkA3;gr}0X9|F%J_Z814e^|VdJWkxh zOV7P$DEec`A0GxUCf_?8-a@|T5qQA8y8okKcslvWC*YOjo1cWc_SHQ(q3}?0?-B4M z@+so(_vxPZM@gQ%A{=fZpF9>`O}0#HRETGiA21_dO+MjXnLAkbSnh+@kw4QP9ulbYUkrd3lK1t4Hc(bqG9<{KsK%(@@>B{c(6Yx%uz#BJvN!E6INquP5I; z9zCu>dTzT&cqDo7v+xA+F!6Nq(c(qq7sO4zbLP)ViJ4-1Oi9LLym6Eqmk{Hd5@&nM zG+)PIY)ndw$#=?}IkxAC_9ymp{C)l9Wmv1M{VZG3Hz9FqOalAO@J8>{IVpjyp9Hji z;y=jbJ2i3Ethm{>h0RV(iSvDO)VKk2Qevjgl;_iD&-G18PE3kRPMI%r#%>t@Kfrq!eBZ4+4%g*b9{CG%Jr}v+W!|r@L%LOstWDoc+4GzGw!lI zvmd!Q)MWCI$Nu8-Z-GT^eb3>~M~nR*2wUCEt&Z)7eQo!f&5wW6)sd8MSCf6deFo3> z7yGaIF_`a(2S=CvgZai04hGpC?AP@md9a*c@~nOVpADR2f8{CL-EMT5CevOF?l#Gu z`s-%?>(FuZH`~XXU4MQquHSfHQ2X`U8~OUj+sr{yW$Xd48hJZZAIfrWJQn_s^ULIXv;Cx2H>1yZ+-`f#KHslZ z#(r2Q=ig0kT#oU$*Y>(`+&X$q&Tnn@W6pkIGy9+G|N8!!f$QgW8J{&CXBn)5UR){NJnp^Zfq /* Needed for the definition of va_list */ - -/* -** Make sure we can call this stuff from C++. -*/ -#ifdef __cplusplus -extern "C" { -#endif - - -/* -** Facilitate override of interface linkage and calling conventions. -** Be aware that these macros may not be used within this particular -** translation of the amalgamation and its associated header file. -** -** The SQLITE_EXTERN and SQLITE_API macros are used to instruct the -** compiler that the target identifier should have external linkage. -** -** The SQLITE_CDECL macro is used to set the calling convention for -** public functions that accept a variable number of arguments. -** -** The SQLITE_APICALL macro is used to set the calling convention for -** public functions that accept a fixed number of arguments. -** -** The SQLITE_STDCALL macro is no longer used and is now deprecated. -** -** The SQLITE_CALLBACK macro is used to set the calling convention for -** function pointers. -** -** The SQLITE_SYSAPI macro is used to set the calling convention for -** functions provided by the operating system. -** -** Currently, the SQLITE_CDECL, SQLITE_APICALL, SQLITE_CALLBACK, and -** SQLITE_SYSAPI macros are used only when building for environments -** that require non-default calling conventions. -*/ -#ifndef SQLITE_EXTERN -# define SQLITE_EXTERN extern -#endif -#ifndef SQLITE_API -# define SQLITE_API -#endif -#ifndef SQLITE_CDECL -# define SQLITE_CDECL -#endif -#ifndef SQLITE_APICALL -# define SQLITE_APICALL -#endif -#ifndef SQLITE_STDCALL -# define SQLITE_STDCALL SQLITE_APICALL -#endif -#ifndef SQLITE_CALLBACK -# define SQLITE_CALLBACK -#endif -#ifndef SQLITE_SYSAPI -# define SQLITE_SYSAPI -#endif - -/* -** These no-op macros are used in front of interfaces to mark those -** interfaces as either deprecated or experimental. New applications -** should not use deprecated interfaces - they are supported for backwards -** compatibility only. Application writers should be aware that -** experimental interfaces are subject to change in point releases. -** -** These macros used to resolve to various kinds of compiler magic that -** would generate warning messages when they were used. But that -** compiler magic ended up generating such a flurry of bug reports -** that we have taken it all out and gone back to using simple -** noop macros. -*/ -#define SQLITE_DEPRECATED -#define SQLITE_EXPERIMENTAL - -/* -** Ensure these symbols were not defined by some previous header file. -*/ -#ifdef SQLITE_VERSION -# undef SQLITE_VERSION -#endif -#ifdef SQLITE_VERSION_NUMBER -# undef SQLITE_VERSION_NUMBER -#endif - -/* -** CAPI3REF: Compile-Time Library Version Numbers -** -** ^(The [SQLITE_VERSION] C preprocessor macro in the sqlite3.h header -** evaluates to a string literal that is the SQLite version in the -** format "X.Y.Z" where X is the major version number (always 3 for -** SQLite3) and Y is the minor version number and Z is the release number.)^ -** ^(The [SQLITE_VERSION_NUMBER] C preprocessor macro resolves to an integer -** with the value (X*1000000 + Y*1000 + Z) where X, Y, and Z are the same -** numbers used in [SQLITE_VERSION].)^ -** The SQLITE_VERSION_NUMBER for any given release of SQLite will also -** be larger than the release from which it is derived. Either Y will -** be held constant and Z will be incremented or else Y will be incremented -** and Z will be reset to zero. -** -** Since [version 3.6.18] ([dateof:3.6.18]), -** SQLite source code has been stored in the -** Fossil configuration management -** system. ^The SQLITE_SOURCE_ID macro evaluates to -** a string which identifies a particular check-in of SQLite -** within its configuration management system. ^The SQLITE_SOURCE_ID -** string contains the date and time of the check-in (UTC) and a SHA1 -** or SHA3-256 hash of the entire source tree. If the source code has -** been edited in any way since it was last checked in, then the last -** four hexadecimal digits of the hash may be modified. -** -** See also: [sqlite3_libversion()], -** [sqlite3_libversion_number()], [sqlite3_sourceid()], -** [sqlite_version()] and [sqlite_source_id()]. -*/ -#define SQLITE_VERSION "3.39.1" -#define SQLITE_VERSION_NUMBER 3039001 -#define SQLITE_SOURCE_ID "2022-07-13 19:41:41 7c16541a0efb3985578181171c9f2bb3fdc4bad6a2ec85c6e31ab96f3eff201f" - -/* -** CAPI3REF: Run-Time Library Version Numbers -** KEYWORDS: sqlite3_version sqlite3_sourceid -** -** These interfaces provide the same information as the [SQLITE_VERSION], -** [SQLITE_VERSION_NUMBER], and [SQLITE_SOURCE_ID] C preprocessor macros -** but are associated with the library instead of the header file. ^(Cautious -** programmers might include assert() statements in their application to -** verify that values returned by these interfaces match the macros in -** the header, and thus ensure that the application is -** compiled with matching library and header files. -** -**
-** assert( sqlite3_libversion_number()==SQLITE_VERSION_NUMBER );
-** assert( strncmp(sqlite3_sourceid(),SQLITE_SOURCE_ID,80)==0 );
-** assert( strcmp(sqlite3_libversion(),SQLITE_VERSION)==0 );
-** 
)^ -** -** ^The sqlite3_version[] string constant contains the text of [SQLITE_VERSION] -** macro. ^The sqlite3_libversion() function returns a pointer to the -** to the sqlite3_version[] string constant. The sqlite3_libversion() -** function is provided for use in DLLs since DLL users usually do not have -** direct access to string constants within the DLL. ^The -** sqlite3_libversion_number() function returns an integer equal to -** [SQLITE_VERSION_NUMBER]. ^(The sqlite3_sourceid() function returns -** a pointer to a string constant whose value is the same as the -** [SQLITE_SOURCE_ID] C preprocessor macro. Except if SQLite is built -** using an edited copy of [the amalgamation], then the last four characters -** of the hash might be different from [SQLITE_SOURCE_ID].)^ -** -** See also: [sqlite_version()] and [sqlite_source_id()]. -*/ -SQLITE_API SQLITE_EXTERN const char sqlite3_version[]; -SQLITE_API const char *sqlite3_libversion(void); -SQLITE_API const char *sqlite3_sourceid(void); -SQLITE_API int sqlite3_libversion_number(void); - -/* -** CAPI3REF: Run-Time Library Compilation Options Diagnostics -** -** ^The sqlite3_compileoption_used() function returns 0 or 1 -** indicating whether the specified option was defined at -** compile time. ^The SQLITE_ prefix may be omitted from the -** option name passed to sqlite3_compileoption_used(). -** -** ^The sqlite3_compileoption_get() function allows iterating -** over the list of options that were defined at compile time by -** returning the N-th compile time option string. ^If N is out of range, -** sqlite3_compileoption_get() returns a NULL pointer. ^The SQLITE_ -** prefix is omitted from any strings returned by -** sqlite3_compileoption_get(). -** -** ^Support for the diagnostic functions sqlite3_compileoption_used() -** and sqlite3_compileoption_get() may be omitted by specifying the -** [SQLITE_OMIT_COMPILEOPTION_DIAGS] option at compile time. -** -** See also: SQL functions [sqlite_compileoption_used()] and -** [sqlite_compileoption_get()] and the [compile_options pragma]. -*/ -#ifndef SQLITE_OMIT_COMPILEOPTION_DIAGS -SQLITE_API int sqlite3_compileoption_used(const char *zOptName); -SQLITE_API const char *sqlite3_compileoption_get(int N); -#else -# define sqlite3_compileoption_used(X) 0 -# define sqlite3_compileoption_get(X) ((void*)0) -#endif - -/* -** CAPI3REF: Test To See If The Library Is Threadsafe -** -** ^The sqlite3_threadsafe() function returns zero if and only if -** SQLite was compiled with mutexing code omitted due to the -** [SQLITE_THREADSAFE] compile-time option being set to 0. -** -** SQLite can be compiled with or without mutexes. When -** the [SQLITE_THREADSAFE] C preprocessor macro is 1 or 2, mutexes -** are enabled and SQLite is threadsafe. When the -** [SQLITE_THREADSAFE] macro is 0, -** the mutexes are omitted. Without the mutexes, it is not safe -** to use SQLite concurrently from more than one thread. -** -** Enabling mutexes incurs a measurable performance penalty. -** So if speed is of utmost importance, it makes sense to disable -** the mutexes. But for maximum safety, mutexes should be enabled. -** ^The default behavior is for mutexes to be enabled. -** -** This interface can be used by an application to make sure that the -** version of SQLite that it is linking against was compiled with -** the desired setting of the [SQLITE_THREADSAFE] macro. -** -** This interface only reports on the compile-time mutex setting -** of the [SQLITE_THREADSAFE] flag. If SQLite is compiled with -** SQLITE_THREADSAFE=1 or =2 then mutexes are enabled by default but -** can be fully or partially disabled using a call to [sqlite3_config()] -** with the verbs [SQLITE_CONFIG_SINGLETHREAD], [SQLITE_CONFIG_MULTITHREAD], -** or [SQLITE_CONFIG_SERIALIZED]. ^(The return value of the -** sqlite3_threadsafe() function shows only the compile-time setting of -** thread safety, not any run-time changes to that setting made by -** sqlite3_config(). In other words, the return value from sqlite3_threadsafe() -** is unchanged by calls to sqlite3_config().)^ -** -** See the [threading mode] documentation for additional information. -*/ -SQLITE_API int sqlite3_threadsafe(void); - -/* -** CAPI3REF: Database Connection Handle -** KEYWORDS: {database connection} {database connections} -** -** Each open SQLite database is represented by a pointer to an instance of -** the opaque structure named "sqlite3". It is useful to think of an sqlite3 -** pointer as an object. The [sqlite3_open()], [sqlite3_open16()], and -** [sqlite3_open_v2()] interfaces are its constructors, and [sqlite3_close()] -** and [sqlite3_close_v2()] are its destructors. There are many other -** interfaces (such as -** [sqlite3_prepare_v2()], [sqlite3_create_function()], and -** [sqlite3_busy_timeout()] to name but three) that are methods on an -** sqlite3 object. -*/ -typedef struct sqlite3 sqlite3; - -/* -** CAPI3REF: 64-Bit Integer Types -** KEYWORDS: sqlite_int64 sqlite_uint64 -** -** Because there is no cross-platform way to specify 64-bit integer types -** SQLite includes typedefs for 64-bit signed and unsigned integers. -** -** The sqlite3_int64 and sqlite3_uint64 are the preferred type definitions. -** The sqlite_int64 and sqlite_uint64 types are supported for backwards -** compatibility only. -** -** ^The sqlite3_int64 and sqlite_int64 types can store integer values -** between -9223372036854775808 and +9223372036854775807 inclusive. ^The -** sqlite3_uint64 and sqlite_uint64 types can store integer values -** between 0 and +18446744073709551615 inclusive. -*/ -#ifdef SQLITE_INT64_TYPE - typedef SQLITE_INT64_TYPE sqlite_int64; -# ifdef SQLITE_UINT64_TYPE - typedef SQLITE_UINT64_TYPE sqlite_uint64; -# else - typedef unsigned SQLITE_INT64_TYPE sqlite_uint64; -# endif -#elif defined(_MSC_VER) || defined(__BORLANDC__) - typedef __int64 sqlite_int64; - typedef unsigned __int64 sqlite_uint64; -#else - typedef long long int sqlite_int64; - typedef unsigned long long int sqlite_uint64; -#endif -typedef sqlite_int64 sqlite3_int64; -typedef sqlite_uint64 sqlite3_uint64; - -/* -** If compiling for a processor that lacks floating point support, -** substitute integer for floating-point. -*/ -#ifdef SQLITE_OMIT_FLOATING_POINT -# define double sqlite3_int64 -#endif - -/* -** CAPI3REF: Closing A Database Connection -** DESTRUCTOR: sqlite3 -** -** ^The sqlite3_close() and sqlite3_close_v2() routines are destructors -** for the [sqlite3] object. -** ^Calls to sqlite3_close() and sqlite3_close_v2() return [SQLITE_OK] if -** the [sqlite3] object is successfully destroyed and all associated -** resources are deallocated. -** -** Ideally, applications should [sqlite3_finalize | finalize] all -** [prepared statements], [sqlite3_blob_close | close] all [BLOB handles], and -** [sqlite3_backup_finish | finish] all [sqlite3_backup] objects associated -** with the [sqlite3] object prior to attempting to close the object. -** ^If the database connection is associated with unfinalized prepared -** statements, BLOB handlers, and/or unfinished sqlite3_backup objects then -** sqlite3_close() will leave the database connection open and return -** [SQLITE_BUSY]. ^If sqlite3_close_v2() is called with unfinalized prepared -** statements, unclosed BLOB handlers, and/or unfinished sqlite3_backups, -** it returns [SQLITE_OK] regardless, but instead of deallocating the database -** connection immediately, it marks the database connection as an unusable -** "zombie" and makes arrangements to automatically deallocate the database -** connection after all prepared statements are finalized, all BLOB handles -** are closed, and all backups have finished. The sqlite3_close_v2() interface -** is intended for use with host languages that are garbage collected, and -** where the order in which destructors are called is arbitrary. -** -** ^If an [sqlite3] object is destroyed while a transaction is open, -** the transaction is automatically rolled back. -** -** The C parameter to [sqlite3_close(C)] and [sqlite3_close_v2(C)] -** must be either a NULL -** pointer or an [sqlite3] object pointer obtained -** from [sqlite3_open()], [sqlite3_open16()], or -** [sqlite3_open_v2()], and not previously closed. -** ^Calling sqlite3_close() or sqlite3_close_v2() with a NULL pointer -** argument is a harmless no-op. -*/ -SQLITE_API int sqlite3_close(sqlite3*); -SQLITE_API int sqlite3_close_v2(sqlite3*); - -/* -** The type for a callback function. -** This is legacy and deprecated. It is included for historical -** compatibility and is not documented. -*/ -typedef int (*sqlite3_callback)(void*,int,char**, char**); - -/* -** CAPI3REF: One-Step Query Execution Interface -** METHOD: sqlite3 -** -** The sqlite3_exec() interface is a convenience wrapper around -** [sqlite3_prepare_v2()], [sqlite3_step()], and [sqlite3_finalize()], -** that allows an application to run multiple statements of SQL -** without having to use a lot of C code. -** -** ^The sqlite3_exec() interface runs zero or more UTF-8 encoded, -** semicolon-separate SQL statements passed into its 2nd argument, -** in the context of the [database connection] passed in as its 1st -** argument. ^If the callback function of the 3rd argument to -** sqlite3_exec() is not NULL, then it is invoked for each result row -** coming out of the evaluated SQL statements. ^The 4th argument to -** sqlite3_exec() is relayed through to the 1st argument of each -** callback invocation. ^If the callback pointer to sqlite3_exec() -** is NULL, then no callback is ever invoked and result rows are -** ignored. -** -** ^If an error occurs while evaluating the SQL statements passed into -** sqlite3_exec(), then execution of the current statement stops and -** subsequent statements are skipped. ^If the 5th parameter to sqlite3_exec() -** is not NULL then any error message is written into memory obtained -** from [sqlite3_malloc()] and passed back through the 5th parameter. -** To avoid memory leaks, the application should invoke [sqlite3_free()] -** on error message strings returned through the 5th parameter of -** sqlite3_exec() after the error message string is no longer needed. -** ^If the 5th parameter to sqlite3_exec() is not NULL and no errors -** occur, then sqlite3_exec() sets the pointer in its 5th parameter to -** NULL before returning. -** -** ^If an sqlite3_exec() callback returns non-zero, the sqlite3_exec() -** routine returns SQLITE_ABORT without invoking the callback again and -** without running any subsequent SQL statements. -** -** ^The 2nd argument to the sqlite3_exec() callback function is the -** number of columns in the result. ^The 3rd argument to the sqlite3_exec() -** callback is an array of pointers to strings obtained as if from -** [sqlite3_column_text()], one for each column. ^If an element of a -** result row is NULL then the corresponding string pointer for the -** sqlite3_exec() callback is a NULL pointer. ^The 4th argument to the -** sqlite3_exec() callback is an array of pointers to strings where each -** entry represents the name of corresponding result column as obtained -** from [sqlite3_column_name()]. -** -** ^If the 2nd parameter to sqlite3_exec() is a NULL pointer, a pointer -** to an empty string, or a pointer that contains only whitespace and/or -** SQL comments, then no SQL statements are evaluated and the database -** is not changed. -** -** Restrictions: -** -**
    -**
  • The application must ensure that the 1st parameter to sqlite3_exec() -** is a valid and open [database connection]. -**
  • The application must not close the [database connection] specified by -** the 1st parameter to sqlite3_exec() while sqlite3_exec() is running. -**
  • The application must not modify the SQL statement text passed into -** the 2nd parameter of sqlite3_exec() while sqlite3_exec() is running. -**
-*/ -SQLITE_API int sqlite3_exec( - sqlite3*, /* An open database */ - const char *sql, /* SQL to be evaluated */ - int (*callback)(void*,int,char**,char**), /* Callback function */ - void *, /* 1st argument to callback */ - char **errmsg /* Error msg written here */ -); - -/* -** CAPI3REF: Result Codes -** KEYWORDS: {result code definitions} -** -** Many SQLite functions return an integer result code from the set shown -** here in order to indicate success or failure. -** -** New error codes may be added in future versions of SQLite. -** -** See also: [extended result code definitions] -*/ -#define SQLITE_OK 0 /* Successful result */ -/* beginning-of-error-codes */ -#define SQLITE_ERROR 1 /* Generic error */ -#define SQLITE_INTERNAL 2 /* Internal logic error in SQLite */ -#define SQLITE_PERM 3 /* Access permission denied */ -#define SQLITE_ABORT 4 /* Callback routine requested an abort */ -#define SQLITE_BUSY 5 /* The database file is locked */ -#define SQLITE_LOCKED 6 /* A table in the database is locked */ -#define SQLITE_NOMEM 7 /* A malloc() failed */ -#define SQLITE_READONLY 8 /* Attempt to write a readonly database */ -#define SQLITE_INTERRUPT 9 /* Operation terminated by sqlite3_interrupt()*/ -#define SQLITE_IOERR 10 /* Some kind of disk I/O error occurred */ -#define SQLITE_CORRUPT 11 /* The database disk image is malformed */ -#define SQLITE_NOTFOUND 12 /* Unknown opcode in sqlite3_file_control() */ -#define SQLITE_FULL 13 /* Insertion failed because database is full */ -#define SQLITE_CANTOPEN 14 /* Unable to open the database file */ -#define SQLITE_PROTOCOL 15 /* Database lock protocol error */ -#define SQLITE_EMPTY 16 /* Internal use only */ -#define SQLITE_SCHEMA 17 /* The database schema changed */ -#define SQLITE_TOOBIG 18 /* String or BLOB exceeds size limit */ -#define SQLITE_CONSTRAINT 19 /* Abort due to constraint violation */ -#define SQLITE_MISMATCH 20 /* Data type mismatch */ -#define SQLITE_MISUSE 21 /* Library used incorrectly */ -#define SQLITE_NOLFS 22 /* Uses OS features not supported on host */ -#define SQLITE_AUTH 23 /* Authorization denied */ -#define SQLITE_FORMAT 24 /* Not used */ -#define SQLITE_RANGE 25 /* 2nd parameter to sqlite3_bind out of range */ -#define SQLITE_NOTADB 26 /* File opened that is not a database file */ -#define SQLITE_NOTICE 27 /* Notifications from sqlite3_log() */ -#define SQLITE_WARNING 28 /* Warnings from sqlite3_log() */ -#define SQLITE_ROW 100 /* sqlite3_step() has another row ready */ -#define SQLITE_DONE 101 /* sqlite3_step() has finished executing */ -/* end-of-error-codes */ - -/* -** CAPI3REF: Extended Result Codes -** KEYWORDS: {extended result code definitions} -** -** In its default configuration, SQLite API routines return one of 30 integer -** [result codes]. However, experience has shown that many of -** these result codes are too coarse-grained. They do not provide as -** much information about problems as programmers might like. In an effort to -** address this, newer versions of SQLite (version 3.3.8 [dateof:3.3.8] -** and later) include -** support for additional result codes that provide more detailed information -** about errors. These [extended result codes] are enabled or disabled -** on a per database connection basis using the -** [sqlite3_extended_result_codes()] API. Or, the extended code for -** the most recent error can be obtained using -** [sqlite3_extended_errcode()]. -*/ -#define SQLITE_ERROR_MISSING_COLLSEQ (SQLITE_ERROR | (1<<8)) -#define SQLITE_ERROR_RETRY (SQLITE_ERROR | (2<<8)) -#define SQLITE_ERROR_SNAPSHOT (SQLITE_ERROR | (3<<8)) -#define SQLITE_IOERR_READ (SQLITE_IOERR | (1<<8)) -#define SQLITE_IOERR_SHORT_READ (SQLITE_IOERR | (2<<8)) -#define SQLITE_IOERR_WRITE (SQLITE_IOERR | (3<<8)) -#define SQLITE_IOERR_FSYNC (SQLITE_IOERR | (4<<8)) -#define SQLITE_IOERR_DIR_FSYNC (SQLITE_IOERR | (5<<8)) -#define SQLITE_IOERR_TRUNCATE (SQLITE_IOERR | (6<<8)) -#define SQLITE_IOERR_FSTAT (SQLITE_IOERR | (7<<8)) -#define SQLITE_IOERR_UNLOCK (SQLITE_IOERR | (8<<8)) -#define SQLITE_IOERR_RDLOCK (SQLITE_IOERR | (9<<8)) -#define SQLITE_IOERR_DELETE (SQLITE_IOERR | (10<<8)) -#define SQLITE_IOERR_BLOCKED (SQLITE_IOERR | (11<<8)) -#define SQLITE_IOERR_NOMEM (SQLITE_IOERR | (12<<8)) -#define SQLITE_IOERR_ACCESS (SQLITE_IOERR | (13<<8)) -#define SQLITE_IOERR_CHECKRESERVEDLOCK (SQLITE_IOERR | (14<<8)) -#define SQLITE_IOERR_LOCK (SQLITE_IOERR | (15<<8)) -#define SQLITE_IOERR_CLOSE (SQLITE_IOERR | (16<<8)) -#define SQLITE_IOERR_DIR_CLOSE (SQLITE_IOERR | (17<<8)) -#define SQLITE_IOERR_SHMOPEN (SQLITE_IOERR | (18<<8)) -#define SQLITE_IOERR_SHMSIZE (SQLITE_IOERR | (19<<8)) -#define SQLITE_IOERR_SHMLOCK (SQLITE_IOERR | (20<<8)) -#define SQLITE_IOERR_SHMMAP (SQLITE_IOERR | (21<<8)) -#define SQLITE_IOERR_SEEK (SQLITE_IOERR | (22<<8)) -#define SQLITE_IOERR_DELETE_NOENT (SQLITE_IOERR | (23<<8)) -#define SQLITE_IOERR_MMAP (SQLITE_IOERR | (24<<8)) -#define SQLITE_IOERR_GETTEMPPATH (SQLITE_IOERR | (25<<8)) -#define SQLITE_IOERR_CONVPATH (SQLITE_IOERR | (26<<8)) -#define SQLITE_IOERR_VNODE (SQLITE_IOERR | (27<<8)) -#define SQLITE_IOERR_AUTH (SQLITE_IOERR | (28<<8)) -#define SQLITE_IOERR_BEGIN_ATOMIC (SQLITE_IOERR | (29<<8)) -#define SQLITE_IOERR_COMMIT_ATOMIC (SQLITE_IOERR | (30<<8)) -#define SQLITE_IOERR_ROLLBACK_ATOMIC (SQLITE_IOERR | (31<<8)) -#define SQLITE_IOERR_DATA (SQLITE_IOERR | (32<<8)) -#define SQLITE_IOERR_CORRUPTFS (SQLITE_IOERR | (33<<8)) -#define SQLITE_LOCKED_SHAREDCACHE (SQLITE_LOCKED | (1<<8)) -#define SQLITE_LOCKED_VTAB (SQLITE_LOCKED | (2<<8)) -#define SQLITE_BUSY_RECOVERY (SQLITE_BUSY | (1<<8)) -#define SQLITE_BUSY_SNAPSHOT (SQLITE_BUSY | (2<<8)) -#define SQLITE_BUSY_TIMEOUT (SQLITE_BUSY | (3<<8)) -#define SQLITE_CANTOPEN_NOTEMPDIR (SQLITE_CANTOPEN | (1<<8)) -#define SQLITE_CANTOPEN_ISDIR (SQLITE_CANTOPEN | (2<<8)) -#define SQLITE_CANTOPEN_FULLPATH (SQLITE_CANTOPEN | (3<<8)) -#define SQLITE_CANTOPEN_CONVPATH (SQLITE_CANTOPEN | (4<<8)) -#define SQLITE_CANTOPEN_DIRTYWAL (SQLITE_CANTOPEN | (5<<8)) /* Not Used */ -#define SQLITE_CANTOPEN_SYMLINK (SQLITE_CANTOPEN | (6<<8)) -#define SQLITE_CORRUPT_VTAB (SQLITE_CORRUPT | (1<<8)) -#define SQLITE_CORRUPT_SEQUENCE (SQLITE_CORRUPT | (2<<8)) -#define SQLITE_CORRUPT_INDEX (SQLITE_CORRUPT | (3<<8)) -#define SQLITE_READONLY_RECOVERY (SQLITE_READONLY | (1<<8)) -#define SQLITE_READONLY_CANTLOCK (SQLITE_READONLY | (2<<8)) -#define SQLITE_READONLY_ROLLBACK (SQLITE_READONLY | (3<<8)) -#define SQLITE_READONLY_DBMOVED (SQLITE_READONLY | (4<<8)) -#define SQLITE_READONLY_CANTINIT (SQLITE_READONLY | (5<<8)) -#define SQLITE_READONLY_DIRECTORY (SQLITE_READONLY | (6<<8)) -#define SQLITE_ABORT_ROLLBACK (SQLITE_ABORT | (2<<8)) -#define SQLITE_CONSTRAINT_CHECK (SQLITE_CONSTRAINT | (1<<8)) -#define SQLITE_CONSTRAINT_COMMITHOOK (SQLITE_CONSTRAINT | (2<<8)) -#define SQLITE_CONSTRAINT_FOREIGNKEY (SQLITE_CONSTRAINT | (3<<8)) -#define SQLITE_CONSTRAINT_FUNCTION (SQLITE_CONSTRAINT | (4<<8)) -#define SQLITE_CONSTRAINT_NOTNULL (SQLITE_CONSTRAINT | (5<<8)) -#define SQLITE_CONSTRAINT_PRIMARYKEY (SQLITE_CONSTRAINT | (6<<8)) -#define SQLITE_CONSTRAINT_TRIGGER (SQLITE_CONSTRAINT | (7<<8)) -#define SQLITE_CONSTRAINT_UNIQUE (SQLITE_CONSTRAINT | (8<<8)) -#define SQLITE_CONSTRAINT_VTAB (SQLITE_CONSTRAINT | (9<<8)) -#define SQLITE_CONSTRAINT_ROWID (SQLITE_CONSTRAINT |(10<<8)) -#define SQLITE_CONSTRAINT_PINNED (SQLITE_CONSTRAINT |(11<<8)) -#define SQLITE_CONSTRAINT_DATATYPE (SQLITE_CONSTRAINT |(12<<8)) -#define SQLITE_NOTICE_RECOVER_WAL (SQLITE_NOTICE | (1<<8)) -#define SQLITE_NOTICE_RECOVER_ROLLBACK (SQLITE_NOTICE | (2<<8)) -#define SQLITE_WARNING_AUTOINDEX (SQLITE_WARNING | (1<<8)) -#define SQLITE_AUTH_USER (SQLITE_AUTH | (1<<8)) -#define SQLITE_OK_LOAD_PERMANENTLY (SQLITE_OK | (1<<8)) -#define SQLITE_OK_SYMLINK (SQLITE_OK | (2<<8)) /* internal use only */ - -/* -** CAPI3REF: Flags For File Open Operations -** -** These bit values are intended for use in the -** 3rd parameter to the [sqlite3_open_v2()] interface and -** in the 4th parameter to the [sqlite3_vfs.xOpen] method. -** -** Only those flags marked as "Ok for sqlite3_open_v2()" may be -** used as the third argument to the [sqlite3_open_v2()] interface. -** The other flags have historically been ignored by sqlite3_open_v2(), -** though future versions of SQLite might change so that an error is -** raised if any of the disallowed bits are passed into sqlite3_open_v2(). -** Applications should not depend on the historical behavior. -** -** Note in particular that passing the SQLITE_OPEN_EXCLUSIVE flag into -** [sqlite3_open_v2()] does *not* cause the underlying database file -** to be opened using O_EXCL. Passing SQLITE_OPEN_EXCLUSIVE into -** [sqlite3_open_v2()] has historically be a no-op and might become an -** error in future versions of SQLite. -*/ -#define SQLITE_OPEN_READONLY 0x00000001 /* Ok for sqlite3_open_v2() */ -#define SQLITE_OPEN_READWRITE 0x00000002 /* Ok for sqlite3_open_v2() */ -#define SQLITE_OPEN_CREATE 0x00000004 /* Ok for sqlite3_open_v2() */ -#define SQLITE_OPEN_DELETEONCLOSE 0x00000008 /* VFS only */ -#define SQLITE_OPEN_EXCLUSIVE 0x00000010 /* VFS only */ -#define SQLITE_OPEN_AUTOPROXY 0x00000020 /* VFS only */ -#define SQLITE_OPEN_URI 0x00000040 /* Ok for sqlite3_open_v2() */ -#define SQLITE_OPEN_MEMORY 0x00000080 /* Ok for sqlite3_open_v2() */ -#define SQLITE_OPEN_MAIN_DB 0x00000100 /* VFS only */ -#define SQLITE_OPEN_TEMP_DB 0x00000200 /* VFS only */ -#define SQLITE_OPEN_TRANSIENT_DB 0x00000400 /* VFS only */ -#define SQLITE_OPEN_MAIN_JOURNAL 0x00000800 /* VFS only */ -#define SQLITE_OPEN_TEMP_JOURNAL 0x00001000 /* VFS only */ -#define SQLITE_OPEN_SUBJOURNAL 0x00002000 /* VFS only */ -#define SQLITE_OPEN_SUPER_JOURNAL 0x00004000 /* VFS only */ -#define SQLITE_OPEN_NOMUTEX 0x00008000 /* Ok for sqlite3_open_v2() */ -#define SQLITE_OPEN_FULLMUTEX 0x00010000 /* Ok for sqlite3_open_v2() */ -#define SQLITE_OPEN_SHAREDCACHE 0x00020000 /* Ok for sqlite3_open_v2() */ -#define SQLITE_OPEN_PRIVATECACHE 0x00040000 /* Ok for sqlite3_open_v2() */ -#define SQLITE_OPEN_WAL 0x00080000 /* VFS only */ -#define SQLITE_OPEN_NOFOLLOW 0x01000000 /* Ok for sqlite3_open_v2() */ -#define SQLITE_OPEN_EXRESCODE 0x02000000 /* Extended result codes */ - -/* Reserved: 0x00F00000 */ -/* Legacy compatibility: */ -#define SQLITE_OPEN_MASTER_JOURNAL 0x00004000 /* VFS only */ - - -/* -** CAPI3REF: Device Characteristics -** -** The xDeviceCharacteristics method of the [sqlite3_io_methods] -** object returns an integer which is a vector of these -** bit values expressing I/O characteristics of the mass storage -** device that holds the file that the [sqlite3_io_methods] -** refers to. -** -** The SQLITE_IOCAP_ATOMIC property means that all writes of -** any size are atomic. The SQLITE_IOCAP_ATOMICnnn values -** mean that writes of blocks that are nnn bytes in size and -** are aligned to an address which is an integer multiple of -** nnn are atomic. The SQLITE_IOCAP_SAFE_APPEND value means -** that when data is appended to a file, the data is appended -** first then the size of the file is extended, never the other -** way around. The SQLITE_IOCAP_SEQUENTIAL property means that -** information is written to disk in the same order as calls -** to xWrite(). The SQLITE_IOCAP_POWERSAFE_OVERWRITE property means that -** after reboot following a crash or power loss, the only bytes in a -** file that were written at the application level might have changed -** and that adjacent bytes, even bytes within the same sector are -** guaranteed to be unchanged. The SQLITE_IOCAP_UNDELETABLE_WHEN_OPEN -** flag indicates that a file cannot be deleted when open. The -** SQLITE_IOCAP_IMMUTABLE flag indicates that the file is on -** read-only media and cannot be changed even by processes with -** elevated privileges. -** -** The SQLITE_IOCAP_BATCH_ATOMIC property means that the underlying -** filesystem supports doing multiple write operations atomically when those -** write operations are bracketed by [SQLITE_FCNTL_BEGIN_ATOMIC_WRITE] and -** [SQLITE_FCNTL_COMMIT_ATOMIC_WRITE]. -*/ -#define SQLITE_IOCAP_ATOMIC 0x00000001 -#define SQLITE_IOCAP_ATOMIC512 0x00000002 -#define SQLITE_IOCAP_ATOMIC1K 0x00000004 -#define SQLITE_IOCAP_ATOMIC2K 0x00000008 -#define SQLITE_IOCAP_ATOMIC4K 0x00000010 -#define SQLITE_IOCAP_ATOMIC8K 0x00000020 -#define SQLITE_IOCAP_ATOMIC16K 0x00000040 -#define SQLITE_IOCAP_ATOMIC32K 0x00000080 -#define SQLITE_IOCAP_ATOMIC64K 0x00000100 -#define SQLITE_IOCAP_SAFE_APPEND 0x00000200 -#define SQLITE_IOCAP_SEQUENTIAL 0x00000400 -#define SQLITE_IOCAP_UNDELETABLE_WHEN_OPEN 0x00000800 -#define SQLITE_IOCAP_POWERSAFE_OVERWRITE 0x00001000 -#define SQLITE_IOCAP_IMMUTABLE 0x00002000 -#define SQLITE_IOCAP_BATCH_ATOMIC 0x00004000 - -/* -** CAPI3REF: File Locking Levels -** -** SQLite uses one of these integer values as the second -** argument to calls it makes to the xLock() and xUnlock() methods -** of an [sqlite3_io_methods] object. -*/ -#define SQLITE_LOCK_NONE 0 -#define SQLITE_LOCK_SHARED 1 -#define SQLITE_LOCK_RESERVED 2 -#define SQLITE_LOCK_PENDING 3 -#define SQLITE_LOCK_EXCLUSIVE 4 - -/* -** CAPI3REF: Synchronization Type Flags -** -** When SQLite invokes the xSync() method of an -** [sqlite3_io_methods] object it uses a combination of -** these integer values as the second argument. -** -** When the SQLITE_SYNC_DATAONLY flag is used, it means that the -** sync operation only needs to flush data to mass storage. Inode -** information need not be flushed. If the lower four bits of the flag -** equal SQLITE_SYNC_NORMAL, that means to use normal fsync() semantics. -** If the lower four bits equal SQLITE_SYNC_FULL, that means -** to use Mac OS X style fullsync instead of fsync(). -** -** Do not confuse the SQLITE_SYNC_NORMAL and SQLITE_SYNC_FULL flags -** with the [PRAGMA synchronous]=NORMAL and [PRAGMA synchronous]=FULL -** settings. The [synchronous pragma] determines when calls to the -** xSync VFS method occur and applies uniformly across all platforms. -** The SQLITE_SYNC_NORMAL and SQLITE_SYNC_FULL flags determine how -** energetic or rigorous or forceful the sync operations are and -** only make a difference on Mac OSX for the default SQLite code. -** (Third-party VFS implementations might also make the distinction -** between SQLITE_SYNC_NORMAL and SQLITE_SYNC_FULL, but among the -** operating systems natively supported by SQLite, only Mac OSX -** cares about the difference.) -*/ -#define SQLITE_SYNC_NORMAL 0x00002 -#define SQLITE_SYNC_FULL 0x00003 -#define SQLITE_SYNC_DATAONLY 0x00010 - -/* -** CAPI3REF: OS Interface Open File Handle -** -** An [sqlite3_file] object represents an open file in the -** [sqlite3_vfs | OS interface layer]. Individual OS interface -** implementations will -** want to subclass this object by appending additional fields -** for their own use. The pMethods entry is a pointer to an -** [sqlite3_io_methods] object that defines methods for performing -** I/O operations on the open file. -*/ -typedef struct sqlite3_file sqlite3_file; -struct sqlite3_file { - const struct sqlite3_io_methods *pMethods; /* Methods for an open file */ -}; - -/* -** CAPI3REF: OS Interface File Virtual Methods Object -** -** Every file opened by the [sqlite3_vfs.xOpen] method populates an -** [sqlite3_file] object (or, more commonly, a subclass of the -** [sqlite3_file] object) with a pointer to an instance of this object. -** This object defines the methods used to perform various operations -** against the open file represented by the [sqlite3_file] object. -** -** If the [sqlite3_vfs.xOpen] method sets the sqlite3_file.pMethods element -** to a non-NULL pointer, then the sqlite3_io_methods.xClose method -** may be invoked even if the [sqlite3_vfs.xOpen] reported that it failed. The -** only way to prevent a call to xClose following a failed [sqlite3_vfs.xOpen] -** is for the [sqlite3_vfs.xOpen] to set the sqlite3_file.pMethods element -** to NULL. -** -** The flags argument to xSync may be one of [SQLITE_SYNC_NORMAL] or -** [SQLITE_SYNC_FULL]. The first choice is the normal fsync(). -** The second choice is a Mac OS X style fullsync. The [SQLITE_SYNC_DATAONLY] -** flag may be ORed in to indicate that only the data of the file -** and not its inode needs to be synced. -** -** The integer values to xLock() and xUnlock() are one of -**
    -**
  • [SQLITE_LOCK_NONE], -**
  • [SQLITE_LOCK_SHARED], -**
  • [SQLITE_LOCK_RESERVED], -**
  • [SQLITE_LOCK_PENDING], or -**
  • [SQLITE_LOCK_EXCLUSIVE]. -**
-** xLock() increases the lock. xUnlock() decreases the lock. -** The xCheckReservedLock() method checks whether any database connection, -** either in this process or in some other process, is holding a RESERVED, -** PENDING, or EXCLUSIVE lock on the file. It returns true -** if such a lock exists and false otherwise. -** -** The xFileControl() method is a generic interface that allows custom -** VFS implementations to directly control an open file using the -** [sqlite3_file_control()] interface. The second "op" argument is an -** integer opcode. The third argument is a generic pointer intended to -** point to a structure that may contain arguments or space in which to -** write return values. Potential uses for xFileControl() might be -** functions to enable blocking locks with timeouts, to change the -** locking strategy (for example to use dot-file locks), to inquire -** about the status of a lock, or to break stale locks. The SQLite -** core reserves all opcodes less than 100 for its own use. -** A [file control opcodes | list of opcodes] less than 100 is available. -** Applications that define a custom xFileControl method should use opcodes -** greater than 100 to avoid conflicts. VFS implementations should -** return [SQLITE_NOTFOUND] for file control opcodes that they do not -** recognize. -** -** The xSectorSize() method returns the sector size of the -** device that underlies the file. The sector size is the -** minimum write that can be performed without disturbing -** other bytes in the file. The xDeviceCharacteristics() -** method returns a bit vector describing behaviors of the -** underlying device: -** -**
    -**
  • [SQLITE_IOCAP_ATOMIC] -**
  • [SQLITE_IOCAP_ATOMIC512] -**
  • [SQLITE_IOCAP_ATOMIC1K] -**
  • [SQLITE_IOCAP_ATOMIC2K] -**
  • [SQLITE_IOCAP_ATOMIC4K] -**
  • [SQLITE_IOCAP_ATOMIC8K] -**
  • [SQLITE_IOCAP_ATOMIC16K] -**
  • [SQLITE_IOCAP_ATOMIC32K] -**
  • [SQLITE_IOCAP_ATOMIC64K] -**
  • [SQLITE_IOCAP_SAFE_APPEND] -**
  • [SQLITE_IOCAP_SEQUENTIAL] -**
  • [SQLITE_IOCAP_UNDELETABLE_WHEN_OPEN] -**
  • [SQLITE_IOCAP_POWERSAFE_OVERWRITE] -**
  • [SQLITE_IOCAP_IMMUTABLE] -**
  • [SQLITE_IOCAP_BATCH_ATOMIC] -**
-** -** The SQLITE_IOCAP_ATOMIC property means that all writes of -** any size are atomic. The SQLITE_IOCAP_ATOMICnnn values -** mean that writes of blocks that are nnn bytes in size and -** are aligned to an address which is an integer multiple of -** nnn are atomic. The SQLITE_IOCAP_SAFE_APPEND value means -** that when data is appended to a file, the data is appended -** first then the size of the file is extended, never the other -** way around. The SQLITE_IOCAP_SEQUENTIAL property means that -** information is written to disk in the same order as calls -** to xWrite(). -** -** If xRead() returns SQLITE_IOERR_SHORT_READ it must also fill -** in the unread portions of the buffer with zeros. A VFS that -** fails to zero-fill short reads might seem to work. However, -** failure to zero-fill short reads will eventually lead to -** database corruption. -*/ -typedef struct sqlite3_io_methods sqlite3_io_methods; -struct sqlite3_io_methods { - int iVersion; - int (*xClose)(sqlite3_file*); - int (*xRead)(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst); - int (*xWrite)(sqlite3_file*, const void*, int iAmt, sqlite3_int64 iOfst); - int (*xTruncate)(sqlite3_file*, sqlite3_int64 size); - int (*xSync)(sqlite3_file*, int flags); - int (*xFileSize)(sqlite3_file*, sqlite3_int64 *pSize); - int (*xLock)(sqlite3_file*, int); - int (*xUnlock)(sqlite3_file*, int); - int (*xCheckReservedLock)(sqlite3_file*, int *pResOut); - int (*xFileControl)(sqlite3_file*, int op, void *pArg); - int (*xSectorSize)(sqlite3_file*); - int (*xDeviceCharacteristics)(sqlite3_file*); - /* Methods above are valid for version 1 */ - int (*xShmMap)(sqlite3_file*, int iPg, int pgsz, int, void volatile**); - int (*xShmLock)(sqlite3_file*, int offset, int n, int flags); - void (*xShmBarrier)(sqlite3_file*); - int (*xShmUnmap)(sqlite3_file*, int deleteFlag); - /* Methods above are valid for version 2 */ - int (*xFetch)(sqlite3_file*, sqlite3_int64 iOfst, int iAmt, void **pp); - int (*xUnfetch)(sqlite3_file*, sqlite3_int64 iOfst, void *p); - /* Methods above are valid for version 3 */ - /* Additional methods may be added in future releases */ -}; - -/* -** CAPI3REF: Standard File Control Opcodes -** KEYWORDS: {file control opcodes} {file control opcode} -** -** These integer constants are opcodes for the xFileControl method -** of the [sqlite3_io_methods] object and for the [sqlite3_file_control()] -** interface. -** -**
    -**
  • [[SQLITE_FCNTL_LOCKSTATE]] -** The [SQLITE_FCNTL_LOCKSTATE] opcode is used for debugging. This -** opcode causes the xFileControl method to write the current state of -** the lock (one of [SQLITE_LOCK_NONE], [SQLITE_LOCK_SHARED], -** [SQLITE_LOCK_RESERVED], [SQLITE_LOCK_PENDING], or [SQLITE_LOCK_EXCLUSIVE]) -** into an integer that the pArg argument points to. This capability -** is used during testing and is only available when the SQLITE_TEST -** compile-time option is used. -** -**
  • [[SQLITE_FCNTL_SIZE_HINT]] -** The [SQLITE_FCNTL_SIZE_HINT] opcode is used by SQLite to give the VFS -** layer a hint of how large the database file will grow to be during the -** current transaction. This hint is not guaranteed to be accurate but it -** is often close. The underlying VFS might choose to preallocate database -** file space based on this hint in order to help writes to the database -** file run faster. -** -**
  • [[SQLITE_FCNTL_SIZE_LIMIT]] -** The [SQLITE_FCNTL_SIZE_LIMIT] opcode is used by in-memory VFS that -** implements [sqlite3_deserialize()] to set an upper bound on the size -** of the in-memory database. The argument is a pointer to a [sqlite3_int64]. -** If the integer pointed to is negative, then it is filled in with the -** current limit. Otherwise the limit is set to the larger of the value -** of the integer pointed to and the current database size. The integer -** pointed to is set to the new limit. -** -**
  • [[SQLITE_FCNTL_CHUNK_SIZE]] -** The [SQLITE_FCNTL_CHUNK_SIZE] opcode is used to request that the VFS -** extends and truncates the database file in chunks of a size specified -** by the user. The fourth argument to [sqlite3_file_control()] should -** point to an integer (type int) containing the new chunk-size to use -** for the nominated database. Allocating database file space in large -** chunks (say 1MB at a time), may reduce file-system fragmentation and -** improve performance on some systems. -** -**
  • [[SQLITE_FCNTL_FILE_POINTER]] -** The [SQLITE_FCNTL_FILE_POINTER] opcode is used to obtain a pointer -** to the [sqlite3_file] object associated with a particular database -** connection. See also [SQLITE_FCNTL_JOURNAL_POINTER]. -** -**
  • [[SQLITE_FCNTL_JOURNAL_POINTER]] -** The [SQLITE_FCNTL_JOURNAL_POINTER] opcode is used to obtain a pointer -** to the [sqlite3_file] object associated with the journal file (either -** the [rollback journal] or the [write-ahead log]) for a particular database -** connection. See also [SQLITE_FCNTL_FILE_POINTER]. -** -**
  • [[SQLITE_FCNTL_SYNC_OMITTED]] -** No longer in use. -** -**
  • [[SQLITE_FCNTL_SYNC]] -** The [SQLITE_FCNTL_SYNC] opcode is generated internally by SQLite and -** sent to the VFS immediately before the xSync method is invoked on a -** database file descriptor. Or, if the xSync method is not invoked -** because the user has configured SQLite with -** [PRAGMA synchronous | PRAGMA synchronous=OFF] it is invoked in place -** of the xSync method. In most cases, the pointer argument passed with -** this file-control is NULL. However, if the database file is being synced -** as part of a multi-database commit, the argument points to a nul-terminated -** string containing the transactions super-journal file name. VFSes that -** do not need this signal should silently ignore this opcode. Applications -** should not call [sqlite3_file_control()] with this opcode as doing so may -** disrupt the operation of the specialized VFSes that do require it. -** -**
  • [[SQLITE_FCNTL_COMMIT_PHASETWO]] -** The [SQLITE_FCNTL_COMMIT_PHASETWO] opcode is generated internally by SQLite -** and sent to the VFS after a transaction has been committed immediately -** but before the database is unlocked. VFSes that do not need this signal -** should silently ignore this opcode. Applications should not call -** [sqlite3_file_control()] with this opcode as doing so may disrupt the -** operation of the specialized VFSes that do require it. -** -**
  • [[SQLITE_FCNTL_WIN32_AV_RETRY]] -** ^The [SQLITE_FCNTL_WIN32_AV_RETRY] opcode is used to configure automatic -** retry counts and intervals for certain disk I/O operations for the -** windows [VFS] in order to provide robustness in the presence of -** anti-virus programs. By default, the windows VFS will retry file read, -** file write, and file delete operations up to 10 times, with a delay -** of 25 milliseconds before the first retry and with the delay increasing -** by an additional 25 milliseconds with each subsequent retry. This -** opcode allows these two values (10 retries and 25 milliseconds of delay) -** to be adjusted. The values are changed for all database connections -** within the same process. The argument is a pointer to an array of two -** integers where the first integer is the new retry count and the second -** integer is the delay. If either integer is negative, then the setting -** is not changed but instead the prior value of that setting is written -** into the array entry, allowing the current retry settings to be -** interrogated. The zDbName parameter is ignored. -** -**
  • [[SQLITE_FCNTL_PERSIST_WAL]] -** ^The [SQLITE_FCNTL_PERSIST_WAL] opcode is used to set or query the -** persistent [WAL | Write Ahead Log] setting. By default, the auxiliary -** write ahead log ([WAL file]) and shared memory -** files used for transaction control -** are automatically deleted when the latest connection to the database -** closes. Setting persistent WAL mode causes those files to persist after -** close. Persisting the files is useful when other processes that do not -** have write permission on the directory containing the database file want -** to read the database file, as the WAL and shared memory files must exist -** in order for the database to be readable. The fourth parameter to -** [sqlite3_file_control()] for this opcode should be a pointer to an integer. -** That integer is 0 to disable persistent WAL mode or 1 to enable persistent -** WAL mode. If the integer is -1, then it is overwritten with the current -** WAL persistence setting. -** -**
  • [[SQLITE_FCNTL_POWERSAFE_OVERWRITE]] -** ^The [SQLITE_FCNTL_POWERSAFE_OVERWRITE] opcode is used to set or query the -** persistent "powersafe-overwrite" or "PSOW" setting. The PSOW setting -** determines the [SQLITE_IOCAP_POWERSAFE_OVERWRITE] bit of the -** xDeviceCharacteristics methods. The fourth parameter to -** [sqlite3_file_control()] for this opcode should be a pointer to an integer. -** That integer is 0 to disable zero-damage mode or 1 to enable zero-damage -** mode. If the integer is -1, then it is overwritten with the current -** zero-damage mode setting. -** -**
  • [[SQLITE_FCNTL_OVERWRITE]] -** ^The [SQLITE_FCNTL_OVERWRITE] opcode is invoked by SQLite after opening -** a write transaction to indicate that, unless it is rolled back for some -** reason, the entire database file will be overwritten by the current -** transaction. This is used by VACUUM operations. -** -**
  • [[SQLITE_FCNTL_VFSNAME]] -** ^The [SQLITE_FCNTL_VFSNAME] opcode can be used to obtain the names of -** all [VFSes] in the VFS stack. The names are of all VFS shims and the -** final bottom-level VFS are written into memory obtained from -** [sqlite3_malloc()] and the result is stored in the char* variable -** that the fourth parameter of [sqlite3_file_control()] points to. -** The caller is responsible for freeing the memory when done. As with -** all file-control actions, there is no guarantee that this will actually -** do anything. Callers should initialize the char* variable to a NULL -** pointer in case this file-control is not implemented. This file-control -** is intended for diagnostic use only. -** -**
  • [[SQLITE_FCNTL_VFS_POINTER]] -** ^The [SQLITE_FCNTL_VFS_POINTER] opcode finds a pointer to the top-level -** [VFSes] currently in use. ^(The argument X in -** sqlite3_file_control(db,SQLITE_FCNTL_VFS_POINTER,X) must be -** of type "[sqlite3_vfs] **". This opcodes will set *X -** to a pointer to the top-level VFS.)^ -** ^When there are multiple VFS shims in the stack, this opcode finds the -** upper-most shim only. -** -**
  • [[SQLITE_FCNTL_PRAGMA]] -** ^Whenever a [PRAGMA] statement is parsed, an [SQLITE_FCNTL_PRAGMA] -** file control is sent to the open [sqlite3_file] object corresponding -** to the database file to which the pragma statement refers. ^The argument -** to the [SQLITE_FCNTL_PRAGMA] file control is an array of -** pointers to strings (char**) in which the second element of the array -** is the name of the pragma and the third element is the argument to the -** pragma or NULL if the pragma has no argument. ^The handler for an -** [SQLITE_FCNTL_PRAGMA] file control can optionally make the first element -** of the char** argument point to a string obtained from [sqlite3_mprintf()] -** or the equivalent and that string will become the result of the pragma or -** the error message if the pragma fails. ^If the -** [SQLITE_FCNTL_PRAGMA] file control returns [SQLITE_NOTFOUND], then normal -** [PRAGMA] processing continues. ^If the [SQLITE_FCNTL_PRAGMA] -** file control returns [SQLITE_OK], then the parser assumes that the -** VFS has handled the PRAGMA itself and the parser generates a no-op -** prepared statement if result string is NULL, or that returns a copy -** of the result string if the string is non-NULL. -** ^If the [SQLITE_FCNTL_PRAGMA] file control returns -** any result code other than [SQLITE_OK] or [SQLITE_NOTFOUND], that means -** that the VFS encountered an error while handling the [PRAGMA] and the -** compilation of the PRAGMA fails with an error. ^The [SQLITE_FCNTL_PRAGMA] -** file control occurs at the beginning of pragma statement analysis and so -** it is able to override built-in [PRAGMA] statements. -** -**
  • [[SQLITE_FCNTL_BUSYHANDLER]] -** ^The [SQLITE_FCNTL_BUSYHANDLER] -** file-control may be invoked by SQLite on the database file handle -** shortly after it is opened in order to provide a custom VFS with access -** to the connection's busy-handler callback. The argument is of type (void**) -** - an array of two (void *) values. The first (void *) actually points -** to a function of type (int (*)(void *)). In order to invoke the connection's -** busy-handler, this function should be invoked with the second (void *) in -** the array as the only argument. If it returns non-zero, then the operation -** should be retried. If it returns zero, the custom VFS should abandon the -** current operation. -** -**
  • [[SQLITE_FCNTL_TEMPFILENAME]] -** ^Applications can invoke the [SQLITE_FCNTL_TEMPFILENAME] file-control -** to have SQLite generate a -** temporary filename using the same algorithm that is followed to generate -** temporary filenames for TEMP tables and other internal uses. The -** argument should be a char** which will be filled with the filename -** written into memory obtained from [sqlite3_malloc()]. The caller should -** invoke [sqlite3_free()] on the result to avoid a memory leak. -** -**
  • [[SQLITE_FCNTL_MMAP_SIZE]] -** The [SQLITE_FCNTL_MMAP_SIZE] file control is used to query or set the -** maximum number of bytes that will be used for memory-mapped I/O. -** The argument is a pointer to a value of type sqlite3_int64 that -** is an advisory maximum number of bytes in the file to memory map. The -** pointer is overwritten with the old value. The limit is not changed if -** the value originally pointed to is negative, and so the current limit -** can be queried by passing in a pointer to a negative number. This -** file-control is used internally to implement [PRAGMA mmap_size]. -** -**
  • [[SQLITE_FCNTL_TRACE]] -** The [SQLITE_FCNTL_TRACE] file control provides advisory information -** to the VFS about what the higher layers of the SQLite stack are doing. -** This file control is used by some VFS activity tracing [shims]. -** The argument is a zero-terminated string. Higher layers in the -** SQLite stack may generate instances of this file control if -** the [SQLITE_USE_FCNTL_TRACE] compile-time option is enabled. -** -**
  • [[SQLITE_FCNTL_HAS_MOVED]] -** The [SQLITE_FCNTL_HAS_MOVED] file control interprets its argument as a -** pointer to an integer and it writes a boolean into that integer depending -** on whether or not the file has been renamed, moved, or deleted since it -** was first opened. -** -**
  • [[SQLITE_FCNTL_WIN32_GET_HANDLE]] -** The [SQLITE_FCNTL_WIN32_GET_HANDLE] opcode can be used to obtain the -** underlying native file handle associated with a file handle. This file -** control interprets its argument as a pointer to a native file handle and -** writes the resulting value there. -** -**
  • [[SQLITE_FCNTL_WIN32_SET_HANDLE]] -** The [SQLITE_FCNTL_WIN32_SET_HANDLE] opcode is used for debugging. This -** opcode causes the xFileControl method to swap the file handle with the one -** pointed to by the pArg argument. This capability is used during testing -** and only needs to be supported when SQLITE_TEST is defined. -** -**
  • [[SQLITE_FCNTL_WAL_BLOCK]] -** The [SQLITE_FCNTL_WAL_BLOCK] is a signal to the VFS layer that it might -** be advantageous to block on the next WAL lock if the lock is not immediately -** available. The WAL subsystem issues this signal during rare -** circumstances in order to fix a problem with priority inversion. -** Applications should not use this file-control. -** -**
  • [[SQLITE_FCNTL_ZIPVFS]] -** The [SQLITE_FCNTL_ZIPVFS] opcode is implemented by zipvfs only. All other -** VFS should return SQLITE_NOTFOUND for this opcode. -** -**
  • [[SQLITE_FCNTL_RBU]] -** The [SQLITE_FCNTL_RBU] opcode is implemented by the special VFS used by -** the RBU extension only. All other VFS should return SQLITE_NOTFOUND for -** this opcode. -** -**
  • [[SQLITE_FCNTL_BEGIN_ATOMIC_WRITE]] -** If the [SQLITE_FCNTL_BEGIN_ATOMIC_WRITE] opcode returns SQLITE_OK, then -** the file descriptor is placed in "batch write mode", which -** means all subsequent write operations will be deferred and done -** atomically at the next [SQLITE_FCNTL_COMMIT_ATOMIC_WRITE]. Systems -** that do not support batch atomic writes will return SQLITE_NOTFOUND. -** ^Following a successful SQLITE_FCNTL_BEGIN_ATOMIC_WRITE and prior to -** the closing [SQLITE_FCNTL_COMMIT_ATOMIC_WRITE] or -** [SQLITE_FCNTL_ROLLBACK_ATOMIC_WRITE], SQLite will make -** no VFS interface calls on the same [sqlite3_file] file descriptor -** except for calls to the xWrite method and the xFileControl method -** with [SQLITE_FCNTL_SIZE_HINT]. -** -**
  • [[SQLITE_FCNTL_COMMIT_ATOMIC_WRITE]] -** The [SQLITE_FCNTL_COMMIT_ATOMIC_WRITE] opcode causes all write -** operations since the previous successful call to -** [SQLITE_FCNTL_BEGIN_ATOMIC_WRITE] to be performed atomically. -** This file control returns [SQLITE_OK] if and only if the writes were -** all performed successfully and have been committed to persistent storage. -** ^Regardless of whether or not it is successful, this file control takes -** the file descriptor out of batch write mode so that all subsequent -** write operations are independent. -** ^SQLite will never invoke SQLITE_FCNTL_COMMIT_ATOMIC_WRITE without -** a prior successful call to [SQLITE_FCNTL_BEGIN_ATOMIC_WRITE]. -** -**
  • [[SQLITE_FCNTL_ROLLBACK_ATOMIC_WRITE]] -** The [SQLITE_FCNTL_ROLLBACK_ATOMIC_WRITE] opcode causes all write -** operations since the previous successful call to -** [SQLITE_FCNTL_BEGIN_ATOMIC_WRITE] to be rolled back. -** ^This file control takes the file descriptor out of batch write mode -** so that all subsequent write operations are independent. -** ^SQLite will never invoke SQLITE_FCNTL_ROLLBACK_ATOMIC_WRITE without -** a prior successful call to [SQLITE_FCNTL_BEGIN_ATOMIC_WRITE]. -** -**
  • [[SQLITE_FCNTL_LOCK_TIMEOUT]] -** The [SQLITE_FCNTL_LOCK_TIMEOUT] opcode is used to configure a VFS -** to block for up to M milliseconds before failing when attempting to -** obtain a file lock using the xLock or xShmLock methods of the VFS. -** The parameter is a pointer to a 32-bit signed integer that contains -** the value that M is to be set to. Before returning, the 32-bit signed -** integer is overwritten with the previous value of M. -** -**
  • [[SQLITE_FCNTL_DATA_VERSION]] -** The [SQLITE_FCNTL_DATA_VERSION] opcode is used to detect changes to -** a database file. The argument is a pointer to a 32-bit unsigned integer. -** The "data version" for the pager is written into the pointer. The -** "data version" changes whenever any change occurs to the corresponding -** database file, either through SQL statements on the same database -** connection or through transactions committed by separate database -** connections possibly in other processes. The [sqlite3_total_changes()] -** interface can be used to find if any database on the connection has changed, -** but that interface responds to changes on TEMP as well as MAIN and does -** not provide a mechanism to detect changes to MAIN only. Also, the -** [sqlite3_total_changes()] interface responds to internal changes only and -** omits changes made by other database connections. The -** [PRAGMA data_version] command provides a mechanism to detect changes to -** a single attached database that occur due to other database connections, -** but omits changes implemented by the database connection on which it is -** called. This file control is the only mechanism to detect changes that -** happen either internally or externally and that are associated with -** a particular attached database. -** -**
  • [[SQLITE_FCNTL_CKPT_START]] -** The [SQLITE_FCNTL_CKPT_START] opcode is invoked from within a checkpoint -** in wal mode before the client starts to copy pages from the wal -** file to the database file. -** -**
  • [[SQLITE_FCNTL_CKPT_DONE]] -** The [SQLITE_FCNTL_CKPT_DONE] opcode is invoked from within a checkpoint -** in wal mode after the client has finished copying pages from the wal -** file to the database file, but before the *-shm file is updated to -** record the fact that the pages have been checkpointed. -**
-** -**
  • [[SQLITE_FCNTL_EXTERNAL_READER]] -** The EXPERIMENTAL [SQLITE_FCNTL_EXTERNAL_READER] opcode is used to detect -** whether or not there is a database client in another process with a wal-mode -** transaction open on the database or not. It is only available on unix.The -** (void*) argument passed with this file-control should be a pointer to a -** value of type (int). The integer value is set to 1 if the database is a wal -** mode database and there exists at least one client in another process that -** currently has an SQL transaction open on the database. It is set to 0 if -** the database is not a wal-mode db, or if there is no such connection in any -** other process. This opcode cannot be used to detect transactions opened -** by clients within the current process, only within other processes. -** -** -**
  • [[SQLITE_FCNTL_CKSM_FILE]] -** Used by the cksmvfs VFS module only. -** -*/ -#define SQLITE_FCNTL_LOCKSTATE 1 -#define SQLITE_FCNTL_GET_LOCKPROXYFILE 2 -#define SQLITE_FCNTL_SET_LOCKPROXYFILE 3 -#define SQLITE_FCNTL_LAST_ERRNO 4 -#define SQLITE_FCNTL_SIZE_HINT 5 -#define SQLITE_FCNTL_CHUNK_SIZE 6 -#define SQLITE_FCNTL_FILE_POINTER 7 -#define SQLITE_FCNTL_SYNC_OMITTED 8 -#define SQLITE_FCNTL_WIN32_AV_RETRY 9 -#define SQLITE_FCNTL_PERSIST_WAL 10 -#define SQLITE_FCNTL_OVERWRITE 11 -#define SQLITE_FCNTL_VFSNAME 12 -#define SQLITE_FCNTL_POWERSAFE_OVERWRITE 13 -#define SQLITE_FCNTL_PRAGMA 14 -#define SQLITE_FCNTL_BUSYHANDLER 15 -#define SQLITE_FCNTL_TEMPFILENAME 16 -#define SQLITE_FCNTL_MMAP_SIZE 18 -#define SQLITE_FCNTL_TRACE 19 -#define SQLITE_FCNTL_HAS_MOVED 20 -#define SQLITE_FCNTL_SYNC 21 -#define SQLITE_FCNTL_COMMIT_PHASETWO 22 -#define SQLITE_FCNTL_WIN32_SET_HANDLE 23 -#define SQLITE_FCNTL_WAL_BLOCK 24 -#define SQLITE_FCNTL_ZIPVFS 25 -#define SQLITE_FCNTL_RBU 26 -#define SQLITE_FCNTL_VFS_POINTER 27 -#define SQLITE_FCNTL_JOURNAL_POINTER 28 -#define SQLITE_FCNTL_WIN32_GET_HANDLE 29 -#define SQLITE_FCNTL_PDB 30 -#define SQLITE_FCNTL_BEGIN_ATOMIC_WRITE 31 -#define SQLITE_FCNTL_COMMIT_ATOMIC_WRITE 32 -#define SQLITE_FCNTL_ROLLBACK_ATOMIC_WRITE 33 -#define SQLITE_FCNTL_LOCK_TIMEOUT 34 -#define SQLITE_FCNTL_DATA_VERSION 35 -#define SQLITE_FCNTL_SIZE_LIMIT 36 -#define SQLITE_FCNTL_CKPT_DONE 37 -#define SQLITE_FCNTL_RESERVE_BYTES 38 -#define SQLITE_FCNTL_CKPT_START 39 -#define SQLITE_FCNTL_EXTERNAL_READER 40 -#define SQLITE_FCNTL_CKSM_FILE 41 - -/* deprecated names */ -#define SQLITE_GET_LOCKPROXYFILE SQLITE_FCNTL_GET_LOCKPROXYFILE -#define SQLITE_SET_LOCKPROXYFILE SQLITE_FCNTL_SET_LOCKPROXYFILE -#define SQLITE_LAST_ERRNO SQLITE_FCNTL_LAST_ERRNO - - -/* -** CAPI3REF: Mutex Handle -** -** The mutex module within SQLite defines [sqlite3_mutex] to be an -** abstract type for a mutex object. The SQLite core never looks -** at the internal representation of an [sqlite3_mutex]. It only -** deals with pointers to the [sqlite3_mutex] object. -** -** Mutexes are created using [sqlite3_mutex_alloc()]. -*/ -typedef struct sqlite3_mutex sqlite3_mutex; - -/* -** CAPI3REF: Loadable Extension Thunk -** -** A pointer to the opaque sqlite3_api_routines structure is passed as -** the third parameter to entry points of [loadable extensions]. This -** structure must be typedefed in order to work around compiler warnings -** on some platforms. -*/ -typedef struct sqlite3_api_routines sqlite3_api_routines; - -/* -** CAPI3REF: OS Interface Object -** -** An instance of the sqlite3_vfs object defines the interface between -** the SQLite core and the underlying operating system. The "vfs" -** in the name of the object stands for "virtual file system". See -** the [VFS | VFS documentation] for further information. -** -** The VFS interface is sometimes extended by adding new methods onto -** the end. Each time such an extension occurs, the iVersion field -** is incremented. The iVersion value started out as 1 in -** SQLite [version 3.5.0] on [dateof:3.5.0], then increased to 2 -** with SQLite [version 3.7.0] on [dateof:3.7.0], and then increased -** to 3 with SQLite [version 3.7.6] on [dateof:3.7.6]. Additional fields -** may be appended to the sqlite3_vfs object and the iVersion value -** may increase again in future versions of SQLite. -** Note that due to an oversight, the structure -** of the sqlite3_vfs object changed in the transition from -** SQLite [version 3.5.9] to [version 3.6.0] on [dateof:3.6.0] -** and yet the iVersion field was not increased. -** -** The szOsFile field is the size of the subclassed [sqlite3_file] -** structure used by this VFS. mxPathname is the maximum length of -** a pathname in this VFS. -** -** Registered sqlite3_vfs objects are kept on a linked list formed by -** the pNext pointer. The [sqlite3_vfs_register()] -** and [sqlite3_vfs_unregister()] interfaces manage this list -** in a thread-safe way. The [sqlite3_vfs_find()] interface -** searches the list. Neither the application code nor the VFS -** implementation should use the pNext pointer. -** -** The pNext field is the only field in the sqlite3_vfs -** structure that SQLite will ever modify. SQLite will only access -** or modify this field while holding a particular static mutex. -** The application should never modify anything within the sqlite3_vfs -** object once the object has been registered. -** -** The zName field holds the name of the VFS module. The name must -** be unique across all VFS modules. -** -** [[sqlite3_vfs.xOpen]] -** ^SQLite guarantees that the zFilename parameter to xOpen -** is either a NULL pointer or string obtained -** from xFullPathname() with an optional suffix added. -** ^If a suffix is added to the zFilename parameter, it will -** consist of a single "-" character followed by no more than -** 11 alphanumeric and/or "-" characters. -** ^SQLite further guarantees that -** the string will be valid and unchanged until xClose() is -** called. Because of the previous sentence, -** the [sqlite3_file] can safely store a pointer to the -** filename if it needs to remember the filename for some reason. -** If the zFilename parameter to xOpen is a NULL pointer then xOpen -** must invent its own temporary name for the file. ^Whenever the -** xFilename parameter is NULL it will also be the case that the -** flags parameter will include [SQLITE_OPEN_DELETEONCLOSE]. -** -** The flags argument to xOpen() includes all bits set in -** the flags argument to [sqlite3_open_v2()]. Or if [sqlite3_open()] -** or [sqlite3_open16()] is used, then flags includes at least -** [SQLITE_OPEN_READWRITE] | [SQLITE_OPEN_CREATE]. -** If xOpen() opens a file read-only then it sets *pOutFlags to -** include [SQLITE_OPEN_READONLY]. Other bits in *pOutFlags may be set. -** -** ^(SQLite will also add one of the following flags to the xOpen() -** call, depending on the object being opened: -** -**
      -**
    • [SQLITE_OPEN_MAIN_DB] -**
    • [SQLITE_OPEN_MAIN_JOURNAL] -**
    • [SQLITE_OPEN_TEMP_DB] -**
    • [SQLITE_OPEN_TEMP_JOURNAL] -**
    • [SQLITE_OPEN_TRANSIENT_DB] -**
    • [SQLITE_OPEN_SUBJOURNAL] -**
    • [SQLITE_OPEN_SUPER_JOURNAL] -**
    • [SQLITE_OPEN_WAL] -**
    )^ -** -** The file I/O implementation can use the object type flags to -** change the way it deals with files. For example, an application -** that does not care about crash recovery or rollback might make -** the open of a journal file a no-op. Writes to this journal would -** also be no-ops, and any attempt to read the journal would return -** SQLITE_IOERR. Or the implementation might recognize that a database -** file will be doing page-aligned sector reads and writes in a random -** order and set up its I/O subsystem accordingly. -** -** SQLite might also add one of the following flags to the xOpen method: -** -**
      -**
    • [SQLITE_OPEN_DELETEONCLOSE] -**
    • [SQLITE_OPEN_EXCLUSIVE] -**
    -** -** The [SQLITE_OPEN_DELETEONCLOSE] flag means the file should be -** deleted when it is closed. ^The [SQLITE_OPEN_DELETEONCLOSE] -** will be set for TEMP databases and their journals, transient -** databases, and subjournals. -** -** ^The [SQLITE_OPEN_EXCLUSIVE] flag is always used in conjunction -** with the [SQLITE_OPEN_CREATE] flag, which are both directly -** analogous to the O_EXCL and O_CREAT flags of the POSIX open() -** API. The SQLITE_OPEN_EXCLUSIVE flag, when paired with the -** SQLITE_OPEN_CREATE, is used to indicate that file should always -** be created, and that it is an error if it already exists. -** It is not used to indicate the file should be opened -** for exclusive access. -** -** ^At least szOsFile bytes of memory are allocated by SQLite -** to hold the [sqlite3_file] structure passed as the third -** argument to xOpen. The xOpen method does not have to -** allocate the structure; it should just fill it in. Note that -** the xOpen method must set the sqlite3_file.pMethods to either -** a valid [sqlite3_io_methods] object or to NULL. xOpen must do -** this even if the open fails. SQLite expects that the sqlite3_file.pMethods -** element will be valid after xOpen returns regardless of the success -** or failure of the xOpen call. -** -** [[sqlite3_vfs.xAccess]] -** ^The flags argument to xAccess() may be [SQLITE_ACCESS_EXISTS] -** to test for the existence of a file, or [SQLITE_ACCESS_READWRITE] to -** test whether a file is readable and writable, or [SQLITE_ACCESS_READ] -** to test whether a file is at least readable. The SQLITE_ACCESS_READ -** flag is never actually used and is not implemented in the built-in -** VFSes of SQLite. The file is named by the second argument and can be a -** directory. The xAccess method returns [SQLITE_OK] on success or some -** non-zero error code if there is an I/O error or if the name of -** the file given in the second argument is illegal. If SQLITE_OK -** is returned, then non-zero or zero is written into *pResOut to indicate -** whether or not the file is accessible. -** -** ^SQLite will always allocate at least mxPathname+1 bytes for the -** output buffer xFullPathname. The exact size of the output buffer -** is also passed as a parameter to both methods. If the output buffer -** is not large enough, [SQLITE_CANTOPEN] should be returned. Since this is -** handled as a fatal error by SQLite, vfs implementations should endeavor -** to prevent this by setting mxPathname to a sufficiently large value. -** -** The xRandomness(), xSleep(), xCurrentTime(), and xCurrentTimeInt64() -** interfaces are not strictly a part of the filesystem, but they are -** included in the VFS structure for completeness. -** The xRandomness() function attempts to return nBytes bytes -** of good-quality randomness into zOut. The return value is -** the actual number of bytes of randomness obtained. -** The xSleep() method causes the calling thread to sleep for at -** least the number of microseconds given. ^The xCurrentTime() -** method returns a Julian Day Number for the current date and time as -** a floating point value. -** ^The xCurrentTimeInt64() method returns, as an integer, the Julian -** Day Number multiplied by 86400000 (the number of milliseconds in -** a 24-hour day). -** ^SQLite will use the xCurrentTimeInt64() method to get the current -** date and time if that method is available (if iVersion is 2 or -** greater and the function pointer is not NULL) and will fall back -** to xCurrentTime() if xCurrentTimeInt64() is unavailable. -** -** ^The xSetSystemCall(), xGetSystemCall(), and xNestSystemCall() interfaces -** are not used by the SQLite core. These optional interfaces are provided -** by some VFSes to facilitate testing of the VFS code. By overriding -** system calls with functions under its control, a test program can -** simulate faults and error conditions that would otherwise be difficult -** or impossible to induce. The set of system calls that can be overridden -** varies from one VFS to another, and from one version of the same VFS to the -** next. Applications that use these interfaces must be prepared for any -** or all of these interfaces to be NULL or for their behavior to change -** from one release to the next. Applications must not attempt to access -** any of these methods if the iVersion of the VFS is less than 3. -*/ -typedef struct sqlite3_vfs sqlite3_vfs; -typedef void (*sqlite3_syscall_ptr)(void); -struct sqlite3_vfs { - int iVersion; /* Structure version number (currently 3) */ - int szOsFile; /* Size of subclassed sqlite3_file */ - int mxPathname; /* Maximum file pathname length */ - sqlite3_vfs *pNext; /* Next registered VFS */ - const char *zName; /* Name of this virtual file system */ - void *pAppData; /* Pointer to application-specific data */ - int (*xOpen)(sqlite3_vfs*, const char *zName, sqlite3_file*, - int flags, int *pOutFlags); - int (*xDelete)(sqlite3_vfs*, const char *zName, int syncDir); - int (*xAccess)(sqlite3_vfs*, const char *zName, int flags, int *pResOut); - int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut); - void *(*xDlOpen)(sqlite3_vfs*, const char *zFilename); - void (*xDlError)(sqlite3_vfs*, int nByte, char *zErrMsg); - void (*(*xDlSym)(sqlite3_vfs*,void*, const char *zSymbol))(void); - void (*xDlClose)(sqlite3_vfs*, void*); - int (*xRandomness)(sqlite3_vfs*, int nByte, char *zOut); - int (*xSleep)(sqlite3_vfs*, int microseconds); - int (*xCurrentTime)(sqlite3_vfs*, double*); - int (*xGetLastError)(sqlite3_vfs*, int, char *); - /* - ** The methods above are in version 1 of the sqlite_vfs object - ** definition. Those that follow are added in version 2 or later - */ - int (*xCurrentTimeInt64)(sqlite3_vfs*, sqlite3_int64*); - /* - ** The methods above are in versions 1 and 2 of the sqlite_vfs object. - ** Those below are for version 3 and greater. - */ - int (*xSetSystemCall)(sqlite3_vfs*, const char *zName, sqlite3_syscall_ptr); - sqlite3_syscall_ptr (*xGetSystemCall)(sqlite3_vfs*, const char *zName); - const char *(*xNextSystemCall)(sqlite3_vfs*, const char *zName); - /* - ** The methods above are in versions 1 through 3 of the sqlite_vfs object. - ** New fields may be appended in future versions. The iVersion - ** value will increment whenever this happens. - */ -}; - -/* -** CAPI3REF: Flags for the xAccess VFS method -** -** These integer constants can be used as the third parameter to -** the xAccess method of an [sqlite3_vfs] object. They determine -** what kind of permissions the xAccess method is looking for. -** With SQLITE_ACCESS_EXISTS, the xAccess method -** simply checks whether the file exists. -** With SQLITE_ACCESS_READWRITE, the xAccess method -** checks whether the named directory is both readable and writable -** (in other words, if files can be added, removed, and renamed within -** the directory). -** The SQLITE_ACCESS_READWRITE constant is currently used only by the -** [temp_store_directory pragma], though this could change in a future -** release of SQLite. -** With SQLITE_ACCESS_READ, the xAccess method -** checks whether the file is readable. The SQLITE_ACCESS_READ constant is -** currently unused, though it might be used in a future release of -** SQLite. -*/ -#define SQLITE_ACCESS_EXISTS 0 -#define SQLITE_ACCESS_READWRITE 1 /* Used by PRAGMA temp_store_directory */ -#define SQLITE_ACCESS_READ 2 /* Unused */ - -/* -** CAPI3REF: Flags for the xShmLock VFS method -** -** These integer constants define the various locking operations -** allowed by the xShmLock method of [sqlite3_io_methods]. The -** following are the only legal combinations of flags to the -** xShmLock method: -** -**
      -**
    • SQLITE_SHM_LOCK | SQLITE_SHM_SHARED -**
    • SQLITE_SHM_LOCK | SQLITE_SHM_EXCLUSIVE -**
    • SQLITE_SHM_UNLOCK | SQLITE_SHM_SHARED -**
    • SQLITE_SHM_UNLOCK | SQLITE_SHM_EXCLUSIVE -**
    -** -** When unlocking, the same SHARED or EXCLUSIVE flag must be supplied as -** was given on the corresponding lock. -** -** The xShmLock method can transition between unlocked and SHARED or -** between unlocked and EXCLUSIVE. It cannot transition between SHARED -** and EXCLUSIVE. -*/ -#define SQLITE_SHM_UNLOCK 1 -#define SQLITE_SHM_LOCK 2 -#define SQLITE_SHM_SHARED 4 -#define SQLITE_SHM_EXCLUSIVE 8 - -/* -** CAPI3REF: Maximum xShmLock index -** -** The xShmLock method on [sqlite3_io_methods] may use values -** between 0 and this upper bound as its "offset" argument. -** The SQLite core will never attempt to acquire or release a -** lock outside of this range -*/ -#define SQLITE_SHM_NLOCK 8 - - -/* -** CAPI3REF: Initialize The SQLite Library -** -** ^The sqlite3_initialize() routine initializes the -** SQLite library. ^The sqlite3_shutdown() routine -** deallocates any resources that were allocated by sqlite3_initialize(). -** These routines are designed to aid in process initialization and -** shutdown on embedded systems. Workstation applications using -** SQLite normally do not need to invoke either of these routines. -** -** A call to sqlite3_initialize() is an "effective" call if it is -** the first time sqlite3_initialize() is invoked during the lifetime of -** the process, or if it is the first time sqlite3_initialize() is invoked -** following a call to sqlite3_shutdown(). ^(Only an effective call -** of sqlite3_initialize() does any initialization. All other calls -** are harmless no-ops.)^ -** -** A call to sqlite3_shutdown() is an "effective" call if it is the first -** call to sqlite3_shutdown() since the last sqlite3_initialize(). ^(Only -** an effective call to sqlite3_shutdown() does any deinitialization. -** All other valid calls to sqlite3_shutdown() are harmless no-ops.)^ -** -** The sqlite3_initialize() interface is threadsafe, but sqlite3_shutdown() -** is not. The sqlite3_shutdown() interface must only be called from a -** single thread. All open [database connections] must be closed and all -** other SQLite resources must be deallocated prior to invoking -** sqlite3_shutdown(). -** -** Among other things, ^sqlite3_initialize() will invoke -** sqlite3_os_init(). Similarly, ^sqlite3_shutdown() -** will invoke sqlite3_os_end(). -** -** ^The sqlite3_initialize() routine returns [SQLITE_OK] on success. -** ^If for some reason, sqlite3_initialize() is unable to initialize -** the library (perhaps it is unable to allocate a needed resource such -** as a mutex) it returns an [error code] other than [SQLITE_OK]. -** -** ^The sqlite3_initialize() routine is called internally by many other -** SQLite interfaces so that an application usually does not need to -** invoke sqlite3_initialize() directly. For example, [sqlite3_open()] -** calls sqlite3_initialize() so the SQLite library will be automatically -** initialized when [sqlite3_open()] is called if it has not be initialized -** already. ^However, if SQLite is compiled with the [SQLITE_OMIT_AUTOINIT] -** compile-time option, then the automatic calls to sqlite3_initialize() -** are omitted and the application must call sqlite3_initialize() directly -** prior to using any other SQLite interface. For maximum portability, -** it is recommended that applications always invoke sqlite3_initialize() -** directly prior to using any other SQLite interface. Future releases -** of SQLite may require this. In other words, the behavior exhibited -** when SQLite is compiled with [SQLITE_OMIT_AUTOINIT] might become the -** default behavior in some future release of SQLite. -** -** The sqlite3_os_init() routine does operating-system specific -** initialization of the SQLite library. The sqlite3_os_end() -** routine undoes the effect of sqlite3_os_init(). Typical tasks -** performed by these routines include allocation or deallocation -** of static resources, initialization of global variables, -** setting up a default [sqlite3_vfs] module, or setting up -** a default configuration using [sqlite3_config()]. -** -** The application should never invoke either sqlite3_os_init() -** or sqlite3_os_end() directly. The application should only invoke -** sqlite3_initialize() and sqlite3_shutdown(). The sqlite3_os_init() -** interface is called automatically by sqlite3_initialize() and -** sqlite3_os_end() is called by sqlite3_shutdown(). Appropriate -** implementations for sqlite3_os_init() and sqlite3_os_end() -** are built into SQLite when it is compiled for Unix, Windows, or OS/2. -** When [custom builds | built for other platforms] -** (using the [SQLITE_OS_OTHER=1] compile-time -** option) the application must supply a suitable implementation for -** sqlite3_os_init() and sqlite3_os_end(). An application-supplied -** implementation of sqlite3_os_init() or sqlite3_os_end() -** must return [SQLITE_OK] on success and some other [error code] upon -** failure. -*/ -SQLITE_API int sqlite3_initialize(void); -SQLITE_API int sqlite3_shutdown(void); -SQLITE_API int sqlite3_os_init(void); -SQLITE_API int sqlite3_os_end(void); - -/* -** CAPI3REF: Configuring The SQLite Library -** -** The sqlite3_config() interface is used to make global configuration -** changes to SQLite in order to tune SQLite to the specific needs of -** the application. The default configuration is recommended for most -** applications and so this routine is usually not necessary. It is -** provided to support rare applications with unusual needs. -** -** The sqlite3_config() interface is not threadsafe. The application -** must ensure that no other SQLite interfaces are invoked by other -** threads while sqlite3_config() is running. -** -** The sqlite3_config() interface -** may only be invoked prior to library initialization using -** [sqlite3_initialize()] or after shutdown by [sqlite3_shutdown()]. -** ^If sqlite3_config() is called after [sqlite3_initialize()] and before -** [sqlite3_shutdown()] then it will return SQLITE_MISUSE. -** Note, however, that ^sqlite3_config() can be called as part of the -** implementation of an application-defined [sqlite3_os_init()]. -** -** The first argument to sqlite3_config() is an integer -** [configuration option] that determines -** what property of SQLite is to be configured. Subsequent arguments -** vary depending on the [configuration option] -** in the first argument. -** -** ^When a configuration option is set, sqlite3_config() returns [SQLITE_OK]. -** ^If the option is unknown or SQLite is unable to set the option -** then this routine returns a non-zero [error code]. -*/ -SQLITE_API int sqlite3_config(int, ...); - -/* -** CAPI3REF: Configure database connections -** METHOD: sqlite3 -** -** The sqlite3_db_config() interface is used to make configuration -** changes to a [database connection]. The interface is similar to -** [sqlite3_config()] except that the changes apply to a single -** [database connection] (specified in the first argument). -** -** The second argument to sqlite3_db_config(D,V,...) is the -** [SQLITE_DBCONFIG_LOOKASIDE | configuration verb] - an integer code -** that indicates what aspect of the [database connection] is being configured. -** Subsequent arguments vary depending on the configuration verb. -** -** ^Calls to sqlite3_db_config() return SQLITE_OK if and only if -** the call is considered successful. -*/ -SQLITE_API int sqlite3_db_config(sqlite3*, int op, ...); - -/* -** CAPI3REF: Memory Allocation Routines -** -** An instance of this object defines the interface between SQLite -** and low-level memory allocation routines. -** -** This object is used in only one place in the SQLite interface. -** A pointer to an instance of this object is the argument to -** [sqlite3_config()] when the configuration option is -** [SQLITE_CONFIG_MALLOC] or [SQLITE_CONFIG_GETMALLOC]. -** By creating an instance of this object -** and passing it to [sqlite3_config]([SQLITE_CONFIG_MALLOC]) -** during configuration, an application can specify an alternative -** memory allocation subsystem for SQLite to use for all of its -** dynamic memory needs. -** -** Note that SQLite comes with several [built-in memory allocators] -** that are perfectly adequate for the overwhelming majority of applications -** and that this object is only useful to a tiny minority of applications -** with specialized memory allocation requirements. This object is -** also used during testing of SQLite in order to specify an alternative -** memory allocator that simulates memory out-of-memory conditions in -** order to verify that SQLite recovers gracefully from such -** conditions. -** -** The xMalloc, xRealloc, and xFree methods must work like the -** malloc(), realloc() and free() functions from the standard C library. -** ^SQLite guarantees that the second argument to -** xRealloc is always a value returned by a prior call to xRoundup. -** -** xSize should return the allocated size of a memory allocation -** previously obtained from xMalloc or xRealloc. The allocated size -** is always at least as big as the requested size but may be larger. -** -** The xRoundup method returns what would be the allocated size of -** a memory allocation given a particular requested size. Most memory -** allocators round up memory allocations at least to the next multiple -** of 8. Some allocators round up to a larger multiple or to a power of 2. -** Every memory allocation request coming in through [sqlite3_malloc()] -** or [sqlite3_realloc()] first calls xRoundup. If xRoundup returns 0, -** that causes the corresponding memory allocation to fail. -** -** The xInit method initializes the memory allocator. For example, -** it might allocate any required mutexes or initialize internal data -** structures. The xShutdown method is invoked (indirectly) by -** [sqlite3_shutdown()] and should deallocate any resources acquired -** by xInit. The pAppData pointer is used as the only parameter to -** xInit and xShutdown. -** -** SQLite holds the [SQLITE_MUTEX_STATIC_MAIN] mutex when it invokes -** the xInit method, so the xInit method need not be threadsafe. The -** xShutdown method is only called from [sqlite3_shutdown()] so it does -** not need to be threadsafe either. For all other methods, SQLite -** holds the [SQLITE_MUTEX_STATIC_MEM] mutex as long as the -** [SQLITE_CONFIG_MEMSTATUS] configuration option is turned on (which -** it is by default) and so the methods are automatically serialized. -** However, if [SQLITE_CONFIG_MEMSTATUS] is disabled, then the other -** methods must be threadsafe or else make their own arrangements for -** serialization. -** -** SQLite will never invoke xInit() more than once without an intervening -** call to xShutdown(). -*/ -typedef struct sqlite3_mem_methods sqlite3_mem_methods; -struct sqlite3_mem_methods { - void *(*xMalloc)(int); /* Memory allocation function */ - void (*xFree)(void*); /* Free a prior allocation */ - void *(*xRealloc)(void*,int); /* Resize an allocation */ - int (*xSize)(void*); /* Return the size of an allocation */ - int (*xRoundup)(int); /* Round up request size to allocation size */ - int (*xInit)(void*); /* Initialize the memory allocator */ - void (*xShutdown)(void*); /* Deinitialize the memory allocator */ - void *pAppData; /* Argument to xInit() and xShutdown() */ -}; - -/* -** CAPI3REF: Configuration Options -** KEYWORDS: {configuration option} -** -** These constants are the available integer configuration options that -** can be passed as the first argument to the [sqlite3_config()] interface. -** -** New configuration options may be added in future releases of SQLite. -** Existing configuration options might be discontinued. Applications -** should check the return code from [sqlite3_config()] to make sure that -** the call worked. The [sqlite3_config()] interface will return a -** non-zero [error code] if a discontinued or unsupported configuration option -** is invoked. -** -**
    -** [[SQLITE_CONFIG_SINGLETHREAD]]
    SQLITE_CONFIG_SINGLETHREAD
    -**
    There are no arguments to this option. ^This option sets the -** [threading mode] to Single-thread. In other words, it disables -** all mutexing and puts SQLite into a mode where it can only be used -** by a single thread. ^If SQLite is compiled with -** the [SQLITE_THREADSAFE | SQLITE_THREADSAFE=0] compile-time option then -** it is not possible to change the [threading mode] from its default -** value of Single-thread and so [sqlite3_config()] will return -** [SQLITE_ERROR] if called with the SQLITE_CONFIG_SINGLETHREAD -** configuration option.
    -** -** [[SQLITE_CONFIG_MULTITHREAD]]
    SQLITE_CONFIG_MULTITHREAD
    -**
    There are no arguments to this option. ^This option sets the -** [threading mode] to Multi-thread. In other words, it disables -** mutexing on [database connection] and [prepared statement] objects. -** The application is responsible for serializing access to -** [database connections] and [prepared statements]. But other mutexes -** are enabled so that SQLite will be safe to use in a multi-threaded -** environment as long as no two threads attempt to use the same -** [database connection] at the same time. ^If SQLite is compiled with -** the [SQLITE_THREADSAFE | SQLITE_THREADSAFE=0] compile-time option then -** it is not possible to set the Multi-thread [threading mode] and -** [sqlite3_config()] will return [SQLITE_ERROR] if called with the -** SQLITE_CONFIG_MULTITHREAD configuration option.
    -** -** [[SQLITE_CONFIG_SERIALIZED]]
    SQLITE_CONFIG_SERIALIZED
    -**
    There are no arguments to this option. ^This option sets the -** [threading mode] to Serialized. In other words, this option enables -** all mutexes including the recursive -** mutexes on [database connection] and [prepared statement] objects. -** In this mode (which is the default when SQLite is compiled with -** [SQLITE_THREADSAFE=1]) the SQLite library will itself serialize access -** to [database connections] and [prepared statements] so that the -** application is free to use the same [database connection] or the -** same [prepared statement] in different threads at the same time. -** ^If SQLite is compiled with -** the [SQLITE_THREADSAFE | SQLITE_THREADSAFE=0] compile-time option then -** it is not possible to set the Serialized [threading mode] and -** [sqlite3_config()] will return [SQLITE_ERROR] if called with the -** SQLITE_CONFIG_SERIALIZED configuration option.
    -** -** [[SQLITE_CONFIG_MALLOC]]
    SQLITE_CONFIG_MALLOC
    -**
    ^(The SQLITE_CONFIG_MALLOC option takes a single argument which is -** a pointer to an instance of the [sqlite3_mem_methods] structure. -** The argument specifies -** alternative low-level memory allocation routines to be used in place of -** the memory allocation routines built into SQLite.)^ ^SQLite makes -** its own private copy of the content of the [sqlite3_mem_methods] structure -** before the [sqlite3_config()] call returns.
    -** -** [[SQLITE_CONFIG_GETMALLOC]]
    SQLITE_CONFIG_GETMALLOC
    -**
    ^(The SQLITE_CONFIG_GETMALLOC option takes a single argument which -** is a pointer to an instance of the [sqlite3_mem_methods] structure. -** The [sqlite3_mem_methods] -** structure is filled with the currently defined memory allocation routines.)^ -** This option can be used to overload the default memory allocation -** routines with a wrapper that simulations memory allocation failure or -** tracks memory usage, for example.
    -** -** [[SQLITE_CONFIG_SMALL_MALLOC]]
    SQLITE_CONFIG_SMALL_MALLOC
    -**
    ^The SQLITE_CONFIG_SMALL_MALLOC option takes single argument of -** type int, interpreted as a boolean, which if true provides a hint to -** SQLite that it should avoid large memory allocations if possible. -** SQLite will run faster if it is free to make large memory allocations, -** but some application might prefer to run slower in exchange for -** guarantees about memory fragmentation that are possible if large -** allocations are avoided. This hint is normally off. -**
    -** -** [[SQLITE_CONFIG_MEMSTATUS]]
    SQLITE_CONFIG_MEMSTATUS
    -**
    ^The SQLITE_CONFIG_MEMSTATUS option takes single argument of type int, -** interpreted as a boolean, which enables or disables the collection of -** memory allocation statistics. ^(When memory allocation statistics are -** disabled, the following SQLite interfaces become non-operational: -**
      -**
    • [sqlite3_hard_heap_limit64()] -**
    • [sqlite3_memory_used()] -**
    • [sqlite3_memory_highwater()] -**
    • [sqlite3_soft_heap_limit64()] -**
    • [sqlite3_status64()] -**
    )^ -** ^Memory allocation statistics are enabled by default unless SQLite is -** compiled with [SQLITE_DEFAULT_MEMSTATUS]=0 in which case memory -** allocation statistics are disabled by default. -**
    -** -** [[SQLITE_CONFIG_SCRATCH]]
    SQLITE_CONFIG_SCRATCH
    -**
    The SQLITE_CONFIG_SCRATCH option is no longer used. -**
    -** -** [[SQLITE_CONFIG_PAGECACHE]]
    SQLITE_CONFIG_PAGECACHE
    -**
    ^The SQLITE_CONFIG_PAGECACHE option specifies a memory pool -** that SQLite can use for the database page cache with the default page -** cache implementation. -** This configuration option is a no-op if an application-defined page -** cache implementation is loaded using the [SQLITE_CONFIG_PCACHE2]. -** ^There are three arguments to SQLITE_CONFIG_PAGECACHE: A pointer to -** 8-byte aligned memory (pMem), the size of each page cache line (sz), -** and the number of cache lines (N). -** The sz argument should be the size of the largest database page -** (a power of two between 512 and 65536) plus some extra bytes for each -** page header. ^The number of extra bytes needed by the page header -** can be determined using [SQLITE_CONFIG_PCACHE_HDRSZ]. -** ^It is harmless, apart from the wasted memory, -** for the sz parameter to be larger than necessary. The pMem -** argument must be either a NULL pointer or a pointer to an 8-byte -** aligned block of memory of at least sz*N bytes, otherwise -** subsequent behavior is undefined. -** ^When pMem is not NULL, SQLite will strive to use the memory provided -** to satisfy page cache needs, falling back to [sqlite3_malloc()] if -** a page cache line is larger than sz bytes or if all of the pMem buffer -** is exhausted. -** ^If pMem is NULL and N is non-zero, then each database connection -** does an initial bulk allocation for page cache memory -** from [sqlite3_malloc()] sufficient for N cache lines if N is positive or -** of -1024*N bytes if N is negative, . ^If additional -** page cache memory is needed beyond what is provided by the initial -** allocation, then SQLite goes to [sqlite3_malloc()] separately for each -** additional cache line.
    -** -** [[SQLITE_CONFIG_HEAP]]
    SQLITE_CONFIG_HEAP
    -**
    ^The SQLITE_CONFIG_HEAP option specifies a static memory buffer -** that SQLite will use for all of its dynamic memory allocation needs -** beyond those provided for by [SQLITE_CONFIG_PAGECACHE]. -** ^The SQLITE_CONFIG_HEAP option is only available if SQLite is compiled -** with either [SQLITE_ENABLE_MEMSYS3] or [SQLITE_ENABLE_MEMSYS5] and returns -** [SQLITE_ERROR] if invoked otherwise. -** ^There are three arguments to SQLITE_CONFIG_HEAP: -** An 8-byte aligned pointer to the memory, -** the number of bytes in the memory buffer, and the minimum allocation size. -** ^If the first pointer (the memory pointer) is NULL, then SQLite reverts -** to using its default memory allocator (the system malloc() implementation), -** undoing any prior invocation of [SQLITE_CONFIG_MALLOC]. ^If the -** memory pointer is not NULL then the alternative memory -** allocator is engaged to handle all of SQLites memory allocation needs. -** The first pointer (the memory pointer) must be aligned to an 8-byte -** boundary or subsequent behavior of SQLite will be undefined. -** The minimum allocation size is capped at 2**12. Reasonable values -** for the minimum allocation size are 2**5 through 2**8.
    -** -** [[SQLITE_CONFIG_MUTEX]]
    SQLITE_CONFIG_MUTEX
    -**
    ^(The SQLITE_CONFIG_MUTEX option takes a single argument which is a -** pointer to an instance of the [sqlite3_mutex_methods] structure. -** The argument specifies alternative low-level mutex routines to be used -** in place the mutex routines built into SQLite.)^ ^SQLite makes a copy of -** the content of the [sqlite3_mutex_methods] structure before the call to -** [sqlite3_config()] returns. ^If SQLite is compiled with -** the [SQLITE_THREADSAFE | SQLITE_THREADSAFE=0] compile-time option then -** the entire mutexing subsystem is omitted from the build and hence calls to -** [sqlite3_config()] with the SQLITE_CONFIG_MUTEX configuration option will -** return [SQLITE_ERROR].
    -** -** [[SQLITE_CONFIG_GETMUTEX]]
    SQLITE_CONFIG_GETMUTEX
    -**
    ^(The SQLITE_CONFIG_GETMUTEX option takes a single argument which -** is a pointer to an instance of the [sqlite3_mutex_methods] structure. The -** [sqlite3_mutex_methods] -** structure is filled with the currently defined mutex routines.)^ -** This option can be used to overload the default mutex allocation -** routines with a wrapper used to track mutex usage for performance -** profiling or testing, for example. ^If SQLite is compiled with -** the [SQLITE_THREADSAFE | SQLITE_THREADSAFE=0] compile-time option then -** the entire mutexing subsystem is omitted from the build and hence calls to -** [sqlite3_config()] with the SQLITE_CONFIG_GETMUTEX configuration option will -** return [SQLITE_ERROR].
    -** -** [[SQLITE_CONFIG_LOOKASIDE]]
    SQLITE_CONFIG_LOOKASIDE
    -**
    ^(The SQLITE_CONFIG_LOOKASIDE option takes two arguments that determine -** the default size of lookaside memory on each [database connection]. -** The first argument is the -** size of each lookaside buffer slot and the second is the number of -** slots allocated to each database connection.)^ ^(SQLITE_CONFIG_LOOKASIDE -** sets the default lookaside size. The [SQLITE_DBCONFIG_LOOKASIDE] -** option to [sqlite3_db_config()] can be used to change the lookaside -** configuration on individual connections.)^
    -** -** [[SQLITE_CONFIG_PCACHE2]]
    SQLITE_CONFIG_PCACHE2
    -**
    ^(The SQLITE_CONFIG_PCACHE2 option takes a single argument which is -** a pointer to an [sqlite3_pcache_methods2] object. This object specifies -** the interface to a custom page cache implementation.)^ -** ^SQLite makes a copy of the [sqlite3_pcache_methods2] object.
    -** -** [[SQLITE_CONFIG_GETPCACHE2]]
    SQLITE_CONFIG_GETPCACHE2
    -**
    ^(The SQLITE_CONFIG_GETPCACHE2 option takes a single argument which -** is a pointer to an [sqlite3_pcache_methods2] object. SQLite copies of -** the current page cache implementation into that object.)^
    -** -** [[SQLITE_CONFIG_LOG]]
    SQLITE_CONFIG_LOG
    -**
    The SQLITE_CONFIG_LOG option is used to configure the SQLite -** global [error log]. -** (^The SQLITE_CONFIG_LOG option takes two arguments: a pointer to a -** function with a call signature of void(*)(void*,int,const char*), -** and a pointer to void. ^If the function pointer is not NULL, it is -** invoked by [sqlite3_log()] to process each logging event. ^If the -** function pointer is NULL, the [sqlite3_log()] interface becomes a no-op. -** ^The void pointer that is the second argument to SQLITE_CONFIG_LOG is -** passed through as the first parameter to the application-defined logger -** function whenever that function is invoked. ^The second parameter to -** the logger function is a copy of the first parameter to the corresponding -** [sqlite3_log()] call and is intended to be a [result code] or an -** [extended result code]. ^The third parameter passed to the logger is -** log message after formatting via [sqlite3_snprintf()]. -** The SQLite logging interface is not reentrant; the logger function -** supplied by the application must not invoke any SQLite interface. -** In a multi-threaded application, the application-defined logger -** function must be threadsafe.
    -** -** [[SQLITE_CONFIG_URI]]
    SQLITE_CONFIG_URI -**
    ^(The SQLITE_CONFIG_URI option takes a single argument of type int. -** If non-zero, then URI handling is globally enabled. If the parameter is zero, -** then URI handling is globally disabled.)^ ^If URI handling is globally -** enabled, all filenames passed to [sqlite3_open()], [sqlite3_open_v2()], -** [sqlite3_open16()] or -** specified as part of [ATTACH] commands are interpreted as URIs, regardless -** of whether or not the [SQLITE_OPEN_URI] flag is set when the database -** connection is opened. ^If it is globally disabled, filenames are -** only interpreted as URIs if the SQLITE_OPEN_URI flag is set when the -** database connection is opened. ^(By default, URI handling is globally -** disabled. The default value may be changed by compiling with the -** [SQLITE_USE_URI] symbol defined.)^ -** -** [[SQLITE_CONFIG_COVERING_INDEX_SCAN]]
    SQLITE_CONFIG_COVERING_INDEX_SCAN -**
    ^The SQLITE_CONFIG_COVERING_INDEX_SCAN option takes a single integer -** argument which is interpreted as a boolean in order to enable or disable -** the use of covering indices for full table scans in the query optimizer. -** ^The default setting is determined -** by the [SQLITE_ALLOW_COVERING_INDEX_SCAN] compile-time option, or is "on" -** if that compile-time option is omitted. -** The ability to disable the use of covering indices for full table scans -** is because some incorrectly coded legacy applications might malfunction -** when the optimization is enabled. Providing the ability to -** disable the optimization allows the older, buggy application code to work -** without change even with newer versions of SQLite. -** -** [[SQLITE_CONFIG_PCACHE]] [[SQLITE_CONFIG_GETPCACHE]] -**
    SQLITE_CONFIG_PCACHE and SQLITE_CONFIG_GETPCACHE -**
    These options are obsolete and should not be used by new code. -** They are retained for backwards compatibility but are now no-ops. -**
    -** -** [[SQLITE_CONFIG_SQLLOG]] -**
    SQLITE_CONFIG_SQLLOG -**
    This option is only available if sqlite is compiled with the -** [SQLITE_ENABLE_SQLLOG] pre-processor macro defined. The first argument should -** be a pointer to a function of type void(*)(void*,sqlite3*,const char*, int). -** The second should be of type (void*). The callback is invoked by the library -** in three separate circumstances, identified by the value passed as the -** fourth parameter. If the fourth parameter is 0, then the database connection -** passed as the second argument has just been opened. The third argument -** points to a buffer containing the name of the main database file. If the -** fourth parameter is 1, then the SQL statement that the third parameter -** points to has just been executed. Or, if the fourth parameter is 2, then -** the connection being passed as the second parameter is being closed. The -** third parameter is passed NULL In this case. An example of using this -** configuration option can be seen in the "test_sqllog.c" source file in -** the canonical SQLite source tree.
    -** -** [[SQLITE_CONFIG_MMAP_SIZE]] -**
    SQLITE_CONFIG_MMAP_SIZE -**
    ^SQLITE_CONFIG_MMAP_SIZE takes two 64-bit integer (sqlite3_int64) values -** that are the default mmap size limit (the default setting for -** [PRAGMA mmap_size]) and the maximum allowed mmap size limit. -** ^The default setting can be overridden by each database connection using -** either the [PRAGMA mmap_size] command, or by using the -** [SQLITE_FCNTL_MMAP_SIZE] file control. ^(The maximum allowed mmap size -** will be silently truncated if necessary so that it does not exceed the -** compile-time maximum mmap size set by the -** [SQLITE_MAX_MMAP_SIZE] compile-time option.)^ -** ^If either argument to this option is negative, then that argument is -** changed to its compile-time default. -** -** [[SQLITE_CONFIG_WIN32_HEAPSIZE]] -**
    SQLITE_CONFIG_WIN32_HEAPSIZE -**
    ^The SQLITE_CONFIG_WIN32_HEAPSIZE option is only available if SQLite is -** compiled for Windows with the [SQLITE_WIN32_MALLOC] pre-processor macro -** defined. ^SQLITE_CONFIG_WIN32_HEAPSIZE takes a 32-bit unsigned integer value -** that specifies the maximum size of the created heap. -** -** [[SQLITE_CONFIG_PCACHE_HDRSZ]] -**
    SQLITE_CONFIG_PCACHE_HDRSZ -**
    ^The SQLITE_CONFIG_PCACHE_HDRSZ option takes a single parameter which -** is a pointer to an integer and writes into that integer the number of extra -** bytes per page required for each page in [SQLITE_CONFIG_PAGECACHE]. -** The amount of extra space required can change depending on the compiler, -** target platform, and SQLite version. -** -** [[SQLITE_CONFIG_PMASZ]] -**
    SQLITE_CONFIG_PMASZ -**
    ^The SQLITE_CONFIG_PMASZ option takes a single parameter which -** is an unsigned integer and sets the "Minimum PMA Size" for the multithreaded -** sorter to that integer. The default minimum PMA Size is set by the -** [SQLITE_SORTER_PMASZ] compile-time option. New threads are launched -** to help with sort operations when multithreaded sorting -** is enabled (using the [PRAGMA threads] command) and the amount of content -** to be sorted exceeds the page size times the minimum of the -** [PRAGMA cache_size] setting and this value. -** -** [[SQLITE_CONFIG_STMTJRNL_SPILL]] -**
    SQLITE_CONFIG_STMTJRNL_SPILL -**
    ^The SQLITE_CONFIG_STMTJRNL_SPILL option takes a single parameter which -** becomes the [statement journal] spill-to-disk threshold. -** [Statement journals] are held in memory until their size (in bytes) -** exceeds this threshold, at which point they are written to disk. -** Or if the threshold is -1, statement journals are always held -** exclusively in memory. -** Since many statement journals never become large, setting the spill -** threshold to a value such as 64KiB can greatly reduce the amount of -** I/O required to support statement rollback. -** The default value for this setting is controlled by the -** [SQLITE_STMTJRNL_SPILL] compile-time option. -** -** [[SQLITE_CONFIG_SORTERREF_SIZE]] -**
    SQLITE_CONFIG_SORTERREF_SIZE -**
    The SQLITE_CONFIG_SORTERREF_SIZE option accepts a single parameter -** of type (int) - the new value of the sorter-reference size threshold. -** Usually, when SQLite uses an external sort to order records according -** to an ORDER BY clause, all fields required by the caller are present in the -** sorted records. However, if SQLite determines based on the declared type -** of a table column that its values are likely to be very large - larger -** than the configured sorter-reference size threshold - then a reference -** is stored in each sorted record and the required column values loaded -** from the database as records are returned in sorted order. The default -** value for this option is to never use this optimization. Specifying a -** negative value for this option restores the default behaviour. -** This option is only available if SQLite is compiled with the -** [SQLITE_ENABLE_SORTER_REFERENCES] compile-time option. -** -** [[SQLITE_CONFIG_MEMDB_MAXSIZE]] -**
    SQLITE_CONFIG_MEMDB_MAXSIZE -**
    The SQLITE_CONFIG_MEMDB_MAXSIZE option accepts a single parameter -** [sqlite3_int64] parameter which is the default maximum size for an in-memory -** database created using [sqlite3_deserialize()]. This default maximum -** size can be adjusted up or down for individual databases using the -** [SQLITE_FCNTL_SIZE_LIMIT] [sqlite3_file_control|file-control]. If this -** configuration setting is never used, then the default maximum is determined -** by the [SQLITE_MEMDB_DEFAULT_MAXSIZE] compile-time option. If that -** compile-time option is not set, then the default maximum is 1073741824. -**
    -*/ -#define SQLITE_CONFIG_SINGLETHREAD 1 /* nil */ -#define SQLITE_CONFIG_MULTITHREAD 2 /* nil */ -#define SQLITE_CONFIG_SERIALIZED 3 /* nil */ -#define SQLITE_CONFIG_MALLOC 4 /* sqlite3_mem_methods* */ -#define SQLITE_CONFIG_GETMALLOC 5 /* sqlite3_mem_methods* */ -#define SQLITE_CONFIG_SCRATCH 6 /* No longer used */ -#define SQLITE_CONFIG_PAGECACHE 7 /* void*, int sz, int N */ -#define SQLITE_CONFIG_HEAP 8 /* void*, int nByte, int min */ -#define SQLITE_CONFIG_MEMSTATUS 9 /* boolean */ -#define SQLITE_CONFIG_MUTEX 10 /* sqlite3_mutex_methods* */ -#define SQLITE_CONFIG_GETMUTEX 11 /* sqlite3_mutex_methods* */ -/* previously SQLITE_CONFIG_CHUNKALLOC 12 which is now unused. */ -#define SQLITE_CONFIG_LOOKASIDE 13 /* int int */ -#define SQLITE_CONFIG_PCACHE 14 /* no-op */ -#define SQLITE_CONFIG_GETPCACHE 15 /* no-op */ -#define SQLITE_CONFIG_LOG 16 /* xFunc, void* */ -#define SQLITE_CONFIG_URI 17 /* int */ -#define SQLITE_CONFIG_PCACHE2 18 /* sqlite3_pcache_methods2* */ -#define SQLITE_CONFIG_GETPCACHE2 19 /* sqlite3_pcache_methods2* */ -#define SQLITE_CONFIG_COVERING_INDEX_SCAN 20 /* int */ -#define SQLITE_CONFIG_SQLLOG 21 /* xSqllog, void* */ -#define SQLITE_CONFIG_MMAP_SIZE 22 /* sqlite3_int64, sqlite3_int64 */ -#define SQLITE_CONFIG_WIN32_HEAPSIZE 23 /* int nByte */ -#define SQLITE_CONFIG_PCACHE_HDRSZ 24 /* int *psz */ -#define SQLITE_CONFIG_PMASZ 25 /* unsigned int szPma */ -#define SQLITE_CONFIG_STMTJRNL_SPILL 26 /* int nByte */ -#define SQLITE_CONFIG_SMALL_MALLOC 27 /* boolean */ -#define SQLITE_CONFIG_SORTERREF_SIZE 28 /* int nByte */ -#define SQLITE_CONFIG_MEMDB_MAXSIZE 29 /* sqlite3_int64 */ - -/* -** CAPI3REF: Database Connection Configuration Options -** -** These constants are the available integer configuration options that -** can be passed as the second argument to the [sqlite3_db_config()] interface. -** -** New configuration options may be added in future releases of SQLite. -** Existing configuration options might be discontinued. Applications -** should check the return code from [sqlite3_db_config()] to make sure that -** the call worked. ^The [sqlite3_db_config()] interface will return a -** non-zero [error code] if a discontinued or unsupported configuration option -** is invoked. -** -**
    -** [[SQLITE_DBCONFIG_LOOKASIDE]] -**
    SQLITE_DBCONFIG_LOOKASIDE
    -**
    ^This option takes three additional arguments that determine the -** [lookaside memory allocator] configuration for the [database connection]. -** ^The first argument (the third parameter to [sqlite3_db_config()] is a -** pointer to a memory buffer to use for lookaside memory. -** ^The first argument after the SQLITE_DBCONFIG_LOOKASIDE verb -** may be NULL in which case SQLite will allocate the -** lookaside buffer itself using [sqlite3_malloc()]. ^The second argument is the -** size of each lookaside buffer slot. ^The third argument is the number of -** slots. The size of the buffer in the first argument must be greater than -** or equal to the product of the second and third arguments. The buffer -** must be aligned to an 8-byte boundary. ^If the second argument to -** SQLITE_DBCONFIG_LOOKASIDE is not a multiple of 8, it is internally -** rounded down to the next smaller multiple of 8. ^(The lookaside memory -** configuration for a database connection can only be changed when that -** connection is not currently using lookaside memory, or in other words -** when the "current value" returned by -** [sqlite3_db_status](D,[SQLITE_CONFIG_LOOKASIDE],...) is zero. -** Any attempt to change the lookaside memory configuration when lookaside -** memory is in use leaves the configuration unchanged and returns -** [SQLITE_BUSY].)^
    -** -** [[SQLITE_DBCONFIG_ENABLE_FKEY]] -**
    SQLITE_DBCONFIG_ENABLE_FKEY
    -**
    ^This option is used to enable or disable the enforcement of -** [foreign key constraints]. There should be two additional arguments. -** The first argument is an integer which is 0 to disable FK enforcement, -** positive to enable FK enforcement or negative to leave FK enforcement -** unchanged. The second parameter is a pointer to an integer into which -** is written 0 or 1 to indicate whether FK enforcement is off or on -** following this call. The second parameter may be a NULL pointer, in -** which case the FK enforcement setting is not reported back.
    -** -** [[SQLITE_DBCONFIG_ENABLE_TRIGGER]] -**
    SQLITE_DBCONFIG_ENABLE_TRIGGER
    -**
    ^This option is used to enable or disable [CREATE TRIGGER | triggers]. -** There should be two additional arguments. -** The first argument is an integer which is 0 to disable triggers, -** positive to enable triggers or negative to leave the setting unchanged. -** The second parameter is a pointer to an integer into which -** is written 0 or 1 to indicate whether triggers are disabled or enabled -** following this call. The second parameter may be a NULL pointer, in -** which case the trigger setting is not reported back. -** -**

    Originally this option disabled all triggers. ^(However, since -** SQLite version 3.35.0, TEMP triggers are still allowed even if -** this option is off. So, in other words, this option now only disables -** triggers in the main database schema or in the schemas of ATTACH-ed -** databases.)^

    -** -** [[SQLITE_DBCONFIG_ENABLE_VIEW]] -**
    SQLITE_DBCONFIG_ENABLE_VIEW
    -**
    ^This option is used to enable or disable [CREATE VIEW | views]. -** There should be two additional arguments. -** The first argument is an integer which is 0 to disable views, -** positive to enable views or negative to leave the setting unchanged. -** The second parameter is a pointer to an integer into which -** is written 0 or 1 to indicate whether views are disabled or enabled -** following this call. The second parameter may be a NULL pointer, in -** which case the view setting is not reported back. -** -**

    Originally this option disabled all views. ^(However, since -** SQLite version 3.35.0, TEMP views are still allowed even if -** this option is off. So, in other words, this option now only disables -** views in the main database schema or in the schemas of ATTACH-ed -** databases.)^

    -** -** [[SQLITE_DBCONFIG_ENABLE_FTS3_TOKENIZER]] -**
    SQLITE_DBCONFIG_ENABLE_FTS3_TOKENIZER
    -**
    ^This option is used to enable or disable the -** [fts3_tokenizer()] function which is part of the -** [FTS3] full-text search engine extension. -** There should be two additional arguments. -** The first argument is an integer which is 0 to disable fts3_tokenizer() or -** positive to enable fts3_tokenizer() or negative to leave the setting -** unchanged. -** The second parameter is a pointer to an integer into which -** is written 0 or 1 to indicate whether fts3_tokenizer is disabled or enabled -** following this call. The second parameter may be a NULL pointer, in -** which case the new setting is not reported back.
    -** -** [[SQLITE_DBCONFIG_ENABLE_LOAD_EXTENSION]] -**
    SQLITE_DBCONFIG_ENABLE_LOAD_EXTENSION
    -**
    ^This option is used to enable or disable the [sqlite3_load_extension()] -** interface independently of the [load_extension()] SQL function. -** The [sqlite3_enable_load_extension()] API enables or disables both the -** C-API [sqlite3_load_extension()] and the SQL function [load_extension()]. -** There should be two additional arguments. -** When the first argument to this interface is 1, then only the C-API is -** enabled and the SQL function remains disabled. If the first argument to -** this interface is 0, then both the C-API and the SQL function are disabled. -** If the first argument is -1, then no changes are made to state of either the -** C-API or the SQL function. -** The second parameter is a pointer to an integer into which -** is written 0 or 1 to indicate whether [sqlite3_load_extension()] interface -** is disabled or enabled following this call. The second parameter may -** be a NULL pointer, in which case the new setting is not reported back. -**
    -** -** [[SQLITE_DBCONFIG_MAINDBNAME]]
    SQLITE_DBCONFIG_MAINDBNAME
    -**
    ^This option is used to change the name of the "main" database -** schema. ^The sole argument is a pointer to a constant UTF8 string -** which will become the new schema name in place of "main". ^SQLite -** does not make a copy of the new main schema name string, so the application -** must ensure that the argument passed into this DBCONFIG option is unchanged -** until after the database connection closes. -**
    -** -** [[SQLITE_DBCONFIG_NO_CKPT_ON_CLOSE]] -**
    SQLITE_DBCONFIG_NO_CKPT_ON_CLOSE
    -**
    Usually, when a database in wal mode is closed or detached from a -** database handle, SQLite checks if this will mean that there are now no -** connections at all to the database. If so, it performs a checkpoint -** operation before closing the connection. This option may be used to -** override this behaviour. The first parameter passed to this operation -** is an integer - positive to disable checkpoints-on-close, or zero (the -** default) to enable them, and negative to leave the setting unchanged. -** The second parameter is a pointer to an integer -** into which is written 0 or 1 to indicate whether checkpoints-on-close -** have been disabled - 0 if they are not disabled, 1 if they are. -**
    -** -** [[SQLITE_DBCONFIG_ENABLE_QPSG]]
    SQLITE_DBCONFIG_ENABLE_QPSG
    -**
    ^(The SQLITE_DBCONFIG_ENABLE_QPSG option activates or deactivates -** the [query planner stability guarantee] (QPSG). When the QPSG is active, -** a single SQL query statement will always use the same algorithm regardless -** of values of [bound parameters].)^ The QPSG disables some query optimizations -** that look at the values of bound parameters, which can make some queries -** slower. But the QPSG has the advantage of more predictable behavior. With -** the QPSG active, SQLite will always use the same query plan in the field as -** was used during testing in the lab. -** The first argument to this setting is an integer which is 0 to disable -** the QPSG, positive to enable QPSG, or negative to leave the setting -** unchanged. The second parameter is a pointer to an integer into which -** is written 0 or 1 to indicate whether the QPSG is disabled or enabled -** following this call. -**
    -** -** [[SQLITE_DBCONFIG_TRIGGER_EQP]]
    SQLITE_DBCONFIG_TRIGGER_EQP
    -**
    By default, the output of EXPLAIN QUERY PLAN commands does not -** include output for any operations performed by trigger programs. This -** option is used to set or clear (the default) a flag that governs this -** behavior. The first parameter passed to this operation is an integer - -** positive to enable output for trigger programs, or zero to disable it, -** or negative to leave the setting unchanged. -** The second parameter is a pointer to an integer into which is written -** 0 or 1 to indicate whether output-for-triggers has been disabled - 0 if -** it is not disabled, 1 if it is. -**
    -** -** [[SQLITE_DBCONFIG_RESET_DATABASE]]
    SQLITE_DBCONFIG_RESET_DATABASE
    -**
    Set the SQLITE_DBCONFIG_RESET_DATABASE flag and then run -** [VACUUM] in order to reset a database back to an empty database -** with no schema and no content. The following process works even for -** a badly corrupted database file: -**
      -**
    1. If the database connection is newly opened, make sure it has read the -** database schema by preparing then discarding some query against the -** database, or calling sqlite3_table_column_metadata(), ignoring any -** errors. This step is only necessary if the application desires to keep -** the database in WAL mode after the reset if it was in WAL mode before -** the reset. -**
    2. sqlite3_db_config(db, SQLITE_DBCONFIG_RESET_DATABASE, 1, 0); -**
    3. [sqlite3_exec](db, "[VACUUM]", 0, 0, 0); -**
    4. sqlite3_db_config(db, SQLITE_DBCONFIG_RESET_DATABASE, 0, 0); -**
    -** Because resetting a database is destructive and irreversible, the -** process requires the use of this obscure API and multiple steps to help -** ensure that it does not happen by accident. -** -** [[SQLITE_DBCONFIG_DEFENSIVE]]
    SQLITE_DBCONFIG_DEFENSIVE
    -**
    The SQLITE_DBCONFIG_DEFENSIVE option activates or deactivates the -** "defensive" flag for a database connection. When the defensive -** flag is enabled, language features that allow ordinary SQL to -** deliberately corrupt the database file are disabled. The disabled -** features include but are not limited to the following: -**
      -**
    • The [PRAGMA writable_schema=ON] statement. -**
    • The [PRAGMA journal_mode=OFF] statement. -**
    • Writes to the [sqlite_dbpage] virtual table. -**
    • Direct writes to [shadow tables]. -**
    -**
    -** -** [[SQLITE_DBCONFIG_WRITABLE_SCHEMA]]
    SQLITE_DBCONFIG_WRITABLE_SCHEMA
    -**
    The SQLITE_DBCONFIG_WRITABLE_SCHEMA option activates or deactivates the -** "writable_schema" flag. This has the same effect and is logically equivalent -** to setting [PRAGMA writable_schema=ON] or [PRAGMA writable_schema=OFF]. -** The first argument to this setting is an integer which is 0 to disable -** the writable_schema, positive to enable writable_schema, or negative to -** leave the setting unchanged. The second parameter is a pointer to an -** integer into which is written 0 or 1 to indicate whether the writable_schema -** is enabled or disabled following this call. -**
    -** -** [[SQLITE_DBCONFIG_LEGACY_ALTER_TABLE]] -**
    SQLITE_DBCONFIG_LEGACY_ALTER_TABLE
    -**
    The SQLITE_DBCONFIG_LEGACY_ALTER_TABLE option activates or deactivates -** the legacy behavior of the [ALTER TABLE RENAME] command such it -** behaves as it did prior to [version 3.24.0] (2018-06-04). See the -** "Compatibility Notice" on the [ALTER TABLE RENAME documentation] for -** additional information. This feature can also be turned on and off -** using the [PRAGMA legacy_alter_table] statement. -**
    -** -** [[SQLITE_DBCONFIG_DQS_DML]] -**
    SQLITE_DBCONFIG_DQS_DML -**
    The SQLITE_DBCONFIG_DQS_DML option activates or deactivates -** the legacy [double-quoted string literal] misfeature for DML statements -** only, that is DELETE, INSERT, SELECT, and UPDATE statements. The -** default value of this setting is determined by the [-DSQLITE_DQS] -** compile-time option. -**
    -** -** [[SQLITE_DBCONFIG_DQS_DDL]] -**
    SQLITE_DBCONFIG_DQS_DDL -**
    The SQLITE_DBCONFIG_DQS option activates or deactivates -** the legacy [double-quoted string literal] misfeature for DDL statements, -** such as CREATE TABLE and CREATE INDEX. The -** default value of this setting is determined by the [-DSQLITE_DQS] -** compile-time option. -**
    -** -** [[SQLITE_DBCONFIG_TRUSTED_SCHEMA]] -**
    SQLITE_DBCONFIG_TRUSTED_SCHEMA -**
    The SQLITE_DBCONFIG_TRUSTED_SCHEMA option tells SQLite to -** assume that database schemas are untainted by malicious content. -** When the SQLITE_DBCONFIG_TRUSTED_SCHEMA option is disabled, SQLite -** takes additional defensive steps to protect the application from harm -** including: -**
      -**
    • Prohibit the use of SQL functions inside triggers, views, -** CHECK constraints, DEFAULT clauses, expression indexes, -** partial indexes, or generated columns -** unless those functions are tagged with [SQLITE_INNOCUOUS]. -**
    • Prohibit the use of virtual tables inside of triggers or views -** unless those virtual tables are tagged with [SQLITE_VTAB_INNOCUOUS]. -**
    -** This setting defaults to "on" for legacy compatibility, however -** all applications are advised to turn it off if possible. This setting -** can also be controlled using the [PRAGMA trusted_schema] statement. -**
    -** -** [[SQLITE_DBCONFIG_LEGACY_FILE_FORMAT]] -**
    SQLITE_DBCONFIG_LEGACY_FILE_FORMAT -**
    The SQLITE_DBCONFIG_LEGACY_FILE_FORMAT option activates or deactivates -** the legacy file format flag. When activated, this flag causes all newly -** created database file to have a schema format version number (the 4-byte -** integer found at offset 44 into the database header) of 1. This in turn -** means that the resulting database file will be readable and writable by -** any SQLite version back to 3.0.0 ([dateof:3.0.0]). Without this setting, -** newly created databases are generally not understandable by SQLite versions -** prior to 3.3.0 ([dateof:3.3.0]). As these words are written, there -** is now scarcely any need to generated database files that are compatible -** all the way back to version 3.0.0, and so this setting is of little -** practical use, but is provided so that SQLite can continue to claim the -** ability to generate new database files that are compatible with version -** 3.0.0. -**

    Note that when the SQLITE_DBCONFIG_LEGACY_FILE_FORMAT setting is on, -** the [VACUUM] command will fail with an obscure error when attempting to -** process a table with generated columns and a descending index. This is -** not considered a bug since SQLite versions 3.3.0 and earlier do not support -** either generated columns or decending indexes. -**

    -**
    -*/ -#define SQLITE_DBCONFIG_MAINDBNAME 1000 /* const char* */ -#define SQLITE_DBCONFIG_LOOKASIDE 1001 /* void* int int */ -#define SQLITE_DBCONFIG_ENABLE_FKEY 1002 /* int int* */ -#define SQLITE_DBCONFIG_ENABLE_TRIGGER 1003 /* int int* */ -#define SQLITE_DBCONFIG_ENABLE_FTS3_TOKENIZER 1004 /* int int* */ -#define SQLITE_DBCONFIG_ENABLE_LOAD_EXTENSION 1005 /* int int* */ -#define SQLITE_DBCONFIG_NO_CKPT_ON_CLOSE 1006 /* int int* */ -#define SQLITE_DBCONFIG_ENABLE_QPSG 1007 /* int int* */ -#define SQLITE_DBCONFIG_TRIGGER_EQP 1008 /* int int* */ -#define SQLITE_DBCONFIG_RESET_DATABASE 1009 /* int int* */ -#define SQLITE_DBCONFIG_DEFENSIVE 1010 /* int int* */ -#define SQLITE_DBCONFIG_WRITABLE_SCHEMA 1011 /* int int* */ -#define SQLITE_DBCONFIG_LEGACY_ALTER_TABLE 1012 /* int int* */ -#define SQLITE_DBCONFIG_DQS_DML 1013 /* int int* */ -#define SQLITE_DBCONFIG_DQS_DDL 1014 /* int int* */ -#define SQLITE_DBCONFIG_ENABLE_VIEW 1015 /* int int* */ -#define SQLITE_DBCONFIG_LEGACY_FILE_FORMAT 1016 /* int int* */ -#define SQLITE_DBCONFIG_TRUSTED_SCHEMA 1017 /* int int* */ -#define SQLITE_DBCONFIG_MAX 1017 /* Largest DBCONFIG */ - -/* -** CAPI3REF: Enable Or Disable Extended Result Codes -** METHOD: sqlite3 -** -** ^The sqlite3_extended_result_codes() routine enables or disables the -** [extended result codes] feature of SQLite. ^The extended result -** codes are disabled by default for historical compatibility. -*/ -SQLITE_API int sqlite3_extended_result_codes(sqlite3*, int onoff); - -/* -** CAPI3REF: Last Insert Rowid -** METHOD: sqlite3 -** -** ^Each entry in most SQLite tables (except for [WITHOUT ROWID] tables) -** has a unique 64-bit signed -** integer key called the [ROWID | "rowid"]. ^The rowid is always available -** as an undeclared column named ROWID, OID, or _ROWID_ as long as those -** names are not also used by explicitly declared columns. ^If -** the table has a column of type [INTEGER PRIMARY KEY] then that column -** is another alias for the rowid. -** -** ^The sqlite3_last_insert_rowid(D) interface usually returns the [rowid] of -** the most recent successful [INSERT] into a rowid table or [virtual table] -** on database connection D. ^Inserts into [WITHOUT ROWID] tables are not -** recorded. ^If no successful [INSERT]s into rowid tables have ever occurred -** on the database connection D, then sqlite3_last_insert_rowid(D) returns -** zero. -** -** As well as being set automatically as rows are inserted into database -** tables, the value returned by this function may be set explicitly by -** [sqlite3_set_last_insert_rowid()] -** -** Some virtual table implementations may INSERT rows into rowid tables as -** part of committing a transaction (e.g. to flush data accumulated in memory -** to disk). In this case subsequent calls to this function return the rowid -** associated with these internal INSERT operations, which leads to -** unintuitive results. Virtual table implementations that do write to rowid -** tables in this way can avoid this problem by restoring the original -** rowid value using [sqlite3_set_last_insert_rowid()] before returning -** control to the user. -** -** ^(If an [INSERT] occurs within a trigger then this routine will -** return the [rowid] of the inserted row as long as the trigger is -** running. Once the trigger program ends, the value returned -** by this routine reverts to what it was before the trigger was fired.)^ -** -** ^An [INSERT] that fails due to a constraint violation is not a -** successful [INSERT] and does not change the value returned by this -** routine. ^Thus INSERT OR FAIL, INSERT OR IGNORE, INSERT OR ROLLBACK, -** and INSERT OR ABORT make no changes to the return value of this -** routine when their insertion fails. ^(When INSERT OR REPLACE -** encounters a constraint violation, it does not fail. The -** INSERT continues to completion after deleting rows that caused -** the constraint problem so INSERT OR REPLACE will always change -** the return value of this interface.)^ -** -** ^For the purposes of this routine, an [INSERT] is considered to -** be successful even if it is subsequently rolled back. -** -** This function is accessible to SQL statements via the -** [last_insert_rowid() SQL function]. -** -** If a separate thread performs a new [INSERT] on the same -** database connection while the [sqlite3_last_insert_rowid()] -** function is running and thus changes the last insert [rowid], -** then the value returned by [sqlite3_last_insert_rowid()] is -** unpredictable and might not equal either the old or the new -** last insert [rowid]. -*/ -SQLITE_API sqlite3_int64 sqlite3_last_insert_rowid(sqlite3*); - -/* -** CAPI3REF: Set the Last Insert Rowid value. -** METHOD: sqlite3 -** -** The sqlite3_set_last_insert_rowid(D, R) method allows the application to -** set the value returned by calling sqlite3_last_insert_rowid(D) to R -** without inserting a row into the database. -*/ -SQLITE_API void sqlite3_set_last_insert_rowid(sqlite3*,sqlite3_int64); - -/* -** CAPI3REF: Count The Number Of Rows Modified -** METHOD: sqlite3 -** -** ^These functions return the number of rows modified, inserted or -** deleted by the most recently completed INSERT, UPDATE or DELETE -** statement on the database connection specified by the only parameter. -** The two functions are identical except for the type of the return value -** and that if the number of rows modified by the most recent INSERT, UPDATE -** or DELETE is greater than the maximum value supported by type "int", then -** the return value of sqlite3_changes() is undefined. ^Executing any other -** type of SQL statement does not modify the value returned by these functions. -** -** ^Only changes made directly by the INSERT, UPDATE or DELETE statement are -** considered - auxiliary changes caused by [CREATE TRIGGER | triggers], -** [foreign key actions] or [REPLACE] constraint resolution are not counted. -** -** Changes to a view that are intercepted by -** [INSTEAD OF trigger | INSTEAD OF triggers] are not counted. ^The value -** returned by sqlite3_changes() immediately after an INSERT, UPDATE or -** DELETE statement run on a view is always zero. Only changes made to real -** tables are counted. -** -** Things are more complicated if the sqlite3_changes() function is -** executed while a trigger program is running. This may happen if the -** program uses the [changes() SQL function], or if some other callback -** function invokes sqlite3_changes() directly. Essentially: -** -**
      -**
    • ^(Before entering a trigger program the value returned by -** sqlite3_changes() function is saved. After the trigger program -** has finished, the original value is restored.)^ -** -**
    • ^(Within a trigger program each INSERT, UPDATE and DELETE -** statement sets the value returned by sqlite3_changes() -** upon completion as normal. Of course, this value will not include -** any changes performed by sub-triggers, as the sqlite3_changes() -** value will be saved and restored after each sub-trigger has run.)^ -**
    -** -** ^This means that if the changes() SQL function (or similar) is used -** by the first INSERT, UPDATE or DELETE statement within a trigger, it -** returns the value as set when the calling statement began executing. -** ^If it is used by the second or subsequent such statement within a trigger -** program, the value returned reflects the number of rows modified by the -** previous INSERT, UPDATE or DELETE statement within the same trigger. -** -** If a separate thread makes changes on the same database connection -** while [sqlite3_changes()] is running then the value returned -** is unpredictable and not meaningful. -** -** See also: -**
      -**
    • the [sqlite3_total_changes()] interface -**
    • the [count_changes pragma] -**
    • the [changes() SQL function] -**
    • the [data_version pragma] -**
    -*/ -SQLITE_API int sqlite3_changes(sqlite3*); -SQLITE_API sqlite3_int64 sqlite3_changes64(sqlite3*); - -/* -** CAPI3REF: Total Number Of Rows Modified -** METHOD: sqlite3 -** -** ^These functions return the total number of rows inserted, modified or -** deleted by all [INSERT], [UPDATE] or [DELETE] statements completed -** since the database connection was opened, including those executed as -** part of trigger programs. The two functions are identical except for the -** type of the return value and that if the number of rows modified by the -** connection exceeds the maximum value supported by type "int", then -** the return value of sqlite3_total_changes() is undefined. ^Executing -** any other type of SQL statement does not affect the value returned by -** sqlite3_total_changes(). -** -** ^Changes made as part of [foreign key actions] are included in the -** count, but those made as part of REPLACE constraint resolution are -** not. ^Changes to a view that are intercepted by INSTEAD OF triggers -** are not counted. -** -** The [sqlite3_total_changes(D)] interface only reports the number -** of rows that changed due to SQL statement run against database -** connection D. Any changes by other database connections are ignored. -** To detect changes against a database file from other database -** connections use the [PRAGMA data_version] command or the -** [SQLITE_FCNTL_DATA_VERSION] [file control]. -** -** If a separate thread makes changes on the same database connection -** while [sqlite3_total_changes()] is running then the value -** returned is unpredictable and not meaningful. -** -** See also: -**
      -**
    • the [sqlite3_changes()] interface -**
    • the [count_changes pragma] -**
    • the [changes() SQL function] -**
    • the [data_version pragma] -**
    • the [SQLITE_FCNTL_DATA_VERSION] [file control] -**
    -*/ -SQLITE_API int sqlite3_total_changes(sqlite3*); -SQLITE_API sqlite3_int64 sqlite3_total_changes64(sqlite3*); - -/* -** CAPI3REF: Interrupt A Long-Running Query -** METHOD: sqlite3 -** -** ^This function causes any pending database operation to abort and -** return at its earliest opportunity. This routine is typically -** called in response to a user action such as pressing "Cancel" -** or Ctrl-C where the user wants a long query operation to halt -** immediately. -** -** ^It is safe to call this routine from a thread different from the -** thread that is currently running the database operation. But it -** is not safe to call this routine with a [database connection] that -** is closed or might close before sqlite3_interrupt() returns. -** -** ^If an SQL operation is very nearly finished at the time when -** sqlite3_interrupt() is called, then it might not have an opportunity -** to be interrupted and might continue to completion. -** -** ^An SQL operation that is interrupted will return [SQLITE_INTERRUPT]. -** ^If the interrupted SQL operation is an INSERT, UPDATE, or DELETE -** that is inside an explicit transaction, then the entire transaction -** will be rolled back automatically. -** -** ^The sqlite3_interrupt(D) call is in effect until all currently running -** SQL statements on [database connection] D complete. ^Any new SQL statements -** that are started after the sqlite3_interrupt() call and before the -** running statement count reaches zero are interrupted as if they had been -** running prior to the sqlite3_interrupt() call. ^New SQL statements -** that are started after the running statement count reaches zero are -** not effected by the sqlite3_interrupt(). -** ^A call to sqlite3_interrupt(D) that occurs when there are no running -** SQL statements is a no-op and has no effect on SQL statements -** that are started after the sqlite3_interrupt() call returns. -*/ -SQLITE_API void sqlite3_interrupt(sqlite3*); - -/* -** CAPI3REF: Determine If An SQL Statement Is Complete -** -** These routines are useful during command-line input to determine if the -** currently entered text seems to form a complete SQL statement or -** if additional input is needed before sending the text into -** SQLite for parsing. ^These routines return 1 if the input string -** appears to be a complete SQL statement. ^A statement is judged to be -** complete if it ends with a semicolon token and is not a prefix of a -** well-formed CREATE TRIGGER statement. ^Semicolons that are embedded within -** string literals or quoted identifier names or comments are not -** independent tokens (they are part of the token in which they are -** embedded) and thus do not count as a statement terminator. ^Whitespace -** and comments that follow the final semicolon are ignored. -** -** ^These routines return 0 if the statement is incomplete. ^If a -** memory allocation fails, then SQLITE_NOMEM is returned. -** -** ^These routines do not parse the SQL statements thus -** will not detect syntactically incorrect SQL. -** -** ^(If SQLite has not been initialized using [sqlite3_initialize()] prior -** to invoking sqlite3_complete16() then sqlite3_initialize() is invoked -** automatically by sqlite3_complete16(). If that initialization fails, -** then the return value from sqlite3_complete16() will be non-zero -** regardless of whether or not the input SQL is complete.)^ -** -** The input to [sqlite3_complete()] must be a zero-terminated -** UTF-8 string. -** -** The input to [sqlite3_complete16()] must be a zero-terminated -** UTF-16 string in native byte order. -*/ -SQLITE_API int sqlite3_complete(const char *sql); -SQLITE_API int sqlite3_complete16(const void *sql); - -/* -** CAPI3REF: Register A Callback To Handle SQLITE_BUSY Errors -** KEYWORDS: {busy-handler callback} {busy handler} -** METHOD: sqlite3 -** -** ^The sqlite3_busy_handler(D,X,P) routine sets a callback function X -** that might be invoked with argument P whenever -** an attempt is made to access a database table associated with -** [database connection] D when another thread -** or process has the table locked. -** The sqlite3_busy_handler() interface is used to implement -** [sqlite3_busy_timeout()] and [PRAGMA busy_timeout]. -** -** ^If the busy callback is NULL, then [SQLITE_BUSY] -** is returned immediately upon encountering the lock. ^If the busy callback -** is not NULL, then the callback might be invoked with two arguments. -** -** ^The first argument to the busy handler is a copy of the void* pointer which -** is the third argument to sqlite3_busy_handler(). ^The second argument to -** the busy handler callback is the number of times that the busy handler has -** been invoked previously for the same locking event. ^If the -** busy callback returns 0, then no additional attempts are made to -** access the database and [SQLITE_BUSY] is returned -** to the application. -** ^If the callback returns non-zero, then another attempt -** is made to access the database and the cycle repeats. -** -** The presence of a busy handler does not guarantee that it will be invoked -** when there is lock contention. ^If SQLite determines that invoking the busy -** handler could result in a deadlock, it will go ahead and return [SQLITE_BUSY] -** to the application instead of invoking the -** busy handler. -** Consider a scenario where one process is holding a read lock that -** it is trying to promote to a reserved lock and -** a second process is holding a reserved lock that it is trying -** to promote to an exclusive lock. The first process cannot proceed -** because it is blocked by the second and the second process cannot -** proceed because it is blocked by the first. If both processes -** invoke the busy handlers, neither will make any progress. Therefore, -** SQLite returns [SQLITE_BUSY] for the first process, hoping that this -** will induce the first process to release its read lock and allow -** the second process to proceed. -** -** ^The default busy callback is NULL. -** -** ^(There can only be a single busy handler defined for each -** [database connection]. Setting a new busy handler clears any -** previously set handler.)^ ^Note that calling [sqlite3_busy_timeout()] -** or evaluating [PRAGMA busy_timeout=N] will change the -** busy handler and thus clear any previously set busy handler. -** -** The busy callback should not take any actions which modify the -** database connection that invoked the busy handler. In other words, -** the busy handler is not reentrant. Any such actions -** result in undefined behavior. -** -** A busy handler must not close the database connection -** or [prepared statement] that invoked the busy handler. -*/ -SQLITE_API int sqlite3_busy_handler(sqlite3*,int(*)(void*,int),void*); - -/* -** CAPI3REF: Set A Busy Timeout -** METHOD: sqlite3 -** -** ^This routine sets a [sqlite3_busy_handler | busy handler] that sleeps -** for a specified amount of time when a table is locked. ^The handler -** will sleep multiple times until at least "ms" milliseconds of sleeping -** have accumulated. ^After at least "ms" milliseconds of sleeping, -** the handler returns 0 which causes [sqlite3_step()] to return -** [SQLITE_BUSY]. -** -** ^Calling this routine with an argument less than or equal to zero -** turns off all busy handlers. -** -** ^(There can only be a single busy handler for a particular -** [database connection] at any given moment. If another busy handler -** was defined (using [sqlite3_busy_handler()]) prior to calling -** this routine, that other busy handler is cleared.)^ -** -** See also: [PRAGMA busy_timeout] -*/ -SQLITE_API int sqlite3_busy_timeout(sqlite3*, int ms); - -/* -** CAPI3REF: Convenience Routines For Running Queries -** METHOD: sqlite3 -** -** This is a legacy interface that is preserved for backwards compatibility. -** Use of this interface is not recommended. -** -** Definition: A result table is memory data structure created by the -** [sqlite3_get_table()] interface. A result table records the -** complete query results from one or more queries. -** -** The table conceptually has a number of rows and columns. But -** these numbers are not part of the result table itself. These -** numbers are obtained separately. Let N be the number of rows -** and M be the number of columns. -** -** A result table is an array of pointers to zero-terminated UTF-8 strings. -** There are (N+1)*M elements in the array. The first M pointers point -** to zero-terminated strings that contain the names of the columns. -** The remaining entries all point to query results. NULL values result -** in NULL pointers. All other values are in their UTF-8 zero-terminated -** string representation as returned by [sqlite3_column_text()]. -** -** A result table might consist of one or more memory allocations. -** It is not safe to pass a result table directly to [sqlite3_free()]. -** A result table should be deallocated using [sqlite3_free_table()]. -** -** ^(As an example of the result table format, suppose a query result -** is as follows: -** -**
    -**        Name        | Age
    -**        -----------------------
    -**        Alice       | 43
    -**        Bob         | 28
    -**        Cindy       | 21
    -** 
    -** -** There are two columns (M==2) and three rows (N==3). Thus the -** result table has 8 entries. Suppose the result table is stored -** in an array named azResult. Then azResult holds this content: -** -**
    -**        azResult[0] = "Name";
    -**        azResult[1] = "Age";
    -**        azResult[2] = "Alice";
    -**        azResult[3] = "43";
    -**        azResult[4] = "Bob";
    -**        azResult[5] = "28";
    -**        azResult[6] = "Cindy";
    -**        azResult[7] = "21";
    -** 
    )^ -** -** ^The sqlite3_get_table() function evaluates one or more -** semicolon-separated SQL statements in the zero-terminated UTF-8 -** string of its 2nd parameter and returns a result table to the -** pointer given in its 3rd parameter. -** -** After the application has finished with the result from sqlite3_get_table(), -** it must pass the result table pointer to sqlite3_free_table() in order to -** release the memory that was malloced. Because of the way the -** [sqlite3_malloc()] happens within sqlite3_get_table(), the calling -** function must not try to call [sqlite3_free()] directly. Only -** [sqlite3_free_table()] is able to release the memory properly and safely. -** -** The sqlite3_get_table() interface is implemented as a wrapper around -** [sqlite3_exec()]. The sqlite3_get_table() routine does not have access -** to any internal data structures of SQLite. It uses only the public -** interface defined here. As a consequence, errors that occur in the -** wrapper layer outside of the internal [sqlite3_exec()] call are not -** reflected in subsequent calls to [sqlite3_errcode()] or -** [sqlite3_errmsg()]. -*/ -SQLITE_API int sqlite3_get_table( - sqlite3 *db, /* An open database */ - const char *zSql, /* SQL to be evaluated */ - char ***pazResult, /* Results of the query */ - int *pnRow, /* Number of result rows written here */ - int *pnColumn, /* Number of result columns written here */ - char **pzErrmsg /* Error msg written here */ -); -SQLITE_API void sqlite3_free_table(char **result); - -/* -** CAPI3REF: Formatted String Printing Functions -** -** These routines are work-alikes of the "printf()" family of functions -** from the standard C library. -** These routines understand most of the common formatting options from -** the standard library printf() -** plus some additional non-standard formats ([%q], [%Q], [%w], and [%z]). -** See the [built-in printf()] documentation for details. -** -** ^The sqlite3_mprintf() and sqlite3_vmprintf() routines write their -** results into memory obtained from [sqlite3_malloc64()]. -** The strings returned by these two routines should be -** released by [sqlite3_free()]. ^Both routines return a -** NULL pointer if [sqlite3_malloc64()] is unable to allocate enough -** memory to hold the resulting string. -** -** ^(The sqlite3_snprintf() routine is similar to "snprintf()" from -** the standard C library. The result is written into the -** buffer supplied as the second parameter whose size is given by -** the first parameter. Note that the order of the -** first two parameters is reversed from snprintf().)^ This is an -** historical accident that cannot be fixed without breaking -** backwards compatibility. ^(Note also that sqlite3_snprintf() -** returns a pointer to its buffer instead of the number of -** characters actually written into the buffer.)^ We admit that -** the number of characters written would be a more useful return -** value but we cannot change the implementation of sqlite3_snprintf() -** now without breaking compatibility. -** -** ^As long as the buffer size is greater than zero, sqlite3_snprintf() -** guarantees that the buffer is always zero-terminated. ^The first -** parameter "n" is the total size of the buffer, including space for -** the zero terminator. So the longest string that can be completely -** written will be n-1 characters. -** -** ^The sqlite3_vsnprintf() routine is a varargs version of sqlite3_snprintf(). -** -** See also: [built-in printf()], [printf() SQL function] -*/ -SQLITE_API char *sqlite3_mprintf(const char*,...); -SQLITE_API char *sqlite3_vmprintf(const char*, va_list); -SQLITE_API char *sqlite3_snprintf(int,char*,const char*, ...); -SQLITE_API char *sqlite3_vsnprintf(int,char*,const char*, va_list); - -/* -** CAPI3REF: Memory Allocation Subsystem -** -** The SQLite core uses these three routines for all of its own -** internal memory allocation needs. "Core" in the previous sentence -** does not include operating-system specific [VFS] implementation. The -** Windows VFS uses native malloc() and free() for some operations. -** -** ^The sqlite3_malloc() routine returns a pointer to a block -** of memory at least N bytes in length, where N is the parameter. -** ^If sqlite3_malloc() is unable to obtain sufficient free -** memory, it returns a NULL pointer. ^If the parameter N to -** sqlite3_malloc() is zero or negative then sqlite3_malloc() returns -** a NULL pointer. -** -** ^The sqlite3_malloc64(N) routine works just like -** sqlite3_malloc(N) except that N is an unsigned 64-bit integer instead -** of a signed 32-bit integer. -** -** ^Calling sqlite3_free() with a pointer previously returned -** by sqlite3_malloc() or sqlite3_realloc() releases that memory so -** that it might be reused. ^The sqlite3_free() routine is -** a no-op if is called with a NULL pointer. Passing a NULL pointer -** to sqlite3_free() is harmless. After being freed, memory -** should neither be read nor written. Even reading previously freed -** memory might result in a segmentation fault or other severe error. -** Memory corruption, a segmentation fault, or other severe error -** might result if sqlite3_free() is called with a non-NULL pointer that -** was not obtained from sqlite3_malloc() or sqlite3_realloc(). -** -** ^The sqlite3_realloc(X,N) interface attempts to resize a -** prior memory allocation X to be at least N bytes. -** ^If the X parameter to sqlite3_realloc(X,N) -** is a NULL pointer then its behavior is identical to calling -** sqlite3_malloc(N). -** ^If the N parameter to sqlite3_realloc(X,N) is zero or -** negative then the behavior is exactly the same as calling -** sqlite3_free(X). -** ^sqlite3_realloc(X,N) returns a pointer to a memory allocation -** of at least N bytes in size or NULL if insufficient memory is available. -** ^If M is the size of the prior allocation, then min(N,M) bytes -** of the prior allocation are copied into the beginning of buffer returned -** by sqlite3_realloc(X,N) and the prior allocation is freed. -** ^If sqlite3_realloc(X,N) returns NULL and N is positive, then the -** prior allocation is not freed. -** -** ^The sqlite3_realloc64(X,N) interfaces works the same as -** sqlite3_realloc(X,N) except that N is a 64-bit unsigned integer instead -** of a 32-bit signed integer. -** -** ^If X is a memory allocation previously obtained from sqlite3_malloc(), -** sqlite3_malloc64(), sqlite3_realloc(), or sqlite3_realloc64(), then -** sqlite3_msize(X) returns the size of that memory allocation in bytes. -** ^The value returned by sqlite3_msize(X) might be larger than the number -** of bytes requested when X was allocated. ^If X is a NULL pointer then -** sqlite3_msize(X) returns zero. If X points to something that is not -** the beginning of memory allocation, or if it points to a formerly -** valid memory allocation that has now been freed, then the behavior -** of sqlite3_msize(X) is undefined and possibly harmful. -** -** ^The memory returned by sqlite3_malloc(), sqlite3_realloc(), -** sqlite3_malloc64(), and sqlite3_realloc64() -** is always aligned to at least an 8 byte boundary, or to a -** 4 byte boundary if the [SQLITE_4_BYTE_ALIGNED_MALLOC] compile-time -** option is used. -** -** The pointer arguments to [sqlite3_free()] and [sqlite3_realloc()] -** must be either NULL or else pointers obtained from a prior -** invocation of [sqlite3_malloc()] or [sqlite3_realloc()] that have -** not yet been released. -** -** The application must not read or write any part of -** a block of memory after it has been released using -** [sqlite3_free()] or [sqlite3_realloc()]. -*/ -SQLITE_API void *sqlite3_malloc(int); -SQLITE_API void *sqlite3_malloc64(sqlite3_uint64); -SQLITE_API void *sqlite3_realloc(void*, int); -SQLITE_API void *sqlite3_realloc64(void*, sqlite3_uint64); -SQLITE_API void sqlite3_free(void*); -SQLITE_API sqlite3_uint64 sqlite3_msize(void*); - -/* -** CAPI3REF: Memory Allocator Statistics -** -** SQLite provides these two interfaces for reporting on the status -** of the [sqlite3_malloc()], [sqlite3_free()], and [sqlite3_realloc()] -** routines, which form the built-in memory allocation subsystem. -** -** ^The [sqlite3_memory_used()] routine returns the number of bytes -** of memory currently outstanding (malloced but not freed). -** ^The [sqlite3_memory_highwater()] routine returns the maximum -** value of [sqlite3_memory_used()] since the high-water mark -** was last reset. ^The values returned by [sqlite3_memory_used()] and -** [sqlite3_memory_highwater()] include any overhead -** added by SQLite in its implementation of [sqlite3_malloc()], -** but not overhead added by the any underlying system library -** routines that [sqlite3_malloc()] may call. -** -** ^The memory high-water mark is reset to the current value of -** [sqlite3_memory_used()] if and only if the parameter to -** [sqlite3_memory_highwater()] is true. ^The value returned -** by [sqlite3_memory_highwater(1)] is the high-water mark -** prior to the reset. -*/ -SQLITE_API sqlite3_int64 sqlite3_memory_used(void); -SQLITE_API sqlite3_int64 sqlite3_memory_highwater(int resetFlag); - -/* -** CAPI3REF: Pseudo-Random Number Generator -** -** SQLite contains a high-quality pseudo-random number generator (PRNG) used to -** select random [ROWID | ROWIDs] when inserting new records into a table that -** already uses the largest possible [ROWID]. The PRNG is also used for -** the built-in random() and randomblob() SQL functions. This interface allows -** applications to access the same PRNG for other purposes. -** -** ^A call to this routine stores N bytes of randomness into buffer P. -** ^The P parameter can be a NULL pointer. -** -** ^If this routine has not been previously called or if the previous -** call had N less than one or a NULL pointer for P, then the PRNG is -** seeded using randomness obtained from the xRandomness method of -** the default [sqlite3_vfs] object. -** ^If the previous call to this routine had an N of 1 or more and a -** non-NULL P then the pseudo-randomness is generated -** internally and without recourse to the [sqlite3_vfs] xRandomness -** method. -*/ -SQLITE_API void sqlite3_randomness(int N, void *P); - -/* -** CAPI3REF: Compile-Time Authorization Callbacks -** METHOD: sqlite3 -** KEYWORDS: {authorizer callback} -** -** ^This routine registers an authorizer callback with a particular -** [database connection], supplied in the first argument. -** ^The authorizer callback is invoked as SQL statements are being compiled -** by [sqlite3_prepare()] or its variants [sqlite3_prepare_v2()], -** [sqlite3_prepare_v3()], [sqlite3_prepare16()], [sqlite3_prepare16_v2()], -** and [sqlite3_prepare16_v3()]. ^At various -** points during the compilation process, as logic is being created -** to perform various actions, the authorizer callback is invoked to -** see if those actions are allowed. ^The authorizer callback should -** return [SQLITE_OK] to allow the action, [SQLITE_IGNORE] to disallow the -** specific action but allow the SQL statement to continue to be -** compiled, or [SQLITE_DENY] to cause the entire SQL statement to be -** rejected with an error. ^If the authorizer callback returns -** any value other than [SQLITE_IGNORE], [SQLITE_OK], or [SQLITE_DENY] -** then the [sqlite3_prepare_v2()] or equivalent call that triggered -** the authorizer will fail with an error message. -** -** When the callback returns [SQLITE_OK], that means the operation -** requested is ok. ^When the callback returns [SQLITE_DENY], the -** [sqlite3_prepare_v2()] or equivalent call that triggered the -** authorizer will fail with an error message explaining that -** access is denied. -** -** ^The first parameter to the authorizer callback is a copy of the third -** parameter to the sqlite3_set_authorizer() interface. ^The second parameter -** to the callback is an integer [SQLITE_COPY | action code] that specifies -** the particular action to be authorized. ^The third through sixth parameters -** to the callback are either NULL pointers or zero-terminated strings -** that contain additional details about the action to be authorized. -** Applications must always be prepared to encounter a NULL pointer in any -** of the third through the sixth parameters of the authorization callback. -** -** ^If the action code is [SQLITE_READ] -** and the callback returns [SQLITE_IGNORE] then the -** [prepared statement] statement is constructed to substitute -** a NULL value in place of the table column that would have -** been read if [SQLITE_OK] had been returned. The [SQLITE_IGNORE] -** return can be used to deny an untrusted user access to individual -** columns of a table. -** ^When a table is referenced by a [SELECT] but no column values are -** extracted from that table (for example in a query like -** "SELECT count(*) FROM tab") then the [SQLITE_READ] authorizer callback -** is invoked once for that table with a column name that is an empty string. -** ^If the action code is [SQLITE_DELETE] and the callback returns -** [SQLITE_IGNORE] then the [DELETE] operation proceeds but the -** [truncate optimization] is disabled and all rows are deleted individually. -** -** An authorizer is used when [sqlite3_prepare | preparing] -** SQL statements from an untrusted source, to ensure that the SQL statements -** do not try to access data they are not allowed to see, or that they do not -** try to execute malicious statements that damage the database. For -** example, an application may allow a user to enter arbitrary -** SQL queries for evaluation by a database. But the application does -** not want the user to be able to make arbitrary changes to the -** database. An authorizer could then be put in place while the -** user-entered SQL is being [sqlite3_prepare | prepared] that -** disallows everything except [SELECT] statements. -** -** Applications that need to process SQL from untrusted sources -** might also consider lowering resource limits using [sqlite3_limit()] -** and limiting database size using the [max_page_count] [PRAGMA] -** in addition to using an authorizer. -** -** ^(Only a single authorizer can be in place on a database connection -** at a time. Each call to sqlite3_set_authorizer overrides the -** previous call.)^ ^Disable the authorizer by installing a NULL callback. -** The authorizer is disabled by default. -** -** The authorizer callback must not do anything that will modify -** the database connection that invoked the authorizer callback. -** Note that [sqlite3_prepare_v2()] and [sqlite3_step()] both modify their -** database connections for the meaning of "modify" in this paragraph. -** -** ^When [sqlite3_prepare_v2()] is used to prepare a statement, the -** statement might be re-prepared during [sqlite3_step()] due to a -** schema change. Hence, the application should ensure that the -** correct authorizer callback remains in place during the [sqlite3_step()]. -** -** ^Note that the authorizer callback is invoked only during -** [sqlite3_prepare()] or its variants. Authorization is not -** performed during statement evaluation in [sqlite3_step()], unless -** as stated in the previous paragraph, sqlite3_step() invokes -** sqlite3_prepare_v2() to reprepare a statement after a schema change. -*/ -SQLITE_API int sqlite3_set_authorizer( - sqlite3*, - int (*xAuth)(void*,int,const char*,const char*,const char*,const char*), - void *pUserData -); - -/* -** CAPI3REF: Authorizer Return Codes -** -** The [sqlite3_set_authorizer | authorizer callback function] must -** return either [SQLITE_OK] or one of these two constants in order -** to signal SQLite whether or not the action is permitted. See the -** [sqlite3_set_authorizer | authorizer documentation] for additional -** information. -** -** Note that SQLITE_IGNORE is also used as a [conflict resolution mode] -** returned from the [sqlite3_vtab_on_conflict()] interface. -*/ -#define SQLITE_DENY 1 /* Abort the SQL statement with an error */ -#define SQLITE_IGNORE 2 /* Don't allow access, but don't generate an error */ - -/* -** CAPI3REF: Authorizer Action Codes -** -** The [sqlite3_set_authorizer()] interface registers a callback function -** that is invoked to authorize certain SQL statement actions. The -** second parameter to the callback is an integer code that specifies -** what action is being authorized. These are the integer action codes that -** the authorizer callback may be passed. -** -** These action code values signify what kind of operation is to be -** authorized. The 3rd and 4th parameters to the authorization -** callback function will be parameters or NULL depending on which of these -** codes is used as the second parameter. ^(The 5th parameter to the -** authorizer callback is the name of the database ("main", "temp", -** etc.) if applicable.)^ ^The 6th parameter to the authorizer callback -** is the name of the inner-most trigger or view that is responsible for -** the access attempt or NULL if this access attempt is directly from -** top-level SQL code. -*/ -/******************************************* 3rd ************ 4th ***********/ -#define SQLITE_CREATE_INDEX 1 /* Index Name Table Name */ -#define SQLITE_CREATE_TABLE 2 /* Table Name NULL */ -#define SQLITE_CREATE_TEMP_INDEX 3 /* Index Name Table Name */ -#define SQLITE_CREATE_TEMP_TABLE 4 /* Table Name NULL */ -#define SQLITE_CREATE_TEMP_TRIGGER 5 /* Trigger Name Table Name */ -#define SQLITE_CREATE_TEMP_VIEW 6 /* View Name NULL */ -#define SQLITE_CREATE_TRIGGER 7 /* Trigger Name Table Name */ -#define SQLITE_CREATE_VIEW 8 /* View Name NULL */ -#define SQLITE_DELETE 9 /* Table Name NULL */ -#define SQLITE_DROP_INDEX 10 /* Index Name Table Name */ -#define SQLITE_DROP_TABLE 11 /* Table Name NULL */ -#define SQLITE_DROP_TEMP_INDEX 12 /* Index Name Table Name */ -#define SQLITE_DROP_TEMP_TABLE 13 /* Table Name NULL */ -#define SQLITE_DROP_TEMP_TRIGGER 14 /* Trigger Name Table Name */ -#define SQLITE_DROP_TEMP_VIEW 15 /* View Name NULL */ -#define SQLITE_DROP_TRIGGER 16 /* Trigger Name Table Name */ -#define SQLITE_DROP_VIEW 17 /* View Name NULL */ -#define SQLITE_INSERT 18 /* Table Name NULL */ -#define SQLITE_PRAGMA 19 /* Pragma Name 1st arg or NULL */ -#define SQLITE_READ 20 /* Table Name Column Name */ -#define SQLITE_SELECT 21 /* NULL NULL */ -#define SQLITE_TRANSACTION 22 /* Operation NULL */ -#define SQLITE_UPDATE 23 /* Table Name Column Name */ -#define SQLITE_ATTACH 24 /* Filename NULL */ -#define SQLITE_DETACH 25 /* Database Name NULL */ -#define SQLITE_ALTER_TABLE 26 /* Database Name Table Name */ -#define SQLITE_REINDEX 27 /* Index Name NULL */ -#define SQLITE_ANALYZE 28 /* Table Name NULL */ -#define SQLITE_CREATE_VTABLE 29 /* Table Name Module Name */ -#define SQLITE_DROP_VTABLE 30 /* Table Name Module Name */ -#define SQLITE_FUNCTION 31 /* NULL Function Name */ -#define SQLITE_SAVEPOINT 32 /* Operation Savepoint Name */ -#define SQLITE_COPY 0 /* No longer used */ -#define SQLITE_RECURSIVE 33 /* NULL NULL */ - -/* -** CAPI3REF: Tracing And Profiling Functions -** METHOD: sqlite3 -** -** These routines are deprecated. Use the [sqlite3_trace_v2()] interface -** instead of the routines described here. -** -** These routines register callback functions that can be used for -** tracing and profiling the execution of SQL statements. -** -** ^The callback function registered by sqlite3_trace() is invoked at -** various times when an SQL statement is being run by [sqlite3_step()]. -** ^The sqlite3_trace() callback is invoked with a UTF-8 rendering of the -** SQL statement text as the statement first begins executing. -** ^(Additional sqlite3_trace() callbacks might occur -** as each triggered subprogram is entered. The callbacks for triggers -** contain a UTF-8 SQL comment that identifies the trigger.)^ -** -** The [SQLITE_TRACE_SIZE_LIMIT] compile-time option can be used to limit -** the length of [bound parameter] expansion in the output of sqlite3_trace(). -** -** ^The callback function registered by sqlite3_profile() is invoked -** as each SQL statement finishes. ^The profile callback contains -** the original statement text and an estimate of wall-clock time -** of how long that statement took to run. ^The profile callback -** time is in units of nanoseconds, however the current implementation -** is only capable of millisecond resolution so the six least significant -** digits in the time are meaningless. Future versions of SQLite -** might provide greater resolution on the profiler callback. Invoking -** either [sqlite3_trace()] or [sqlite3_trace_v2()] will cancel the -** profile callback. -*/ -SQLITE_API SQLITE_DEPRECATED void *sqlite3_trace(sqlite3*, - void(*xTrace)(void*,const char*), void*); -SQLITE_API SQLITE_DEPRECATED void *sqlite3_profile(sqlite3*, - void(*xProfile)(void*,const char*,sqlite3_uint64), void*); - -/* -** CAPI3REF: SQL Trace Event Codes -** KEYWORDS: SQLITE_TRACE -** -** These constants identify classes of events that can be monitored -** using the [sqlite3_trace_v2()] tracing logic. The M argument -** to [sqlite3_trace_v2(D,M,X,P)] is an OR-ed combination of one or more of -** the following constants. ^The first argument to the trace callback -** is one of the following constants. -** -** New tracing constants may be added in future releases. -** -** ^A trace callback has four arguments: xCallback(T,C,P,X). -** ^The T argument is one of the integer type codes above. -** ^The C argument is a copy of the context pointer passed in as the -** fourth argument to [sqlite3_trace_v2()]. -** The P and X arguments are pointers whose meanings depend on T. -** -**
    -** [[SQLITE_TRACE_STMT]]
    SQLITE_TRACE_STMT
    -**
    ^An SQLITE_TRACE_STMT callback is invoked when a prepared statement -** first begins running and possibly at other times during the -** execution of the prepared statement, such as at the start of each -** trigger subprogram. ^The P argument is a pointer to the -** [prepared statement]. ^The X argument is a pointer to a string which -** is the unexpanded SQL text of the prepared statement or an SQL comment -** that indicates the invocation of a trigger. ^The callback can compute -** the same text that would have been returned by the legacy [sqlite3_trace()] -** interface by using the X argument when X begins with "--" and invoking -** [sqlite3_expanded_sql(P)] otherwise. -** -** [[SQLITE_TRACE_PROFILE]]
    SQLITE_TRACE_PROFILE
    -**
    ^An SQLITE_TRACE_PROFILE callback provides approximately the same -** information as is provided by the [sqlite3_profile()] callback. -** ^The P argument is a pointer to the [prepared statement] and the -** X argument points to a 64-bit integer which is the estimated of -** the number of nanosecond that the prepared statement took to run. -** ^The SQLITE_TRACE_PROFILE callback is invoked when the statement finishes. -** -** [[SQLITE_TRACE_ROW]]
    SQLITE_TRACE_ROW
    -**
    ^An SQLITE_TRACE_ROW callback is invoked whenever a prepared -** statement generates a single row of result. -** ^The P argument is a pointer to the [prepared statement] and the -** X argument is unused. -** -** [[SQLITE_TRACE_CLOSE]]
    SQLITE_TRACE_CLOSE
    -**
    ^An SQLITE_TRACE_CLOSE callback is invoked when a database -** connection closes. -** ^The P argument is a pointer to the [database connection] object -** and the X argument is unused. -**
    -*/ -#define SQLITE_TRACE_STMT 0x01 -#define SQLITE_TRACE_PROFILE 0x02 -#define SQLITE_TRACE_ROW 0x04 -#define SQLITE_TRACE_CLOSE 0x08 - -/* -** CAPI3REF: SQL Trace Hook -** METHOD: sqlite3 -** -** ^The sqlite3_trace_v2(D,M,X,P) interface registers a trace callback -** function X against [database connection] D, using property mask M -** and context pointer P. ^If the X callback is -** NULL or if the M mask is zero, then tracing is disabled. The -** M argument should be the bitwise OR-ed combination of -** zero or more [SQLITE_TRACE] constants. -** -** ^Each call to either sqlite3_trace() or sqlite3_trace_v2() overrides -** (cancels) any prior calls to sqlite3_trace() or sqlite3_trace_v2(). -** -** ^The X callback is invoked whenever any of the events identified by -** mask M occur. ^The integer return value from the callback is currently -** ignored, though this may change in future releases. Callback -** implementations should return zero to ensure future compatibility. -** -** ^A trace callback is invoked with four arguments: callback(T,C,P,X). -** ^The T argument is one of the [SQLITE_TRACE] -** constants to indicate why the callback was invoked. -** ^The C argument is a copy of the context pointer. -** The P and X arguments are pointers whose meanings depend on T. -** -** The sqlite3_trace_v2() interface is intended to replace the legacy -** interfaces [sqlite3_trace()] and [sqlite3_profile()], both of which -** are deprecated. -*/ -SQLITE_API int sqlite3_trace_v2( - sqlite3*, - unsigned uMask, - int(*xCallback)(unsigned,void*,void*,void*), - void *pCtx -); - -/* -** CAPI3REF: Query Progress Callbacks -** METHOD: sqlite3 -** -** ^The sqlite3_progress_handler(D,N,X,P) interface causes the callback -** function X to be invoked periodically during long running calls to -** [sqlite3_exec()], [sqlite3_step()] and [sqlite3_get_table()] for -** database connection D. An example use for this -** interface is to keep a GUI updated during a large query. -** -** ^The parameter P is passed through as the only parameter to the -** callback function X. ^The parameter N is the approximate number of -** [virtual machine instructions] that are evaluated between successive -** invocations of the callback X. ^If N is less than one then the progress -** handler is disabled. -** -** ^Only a single progress handler may be defined at one time per -** [database connection]; setting a new progress handler cancels the -** old one. ^Setting parameter X to NULL disables the progress handler. -** ^The progress handler is also disabled by setting N to a value less -** than 1. -** -** ^If the progress callback returns non-zero, the operation is -** interrupted. This feature can be used to implement a -** "Cancel" button on a GUI progress dialog box. -** -** The progress handler callback must not do anything that will modify -** the database connection that invoked the progress handler. -** Note that [sqlite3_prepare_v2()] and [sqlite3_step()] both modify their -** database connections for the meaning of "modify" in this paragraph. -** -*/ -SQLITE_API void sqlite3_progress_handler(sqlite3*, int, int(*)(void*), void*); - -/* -** CAPI3REF: Opening A New Database Connection -** CONSTRUCTOR: sqlite3 -** -** ^These routines open an SQLite database file as specified by the -** filename argument. ^The filename argument is interpreted as UTF-8 for -** sqlite3_open() and sqlite3_open_v2() and as UTF-16 in the native byte -** order for sqlite3_open16(). ^(A [database connection] handle is usually -** returned in *ppDb, even if an error occurs. The only exception is that -** if SQLite is unable to allocate memory to hold the [sqlite3] object, -** a NULL will be written into *ppDb instead of a pointer to the [sqlite3] -** object.)^ ^(If the database is opened (and/or created) successfully, then -** [SQLITE_OK] is returned. Otherwise an [error code] is returned.)^ ^The -** [sqlite3_errmsg()] or [sqlite3_errmsg16()] routines can be used to obtain -** an English language description of the error following a failure of any -** of the sqlite3_open() routines. -** -** ^The default encoding will be UTF-8 for databases created using -** sqlite3_open() or sqlite3_open_v2(). ^The default encoding for databases -** created using sqlite3_open16() will be UTF-16 in the native byte order. -** -** Whether or not an error occurs when it is opened, resources -** associated with the [database connection] handle should be released by -** passing it to [sqlite3_close()] when it is no longer required. -** -** The sqlite3_open_v2() interface works like sqlite3_open() -** except that it accepts two additional parameters for additional control -** over the new database connection. ^(The flags parameter to -** sqlite3_open_v2() must include, at a minimum, one of the following -** three flag combinations:)^ -** -**
    -** ^(
    [SQLITE_OPEN_READONLY]
    -**
    The database is opened in read-only mode. If the database does not -** already exist, an error is returned.
    )^ -** -** ^(
    [SQLITE_OPEN_READWRITE]
    -**
    The database is opened for reading and writing if possible, or reading -** only if the file is write protected by the operating system. In either -** case the database must already exist, otherwise an error is returned.
    )^ -** -** ^(
    [SQLITE_OPEN_READWRITE] | [SQLITE_OPEN_CREATE]
    -**
    The database is opened for reading and writing, and is created if -** it does not already exist. This is the behavior that is always used for -** sqlite3_open() and sqlite3_open16().
    )^ -**
    -** -** In addition to the required flags, the following optional flags are -** also supported: -** -**
    -** ^(
    [SQLITE_OPEN_URI]
    -**
    The filename can be interpreted as a URI if this flag is set.
    )^ -** -** ^(
    [SQLITE_OPEN_MEMORY]
    -**
    The database will be opened as an in-memory database. The database -** is named by the "filename" argument for the purposes of cache-sharing, -** if shared cache mode is enabled, but the "filename" is otherwise ignored. -**
    )^ -** -** ^(
    [SQLITE_OPEN_NOMUTEX]
    -**
    The new database connection will use the "multi-thread" -** [threading mode].)^ This means that separate threads are allowed -** to use SQLite at the same time, as long as each thread is using -** a different [database connection]. -** -** ^(
    [SQLITE_OPEN_FULLMUTEX]
    -**
    The new database connection will use the "serialized" -** [threading mode].)^ This means the multiple threads can safely -** attempt to use the same database connection at the same time. -** (Mutexes will block any actual concurrency, but in this mode -** there is no harm in trying.) -** -** ^(
    [SQLITE_OPEN_SHAREDCACHE]
    -**
    The database is opened [shared cache] enabled, overriding -** the default shared cache setting provided by -** [sqlite3_enable_shared_cache()].)^ -** -** ^(
    [SQLITE_OPEN_PRIVATECACHE]
    -**
    The database is opened [shared cache] disabled, overriding -** the default shared cache setting provided by -** [sqlite3_enable_shared_cache()].)^ -** -** [[OPEN_EXRESCODE]] ^(
    [SQLITE_OPEN_EXRESCODE]
    -**
    The database connection comes up in "extended result code mode". -** In other words, the database behaves has if -** [sqlite3_extended_result_codes(db,1)] where called on the database -** connection as soon as the connection is created. In addition to setting -** the extended result code mode, this flag also causes [sqlite3_open_v2()] -** to return an extended result code.
    -** -** [[OPEN_NOFOLLOW]] ^(
    [SQLITE_OPEN_NOFOLLOW]
    -**
    The database filename is not allowed to be a symbolic link
    -**
    )^ -** -** If the 3rd parameter to sqlite3_open_v2() is not one of the -** required combinations shown above optionally combined with other -** [SQLITE_OPEN_READONLY | SQLITE_OPEN_* bits] -** then the behavior is undefined. Historic versions of SQLite -** have silently ignored surplus bits in the flags parameter to -** sqlite3_open_v2(), however that behavior might not be carried through -** into future versions of SQLite and so applications should not rely -** upon it. Note in particular that the SQLITE_OPEN_EXCLUSIVE flag is a no-op -** for sqlite3_open_v2(). The SQLITE_OPEN_EXCLUSIVE does *not* cause -** the open to fail if the database already exists. The SQLITE_OPEN_EXCLUSIVE -** flag is intended for use by the [sqlite3_vfs|VFS interface] only, and not -** by sqlite3_open_v2(). -** -** ^The fourth parameter to sqlite3_open_v2() is the name of the -** [sqlite3_vfs] object that defines the operating system interface that -** the new database connection should use. ^If the fourth parameter is -** a NULL pointer then the default [sqlite3_vfs] object is used. -** -** ^If the filename is ":memory:", then a private, temporary in-memory database -** is created for the connection. ^This in-memory database will vanish when -** the database connection is closed. Future versions of SQLite might -** make use of additional special filenames that begin with the ":" character. -** It is recommended that when a database filename actually does begin with -** a ":" character you should prefix the filename with a pathname such as -** "./" to avoid ambiguity. -** -** ^If the filename is an empty string, then a private, temporary -** on-disk database will be created. ^This private database will be -** automatically deleted as soon as the database connection is closed. -** -** [[URI filenames in sqlite3_open()]]

    URI Filenames

    -** -** ^If [URI filename] interpretation is enabled, and the filename argument -** begins with "file:", then the filename is interpreted as a URI. ^URI -** filename interpretation is enabled if the [SQLITE_OPEN_URI] flag is -** set in the third argument to sqlite3_open_v2(), or if it has -** been enabled globally using the [SQLITE_CONFIG_URI] option with the -** [sqlite3_config()] method or by the [SQLITE_USE_URI] compile-time option. -** URI filename interpretation is turned off -** by default, but future releases of SQLite might enable URI filename -** interpretation by default. See "[URI filenames]" for additional -** information. -** -** URI filenames are parsed according to RFC 3986. ^If the URI contains an -** authority, then it must be either an empty string or the string -** "localhost". ^If the authority is not an empty string or "localhost", an -** error is returned to the caller. ^The fragment component of a URI, if -** present, is ignored. -** -** ^SQLite uses the path component of the URI as the name of the disk file -** which contains the database. ^If the path begins with a '/' character, -** then it is interpreted as an absolute path. ^If the path does not begin -** with a '/' (meaning that the authority section is omitted from the URI) -** then the path is interpreted as a relative path. -** ^(On windows, the first component of an absolute path -** is a drive specification (e.g. "C:").)^ -** -** [[core URI query parameters]] -** The query component of a URI may contain parameters that are interpreted -** either by SQLite itself, or by a [VFS | custom VFS implementation]. -** SQLite and its built-in [VFSes] interpret the -** following query parameters: -** -**
      -**
    • vfs: ^The "vfs" parameter may be used to specify the name of -** a VFS object that provides the operating system interface that should -** be used to access the database file on disk. ^If this option is set to -** an empty string the default VFS object is used. ^Specifying an unknown -** VFS is an error. ^If sqlite3_open_v2() is used and the vfs option is -** present, then the VFS specified by the option takes precedence over -** the value passed as the fourth parameter to sqlite3_open_v2(). -** -**
    • mode: ^(The mode parameter may be set to either "ro", "rw", -** "rwc", or "memory". Attempting to set it to any other value is -** an error)^. -** ^If "ro" is specified, then the database is opened for read-only -** access, just as if the [SQLITE_OPEN_READONLY] flag had been set in the -** third argument to sqlite3_open_v2(). ^If the mode option is set to -** "rw", then the database is opened for read-write (but not create) -** access, as if SQLITE_OPEN_READWRITE (but not SQLITE_OPEN_CREATE) had -** been set. ^Value "rwc" is equivalent to setting both -** SQLITE_OPEN_READWRITE and SQLITE_OPEN_CREATE. ^If the mode option is -** set to "memory" then a pure [in-memory database] that never reads -** or writes from disk is used. ^It is an error to specify a value for -** the mode parameter that is less restrictive than that specified by -** the flags passed in the third parameter to sqlite3_open_v2(). -** -**
    • cache: ^The cache parameter may be set to either "shared" or -** "private". ^Setting it to "shared" is equivalent to setting the -** SQLITE_OPEN_SHAREDCACHE bit in the flags argument passed to -** sqlite3_open_v2(). ^Setting the cache parameter to "private" is -** equivalent to setting the SQLITE_OPEN_PRIVATECACHE bit. -** ^If sqlite3_open_v2() is used and the "cache" parameter is present in -** a URI filename, its value overrides any behavior requested by setting -** SQLITE_OPEN_PRIVATECACHE or SQLITE_OPEN_SHAREDCACHE flag. -** -**
    • psow: ^The psow parameter indicates whether or not the -** [powersafe overwrite] property does or does not apply to the -** storage media on which the database file resides. -** -**
    • nolock: ^The nolock parameter is a boolean query parameter -** which if set disables file locking in rollback journal modes. This -** is useful for accessing a database on a filesystem that does not -** support locking. Caution: Database corruption might result if two -** or more processes write to the same database and any one of those -** processes uses nolock=1. -** -**
    • immutable: ^The immutable parameter is a boolean query -** parameter that indicates that the database file is stored on -** read-only media. ^When immutable is set, SQLite assumes that the -** database file cannot be changed, even by a process with higher -** privilege, and so the database is opened read-only and all locking -** and change detection is disabled. Caution: Setting the immutable -** property on a database file that does in fact change can result -** in incorrect query results and/or [SQLITE_CORRUPT] errors. -** See also: [SQLITE_IOCAP_IMMUTABLE]. -** -**
    -** -** ^Specifying an unknown parameter in the query component of a URI is not an -** error. Future versions of SQLite might understand additional query -** parameters. See "[query parameters with special meaning to SQLite]" for -** additional information. -** -** [[URI filename examples]]

    URI filename examples

    -** -** -**
    URI filenames Results -**
    file:data.db -** Open the file "data.db" in the current directory. -**
    file:/home/fred/data.db
    -** file:///home/fred/data.db
    -** file://localhost/home/fred/data.db
    -** Open the database file "/home/fred/data.db". -**
    file://darkstar/home/fred/data.db -** An error. "darkstar" is not a recognized authority. -**
    -** file:///C:/Documents%20and%20Settings/fred/Desktop/data.db -** Windows only: Open the file "data.db" on fred's desktop on drive -** C:. Note that the %20 escaping in this example is not strictly -** necessary - space characters can be used literally -** in URI filenames. -**
    file:data.db?mode=ro&cache=private -** Open file "data.db" in the current directory for read-only access. -** Regardless of whether or not shared-cache mode is enabled by -** default, use a private cache. -**
    file:/home/fred/data.db?vfs=unix-dotfile -** Open file "/home/fred/data.db". Use the special VFS "unix-dotfile" -** that uses dot-files in place of posix advisory locking. -**
    file:data.db?mode=readonly -** An error. "readonly" is not a valid option for the "mode" parameter. -** Use "ro" instead: "file:data.db?mode=ro". -**
    -** -** ^URI hexadecimal escape sequences (%HH) are supported within the path and -** query components of a URI. A hexadecimal escape sequence consists of a -** percent sign - "%" - followed by exactly two hexadecimal digits -** specifying an octet value. ^Before the path or query components of a -** URI filename are interpreted, they are encoded using UTF-8 and all -** hexadecimal escape sequences replaced by a single byte containing the -** corresponding octet. If this process generates an invalid UTF-8 encoding, -** the results are undefined. -** -** Note to Windows users: The encoding used for the filename argument -** of sqlite3_open() and sqlite3_open_v2() must be UTF-8, not whatever -** codepage is currently defined. Filenames containing international -** characters must be converted to UTF-8 prior to passing them into -** sqlite3_open() or sqlite3_open_v2(). -** -** Note to Windows Runtime users: The temporary directory must be set -** prior to calling sqlite3_open() or sqlite3_open_v2(). Otherwise, various -** features that require the use of temporary files may fail. -** -** See also: [sqlite3_temp_directory] -*/ -SQLITE_API int sqlite3_open( - const char *filename, /* Database filename (UTF-8) */ - sqlite3 **ppDb /* OUT: SQLite db handle */ -); -SQLITE_API int sqlite3_open16( - const void *filename, /* Database filename (UTF-16) */ - sqlite3 **ppDb /* OUT: SQLite db handle */ -); -SQLITE_API int sqlite3_open_v2( - const char *filename, /* Database filename (UTF-8) */ - sqlite3 **ppDb, /* OUT: SQLite db handle */ - int flags, /* Flags */ - const char *zVfs /* Name of VFS module to use */ -); - -/* -** CAPI3REF: Obtain Values For URI Parameters -** -** These are utility routines, useful to [VFS|custom VFS implementations], -** that check if a database file was a URI that contained a specific query -** parameter, and if so obtains the value of that query parameter. -** -** The first parameter to these interfaces (hereafter referred to -** as F) must be one of: -**
      -**
    • A database filename pointer created by the SQLite core and -** passed into the xOpen() method of a VFS implemention, or -**
    • A filename obtained from [sqlite3_db_filename()], or -**
    • A new filename constructed using [sqlite3_create_filename()]. -**
    -** If the F parameter is not one of the above, then the behavior is -** undefined and probably undesirable. Older versions of SQLite were -** more tolerant of invalid F parameters than newer versions. -** -** If F is a suitable filename (as described in the previous paragraph) -** and if P is the name of the query parameter, then -** sqlite3_uri_parameter(F,P) returns the value of the P -** parameter if it exists or a NULL pointer if P does not appear as a -** query parameter on F. If P is a query parameter of F and it -** has no explicit value, then sqlite3_uri_parameter(F,P) returns -** a pointer to an empty string. -** -** The sqlite3_uri_boolean(F,P,B) routine assumes that P is a boolean -** parameter and returns true (1) or false (0) according to the value -** of P. The sqlite3_uri_boolean(F,P,B) routine returns true (1) if the -** value of query parameter P is one of "yes", "true", or "on" in any -** case or if the value begins with a non-zero number. The -** sqlite3_uri_boolean(F,P,B) routines returns false (0) if the value of -** query parameter P is one of "no", "false", or "off" in any case or -** if the value begins with a numeric zero. If P is not a query -** parameter on F or if the value of P does not match any of the -** above, then sqlite3_uri_boolean(F,P,B) returns (B!=0). -** -** The sqlite3_uri_int64(F,P,D) routine converts the value of P into a -** 64-bit signed integer and returns that integer, or D if P does not -** exist. If the value of P is something other than an integer, then -** zero is returned. -** -** The sqlite3_uri_key(F,N) returns a pointer to the name (not -** the value) of the N-th query parameter for filename F, or a NULL -** pointer if N is less than zero or greater than the number of query -** parameters minus 1. The N value is zero-based so N should be 0 to obtain -** the name of the first query parameter, 1 for the second parameter, and -** so forth. -** -** If F is a NULL pointer, then sqlite3_uri_parameter(F,P) returns NULL and -** sqlite3_uri_boolean(F,P,B) returns B. If F is not a NULL pointer and -** is not a database file pathname pointer that the SQLite core passed -** into the xOpen VFS method, then the behavior of this routine is undefined -** and probably undesirable. -** -** Beginning with SQLite [version 3.31.0] ([dateof:3.31.0]) the input F -** parameter can also be the name of a rollback journal file or WAL file -** in addition to the main database file. Prior to version 3.31.0, these -** routines would only work if F was the name of the main database file. -** When the F parameter is the name of the rollback journal or WAL file, -** it has access to all the same query parameters as were found on the -** main database file. -** -** See the [URI filename] documentation for additional information. -*/ -SQLITE_API const char *sqlite3_uri_parameter(const char *zFilename, const char *zParam); -SQLITE_API int sqlite3_uri_boolean(const char *zFile, const char *zParam, int bDefault); -SQLITE_API sqlite3_int64 sqlite3_uri_int64(const char*, const char*, sqlite3_int64); -SQLITE_API const char *sqlite3_uri_key(const char *zFilename, int N); - -/* -** CAPI3REF: Translate filenames -** -** These routines are available to [VFS|custom VFS implementations] for -** translating filenames between the main database file, the journal file, -** and the WAL file. -** -** If F is the name of an sqlite database file, journal file, or WAL file -** passed by the SQLite core into the VFS, then sqlite3_filename_database(F) -** returns the name of the corresponding database file. -** -** If F is the name of an sqlite database file, journal file, or WAL file -** passed by the SQLite core into the VFS, or if F is a database filename -** obtained from [sqlite3_db_filename()], then sqlite3_filename_journal(F) -** returns the name of the corresponding rollback journal file. -** -** If F is the name of an sqlite database file, journal file, or WAL file -** that was passed by the SQLite core into the VFS, or if F is a database -** filename obtained from [sqlite3_db_filename()], then -** sqlite3_filename_wal(F) returns the name of the corresponding -** WAL file. -** -** In all of the above, if F is not the name of a database, journal or WAL -** filename passed into the VFS from the SQLite core and F is not the -** return value from [sqlite3_db_filename()], then the result is -** undefined and is likely a memory access violation. -*/ -SQLITE_API const char *sqlite3_filename_database(const char*); -SQLITE_API const char *sqlite3_filename_journal(const char*); -SQLITE_API const char *sqlite3_filename_wal(const char*); - -/* -** CAPI3REF: Database File Corresponding To A Journal -** -** ^If X is the name of a rollback or WAL-mode journal file that is -** passed into the xOpen method of [sqlite3_vfs], then -** sqlite3_database_file_object(X) returns a pointer to the [sqlite3_file] -** object that represents the main database file. -** -** This routine is intended for use in custom [VFS] implementations -** only. It is not a general-purpose interface. -** The argument sqlite3_file_object(X) must be a filename pointer that -** has been passed into [sqlite3_vfs].xOpen method where the -** flags parameter to xOpen contains one of the bits -** [SQLITE_OPEN_MAIN_JOURNAL] or [SQLITE_OPEN_WAL]. Any other use -** of this routine results in undefined and probably undesirable -** behavior. -*/ -SQLITE_API sqlite3_file *sqlite3_database_file_object(const char*); - -/* -** CAPI3REF: Create and Destroy VFS Filenames -** -** These interfces are provided for use by [VFS shim] implementations and -** are not useful outside of that context. -** -** The sqlite3_create_filename(D,J,W,N,P) allocates memory to hold a version of -** database filename D with corresponding journal file J and WAL file W and -** with N URI parameters key/values pairs in the array P. The result from -** sqlite3_create_filename(D,J,W,N,P) is a pointer to a database filename that -** is safe to pass to routines like: -**
      -**
    • [sqlite3_uri_parameter()], -**
    • [sqlite3_uri_boolean()], -**
    • [sqlite3_uri_int64()], -**
    • [sqlite3_uri_key()], -**
    • [sqlite3_filename_database()], -**
    • [sqlite3_filename_journal()], or -**
    • [sqlite3_filename_wal()]. -**
    -** If a memory allocation error occurs, sqlite3_create_filename() might -** return a NULL pointer. The memory obtained from sqlite3_create_filename(X) -** must be released by a corresponding call to sqlite3_free_filename(Y). -** -** The P parameter in sqlite3_create_filename(D,J,W,N,P) should be an array -** of 2*N pointers to strings. Each pair of pointers in this array corresponds -** to a key and value for a query parameter. The P parameter may be a NULL -** pointer if N is zero. None of the 2*N pointers in the P array may be -** NULL pointers and key pointers should not be empty strings. -** None of the D, J, or W parameters to sqlite3_create_filename(D,J,W,N,P) may -** be NULL pointers, though they can be empty strings. -** -** The sqlite3_free_filename(Y) routine releases a memory allocation -** previously obtained from sqlite3_create_filename(). Invoking -** sqlite3_free_filename(Y) where Y is a NULL pointer is a harmless no-op. -** -** If the Y parameter to sqlite3_free_filename(Y) is anything other -** than a NULL pointer or a pointer previously acquired from -** sqlite3_create_filename(), then bad things such as heap -** corruption or segfaults may occur. The value Y should not be -** used again after sqlite3_free_filename(Y) has been called. This means -** that if the [sqlite3_vfs.xOpen()] method of a VFS has been called using Y, -** then the corresponding [sqlite3_module.xClose() method should also be -** invoked prior to calling sqlite3_free_filename(Y). -*/ -SQLITE_API char *sqlite3_create_filename( - const char *zDatabase, - const char *zJournal, - const char *zWal, - int nParam, - const char **azParam -); -SQLITE_API void sqlite3_free_filename(char*); - -/* -** CAPI3REF: Error Codes And Messages -** METHOD: sqlite3 -** -** ^If the most recent sqlite3_* API call associated with -** [database connection] D failed, then the sqlite3_errcode(D) interface -** returns the numeric [result code] or [extended result code] for that -** API call. -** ^The sqlite3_extended_errcode() -** interface is the same except that it always returns the -** [extended result code] even when extended result codes are -** disabled. -** -** The values returned by sqlite3_errcode() and/or -** sqlite3_extended_errcode() might change with each API call. -** Except, there are some interfaces that are guaranteed to never -** change the value of the error code. The error-code preserving -** interfaces include the following: -** -**
      -**
    • sqlite3_errcode() -**
    • sqlite3_extended_errcode() -**
    • sqlite3_errmsg() -**
    • sqlite3_errmsg16() -**
    • sqlite3_error_offset() -**
    -** -** ^The sqlite3_errmsg() and sqlite3_errmsg16() return English-language -** text that describes the error, as either UTF-8 or UTF-16 respectively. -** ^(Memory to hold the error message string is managed internally. -** The application does not need to worry about freeing the result. -** However, the error string might be overwritten or deallocated by -** subsequent calls to other SQLite interface functions.)^ -** -** ^The sqlite3_errstr() interface returns the English-language text -** that describes the [result code], as UTF-8. -** ^(Memory to hold the error message string is managed internally -** and must not be freed by the application)^. -** -** ^If the most recent error references a specific token in the input -** SQL, the sqlite3_error_offset() interface returns the byte offset -** of the start of that token. ^The byte offset returned by -** sqlite3_error_offset() assumes that the input SQL is UTF8. -** ^If the most recent error does not reference a specific token in the input -** SQL, then the sqlite3_error_offset() function returns -1. -** -** When the serialized [threading mode] is in use, it might be the -** case that a second error occurs on a separate thread in between -** the time of the first error and the call to these interfaces. -** When that happens, the second error will be reported since these -** interfaces always report the most recent result. To avoid -** this, each thread can obtain exclusive use of the [database connection] D -** by invoking [sqlite3_mutex_enter]([sqlite3_db_mutex](D)) before beginning -** to use D and invoking [sqlite3_mutex_leave]([sqlite3_db_mutex](D)) after -** all calls to the interfaces listed here are completed. -** -** If an interface fails with SQLITE_MISUSE, that means the interface -** was invoked incorrectly by the application. In that case, the -** error code and message may or may not be set. -*/ -SQLITE_API int sqlite3_errcode(sqlite3 *db); -SQLITE_API int sqlite3_extended_errcode(sqlite3 *db); -SQLITE_API const char *sqlite3_errmsg(sqlite3*); -SQLITE_API const void *sqlite3_errmsg16(sqlite3*); -SQLITE_API const char *sqlite3_errstr(int); -SQLITE_API int sqlite3_error_offset(sqlite3 *db); - -/* -** CAPI3REF: Prepared Statement Object -** KEYWORDS: {prepared statement} {prepared statements} -** -** An instance of this object represents a single SQL statement that -** has been compiled into binary form and is ready to be evaluated. -** -** Think of each SQL statement as a separate computer program. The -** original SQL text is source code. A prepared statement object -** is the compiled object code. All SQL must be converted into a -** prepared statement before it can be run. -** -** The life-cycle of a prepared statement object usually goes like this: -** -**
      -**
    1. Create the prepared statement object using [sqlite3_prepare_v2()]. -**
    2. Bind values to [parameters] using the sqlite3_bind_*() -** interfaces. -**
    3. Run the SQL by calling [sqlite3_step()] one or more times. -**
    4. Reset the prepared statement using [sqlite3_reset()] then go back -** to step 2. Do this zero or more times. -**
    5. Destroy the object using [sqlite3_finalize()]. -**
    -*/ -typedef struct sqlite3_stmt sqlite3_stmt; - -/* -** CAPI3REF: Run-time Limits -** METHOD: sqlite3 -** -** ^(This interface allows the size of various constructs to be limited -** on a connection by connection basis. The first parameter is the -** [database connection] whose limit is to be set or queried. The -** second parameter is one of the [limit categories] that define a -** class of constructs to be size limited. The third parameter is the -** new limit for that construct.)^ -** -** ^If the new limit is a negative number, the limit is unchanged. -** ^(For each limit category SQLITE_LIMIT_NAME there is a -** [limits | hard upper bound] -** set at compile-time by a C preprocessor macro called -** [limits | SQLITE_MAX_NAME]. -** (The "_LIMIT_" in the name is changed to "_MAX_".))^ -** ^Attempts to increase a limit above its hard upper bound are -** silently truncated to the hard upper bound. -** -** ^Regardless of whether or not the limit was changed, the -** [sqlite3_limit()] interface returns the prior value of the limit. -** ^Hence, to find the current value of a limit without changing it, -** simply invoke this interface with the third parameter set to -1. -** -** Run-time limits are intended for use in applications that manage -** both their own internal database and also databases that are controlled -** by untrusted external sources. An example application might be a -** web browser that has its own databases for storing history and -** separate databases controlled by JavaScript applications downloaded -** off the Internet. The internal databases can be given the -** large, default limits. Databases managed by external sources can -** be given much smaller limits designed to prevent a denial of service -** attack. Developers might also want to use the [sqlite3_set_authorizer()] -** interface to further control untrusted SQL. The size of the database -** created by an untrusted script can be contained using the -** [max_page_count] [PRAGMA]. -** -** New run-time limit categories may be added in future releases. -*/ -SQLITE_API int sqlite3_limit(sqlite3*, int id, int newVal); - -/* -** CAPI3REF: Run-Time Limit Categories -** KEYWORDS: {limit category} {*limit categories} -** -** These constants define various performance limits -** that can be lowered at run-time using [sqlite3_limit()]. -** The synopsis of the meanings of the various limits is shown below. -** Additional information is available at [limits | Limits in SQLite]. -** -**
    -** [[SQLITE_LIMIT_LENGTH]] ^(
    SQLITE_LIMIT_LENGTH
    -**
    The maximum size of any string or BLOB or table row, in bytes.
    )^ -** -** [[SQLITE_LIMIT_SQL_LENGTH]] ^(
    SQLITE_LIMIT_SQL_LENGTH
    -**
    The maximum length of an SQL statement, in bytes.
    )^ -** -** [[SQLITE_LIMIT_COLUMN]] ^(
    SQLITE_LIMIT_COLUMN
    -**
    The maximum number of columns in a table definition or in the -** result set of a [SELECT] or the maximum number of columns in an index -** or in an ORDER BY or GROUP BY clause.
    )^ -** -** [[SQLITE_LIMIT_EXPR_DEPTH]] ^(
    SQLITE_LIMIT_EXPR_DEPTH
    -**
    The maximum depth of the parse tree on any expression.
    )^ -** -** [[SQLITE_LIMIT_COMPOUND_SELECT]] ^(
    SQLITE_LIMIT_COMPOUND_SELECT
    -**
    The maximum number of terms in a compound SELECT statement.
    )^ -** -** [[SQLITE_LIMIT_VDBE_OP]] ^(
    SQLITE_LIMIT_VDBE_OP
    -**
    The maximum number of instructions in a virtual machine program -** used to implement an SQL statement. If [sqlite3_prepare_v2()] or -** the equivalent tries to allocate space for more than this many opcodes -** in a single prepared statement, an SQLITE_NOMEM error is returned.
    )^ -** -** [[SQLITE_LIMIT_FUNCTION_ARG]] ^(
    SQLITE_LIMIT_FUNCTION_ARG
    -**
    The maximum number of arguments on a function.
    )^ -** -** [[SQLITE_LIMIT_ATTACHED]] ^(
    SQLITE_LIMIT_ATTACHED
    -**
    The maximum number of [ATTACH | attached databases].)^
    -** -** [[SQLITE_LIMIT_LIKE_PATTERN_LENGTH]] -** ^(
    SQLITE_LIMIT_LIKE_PATTERN_LENGTH
    -**
    The maximum length of the pattern argument to the [LIKE] or -** [GLOB] operators.
    )^ -** -** [[SQLITE_LIMIT_VARIABLE_NUMBER]] -** ^(
    SQLITE_LIMIT_VARIABLE_NUMBER
    -**
    The maximum index number of any [parameter] in an SQL statement.)^ -** -** [[SQLITE_LIMIT_TRIGGER_DEPTH]] ^(
    SQLITE_LIMIT_TRIGGER_DEPTH
    -**
    The maximum depth of recursion for triggers.
    )^ -** -** [[SQLITE_LIMIT_WORKER_THREADS]] ^(
    SQLITE_LIMIT_WORKER_THREADS
    -**
    The maximum number of auxiliary worker threads that a single -** [prepared statement] may start.
    )^ -**
    -*/ -#define SQLITE_LIMIT_LENGTH 0 -#define SQLITE_LIMIT_SQL_LENGTH 1 -#define SQLITE_LIMIT_COLUMN 2 -#define SQLITE_LIMIT_EXPR_DEPTH 3 -#define SQLITE_LIMIT_COMPOUND_SELECT 4 -#define SQLITE_LIMIT_VDBE_OP 5 -#define SQLITE_LIMIT_FUNCTION_ARG 6 -#define SQLITE_LIMIT_ATTACHED 7 -#define SQLITE_LIMIT_LIKE_PATTERN_LENGTH 8 -#define SQLITE_LIMIT_VARIABLE_NUMBER 9 -#define SQLITE_LIMIT_TRIGGER_DEPTH 10 -#define SQLITE_LIMIT_WORKER_THREADS 11 - -/* -** CAPI3REF: Prepare Flags -** -** These constants define various flags that can be passed into -** "prepFlags" parameter of the [sqlite3_prepare_v3()] and -** [sqlite3_prepare16_v3()] interfaces. -** -** New flags may be added in future releases of SQLite. -** -**
    -** [[SQLITE_PREPARE_PERSISTENT]] ^(
    SQLITE_PREPARE_PERSISTENT
    -**
    The SQLITE_PREPARE_PERSISTENT flag is a hint to the query planner -** that the prepared statement will be retained for a long time and -** probably reused many times.)^ ^Without this flag, [sqlite3_prepare_v3()] -** and [sqlite3_prepare16_v3()] assume that the prepared statement will -** be used just once or at most a few times and then destroyed using -** [sqlite3_finalize()] relatively soon. The current implementation acts -** on this hint by avoiding the use of [lookaside memory] so as not to -** deplete the limited store of lookaside memory. Future versions of -** SQLite may act on this hint differently. -** -** [[SQLITE_PREPARE_NORMALIZE]]
    SQLITE_PREPARE_NORMALIZE
    -**
    The SQLITE_PREPARE_NORMALIZE flag is a no-op. This flag used -** to be required for any prepared statement that wanted to use the -** [sqlite3_normalized_sql()] interface. However, the -** [sqlite3_normalized_sql()] interface is now available to all -** prepared statements, regardless of whether or not they use this -** flag. -** -** [[SQLITE_PREPARE_NO_VTAB]]
    SQLITE_PREPARE_NO_VTAB
    -**
    The SQLITE_PREPARE_NO_VTAB flag causes the SQL compiler -** to return an error (error code SQLITE_ERROR) if the statement uses -** any virtual tables. -**
    -*/ -#define SQLITE_PREPARE_PERSISTENT 0x01 -#define SQLITE_PREPARE_NORMALIZE 0x02 -#define SQLITE_PREPARE_NO_VTAB 0x04 - -/* -** CAPI3REF: Compiling An SQL Statement -** KEYWORDS: {SQL statement compiler} -** METHOD: sqlite3 -** CONSTRUCTOR: sqlite3_stmt -** -** To execute an SQL statement, it must first be compiled into a byte-code -** program using one of these routines. Or, in other words, these routines -** are constructors for the [prepared statement] object. -** -** The preferred routine to use is [sqlite3_prepare_v2()]. The -** [sqlite3_prepare()] interface is legacy and should be avoided. -** [sqlite3_prepare_v3()] has an extra "prepFlags" option that is used -** for special purposes. -** -** The use of the UTF-8 interfaces is preferred, as SQLite currently -** does all parsing using UTF-8. The UTF-16 interfaces are provided -** as a convenience. The UTF-16 interfaces work by converting the -** input text into UTF-8, then invoking the corresponding UTF-8 interface. -** -** The first argument, "db", is a [database connection] obtained from a -** prior successful call to [sqlite3_open()], [sqlite3_open_v2()] or -** [sqlite3_open16()]. The database connection must not have been closed. -** -** The second argument, "zSql", is the statement to be compiled, encoded -** as either UTF-8 or UTF-16. The sqlite3_prepare(), sqlite3_prepare_v2(), -** and sqlite3_prepare_v3() -** interfaces use UTF-8, and sqlite3_prepare16(), sqlite3_prepare16_v2(), -** and sqlite3_prepare16_v3() use UTF-16. -** -** ^If the nByte argument is negative, then zSql is read up to the -** first zero terminator. ^If nByte is positive, then it is the -** number of bytes read from zSql. ^If nByte is zero, then no prepared -** statement is generated. -** If the caller knows that the supplied string is nul-terminated, then -** there is a small performance advantage to passing an nByte parameter that -** is the number of bytes in the input string including -** the nul-terminator. -** -** ^If pzTail is not NULL then *pzTail is made to point to the first byte -** past the end of the first SQL statement in zSql. These routines only -** compile the first statement in zSql, so *pzTail is left pointing to -** what remains uncompiled. -** -** ^*ppStmt is left pointing to a compiled [prepared statement] that can be -** executed using [sqlite3_step()]. ^If there is an error, *ppStmt is set -** to NULL. ^If the input text contains no SQL (if the input is an empty -** string or a comment) then *ppStmt is set to NULL. -** The calling procedure is responsible for deleting the compiled -** SQL statement using [sqlite3_finalize()] after it has finished with it. -** ppStmt may not be NULL. -** -** ^On success, the sqlite3_prepare() family of routines return [SQLITE_OK]; -** otherwise an [error code] is returned. -** -** The sqlite3_prepare_v2(), sqlite3_prepare_v3(), sqlite3_prepare16_v2(), -** and sqlite3_prepare16_v3() interfaces are recommended for all new programs. -** The older interfaces (sqlite3_prepare() and sqlite3_prepare16()) -** are retained for backwards compatibility, but their use is discouraged. -** ^In the "vX" interfaces, the prepared statement -** that is returned (the [sqlite3_stmt] object) contains a copy of the -** original SQL text. This causes the [sqlite3_step()] interface to -** behave differently in three ways: -** -**
      -**
    1. -** ^If the database schema changes, instead of returning [SQLITE_SCHEMA] as it -** always used to do, [sqlite3_step()] will automatically recompile the SQL -** statement and try to run it again. As many as [SQLITE_MAX_SCHEMA_RETRY] -** retries will occur before sqlite3_step() gives up and returns an error. -**
    2. -** -**
    3. -** ^When an error occurs, [sqlite3_step()] will return one of the detailed -** [error codes] or [extended error codes]. ^The legacy behavior was that -** [sqlite3_step()] would only return a generic [SQLITE_ERROR] result code -** and the application would have to make a second call to [sqlite3_reset()] -** in order to find the underlying cause of the problem. With the "v2" prepare -** interfaces, the underlying reason for the error is returned immediately. -**
    4. -** -**
    5. -** ^If the specific value bound to a [parameter | host parameter] in the -** WHERE clause might influence the choice of query plan for a statement, -** then the statement will be automatically recompiled, as if there had been -** a schema change, on the first [sqlite3_step()] call following any change -** to the [sqlite3_bind_text | bindings] of that [parameter]. -** ^The specific value of a WHERE-clause [parameter] might influence the -** choice of query plan if the parameter is the left-hand side of a [LIKE] -** or [GLOB] operator or if the parameter is compared to an indexed column -** and the [SQLITE_ENABLE_STAT4] compile-time option is enabled. -**
    6. -**
    -** -**

    ^sqlite3_prepare_v3() differs from sqlite3_prepare_v2() only in having -** the extra prepFlags parameter, which is a bit array consisting of zero or -** more of the [SQLITE_PREPARE_PERSISTENT|SQLITE_PREPARE_*] flags. ^The -** sqlite3_prepare_v2() interface works exactly the same as -** sqlite3_prepare_v3() with a zero prepFlags parameter. -*/ -SQLITE_API int sqlite3_prepare( - sqlite3 *db, /* Database handle */ - const char *zSql, /* SQL statement, UTF-8 encoded */ - int nByte, /* Maximum length of zSql in bytes. */ - sqlite3_stmt **ppStmt, /* OUT: Statement handle */ - const char **pzTail /* OUT: Pointer to unused portion of zSql */ -); -SQLITE_API int sqlite3_prepare_v2( - sqlite3 *db, /* Database handle */ - const char *zSql, /* SQL statement, UTF-8 encoded */ - int nByte, /* Maximum length of zSql in bytes. */ - sqlite3_stmt **ppStmt, /* OUT: Statement handle */ - const char **pzTail /* OUT: Pointer to unused portion of zSql */ -); -SQLITE_API int sqlite3_prepare_v3( - sqlite3 *db, /* Database handle */ - const char *zSql, /* SQL statement, UTF-8 encoded */ - int nByte, /* Maximum length of zSql in bytes. */ - unsigned int prepFlags, /* Zero or more SQLITE_PREPARE_ flags */ - sqlite3_stmt **ppStmt, /* OUT: Statement handle */ - const char **pzTail /* OUT: Pointer to unused portion of zSql */ -); -SQLITE_API int sqlite3_prepare16( - sqlite3 *db, /* Database handle */ - const void *zSql, /* SQL statement, UTF-16 encoded */ - int nByte, /* Maximum length of zSql in bytes. */ - sqlite3_stmt **ppStmt, /* OUT: Statement handle */ - const void **pzTail /* OUT: Pointer to unused portion of zSql */ -); -SQLITE_API int sqlite3_prepare16_v2( - sqlite3 *db, /* Database handle */ - const void *zSql, /* SQL statement, UTF-16 encoded */ - int nByte, /* Maximum length of zSql in bytes. */ - sqlite3_stmt **ppStmt, /* OUT: Statement handle */ - const void **pzTail /* OUT: Pointer to unused portion of zSql */ -); -SQLITE_API int sqlite3_prepare16_v3( - sqlite3 *db, /* Database handle */ - const void *zSql, /* SQL statement, UTF-16 encoded */ - int nByte, /* Maximum length of zSql in bytes. */ - unsigned int prepFlags, /* Zero or more SQLITE_PREPARE_ flags */ - sqlite3_stmt **ppStmt, /* OUT: Statement handle */ - const void **pzTail /* OUT: Pointer to unused portion of zSql */ -); - -/* -** CAPI3REF: Retrieving Statement SQL -** METHOD: sqlite3_stmt -** -** ^The sqlite3_sql(P) interface returns a pointer to a copy of the UTF-8 -** SQL text used to create [prepared statement] P if P was -** created by [sqlite3_prepare_v2()], [sqlite3_prepare_v3()], -** [sqlite3_prepare16_v2()], or [sqlite3_prepare16_v3()]. -** ^The sqlite3_expanded_sql(P) interface returns a pointer to a UTF-8 -** string containing the SQL text of prepared statement P with -** [bound parameters] expanded. -** ^The sqlite3_normalized_sql(P) interface returns a pointer to a UTF-8 -** string containing the normalized SQL text of prepared statement P. The -** semantics used to normalize a SQL statement are unspecified and subject -** to change. At a minimum, literal values will be replaced with suitable -** placeholders. -** -** ^(For example, if a prepared statement is created using the SQL -** text "SELECT $abc,:xyz" and if parameter $abc is bound to integer 2345 -** and parameter :xyz is unbound, then sqlite3_sql() will return -** the original string, "SELECT $abc,:xyz" but sqlite3_expanded_sql() -** will return "SELECT 2345,NULL".)^ -** -** ^The sqlite3_expanded_sql() interface returns NULL if insufficient memory -** is available to hold the result, or if the result would exceed the -** the maximum string length determined by the [SQLITE_LIMIT_LENGTH]. -** -** ^The [SQLITE_TRACE_SIZE_LIMIT] compile-time option limits the size of -** bound parameter expansions. ^The [SQLITE_OMIT_TRACE] compile-time -** option causes sqlite3_expanded_sql() to always return NULL. -** -** ^The strings returned by sqlite3_sql(P) and sqlite3_normalized_sql(P) -** are managed by SQLite and are automatically freed when the prepared -** statement is finalized. -** ^The string returned by sqlite3_expanded_sql(P), on the other hand, -** is obtained from [sqlite3_malloc()] and must be freed by the application -** by passing it to [sqlite3_free()]. -** -** ^The sqlite3_normalized_sql() interface is only available if -** the [SQLITE_ENABLE_NORMALIZE] compile-time option is defined. -*/ -SQLITE_API const char *sqlite3_sql(sqlite3_stmt *pStmt); -SQLITE_API char *sqlite3_expanded_sql(sqlite3_stmt *pStmt); -#ifdef SQLITE_ENABLE_NORMALIZE -SQLITE_API const char *sqlite3_normalized_sql(sqlite3_stmt *pStmt); -#endif - -/* -** CAPI3REF: Determine If An SQL Statement Writes The Database -** METHOD: sqlite3_stmt -** -** ^The sqlite3_stmt_readonly(X) interface returns true (non-zero) if -** and only if the [prepared statement] X makes no direct changes to -** the content of the database file. -** -** Note that [application-defined SQL functions] or -** [virtual tables] might change the database indirectly as a side effect. -** ^(For example, if an application defines a function "eval()" that -** calls [sqlite3_exec()], then the following SQL statement would -** change the database file through side-effects: -** -**

    -**    SELECT eval('DELETE FROM t1') FROM t2;
    -** 
    -** -** But because the [SELECT] statement does not change the database file -** directly, sqlite3_stmt_readonly() would still return true.)^ -** -** ^Transaction control statements such as [BEGIN], [COMMIT], [ROLLBACK], -** [SAVEPOINT], and [RELEASE] cause sqlite3_stmt_readonly() to return true, -** since the statements themselves do not actually modify the database but -** rather they control the timing of when other statements modify the -** database. ^The [ATTACH] and [DETACH] statements also cause -** sqlite3_stmt_readonly() to return true since, while those statements -** change the configuration of a database connection, they do not make -** changes to the content of the database files on disk. -** ^The sqlite3_stmt_readonly() interface returns true for [BEGIN] since -** [BEGIN] merely sets internal flags, but the [BEGIN|BEGIN IMMEDIATE] and -** [BEGIN|BEGIN EXCLUSIVE] commands do touch the database and so -** sqlite3_stmt_readonly() returns false for those commands. -** -** ^This routine returns false if there is any possibility that the -** statement might change the database file. ^A false return does -** not guarantee that the statement will change the database file. -** ^For example, an UPDATE statement might have a WHERE clause that -** makes it a no-op, but the sqlite3_stmt_readonly() result would still -** be false. ^Similarly, a CREATE TABLE IF NOT EXISTS statement is a -** read-only no-op if the table already exists, but -** sqlite3_stmt_readonly() still returns false for such a statement. -** -** ^If prepared statement X is an [EXPLAIN] or [EXPLAIN QUERY PLAN] -** statement, then sqlite3_stmt_readonly(X) returns the same value as -** if the EXPLAIN or EXPLAIN QUERY PLAN prefix were omitted. -*/ -SQLITE_API int sqlite3_stmt_readonly(sqlite3_stmt *pStmt); - -/* -** CAPI3REF: Query The EXPLAIN Setting For A Prepared Statement -** METHOD: sqlite3_stmt -** -** ^The sqlite3_stmt_isexplain(S) interface returns 1 if the -** prepared statement S is an EXPLAIN statement, or 2 if the -** statement S is an EXPLAIN QUERY PLAN. -** ^The sqlite3_stmt_isexplain(S) interface returns 0 if S is -** an ordinary statement or a NULL pointer. -*/ -SQLITE_API int sqlite3_stmt_isexplain(sqlite3_stmt *pStmt); - -/* -** CAPI3REF: Determine If A Prepared Statement Has Been Reset -** METHOD: sqlite3_stmt -** -** ^The sqlite3_stmt_busy(S) interface returns true (non-zero) if the -** [prepared statement] S has been stepped at least once using -** [sqlite3_step(S)] but has neither run to completion (returned -** [SQLITE_DONE] from [sqlite3_step(S)]) nor -** been reset using [sqlite3_reset(S)]. ^The sqlite3_stmt_busy(S) -** interface returns false if S is a NULL pointer. If S is not a -** NULL pointer and is not a pointer to a valid [prepared statement] -** object, then the behavior is undefined and probably undesirable. -** -** This interface can be used in combination [sqlite3_next_stmt()] -** to locate all prepared statements associated with a database -** connection that are in need of being reset. This can be used, -** for example, in diagnostic routines to search for prepared -** statements that are holding a transaction open. -*/ -SQLITE_API int sqlite3_stmt_busy(sqlite3_stmt*); - -/* -** CAPI3REF: Dynamically Typed Value Object -** KEYWORDS: {protected sqlite3_value} {unprotected sqlite3_value} -** -** SQLite uses the sqlite3_value object to represent all values -** that can be stored in a database table. SQLite uses dynamic typing -** for the values it stores. ^Values stored in sqlite3_value objects -** can be integers, floating point values, strings, BLOBs, or NULL. -** -** An sqlite3_value object may be either "protected" or "unprotected". -** Some interfaces require a protected sqlite3_value. Other interfaces -** will accept either a protected or an unprotected sqlite3_value. -** Every interface that accepts sqlite3_value arguments specifies -** whether or not it requires a protected sqlite3_value. The -** [sqlite3_value_dup()] interface can be used to construct a new -** protected sqlite3_value from an unprotected sqlite3_value. -** -** The terms "protected" and "unprotected" refer to whether or not -** a mutex is held. An internal mutex is held for a protected -** sqlite3_value object but no mutex is held for an unprotected -** sqlite3_value object. If SQLite is compiled to be single-threaded -** (with [SQLITE_THREADSAFE=0] and with [sqlite3_threadsafe()] returning 0) -** or if SQLite is run in one of reduced mutex modes -** [SQLITE_CONFIG_SINGLETHREAD] or [SQLITE_CONFIG_MULTITHREAD] -** then there is no distinction between protected and unprotected -** sqlite3_value objects and they can be used interchangeably. However, -** for maximum code portability it is recommended that applications -** still make the distinction between protected and unprotected -** sqlite3_value objects even when not strictly required. -** -** ^The sqlite3_value objects that are passed as parameters into the -** implementation of [application-defined SQL functions] are protected. -** ^The sqlite3_value objects returned by [sqlite3_vtab_rhs_value()] -** are protected. -** ^The sqlite3_value object returned by -** [sqlite3_column_value()] is unprotected. -** Unprotected sqlite3_value objects may only be used as arguments -** to [sqlite3_result_value()], [sqlite3_bind_value()], and -** [sqlite3_value_dup()]. -** The [sqlite3_value_blob | sqlite3_value_type()] family of -** interfaces require protected sqlite3_value objects. -*/ -typedef struct sqlite3_value sqlite3_value; - -/* -** CAPI3REF: SQL Function Context Object -** -** The context in which an SQL function executes is stored in an -** sqlite3_context object. ^A pointer to an sqlite3_context object -** is always first parameter to [application-defined SQL functions]. -** The application-defined SQL function implementation will pass this -** pointer through into calls to [sqlite3_result_int | sqlite3_result()], -** [sqlite3_aggregate_context()], [sqlite3_user_data()], -** [sqlite3_context_db_handle()], [sqlite3_get_auxdata()], -** and/or [sqlite3_set_auxdata()]. -*/ -typedef struct sqlite3_context sqlite3_context; - -/* -** CAPI3REF: Binding Values To Prepared Statements -** KEYWORDS: {host parameter} {host parameters} {host parameter name} -** KEYWORDS: {SQL parameter} {SQL parameters} {parameter binding} -** METHOD: sqlite3_stmt -** -** ^(In the SQL statement text input to [sqlite3_prepare_v2()] and its variants, -** literals may be replaced by a [parameter] that matches one of following -** templates: -** -**
      -**
    • ? -**
    • ?NNN -**
    • :VVV -**
    • @VVV -**
    • $VVV -**
    -** -** In the templates above, NNN represents an integer literal, -** and VVV represents an alphanumeric identifier.)^ ^The values of these -** parameters (also called "host parameter names" or "SQL parameters") -** can be set using the sqlite3_bind_*() routines defined here. -** -** ^The first argument to the sqlite3_bind_*() routines is always -** a pointer to the [sqlite3_stmt] object returned from -** [sqlite3_prepare_v2()] or its variants. -** -** ^The second argument is the index of the SQL parameter to be set. -** ^The leftmost SQL parameter has an index of 1. ^When the same named -** SQL parameter is used more than once, second and subsequent -** occurrences have the same index as the first occurrence. -** ^The index for named parameters can be looked up using the -** [sqlite3_bind_parameter_index()] API if desired. ^The index -** for "?NNN" parameters is the value of NNN. -** ^The NNN value must be between 1 and the [sqlite3_limit()] -** parameter [SQLITE_LIMIT_VARIABLE_NUMBER] (default value: 32766). -** -** ^The third argument is the value to bind to the parameter. -** ^If the third parameter to sqlite3_bind_text() or sqlite3_bind_text16() -** or sqlite3_bind_blob() is a NULL pointer then the fourth parameter -** is ignored and the end result is the same as sqlite3_bind_null(). -** ^If the third parameter to sqlite3_bind_text() is not NULL, then -** it should be a pointer to well-formed UTF8 text. -** ^If the third parameter to sqlite3_bind_text16() is not NULL, then -** it should be a pointer to well-formed UTF16 text. -** ^If the third parameter to sqlite3_bind_text64() is not NULL, then -** it should be a pointer to a well-formed unicode string that is -** either UTF8 if the sixth parameter is SQLITE_UTF8, or UTF16 -** otherwise. -** -** [[byte-order determination rules]] ^The byte-order of -** UTF16 input text is determined by the byte-order mark (BOM, U+FEFF) -** found in first character, which is removed, or in the absence of a BOM -** the byte order is the native byte order of the host -** machine for sqlite3_bind_text16() or the byte order specified in -** the 6th parameter for sqlite3_bind_text64().)^ -** ^If UTF16 input text contains invalid unicode -** characters, then SQLite might change those invalid characters -** into the unicode replacement character: U+FFFD. -** -** ^(In those routines that have a fourth argument, its value is the -** number of bytes in the parameter. To be clear: the value is the -** number of bytes in the value, not the number of characters.)^ -** ^If the fourth parameter to sqlite3_bind_text() or sqlite3_bind_text16() -** is negative, then the length of the string is -** the number of bytes up to the first zero terminator. -** If the fourth parameter to sqlite3_bind_blob() is negative, then -** the behavior is undefined. -** If a non-negative fourth parameter is provided to sqlite3_bind_text() -** or sqlite3_bind_text16() or sqlite3_bind_text64() then -** that parameter must be the byte offset -** where the NUL terminator would occur assuming the string were NUL -** terminated. If any NUL characters occurs at byte offsets less than -** the value of the fourth parameter then the resulting string value will -** contain embedded NULs. The result of expressions involving strings -** with embedded NULs is undefined. -** -** ^The fifth argument to the BLOB and string binding interfaces controls -** or indicates the lifetime of the object referenced by the third parameter. -** These three options exist: -** ^ (1) A destructor to dispose of the BLOB or string after SQLite has finished -** with it may be passed. ^It is called to dispose of the BLOB or string even -** if the call to the bind API fails, except the destructor is not called if -** the third parameter is a NULL pointer or the fourth parameter is negative. -** ^ (2) The special constant, [SQLITE_STATIC], may be passsed to indicate that -** the application remains responsible for disposing of the object. ^In this -** case, the object and the provided pointer to it must remain valid until -** either the prepared statement is finalized or the same SQL parameter is -** bound to something else, whichever occurs sooner. -** ^ (3) The constant, [SQLITE_TRANSIENT], may be passed to indicate that the -** object is to be copied prior to the return from sqlite3_bind_*(). ^The -** object and pointer to it must remain valid until then. ^SQLite will then -** manage the lifetime of its private copy. -** -** ^The sixth argument to sqlite3_bind_text64() must be one of -** [SQLITE_UTF8], [SQLITE_UTF16], [SQLITE_UTF16BE], or [SQLITE_UTF16LE] -** to specify the encoding of the text in the third parameter. If -** the sixth argument to sqlite3_bind_text64() is not one of the -** allowed values shown above, or if the text encoding is different -** from the encoding specified by the sixth parameter, then the behavior -** is undefined. -** -** ^The sqlite3_bind_zeroblob() routine binds a BLOB of length N that -** is filled with zeroes. ^A zeroblob uses a fixed amount of memory -** (just an integer to hold its size) while it is being processed. -** Zeroblobs are intended to serve as placeholders for BLOBs whose -** content is later written using -** [sqlite3_blob_open | incremental BLOB I/O] routines. -** ^A negative value for the zeroblob results in a zero-length BLOB. -** -** ^The sqlite3_bind_pointer(S,I,P,T,D) routine causes the I-th parameter in -** [prepared statement] S to have an SQL value of NULL, but to also be -** associated with the pointer P of type T. ^D is either a NULL pointer or -** a pointer to a destructor function for P. ^SQLite will invoke the -** destructor D with a single argument of P when it is finished using -** P. The T parameter should be a static string, preferably a string -** literal. The sqlite3_bind_pointer() routine is part of the -** [pointer passing interface] added for SQLite 3.20.0. -** -** ^If any of the sqlite3_bind_*() routines are called with a NULL pointer -** for the [prepared statement] or with a prepared statement for which -** [sqlite3_step()] has been called more recently than [sqlite3_reset()], -** then the call will return [SQLITE_MISUSE]. If any sqlite3_bind_() -** routine is passed a [prepared statement] that has been finalized, the -** result is undefined and probably harmful. -** -** ^Bindings are not cleared by the [sqlite3_reset()] routine. -** ^Unbound parameters are interpreted as NULL. -** -** ^The sqlite3_bind_* routines return [SQLITE_OK] on success or an -** [error code] if anything goes wrong. -** ^[SQLITE_TOOBIG] might be returned if the size of a string or BLOB -** exceeds limits imposed by [sqlite3_limit]([SQLITE_LIMIT_LENGTH]) or -** [SQLITE_MAX_LENGTH]. -** ^[SQLITE_RANGE] is returned if the parameter -** index is out of range. ^[SQLITE_NOMEM] is returned if malloc() fails. -** -** See also: [sqlite3_bind_parameter_count()], -** [sqlite3_bind_parameter_name()], and [sqlite3_bind_parameter_index()]. -*/ -SQLITE_API int sqlite3_bind_blob(sqlite3_stmt*, int, const void*, int n, void(*)(void*)); -SQLITE_API int sqlite3_bind_blob64(sqlite3_stmt*, int, const void*, sqlite3_uint64, - void(*)(void*)); -SQLITE_API int sqlite3_bind_double(sqlite3_stmt*, int, double); -SQLITE_API int sqlite3_bind_int(sqlite3_stmt*, int, int); -SQLITE_API int sqlite3_bind_int64(sqlite3_stmt*, int, sqlite3_int64); -SQLITE_API int sqlite3_bind_null(sqlite3_stmt*, int); -SQLITE_API int sqlite3_bind_text(sqlite3_stmt*,int,const char*,int,void(*)(void*)); -SQLITE_API int sqlite3_bind_text16(sqlite3_stmt*, int, const void*, int, void(*)(void*)); -SQLITE_API int sqlite3_bind_text64(sqlite3_stmt*, int, const char*, sqlite3_uint64, - void(*)(void*), unsigned char encoding); -SQLITE_API int sqlite3_bind_value(sqlite3_stmt*, int, const sqlite3_value*); -SQLITE_API int sqlite3_bind_pointer(sqlite3_stmt*, int, void*, const char*,void(*)(void*)); -SQLITE_API int sqlite3_bind_zeroblob(sqlite3_stmt*, int, int n); -SQLITE_API int sqlite3_bind_zeroblob64(sqlite3_stmt*, int, sqlite3_uint64); - -/* -** CAPI3REF: Number Of SQL Parameters -** METHOD: sqlite3_stmt -** -** ^This routine can be used to find the number of [SQL parameters] -** in a [prepared statement]. SQL parameters are tokens of the -** form "?", "?NNN", ":AAA", "$AAA", or "@AAA" that serve as -** placeholders for values that are [sqlite3_bind_blob | bound] -** to the parameters at a later time. -** -** ^(This routine actually returns the index of the largest (rightmost) -** parameter. For all forms except ?NNN, this will correspond to the -** number of unique parameters. If parameters of the ?NNN form are used, -** there may be gaps in the list.)^ -** -** See also: [sqlite3_bind_blob|sqlite3_bind()], -** [sqlite3_bind_parameter_name()], and -** [sqlite3_bind_parameter_index()]. -*/ -SQLITE_API int sqlite3_bind_parameter_count(sqlite3_stmt*); - -/* -** CAPI3REF: Name Of A Host Parameter -** METHOD: sqlite3_stmt -** -** ^The sqlite3_bind_parameter_name(P,N) interface returns -** the name of the N-th [SQL parameter] in the [prepared statement] P. -** ^(SQL parameters of the form "?NNN" or ":AAA" or "@AAA" or "$AAA" -** have a name which is the string "?NNN" or ":AAA" or "@AAA" or "$AAA" -** respectively. -** In other words, the initial ":" or "$" or "@" or "?" -** is included as part of the name.)^ -** ^Parameters of the form "?" without a following integer have no name -** and are referred to as "nameless" or "anonymous parameters". -** -** ^The first host parameter has an index of 1, not 0. -** -** ^If the value N is out of range or if the N-th parameter is -** nameless, then NULL is returned. ^The returned string is -** always in UTF-8 encoding even if the named parameter was -** originally specified as UTF-16 in [sqlite3_prepare16()], -** [sqlite3_prepare16_v2()], or [sqlite3_prepare16_v3()]. -** -** See also: [sqlite3_bind_blob|sqlite3_bind()], -** [sqlite3_bind_parameter_count()], and -** [sqlite3_bind_parameter_index()]. -*/ -SQLITE_API const char *sqlite3_bind_parameter_name(sqlite3_stmt*, int); - -/* -** CAPI3REF: Index Of A Parameter With A Given Name -** METHOD: sqlite3_stmt -** -** ^Return the index of an SQL parameter given its name. ^The -** index value returned is suitable for use as the second -** parameter to [sqlite3_bind_blob|sqlite3_bind()]. ^A zero -** is returned if no matching parameter is found. ^The parameter -** name must be given in UTF-8 even if the original statement -** was prepared from UTF-16 text using [sqlite3_prepare16_v2()] or -** [sqlite3_prepare16_v3()]. -** -** See also: [sqlite3_bind_blob|sqlite3_bind()], -** [sqlite3_bind_parameter_count()], and -** [sqlite3_bind_parameter_name()]. -*/ -SQLITE_API int sqlite3_bind_parameter_index(sqlite3_stmt*, const char *zName); - -/* -** CAPI3REF: Reset All Bindings On A Prepared Statement -** METHOD: sqlite3_stmt -** -** ^Contrary to the intuition of many, [sqlite3_reset()] does not reset -** the [sqlite3_bind_blob | bindings] on a [prepared statement]. -** ^Use this routine to reset all host parameters to NULL. -*/ -SQLITE_API int sqlite3_clear_bindings(sqlite3_stmt*); - -/* -** CAPI3REF: Number Of Columns In A Result Set -** METHOD: sqlite3_stmt -** -** ^Return the number of columns in the result set returned by the -** [prepared statement]. ^If this routine returns 0, that means the -** [prepared statement] returns no data (for example an [UPDATE]). -** ^However, just because this routine returns a positive number does not -** mean that one or more rows of data will be returned. ^A SELECT statement -** will always have a positive sqlite3_column_count() but depending on the -** WHERE clause constraints and the table content, it might return no rows. -** -** See also: [sqlite3_data_count()] -*/ -SQLITE_API int sqlite3_column_count(sqlite3_stmt *pStmt); - -/* -** CAPI3REF: Column Names In A Result Set -** METHOD: sqlite3_stmt -** -** ^These routines return the name assigned to a particular column -** in the result set of a [SELECT] statement. ^The sqlite3_column_name() -** interface returns a pointer to a zero-terminated UTF-8 string -** and sqlite3_column_name16() returns a pointer to a zero-terminated -** UTF-16 string. ^The first parameter is the [prepared statement] -** that implements the [SELECT] statement. ^The second parameter is the -** column number. ^The leftmost column is number 0. -** -** ^The returned string pointer is valid until either the [prepared statement] -** is destroyed by [sqlite3_finalize()] or until the statement is automatically -** reprepared by the first call to [sqlite3_step()] for a particular run -** or until the next call to -** sqlite3_column_name() or sqlite3_column_name16() on the same column. -** -** ^If sqlite3_malloc() fails during the processing of either routine -** (for example during a conversion from UTF-8 to UTF-16) then a -** NULL pointer is returned. -** -** ^The name of a result column is the value of the "AS" clause for -** that column, if there is an AS clause. If there is no AS clause -** then the name of the column is unspecified and may change from -** one release of SQLite to the next. -*/ -SQLITE_API const char *sqlite3_column_name(sqlite3_stmt*, int N); -SQLITE_API const void *sqlite3_column_name16(sqlite3_stmt*, int N); - -/* -** CAPI3REF: Source Of Data In A Query Result -** METHOD: sqlite3_stmt -** -** ^These routines provide a means to determine the database, table, and -** table column that is the origin of a particular result column in -** [SELECT] statement. -** ^The name of the database or table or column can be returned as -** either a UTF-8 or UTF-16 string. ^The _database_ routines return -** the database name, the _table_ routines return the table name, and -** the origin_ routines return the column name. -** ^The returned string is valid until the [prepared statement] is destroyed -** using [sqlite3_finalize()] or until the statement is automatically -** reprepared by the first call to [sqlite3_step()] for a particular run -** or until the same information is requested -** again in a different encoding. -** -** ^The names returned are the original un-aliased names of the -** database, table, and column. -** -** ^The first argument to these interfaces is a [prepared statement]. -** ^These functions return information about the Nth result column returned by -** the statement, where N is the second function argument. -** ^The left-most column is column 0 for these routines. -** -** ^If the Nth column returned by the statement is an expression or -** subquery and is not a column value, then all of these functions return -** NULL. ^These routines might also return NULL if a memory allocation error -** occurs. ^Otherwise, they return the name of the attached database, table, -** or column that query result column was extracted from. -** -** ^As with all other SQLite APIs, those whose names end with "16" return -** UTF-16 encoded strings and the other functions return UTF-8. -** -** ^These APIs are only available if the library was compiled with the -** [SQLITE_ENABLE_COLUMN_METADATA] C-preprocessor symbol. -** -** If two or more threads call one or more -** [sqlite3_column_database_name | column metadata interfaces] -** for the same [prepared statement] and result column -** at the same time then the results are undefined. -*/ -SQLITE_API const char *sqlite3_column_database_name(sqlite3_stmt*,int); -SQLITE_API const void *sqlite3_column_database_name16(sqlite3_stmt*,int); -SQLITE_API const char *sqlite3_column_table_name(sqlite3_stmt*,int); -SQLITE_API const void *sqlite3_column_table_name16(sqlite3_stmt*,int); -SQLITE_API const char *sqlite3_column_origin_name(sqlite3_stmt*,int); -SQLITE_API const void *sqlite3_column_origin_name16(sqlite3_stmt*,int); - -/* -** CAPI3REF: Declared Datatype Of A Query Result -** METHOD: sqlite3_stmt -** -** ^(The first parameter is a [prepared statement]. -** If this statement is a [SELECT] statement and the Nth column of the -** returned result set of that [SELECT] is a table column (not an -** expression or subquery) then the declared type of the table -** column is returned.)^ ^If the Nth column of the result set is an -** expression or subquery, then a NULL pointer is returned. -** ^The returned string is always UTF-8 encoded. -** -** ^(For example, given the database schema: -** -** CREATE TABLE t1(c1 VARIANT); -** -** and the following statement to be compiled: -** -** SELECT c1 + 1, c1 FROM t1; -** -** this routine would return the string "VARIANT" for the second result -** column (i==1), and a NULL pointer for the first result column (i==0).)^ -** -** ^SQLite uses dynamic run-time typing. ^So just because a column -** is declared to contain a particular type does not mean that the -** data stored in that column is of the declared type. SQLite is -** strongly typed, but the typing is dynamic not static. ^Type -** is associated with individual values, not with the containers -** used to hold those values. -*/ -SQLITE_API const char *sqlite3_column_decltype(sqlite3_stmt*,int); -SQLITE_API const void *sqlite3_column_decltype16(sqlite3_stmt*,int); - -/* -** CAPI3REF: Evaluate An SQL Statement -** METHOD: sqlite3_stmt -** -** After a [prepared statement] has been prepared using any of -** [sqlite3_prepare_v2()], [sqlite3_prepare_v3()], [sqlite3_prepare16_v2()], -** or [sqlite3_prepare16_v3()] or one of the legacy -** interfaces [sqlite3_prepare()] or [sqlite3_prepare16()], this function -** must be called one or more times to evaluate the statement. -** -** The details of the behavior of the sqlite3_step() interface depend -** on whether the statement was prepared using the newer "vX" interfaces -** [sqlite3_prepare_v3()], [sqlite3_prepare_v2()], [sqlite3_prepare16_v3()], -** [sqlite3_prepare16_v2()] or the older legacy -** interfaces [sqlite3_prepare()] and [sqlite3_prepare16()]. The use of the -** new "vX" interface is recommended for new applications but the legacy -** interface will continue to be supported. -** -** ^In the legacy interface, the return value will be either [SQLITE_BUSY], -** [SQLITE_DONE], [SQLITE_ROW], [SQLITE_ERROR], or [SQLITE_MISUSE]. -** ^With the "v2" interface, any of the other [result codes] or -** [extended result codes] might be returned as well. -** -** ^[SQLITE_BUSY] means that the database engine was unable to acquire the -** database locks it needs to do its job. ^If the statement is a [COMMIT] -** or occurs outside of an explicit transaction, then you can retry the -** statement. If the statement is not a [COMMIT] and occurs within an -** explicit transaction then you should rollback the transaction before -** continuing. -** -** ^[SQLITE_DONE] means that the statement has finished executing -** successfully. sqlite3_step() should not be called again on this virtual -** machine without first calling [sqlite3_reset()] to reset the virtual -** machine back to its initial state. -** -** ^If the SQL statement being executed returns any data, then [SQLITE_ROW] -** is returned each time a new row of data is ready for processing by the -** caller. The values may be accessed using the [column access functions]. -** sqlite3_step() is called again to retrieve the next row of data. -** -** ^[SQLITE_ERROR] means that a run-time error (such as a constraint -** violation) has occurred. sqlite3_step() should not be called again on -** the VM. More information may be found by calling [sqlite3_errmsg()]. -** ^With the legacy interface, a more specific error code (for example, -** [SQLITE_INTERRUPT], [SQLITE_SCHEMA], [SQLITE_CORRUPT], and so forth) -** can be obtained by calling [sqlite3_reset()] on the -** [prepared statement]. ^In the "v2" interface, -** the more specific error code is returned directly by sqlite3_step(). -** -** [SQLITE_MISUSE] means that the this routine was called inappropriately. -** Perhaps it was called on a [prepared statement] that has -** already been [sqlite3_finalize | finalized] or on one that had -** previously returned [SQLITE_ERROR] or [SQLITE_DONE]. Or it could -** be the case that the same database connection is being used by two or -** more threads at the same moment in time. -** -** For all versions of SQLite up to and including 3.6.23.1, a call to -** [sqlite3_reset()] was required after sqlite3_step() returned anything -** other than [SQLITE_ROW] before any subsequent invocation of -** sqlite3_step(). Failure to reset the prepared statement using -** [sqlite3_reset()] would result in an [SQLITE_MISUSE] return from -** sqlite3_step(). But after [version 3.6.23.1] ([dateof:3.6.23.1], -** sqlite3_step() began -** calling [sqlite3_reset()] automatically in this circumstance rather -** than returning [SQLITE_MISUSE]. This is not considered a compatibility -** break because any application that ever receives an SQLITE_MISUSE error -** is broken by definition. The [SQLITE_OMIT_AUTORESET] compile-time option -** can be used to restore the legacy behavior. -** -** Goofy Interface Alert: In the legacy interface, the sqlite3_step() -** API always returns a generic error code, [SQLITE_ERROR], following any -** error other than [SQLITE_BUSY] and [SQLITE_MISUSE]. You must call -** [sqlite3_reset()] or [sqlite3_finalize()] in order to find one of the -** specific [error codes] that better describes the error. -** We admit that this is a goofy design. The problem has been fixed -** with the "v2" interface. If you prepare all of your SQL statements -** using [sqlite3_prepare_v3()] or [sqlite3_prepare_v2()] -** or [sqlite3_prepare16_v2()] or [sqlite3_prepare16_v3()] instead -** of the legacy [sqlite3_prepare()] and [sqlite3_prepare16()] interfaces, -** then the more specific [error codes] are returned directly -** by sqlite3_step(). The use of the "vX" interfaces is recommended. -*/ -SQLITE_API int sqlite3_step(sqlite3_stmt*); - -/* -** CAPI3REF: Number of columns in a result set -** METHOD: sqlite3_stmt -** -** ^The sqlite3_data_count(P) interface returns the number of columns in the -** current row of the result set of [prepared statement] P. -** ^If prepared statement P does not have results ready to return -** (via calls to the [sqlite3_column_int | sqlite3_column()] family of -** interfaces) then sqlite3_data_count(P) returns 0. -** ^The sqlite3_data_count(P) routine also returns 0 if P is a NULL pointer. -** ^The sqlite3_data_count(P) routine returns 0 if the previous call to -** [sqlite3_step](P) returned [SQLITE_DONE]. ^The sqlite3_data_count(P) -** will return non-zero if previous call to [sqlite3_step](P) returned -** [SQLITE_ROW], except in the case of the [PRAGMA incremental_vacuum] -** where it always returns zero since each step of that multi-step -** pragma returns 0 columns of data. -** -** See also: [sqlite3_column_count()] -*/ -SQLITE_API int sqlite3_data_count(sqlite3_stmt *pStmt); - -/* -** CAPI3REF: Fundamental Datatypes -** KEYWORDS: SQLITE_TEXT -** -** ^(Every value in SQLite has one of five fundamental datatypes: -** -**
      -**
    • 64-bit signed integer -**
    • 64-bit IEEE floating point number -**
    • string -**
    • BLOB -**
    • NULL -**
    )^ -** -** These constants are codes for each of those types. -** -** Note that the SQLITE_TEXT constant was also used in SQLite version 2 -** for a completely different meaning. Software that links against both -** SQLite version 2 and SQLite version 3 should use SQLITE3_TEXT, not -** SQLITE_TEXT. -*/ -#define SQLITE_INTEGER 1 -#define SQLITE_FLOAT 2 -#define SQLITE_BLOB 4 -#define SQLITE_NULL 5 -#ifdef SQLITE_TEXT -# undef SQLITE_TEXT -#else -# define SQLITE_TEXT 3 -#endif -#define SQLITE3_TEXT 3 - -/* -** CAPI3REF: Result Values From A Query -** KEYWORDS: {column access functions} -** METHOD: sqlite3_stmt -** -** Summary: -**
    -**
    sqlite3_column_blobBLOB result -**
    sqlite3_column_doubleREAL result -**
    sqlite3_column_int32-bit INTEGER result -**
    sqlite3_column_int6464-bit INTEGER result -**
    sqlite3_column_textUTF-8 TEXT result -**
    sqlite3_column_text16UTF-16 TEXT result -**
    sqlite3_column_valueThe result as an -** [sqlite3_value|unprotected sqlite3_value] object. -**
        -**
    sqlite3_column_bytesSize of a BLOB -** or a UTF-8 TEXT result in bytes -**
    sqlite3_column_bytes16   -** →  Size of UTF-16 -** TEXT in bytes -**
    sqlite3_column_typeDefault -** datatype of the result -**
    -** -** Details: -** -** ^These routines return information about a single column of the current -** result row of a query. ^In every case the first argument is a pointer -** to the [prepared statement] that is being evaluated (the [sqlite3_stmt*] -** that was returned from [sqlite3_prepare_v2()] or one of its variants) -** and the second argument is the index of the column for which information -** should be returned. ^The leftmost column of the result set has the index 0. -** ^The number of columns in the result can be determined using -** [sqlite3_column_count()]. -** -** If the SQL statement does not currently point to a valid row, or if the -** column index is out of range, the result is undefined. -** These routines may only be called when the most recent call to -** [sqlite3_step()] has returned [SQLITE_ROW] and neither -** [sqlite3_reset()] nor [sqlite3_finalize()] have been called subsequently. -** If any of these routines are called after [sqlite3_reset()] or -** [sqlite3_finalize()] or after [sqlite3_step()] has returned -** something other than [SQLITE_ROW], the results are undefined. -** If [sqlite3_step()] or [sqlite3_reset()] or [sqlite3_finalize()] -** are called from a different thread while any of these routines -** are pending, then the results are undefined. -** -** The first six interfaces (_blob, _double, _int, _int64, _text, and _text16) -** each return the value of a result column in a specific data format. If -** the result column is not initially in the requested format (for example, -** if the query returns an integer but the sqlite3_column_text() interface -** is used to extract the value) then an automatic type conversion is performed. -** -** ^The sqlite3_column_type() routine returns the -** [SQLITE_INTEGER | datatype code] for the initial data type -** of the result column. ^The returned value is one of [SQLITE_INTEGER], -** [SQLITE_FLOAT], [SQLITE_TEXT], [SQLITE_BLOB], or [SQLITE_NULL]. -** The return value of sqlite3_column_type() can be used to decide which -** of the first six interface should be used to extract the column value. -** The value returned by sqlite3_column_type() is only meaningful if no -** automatic type conversions have occurred for the value in question. -** After a type conversion, the result of calling sqlite3_column_type() -** is undefined, though harmless. Future -** versions of SQLite may change the behavior of sqlite3_column_type() -** following a type conversion. -** -** If the result is a BLOB or a TEXT string, then the sqlite3_column_bytes() -** or sqlite3_column_bytes16() interfaces can be used to determine the size -** of that BLOB or string. -** -** ^If the result is a BLOB or UTF-8 string then the sqlite3_column_bytes() -** routine returns the number of bytes in that BLOB or string. -** ^If the result is a UTF-16 string, then sqlite3_column_bytes() converts -** the string to UTF-8 and then returns the number of bytes. -** ^If the result is a numeric value then sqlite3_column_bytes() uses -** [sqlite3_snprintf()] to convert that value to a UTF-8 string and returns -** the number of bytes in that string. -** ^If the result is NULL, then sqlite3_column_bytes() returns zero. -** -** ^If the result is a BLOB or UTF-16 string then the sqlite3_column_bytes16() -** routine returns the number of bytes in that BLOB or string. -** ^If the result is a UTF-8 string, then sqlite3_column_bytes16() converts -** the string to UTF-16 and then returns the number of bytes. -** ^If the result is a numeric value then sqlite3_column_bytes16() uses -** [sqlite3_snprintf()] to convert that value to a UTF-16 string and returns -** the number of bytes in that string. -** ^If the result is NULL, then sqlite3_column_bytes16() returns zero. -** -** ^The values returned by [sqlite3_column_bytes()] and -** [sqlite3_column_bytes16()] do not include the zero terminators at the end -** of the string. ^For clarity: the values returned by -** [sqlite3_column_bytes()] and [sqlite3_column_bytes16()] are the number of -** bytes in the string, not the number of characters. -** -** ^Strings returned by sqlite3_column_text() and sqlite3_column_text16(), -** even empty strings, are always zero-terminated. ^The return -** value from sqlite3_column_blob() for a zero-length BLOB is a NULL pointer. -** -** ^Strings returned by sqlite3_column_text16() always have the endianness -** which is native to the platform, regardless of the text encoding set -** for the database. -** -** Warning: ^The object returned by [sqlite3_column_value()] is an -** [unprotected sqlite3_value] object. In a multithreaded environment, -** an unprotected sqlite3_value object may only be used safely with -** [sqlite3_bind_value()] and [sqlite3_result_value()]. -** If the [unprotected sqlite3_value] object returned by -** [sqlite3_column_value()] is used in any other way, including calls -** to routines like [sqlite3_value_int()], [sqlite3_value_text()], -** or [sqlite3_value_bytes()], the behavior is not threadsafe. -** Hence, the sqlite3_column_value() interface -** is normally only useful within the implementation of -** [application-defined SQL functions] or [virtual tables], not within -** top-level application code. -** -** These routines may attempt to convert the datatype of the result. -** ^For example, if the internal representation is FLOAT and a text result -** is requested, [sqlite3_snprintf()] is used internally to perform the -** conversion automatically. ^(The following table details the conversions -** that are applied: -** -**
    -** -**
    Internal
    Type
    Requested
    Type
    Conversion -** -**
    NULL INTEGER Result is 0 -**
    NULL FLOAT Result is 0.0 -**
    NULL TEXT Result is a NULL pointer -**
    NULL BLOB Result is a NULL pointer -**
    INTEGER FLOAT Convert from integer to float -**
    INTEGER TEXT ASCII rendering of the integer -**
    INTEGER BLOB Same as INTEGER->TEXT -**
    FLOAT INTEGER [CAST] to INTEGER -**
    FLOAT TEXT ASCII rendering of the float -**
    FLOAT BLOB [CAST] to BLOB -**
    TEXT INTEGER [CAST] to INTEGER -**
    TEXT FLOAT [CAST] to REAL -**
    TEXT BLOB No change -**
    BLOB INTEGER [CAST] to INTEGER -**
    BLOB FLOAT [CAST] to REAL -**
    BLOB TEXT [CAST] to TEXT, ensure zero terminator -**
    -**
    )^ -** -** Note that when type conversions occur, pointers returned by prior -** calls to sqlite3_column_blob(), sqlite3_column_text(), and/or -** sqlite3_column_text16() may be invalidated. -** Type conversions and pointer invalidations might occur -** in the following cases: -** -**
      -**
    • The initial content is a BLOB and sqlite3_column_text() or -** sqlite3_column_text16() is called. A zero-terminator might -** need to be added to the string.
    • -**
    • The initial content is UTF-8 text and sqlite3_column_bytes16() or -** sqlite3_column_text16() is called. The content must be converted -** to UTF-16.
    • -**
    • The initial content is UTF-16 text and sqlite3_column_bytes() or -** sqlite3_column_text() is called. The content must be converted -** to UTF-8.
    • -**
    -** -** ^Conversions between UTF-16be and UTF-16le are always done in place and do -** not invalidate a prior pointer, though of course the content of the buffer -** that the prior pointer references will have been modified. Other kinds -** of conversion are done in place when it is possible, but sometimes they -** are not possible and in those cases prior pointers are invalidated. -** -** The safest policy is to invoke these routines -** in one of the following ways: -** -**
      -**
    • sqlite3_column_text() followed by sqlite3_column_bytes()
    • -**
    • sqlite3_column_blob() followed by sqlite3_column_bytes()
    • -**
    • sqlite3_column_text16() followed by sqlite3_column_bytes16()
    • -**
    -** -** In other words, you should call sqlite3_column_text(), -** sqlite3_column_blob(), or sqlite3_column_text16() first to force the result -** into the desired format, then invoke sqlite3_column_bytes() or -** sqlite3_column_bytes16() to find the size of the result. Do not mix calls -** to sqlite3_column_text() or sqlite3_column_blob() with calls to -** sqlite3_column_bytes16(), and do not mix calls to sqlite3_column_text16() -** with calls to sqlite3_column_bytes(). -** -** ^The pointers returned are valid until a type conversion occurs as -** described above, or until [sqlite3_step()] or [sqlite3_reset()] or -** [sqlite3_finalize()] is called. ^The memory space used to hold strings -** and BLOBs is freed automatically. Do not pass the pointers returned -** from [sqlite3_column_blob()], [sqlite3_column_text()], etc. into -** [sqlite3_free()]. -** -** As long as the input parameters are correct, these routines will only -** fail if an out-of-memory error occurs during a format conversion. -** Only the following subset of interfaces are subject to out-of-memory -** errors: -** -**
      -**
    • sqlite3_column_blob() -**
    • sqlite3_column_text() -**
    • sqlite3_column_text16() -**
    • sqlite3_column_bytes() -**
    • sqlite3_column_bytes16() -**
    -** -** If an out-of-memory error occurs, then the return value from these -** routines is the same as if the column had contained an SQL NULL value. -** Valid SQL NULL returns can be distinguished from out-of-memory errors -** by invoking the [sqlite3_errcode()] immediately after the suspect -** return value is obtained and before any -** other SQLite interface is called on the same [database connection]. -*/ -SQLITE_API const void *sqlite3_column_blob(sqlite3_stmt*, int iCol); -SQLITE_API double sqlite3_column_double(sqlite3_stmt*, int iCol); -SQLITE_API int sqlite3_column_int(sqlite3_stmt*, int iCol); -SQLITE_API sqlite3_int64 sqlite3_column_int64(sqlite3_stmt*, int iCol); -SQLITE_API const unsigned char *sqlite3_column_text(sqlite3_stmt*, int iCol); -SQLITE_API const void *sqlite3_column_text16(sqlite3_stmt*, int iCol); -SQLITE_API sqlite3_value *sqlite3_column_value(sqlite3_stmt*, int iCol); -SQLITE_API int sqlite3_column_bytes(sqlite3_stmt*, int iCol); -SQLITE_API int sqlite3_column_bytes16(sqlite3_stmt*, int iCol); -SQLITE_API int sqlite3_column_type(sqlite3_stmt*, int iCol); - -/* -** CAPI3REF: Destroy A Prepared Statement Object -** DESTRUCTOR: sqlite3_stmt -** -** ^The sqlite3_finalize() function is called to delete a [prepared statement]. -** ^If the most recent evaluation of the statement encountered no errors -** or if the statement is never been evaluated, then sqlite3_finalize() returns -** SQLITE_OK. ^If the most recent evaluation of statement S failed, then -** sqlite3_finalize(S) returns the appropriate [error code] or -** [extended error code]. -** -** ^The sqlite3_finalize(S) routine can be called at any point during -** the life cycle of [prepared statement] S: -** before statement S is ever evaluated, after -** one or more calls to [sqlite3_reset()], or after any call -** to [sqlite3_step()] regardless of whether or not the statement has -** completed execution. -** -** ^Invoking sqlite3_finalize() on a NULL pointer is a harmless no-op. -** -** The application must finalize every [prepared statement] in order to avoid -** resource leaks. It is a grievous error for the application to try to use -** a prepared statement after it has been finalized. Any use of a prepared -** statement after it has been finalized can result in undefined and -** undesirable behavior such as segfaults and heap corruption. -*/ -SQLITE_API int sqlite3_finalize(sqlite3_stmt *pStmt); - -/* -** CAPI3REF: Reset A Prepared Statement Object -** METHOD: sqlite3_stmt -** -** The sqlite3_reset() function is called to reset a [prepared statement] -** object back to its initial state, ready to be re-executed. -** ^Any SQL statement variables that had values bound to them using -** the [sqlite3_bind_blob | sqlite3_bind_*() API] retain their values. -** Use [sqlite3_clear_bindings()] to reset the bindings. -** -** ^The [sqlite3_reset(S)] interface resets the [prepared statement] S -** back to the beginning of its program. -** -** ^If the most recent call to [sqlite3_step(S)] for the -** [prepared statement] S returned [SQLITE_ROW] or [SQLITE_DONE], -** or if [sqlite3_step(S)] has never before been called on S, -** then [sqlite3_reset(S)] returns [SQLITE_OK]. -** -** ^If the most recent call to [sqlite3_step(S)] for the -** [prepared statement] S indicated an error, then -** [sqlite3_reset(S)] returns an appropriate [error code]. -** -** ^The [sqlite3_reset(S)] interface does not change the values -** of any [sqlite3_bind_blob|bindings] on the [prepared statement] S. -*/ -SQLITE_API int sqlite3_reset(sqlite3_stmt *pStmt); - -/* -** CAPI3REF: Create Or Redefine SQL Functions -** KEYWORDS: {function creation routines} -** METHOD: sqlite3 -** -** ^These functions (collectively known as "function creation routines") -** are used to add SQL functions or aggregates or to redefine the behavior -** of existing SQL functions or aggregates. The only differences between -** the three "sqlite3_create_function*" routines are the text encoding -** expected for the second parameter (the name of the function being -** created) and the presence or absence of a destructor callback for -** the application data pointer. Function sqlite3_create_window_function() -** is similar, but allows the user to supply the extra callback functions -** needed by [aggregate window functions]. -** -** ^The first parameter is the [database connection] to which the SQL -** function is to be added. ^If an application uses more than one database -** connection then application-defined SQL functions must be added -** to each database connection separately. -** -** ^The second parameter is the name of the SQL function to be created or -** redefined. ^The length of the name is limited to 255 bytes in a UTF-8 -** representation, exclusive of the zero-terminator. ^Note that the name -** length limit is in UTF-8 bytes, not characters nor UTF-16 bytes. -** ^Any attempt to create a function with a longer name -** will result in [SQLITE_MISUSE] being returned. -** -** ^The third parameter (nArg) -** is the number of arguments that the SQL function or -** aggregate takes. ^If this parameter is -1, then the SQL function or -** aggregate may take any number of arguments between 0 and the limit -** set by [sqlite3_limit]([SQLITE_LIMIT_FUNCTION_ARG]). If the third -** parameter is less than -1 or greater than 127 then the behavior is -** undefined. -** -** ^The fourth parameter, eTextRep, specifies what -** [SQLITE_UTF8 | text encoding] this SQL function prefers for -** its parameters. The application should set this parameter to -** [SQLITE_UTF16LE] if the function implementation invokes -** [sqlite3_value_text16le()] on an input, or [SQLITE_UTF16BE] if the -** implementation invokes [sqlite3_value_text16be()] on an input, or -** [SQLITE_UTF16] if [sqlite3_value_text16()] is used, or [SQLITE_UTF8] -** otherwise. ^The same SQL function may be registered multiple times using -** different preferred text encodings, with different implementations for -** each encoding. -** ^When multiple implementations of the same function are available, SQLite -** will pick the one that involves the least amount of data conversion. -** -** ^The fourth parameter may optionally be ORed with [SQLITE_DETERMINISTIC] -** to signal that the function will always return the same result given -** the same inputs within a single SQL statement. Most SQL functions are -** deterministic. The built-in [random()] SQL function is an example of a -** function that is not deterministic. The SQLite query planner is able to -** perform additional optimizations on deterministic functions, so use -** of the [SQLITE_DETERMINISTIC] flag is recommended where possible. -** -** ^The fourth parameter may also optionally include the [SQLITE_DIRECTONLY] -** flag, which if present prevents the function from being invoked from -** within VIEWs, TRIGGERs, CHECK constraints, generated column expressions, -** index expressions, or the WHERE clause of partial indexes. -** -** For best security, the [SQLITE_DIRECTONLY] flag is recommended for -** all application-defined SQL functions that do not need to be -** used inside of triggers, view, CHECK constraints, or other elements of -** the database schema. This flags is especially recommended for SQL -** functions that have side effects or reveal internal application state. -** Without this flag, an attacker might be able to modify the schema of -** a database file to include invocations of the function with parameters -** chosen by the attacker, which the application will then execute when -** the database file is opened and read. -** -** ^(The fifth parameter is an arbitrary pointer. The implementation of the -** function can gain access to this pointer using [sqlite3_user_data()].)^ -** -** ^The sixth, seventh and eighth parameters passed to the three -** "sqlite3_create_function*" functions, xFunc, xStep and xFinal, are -** pointers to C-language functions that implement the SQL function or -** aggregate. ^A scalar SQL function requires an implementation of the xFunc -** callback only; NULL pointers must be passed as the xStep and xFinal -** parameters. ^An aggregate SQL function requires an implementation of xStep -** and xFinal and NULL pointer must be passed for xFunc. ^To delete an existing -** SQL function or aggregate, pass NULL pointers for all three function -** callbacks. -** -** ^The sixth, seventh, eighth and ninth parameters (xStep, xFinal, xValue -** and xInverse) passed to sqlite3_create_window_function are pointers to -** C-language callbacks that implement the new function. xStep and xFinal -** must both be non-NULL. xValue and xInverse may either both be NULL, in -** which case a regular aggregate function is created, or must both be -** non-NULL, in which case the new function may be used as either an aggregate -** or aggregate window function. More details regarding the implementation -** of aggregate window functions are -** [user-defined window functions|available here]. -** -** ^(If the final parameter to sqlite3_create_function_v2() or -** sqlite3_create_window_function() is not NULL, then it is destructor for -** the application data pointer. The destructor is invoked when the function -** is deleted, either by being overloaded or when the database connection -** closes.)^ ^The destructor is also invoked if the call to -** sqlite3_create_function_v2() fails. ^When the destructor callback is -** invoked, it is passed a single argument which is a copy of the application -** data pointer which was the fifth parameter to sqlite3_create_function_v2(). -** -** ^It is permitted to register multiple implementations of the same -** functions with the same name but with either differing numbers of -** arguments or differing preferred text encodings. ^SQLite will use -** the implementation that most closely matches the way in which the -** SQL function is used. ^A function implementation with a non-negative -** nArg parameter is a better match than a function implementation with -** a negative nArg. ^A function where the preferred text encoding -** matches the database encoding is a better -** match than a function where the encoding is different. -** ^A function where the encoding difference is between UTF16le and UTF16be -** is a closer match than a function where the encoding difference is -** between UTF8 and UTF16. -** -** ^Built-in functions may be overloaded by new application-defined functions. -** -** ^An application-defined function is permitted to call other -** SQLite interfaces. However, such calls must not -** close the database connection nor finalize or reset the prepared -** statement in which the function is running. -*/ -SQLITE_API int sqlite3_create_function( - sqlite3 *db, - const char *zFunctionName, - int nArg, - int eTextRep, - void *pApp, - void (*xFunc)(sqlite3_context*,int,sqlite3_value**), - void (*xStep)(sqlite3_context*,int,sqlite3_value**), - void (*xFinal)(sqlite3_context*) -); -SQLITE_API int sqlite3_create_function16( - sqlite3 *db, - const void *zFunctionName, - int nArg, - int eTextRep, - void *pApp, - void (*xFunc)(sqlite3_context*,int,sqlite3_value**), - void (*xStep)(sqlite3_context*,int,sqlite3_value**), - void (*xFinal)(sqlite3_context*) -); -SQLITE_API int sqlite3_create_function_v2( - sqlite3 *db, - const char *zFunctionName, - int nArg, - int eTextRep, - void *pApp, - void (*xFunc)(sqlite3_context*,int,sqlite3_value**), - void (*xStep)(sqlite3_context*,int,sqlite3_value**), - void (*xFinal)(sqlite3_context*), - void(*xDestroy)(void*) -); -SQLITE_API int sqlite3_create_window_function( - sqlite3 *db, - const char *zFunctionName, - int nArg, - int eTextRep, - void *pApp, - void (*xStep)(sqlite3_context*,int,sqlite3_value**), - void (*xFinal)(sqlite3_context*), - void (*xValue)(sqlite3_context*), - void (*xInverse)(sqlite3_context*,int,sqlite3_value**), - void(*xDestroy)(void*) -); - -/* -** CAPI3REF: Text Encodings -** -** These constant define integer codes that represent the various -** text encodings supported by SQLite. -*/ -#define SQLITE_UTF8 1 /* IMP: R-37514-35566 */ -#define SQLITE_UTF16LE 2 /* IMP: R-03371-37637 */ -#define SQLITE_UTF16BE 3 /* IMP: R-51971-34154 */ -#define SQLITE_UTF16 4 /* Use native byte order */ -#define SQLITE_ANY 5 /* Deprecated */ -#define SQLITE_UTF16_ALIGNED 8 /* sqlite3_create_collation only */ - -/* -** CAPI3REF: Function Flags -** -** These constants may be ORed together with the -** [SQLITE_UTF8 | preferred text encoding] as the fourth argument -** to [sqlite3_create_function()], [sqlite3_create_function16()], or -** [sqlite3_create_function_v2()]. -** -**
    -** [[SQLITE_DETERMINISTIC]]
    SQLITE_DETERMINISTIC
    -** The SQLITE_DETERMINISTIC flag means that the new function always gives -** the same output when the input parameters are the same. -** The [abs|abs() function] is deterministic, for example, but -** [randomblob|randomblob()] is not. Functions must -** be deterministic in order to be used in certain contexts such as -** with the WHERE clause of [partial indexes] or in [generated columns]. -** SQLite might also optimize deterministic functions by factoring them -** out of inner loops. -**
    -** -** [[SQLITE_DIRECTONLY]]
    SQLITE_DIRECTONLY
    -** The SQLITE_DIRECTONLY flag means that the function may only be invoked -** from top-level SQL, and cannot be used in VIEWs or TRIGGERs nor in -** schema structures such as [CHECK constraints], [DEFAULT clauses], -** [expression indexes], [partial indexes], or [generated columns]. -** The SQLITE_DIRECTONLY flags is a security feature which is recommended -** for all [application-defined SQL functions], and especially for functions -** that have side-effects or that could potentially leak sensitive -** information. -**
    -** -** [[SQLITE_INNOCUOUS]]
    SQLITE_INNOCUOUS
    -** The SQLITE_INNOCUOUS flag means that the function is unlikely -** to cause problems even if misused. An innocuous function should have -** no side effects and should not depend on any values other than its -** input parameters. The [abs|abs() function] is an example of an -** innocuous function. -** The [load_extension() SQL function] is not innocuous because of its -** side effects. -**

    SQLITE_INNOCUOUS is similar to SQLITE_DETERMINISTIC, but is not -** exactly the same. The [random|random() function] is an example of a -** function that is innocuous but not deterministic. -**

    Some heightened security settings -** ([SQLITE_DBCONFIG_TRUSTED_SCHEMA] and [PRAGMA trusted_schema=OFF]) -** disable the use of SQL functions inside views and triggers and in -** schema structures such as [CHECK constraints], [DEFAULT clauses], -** [expression indexes], [partial indexes], and [generated columns] unless -** the function is tagged with SQLITE_INNOCUOUS. Most built-in functions -** are innocuous. Developers are advised to avoid using the -** SQLITE_INNOCUOUS flag for application-defined functions unless the -** function has been carefully audited and found to be free of potentially -** security-adverse side-effects and information-leaks. -**

    -** -** [[SQLITE_SUBTYPE]]
    SQLITE_SUBTYPE
    -** The SQLITE_SUBTYPE flag indicates to SQLite that a function may call -** [sqlite3_value_subtype()] to inspect the sub-types of its arguments. -** Specifying this flag makes no difference for scalar or aggregate user -** functions. However, if it is not specified for a user-defined window -** function, then any sub-types belonging to arguments passed to the window -** function may be discarded before the window function is called (i.e. -** sqlite3_value_subtype() will always return 0). -**
    -**
    -*/ -#define SQLITE_DETERMINISTIC 0x000000800 -#define SQLITE_DIRECTONLY 0x000080000 -#define SQLITE_SUBTYPE 0x000100000 -#define SQLITE_INNOCUOUS 0x000200000 - -/* -** CAPI3REF: Deprecated Functions -** DEPRECATED -** -** These functions are [deprecated]. In order to maintain -** backwards compatibility with older code, these functions continue -** to be supported. However, new applications should avoid -** the use of these functions. To encourage programmers to avoid -** these functions, we will not explain what they do. -*/ -#ifndef SQLITE_OMIT_DEPRECATED -SQLITE_API SQLITE_DEPRECATED int sqlite3_aggregate_count(sqlite3_context*); -SQLITE_API SQLITE_DEPRECATED int sqlite3_expired(sqlite3_stmt*); -SQLITE_API SQLITE_DEPRECATED int sqlite3_transfer_bindings(sqlite3_stmt*, sqlite3_stmt*); -SQLITE_API SQLITE_DEPRECATED int sqlite3_global_recover(void); -SQLITE_API SQLITE_DEPRECATED void sqlite3_thread_cleanup(void); -SQLITE_API SQLITE_DEPRECATED int sqlite3_memory_alarm(void(*)(void*,sqlite3_int64,int), - void*,sqlite3_int64); -#endif - -/* -** CAPI3REF: Obtaining SQL Values -** METHOD: sqlite3_value -** -** Summary: -**
    -**
    sqlite3_value_blobBLOB value -**
    sqlite3_value_doubleREAL value -**
    sqlite3_value_int32-bit INTEGER value -**
    sqlite3_value_int6464-bit INTEGER value -**
    sqlite3_value_pointerPointer value -**
    sqlite3_value_textUTF-8 TEXT value -**
    sqlite3_value_text16UTF-16 TEXT value in -** the native byteorder -**
    sqlite3_value_text16beUTF-16be TEXT value -**
    sqlite3_value_text16leUTF-16le TEXT value -**
        -**
    sqlite3_value_bytesSize of a BLOB -** or a UTF-8 TEXT in bytes -**
    sqlite3_value_bytes16   -** →  Size of UTF-16 -** TEXT in bytes -**
    sqlite3_value_typeDefault -** datatype of the value -**
    sqlite3_value_numeric_type   -** →  Best numeric datatype of the value -**
    sqlite3_value_nochange   -** →  True if the column is unchanged in an UPDATE -** against a virtual table. -**
    sqlite3_value_frombind   -** →  True if value originated from a [bound parameter] -**
    -** -** Details: -** -** These routines extract type, size, and content information from -** [protected sqlite3_value] objects. Protected sqlite3_value objects -** are used to pass parameter information into the functions that -** implement [application-defined SQL functions] and [virtual tables]. -** -** These routines work only with [protected sqlite3_value] objects. -** Any attempt to use these routines on an [unprotected sqlite3_value] -** is not threadsafe. -** -** ^These routines work just like the corresponding [column access functions] -** except that these routines take a single [protected sqlite3_value] object -** pointer instead of a [sqlite3_stmt*] pointer and an integer column number. -** -** ^The sqlite3_value_text16() interface extracts a UTF-16 string -** in the native byte-order of the host machine. ^The -** sqlite3_value_text16be() and sqlite3_value_text16le() interfaces -** extract UTF-16 strings as big-endian and little-endian respectively. -** -** ^If [sqlite3_value] object V was initialized -** using [sqlite3_bind_pointer(S,I,P,X,D)] or [sqlite3_result_pointer(C,P,X,D)] -** and if X and Y are strings that compare equal according to strcmp(X,Y), -** then sqlite3_value_pointer(V,Y) will return the pointer P. ^Otherwise, -** sqlite3_value_pointer(V,Y) returns a NULL. The sqlite3_bind_pointer() -** routine is part of the [pointer passing interface] added for SQLite 3.20.0. -** -** ^(The sqlite3_value_type(V) interface returns the -** [SQLITE_INTEGER | datatype code] for the initial datatype of the -** [sqlite3_value] object V. The returned value is one of [SQLITE_INTEGER], -** [SQLITE_FLOAT], [SQLITE_TEXT], [SQLITE_BLOB], or [SQLITE_NULL].)^ -** Other interfaces might change the datatype for an sqlite3_value object. -** For example, if the datatype is initially SQLITE_INTEGER and -** sqlite3_value_text(V) is called to extract a text value for that -** integer, then subsequent calls to sqlite3_value_type(V) might return -** SQLITE_TEXT. Whether or not a persistent internal datatype conversion -** occurs is undefined and may change from one release of SQLite to the next. -** -** ^(The sqlite3_value_numeric_type() interface attempts to apply -** numeric affinity to the value. This means that an attempt is -** made to convert the value to an integer or floating point. If -** such a conversion is possible without loss of information (in other -** words, if the value is a string that looks like a number) -** then the conversion is performed. Otherwise no conversion occurs. -** The [SQLITE_INTEGER | datatype] after conversion is returned.)^ -** -** ^Within the [xUpdate] method of a [virtual table], the -** sqlite3_value_nochange(X) interface returns true if and only if -** the column corresponding to X is unchanged by the UPDATE operation -** that the xUpdate method call was invoked to implement and if -** and the prior [xColumn] method call that was invoked to extracted -** the value for that column returned without setting a result (probably -** because it queried [sqlite3_vtab_nochange()] and found that the column -** was unchanging). ^Within an [xUpdate] method, any value for which -** sqlite3_value_nochange(X) is true will in all other respects appear -** to be a NULL value. If sqlite3_value_nochange(X) is invoked anywhere other -** than within an [xUpdate] method call for an UPDATE statement, then -** the return value is arbitrary and meaningless. -** -** ^The sqlite3_value_frombind(X) interface returns non-zero if the -** value X originated from one of the [sqlite3_bind_int|sqlite3_bind()] -** interfaces. ^If X comes from an SQL literal value, or a table column, -** or an expression, then sqlite3_value_frombind(X) returns zero. -** -** Please pay particular attention to the fact that the pointer returned -** from [sqlite3_value_blob()], [sqlite3_value_text()], or -** [sqlite3_value_text16()] can be invalidated by a subsequent call to -** [sqlite3_value_bytes()], [sqlite3_value_bytes16()], [sqlite3_value_text()], -** or [sqlite3_value_text16()]. -** -** These routines must be called from the same thread as -** the SQL function that supplied the [sqlite3_value*] parameters. -** -** As long as the input parameter is correct, these routines can only -** fail if an out-of-memory error occurs during a format conversion. -** Only the following subset of interfaces are subject to out-of-memory -** errors: -** -**
      -**
    • sqlite3_value_blob() -**
    • sqlite3_value_text() -**
    • sqlite3_value_text16() -**
    • sqlite3_value_text16le() -**
    • sqlite3_value_text16be() -**
    • sqlite3_value_bytes() -**
    • sqlite3_value_bytes16() -**
    -** -** If an out-of-memory error occurs, then the return value from these -** routines is the same as if the column had contained an SQL NULL value. -** Valid SQL NULL returns can be distinguished from out-of-memory errors -** by invoking the [sqlite3_errcode()] immediately after the suspect -** return value is obtained and before any -** other SQLite interface is called on the same [database connection]. -*/ -SQLITE_API const void *sqlite3_value_blob(sqlite3_value*); -SQLITE_API double sqlite3_value_double(sqlite3_value*); -SQLITE_API int sqlite3_value_int(sqlite3_value*); -SQLITE_API sqlite3_int64 sqlite3_value_int64(sqlite3_value*); -SQLITE_API void *sqlite3_value_pointer(sqlite3_value*, const char*); -SQLITE_API const unsigned char *sqlite3_value_text(sqlite3_value*); -SQLITE_API const void *sqlite3_value_text16(sqlite3_value*); -SQLITE_API const void *sqlite3_value_text16le(sqlite3_value*); -SQLITE_API const void *sqlite3_value_text16be(sqlite3_value*); -SQLITE_API int sqlite3_value_bytes(sqlite3_value*); -SQLITE_API int sqlite3_value_bytes16(sqlite3_value*); -SQLITE_API int sqlite3_value_type(sqlite3_value*); -SQLITE_API int sqlite3_value_numeric_type(sqlite3_value*); -SQLITE_API int sqlite3_value_nochange(sqlite3_value*); -SQLITE_API int sqlite3_value_frombind(sqlite3_value*); - -/* -** CAPI3REF: Finding The Subtype Of SQL Values -** METHOD: sqlite3_value -** -** The sqlite3_value_subtype(V) function returns the subtype for -** an [application-defined SQL function] argument V. The subtype -** information can be used to pass a limited amount of context from -** one SQL function to another. Use the [sqlite3_result_subtype()] -** routine to set the subtype for the return value of an SQL function. -*/ -SQLITE_API unsigned int sqlite3_value_subtype(sqlite3_value*); - -/* -** CAPI3REF: Copy And Free SQL Values -** METHOD: sqlite3_value -** -** ^The sqlite3_value_dup(V) interface makes a copy of the [sqlite3_value] -** object D and returns a pointer to that copy. ^The [sqlite3_value] returned -** is a [protected sqlite3_value] object even if the input is not. -** ^The sqlite3_value_dup(V) interface returns NULL if V is NULL or if a -** memory allocation fails. ^If V is a [pointer value], then the result -** of sqlite3_value_dup(V) is a NULL value. -** -** ^The sqlite3_value_free(V) interface frees an [sqlite3_value] object -** previously obtained from [sqlite3_value_dup()]. ^If V is a NULL pointer -** then sqlite3_value_free(V) is a harmless no-op. -*/ -SQLITE_API sqlite3_value *sqlite3_value_dup(const sqlite3_value*); -SQLITE_API void sqlite3_value_free(sqlite3_value*); - -/* -** CAPI3REF: Obtain Aggregate Function Context -** METHOD: sqlite3_context -** -** Implementations of aggregate SQL functions use this -** routine to allocate memory for storing their state. -** -** ^The first time the sqlite3_aggregate_context(C,N) routine is called -** for a particular aggregate function, SQLite allocates -** N bytes of memory, zeroes out that memory, and returns a pointer -** to the new memory. ^On second and subsequent calls to -** sqlite3_aggregate_context() for the same aggregate function instance, -** the same buffer is returned. Sqlite3_aggregate_context() is normally -** called once for each invocation of the xStep callback and then one -** last time when the xFinal callback is invoked. ^(When no rows match -** an aggregate query, the xStep() callback of the aggregate function -** implementation is never called and xFinal() is called exactly once. -** In those cases, sqlite3_aggregate_context() might be called for the -** first time from within xFinal().)^ -** -** ^The sqlite3_aggregate_context(C,N) routine returns a NULL pointer -** when first called if N is less than or equal to zero or if a memory -** allocate error occurs. -** -** ^(The amount of space allocated by sqlite3_aggregate_context(C,N) is -** determined by the N parameter on first successful call. Changing the -** value of N in any subsequent call to sqlite3_aggregate_context() within -** the same aggregate function instance will not resize the memory -** allocation.)^ Within the xFinal callback, it is customary to set -** N=0 in calls to sqlite3_aggregate_context(C,N) so that no -** pointless memory allocations occur. -** -** ^SQLite automatically frees the memory allocated by -** sqlite3_aggregate_context() when the aggregate query concludes. -** -** The first parameter must be a copy of the -** [sqlite3_context | SQL function context] that is the first parameter -** to the xStep or xFinal callback routine that implements the aggregate -** function. -** -** This routine must be called from the same thread in which -** the aggregate SQL function is running. -*/ -SQLITE_API void *sqlite3_aggregate_context(sqlite3_context*, int nBytes); - -/* -** CAPI3REF: User Data For Functions -** METHOD: sqlite3_context -** -** ^The sqlite3_user_data() interface returns a copy of -** the pointer that was the pUserData parameter (the 5th parameter) -** of the [sqlite3_create_function()] -** and [sqlite3_create_function16()] routines that originally -** registered the application defined function. -** -** This routine must be called from the same thread in which -** the application-defined function is running. -*/ -SQLITE_API void *sqlite3_user_data(sqlite3_context*); - -/* -** CAPI3REF: Database Connection For Functions -** METHOD: sqlite3_context -** -** ^The sqlite3_context_db_handle() interface returns a copy of -** the pointer to the [database connection] (the 1st parameter) -** of the [sqlite3_create_function()] -** and [sqlite3_create_function16()] routines that originally -** registered the application defined function. -*/ -SQLITE_API sqlite3 *sqlite3_context_db_handle(sqlite3_context*); - -/* -** CAPI3REF: Function Auxiliary Data -** METHOD: sqlite3_context -** -** These functions may be used by (non-aggregate) SQL functions to -** associate metadata with argument values. If the same value is passed to -** multiple invocations of the same SQL function during query execution, under -** some circumstances the associated metadata may be preserved. An example -** of where this might be useful is in a regular-expression matching -** function. The compiled version of the regular expression can be stored as -** metadata associated with the pattern string. -** Then as long as the pattern string remains the same, -** the compiled regular expression can be reused on multiple -** invocations of the same function. -** -** ^The sqlite3_get_auxdata(C,N) interface returns a pointer to the metadata -** associated by the sqlite3_set_auxdata(C,N,P,X) function with the Nth argument -** value to the application-defined function. ^N is zero for the left-most -** function argument. ^If there is no metadata -** associated with the function argument, the sqlite3_get_auxdata(C,N) interface -** returns a NULL pointer. -** -** ^The sqlite3_set_auxdata(C,N,P,X) interface saves P as metadata for the N-th -** argument of the application-defined function. ^Subsequent -** calls to sqlite3_get_auxdata(C,N) return P from the most recent -** sqlite3_set_auxdata(C,N,P,X) call if the metadata is still valid or -** NULL if the metadata has been discarded. -** ^After each call to sqlite3_set_auxdata(C,N,P,X) where X is not NULL, -** SQLite will invoke the destructor function X with parameter P exactly -** once, when the metadata is discarded. -** SQLite is free to discard the metadata at any time, including:
      -**
    • ^(when the corresponding function parameter changes)^, or -**
    • ^(when [sqlite3_reset()] or [sqlite3_finalize()] is called for the -** SQL statement)^, or -**
    • ^(when sqlite3_set_auxdata() is invoked again on the same -** parameter)^, or -**
    • ^(during the original sqlite3_set_auxdata() call when a memory -** allocation error occurs.)^
    -** -** Note the last bullet in particular. The destructor X in -** sqlite3_set_auxdata(C,N,P,X) might be called immediately, before the -** sqlite3_set_auxdata() interface even returns. Hence sqlite3_set_auxdata() -** should be called near the end of the function implementation and the -** function implementation should not make any use of P after -** sqlite3_set_auxdata() has been called. -** -** ^(In practice, metadata is preserved between function calls for -** function parameters that are compile-time constants, including literal -** values and [parameters] and expressions composed from the same.)^ -** -** The value of the N parameter to these interfaces should be non-negative. -** Future enhancements may make use of negative N values to define new -** kinds of function caching behavior. -** -** These routines must be called from the same thread in which -** the SQL function is running. -*/ -SQLITE_API void *sqlite3_get_auxdata(sqlite3_context*, int N); -SQLITE_API void sqlite3_set_auxdata(sqlite3_context*, int N, void*, void (*)(void*)); - - -/* -** CAPI3REF: Constants Defining Special Destructor Behavior -** -** These are special values for the destructor that is passed in as the -** final argument to routines like [sqlite3_result_blob()]. ^If the destructor -** argument is SQLITE_STATIC, it means that the content pointer is constant -** and will never change. It does not need to be destroyed. ^The -** SQLITE_TRANSIENT value means that the content will likely change in -** the near future and that SQLite should make its own private copy of -** the content before returning. -** -** The typedef is necessary to work around problems in certain -** C++ compilers. -*/ -typedef void (*sqlite3_destructor_type)(void*); -#define SQLITE_STATIC ((sqlite3_destructor_type)0) -#define SQLITE_TRANSIENT ((sqlite3_destructor_type)-1) - -/* -** CAPI3REF: Setting The Result Of An SQL Function -** METHOD: sqlite3_context -** -** These routines are used by the xFunc or xFinal callbacks that -** implement SQL functions and aggregates. See -** [sqlite3_create_function()] and [sqlite3_create_function16()] -** for additional information. -** -** These functions work very much like the [parameter binding] family of -** functions used to bind values to host parameters in prepared statements. -** Refer to the [SQL parameter] documentation for additional information. -** -** ^The sqlite3_result_blob() interface sets the result from -** an application-defined function to be the BLOB whose content is pointed -** to by the second parameter and which is N bytes long where N is the -** third parameter. -** -** ^The sqlite3_result_zeroblob(C,N) and sqlite3_result_zeroblob64(C,N) -** interfaces set the result of the application-defined function to be -** a BLOB containing all zero bytes and N bytes in size. -** -** ^The sqlite3_result_double() interface sets the result from -** an application-defined function to be a floating point value specified -** by its 2nd argument. -** -** ^The sqlite3_result_error() and sqlite3_result_error16() functions -** cause the implemented SQL function to throw an exception. -** ^SQLite uses the string pointed to by the -** 2nd parameter of sqlite3_result_error() or sqlite3_result_error16() -** as the text of an error message. ^SQLite interprets the error -** message string from sqlite3_result_error() as UTF-8. ^SQLite -** interprets the string from sqlite3_result_error16() as UTF-16 using -** the same [byte-order determination rules] as [sqlite3_bind_text16()]. -** ^If the third parameter to sqlite3_result_error() -** or sqlite3_result_error16() is negative then SQLite takes as the error -** message all text up through the first zero character. -** ^If the third parameter to sqlite3_result_error() or -** sqlite3_result_error16() is non-negative then SQLite takes that many -** bytes (not characters) from the 2nd parameter as the error message. -** ^The sqlite3_result_error() and sqlite3_result_error16() -** routines make a private copy of the error message text before -** they return. Hence, the calling function can deallocate or -** modify the text after they return without harm. -** ^The sqlite3_result_error_code() function changes the error code -** returned by SQLite as a result of an error in a function. ^By default, -** the error code is SQLITE_ERROR. ^A subsequent call to sqlite3_result_error() -** or sqlite3_result_error16() resets the error code to SQLITE_ERROR. -** -** ^The sqlite3_result_error_toobig() interface causes SQLite to throw an -** error indicating that a string or BLOB is too long to represent. -** -** ^The sqlite3_result_error_nomem() interface causes SQLite to throw an -** error indicating that a memory allocation failed. -** -** ^The sqlite3_result_int() interface sets the return value -** of the application-defined function to be the 32-bit signed integer -** value given in the 2nd argument. -** ^The sqlite3_result_int64() interface sets the return value -** of the application-defined function to be the 64-bit signed integer -** value given in the 2nd argument. -** -** ^The sqlite3_result_null() interface sets the return value -** of the application-defined function to be NULL. -** -** ^The sqlite3_result_text(), sqlite3_result_text16(), -** sqlite3_result_text16le(), and sqlite3_result_text16be() interfaces -** set the return value of the application-defined function to be -** a text string which is represented as UTF-8, UTF-16 native byte order, -** UTF-16 little endian, or UTF-16 big endian, respectively. -** ^The sqlite3_result_text64() interface sets the return value of an -** application-defined function to be a text string in an encoding -** specified by the fifth (and last) parameter, which must be one -** of [SQLITE_UTF8], [SQLITE_UTF16], [SQLITE_UTF16BE], or [SQLITE_UTF16LE]. -** ^SQLite takes the text result from the application from -** the 2nd parameter of the sqlite3_result_text* interfaces. -** ^If the 3rd parameter to the sqlite3_result_text* interfaces -** is negative, then SQLite takes result text from the 2nd parameter -** through the first zero character. -** ^If the 3rd parameter to the sqlite3_result_text* interfaces -** is non-negative, then as many bytes (not characters) of the text -** pointed to by the 2nd parameter are taken as the application-defined -** function result. If the 3rd parameter is non-negative, then it -** must be the byte offset into the string where the NUL terminator would -** appear if the string where NUL terminated. If any NUL characters occur -** in the string at a byte offset that is less than the value of the 3rd -** parameter, then the resulting string will contain embedded NULs and the -** result of expressions operating on strings with embedded NULs is undefined. -** ^If the 4th parameter to the sqlite3_result_text* interfaces -** or sqlite3_result_blob is a non-NULL pointer, then SQLite calls that -** function as the destructor on the text or BLOB result when it has -** finished using that result. -** ^If the 4th parameter to the sqlite3_result_text* interfaces or to -** sqlite3_result_blob is the special constant SQLITE_STATIC, then SQLite -** assumes that the text or BLOB result is in constant space and does not -** copy the content of the parameter nor call a destructor on the content -** when it has finished using that result. -** ^If the 4th parameter to the sqlite3_result_text* interfaces -** or sqlite3_result_blob is the special constant SQLITE_TRANSIENT -** then SQLite makes a copy of the result into space obtained -** from [sqlite3_malloc()] before it returns. -** -** ^For the sqlite3_result_text16(), sqlite3_result_text16le(), and -** sqlite3_result_text16be() routines, and for sqlite3_result_text64() -** when the encoding is not UTF8, if the input UTF16 begins with a -** byte-order mark (BOM, U+FEFF) then the BOM is removed from the -** string and the rest of the string is interpreted according to the -** byte-order specified by the BOM. ^The byte-order specified by -** the BOM at the beginning of the text overrides the byte-order -** specified by the interface procedure. ^So, for example, if -** sqlite3_result_text16le() is invoked with text that begins -** with bytes 0xfe, 0xff (a big-endian byte-order mark) then the -** first two bytes of input are skipped and the remaining input -** is interpreted as UTF16BE text. -** -** ^For UTF16 input text to the sqlite3_result_text16(), -** sqlite3_result_text16be(), sqlite3_result_text16le(), and -** sqlite3_result_text64() routines, if the text contains invalid -** UTF16 characters, the invalid characters might be converted -** into the unicode replacement character, U+FFFD. -** -** ^The sqlite3_result_value() interface sets the result of -** the application-defined function to be a copy of the -** [unprotected sqlite3_value] object specified by the 2nd parameter. ^The -** sqlite3_result_value() interface makes a copy of the [sqlite3_value] -** so that the [sqlite3_value] specified in the parameter may change or -** be deallocated after sqlite3_result_value() returns without harm. -** ^A [protected sqlite3_value] object may always be used where an -** [unprotected sqlite3_value] object is required, so either -** kind of [sqlite3_value] object can be used with this interface. -** -** ^The sqlite3_result_pointer(C,P,T,D) interface sets the result to an -** SQL NULL value, just like [sqlite3_result_null(C)], except that it -** also associates the host-language pointer P or type T with that -** NULL value such that the pointer can be retrieved within an -** [application-defined SQL function] using [sqlite3_value_pointer()]. -** ^If the D parameter is not NULL, then it is a pointer to a destructor -** for the P parameter. ^SQLite invokes D with P as its only argument -** when SQLite is finished with P. The T parameter should be a static -** string and preferably a string literal. The sqlite3_result_pointer() -** routine is part of the [pointer passing interface] added for SQLite 3.20.0. -** -** If these routines are called from within the different thread -** than the one containing the application-defined function that received -** the [sqlite3_context] pointer, the results are undefined. -*/ -SQLITE_API void sqlite3_result_blob(sqlite3_context*, const void*, int, void(*)(void*)); -SQLITE_API void sqlite3_result_blob64(sqlite3_context*,const void*, - sqlite3_uint64,void(*)(void*)); -SQLITE_API void sqlite3_result_double(sqlite3_context*, double); -SQLITE_API void sqlite3_result_error(sqlite3_context*, const char*, int); -SQLITE_API void sqlite3_result_error16(sqlite3_context*, const void*, int); -SQLITE_API void sqlite3_result_error_toobig(sqlite3_context*); -SQLITE_API void sqlite3_result_error_nomem(sqlite3_context*); -SQLITE_API void sqlite3_result_error_code(sqlite3_context*, int); -SQLITE_API void sqlite3_result_int(sqlite3_context*, int); -SQLITE_API void sqlite3_result_int64(sqlite3_context*, sqlite3_int64); -SQLITE_API void sqlite3_result_null(sqlite3_context*); -SQLITE_API void sqlite3_result_text(sqlite3_context*, const char*, int, void(*)(void*)); -SQLITE_API void sqlite3_result_text64(sqlite3_context*, const char*,sqlite3_uint64, - void(*)(void*), unsigned char encoding); -SQLITE_API void sqlite3_result_text16(sqlite3_context*, const void*, int, void(*)(void*)); -SQLITE_API void sqlite3_result_text16le(sqlite3_context*, const void*, int,void(*)(void*)); -SQLITE_API void sqlite3_result_text16be(sqlite3_context*, const void*, int,void(*)(void*)); -SQLITE_API void sqlite3_result_value(sqlite3_context*, sqlite3_value*); -SQLITE_API void sqlite3_result_pointer(sqlite3_context*, void*,const char*,void(*)(void*)); -SQLITE_API void sqlite3_result_zeroblob(sqlite3_context*, int n); -SQLITE_API int sqlite3_result_zeroblob64(sqlite3_context*, sqlite3_uint64 n); - - -/* -** CAPI3REF: Setting The Subtype Of An SQL Function -** METHOD: sqlite3_context -** -** The sqlite3_result_subtype(C,T) function causes the subtype of -** the result from the [application-defined SQL function] with -** [sqlite3_context] C to be the value T. Only the lower 8 bits -** of the subtype T are preserved in current versions of SQLite; -** higher order bits are discarded. -** The number of subtype bytes preserved by SQLite might increase -** in future releases of SQLite. -*/ -SQLITE_API void sqlite3_result_subtype(sqlite3_context*,unsigned int); - -/* -** CAPI3REF: Define New Collating Sequences -** METHOD: sqlite3 -** -** ^These functions add, remove, or modify a [collation] associated -** with the [database connection] specified as the first argument. -** -** ^The name of the collation is a UTF-8 string -** for sqlite3_create_collation() and sqlite3_create_collation_v2() -** and a UTF-16 string in native byte order for sqlite3_create_collation16(). -** ^Collation names that compare equal according to [sqlite3_strnicmp()] are -** considered to be the same name. -** -** ^(The third argument (eTextRep) must be one of the constants: -**
      -**
    • [SQLITE_UTF8], -**
    • [SQLITE_UTF16LE], -**
    • [SQLITE_UTF16BE], -**
    • [SQLITE_UTF16], or -**
    • [SQLITE_UTF16_ALIGNED]. -**
    )^ -** ^The eTextRep argument determines the encoding of strings passed -** to the collating function callback, xCompare. -** ^The [SQLITE_UTF16] and [SQLITE_UTF16_ALIGNED] values for eTextRep -** force strings to be UTF16 with native byte order. -** ^The [SQLITE_UTF16_ALIGNED] value for eTextRep forces strings to begin -** on an even byte address. -** -** ^The fourth argument, pArg, is an application data pointer that is passed -** through as the first argument to the collating function callback. -** -** ^The fifth argument, xCompare, is a pointer to the collating function. -** ^Multiple collating functions can be registered using the same name but -** with different eTextRep parameters and SQLite will use whichever -** function requires the least amount of data transformation. -** ^If the xCompare argument is NULL then the collating function is -** deleted. ^When all collating functions having the same name are deleted, -** that collation is no longer usable. -** -** ^The collating function callback is invoked with a copy of the pArg -** application data pointer and with two strings in the encoding specified -** by the eTextRep argument. The two integer parameters to the collating -** function callback are the length of the two strings, in bytes. The collating -** function must return an integer that is negative, zero, or positive -** if the first string is less than, equal to, or greater than the second, -** respectively. A collating function must always return the same answer -** given the same inputs. If two or more collating functions are registered -** to the same collation name (using different eTextRep values) then all -** must give an equivalent answer when invoked with equivalent strings. -** The collating function must obey the following properties for all -** strings A, B, and C: -** -**
      -**
    1. If A==B then B==A. -**
    2. If A==B and B==C then A==C. -**
    3. If A<B THEN B>A. -**
    4. If A<B and B<C then A<C. -**
    -** -** If a collating function fails any of the above constraints and that -** collating function is registered and used, then the behavior of SQLite -** is undefined. -** -** ^The sqlite3_create_collation_v2() works like sqlite3_create_collation() -** with the addition that the xDestroy callback is invoked on pArg when -** the collating function is deleted. -** ^Collating functions are deleted when they are overridden by later -** calls to the collation creation functions or when the -** [database connection] is closed using [sqlite3_close()]. -** -** ^The xDestroy callback is not called if the -** sqlite3_create_collation_v2() function fails. Applications that invoke -** sqlite3_create_collation_v2() with a non-NULL xDestroy argument should -** check the return code and dispose of the application data pointer -** themselves rather than expecting SQLite to deal with it for them. -** This is different from every other SQLite interface. The inconsistency -** is unfortunate but cannot be changed without breaking backwards -** compatibility. -** -** See also: [sqlite3_collation_needed()] and [sqlite3_collation_needed16()]. -*/ -SQLITE_API int sqlite3_create_collation( - sqlite3*, - const char *zName, - int eTextRep, - void *pArg, - int(*xCompare)(void*,int,const void*,int,const void*) -); -SQLITE_API int sqlite3_create_collation_v2( - sqlite3*, - const char *zName, - int eTextRep, - void *pArg, - int(*xCompare)(void*,int,const void*,int,const void*), - void(*xDestroy)(void*) -); -SQLITE_API int sqlite3_create_collation16( - sqlite3*, - const void *zName, - int eTextRep, - void *pArg, - int(*xCompare)(void*,int,const void*,int,const void*) -); - -/* -** CAPI3REF: Collation Needed Callbacks -** METHOD: sqlite3 -** -** ^To avoid having to register all collation sequences before a database -** can be used, a single callback function may be registered with the -** [database connection] to be invoked whenever an undefined collation -** sequence is required. -** -** ^If the function is registered using the sqlite3_collation_needed() API, -** then it is passed the names of undefined collation sequences as strings -** encoded in UTF-8. ^If sqlite3_collation_needed16() is used, -** the names are passed as UTF-16 in machine native byte order. -** ^A call to either function replaces the existing collation-needed callback. -** -** ^(When the callback is invoked, the first argument passed is a copy -** of the second argument to sqlite3_collation_needed() or -** sqlite3_collation_needed16(). The second argument is the database -** connection. The third argument is one of [SQLITE_UTF8], [SQLITE_UTF16BE], -** or [SQLITE_UTF16LE], indicating the most desirable form of the collation -** sequence function required. The fourth parameter is the name of the -** required collation sequence.)^ -** -** The callback function should register the desired collation using -** [sqlite3_create_collation()], [sqlite3_create_collation16()], or -** [sqlite3_create_collation_v2()]. -*/ -SQLITE_API int sqlite3_collation_needed( - sqlite3*, - void*, - void(*)(void*,sqlite3*,int eTextRep,const char*) -); -SQLITE_API int sqlite3_collation_needed16( - sqlite3*, - void*, - void(*)(void*,sqlite3*,int eTextRep,const void*) -); - -#ifdef SQLITE_ENABLE_CEROD -/* -** Specify the activation key for a CEROD database. Unless -** activated, none of the CEROD routines will work. -*/ -SQLITE_API void sqlite3_activate_cerod( - const char *zPassPhrase /* Activation phrase */ -); -#endif - -/* -** CAPI3REF: Suspend Execution For A Short Time -** -** The sqlite3_sleep() function causes the current thread to suspend execution -** for at least a number of milliseconds specified in its parameter. -** -** If the operating system does not support sleep requests with -** millisecond time resolution, then the time will be rounded up to -** the nearest second. The number of milliseconds of sleep actually -** requested from the operating system is returned. -** -** ^SQLite implements this interface by calling the xSleep() -** method of the default [sqlite3_vfs] object. If the xSleep() method -** of the default VFS is not implemented correctly, or not implemented at -** all, then the behavior of sqlite3_sleep() may deviate from the description -** in the previous paragraphs. -*/ -SQLITE_API int sqlite3_sleep(int); - -/* -** CAPI3REF: Name Of The Folder Holding Temporary Files -** -** ^(If this global variable is made to point to a string which is -** the name of a folder (a.k.a. directory), then all temporary files -** created by SQLite when using a built-in [sqlite3_vfs | VFS] -** will be placed in that directory.)^ ^If this variable -** is a NULL pointer, then SQLite performs a search for an appropriate -** temporary file directory. -** -** Applications are strongly discouraged from using this global variable. -** It is required to set a temporary folder on Windows Runtime (WinRT). -** But for all other platforms, it is highly recommended that applications -** neither read nor write this variable. This global variable is a relic -** that exists for backwards compatibility of legacy applications and should -** be avoided in new projects. -** -** It is not safe to read or modify this variable in more than one -** thread at a time. It is not safe to read or modify this variable -** if a [database connection] is being used at the same time in a separate -** thread. -** It is intended that this variable be set once -** as part of process initialization and before any SQLite interface -** routines have been called and that this variable remain unchanged -** thereafter. -** -** ^The [temp_store_directory pragma] may modify this variable and cause -** it to point to memory obtained from [sqlite3_malloc]. ^Furthermore, -** the [temp_store_directory pragma] always assumes that any string -** that this variable points to is held in memory obtained from -** [sqlite3_malloc] and the pragma may attempt to free that memory -** using [sqlite3_free]. -** Hence, if this variable is modified directly, either it should be -** made NULL or made to point to memory obtained from [sqlite3_malloc] -** or else the use of the [temp_store_directory pragma] should be avoided. -** Except when requested by the [temp_store_directory pragma], SQLite -** does not free the memory that sqlite3_temp_directory points to. If -** the application wants that memory to be freed, it must do -** so itself, taking care to only do so after all [database connection] -** objects have been destroyed. -** -** Note to Windows Runtime users: The temporary directory must be set -** prior to calling [sqlite3_open] or [sqlite3_open_v2]. Otherwise, various -** features that require the use of temporary files may fail. Here is an -** example of how to do this using C++ with the Windows Runtime: -** -**
    -** LPCWSTR zPath = Windows::Storage::ApplicationData::Current->
    -**       TemporaryFolder->Path->Data();
    -** char zPathBuf[MAX_PATH + 1];
    -** memset(zPathBuf, 0, sizeof(zPathBuf));
    -** WideCharToMultiByte(CP_UTF8, 0, zPath, -1, zPathBuf, sizeof(zPathBuf),
    -**       NULL, NULL);
    -** sqlite3_temp_directory = sqlite3_mprintf("%s", zPathBuf);
    -** 
    -*/ -SQLITE_API SQLITE_EXTERN char *sqlite3_temp_directory; - -/* -** CAPI3REF: Name Of The Folder Holding Database Files -** -** ^(If this global variable is made to point to a string which is -** the name of a folder (a.k.a. directory), then all database files -** specified with a relative pathname and created or accessed by -** SQLite when using a built-in windows [sqlite3_vfs | VFS] will be assumed -** to be relative to that directory.)^ ^If this variable is a NULL -** pointer, then SQLite assumes that all database files specified -** with a relative pathname are relative to the current directory -** for the process. Only the windows VFS makes use of this global -** variable; it is ignored by the unix VFS. -** -** Changing the value of this variable while a database connection is -** open can result in a corrupt database. -** -** It is not safe to read or modify this variable in more than one -** thread at a time. It is not safe to read or modify this variable -** if a [database connection] is being used at the same time in a separate -** thread. -** It is intended that this variable be set once -** as part of process initialization and before any SQLite interface -** routines have been called and that this variable remain unchanged -** thereafter. -** -** ^The [data_store_directory pragma] may modify this variable and cause -** it to point to memory obtained from [sqlite3_malloc]. ^Furthermore, -** the [data_store_directory pragma] always assumes that any string -** that this variable points to is held in memory obtained from -** [sqlite3_malloc] and the pragma may attempt to free that memory -** using [sqlite3_free]. -** Hence, if this variable is modified directly, either it should be -** made NULL or made to point to memory obtained from [sqlite3_malloc] -** or else the use of the [data_store_directory pragma] should be avoided. -*/ -SQLITE_API SQLITE_EXTERN char *sqlite3_data_directory; - -/* -** CAPI3REF: Win32 Specific Interface -** -** These interfaces are available only on Windows. The -** [sqlite3_win32_set_directory] interface is used to set the value associated -** with the [sqlite3_temp_directory] or [sqlite3_data_directory] variable, to -** zValue, depending on the value of the type parameter. The zValue parameter -** should be NULL to cause the previous value to be freed via [sqlite3_free]; -** a non-NULL value will be copied into memory obtained from [sqlite3_malloc] -** prior to being used. The [sqlite3_win32_set_directory] interface returns -** [SQLITE_OK] to indicate success, [SQLITE_ERROR] if the type is unsupported, -** or [SQLITE_NOMEM] if memory could not be allocated. The value of the -** [sqlite3_data_directory] variable is intended to act as a replacement for -** the current directory on the sub-platforms of Win32 where that concept is -** not present, e.g. WinRT and UWP. The [sqlite3_win32_set_directory8] and -** [sqlite3_win32_set_directory16] interfaces behave exactly the same as the -** sqlite3_win32_set_directory interface except the string parameter must be -** UTF-8 or UTF-16, respectively. -*/ -SQLITE_API int sqlite3_win32_set_directory( - unsigned long type, /* Identifier for directory being set or reset */ - void *zValue /* New value for directory being set or reset */ -); -SQLITE_API int sqlite3_win32_set_directory8(unsigned long type, const char *zValue); -SQLITE_API int sqlite3_win32_set_directory16(unsigned long type, const void *zValue); - -/* -** CAPI3REF: Win32 Directory Types -** -** These macros are only available on Windows. They define the allowed values -** for the type argument to the [sqlite3_win32_set_directory] interface. -*/ -#define SQLITE_WIN32_DATA_DIRECTORY_TYPE 1 -#define SQLITE_WIN32_TEMP_DIRECTORY_TYPE 2 - -/* -** CAPI3REF: Test For Auto-Commit Mode -** KEYWORDS: {autocommit mode} -** METHOD: sqlite3 -** -** ^The sqlite3_get_autocommit() interface returns non-zero or -** zero if the given database connection is or is not in autocommit mode, -** respectively. ^Autocommit mode is on by default. -** ^Autocommit mode is disabled by a [BEGIN] statement. -** ^Autocommit mode is re-enabled by a [COMMIT] or [ROLLBACK]. -** -** If certain kinds of errors occur on a statement within a multi-statement -** transaction (errors including [SQLITE_FULL], [SQLITE_IOERR], -** [SQLITE_NOMEM], [SQLITE_BUSY], and [SQLITE_INTERRUPT]) then the -** transaction might be rolled back automatically. The only way to -** find out whether SQLite automatically rolled back the transaction after -** an error is to use this function. -** -** If another thread changes the autocommit status of the database -** connection while this routine is running, then the return value -** is undefined. -*/ -SQLITE_API int sqlite3_get_autocommit(sqlite3*); - -/* -** CAPI3REF: Find The Database Handle Of A Prepared Statement -** METHOD: sqlite3_stmt -** -** ^The sqlite3_db_handle interface returns the [database connection] handle -** to which a [prepared statement] belongs. ^The [database connection] -** returned by sqlite3_db_handle is the same [database connection] -** that was the first argument -** to the [sqlite3_prepare_v2()] call (or its variants) that was used to -** create the statement in the first place. -*/ -SQLITE_API sqlite3 *sqlite3_db_handle(sqlite3_stmt*); - -/* -** CAPI3REF: Return The Schema Name For A Database Connection -** METHOD: sqlite3 -** -** ^The sqlite3_db_name(D,N) interface returns a pointer to the schema name -** for the N-th database on database connection D, or a NULL pointer of N is -** out of range. An N value of 0 means the main database file. An N of 1 is -** the "temp" schema. Larger values of N correspond to various ATTACH-ed -** databases. -** -** Space to hold the string that is returned by sqlite3_db_name() is managed -** by SQLite itself. The string might be deallocated by any operation that -** changes the schema, including [ATTACH] or [DETACH] or calls to -** [sqlite3_serialize()] or [sqlite3_deserialize()], even operations that -** occur on a different thread. Applications that need to -** remember the string long-term should make their own copy. Applications that -** are accessing the same database connection simultaneously on multiple -** threads should mutex-protect calls to this API and should make their own -** private copy of the result prior to releasing the mutex. -*/ -SQLITE_API const char *sqlite3_db_name(sqlite3 *db, int N); - -/* -** CAPI3REF: Return The Filename For A Database Connection -** METHOD: sqlite3 -** -** ^The sqlite3_db_filename(D,N) interface returns a pointer to the filename -** associated with database N of connection D. -** ^If there is no attached database N on the database -** connection D, or if database N is a temporary or in-memory database, then -** this function will return either a NULL pointer or an empty string. -** -** ^The string value returned by this routine is owned and managed by -** the database connection. ^The value will be valid until the database N -** is [DETACH]-ed or until the database connection closes. -** -** ^The filename returned by this function is the output of the -** xFullPathname method of the [VFS]. ^In other words, the filename -** will be an absolute pathname, even if the filename used -** to open the database originally was a URI or relative pathname. -** -** If the filename pointer returned by this routine is not NULL, then it -** can be used as the filename input parameter to these routines: -**
      -**
    • [sqlite3_uri_parameter()] -**
    • [sqlite3_uri_boolean()] -**
    • [sqlite3_uri_int64()] -**
    • [sqlite3_filename_database()] -**
    • [sqlite3_filename_journal()] -**
    • [sqlite3_filename_wal()] -**
    -*/ -SQLITE_API const char *sqlite3_db_filename(sqlite3 *db, const char *zDbName); - -/* -** CAPI3REF: Determine if a database is read-only -** METHOD: sqlite3 -** -** ^The sqlite3_db_readonly(D,N) interface returns 1 if the database N -** of connection D is read-only, 0 if it is read/write, or -1 if N is not -** the name of a database on connection D. -*/ -SQLITE_API int sqlite3_db_readonly(sqlite3 *db, const char *zDbName); - -/* -** CAPI3REF: Determine the transaction state of a database -** METHOD: sqlite3 -** -** ^The sqlite3_txn_state(D,S) interface returns the current -** [transaction state] of schema S in database connection D. ^If S is NULL, -** then the highest transaction state of any schema on database connection D -** is returned. Transaction states are (in order of lowest to highest): -**
      -**
    1. SQLITE_TXN_NONE -**
    2. SQLITE_TXN_READ -**
    3. SQLITE_TXN_WRITE -**
    -** ^If the S argument to sqlite3_txn_state(D,S) is not the name of -** a valid schema, then -1 is returned. -*/ -SQLITE_API int sqlite3_txn_state(sqlite3*,const char *zSchema); - -/* -** CAPI3REF: Allowed return values from [sqlite3_txn_state()] -** KEYWORDS: {transaction state} -** -** These constants define the current transaction state of a database file. -** ^The [sqlite3_txn_state(D,S)] interface returns one of these -** constants in order to describe the transaction state of schema S -** in [database connection] D. -** -**
    -** [[SQLITE_TXN_NONE]]
    SQLITE_TXN_NONE
    -**
    The SQLITE_TXN_NONE state means that no transaction is currently -** pending.
    -** -** [[SQLITE_TXN_READ]]
    SQLITE_TXN_READ
    -**
    The SQLITE_TXN_READ state means that the database is currently -** in a read transaction. Content has been read from the database file -** but nothing in the database file has changed. The transaction state -** will advanced to SQLITE_TXN_WRITE if any changes occur and there are -** no other conflicting concurrent write transactions. The transaction -** state will revert to SQLITE_TXN_NONE following a [ROLLBACK] or -** [COMMIT].
    -** -** [[SQLITE_TXN_WRITE]]
    SQLITE_TXN_WRITE
    -**
    The SQLITE_TXN_WRITE state means that the database is currently -** in a write transaction. Content has been written to the database file -** but has not yet committed. The transaction state will change to -** to SQLITE_TXN_NONE at the next [ROLLBACK] or [COMMIT].
    -*/ -#define SQLITE_TXN_NONE 0 -#define SQLITE_TXN_READ 1 -#define SQLITE_TXN_WRITE 2 - -/* -** CAPI3REF: Find the next prepared statement -** METHOD: sqlite3 -** -** ^This interface returns a pointer to the next [prepared statement] after -** pStmt associated with the [database connection] pDb. ^If pStmt is NULL -** then this interface returns a pointer to the first prepared statement -** associated with the database connection pDb. ^If no prepared statement -** satisfies the conditions of this routine, it returns NULL. -** -** The [database connection] pointer D in a call to -** [sqlite3_next_stmt(D,S)] must refer to an open database -** connection and in particular must not be a NULL pointer. -*/ -SQLITE_API sqlite3_stmt *sqlite3_next_stmt(sqlite3 *pDb, sqlite3_stmt *pStmt); - -/* -** CAPI3REF: Commit And Rollback Notification Callbacks -** METHOD: sqlite3 -** -** ^The sqlite3_commit_hook() interface registers a callback -** function to be invoked whenever a transaction is [COMMIT | committed]. -** ^Any callback set by a previous call to sqlite3_commit_hook() -** for the same database connection is overridden. -** ^The sqlite3_rollback_hook() interface registers a callback -** function to be invoked whenever a transaction is [ROLLBACK | rolled back]. -** ^Any callback set by a previous call to sqlite3_rollback_hook() -** for the same database connection is overridden. -** ^The pArg argument is passed through to the callback. -** ^If the callback on a commit hook function returns non-zero, -** then the commit is converted into a rollback. -** -** ^The sqlite3_commit_hook(D,C,P) and sqlite3_rollback_hook(D,C,P) functions -** return the P argument from the previous call of the same function -** on the same [database connection] D, or NULL for -** the first call for each function on D. -** -** The commit and rollback hook callbacks are not reentrant. -** The callback implementation must not do anything that will modify -** the database connection that invoked the callback. Any actions -** to modify the database connection must be deferred until after the -** completion of the [sqlite3_step()] call that triggered the commit -** or rollback hook in the first place. -** Note that running any other SQL statements, including SELECT statements, -** or merely calling [sqlite3_prepare_v2()] and [sqlite3_step()] will modify -** the database connections for the meaning of "modify" in this paragraph. -** -** ^Registering a NULL function disables the callback. -** -** ^When the commit hook callback routine returns zero, the [COMMIT] -** operation is allowed to continue normally. ^If the commit hook -** returns non-zero, then the [COMMIT] is converted into a [ROLLBACK]. -** ^The rollback hook is invoked on a rollback that results from a commit -** hook returning non-zero, just as it would be with any other rollback. -** -** ^For the purposes of this API, a transaction is said to have been -** rolled back if an explicit "ROLLBACK" statement is executed, or -** an error or constraint causes an implicit rollback to occur. -** ^The rollback callback is not invoked if a transaction is -** automatically rolled back because the database connection is closed. -** -** See also the [sqlite3_update_hook()] interface. -*/ -SQLITE_API void *sqlite3_commit_hook(sqlite3*, int(*)(void*), void*); -SQLITE_API void *sqlite3_rollback_hook(sqlite3*, void(*)(void *), void*); - -/* -** CAPI3REF: Autovacuum Compaction Amount Callback -** METHOD: sqlite3 -** -** ^The sqlite3_autovacuum_pages(D,C,P,X) interface registers a callback -** function C that is invoked prior to each autovacuum of the database -** file. ^The callback is passed a copy of the generic data pointer (P), -** the schema-name of the attached database that is being autovacuumed, -** the the size of the database file in pages, the number of free pages, -** and the number of bytes per page, respectively. The callback should -** return the number of free pages that should be removed by the -** autovacuum. ^If the callback returns zero, then no autovacuum happens. -** ^If the value returned is greater than or equal to the number of -** free pages, then a complete autovacuum happens. -** -**

    ^If there are multiple ATTACH-ed database files that are being -** modified as part of a transaction commit, then the autovacuum pages -** callback is invoked separately for each file. -** -**

    The callback is not reentrant. The callback function should -** not attempt to invoke any other SQLite interface. If it does, bad -** things may happen, including segmentation faults and corrupt database -** files. The callback function should be a simple function that -** does some arithmetic on its input parameters and returns a result. -** -** ^The X parameter to sqlite3_autovacuum_pages(D,C,P,X) is an optional -** destructor for the P parameter. ^If X is not NULL, then X(P) is -** invoked whenever the database connection closes or when the callback -** is overwritten by another invocation of sqlite3_autovacuum_pages(). -** -**

    ^There is only one autovacuum pages callback per database connection. -** ^Each call to the sqlite3_autovacuum_pages() interface overrides all -** previous invocations for that database connection. ^If the callback -** argument (C) to sqlite3_autovacuum_pages(D,C,P,X) is a NULL pointer, -** then the autovacuum steps callback is cancelled. The return value -** from sqlite3_autovacuum_pages() is normally SQLITE_OK, but might -** be some other error code if something goes wrong. The current -** implementation will only return SQLITE_OK or SQLITE_MISUSE, but other -** return codes might be added in future releases. -** -**

    If no autovacuum pages callback is specified (the usual case) or -** a NULL pointer is provided for the callback, -** then the default behavior is to vacuum all free pages. So, in other -** words, the default behavior is the same as if the callback function -** were something like this: -** -**

    -**     unsigned int demonstration_autovac_pages_callback(
    -**       void *pClientData,
    -**       const char *zSchema,
    -**       unsigned int nDbPage,
    -**       unsigned int nFreePage,
    -**       unsigned int nBytePerPage
    -**     ){
    -**       return nFreePage;
    -**     }
    -** 
    -*/ -SQLITE_API int sqlite3_autovacuum_pages( - sqlite3 *db, - unsigned int(*)(void*,const char*,unsigned int,unsigned int,unsigned int), - void*, - void(*)(void*) -); - - -/* -** CAPI3REF: Data Change Notification Callbacks -** METHOD: sqlite3 -** -** ^The sqlite3_update_hook() interface registers a callback function -** with the [database connection] identified by the first argument -** to be invoked whenever a row is updated, inserted or deleted in -** a [rowid table]. -** ^Any callback set by a previous call to this function -** for the same database connection is overridden. -** -** ^The second argument is a pointer to the function to invoke when a -** row is updated, inserted or deleted in a rowid table. -** ^The first argument to the callback is a copy of the third argument -** to sqlite3_update_hook(). -** ^The second callback argument is one of [SQLITE_INSERT], [SQLITE_DELETE], -** or [SQLITE_UPDATE], depending on the operation that caused the callback -** to be invoked. -** ^The third and fourth arguments to the callback contain pointers to the -** database and table name containing the affected row. -** ^The final callback parameter is the [rowid] of the row. -** ^In the case of an update, this is the [rowid] after the update takes place. -** -** ^(The update hook is not invoked when internal system tables are -** modified (i.e. sqlite_sequence).)^ -** ^The update hook is not invoked when [WITHOUT ROWID] tables are modified. -** -** ^In the current implementation, the update hook -** is not invoked when conflicting rows are deleted because of an -** [ON CONFLICT | ON CONFLICT REPLACE] clause. ^Nor is the update hook -** invoked when rows are deleted using the [truncate optimization]. -** The exceptions defined in this paragraph might change in a future -** release of SQLite. -** -** The update hook implementation must not do anything that will modify -** the database connection that invoked the update hook. Any actions -** to modify the database connection must be deferred until after the -** completion of the [sqlite3_step()] call that triggered the update hook. -** Note that [sqlite3_prepare_v2()] and [sqlite3_step()] both modify their -** database connections for the meaning of "modify" in this paragraph. -** -** ^The sqlite3_update_hook(D,C,P) function -** returns the P argument from the previous call -** on the same [database connection] D, or NULL for -** the first call on D. -** -** See also the [sqlite3_commit_hook()], [sqlite3_rollback_hook()], -** and [sqlite3_preupdate_hook()] interfaces. -*/ -SQLITE_API void *sqlite3_update_hook( - sqlite3*, - void(*)(void *,int ,char const *,char const *,sqlite3_int64), - void* -); - -/* -** CAPI3REF: Enable Or Disable Shared Pager Cache -** -** ^(This routine enables or disables the sharing of the database cache -** and schema data structures between [database connection | connections] -** to the same database. Sharing is enabled if the argument is true -** and disabled if the argument is false.)^ -** -** ^Cache sharing is enabled and disabled for an entire process. -** This is a change as of SQLite [version 3.5.0] ([dateof:3.5.0]). -** In prior versions of SQLite, -** sharing was enabled or disabled for each thread separately. -** -** ^(The cache sharing mode set by this interface effects all subsequent -** calls to [sqlite3_open()], [sqlite3_open_v2()], and [sqlite3_open16()]. -** Existing database connections continue to use the sharing mode -** that was in effect at the time they were opened.)^ -** -** ^(This routine returns [SQLITE_OK] if shared cache was enabled or disabled -** successfully. An [error code] is returned otherwise.)^ -** -** ^Shared cache is disabled by default. It is recommended that it stay -** that way. In other words, do not use this routine. This interface -** continues to be provided for historical compatibility, but its use is -** discouraged. Any use of shared cache is discouraged. If shared cache -** must be used, it is recommended that shared cache only be enabled for -** individual database connections using the [sqlite3_open_v2()] interface -** with the [SQLITE_OPEN_SHAREDCACHE] flag. -** -** Note: This method is disabled on MacOS X 10.7 and iOS version 5.0 -** and will always return SQLITE_MISUSE. On those systems, -** shared cache mode should be enabled per-database connection via -** [sqlite3_open_v2()] with [SQLITE_OPEN_SHAREDCACHE]. -** -** This interface is threadsafe on processors where writing a -** 32-bit integer is atomic. -** -** See Also: [SQLite Shared-Cache Mode] -*/ -SQLITE_API int sqlite3_enable_shared_cache(int); - -/* -** CAPI3REF: Attempt To Free Heap Memory -** -** ^The sqlite3_release_memory() interface attempts to free N bytes -** of heap memory by deallocating non-essential memory allocations -** held by the database library. Memory used to cache database -** pages to improve performance is an example of non-essential memory. -** ^sqlite3_release_memory() returns the number of bytes actually freed, -** which might be more or less than the amount requested. -** ^The sqlite3_release_memory() routine is a no-op returning zero -** if SQLite is not compiled with [SQLITE_ENABLE_MEMORY_MANAGEMENT]. -** -** See also: [sqlite3_db_release_memory()] -*/ -SQLITE_API int sqlite3_release_memory(int); - -/* -** CAPI3REF: Free Memory Used By A Database Connection -** METHOD: sqlite3 -** -** ^The sqlite3_db_release_memory(D) interface attempts to free as much heap -** memory as possible from database connection D. Unlike the -** [sqlite3_release_memory()] interface, this interface is in effect even -** when the [SQLITE_ENABLE_MEMORY_MANAGEMENT] compile-time option is -** omitted. -** -** See also: [sqlite3_release_memory()] -*/ -SQLITE_API int sqlite3_db_release_memory(sqlite3*); - -/* -** CAPI3REF: Impose A Limit On Heap Size -** -** These interfaces impose limits on the amount of heap memory that will be -** by all database connections within a single process. -** -** ^The sqlite3_soft_heap_limit64() interface sets and/or queries the -** soft limit on the amount of heap memory that may be allocated by SQLite. -** ^SQLite strives to keep heap memory utilization below the soft heap -** limit by reducing the number of pages held in the page cache -** as heap memory usages approaches the limit. -** ^The soft heap limit is "soft" because even though SQLite strives to stay -** below the limit, it will exceed the limit rather than generate -** an [SQLITE_NOMEM] error. In other words, the soft heap limit -** is advisory only. -** -** ^The sqlite3_hard_heap_limit64(N) interface sets a hard upper bound of -** N bytes on the amount of memory that will be allocated. ^The -** sqlite3_hard_heap_limit64(N) interface is similar to -** sqlite3_soft_heap_limit64(N) except that memory allocations will fail -** when the hard heap limit is reached. -** -** ^The return value from both sqlite3_soft_heap_limit64() and -** sqlite3_hard_heap_limit64() is the size of -** the heap limit prior to the call, or negative in the case of an -** error. ^If the argument N is negative -** then no change is made to the heap limit. Hence, the current -** size of heap limits can be determined by invoking -** sqlite3_soft_heap_limit64(-1) or sqlite3_hard_heap_limit(-1). -** -** ^Setting the heap limits to zero disables the heap limiter mechanism. -** -** ^The soft heap limit may not be greater than the hard heap limit. -** ^If the hard heap limit is enabled and if sqlite3_soft_heap_limit(N) -** is invoked with a value of N that is greater than the hard heap limit, -** the the soft heap limit is set to the value of the hard heap limit. -** ^The soft heap limit is automatically enabled whenever the hard heap -** limit is enabled. ^When sqlite3_hard_heap_limit64(N) is invoked and -** the soft heap limit is outside the range of 1..N, then the soft heap -** limit is set to N. ^Invoking sqlite3_soft_heap_limit64(0) when the -** hard heap limit is enabled makes the soft heap limit equal to the -** hard heap limit. -** -** The memory allocation limits can also be adjusted using -** [PRAGMA soft_heap_limit] and [PRAGMA hard_heap_limit]. -** -** ^(The heap limits are not enforced in the current implementation -** if one or more of following conditions are true: -** -**
      -**
    • The limit value is set to zero. -**
    • Memory accounting is disabled using a combination of the -** [sqlite3_config]([SQLITE_CONFIG_MEMSTATUS],...) start-time option and -** the [SQLITE_DEFAULT_MEMSTATUS] compile-time option. -**
    • An alternative page cache implementation is specified using -** [sqlite3_config]([SQLITE_CONFIG_PCACHE2],...). -**
    • The page cache allocates from its own memory pool supplied -** by [sqlite3_config]([SQLITE_CONFIG_PAGECACHE],...) rather than -** from the heap. -**
    )^ -** -** The circumstances under which SQLite will enforce the heap limits may -** changes in future releases of SQLite. -*/ -SQLITE_API sqlite3_int64 sqlite3_soft_heap_limit64(sqlite3_int64 N); -SQLITE_API sqlite3_int64 sqlite3_hard_heap_limit64(sqlite3_int64 N); - -/* -** CAPI3REF: Deprecated Soft Heap Limit Interface -** DEPRECATED -** -** This is a deprecated version of the [sqlite3_soft_heap_limit64()] -** interface. This routine is provided for historical compatibility -** only. All new applications should use the -** [sqlite3_soft_heap_limit64()] interface rather than this one. -*/ -SQLITE_API SQLITE_DEPRECATED void sqlite3_soft_heap_limit(int N); - - -/* -** CAPI3REF: Extract Metadata About A Column Of A Table -** METHOD: sqlite3 -** -** ^(The sqlite3_table_column_metadata(X,D,T,C,....) routine returns -** information about column C of table T in database D -** on [database connection] X.)^ ^The sqlite3_table_column_metadata() -** interface returns SQLITE_OK and fills in the non-NULL pointers in -** the final five arguments with appropriate values if the specified -** column exists. ^The sqlite3_table_column_metadata() interface returns -** SQLITE_ERROR if the specified column does not exist. -** ^If the column-name parameter to sqlite3_table_column_metadata() is a -** NULL pointer, then this routine simply checks for the existence of the -** table and returns SQLITE_OK if the table exists and SQLITE_ERROR if it -** does not. If the table name parameter T in a call to -** sqlite3_table_column_metadata(X,D,T,C,...) is NULL then the result is -** undefined behavior. -** -** ^The column is identified by the second, third and fourth parameters to -** this function. ^(The second parameter is either the name of the database -** (i.e. "main", "temp", or an attached database) containing the specified -** table or NULL.)^ ^If it is NULL, then all attached databases are searched -** for the table using the same algorithm used by the database engine to -** resolve unqualified table references. -** -** ^The third and fourth parameters to this function are the table and column -** name of the desired column, respectively. -** -** ^Metadata is returned by writing to the memory locations passed as the 5th -** and subsequent parameters to this function. ^Any of these arguments may be -** NULL, in which case the corresponding element of metadata is omitted. -** -** ^(
    -** -**
    Parameter Output
    Type
    Description -** -**
    5th const char* Data type -**
    6th const char* Name of default collation sequence -**
    7th int True if column has a NOT NULL constraint -**
    8th int True if column is part of the PRIMARY KEY -**
    9th int True if column is [AUTOINCREMENT] -**
    -**
    )^ -** -** ^The memory pointed to by the character pointers returned for the -** declaration type and collation sequence is valid until the next -** call to any SQLite API function. -** -** ^If the specified table is actually a view, an [error code] is returned. -** -** ^If the specified column is "rowid", "oid" or "_rowid_" and the table -** is not a [WITHOUT ROWID] table and an -** [INTEGER PRIMARY KEY] column has been explicitly declared, then the output -** parameters are set for the explicitly declared column. ^(If there is no -** [INTEGER PRIMARY KEY] column, then the outputs -** for the [rowid] are set as follows: -** -**
    -**     data type: "INTEGER"
    -**     collation sequence: "BINARY"
    -**     not null: 0
    -**     primary key: 1
    -**     auto increment: 0
    -** 
    )^ -** -** ^This function causes all database schemas to be read from disk and -** parsed, if that has not already been done, and returns an error if -** any errors are encountered while loading the schema. -*/ -SQLITE_API int sqlite3_table_column_metadata( - sqlite3 *db, /* Connection handle */ - const char *zDbName, /* Database name or NULL */ - const char *zTableName, /* Table name */ - const char *zColumnName, /* Column name */ - char const **pzDataType, /* OUTPUT: Declared data type */ - char const **pzCollSeq, /* OUTPUT: Collation sequence name */ - int *pNotNull, /* OUTPUT: True if NOT NULL constraint exists */ - int *pPrimaryKey, /* OUTPUT: True if column part of PK */ - int *pAutoinc /* OUTPUT: True if column is auto-increment */ -); - -/* -** CAPI3REF: Load An Extension -** METHOD: sqlite3 -** -** ^This interface loads an SQLite extension library from the named file. -** -** ^The sqlite3_load_extension() interface attempts to load an -** [SQLite extension] library contained in the file zFile. If -** the file cannot be loaded directly, attempts are made to load -** with various operating-system specific extensions added. -** So for example, if "samplelib" cannot be loaded, then names like -** "samplelib.so" or "samplelib.dylib" or "samplelib.dll" might -** be tried also. -** -** ^The entry point is zProc. -** ^(zProc may be 0, in which case SQLite will try to come up with an -** entry point name on its own. It first tries "sqlite3_extension_init". -** If that does not work, it constructs a name "sqlite3_X_init" where the -** X is consists of the lower-case equivalent of all ASCII alphabetic -** characters in the filename from the last "/" to the first following -** "." and omitting any initial "lib".)^ -** ^The sqlite3_load_extension() interface returns -** [SQLITE_OK] on success and [SQLITE_ERROR] if something goes wrong. -** ^If an error occurs and pzErrMsg is not 0, then the -** [sqlite3_load_extension()] interface shall attempt to -** fill *pzErrMsg with error message text stored in memory -** obtained from [sqlite3_malloc()]. The calling function -** should free this memory by calling [sqlite3_free()]. -** -** ^Extension loading must be enabled using -** [sqlite3_enable_load_extension()] or -** [sqlite3_db_config](db,[SQLITE_DBCONFIG_ENABLE_LOAD_EXTENSION],1,NULL) -** prior to calling this API, -** otherwise an error will be returned. -** -** Security warning: It is recommended that the -** [SQLITE_DBCONFIG_ENABLE_LOAD_EXTENSION] method be used to enable only this -** interface. The use of the [sqlite3_enable_load_extension()] interface -** should be avoided. This will keep the SQL function [load_extension()] -** disabled and prevent SQL injections from giving attackers -** access to extension loading capabilities. -** -** See also the [load_extension() SQL function]. -*/ -SQLITE_API int sqlite3_load_extension( - sqlite3 *db, /* Load the extension into this database connection */ - const char *zFile, /* Name of the shared library containing extension */ - const char *zProc, /* Entry point. Derived from zFile if 0 */ - char **pzErrMsg /* Put error message here if not 0 */ -); - -/* -** CAPI3REF: Enable Or Disable Extension Loading -** METHOD: sqlite3 -** -** ^So as not to open security holes in older applications that are -** unprepared to deal with [extension loading], and as a means of disabling -** [extension loading] while evaluating user-entered SQL, the following API -** is provided to turn the [sqlite3_load_extension()] mechanism on and off. -** -** ^Extension loading is off by default. -** ^Call the sqlite3_enable_load_extension() routine with onoff==1 -** to turn extension loading on and call it with onoff==0 to turn -** it back off again. -** -** ^This interface enables or disables both the C-API -** [sqlite3_load_extension()] and the SQL function [load_extension()]. -** ^(Use [sqlite3_db_config](db,[SQLITE_DBCONFIG_ENABLE_LOAD_EXTENSION],..) -** to enable or disable only the C-API.)^ -** -** Security warning: It is recommended that extension loading -** be enabled using the [SQLITE_DBCONFIG_ENABLE_LOAD_EXTENSION] method -** rather than this interface, so the [load_extension()] SQL function -** remains disabled. This will prevent SQL injections from giving attackers -** access to extension loading capabilities. -*/ -SQLITE_API int sqlite3_enable_load_extension(sqlite3 *db, int onoff); - -/* -** CAPI3REF: Automatically Load Statically Linked Extensions -** -** ^This interface causes the xEntryPoint() function to be invoked for -** each new [database connection] that is created. The idea here is that -** xEntryPoint() is the entry point for a statically linked [SQLite extension] -** that is to be automatically loaded into all new database connections. -** -** ^(Even though the function prototype shows that xEntryPoint() takes -** no arguments and returns void, SQLite invokes xEntryPoint() with three -** arguments and expects an integer result as if the signature of the -** entry point where as follows: -** -**
    -**    int xEntryPoint(
    -**      sqlite3 *db,
    -**      const char **pzErrMsg,
    -**      const struct sqlite3_api_routines *pThunk
    -**    );
    -** 
    )^ -** -** If the xEntryPoint routine encounters an error, it should make *pzErrMsg -** point to an appropriate error message (obtained from [sqlite3_mprintf()]) -** and return an appropriate [error code]. ^SQLite ensures that *pzErrMsg -** is NULL before calling the xEntryPoint(). ^SQLite will invoke -** [sqlite3_free()] on *pzErrMsg after xEntryPoint() returns. ^If any -** xEntryPoint() returns an error, the [sqlite3_open()], [sqlite3_open16()], -** or [sqlite3_open_v2()] call that provoked the xEntryPoint() will fail. -** -** ^Calling sqlite3_auto_extension(X) with an entry point X that is already -** on the list of automatic extensions is a harmless no-op. ^No entry point -** will be called more than once for each database connection that is opened. -** -** See also: [sqlite3_reset_auto_extension()] -** and [sqlite3_cancel_auto_extension()] -*/ -SQLITE_API int sqlite3_auto_extension(void(*xEntryPoint)(void)); - -/* -** CAPI3REF: Cancel Automatic Extension Loading -** -** ^The [sqlite3_cancel_auto_extension(X)] interface unregisters the -** initialization routine X that was registered using a prior call to -** [sqlite3_auto_extension(X)]. ^The [sqlite3_cancel_auto_extension(X)] -** routine returns 1 if initialization routine X was successfully -** unregistered and it returns 0 if X was not on the list of initialization -** routines. -*/ -SQLITE_API int sqlite3_cancel_auto_extension(void(*xEntryPoint)(void)); - -/* -** CAPI3REF: Reset Automatic Extension Loading -** -** ^This interface disables all automatic extensions previously -** registered using [sqlite3_auto_extension()]. -*/ -SQLITE_API void sqlite3_reset_auto_extension(void); - -/* -** The interface to the virtual-table mechanism is currently considered -** to be experimental. The interface might change in incompatible ways. -** If this is a problem for you, do not use the interface at this time. -** -** When the virtual-table mechanism stabilizes, we will declare the -** interface fixed, support it indefinitely, and remove this comment. -*/ - -/* -** Structures used by the virtual table interface -*/ -typedef struct sqlite3_vtab sqlite3_vtab; -typedef struct sqlite3_index_info sqlite3_index_info; -typedef struct sqlite3_vtab_cursor sqlite3_vtab_cursor; -typedef struct sqlite3_module sqlite3_module; - -/* -** CAPI3REF: Virtual Table Object -** KEYWORDS: sqlite3_module {virtual table module} -** -** This structure, sometimes called a "virtual table module", -** defines the implementation of a [virtual table]. -** This structure consists mostly of methods for the module. -** -** ^A virtual table module is created by filling in a persistent -** instance of this structure and passing a pointer to that instance -** to [sqlite3_create_module()] or [sqlite3_create_module_v2()]. -** ^The registration remains valid until it is replaced by a different -** module or until the [database connection] closes. The content -** of this structure must not change while it is registered with -** any database connection. -*/ -struct sqlite3_module { - int iVersion; - int (*xCreate)(sqlite3*, void *pAux, - int argc, const char *const*argv, - sqlite3_vtab **ppVTab, char**); - int (*xConnect)(sqlite3*, void *pAux, - int argc, const char *const*argv, - sqlite3_vtab **ppVTab, char**); - int (*xBestIndex)(sqlite3_vtab *pVTab, sqlite3_index_info*); - int (*xDisconnect)(sqlite3_vtab *pVTab); - int (*xDestroy)(sqlite3_vtab *pVTab); - int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor); - int (*xClose)(sqlite3_vtab_cursor*); - int (*xFilter)(sqlite3_vtab_cursor*, int idxNum, const char *idxStr, - int argc, sqlite3_value **argv); - int (*xNext)(sqlite3_vtab_cursor*); - int (*xEof)(sqlite3_vtab_cursor*); - int (*xColumn)(sqlite3_vtab_cursor*, sqlite3_context*, int); - int (*xRowid)(sqlite3_vtab_cursor*, sqlite3_int64 *pRowid); - int (*xUpdate)(sqlite3_vtab *, int, sqlite3_value **, sqlite3_int64 *); - int (*xBegin)(sqlite3_vtab *pVTab); - int (*xSync)(sqlite3_vtab *pVTab); - int (*xCommit)(sqlite3_vtab *pVTab); - int (*xRollback)(sqlite3_vtab *pVTab); - int (*xFindFunction)(sqlite3_vtab *pVtab, int nArg, const char *zName, - void (**pxFunc)(sqlite3_context*,int,sqlite3_value**), - void **ppArg); - int (*xRename)(sqlite3_vtab *pVtab, const char *zNew); - /* The methods above are in version 1 of the sqlite_module object. Those - ** below are for version 2 and greater. */ - int (*xSavepoint)(sqlite3_vtab *pVTab, int); - int (*xRelease)(sqlite3_vtab *pVTab, int); - int (*xRollbackTo)(sqlite3_vtab *pVTab, int); - /* The methods above are in versions 1 and 2 of the sqlite_module object. - ** Those below are for version 3 and greater. */ - int (*xShadowName)(const char*); -}; - -/* -** CAPI3REF: Virtual Table Indexing Information -** KEYWORDS: sqlite3_index_info -** -** The sqlite3_index_info structure and its substructures is used as part -** of the [virtual table] interface to -** pass information into and receive the reply from the [xBestIndex] -** method of a [virtual table module]. The fields under **Inputs** are the -** inputs to xBestIndex and are read-only. xBestIndex inserts its -** results into the **Outputs** fields. -** -** ^(The aConstraint[] array records WHERE clause constraints of the form: -** -**
    column OP expr
    -** -** where OP is =, <, <=, >, or >=.)^ ^(The particular operator is -** stored in aConstraint[].op using one of the -** [SQLITE_INDEX_CONSTRAINT_EQ | SQLITE_INDEX_CONSTRAINT_ values].)^ -** ^(The index of the column is stored in -** aConstraint[].iColumn.)^ ^(aConstraint[].usable is TRUE if the -** expr on the right-hand side can be evaluated (and thus the constraint -** is usable) and false if it cannot.)^ -** -** ^The optimizer automatically inverts terms of the form "expr OP column" -** and makes other simplifications to the WHERE clause in an attempt to -** get as many WHERE clause terms into the form shown above as possible. -** ^The aConstraint[] array only reports WHERE clause terms that are -** relevant to the particular virtual table being queried. -** -** ^Information about the ORDER BY clause is stored in aOrderBy[]. -** ^Each term of aOrderBy records a column of the ORDER BY clause. -** -** The colUsed field indicates which columns of the virtual table may be -** required by the current scan. Virtual table columns are numbered from -** zero in the order in which they appear within the CREATE TABLE statement -** passed to sqlite3_declare_vtab(). For the first 63 columns (columns 0-62), -** the corresponding bit is set within the colUsed mask if the column may be -** required by SQLite. If the table has at least 64 columns and any column -** to the right of the first 63 is required, then bit 63 of colUsed is also -** set. In other words, column iCol may be required if the expression -** (colUsed & ((sqlite3_uint64)1 << (iCol>=63 ? 63 : iCol))) evaluates to -** non-zero. -** -** The [xBestIndex] method must fill aConstraintUsage[] with information -** about what parameters to pass to xFilter. ^If argvIndex>0 then -** the right-hand side of the corresponding aConstraint[] is evaluated -** and becomes the argvIndex-th entry in argv. ^(If aConstraintUsage[].omit -** is true, then the constraint is assumed to be fully handled by the -** virtual table and might not be checked again by the byte code.)^ ^(The -** aConstraintUsage[].omit flag is an optimization hint. When the omit flag -** is left in its default setting of false, the constraint will always be -** checked separately in byte code. If the omit flag is change to true, then -** the constraint may or may not be checked in byte code. In other words, -** when the omit flag is true there is no guarantee that the constraint will -** not be checked again using byte code.)^ -** -** ^The idxNum and idxPtr values are recorded and passed into the -** [xFilter] method. -** ^[sqlite3_free()] is used to free idxPtr if and only if -** needToFreeIdxPtr is true. -** -** ^The orderByConsumed means that output from [xFilter]/[xNext] will occur in -** the correct order to satisfy the ORDER BY clause so that no separate -** sorting step is required. -** -** ^The estimatedCost value is an estimate of the cost of a particular -** strategy. A cost of N indicates that the cost of the strategy is similar -** to a linear scan of an SQLite table with N rows. A cost of log(N) -** indicates that the expense of the operation is similar to that of a -** binary search on a unique indexed field of an SQLite table with N rows. -** -** ^The estimatedRows value is an estimate of the number of rows that -** will be returned by the strategy. -** -** The xBestIndex method may optionally populate the idxFlags field with a -** mask of SQLITE_INDEX_SCAN_* flags. Currently there is only one such flag - -** SQLITE_INDEX_SCAN_UNIQUE. If the xBestIndex method sets this flag, SQLite -** assumes that the strategy may visit at most one row. -** -** Additionally, if xBestIndex sets the SQLITE_INDEX_SCAN_UNIQUE flag, then -** SQLite also assumes that if a call to the xUpdate() method is made as -** part of the same statement to delete or update a virtual table row and the -** implementation returns SQLITE_CONSTRAINT, then there is no need to rollback -** any database changes. In other words, if the xUpdate() returns -** SQLITE_CONSTRAINT, the database contents must be exactly as they were -** before xUpdate was called. By contrast, if SQLITE_INDEX_SCAN_UNIQUE is not -** set and xUpdate returns SQLITE_CONSTRAINT, any database changes made by -** the xUpdate method are automatically rolled back by SQLite. -** -** IMPORTANT: The estimatedRows field was added to the sqlite3_index_info -** structure for SQLite [version 3.8.2] ([dateof:3.8.2]). -** If a virtual table extension is -** used with an SQLite version earlier than 3.8.2, the results of attempting -** to read or write the estimatedRows field are undefined (but are likely -** to include crashing the application). The estimatedRows field should -** therefore only be used if [sqlite3_libversion_number()] returns a -** value greater than or equal to 3008002. Similarly, the idxFlags field -** was added for [version 3.9.0] ([dateof:3.9.0]). -** It may therefore only be used if -** sqlite3_libversion_number() returns a value greater than or equal to -** 3009000. -*/ -struct sqlite3_index_info { - /* Inputs */ - int nConstraint; /* Number of entries in aConstraint */ - struct sqlite3_index_constraint { - int iColumn; /* Column constrained. -1 for ROWID */ - unsigned char op; /* Constraint operator */ - unsigned char usable; /* True if this constraint is usable */ - int iTermOffset; /* Used internally - xBestIndex should ignore */ - } *aConstraint; /* Table of WHERE clause constraints */ - int nOrderBy; /* Number of terms in the ORDER BY clause */ - struct sqlite3_index_orderby { - int iColumn; /* Column number */ - unsigned char desc; /* True for DESC. False for ASC. */ - } *aOrderBy; /* The ORDER BY clause */ - /* Outputs */ - struct sqlite3_index_constraint_usage { - int argvIndex; /* if >0, constraint is part of argv to xFilter */ - unsigned char omit; /* Do not code a test for this constraint */ - } *aConstraintUsage; - int idxNum; /* Number used to identify the index */ - char *idxStr; /* String, possibly obtained from sqlite3_malloc */ - int needToFreeIdxStr; /* Free idxStr using sqlite3_free() if true */ - int orderByConsumed; /* True if output is already ordered */ - double estimatedCost; /* Estimated cost of using this index */ - /* Fields below are only available in SQLite 3.8.2 and later */ - sqlite3_int64 estimatedRows; /* Estimated number of rows returned */ - /* Fields below are only available in SQLite 3.9.0 and later */ - int idxFlags; /* Mask of SQLITE_INDEX_SCAN_* flags */ - /* Fields below are only available in SQLite 3.10.0 and later */ - sqlite3_uint64 colUsed; /* Input: Mask of columns used by statement */ -}; - -/* -** CAPI3REF: Virtual Table Scan Flags -** -** Virtual table implementations are allowed to set the -** [sqlite3_index_info].idxFlags field to some combination of -** these bits. -*/ -#define SQLITE_INDEX_SCAN_UNIQUE 1 /* Scan visits at most 1 row */ - -/* -** CAPI3REF: Virtual Table Constraint Operator Codes -** -** These macros define the allowed values for the -** [sqlite3_index_info].aConstraint[].op field. Each value represents -** an operator that is part of a constraint term in the WHERE clause of -** a query that uses a [virtual table]. -** -** ^The left-hand operand of the operator is given by the corresponding -** aConstraint[].iColumn field. ^An iColumn of -1 indicates the left-hand -** operand is the rowid. -** The SQLITE_INDEX_CONSTRAINT_LIMIT and SQLITE_INDEX_CONSTRAINT_OFFSET -** operators have no left-hand operand, and so for those operators the -** corresponding aConstraint[].iColumn is meaningless and should not be -** used. -** -** All operator values from SQLITE_INDEX_CONSTRAINT_FUNCTION through -** value 255 are reserved to represent functions that are overloaded -** by the [xFindFunction|xFindFunction method] of the virtual table -** implementation. -** -** The right-hand operands for each constraint might be accessible using -** the [sqlite3_vtab_rhs_value()] interface. Usually the right-hand -** operand is only available if it appears as a single constant literal -** in the input SQL. If the right-hand operand is another column or an -** expression (even a constant expression) or a parameter, then the -** sqlite3_vtab_rhs_value() probably will not be able to extract it. -** ^The SQLITE_INDEX_CONSTRAINT_ISNULL and -** SQLITE_INDEX_CONSTRAINT_ISNOTNULL operators have no right-hand operand -** and hence calls to sqlite3_vtab_rhs_value() for those operators will -** always return SQLITE_NOTFOUND. -** -** The collating sequence to be used for comparison can be found using -** the [sqlite3_vtab_collation()] interface. For most real-world virtual -** tables, the collating sequence of constraints does not matter (for example -** because the constraints are numeric) and so the sqlite3_vtab_collation() -** interface is no commonly needed. -*/ -#define SQLITE_INDEX_CONSTRAINT_EQ 2 -#define SQLITE_INDEX_CONSTRAINT_GT 4 -#define SQLITE_INDEX_CONSTRAINT_LE 8 -#define SQLITE_INDEX_CONSTRAINT_LT 16 -#define SQLITE_INDEX_CONSTRAINT_GE 32 -#define SQLITE_INDEX_CONSTRAINT_MATCH 64 -#define SQLITE_INDEX_CONSTRAINT_LIKE 65 -#define SQLITE_INDEX_CONSTRAINT_GLOB 66 -#define SQLITE_INDEX_CONSTRAINT_REGEXP 67 -#define SQLITE_INDEX_CONSTRAINT_NE 68 -#define SQLITE_INDEX_CONSTRAINT_ISNOT 69 -#define SQLITE_INDEX_CONSTRAINT_ISNOTNULL 70 -#define SQLITE_INDEX_CONSTRAINT_ISNULL 71 -#define SQLITE_INDEX_CONSTRAINT_IS 72 -#define SQLITE_INDEX_CONSTRAINT_LIMIT 73 -#define SQLITE_INDEX_CONSTRAINT_OFFSET 74 -#define SQLITE_INDEX_CONSTRAINT_FUNCTION 150 - -/* -** CAPI3REF: Register A Virtual Table Implementation -** METHOD: sqlite3 -** -** ^These routines are used to register a new [virtual table module] name. -** ^Module names must be registered before -** creating a new [virtual table] using the module and before using a -** preexisting [virtual table] for the module. -** -** ^The module name is registered on the [database connection] specified -** by the first parameter. ^The name of the module is given by the -** second parameter. ^The third parameter is a pointer to -** the implementation of the [virtual table module]. ^The fourth -** parameter is an arbitrary client data pointer that is passed through -** into the [xCreate] and [xConnect] methods of the virtual table module -** when a new virtual table is be being created or reinitialized. -** -** ^The sqlite3_create_module_v2() interface has a fifth parameter which -** is a pointer to a destructor for the pClientData. ^SQLite will -** invoke the destructor function (if it is not NULL) when SQLite -** no longer needs the pClientData pointer. ^The destructor will also -** be invoked if the call to sqlite3_create_module_v2() fails. -** ^The sqlite3_create_module() -** interface is equivalent to sqlite3_create_module_v2() with a NULL -** destructor. -** -** ^If the third parameter (the pointer to the sqlite3_module object) is -** NULL then no new module is created and any existing modules with the -** same name are dropped. -** -** See also: [sqlite3_drop_modules()] -*/ -SQLITE_API int sqlite3_create_module( - sqlite3 *db, /* SQLite connection to register module with */ - const char *zName, /* Name of the module */ - const sqlite3_module *p, /* Methods for the module */ - void *pClientData /* Client data for xCreate/xConnect */ -); -SQLITE_API int sqlite3_create_module_v2( - sqlite3 *db, /* SQLite connection to register module with */ - const char *zName, /* Name of the module */ - const sqlite3_module *p, /* Methods for the module */ - void *pClientData, /* Client data for xCreate/xConnect */ - void(*xDestroy)(void*) /* Module destructor function */ -); - -/* -** CAPI3REF: Remove Unnecessary Virtual Table Implementations -** METHOD: sqlite3 -** -** ^The sqlite3_drop_modules(D,L) interface removes all virtual -** table modules from database connection D except those named on list L. -** The L parameter must be either NULL or a pointer to an array of pointers -** to strings where the array is terminated by a single NULL pointer. -** ^If the L parameter is NULL, then all virtual table modules are removed. -** -** See also: [sqlite3_create_module()] -*/ -SQLITE_API int sqlite3_drop_modules( - sqlite3 *db, /* Remove modules from this connection */ - const char **azKeep /* Except, do not remove the ones named here */ -); - -/* -** CAPI3REF: Virtual Table Instance Object -** KEYWORDS: sqlite3_vtab -** -** Every [virtual table module] implementation uses a subclass -** of this object to describe a particular instance -** of the [virtual table]. Each subclass will -** be tailored to the specific needs of the module implementation. -** The purpose of this superclass is to define certain fields that are -** common to all module implementations. -** -** ^Virtual tables methods can set an error message by assigning a -** string obtained from [sqlite3_mprintf()] to zErrMsg. The method should -** take care that any prior string is freed by a call to [sqlite3_free()] -** prior to assigning a new string to zErrMsg. ^After the error message -** is delivered up to the client application, the string will be automatically -** freed by sqlite3_free() and the zErrMsg field will be zeroed. -*/ -struct sqlite3_vtab { - const sqlite3_module *pModule; /* The module for this virtual table */ - int nRef; /* Number of open cursors */ - char *zErrMsg; /* Error message from sqlite3_mprintf() */ - /* Virtual table implementations will typically add additional fields */ -}; - -/* -** CAPI3REF: Virtual Table Cursor Object -** KEYWORDS: sqlite3_vtab_cursor {virtual table cursor} -** -** Every [virtual table module] implementation uses a subclass of the -** following structure to describe cursors that point into the -** [virtual table] and are used -** to loop through the virtual table. Cursors are created using the -** [sqlite3_module.xOpen | xOpen] method of the module and are destroyed -** by the [sqlite3_module.xClose | xClose] method. Cursors are used -** by the [xFilter], [xNext], [xEof], [xColumn], and [xRowid] methods -** of the module. Each module implementation will define -** the content of a cursor structure to suit its own needs. -** -** This superclass exists in order to define fields of the cursor that -** are common to all implementations. -*/ -struct sqlite3_vtab_cursor { - sqlite3_vtab *pVtab; /* Virtual table of this cursor */ - /* Virtual table implementations will typically add additional fields */ -}; - -/* -** CAPI3REF: Declare The Schema Of A Virtual Table -** -** ^The [xCreate] and [xConnect] methods of a -** [virtual table module] call this interface -** to declare the format (the names and datatypes of the columns) of -** the virtual tables they implement. -*/ -SQLITE_API int sqlite3_declare_vtab(sqlite3*, const char *zSQL); - -/* -** CAPI3REF: Overload A Function For A Virtual Table -** METHOD: sqlite3 -** -** ^(Virtual tables can provide alternative implementations of functions -** using the [xFindFunction] method of the [virtual table module]. -** But global versions of those functions -** must exist in order to be overloaded.)^ -** -** ^(This API makes sure a global version of a function with a particular -** name and number of parameters exists. If no such function exists -** before this API is called, a new function is created.)^ ^The implementation -** of the new function always causes an exception to be thrown. So -** the new function is not good for anything by itself. Its only -** purpose is to be a placeholder function that can be overloaded -** by a [virtual table]. -*/ -SQLITE_API int sqlite3_overload_function(sqlite3*, const char *zFuncName, int nArg); - -/* -** The interface to the virtual-table mechanism defined above (back up -** to a comment remarkably similar to this one) is currently considered -** to be experimental. The interface might change in incompatible ways. -** If this is a problem for you, do not use the interface at this time. -** -** When the virtual-table mechanism stabilizes, we will declare the -** interface fixed, support it indefinitely, and remove this comment. -*/ - -/* -** CAPI3REF: A Handle To An Open BLOB -** KEYWORDS: {BLOB handle} {BLOB handles} -** -** An instance of this object represents an open BLOB on which -** [sqlite3_blob_open | incremental BLOB I/O] can be performed. -** ^Objects of this type are created by [sqlite3_blob_open()] -** and destroyed by [sqlite3_blob_close()]. -** ^The [sqlite3_blob_read()] and [sqlite3_blob_write()] interfaces -** can be used to read or write small subsections of the BLOB. -** ^The [sqlite3_blob_bytes()] interface returns the size of the BLOB in bytes. -*/ -typedef struct sqlite3_blob sqlite3_blob; - -/* -** CAPI3REF: Open A BLOB For Incremental I/O -** METHOD: sqlite3 -** CONSTRUCTOR: sqlite3_blob -** -** ^(This interfaces opens a [BLOB handle | handle] to the BLOB located -** in row iRow, column zColumn, table zTable in database zDb; -** in other words, the same BLOB that would be selected by: -** -**
    -**     SELECT zColumn FROM zDb.zTable WHERE [rowid] = iRow;
    -** 
    )^ -** -** ^(Parameter zDb is not the filename that contains the database, but -** rather the symbolic name of the database. For attached databases, this is -** the name that appears after the AS keyword in the [ATTACH] statement. -** For the main database file, the database name is "main". For TEMP -** tables, the database name is "temp".)^ -** -** ^If the flags parameter is non-zero, then the BLOB is opened for read -** and write access. ^If the flags parameter is zero, the BLOB is opened for -** read-only access. -** -** ^(On success, [SQLITE_OK] is returned and the new [BLOB handle] is stored -** in *ppBlob. Otherwise an [error code] is returned and, unless the error -** code is SQLITE_MISUSE, *ppBlob is set to NULL.)^ ^This means that, provided -** the API is not misused, it is always safe to call [sqlite3_blob_close()] -** on *ppBlob after this function it returns. -** -** This function fails with SQLITE_ERROR if any of the following are true: -**
      -**
    • ^(Database zDb does not exist)^, -**
    • ^(Table zTable does not exist within database zDb)^, -**
    • ^(Table zTable is a WITHOUT ROWID table)^, -**
    • ^(Column zColumn does not exist)^, -**
    • ^(Row iRow is not present in the table)^, -**
    • ^(The specified column of row iRow contains a value that is not -** a TEXT or BLOB value)^, -**
    • ^(Column zColumn is part of an index, PRIMARY KEY or UNIQUE -** constraint and the blob is being opened for read/write access)^, -**
    • ^([foreign key constraints | Foreign key constraints] are enabled, -** column zColumn is part of a [child key] definition and the blob is -** being opened for read/write access)^. -**
    -** -** ^Unless it returns SQLITE_MISUSE, this function sets the -** [database connection] error code and message accessible via -** [sqlite3_errcode()] and [sqlite3_errmsg()] and related functions. -** -** A BLOB referenced by sqlite3_blob_open() may be read using the -** [sqlite3_blob_read()] interface and modified by using -** [sqlite3_blob_write()]. The [BLOB handle] can be moved to a -** different row of the same table using the [sqlite3_blob_reopen()] -** interface. However, the column, table, or database of a [BLOB handle] -** cannot be changed after the [BLOB handle] is opened. -** -** ^(If the row that a BLOB handle points to is modified by an -** [UPDATE], [DELETE], or by [ON CONFLICT] side-effects -** then the BLOB handle is marked as "expired". -** This is true if any column of the row is changed, even a column -** other than the one the BLOB handle is open on.)^ -** ^Calls to [sqlite3_blob_read()] and [sqlite3_blob_write()] for -** an expired BLOB handle fail with a return code of [SQLITE_ABORT]. -** ^(Changes written into a BLOB prior to the BLOB expiring are not -** rolled back by the expiration of the BLOB. Such changes will eventually -** commit if the transaction continues to completion.)^ -** -** ^Use the [sqlite3_blob_bytes()] interface to determine the size of -** the opened blob. ^The size of a blob may not be changed by this -** interface. Use the [UPDATE] SQL command to change the size of a -** blob. -** -** ^The [sqlite3_bind_zeroblob()] and [sqlite3_result_zeroblob()] interfaces -** and the built-in [zeroblob] SQL function may be used to create a -** zero-filled blob to read or write using the incremental-blob interface. -** -** To avoid a resource leak, every open [BLOB handle] should eventually -** be released by a call to [sqlite3_blob_close()]. -** -** See also: [sqlite3_blob_close()], -** [sqlite3_blob_reopen()], [sqlite3_blob_read()], -** [sqlite3_blob_bytes()], [sqlite3_blob_write()]. -*/ -SQLITE_API int sqlite3_blob_open( - sqlite3*, - const char *zDb, - const char *zTable, - const char *zColumn, - sqlite3_int64 iRow, - int flags, - sqlite3_blob **ppBlob -); - -/* -** CAPI3REF: Move a BLOB Handle to a New Row -** METHOD: sqlite3_blob -** -** ^This function is used to move an existing [BLOB handle] so that it points -** to a different row of the same database table. ^The new row is identified -** by the rowid value passed as the second argument. Only the row can be -** changed. ^The database, table and column on which the blob handle is open -** remain the same. Moving an existing [BLOB handle] to a new row is -** faster than closing the existing handle and opening a new one. -** -** ^(The new row must meet the same criteria as for [sqlite3_blob_open()] - -** it must exist and there must be either a blob or text value stored in -** the nominated column.)^ ^If the new row is not present in the table, or if -** it does not contain a blob or text value, or if another error occurs, an -** SQLite error code is returned and the blob handle is considered aborted. -** ^All subsequent calls to [sqlite3_blob_read()], [sqlite3_blob_write()] or -** [sqlite3_blob_reopen()] on an aborted blob handle immediately return -** SQLITE_ABORT. ^Calling [sqlite3_blob_bytes()] on an aborted blob handle -** always returns zero. -** -** ^This function sets the database handle error code and message. -*/ -SQLITE_API int sqlite3_blob_reopen(sqlite3_blob *, sqlite3_int64); - -/* -** CAPI3REF: Close A BLOB Handle -** DESTRUCTOR: sqlite3_blob -** -** ^This function closes an open [BLOB handle]. ^(The BLOB handle is closed -** unconditionally. Even if this routine returns an error code, the -** handle is still closed.)^ -** -** ^If the blob handle being closed was opened for read-write access, and if -** the database is in auto-commit mode and there are no other open read-write -** blob handles or active write statements, the current transaction is -** committed. ^If an error occurs while committing the transaction, an error -** code is returned and the transaction rolled back. -** -** Calling this function with an argument that is not a NULL pointer or an -** open blob handle results in undefined behaviour. ^Calling this routine -** with a null pointer (such as would be returned by a failed call to -** [sqlite3_blob_open()]) is a harmless no-op. ^Otherwise, if this function -** is passed a valid open blob handle, the values returned by the -** sqlite3_errcode() and sqlite3_errmsg() functions are set before returning. -*/ -SQLITE_API int sqlite3_blob_close(sqlite3_blob *); - -/* -** CAPI3REF: Return The Size Of An Open BLOB -** METHOD: sqlite3_blob -** -** ^Returns the size in bytes of the BLOB accessible via the -** successfully opened [BLOB handle] in its only argument. ^The -** incremental blob I/O routines can only read or overwriting existing -** blob content; they cannot change the size of a blob. -** -** This routine only works on a [BLOB handle] which has been created -** by a prior successful call to [sqlite3_blob_open()] and which has not -** been closed by [sqlite3_blob_close()]. Passing any other pointer in -** to this routine results in undefined and probably undesirable behavior. -*/ -SQLITE_API int sqlite3_blob_bytes(sqlite3_blob *); - -/* -** CAPI3REF: Read Data From A BLOB Incrementally -** METHOD: sqlite3_blob -** -** ^(This function is used to read data from an open [BLOB handle] into a -** caller-supplied buffer. N bytes of data are copied into buffer Z -** from the open BLOB, starting at offset iOffset.)^ -** -** ^If offset iOffset is less than N bytes from the end of the BLOB, -** [SQLITE_ERROR] is returned and no data is read. ^If N or iOffset is -** less than zero, [SQLITE_ERROR] is returned and no data is read. -** ^The size of the blob (and hence the maximum value of N+iOffset) -** can be determined using the [sqlite3_blob_bytes()] interface. -** -** ^An attempt to read from an expired [BLOB handle] fails with an -** error code of [SQLITE_ABORT]. -** -** ^(On success, sqlite3_blob_read() returns SQLITE_OK. -** Otherwise, an [error code] or an [extended error code] is returned.)^ -** -** This routine only works on a [BLOB handle] which has been created -** by a prior successful call to [sqlite3_blob_open()] and which has not -** been closed by [sqlite3_blob_close()]. Passing any other pointer in -** to this routine results in undefined and probably undesirable behavior. -** -** See also: [sqlite3_blob_write()]. -*/ -SQLITE_API int sqlite3_blob_read(sqlite3_blob *, void *Z, int N, int iOffset); - -/* -** CAPI3REF: Write Data Into A BLOB Incrementally -** METHOD: sqlite3_blob -** -** ^(This function is used to write data into an open [BLOB handle] from a -** caller-supplied buffer. N bytes of data are copied from the buffer Z -** into the open BLOB, starting at offset iOffset.)^ -** -** ^(On success, sqlite3_blob_write() returns SQLITE_OK. -** Otherwise, an [error code] or an [extended error code] is returned.)^ -** ^Unless SQLITE_MISUSE is returned, this function sets the -** [database connection] error code and message accessible via -** [sqlite3_errcode()] and [sqlite3_errmsg()] and related functions. -** -** ^If the [BLOB handle] passed as the first argument was not opened for -** writing (the flags parameter to [sqlite3_blob_open()] was zero), -** this function returns [SQLITE_READONLY]. -** -** This function may only modify the contents of the BLOB; it is -** not possible to increase the size of a BLOB using this API. -** ^If offset iOffset is less than N bytes from the end of the BLOB, -** [SQLITE_ERROR] is returned and no data is written. The size of the -** BLOB (and hence the maximum value of N+iOffset) can be determined -** using the [sqlite3_blob_bytes()] interface. ^If N or iOffset are less -** than zero [SQLITE_ERROR] is returned and no data is written. -** -** ^An attempt to write to an expired [BLOB handle] fails with an -** error code of [SQLITE_ABORT]. ^Writes to the BLOB that occurred -** before the [BLOB handle] expired are not rolled back by the -** expiration of the handle, though of course those changes might -** have been overwritten by the statement that expired the BLOB handle -** or by other independent statements. -** -** This routine only works on a [BLOB handle] which has been created -** by a prior successful call to [sqlite3_blob_open()] and which has not -** been closed by [sqlite3_blob_close()]. Passing any other pointer in -** to this routine results in undefined and probably undesirable behavior. -** -** See also: [sqlite3_blob_read()]. -*/ -SQLITE_API int sqlite3_blob_write(sqlite3_blob *, const void *z, int n, int iOffset); - -/* -** CAPI3REF: Virtual File System Objects -** -** A virtual filesystem (VFS) is an [sqlite3_vfs] object -** that SQLite uses to interact -** with the underlying operating system. Most SQLite builds come with a -** single default VFS that is appropriate for the host computer. -** New VFSes can be registered and existing VFSes can be unregistered. -** The following interfaces are provided. -** -** ^The sqlite3_vfs_find() interface returns a pointer to a VFS given its name. -** ^Names are case sensitive. -** ^Names are zero-terminated UTF-8 strings. -** ^If there is no match, a NULL pointer is returned. -** ^If zVfsName is NULL then the default VFS is returned. -** -** ^New VFSes are registered with sqlite3_vfs_register(). -** ^Each new VFS becomes the default VFS if the makeDflt flag is set. -** ^The same VFS can be registered multiple times without injury. -** ^To make an existing VFS into the default VFS, register it again -** with the makeDflt flag set. If two different VFSes with the -** same name are registered, the behavior is undefined. If a -** VFS is registered with a name that is NULL or an empty string, -** then the behavior is undefined. -** -** ^Unregister a VFS with the sqlite3_vfs_unregister() interface. -** ^(If the default VFS is unregistered, another VFS is chosen as -** the default. The choice for the new VFS is arbitrary.)^ -*/ -SQLITE_API sqlite3_vfs *sqlite3_vfs_find(const char *zVfsName); -SQLITE_API int sqlite3_vfs_register(sqlite3_vfs*, int makeDflt); -SQLITE_API int sqlite3_vfs_unregister(sqlite3_vfs*); - -/* -** CAPI3REF: Mutexes -** -** The SQLite core uses these routines for thread -** synchronization. Though they are intended for internal -** use by SQLite, code that links against SQLite is -** permitted to use any of these routines. -** -** The SQLite source code contains multiple implementations -** of these mutex routines. An appropriate implementation -** is selected automatically at compile-time. The following -** implementations are available in the SQLite core: -** -**
      -**
    • SQLITE_MUTEX_PTHREADS -**
    • SQLITE_MUTEX_W32 -**
    • SQLITE_MUTEX_NOOP -**
    -** -** The SQLITE_MUTEX_NOOP implementation is a set of routines -** that does no real locking and is appropriate for use in -** a single-threaded application. The SQLITE_MUTEX_PTHREADS and -** SQLITE_MUTEX_W32 implementations are appropriate for use on Unix -** and Windows. -** -** If SQLite is compiled with the SQLITE_MUTEX_APPDEF preprocessor -** macro defined (with "-DSQLITE_MUTEX_APPDEF=1"), then no mutex -** implementation is included with the library. In this case the -** application must supply a custom mutex implementation using the -** [SQLITE_CONFIG_MUTEX] option of the sqlite3_config() function -** before calling sqlite3_initialize() or any other public sqlite3_ -** function that calls sqlite3_initialize(). -** -** ^The sqlite3_mutex_alloc() routine allocates a new -** mutex and returns a pointer to it. ^The sqlite3_mutex_alloc() -** routine returns NULL if it is unable to allocate the requested -** mutex. The argument to sqlite3_mutex_alloc() must one of these -** integer constants: -** -**
      -**
    • SQLITE_MUTEX_FAST -**
    • SQLITE_MUTEX_RECURSIVE -**
    • SQLITE_MUTEX_STATIC_MAIN -**
    • SQLITE_MUTEX_STATIC_MEM -**
    • SQLITE_MUTEX_STATIC_OPEN -**
    • SQLITE_MUTEX_STATIC_PRNG -**
    • SQLITE_MUTEX_STATIC_LRU -**
    • SQLITE_MUTEX_STATIC_PMEM -**
    • SQLITE_MUTEX_STATIC_APP1 -**
    • SQLITE_MUTEX_STATIC_APP2 -**
    • SQLITE_MUTEX_STATIC_APP3 -**
    • SQLITE_MUTEX_STATIC_VFS1 -**
    • SQLITE_MUTEX_STATIC_VFS2 -**
    • SQLITE_MUTEX_STATIC_VFS3 -**
    -** -** ^The first two constants (SQLITE_MUTEX_FAST and SQLITE_MUTEX_RECURSIVE) -** cause sqlite3_mutex_alloc() to create -** a new mutex. ^The new mutex is recursive when SQLITE_MUTEX_RECURSIVE -** is used but not necessarily so when SQLITE_MUTEX_FAST is used. -** The mutex implementation does not need to make a distinction -** between SQLITE_MUTEX_RECURSIVE and SQLITE_MUTEX_FAST if it does -** not want to. SQLite will only request a recursive mutex in -** cases where it really needs one. If a faster non-recursive mutex -** implementation is available on the host platform, the mutex subsystem -** might return such a mutex in response to SQLITE_MUTEX_FAST. -** -** ^The other allowed parameters to sqlite3_mutex_alloc() (anything other -** than SQLITE_MUTEX_FAST and SQLITE_MUTEX_RECURSIVE) each return -** a pointer to a static preexisting mutex. ^Nine static mutexes are -** used by the current version of SQLite. Future versions of SQLite -** may add additional static mutexes. Static mutexes are for internal -** use by SQLite only. Applications that use SQLite mutexes should -** use only the dynamic mutexes returned by SQLITE_MUTEX_FAST or -** SQLITE_MUTEX_RECURSIVE. -** -** ^Note that if one of the dynamic mutex parameters (SQLITE_MUTEX_FAST -** or SQLITE_MUTEX_RECURSIVE) is used then sqlite3_mutex_alloc() -** returns a different mutex on every call. ^For the static -** mutex types, the same mutex is returned on every call that has -** the same type number. -** -** ^The sqlite3_mutex_free() routine deallocates a previously -** allocated dynamic mutex. Attempting to deallocate a static -** mutex results in undefined behavior. -** -** ^The sqlite3_mutex_enter() and sqlite3_mutex_try() routines attempt -** to enter a mutex. ^If another thread is already within the mutex, -** sqlite3_mutex_enter() will block and sqlite3_mutex_try() will return -** SQLITE_BUSY. ^The sqlite3_mutex_try() interface returns [SQLITE_OK] -** upon successful entry. ^(Mutexes created using -** SQLITE_MUTEX_RECURSIVE can be entered multiple times by the same thread. -** In such cases, the -** mutex must be exited an equal number of times before another thread -** can enter.)^ If the same thread tries to enter any mutex other -** than an SQLITE_MUTEX_RECURSIVE more than once, the behavior is undefined. -** -** ^(Some systems (for example, Windows 95) do not support the operation -** implemented by sqlite3_mutex_try(). On those systems, sqlite3_mutex_try() -** will always return SQLITE_BUSY. The SQLite core only ever uses -** sqlite3_mutex_try() as an optimization so this is acceptable -** behavior.)^ -** -** ^The sqlite3_mutex_leave() routine exits a mutex that was -** previously entered by the same thread. The behavior -** is undefined if the mutex is not currently entered by the -** calling thread or is not currently allocated. -** -** ^If the argument to sqlite3_mutex_enter(), sqlite3_mutex_try(), or -** sqlite3_mutex_leave() is a NULL pointer, then all three routines -** behave as no-ops. -** -** See also: [sqlite3_mutex_held()] and [sqlite3_mutex_notheld()]. -*/ -SQLITE_API sqlite3_mutex *sqlite3_mutex_alloc(int); -SQLITE_API void sqlite3_mutex_free(sqlite3_mutex*); -SQLITE_API void sqlite3_mutex_enter(sqlite3_mutex*); -SQLITE_API int sqlite3_mutex_try(sqlite3_mutex*); -SQLITE_API void sqlite3_mutex_leave(sqlite3_mutex*); - -/* -** CAPI3REF: Mutex Methods Object -** -** An instance of this structure defines the low-level routines -** used to allocate and use mutexes. -** -** Usually, the default mutex implementations provided by SQLite are -** sufficient, however the application has the option of substituting a custom -** implementation for specialized deployments or systems for which SQLite -** does not provide a suitable implementation. In this case, the application -** creates and populates an instance of this structure to pass -** to sqlite3_config() along with the [SQLITE_CONFIG_MUTEX] option. -** Additionally, an instance of this structure can be used as an -** output variable when querying the system for the current mutex -** implementation, using the [SQLITE_CONFIG_GETMUTEX] option. -** -** ^The xMutexInit method defined by this structure is invoked as -** part of system initialization by the sqlite3_initialize() function. -** ^The xMutexInit routine is called by SQLite exactly once for each -** effective call to [sqlite3_initialize()]. -** -** ^The xMutexEnd method defined by this structure is invoked as -** part of system shutdown by the sqlite3_shutdown() function. The -** implementation of this method is expected to release all outstanding -** resources obtained by the mutex methods implementation, especially -** those obtained by the xMutexInit method. ^The xMutexEnd() -** interface is invoked exactly once for each call to [sqlite3_shutdown()]. -** -** ^(The remaining seven methods defined by this structure (xMutexAlloc, -** xMutexFree, xMutexEnter, xMutexTry, xMutexLeave, xMutexHeld and -** xMutexNotheld) implement the following interfaces (respectively): -** -**
      -**
    • [sqlite3_mutex_alloc()]
    • -**
    • [sqlite3_mutex_free()]
    • -**
    • [sqlite3_mutex_enter()]
    • -**
    • [sqlite3_mutex_try()]
    • -**
    • [sqlite3_mutex_leave()]
    • -**
    • [sqlite3_mutex_held()]
    • -**
    • [sqlite3_mutex_notheld()]
    • -**
    )^ -** -** The only difference is that the public sqlite3_XXX functions enumerated -** above silently ignore any invocations that pass a NULL pointer instead -** of a valid mutex handle. The implementations of the methods defined -** by this structure are not required to handle this case. The results -** of passing a NULL pointer instead of a valid mutex handle are undefined -** (i.e. it is acceptable to provide an implementation that segfaults if -** it is passed a NULL pointer). -** -** The xMutexInit() method must be threadsafe. It must be harmless to -** invoke xMutexInit() multiple times within the same process and without -** intervening calls to xMutexEnd(). Second and subsequent calls to -** xMutexInit() must be no-ops. -** -** xMutexInit() must not use SQLite memory allocation ([sqlite3_malloc()] -** and its associates). Similarly, xMutexAlloc() must not use SQLite memory -** allocation for a static mutex. ^However xMutexAlloc() may use SQLite -** memory allocation for a fast or recursive mutex. -** -** ^SQLite will invoke the xMutexEnd() method when [sqlite3_shutdown()] is -** called, but only if the prior call to xMutexInit returned SQLITE_OK. -** If xMutexInit fails in any way, it is expected to clean up after itself -** prior to returning. -*/ -typedef struct sqlite3_mutex_methods sqlite3_mutex_methods; -struct sqlite3_mutex_methods { - int (*xMutexInit)(void); - int (*xMutexEnd)(void); - sqlite3_mutex *(*xMutexAlloc)(int); - void (*xMutexFree)(sqlite3_mutex *); - void (*xMutexEnter)(sqlite3_mutex *); - int (*xMutexTry)(sqlite3_mutex *); - void (*xMutexLeave)(sqlite3_mutex *); - int (*xMutexHeld)(sqlite3_mutex *); - int (*xMutexNotheld)(sqlite3_mutex *); -}; - -/* -** CAPI3REF: Mutex Verification Routines -** -** The sqlite3_mutex_held() and sqlite3_mutex_notheld() routines -** are intended for use inside assert() statements. The SQLite core -** never uses these routines except inside an assert() and applications -** are advised to follow the lead of the core. The SQLite core only -** provides implementations for these routines when it is compiled -** with the SQLITE_DEBUG flag. External mutex implementations -** are only required to provide these routines if SQLITE_DEBUG is -** defined and if NDEBUG is not defined. -** -** These routines should return true if the mutex in their argument -** is held or not held, respectively, by the calling thread. -** -** The implementation is not required to provide versions of these -** routines that actually work. If the implementation does not provide working -** versions of these routines, it should at least provide stubs that always -** return true so that one does not get spurious assertion failures. -** -** If the argument to sqlite3_mutex_held() is a NULL pointer then -** the routine should return 1. This seems counter-intuitive since -** clearly the mutex cannot be held if it does not exist. But -** the reason the mutex does not exist is because the build is not -** using mutexes. And we do not want the assert() containing the -** call to sqlite3_mutex_held() to fail, so a non-zero return is -** the appropriate thing to do. The sqlite3_mutex_notheld() -** interface should also return 1 when given a NULL pointer. -*/ -#ifndef NDEBUG -SQLITE_API int sqlite3_mutex_held(sqlite3_mutex*); -SQLITE_API int sqlite3_mutex_notheld(sqlite3_mutex*); -#endif - -/* -** CAPI3REF: Mutex Types -** -** The [sqlite3_mutex_alloc()] interface takes a single argument -** which is one of these integer constants. -** -** The set of static mutexes may change from one SQLite release to the -** next. Applications that override the built-in mutex logic must be -** prepared to accommodate additional static mutexes. -*/ -#define SQLITE_MUTEX_FAST 0 -#define SQLITE_MUTEX_RECURSIVE 1 -#define SQLITE_MUTEX_STATIC_MAIN 2 -#define SQLITE_MUTEX_STATIC_MEM 3 /* sqlite3_malloc() */ -#define SQLITE_MUTEX_STATIC_MEM2 4 /* NOT USED */ -#define SQLITE_MUTEX_STATIC_OPEN 4 /* sqlite3BtreeOpen() */ -#define SQLITE_MUTEX_STATIC_PRNG 5 /* sqlite3_randomness() */ -#define SQLITE_MUTEX_STATIC_LRU 6 /* lru page list */ -#define SQLITE_MUTEX_STATIC_LRU2 7 /* NOT USED */ -#define SQLITE_MUTEX_STATIC_PMEM 7 /* sqlite3PageMalloc() */ -#define SQLITE_MUTEX_STATIC_APP1 8 /* For use by application */ -#define SQLITE_MUTEX_STATIC_APP2 9 /* For use by application */ -#define SQLITE_MUTEX_STATIC_APP3 10 /* For use by application */ -#define SQLITE_MUTEX_STATIC_VFS1 11 /* For use by built-in VFS */ -#define SQLITE_MUTEX_STATIC_VFS2 12 /* For use by extension VFS */ -#define SQLITE_MUTEX_STATIC_VFS3 13 /* For use by application VFS */ - -/* Legacy compatibility: */ -#define SQLITE_MUTEX_STATIC_MASTER 2 - - -/* -** CAPI3REF: Retrieve the mutex for a database connection -** METHOD: sqlite3 -** -** ^This interface returns a pointer the [sqlite3_mutex] object that -** serializes access to the [database connection] given in the argument -** when the [threading mode] is Serialized. -** ^If the [threading mode] is Single-thread or Multi-thread then this -** routine returns a NULL pointer. -*/ -SQLITE_API sqlite3_mutex *sqlite3_db_mutex(sqlite3*); - -/* -** CAPI3REF: Low-Level Control Of Database Files -** METHOD: sqlite3 -** KEYWORDS: {file control} -** -** ^The [sqlite3_file_control()] interface makes a direct call to the -** xFileControl method for the [sqlite3_io_methods] object associated -** with a particular database identified by the second argument. ^The -** name of the database is "main" for the main database or "temp" for the -** TEMP database, or the name that appears after the AS keyword for -** databases that are added using the [ATTACH] SQL command. -** ^A NULL pointer can be used in place of "main" to refer to the -** main database file. -** ^The third and fourth parameters to this routine -** are passed directly through to the second and third parameters of -** the xFileControl method. ^The return value of the xFileControl -** method becomes the return value of this routine. -** -** A few opcodes for [sqlite3_file_control()] are handled directly -** by the SQLite core and never invoke the -** sqlite3_io_methods.xFileControl method. -** ^The [SQLITE_FCNTL_FILE_POINTER] value for the op parameter causes -** a pointer to the underlying [sqlite3_file] object to be written into -** the space pointed to by the 4th parameter. The -** [SQLITE_FCNTL_JOURNAL_POINTER] works similarly except that it returns -** the [sqlite3_file] object associated with the journal file instead of -** the main database. The [SQLITE_FCNTL_VFS_POINTER] opcode returns -** a pointer to the underlying [sqlite3_vfs] object for the file. -** The [SQLITE_FCNTL_DATA_VERSION] returns the data version counter -** from the pager. -** -** ^If the second parameter (zDbName) does not match the name of any -** open database file, then SQLITE_ERROR is returned. ^This error -** code is not remembered and will not be recalled by [sqlite3_errcode()] -** or [sqlite3_errmsg()]. The underlying xFileControl method might -** also return SQLITE_ERROR. There is no way to distinguish between -** an incorrect zDbName and an SQLITE_ERROR return from the underlying -** xFileControl method. -** -** See also: [file control opcodes] -*/ -SQLITE_API int sqlite3_file_control(sqlite3*, const char *zDbName, int op, void*); - -/* -** CAPI3REF: Testing Interface -** -** ^The sqlite3_test_control() interface is used to read out internal -** state of SQLite and to inject faults into SQLite for testing -** purposes. ^The first parameter is an operation code that determines -** the number, meaning, and operation of all subsequent parameters. -** -** This interface is not for use by applications. It exists solely -** for verifying the correct operation of the SQLite library. Depending -** on how the SQLite library is compiled, this interface might not exist. -** -** The details of the operation codes, their meanings, the parameters -** they take, and what they do are all subject to change without notice. -** Unlike most of the SQLite API, this function is not guaranteed to -** operate consistently from one release to the next. -*/ -SQLITE_API int sqlite3_test_control(int op, ...); - -/* -** CAPI3REF: Testing Interface Operation Codes -** -** These constants are the valid operation code parameters used -** as the first argument to [sqlite3_test_control()]. -** -** These parameters and their meanings are subject to change -** without notice. These values are for testing purposes only. -** Applications should not use any of these parameters or the -** [sqlite3_test_control()] interface. -*/ -#define SQLITE_TESTCTRL_FIRST 5 -#define SQLITE_TESTCTRL_PRNG_SAVE 5 -#define SQLITE_TESTCTRL_PRNG_RESTORE 6 -#define SQLITE_TESTCTRL_PRNG_RESET 7 /* NOT USED */ -#define SQLITE_TESTCTRL_BITVEC_TEST 8 -#define SQLITE_TESTCTRL_FAULT_INSTALL 9 -#define SQLITE_TESTCTRL_BENIGN_MALLOC_HOOKS 10 -#define SQLITE_TESTCTRL_PENDING_BYTE 11 -#define SQLITE_TESTCTRL_ASSERT 12 -#define SQLITE_TESTCTRL_ALWAYS 13 -#define SQLITE_TESTCTRL_RESERVE 14 /* NOT USED */ -#define SQLITE_TESTCTRL_OPTIMIZATIONS 15 -#define SQLITE_TESTCTRL_ISKEYWORD 16 /* NOT USED */ -#define SQLITE_TESTCTRL_SCRATCHMALLOC 17 /* NOT USED */ -#define SQLITE_TESTCTRL_INTERNAL_FUNCTIONS 17 -#define SQLITE_TESTCTRL_LOCALTIME_FAULT 18 -#define SQLITE_TESTCTRL_EXPLAIN_STMT 19 /* NOT USED */ -#define SQLITE_TESTCTRL_ONCE_RESET_THRESHOLD 19 -#define SQLITE_TESTCTRL_NEVER_CORRUPT 20 -#define SQLITE_TESTCTRL_VDBE_COVERAGE 21 -#define SQLITE_TESTCTRL_BYTEORDER 22 -#define SQLITE_TESTCTRL_ISINIT 23 -#define SQLITE_TESTCTRL_SORTER_MMAP 24 -#define SQLITE_TESTCTRL_IMPOSTER 25 -#define SQLITE_TESTCTRL_PARSER_COVERAGE 26 -#define SQLITE_TESTCTRL_RESULT_INTREAL 27 -#define SQLITE_TESTCTRL_PRNG_SEED 28 -#define SQLITE_TESTCTRL_EXTRA_SCHEMA_CHECKS 29 -#define SQLITE_TESTCTRL_SEEK_COUNT 30 -#define SQLITE_TESTCTRL_TRACEFLAGS 31 -#define SQLITE_TESTCTRL_TUNE 32 -#define SQLITE_TESTCTRL_LOGEST 33 -#define SQLITE_TESTCTRL_LAST 33 /* Largest TESTCTRL */ - -/* -** CAPI3REF: SQL Keyword Checking -** -** These routines provide access to the set of SQL language keywords -** recognized by SQLite. Applications can uses these routines to determine -** whether or not a specific identifier needs to be escaped (for example, -** by enclosing in double-quotes) so as not to confuse the parser. -** -** The sqlite3_keyword_count() interface returns the number of distinct -** keywords understood by SQLite. -** -** The sqlite3_keyword_name(N,Z,L) interface finds the N-th keyword and -** makes *Z point to that keyword expressed as UTF8 and writes the number -** of bytes in the keyword into *L. The string that *Z points to is not -** zero-terminated. The sqlite3_keyword_name(N,Z,L) routine returns -** SQLITE_OK if N is within bounds and SQLITE_ERROR if not. If either Z -** or L are NULL or invalid pointers then calls to -** sqlite3_keyword_name(N,Z,L) result in undefined behavior. -** -** The sqlite3_keyword_check(Z,L) interface checks to see whether or not -** the L-byte UTF8 identifier that Z points to is a keyword, returning non-zero -** if it is and zero if not. -** -** The parser used by SQLite is forgiving. It is often possible to use -** a keyword as an identifier as long as such use does not result in a -** parsing ambiguity. For example, the statement -** "CREATE TABLE BEGIN(REPLACE,PRAGMA,END);" is accepted by SQLite, and -** creates a new table named "BEGIN" with three columns named -** "REPLACE", "PRAGMA", and "END". Nevertheless, best practice is to avoid -** using keywords as identifiers. Common techniques used to avoid keyword -** name collisions include: -**
      -**
    • Put all identifier names inside double-quotes. This is the official -** SQL way to escape identifier names. -**
    • Put identifier names inside [...]. This is not standard SQL, -** but it is what SQL Server does and so lots of programmers use this -** technique. -**
    • Begin every identifier with the letter "Z" as no SQL keywords start -** with "Z". -**
    • Include a digit somewhere in every identifier name. -**
    -** -** Note that the number of keywords understood by SQLite can depend on -** compile-time options. For example, "VACUUM" is not a keyword if -** SQLite is compiled with the [-DSQLITE_OMIT_VACUUM] option. Also, -** new keywords may be added to future releases of SQLite. -*/ -SQLITE_API int sqlite3_keyword_count(void); -SQLITE_API int sqlite3_keyword_name(int,const char**,int*); -SQLITE_API int sqlite3_keyword_check(const char*,int); - -/* -** CAPI3REF: Dynamic String Object -** KEYWORDS: {dynamic string} -** -** An instance of the sqlite3_str object contains a dynamically-sized -** string under construction. -** -** The lifecycle of an sqlite3_str object is as follows: -**
      -**
    1. ^The sqlite3_str object is created using [sqlite3_str_new()]. -**
    2. ^Text is appended to the sqlite3_str object using various -** methods, such as [sqlite3_str_appendf()]. -**
    3. ^The sqlite3_str object is destroyed and the string it created -** is returned using the [sqlite3_str_finish()] interface. -**
    -*/ -typedef struct sqlite3_str sqlite3_str; - -/* -** CAPI3REF: Create A New Dynamic String Object -** CONSTRUCTOR: sqlite3_str -** -** ^The [sqlite3_str_new(D)] interface allocates and initializes -** a new [sqlite3_str] object. To avoid memory leaks, the object returned by -** [sqlite3_str_new()] must be freed by a subsequent call to -** [sqlite3_str_finish(X)]. -** -** ^The [sqlite3_str_new(D)] interface always returns a pointer to a -** valid [sqlite3_str] object, though in the event of an out-of-memory -** error the returned object might be a special singleton that will -** silently reject new text, always return SQLITE_NOMEM from -** [sqlite3_str_errcode()], always return 0 for -** [sqlite3_str_length()], and always return NULL from -** [sqlite3_str_finish(X)]. It is always safe to use the value -** returned by [sqlite3_str_new(D)] as the sqlite3_str parameter -** to any of the other [sqlite3_str] methods. -** -** The D parameter to [sqlite3_str_new(D)] may be NULL. If the -** D parameter in [sqlite3_str_new(D)] is not NULL, then the maximum -** length of the string contained in the [sqlite3_str] object will be -** the value set for [sqlite3_limit](D,[SQLITE_LIMIT_LENGTH]) instead -** of [SQLITE_MAX_LENGTH]. -*/ -SQLITE_API sqlite3_str *sqlite3_str_new(sqlite3*); - -/* -** CAPI3REF: Finalize A Dynamic String -** DESTRUCTOR: sqlite3_str -** -** ^The [sqlite3_str_finish(X)] interface destroys the sqlite3_str object X -** and returns a pointer to a memory buffer obtained from [sqlite3_malloc64()] -** that contains the constructed string. The calling application should -** pass the returned value to [sqlite3_free()] to avoid a memory leak. -** ^The [sqlite3_str_finish(X)] interface may return a NULL pointer if any -** errors were encountered during construction of the string. ^The -** [sqlite3_str_finish(X)] interface will also return a NULL pointer if the -** string in [sqlite3_str] object X is zero bytes long. -*/ -SQLITE_API char *sqlite3_str_finish(sqlite3_str*); - -/* -** CAPI3REF: Add Content To A Dynamic String -** METHOD: sqlite3_str -** -** These interfaces add content to an sqlite3_str object previously obtained -** from [sqlite3_str_new()]. -** -** ^The [sqlite3_str_appendf(X,F,...)] and -** [sqlite3_str_vappendf(X,F,V)] interfaces uses the [built-in printf] -** functionality of SQLite to append formatted text onto the end of -** [sqlite3_str] object X. -** -** ^The [sqlite3_str_append(X,S,N)] method appends exactly N bytes from string S -** onto the end of the [sqlite3_str] object X. N must be non-negative. -** S must contain at least N non-zero bytes of content. To append a -** zero-terminated string in its entirety, use the [sqlite3_str_appendall()] -** method instead. -** -** ^The [sqlite3_str_appendall(X,S)] method appends the complete content of -** zero-terminated string S onto the end of [sqlite3_str] object X. -** -** ^The [sqlite3_str_appendchar(X,N,C)] method appends N copies of the -** single-byte character C onto the end of [sqlite3_str] object X. -** ^This method can be used, for example, to add whitespace indentation. -** -** ^The [sqlite3_str_reset(X)] method resets the string under construction -** inside [sqlite3_str] object X back to zero bytes in length. -** -** These methods do not return a result code. ^If an error occurs, that fact -** is recorded in the [sqlite3_str] object and can be recovered by a -** subsequent call to [sqlite3_str_errcode(X)]. -*/ -SQLITE_API void sqlite3_str_appendf(sqlite3_str*, const char *zFormat, ...); -SQLITE_API void sqlite3_str_vappendf(sqlite3_str*, const char *zFormat, va_list); -SQLITE_API void sqlite3_str_append(sqlite3_str*, const char *zIn, int N); -SQLITE_API void sqlite3_str_appendall(sqlite3_str*, const char *zIn); -SQLITE_API void sqlite3_str_appendchar(sqlite3_str*, int N, char C); -SQLITE_API void sqlite3_str_reset(sqlite3_str*); - -/* -** CAPI3REF: Status Of A Dynamic String -** METHOD: sqlite3_str -** -** These interfaces return the current status of an [sqlite3_str] object. -** -** ^If any prior errors have occurred while constructing the dynamic string -** in sqlite3_str X, then the [sqlite3_str_errcode(X)] method will return -** an appropriate error code. ^The [sqlite3_str_errcode(X)] method returns -** [SQLITE_NOMEM] following any out-of-memory error, or -** [SQLITE_TOOBIG] if the size of the dynamic string exceeds -** [SQLITE_MAX_LENGTH], or [SQLITE_OK] if there have been no errors. -** -** ^The [sqlite3_str_length(X)] method returns the current length, in bytes, -** of the dynamic string under construction in [sqlite3_str] object X. -** ^The length returned by [sqlite3_str_length(X)] does not include the -** zero-termination byte. -** -** ^The [sqlite3_str_value(X)] method returns a pointer to the current -** content of the dynamic string under construction in X. The value -** returned by [sqlite3_str_value(X)] is managed by the sqlite3_str object X -** and might be freed or altered by any subsequent method on the same -** [sqlite3_str] object. Applications must not used the pointer returned -** [sqlite3_str_value(X)] after any subsequent method call on the same -** object. ^Applications may change the content of the string returned -** by [sqlite3_str_value(X)] as long as they do not write into any bytes -** outside the range of 0 to [sqlite3_str_length(X)] and do not read or -** write any byte after any subsequent sqlite3_str method call. -*/ -SQLITE_API int sqlite3_str_errcode(sqlite3_str*); -SQLITE_API int sqlite3_str_length(sqlite3_str*); -SQLITE_API char *sqlite3_str_value(sqlite3_str*); - -/* -** CAPI3REF: SQLite Runtime Status -** -** ^These interfaces are used to retrieve runtime status information -** about the performance of SQLite, and optionally to reset various -** highwater marks. ^The first argument is an integer code for -** the specific parameter to measure. ^(Recognized integer codes -** are of the form [status parameters | SQLITE_STATUS_...].)^ -** ^The current value of the parameter is returned into *pCurrent. -** ^The highest recorded value is returned in *pHighwater. ^If the -** resetFlag is true, then the highest record value is reset after -** *pHighwater is written. ^(Some parameters do not record the highest -** value. For those parameters -** nothing is written into *pHighwater and the resetFlag is ignored.)^ -** ^(Other parameters record only the highwater mark and not the current -** value. For these latter parameters nothing is written into *pCurrent.)^ -** -** ^The sqlite3_status() and sqlite3_status64() routines return -** SQLITE_OK on success and a non-zero [error code] on failure. -** -** If either the current value or the highwater mark is too large to -** be represented by a 32-bit integer, then the values returned by -** sqlite3_status() are undefined. -** -** See also: [sqlite3_db_status()] -*/ -SQLITE_API int sqlite3_status(int op, int *pCurrent, int *pHighwater, int resetFlag); -SQLITE_API int sqlite3_status64( - int op, - sqlite3_int64 *pCurrent, - sqlite3_int64 *pHighwater, - int resetFlag -); - - -/* -** CAPI3REF: Status Parameters -** KEYWORDS: {status parameters} -** -** These integer constants designate various run-time status parameters -** that can be returned by [sqlite3_status()]. -** -**
    -** [[SQLITE_STATUS_MEMORY_USED]] ^(
    SQLITE_STATUS_MEMORY_USED
    -**
    This parameter is the current amount of memory checked out -** using [sqlite3_malloc()], either directly or indirectly. The -** figure includes calls made to [sqlite3_malloc()] by the application -** and internal memory usage by the SQLite library. Auxiliary page-cache -** memory controlled by [SQLITE_CONFIG_PAGECACHE] is not included in -** this parameter. The amount returned is the sum of the allocation -** sizes as reported by the xSize method in [sqlite3_mem_methods].
    )^ -** -** [[SQLITE_STATUS_MALLOC_SIZE]] ^(
    SQLITE_STATUS_MALLOC_SIZE
    -**
    This parameter records the largest memory allocation request -** handed to [sqlite3_malloc()] or [sqlite3_realloc()] (or their -** internal equivalents). Only the value returned in the -** *pHighwater parameter to [sqlite3_status()] is of interest. -** The value written into the *pCurrent parameter is undefined.
    )^ -** -** [[SQLITE_STATUS_MALLOC_COUNT]] ^(
    SQLITE_STATUS_MALLOC_COUNT
    -**
    This parameter records the number of separate memory allocations -** currently checked out.
    )^ -** -** [[SQLITE_STATUS_PAGECACHE_USED]] ^(
    SQLITE_STATUS_PAGECACHE_USED
    -**
    This parameter returns the number of pages used out of the -** [pagecache memory allocator] that was configured using -** [SQLITE_CONFIG_PAGECACHE]. The -** value returned is in pages, not in bytes.
    )^ -** -** [[SQLITE_STATUS_PAGECACHE_OVERFLOW]] -** ^(
    SQLITE_STATUS_PAGECACHE_OVERFLOW
    -**
    This parameter returns the number of bytes of page cache -** allocation which could not be satisfied by the [SQLITE_CONFIG_PAGECACHE] -** buffer and where forced to overflow to [sqlite3_malloc()]. The -** returned value includes allocations that overflowed because they -** where too large (they were larger than the "sz" parameter to -** [SQLITE_CONFIG_PAGECACHE]) and allocations that overflowed because -** no space was left in the page cache.
    )^ -** -** [[SQLITE_STATUS_PAGECACHE_SIZE]] ^(
    SQLITE_STATUS_PAGECACHE_SIZE
    -**
    This parameter records the largest memory allocation request -** handed to the [pagecache memory allocator]. Only the value returned in the -** *pHighwater parameter to [sqlite3_status()] is of interest. -** The value written into the *pCurrent parameter is undefined.
    )^ -** -** [[SQLITE_STATUS_SCRATCH_USED]]
    SQLITE_STATUS_SCRATCH_USED
    -**
    No longer used.
    -** -** [[SQLITE_STATUS_SCRATCH_OVERFLOW]] ^(
    SQLITE_STATUS_SCRATCH_OVERFLOW
    -**
    No longer used.
    -** -** [[SQLITE_STATUS_SCRATCH_SIZE]]
    SQLITE_STATUS_SCRATCH_SIZE
    -**
    No longer used.
    -** -** [[SQLITE_STATUS_PARSER_STACK]] ^(
    SQLITE_STATUS_PARSER_STACK
    -**
    The *pHighwater parameter records the deepest parser stack. -** The *pCurrent value is undefined. The *pHighwater value is only -** meaningful if SQLite is compiled with [YYTRACKMAXSTACKDEPTH].
    )^ -**
    -** -** New status parameters may be added from time to time. -*/ -#define SQLITE_STATUS_MEMORY_USED 0 -#define SQLITE_STATUS_PAGECACHE_USED 1 -#define SQLITE_STATUS_PAGECACHE_OVERFLOW 2 -#define SQLITE_STATUS_SCRATCH_USED 3 /* NOT USED */ -#define SQLITE_STATUS_SCRATCH_OVERFLOW 4 /* NOT USED */ -#define SQLITE_STATUS_MALLOC_SIZE 5 -#define SQLITE_STATUS_PARSER_STACK 6 -#define SQLITE_STATUS_PAGECACHE_SIZE 7 -#define SQLITE_STATUS_SCRATCH_SIZE 8 /* NOT USED */ -#define SQLITE_STATUS_MALLOC_COUNT 9 - -/* -** CAPI3REF: Database Connection Status -** METHOD: sqlite3 -** -** ^This interface is used to retrieve runtime status information -** about a single [database connection]. ^The first argument is the -** database connection object to be interrogated. ^The second argument -** is an integer constant, taken from the set of -** [SQLITE_DBSTATUS options], that -** determines the parameter to interrogate. The set of -** [SQLITE_DBSTATUS options] is likely -** to grow in future releases of SQLite. -** -** ^The current value of the requested parameter is written into *pCur -** and the highest instantaneous value is written into *pHiwtr. ^If -** the resetFlg is true, then the highest instantaneous value is -** reset back down to the current value. -** -** ^The sqlite3_db_status() routine returns SQLITE_OK on success and a -** non-zero [error code] on failure. -** -** See also: [sqlite3_status()] and [sqlite3_stmt_status()]. -*/ -SQLITE_API int sqlite3_db_status(sqlite3*, int op, int *pCur, int *pHiwtr, int resetFlg); - -/* -** CAPI3REF: Status Parameters for database connections -** KEYWORDS: {SQLITE_DBSTATUS options} -** -** These constants are the available integer "verbs" that can be passed as -** the second argument to the [sqlite3_db_status()] interface. -** -** New verbs may be added in future releases of SQLite. Existing verbs -** might be discontinued. Applications should check the return code from -** [sqlite3_db_status()] to make sure that the call worked. -** The [sqlite3_db_status()] interface will return a non-zero error code -** if a discontinued or unsupported verb is invoked. -** -**
    -** [[SQLITE_DBSTATUS_LOOKASIDE_USED]] ^(
    SQLITE_DBSTATUS_LOOKASIDE_USED
    -**
    This parameter returns the number of lookaside memory slots currently -** checked out.
    )^ -** -** [[SQLITE_DBSTATUS_LOOKASIDE_HIT]] ^(
    SQLITE_DBSTATUS_LOOKASIDE_HIT
    -**
    This parameter returns the number of malloc attempts that were -** satisfied using lookaside memory. Only the high-water value is meaningful; -** the current value is always zero.)^ -** -** [[SQLITE_DBSTATUS_LOOKASIDE_MISS_SIZE]] -** ^(
    SQLITE_DBSTATUS_LOOKASIDE_MISS_SIZE
    -**
    This parameter returns the number malloc attempts that might have -** been satisfied using lookaside memory but failed due to the amount of -** memory requested being larger than the lookaside slot size. -** Only the high-water value is meaningful; -** the current value is always zero.)^ -** -** [[SQLITE_DBSTATUS_LOOKASIDE_MISS_FULL]] -** ^(
    SQLITE_DBSTATUS_LOOKASIDE_MISS_FULL
    -**
    This parameter returns the number malloc attempts that might have -** been satisfied using lookaside memory but failed due to all lookaside -** memory already being in use. -** Only the high-water value is meaningful; -** the current value is always zero.)^ -** -** [[SQLITE_DBSTATUS_CACHE_USED]] ^(
    SQLITE_DBSTATUS_CACHE_USED
    -**
    This parameter returns the approximate number of bytes of heap -** memory used by all pager caches associated with the database connection.)^ -** ^The highwater mark associated with SQLITE_DBSTATUS_CACHE_USED is always 0. -** -** [[SQLITE_DBSTATUS_CACHE_USED_SHARED]] -** ^(
    SQLITE_DBSTATUS_CACHE_USED_SHARED
    -**
    This parameter is similar to DBSTATUS_CACHE_USED, except that if a -** pager cache is shared between two or more connections the bytes of heap -** memory used by that pager cache is divided evenly between the attached -** connections.)^ In other words, if none of the pager caches associated -** with the database connection are shared, this request returns the same -** value as DBSTATUS_CACHE_USED. Or, if one or more or the pager caches are -** shared, the value returned by this call will be smaller than that returned -** by DBSTATUS_CACHE_USED. ^The highwater mark associated with -** SQLITE_DBSTATUS_CACHE_USED_SHARED is always 0. -** -** [[SQLITE_DBSTATUS_SCHEMA_USED]] ^(
    SQLITE_DBSTATUS_SCHEMA_USED
    -**
    This parameter returns the approximate number of bytes of heap -** memory used to store the schema for all databases associated -** with the connection - main, temp, and any [ATTACH]-ed databases.)^ -** ^The full amount of memory used by the schemas is reported, even if the -** schema memory is shared with other database connections due to -** [shared cache mode] being enabled. -** ^The highwater mark associated with SQLITE_DBSTATUS_SCHEMA_USED is always 0. -** -** [[SQLITE_DBSTATUS_STMT_USED]] ^(
    SQLITE_DBSTATUS_STMT_USED
    -**
    This parameter returns the approximate number of bytes of heap -** and lookaside memory used by all prepared statements associated with -** the database connection.)^ -** ^The highwater mark associated with SQLITE_DBSTATUS_STMT_USED is always 0. -**
    -** -** [[SQLITE_DBSTATUS_CACHE_HIT]] ^(
    SQLITE_DBSTATUS_CACHE_HIT
    -**
    This parameter returns the number of pager cache hits that have -** occurred.)^ ^The highwater mark associated with SQLITE_DBSTATUS_CACHE_HIT -** is always 0. -**
    -** -** [[SQLITE_DBSTATUS_CACHE_MISS]] ^(
    SQLITE_DBSTATUS_CACHE_MISS
    -**
    This parameter returns the number of pager cache misses that have -** occurred.)^ ^The highwater mark associated with SQLITE_DBSTATUS_CACHE_MISS -** is always 0. -**
    -** -** [[SQLITE_DBSTATUS_CACHE_WRITE]] ^(
    SQLITE_DBSTATUS_CACHE_WRITE
    -**
    This parameter returns the number of dirty cache entries that have -** been written to disk. Specifically, the number of pages written to the -** wal file in wal mode databases, or the number of pages written to the -** database file in rollback mode databases. Any pages written as part of -** transaction rollback or database recovery operations are not included. -** If an IO or other error occurs while writing a page to disk, the effect -** on subsequent SQLITE_DBSTATUS_CACHE_WRITE requests is undefined.)^ ^The -** highwater mark associated with SQLITE_DBSTATUS_CACHE_WRITE is always 0. -**
    -** -** [[SQLITE_DBSTATUS_CACHE_SPILL]] ^(
    SQLITE_DBSTATUS_CACHE_SPILL
    -**
    This parameter returns the number of dirty cache entries that have -** been written to disk in the middle of a transaction due to the page -** cache overflowing. Transactions are more efficient if they are written -** to disk all at once. When pages spill mid-transaction, that introduces -** additional overhead. This parameter can be used help identify -** inefficiencies that can be resolved by increasing the cache size. -**
    -** -** [[SQLITE_DBSTATUS_DEFERRED_FKS]] ^(
    SQLITE_DBSTATUS_DEFERRED_FKS
    -**
    This parameter returns zero for the current value if and only if -** all foreign key constraints (deferred or immediate) have been -** resolved.)^ ^The highwater mark is always 0. -**
    -**
    -*/ -#define SQLITE_DBSTATUS_LOOKASIDE_USED 0 -#define SQLITE_DBSTATUS_CACHE_USED 1 -#define SQLITE_DBSTATUS_SCHEMA_USED 2 -#define SQLITE_DBSTATUS_STMT_USED 3 -#define SQLITE_DBSTATUS_LOOKASIDE_HIT 4 -#define SQLITE_DBSTATUS_LOOKASIDE_MISS_SIZE 5 -#define SQLITE_DBSTATUS_LOOKASIDE_MISS_FULL 6 -#define SQLITE_DBSTATUS_CACHE_HIT 7 -#define SQLITE_DBSTATUS_CACHE_MISS 8 -#define SQLITE_DBSTATUS_CACHE_WRITE 9 -#define SQLITE_DBSTATUS_DEFERRED_FKS 10 -#define SQLITE_DBSTATUS_CACHE_USED_SHARED 11 -#define SQLITE_DBSTATUS_CACHE_SPILL 12 -#define SQLITE_DBSTATUS_MAX 12 /* Largest defined DBSTATUS */ - - -/* -** CAPI3REF: Prepared Statement Status -** METHOD: sqlite3_stmt -** -** ^(Each prepared statement maintains various -** [SQLITE_STMTSTATUS counters] that measure the number -** of times it has performed specific operations.)^ These counters can -** be used to monitor the performance characteristics of the prepared -** statements. For example, if the number of table steps greatly exceeds -** the number of table searches or result rows, that would tend to indicate -** that the prepared statement is using a full table scan rather than -** an index. -** -** ^(This interface is used to retrieve and reset counter values from -** a [prepared statement]. The first argument is the prepared statement -** object to be interrogated. The second argument -** is an integer code for a specific [SQLITE_STMTSTATUS counter] -** to be interrogated.)^ -** ^The current value of the requested counter is returned. -** ^If the resetFlg is true, then the counter is reset to zero after this -** interface call returns. -** -** See also: [sqlite3_status()] and [sqlite3_db_status()]. -*/ -SQLITE_API int sqlite3_stmt_status(sqlite3_stmt*, int op,int resetFlg); - -/* -** CAPI3REF: Status Parameters for prepared statements -** KEYWORDS: {SQLITE_STMTSTATUS counter} {SQLITE_STMTSTATUS counters} -** -** These preprocessor macros define integer codes that name counter -** values associated with the [sqlite3_stmt_status()] interface. -** The meanings of the various counters are as follows: -** -**
    -** [[SQLITE_STMTSTATUS_FULLSCAN_STEP]]
    SQLITE_STMTSTATUS_FULLSCAN_STEP
    -**
    ^This is the number of times that SQLite has stepped forward in -** a table as part of a full table scan. Large numbers for this counter -** may indicate opportunities for performance improvement through -** careful use of indices.
    -** -** [[SQLITE_STMTSTATUS_SORT]]
    SQLITE_STMTSTATUS_SORT
    -**
    ^This is the number of sort operations that have occurred. -** A non-zero value in this counter may indicate an opportunity to -** improvement performance through careful use of indices.
    -** -** [[SQLITE_STMTSTATUS_AUTOINDEX]]
    SQLITE_STMTSTATUS_AUTOINDEX
    -**
    ^This is the number of rows inserted into transient indices that -** were created automatically in order to help joins run faster. -** A non-zero value in this counter may indicate an opportunity to -** improvement performance by adding permanent indices that do not -** need to be reinitialized each time the statement is run.
    -** -** [[SQLITE_STMTSTATUS_VM_STEP]]
    SQLITE_STMTSTATUS_VM_STEP
    -**
    ^This is the number of virtual machine operations executed -** by the prepared statement if that number is less than or equal -** to 2147483647. The number of virtual machine operations can be -** used as a proxy for the total work done by the prepared statement. -** If the number of virtual machine operations exceeds 2147483647 -** then the value returned by this statement status code is undefined. -** -** [[SQLITE_STMTSTATUS_REPREPARE]]
    SQLITE_STMTSTATUS_REPREPARE
    -**
    ^This is the number of times that the prepare statement has been -** automatically regenerated due to schema changes or changes to -** [bound parameters] that might affect the query plan. -** -** [[SQLITE_STMTSTATUS_RUN]]
    SQLITE_STMTSTATUS_RUN
    -**
    ^This is the number of times that the prepared statement has -** been run. A single "run" for the purposes of this counter is one -** or more calls to [sqlite3_step()] followed by a call to [sqlite3_reset()]. -** The counter is incremented on the first [sqlite3_step()] call of each -** cycle. -** -** [[SQLITE_STMTSTATUS_FILTER_MISS]] -** [[SQLITE_STMTSTATUS_FILTER HIT]] -**
    SQLITE_STMTSTATUS_FILTER_HIT
    -** SQLITE_STMTSTATUS_FILTER_MISS
    -**
    ^SQLITE_STMTSTATUS_FILTER_HIT is the number of times that a join -** step was bypassed because a Bloom filter returned not-found. The -** corresponding SQLITE_STMTSTATUS_FILTER_MISS value is the number of -** times that the Bloom filter returned a find, and thus the join step -** had to be processed as normal. -** -** [[SQLITE_STMTSTATUS_MEMUSED]]
    SQLITE_STMTSTATUS_MEMUSED
    -**
    ^This is the approximate number of bytes of heap memory -** used to store the prepared statement. ^This value is not actually -** a counter, and so the resetFlg parameter to sqlite3_stmt_status() -** is ignored when the opcode is SQLITE_STMTSTATUS_MEMUSED. -**
    -**
    -*/ -#define SQLITE_STMTSTATUS_FULLSCAN_STEP 1 -#define SQLITE_STMTSTATUS_SORT 2 -#define SQLITE_STMTSTATUS_AUTOINDEX 3 -#define SQLITE_STMTSTATUS_VM_STEP 4 -#define SQLITE_STMTSTATUS_REPREPARE 5 -#define SQLITE_STMTSTATUS_RUN 6 -#define SQLITE_STMTSTATUS_FILTER_MISS 7 -#define SQLITE_STMTSTATUS_FILTER_HIT 8 -#define SQLITE_STMTSTATUS_MEMUSED 99 - -/* -** CAPI3REF: Custom Page Cache Object -** -** The sqlite3_pcache type is opaque. It is implemented by -** the pluggable module. The SQLite core has no knowledge of -** its size or internal structure and never deals with the -** sqlite3_pcache object except by holding and passing pointers -** to the object. -** -** See [sqlite3_pcache_methods2] for additional information. -*/ -typedef struct sqlite3_pcache sqlite3_pcache; - -/* -** CAPI3REF: Custom Page Cache Object -** -** The sqlite3_pcache_page object represents a single page in the -** page cache. The page cache will allocate instances of this -** object. Various methods of the page cache use pointers to instances -** of this object as parameters or as their return value. -** -** See [sqlite3_pcache_methods2] for additional information. -*/ -typedef struct sqlite3_pcache_page sqlite3_pcache_page; -struct sqlite3_pcache_page { - void *pBuf; /* The content of the page */ - void *pExtra; /* Extra information associated with the page */ -}; - -/* -** CAPI3REF: Application Defined Page Cache. -** KEYWORDS: {page cache} -** -** ^(The [sqlite3_config]([SQLITE_CONFIG_PCACHE2], ...) interface can -** register an alternative page cache implementation by passing in an -** instance of the sqlite3_pcache_methods2 structure.)^ -** In many applications, most of the heap memory allocated by -** SQLite is used for the page cache. -** By implementing a -** custom page cache using this API, an application can better control -** the amount of memory consumed by SQLite, the way in which -** that memory is allocated and released, and the policies used to -** determine exactly which parts of a database file are cached and for -** how long. -** -** The alternative page cache mechanism is an -** extreme measure that is only needed by the most demanding applications. -** The built-in page cache is recommended for most uses. -** -** ^(The contents of the sqlite3_pcache_methods2 structure are copied to an -** internal buffer by SQLite within the call to [sqlite3_config]. Hence -** the application may discard the parameter after the call to -** [sqlite3_config()] returns.)^ -** -** [[the xInit() page cache method]] -** ^(The xInit() method is called once for each effective -** call to [sqlite3_initialize()])^ -** (usually only once during the lifetime of the process). ^(The xInit() -** method is passed a copy of the sqlite3_pcache_methods2.pArg value.)^ -** The intent of the xInit() method is to set up global data structures -** required by the custom page cache implementation. -** ^(If the xInit() method is NULL, then the -** built-in default page cache is used instead of the application defined -** page cache.)^ -** -** [[the xShutdown() page cache method]] -** ^The xShutdown() method is called by [sqlite3_shutdown()]. -** It can be used to clean up -** any outstanding resources before process shutdown, if required. -** ^The xShutdown() method may be NULL. -** -** ^SQLite automatically serializes calls to the xInit method, -** so the xInit method need not be threadsafe. ^The -** xShutdown method is only called from [sqlite3_shutdown()] so it does -** not need to be threadsafe either. All other methods must be threadsafe -** in multithreaded applications. -** -** ^SQLite will never invoke xInit() more than once without an intervening -** call to xShutdown(). -** -** [[the xCreate() page cache methods]] -** ^SQLite invokes the xCreate() method to construct a new cache instance. -** SQLite will typically create one cache instance for each open database file, -** though this is not guaranteed. ^The -** first parameter, szPage, is the size in bytes of the pages that must -** be allocated by the cache. ^szPage will always a power of two. ^The -** second parameter szExtra is a number of bytes of extra storage -** associated with each page cache entry. ^The szExtra parameter will -** a number less than 250. SQLite will use the -** extra szExtra bytes on each page to store metadata about the underlying -** database page on disk. The value passed into szExtra depends -** on the SQLite version, the target platform, and how SQLite was compiled. -** ^The third argument to xCreate(), bPurgeable, is true if the cache being -** created will be used to cache database pages of a file stored on disk, or -** false if it is used for an in-memory database. The cache implementation -** does not have to do anything special based with the value of bPurgeable; -** it is purely advisory. ^On a cache where bPurgeable is false, SQLite will -** never invoke xUnpin() except to deliberately delete a page. -** ^In other words, calls to xUnpin() on a cache with bPurgeable set to -** false will always have the "discard" flag set to true. -** ^Hence, a cache created with bPurgeable false will -** never contain any unpinned pages. -** -** [[the xCachesize() page cache method]] -** ^(The xCachesize() method may be called at any time by SQLite to set the -** suggested maximum cache-size (number of pages stored by) the cache -** instance passed as the first argument. This is the value configured using -** the SQLite "[PRAGMA cache_size]" command.)^ As with the bPurgeable -** parameter, the implementation is not required to do anything with this -** value; it is advisory only. -** -** [[the xPagecount() page cache methods]] -** The xPagecount() method must return the number of pages currently -** stored in the cache, both pinned and unpinned. -** -** [[the xFetch() page cache methods]] -** The xFetch() method locates a page in the cache and returns a pointer to -** an sqlite3_pcache_page object associated with that page, or a NULL pointer. -** The pBuf element of the returned sqlite3_pcache_page object will be a -** pointer to a buffer of szPage bytes used to store the content of a -** single database page. The pExtra element of sqlite3_pcache_page will be -** a pointer to the szExtra bytes of extra storage that SQLite has requested -** for each entry in the page cache. -** -** The page to be fetched is determined by the key. ^The minimum key value -** is 1. After it has been retrieved using xFetch, the page is considered -** to be "pinned". -** -** If the requested page is already in the page cache, then the page cache -** implementation must return a pointer to the page buffer with its content -** intact. If the requested page is not already in the cache, then the -** cache implementation should use the value of the createFlag -** parameter to help it determined what action to take: -** -** -**
    createFlag Behavior when page is not already in cache -**
    0 Do not allocate a new page. Return NULL. -**
    1 Allocate a new page if it easy and convenient to do so. -** Otherwise return NULL. -**
    2 Make every effort to allocate a new page. Only return -** NULL if allocating a new page is effectively impossible. -**
    -** -** ^(SQLite will normally invoke xFetch() with a createFlag of 0 or 1. SQLite -** will only use a createFlag of 2 after a prior call with a createFlag of 1 -** failed.)^ In between the xFetch() calls, SQLite may -** attempt to unpin one or more cache pages by spilling the content of -** pinned pages to disk and synching the operating system disk cache. -** -** [[the xUnpin() page cache method]] -** ^xUnpin() is called by SQLite with a pointer to a currently pinned page -** as its second argument. If the third parameter, discard, is non-zero, -** then the page must be evicted from the cache. -** ^If the discard parameter is -** zero, then the page may be discarded or retained at the discretion of -** page cache implementation. ^The page cache implementation -** may choose to evict unpinned pages at any time. -** -** The cache must not perform any reference counting. A single -** call to xUnpin() unpins the page regardless of the number of prior calls -** to xFetch(). -** -** [[the xRekey() page cache methods]] -** The xRekey() method is used to change the key value associated with the -** page passed as the second argument. If the cache -** previously contains an entry associated with newKey, it must be -** discarded. ^Any prior cache entry associated with newKey is guaranteed not -** to be pinned. -** -** When SQLite calls the xTruncate() method, the cache must discard all -** existing cache entries with page numbers (keys) greater than or equal -** to the value of the iLimit parameter passed to xTruncate(). If any -** of these pages are pinned, they are implicitly unpinned, meaning that -** they can be safely discarded. -** -** [[the xDestroy() page cache method]] -** ^The xDestroy() method is used to delete a cache allocated by xCreate(). -** All resources associated with the specified cache should be freed. ^After -** calling the xDestroy() method, SQLite considers the [sqlite3_pcache*] -** handle invalid, and will not use it with any other sqlite3_pcache_methods2 -** functions. -** -** [[the xShrink() page cache method]] -** ^SQLite invokes the xShrink() method when it wants the page cache to -** free up as much of heap memory as possible. The page cache implementation -** is not obligated to free any memory, but well-behaved implementations should -** do their best. -*/ -typedef struct sqlite3_pcache_methods2 sqlite3_pcache_methods2; -struct sqlite3_pcache_methods2 { - int iVersion; - void *pArg; - int (*xInit)(void*); - void (*xShutdown)(void*); - sqlite3_pcache *(*xCreate)(int szPage, int szExtra, int bPurgeable); - void (*xCachesize)(sqlite3_pcache*, int nCachesize); - int (*xPagecount)(sqlite3_pcache*); - sqlite3_pcache_page *(*xFetch)(sqlite3_pcache*, unsigned key, int createFlag); - void (*xUnpin)(sqlite3_pcache*, sqlite3_pcache_page*, int discard); - void (*xRekey)(sqlite3_pcache*, sqlite3_pcache_page*, - unsigned oldKey, unsigned newKey); - void (*xTruncate)(sqlite3_pcache*, unsigned iLimit); - void (*xDestroy)(sqlite3_pcache*); - void (*xShrink)(sqlite3_pcache*); -}; - -/* -** This is the obsolete pcache_methods object that has now been replaced -** by sqlite3_pcache_methods2. This object is not used by SQLite. It is -** retained in the header file for backwards compatibility only. -*/ -typedef struct sqlite3_pcache_methods sqlite3_pcache_methods; -struct sqlite3_pcache_methods { - void *pArg; - int (*xInit)(void*); - void (*xShutdown)(void*); - sqlite3_pcache *(*xCreate)(int szPage, int bPurgeable); - void (*xCachesize)(sqlite3_pcache*, int nCachesize); - int (*xPagecount)(sqlite3_pcache*); - void *(*xFetch)(sqlite3_pcache*, unsigned key, int createFlag); - void (*xUnpin)(sqlite3_pcache*, void*, int discard); - void (*xRekey)(sqlite3_pcache*, void*, unsigned oldKey, unsigned newKey); - void (*xTruncate)(sqlite3_pcache*, unsigned iLimit); - void (*xDestroy)(sqlite3_pcache*); -}; - - -/* -** CAPI3REF: Online Backup Object -** -** The sqlite3_backup object records state information about an ongoing -** online backup operation. ^The sqlite3_backup object is created by -** a call to [sqlite3_backup_init()] and is destroyed by a call to -** [sqlite3_backup_finish()]. -** -** See Also: [Using the SQLite Online Backup API] -*/ -typedef struct sqlite3_backup sqlite3_backup; - -/* -** CAPI3REF: Online Backup API. -** -** The backup API copies the content of one database into another. -** It is useful either for creating backups of databases or -** for copying in-memory databases to or from persistent files. -** -** See Also: [Using the SQLite Online Backup API] -** -** ^SQLite holds a write transaction open on the destination database file -** for the duration of the backup operation. -** ^The source database is read-locked only while it is being read; -** it is not locked continuously for the entire backup operation. -** ^Thus, the backup may be performed on a live source database without -** preventing other database connections from -** reading or writing to the source database while the backup is underway. -** -** ^(To perform a backup operation: -**
      -**
    1. sqlite3_backup_init() is called once to initialize the -** backup, -**
    2. sqlite3_backup_step() is called one or more times to transfer -** the data between the two databases, and finally -**
    3. sqlite3_backup_finish() is called to release all resources -** associated with the backup operation. -**
    )^ -** There should be exactly one call to sqlite3_backup_finish() for each -** successful call to sqlite3_backup_init(). -** -** [[sqlite3_backup_init()]] sqlite3_backup_init() -** -** ^The D and N arguments to sqlite3_backup_init(D,N,S,M) are the -** [database connection] associated with the destination database -** and the database name, respectively. -** ^The database name is "main" for the main database, "temp" for the -** temporary database, or the name specified after the AS keyword in -** an [ATTACH] statement for an attached database. -** ^The S and M arguments passed to -** sqlite3_backup_init(D,N,S,M) identify the [database connection] -** and database name of the source database, respectively. -** ^The source and destination [database connections] (parameters S and D) -** must be different or else sqlite3_backup_init(D,N,S,M) will fail with -** an error. -** -** ^A call to sqlite3_backup_init() will fail, returning NULL, if -** there is already a read or read-write transaction open on the -** destination database. -** -** ^If an error occurs within sqlite3_backup_init(D,N,S,M), then NULL is -** returned and an error code and error message are stored in the -** destination [database connection] D. -** ^The error code and message for the failed call to sqlite3_backup_init() -** can be retrieved using the [sqlite3_errcode()], [sqlite3_errmsg()], and/or -** [sqlite3_errmsg16()] functions. -** ^A successful call to sqlite3_backup_init() returns a pointer to an -** [sqlite3_backup] object. -** ^The [sqlite3_backup] object may be used with the sqlite3_backup_step() and -** sqlite3_backup_finish() functions to perform the specified backup -** operation. -** -** [[sqlite3_backup_step()]] sqlite3_backup_step() -** -** ^Function sqlite3_backup_step(B,N) will copy up to N pages between -** the source and destination databases specified by [sqlite3_backup] object B. -** ^If N is negative, all remaining source pages are copied. -** ^If sqlite3_backup_step(B,N) successfully copies N pages and there -** are still more pages to be copied, then the function returns [SQLITE_OK]. -** ^If sqlite3_backup_step(B,N) successfully finishes copying all pages -** from source to destination, then it returns [SQLITE_DONE]. -** ^If an error occurs while running sqlite3_backup_step(B,N), -** then an [error code] is returned. ^As well as [SQLITE_OK] and -** [SQLITE_DONE], a call to sqlite3_backup_step() may return [SQLITE_READONLY], -** [SQLITE_NOMEM], [SQLITE_BUSY], [SQLITE_LOCKED], or an -** [SQLITE_IOERR_ACCESS | SQLITE_IOERR_XXX] extended error code. -** -** ^(The sqlite3_backup_step() might return [SQLITE_READONLY] if -**
      -**
    1. the destination database was opened read-only, or -**
    2. the destination database is using write-ahead-log journaling -** and the destination and source page sizes differ, or -**
    3. the destination database is an in-memory database and the -** destination and source page sizes differ. -**
    )^ -** -** ^If sqlite3_backup_step() cannot obtain a required file-system lock, then -** the [sqlite3_busy_handler | busy-handler function] -** is invoked (if one is specified). ^If the -** busy-handler returns non-zero before the lock is available, then -** [SQLITE_BUSY] is returned to the caller. ^In this case the call to -** sqlite3_backup_step() can be retried later. ^If the source -** [database connection] -** is being used to write to the source database when sqlite3_backup_step() -** is called, then [SQLITE_LOCKED] is returned immediately. ^Again, in this -** case the call to sqlite3_backup_step() can be retried later on. ^(If -** [SQLITE_IOERR_ACCESS | SQLITE_IOERR_XXX], [SQLITE_NOMEM], or -** [SQLITE_READONLY] is returned, then -** there is no point in retrying the call to sqlite3_backup_step(). These -** errors are considered fatal.)^ The application must accept -** that the backup operation has failed and pass the backup operation handle -** to the sqlite3_backup_finish() to release associated resources. -** -** ^The first call to sqlite3_backup_step() obtains an exclusive lock -** on the destination file. ^The exclusive lock is not released until either -** sqlite3_backup_finish() is called or the backup operation is complete -** and sqlite3_backup_step() returns [SQLITE_DONE]. ^Every call to -** sqlite3_backup_step() obtains a [shared lock] on the source database that -** lasts for the duration of the sqlite3_backup_step() call. -** ^Because the source database is not locked between calls to -** sqlite3_backup_step(), the source database may be modified mid-way -** through the backup process. ^If the source database is modified by an -** external process or via a database connection other than the one being -** used by the backup operation, then the backup will be automatically -** restarted by the next call to sqlite3_backup_step(). ^If the source -** database is modified by the using the same database connection as is used -** by the backup operation, then the backup database is automatically -** updated at the same time. -** -** [[sqlite3_backup_finish()]] sqlite3_backup_finish() -** -** When sqlite3_backup_step() has returned [SQLITE_DONE], or when the -** application wishes to abandon the backup operation, the application -** should destroy the [sqlite3_backup] by passing it to sqlite3_backup_finish(). -** ^The sqlite3_backup_finish() interfaces releases all -** resources associated with the [sqlite3_backup] object. -** ^If sqlite3_backup_step() has not yet returned [SQLITE_DONE], then any -** active write-transaction on the destination database is rolled back. -** The [sqlite3_backup] object is invalid -** and may not be used following a call to sqlite3_backup_finish(). -** -** ^The value returned by sqlite3_backup_finish is [SQLITE_OK] if no -** sqlite3_backup_step() errors occurred, regardless or whether or not -** sqlite3_backup_step() completed. -** ^If an out-of-memory condition or IO error occurred during any prior -** sqlite3_backup_step() call on the same [sqlite3_backup] object, then -** sqlite3_backup_finish() returns the corresponding [error code]. -** -** ^A return of [SQLITE_BUSY] or [SQLITE_LOCKED] from sqlite3_backup_step() -** is not a permanent error and does not affect the return value of -** sqlite3_backup_finish(). -** -** [[sqlite3_backup_remaining()]] [[sqlite3_backup_pagecount()]] -** sqlite3_backup_remaining() and sqlite3_backup_pagecount() -** -** ^The sqlite3_backup_remaining() routine returns the number of pages still -** to be backed up at the conclusion of the most recent sqlite3_backup_step(). -** ^The sqlite3_backup_pagecount() routine returns the total number of pages -** in the source database at the conclusion of the most recent -** sqlite3_backup_step(). -** ^(The values returned by these functions are only updated by -** sqlite3_backup_step(). If the source database is modified in a way that -** changes the size of the source database or the number of pages remaining, -** those changes are not reflected in the output of sqlite3_backup_pagecount() -** and sqlite3_backup_remaining() until after the next -** sqlite3_backup_step().)^ -** -** Concurrent Usage of Database Handles -** -** ^The source [database connection] may be used by the application for other -** purposes while a backup operation is underway or being initialized. -** ^If SQLite is compiled and configured to support threadsafe database -** connections, then the source database connection may be used concurrently -** from within other threads. -** -** However, the application must guarantee that the destination -** [database connection] is not passed to any other API (by any thread) after -** sqlite3_backup_init() is called and before the corresponding call to -** sqlite3_backup_finish(). SQLite does not currently check to see -** if the application incorrectly accesses the destination [database connection] -** and so no error code is reported, but the operations may malfunction -** nevertheless. Use of the destination database connection while a -** backup is in progress might also also cause a mutex deadlock. -** -** If running in [shared cache mode], the application must -** guarantee that the shared cache used by the destination database -** is not accessed while the backup is running. In practice this means -** that the application must guarantee that the disk file being -** backed up to is not accessed by any connection within the process, -** not just the specific connection that was passed to sqlite3_backup_init(). -** -** The [sqlite3_backup] object itself is partially threadsafe. Multiple -** threads may safely make multiple concurrent calls to sqlite3_backup_step(). -** However, the sqlite3_backup_remaining() and sqlite3_backup_pagecount() -** APIs are not strictly speaking threadsafe. If they are invoked at the -** same time as another thread is invoking sqlite3_backup_step() it is -** possible that they return invalid values. -*/ -SQLITE_API sqlite3_backup *sqlite3_backup_init( - sqlite3 *pDest, /* Destination database handle */ - const char *zDestName, /* Destination database name */ - sqlite3 *pSource, /* Source database handle */ - const char *zSourceName /* Source database name */ -); -SQLITE_API int sqlite3_backup_step(sqlite3_backup *p, int nPage); -SQLITE_API int sqlite3_backup_finish(sqlite3_backup *p); -SQLITE_API int sqlite3_backup_remaining(sqlite3_backup *p); -SQLITE_API int sqlite3_backup_pagecount(sqlite3_backup *p); - -/* -** CAPI3REF: Unlock Notification -** METHOD: sqlite3 -** -** ^When running in shared-cache mode, a database operation may fail with -** an [SQLITE_LOCKED] error if the required locks on the shared-cache or -** individual tables within the shared-cache cannot be obtained. See -** [SQLite Shared-Cache Mode] for a description of shared-cache locking. -** ^This API may be used to register a callback that SQLite will invoke -** when the connection currently holding the required lock relinquishes it. -** ^This API is only available if the library was compiled with the -** [SQLITE_ENABLE_UNLOCK_NOTIFY] C-preprocessor symbol defined. -** -** See Also: [Using the SQLite Unlock Notification Feature]. -** -** ^Shared-cache locks are released when a database connection concludes -** its current transaction, either by committing it or rolling it back. -** -** ^When a connection (known as the blocked connection) fails to obtain a -** shared-cache lock and SQLITE_LOCKED is returned to the caller, the -** identity of the database connection (the blocking connection) that -** has locked the required resource is stored internally. ^After an -** application receives an SQLITE_LOCKED error, it may call the -** sqlite3_unlock_notify() method with the blocked connection handle as -** the first argument to register for a callback that will be invoked -** when the blocking connections current transaction is concluded. ^The -** callback is invoked from within the [sqlite3_step] or [sqlite3_close] -** call that concludes the blocking connection's transaction. -** -** ^(If sqlite3_unlock_notify() is called in a multi-threaded application, -** there is a chance that the blocking connection will have already -** concluded its transaction by the time sqlite3_unlock_notify() is invoked. -** If this happens, then the specified callback is invoked immediately, -** from within the call to sqlite3_unlock_notify().)^ -** -** ^If the blocked connection is attempting to obtain a write-lock on a -** shared-cache table, and more than one other connection currently holds -** a read-lock on the same table, then SQLite arbitrarily selects one of -** the other connections to use as the blocking connection. -** -** ^(There may be at most one unlock-notify callback registered by a -** blocked connection. If sqlite3_unlock_notify() is called when the -** blocked connection already has a registered unlock-notify callback, -** then the new callback replaces the old.)^ ^If sqlite3_unlock_notify() is -** called with a NULL pointer as its second argument, then any existing -** unlock-notify callback is canceled. ^The blocked connections -** unlock-notify callback may also be canceled by closing the blocked -** connection using [sqlite3_close()]. -** -** The unlock-notify callback is not reentrant. If an application invokes -** any sqlite3_xxx API functions from within an unlock-notify callback, a -** crash or deadlock may be the result. -** -** ^Unless deadlock is detected (see below), sqlite3_unlock_notify() always -** returns SQLITE_OK. -** -** Callback Invocation Details -** -** When an unlock-notify callback is registered, the application provides a -** single void* pointer that is passed to the callback when it is invoked. -** However, the signature of the callback function allows SQLite to pass -** it an array of void* context pointers. The first argument passed to -** an unlock-notify callback is a pointer to an array of void* pointers, -** and the second is the number of entries in the array. -** -** When a blocking connection's transaction is concluded, there may be -** more than one blocked connection that has registered for an unlock-notify -** callback. ^If two or more such blocked connections have specified the -** same callback function, then instead of invoking the callback function -** multiple times, it is invoked once with the set of void* context pointers -** specified by the blocked connections bundled together into an array. -** This gives the application an opportunity to prioritize any actions -** related to the set of unblocked database connections. -** -** Deadlock Detection -** -** Assuming that after registering for an unlock-notify callback a -** database waits for the callback to be issued before taking any further -** action (a reasonable assumption), then using this API may cause the -** application to deadlock. For example, if connection X is waiting for -** connection Y's transaction to be concluded, and similarly connection -** Y is waiting on connection X's transaction, then neither connection -** will proceed and the system may remain deadlocked indefinitely. -** -** To avoid this scenario, the sqlite3_unlock_notify() performs deadlock -** detection. ^If a given call to sqlite3_unlock_notify() would put the -** system in a deadlocked state, then SQLITE_LOCKED is returned and no -** unlock-notify callback is registered. The system is said to be in -** a deadlocked state if connection A has registered for an unlock-notify -** callback on the conclusion of connection B's transaction, and connection -** B has itself registered for an unlock-notify callback when connection -** A's transaction is concluded. ^Indirect deadlock is also detected, so -** the system is also considered to be deadlocked if connection B has -** registered for an unlock-notify callback on the conclusion of connection -** C's transaction, where connection C is waiting on connection A. ^Any -** number of levels of indirection are allowed. -** -** The "DROP TABLE" Exception -** -** When a call to [sqlite3_step()] returns SQLITE_LOCKED, it is almost -** always appropriate to call sqlite3_unlock_notify(). There is however, -** one exception. When executing a "DROP TABLE" or "DROP INDEX" statement, -** SQLite checks if there are any currently executing SELECT statements -** that belong to the same connection. If there are, SQLITE_LOCKED is -** returned. In this case there is no "blocking connection", so invoking -** sqlite3_unlock_notify() results in the unlock-notify callback being -** invoked immediately. If the application then re-attempts the "DROP TABLE" -** or "DROP INDEX" query, an infinite loop might be the result. -** -** One way around this problem is to check the extended error code returned -** by an sqlite3_step() call. ^(If there is a blocking connection, then the -** extended error code is set to SQLITE_LOCKED_SHAREDCACHE. Otherwise, in -** the special "DROP TABLE/INDEX" case, the extended error code is just -** SQLITE_LOCKED.)^ -*/ -SQLITE_API int sqlite3_unlock_notify( - sqlite3 *pBlocked, /* Waiting connection */ - void (*xNotify)(void **apArg, int nArg), /* Callback function to invoke */ - void *pNotifyArg /* Argument to pass to xNotify */ -); - - -/* -** CAPI3REF: String Comparison -** -** ^The [sqlite3_stricmp()] and [sqlite3_strnicmp()] APIs allow applications -** and extensions to compare the contents of two buffers containing UTF-8 -** strings in a case-independent fashion, using the same definition of "case -** independence" that SQLite uses internally when comparing identifiers. -*/ -SQLITE_API int sqlite3_stricmp(const char *, const char *); -SQLITE_API int sqlite3_strnicmp(const char *, const char *, int); - -/* -** CAPI3REF: String Globbing -* -** ^The [sqlite3_strglob(P,X)] interface returns zero if and only if -** string X matches the [GLOB] pattern P. -** ^The definition of [GLOB] pattern matching used in -** [sqlite3_strglob(P,X)] is the same as for the "X GLOB P" operator in the -** SQL dialect understood by SQLite. ^The [sqlite3_strglob(P,X)] function -** is case sensitive. -** -** Note that this routine returns zero on a match and non-zero if the strings -** do not match, the same as [sqlite3_stricmp()] and [sqlite3_strnicmp()]. -** -** See also: [sqlite3_strlike()]. -*/ -SQLITE_API int sqlite3_strglob(const char *zGlob, const char *zStr); - -/* -** CAPI3REF: String LIKE Matching -* -** ^The [sqlite3_strlike(P,X,E)] interface returns zero if and only if -** string X matches the [LIKE] pattern P with escape character E. -** ^The definition of [LIKE] pattern matching used in -** [sqlite3_strlike(P,X,E)] is the same as for the "X LIKE P ESCAPE E" -** operator in the SQL dialect understood by SQLite. ^For "X LIKE P" without -** the ESCAPE clause, set the E parameter of [sqlite3_strlike(P,X,E)] to 0. -** ^As with the LIKE operator, the [sqlite3_strlike(P,X,E)] function is case -** insensitive - equivalent upper and lower case ASCII characters match -** one another. -** -** ^The [sqlite3_strlike(P,X,E)] function matches Unicode characters, though -** only ASCII characters are case folded. -** -** Note that this routine returns zero on a match and non-zero if the strings -** do not match, the same as [sqlite3_stricmp()] and [sqlite3_strnicmp()]. -** -** See also: [sqlite3_strglob()]. -*/ -SQLITE_API int sqlite3_strlike(const char *zGlob, const char *zStr, unsigned int cEsc); - -/* -** CAPI3REF: Error Logging Interface -** -** ^The [sqlite3_log()] interface writes a message into the [error log] -** established by the [SQLITE_CONFIG_LOG] option to [sqlite3_config()]. -** ^If logging is enabled, the zFormat string and subsequent arguments are -** used with [sqlite3_snprintf()] to generate the final output string. -** -** The sqlite3_log() interface is intended for use by extensions such as -** virtual tables, collating functions, and SQL functions. While there is -** nothing to prevent an application from calling sqlite3_log(), doing so -** is considered bad form. -** -** The zFormat string must not be NULL. -** -** To avoid deadlocks and other threading problems, the sqlite3_log() routine -** will not use dynamically allocated memory. The log message is stored in -** a fixed-length buffer on the stack. If the log message is longer than -** a few hundred characters, it will be truncated to the length of the -** buffer. -*/ -SQLITE_API void sqlite3_log(int iErrCode, const char *zFormat, ...); - -/* -** CAPI3REF: Write-Ahead Log Commit Hook -** METHOD: sqlite3 -** -** ^The [sqlite3_wal_hook()] function is used to register a callback that -** is invoked each time data is committed to a database in wal mode. -** -** ^(The callback is invoked by SQLite after the commit has taken place and -** the associated write-lock on the database released)^, so the implementation -** may read, write or [checkpoint] the database as required. -** -** ^The first parameter passed to the callback function when it is invoked -** is a copy of the third parameter passed to sqlite3_wal_hook() when -** registering the callback. ^The second is a copy of the database handle. -** ^The third parameter is the name of the database that was written to - -** either "main" or the name of an [ATTACH]-ed database. ^The fourth parameter -** is the number of pages currently in the write-ahead log file, -** including those that were just committed. -** -** The callback function should normally return [SQLITE_OK]. ^If an error -** code is returned, that error will propagate back up through the -** SQLite code base to cause the statement that provoked the callback -** to report an error, though the commit will have still occurred. If the -** callback returns [SQLITE_ROW] or [SQLITE_DONE], or if it returns a value -** that does not correspond to any valid SQLite error code, the results -** are undefined. -** -** A single database handle may have at most a single write-ahead log callback -** registered at one time. ^Calling [sqlite3_wal_hook()] replaces any -** previously registered write-ahead log callback. ^The return value is -** a copy of the third parameter from the previous call, if any, or 0. -** ^Note that the [sqlite3_wal_autocheckpoint()] interface and the -** [wal_autocheckpoint pragma] both invoke [sqlite3_wal_hook()] and will -** overwrite any prior [sqlite3_wal_hook()] settings. -*/ -SQLITE_API void *sqlite3_wal_hook( - sqlite3*, - int(*)(void *,sqlite3*,const char*,int), - void* -); - -/* -** CAPI3REF: Configure an auto-checkpoint -** METHOD: sqlite3 -** -** ^The [sqlite3_wal_autocheckpoint(D,N)] is a wrapper around -** [sqlite3_wal_hook()] that causes any database on [database connection] D -** to automatically [checkpoint] -** after committing a transaction if there are N or -** more frames in the [write-ahead log] file. ^Passing zero or -** a negative value as the nFrame parameter disables automatic -** checkpoints entirely. -** -** ^The callback registered by this function replaces any existing callback -** registered using [sqlite3_wal_hook()]. ^Likewise, registering a callback -** using [sqlite3_wal_hook()] disables the automatic checkpoint mechanism -** configured by this function. -** -** ^The [wal_autocheckpoint pragma] can be used to invoke this interface -** from SQL. -** -** ^Checkpoints initiated by this mechanism are -** [sqlite3_wal_checkpoint_v2|PASSIVE]. -** -** ^Every new [database connection] defaults to having the auto-checkpoint -** enabled with a threshold of 1000 or [SQLITE_DEFAULT_WAL_AUTOCHECKPOINT] -** pages. The use of this interface -** is only necessary if the default setting is found to be suboptimal -** for a particular application. -*/ -SQLITE_API int sqlite3_wal_autocheckpoint(sqlite3 *db, int N); - -/* -** CAPI3REF: Checkpoint a database -** METHOD: sqlite3 -** -** ^(The sqlite3_wal_checkpoint(D,X) is equivalent to -** [sqlite3_wal_checkpoint_v2](D,X,[SQLITE_CHECKPOINT_PASSIVE],0,0).)^ -** -** In brief, sqlite3_wal_checkpoint(D,X) causes the content in the -** [write-ahead log] for database X on [database connection] D to be -** transferred into the database file and for the write-ahead log to -** be reset. See the [checkpointing] documentation for addition -** information. -** -** This interface used to be the only way to cause a checkpoint to -** occur. But then the newer and more powerful [sqlite3_wal_checkpoint_v2()] -** interface was added. This interface is retained for backwards -** compatibility and as a convenience for applications that need to manually -** start a callback but which do not need the full power (and corresponding -** complication) of [sqlite3_wal_checkpoint_v2()]. -*/ -SQLITE_API int sqlite3_wal_checkpoint(sqlite3 *db, const char *zDb); - -/* -** CAPI3REF: Checkpoint a database -** METHOD: sqlite3 -** -** ^(The sqlite3_wal_checkpoint_v2(D,X,M,L,C) interface runs a checkpoint -** operation on database X of [database connection] D in mode M. Status -** information is written back into integers pointed to by L and C.)^ -** ^(The M parameter must be a valid [checkpoint mode]:)^ -** -**
    -**
    SQLITE_CHECKPOINT_PASSIVE
    -** ^Checkpoint as many frames as possible without waiting for any database -** readers or writers to finish, then sync the database file if all frames -** in the log were checkpointed. ^The [busy-handler callback] -** is never invoked in the SQLITE_CHECKPOINT_PASSIVE mode. -** ^On the other hand, passive mode might leave the checkpoint unfinished -** if there are concurrent readers or writers. -** -**
    SQLITE_CHECKPOINT_FULL
    -** ^This mode blocks (it invokes the -** [sqlite3_busy_handler|busy-handler callback]) until there is no -** database writer and all readers are reading from the most recent database -** snapshot. ^It then checkpoints all frames in the log file and syncs the -** database file. ^This mode blocks new database writers while it is pending, -** but new database readers are allowed to continue unimpeded. -** -**
    SQLITE_CHECKPOINT_RESTART
    -** ^This mode works the same way as SQLITE_CHECKPOINT_FULL with the addition -** that after checkpointing the log file it blocks (calls the -** [busy-handler callback]) -** until all readers are reading from the database file only. ^This ensures -** that the next writer will restart the log file from the beginning. -** ^Like SQLITE_CHECKPOINT_FULL, this mode blocks new -** database writer attempts while it is pending, but does not impede readers. -** -**
    SQLITE_CHECKPOINT_TRUNCATE
    -** ^This mode works the same way as SQLITE_CHECKPOINT_RESTART with the -** addition that it also truncates the log file to zero bytes just prior -** to a successful return. -**
    -** -** ^If pnLog is not NULL, then *pnLog is set to the total number of frames in -** the log file or to -1 if the checkpoint could not run because -** of an error or because the database is not in [WAL mode]. ^If pnCkpt is not -** NULL,then *pnCkpt is set to the total number of checkpointed frames in the -** log file (including any that were already checkpointed before the function -** was called) or to -1 if the checkpoint could not run due to an error or -** because the database is not in WAL mode. ^Note that upon successful -** completion of an SQLITE_CHECKPOINT_TRUNCATE, the log file will have been -** truncated to zero bytes and so both *pnLog and *pnCkpt will be set to zero. -** -** ^All calls obtain an exclusive "checkpoint" lock on the database file. ^If -** any other process is running a checkpoint operation at the same time, the -** lock cannot be obtained and SQLITE_BUSY is returned. ^Even if there is a -** busy-handler configured, it will not be invoked in this case. -** -** ^The SQLITE_CHECKPOINT_FULL, RESTART and TRUNCATE modes also obtain the -** exclusive "writer" lock on the database file. ^If the writer lock cannot be -** obtained immediately, and a busy-handler is configured, it is invoked and -** the writer lock retried until either the busy-handler returns 0 or the lock -** is successfully obtained. ^The busy-handler is also invoked while waiting for -** database readers as described above. ^If the busy-handler returns 0 before -** the writer lock is obtained or while waiting for database readers, the -** checkpoint operation proceeds from that point in the same way as -** SQLITE_CHECKPOINT_PASSIVE - checkpointing as many frames as possible -** without blocking any further. ^SQLITE_BUSY is returned in this case. -** -** ^If parameter zDb is NULL or points to a zero length string, then the -** specified operation is attempted on all WAL databases [attached] to -** [database connection] db. In this case the -** values written to output parameters *pnLog and *pnCkpt are undefined. ^If -** an SQLITE_BUSY error is encountered when processing one or more of the -** attached WAL databases, the operation is still attempted on any remaining -** attached databases and SQLITE_BUSY is returned at the end. ^If any other -** error occurs while processing an attached database, processing is abandoned -** and the error code is returned to the caller immediately. ^If no error -** (SQLITE_BUSY or otherwise) is encountered while processing the attached -** databases, SQLITE_OK is returned. -** -** ^If database zDb is the name of an attached database that is not in WAL -** mode, SQLITE_OK is returned and both *pnLog and *pnCkpt set to -1. ^If -** zDb is not NULL (or a zero length string) and is not the name of any -** attached database, SQLITE_ERROR is returned to the caller. -** -** ^Unless it returns SQLITE_MISUSE, -** the sqlite3_wal_checkpoint_v2() interface -** sets the error information that is queried by -** [sqlite3_errcode()] and [sqlite3_errmsg()]. -** -** ^The [PRAGMA wal_checkpoint] command can be used to invoke this interface -** from SQL. -*/ -SQLITE_API int sqlite3_wal_checkpoint_v2( - sqlite3 *db, /* Database handle */ - const char *zDb, /* Name of attached database (or NULL) */ - int eMode, /* SQLITE_CHECKPOINT_* value */ - int *pnLog, /* OUT: Size of WAL log in frames */ - int *pnCkpt /* OUT: Total number of frames checkpointed */ -); - -/* -** CAPI3REF: Checkpoint Mode Values -** KEYWORDS: {checkpoint mode} -** -** These constants define all valid values for the "checkpoint mode" passed -** as the third parameter to the [sqlite3_wal_checkpoint_v2()] interface. -** See the [sqlite3_wal_checkpoint_v2()] documentation for details on the -** meaning of each of these checkpoint modes. -*/ -#define SQLITE_CHECKPOINT_PASSIVE 0 /* Do as much as possible w/o blocking */ -#define SQLITE_CHECKPOINT_FULL 1 /* Wait for writers, then checkpoint */ -#define SQLITE_CHECKPOINT_RESTART 2 /* Like FULL but wait for for readers */ -#define SQLITE_CHECKPOINT_TRUNCATE 3 /* Like RESTART but also truncate WAL */ - -/* -** CAPI3REF: Virtual Table Interface Configuration -** -** This function may be called by either the [xConnect] or [xCreate] method -** of a [virtual table] implementation to configure -** various facets of the virtual table interface. -** -** If this interface is invoked outside the context of an xConnect or -** xCreate virtual table method then the behavior is undefined. -** -** In the call sqlite3_vtab_config(D,C,...) the D parameter is the -** [database connection] in which the virtual table is being created and -** which is passed in as the first argument to the [xConnect] or [xCreate] -** method that is invoking sqlite3_vtab_config(). The C parameter is one -** of the [virtual table configuration options]. The presence and meaning -** of parameters after C depend on which [virtual table configuration option] -** is used. -*/ -SQLITE_API int sqlite3_vtab_config(sqlite3*, int op, ...); - -/* -** CAPI3REF: Virtual Table Configuration Options -** KEYWORDS: {virtual table configuration options} -** KEYWORDS: {virtual table configuration option} -** -** These macros define the various options to the -** [sqlite3_vtab_config()] interface that [virtual table] implementations -** can use to customize and optimize their behavior. -** -**
    -** [[SQLITE_VTAB_CONSTRAINT_SUPPORT]] -**
    SQLITE_VTAB_CONSTRAINT_SUPPORT
    -**
    Calls of the form -** [sqlite3_vtab_config](db,SQLITE_VTAB_CONSTRAINT_SUPPORT,X) are supported, -** where X is an integer. If X is zero, then the [virtual table] whose -** [xCreate] or [xConnect] method invoked [sqlite3_vtab_config()] does not -** support constraints. In this configuration (which is the default) if -** a call to the [xUpdate] method returns [SQLITE_CONSTRAINT], then the entire -** statement is rolled back as if [ON CONFLICT | OR ABORT] had been -** specified as part of the users SQL statement, regardless of the actual -** ON CONFLICT mode specified. -** -** If X is non-zero, then the virtual table implementation guarantees -** that if [xUpdate] returns [SQLITE_CONSTRAINT], it will do so before -** any modifications to internal or persistent data structures have been made. -** If the [ON CONFLICT] mode is ABORT, FAIL, IGNORE or ROLLBACK, SQLite -** is able to roll back a statement or database transaction, and abandon -** or continue processing the current SQL statement as appropriate. -** If the ON CONFLICT mode is REPLACE and the [xUpdate] method returns -** [SQLITE_CONSTRAINT], SQLite handles this as if the ON CONFLICT mode -** had been ABORT. -** -** Virtual table implementations that are required to handle OR REPLACE -** must do so within the [xUpdate] method. If a call to the -** [sqlite3_vtab_on_conflict()] function indicates that the current ON -** CONFLICT policy is REPLACE, the virtual table implementation should -** silently replace the appropriate rows within the xUpdate callback and -** return SQLITE_OK. Or, if this is not possible, it may return -** SQLITE_CONSTRAINT, in which case SQLite falls back to OR ABORT -** constraint handling. -**
    -** -** [[SQLITE_VTAB_DIRECTONLY]]
    SQLITE_VTAB_DIRECTONLY
    -**
    Calls of the form -** [sqlite3_vtab_config](db,SQLITE_VTAB_DIRECTONLY) from within the -** the [xConnect] or [xCreate] methods of a [virtual table] implmentation -** prohibits that virtual table from being used from within triggers and -** views. -**
    -** -** [[SQLITE_VTAB_INNOCUOUS]]
    SQLITE_VTAB_INNOCUOUS
    -**
    Calls of the form -** [sqlite3_vtab_config](db,SQLITE_VTAB_INNOCUOUS) from within the -** the [xConnect] or [xCreate] methods of a [virtual table] implmentation -** identify that virtual table as being safe to use from within triggers -** and views. Conceptually, the SQLITE_VTAB_INNOCUOUS tag means that the -** virtual table can do no serious harm even if it is controlled by a -** malicious hacker. Developers should avoid setting the SQLITE_VTAB_INNOCUOUS -** flag unless absolutely necessary. -**
    -**
    -*/ -#define SQLITE_VTAB_CONSTRAINT_SUPPORT 1 -#define SQLITE_VTAB_INNOCUOUS 2 -#define SQLITE_VTAB_DIRECTONLY 3 - -/* -** CAPI3REF: Determine The Virtual Table Conflict Policy -** -** This function may only be called from within a call to the [xUpdate] method -** of a [virtual table] implementation for an INSERT or UPDATE operation. ^The -** value returned is one of [SQLITE_ROLLBACK], [SQLITE_IGNORE], [SQLITE_FAIL], -** [SQLITE_ABORT], or [SQLITE_REPLACE], according to the [ON CONFLICT] mode -** of the SQL statement that triggered the call to the [xUpdate] method of the -** [virtual table]. -*/ -SQLITE_API int sqlite3_vtab_on_conflict(sqlite3 *); - -/* -** CAPI3REF: Determine If Virtual Table Column Access Is For UPDATE -** -** If the sqlite3_vtab_nochange(X) routine is called within the [xColumn] -** method of a [virtual table], then it might return true if the -** column is being fetched as part of an UPDATE operation during which the -** column value will not change. The virtual table implementation can use -** this hint as permission to substitute a return value that is less -** expensive to compute and that the corresponding -** [xUpdate] method understands as a "no-change" value. -** -** If the [xColumn] method calls sqlite3_vtab_nochange() and finds that -** the column is not changed by the UPDATE statement, then the xColumn -** method can optionally return without setting a result, without calling -** any of the [sqlite3_result_int|sqlite3_result_xxxxx() interfaces]. -** In that case, [sqlite3_value_nochange(X)] will return true for the -** same column in the [xUpdate] method. -** -** The sqlite3_vtab_nochange() routine is an optimization. Virtual table -** implementations should continue to give a correct answer even if the -** sqlite3_vtab_nochange() interface were to always return false. In the -** current implementation, the sqlite3_vtab_nochange() interface does always -** returns false for the enhanced [UPDATE FROM] statement. -*/ -SQLITE_API int sqlite3_vtab_nochange(sqlite3_context*); - -/* -** CAPI3REF: Determine The Collation For a Virtual Table Constraint -** METHOD: sqlite3_index_info -** -** This function may only be called from within a call to the [xBestIndex] -** method of a [virtual table]. This function returns a pointer to a string -** that is the name of the appropriate collation sequence to use for text -** comparisons on the constraint identified by its arguments. -** -** The first argument must be the pointer to the [sqlite3_index_info] object -** that is the first parameter to the xBestIndex() method. The second argument -** must be an index into the aConstraint[] array belonging to the -** sqlite3_index_info structure passed to xBestIndex. -** -** Important: -** The first parameter must be the same pointer that is passed into the -** xBestMethod() method. The first parameter may not be a pointer to a -** different [sqlite3_index_info] object, even an exact copy. -** -** The return value is computed as follows: -** -**
      -**
    1. If the constraint comes from a WHERE clause expression that contains -** a [COLLATE operator], then the name of the collation specified by -** that COLLATE operator is returned. -**

    2. If there is no COLLATE operator, but the column that is the subject -** of the constraint specifies an alternative collating sequence via -** a [COLLATE clause] on the column definition within the CREATE TABLE -** statement that was passed into [sqlite3_declare_vtab()], then the -** name of that alternative collating sequence is returned. -**

    3. Otherwise, "BINARY" is returned. -**

    -*/ -SQLITE_API SQLITE_EXPERIMENTAL const char *sqlite3_vtab_collation(sqlite3_index_info*,int); - -/* -** CAPI3REF: Determine if a virtual table query is DISTINCT -** METHOD: sqlite3_index_info -** -** This API may only be used from within an [xBestIndex|xBestIndex method] -** of a [virtual table] implementation. The result of calling this -** interface from outside of xBestIndex() is undefined and probably harmful. -** -** ^The sqlite3_vtab_distinct() interface returns an integer between 0 and -** 3. The integer returned by sqlite3_vtab_distinct() -** gives the virtual table additional information about how the query -** planner wants the output to be ordered. As long as the virtual table -** can meet the ordering requirements of the query planner, it may set -** the "orderByConsumed" flag. -** -**
    1. -** ^If the sqlite3_vtab_distinct() interface returns 0, that means -** that the query planner needs the virtual table to return all rows in the -** sort order defined by the "nOrderBy" and "aOrderBy" fields of the -** [sqlite3_index_info] object. This is the default expectation. If the -** virtual table outputs all rows in sorted order, then it is always safe for -** the xBestIndex method to set the "orderByConsumed" flag, regardless of -** the return value from sqlite3_vtab_distinct(). -**

    2. -** ^(If the sqlite3_vtab_distinct() interface returns 1, that means -** that the query planner does not need the rows to be returned in sorted order -** as long as all rows with the same values in all columns identified by the -** "aOrderBy" field are adjacent.)^ This mode is used when the query planner -** is doing a GROUP BY. -**

    3. -** ^(If the sqlite3_vtab_distinct() interface returns 2, that means -** that the query planner does not need the rows returned in any particular -** order, as long as rows with the same values in all "aOrderBy" columns -** are adjacent.)^ ^(Furthermore, only a single row for each particular -** combination of values in the columns identified by the "aOrderBy" field -** needs to be returned.)^ ^It is always ok for two or more rows with the same -** values in all "aOrderBy" columns to be returned, as long as all such rows -** are adjacent. ^The virtual table may, if it chooses, omit extra rows -** that have the same value for all columns identified by "aOrderBy". -** ^However omitting the extra rows is optional. -** This mode is used for a DISTINCT query. -**

    4. -** ^(If the sqlite3_vtab_distinct() interface returns 3, that means -** that the query planner needs only distinct rows but it does need the -** rows to be sorted.)^ ^The virtual table implementation is free to omit -** rows that are identical in all aOrderBy columns, if it wants to, but -** it is not required to omit any rows. This mode is used for queries -** that have both DISTINCT and ORDER BY clauses. -**

    -** -** ^For the purposes of comparing virtual table output values to see if the -** values are same value for sorting purposes, two NULL values are considered -** to be the same. In other words, the comparison operator is "IS" -** (or "IS NOT DISTINCT FROM") and not "==". -** -** If a virtual table implementation is unable to meet the requirements -** specified above, then it must not set the "orderByConsumed" flag in the -** [sqlite3_index_info] object or an incorrect answer may result. -** -** ^A virtual table implementation is always free to return rows in any order -** it wants, as long as the "orderByConsumed" flag is not set. ^When the -** the "orderByConsumed" flag is unset, the query planner will add extra -** [bytecode] to ensure that the final results returned by the SQL query are -** ordered correctly. The use of the "orderByConsumed" flag and the -** sqlite3_vtab_distinct() interface is merely an optimization. ^Careful -** use of the sqlite3_vtab_distinct() interface and the "orderByConsumed" -** flag might help queries against a virtual table to run faster. Being -** overly aggressive and setting the "orderByConsumed" flag when it is not -** valid to do so, on the other hand, might cause SQLite to return incorrect -** results. -*/ -SQLITE_API int sqlite3_vtab_distinct(sqlite3_index_info*); - -/* -** CAPI3REF: Identify and handle IN constraints in xBestIndex -** -** This interface may only be used from within an -** [xBestIndex|xBestIndex() method] of a [virtual table] implementation. -** The result of invoking this interface from any other context is -** undefined and probably harmful. -** -** ^(A constraint on a virtual table of the form -** "[IN operator|column IN (...)]" is -** communicated to the xBestIndex method as a -** [SQLITE_INDEX_CONSTRAINT_EQ] constraint.)^ If xBestIndex wants to use -** this constraint, it must set the corresponding -** aConstraintUsage[].argvIndex to a postive integer. ^(Then, under -** the usual mode of handling IN operators, SQLite generates [bytecode] -** that invokes the [xFilter|xFilter() method] once for each value -** on the right-hand side of the IN operator.)^ Thus the virtual table -** only sees a single value from the right-hand side of the IN operator -** at a time. -** -** In some cases, however, it would be advantageous for the virtual -** table to see all values on the right-hand of the IN operator all at -** once. The sqlite3_vtab_in() interfaces facilitates this in two ways: -** -**
      -**
    1. -** ^A call to sqlite3_vtab_in(P,N,-1) will return true (non-zero) -** if and only if the [sqlite3_index_info|P->aConstraint][N] constraint -** is an [IN operator] that can be processed all at once. ^In other words, -** sqlite3_vtab_in() with -1 in the third argument is a mechanism -** by which the virtual table can ask SQLite if all-at-once processing -** of the IN operator is even possible. -** -**

    2. -** ^A call to sqlite3_vtab_in(P,N,F) with F==1 or F==0 indicates -** to SQLite that the virtual table does or does not want to process -** the IN operator all-at-once, respectively. ^Thus when the third -** parameter (F) is non-negative, this interface is the mechanism by -** which the virtual table tells SQLite how it wants to process the -** IN operator. -**

    -** -** ^The sqlite3_vtab_in(P,N,F) interface can be invoked multiple times -** within the same xBestIndex method call. ^For any given P,N pair, -** the return value from sqlite3_vtab_in(P,N,F) will always be the same -** within the same xBestIndex call. ^If the interface returns true -** (non-zero), that means that the constraint is an IN operator -** that can be processed all-at-once. ^If the constraint is not an IN -** operator or cannot be processed all-at-once, then the interface returns -** false. -** -** ^(All-at-once processing of the IN operator is selected if both of the -** following conditions are met: -** -**
      -**
    1. The P->aConstraintUsage[N].argvIndex value is set to a positive -** integer. This is how the virtual table tells SQLite that it wants to -** use the N-th constraint. -** -**

    2. The last call to sqlite3_vtab_in(P,N,F) for which F was -** non-negative had F>=1. -**

    )^ -** -** ^If either or both of the conditions above are false, then SQLite uses -** the traditional one-at-a-time processing strategy for the IN constraint. -** ^If both conditions are true, then the argvIndex-th parameter to the -** xFilter method will be an [sqlite3_value] that appears to be NULL, -** but which can be passed to [sqlite3_vtab_in_first()] and -** [sqlite3_vtab_in_next()] to find all values on the right-hand side -** of the IN constraint. -*/ -SQLITE_API int sqlite3_vtab_in(sqlite3_index_info*, int iCons, int bHandle); - -/* -** CAPI3REF: Find all elements on the right-hand side of an IN constraint. -** -** These interfaces are only useful from within the -** [xFilter|xFilter() method] of a [virtual table] implementation. -** The result of invoking these interfaces from any other context -** is undefined and probably harmful. -** -** The X parameter in a call to sqlite3_vtab_in_first(X,P) or -** sqlite3_vtab_in_next(X,P) must be one of the parameters to the -** xFilter method which invokes these routines, and specifically -** a parameter that was previously selected for all-at-once IN constraint -** processing use the [sqlite3_vtab_in()] interface in the -** [xBestIndex|xBestIndex method]. ^(If the X parameter is not -** an xFilter argument that was selected for all-at-once IN constraint -** processing, then these routines return [SQLITE_MISUSE])^ or perhaps -** exhibit some other undefined or harmful behavior. -** -** ^(Use these routines to access all values on the right-hand side -** of the IN constraint using code like the following: -** -**
    -**    for(rc=sqlite3_vtab_in_first(pList, &pVal);
    -**        rc==SQLITE_OK && pVal
    -**        rc=sqlite3_vtab_in_next(pList, &pVal)
    -**    ){
    -**      // do something with pVal
    -**    }
    -**    if( rc!=SQLITE_OK ){
    -**      // an error has occurred
    -**    }
    -** 
    )^ -** -** ^On success, the sqlite3_vtab_in_first(X,P) and sqlite3_vtab_in_next(X,P) -** routines return SQLITE_OK and set *P to point to the first or next value -** on the RHS of the IN constraint. ^If there are no more values on the -** right hand side of the IN constraint, then *P is set to NULL and these -** routines return [SQLITE_DONE]. ^The return value might be -** some other value, such as SQLITE_NOMEM, in the event of a malfunction. -** -** The *ppOut values returned by these routines are only valid until the -** next call to either of these routines or until the end of the xFilter -** method from which these routines were called. If the virtual table -** implementation needs to retain the *ppOut values for longer, it must make -** copies. The *ppOut values are [protected sqlite3_value|protected]. -*/ -SQLITE_API int sqlite3_vtab_in_first(sqlite3_value *pVal, sqlite3_value **ppOut); -SQLITE_API int sqlite3_vtab_in_next(sqlite3_value *pVal, sqlite3_value **ppOut); - -/* -** CAPI3REF: Constraint values in xBestIndex() -** METHOD: sqlite3_index_info -** -** This API may only be used from within the [xBestIndex|xBestIndex method] -** of a [virtual table] implementation. The result of calling this interface -** from outside of an xBestIndex method are undefined and probably harmful. -** -** ^When the sqlite3_vtab_rhs_value(P,J,V) interface is invoked from within -** the [xBestIndex] method of a [virtual table] implementation, with P being -** a copy of the [sqlite3_index_info] object pointer passed into xBestIndex and -** J being a 0-based index into P->aConstraint[], then this routine -** attempts to set *V to the value of the right-hand operand of -** that constraint if the right-hand operand is known. ^If the -** right-hand operand is not known, then *V is set to a NULL pointer. -** ^The sqlite3_vtab_rhs_value(P,J,V) interface returns SQLITE_OK if -** and only if *V is set to a value. ^The sqlite3_vtab_rhs_value(P,J,V) -** inteface returns SQLITE_NOTFOUND if the right-hand side of the J-th -** constraint is not available. ^The sqlite3_vtab_rhs_value() interface -** can return an result code other than SQLITE_OK or SQLITE_NOTFOUND if -** something goes wrong. -** -** The sqlite3_vtab_rhs_value() interface is usually only successful if -** the right-hand operand of a constraint is a literal value in the original -** SQL statement. If the right-hand operand is an expression or a reference -** to some other column or a [host parameter], then sqlite3_vtab_rhs_value() -** will probably return [SQLITE_NOTFOUND]. -** -** ^(Some constraints, such as [SQLITE_INDEX_CONSTRAINT_ISNULL] and -** [SQLITE_INDEX_CONSTRAINT_ISNOTNULL], have no right-hand operand. For such -** constraints, sqlite3_vtab_rhs_value() always returns SQLITE_NOTFOUND.)^ -** -** ^The [sqlite3_value] object returned in *V is a protected sqlite3_value -** and remains valid for the duration of the xBestIndex method call. -** ^When xBestIndex returns, the sqlite3_value object returned by -** sqlite3_vtab_rhs_value() is automatically deallocated. -** -** The "_rhs_" in the name of this routine is an abbreviation for -** "Right-Hand Side". -*/ -SQLITE_API int sqlite3_vtab_rhs_value(sqlite3_index_info*, int, sqlite3_value **ppVal); - -/* -** CAPI3REF: Conflict resolution modes -** KEYWORDS: {conflict resolution mode} -** -** These constants are returned by [sqlite3_vtab_on_conflict()] to -** inform a [virtual table] implementation what the [ON CONFLICT] mode -** is for the SQL statement being evaluated. -** -** Note that the [SQLITE_IGNORE] constant is also used as a potential -** return value from the [sqlite3_set_authorizer()] callback and that -** [SQLITE_ABORT] is also a [result code]. -*/ -#define SQLITE_ROLLBACK 1 -/* #define SQLITE_IGNORE 2 // Also used by sqlite3_authorizer() callback */ -#define SQLITE_FAIL 3 -/* #define SQLITE_ABORT 4 // Also an error code */ -#define SQLITE_REPLACE 5 - -/* -** CAPI3REF: Prepared Statement Scan Status Opcodes -** KEYWORDS: {scanstatus options} -** -** The following constants can be used for the T parameter to the -** [sqlite3_stmt_scanstatus(S,X,T,V)] interface. Each constant designates a -** different metric for sqlite3_stmt_scanstatus() to return. -** -** When the value returned to V is a string, space to hold that string is -** managed by the prepared statement S and will be automatically freed when -** S is finalized. -** -**
    -** [[SQLITE_SCANSTAT_NLOOP]]
    SQLITE_SCANSTAT_NLOOP
    -**
    ^The [sqlite3_int64] variable pointed to by the V parameter will be -** set to the total number of times that the X-th loop has run.
    -** -** [[SQLITE_SCANSTAT_NVISIT]]
    SQLITE_SCANSTAT_NVISIT
    -**
    ^The [sqlite3_int64] variable pointed to by the V parameter will be set -** to the total number of rows examined by all iterations of the X-th loop.
    -** -** [[SQLITE_SCANSTAT_EST]]
    SQLITE_SCANSTAT_EST
    -**
    ^The "double" variable pointed to by the V parameter will be set to the -** query planner's estimate for the average number of rows output from each -** iteration of the X-th loop. If the query planner's estimates was accurate, -** then this value will approximate the quotient NVISIT/NLOOP and the -** product of this value for all prior loops with the same SELECTID will -** be the NLOOP value for the current loop. -** -** [[SQLITE_SCANSTAT_NAME]]
    SQLITE_SCANSTAT_NAME
    -**
    ^The "const char *" variable pointed to by the V parameter will be set -** to a zero-terminated UTF-8 string containing the name of the index or table -** used for the X-th loop. -** -** [[SQLITE_SCANSTAT_EXPLAIN]]
    SQLITE_SCANSTAT_EXPLAIN
    -**
    ^The "const char *" variable pointed to by the V parameter will be set -** to a zero-terminated UTF-8 string containing the [EXPLAIN QUERY PLAN] -** description for the X-th loop. -** -** [[SQLITE_SCANSTAT_SELECTID]]
    SQLITE_SCANSTAT_SELECT
    -**
    ^The "int" variable pointed to by the V parameter will be set to the -** "select-id" for the X-th loop. The select-id identifies which query or -** subquery the loop is part of. The main query has a select-id of zero. -** The select-id is the same value as is output in the first column -** of an [EXPLAIN QUERY PLAN] query. -**
    -*/ -#define SQLITE_SCANSTAT_NLOOP 0 -#define SQLITE_SCANSTAT_NVISIT 1 -#define SQLITE_SCANSTAT_EST 2 -#define SQLITE_SCANSTAT_NAME 3 -#define SQLITE_SCANSTAT_EXPLAIN 4 -#define SQLITE_SCANSTAT_SELECTID 5 - -/* -** CAPI3REF: Prepared Statement Scan Status -** METHOD: sqlite3_stmt -** -** This interface returns information about the predicted and measured -** performance for pStmt. Advanced applications can use this -** interface to compare the predicted and the measured performance and -** issue warnings and/or rerun [ANALYZE] if discrepancies are found. -** -** Since this interface is expected to be rarely used, it is only -** available if SQLite is compiled using the [SQLITE_ENABLE_STMT_SCANSTATUS] -** compile-time option. -** -** The "iScanStatusOp" parameter determines which status information to return. -** The "iScanStatusOp" must be one of the [scanstatus options] or the behavior -** of this interface is undefined. -** ^The requested measurement is written into a variable pointed to by -** the "pOut" parameter. -** Parameter "idx" identifies the specific loop to retrieve statistics for. -** Loops are numbered starting from zero. ^If idx is out of range - less than -** zero or greater than or equal to the total number of loops used to implement -** the statement - a non-zero value is returned and the variable that pOut -** points to is unchanged. -** -** ^Statistics might not be available for all loops in all statements. ^In cases -** where there exist loops with no available statistics, this function behaves -** as if the loop did not exist - it returns non-zero and leave the variable -** that pOut points to unchanged. -** -** See also: [sqlite3_stmt_scanstatus_reset()] -*/ -SQLITE_API int sqlite3_stmt_scanstatus( - sqlite3_stmt *pStmt, /* Prepared statement for which info desired */ - int idx, /* Index of loop to report on */ - int iScanStatusOp, /* Information desired. SQLITE_SCANSTAT_* */ - void *pOut /* Result written here */ -); - -/* -** CAPI3REF: Zero Scan-Status Counters -** METHOD: sqlite3_stmt -** -** ^Zero all [sqlite3_stmt_scanstatus()] related event counters. -** -** This API is only available if the library is built with pre-processor -** symbol [SQLITE_ENABLE_STMT_SCANSTATUS] defined. -*/ -SQLITE_API void sqlite3_stmt_scanstatus_reset(sqlite3_stmt*); - -/* -** CAPI3REF: Flush caches to disk mid-transaction -** METHOD: sqlite3 -** -** ^If a write-transaction is open on [database connection] D when the -** [sqlite3_db_cacheflush(D)] interface invoked, any dirty -** pages in the pager-cache that are not currently in use are written out -** to disk. A dirty page may be in use if a database cursor created by an -** active SQL statement is reading from it, or if it is page 1 of a database -** file (page 1 is always "in use"). ^The [sqlite3_db_cacheflush(D)] -** interface flushes caches for all schemas - "main", "temp", and -** any [attached] databases. -** -** ^If this function needs to obtain extra database locks before dirty pages -** can be flushed to disk, it does so. ^If those locks cannot be obtained -** immediately and there is a busy-handler callback configured, it is invoked -** in the usual manner. ^If the required lock still cannot be obtained, then -** the database is skipped and an attempt made to flush any dirty pages -** belonging to the next (if any) database. ^If any databases are skipped -** because locks cannot be obtained, but no other error occurs, this -** function returns SQLITE_BUSY. -** -** ^If any other error occurs while flushing dirty pages to disk (for -** example an IO error or out-of-memory condition), then processing is -** abandoned and an SQLite [error code] is returned to the caller immediately. -** -** ^Otherwise, if no error occurs, [sqlite3_db_cacheflush()] returns SQLITE_OK. -** -** ^This function does not set the database handle error code or message -** returned by the [sqlite3_errcode()] and [sqlite3_errmsg()] functions. -*/ -SQLITE_API int sqlite3_db_cacheflush(sqlite3*); - -/* -** CAPI3REF: The pre-update hook. -** METHOD: sqlite3 -** -** ^These interfaces are only available if SQLite is compiled using the -** [SQLITE_ENABLE_PREUPDATE_HOOK] compile-time option. -** -** ^The [sqlite3_preupdate_hook()] interface registers a callback function -** that is invoked prior to each [INSERT], [UPDATE], and [DELETE] operation -** on a database table. -** ^At most one preupdate hook may be registered at a time on a single -** [database connection]; each call to [sqlite3_preupdate_hook()] overrides -** the previous setting. -** ^The preupdate hook is disabled by invoking [sqlite3_preupdate_hook()] -** with a NULL pointer as the second parameter. -** ^The third parameter to [sqlite3_preupdate_hook()] is passed through as -** the first parameter to callbacks. -** -** ^The preupdate hook only fires for changes to real database tables; the -** preupdate hook is not invoked for changes to [virtual tables] or to -** system tables like sqlite_sequence or sqlite_stat1. -** -** ^The second parameter to the preupdate callback is a pointer to -** the [database connection] that registered the preupdate hook. -** ^The third parameter to the preupdate callback is one of the constants -** [SQLITE_INSERT], [SQLITE_DELETE], or [SQLITE_UPDATE] to identify the -** kind of update operation that is about to occur. -** ^(The fourth parameter to the preupdate callback is the name of the -** database within the database connection that is being modified. This -** will be "main" for the main database or "temp" for TEMP tables or -** the name given after the AS keyword in the [ATTACH] statement for attached -** databases.)^ -** ^The fifth parameter to the preupdate callback is the name of the -** table that is being modified. -** -** For an UPDATE or DELETE operation on a [rowid table], the sixth -** parameter passed to the preupdate callback is the initial [rowid] of the -** row being modified or deleted. For an INSERT operation on a rowid table, -** or any operation on a WITHOUT ROWID table, the value of the sixth -** parameter is undefined. For an INSERT or UPDATE on a rowid table the -** seventh parameter is the final rowid value of the row being inserted -** or updated. The value of the seventh parameter passed to the callback -** function is not defined for operations on WITHOUT ROWID tables, or for -** DELETE operations on rowid tables. -** -** The [sqlite3_preupdate_old()], [sqlite3_preupdate_new()], -** [sqlite3_preupdate_count()], and [sqlite3_preupdate_depth()] interfaces -** provide additional information about a preupdate event. These routines -** may only be called from within a preupdate callback. Invoking any of -** these routines from outside of a preupdate callback or with a -** [database connection] pointer that is different from the one supplied -** to the preupdate callback results in undefined and probably undesirable -** behavior. -** -** ^The [sqlite3_preupdate_count(D)] interface returns the number of columns -** in the row that is being inserted, updated, or deleted. -** -** ^The [sqlite3_preupdate_old(D,N,P)] interface writes into P a pointer to -** a [protected sqlite3_value] that contains the value of the Nth column of -** the table row before it is updated. The N parameter must be between 0 -** and one less than the number of columns or the behavior will be -** undefined. This must only be used within SQLITE_UPDATE and SQLITE_DELETE -** preupdate callbacks; if it is used by an SQLITE_INSERT callback then the -** behavior is undefined. The [sqlite3_value] that P points to -** will be destroyed when the preupdate callback returns. -** -** ^The [sqlite3_preupdate_new(D,N,P)] interface writes into P a pointer to -** a [protected sqlite3_value] that contains the value of the Nth column of -** the table row after it is updated. The N parameter must be between 0 -** and one less than the number of columns or the behavior will be -** undefined. This must only be used within SQLITE_INSERT and SQLITE_UPDATE -** preupdate callbacks; if it is used by an SQLITE_DELETE callback then the -** behavior is undefined. The [sqlite3_value] that P points to -** will be destroyed when the preupdate callback returns. -** -** ^The [sqlite3_preupdate_depth(D)] interface returns 0 if the preupdate -** callback was invoked as a result of a direct insert, update, or delete -** operation; or 1 for inserts, updates, or deletes invoked by top-level -** triggers; or 2 for changes resulting from triggers called by top-level -** triggers; and so forth. -** -** When the [sqlite3_blob_write()] API is used to update a blob column, -** the pre-update hook is invoked with SQLITE_DELETE. This is because the -** in this case the new values are not available. In this case, when a -** callback made with op==SQLITE_DELETE is actuall a write using the -** sqlite3_blob_write() API, the [sqlite3_preupdate_blobwrite()] returns -** the index of the column being written. In other cases, where the -** pre-update hook is being invoked for some other reason, including a -** regular DELETE, sqlite3_preupdate_blobwrite() returns -1. -** -** See also: [sqlite3_update_hook()] -*/ -#if defined(SQLITE_ENABLE_PREUPDATE_HOOK) -SQLITE_API void *sqlite3_preupdate_hook( - sqlite3 *db, - void(*xPreUpdate)( - void *pCtx, /* Copy of third arg to preupdate_hook() */ - sqlite3 *db, /* Database handle */ - int op, /* SQLITE_UPDATE, DELETE or INSERT */ - char const *zDb, /* Database name */ - char const *zName, /* Table name */ - sqlite3_int64 iKey1, /* Rowid of row about to be deleted/updated */ - sqlite3_int64 iKey2 /* New rowid value (for a rowid UPDATE) */ - ), - void* -); -SQLITE_API int sqlite3_preupdate_old(sqlite3 *, int, sqlite3_value **); -SQLITE_API int sqlite3_preupdate_count(sqlite3 *); -SQLITE_API int sqlite3_preupdate_depth(sqlite3 *); -SQLITE_API int sqlite3_preupdate_new(sqlite3 *, int, sqlite3_value **); -SQLITE_API int sqlite3_preupdate_blobwrite(sqlite3 *); -#endif - -/* -** CAPI3REF: Low-level system error code -** METHOD: sqlite3 -** -** ^Attempt to return the underlying operating system error code or error -** number that caused the most recent I/O error or failure to open a file. -** The return value is OS-dependent. For example, on unix systems, after -** [sqlite3_open_v2()] returns [SQLITE_CANTOPEN], this interface could be -** called to get back the underlying "errno" that caused the problem, such -** as ENOSPC, EAUTH, EISDIR, and so forth. -*/ -SQLITE_API int sqlite3_system_errno(sqlite3*); - -/* -** CAPI3REF: Database Snapshot -** KEYWORDS: {snapshot} {sqlite3_snapshot} -** -** An instance of the snapshot object records the state of a [WAL mode] -** database for some specific point in history. -** -** In [WAL mode], multiple [database connections] that are open on the -** same database file can each be reading a different historical version -** of the database file. When a [database connection] begins a read -** transaction, that connection sees an unchanging copy of the database -** as it existed for the point in time when the transaction first started. -** Subsequent changes to the database from other connections are not seen -** by the reader until a new read transaction is started. -** -** The sqlite3_snapshot object records state information about an historical -** version of the database file so that it is possible to later open a new read -** transaction that sees that historical version of the database rather than -** the most recent version. -*/ -typedef struct sqlite3_snapshot { - unsigned char hidden[48]; -} sqlite3_snapshot; - -/* -** CAPI3REF: Record A Database Snapshot -** CONSTRUCTOR: sqlite3_snapshot -** -** ^The [sqlite3_snapshot_get(D,S,P)] interface attempts to make a -** new [sqlite3_snapshot] object that records the current state of -** schema S in database connection D. ^On success, the -** [sqlite3_snapshot_get(D,S,P)] interface writes a pointer to the newly -** created [sqlite3_snapshot] object into *P and returns SQLITE_OK. -** If there is not already a read-transaction open on schema S when -** this function is called, one is opened automatically. -** -** The following must be true for this function to succeed. If any of -** the following statements are false when sqlite3_snapshot_get() is -** called, SQLITE_ERROR is returned. The final value of *P is undefined -** in this case. -** -**
      -**
    • The database handle must not be in [autocommit mode]. -** -**
    • Schema S of [database connection] D must be a [WAL mode] database. -** -**
    • There must not be a write transaction open on schema S of database -** connection D. -** -**
    • One or more transactions must have been written to the current wal -** file since it was created on disk (by any connection). This means -** that a snapshot cannot be taken on a wal mode database with no wal -** file immediately after it is first opened. At least one transaction -** must be written to it first. -**
    -** -** This function may also return SQLITE_NOMEM. If it is called with the -** database handle in autocommit mode but fails for some other reason, -** whether or not a read transaction is opened on schema S is undefined. -** -** The [sqlite3_snapshot] object returned from a successful call to -** [sqlite3_snapshot_get()] must be freed using [sqlite3_snapshot_free()] -** to avoid a memory leak. -** -** The [sqlite3_snapshot_get()] interface is only available when the -** [SQLITE_ENABLE_SNAPSHOT] compile-time option is used. -*/ -SQLITE_API SQLITE_EXPERIMENTAL int sqlite3_snapshot_get( - sqlite3 *db, - const char *zSchema, - sqlite3_snapshot **ppSnapshot -); - -/* -** CAPI3REF: Start a read transaction on an historical snapshot -** METHOD: sqlite3_snapshot -** -** ^The [sqlite3_snapshot_open(D,S,P)] interface either starts a new read -** transaction or upgrades an existing one for schema S of -** [database connection] D such that the read transaction refers to -** historical [snapshot] P, rather than the most recent change to the -** database. ^The [sqlite3_snapshot_open()] interface returns SQLITE_OK -** on success or an appropriate [error code] if it fails. -** -** ^In order to succeed, the database connection must not be in -** [autocommit mode] when [sqlite3_snapshot_open(D,S,P)] is called. If there -** is already a read transaction open on schema S, then the database handle -** must have no active statements (SELECT statements that have been passed -** to sqlite3_step() but not sqlite3_reset() or sqlite3_finalize()). -** SQLITE_ERROR is returned if either of these conditions is violated, or -** if schema S does not exist, or if the snapshot object is invalid. -** -** ^A call to sqlite3_snapshot_open() will fail to open if the specified -** snapshot has been overwritten by a [checkpoint]. In this case -** SQLITE_ERROR_SNAPSHOT is returned. -** -** If there is already a read transaction open when this function is -** invoked, then the same read transaction remains open (on the same -** database snapshot) if SQLITE_ERROR, SQLITE_BUSY or SQLITE_ERROR_SNAPSHOT -** is returned. If another error code - for example SQLITE_PROTOCOL or an -** SQLITE_IOERR error code - is returned, then the final state of the -** read transaction is undefined. If SQLITE_OK is returned, then the -** read transaction is now open on database snapshot P. -** -** ^(A call to [sqlite3_snapshot_open(D,S,P)] will fail if the -** database connection D does not know that the database file for -** schema S is in [WAL mode]. A database connection might not know -** that the database file is in [WAL mode] if there has been no prior -** I/O on that database connection, or if the database entered [WAL mode] -** after the most recent I/O on the database connection.)^ -** (Hint: Run "[PRAGMA application_id]" against a newly opened -** database connection in order to make it ready to use snapshots.) -** -** The [sqlite3_snapshot_open()] interface is only available when the -** [SQLITE_ENABLE_SNAPSHOT] compile-time option is used. -*/ -SQLITE_API SQLITE_EXPERIMENTAL int sqlite3_snapshot_open( - sqlite3 *db, - const char *zSchema, - sqlite3_snapshot *pSnapshot -); - -/* -** CAPI3REF: Destroy a snapshot -** DESTRUCTOR: sqlite3_snapshot -** -** ^The [sqlite3_snapshot_free(P)] interface destroys [sqlite3_snapshot] P. -** The application must eventually free every [sqlite3_snapshot] object -** using this routine to avoid a memory leak. -** -** The [sqlite3_snapshot_free()] interface is only available when the -** [SQLITE_ENABLE_SNAPSHOT] compile-time option is used. -*/ -SQLITE_API SQLITE_EXPERIMENTAL void sqlite3_snapshot_free(sqlite3_snapshot*); - -/* -** CAPI3REF: Compare the ages of two snapshot handles. -** METHOD: sqlite3_snapshot -** -** The sqlite3_snapshot_cmp(P1, P2) interface is used to compare the ages -** of two valid snapshot handles. -** -** If the two snapshot handles are not associated with the same database -** file, the result of the comparison is undefined. -** -** Additionally, the result of the comparison is only valid if both of the -** snapshot handles were obtained by calling sqlite3_snapshot_get() since the -** last time the wal file was deleted. The wal file is deleted when the -** database is changed back to rollback mode or when the number of database -** clients drops to zero. If either snapshot handle was obtained before the -** wal file was last deleted, the value returned by this function -** is undefined. -** -** Otherwise, this API returns a negative value if P1 refers to an older -** snapshot than P2, zero if the two handles refer to the same database -** snapshot, and a positive value if P1 is a newer snapshot than P2. -** -** This interface is only available if SQLite is compiled with the -** [SQLITE_ENABLE_SNAPSHOT] option. -*/ -SQLITE_API SQLITE_EXPERIMENTAL int sqlite3_snapshot_cmp( - sqlite3_snapshot *p1, - sqlite3_snapshot *p2 -); - -/* -** CAPI3REF: Recover snapshots from a wal file -** METHOD: sqlite3_snapshot -** -** If a [WAL file] remains on disk after all database connections close -** (either through the use of the [SQLITE_FCNTL_PERSIST_WAL] [file control] -** or because the last process to have the database opened exited without -** calling [sqlite3_close()]) and a new connection is subsequently opened -** on that database and [WAL file], the [sqlite3_snapshot_open()] interface -** will only be able to open the last transaction added to the WAL file -** even though the WAL file contains other valid transactions. -** -** This function attempts to scan the WAL file associated with database zDb -** of database handle db and make all valid snapshots available to -** sqlite3_snapshot_open(). It is an error if there is already a read -** transaction open on the database, or if the database is not a WAL mode -** database. -** -** SQLITE_OK is returned if successful, or an SQLite error code otherwise. -** -** This interface is only available if SQLite is compiled with the -** [SQLITE_ENABLE_SNAPSHOT] option. -*/ -SQLITE_API SQLITE_EXPERIMENTAL int sqlite3_snapshot_recover(sqlite3 *db, const char *zDb); - -/* -** CAPI3REF: Serialize a database -** -** The sqlite3_serialize(D,S,P,F) interface returns a pointer to memory -** that is a serialization of the S database on [database connection] D. -** If P is not a NULL pointer, then the size of the database in bytes -** is written into *P. -** -** For an ordinary on-disk database file, the serialization is just a -** copy of the disk file. For an in-memory database or a "TEMP" database, -** the serialization is the same sequence of bytes which would be written -** to disk if that database where backed up to disk. -** -** The usual case is that sqlite3_serialize() copies the serialization of -** the database into memory obtained from [sqlite3_malloc64()] and returns -** a pointer to that memory. The caller is responsible for freeing the -** returned value to avoid a memory leak. However, if the F argument -** contains the SQLITE_SERIALIZE_NOCOPY bit, then no memory allocations -** are made, and the sqlite3_serialize() function will return a pointer -** to the contiguous memory representation of the database that SQLite -** is currently using for that database, or NULL if the no such contiguous -** memory representation of the database exists. A contiguous memory -** representation of the database will usually only exist if there has -** been a prior call to [sqlite3_deserialize(D,S,...)] with the same -** values of D and S. -** The size of the database is written into *P even if the -** SQLITE_SERIALIZE_NOCOPY bit is set but no contiguous copy -** of the database exists. -** -** A call to sqlite3_serialize(D,S,P,F) might return NULL even if the -** SQLITE_SERIALIZE_NOCOPY bit is omitted from argument F if a memory -** allocation error occurs. -** -** This interface is omitted if SQLite is compiled with the -** [SQLITE_OMIT_DESERIALIZE] option. -*/ -SQLITE_API unsigned char *sqlite3_serialize( - sqlite3 *db, /* The database connection */ - const char *zSchema, /* Which DB to serialize. ex: "main", "temp", ... */ - sqlite3_int64 *piSize, /* Write size of the DB here, if not NULL */ - unsigned int mFlags /* Zero or more SQLITE_SERIALIZE_* flags */ -); - -/* -** CAPI3REF: Flags for sqlite3_serialize -** -** Zero or more of the following constants can be OR-ed together for -** the F argument to [sqlite3_serialize(D,S,P,F)]. -** -** SQLITE_SERIALIZE_NOCOPY means that [sqlite3_serialize()] will return -** a pointer to contiguous in-memory database that it is currently using, -** without making a copy of the database. If SQLite is not currently using -** a contiguous in-memory database, then this option causes -** [sqlite3_serialize()] to return a NULL pointer. SQLite will only be -** using a contiguous in-memory database if it has been initialized by a -** prior call to [sqlite3_deserialize()]. -*/ -#define SQLITE_SERIALIZE_NOCOPY 0x001 /* Do no memory allocations */ - -/* -** CAPI3REF: Deserialize a database -** -** The sqlite3_deserialize(D,S,P,N,M,F) interface causes the -** [database connection] D to disconnect from database S and then -** reopen S as an in-memory database based on the serialization contained -** in P. The serialized database P is N bytes in size. M is the size of -** the buffer P, which might be larger than N. If M is larger than N, and -** the SQLITE_DESERIALIZE_READONLY bit is not set in F, then SQLite is -** permitted to add content to the in-memory database as long as the total -** size does not exceed M bytes. -** -** If the SQLITE_DESERIALIZE_FREEONCLOSE bit is set in F, then SQLite will -** invoke sqlite3_free() on the serialization buffer when the database -** connection closes. If the SQLITE_DESERIALIZE_RESIZEABLE bit is set, then -** SQLite will try to increase the buffer size using sqlite3_realloc64() -** if writes on the database cause it to grow larger than M bytes. -** -** The sqlite3_deserialize() interface will fail with SQLITE_BUSY if the -** database is currently in a read transaction or is involved in a backup -** operation. -** -** It is not possible to deserialized into the TEMP database. If the -** S argument to sqlite3_deserialize(D,S,P,N,M,F) is "temp" then the -** function returns SQLITE_ERROR. -** -** If sqlite3_deserialize(D,S,P,N,M,F) fails for any reason and if the -** SQLITE_DESERIALIZE_FREEONCLOSE bit is set in argument F, then -** [sqlite3_free()] is invoked on argument P prior to returning. -** -** This interface is omitted if SQLite is compiled with the -** [SQLITE_OMIT_DESERIALIZE] option. -*/ -SQLITE_API int sqlite3_deserialize( - sqlite3 *db, /* The database connection */ - const char *zSchema, /* Which DB to reopen with the deserialization */ - unsigned char *pData, /* The serialized database content */ - sqlite3_int64 szDb, /* Number bytes in the deserialization */ - sqlite3_int64 szBuf, /* Total size of buffer pData[] */ - unsigned mFlags /* Zero or more SQLITE_DESERIALIZE_* flags */ -); - -/* -** CAPI3REF: Flags for sqlite3_deserialize() -** -** The following are allowed values for 6th argument (the F argument) to -** the [sqlite3_deserialize(D,S,P,N,M,F)] interface. -** -** The SQLITE_DESERIALIZE_FREEONCLOSE means that the database serialization -** in the P argument is held in memory obtained from [sqlite3_malloc64()] -** and that SQLite should take ownership of this memory and automatically -** free it when it has finished using it. Without this flag, the caller -** is responsible for freeing any dynamically allocated memory. -** -** The SQLITE_DESERIALIZE_RESIZEABLE flag means that SQLite is allowed to -** grow the size of the database using calls to [sqlite3_realloc64()]. This -** flag should only be used if SQLITE_DESERIALIZE_FREEONCLOSE is also used. -** Without this flag, the deserialized database cannot increase in size beyond -** the number of bytes specified by the M parameter. -** -** The SQLITE_DESERIALIZE_READONLY flag means that the deserialized database -** should be treated as read-only. -*/ -#define SQLITE_DESERIALIZE_FREEONCLOSE 1 /* Call sqlite3_free() on close */ -#define SQLITE_DESERIALIZE_RESIZEABLE 2 /* Resize using sqlite3_realloc64() */ -#define SQLITE_DESERIALIZE_READONLY 4 /* Database is read-only */ - -/* -** Undo the hack that converts floating point types to integer for -** builds on processors without floating point support. -*/ -#ifdef SQLITE_OMIT_FLOATING_POINT -# undef double -#endif - -#ifdef __cplusplus -} /* End of the 'extern "C"' block */ -#endif -#endif /* SQLITE3_H */ - -/******** Begin file sqlite3rtree.h *********/ -/* -** 2010 August 30 -** -** The author disclaims copyright to this source code. In place of -** a legal notice, here is a blessing: -** -** May you do good and not evil. -** May you find forgiveness for yourself and forgive others. -** May you share freely, never taking more than you give. -** -************************************************************************* -*/ - -#ifndef _SQLITE3RTREE_H_ -#define _SQLITE3RTREE_H_ - - -#ifdef __cplusplus -extern "C" { -#endif - -typedef struct sqlite3_rtree_geometry sqlite3_rtree_geometry; -typedef struct sqlite3_rtree_query_info sqlite3_rtree_query_info; - -/* The double-precision datatype used by RTree depends on the -** SQLITE_RTREE_INT_ONLY compile-time option. -*/ -#ifdef SQLITE_RTREE_INT_ONLY - typedef sqlite3_int64 sqlite3_rtree_dbl; -#else - typedef double sqlite3_rtree_dbl; -#endif - -/* -** Register a geometry callback named zGeom that can be used as part of an -** R-Tree geometry query as follows: -** -** SELECT ... FROM WHERE MATCH $zGeom(... params ...) -*/ -SQLITE_API int sqlite3_rtree_geometry_callback( - sqlite3 *db, - const char *zGeom, - int (*xGeom)(sqlite3_rtree_geometry*, int, sqlite3_rtree_dbl*,int*), - void *pContext -); - - -/* -** A pointer to a structure of the following type is passed as the first -** argument to callbacks registered using rtree_geometry_callback(). -*/ -struct sqlite3_rtree_geometry { - void *pContext; /* Copy of pContext passed to s_r_g_c() */ - int nParam; /* Size of array aParam[] */ - sqlite3_rtree_dbl *aParam; /* Parameters passed to SQL geom function */ - void *pUser; /* Callback implementation user data */ - void (*xDelUser)(void *); /* Called by SQLite to clean up pUser */ -}; - -/* -** Register a 2nd-generation geometry callback named zScore that can be -** used as part of an R-Tree geometry query as follows: -** -** SELECT ... FROM WHERE MATCH $zQueryFunc(... params ...) -*/ -SQLITE_API int sqlite3_rtree_query_callback( - sqlite3 *db, - const char *zQueryFunc, - int (*xQueryFunc)(sqlite3_rtree_query_info*), - void *pContext, - void (*xDestructor)(void*) -); - - -/* -** A pointer to a structure of the following type is passed as the -** argument to scored geometry callback registered using -** sqlite3_rtree_query_callback(). -** -** Note that the first 5 fields of this structure are identical to -** sqlite3_rtree_geometry. This structure is a subclass of -** sqlite3_rtree_geometry. -*/ -struct sqlite3_rtree_query_info { - void *pContext; /* pContext from when function registered */ - int nParam; /* Number of function parameters */ - sqlite3_rtree_dbl *aParam; /* value of function parameters */ - void *pUser; /* callback can use this, if desired */ - void (*xDelUser)(void*); /* function to free pUser */ - sqlite3_rtree_dbl *aCoord; /* Coordinates of node or entry to check */ - unsigned int *anQueue; /* Number of pending entries in the queue */ - int nCoord; /* Number of coordinates */ - int iLevel; /* Level of current node or entry */ - int mxLevel; /* The largest iLevel value in the tree */ - sqlite3_int64 iRowid; /* Rowid for current entry */ - sqlite3_rtree_dbl rParentScore; /* Score of parent node */ - int eParentWithin; /* Visibility of parent node */ - int eWithin; /* OUT: Visibility */ - sqlite3_rtree_dbl rScore; /* OUT: Write the score here */ - /* The following fields are only available in 3.8.11 and later */ - sqlite3_value **apSqlParam; /* Original SQL values of parameters */ -}; - -/* -** Allowed values for sqlite3_rtree_query.eWithin and .eParentWithin. -*/ -#define NOT_WITHIN 0 /* Object completely outside of query region */ -#define PARTLY_WITHIN 1 /* Object partially overlaps query region */ -#define FULLY_WITHIN 2 /* Object fully contained within query region */ - - -#ifdef __cplusplus -} /* end of the 'extern "C"' block */ -#endif - -#endif /* ifndef _SQLITE3RTREE_H_ */ - -/******** End of sqlite3rtree.h *********/ -/******** Begin file sqlite3session.h *********/ - -#if !defined(__SQLITESESSION_H_) && defined(SQLITE_ENABLE_SESSION) -#define __SQLITESESSION_H_ 1 - -/* -** Make sure we can call this stuff from C++. -*/ -#ifdef __cplusplus -extern "C" { -#endif - - -/* -** CAPI3REF: Session Object Handle -** -** An instance of this object is a [session] that can be used to -** record changes to a database. -*/ -typedef struct sqlite3_session sqlite3_session; - -/* -** CAPI3REF: Changeset Iterator Handle -** -** An instance of this object acts as a cursor for iterating -** over the elements of a [changeset] or [patchset]. -*/ -typedef struct sqlite3_changeset_iter sqlite3_changeset_iter; - -/* -** CAPI3REF: Create A New Session Object -** CONSTRUCTOR: sqlite3_session -** -** Create a new session object attached to database handle db. If successful, -** a pointer to the new object is written to *ppSession and SQLITE_OK is -** returned. If an error occurs, *ppSession is set to NULL and an SQLite -** error code (e.g. SQLITE_NOMEM) is returned. -** -** It is possible to create multiple session objects attached to a single -** database handle. -** -** Session objects created using this function should be deleted using the -** [sqlite3session_delete()] function before the database handle that they -** are attached to is itself closed. If the database handle is closed before -** the session object is deleted, then the results of calling any session -** module function, including [sqlite3session_delete()] on the session object -** are undefined. -** -** Because the session module uses the [sqlite3_preupdate_hook()] API, it -** is not possible for an application to register a pre-update hook on a -** database handle that has one or more session objects attached. Nor is -** it possible to create a session object attached to a database handle for -** which a pre-update hook is already defined. The results of attempting -** either of these things are undefined. -** -** The session object will be used to create changesets for tables in -** database zDb, where zDb is either "main", or "temp", or the name of an -** attached database. It is not an error if database zDb is not attached -** to the database when the session object is created. -*/ -SQLITE_API int sqlite3session_create( - sqlite3 *db, /* Database handle */ - const char *zDb, /* Name of db (e.g. "main") */ - sqlite3_session **ppSession /* OUT: New session object */ -); - -/* -** CAPI3REF: Delete A Session Object -** DESTRUCTOR: sqlite3_session -** -** Delete a session object previously allocated using -** [sqlite3session_create()]. Once a session object has been deleted, the -** results of attempting to use pSession with any other session module -** function are undefined. -** -** Session objects must be deleted before the database handle to which they -** are attached is closed. Refer to the documentation for -** [sqlite3session_create()] for details. -*/ -SQLITE_API void sqlite3session_delete(sqlite3_session *pSession); - -/* -** CAPIREF: Conigure a Session Object -** METHOD: sqlite3_session -** -** This method is used to configure a session object after it has been -** created. At present the only valid value for the second parameter is -** [SQLITE_SESSION_OBJCONFIG_SIZE]. -** -** Arguments for sqlite3session_object_config() -** -** The following values may passed as the the 4th parameter to -** sqlite3session_object_config(). -** -**
    SQLITE_SESSION_OBJCONFIG_SIZE
    -** This option is used to set, clear or query the flag that enables -** the [sqlite3session_changeset_size()] API. Because it imposes some -** computational overhead, this API is disabled by default. Argument -** pArg must point to a value of type (int). If the value is initially -** 0, then the sqlite3session_changeset_size() API is disabled. If it -** is greater than 0, then the same API is enabled. Or, if the initial -** value is less than zero, no change is made. In all cases the (int) -** variable is set to 1 if the sqlite3session_changeset_size() API is -** enabled following the current call, or 0 otherwise. -** -** It is an error (SQLITE_MISUSE) to attempt to modify this setting after -** the first table has been attached to the session object. -*/ -SQLITE_API int sqlite3session_object_config(sqlite3_session*, int op, void *pArg); - -/* -*/ -#define SQLITE_SESSION_OBJCONFIG_SIZE 1 - -/* -** CAPI3REF: Enable Or Disable A Session Object -** METHOD: sqlite3_session -** -** Enable or disable the recording of changes by a session object. When -** enabled, a session object records changes made to the database. When -** disabled - it does not. A newly created session object is enabled. -** Refer to the documentation for [sqlite3session_changeset()] for further -** details regarding how enabling and disabling a session object affects -** the eventual changesets. -** -** Passing zero to this function disables the session. Passing a value -** greater than zero enables it. Passing a value less than zero is a -** no-op, and may be used to query the current state of the session. -** -** The return value indicates the final state of the session object: 0 if -** the session is disabled, or 1 if it is enabled. -*/ -SQLITE_API int sqlite3session_enable(sqlite3_session *pSession, int bEnable); - -/* -** CAPI3REF: Set Or Clear the Indirect Change Flag -** METHOD: sqlite3_session -** -** Each change recorded by a session object is marked as either direct or -** indirect. A change is marked as indirect if either: -** -**
      -**
    • The session object "indirect" flag is set when the change is -** made, or -**
    • The change is made by an SQL trigger or foreign key action -** instead of directly as a result of a users SQL statement. -**
    -** -** If a single row is affected by more than one operation within a session, -** then the change is considered indirect if all operations meet the criteria -** for an indirect change above, or direct otherwise. -** -** This function is used to set, clear or query the session object indirect -** flag. If the second argument passed to this function is zero, then the -** indirect flag is cleared. If it is greater than zero, the indirect flag -** is set. Passing a value less than zero does not modify the current value -** of the indirect flag, and may be used to query the current state of the -** indirect flag for the specified session object. -** -** The return value indicates the final state of the indirect flag: 0 if -** it is clear, or 1 if it is set. -*/ -SQLITE_API int sqlite3session_indirect(sqlite3_session *pSession, int bIndirect); - -/* -** CAPI3REF: Attach A Table To A Session Object -** METHOD: sqlite3_session -** -** If argument zTab is not NULL, then it is the name of a table to attach -** to the session object passed as the first argument. All subsequent changes -** made to the table while the session object is enabled will be recorded. See -** documentation for [sqlite3session_changeset()] for further details. -** -** Or, if argument zTab is NULL, then changes are recorded for all tables -** in the database. If additional tables are added to the database (by -** executing "CREATE TABLE" statements) after this call is made, changes for -** the new tables are also recorded. -** -** Changes can only be recorded for tables that have a PRIMARY KEY explicitly -** defined as part of their CREATE TABLE statement. It does not matter if the -** PRIMARY KEY is an "INTEGER PRIMARY KEY" (rowid alias) or not. The PRIMARY -** KEY may consist of a single column, or may be a composite key. -** -** It is not an error if the named table does not exist in the database. Nor -** is it an error if the named table does not have a PRIMARY KEY. However, -** no changes will be recorded in either of these scenarios. -** -** Changes are not recorded for individual rows that have NULL values stored -** in one or more of their PRIMARY KEY columns. -** -** SQLITE_OK is returned if the call completes without error. Or, if an error -** occurs, an SQLite error code (e.g. SQLITE_NOMEM) is returned. -** -**

    Special sqlite_stat1 Handling

    -** -** As of SQLite version 3.22.0, the "sqlite_stat1" table is an exception to -** some of the rules above. In SQLite, the schema of sqlite_stat1 is: -**
    -**        CREATE TABLE sqlite_stat1(tbl,idx,stat)
    -**  
    -** -** Even though sqlite_stat1 does not have a PRIMARY KEY, changes are -** recorded for it as if the PRIMARY KEY is (tbl,idx). Additionally, changes -** are recorded for rows for which (idx IS NULL) is true. However, for such -** rows a zero-length blob (SQL value X'') is stored in the changeset or -** patchset instead of a NULL value. This allows such changesets to be -** manipulated by legacy implementations of sqlite3changeset_invert(), -** concat() and similar. -** -** The sqlite3changeset_apply() function automatically converts the -** zero-length blob back to a NULL value when updating the sqlite_stat1 -** table. However, if the application calls sqlite3changeset_new(), -** sqlite3changeset_old() or sqlite3changeset_conflict on a changeset -** iterator directly (including on a changeset iterator passed to a -** conflict-handler callback) then the X'' value is returned. The application -** must translate X'' to NULL itself if required. -** -** Legacy (older than 3.22.0) versions of the sessions module cannot capture -** changes made to the sqlite_stat1 table. Legacy versions of the -** sqlite3changeset_apply() function silently ignore any modifications to the -** sqlite_stat1 table that are part of a changeset or patchset. -*/ -SQLITE_API int sqlite3session_attach( - sqlite3_session *pSession, /* Session object */ - const char *zTab /* Table name */ -); - -/* -** CAPI3REF: Set a table filter on a Session Object. -** METHOD: sqlite3_session -** -** The second argument (xFilter) is the "filter callback". For changes to rows -** in tables that are not attached to the Session object, the filter is called -** to determine whether changes to the table's rows should be tracked or not. -** If xFilter returns 0, changes are not tracked. Note that once a table is -** attached, xFilter will not be called again. -*/ -SQLITE_API void sqlite3session_table_filter( - sqlite3_session *pSession, /* Session object */ - int(*xFilter)( - void *pCtx, /* Copy of third arg to _filter_table() */ - const char *zTab /* Table name */ - ), - void *pCtx /* First argument passed to xFilter */ -); - -/* -** CAPI3REF: Generate A Changeset From A Session Object -** METHOD: sqlite3_session -** -** Obtain a changeset containing changes to the tables attached to the -** session object passed as the first argument. If successful, -** set *ppChangeset to point to a buffer containing the changeset -** and *pnChangeset to the size of the changeset in bytes before returning -** SQLITE_OK. If an error occurs, set both *ppChangeset and *pnChangeset to -** zero and return an SQLite error code. -** -** A changeset consists of zero or more INSERT, UPDATE and/or DELETE changes, -** each representing a change to a single row of an attached table. An INSERT -** change contains the values of each field of a new database row. A DELETE -** contains the original values of each field of a deleted database row. An -** UPDATE change contains the original values of each field of an updated -** database row along with the updated values for each updated non-primary-key -** column. It is not possible for an UPDATE change to represent a change that -** modifies the values of primary key columns. If such a change is made, it -** is represented in a changeset as a DELETE followed by an INSERT. -** -** Changes are not recorded for rows that have NULL values stored in one or -** more of their PRIMARY KEY columns. If such a row is inserted or deleted, -** no corresponding change is present in the changesets returned by this -** function. If an existing row with one or more NULL values stored in -** PRIMARY KEY columns is updated so that all PRIMARY KEY columns are non-NULL, -** only an INSERT is appears in the changeset. Similarly, if an existing row -** with non-NULL PRIMARY KEY values is updated so that one or more of its -** PRIMARY KEY columns are set to NULL, the resulting changeset contains a -** DELETE change only. -** -** The contents of a changeset may be traversed using an iterator created -** using the [sqlite3changeset_start()] API. A changeset may be applied to -** a database with a compatible schema using the [sqlite3changeset_apply()] -** API. -** -** Within a changeset generated by this function, all changes related to a -** single table are grouped together. In other words, when iterating through -** a changeset or when applying a changeset to a database, all changes related -** to a single table are processed before moving on to the next table. Tables -** are sorted in the same order in which they were attached (or auto-attached) -** to the sqlite3_session object. The order in which the changes related to -** a single table are stored is undefined. -** -** Following a successful call to this function, it is the responsibility of -** the caller to eventually free the buffer that *ppChangeset points to using -** [sqlite3_free()]. -** -**

    Changeset Generation

    -** -** Once a table has been attached to a session object, the session object -** records the primary key values of all new rows inserted into the table. -** It also records the original primary key and other column values of any -** deleted or updated rows. For each unique primary key value, data is only -** recorded once - the first time a row with said primary key is inserted, -** updated or deleted in the lifetime of the session. -** -** There is one exception to the previous paragraph: when a row is inserted, -** updated or deleted, if one or more of its primary key columns contain a -** NULL value, no record of the change is made. -** -** The session object therefore accumulates two types of records - those -** that consist of primary key values only (created when the user inserts -** a new record) and those that consist of the primary key values and the -** original values of other table columns (created when the users deletes -** or updates a record). -** -** When this function is called, the requested changeset is created using -** both the accumulated records and the current contents of the database -** file. Specifically: -** -**
      -**
    • For each record generated by an insert, the database is queried -** for a row with a matching primary key. If one is found, an INSERT -** change is added to the changeset. If no such row is found, no change -** is added to the changeset. -** -**
    • For each record generated by an update or delete, the database is -** queried for a row with a matching primary key. If such a row is -** found and one or more of the non-primary key fields have been -** modified from their original values, an UPDATE change is added to -** the changeset. Or, if no such row is found in the table, a DELETE -** change is added to the changeset. If there is a row with a matching -** primary key in the database, but all fields contain their original -** values, no change is added to the changeset. -**
    -** -** This means, amongst other things, that if a row is inserted and then later -** deleted while a session object is active, neither the insert nor the delete -** will be present in the changeset. Or if a row is deleted and then later a -** row with the same primary key values inserted while a session object is -** active, the resulting changeset will contain an UPDATE change instead of -** a DELETE and an INSERT. -** -** When a session object is disabled (see the [sqlite3session_enable()] API), -** it does not accumulate records when rows are inserted, updated or deleted. -** This may appear to have some counter-intuitive effects if a single row -** is written to more than once during a session. For example, if a row -** is inserted while a session object is enabled, then later deleted while -** the same session object is disabled, no INSERT record will appear in the -** changeset, even though the delete took place while the session was disabled. -** Or, if one field of a row is updated while a session is disabled, and -** another field of the same row is updated while the session is enabled, the -** resulting changeset will contain an UPDATE change that updates both fields. -*/ -SQLITE_API int sqlite3session_changeset( - sqlite3_session *pSession, /* Session object */ - int *pnChangeset, /* OUT: Size of buffer at *ppChangeset */ - void **ppChangeset /* OUT: Buffer containing changeset */ -); - -/* -** CAPI3REF: Return An Upper-limit For The Size Of The Changeset -** METHOD: sqlite3_session -** -** By default, this function always returns 0. For it to return -** a useful result, the sqlite3_session object must have been configured -** to enable this API using sqlite3session_object_config() with the -** SQLITE_SESSION_OBJCONFIG_SIZE verb. -** -** When enabled, this function returns an upper limit, in bytes, for the size -** of the changeset that might be produced if sqlite3session_changeset() were -** called. The final changeset size might be equal to or smaller than the -** size in bytes returned by this function. -*/ -SQLITE_API sqlite3_int64 sqlite3session_changeset_size(sqlite3_session *pSession); - -/* -** CAPI3REF: Load The Difference Between Tables Into A Session -** METHOD: sqlite3_session -** -** If it is not already attached to the session object passed as the first -** argument, this function attaches table zTbl in the same manner as the -** [sqlite3session_attach()] function. If zTbl does not exist, or if it -** does not have a primary key, this function is a no-op (but does not return -** an error). -** -** Argument zFromDb must be the name of a database ("main", "temp" etc.) -** attached to the same database handle as the session object that contains -** a table compatible with the table attached to the session by this function. -** A table is considered compatible if it: -** -**
      -**
    • Has the same name, -**
    • Has the same set of columns declared in the same order, and -**
    • Has the same PRIMARY KEY definition. -**
    -** -** If the tables are not compatible, SQLITE_SCHEMA is returned. If the tables -** are compatible but do not have any PRIMARY KEY columns, it is not an error -** but no changes are added to the session object. As with other session -** APIs, tables without PRIMARY KEYs are simply ignored. -** -** This function adds a set of changes to the session object that could be -** used to update the table in database zFrom (call this the "from-table") -** so that its content is the same as the table attached to the session -** object (call this the "to-table"). Specifically: -** -**
      -**
    • For each row (primary key) that exists in the to-table but not in -** the from-table, an INSERT record is added to the session object. -** -**
    • For each row (primary key) that exists in the to-table but not in -** the from-table, a DELETE record is added to the session object. -** -**
    • For each row (primary key) that exists in both tables, but features -** different non-PK values in each, an UPDATE record is added to the -** session. -**
    -** -** To clarify, if this function is called and then a changeset constructed -** using [sqlite3session_changeset()], then after applying that changeset to -** database zFrom the contents of the two compatible tables would be -** identical. -** -** It an error if database zFrom does not exist or does not contain the -** required compatible table. -** -** If the operation is successful, SQLITE_OK is returned. Otherwise, an SQLite -** error code. In this case, if argument pzErrMsg is not NULL, *pzErrMsg -** may be set to point to a buffer containing an English language error -** message. It is the responsibility of the caller to free this buffer using -** sqlite3_free(). -*/ -SQLITE_API int sqlite3session_diff( - sqlite3_session *pSession, - const char *zFromDb, - const char *zTbl, - char **pzErrMsg -); - - -/* -** CAPI3REF: Generate A Patchset From A Session Object -** METHOD: sqlite3_session -** -** The differences between a patchset and a changeset are that: -** -**
      -**
    • DELETE records consist of the primary key fields only. The -** original values of other fields are omitted. -**
    • The original values of any modified fields are omitted from -** UPDATE records. -**
    -** -** A patchset blob may be used with up to date versions of all -** sqlite3changeset_xxx API functions except for sqlite3changeset_invert(), -** which returns SQLITE_CORRUPT if it is passed a patchset. Similarly, -** attempting to use a patchset blob with old versions of the -** sqlite3changeset_xxx APIs also provokes an SQLITE_CORRUPT error. -** -** Because the non-primary key "old.*" fields are omitted, no -** SQLITE_CHANGESET_DATA conflicts can be detected or reported if a patchset -** is passed to the sqlite3changeset_apply() API. Other conflict types work -** in the same way as for changesets. -** -** Changes within a patchset are ordered in the same way as for changesets -** generated by the sqlite3session_changeset() function (i.e. all changes for -** a single table are grouped together, tables appear in the order in which -** they were attached to the session object). -*/ -SQLITE_API int sqlite3session_patchset( - sqlite3_session *pSession, /* Session object */ - int *pnPatchset, /* OUT: Size of buffer at *ppPatchset */ - void **ppPatchset /* OUT: Buffer containing patchset */ -); - -/* -** CAPI3REF: Test if a changeset has recorded any changes. -** -** Return non-zero if no changes to attached tables have been recorded by -** the session object passed as the first argument. Otherwise, if one or -** more changes have been recorded, return zero. -** -** Even if this function returns zero, it is possible that calling -** [sqlite3session_changeset()] on the session handle may still return a -** changeset that contains no changes. This can happen when a row in -** an attached table is modified and then later on the original values -** are restored. However, if this function returns non-zero, then it is -** guaranteed that a call to sqlite3session_changeset() will return a -** changeset containing zero changes. -*/ -SQLITE_API int sqlite3session_isempty(sqlite3_session *pSession); - -/* -** CAPI3REF: Query for the amount of heap memory used by a session object. -** -** This API returns the total amount of heap memory in bytes currently -** used by the session object passed as the only argument. -*/ -SQLITE_API sqlite3_int64 sqlite3session_memory_used(sqlite3_session *pSession); - -/* -** CAPI3REF: Create An Iterator To Traverse A Changeset -** CONSTRUCTOR: sqlite3_changeset_iter -** -** Create an iterator used to iterate through the contents of a changeset. -** If successful, *pp is set to point to the iterator handle and SQLITE_OK -** is returned. Otherwise, if an error occurs, *pp is set to zero and an -** SQLite error code is returned. -** -** The following functions can be used to advance and query a changeset -** iterator created by this function: -** -**
      -**
    • [sqlite3changeset_next()] -**
    • [sqlite3changeset_op()] -**
    • [sqlite3changeset_new()] -**
    • [sqlite3changeset_old()] -**
    -** -** It is the responsibility of the caller to eventually destroy the iterator -** by passing it to [sqlite3changeset_finalize()]. The buffer containing the -** changeset (pChangeset) must remain valid until after the iterator is -** destroyed. -** -** Assuming the changeset blob was created by one of the -** [sqlite3session_changeset()], [sqlite3changeset_concat()] or -** [sqlite3changeset_invert()] functions, all changes within the changeset -** that apply to a single table are grouped together. This means that when -** an application iterates through a changeset using an iterator created by -** this function, all changes that relate to a single table are visited -** consecutively. There is no chance that the iterator will visit a change -** the applies to table X, then one for table Y, and then later on visit -** another change for table X. -** -** The behavior of sqlite3changeset_start_v2() and its streaming equivalent -** may be modified by passing a combination of -** [SQLITE_CHANGESETSTART_INVERT | supported flags] as the 4th parameter. -** -** Note that the sqlite3changeset_start_v2() API is still experimental -** and therefore subject to change. -*/ -SQLITE_API int sqlite3changeset_start( - sqlite3_changeset_iter **pp, /* OUT: New changeset iterator handle */ - int nChangeset, /* Size of changeset blob in bytes */ - void *pChangeset /* Pointer to blob containing changeset */ -); -SQLITE_API int sqlite3changeset_start_v2( - sqlite3_changeset_iter **pp, /* OUT: New changeset iterator handle */ - int nChangeset, /* Size of changeset blob in bytes */ - void *pChangeset, /* Pointer to blob containing changeset */ - int flags /* SESSION_CHANGESETSTART_* flags */ -); - -/* -** CAPI3REF: Flags for sqlite3changeset_start_v2 -** -** The following flags may passed via the 4th parameter to -** [sqlite3changeset_start_v2] and [sqlite3changeset_start_v2_strm]: -** -**
    SQLITE_CHANGESETAPPLY_INVERT
    -** Invert the changeset while iterating through it. This is equivalent to -** inverting a changeset using sqlite3changeset_invert() before applying it. -** It is an error to specify this flag with a patchset. -*/ -#define SQLITE_CHANGESETSTART_INVERT 0x0002 - - -/* -** CAPI3REF: Advance A Changeset Iterator -** METHOD: sqlite3_changeset_iter -** -** This function may only be used with iterators created by the function -** [sqlite3changeset_start()]. If it is called on an iterator passed to -** a conflict-handler callback by [sqlite3changeset_apply()], SQLITE_MISUSE -** is returned and the call has no effect. -** -** Immediately after an iterator is created by sqlite3changeset_start(), it -** does not point to any change in the changeset. Assuming the changeset -** is not empty, the first call to this function advances the iterator to -** point to the first change in the changeset. Each subsequent call advances -** the iterator to point to the next change in the changeset (if any). If -** no error occurs and the iterator points to a valid change after a call -** to sqlite3changeset_next() has advanced it, SQLITE_ROW is returned. -** Otherwise, if all changes in the changeset have already been visited, -** SQLITE_DONE is returned. -** -** If an error occurs, an SQLite error code is returned. Possible error -** codes include SQLITE_CORRUPT (if the changeset buffer is corrupt) or -** SQLITE_NOMEM. -*/ -SQLITE_API int sqlite3changeset_next(sqlite3_changeset_iter *pIter); - -/* -** CAPI3REF: Obtain The Current Operation From A Changeset Iterator -** METHOD: sqlite3_changeset_iter -** -** The pIter argument passed to this function may either be an iterator -** passed to a conflict-handler by [sqlite3changeset_apply()], or an iterator -** created by [sqlite3changeset_start()]. In the latter case, the most recent -** call to [sqlite3changeset_next()] must have returned [SQLITE_ROW]. If this -** is not the case, this function returns [SQLITE_MISUSE]. -** -** Arguments pOp, pnCol and pzTab may not be NULL. Upon return, three -** outputs are set through these pointers: -** -** *pOp is set to one of [SQLITE_INSERT], [SQLITE_DELETE] or [SQLITE_UPDATE], -** depending on the type of change that the iterator currently points to; -** -** *pnCol is set to the number of columns in the table affected by the change; and -** -** *pzTab is set to point to a nul-terminated utf-8 encoded string containing -** the name of the table affected by the current change. The buffer remains -** valid until either sqlite3changeset_next() is called on the iterator -** or until the conflict-handler function returns. -** -** If pbIndirect is not NULL, then *pbIndirect is set to true (1) if the change -** is an indirect change, or false (0) otherwise. See the documentation for -** [sqlite3session_indirect()] for a description of direct and indirect -** changes. -** -** If no error occurs, SQLITE_OK is returned. If an error does occur, an -** SQLite error code is returned. The values of the output variables may not -** be trusted in this case. -*/ -SQLITE_API int sqlite3changeset_op( - sqlite3_changeset_iter *pIter, /* Iterator object */ - const char **pzTab, /* OUT: Pointer to table name */ - int *pnCol, /* OUT: Number of columns in table */ - int *pOp, /* OUT: SQLITE_INSERT, DELETE or UPDATE */ - int *pbIndirect /* OUT: True for an 'indirect' change */ -); - -/* -** CAPI3REF: Obtain The Primary Key Definition Of A Table -** METHOD: sqlite3_changeset_iter -** -** For each modified table, a changeset includes the following: -** -**
      -**
    • The number of columns in the table, and -**
    • Which of those columns make up the tables PRIMARY KEY. -**
    -** -** This function is used to find which columns comprise the PRIMARY KEY of -** the table modified by the change that iterator pIter currently points to. -** If successful, *pabPK is set to point to an array of nCol entries, where -** nCol is the number of columns in the table. Elements of *pabPK are set to -** 0x01 if the corresponding column is part of the tables primary key, or -** 0x00 if it is not. -** -** If argument pnCol is not NULL, then *pnCol is set to the number of columns -** in the table. -** -** If this function is called when the iterator does not point to a valid -** entry, SQLITE_MISUSE is returned and the output variables zeroed. Otherwise, -** SQLITE_OK is returned and the output variables populated as described -** above. -*/ -SQLITE_API int sqlite3changeset_pk( - sqlite3_changeset_iter *pIter, /* Iterator object */ - unsigned char **pabPK, /* OUT: Array of boolean - true for PK cols */ - int *pnCol /* OUT: Number of entries in output array */ -); - -/* -** CAPI3REF: Obtain old.* Values From A Changeset Iterator -** METHOD: sqlite3_changeset_iter -** -** The pIter argument passed to this function may either be an iterator -** passed to a conflict-handler by [sqlite3changeset_apply()], or an iterator -** created by [sqlite3changeset_start()]. In the latter case, the most recent -** call to [sqlite3changeset_next()] must have returned SQLITE_ROW. -** Furthermore, it may only be called if the type of change that the iterator -** currently points to is either [SQLITE_DELETE] or [SQLITE_UPDATE]. Otherwise, -** this function returns [SQLITE_MISUSE] and sets *ppValue to NULL. -** -** Argument iVal must be greater than or equal to 0, and less than the number -** of columns in the table affected by the current change. Otherwise, -** [SQLITE_RANGE] is returned and *ppValue is set to NULL. -** -** If successful, this function sets *ppValue to point to a protected -** sqlite3_value object containing the iVal'th value from the vector of -** original row values stored as part of the UPDATE or DELETE change and -** returns SQLITE_OK. The name of the function comes from the fact that this -** is similar to the "old.*" columns available to update or delete triggers. -** -** If some other error occurs (e.g. an OOM condition), an SQLite error code -** is returned and *ppValue is set to NULL. -*/ -SQLITE_API int sqlite3changeset_old( - sqlite3_changeset_iter *pIter, /* Changeset iterator */ - int iVal, /* Column number */ - sqlite3_value **ppValue /* OUT: Old value (or NULL pointer) */ -); - -/* -** CAPI3REF: Obtain new.* Values From A Changeset Iterator -** METHOD: sqlite3_changeset_iter -** -** The pIter argument passed to this function may either be an iterator -** passed to a conflict-handler by [sqlite3changeset_apply()], or an iterator -** created by [sqlite3changeset_start()]. In the latter case, the most recent -** call to [sqlite3changeset_next()] must have returned SQLITE_ROW. -** Furthermore, it may only be called if the type of change that the iterator -** currently points to is either [SQLITE_UPDATE] or [SQLITE_INSERT]. Otherwise, -** this function returns [SQLITE_MISUSE] and sets *ppValue to NULL. -** -** Argument iVal must be greater than or equal to 0, and less than the number -** of columns in the table affected by the current change. Otherwise, -** [SQLITE_RANGE] is returned and *ppValue is set to NULL. -** -** If successful, this function sets *ppValue to point to a protected -** sqlite3_value object containing the iVal'th value from the vector of -** new row values stored as part of the UPDATE or INSERT change and -** returns SQLITE_OK. If the change is an UPDATE and does not include -** a new value for the requested column, *ppValue is set to NULL and -** SQLITE_OK returned. The name of the function comes from the fact that -** this is similar to the "new.*" columns available to update or delete -** triggers. -** -** If some other error occurs (e.g. an OOM condition), an SQLite error code -** is returned and *ppValue is set to NULL. -*/ -SQLITE_API int sqlite3changeset_new( - sqlite3_changeset_iter *pIter, /* Changeset iterator */ - int iVal, /* Column number */ - sqlite3_value **ppValue /* OUT: New value (or NULL pointer) */ -); - -/* -** CAPI3REF: Obtain Conflicting Row Values From A Changeset Iterator -** METHOD: sqlite3_changeset_iter -** -** This function should only be used with iterator objects passed to a -** conflict-handler callback by [sqlite3changeset_apply()] with either -** [SQLITE_CHANGESET_DATA] or [SQLITE_CHANGESET_CONFLICT]. If this function -** is called on any other iterator, [SQLITE_MISUSE] is returned and *ppValue -** is set to NULL. -** -** Argument iVal must be greater than or equal to 0, and less than the number -** of columns in the table affected by the current change. Otherwise, -** [SQLITE_RANGE] is returned and *ppValue is set to NULL. -** -** If successful, this function sets *ppValue to point to a protected -** sqlite3_value object containing the iVal'th value from the -** "conflicting row" associated with the current conflict-handler callback -** and returns SQLITE_OK. -** -** If some other error occurs (e.g. an OOM condition), an SQLite error code -** is returned and *ppValue is set to NULL. -*/ -SQLITE_API int sqlite3changeset_conflict( - sqlite3_changeset_iter *pIter, /* Changeset iterator */ - int iVal, /* Column number */ - sqlite3_value **ppValue /* OUT: Value from conflicting row */ -); - -/* -** CAPI3REF: Determine The Number Of Foreign Key Constraint Violations -** METHOD: sqlite3_changeset_iter -** -** This function may only be called with an iterator passed to an -** SQLITE_CHANGESET_FOREIGN_KEY conflict handler callback. In this case -** it sets the output variable to the total number of known foreign key -** violations in the destination database and returns SQLITE_OK. -** -** In all other cases this function returns SQLITE_MISUSE. -*/ -SQLITE_API int sqlite3changeset_fk_conflicts( - sqlite3_changeset_iter *pIter, /* Changeset iterator */ - int *pnOut /* OUT: Number of FK violations */ -); - - -/* -** CAPI3REF: Finalize A Changeset Iterator -** METHOD: sqlite3_changeset_iter -** -** This function is used to finalize an iterator allocated with -** [sqlite3changeset_start()]. -** -** This function should only be called on iterators created using the -** [sqlite3changeset_start()] function. If an application calls this -** function with an iterator passed to a conflict-handler by -** [sqlite3changeset_apply()], [SQLITE_MISUSE] is immediately returned and the -** call has no effect. -** -** If an error was encountered within a call to an sqlite3changeset_xxx() -** function (for example an [SQLITE_CORRUPT] in [sqlite3changeset_next()] or an -** [SQLITE_NOMEM] in [sqlite3changeset_new()]) then an error code corresponding -** to that error is returned by this function. Otherwise, SQLITE_OK is -** returned. This is to allow the following pattern (pseudo-code): -** -**
    -**   sqlite3changeset_start();
    -**   while( SQLITE_ROW==sqlite3changeset_next() ){
    -**     // Do something with change.
    -**   }
    -**   rc = sqlite3changeset_finalize();
    -**   if( rc!=SQLITE_OK ){
    -**     // An error has occurred
    -**   }
    -** 
    -*/ -SQLITE_API int sqlite3changeset_finalize(sqlite3_changeset_iter *pIter); - -/* -** CAPI3REF: Invert A Changeset -** -** This function is used to "invert" a changeset object. Applying an inverted -** changeset to a database reverses the effects of applying the uninverted -** changeset. Specifically: -** -**
      -**
    • Each DELETE change is changed to an INSERT, and -**
    • Each INSERT change is changed to a DELETE, and -**
    • For each UPDATE change, the old.* and new.* values are exchanged. -**
    -** -** This function does not change the order in which changes appear within -** the changeset. It merely reverses the sense of each individual change. -** -** If successful, a pointer to a buffer containing the inverted changeset -** is stored in *ppOut, the size of the same buffer is stored in *pnOut, and -** SQLITE_OK is returned. If an error occurs, both *pnOut and *ppOut are -** zeroed and an SQLite error code returned. -** -** It is the responsibility of the caller to eventually call sqlite3_free() -** on the *ppOut pointer to free the buffer allocation following a successful -** call to this function. -** -** WARNING/TODO: This function currently assumes that the input is a valid -** changeset. If it is not, the results are undefined. -*/ -SQLITE_API int sqlite3changeset_invert( - int nIn, const void *pIn, /* Input changeset */ - int *pnOut, void **ppOut /* OUT: Inverse of input */ -); - -/* -** CAPI3REF: Concatenate Two Changeset Objects -** -** This function is used to concatenate two changesets, A and B, into a -** single changeset. The result is a changeset equivalent to applying -** changeset A followed by changeset B. -** -** This function combines the two input changesets using an -** sqlite3_changegroup object. Calling it produces similar results as the -** following code fragment: -** -**
    -**   sqlite3_changegroup *pGrp;
    -**   rc = sqlite3_changegroup_new(&pGrp);
    -**   if( rc==SQLITE_OK ) rc = sqlite3changegroup_add(pGrp, nA, pA);
    -**   if( rc==SQLITE_OK ) rc = sqlite3changegroup_add(pGrp, nB, pB);
    -**   if( rc==SQLITE_OK ){
    -**     rc = sqlite3changegroup_output(pGrp, pnOut, ppOut);
    -**   }else{
    -**     *ppOut = 0;
    -**     *pnOut = 0;
    -**   }
    -** 
    -** -** Refer to the sqlite3_changegroup documentation below for details. -*/ -SQLITE_API int sqlite3changeset_concat( - int nA, /* Number of bytes in buffer pA */ - void *pA, /* Pointer to buffer containing changeset A */ - int nB, /* Number of bytes in buffer pB */ - void *pB, /* Pointer to buffer containing changeset B */ - int *pnOut, /* OUT: Number of bytes in output changeset */ - void **ppOut /* OUT: Buffer containing output changeset */ -); - - -/* -** CAPI3REF: Changegroup Handle -** -** A changegroup is an object used to combine two or more -** [changesets] or [patchsets] -*/ -typedef struct sqlite3_changegroup sqlite3_changegroup; - -/* -** CAPI3REF: Create A New Changegroup Object -** CONSTRUCTOR: sqlite3_changegroup -** -** An sqlite3_changegroup object is used to combine two or more changesets -** (or patchsets) into a single changeset (or patchset). A single changegroup -** object may combine changesets or patchsets, but not both. The output is -** always in the same format as the input. -** -** If successful, this function returns SQLITE_OK and populates (*pp) with -** a pointer to a new sqlite3_changegroup object before returning. The caller -** should eventually free the returned object using a call to -** sqlite3changegroup_delete(). If an error occurs, an SQLite error code -** (i.e. SQLITE_NOMEM) is returned and *pp is set to NULL. -** -** The usual usage pattern for an sqlite3_changegroup object is as follows: -** -**
      -**
    • It is created using a call to sqlite3changegroup_new(). -** -**
    • Zero or more changesets (or patchsets) are added to the object -** by calling sqlite3changegroup_add(). -** -**
    • The result of combining all input changesets together is obtained -** by the application via a call to sqlite3changegroup_output(). -** -**
    • The object is deleted using a call to sqlite3changegroup_delete(). -**
    -** -** Any number of calls to add() and output() may be made between the calls to -** new() and delete(), and in any order. -** -** As well as the regular sqlite3changegroup_add() and -** sqlite3changegroup_output() functions, also available are the streaming -** versions sqlite3changegroup_add_strm() and sqlite3changegroup_output_strm(). -*/ -SQLITE_API int sqlite3changegroup_new(sqlite3_changegroup **pp); - -/* -** CAPI3REF: Add A Changeset To A Changegroup -** METHOD: sqlite3_changegroup -** -** Add all changes within the changeset (or patchset) in buffer pData (size -** nData bytes) to the changegroup. -** -** If the buffer contains a patchset, then all prior calls to this function -** on the same changegroup object must also have specified patchsets. Or, if -** the buffer contains a changeset, so must have the earlier calls to this -** function. Otherwise, SQLITE_ERROR is returned and no changes are added -** to the changegroup. -** -** Rows within the changeset and changegroup are identified by the values in -** their PRIMARY KEY columns. A change in the changeset is considered to -** apply to the same row as a change already present in the changegroup if -** the two rows have the same primary key. -** -** Changes to rows that do not already appear in the changegroup are -** simply copied into it. Or, if both the new changeset and the changegroup -** contain changes that apply to a single row, the final contents of the -** changegroup depends on the type of each change, as follows: -** -** -** -** -**
    Existing Change New Change Output Change -**
    INSERT INSERT -** The new change is ignored. This case does not occur if the new -** changeset was recorded immediately after the changesets already -** added to the changegroup. -**
    INSERT UPDATE -** The INSERT change remains in the changegroup. The values in the -** INSERT change are modified as if the row was inserted by the -** existing change and then updated according to the new change. -**
    INSERT DELETE -** The existing INSERT is removed from the changegroup. The DELETE is -** not added. -**
    UPDATE INSERT -** The new change is ignored. This case does not occur if the new -** changeset was recorded immediately after the changesets already -** added to the changegroup. -**
    UPDATE UPDATE -** The existing UPDATE remains within the changegroup. It is amended -** so that the accompanying values are as if the row was updated once -** by the existing change and then again by the new change. -**
    UPDATE DELETE -** The existing UPDATE is replaced by the new DELETE within the -** changegroup. -**
    DELETE INSERT -** If one or more of the column values in the row inserted by the -** new change differ from those in the row deleted by the existing -** change, the existing DELETE is replaced by an UPDATE within the -** changegroup. Otherwise, if the inserted row is exactly the same -** as the deleted row, the existing DELETE is simply discarded. -**
    DELETE UPDATE -** The new change is ignored. This case does not occur if the new -** changeset was recorded immediately after the changesets already -** added to the changegroup. -**
    DELETE DELETE -** The new change is ignored. This case does not occur if the new -** changeset was recorded immediately after the changesets already -** added to the changegroup. -**
    -** -** If the new changeset contains changes to a table that is already present -** in the changegroup, then the number of columns and the position of the -** primary key columns for the table must be consistent. If this is not the -** case, this function fails with SQLITE_SCHEMA. If the input changeset -** appears to be corrupt and the corruption is detected, SQLITE_CORRUPT is -** returned. Or, if an out-of-memory condition occurs during processing, this -** function returns SQLITE_NOMEM. In all cases, if an error occurs the state -** of the final contents of the changegroup is undefined. -** -** If no error occurs, SQLITE_OK is returned. -*/ -SQLITE_API int sqlite3changegroup_add(sqlite3_changegroup*, int nData, void *pData); - -/* -** CAPI3REF: Obtain A Composite Changeset From A Changegroup -** METHOD: sqlite3_changegroup -** -** Obtain a buffer containing a changeset (or patchset) representing the -** current contents of the changegroup. If the inputs to the changegroup -** were themselves changesets, the output is a changeset. Or, if the -** inputs were patchsets, the output is also a patchset. -** -** As with the output of the sqlite3session_changeset() and -** sqlite3session_patchset() functions, all changes related to a single -** table are grouped together in the output of this function. Tables appear -** in the same order as for the very first changeset added to the changegroup. -** If the second or subsequent changesets added to the changegroup contain -** changes for tables that do not appear in the first changeset, they are -** appended onto the end of the output changeset, again in the order in -** which they are first encountered. -** -** If an error occurs, an SQLite error code is returned and the output -** variables (*pnData) and (*ppData) are set to 0. Otherwise, SQLITE_OK -** is returned and the output variables are set to the size of and a -** pointer to the output buffer, respectively. In this case it is the -** responsibility of the caller to eventually free the buffer using a -** call to sqlite3_free(). -*/ -SQLITE_API int sqlite3changegroup_output( - sqlite3_changegroup*, - int *pnData, /* OUT: Size of output buffer in bytes */ - void **ppData /* OUT: Pointer to output buffer */ -); - -/* -** CAPI3REF: Delete A Changegroup Object -** DESTRUCTOR: sqlite3_changegroup -*/ -SQLITE_API void sqlite3changegroup_delete(sqlite3_changegroup*); - -/* -** CAPI3REF: Apply A Changeset To A Database -** -** Apply a changeset or patchset to a database. These functions attempt to -** update the "main" database attached to handle db with the changes found in -** the changeset passed via the second and third arguments. -** -** The fourth argument (xFilter) passed to these functions is the "filter -** callback". If it is not NULL, then for each table affected by at least one -** change in the changeset, the filter callback is invoked with -** the table name as the second argument, and a copy of the context pointer -** passed as the sixth argument as the first. If the "filter callback" -** returns zero, then no attempt is made to apply any changes to the table. -** Otherwise, if the return value is non-zero or the xFilter argument to -** is NULL, all changes related to the table are attempted. -** -** For each table that is not excluded by the filter callback, this function -** tests that the target database contains a compatible table. A table is -** considered compatible if all of the following are true: -** -**
      -**
    • The table has the same name as the name recorded in the -** changeset, and -**
    • The table has at least as many columns as recorded in the -** changeset, and -**
    • The table has primary key columns in the same position as -** recorded in the changeset. -**
    -** -** If there is no compatible table, it is not an error, but none of the -** changes associated with the table are applied. A warning message is issued -** via the sqlite3_log() mechanism with the error code SQLITE_SCHEMA. At most -** one such warning is issued for each table in the changeset. -** -** For each change for which there is a compatible table, an attempt is made -** to modify the table contents according to the UPDATE, INSERT or DELETE -** change. If a change cannot be applied cleanly, the conflict handler -** function passed as the fifth argument to sqlite3changeset_apply() may be -** invoked. A description of exactly when the conflict handler is invoked for -** each type of change is below. -** -** Unlike the xFilter argument, xConflict may not be passed NULL. The results -** of passing anything other than a valid function pointer as the xConflict -** argument are undefined. -** -** Each time the conflict handler function is invoked, it must return one -** of [SQLITE_CHANGESET_OMIT], [SQLITE_CHANGESET_ABORT] or -** [SQLITE_CHANGESET_REPLACE]. SQLITE_CHANGESET_REPLACE may only be returned -** if the second argument passed to the conflict handler is either -** SQLITE_CHANGESET_DATA or SQLITE_CHANGESET_CONFLICT. If the conflict-handler -** returns an illegal value, any changes already made are rolled back and -** the call to sqlite3changeset_apply() returns SQLITE_MISUSE. Different -** actions are taken by sqlite3changeset_apply() depending on the value -** returned by each invocation of the conflict-handler function. Refer to -** the documentation for the three -** [SQLITE_CHANGESET_OMIT|available return values] for details. -** -**
    -**
    DELETE Changes
    -** For each DELETE change, the function checks if the target database -** contains a row with the same primary key value (or values) as the -** original row values stored in the changeset. If it does, and the values -** stored in all non-primary key columns also match the values stored in -** the changeset the row is deleted from the target database. -** -** If a row with matching primary key values is found, but one or more of -** the non-primary key fields contains a value different from the original -** row value stored in the changeset, the conflict-handler function is -** invoked with [SQLITE_CHANGESET_DATA] as the second argument. If the -** database table has more columns than are recorded in the changeset, -** only the values of those non-primary key fields are compared against -** the current database contents - any trailing database table columns -** are ignored. -** -** If no row with matching primary key values is found in the database, -** the conflict-handler function is invoked with [SQLITE_CHANGESET_NOTFOUND] -** passed as the second argument. -** -** If the DELETE operation is attempted, but SQLite returns SQLITE_CONSTRAINT -** (which can only happen if a foreign key constraint is violated), the -** conflict-handler function is invoked with [SQLITE_CHANGESET_CONSTRAINT] -** passed as the second argument. This includes the case where the DELETE -** operation is attempted because an earlier call to the conflict handler -** function returned [SQLITE_CHANGESET_REPLACE]. -** -**
    INSERT Changes
    -** For each INSERT change, an attempt is made to insert the new row into -** the database. If the changeset row contains fewer fields than the -** database table, the trailing fields are populated with their default -** values. -** -** If the attempt to insert the row fails because the database already -** contains a row with the same primary key values, the conflict handler -** function is invoked with the second argument set to -** [SQLITE_CHANGESET_CONFLICT]. -** -** If the attempt to insert the row fails because of some other constraint -** violation (e.g. NOT NULL or UNIQUE), the conflict handler function is -** invoked with the second argument set to [SQLITE_CHANGESET_CONSTRAINT]. -** This includes the case where the INSERT operation is re-attempted because -** an earlier call to the conflict handler function returned -** [SQLITE_CHANGESET_REPLACE]. -** -**
    UPDATE Changes
    -** For each UPDATE change, the function checks if the target database -** contains a row with the same primary key value (or values) as the -** original row values stored in the changeset. If it does, and the values -** stored in all modified non-primary key columns also match the values -** stored in the changeset the row is updated within the target database. -** -** If a row with matching primary key values is found, but one or more of -** the modified non-primary key fields contains a value different from an -** original row value stored in the changeset, the conflict-handler function -** is invoked with [SQLITE_CHANGESET_DATA] as the second argument. Since -** UPDATE changes only contain values for non-primary key fields that are -** to be modified, only those fields need to match the original values to -** avoid the SQLITE_CHANGESET_DATA conflict-handler callback. -** -** If no row with matching primary key values is found in the database, -** the conflict-handler function is invoked with [SQLITE_CHANGESET_NOTFOUND] -** passed as the second argument. -** -** If the UPDATE operation is attempted, but SQLite returns -** SQLITE_CONSTRAINT, the conflict-handler function is invoked with -** [SQLITE_CHANGESET_CONSTRAINT] passed as the second argument. -** This includes the case where the UPDATE operation is attempted after -** an earlier call to the conflict handler function returned -** [SQLITE_CHANGESET_REPLACE]. -**
    -** -** It is safe to execute SQL statements, including those that write to the -** table that the callback related to, from within the xConflict callback. -** This can be used to further customize the application's conflict -** resolution strategy. -** -** All changes made by these functions are enclosed in a savepoint transaction. -** If any other error (aside from a constraint failure when attempting to -** write to the target database) occurs, then the savepoint transaction is -** rolled back, restoring the target database to its original state, and an -** SQLite error code returned. -** -** If the output parameters (ppRebase) and (pnRebase) are non-NULL and -** the input is a changeset (not a patchset), then sqlite3changeset_apply_v2() -** may set (*ppRebase) to point to a "rebase" that may be used with the -** sqlite3_rebaser APIs buffer before returning. In this case (*pnRebase) -** is set to the size of the buffer in bytes. It is the responsibility of the -** caller to eventually free any such buffer using sqlite3_free(). The buffer -** is only allocated and populated if one or more conflicts were encountered -** while applying the patchset. See comments surrounding the sqlite3_rebaser -** APIs for further details. -** -** The behavior of sqlite3changeset_apply_v2() and its streaming equivalent -** may be modified by passing a combination of -** [SQLITE_CHANGESETAPPLY_NOSAVEPOINT | supported flags] as the 9th parameter. -** -** Note that the sqlite3changeset_apply_v2() API is still experimental -** and therefore subject to change. -*/ -SQLITE_API int sqlite3changeset_apply( - sqlite3 *db, /* Apply change to "main" db of this handle */ - int nChangeset, /* Size of changeset in bytes */ - void *pChangeset, /* Changeset blob */ - int(*xFilter)( - void *pCtx, /* Copy of sixth arg to _apply() */ - const char *zTab /* Table name */ - ), - int(*xConflict)( - void *pCtx, /* Copy of sixth arg to _apply() */ - int eConflict, /* DATA, MISSING, CONFLICT, CONSTRAINT */ - sqlite3_changeset_iter *p /* Handle describing change and conflict */ - ), - void *pCtx /* First argument passed to xConflict */ -); -SQLITE_API int sqlite3changeset_apply_v2( - sqlite3 *db, /* Apply change to "main" db of this handle */ - int nChangeset, /* Size of changeset in bytes */ - void *pChangeset, /* Changeset blob */ - int(*xFilter)( - void *pCtx, /* Copy of sixth arg to _apply() */ - const char *zTab /* Table name */ - ), - int(*xConflict)( - void *pCtx, /* Copy of sixth arg to _apply() */ - int eConflict, /* DATA, MISSING, CONFLICT, CONSTRAINT */ - sqlite3_changeset_iter *p /* Handle describing change and conflict */ - ), - void *pCtx, /* First argument passed to xConflict */ - void **ppRebase, int *pnRebase, /* OUT: Rebase data */ - int flags /* SESSION_CHANGESETAPPLY_* flags */ -); - -/* -** CAPI3REF: Flags for sqlite3changeset_apply_v2 -** -** The following flags may passed via the 9th parameter to -** [sqlite3changeset_apply_v2] and [sqlite3changeset_apply_v2_strm]: -** -**
    -**
    SQLITE_CHANGESETAPPLY_NOSAVEPOINT
    -** Usually, the sessions module encloses all operations performed by -** a single call to apply_v2() or apply_v2_strm() in a [SAVEPOINT]. The -** SAVEPOINT is committed if the changeset or patchset is successfully -** applied, or rolled back if an error occurs. Specifying this flag -** causes the sessions module to omit this savepoint. In this case, if the -** caller has an open transaction or savepoint when apply_v2() is called, -** it may revert the partially applied changeset by rolling it back. -** -**
    SQLITE_CHANGESETAPPLY_INVERT
    -** Invert the changeset before applying it. This is equivalent to inverting -** a changeset using sqlite3changeset_invert() before applying it. It is -** an error to specify this flag with a patchset. -*/ -#define SQLITE_CHANGESETAPPLY_NOSAVEPOINT 0x0001 -#define SQLITE_CHANGESETAPPLY_INVERT 0x0002 - -/* -** CAPI3REF: Constants Passed To The Conflict Handler -** -** Values that may be passed as the second argument to a conflict-handler. -** -**
    -**
    SQLITE_CHANGESET_DATA
    -** The conflict handler is invoked with CHANGESET_DATA as the second argument -** when processing a DELETE or UPDATE change if a row with the required -** PRIMARY KEY fields is present in the database, but one or more other -** (non primary-key) fields modified by the update do not contain the -** expected "before" values. -** -** The conflicting row, in this case, is the database row with the matching -** primary key. -** -**
    SQLITE_CHANGESET_NOTFOUND
    -** The conflict handler is invoked with CHANGESET_NOTFOUND as the second -** argument when processing a DELETE or UPDATE change if a row with the -** required PRIMARY KEY fields is not present in the database. -** -** There is no conflicting row in this case. The results of invoking the -** sqlite3changeset_conflict() API are undefined. -** -**
    SQLITE_CHANGESET_CONFLICT
    -** CHANGESET_CONFLICT is passed as the second argument to the conflict -** handler while processing an INSERT change if the operation would result -** in duplicate primary key values. -** -** The conflicting row in this case is the database row with the matching -** primary key. -** -**
    SQLITE_CHANGESET_FOREIGN_KEY
    -** If foreign key handling is enabled, and applying a changeset leaves the -** database in a state containing foreign key violations, the conflict -** handler is invoked with CHANGESET_FOREIGN_KEY as the second argument -** exactly once before the changeset is committed. If the conflict handler -** returns CHANGESET_OMIT, the changes, including those that caused the -** foreign key constraint violation, are committed. Or, if it returns -** CHANGESET_ABORT, the changeset is rolled back. -** -** No current or conflicting row information is provided. The only function -** it is possible to call on the supplied sqlite3_changeset_iter handle -** is sqlite3changeset_fk_conflicts(). -** -**
    SQLITE_CHANGESET_CONSTRAINT
    -** If any other constraint violation occurs while applying a change (i.e. -** a UNIQUE, CHECK or NOT NULL constraint), the conflict handler is -** invoked with CHANGESET_CONSTRAINT as the second argument. -** -** There is no conflicting row in this case. The results of invoking the -** sqlite3changeset_conflict() API are undefined. -** -**
    -*/ -#define SQLITE_CHANGESET_DATA 1 -#define SQLITE_CHANGESET_NOTFOUND 2 -#define SQLITE_CHANGESET_CONFLICT 3 -#define SQLITE_CHANGESET_CONSTRAINT 4 -#define SQLITE_CHANGESET_FOREIGN_KEY 5 - -/* -** CAPI3REF: Constants Returned By The Conflict Handler -** -** A conflict handler callback must return one of the following three values. -** -**
    -**
    SQLITE_CHANGESET_OMIT
    -** If a conflict handler returns this value no special action is taken. The -** change that caused the conflict is not applied. The session module -** continues to the next change in the changeset. -** -**
    SQLITE_CHANGESET_REPLACE
    -** This value may only be returned if the second argument to the conflict -** handler was SQLITE_CHANGESET_DATA or SQLITE_CHANGESET_CONFLICT. If this -** is not the case, any changes applied so far are rolled back and the -** call to sqlite3changeset_apply() returns SQLITE_MISUSE. -** -** If CHANGESET_REPLACE is returned by an SQLITE_CHANGESET_DATA conflict -** handler, then the conflicting row is either updated or deleted, depending -** on the type of change. -** -** If CHANGESET_REPLACE is returned by an SQLITE_CHANGESET_CONFLICT conflict -** handler, then the conflicting row is removed from the database and a -** second attempt to apply the change is made. If this second attempt fails, -** the original row is restored to the database before continuing. -** -**
    SQLITE_CHANGESET_ABORT
    -** If this value is returned, any changes applied so far are rolled back -** and the call to sqlite3changeset_apply() returns SQLITE_ABORT. -**
    -*/ -#define SQLITE_CHANGESET_OMIT 0 -#define SQLITE_CHANGESET_REPLACE 1 -#define SQLITE_CHANGESET_ABORT 2 - -/* -** CAPI3REF: Rebasing changesets -** EXPERIMENTAL -** -** Suppose there is a site hosting a database in state S0. And that -** modifications are made that move that database to state S1 and a -** changeset recorded (the "local" changeset). Then, a changeset based -** on S0 is received from another site (the "remote" changeset) and -** applied to the database. The database is then in state -** (S1+"remote"), where the exact state depends on any conflict -** resolution decisions (OMIT or REPLACE) made while applying "remote". -** Rebasing a changeset is to update it to take those conflict -** resolution decisions into account, so that the same conflicts -** do not have to be resolved elsewhere in the network. -** -** For example, if both the local and remote changesets contain an -** INSERT of the same key on "CREATE TABLE t1(a PRIMARY KEY, b)": -** -** local: INSERT INTO t1 VALUES(1, 'v1'); -** remote: INSERT INTO t1 VALUES(1, 'v2'); -** -** and the conflict resolution is REPLACE, then the INSERT change is -** removed from the local changeset (it was overridden). Or, if the -** conflict resolution was "OMIT", then the local changeset is modified -** to instead contain: -** -** UPDATE t1 SET b = 'v2' WHERE a=1; -** -** Changes within the local changeset are rebased as follows: -** -**
    -**
    Local INSERT
    -** This may only conflict with a remote INSERT. If the conflict -** resolution was OMIT, then add an UPDATE change to the rebased -** changeset. Or, if the conflict resolution was REPLACE, add -** nothing to the rebased changeset. -** -**
    Local DELETE
    -** This may conflict with a remote UPDATE or DELETE. In both cases the -** only possible resolution is OMIT. If the remote operation was a -** DELETE, then add no change to the rebased changeset. If the remote -** operation was an UPDATE, then the old.* fields of change are updated -** to reflect the new.* values in the UPDATE. -** -**
    Local UPDATE
    -** This may conflict with a remote UPDATE or DELETE. If it conflicts -** with a DELETE, and the conflict resolution was OMIT, then the update -** is changed into an INSERT. Any undefined values in the new.* record -** from the update change are filled in using the old.* values from -** the conflicting DELETE. Or, if the conflict resolution was REPLACE, -** the UPDATE change is simply omitted from the rebased changeset. -** -** If conflict is with a remote UPDATE and the resolution is OMIT, then -** the old.* values are rebased using the new.* values in the remote -** change. Or, if the resolution is REPLACE, then the change is copied -** into the rebased changeset with updates to columns also updated by -** the conflicting remote UPDATE removed. If this means no columns would -** be updated, the change is omitted. -**
    -** -** A local change may be rebased against multiple remote changes -** simultaneously. If a single key is modified by multiple remote -** changesets, they are combined as follows before the local changeset -** is rebased: -** -**
      -**
    • If there has been one or more REPLACE resolutions on a -** key, it is rebased according to a REPLACE. -** -**
    • If there have been no REPLACE resolutions on a key, then -** the local changeset is rebased according to the most recent -** of the OMIT resolutions. -**
    -** -** Note that conflict resolutions from multiple remote changesets are -** combined on a per-field basis, not per-row. This means that in the -** case of multiple remote UPDATE operations, some fields of a single -** local change may be rebased for REPLACE while others are rebased for -** OMIT. -** -** In order to rebase a local changeset, the remote changeset must first -** be applied to the local database using sqlite3changeset_apply_v2() and -** the buffer of rebase information captured. Then: -** -**
      -**
    1. An sqlite3_rebaser object is created by calling -** sqlite3rebaser_create(). -**
    2. The new object is configured with the rebase buffer obtained from -** sqlite3changeset_apply_v2() by calling sqlite3rebaser_configure(). -** If the local changeset is to be rebased against multiple remote -** changesets, then sqlite3rebaser_configure() should be called -** multiple times, in the same order that the multiple -** sqlite3changeset_apply_v2() calls were made. -**
    3. Each local changeset is rebased by calling sqlite3rebaser_rebase(). -**
    4. The sqlite3_rebaser object is deleted by calling -** sqlite3rebaser_delete(). -**
    -*/ -typedef struct sqlite3_rebaser sqlite3_rebaser; - -/* -** CAPI3REF: Create a changeset rebaser object. -** EXPERIMENTAL -** -** Allocate a new changeset rebaser object. If successful, set (*ppNew) to -** point to the new object and return SQLITE_OK. Otherwise, if an error -** occurs, return an SQLite error code (e.g. SQLITE_NOMEM) and set (*ppNew) -** to NULL. -*/ -SQLITE_API int sqlite3rebaser_create(sqlite3_rebaser **ppNew); - -/* -** CAPI3REF: Configure a changeset rebaser object. -** EXPERIMENTAL -** -** Configure the changeset rebaser object to rebase changesets according -** to the conflict resolutions described by buffer pRebase (size nRebase -** bytes), which must have been obtained from a previous call to -** sqlite3changeset_apply_v2(). -*/ -SQLITE_API int sqlite3rebaser_configure( - sqlite3_rebaser*, - int nRebase, const void *pRebase -); - -/* -** CAPI3REF: Rebase a changeset -** EXPERIMENTAL -** -** Argument pIn must point to a buffer containing a changeset nIn bytes -** in size. This function allocates and populates a buffer with a copy -** of the changeset rebased according to the configuration of the -** rebaser object passed as the first argument. If successful, (*ppOut) -** is set to point to the new buffer containing the rebased changeset and -** (*pnOut) to its size in bytes and SQLITE_OK returned. It is the -** responsibility of the caller to eventually free the new buffer using -** sqlite3_free(). Otherwise, if an error occurs, (*ppOut) and (*pnOut) -** are set to zero and an SQLite error code returned. -*/ -SQLITE_API int sqlite3rebaser_rebase( - sqlite3_rebaser*, - int nIn, const void *pIn, - int *pnOut, void **ppOut -); - -/* -** CAPI3REF: Delete a changeset rebaser object. -** EXPERIMENTAL -** -** Delete the changeset rebaser object and all associated resources. There -** should be one call to this function for each successful invocation -** of sqlite3rebaser_create(). -*/ -SQLITE_API void sqlite3rebaser_delete(sqlite3_rebaser *p); - -/* -** CAPI3REF: Streaming Versions of API functions. -** -** The six streaming API xxx_strm() functions serve similar purposes to the -** corresponding non-streaming API functions: -** -** -** -**
    Streaming functionNon-streaming equivalent
    sqlite3changeset_apply_strm[sqlite3changeset_apply] -**
    sqlite3changeset_apply_strm_v2[sqlite3changeset_apply_v2] -**
    sqlite3changeset_concat_strm[sqlite3changeset_concat] -**
    sqlite3changeset_invert_strm[sqlite3changeset_invert] -**
    sqlite3changeset_start_strm[sqlite3changeset_start] -**
    sqlite3session_changeset_strm[sqlite3session_changeset] -**
    sqlite3session_patchset_strm[sqlite3session_patchset] -**
    -** -** Non-streaming functions that accept changesets (or patchsets) as input -** require that the entire changeset be stored in a single buffer in memory. -** Similarly, those that return a changeset or patchset do so by returning -** a pointer to a single large buffer allocated using sqlite3_malloc(). -** Normally this is convenient. However, if an application running in a -** low-memory environment is required to handle very large changesets, the -** large contiguous memory allocations required can become onerous. -** -** In order to avoid this problem, instead of a single large buffer, input -** is passed to a streaming API functions by way of a callback function that -** the sessions module invokes to incrementally request input data as it is -** required. In all cases, a pair of API function parameters such as -** -**
    -**        int nChangeset,
    -**        void *pChangeset,
    -**  
    -** -** Is replaced by: -** -**
    -**        int (*xInput)(void *pIn, void *pData, int *pnData),
    -**        void *pIn,
    -**  
    -** -** Each time the xInput callback is invoked by the sessions module, the first -** argument passed is a copy of the supplied pIn context pointer. The second -** argument, pData, points to a buffer (*pnData) bytes in size. Assuming no -** error occurs the xInput method should copy up to (*pnData) bytes of data -** into the buffer and set (*pnData) to the actual number of bytes copied -** before returning SQLITE_OK. If the input is completely exhausted, (*pnData) -** should be set to zero to indicate this. Or, if an error occurs, an SQLite -** error code should be returned. In all cases, if an xInput callback returns -** an error, all processing is abandoned and the streaming API function -** returns a copy of the error code to the caller. -** -** In the case of sqlite3changeset_start_strm(), the xInput callback may be -** invoked by the sessions module at any point during the lifetime of the -** iterator. If such an xInput callback returns an error, the iterator enters -** an error state, whereby all subsequent calls to iterator functions -** immediately fail with the same error code as returned by xInput. -** -** Similarly, streaming API functions that return changesets (or patchsets) -** return them in chunks by way of a callback function instead of via a -** pointer to a single large buffer. In this case, a pair of parameters such -** as: -** -**
    -**        int *pnChangeset,
    -**        void **ppChangeset,
    -**  
    -** -** Is replaced by: -** -**
    -**        int (*xOutput)(void *pOut, const void *pData, int nData),
    -**        void *pOut
    -**  
    -** -** The xOutput callback is invoked zero or more times to return data to -** the application. The first parameter passed to each call is a copy of the -** pOut pointer supplied by the application. The second parameter, pData, -** points to a buffer nData bytes in size containing the chunk of output -** data being returned. If the xOutput callback successfully processes the -** supplied data, it should return SQLITE_OK to indicate success. Otherwise, -** it should return some other SQLite error code. In this case processing -** is immediately abandoned and the streaming API function returns a copy -** of the xOutput error code to the application. -** -** The sessions module never invokes an xOutput callback with the third -** parameter set to a value less than or equal to zero. Other than this, -** no guarantees are made as to the size of the chunks of data returned. -*/ -SQLITE_API int sqlite3changeset_apply_strm( - sqlite3 *db, /* Apply change to "main" db of this handle */ - int (*xInput)(void *pIn, void *pData, int *pnData), /* Input function */ - void *pIn, /* First arg for xInput */ - int(*xFilter)( - void *pCtx, /* Copy of sixth arg to _apply() */ - const char *zTab /* Table name */ - ), - int(*xConflict)( - void *pCtx, /* Copy of sixth arg to _apply() */ - int eConflict, /* DATA, MISSING, CONFLICT, CONSTRAINT */ - sqlite3_changeset_iter *p /* Handle describing change and conflict */ - ), - void *pCtx /* First argument passed to xConflict */ -); -SQLITE_API int sqlite3changeset_apply_v2_strm( - sqlite3 *db, /* Apply change to "main" db of this handle */ - int (*xInput)(void *pIn, void *pData, int *pnData), /* Input function */ - void *pIn, /* First arg for xInput */ - int(*xFilter)( - void *pCtx, /* Copy of sixth arg to _apply() */ - const char *zTab /* Table name */ - ), - int(*xConflict)( - void *pCtx, /* Copy of sixth arg to _apply() */ - int eConflict, /* DATA, MISSING, CONFLICT, CONSTRAINT */ - sqlite3_changeset_iter *p /* Handle describing change and conflict */ - ), - void *pCtx, /* First argument passed to xConflict */ - void **ppRebase, int *pnRebase, - int flags -); -SQLITE_API int sqlite3changeset_concat_strm( - int (*xInputA)(void *pIn, void *pData, int *pnData), - void *pInA, - int (*xInputB)(void *pIn, void *pData, int *pnData), - void *pInB, - int (*xOutput)(void *pOut, const void *pData, int nData), - void *pOut -); -SQLITE_API int sqlite3changeset_invert_strm( - int (*xInput)(void *pIn, void *pData, int *pnData), - void *pIn, - int (*xOutput)(void *pOut, const void *pData, int nData), - void *pOut -); -SQLITE_API int sqlite3changeset_start_strm( - sqlite3_changeset_iter **pp, - int (*xInput)(void *pIn, void *pData, int *pnData), - void *pIn -); -SQLITE_API int sqlite3changeset_start_v2_strm( - sqlite3_changeset_iter **pp, - int (*xInput)(void *pIn, void *pData, int *pnData), - void *pIn, - int flags -); -SQLITE_API int sqlite3session_changeset_strm( - sqlite3_session *pSession, - int (*xOutput)(void *pOut, const void *pData, int nData), - void *pOut -); -SQLITE_API int sqlite3session_patchset_strm( - sqlite3_session *pSession, - int (*xOutput)(void *pOut, const void *pData, int nData), - void *pOut -); -SQLITE_API int sqlite3changegroup_add_strm(sqlite3_changegroup*, - int (*xInput)(void *pIn, void *pData, int *pnData), - void *pIn -); -SQLITE_API int sqlite3changegroup_output_strm(sqlite3_changegroup*, - int (*xOutput)(void *pOut, const void *pData, int nData), - void *pOut -); -SQLITE_API int sqlite3rebaser_rebase_strm( - sqlite3_rebaser *pRebaser, - int (*xInput)(void *pIn, void *pData, int *pnData), - void *pIn, - int (*xOutput)(void *pOut, const void *pData, int nData), - void *pOut -); - -/* -** CAPI3REF: Configure global parameters -** -** The sqlite3session_config() interface is used to make global configuration -** changes to the sessions module in order to tune it to the specific needs -** of the application. -** -** The sqlite3session_config() interface is not threadsafe. If it is invoked -** while any other thread is inside any other sessions method then the -** results are undefined. Furthermore, if it is invoked after any sessions -** related objects have been created, the results are also undefined. -** -** The first argument to the sqlite3session_config() function must be one -** of the SQLITE_SESSION_CONFIG_XXX constants defined below. The -** interpretation of the (void*) value passed as the second parameter and -** the effect of calling this function depends on the value of the first -** parameter. -** -**
    -**
    SQLITE_SESSION_CONFIG_STRMSIZE
    -** By default, the sessions module streaming interfaces attempt to input -** and output data in approximately 1 KiB chunks. This operand may be used -** to set and query the value of this configuration setting. The pointer -** passed as the second argument must point to a value of type (int). -** If this value is greater than 0, it is used as the new streaming data -** chunk size for both input and output. Before returning, the (int) value -** pointed to by pArg is set to the final value of the streaming interface -** chunk size. -**
    -** -** This function returns SQLITE_OK if successful, or an SQLite error code -** otherwise. -*/ -SQLITE_API int sqlite3session_config(int op, void *pArg); - -/* -** CAPI3REF: Values for sqlite3session_config(). -*/ -#define SQLITE_SESSION_CONFIG_STRMSIZE 1 - -/* -** Make sure we can call this stuff from C++. -*/ -#ifdef __cplusplus -} -#endif - -#endif /* !defined(__SQLITESESSION_H_) && defined(SQLITE_ENABLE_SESSION) */ - -/******** End of sqlite3session.h *********/ -/******** Begin file fts5.h *********/ -/* -** 2014 May 31 -** -** The author disclaims copyright to this source code. In place of -** a legal notice, here is a blessing: -** -** May you do good and not evil. -** May you find forgiveness for yourself and forgive others. -** May you share freely, never taking more than you give. -** -****************************************************************************** -** -** Interfaces to extend FTS5. Using the interfaces defined in this file, -** FTS5 may be extended with: -** -** * custom tokenizers, and -** * custom auxiliary functions. -*/ - - -#ifndef _FTS5_H -#define _FTS5_H - - -#ifdef __cplusplus -extern "C" { -#endif - -/************************************************************************* -** CUSTOM AUXILIARY FUNCTIONS -** -** Virtual table implementations may overload SQL functions by implementing -** the sqlite3_module.xFindFunction() method. -*/ - -typedef struct Fts5ExtensionApi Fts5ExtensionApi; -typedef struct Fts5Context Fts5Context; -typedef struct Fts5PhraseIter Fts5PhraseIter; - -typedef void (*fts5_extension_function)( - const Fts5ExtensionApi *pApi, /* API offered by current FTS version */ - Fts5Context *pFts, /* First arg to pass to pApi functions */ - sqlite3_context *pCtx, /* Context for returning result/error */ - int nVal, /* Number of values in apVal[] array */ - sqlite3_value **apVal /* Array of trailing arguments */ -); - -struct Fts5PhraseIter { - const unsigned char *a; - const unsigned char *b; -}; - -/* -** EXTENSION API FUNCTIONS -** -** xUserData(pFts): -** Return a copy of the context pointer the extension function was -** registered with. -** -** xColumnTotalSize(pFts, iCol, pnToken): -** If parameter iCol is less than zero, set output variable *pnToken -** to the total number of tokens in the FTS5 table. Or, if iCol is -** non-negative but less than the number of columns in the table, return -** the total number of tokens in column iCol, considering all rows in -** the FTS5 table. -** -** If parameter iCol is greater than or equal to the number of columns -** in the table, SQLITE_RANGE is returned. Or, if an error occurs (e.g. -** an OOM condition or IO error), an appropriate SQLite error code is -** returned. -** -** xColumnCount(pFts): -** Return the number of columns in the table. -** -** xColumnSize(pFts, iCol, pnToken): -** If parameter iCol is less than zero, set output variable *pnToken -** to the total number of tokens in the current row. Or, if iCol is -** non-negative but less than the number of columns in the table, set -** *pnToken to the number of tokens in column iCol of the current row. -** -** If parameter iCol is greater than or equal to the number of columns -** in the table, SQLITE_RANGE is returned. Or, if an error occurs (e.g. -** an OOM condition or IO error), an appropriate SQLite error code is -** returned. -** -** This function may be quite inefficient if used with an FTS5 table -** created with the "columnsize=0" option. -** -** xColumnText: -** This function attempts to retrieve the text of column iCol of the -** current document. If successful, (*pz) is set to point to a buffer -** containing the text in utf-8 encoding, (*pn) is set to the size in bytes -** (not characters) of the buffer and SQLITE_OK is returned. Otherwise, -** if an error occurs, an SQLite error code is returned and the final values -** of (*pz) and (*pn) are undefined. -** -** xPhraseCount: -** Returns the number of phrases in the current query expression. -** -** xPhraseSize: -** Returns the number of tokens in phrase iPhrase of the query. Phrases -** are numbered starting from zero. -** -** xInstCount: -** Set *pnInst to the total number of occurrences of all phrases within -** the query within the current row. Return SQLITE_OK if successful, or -** an error code (i.e. SQLITE_NOMEM) if an error occurs. -** -** This API can be quite slow if used with an FTS5 table created with the -** "detail=none" or "detail=column" option. If the FTS5 table is created -** with either "detail=none" or "detail=column" and "content=" option -** (i.e. if it is a contentless table), then this API always returns 0. -** -** xInst: -** Query for the details of phrase match iIdx within the current row. -** Phrase matches are numbered starting from zero, so the iIdx argument -** should be greater than or equal to zero and smaller than the value -** output by xInstCount(). -** -** Usually, output parameter *piPhrase is set to the phrase number, *piCol -** to the column in which it occurs and *piOff the token offset of the -** first token of the phrase. Returns SQLITE_OK if successful, or an error -** code (i.e. SQLITE_NOMEM) if an error occurs. -** -** This API can be quite slow if used with an FTS5 table created with the -** "detail=none" or "detail=column" option. -** -** xRowid: -** Returns the rowid of the current row. -** -** xTokenize: -** Tokenize text using the tokenizer belonging to the FTS5 table. -** -** xQueryPhrase(pFts5, iPhrase, pUserData, xCallback): -** This API function is used to query the FTS table for phrase iPhrase -** of the current query. Specifically, a query equivalent to: -** -** ... FROM ftstable WHERE ftstable MATCH $p ORDER BY rowid -** -** with $p set to a phrase equivalent to the phrase iPhrase of the -** current query is executed. Any column filter that applies to -** phrase iPhrase of the current query is included in $p. For each -** row visited, the callback function passed as the fourth argument -** is invoked. The context and API objects passed to the callback -** function may be used to access the properties of each matched row. -** Invoking Api.xUserData() returns a copy of the pointer passed as -** the third argument to pUserData. -** -** If the callback function returns any value other than SQLITE_OK, the -** query is abandoned and the xQueryPhrase function returns immediately. -** If the returned value is SQLITE_DONE, xQueryPhrase returns SQLITE_OK. -** Otherwise, the error code is propagated upwards. -** -** If the query runs to completion without incident, SQLITE_OK is returned. -** Or, if some error occurs before the query completes or is aborted by -** the callback, an SQLite error code is returned. -** -** -** xSetAuxdata(pFts5, pAux, xDelete) -** -** Save the pointer passed as the second argument as the extension function's -** "auxiliary data". The pointer may then be retrieved by the current or any -** future invocation of the same fts5 extension function made as part of -** the same MATCH query using the xGetAuxdata() API. -** -** Each extension function is allocated a single auxiliary data slot for -** each FTS query (MATCH expression). If the extension function is invoked -** more than once for a single FTS query, then all invocations share a -** single auxiliary data context. -** -** If there is already an auxiliary data pointer when this function is -** invoked, then it is replaced by the new pointer. If an xDelete callback -** was specified along with the original pointer, it is invoked at this -** point. -** -** The xDelete callback, if one is specified, is also invoked on the -** auxiliary data pointer after the FTS5 query has finished. -** -** If an error (e.g. an OOM condition) occurs within this function, -** the auxiliary data is set to NULL and an error code returned. If the -** xDelete parameter was not NULL, it is invoked on the auxiliary data -** pointer before returning. -** -** -** xGetAuxdata(pFts5, bClear) -** -** Returns the current auxiliary data pointer for the fts5 extension -** function. See the xSetAuxdata() method for details. -** -** If the bClear argument is non-zero, then the auxiliary data is cleared -** (set to NULL) before this function returns. In this case the xDelete, -** if any, is not invoked. -** -** -** xRowCount(pFts5, pnRow) -** -** This function is used to retrieve the total number of rows in the table. -** In other words, the same value that would be returned by: -** -** SELECT count(*) FROM ftstable; -** -** xPhraseFirst() -** This function is used, along with type Fts5PhraseIter and the xPhraseNext -** method, to iterate through all instances of a single query phrase within -** the current row. This is the same information as is accessible via the -** xInstCount/xInst APIs. While the xInstCount/xInst APIs are more convenient -** to use, this API may be faster under some circumstances. To iterate -** through instances of phrase iPhrase, use the following code: -** -** Fts5PhraseIter iter; -** int iCol, iOff; -** for(pApi->xPhraseFirst(pFts, iPhrase, &iter, &iCol, &iOff); -** iCol>=0; -** pApi->xPhraseNext(pFts, &iter, &iCol, &iOff) -** ){ -** // An instance of phrase iPhrase at offset iOff of column iCol -** } -** -** The Fts5PhraseIter structure is defined above. Applications should not -** modify this structure directly - it should only be used as shown above -** with the xPhraseFirst() and xPhraseNext() API methods (and by -** xPhraseFirstColumn() and xPhraseNextColumn() as illustrated below). -** -** This API can be quite slow if used with an FTS5 table created with the -** "detail=none" or "detail=column" option. If the FTS5 table is created -** with either "detail=none" or "detail=column" and "content=" option -** (i.e. if it is a contentless table), then this API always iterates -** through an empty set (all calls to xPhraseFirst() set iCol to -1). -** -** xPhraseNext() -** See xPhraseFirst above. -** -** xPhraseFirstColumn() -** This function and xPhraseNextColumn() are similar to the xPhraseFirst() -** and xPhraseNext() APIs described above. The difference is that instead -** of iterating through all instances of a phrase in the current row, these -** APIs are used to iterate through the set of columns in the current row -** that contain one or more instances of a specified phrase. For example: -** -** Fts5PhraseIter iter; -** int iCol; -** for(pApi->xPhraseFirstColumn(pFts, iPhrase, &iter, &iCol); -** iCol>=0; -** pApi->xPhraseNextColumn(pFts, &iter, &iCol) -** ){ -** // Column iCol contains at least one instance of phrase iPhrase -** } -** -** This API can be quite slow if used with an FTS5 table created with the -** "detail=none" option. If the FTS5 table is created with either -** "detail=none" "content=" option (i.e. if it is a contentless table), -** then this API always iterates through an empty set (all calls to -** xPhraseFirstColumn() set iCol to -1). -** -** The information accessed using this API and its companion -** xPhraseFirstColumn() may also be obtained using xPhraseFirst/xPhraseNext -** (or xInst/xInstCount). The chief advantage of this API is that it is -** significantly more efficient than those alternatives when used with -** "detail=column" tables. -** -** xPhraseNextColumn() -** See xPhraseFirstColumn above. -*/ -struct Fts5ExtensionApi { - int iVersion; /* Currently always set to 3 */ - - void *(*xUserData)(Fts5Context*); - - int (*xColumnCount)(Fts5Context*); - int (*xRowCount)(Fts5Context*, sqlite3_int64 *pnRow); - int (*xColumnTotalSize)(Fts5Context*, int iCol, sqlite3_int64 *pnToken); - - int (*xTokenize)(Fts5Context*, - const char *pText, int nText, /* Text to tokenize */ - void *pCtx, /* Context passed to xToken() */ - int (*xToken)(void*, int, const char*, int, int, int) /* Callback */ - ); - - int (*xPhraseCount)(Fts5Context*); - int (*xPhraseSize)(Fts5Context*, int iPhrase); - - int (*xInstCount)(Fts5Context*, int *pnInst); - int (*xInst)(Fts5Context*, int iIdx, int *piPhrase, int *piCol, int *piOff); - - sqlite3_int64 (*xRowid)(Fts5Context*); - int (*xColumnText)(Fts5Context*, int iCol, const char **pz, int *pn); - int (*xColumnSize)(Fts5Context*, int iCol, int *pnToken); - - int (*xQueryPhrase)(Fts5Context*, int iPhrase, void *pUserData, - int(*)(const Fts5ExtensionApi*,Fts5Context*,void*) - ); - int (*xSetAuxdata)(Fts5Context*, void *pAux, void(*xDelete)(void*)); - void *(*xGetAuxdata)(Fts5Context*, int bClear); - - int (*xPhraseFirst)(Fts5Context*, int iPhrase, Fts5PhraseIter*, int*, int*); - void (*xPhraseNext)(Fts5Context*, Fts5PhraseIter*, int *piCol, int *piOff); - - int (*xPhraseFirstColumn)(Fts5Context*, int iPhrase, Fts5PhraseIter*, int*); - void (*xPhraseNextColumn)(Fts5Context*, Fts5PhraseIter*, int *piCol); -}; - -/* -** CUSTOM AUXILIARY FUNCTIONS -*************************************************************************/ - -/************************************************************************* -** CUSTOM TOKENIZERS -** -** Applications may also register custom tokenizer types. A tokenizer -** is registered by providing fts5 with a populated instance of the -** following structure. All structure methods must be defined, setting -** any member of the fts5_tokenizer struct to NULL leads to undefined -** behaviour. The structure methods are expected to function as follows: -** -** xCreate: -** This function is used to allocate and initialize a tokenizer instance. -** A tokenizer instance is required to actually tokenize text. -** -** The first argument passed to this function is a copy of the (void*) -** pointer provided by the application when the fts5_tokenizer object -** was registered with FTS5 (the third argument to xCreateTokenizer()). -** The second and third arguments are an array of nul-terminated strings -** containing the tokenizer arguments, if any, specified following the -** tokenizer name as part of the CREATE VIRTUAL TABLE statement used -** to create the FTS5 table. -** -** The final argument is an output variable. If successful, (*ppOut) -** should be set to point to the new tokenizer handle and SQLITE_OK -** returned. If an error occurs, some value other than SQLITE_OK should -** be returned. In this case, fts5 assumes that the final value of *ppOut -** is undefined. -** -** xDelete: -** This function is invoked to delete a tokenizer handle previously -** allocated using xCreate(). Fts5 guarantees that this function will -** be invoked exactly once for each successful call to xCreate(). -** -** xTokenize: -** This function is expected to tokenize the nText byte string indicated -** by argument pText. pText may or may not be nul-terminated. The first -** argument passed to this function is a pointer to an Fts5Tokenizer object -** returned by an earlier call to xCreate(). -** -** The second argument indicates the reason that FTS5 is requesting -** tokenization of the supplied text. This is always one of the following -** four values: -** -**
    • FTS5_TOKENIZE_DOCUMENT - A document is being inserted into -** or removed from the FTS table. The tokenizer is being invoked to -** determine the set of tokens to add to (or delete from) the -** FTS index. -** -**
    • FTS5_TOKENIZE_QUERY - A MATCH query is being executed -** against the FTS index. The tokenizer is being called to tokenize -** a bareword or quoted string specified as part of the query. -** -**
    • (FTS5_TOKENIZE_QUERY | FTS5_TOKENIZE_PREFIX) - Same as -** FTS5_TOKENIZE_QUERY, except that the bareword or quoted string is -** followed by a "*" character, indicating that the last token -** returned by the tokenizer will be treated as a token prefix. -** -**
    • FTS5_TOKENIZE_AUX - The tokenizer is being invoked to -** satisfy an fts5_api.xTokenize() request made by an auxiliary -** function. Or an fts5_api.xColumnSize() request made by the same -** on a columnsize=0 database. -**
    -** -** For each token in the input string, the supplied callback xToken() must -** be invoked. The first argument to it should be a copy of the pointer -** passed as the second argument to xTokenize(). The third and fourth -** arguments are a pointer to a buffer containing the token text, and the -** size of the token in bytes. The 4th and 5th arguments are the byte offsets -** of the first byte of and first byte immediately following the text from -** which the token is derived within the input. -** -** The second argument passed to the xToken() callback ("tflags") should -** normally be set to 0. The exception is if the tokenizer supports -** synonyms. In this case see the discussion below for details. -** -** FTS5 assumes the xToken() callback is invoked for each token in the -** order that they occur within the input text. -** -** If an xToken() callback returns any value other than SQLITE_OK, then -** the tokenization should be abandoned and the xTokenize() method should -** immediately return a copy of the xToken() return value. Or, if the -** input buffer is exhausted, xTokenize() should return SQLITE_OK. Finally, -** if an error occurs with the xTokenize() implementation itself, it -** may abandon the tokenization and return any error code other than -** SQLITE_OK or SQLITE_DONE. -** -** SYNONYM SUPPORT -** -** Custom tokenizers may also support synonyms. Consider a case in which a -** user wishes to query for a phrase such as "first place". Using the -** built-in tokenizers, the FTS5 query 'first + place' will match instances -** of "first place" within the document set, but not alternative forms -** such as "1st place". In some applications, it would be better to match -** all instances of "first place" or "1st place" regardless of which form -** the user specified in the MATCH query text. -** -** There are several ways to approach this in FTS5: -** -**
    1. By mapping all synonyms to a single token. In this case, using -** the above example, this means that the tokenizer returns the -** same token for inputs "first" and "1st". Say that token is in -** fact "first", so that when the user inserts the document "I won -** 1st place" entries are added to the index for tokens "i", "won", -** "first" and "place". If the user then queries for '1st + place', -** the tokenizer substitutes "first" for "1st" and the query works -** as expected. -** -**
    2. By querying the index for all synonyms of each query term -** separately. In this case, when tokenizing query text, the -** tokenizer may provide multiple synonyms for a single term -** within the document. FTS5 then queries the index for each -** synonym individually. For example, faced with the query: -** -** -** ... MATCH 'first place' -** -** the tokenizer offers both "1st" and "first" as synonyms for the -** first token in the MATCH query and FTS5 effectively runs a query -** similar to: -** -** -** ... MATCH '(first OR 1st) place' -** -** except that, for the purposes of auxiliary functions, the query -** still appears to contain just two phrases - "(first OR 1st)" -** being treated as a single phrase. -** -**
    3. By adding multiple synonyms for a single term to the FTS index. -** Using this method, when tokenizing document text, the tokenizer -** provides multiple synonyms for each token. So that when a -** document such as "I won first place" is tokenized, entries are -** added to the FTS index for "i", "won", "first", "1st" and -** "place". -** -** This way, even if the tokenizer does not provide synonyms -** when tokenizing query text (it should not - to do so would be -** inefficient), it doesn't matter if the user queries for -** 'first + place' or '1st + place', as there are entries in the -** FTS index corresponding to both forms of the first token. -**
    -** -** Whether it is parsing document or query text, any call to xToken that -** specifies a tflags argument with the FTS5_TOKEN_COLOCATED bit -** is considered to supply a synonym for the previous token. For example, -** when parsing the document "I won first place", a tokenizer that supports -** synonyms would call xToken() 5 times, as follows: -** -** -** xToken(pCtx, 0, "i", 1, 0, 1); -** xToken(pCtx, 0, "won", 3, 2, 5); -** xToken(pCtx, 0, "first", 5, 6, 11); -** xToken(pCtx, FTS5_TOKEN_COLOCATED, "1st", 3, 6, 11); -** xToken(pCtx, 0, "place", 5, 12, 17); -** -** -** It is an error to specify the FTS5_TOKEN_COLOCATED flag the first time -** xToken() is called. Multiple synonyms may be specified for a single token -** by making multiple calls to xToken(FTS5_TOKEN_COLOCATED) in sequence. -** There is no limit to the number of synonyms that may be provided for a -** single token. -** -** In many cases, method (1) above is the best approach. It does not add -** extra data to the FTS index or require FTS5 to query for multiple terms, -** so it is efficient in terms of disk space and query speed. However, it -** does not support prefix queries very well. If, as suggested above, the -** token "first" is substituted for "1st" by the tokenizer, then the query: -** -** -** ... MATCH '1s*' -** -** will not match documents that contain the token "1st" (as the tokenizer -** will probably not map "1s" to any prefix of "first"). -** -** For full prefix support, method (3) may be preferred. In this case, -** because the index contains entries for both "first" and "1st", prefix -** queries such as 'fi*' or '1s*' will match correctly. However, because -** extra entries are added to the FTS index, this method uses more space -** within the database. -** -** Method (2) offers a midpoint between (1) and (3). Using this method, -** a query such as '1s*' will match documents that contain the literal -** token "1st", but not "first" (assuming the tokenizer is not able to -** provide synonyms for prefixes). However, a non-prefix query like '1st' -** will match against "1st" and "first". This method does not require -** extra disk space, as no extra entries are added to the FTS index. -** On the other hand, it may require more CPU cycles to run MATCH queries, -** as separate queries of the FTS index are required for each synonym. -** -** When using methods (2) or (3), it is important that the tokenizer only -** provide synonyms when tokenizing document text (method (2)) or query -** text (method (3)), not both. Doing so will not cause any errors, but is -** inefficient. -*/ -typedef struct Fts5Tokenizer Fts5Tokenizer; -typedef struct fts5_tokenizer fts5_tokenizer; -struct fts5_tokenizer { - int (*xCreate)(void*, const char **azArg, int nArg, Fts5Tokenizer **ppOut); - void (*xDelete)(Fts5Tokenizer*); - int (*xTokenize)(Fts5Tokenizer*, - void *pCtx, - int flags, /* Mask of FTS5_TOKENIZE_* flags */ - const char *pText, int nText, - int (*xToken)( - void *pCtx, /* Copy of 2nd argument to xTokenize() */ - int tflags, /* Mask of FTS5_TOKEN_* flags */ - const char *pToken, /* Pointer to buffer containing token */ - int nToken, /* Size of token in bytes */ - int iStart, /* Byte offset of token within input text */ - int iEnd /* Byte offset of end of token within input text */ - ) - ); -}; - -/* Flags that may be passed as the third argument to xTokenize() */ -#define FTS5_TOKENIZE_QUERY 0x0001 -#define FTS5_TOKENIZE_PREFIX 0x0002 -#define FTS5_TOKENIZE_DOCUMENT 0x0004 -#define FTS5_TOKENIZE_AUX 0x0008 - -/* Flags that may be passed by the tokenizer implementation back to FTS5 -** as the third argument to the supplied xToken callback. */ -#define FTS5_TOKEN_COLOCATED 0x0001 /* Same position as prev. token */ - -/* -** END OF CUSTOM TOKENIZERS -*************************************************************************/ - -/************************************************************************* -** FTS5 EXTENSION REGISTRATION API -*/ -typedef struct fts5_api fts5_api; -struct fts5_api { - int iVersion; /* Currently always set to 2 */ - - /* Create a new tokenizer */ - int (*xCreateTokenizer)( - fts5_api *pApi, - const char *zName, - void *pContext, - fts5_tokenizer *pTokenizer, - void (*xDestroy)(void*) - ); - - /* Find an existing tokenizer */ - int (*xFindTokenizer)( - fts5_api *pApi, - const char *zName, - void **ppContext, - fts5_tokenizer *pTokenizer - ); - - /* Create a new auxiliary function */ - int (*xCreateFunction)( - fts5_api *pApi, - const char *zName, - void *pContext, - fts5_extension_function xFunction, - void (*xDestroy)(void*) - ); -}; - -/* -** END OF REGISTRATION API -*************************************************************************/ - -#ifdef __cplusplus -} /* end of the 'extern "C"' block */ -#endif - -#endif /* _FTS5_H */ - -/******** End of fts5.h *********/
  • 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