diff options
author | Aaron Plattner <aplattner@nvidia.com> | 2008-06-17 23:15:59 -0700 |
---|---|---|
committer | Aaron Plattner <aplattner@nvidia.com> | 2008-06-17 23:15:59 -0700 |
commit | 96fec7cf078d5becbd17f0f99a61b5c2f560c797 (patch) | |
tree | 354c53186427e504f8c91138a7f1d752d04d6aaf | |
parent | b09f48e801893b864af2b866829bc9ee35555418 (diff) |
177.13177.13
90 files changed, 11466 insertions, 6144 deletions
diff --git a/src/glxinfo.c b/src/glxinfo.c index a555b1e..64199eb 100644 --- a/src/glxinfo.c +++ b/src/glxinfo.c @@ -183,11 +183,11 @@ print_fbconfig_attribs(GLXFBConfigAttr *fbca) } printf("-fc- -vi- vt buf lv rgb d s colorbuffer ax dp st " - "accumbuffer -ms- cav -----pbuffer----- ---transparent----\n"); + "accumbuffer ---ms---- cav -----pbuffer----- ---transparent----\n"); printf(" id id siz l ci b t r g b a bf th en " - " r g b a ns b eat widt hght max-pxs typ r g b a i\n"); - printf("----------------------------------------------" - "------------------------------------------------------------\n"); + " r g b a mvs mcs b eat widt hght max-pxs typ r g b a i\n"); + printf("-------------------------------------------------" + "--------------------------------------------------------------\n"); i = 0; while ( fbca[i].fbconfig_id != 0 ) { @@ -222,12 +222,25 @@ print_fbconfig_attribs(GLXFBConfigAttr *fbca) fbca[i].accum_alpha_size ); if ( fbca[i].multi_sample_valid == 1 ) { - printf("%2d %1d ", - fbca[i].multi_samples, + printf("%3d ", + fbca[i].multi_samples + ); + + if ( fbca[i].multi_sample_coverage_valid == 1 ) { + printf("%3d ", + fbca[i].multi_samples_color + ); + } else { + printf("%3d ", + fbca[i].multi_samples + ); + } + printf("%1d ", fbca[i].multi_sample_buffers ); + } else { - printf(" . . "); + printf(" . . . "); } printf("%3.3s %4x %4x %7x %3.3s %2d %2d %2d %2d %2d\n", caveat_abbrev(fbca[i].config_caveat), diff --git a/src/gtk+-2.x/Makefile.inc b/src/gtk+-2.x/Makefile.inc index 7802fac..b2a3176 100644 --- a/src/gtk+-2.x/Makefile.inc +++ b/src/gtk+-2.x/Makefile.inc @@ -54,11 +54,11 @@ SRC += \ ctkclocks.c \ ctkutils.c \ ctkedid.c \ - ctkimage.c \ ctkserver.c \ ctkdisplaylayout.c \ ctkdisplayconfig.c \ ctkscreen.c \ + ctkslimm.c \ ctkgpu.c \ ctkbanner.c \ ctkvcs.c \ @@ -99,11 +99,11 @@ EXTRA_DIST += \ ctkclocks.h \ ctkutils.h \ ctkedid.h \ - ctkimage.h \ ctkserver.h \ ctkdisplaylayout.h \ ctkdisplayconfig.h \ ctkscreen.h \ + ctkslimm.h \ ctkgpu.h \ ctkbanner.h \ ctkvcs.h \ diff --git a/src/gtk+-2.x/ctkbanner.c b/src/gtk+-2.x/ctkbanner.c index d8361f7..8e59031 100644 --- a/src/gtk+-2.x/ctkbanner.c +++ b/src/gtk+-2.x/ctkbanner.c @@ -25,13 +25,11 @@ */ #include <gtk/gtk.h> +#include <gdk-pixbuf/gdk-pixdata.h> #include <stdio.h> -#include "image.h" #include "ctkbanner.h" -#include <gdk-pixbuf/gdk-pixdata.h> - /* pixdata headers */ #include "background_pixdata.h" @@ -57,6 +55,7 @@ #include "rotation_pixdata.h" #include "sdi_pixdata.h" #include "sdi_shared_sync_bnc_pixdata.h" +#include "slimm_pixdata.h" #include "solaris_pixdata.h" #include "thermal_pixdata.h" #include "tv_pixdata.h" @@ -66,7 +65,6 @@ - static void ctk_banner_class_init (CtkBannerClass *); @@ -372,6 +370,7 @@ static gboolean select_artwork(BannerArtworkType artwork, { BANNER_ARTWORK_ROTATION, FALSE, 16, &rotation_pixdata }, { BANNER_ARTWORK_SDI, FALSE, 16, &sdi_pixdata }, { BANNER_ARTWORK_SDI_SHARED_SYNC_BNC, FALSE, 16, &sdi_shared_sync_bnc_pixdata }, + { BANNER_ARTWORK_SLIMM, FALSE, 16, &slimm_pixdata }, { BANNER_ARTWORK_SOLARIS, TRUE, 16, &solaris_pixdata }, { BANNER_ARTWORK_THERMAL, FALSE, 16, &thermal_pixdata }, { BANNER_ARTWORK_TV, FALSE, 16, &tv_pixdata }, @@ -490,3 +489,42 @@ void ctk_banner_set_composite_callback (CtkBanner *ctk_banner, ctk_banner->callback_func = func; ctk_banner->callback_data = data; } + + + +/* + * CTK composited banner image widget creation + * + */ +GtkWidget* ctk_banner_image_new_with_callback(BannerArtworkType artwork, + ctk_banner_composite_callback callback, + void *data) +{ + GtkWidget *image; + GtkWidget *hbox; + GtkWidget *frame; + + + image = ctk_banner_new(artwork); + + if (!image) return NULL; + + ctk_banner_set_composite_callback(CTK_BANNER(image), callback, data); + + hbox = gtk_hbox_new(FALSE, 0); + frame = gtk_frame_new(NULL); + + gtk_box_pack_start(GTK_BOX(hbox), frame, TRUE, TRUE, 0); + gtk_frame_set_shadow_type(GTK_FRAME(frame), GTK_SHADOW_IN); + gtk_container_add(GTK_CONTAINER(frame), image); + + + return hbox; +} + + + +GtkWidget* ctk_banner_image_new(BannerArtworkType artwork) +{ + return ctk_banner_image_new_with_callback(artwork, NULL, NULL); +} diff --git a/src/gtk+-2.x/ctkbanner.h b/src/gtk+-2.x/ctkbanner.h index b2dc9f7..a692ce1 100644 --- a/src/gtk+-2.x/ctkbanner.h +++ b/src/gtk+-2.x/ctkbanner.h @@ -25,8 +25,6 @@ #ifndef __CTK_BANNER_H__ #define __CTK_BANNER_H__ -#include "image.h" - G_BEGIN_DECLS #define CTK_TYPE_BANNER (ctk_banner_get_type()) @@ -46,6 +44,39 @@ G_BEGIN_DECLS #define CTK_BANNER_GET_CLASS(obj) \ (G_TYPE_INSTANCE_GET_CLASS ((obj), CTK_TYPE_BANNER, CtkBannerClass)) +/* + * enum for the banner artwork + */ + +typedef enum { + BANNER_ARTWORK_ANTIALIAS, + BANNER_ARTWORK_BSD, + BANNER_ARTWORK_CLOCK, + BANNER_ARTWORK_COLOR, + BANNER_ARTWORK_CONFIG, + BANNER_ARTWORK_CRT, + BANNER_ARTWORK_CURSOR_SHADOW, + BANNER_ARTWORK_DFP, + BANNER_ARTWORK_DISPLAY_CONFIG, + BANNER_ARTWORK_FRAMELOCK, + BANNER_ARTWORK_GLX, + BANNER_ARTWORK_GPU, + BANNER_ARTWORK_HELP, + BANNER_ARTWORK_OPENGL, + BANNER_ARTWORK_PENGUIN, + BANNER_ARTWORK_ROTATION, + BANNER_ARTWORK_SDI, + BANNER_ARTWORK_SDI_SHARED_SYNC_BNC, + BANNER_ARTWORK_SLIMM, + BANNER_ARTWORK_SOLARIS, + BANNER_ARTWORK_THERMAL, + BANNER_ARTWORK_TV, + BANNER_ARTWORK_VCS, + BANNER_ARTWORK_X, + BANNER_ARTWORK_XVIDEO, + BANNER_ARTWORK_INVALID +} BannerArtworkType; + typedef struct _CtkBanner CtkBanner; typedef struct _CtkBannerClass CtkBannerClass; @@ -61,8 +92,6 @@ struct _CtkBanner { GtkDrawingArea parent; - const nv_image_t *img; - guint8 *image_data; PBuf back; @@ -96,6 +125,13 @@ void ctk_banner_set_composite_callback (CtkBanner *, ctk_banner_composite_callback, void *); +GtkWidget* ctk_banner_image_new (BannerArtworkType artwork); + +GtkWidget* ctk_banner_image_new_with_callback (BannerArtworkType artwork, + ctk_banner_composite_callback, + void *); + + G_END_DECLS #endif /* __CTK_BANNER_H__ */ diff --git a/src/gtk+-2.x/ctkclocks.c b/src/gtk+-2.x/ctkclocks.c index 127b6bd..fc6dd74 100644 --- a/src/gtk+-2.x/ctkclocks.c +++ b/src/gtk+-2.x/ctkclocks.c @@ -27,7 +27,7 @@ #include <gtk/gtk.h> #include <gdk/gdkx.h> -#include "ctkimage.h" +#include "ctkbanner.h" #include "ctkclocks.h" diff --git a/src/gtk+-2.x/ctkcolorcorrection.c b/src/gtk+-2.x/ctkcolorcorrection.c index 06adffe..44722b0 100644 --- a/src/gtk+-2.x/ctkcolorcorrection.c +++ b/src/gtk+-2.x/ctkcolorcorrection.c @@ -30,7 +30,7 @@ #include "red_xpm.h" #include "green_xpm.h" #include "blue_xpm.h" -#include "ctkimage.h" +#include "ctkbanner.h" #include "ctkcurve.h" #include "ctkscale.h" diff --git a/src/gtk+-2.x/ctkconfig.c b/src/gtk+-2.x/ctkconfig.c index de7806e..5cf3c45 100644 --- a/src/gtk+-2.x/ctkconfig.c +++ b/src/gtk+-2.x/ctkconfig.c @@ -30,8 +30,9 @@ #include "ctkconfig.h" #include "ctkhelp.h" - -#include "ctkimage.h" +#include "ctkwindow.h" +#include "ctkutils.h" +#include "ctkbanner.h" #include <stdarg.h> #include <stdlib.h> @@ -70,6 +71,12 @@ static const char *__show_quit_dialog_help = "When this option is enabled, nvidia-settings will ask if you " "really want to quit when the quit button is pressed. "; +static const char *__save_current_config_help = +"When nvidia-settings exits, it saves the current X server " +"configuration to a configuration file (\"~/.nvidia-settings-rc\", " +"by default). Use this button to save the current X server " +"configuration immediately, optionally to a different file."; + static void ctk_config_class_init(CtkConfigClass *ctk_config_class); static void display_status_bar_toggled(GtkWidget *, gpointer); @@ -77,6 +84,7 @@ static void tooltips_toggled(GtkWidget *, gpointer); static void slider_text_entries_toggled(GtkWidget *, gpointer); static void display_name_toggled(GtkWidget *widget, gpointer user_data); static void show_quit_dialog_toggled(GtkWidget *widget, gpointer user_data); +static void save_rc_clicked(GtkWidget *widget, gpointer user_data); static GtkWidget *create_timer_list(CtkConfig *); @@ -117,7 +125,7 @@ static void ctk_config_class_init(CtkConfigClass *ctk_config_class) G_TYPE_NONE, 0); } -GtkWidget* ctk_config_new(ConfigProperties *conf) +GtkWidget* ctk_config_new(ConfigProperties *conf, CtrlHandles *pCtrlHandles) { GObject *object; CtkConfig *ctk_config; @@ -127,6 +135,7 @@ GtkWidget* ctk_config_new(ConfigProperties *conf) GtkWidget *label; GtkWidget *hseparator; GtkWidget *check_button; + GtkWidget *alignment; gboolean b; object = g_object_new(CTK_TYPE_CONFIG, NULL); @@ -134,6 +143,7 @@ GtkWidget* ctk_config_new(ConfigProperties *conf) ctk_config = CTK_CONFIG(object); ctk_config->conf = conf; + ctk_config->pCtrlHandles = pCtrlHandles; gtk_box_set_spacing(GTK_BOX(ctk_config), 10); @@ -282,12 +292,70 @@ GtkWidget* ctk_config_new(ConfigProperties *conf) gtk_box_pack_start(GTK_BOX(ctk_config), ctk_config->timer_list_box, TRUE, TRUE, 0); - + + + /* "Save Current Configuration" button */ + + label = gtk_label_new("Save Current Configuration"); + hbox = gtk_hbox_new(FALSE, 0); + ctk_config->button_save_rc = gtk_button_new(); + alignment = gtk_alignment_new(1, 1, 0, 0); + + gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 15); + gtk_container_add(GTK_CONTAINER(ctk_config->button_save_rc), hbox); + gtk_container_add(GTK_CONTAINER(alignment), ctk_config->button_save_rc); + gtk_box_pack_start(GTK_BOX(ctk_config), alignment, TRUE, TRUE, 0); + + /* Create the file selector for rc file */ + ctk_config->rc_file_selector = + gtk_file_selection_new ("Please select a file to save to"); + + g_signal_connect(G_OBJECT(ctk_config->button_save_rc), "clicked", + G_CALLBACK(save_rc_clicked), + (gpointer) ctk_config); + + gtk_file_selection_set_filename + (GTK_FILE_SELECTION(ctk_config->rc_file_selector), DEFAULT_RC_FILE); + + ctk_config_set_tooltip(ctk_config, ctk_config->button_save_rc, + __save_current_config_help); + gtk_widget_show_all(GTK_WIDGET(ctk_config)); return GTK_WIDGET(ctk_config); } +/* + * save_rc_clicked() - called when "Save Current Configuration" button + * is clicked. + */ + +static void save_rc_clicked(GtkWidget *widget, gpointer user_data) +{ + gint result; + gchar *rc_filename = NULL; + CtkConfig *ctk_config = CTK_CONFIG(user_data); + CtkWindow *ctk_window = + CTK_WINDOW(ctk_get_parent_window(GTK_WIDGET(ctk_config))); + + result = gtk_dialog_run(GTK_DIALOG(ctk_config->rc_file_selector)); + gtk_widget_hide(ctk_config->rc_file_selector); + + switch (result) { + case GTK_RESPONSE_ACCEPT: + case GTK_RESPONSE_OK: + rc_filename = (gchar *)gtk_file_selection_get_filename + (GTK_FILE_SELECTION(ctk_config->rc_file_selector)); + break; + default: + return; + } + + /* write the configuration file */ + add_special_config_file_attributes(ctk_window); + nv_write_config_file(rc_filename, ctk_config->pCtrlHandles, + ctk_window->attribute_list, ctk_config->conf); +} void ctk_config_statusbar_message(CtkConfig *ctk_config, const char *fmt, ...) diff --git a/src/gtk+-2.x/ctkconfig.h b/src/gtk+-2.x/ctkconfig.h index c978600..a96ebf0 100644 --- a/src/gtk+-2.x/ctkconfig.h +++ b/src/gtk+-2.x/ctkconfig.h @@ -82,7 +82,10 @@ struct _CtkConfig ConfigProperties *conf; GtkWidget *timer_list; GtkWidget *timer_list_box; + GtkWidget *button_save_rc; + GtkWidget *rc_file_selector; gboolean timer_list_visible; + CtrlHandles *pCtrlHandles; }; struct _CtkConfigClass @@ -91,7 +94,7 @@ struct _CtkConfigClass }; GType ctk_config_get_type (void) G_GNUC_CONST; -GtkWidget* ctk_config_new (ConfigProperties *); +GtkWidget* ctk_config_new (ConfigProperties *, CtrlHandles*); void ctk_config_statusbar_message (CtkConfig *, const char *, ...); GtkWidget* ctk_config_get_statusbar (CtkConfig *); void ctk_config_set_tooltip (CtkConfig *, GtkWidget *, diff --git a/src/gtk+-2.x/ctkcursorshadow.c b/src/gtk+-2.x/ctkcursorshadow.c index c2c8fe6..cac5acf 100644 --- a/src/gtk+-2.x/ctkcursorshadow.c +++ b/src/gtk+-2.x/ctkcursorshadow.c @@ -42,7 +42,7 @@ #include "NvCtrlAttributes.h" -#include "ctkimage.h" +#include "ctkbanner.h" #include "ctkcursorshadow.h" #include "ctkscale.h" diff --git a/src/gtk+-2.x/ctkdisplayconfig-utils.c b/src/gtk+-2.x/ctkdisplayconfig-utils.c index 6b5f823..f7d9289 100644 --- a/src/gtk+-2.x/ctkdisplayconfig-utils.c +++ b/src/gtk+-2.x/ctkdisplayconfig-utils.c @@ -751,6 +751,93 @@ int display_find_closest_mode_matching_modeline(nvDisplayPtr display, +/** modeline_free() ************************************* + * + * Helper function that frees an nvModeLinePtr and + * associated memory. + * + **/ +void modeline_free(nvModeLinePtr m) +{ + if (m->xconfig_name) { + free(m->xconfig_name); + } + + if (m->data.identifier) { + free(m->data.identifier); + } + + if (m->data.comment) { + free(m->data.comment); + } + + if (m->data.clock) { + free(m->data.clock); + } + + free(m); +} + + + +/** modelines_match() ************************************* + * + * Helper function that returns True or False based on whether + * the modeline arguments match each other. + * + **/ +Bool modelines_match(nvModeLinePtr modeline1, + nvModeLinePtr modeline2) +{ + if (!modeline1 || !modeline2) { + return FALSE; + } + + if (!g_ascii_strcasecmp(modeline1->data.clock, modeline2->data.clock) && + modeline1->data.hdisplay == modeline2->data.hdisplay && + modeline1->data.hsyncstart == modeline2->data.hsyncstart && + modeline1->data.hsyncend == modeline2->data.hsyncend && + modeline1->data.htotal == modeline2->data.htotal && + modeline1->data.vdisplay == modeline2->data.vdisplay && + modeline1->data.vsyncstart == modeline2->data.vsyncstart && + modeline1->data.vsyncend == modeline2->data.vsyncend && + modeline1->data.vtotal == modeline2->data.vtotal && + modeline1->data.vscan == modeline2->data.vscan && + modeline1->data.flags == modeline2->data.flags && + modeline1->data.hskew == modeline2->data.hskew && + !g_ascii_strcasecmp(modeline1->data.identifier, + modeline2->data.identifier)) { + return TRUE; + } else { + return FALSE; + } +} /* modelines_match() */ + + + +/** display_has_modeline() ******************************************* + * + * Helper function that returns TRUE or FALSE based on whether + * the display passed as argument supports the given modeline. + * + **/ +Bool display_has_modeline(nvDisplayPtr display, + nvModeLinePtr modeline) +{ + nvModeLinePtr m; + + for (m = display->modelines; m; m = m->next) { + if (modelines_match(m, modeline)) { + return TRUE; + } + } + + return FALSE; + +} /* display_has_modeline() */ + + + /** display_remove_modelines() *************************************** * * Clears the display device's modeline list. @@ -764,11 +851,7 @@ static void display_remove_modelines(nvDisplayPtr display) while (display->modelines) { modeline = display->modelines; display->modelines = display->modelines->next; - free(modeline->xconfig_name); - free(modeline->data.identifier); - free(modeline->data.comment); - free(modeline->data.clock); - free(modeline); + modeline_free(modeline); } display->num_modelines = 0; } diff --git a/src/gtk+-2.x/ctkdisplayconfig-utils.h b/src/gtk+-2.x/ctkdisplayconfig-utils.h index 1e6f87c..8ede91c 100644 --- a/src/gtk+-2.x/ctkdisplayconfig-utils.h +++ b/src/gtk+-2.x/ctkdisplayconfig-utils.h @@ -53,12 +53,19 @@ void apply_screen_info_token(char *token, char *value, void *data); nvModePtr mode_parse(nvDisplayPtr display, const char *mode_str); +/* ModeLine functions */ + +Bool modelines_match(nvModeLinePtr modeline1, nvModeLinePtr modeline2); +void modeline_free(nvModeLinePtr m); + + /* Display functions */ gchar * display_get_type_str(unsigned int device_mask, int be_generic); int display_find_closest_mode_matching_modeline(nvDisplayPtr display, nvModeLinePtr modeline); +Bool display_has_modeline(nvDisplayPtr display, nvModeLinePtr modeline); Bool display_add_modelines_from_server(nvDisplayPtr display, gchar **err_str); void display_remove_modes(nvDisplayPtr display); diff --git a/src/gtk+-2.x/ctkdisplayconfig.c b/src/gtk+-2.x/ctkdisplayconfig.c index 2061434..8381b86 100644 --- a/src/gtk+-2.x/ctkdisplayconfig.c +++ b/src/gtk+-2.x/ctkdisplayconfig.c @@ -45,7 +45,7 @@ #include "ctkutils.h" -#include "ctkimage.h" +#include "ctkbanner.h" #include "ctkevent.h" #include "ctkhelp.h" #include "ctkdisplayconfig.h" @@ -952,6 +952,25 @@ GtkWidget* ctk_display_config_new(NvCtrlAttributeHandle *handle, gchar *err_str = NULL; gchar *layout_str = NULL; + gchar *sli_mode = NULL; + ReturnStatus ret; + + /* + * Get SLI Mode. If SLI Mode is "Mosaic", do not + * load this page + * + */ + ret = NvCtrlGetStringAttribute(handle, + NV_CTRL_STRING_SLI_MODE, + &sli_mode); + if (ret == NvCtrlSuccess && !g_ascii_strcasecmp(sli_mode, "Mosaic")) { + XFree(sli_mode); + return NULL; + } + + if (sli_mode) { + XFree(sli_mode); + } /* * Create the ctk object diff --git a/src/gtk+-2.x/ctkdisplaydevice-crt.c b/src/gtk+-2.x/ctkdisplaydevice-crt.c index 26dbd4b..4f391c7 100644 --- a/src/gtk+-2.x/ctkdisplaydevice-crt.c +++ b/src/gtk+-2.x/ctkdisplaydevice-crt.c @@ -25,7 +25,7 @@ #include <gtk/gtk.h> #include <NvCtrlAttributes.h> -#include "ctkimage.h" +#include "ctkbanner.h" #include "ctkdisplaydevice-crt.h" diff --git a/src/gtk+-2.x/ctkdisplaydevice-dfp.c b/src/gtk+-2.x/ctkdisplaydevice-dfp.c index 1ee106c..13da164 100644 --- a/src/gtk+-2.x/ctkdisplaydevice-dfp.c +++ b/src/gtk+-2.x/ctkdisplaydevice-dfp.c @@ -25,7 +25,7 @@ #include <gtk/gtk.h> #include <NvCtrlAttributes.h> -#include "ctkimage.h" +#include "ctkbanner.h" #include "ctkdisplaydevice-dfp.h" @@ -279,7 +279,7 @@ GtkWidget* ctk_display_device_dfp_new(NvCtrlAttributeHandle *handle, NULL }, { - gtk_label_new("DVI connection link:"), + gtk_label_new("Connection link:"), ctk_display_device_dfp->txt_link, NULL }, @@ -828,7 +828,7 @@ GtkTextBuffer *ctk_display_device_dfp_create_help(GtkTextTagTable *table, ctk_help_term(b, &i, "Signal"); ctk_help_para(b, &i, "Report whether the flat panel is driven by " - "an LVDS or TMDS signal"); + "an LVDS, TMDS, or DisplayPort signal"); ctk_help_term(b, &i, "Native Resolution"); ctk_help_para(b, &i, __native_res_help); @@ -891,9 +891,10 @@ GtkTextBuffer *ctk_display_device_dfp_create_help(GtkTextTagTable *table, static void dfp_info_setup(CtkDisplayDeviceDfp *ctk_display_device_dfp) { ReturnStatus ret; - gint val, gpu_scaling, dfp_scaling; + gint val, signal_type, gpu_scaling, dfp_scaling; char *chip_location, *link, *signal; char *scaling; + char tmp[32]; chip_location = link = signal = "Unknown"; scaling = "Unknown"; @@ -905,39 +906,92 @@ static void dfp_info_setup(CtkDisplayDeviceDfp *ctk_display_device_dfp) ctk_display_device_dfp->display_device_mask, NV_CTRL_FLATPANEL_CHIP_LOCATION, &val); if (ret == NvCtrlSuccess) { - if (val == NV_CTRL_FLATPANEL_CHIP_LOCATION_INTERNAL) + switch (val) { + case NV_CTRL_FLATPANEL_CHIP_LOCATION_INTERNAL: chip_location = "Internal"; - if (val == NV_CTRL_FLATPANEL_CHIP_LOCATION_EXTERNAL) + break; + case NV_CTRL_FLATPANEL_CHIP_LOCATION_EXTERNAL: chip_location = "External"; + break; + } } gtk_label_set_text (GTK_LABEL(ctk_display_device_dfp->txt_chip_location), chip_location); - /* Link */ + /* Signal */ ret = NvCtrlGetDisplayAttribute(ctk_display_device_dfp->handle, ctk_display_device_dfp->display_device_mask, - NV_CTRL_FLATPANEL_LINK, &val); + NV_CTRL_FLATPANEL_SIGNAL, &val); if (ret == NvCtrlSuccess) { - if (val == NV_CTRL_FLATPANEL_LINK_SINGLE) link = "Single"; - if (val == NV_CTRL_FLATPANEL_LINK_DUAL) link = "Dual"; + switch (val) { + case NV_CTRL_FLATPANEL_SIGNAL_LVDS: + signal = "LVDS"; + break; + case NV_CTRL_FLATPANEL_SIGNAL_TMDS: + signal = "TMDS"; + break; + case NV_CTRL_FLATPANEL_SIGNAL_DISPLAYPORT: + signal = "DisplayPort"; + break; + } } gtk_label_set_text - (GTK_LABEL(ctk_display_device_dfp->txt_link), link); + (GTK_LABEL(ctk_display_device_dfp->txt_signal), signal); + signal_type = val; - /* Signal */ + /* Link */ ret = NvCtrlGetDisplayAttribute(ctk_display_device_dfp->handle, ctk_display_device_dfp->display_device_mask, - NV_CTRL_FLATPANEL_SIGNAL, &val); + NV_CTRL_FLATPANEL_LINK, &val); if (ret == NvCtrlSuccess) { - if (val == NV_CTRL_FLATPANEL_SIGNAL_LVDS) signal = "LVDS"; - if (val == NV_CTRL_FLATPANEL_SIGNAL_TMDS) signal = "TMDS"; + if (signal_type == NV_CTRL_FLATPANEL_SIGNAL_DISPLAYPORT) { + int lanes; + + lanes = val + 1; + + ret = + NvCtrlGetDisplayAttribute(ctk_display_device_dfp->handle, + ctk_display_device_dfp->display_device_mask, + NV_CTRL_DISPLAYPORT_LINK_RATE, &val); + if (ret == NvCtrlSuccess && val == NV_CTRL_DISPLAYPORT_LINK_RATE_DISABLED) { + link = "Disabled"; + } else { + char *bw = "unknown bandwidth"; + + if (ret == NvCtrlSuccess) { + switch (val) { + case NV_CTRL_DISPLAYPORT_LINK_RATE_1_62GBPS: + bw = "1.62 Gbps"; + break; + case NV_CTRL_DISPLAYPORT_LINK_RATE_2_70GBPS: + bw = "2.70 Gbps"; + break; + } + } + + snprintf(tmp, 32, "%d lane%s @ %s", lanes, lanes == 1 ? "" : "s", + bw); + link = tmp; + } + } else { + // LVDS or TMDS + switch(val) { + case NV_CTRL_FLATPANEL_LINK_SINGLE: + link = "Single"; + break; + case NV_CTRL_FLATPANEL_LINK_DUAL: + link = "Dual"; + break; + } + } } gtk_label_set_text - (GTK_LABEL(ctk_display_device_dfp->txt_signal), signal); + (GTK_LABEL(ctk_display_device_dfp->txt_link), link); + /* Native Resolution */ diff --git a/src/gtk+-2.x/ctkdisplaydevice-tv.c b/src/gtk+-2.x/ctkdisplaydevice-tv.c index 1fae539..4db531c 100644 --- a/src/gtk+-2.x/ctkdisplaydevice-tv.c +++ b/src/gtk+-2.x/ctkdisplaydevice-tv.c @@ -29,7 +29,7 @@ #include <gtk/gtk.h> #include <NvCtrlAttributes.h> -#include "ctkimage.h" +#include "ctkbanner.h" #include "ctkdisplaydevice-tv.h" diff --git a/src/gtk+-2.x/ctkevent.c b/src/gtk+-2.x/ctkevent.c index 10ecf7d..090f77d 100644 --- a/src/gtk+-2.x/ctkevent.c +++ b/src/gtk+-2.x/ctkevent.c @@ -69,7 +69,7 @@ typedef struct __CtkEventSourceRec { struct __CtkEventSourceRec *next; } CtkEventSource; - +static guint binary_signals[NV_CTRL_BINARY_DATA_LAST_ATTRIBUTE + 1]; static guint string_signals[NV_CTRL_STRING_LAST_ATTRIBUTE + 1]; static guint signals[NV_CTRL_LAST_ATTRIBUTE + 1]; static guint signal_RRScreenChangeNotify; @@ -254,6 +254,7 @@ static void ctk_event_class_init(CtkEventClass *ctk_event_class) MAKE_SIGNAL(NV_CTRL_GVO_COMPOSITE_ALPHA_KEY); MAKE_SIGNAL(NV_CTRL_GVO_COMPOSITE_NUM_KEY_RANGES); MAKE_SIGNAL(NV_CTRL_NOTEBOOK_DISPLAY_CHANGE_LID_EVENT); + MAKE_SIGNAL(NV_CTRL_DISPLAYPORT_LINK_RATE); #undef MAKE_SIGNAL @@ -264,7 +265,7 @@ static void ctk_event_class_init(CtkEventClass *ctk_event_class) * knows about. */ -#if NV_CTRL_LAST_ATTRIBUTE != NV_CTRL_DEPTH_30_ALLOWED +#if NV_CTRL_LAST_ATTRIBUTE != NV_CTRL_DISPLAYPORT_LINK_RATE #warning "There are attributes that do not emit signals!" #endif @@ -312,6 +313,32 @@ static void ctk_event_class_init(CtkEventClass *ctk_event_class) #if NV_CTRL_STRING_LAST_ATTRIBUTE != NV_CTRL_STRING_PERFORMANCE_MODES #warning "There are attributes that do not emit signals!" #endif + + + /* make signals for binary attribute */ + for (i = 0; i <= NV_CTRL_BINARY_DATA_LAST_ATTRIBUTE; i++) binary_signals[i] = 0; + +#define MAKE_BINARY_SIGNAL(x) \ + binary_signals[x] = g_signal_new(("CTK_EVENT_" #x), \ + G_OBJECT_CLASS_TYPE(ctk_event_class), \ + G_SIGNAL_RUN_LAST, 0, NULL, NULL, \ + g_cclosure_marshal_VOID__POINTER, \ + G_TYPE_NONE, 1, G_TYPE_POINTER); + + MAKE_BINARY_SIGNAL(NV_CTRL_BINARY_DATA_MODELINES); + MAKE_BINARY_SIGNAL(NV_CTRL_BINARY_DATA_XSCREENS_USING_GPU); + MAKE_BINARY_SIGNAL(NV_CTRL_BINARY_DATA_GPUS_USED_BY_XSCREEN); + MAKE_BINARY_SIGNAL(NV_CTRL_BINARY_DATA_GPUS_USING_FRAMELOCK); + MAKE_BINARY_SIGNAL(NV_CTRL_BINARY_DATA_DISPLAY_VIEWPORT); + MAKE_BINARY_SIGNAL(NV_CTRL_BINARY_DATA_FRAMELOCKS_USED_BY_GPU); + MAKE_BINARY_SIGNAL(NV_CTRL_BINARY_DATA_GPUS_USING_VCSC); + MAKE_BINARY_SIGNAL(NV_CTRL_BINARY_DATA_VCSCS_USED_BY_GPU); + +#undef MAKE_BINARY_SIGNAL + +#if NV_CTRL_BINARY_DATA_LAST_ATTRIBUTE != NV_CTRL_BINARY_DATA_VCSCS_USED_BY_GPU +#warning "There are attributes that do not emit signals!" +#endif /* Make XRandR signal */ signal_RRScreenChangeNotify = @@ -586,7 +613,7 @@ static gboolean ctk_event_dispatch(GSource *source, } /* - * Handle the TARGET_ATTRIBUTE_AVAILABILITY_CHANGED_EVENT + * Handle the TARGET_ATTRIBUTE_AVAILABILITY_CHANGED_EVENT * NV-CONTROL event. */ @@ -620,7 +647,7 @@ static gboolean ctk_event_dispatch(GSource *source, nvctrlevent->target_id); } /* - * Handle the TARGET_STRING_ATTRIBUTE_CHANGED_EVENT + * Handle the TARGET_STRING_ATTRIBUTE_CHANGED_EVENT * NV-CONTROL event. */ } else if (event_source->event_base != -1 && @@ -641,7 +668,7 @@ static gboolean ctk_event_dispatch(GSource *source, event_struct.availability = TRUE; /* * XXX Is emitting a signal with g_signal_emit() really - * the "correct" way of dispatching the event? + * the "correct" way of dispatching the event */ CTK_EVENT_BROADCAST(event_source, @@ -650,10 +677,41 @@ static gboolean ctk_event_dispatch(GSource *source, nvctrlevent->target_type, nvctrlevent->target_id); } + /* + * Handle the TARGET_BINARY_ATTRIBUTE_CHANGED_EVENT + * NV-CONTROL event. + */ + } else if (event_source->event_base != -1 && + (event.type == (event_source->event_base + + TARGET_BINARY_ATTRIBUTE_CHANGED_EVENT))) { + XNVCtrlBinaryAttributeChangedEventTarget *nvctrlevent = + (XNVCtrlBinaryAttributeChangedEventTarget *) &event; - /* - * Also handle XRandR events. - */ + /* make sure the attribute is in our signal array */ + if ((nvctrlevent->attribute >= 0) && + (nvctrlevent->attribute <= NV_CTRL_BINARY_DATA_LAST_ATTRIBUTE) && + (binary_signals[nvctrlevent->attribute] != 0)) { + + event_struct.attribute = nvctrlevent->attribute; + event_struct.value = 0; + event_struct.display_mask = nvctrlevent->display_mask; + event_struct.availability = TRUE; + /* + * XXX Is emitting a signal with g_signal_emit() really + * the "correct" way of dispatching the event + */ + + CTK_EVENT_BROADCAST(event_source, + binary_signals[nvctrlevent->attribute], + &event_struct, + nvctrlevent->target_type, + nvctrlevent->target_id); + } + + + /* + * Also handle XRandR events. + */ } else if (event_source->randr_event_base != -1 && (event.type == diff --git a/src/gtk+-2.x/ctkframelock.c b/src/gtk+-2.x/ctkframelock.c index 33af997..81aa319 100644 --- a/src/gtk+-2.x/ctkframelock.c +++ b/src/gtk+-2.x/ctkframelock.c @@ -22,8 +22,9 @@ * */ - #include <gtk/gtk.h> +#include <gdk-pixbuf/gdk-pixdata.h> + #include <NvCtrlAttributes.h> #include <stdlib.h> #include <stdio.h> @@ -31,21 +32,20 @@ #include <assert.h> #include "ctkutils.h" +#include "ctkbanner.h" #include "ctkframelock.h" #include "ctkhelp.h" #include "ctkevent.h" -#include "ctkimage.h" - -#include "led_green.h" -#include "led_red.h" -#include "led_grey.h" +#include "led_green_pixdata.h" +#include "led_red_pixdata.h" +#include "led_grey_pixdata.h" -#include "rj45_input.h" -#include "rj45_output.h" -#include "rj45_unused.h" +#include "rj45_input_pixdata.h" +#include "rj45_output_pixdata.h" +#include "rj45_unused_pixdata.h" -#include "bnc_cable.h" +#include "bnc_cable_pixdata.h" #include "parse.h" #include "msg.h" @@ -793,12 +793,12 @@ GtkWidget *my_toggle_button_new_with_label(const gchar *txt, * Updates the container to hold a duplicate of the given image. * */ -void update_image(GtkWidget *container, GtkWidget *new_image) +void update_image(GtkWidget *container, GdkPixbuf *new_pixbuf) { ctk_empty_container(container); gtk_box_pack_start(GTK_BOX(container), - ctk_image_dupe(GTK_IMAGE(new_image)), + gtk_image_new_from_pixbuf(new_pixbuf), FALSE, FALSE, 0); gtk_widget_show_all(container); @@ -3333,15 +3333,15 @@ void list_entry_update_framelock_status(CtkFramelock *ctk_framelock, /* Receiving Sync */ if (!framelock_enabled || (is_server && !use_house_sync)) { gtk_widget_set_sensitive(data->receiving_label, FALSE); - update_image(data->receiving_hbox, ctk_framelock->led_grey); + update_image(data->receiving_hbox, ctk_framelock->led_grey_pixbuf); } else { gint receiving; NvCtrlGetAttribute(data->handle, NV_CTRL_FRAMELOCK_SYNC_READY, &receiving); gtk_widget_set_sensitive(data->receiving_label, TRUE); update_image(data->receiving_hbox, - receiving ? ctk_framelock->led_green : - ctk_framelock->led_red); + (receiving ? ctk_framelock->led_green_pixbuf : + ctk_framelock->led_red_pixbuf)); } /* Sync Rate */ @@ -3367,20 +3367,23 @@ void list_entry_update_framelock_status(CtkFramelock *ctk_framelock, /* House Sync and Ports are always active */ update_image(data->house_hbox, - house?ctk_framelock->led_green:ctk_framelock->led_red); + (house ? ctk_framelock->led_green_pixbuf : + ctk_framelock->led_red_pixbuf)); if ( !data->port0_ethernet_error ) { update_image(data->port0_hbox, - (port0==NV_CTRL_FRAMELOCK_PORT0_STATUS_INPUT)? - ctk_framelock->rj45_input:ctk_framelock->rj45_output); + ((port0==NV_CTRL_FRAMELOCK_PORT0_STATUS_INPUT) ? + ctk_framelock->rj45_input_pixbuf : + ctk_framelock->rj45_output_pixbuf)); } else { - update_image(data->port0_hbox, ctk_framelock->rj45_unused); + update_image(data->port0_hbox, ctk_framelock->rj45_unused_pixbuf); } if ( !data->port1_ethernet_error ) { update_image(data->port1_hbox, - (port1==NV_CTRL_FRAMELOCK_PORT0_STATUS_INPUT)? - ctk_framelock->rj45_input:ctk_framelock->rj45_output); + ((port1==NV_CTRL_FRAMELOCK_PORT0_STATUS_INPUT) ? + ctk_framelock->rj45_input_pixbuf : + ctk_framelock->rj45_output_pixbuf)); } else { - update_image(data->port1_hbox, ctk_framelock->rj45_unused); + update_image(data->port1_hbox, ctk_framelock->rj45_unused_pixbuf); } } @@ -3432,14 +3435,14 @@ void list_entry_update_gpu_status(CtkFramelock *ctk_framelock, (has_server && !use_house_sync) || // GPU always drives sync. (has_server && !house)) { // No house so GPU drives sync. gtk_widget_set_sensitive(data->timing_label, FALSE); - update_image(data->timing_hbox, ctk_framelock->led_grey); + update_image(data->timing_hbox, ctk_framelock->led_grey_pixbuf); } else { gint timing; NvCtrlGetAttribute(data->handle, NV_CTRL_FRAMELOCK_TIMING, &timing); gtk_widget_set_sensitive(data->timing_label, TRUE); update_image(data->timing_hbox, - timing ? ctk_framelock->led_green : - ctk_framelock->led_red); + (timing ? ctk_framelock->led_green_pixbuf : + ctk_framelock->led_red_pixbuf)); } } @@ -3484,7 +3487,7 @@ void list_entry_update_display_status(CtkFramelock *ctk_framelock, (!is_server && !is_client) || (is_server && gpu_is_server && !use_house_sync)) { gtk_widget_set_sensitive(data->stereo_label, FALSE); - update_image(data->stereo_hbox, ctk_framelock->led_grey); + update_image(data->stereo_hbox, ctk_framelock->led_grey_pixbuf); } else { nvGPUDataPtr gpu_data; gint timing = TRUE; @@ -3501,13 +3504,13 @@ void list_entry_update_display_status(CtkFramelock *ctk_framelock, &timing); } if (!timing) { - update_image(data->stereo_hbox, ctk_framelock->led_grey); + update_image(data->stereo_hbox, ctk_framelock->led_grey_pixbuf); } else { NvCtrlGetAttribute(data->handle, NV_CTRL_FRAMELOCK_STEREO_SYNC, &stereo_sync); update_image(data->stereo_hbox, - stereo_sync ? ctk_framelock->led_green : - ctk_framelock->led_red); + (stereo_sync ? ctk_framelock->led_green_pixbuf : + ctk_framelock->led_red_pixbuf)); } } } @@ -4387,21 +4390,27 @@ GtkWidget* ctk_framelock_new(NvCtrlAttributeHandle *handle, /* Cache images */ - ctk_framelock->led_grey = ctk_image_new(&led_grey); - ctk_framelock->led_green = ctk_image_new(&led_green); - ctk_framelock->led_red = ctk_image_new(&led_red); + ctk_framelock->led_grey_pixbuf = + gdk_pixbuf_from_pixdata(&led_grey_pixdata, TRUE, NULL); + ctk_framelock->led_green_pixbuf = + gdk_pixbuf_from_pixdata(&led_green_pixdata, TRUE, NULL); + ctk_framelock->led_red_pixbuf = + gdk_pixbuf_from_pixdata(&led_red_pixdata, TRUE, NULL); - ctk_framelock->rj45_input = ctk_image_new(&rj45_input); - ctk_framelock->rj45_output = ctk_image_new(&rj45_output); - ctk_framelock->rj45_unused = ctk_image_new(&rj45_unused); + ctk_framelock->rj45_input_pixbuf = + gdk_pixbuf_from_pixdata(&rj45_input_pixdata, TRUE, NULL); + ctk_framelock->rj45_output_pixbuf = + gdk_pixbuf_from_pixdata(&rj45_output_pixdata, TRUE, NULL); + ctk_framelock->rj45_unused_pixbuf = + gdk_pixbuf_from_pixdata(&rj45_unused_pixdata, TRUE, NULL); - g_object_ref(ctk_framelock->led_grey); - g_object_ref(ctk_framelock->led_green); - g_object_ref(ctk_framelock->led_red); + g_object_ref(ctk_framelock->led_grey_pixbuf); + g_object_ref(ctk_framelock->led_green_pixbuf); + g_object_ref(ctk_framelock->led_red_pixbuf); - g_object_ref(ctk_framelock->rj45_input); - g_object_ref(ctk_framelock->rj45_output); - g_object_ref(ctk_framelock->rj45_unused); + g_object_ref(ctk_framelock->rj45_input_pixbuf); + g_object_ref(ctk_framelock->rj45_output_pixbuf); + g_object_ref(ctk_framelock->rj45_unused_pixbuf); /* create the custom tree */ @@ -4473,7 +4482,8 @@ GtkWidget* ctk_framelock_new(NvCtrlAttributeHandle *handle, gtk_container_add(GTK_CONTAINER(frame), padding); /* add house sync BNC connector image */ - image = ctk_image_new(&bnc_cable); + image = gtk_image_new_from_pixbuf + (gdk_pixbuf_from_pixdata(&bnc_cable_pixdata, TRUE, NULL)); hbox = gtk_hbox_new(FALSE, 0); gtk_box_pack_end(GTK_BOX(hbox), image, FALSE, FALSE, 0); diff --git a/src/gtk+-2.x/ctkframelock.h b/src/gtk+-2.x/ctkframelock.h index 7e610b9..24f3ad3 100644 --- a/src/gtk+-2.x/ctkframelock.h +++ b/src/gtk+-2.x/ctkframelock.h @@ -117,13 +117,13 @@ struct _CtkFramelock gboolean framelock_enabled; /* Images */ - GtkWidget *led_grey; - GtkWidget *led_green; - GtkWidget *led_red; + GdkPixbuf *led_grey_pixbuf; + GdkPixbuf *led_green_pixbuf; + GdkPixbuf *led_red_pixbuf; - GtkWidget *rj45_input; - GtkWidget *rj45_output; - GtkWidget *rj45_unused; + GdkPixbuf *rj45_input_pixbuf; + GdkPixbuf *rj45_output_pixbuf; + GdkPixbuf *rj45_unused_pixbuf; }; struct _CtkFramelockClass diff --git a/src/gtk+-2.x/ctkglx.c b/src/gtk+-2.x/ctkglx.c index dfe7894..7b3462f 100644 --- a/src/gtk+-2.x/ctkglx.c +++ b/src/gtk+-2.x/ctkglx.c @@ -30,7 +30,7 @@ #include "glxinfo.h" /* xxx_abbrev functions */ -#include "ctkimage.h" +#include "ctkbanner.h" #include "ctkglx.h" #include "ctkutils.h" #include "ctkconfig.h" @@ -40,7 +40,7 @@ /* Number of FBConfigs attributes reported in gui */ -#define NUM_FBCONFIG_ATTRIBS 31 +#define NUM_FBCONFIG_ATTRIBS 32 /* FBConfig tooltips */ @@ -101,8 +101,10 @@ static const char * __acb_help = static const char * __aca_help = "aca (Accumulator alpha size) - Number of bits per color used for alpha " "in the accumulator buffer."; -static const char * __ms_help = - "ms (Multisample samples) - Number of samples per multisample."; +static const char * __mvs_help = + "mvs (Multisample coverage samples) - Number of coverage samples per multisample."; +static const char * __mcs_help = + "mcs (Multisample color samples) - Number of color samples per multisample."; static const char * __mb_help = "mb (Multisample buffer count) - Number of multisample buffers."; static const char * __cav_help = @@ -208,7 +210,7 @@ GtkWidget* ctk_glx_new(NvCtrlAttributeHandle *handle, "rs", "gs", "bs", "as", "aux", "dpt", "stn", "acr", "acg", "acb", "aca", - "ms", "mb", + "mvs", "mcs", "mb", "cav", "pbw", "pbh", "pbp", "trt", "trr", "trg", "trb", "tra", "tri" @@ -222,7 +224,7 @@ GtkWidget* ctk_glx_new(NvCtrlAttributeHandle *handle, __rs_help, __gs_help, __bs_help, __as_help, __aux_help, __dpt_help, __stn_help, __acr_help, __acg_help, __acb_help, __aca_help, - __ms_help, __mb_help, + __mvs_help, __mcs_help, __mb_help, __cav_help, __pbw_help, __pbh_help, __pbp_help, __trt_help, __trr_help, __trg_help, @@ -440,8 +442,20 @@ GtkWidget* ctk_glx_new(NvCtrlAttributeHandle *handle, fbconfig_attribs[i].accum_blue_size); snprintf((char *) (&(str[cell++])), 16, "%2d", fbconfig_attribs[i].accum_alpha_size); - snprintf((char *) (&(str[cell++])), 16, "%2d", - fbconfig_attribs[i].multi_samples); + if (fbconfig_attribs[i].multi_sample_valid) { + snprintf((char *) (&(str[cell++])), 16, "%2d", + fbconfig_attribs[i].multi_samples); + if (fbconfig_attribs[i].multi_sample_coverage_valid) { + snprintf((char *) (&(str[cell++])), 16, "%2d", + fbconfig_attribs[i].multi_samples_color); + } else { + snprintf((char *) (&(str[cell++])), 16, "%2d", + fbconfig_attribs[i].multi_samples); + } + } else { + snprintf((char *) (&(str[cell++])), 16, " 0"); + snprintf((char *) (&(str[cell++])), 16, " 0"); + } snprintf((char *) (&(str[cell++])), 16, "%1d", fbconfig_attribs[i].multi_sample_buffers); snprintf((char *) (&(str[cell++])), 16, "%s", @@ -903,7 +917,8 @@ GtkTextBuffer *ctk_glx_create_help(GtkTextTagTable *table, __acg_help, __acb_help, __aca_help, - __ms_help, + __mvs_help, + __mcs_help, __mb_help, __cav_help, diff --git a/src/gtk+-2.x/ctkgpu.c b/src/gtk+-2.x/ctkgpu.c index b6ee0d6..4edca9c 100644 --- a/src/gtk+-2.x/ctkgpu.c +++ b/src/gtk+-2.x/ctkgpu.c @@ -28,7 +28,9 @@ #include <stdio.h> #include <stdlib.h> -#include "ctkimage.h" +#include "parse.h" + +#include "ctkbanner.h" #include "ctkgpu.h" #include "ctkhelp.h" diff --git a/src/gtk+-2.x/ctkgvo-banner.c b/src/gtk+-2.x/ctkgvo-banner.c index 6669ab9..581cc88 100644 --- a/src/gtk+-2.x/ctkgvo-banner.c +++ b/src/gtk+-2.x/ctkgvo-banner.c @@ -38,7 +38,6 @@ #include "ctkhelp.h" #include "ctkgvo-banner.h" #include "ctkutils.h" -#include "ctkimage.h" #include "ctkbanner.h" #include "msg.h" diff --git a/src/gtk+-2.x/ctkgvo-csc.c b/src/gtk+-2.x/ctkgvo-csc.c index e1ba826..16bca87 100644 --- a/src/gtk+-2.x/ctkgvo-csc.c +++ b/src/gtk+-2.x/ctkgvo-csc.c @@ -27,7 +27,7 @@ #include <string.h> -#include "ctkimage.h" +#include "ctkbanner.h" #include "ctkgvo-csc.h" diff --git a/src/gtk+-2.x/ctkgvo-sync.c b/src/gtk+-2.x/ctkgvo-sync.c index d7b108f..cf3554f 100644 --- a/src/gtk+-2.x/ctkgvo-sync.c +++ b/src/gtk+-2.x/ctkgvo-sync.c @@ -27,7 +27,7 @@ #include <string.h> -#include "ctkimage.h" +#include "ctkbanner.h" #include "ctkgvo.h" #include "ctkgvo-sync.h" @@ -1058,9 +1058,9 @@ static void update_delay_spin_buttons_range(CtkGvoSync *ctk_gvo_sync) &w, &h); gtk_spin_button_set_range - (GTK_SPIN_BUTTON(ctk_gvo_sync->hsync_delay_spin_button), 0, w); + (GTK_SPIN_BUTTON(ctk_gvo_sync->hsync_delay_spin_button), 0, 2*w); gtk_spin_button_set_range - (GTK_SPIN_BUTTON(ctk_gvo_sync->vsync_delay_spin_button), 0, h); + (GTK_SPIN_BUTTON(ctk_gvo_sync->vsync_delay_spin_button), 0, 2*h); } /* update_delay_spin_buttons_range() */ diff --git a/src/gtk+-2.x/ctkgvo.c b/src/gtk+-2.x/ctkgvo.c index 26dedb2..28ad0c1 100644 --- a/src/gtk+-2.x/ctkgvo.c +++ b/src/gtk+-2.x/ctkgvo.c @@ -34,7 +34,6 @@ #include "ctkgvo.h" #include "ctkdropdownmenu.h" #include "ctkutils.h" -#include "ctkimage.h" #include "ctkbanner.h" #include "ctkgvo-banner.h" diff --git a/src/gtk+-2.x/ctkhelp.c b/src/gtk+-2.x/ctkhelp.c index 40ae317..f2da306 100644 --- a/src/gtk+-2.x/ctkhelp.c +++ b/src/gtk+-2.x/ctkhelp.c @@ -28,7 +28,7 @@ #include "msg.h" #include "ctkconstants.h" -#include "ctkimage.h" +#include "ctkbanner.h" #include <stdlib.h> diff --git a/src/gtk+-2.x/ctkimage.c b/src/gtk+-2.x/ctkimage.c deleted file mode 100644 index 6e5df47..0000000 --- a/src/gtk+-2.x/ctkimage.c +++ /dev/null @@ -1,135 +0,0 @@ -/* - * nvidia-settings: A tool for configuring the NVIDIA X driver on Unix - * and Linux systems. - * - * Copyright (C) 2004 NVIDIA Corporation. - * - * This program is free software; you can redistribute it and/or - * modify it under the terms of Version 2 of the GNU General Public - * License as published by the Free Software Foundation. - * - * This program is distributed in the hope that it will be useful, but - * WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See Version 2 - * of the GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the: - * - * Free Software Foundation, Inc. - * 59 Temple Place - Suite 330 - * Boston, MA 02111-1307, USA - * - */ - -#include <stdlib.h> /* malloc */ -#include <stdio.h> /* snprintf */ - -#include <gtk/gtk.h> -#include <gdk/gdkx.h> -#include <X11/Xlib.h> - - -#include "image.h" -#include "ctkimage.h" -#include "ctkbanner.h" - - -/* - * CTK image widget creation - * - */ -GtkWidget* ctk_image_new(const nv_image_t *img) -{ - guint8 *image_buffer = decompress_image_data(img); - gboolean has_alpha = FALSE; - - if (!image_buffer) return NULL; - - if (img->bytes_per_pixel == 4) { /* RGBA */ - has_alpha = TRUE; - } - - return gtk_image_new_from_pixbuf - (gdk_pixbuf_new_from_data(image_buffer, GDK_COLORSPACE_RGB, - has_alpha, 8, img->width, img->height, - img->width * img->bytes_per_pixel, - free_decompressed_image, NULL)); -} - -GtkWidget* ctk_image_new_from_xpm(const char **img) -{ - if (!img) return NULL; - - return gtk_image_new_from_pixbuf(gdk_pixbuf_new_from_xpm_data(img)); -} - - -/* - * CTK image duplication - * - */ -GtkWidget *ctk_image_dupe(GtkImage *image) -{ - GtkImageType image_type; - GtkWidget *new_image = NULL; - - - if (!image) return NULL; - - image_type = gtk_image_get_storage_type(image); - - switch (image_type) { - - case GTK_IMAGE_PIXBUF: - { - GdkPixbuf *pixbuf = gtk_image_get_pixbuf(image); - new_image = gtk_image_new_from_pixbuf(pixbuf); - } - break; - - default: - /* XXX Support more formats later */ - break; - } - - return new_image; -} - - - -/* - * CTK composited banner image widget creation - * - */ -GtkWidget* ctk_banner_image_new_with_callback(BannerArtworkType artwork, - ctk_banner_composite_callback callback, - void *data) -{ - GtkWidget *image; - GtkWidget *hbox; - GtkWidget *frame; - - - image = ctk_banner_new(artwork); - - if (!image) return NULL; - - ctk_banner_set_composite_callback(CTK_BANNER(image), callback, data); - - hbox = gtk_hbox_new(FALSE, 0); - frame = gtk_frame_new(NULL); - - gtk_box_pack_start(GTK_BOX(hbox), frame, TRUE, TRUE, 0); - gtk_frame_set_shadow_type(GTK_FRAME(frame), GTK_SHADOW_IN); - gtk_container_add(GTK_CONTAINER(frame), image); - - - return hbox; -} - - -GtkWidget* ctk_banner_image_new(BannerArtworkType artwork) -{ - return ctk_banner_image_new_with_callback(artwork, NULL, NULL); -} diff --git a/src/gtk+-2.x/ctkimage.h b/src/gtk+-2.x/ctkimage.h deleted file mode 100644 index 8e73be2..0000000 --- a/src/gtk+-2.x/ctkimage.h +++ /dev/null @@ -1,44 +0,0 @@ -/* - * nvidia-settings: A tool for configuring the NVIDIA X driver on Unix - * and Linux systems. - * - * Copyright (C) 2004 NVIDIA Corporation. - * - * This program is free software; you can redistribute it and/or - * modify it under the terms of Version 2 of the GNU General Public - * License as published by the Free Software Foundation. - * - * This program is distributed in the hope that it will be useful, but - * WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See Version 2 - * of the GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the: - * - * Free Software Foundation, Inc. - * 59 Temple Place - Suite 330 - * Boston, MA 02111-1307, USA - * - */ - -#ifndef __CTK_IMAGE_H__ -#define __CTK_IMAGE_H__ - -#include "image.h" -#include "ctkconfig.h" -#include "ctkbanner.h" - -G_BEGIN_DECLS - -GtkWidget* ctk_image_new (const nv_image_t *); -GtkWidget* ctk_image_new_from_xpm (const char **); -GtkWidget* ctk_image_dupe (GtkImage *image); -GtkWidget* ctk_banner_image_new (BannerArtworkType artwork); -GtkWidget* ctk_banner_image_new_with_callback (BannerArtworkType artwork, - ctk_banner_composite_callback, - void *); - -G_END_DECLS - -#endif /* __CTK_IMAGE_H__ */ diff --git a/src/gtk+-2.x/ctkmultisample.c b/src/gtk+-2.x/ctkmultisample.c index 94647c2..db90775 100644 --- a/src/gtk+-2.x/ctkmultisample.c +++ b/src/gtk+-2.x/ctkmultisample.c @@ -31,7 +31,7 @@ #include "ctkconfig.h" #include "ctkhelp.h" -#include "ctkimage.h" +#include "ctkbanner.h" /* local prototypes */ @@ -305,8 +305,6 @@ GtkWidget *ctk_multisample_new(NvCtrlAttributeHandle *handle, gtk_box_pack_start(GTK_BOX(vbox), check_button, FALSE, FALSE, 0); - - ctk_multisample->fsaa_app_override_check_button = check_button; } g_signal_connect(G_OBJECT(ctk_event), diff --git a/src/gtk+-2.x/ctkopengl.c b/src/gtk+-2.x/ctkopengl.c index 4efccb7..b130f3b 100644 --- a/src/gtk+-2.x/ctkopengl.c +++ b/src/gtk+-2.x/ctkopengl.c @@ -25,7 +25,7 @@ #include <gtk/gtk.h> #include <NvCtrlAttributes.h> -#include "ctkimage.h" +#include "ctkbanner.h" #include "ctkopengl.h" diff --git a/src/gtk+-2.x/ctkpowermizer.c b/src/gtk+-2.x/ctkpowermizer.c index f25e1b1..a191588 100644 --- a/src/gtk+-2.x/ctkpowermizer.c +++ b/src/gtk+-2.x/ctkpowermizer.c @@ -33,7 +33,7 @@ #include "ctkutils.h" #include "ctkhelp.h" #include "ctkpowermizer.h" -#include "ctkimage.h" +#include "ctkbanner.h" diff --git a/src/gtk+-2.x/ctkpowersavings.c b/src/gtk+-2.x/ctkpowersavings.c index 0687dc4..471084f 100644 --- a/src/gtk+-2.x/ctkpowersavings.c +++ b/src/gtk+-2.x/ctkpowersavings.c @@ -25,7 +25,7 @@ #include <gtk/gtk.h> #include <NvCtrlAttributes.h> -#include "ctkimage.h" +#include "ctkbanner.h" #include "ctkpowersavings.h" diff --git a/src/gtk+-2.x/ctkrandr.c b/src/gtk+-2.x/ctkrandr.c index 66bccc0..07c8611 100644 --- a/src/gtk+-2.x/ctkrandr.c +++ b/src/gtk+-2.x/ctkrandr.c @@ -25,22 +25,23 @@ #include <stdlib.h> /* malloc */ #include <gtk/gtk.h> #include <gdk/gdkx.h> +#include <gdk-pixbuf/gdk-pixdata.h> + #include <X11/Xlib.h> #include <X11/extensions/Xrandr.h> -#include "ctkimage.h" -#include "rotation_orientation_horiz.h" -#include "rotation_orientation_horiz_flipped.h" -#include "rotation_orientation_vert.h" -#include "rotation_orientation_vert_flipped.h" -#include "rotate_left_on.h" -#include "rotate_left_off.h" -#include "rotate_right_on.h" -#include "rotate_right_off.h" - #include "ctkevent.h" #include "ctkhelp.h" #include "ctkrandr.h" +#include "ctkbanner.h" + +#include "rotation_orientation_horz_pixdata.h" +#include "rotation_orientation_vert_pixdata.h" + +#include "rotate_left_on_pixdata.h" +#include "rotate_left_off_pixdata.h" +#include "rotate_right_on_pixdata.h" +#include "rotate_right_off_pixdata.h" GType ctk_randr_get_type(void) @@ -96,19 +97,57 @@ static char *get_rotation_string(int rotation) /* - * Helper function used to load a pixbuf from an nv_image dump + * Helper function to flip the contents of a pixbuf + * horizontally. This is used to perform a 180 degree + * rotation + vertical flip. */ -static GdkPixbuf * load_pixbuf_from_nvimage(const nv_image_t *img) -{ - guint8 *image_buffer = decompress_image_data(img); - if ( !image_buffer ) - return NULL; - return gdk_pixbuf_new_from_data(image_buffer, GDK_COLORSPACE_RGB, - FALSE, 8, img->width, img->height, - img->width * img->bytes_per_pixel, - free_decompressed_image, NULL); -} +static void horz_flip_pixbuf(GdkPixbuf *pixbuf) +{ + guchar *pixels; + int width; + int height; + int rowstride; // # bytes per row + int bits_per_sample; // # bits per color sample + int n_channels; // # color samples per component + + guchar *row; + guchar *head; + guchar *tail; + int x, y, c; + int component_size; + + /* Get pixbuf information */ + pixels = gdk_pixbuf_get_pixels(pixbuf); + width = gdk_pixbuf_get_width(pixbuf); + height = gdk_pixbuf_get_height(pixbuf); + rowstride = gdk_pixbuf_get_rowstride(pixbuf); + bits_per_sample = gdk_pixbuf_get_bits_per_sample(pixbuf); + n_channels = gdk_pixbuf_get_n_channels(pixbuf); + + /* Compute the number of bytes per component (RGB/RGBA) */ + component_size = n_channels * (bits_per_sample / 8); + + /* Swap all components in all rows */ + for (y = 0; y < height; y++) { + + row = pixels + (y * rowstride); + head = row; + tail = row + (width - 1) * (component_size); + + for (x = 0; x < width/2; x++) { + + for (c = 0; c < component_size; c++) { + guchar h = head[c]; + head[c] = tail[c]; + tail[c] = h; + } + head += component_size; + tail -= component_size; + } + } + +} /* horz_flip_pixbuf() */ @@ -118,82 +157,50 @@ static GdkPixbuf * load_pixbuf_from_nvimage(const nv_image_t *img) */ static GdkPixbuf *load_orientation_image_pixbuf(Rotation rotation) { - const nv_image_t *img_data; - int rotate_img_data; - guint8 *img_buffer; - guint8 *img_buffer_tmp; + const GdkPixdata *pixdata; GdkPixbuf *pixbuf; + gboolean tweak_img; /* Rotate and flip image */ /* Figure out which image and rotation to use */ switch ( rotation ) { case RR_Rotate_0: /* Normal */ - img_data = &rotation_orientation_horiz_image; - rotate_img_data = 0; + pixdata = &rotation_orientation_horz_pixdata; + tweak_img = FALSE; break; case RR_Rotate_90: /* Left */ - img_data = &rotation_orientation_vert_flipped_image; - rotate_img_data = 1; + pixdata = &rotation_orientation_vert_pixdata; + tweak_img = TRUE; break; case RR_Rotate_180: /* Inverted */ - img_data = &rotation_orientation_horiz_flipped_image; - rotate_img_data = 1; + pixdata = &rotation_orientation_horz_pixdata; + tweak_img = TRUE; break; case RR_Rotate_270: /* Right */ - img_data = &rotation_orientation_vert_image; - rotate_img_data = 0; + pixdata = &rotation_orientation_vert_pixdata; + tweak_img = FALSE; break; default: /* Unknown */ - img_data = &rotation_orientation_horiz_image; - rotate_img_data = 0; + pixdata = &rotation_orientation_horz_pixdata; + tweak_img = FALSE; break; } - /* Load image */ - img_buffer = decompress_image_data(img_data); - if ( !img_buffer ) { + + /* Generate the pixbuf from the pixdata */ + pixbuf = gdk_pixbuf_from_pixdata(pixdata, TRUE, NULL); + if (!pixbuf) { return NULL; } - /* Image data needs to be rotated */ - if ( rotate_img_data ) { - unsigned char *src; - unsigned char *dst; - unsigned int bppt, w, h; /* Used to rotate image */ - - - img_buffer_tmp = img_buffer; - - img_buffer = (guint8 *) malloc( img_data->width * img_data->height * - img_data->bytes_per_pixel ); - if ( !img_buffer ) { - free(img_buffer_tmp); - return NULL; - } - - /* GTK 2.2 doesn't support this, so we do it ourselves. */ - dst = (unsigned char *)img_buffer; - src = (unsigned char *)img_buffer_tmp; - src += (img_data->width * img_data->height -1) * - img_data->bytes_per_pixel; - - for (h = 0; h < img_data->height; h++ ) { - for (w = 0; w < img_data->width; w++ ) { - for (bppt = 0; bppt < img_data->bytes_per_pixel; bppt++ ) { - dst[bppt] = src[bppt]; - } - dst += img_data->bytes_per_pixel; - src -= img_data->bytes_per_pixel; - } - } - free(img_buffer_tmp); - } /* Done - rotating image */ + /* Image requires 180 degree rotation + vertical flip, + * this is the same as a horizontal flip. + */ + if (tweak_img) { + horz_flip_pixbuf(pixbuf); + } - pixbuf = gdk_pixbuf_new_from_data(img_buffer, GDK_COLORSPACE_RGB, FALSE, - 8, img_data->width, img_data->height, - img_data->width * img_data->bytes_per_pixel, - free_decompressed_image, NULL); return pixbuf; } /* load_orientation_image_pixbuf() */ @@ -463,16 +470,20 @@ GtkWidget* ctk_randr_new(NvCtrlAttributeHandle *handle, /* Preload button pixbufs & images */ ctk_randr->button_pixbufs[CTKRANDR_BTN_ROTATE_LEFT_OFF] = - load_pixbuf_from_nvimage(&rotate_left_off_image); + gdk_pixbuf_from_pixdata(&rotate_left_off_pixdata, + TRUE, NULL); ctk_randr->button_pixbufs[CTKRANDR_BTN_ROTATE_LEFT_ON] = - load_pixbuf_from_nvimage(&rotate_left_on_image); + gdk_pixbuf_from_pixdata(&rotate_left_on_pixdata, + TRUE, NULL); ctk_randr->button_pixbufs[CTKRANDR_BTN_ROTATE_RIGHT_OFF] = - load_pixbuf_from_nvimage(&rotate_right_off_image); + gdk_pixbuf_from_pixdata(&rotate_right_off_pixdata, + TRUE, NULL); ctk_randr->button_pixbufs[CTKRANDR_BTN_ROTATE_RIGHT_ON] = - load_pixbuf_from_nvimage(&rotate_right_on_image); + gdk_pixbuf_from_pixdata(&rotate_right_on_pixdata, + TRUE, NULL); ctk_randr->rotate_left_button_image = GTK_IMAGE(gtk_image_new_from_pixbuf(ctk_randr->button_pixbufs[CTKRANDR_BTN_ROTATE_LEFT_OFF]) ); diff --git a/src/gtk+-2.x/ctkscreen.c b/src/gtk+-2.x/ctkscreen.c index 5d9c9cb..b807f79 100644 --- a/src/gtk+-2.x/ctkscreen.c +++ b/src/gtk+-2.x/ctkscreen.c @@ -31,13 +31,12 @@ #include <X11/Xlib.h> #include <X11/extensions/Xrandr.h> - -#include "image.h" +#include "parse.h" #include "ctkscreen.h" #include "ctkhelp.h" #include "ctkutils.h" -#include "ctkimage.h" +#include "ctkbanner.h" void ctk_screen_event_handler(GtkWidget *widget, XRRScreenChangeNotifyEvent *ev, diff --git a/src/gtk+-2.x/ctkserver.c b/src/gtk+-2.x/ctkserver.c index 28f42d6..9e80594 100644 --- a/src/gtk+-2.x/ctkserver.c +++ b/src/gtk+-2.x/ctkserver.c @@ -29,7 +29,7 @@ #include <gdk/gdkx.h> #include <X11/Xlib.h> -#include "ctkimage.h" +#include "ctkbanner.h" #include "ctkserver.h" #include "ctkevent.h" diff --git a/src/gtk+-2.x/ctkslimm.c b/src/gtk+-2.x/ctkslimm.c new file mode 100644 index 0000000..ebd4732 --- /dev/null +++ b/src/gtk+-2.x/ctkslimm.c @@ -0,0 +1,1218 @@ +/* + * nvidia-settings: A tool for configuring the NVIDIA X driver on Unix + * and Linux systems. + * + * Copyright (C) 2004 NVIDIA Corporation. + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of Version 2 of the GNU General Public + * License as published by the Free Software Foundation. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See Version 2 + * of the GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the: + * + * Free Software Foundation, Inc. + * 59 Temple Place - Suite 330 + * Boston, MA 02111-1307, USA + * + */ + +#include <gtk/gtk.h> +#include "NvCtrlAttributes.h" + +#include <stdlib.h> +#include <string.h> +#include <X11/Xlib.h> +#include <X11/extensions/Xrandr.h> + +#include "ctkbanner.h" + +#include "ctkslimm.h" +#include "ctkdisplayconfig-utils.h" +#include "ctkhelp.h" +#include "ctkutils.h" + + +/* Static function declarations */ +static void setup_display_refresh_dropdown(CtkSLIMM *ctk_object); +static void setup_display_resolution_dropdown(CtkSLIMM *ctk_object); +static void setup_total_size_label(CtkSLIMM *ctk_object); +static void display_refresh_changed(GtkWidget *widget, gpointer user_data); +static void display_resolution_changed(GtkWidget *widget, gpointer user_data); +static void display_config_changed(GtkWidget *widget, gpointer user_data); +static void txt_overlap_activated(GtkWidget *widget, gpointer user_data); +static void slimm_checkbox_toggled(GtkWidget *widget, gpointer user_data); +static void save_xconfig_button_clicked(GtkWidget *widget, gpointer user_data); +static void write_slimm_options(CtkSLIMM *ctk_object, gchar *metamode_str); +static void remove_slimm_options(CtkSLIMM *ctk_object); +static nvDisplayPtr find_active_display(nvLayoutPtr layout); +static nvDisplayPtr intersect_modelines(nvLayoutPtr layout); +static void remove_duplicate_modelines(nvDisplayPtr display); +static Bool other_displays_have_modeline(nvLayoutPtr layout, + nvDisplayPtr display, + nvModeLinePtr modeline); + + +typedef struct GridConfigRec { + int x; + int y; +}GridConfig; + +/** + * The gridConfigs array enumerates the display grid configurations + * that are presently supported. + * + **/ + +static const GridConfig gridConfigs[] = { + {2, 2}, + {3, 1}, + {3, 2}, + {1, 3}, + {0, 0} +}; + +GType ctk_slimm_get_type() +{ + static GType ctk_slimm_type = 0; + + if (!ctk_slimm_type) { + static const GTypeInfo info_ctk_slimm = { + sizeof (CtkSLIMMClass), + NULL, /* base_init */ + NULL, /* base_finalize */ + NULL, /* class_init */ + NULL, /* class_finalize */ + NULL, /* class_data */ + sizeof (CtkSLIMM), + 0, /* n_preallocs */ + NULL, /* instance_init */ + }; + + ctk_slimm_type = + g_type_register_static(GTK_TYPE_VBOX, + "CtkSLIMM", &info_ctk_slimm, 0); + } + + return ctk_slimm_type; +} + +static void remove_slimm_options(CtkSLIMM *ctk_object) +{ + XConfigPtr configptr = NULL; + gchar *filename; + gchar *msg; + XConfigOptionPtr tmp = NULL; + + filename = (gchar *)xconfigOpenConfigFile(NULL, NULL); + + if (!filename) { + msg = g_strdup_printf("Failed to open X config file!"); + ctk_display_warning_msg(ctk_get_parent_window(GTK_WIDGET(ctk_object)), msg); + g_free(msg); + xconfigCloseConfigFile(); + return; + } + + if (xconfigReadConfigFile(&configptr) != XCONFIG_RETURN_SUCCESS) { + msg = g_strdup_printf("Failed to read X config file '%s'!", + filename); + ctk_display_warning_msg(ctk_get_parent_window(GTK_WIDGET(ctk_object)), msg); + g_free(msg); + xconfigCloseConfigFile(); + return; + } + + /* Remove SLI Mosaic Option */ + tmp = xconfigFindOption(configptr->layouts->adjacencies->screen->options, "SLI"); + if (tmp != NULL) { + configptr->layouts->adjacencies->screen->options = + xconfigRemoveOption(configptr->layouts->adjacencies->screen->options, tmp); + } + + /* Remove MetaMode Option */ + tmp = xconfigFindOption(configptr->layouts->adjacencies->screen->options, "MetaModes"); + if (tmp != NULL) { + configptr->layouts->adjacencies->screen->options = + xconfigRemoveOption(configptr->layouts->adjacencies->screen->options, tmp); + } + + xconfigWriteConfigFile(filename, configptr); + xconfigFreeConfig(configptr); + xconfigCloseConfigFile(); +} + +static void write_slimm_options(CtkSLIMM *ctk_object, gchar *metamode_str) +{ + XConfigPtr configptr = NULL; + XConfigAdjacencyPtr adj; + gchar *filename = "/etc/X11/xorg.conf"; + char *tmp_filename; + + if (!metamode_str) { + return; + } + + + tmp_filename = (char *)xconfigOpenConfigFile(filename, NULL); + if (!tmp_filename || strcmp(tmp_filename, filename)) { + gchar *msg = g_strdup_printf("Failed to open X config file '%s'!", + filename); + ctk_display_warning_msg(ctk_get_parent_window(GTK_WIDGET(ctk_object)), msg); + g_free(msg); + xconfigCloseConfigFile(); + return; + } + + if (xconfigReadConfigFile(&configptr) != XCONFIG_RETURN_SUCCESS) { + gchar *msg = g_strdup_printf("Failed to read X config file '%s'!", + filename); + ctk_display_warning_msg(ctk_get_parent_window(GTK_WIDGET(ctk_object)), msg); + g_free(msg); + xconfigCloseConfigFile(); + return; + } + + adj = configptr->layouts->adjacencies; + + if (adj->next) { + /* There are additional screens! Remove them all from Layout */ + adj = adj->next; + while ((adj = (XConfigAdjacencyPtr) + xconfigRemoveListItem((GenericListPtr)configptr->layouts->adjacencies, + (GenericListPtr)adj))); + } + + /* + * Now fix up the screen in Device section (to prevent failure with + * seperate x screen config + * + */ + configptr->layouts->adjacencies->screen->device->screen = -1; + + /* Write out SLI Mosaic Option */ + configptr->layouts->adjacencies->screen->options = + xconfigAddNewOption(configptr->layouts->adjacencies->screen->options, + "SLI", + "Mosaic"); + + /* Write out MetaMode Option */ + configptr->layouts->adjacencies->screen->options = + xconfigAddNewOption(configptr->layouts->adjacencies->screen->options, + "MetaModes", + metamode_str); + + xconfigWriteConfigFile(tmp_filename, configptr); + xconfigFreeConfig(configptr); + xconfigCloseConfigFile(); +} + +static void save_xconfig_button_clicked(GtkWidget *widget, gpointer user_data) +{ + CtkSLIMM *ctk_object = CTK_SLIMM(user_data); + gint idx; + + gint xctr,yctr; + + gint x_displays,y_displays; + gint h_overlap, v_overlap; + + gint x_total, y_total; + + gchar *metamode_str = NULL; + gchar *tmpstr; + + gint checkbox_state = + gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(ctk_object->cbtn_slimm_enable)); + + if (checkbox_state) { + /* SLI MM needs to be enabled */ + idx = gtk_option_menu_get_history(GTK_OPTION_MENU(ctk_object->mnu_display_config)); + + /* Get grid configuration values from index */ + + x_displays = gridConfigs[idx].x; + y_displays = gridConfigs[idx].y; + + + h_overlap = gtk_spin_button_get_value_as_int(GTK_SPIN_BUTTON(ctk_object->spbtn_hedge_overlap)); + v_overlap = gtk_spin_button_get_value_as_int(GTK_SPIN_BUTTON(ctk_object->spbtn_vedge_overlap)); + + /* Total X Screen Size Calculation */ + x_total = x_displays * ctk_object->cur_modeline->data.hdisplay - + (x_displays - 1) * h_overlap; + y_total = y_displays * ctk_object->cur_modeline->data.vdisplay - + (y_displays - 1) * v_overlap; + + for (yctr = 0; yctr < y_displays;yctr++) { + for (xctr = 0; xctr < x_displays;xctr++) { + tmpstr = g_strdup_printf("%s +%d+%d", + ctk_object->cur_modeline->data.identifier, + ctk_object->cur_modeline->data.hdisplay * xctr - + h_overlap * xctr, + ctk_object->cur_modeline->data.vdisplay * yctr - + v_overlap * yctr); + if (metamode_str) { + metamode_str = g_strconcat(metamode_str, ", ", tmpstr, NULL); + g_free(tmpstr); + } else { + metamode_str = tmpstr; + } + } + } + + write_slimm_options(ctk_object, metamode_str); + } else { + /* SLI MM needs to be disabled */ + + remove_slimm_options(ctk_object); + } +} + +static void txt_overlap_activated(GtkWidget *widget, gpointer user_data) +{ + CtkSLIMM *ctk_object = CTK_SLIMM(user_data); + /* Update total size label */ + setup_total_size_label(ctk_object); +} + +static void display_config_changed(GtkWidget *widget, gpointer user_data) +{ + CtkSLIMM *ctk_object = CTK_SLIMM(user_data); + /* Update total size label */ + setup_total_size_label(ctk_object); +} + + +static void display_refresh_changed(GtkWidget *widget, gpointer user_data) +{ + CtkSLIMM *ctk_object = CTK_SLIMM(user_data); + gint idx; + + /* Get the modeline and display to set */ + idx = gtk_option_menu_get_history(GTK_OPTION_MENU(widget)); + + /* Select the new modeline as current modeline */ + ctk_object->cur_modeline = ctk_object->refresh_table[idx]; +} + + +static void display_resolution_changed(GtkWidget *widget, gpointer user_data) +{ + CtkSLIMM *ctk_object = CTK_SLIMM(user_data); + + gint idx; + nvModeLinePtr modeline; + + /* Get the modeline and display to set */ + idx = gtk_option_menu_get_history(GTK_OPTION_MENU(widget)); + modeline = ctk_object->resolution_table[idx]; + + /* Ignore selecting same resolution */ + if (ctk_object->cur_modeline == modeline) { + return; + } + + /* Select the new modeline as current modeline */ + ctk_object->cur_modeline = modeline; + + /* Adjust H and V overlap maximums and redraw total size label */ + gtk_spin_button_set_range(GTK_SPIN_BUTTON(ctk_object->spbtn_hedge_overlap), + -modeline->data.hdisplay, + modeline->data.hdisplay); + + gtk_spin_button_set_range(GTK_SPIN_BUTTON(ctk_object->spbtn_vedge_overlap), + -modeline->data.vdisplay, + modeline->data.vdisplay); + + setup_total_size_label(ctk_object); + + /* Regenerate the refresh menu */ + setup_display_refresh_dropdown(ctk_object); +} + + + +static void slimm_checkbox_toggled(GtkWidget *widget, gpointer user_data) +{ + CtkSLIMM *ctk_object = CTK_SLIMM(user_data); + + gint enabled = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget)); + + if (enabled) { + if (ctk_object->mnu_refresh_disabled) { + ctk_object->mnu_refresh_disabled = False; + gtk_widget_set_sensitive(ctk_object->mnu_display_refresh, True); + } + gtk_widget_set_sensitive(ctk_object->mnu_display_resolution, True); + gtk_widget_set_sensitive(ctk_object->mnu_display_config, True); + gtk_widget_set_sensitive(ctk_object->spbtn_hedge_overlap, True); + gtk_widget_set_sensitive(ctk_object->spbtn_vedge_overlap, True); + gtk_widget_set_sensitive(ctk_object->box_total_size, True); + } else { + if (GTK_WIDGET_SENSITIVE(ctk_object->mnu_display_refresh)) { + ctk_object->mnu_refresh_disabled = True; + gtk_widget_set_sensitive(ctk_object->mnu_display_refresh, False); + } + gtk_widget_set_sensitive(ctk_object->mnu_display_resolution, False); + gtk_widget_set_sensitive(ctk_object->mnu_display_config, False); + gtk_widget_set_sensitive(ctk_object->spbtn_hedge_overlap, False); + gtk_widget_set_sensitive(ctk_object->spbtn_vedge_overlap, False); + gtk_widget_set_sensitive(ctk_object->box_total_size, False); + } +} + + + +/** setup_total_size_label() ********************************* + * + * Generates and sets the label showing total X Screen size of all displays + * combined. + * + **/ + +static void setup_total_size_label(CtkSLIMM *ctk_object) +{ + gint idx; + gint x_displays,y_displays; + gint h_overlap, v_overlap; + gchar *xscreen_size; + gint x_total, y_total; + if (!ctk_object->cur_modeline) { + return; + } + + idx = gtk_option_menu_get_history(GTK_OPTION_MENU(ctk_object->mnu_display_config)); + + /* Get grid configuration values from index */ + x_displays = gridConfigs[idx].x; + y_displays = gridConfigs[idx].y; + + h_overlap = gtk_spin_button_get_value_as_int(GTK_SPIN_BUTTON(ctk_object->spbtn_hedge_overlap)); + v_overlap = gtk_spin_button_get_value_as_int(GTK_SPIN_BUTTON(ctk_object->spbtn_vedge_overlap)); + + /* Total X Screen Size Calculation */ + x_total = x_displays * ctk_object->cur_modeline->data.hdisplay - + (x_displays - 1) * h_overlap; + y_total = y_displays * ctk_object->cur_modeline->data.vdisplay - + (y_displays - 1) * v_overlap; + + xscreen_size = g_strdup_printf("%d x %d", x_total, y_total); + gtk_label_set_text(GTK_LABEL(ctk_object->lbl_total_size), xscreen_size); + g_free(xscreen_size); + +} + +/** setup_display_refresh_dropdown() ********************************* + * + * Generates the refresh rate dropdown based on the currently selected + * display. + * + **/ + +static void setup_display_refresh_dropdown(CtkSLIMM *ctk_object) +{ + GtkWidget *menu; + GtkWidget *menu_item; + nvModeLinePtr modeline; + float cur_rate; /* Refresh Rate */ + int cur_idx = 0; /* Currently selected modeline */ + + gchar *name; /* Modeline's label for the dropdown menu */ + + /* Get selection information */ + if (!ctk_object->cur_modeline) { + goto fail; + } + + + cur_rate = ctk_object->cur_modeline->refresh_rate; + + + /* Create the menu index -> modeline pointer lookup table */ + if (ctk_object->refresh_table) { + free(ctk_object->refresh_table); + ctk_object->refresh_table_len = 0; + } + ctk_object->refresh_table = + (nvModeLinePtr *)calloc(ctk_object->num_modelines, sizeof(nvModeLinePtr)); + if (!ctk_object->refresh_table) { + goto fail; + } + + + /* Generate the refresh dropdown */ + menu = gtk_menu_new(); + + /* Generate the refresh rate dropdown from the modelines list */ + for (modeline = ctk_object->modelines; modeline; modeline = modeline->next) { + + float modeline_rate; + nvModeLinePtr m; + int count_ref; /* # modelines with similar refresh rates */ + int num_ref; /* Modeline # in a group of similar refresh rates */ + int is_doublescan; + int is_interlaced; + + gchar *extra = NULL; + gchar *tmp; + + /* Ignore modelines of different resolution */ + if (modeline->data.hdisplay != ctk_object->cur_modeline->data.hdisplay || + modeline->data.vdisplay != ctk_object->cur_modeline->data.vdisplay) { + continue; + } + + modeline_rate = modeline->refresh_rate; + is_doublescan = (modeline->data.flags & V_DBLSCAN); + is_interlaced = (modeline->data.flags & V_INTERLACE); + + name = g_strdup_printf("%.0f Hz", modeline_rate); + + + /* Get a unique number for this modeline */ + count_ref = 0; /* # modelines with similar refresh rates */ + num_ref = 0; /* Modeline # in a group of similar refresh rates */ + for (m = ctk_object->modelines; m; m = m->next) { + float m_rate = m->refresh_rate; + gchar *tmp = g_strdup_printf("%.0f Hz", m_rate); + + if (m->data.hdisplay == modeline->data.hdisplay && + m->data.vdisplay == modeline->data.vdisplay && + !g_ascii_strcasecmp(tmp, name)) { + + count_ref++; + /* Modelines with similar refresh rates get a unique # (num_ref) */ + if (m == modeline) { + num_ref = count_ref; /* This modeline's # */ + } + } + g_free(tmp); + } + + if (num_ref > 1) { + continue; + } + + /* Add "DoubleScan" and "Interlace" information */ + + if (modeline->data.flags & V_DBLSCAN) { + extra = g_strdup_printf("DoubleScan"); + } + + if (modeline->data.flags & V_INTERLACE) { + if (extra) { + tmp = g_strdup_printf("%s, Interlace", extra); + g_free(extra); + extra = tmp; + } else { + extra = g_strdup_printf("Interlace"); + } + } + + if (extra) { + tmp = g_strdup_printf("%s (%s)", name, extra); + g_free(extra); + g_free(name); + name = tmp; + } + + + + /* Keep track of the selected modeline */ + if (ctk_object->cur_modeline == modeline) { + cur_idx = ctk_object->refresh_table_len; + + /* Find a close match to the selected modeline */ + } else if (ctk_object->refresh_table_len && + ctk_object->refresh_table[cur_idx] != ctk_object->cur_modeline) { + + /* Found a better resolution */ + if (modeline->data.hdisplay == ctk_object->cur_modeline->data.hdisplay && + modeline->data.vdisplay == ctk_object->cur_modeline->data.vdisplay) { + + float prev_rate = ctk_object->refresh_table[cur_idx]->refresh_rate; + float rate = modeline->refresh_rate; + + + if (ctk_object->refresh_table[cur_idx]->data.hdisplay != + ctk_object->cur_modeline->data.hdisplay || + ctk_object->refresh_table[cur_idx]->data.vdisplay != + ctk_object->cur_modeline->data.vdisplay) { + cur_idx = ctk_object->refresh_table_len; + } + + /* Found a better refresh rate */ + if (rate == cur_rate && prev_rate != cur_rate) { + cur_idx = ctk_object->refresh_table_len; + } + } + } + + + /* Add the modeline entry to the dropdown */ + menu_item = gtk_menu_item_new_with_label(name); + g_free(name); + gtk_menu_shell_append(GTK_MENU_SHELL(menu), menu_item); + gtk_widget_show(menu_item); + ctk_object->refresh_table[ctk_object->refresh_table_len++] = modeline; + } + + /* Setup the menu and select the current mode */ + g_signal_handlers_block_by_func + (G_OBJECT(ctk_object->mnu_display_refresh), + G_CALLBACK(display_refresh_changed), (gpointer) ctk_object); + + gtk_option_menu_set_menu(GTK_OPTION_MENU(ctk_object->mnu_display_refresh), menu); + gtk_option_menu_set_history(GTK_OPTION_MENU(ctk_object->mnu_display_refresh), cur_idx); + gtk_widget_set_sensitive(ctk_object->mnu_display_refresh, True); + + g_signal_handlers_unblock_by_func + (G_OBJECT(ctk_object->mnu_display_refresh), + G_CALLBACK(display_refresh_changed), (gpointer) ctk_object); + + return; + + + /* Handle failures */ + fail: + gtk_widget_set_sensitive(ctk_object->mnu_display_refresh, False); + + +} /* setup_display_refresh_dropdown() */ + + + +/** setup_display_resolution_dropdown() ****************************** + * + * Generates the resolution dropdown based on the currently selected + * display. + * + **/ + +static void setup_display_resolution_dropdown(CtkSLIMM *ctk_object) +{ + GtkWidget *menu; + GtkWidget *menu_item; + + nvModeLinePtr modeline; + nvModeLinePtr cur_modeline = ctk_object->cur_modeline; + + int cur_idx = 0; /* Currently selected modeline (resolution) */ + + /* Create the modeline lookup table for the dropdown */ + if (ctk_object->resolution_table) { + free(ctk_object->resolution_table); + ctk_object->resolution_table_len = 0; + } + ctk_object->resolution_table = + (nvModeLinePtr *)calloc((ctk_object->num_modelines + 1), + sizeof(nvModeLinePtr)); + if (!ctk_object->resolution_table) { + goto fail; + } + + /* Start the menu generation */ + menu = gtk_menu_new(); + + modeline = ctk_object->modelines; + cur_idx = 0; + + /* Generate the resolution menu */ + + while (modeline) { + nvModeLinePtr m; + gchar *name; + + /* Find the first resolution that matches the current res W & H */ + m = ctk_object->modelines; + while (m != modeline) { + if (modeline->data.hdisplay == m->data.hdisplay && + modeline->data.vdisplay == m->data.vdisplay) { + break; + } + m = m->next; + } + + /* Add resolution if it is the first of its kind */ + if (m == modeline) { + + /* Set the current modeline idx if not already set by default */ + if (cur_modeline) { + if (!IS_NVIDIA_DEFAULT_MODE(cur_modeline) && + cur_modeline->data.hdisplay == modeline->data.hdisplay && + cur_modeline->data.vdisplay == modeline->data.vdisplay) { + cur_idx = ctk_object->resolution_table_len; + } + } + + name = g_strdup_printf("%dx%d", modeline->data.hdisplay, + modeline->data.vdisplay); + menu_item = gtk_menu_item_new_with_label(name); + g_free(name); + gtk_menu_shell_append(GTK_MENU_SHELL(menu), menu_item); + gtk_widget_show(menu_item); + ctk_object->resolution_table[ctk_object->resolution_table_len++] = + modeline; + } + modeline = modeline->next; + } + + /* Setup the menu and select the current mode */ + g_signal_handlers_block_by_func + (G_OBJECT(ctk_object->mnu_display_resolution), + G_CALLBACK(display_resolution_changed), (gpointer) ctk_object); + + gtk_option_menu_set_menu + (GTK_OPTION_MENU(ctk_object->mnu_display_resolution), menu); + + gtk_option_menu_set_history + (GTK_OPTION_MENU(ctk_object->mnu_display_resolution), cur_idx); + + /* If dropdown has only one item, disable menu selection */ + if (ctk_object->resolution_table_len > 1) { + gtk_widget_set_sensitive(ctk_object->mnu_display_resolution, True); + } else { + gtk_widget_set_sensitive(ctk_object->mnu_display_resolution, False); + } + + g_signal_handlers_unblock_by_func + (G_OBJECT(ctk_object->mnu_display_resolution), + G_CALLBACK(display_resolution_changed), (gpointer) ctk_object); + + return; + + /* Handle failures */ + fail: + + gtk_option_menu_remove_menu + (GTK_OPTION_MENU(ctk_object->mnu_display_resolution)); + + gtk_widget_set_sensitive(ctk_object->mnu_display_resolution, False); +} /* setup_display_resolution_dropdown() */ + + + +static void remove_duplicate_modelines(nvDisplayPtr display) +{ + nvModeLinePtr m, nextm; + m = display->modelines; + if (!m) { + return; + } + + /* Remove nvidia-auto-select modeline first */ + if (IS_NVIDIA_DEFAULT_MODE(m)) { + display->modelines = m->next; + if(m == display->cur_mode->modeline) { + display->cur_mode->modeline = m->next; + } + modeline_free(m); + display->num_modelines--; + } + + /* Remove duplicate modelines in active display - assuming sorted order*/ + for (m = display->modelines; m;) { + nextm = m->next; + if (!nextm) break; + + if (modelines_match(m, nextm)) { + /* nextm is a duplicate - remove it. */ + m->next = nextm->next; + if (nextm == display->cur_mode->modeline) { + display->cur_mode->modeline = m; + } + modeline_free(nextm); + display->num_modelines--; + } + else { + m = nextm; + } + } + +} + + +static Bool other_displays_have_modeline(nvLayoutPtr layout, + nvDisplayPtr display, + nvModeLinePtr modeline) +{ + nvGpuPtr gpu; + nvDisplayPtr d; + + for (gpu = layout->gpus; gpu; gpu = gpu->next) { + for (d = gpu->displays; d; d = d->next) { + if (display == d) continue; + if (d->modelines == NULL) continue; + if (!display_has_modeline(d, modeline)) { + return FALSE; + } + } + } + + return TRUE; +} + + +static nvDisplayPtr find_active_display(nvLayoutPtr layout) +{ + nvGpuPtr gpu; + nvDisplayPtr display; + for (gpu = layout->gpus; gpu; gpu = gpu->next) { + for (display = gpu->displays; display; display = display->next) { + if (display->modelines) return display; + } + } + return NULL; +} + + +static nvDisplayPtr intersect_modelines(nvLayoutPtr layout) +{ + nvDisplayPtr display; + nvModeLinePtr m, prev; + + /** + * + * Only need to go through one active display, and eliminate all modelines + * in this display that do not exist in other displays (being driven by + * this or any other GPU) + * + */ + display = find_active_display(layout); + if (display == NULL) return NULL; + + prev = NULL; + m = display->modelines; + while (m) { + if (!other_displays_have_modeline(layout, display, m)) { + if (prev) { + /* Remove past beginning */ + prev->next = m->next; + } else { + /* Remove first entry */ + display->modelines = m->next; + } + + if (m == display->cur_mode->modeline) { + display->cur_mode->modeline = 0; + } + modeline_free(m); + display->num_modelines--; + + if (prev) { + m = prev->next; + } else { + m = display->modelines; + } + } else { + prev = m; + m = m->next; + } + } + + remove_duplicate_modelines(display); + return display; +} + + +GtkWidget* ctk_slimm_new(NvCtrlAttributeHandle *handle, + CtkEvent *ctk_event, CtkConfig *ctk_config) +{ + GObject *object; + CtkSLIMM *ctk_slimm; + GtkWidget *label; + GtkWidget *vbox; + GtkWidget *hbox; + GtkWidget *banner; + GtkWidget *checkbutton; + GtkWidget *hseparator; + GtkWidget *table; + GtkWidget *button; + + GtkWidget *optionmenu, *menu, *menuitem, *spinbutton; + CtkSLIMM *ctk_object; + + gchar *err_str = NULL; + gchar *tmp; + gchar *sli_mode = NULL; + ReturnStatus ret; + + nvLayoutPtr layout; + nvDisplayPtr display; + + int iter; + + /* now, create the object */ + + object = g_object_new(CTK_TYPE_SLIMM, NULL); + ctk_slimm = CTK_SLIMM(object); + + /* cache the attribute handle */ + + ctk_slimm->handle = handle; + ctk_slimm->ctk_config = ctk_config; + ctk_object = ctk_slimm; + + /* + * Create the display configuration widgets + * + */ + + /* Load the layout structure from the X server */ + layout = layout_load_from_server(handle, &err_str); + + /* If we failed to load, tell the user why */ + if (err_str || !layout) { + gchar *str; + + if (!err_str) { + str = g_strdup("Unable to load SLI Mosaic Mode Settings page."); + } else { + str = g_strdup_printf("Unable to load SLI Mosaic Mode Settings " + "page:\n\n%s", err_str); + g_free(err_str); + } + + label = gtk_label_new(str); + g_free(str); + gtk_label_set_selectable(GTK_LABEL(label), TRUE); + gtk_container_add(GTK_CONTAINER(object), label); + + /* Show the GUI */ + gtk_widget_show_all(GTK_WIDGET(ctk_object)); + + return GTK_WIDGET(ctk_object); + } + + display = intersect_modelines(layout); + + if (display == NULL) { + gchar *str = g_strdup("Unable to find active display with " + "intersected modelines."); + label = gtk_label_new(str); + g_free(str); + gtk_label_set_selectable(GTK_LABEL(label), TRUE); + gtk_container_add(GTK_CONTAINER(object), label); + + /* Show the GUI */ + gtk_widget_show_all(GTK_WIDGET(ctk_object)); + + return GTK_WIDGET(ctk_object); + } + + + /* Extract modelines and cur_modeline and free layout structure */ + ctk_object->modelines = display->modelines; + if (display->cur_mode->modeline) { + ctk_object->cur_modeline = display->cur_mode->modeline; + } else if (ctk_object->modelines) { + ctk_object->cur_modeline = ctk_object->modelines; + } else { + /* This is an error. */ + return NULL; + } + ctk_object->num_modelines = display->num_modelines; + + display->modelines = NULL; + display->cur_mode->modeline = NULL; + display->num_modelines = 0; + layout_free(layout); + + /* set container properties of the object */ + + gtk_box_set_spacing(GTK_BOX(ctk_slimm), 10); + + /* banner */ + + banner = ctk_banner_image_new(BANNER_ARTWORK_SLIMM); + gtk_box_pack_start(GTK_BOX(ctk_slimm), banner, FALSE, FALSE, 0); + + vbox = gtk_vbox_new(FALSE, 5); + gtk_box_pack_start(GTK_BOX(ctk_slimm), vbox, TRUE, TRUE, 0); + + hbox = gtk_hbox_new(FALSE, 0); + checkbutton = gtk_check_button_new_with_label("Use SLI Mosaic Mode"); + gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(checkbutton), TRUE); + ctk_slimm->cbtn_slimm_enable = checkbutton; + g_signal_connect(G_OBJECT(checkbutton), "toggled", + G_CALLBACK(slimm_checkbox_toggled), + (gpointer) ctk_object); + gtk_box_pack_start(GTK_BOX(hbox), checkbutton, TRUE, TRUE, 0); + gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 0); + + hbox = gtk_hbox_new(FALSE, 0); + label = gtk_label_new("Display Configuration"); + hseparator = gtk_hseparator_new(); + gtk_widget_show(hseparator); + gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 10); + gtk_box_pack_start(GTK_BOX(hbox), hseparator, TRUE, TRUE, 10); + gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 0); + + + hbox = gtk_hbox_new(FALSE, 0); + + /* Option menu for Display Grid Configuration */ + optionmenu = gtk_option_menu_new(); + ctk_slimm->mnu_display_config = optionmenu; + menu = gtk_menu_new(); + + for (iter = 0; gridConfigs[iter].x && gridConfigs[iter].y; iter++) { + tmp = g_strdup_printf("%d x %d grid", + gridConfigs[iter].x, + gridConfigs[iter].y); + + menuitem = gtk_menu_item_new_with_label(tmp); + gtk_menu_shell_append(GTK_MENU_SHELL(menu), menuitem); + gtk_widget_show(menuitem); + } + + gtk_option_menu_set_menu(GTK_OPTION_MENU(optionmenu), menu); + gtk_option_menu_set_history(GTK_OPTION_MENU(ctk_slimm->mnu_display_config), 0); + + g_signal_connect(G_OBJECT(ctk_object->mnu_display_config), "changed", + G_CALLBACK(display_config_changed), + (gpointer) ctk_object); + + label = gtk_label_new(""); + gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 5); + gtk_box_pack_start(GTK_BOX(hbox), optionmenu, TRUE, TRUE, 5); + gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 0); + + table = gtk_table_new(20, 2, FALSE); + gtk_box_pack_start(GTK_BOX(vbox), table, FALSE, FALSE, 0); + gtk_table_set_row_spacings(GTK_TABLE(table), 3); + gtk_table_set_col_spacings(GTK_TABLE(table), 15); + gtk_container_set_border_width(GTK_CONTAINER(table), 5); + + hbox = gtk_hbox_new(FALSE, 0); + label = gtk_label_new("Resolution (per display)"); + hseparator = gtk_hseparator_new(); + gtk_widget_show(hseparator); + gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 5); + gtk_box_pack_start(GTK_BOX(hbox), hseparator, TRUE, TRUE, 5); + + gtk_table_attach(GTK_TABLE(table), hbox, 0, 1, 2, 3, GTK_EXPAND | GTK_FILL, + GTK_EXPAND | GTK_FILL, 0.5, 0.5); + + hbox = gtk_hbox_new(FALSE, 0); + label = gtk_label_new("Refresh Rate"); + hseparator = gtk_hseparator_new(); + gtk_widget_show(hseparator); + gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 5); + gtk_box_pack_start(GTK_BOX(hbox), hseparator, TRUE, TRUE, 5); + gtk_table_attach(GTK_TABLE(table), hbox, 1, 2, 2, 3, GTK_EXPAND | GTK_FILL, + GTK_EXPAND | GTK_FILL, 0.5, 0.5); + + + /* Option menu for resolutions */ + hbox = gtk_hbox_new(FALSE, 0); + optionmenu = gtk_option_menu_new(); + ctk_slimm->mnu_display_resolution = optionmenu; + + /* Create a drop down menu */ + setup_display_resolution_dropdown(ctk_object); + label = gtk_label_new(""); + gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 5); + gtk_box_pack_end(GTK_BOX(hbox), ctk_slimm->mnu_display_resolution, + TRUE, TRUE, 0); + gtk_table_attach(GTK_TABLE(table), hbox, 0, 1, 3, 4, GTK_EXPAND | GTK_FILL, + GTK_EXPAND | GTK_FILL, 0.5, 0.5); + g_signal_connect(G_OBJECT(ctk_object->mnu_display_resolution), "changed", + G_CALLBACK(display_resolution_changed), + (gpointer) ctk_object); + + + /* Option menu for refresh rates */ + optionmenu = gtk_option_menu_new(); + hbox = gtk_hbox_new(FALSE, 0); + ctk_slimm->mnu_display_refresh = optionmenu; + setup_display_refresh_dropdown(ctk_object); + g_signal_connect(G_OBJECT(ctk_object->mnu_display_refresh), "changed", + G_CALLBACK(display_refresh_changed), + (gpointer) ctk_object); + + label = gtk_label_new(""); + gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 5); + gtk_box_pack_end(GTK_BOX(hbox), optionmenu, TRUE, TRUE, 0); + + gtk_table_attach(GTK_TABLE(table), hbox, 1, 2, 3, 4, GTK_EXPAND | GTK_FILL, + GTK_EXPAND | GTK_FILL, 0.5, 0.5); + + /* Edge Overlap section */ + hbox = gtk_hbox_new(FALSE, 0); + label = gtk_label_new("Edge Overlap"); + hseparator = gtk_hseparator_new(); + gtk_widget_show(hseparator); + gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 5); + gtk_box_pack_start(GTK_BOX(hbox), hseparator, TRUE, TRUE, 5); + + gtk_table_attach(GTK_TABLE(table), hbox, 0, 1, 8, 9, GTK_EXPAND | GTK_FILL, + GTK_EXPAND | GTK_FILL, 0.5, 0.5); + + hbox = gtk_hbox_new(FALSE, 0); + label = gtk_label_new("Total Size"); + hseparator = gtk_hseparator_new(); + gtk_widget_show(hseparator); + gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 5); + gtk_box_pack_start(GTK_BOX(hbox), hseparator, TRUE, TRUE, 5); + gtk_table_attach(GTK_TABLE(table), hbox, 1, 2, 8, 9, GTK_EXPAND | GTK_FILL, + GTK_EXPAND | GTK_FILL, 0.5, 0.5); + + + hbox = gtk_hbox_new(FALSE, 0); + label = gtk_label_new("Horizontal:"); + gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 10); + + spinbutton = gtk_spin_button_new_with_range(-ctk_object->cur_modeline->data.hdisplay, + ctk_object->cur_modeline->data.hdisplay, + 1); + + ctk_slimm->spbtn_hedge_overlap = spinbutton; + gtk_spin_button_set_value(GTK_SPIN_BUTTON(spinbutton), 0); + + g_signal_connect(G_OBJECT(ctk_object->spbtn_hedge_overlap), "value-changed", + G_CALLBACK(txt_overlap_activated), + (gpointer) ctk_object); + + gtk_box_pack_start(GTK_BOX(hbox), spinbutton, FALSE, FALSE, 5); + + label = gtk_label_new("pixels"); + gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 5); + + gtk_table_attach(GTK_TABLE(table), hbox, 0, 1, 9, 10, GTK_EXPAND | GTK_FILL, + GTK_EXPAND | GTK_FILL, 0.5, 0.5); + + + hbox = gtk_hbox_new(FALSE, 0); + label = gtk_label_new("Vertical: "); + gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 10); + + spinbutton = gtk_spin_button_new_with_range(-ctk_object->cur_modeline->data.vdisplay, + ctk_object->cur_modeline->data.vdisplay, + 1); + ctk_slimm->spbtn_vedge_overlap = spinbutton; + gtk_spin_button_set_value(GTK_SPIN_BUTTON(spinbutton), 0); + + g_signal_connect(G_OBJECT(ctk_object->spbtn_vedge_overlap), "value-changed", + G_CALLBACK(txt_overlap_activated), + (gpointer) ctk_object); + + gtk_box_pack_start(GTK_BOX(hbox), spinbutton, FALSE, FALSE, 5); + + label = gtk_label_new("pixels"); + gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 5); + + gtk_table_attach(GTK_TABLE(table), hbox, 0, 1, 10, 11, GTK_EXPAND | GTK_FILL, + GTK_EXPAND | GTK_FILL, 0.5, 0.5); + + label = gtk_label_new("NULL"); + ctk_slimm->lbl_total_size = label; + setup_total_size_label(ctk_slimm); + + hbox = gtk_hbox_new(FALSE, 0); + ctk_slimm->box_total_size = hbox; + gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 10); + gtk_table_attach(GTK_TABLE(table), hbox, 1, 2, 9, 10, GTK_EXPAND | GTK_FILL, + GTK_EXPAND | GTK_FILL, 0.5, 0.5); + + label = gtk_label_new("Save to X Configuration File"); + hbox = gtk_hbox_new(FALSE, 0); + button = gtk_button_new(); + ctk_slimm->btn_save_config = button; + g_signal_connect(G_OBJECT(ctk_object->btn_save_config), "clicked", + G_CALLBACK(save_xconfig_button_clicked), + (gpointer) ctk_object); + + gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 0); + gtk_container_add(GTK_CONTAINER(button), hbox); + + gtk_table_attach(GTK_TABLE(table), button, 1, 2, 19, 20, GTK_EXPAND | GTK_FILL, + GTK_EXPAND | GTK_FILL, 0, 0); + + /* If current SLI Mode != Mosaic, disable UI elements initially */ + ret = NvCtrlGetStringAttribute(ctk_slimm->handle, + NV_CTRL_STRING_SLI_MODE, + &sli_mode); + if ((ret != NvCtrlSuccess) || + (ret == NvCtrlSuccess && g_ascii_strcasecmp(sli_mode, "Mosaic"))) { + gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(checkbutton), FALSE); + slimm_checkbox_toggled(ctk_slimm->cbtn_slimm_enable, (gpointer) ctk_slimm); + } + + if (sli_mode) { + XFree(sli_mode); + } + + gtk_widget_show_all(GTK_WIDGET(object)); + + return GTK_WIDGET(object); +} + + + +GtkTextBuffer *ctk_slimm_create_help(GtkTextTagTable *table, + const gchar *slimm_name) +{ + GtkTextIter i; + GtkTextBuffer *b; + + b = gtk_text_buffer_new(table); + + gtk_text_buffer_get_iter_at_offset(b, &i, 0); + + ctk_help_title(b, &i, "SLI Mosaic Mode Settings Help"); + + ctk_help_para(b, &i, "This page allows easy configuration " + "of SLI Mosaic Mode."); + + ctk_help_heading(b, &i, "Use SLI Mosaic Mode"); + ctk_help_para(b, &i, "This checkbox controls whether SLI Mosaic Mode is enabled " + "or disabled."); + + ctk_help_heading(b, &i, "Display Configuration"); + ctk_help_para(b, &i, "This drop down menu allows selection of the display grid " + "configuration for SLI Mosaic Mode."); + + ctk_help_heading(b, &i, "Resolution"); + ctk_help_para(b, &i, "This drop down menu allows selection of the resolution to " + "use for each of the displays in SLI Mosaic Mode. Note that only " + "the resolutions that are available for each display will be " + "shown here."); + + ctk_help_heading(b, &i, "Refresh Rate"); + ctk_help_para(b, &i, "This drop down menu allows selection of the refresh rate " + "to use for each of the displays in SLI Mosaic Mode. By default " + "the highest refresh rate each of the displays can achieve at " + "the selected resolution is chosen. This combo box gets updated " + "when a new resolution is picked."); + + ctk_help_heading(b, &i, "Edge Overlap"); + ctk_help_para(b, &i, "These two controls allow the user to specify the " + "Horizontal and Vertical Edge Overlap values. The displays " + "will overlap by the specified number of pixels when forming " + "the grid configuration. For example, 4 flat panel displays " + "forming a 2 x 2 grid in SLI Mosaic Mode with a resolution of " + "1600x1200 and a Horizontal and Vertical Edge overlap of 50 " + "will generate the following MetaMode: \"1600x1200+0+0," + "1600x1200+1550+0,1600x1200+0+1150,1600x1200+1550+1150\"."); + + ctk_help_heading(b, &i, "Total Size"); + ctk_help_para(b, &i, "This is the total size of the X screen formed using all " + "displays in SLI Mosaic Mode."); + + ctk_help_heading(b, &i, "Save to X Configuration File"); + ctk_help_para(b, &i, "Clicking this button saves the selected SLI Mosaic Mode " + "settings into the X Configuration File."); + + ctk_help_finish(b); + + return b; +} + + diff --git a/src/gtk+-2.x/ctkslimm.h b/src/gtk+-2.x/ctkslimm.h new file mode 100644 index 0000000..1321f5c --- /dev/null +++ b/src/gtk+-2.x/ctkslimm.h @@ -0,0 +1,99 @@ +/* + * nvidia-settings: A tool for configuring the NVIDIA X driver on Unix + * and Linux systems. + * + * Copyright (C) 2004 NVIDIA Corporation. + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of Version 2 of the GNU General Public + * License as published by the Free Software Foundation. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See Version 2 + * of the GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the: + * + * Free Software Foundation, Inc. + * 59 Temple Place - Suite 330 + * Boston, MA 02111-1307, USA + * + */ + +#ifndef __CTK_SLIMM_H__ +#define __CTK_SLIMM_H__ + +#include <gtk/gtk.h> + +#include "NvCtrlAttributes.h" +#include "ctkevent.h" +#include "ctkdisplaylayout.h" +#include "ctkconfig.h" + +#include "XF86Config-parser/xf86Parser.h" + +G_BEGIN_DECLS + +#define CTK_TYPE_SLIMM (ctk_slimm_get_type()) + +#define CTK_SLIMM(obj) \ + (G_TYPE_CHECK_INSTANCE_CAST ((obj), CTK_TYPE_SLIMM, CtkSLIMM)) + +#define CTK_SLIMM_CLASS(klass) \ + (G_TYPE_CHECK_CLASS_CAST ((klass), CTK_TYPE_SLIMM, CtkSLIMMClass)) + +#define CTK_IS_SLIMM(obj) \ + (G_TYPE_CHECK_INSTANCE_TYPE ((obj), CTK_TYPE_SLIMM)) + +#define CTK_IS_SLIMM_CLASS(class) \ + (G_TYPE_CHECK_CLASS_TYPE ((klass), CTK_TYPE_SLIMM)) + +#define CTK_SLIMM_GET_CLASS(obj) \ + (G_TYPE_INSTANCE_GET_CLASS ((obj), CTK_TYPE_SLIMM, CtkSLIMMClass)) + +typedef struct _CtkSLIMM CtkSLIMM; +typedef struct _CtkSLIMMClass CtkSLIMMClass; + +struct _CtkSLIMM +{ + GtkVBox parent; + + NvCtrlAttributeHandle *handle; + CtkConfig *ctk_config; + + GtkWidget *mnu_display_config; + GtkWidget *mnu_display_resolution; + GtkWidget *mnu_display_refresh; + GtkWidget *spbtn_hedge_overlap; + GtkWidget *spbtn_vedge_overlap; + GtkWidget *lbl_total_size; + GtkWidget *box_total_size; + GtkWidget *btn_save_config; + GtkWidget *cbtn_slimm_enable; + nvModeLinePtr *resolution_table; + nvModeLinePtr *refresh_table; + int resolution_table_len; + int refresh_table_len; + gboolean mnu_refresh_disabled; + nvModeLinePtr modelines; + nvModeLinePtr cur_modeline; + gint num_modelines; +}; + +struct _CtkSLIMMClass +{ + GtkVBoxClass parent_class; +}; + +GType ctk_slimm_get_type (void) G_GNUC_CONST; +GtkWidget* ctk_slimm_new (NvCtrlAttributeHandle *handle, + CtkEvent *ctk_event, CtkConfig *ctk_config); + +GtkTextBuffer *ctk_slimm_create_help(GtkTextTagTable *, const gchar *); + +G_END_DECLS + +#endif /* __CTK_SLIMM_H__ */ + diff --git a/src/gtk+-2.x/ctkthermal.c b/src/gtk+-2.x/ctkthermal.c index cbcae4b..1bab13b 100644 --- a/src/gtk+-2.x/ctkthermal.c +++ b/src/gtk+-2.x/ctkthermal.c @@ -28,7 +28,7 @@ #include "ctkhelp.h" #include "ctkthermal.h" #include "ctkgauge.h" -#include "ctkimage.h" +#include "ctkbanner.h" #define FRAME_PADDING 10 #define DEFAULT_UPDATE_THERMAL_INFO_TIME_INTERVAL 1000 diff --git a/src/gtk+-2.x/ctkui.c b/src/gtk+-2.x/ctkui.c index a471985..02c6fec 100644 --- a/src/gtk+-2.x/ctkui.c +++ b/src/gtk+-2.x/ctkui.c @@ -45,7 +45,8 @@ char *ctk_get_display(void) void ctk_main(NvCtrlAttributeHandle **screen_handles, int num_screen_handles, NvCtrlAttributeHandle **gpu_handles, int num_gpu_handles, NvCtrlAttributeHandle **vcs_handles, int num_vcs_handles, - ParsedAttribute *p, ConfigProperties *conf) + ParsedAttribute *p, ConfigProperties *conf, + CtrlHandles *pCtrlHandles) { int i, has_nv_control = FALSE; GList *list = NULL; @@ -54,8 +55,7 @@ void ctk_main(NvCtrlAttributeHandle **screen_handles, int num_screen_handles, ctk_window_new(screen_handles, num_screen_handles, gpu_handles, num_gpu_handles, vcs_handles, num_vcs_handles, - p, conf); - + p, conf, pCtrlHandles); for (i = 0; i < num_screen_handles; i++) { if (screen_handles[i]) { has_nv_control = TRUE; diff --git a/src/gtk+-2.x/ctkui.h b/src/gtk+-2.x/ctkui.h index 4aa8a85..e8a16de 100644 --- a/src/gtk+-2.x/ctkui.h +++ b/src/gtk+-2.x/ctkui.h @@ -37,6 +37,8 @@ void ctk_main(NvCtrlAttributeHandle **, int, NvCtrlAttributeHandle **, int, NvCtrlAttributeHandle **, int, ParsedAttribute*, - ConfigProperties*); + ConfigProperties*, + CtrlHandles*); + #endif /* __CTK_UI_H__ */ diff --git a/src/gtk+-2.x/ctkvcs.c b/src/gtk+-2.x/ctkvcs.c index 5b4c157..6a09cda 100644 --- a/src/gtk+-2.x/ctkvcs.c +++ b/src/gtk+-2.x/ctkvcs.c @@ -29,7 +29,7 @@ #include <gdk/gdkx.h> #include <X11/Xlib.h> -#include "ctkimage.h" +#include "ctkbanner.h" #include "ctkvcs.h" #include "ctkevent.h" diff --git a/src/gtk+-2.x/ctkwindow.c b/src/gtk+-2.x/ctkwindow.c index 2d1f010..3eed0e6 100644 --- a/src/gtk+-2.x/ctkwindow.c +++ b/src/gtk+-2.x/ctkwindow.c @@ -43,6 +43,7 @@ #include "ctkconfig.h" #include "ctkscreen.h" +#include "ctkslimm.h" #include "ctkgpu.h" #include "ctkcolorcorrection.h" #include "ctkxvideo.h" @@ -114,8 +115,6 @@ static GtkWidget *create_quit_dialog(CtkWindow *ctk_window); static void quit_response(GtkWidget *, gint, gpointer); static void save_settings_and_exit(CtkWindow *); -static void add_special_config_file_attributes(CtkWindow *ctk_window); - static void add_display_devices(CtkWindow *ctk_window, GtkTreeIter *iter, NvCtrlAttributeHandle *handle, CtkEvent *ctk_event, @@ -374,7 +373,8 @@ GtkWidget *ctk_window_new(NvCtrlAttributeHandle **screen_handles, gint num_gpu_handles, NvCtrlAttributeHandle **vcs_handles, gint num_vcs_handles, - ParsedAttribute *p, ConfigProperties *conf) + ParsedAttribute *p, ConfigProperties *conf, + CtrlHandles *pCtrlHandles) { GObject *object; CtkWindow *ctk_window; @@ -413,7 +413,7 @@ GtkWidget *ctk_window_new(NvCtrlAttributeHandle **screen_handles, /* create the config object */ - ctk_window->ctk_config = CTK_CONFIG(ctk_config_new(conf)); + ctk_window->ctk_config = CTK_CONFIG(ctk_config_new(conf, pCtrlHandles)); ctk_config = ctk_window->ctk_config; /* create the quit dialog */ @@ -635,6 +635,17 @@ GtkWidget *ctk_window_new(NvCtrlAttributeHandle **screen_handles, CTK_WINDOW_CONFIG_FILE_ATTRIBUTES_FUNC_COLUMN, NULL, -1); + if (num_vcs_handles) { + /* SLI Mosaic Mode information */ + + child = ctk_slimm_new(screen_handle, ctk_event, ctk_config); + if (child) { + help = ctk_slimm_create_help(tag_table, "SLI Mosaic Mode Settings"); + add_page(child, help, ctk_window, &iter, NULL, + "SLI Mosaic Mode Settings", NULL, NULL, NULL); + } + } + /* color correction */ child = ctk_color_correction_new(screen_handle, ctk_config, @@ -1107,7 +1118,7 @@ static void quit_response(GtkWidget *button, gint response, gpointer user_data) * saved to the config file. */ -static void add_special_config_file_attributes(CtkWindow *ctk_window) +void add_special_config_file_attributes(CtkWindow *ctk_window) { GtkTreeModel *model = GTK_TREE_MODEL(ctk_window->tree_store); GtkTreeIter iter; diff --git a/src/gtk+-2.x/ctkwindow.h b/src/gtk+-2.x/ctkwindow.h index 3f5749a..458327b 100644 --- a/src/gtk+-2.x/ctkwindow.h +++ b/src/gtk+-2.x/ctkwindow.h @@ -94,7 +94,10 @@ GType ctk_window_get_type (void) G_GNUC_CONST; GtkWidget* ctk_window_new (NvCtrlAttributeHandle**, gint, NvCtrlAttributeHandle**, gint, NvCtrlAttributeHandle**, gint, - ParsedAttribute *, ConfigProperties *conf); + ParsedAttribute *, ConfigProperties *conf, + CtrlHandles *pCtrlHandles); + +void add_special_config_file_attributes(CtkWindow *ctk_window); G_END_DECLS diff --git a/src/gtk+-2.x/ctkxvideo.c b/src/gtk+-2.x/ctkxvideo.c index 5f5ff6a..0810de2 100644 --- a/src/gtk+-2.x/ctkxvideo.c +++ b/src/gtk+-2.x/ctkxvideo.c @@ -26,7 +26,7 @@ #include <gtk/gtk.h> #include "NvCtrlAttributes.h" -#include "ctkimage.h" +#include "ctkbanner.h" #include "ctkxvideo.h" #include "ctkscale.h" diff --git a/src/image_data/HOWTO-ADD-IMAGES b/src/image_data/HOWTO-ADD-IMAGES index 903cf84..14cb788 100644 --- a/src/image_data/HOWTO-ADD-IMAGES +++ b/src/image_data/HOWTO-ADD-IMAGES @@ -1,12 +1,23 @@ If I have a png, how do I build it into nvidia-settings? - - run `gdk-pixbuf-csource --struct --name=foo_pixdata foo.png > foo_pixdata.h` - - convert the pixel_data array embedded in the foo_pixdata structure - to a stand-alone guint8 array (see existing images as a reference), add - it to the top of the header file and reference it in the structure. - *** TODO: this should be automated or folded into the first step somehow. *** - - add to the BannerArtworkType enum in image.h + - make sure you have the gdk-pixbuf-csource binary somewhere + in your path. + + - run './png_to_c_header.sh foo.png' This will generate the foo_pixdata.h + header file that can then be included in the nvidia-settings source code. + + - add a foo_pixdata.h entry to the .../image_data/Makefile.inc + + (Also follow these next steps if this image is to be used in the banner) + + - add to the BannerArtworkType enum in ctkbanner.h + - include foo_pixdata.h in ctkbanner.c + - add an entry to the ArtworkTable[] in ctkbanner.c:select_artwork() - - add an entry to the .../image_data/Makefile.inc + + +NOTE: Regenerating all images can be done like so: + + for file in `ls *.png`; do ./png_to_c_header.sh $file; done diff --git a/src/image_data/Makefile.inc b/src/image_data/Makefile.inc index 0a9707e..611f7ae 100644 --- a/src/image_data/Makefile.inc +++ b/src/image_data/Makefile.inc @@ -26,57 +26,53 @@ # distribution # -SRC += \ - image.c - EXTRA_DIST += \ - Makefile.inc \ - HOWTO-ADD-IMAGES \ - image.h \ - rotate_left_off.h \ - rotate_left_on.h \ - rotate_right_off.h \ - rotate_right_on.h \ - rotation_orientation_horiz_flipped.h \ - rotation_orientation_horiz.h \ - rotation_orientation_vert_flipped.h \ - rotation_orientation_vert.h \ - bnc_cable.h \ - led_green.h \ - led_red.h \ - led_grey.h \ - rj45_input.h \ - rj45_output.h \ - rj45_unused.h \ - crt_pixdata.h \ - dfp_pixdata.h \ - tv_pixdata.h \ - background_pixdata.h \ - logo_pixdata.h \ - nvidia_icon_pixdata.h \ antialias_pixdata.h \ - thermal_pixdata.h \ - x_pixdata.h \ + background_pixdata.h \ background_tall_pixdata.h \ + bnc_cable_pixdata.h \ bsd_pixdata.h \ clock_pixdata.h \ color_pixdata.h \ config_pixdata.h \ + crt_pixdata.h \ cursor_shadow_pixdata.h \ + dfp_pixdata.h \ display_config_pixdata.h \ framelock_pixdata.h \ glx_pixdata.h \ gpu_pixdata.h \ help_pixdata.h \ + HOWTO-ADD-IMAGES \ + led_green_pixdata.h \ + led_grey_pixdata.h \ + led_red_pixdata.h \ + logo_pixdata.h \ logo_tall_pixdata.h \ + Makefile.inc \ + nvidia_icon_pixdata.h \ opengl_pixdata.h \ penguin_pixdata.h \ + png_to_c_header.sh \ + rj45_input_pixdata.h \ + rj45_output_pixdata.h \ + rj45_unused_pixdata.h \ + rotate_left_off_pixdata.h \ + rotate_left_on_pixdata.h \ + rotate_right_off_pixdata.h \ + rotate_right_on_pixdata.h \ + rotation_orientation_horz_pixdata.h \ + rotation_orientation_vert_pixdata.h \ rotation_pixdata.h \ sdi_pixdata.h \ + sdi_shared_sync_bnc_pixdata.h \ + slimm_pixdata.h \ solaris_pixdata.h \ + thermal_pixdata.h \ + tv_pixdata.h \ vcs_pixdata.h \ - xvideo_pixdata.h \ - sdi_shared_sync_bnc_pixdata.h + x_pixdata.h \ + xvideo_pixdata.h dist_list:: @ echo $(SRC) $(EXTRA_DIST) diff --git a/src/image_data/bnc_cable.h b/src/image_data/bnc_cable.h deleted file mode 100644 index d627072..0000000 --- a/src/image_data/bnc_cable.h +++ /dev/null @@ -1,480 +0,0 @@ -/* GIMP RGBA C-Source image dump 1-byte-run-length-encoded (bnc_cable.c) */
-
-#include "image.h"
-
-static const nv_image_t bnc_cable = {
- 64, 64, 4, 0,
- "\224\372\372\372\0\6\371\371\371\0\366\366\366\0\265\265\265\0\356\356\356"
- "\0\273\273\273\0\261\260\261\0\202\332\332\332\0\6\311\311\311\0\225\224"
- "\225\0\256\253\256\0\315\311\315\0\304\302\304\0\216\215\216\0\214\0\0\0"
- "\0\14\11\11\11\1\\\\\\\0fff\0[[[\0TWT\0WUW\0XXX\0WXW\0UUU\0RRR\0MLM\0FFF"
- "\0\206\377\377\377\0\224\372\372\372\0\6\371\371\371\0\366\366\366\0\265"
- "\265\265\0\356\356\356\0\273\273\273\0\261\260\261\0\202\332\332\332\0\6"
- "\311\311\311\0\225\224\225\0\256\253\256\0\315\311\315\0\304\302\304\0\215"
- "\214\215\0\213\0\0\0\0\6\1\1\1\1KKK\14iih\5[\\[\0TTU\0SSS\0\202WWW\0\5US"
- "U\0RPR\0LMM\0FGF\0???\0\206\377\377\377\0\224\372\372\372\0\6\371\371\371"
- "\0\366\366\366\0\265\265\265\0\356\356\356\0\273\273\273\0\261\260\261\0"
- "\202\332\332\332\0\6\311\311\311\0\225\224\225\0\256\253\256\0\315\311\315"
- "\0\304\302\304\0\214\213\214\0\213\0\0\0\0\5=>=!jjj\33\\\\\\\20WUU\10QQS"
- "\1\202UUU\0\6SSU\0RPR\0MMM\0GIG\0@@@\0""888\0\206\377\377\377\0\224\372\372"
- "\372\0\6\371\371\371\0\366\366\366\0\265\265\265\0\356\356\356\0\273\273"
- "\273\0\261\260\261\0\202\332\332\332\0\10\311\311\311\0\225\224\225\0\256"
- "\253\256\0\315\311\315\0\303\301\303\0\211\210\211\0\203\204\203\0\1\1\1"
- "\0\210\0\0\0\0\16&$&/kik7___*WWW\37PQQ\24SSR\14SUS\4RSS\0RPP\0MMM\0GII\0"
- "AC@\0""888\0""777\0\206\377\377\377\0\224\372\372\372\0\6\371\371\371\0\366"
- "\366\366\0\265\265\265\0\356\356\356\0\273\273\273\0\261\260\261\0\202\332"
- "\332\332\0\7\311\311\311\0\225\224\225\0\256\253\256\0\315\311\315\0\303"
- "\301\303\0\207\206\207\0\200\202\200\0\210\0\0\0\0\17\23\23\23*a`aX`aaJX"
- "WW<QRQ0PRP#SSS\31RRS\17PPP\6NMM\0III\0CCC\0:::\0""757\0""899\0\206\377\377"
- "\377\0\224\372\372\372\0\6\371\371\371\0\366\366\366\0\265\265\265\0\356"
- "\356\356\0\273\273\273\0\261\260\261\0\202\332\332\332\0\7\311\311\311\0"
- "\225\224\225\0\256\253\256\0\315\311\315\0\302\300\302\0\207\206\207\0\177"
- "\201\177\0\207\0\0\0\0\20\16\15\16\40XXX|dddmXYX_RPRPPNPBRPR5RRR)PPP\35L"
- "MM\23III\12CCC\3===\0""757\0""888\0===\0\206\377\377\377\0\224\372\372\372"
- "\0\6\371\371\371\0\366\366\366\0\265\265\265\0\356\356\356\0\273\273\273"
- "\0\261\260\261\0\202\332\332\332\0\7\311\311\311\0\225\224\225\0\256\253"
- "\256\0\315\311\315\0\302\300\302\0\207\206\207\0\177\201\177\0\206\0\0\0"
- "\0\21\1\1\1\21KKK\236fff\221YYY\203PPRtNMNePPPVPPPINPN:LLL.III\"CEC\30<="
- "=\16""775\6""777\0;;;\0BBB\0\206\377\377\377\0\224\372\372\372\0\6\371\371"
- "\371\0\366\366\366\0\265\265\265\0\356\356\356\0\273\273\273\0\261\260\261"
- "\0\202\332\332\332\0\7\311\311\311\0\225\224\225\0\256\253\256\0\315\311"
- "\315\0\302\300\302\0\207\206\207\0\177\200\177\0\205\0\0\0\0\22\1\1\1\1>"
- ">>\265fif\265YYY\247RRR\230MMM\211MMNzNNNkNNN]LLLNIII@CCC3==?'777\34""57"
- "5\22""999\11@>>\2;<<\0\206\377\377\377\0\224\372\372\372\0\6\371\371\371"
- "\0\366\366\366\0\265\265\265\0\356\356\356\0\273\273\273\0\261\260\261\0"
- "\202\332\332\332\0\7\311\311\311\0\225\224\225\0\256\253\256\0\315\311\315"
- "\0\302\300\302\0\206\205\206\0~\177~\0\205\0\0\0\0\22""000\261gfg\324ZZZ"
- "\310RRR\273MMM\254MLL\237MMN\217MMM\201JLLqGIIcEEET???G8789555,899\40>>>"
- "\26CBB\15\31\31\31\3\206\377\377\377\0\224\372\372\372\0\6\371\371\371\0"
- "\366\366\366\0\265\265\265\0\356\356\356\0\273\273\273\0\261\260\261\0\202"
- "\332\332\332\0\10\311\311\311\0\225\224\225\0\256\253\256\0\315\311\315\0"
- "\302\300\302\0\206\205\206\0|}|\0ccc\0\203\0\0\0\0\23%%%\244ddf\356\\\\Z"
- "\344RRR\332LLL\316LJL\301MLM\263LLL\245JJJ\226GGG\207CCCx?=?i888[333L888"
- "?;;;1CEC&)))\27\0\0\0\0\206\377\377\377\0\224\372\372\372\0\6\371\371\371"
- "\0\366\366\366\0\265\265\265\0\356\356\356\0\273\273\273\0\261\260\261\0"
- "\202\332\332\332\0\10\311\311\311\0\225\224\225\0\256\253\256\0\315\311\315"
- "\0\302\300\302\0\205\204\205\0{|{\0aaa\0\202\0\0\0\0\24\27\27\27\204aaa\377"
- "\\\\\\\372RRR\363LJL\351III\337JJL\323JJJ\306JIJ\270GGG\252ECC\235???\215"
- "888~333p777a;;;RBBBD6667\0\1\1\4\0\0\0\0\206\377\377\377\0\224\372\372\372"
- "\0\6\371\371\371\0\366\366\366\0\265\265\265\0\356\356\356\0\273\273\273"
- "\0\261\260\261\0\202\332\332\332\0\34\311\311\311\0\225\224\225\0\256\253"
- "\256\0\315\311\315\0\302\300\302\0\205\204\205\0z|z\0```\0\0\0\0\0\17\16"
- "\17_YYY\377^\\\\\377RRR\377LLL\375GGG\366IJI\355JJJ\343III\327FFF\314CCC"
- "\276???\260989\242333\223555\205999v@>@g<><X\12\12\12\32\202\0\0\0\0\206"
- "\377\377\377\0\224\372\372\372\0\6\371\371\371\0\366\366\366\0\265\265\265"
- "\0\356\356\356\0\274\274\274\0\261\260\261\0\202\332\332\332\0\33\311\311"
- "\311\0\225\224\225\0\256\252\256\0\315\311\315\0\302\300\302\0\205\204\205"
- "\0yzy\0^^^\0\1\1\1?QQQ\377^^\\\377PRR\377JII\377FFF\377GGG\377GGI\371GGG"
- "\361FEF\350CCC\335???\321898\304323\267535\251999\232>==\213BBB|\31\31\31"
- "G\203\0\0\0\0\206\377\377\377\0\224\372\372\372\0\"\371\371\371\0\366\366"
- "\366\0\265\265\265\0\357\357\357\0\275\275\275\0\263\261\263\0\334\334\334"
- "\27\334\334\334\31\312\312\312i\225\223\225\230\255\251\255\302\314\310\314"
- "\306\300\276\300\310\202\201\202\302uvu\252XWX\243;<;\365EEE\377BBB\377F"
- "FF\377BBB\377EEE\377FFF\377EFE\377CCC\374@A@\365===\354898\341232\326333"
- "\312888\275===\257ECE\241%''\177\204\0\0\0\0\206\377\377\377\0\225\372\372"
- "\372\0!\367\367\367\0\270\270\270\0\362\362\362\22\300\300\300f\266\265\266"
- "\271\257\257\257\361\237\237\237\377\267\267\267\377\255\255\255\377\325"
- "\325\325\377\302\302\302\377\317\317\317\377\255\255\255\377\256\257\256"
- "\377\236\241\236\377\257\264\257\361\241\244\241\354ccc\366444\376666\377"
- "BDB\377CCA\377AAA\377@??\377===\377989\370222\360232\346888\333;=;\317CC"
- "C\302002\260\1\1\1\4\204\0\0\0\0\206\377\377\377\0\223\372\372\372\0\203"
- "\373\373\373\0\37\275\275\275d\215\215\215\366\177\177\177\377\210\210\210"
- "\377\225\225\225\377\260\260\260\377\253\253\253\377\320\321\320\377\260"
- "\260\260\377\335\336\335\377\274\273\274\376\327\327\327\374\312\313\312"
- "\371\263\264\263\365\330\332\330\361\355\356\355\354\376\377\376\360\307"
- "\310\307\364VWV\374///\377>>>\377===\377;;;\377888\377222\377222\373777\364"
- ";;;\352AAA\340999\325\5\5\4*\205\0\0\0\0\206\377\377\377\0\222\372\372\372"
- "\0\31\373\373\373\0\375\375\375\0\377\377\377\0\301\301\301\250rrr\377uu"
- "u\377\205\205\205\377\223\225\223\377\252\253\252\377\245\245\245\377\312"
- "\312\312\377\245\246\245\377\327\326\327\377\262\261\262\377\276\275\276"
- "\376\331\332\331\376\261\261\261\375\333\333\333\373\302\300\302\373\305"
- "\305\305\373\366\367\366\372\377\377\377\374\352\355\352\375oqo\376323\377"
- "\202777\377\202222\377\5""555\377999\376>@@\367>@>\357\21\20\22f\206\0\0"
- "\0\0\206\377\377\377\0\214\372\372\372\0\205\373\373\373\0\"\374\374\374"
- "\0\375\375\375\0\377\377\377\0\306\306\306\266ttt\377utu\377\201\201\201"
- "\377\216\214\216\377\245\246\245\377\237\236\237\377\304\304\304\377\237"
- "\236\237\377\314\314\314\377\273\272\273\377\256\256\256\377\343\344\343"
- "\377\245\245\245\377\322\322\322\377\317\320\317\376\275\276\275\376\326"
- "\326\326\376\311\311\311\376\323\324\323\376\326\331\326\376\245\247\245"
- "\377MNM\376212\377111\377222\377557\377;99\377>>>\377BCB\377\27\30\27\241"
- "\207\0\0\0\0\206\377\377\377\0\213\363\363\363\0\202\364\364\364\0%\343\341"
- "\343\0\336\336\336\0\356\356\356\0\343\343\343\0\352\352\352\0\341\341\341"
- "\0\326\327\326\202\203\203\203\377ono\377}|}\377\211\210\211\377\244\243"
- "\244\377\234\235\234\377\300\300\300\377\245\243\245\377\300\300\300\377"
- "\311\310\311\377\243\242\243\377\352\352\352\377\261\261\261\377\314\314"
- "\314\377\330\330\330\377\275\276\275\377\325\325\325\377\323\322\323\377"
- "\312\313\312\377\325\326\325\377\317\320\317\377z{z\377CIC\377EIE\377///"
- "\377333\377999\377=>>\377ECE\377$#$\324\210\0\0\0\0\206\377\377\377\0\214"
- "\364\364\364\0&\365\365\365\0\344\342\344\0\337\337\337\0\357\357\357\0\345"
- "\345\345\0\356\356\356\0\347\347\347b\213\213\213\377omo\377~~~\377\214\215"
- "\214\377\247\245\247\377\243\242\243\377\274\274\274\377\261\261\261\377"
- "\265\266\265\377\326\325\326\377\233\234\233\377\350\350\350\377\273\272"
- "\273\377\306\306\306\377\341\341\341\377\306\306\306\377\322\321\322\377"
- "\326\326\326\377\323\324\323\377\324\325\324\377\332\333\332\377\331\332"
- "\331\377\245\247\245\377Y_Y\377`b`\377WWW\377222\377===\377EEE\377000\362"
- "\0\0\0\6\210\0\0\0\0\206\377\377\377\0\214\364\364\364\0%\365\365\365\0\344"
- "\343\344\0\340\340\340\0\360\360\360\0\350\350\350\0\363\363\363P\223\223"
- "\223\377rrr\377\201\201\201\377\224\224\224\377\252\252\252\377\256\256\256"
- "\377\274\274\274\377\300\300\300\377\262\262\262\377\332\332\332\377\231"
- "\230\231\377\340\340\340\377\304\303\304\377\273\273\273\377\343\343\343"
- "\377\312\313\312\377\317\316\317\377\330\330\330\377\331\332\331\377\322"
- "\322\322\377\332\330\332\377\332\333\332\377\317\320\317\377\352\354\352"
- "\377\300\300\300\377ede\377nmn\377HGH\377===\377111\373\1\1\1\32\211\0\0"
- "\0\0\206\377\377\377\0\214\364\364\364\0$\365\365\365\0\344\343\344\0\341"
- "\341\341\0\363\363\363\0\355\355\355<\236\235\236\377{{{\377\214\215\214"
- "\377\244\243\244\377\256\256\256\377\303\303\303\377\277\277\277\377\334"
- "\334\334\377\266\266\266\377\345\345\345\377\247\247\247\377\323\323\323"
- "\377\314\313\314\377\253\252\253\377\340\340\340\377\311\311\311\377\315"
- "\316\315\377\327\325\327\377\334\334\334\377\320\320\320\377\325\325\325"
- "\377\337\336\337\377\321\322\321\377\335\335\335\377\325\325\325\377\303"
- "\303\303\377\306\305\306\377mjm\377NON\377000\376\0\0\0""6\212\0\0\0\0\206"
- "\377\377\377\0\214\364\364\364\0#\365\365\365\0\345\344\345\0\344\344\344"
- "\0\371\371\371-\234\234\234\372nmn\377zyz\377~|~\377olo\377\204\202\204\377"
- "hhh\377\250\246\250\377\220\220\220\377\333\334\333\377\304\304\304\377\326"
- "\325\326\377\340\340\340\377\256\255\256\377\333\332\333\377\310\310\310"
- "\377\304\303\304\377\326\326\326\377\331\332\331\377\324\323\324\377\320"
- "\316\320\377\341\341\341\377\322\322\322\377\325\325\325\377\331\332\331"
- "\377\306\307\306\377\341\341\341\377\311\311\311\377utu\377B@B\377\200\201"
- "\200\306\213\0\0\0\0\206\377\377\377\0\214\364\364\364\0$\366\366\366\0\350"
- "\347\350\0\352\352\3523\216\216\216\361VSV\377TRT\377SQS\377ONO\377dbd\377"
- "trt\377vuv\377ihi\377SRS\377hgh\377\\]\\\377\265\266\265\377\246\246\246"
- "\377\335\335\335\377\327\327\327\377\276\276\276\377\327\330\327\377\323"
- "\324\323\377\324\325\324\377\321\321\321\377\336\340\336\377\326\326\326"
- "\377\320\317\320\377\333\332\333\377\314\314\314\377\327\326\327\377\312"
- "\314\312\377\266\266\266\377\337\340\337\377WWW\377z{z\337\377\377\377\1"
- "\212\0\0\0\0\206\377\377\377\0\213\364\364\364\0%\365\366\365\0\371\372\371"
- "\0\356\355\356@ywy\377EAE\377OMO\377UWU\377][]\377\203\200\203\377\267\264"
- "\267\377\325\322\325\377\312\310\312\377\255\253\255\377\222\222\222\377"
- "\200\202\200\377quq\377]`]\377HKH\377\234\235\234\377\246\247\246\377\337"
- "\337\337\377\332\331\332\377\320\321\320\377\324\324\324\377\334\335\334"
- "\377\330\331\330\377\316\315\316\377\333\332\333\377\323\323\323\377\317"
- "\315\317\377\323\322\323\377\276\277\276\377\332\333\332\377\272\271\272"
- "\377\210\211\210\377nmn\377\341\340\341O\212\0\0\0\0\206\377\377\377\0\211"
- "\364\364\364\0\202\365\365\365\0%\370\370\370\0\377\377\377\33\200|\200\366"
- "858\377VUV\377\211\213\211\377\243\244\243\377\272\271\272\377\320\320\320"
- "\377\330\327\330\377\327\326\327\377\314\312\314\377\267\266\267\377\242"
- "\241\242\377\233\234\233\377\250\257\250\377\276\306\276\377\267\271\267"
- "\377sts\377ILI\377\262\263\262\377\307\307\307\377\333\334\333\377\333\333"
- "\333\377\332\333\332\377\321\321\321\377\332\333\332\377\325\325\325\377"
- "\314\314\314\377\323\323\323\377\306\307\306\377\322\322\322\377\274\274"
- "\274\377\263\263\263\377\333\333\333\377\213\207\213\377\314\310\314\217"
- "\212\0\0\0\0\206\377\377\377\0\211\353\353\353\0(\354\354\354\0\355\355\355"
- "\0\345\343\345\0\237\235\237\266<9<\377nmn\377\305\307\305\377\336\337\336"
- "\377\345\346\345\377\340\342\340\377\325\326\325\377\320\323\320\377\321"
- "\321\321\377\324\323\324\377\336\335\336\377\335\333\335\377\313\312\313"
- "\377\277\304\277\377\321\324\321\377\365\363\365\377\377\377\377\377\307"
- "\310\307\377Z\\Z\377fhf\377\345\344\345\377\341\342\341\377\317\320\317\377"
- "\334\333\334\377\331\332\331\377\311\313\311\377\323\321\323\377\315\315"
- "\315\377\312\311\312\377\310\310\310\377\266\264\266\377\323\324\323\377"
- "\261\261\261\377\266\262\266\377\273\271\273\307\362\362\362\0\211\357\357"
- "\357\0\206\377\377\377\0\211\354\354\354\0(\355\355\355\0\357\357\357\0\350"
- "\347\3508YUY\377\177}\177\377\340\340\340\377\345\345\345\377\322\322\322"
- "\377\265\267\265\377\203\202\203\377}|}\377yzy\377OPO\377QRQ\377\203~\203"
- "\377\260\257\260\377\317\316\317\377\323\322\323\377\316\315\316\377\334"
- "\336\334\377\364\365\364\377\377\377\377\377\335\342\335\377z|z\377hgh\377"
- "\257\260\257\377\350\350\350\377\336\337\336\377\305\306\305\377\326\325"
- "\326\377\317\320\317\377\305\305\305\377\315\314\315\377\273\273\273\377"
- "\325\325\325\377\243\243\243\377\302\301\302\377\301\302\301\377\255\253"
- "\255\332\331\330\331\0\211\327\326\327\0\206\377\377\377\0\211\355\355\355"
- "\0)\356\356\356\0\361\361\361\0\271\270\271\203srs\377\336\340\336\377\341"
- "\341\341\377\256\254\256\377\220\222\220\377nnn\377igi\377wxw\377KLK\377"
- "676\377ROR\377kjk\377\221\225\221\377\303\303\303\377\320\315\320\377\311"
- "\313\311\377\307\311\307\377\323\323\323\377\341\343\341\377\327\334\327"
- "\377\254\256\254\377ORO\377non\377\310\310\310\377\276\277\276\377\322\322"
- "\322\377\326\326\326\377\300\300\300\377\321\320\321\377\300\300\300\377"
- "\316\316\316\377\266\266\266\377\261\261\261\377\301\301\301\377\270\270"
- "\270\377\312\312\312\327\332\332\332\0\330\330\330\0\210\327\327\327\0\206"
- "\377\377\377\0\204\331\330\331\0\3\332\330\332\0\332\331\332\0\332\330\332"
- "\0\202\331\330\331\0(\332\331\332\0\335\334\335\0\222\221\222\311\302\304"
- "\302\377\344\344\344\377\246\244\246\377\203\204\203\377www\377nkn\377}~"
- "}\377WXW\377:<:\377WTW\377trt\377\225\231\225\377\300\301\300\377\320\316"
- "\320\377\307\311\307\377\334\335\334\377\342\341\342\377\312\313\312\377"
- "\317\317\317\377\277\303\277\377rtr\377ORO\377DGD\377MNM\377\303\304\303"
- "\377\350\351\350\377\262\260\262\377\323\321\323\377\300\300\300\377\277"
- "\276\277\377\306\305\306\377\255\255\255\377\313\313\313\377\244\244\244"
- "\377\307\311\307\377\321\323\321\275\374\374\374\0\211\372\372\372\0\206"
- "\377\377\377\0\203\331\331\331\0\1\332\332\332\0\203\333\333\333\0+\332\332"
- "\332\0\331\331\331\0\332\332\332\0\334\334\334\14\273\274\273\345\336\341"
- "\336\377\255\255\255\377\202\203\202\377~\177~\377mjm\377\177\200\177\377"
- "_`_\377;=;\377QQQ\377olo\377\217\221\217\377\272\274\272\377\320\317\320"
- "\377\311\311\311\377\325\330\325\377\361\357\361\377\316\316\316\377\236"
- "\237\236\377\301\302\301\377\322\330\322\377\236\242\236\377>D>\377JNJ\377"
- "YYY\377sts\377\227\227\227\377\311\310\311\377\317\317\317\377\260\260\260"
- "\377\322\321\322\377\252\252\252\377\321\320\321\377\236\237\236\377\302"
- "\303\302\377\273\273\273\377\333\333\333\310\365\365\365\0\363\363\363\0"
- "\210\362\362\362\0\206\377\377\377\0\202\360\360\360\0\6\371\367\371\0\340"
- "\340\340\0\315\315\315\0\316\316\316\0\325\327\325\0\363\363\363\0\202\362"
- "\362\362\0(\364\364\364\7\325\331\325\356\265\264\265\377\202\203\202\377"
- "\202\204\202\377kjk\377\200\177\200\377fgf\377=?=\377POP\377xvx\377\240\243"
- "\240\377\305\307\305\377\327\325\327\377\315\312\315\377\322\323\322\377"
- "\357\356\357\377\332\331\332\377\232\231\232\377\240\240\240\377\311\307"
- "\311\377\316\322\316\377\326\334\326\377\237\244\237\377XYX\377mkm\377PO"
- "P\377\201\201\201\377\336\336\336\377\251\251\251\377\321\320\321\377\246"
- "\247\246\377\304\305\304\377\254\255\254\377\265\265\265\377\275\276\275"
- "\377\301\301\301\377\326\326\326\262\360\360\360\0\356\356\356\0\210\355"
- "\355\355\0\206\377\377\377\0\202\357\357\357\0""0\370\366\370\0\340\340\340"
- "\0\315\315\315\0\317\317\317\0\326\330\326\0\273\274\273\0\350\350\350\0"
- "\377\377\377\0\377\377\377\27\274\275\274\377\203\201\203\377\204\206\204"
- "\377kik\377~~~\377mnm\377=@=\377MNM\377OLO\377545\377[\\[\377\237\235\237"
- "\377\314\311\314\377\342\343\342\377\377\377\377\377\356\354\356\377\247"
- "\247\247\377\244\244\244\377\307\306\307\377\323\324\323\377\276\300\276"
- "\377\302\306\302\377\327\334\327\377\242\244\242\377fbf\377`]`\377UUU\377"
- "xxx\377\316\316\316\377\275\275\275\377\254\256\254\377\300\276\300\377\247"
- "\247\247\377\276\276\276\377\266\266\266\377\271\271\271\377\321\321\321"
- "\276\363\363\363\0\361\361\361\0\210\360\360\360\0\206\377\377\377\0\202"
- "\357\357\357\0/\367\366\367\0\340\340\340\0\315\315\315\0\317\317\317\0\327"
- "\330\327\0\275\276\275\0\354\354\354\0\256\255\256\0\335\335\335M\201\201"
- "\201\377~\177~\377dbd\377rrr\377jkj\377=@=\377GHG\377SOS\377-,-\377GGG\377"
- "AEA\377*-*\377/./\377IJI\377\212\210\212\377\241\240\241\377\272\273\272"
- "\377\327\327\327\377\331\330\331\377\303\303\303\377\266\272\266\377\312"
- "\311\312\377\324\327\324\377\326\334\326\377\213\214\213\377LJL\377HHH\377"
- "non\377\306\306\306\377\264\264\264\377\314\313\314\377\236\236\236\377\304"
- "\303\304\377\262\262\262\377\275\275\275\377\260\260\260\377\320\320\320"
- "\237\364\364\364\0\211\362\362\362\0\206\377\377\377\0\202\357\357\357\0"
- "/\367\366\367\0\340\340\340\0\315\315\315\0\320\320\320\0\331\332\331\0\301"
- "\302\301\0\361\361\361\1\264\263\264U~{~\365\213\214\213\377\236\233\236"
- "\377\241\236\241\377\226\225\226\377Z\\Z\377ACA\377ZVZ\377jij\377\225\230"
- "\225\377\250\255\250\377\301\312\301\377\335\340\335\377\340\341\340\377"
- "\265\265\265\377mnm\377)))\377@@@\377\243\240\243\377\332\333\332\377\310"
- "\314\310\377\304\310\304\377\337\334\337\377\330\326\330\377\314\322\314"
- "\377\311\317\311\377WUW\377CCC\377HKH\377\202\203\202\377\337\336\337\377"
- "\251\250\251\377\277\301\277\377\262\262\262\377\274\274\274\377\256\256"
- "\256\377\243\243\243\377\342\343\342^\337\337\337\0\211\336\336\336\0\206"
- "\377\377\377\0\202\357\357\357\0/\367\366\367\0\340\340\340\0\316\316\316"
- "\0\322\322\322\0\335\336\335\0\306\310\306|\203\205\203\354dad\377}{}\377"
- "\267\265\267\377\326\321\326\377\314\312\314\377\264\262\264\377\233\233"
- "\233\377\221\220\221\377\206\206\206\377\236\241\236\377\271\276\271\377"
- "\254\263\254\377\315\320\315\377\352\353\352\377\375\376\375\377\377\377"
- "\377\377\375\377\375\377\301\302\301\377ILI\377\10\11\10\377,,,\377\230\232"
- "\230\377\361\360\361\377\354\351\354\377\264\265\264\377\247\246\247\377"
- "\331\336\331\377\235\240\235\377FGF\377XXX\377rrr\377\270\270\270\377\306"
- "\306\306\377\275\276\275\377\273\274\273\377\265\267\265\377\231\230\231"
- "\377\240\240\240\377\316\314\316#\314\311\314\0\211\313\310\313\0\206\377"
- "\377\377\0\202\357\357\357\0/\367\366\367\0\340\340\340\0\320\320\320\0\326"
- "\326\326\15\220\222\220\320`b`\377ZWZ\377\177|\177\377\263\263\263\377\317"
- "\314\317\377\305\302\305\377\255\254\255\377\230\231\230\377\225\224\225"
- "\377\233\233\233\377\246\253\246\377\273\303\273\377\323\326\323\377\325"
- "\327\325\377\344\344\344\377\356\354\356\377\344\342\344\377\327\332\327"
- "\377\304\305\304\377~\177~\377WZW\377NSN\377:;:\377\15\15\15\377`^`\377\307"
- "\310\307\377\246\243\246\377\235\234\235\377\307\314\307\377\317\326\317"
- "\377rrr\377|w|\377SSS\377\253\253\253\377\323\323\323\377\273\273\273\377"
- "\272\273\272\377\244\244\244\377|||\377\275\275\275\242\315\312\315\0\313"
- "\311\313\0\211\312\310\312\0\206\377\377\377\0\202\357\357\357\0.\370\367"
- "\370\0\342\342\342\0\322\322\322\4\215\215\215\320TWT\377^\\^\377zxz\377"
- "\253\251\253\377\312\307\312\377\304\301\304\377\254\251\254\377\226\225"
- "\226\377\217\216\217\377\226\226\226\377\237\242\237\377\262\272\262\377"
- "\315\320\315\377\344\344\344\377\360\361\360\377\362\362\362\377\344\343"
- "\344\377\260\257\260\377\241\243\241\377\304\302\304\377\217\221\217\377"
- "FKF\377PQP\377uuu\377kkk\377\24\25\24\377\22\22\22\377\221\220\221\377\310"
- "\314\310\377\325\325\325\377\321\325\321\377\255\255\255\377\235\224\235"
- "\377lll\377}~}\377\313\312\313\377\303\303\303\377\253\253\253\377\205\204"
- "\205\377\210\207\210\364\362\362\362\32\356\356\356\0\212\354\354\354\0\206"
- "\377\377\377\0\202\357\357\357\0.\371\367\371\0\343\343\343\0\217\220\217"
- "\267{}{\377\243\242\243\377\262\262\262\377\301\301\301\377\306\306\306\377"
- "\306\305\306\377\274\274\274\377\253\252\253\377\230\230\230\377\222\222"
- "\222\377\231\235\231\377\256\264\256\377\307\313\307\377\341\337\341\377"
- "\355\355\355\377\360\361\360\377\361\363\361\377\341\345\341\377\264\267"
- "\264\377\305\301\305\377\336\336\336\377\320\321\320\377\256\261\256\377"
- "\215\220\215\377hfh\377XXX\377[[[\377#$#\377\10\12\10\377\276\275\276\377"
- "\357\355\357\377\312\316\312\377\310\312\310\377\256\251\256\377vyv\377n"
- "on\377\324\324\324\377\266\266\266\377\221\220\221\377yxy\377\336\335\336"
- "S\356\356\356\0\353\353\353\0\212\352\352\352\0\206\377\377\377\0""0\357"
- "\357\357\0\360\360\360\0\372\370\372\0\274\275\274\243\260\261\260\377\330"
- "\331\330\377\335\336\335\377\331\333\331\377\326\327\326\377\323\324\323"
- "\377\321\322\321\377\322\321\322\377\323\322\323\377\317\316\317\377\302"
- "\302\302\377\267\272\267\377\303\307\303\377\336\336\336\377\356\356\356"
- "\377\360\361\360\377\360\360\360\377\347\353\347\377\323\331\323\377\252"
- "\254\252\377\233\232\233\377\317\320\317\377\301\302\301\377\306\313\306"
- "\377\351\347\351\377\277\277\277\377Y[Y\377BDB\377ghg\377NJN\377,(,\377\305"
- "\302\305\377\331\333\331\377\314\317\314\377\255\255\255\377~~~\377X[X\377"
- "\270\272\270\377\254\253\254\377usu\377\314\313\314}\331\330\331\0\352\352"
- "\352\0\351\351\351\0\212\350\350\350\0\206\377\377\377\0\7\360\360\360\0"
- "\361\361\361\0\330\331\330\220\311\312\311\377\326\327\326\377\322\323\322"
- "\377\321\322\321\377\203\320\321\320\377\2\320\320\320\377\323\323\323\377"
- "\202\324\323\324\377\36\326\325\326\377\323\322\323\377\317\315\317\377\334"
- "\334\334\377\357\360\357\377\363\364\363\377\352\355\352\377\327\334\327"
- "\377\266\271\266\377~~~\377KMK\377did\377\300\305\300\377\332\333\332\377"
- "\345\341\345\377\314\316\314\377\232\231\232\377ddd\377wrw\377\300\270\300"
- "\377<;<\377FFF\377\346\344\346\377\315\321\315\377\265\265\265\377\212\207"
- "\212\377]`]\377\274\275\274\377\210\207\210\377\246\246\246\301\224\377\377"
- "\377\0\17\355\355\355\0\337\340\337]\306\307\306\377\321\323\321\377\320"
- "\321\320\377\320\320\320\377\320\321\320\377\325\326\325\377\336\337\336"
- "\377\340\341\340\377\335\335\335\377\300\277\300\377\241\241\241\377\301"
- "\300\301\377\310\306\310\377\202\317\316\317\377\33\312\312\312\377\320\317"
- "\320\377\337\343\337\377\333\341\333\377\276\302\276\377\210\211\210\377"
- "_^_\377EKE\377;?;\377\202\205\202\377\354\350\354\377\317\320\317\377\235"
- "\234\235\377\237\235\237\377\276\300\276\377\263\254\263\377\261\256\261"
- "\377Z[Z\377!!!\377\306\306\306\377\321\324\321\377\301\302\301\377\226\227"
- "\226\377WZW\377\234\235\234\377\220\220\220\371\354\353\354\27\224\377\377"
- "\377\0\20\357\357\357\0\316\317\316\347\316\317\316\377\320\321\320\377\320"
- "\320\320\377\322\322\322\377\340\341\340\377\323\324\323\377\244\245\244"
- "\377xyx\377\225\224\225\377\276\276\276\377\252\252\252\377\246\244\246\377"
- "\305\303\305\377\323\323\323\377\202\313\314\313\377\32\314\314\314\377\310"
- "\312\310\377\277\301\277\377\215\217\215\377aba\377KOK\377IMI\377Y\\Y\377"
- "cac\377\236\235\236\377\262\262\262\377\230\224\230\377\260\262\260\377\335"
- "\333\335\377\342\335\342\377\267\264\267\377===\377)))\377\245\250\245\377"
- "\322\325\322\377\317\321\317\377\213\215\213\377Y[Y\377\224\225\224\377\336"
- "\335\336]\351\350\351\0\224\377\377\377\0\23\340\340\340T\312\313\312\377"
- "\320\321\320\377\320\320\320\377\323\322\323\377\343\343\343\377\240\240"
- "\240\377???\377\16\16\16\377\35\35\35\377\246\245\246\377\313\313\313\377"
- "\253\251\253\377\277\275\277\377\344\343\344\377\335\335\335\377\310\310"
- "\310\377\311\311\311\377\314\314\314\377\202\316\317\316\377\27\226\230\226"
- "\377DGD\377@G@\377V[V\377kkk\377pnp\377]]]\377\207\204\207\377\260\262\260"
- "\377\317\322\317\377\340\335\340\377\343\340\343\377\270\270\270\377\15\16"
- "\15\377IJI\377\220\224\220\377\330\332\330\377\312\314\312\377chc\377^`^"
- "\377\302\302\302\255\332\331\332\0\346\345\346\0\224\377\377\377\0-\326\326"
- "\326\246\315\316\315\377\320\320\320\377\321\321\321\377\341\341\341\377"
- "\237\237\237\377\37\35\37\377232\377---\377\235\232\235\377\305\305\305\377"
- "\234\232\234\377\253\247\253\377\332\332\332\377\354\355\354\377\333\335"
- "\333\377\333\333\333\377\323\323\323\377\312\310\312\377\315\313\315\377"
- "\321\320\321\377\331\331\331\377\221\223\221\377INI\377ccc\377sos\377lkl"
- "\377WWW\377UUU\377\302\306\302\377\346\344\346\377\333\325\333\377\340\337"
- "\340\377\255\255\255\377GHG\377JMJ\377\261\262\261\377\334\334\334\377\230"
- "\232\230\377ADA\377z{z\377\377\377\377\31\370\370\370\0\365\365\365\0\364"
- "\364\364\0\215\363\363\363\0\206\377\377\377\0,\322\321\322\302\316\317\316"
- "\377\320\320\320\377\326\326\326\377\321\321\321\377888\377343\377VUV\377"
- "\201\200\201\377\234\236\234\377\250\252\250\377\303\301\303\377\277\277"
- "\277\377\272\273\272\377\270\272\270\377\321\322\321\377\374\374\374\377"
- "\376\376\376\377\335\336\335\377\313\310\313\377\315\314\315\377\322\321"
- "\322\377\333\331\333\377\226\227\226\377eae\377ljl\377bbb\377VUV\377===\377"
- "\223\222\223\377\354\346\354\377\332\330\332\377\315\315\315\377\242\240"
- "\242\377QTQ\377tvt\377\332\333\332\377\307\310\307\377XZX\377HJH\377\320"
- "\320\320|\372\372\372\0\366\366\366\0\365\364\365\0\216\364\364\364\0\206"
- "\377\377\377\0*\323\324\323\300\316\316\316\377\320\320\320\377\335\335\335"
- "\377\250\250\250\377000\377LLL\377rpr\377\234\234\234\377\264\265\264\377"
- "\351\346\351\377\364\365\364\377\362\364\362\377\367\367\367\377\347\345"
- "\347\377\274\274\274\377\321\321\321\377\377\377\377\377\361\363\361\377"
- "\326\325\326\377\311\310\311\377\310\311\310\377\316\317\316\377\322\324"
- "\322\377\217\217\217\377YYY\377YWY\377ONO\377GIG\377gfg\377\332\326\332\377"
- "\331\331\331\377\262\261\262\377aba\377NQN\377\304\305\304\377\334\335\334"
- "\377\214\217\214\377575\377\234\234\234\304\371\372\371\0\362\363\362\0\220"
- "\360\361\360\0\206\377\377\377\0*\334\335\334\240\315\315\315\377\320\320"
- "\320\377\336\335\336\377\232\231\232\377A>A\377ZWZ\377\216\216\216\377\263"
- "\264\263\377\340\337\340\377\357\357\357\377\350\352\350\377\361\362\361"
- "\377\374\372\374\377\377\377\377\377\311\307\311\377\227\226\227\377\247"
- "\250\247\377\343\344\343\377\355\357\355\377\341\340\341\377\304\305\304"
- "\377\305\312\305\377\315\320\315\377\317\323\317\377ppp\377EDE\377MMM\377"
- "XYX\377qpq\377\277\272\277\377\306\304\306\377~~~\377<@<\377\253\255\253"
- "\377\336\337\336\377\255\256\255\377@C@\377\225\226\225\304\366\366\366\12"
- "\364\365\364\0\361\362\361\0\220\360\361\360\0\206\377\377\377\0)\333\335"
- "\333e\315\315\315\377\320\320\320\377\334\332\334\377\243\242\243\377HDH"
- "\377`_`\377\244\245\244\377\334\333\334\377\357\357\357\377\350\351\350\377"
- "\357\361\357\377\372\367\372\377\373\373\373\377\320\317\320\377\256\254"
- "\256\377\204\201\204\377\177}\177\377\275\276\275\377\364\364\364\377\377"
- "\377\377\377\330\331\330\377\301\305\301\377\307\312\307\377\321\330\321"
- "\377\275\277\275\377NNN\377NQN\377ono\377\227\215\227\377\262\254\262\377"
- "\231\232\231\377?@?\377\206\210\206\377\326\327\326\377\257\260\257\377n"
- "pn\377\246\247\246\202\354\354\354\7\361\361\361\0\361\362\361\0\221\360"
- "\361\360\0\206\377\377\377\0)\356\357\356\32\321\321\321\377\316\316\316"
- "\377\331\330\331\377\271\270\271\377NLN\377SSS\377\301\301\301\377\366\365"
- "\366\377\352\353\352\377\355\356\355\377\370\367\370\377\373\372\373\377"
- "\335\336\335\377\256\254\256\377\220\216\220\377tqt\377\353\350\353\377\315"
- "\317\315\377\302\303\302\377\377\377\377\377\353\354\353\377\311\313\311"
- "\377\305\310\305\377\310\314\310\377\326\334\326\377\227\231\227\377YYY\377"
- "\214\204\214\377\254\245\254\377\246\247\246\377SUS\377Z\\Z\377\315\317\315"
- "\377\304\305\304\316\254\255\254\232\313\314\313(\242\243\242\0\351\350\351"
- "\0\357\357\357\0\361\362\361\0\221\360\361\360\0\206\377\377\377\0(\354\355"
- "\354\0\333\333\333\301\313\313\313\377\323\322\323\377\324\321\324\377[["
- "[\377<=<\377\272\272\272\377\372\372\372\377\355\356\355\377\366\365\366"
- "\377\372\367\372\377\346\347\346\377\255\252\255\377\231\227\231\377jgj\377"
- "\323\321\323\377\354\355\354\377\336\337\336\377\274\277\274\377\327\330"
- "\327\377\363\364\363\377\336\337\336\377\305\311\305\377\307\313\307\377"
- "\312\320\312\377\310\312\310\377\211\203\211\377\240\227\240\377\250\251"
- "\250\377\225\225\225\377SUS\377\316\317\316\216\364\365\364A\332\332\332"
- "\0\252\253\252\0\311\312\311\0\240\241\240\0\350\347\350\0\356\356\356\0"
- "\222\360\361\360\0\206\377\377\377\0(\355\353\355\0\357\355\357L\313\312"
- "\313\377\316\315\316\377\337\336\337\377\211\210\211\377\"#\"\377yzy\377"
- "\373\375\373\377\372\371\372\377\370\367\370\377\357\357\357\377\315\315"
- "\315\377\277\274\277\377\204\202\204\377\272\270\272\377\362\362\362\377"
- "\327\330\327\377\350\352\350\377\320\316\320\377\255\257\255\377\366\366"
- "\366\377\331\331\331\377\306\314\306\377\310\315\310\377\307\314\307\377"
- "\314\322\314\377\273\270\273\377\241\237\241\377\232\236\232\377\227\225"
- "\227\377\312\312\312\232\310\311\310\0\360\361\360\0\330\330\330\0\251\252"
- "\251\0\310\311\310\0\240\241\240\0\347\347\347\0\356\356\356\0\222\360\361"
- "\360\0\206\377\377\377\0(\371\370\371\0\373\372\373\0\333\332\333\314\312"
- "\311\312\377\327\326\327\377\314\313\314\377464\377)+)\377\320\316\320\377"
- "\377\377\377\377\357\360\357\377\342\343\342\377\342\344\342\377\320\315"
- "\320\377\315\313\315\377\355\355\355\377\331\332\331\377\343\343\343\377"
- "\342\340\342\377\270\265\270\377\232\232\232\377\334\333\334\377\264\265"
- "\264\377\255\257\255\377\315\322\315\377\306\313\306\377\310\316\310\377"
- "\307\310\307\377\233\235\233\377\227\227\227\377\256\256\256\377\347\350"
- "\347;\343\344\343\0\355\357\355\0\327\327\327\0\250\251\250\0\310\311\310"
- "\0\240\241\240\0\347\347\347\0\356\356\356\0\222\360\361\360\0\206\377\377"
- "\377\0(\370\367\370\0\371\370\371\0\364\363\364<\314\313\314\377\316\315"
- "\316\377\342\341\342\377\223\223\223\377\24\26\24\377_^_\377\363\362\363"
- "\377\357\360\357\377\345\345\345\377\367\370\367\377\374\375\374\377\361"
- "\357\361\377\330\331\330\377\336\337\336\377\347\346\347\377\302\300\302"
- "\377\253\252\253\377\250\251\250\377\272\273\272\377tst\377\\]\\\377\325"
- "\327\325\377\311\314\311\377\310\314\310\377\313\314\313\377\237\235\237"
- "\377\243\241\243\377\275\301\275\377\350\350\350'\346\345\346\0\345\345\345"
- "\0\325\325\325\0\246\250\246\0\307\310\307\0\237\240\237\0\347\347\347\0"
- "\356\356\356\0\222\360\361\360\0\206\377\377\377\0\202\370\367\370\0\36\363"
- "\362\363\0\344\344\344\222\310\310\310\377\321\321\321\377\332\333\332\377"
- "pqp\377%#%\377xwx\377\351\351\351\377\377\377\377\377\376\376\376\377\363"
- "\361\363\377\333\333\333\377\331\334\331\377\351\351\351\377\314\313\314"
- "\377\247\245\247\377\301\302\301\377\261\263\261\377\220\220\220\377\40\37"
- "\40\377KLK\377\326\331\326\377\312\315\312\377\307\311\307\377\311\312\311"
- "\377\254\252\254\377\263\262\263\377\301\303\301\342\367\367\367\0\202\364"
- "\364\364\0\6\365\365\365\0\370\370\370\0\304\306\304\0\236\237\236\0\347"
- "\347\347\0\356\356\356\0\222\360\361\360\0\206\377\377\377\0\202\373\373"
- "\373\0\36\374\374\374\0\376\377\376\0\332\330\332\311\305\310\305\377\322"
- "\324\322\377\326\327\326\377rqr\377111\377rrr\377\354\354\354\377\377\377"
- "\377\377\345\346\345\377\330\333\330\377\351\352\351\377\327\325\327\377"
- "\253\251\253\377\270\270\270\377\312\312\312\377\237\236\237\377III\377\22"
- "\22\22\377^`^\377\327\332\327\377\312\314\312\377\306\307\306\377\305\307"
- "\305\377\274\276\274\377\247\251\247\377\307\307\307x\366\366\366\0\202\363"
- "\363\363\0\6\364\364\364\0\366\366\366\0\302\303\302\0\234\235\234\0\346"
- "\346\346\0\356\356\356\0\222\360\361\360\0\206\377\377\377\0\202\373\373"
- "\373\0&\373\374\373\0\375\375\375\0\365\365\365\12\322\322\322\342\307\310"
- "\307\377\322\324\322\377\323\330\323\377|\200|\377...\377HGH\377\243\240"
- "\243\377\327\327\327\377\363\365\363\377\351\350\351\377\273\271\273\377"
- "\271\270\271\377\316\317\316\377\251\251\251\377ZYZ\377-,-\377\36\35\36\377"
- "\210\210\210\377\327\331\327\377\307\310\307\377\305\306\305\377\307\310"
- "\307\377\262\266\262\377\251\252\251\325\357\357\357\0\354\354\354\0\353"
- "\353\353\0\352\352\352\0\353\353\353\0\354\354\354\0\355\355\355\0\356\356"
- "\356\0\344\344\344\0\355\355\355\0\222\360\361\360\0\206\377\377\377\0\203"
- "\373\373\373\0\26\374\374\374\0\364\364\364\0\366\366\366\34\324\324\324"
- "\347\304\307\304\377\315\322\315\377\324\333\324\377\227\234\227\377545\377"
- "!\36!\377YYY\377\217\216\217\377\244\243\244\377\233\231\233\377\243\243"
- "\243\377\204\205\204\377NMN\377.-.\377\40\37\40\377666\377\304\307\304\377"
- "\315\316\315\377\202\305\306\305\377\4\303\304\303\377\236\237\236\377\336"
- "\336\336*\355\355\355\0\206\353\353\353\0\3\354\354\354\0\343\343\343\0\355"
- "\355\355\0\222\360\361\360\0\206\377\377\377\0\203\373\373\373\0\34\374\374"
- "\374\0\363\363\363\0\364\364\364\0\362\361\362\25\321\325\321\323\302\307"
- "\302\377\310\316\310\377\325\334\325\377\302\306\302\377efe\377///\377=<"
- "=\377<;<\3770/0\377.,.\377'$'\377#\"#\377\36\35\36\377343\377\253\254\253"
- "\377\324\324\324\377\306\307\306\377\305\306\305\377\307\310\307\377\261"
- "\263\261\377\310\311\310q\333\333\333\0\354\354\354\0\207\352\352\352\0\3"
- "\342\342\342\0\354\355\354\0\360\361\360\0\221\357\361\357\0\206\377\377"
- "\377\0\203\373\373\373\0\6\374\374\374\0\362\362\362\0\363\363\363\0\360"
- "\360\360\0\364\363\364\1\332\335\332\241\202\305\312\305\377\6\330\335\330"
- "\377\271\276\271\377<;<\377868\377&$&\377>=>\377\202=;=\377\13MMM\377z|z"
- "\377\301\305\301\377\326\325\326\377\306\310\306\377\305\306\305\377\304"
- "\305\304\377\277\301\277\377\313\314\313\277\372\371\372\0\367\366\367\0"
- "\211\366\365\366\0\1\366\364\366\0\222\365\364\365\0\206\377\377\377\0\203"
- "\373\373\373\0\33\374\374\374\0\362\362\362\0\363\363\363\0\357\357\357\0"
- "\363\362\363\0\330\334\330\0\351\352\351Y\316\321\316\354\304\312\304\377"
- "\321\326\321\377\244\246\244\377DBD\377EDE\377\276\300\276\377\315\321\315"
- "\377\307\313\307\377\320\322\320\377\326\330\326\377\316\320\316\377\307"
- "\307\307\377\306\306\306\377\305\305\305\377\277\300\277\377\311\314\311"
- "\364\370\371\370\22\367\366\367\0\366\365\366\0\234\365\364\365\0\206\377"
- "\377\377\0\203\373\373\373\0\32\374\374\374\0\362\362\362\0\363\363\363\0"
- "\357\357\357\0\363\361\363\0\327\333\327\0\347\350\347\0\347\347\347\15\336"
- "\340\336\213\317\323\317\372\317\323\317\377\306\311\306\377\307\313\307"
- "\377\321\324\321\377\316\320\316\377\315\316\315\377\311\312\311\377\306"
- "\307\306\377\306\306\306\377\307\306\307\377\305\304\305\377\300\300\300"
- "\377\307\307\307\364\355\356\355;\366\367\366\0\366\364\366\0\235\365\364"
- "\365\0\206\377\377\377\0\203\373\373\373\0\20\374\374\374\0\362\362\362\0"
- "\363\363\363\0\357\357\357\0\363\361\363\0\327\333\327\0\347\350\347\0\346"
- "\346\346\0\334\336\334\0\343\344\343\21\337\341\337u\327\331\327\333\314"
- "\316\314\377\305\307\305\377\302\303\302\377\302\302\302\377\202\303\304"
- "\303\377\1\304\302\304\377\202\302\302\302\377\4\325\325\325\267\357\357"
- "\357\36\354\355\354\0\365\366\365\0\236\365\364\365\0\206\377\377\377\0\203"
- "\373\373\373\0\31\374\374\374\0\362\362\362\0\363\363\363\0\357\357\357\0"
- "\363\361\363\0\327\333\327\0\347\350\347\0\346\345\346\0\333\335\333\0\342"
- "\342\342\0\335\337\335\0\360\356\360\0\343\342\343%\343\345\343g\326\325"
- "\326\231\323\324\323\270\314\315\314\314\316\316\316\304\324\324\324\255"
- "\337\340\337q\340\340\340+\323\323\323\0\356\356\356\0\353\354\353\0\365"
- "\366\365\0\236\365\364\365\0\206\377\377\377\0",
-};
-
diff --git a/src/image_data/bnc_cable_pixdata.h b/src/image_data/bnc_cable_pixdata.h new file mode 100644 index 0000000..98e3604 --- /dev/null +++ b/src/image_data/bnc_cable_pixdata.h @@ -0,0 +1,716 @@ +/* GdkPixbuf RGBA C-Source image dump 1-byte-run-length-encoded */ + +static guint8 bnc_cable_pixdata_pixel_data[] = { + 0x94,0xfa,0xfa,0xfa,0x00,0x06,0xf9,0xf9,0xf9,0x00,0xf6,0xf6,0xf6,0x00,0xb5, + 0xb5,0xb5,0x00,0xee,0xee,0xee,0x00,0xbb,0xbb,0xbb,0x00,0xb1,0xb0,0xb1,0x00, + 0x82,0xda,0xda,0xda,0x00,0x06,0xc9,0xc9,0xc9,0x00,0x95,0x94,0x95,0x00,0xae, + 0xab,0xae,0x00,0xcd,0xc9,0xcd,0x00,0xc4,0xc2,0xc4,0x00,0x8e,0x8d,0x8e,0x00, + 0x8c,0x00,0x00,0x00,0x00,0x0c,0x09,0x09,0x09,0x01,0x5c,0x5c,0x5c,0x00,0x66, + 0x66,0x66,0x00,0x5b,0x5b,0x5b,0x00,0x54,0x57,0x54,0x00,0x57,0x55,0x57,0x00, + 0x58,0x58,0x58,0x00,0x57,0x58,0x57,0x00,0x55,0x55,0x55,0x00,0x52,0x52,0x52, + 0x00,0x4d,0x4c,0x4d,0x00,0x46,0x46,0x46,0x00,0x86,0xff,0xff,0xff,0x00,0x94, + 0xfa,0xfa,0xfa,0x00,0x06,0xf9,0xf9,0xf9,0x00,0xf6,0xf6,0xf6,0x00,0xb5,0xb5, + 0xb5,0x00,0xee,0xee,0xee,0x00,0xbb,0xbb,0xbb,0x00,0xb1,0xb0,0xb1,0x00,0x82, + 0xda,0xda,0xda,0x00,0x06,0xc9,0xc9,0xc9,0x00,0x95,0x94,0x95,0x00,0xae,0xab, + 0xae,0x00,0xcd,0xc9,0xcd,0x00,0xc4,0xc2,0xc4,0x00,0x8d,0x8c,0x8d,0x00,0x8b, + 0x00,0x00,0x00,0x00,0x06,0x01,0x01,0x01,0x01,0x4b,0x4b,0x4b,0x0c,0x69,0x69, + 0x68,0x05,0x5b,0x5c,0x5b,0x00,0x54,0x54,0x55,0x00,0x53,0x53,0x53,0x00,0x82, + 0x57,0x57,0x57,0x00,0x05,0x55,0x53,0x55,0x00,0x52,0x50,0x52,0x00,0x4c,0x4d, + 0x4d,0x00,0x46,0x47,0x46,0x00,0x3f,0x3f,0x3f,0x00,0x86,0xff,0xff,0xff,0x00, + 0x94,0xfa,0xfa,0xfa,0x00,0x06,0xf9,0xf9,0xf9,0x00,0xf6,0xf6,0xf6,0x00,0xb5, + 0xb5,0xb5,0x00,0xee,0xee,0xee,0x00,0xbb,0xbb,0xbb,0x00,0xb1,0xb0,0xb1,0x00, + 0x82,0xda,0xda,0xda,0x00,0x06,0xc9,0xc9,0xc9,0x00,0x95,0x94,0x95,0x00,0xae, + 0xab,0xae,0x00,0xcd,0xc9,0xcd,0x00,0xc4,0xc2,0xc4,0x00,0x8c,0x8b,0x8c,0x00, + 0x8b,0x00,0x00,0x00,0x00,0x05,0x3d,0x3e,0x3d,0x21,0x6a,0x6a,0x6a,0x1b,0x5c, + 0x5c,0x5c,0x10,0x57,0x55,0x55,0x08,0x51,0x51,0x53,0x01,0x82,0x55,0x55,0x55, + 0x00,0x06,0x53,0x53,0x55,0x00,0x52,0x50,0x52,0x00,0x4d,0x4d,0x4d,0x00,0x47, + 0x49,0x47,0x00,0x40,0x40,0x40,0x00,0x38,0x38,0x38,0x00,0x86,0xff,0xff,0xff, + 0x00,0x94,0xfa,0xfa,0xfa,0x00,0x06,0xf9,0xf9,0xf9,0x00,0xf6,0xf6,0xf6,0x00, + 0xb5,0xb5,0xb5,0x00,0xee,0xee,0xee,0x00,0xbb,0xbb,0xbb,0x00,0xb1,0xb0,0xb1, + 0x00,0x82,0xda,0xda,0xda,0x00,0x08,0xc9,0xc9,0xc9,0x00,0x95,0x94,0x95,0x00, + 0xae,0xab,0xae,0x00,0xcd,0xc9,0xcd,0x00,0xc3,0xc1,0xc3,0x00,0x89,0x88,0x89, + 0x00,0x83,0x84,0x83,0x00,0x01,0x01,0x01,0x00,0x88,0x00,0x00,0x00,0x00,0x0e, + 0x26,0x24,0x26,0x2f,0x6b,0x69,0x6b,0x37,0x5f,0x5f,0x5f,0x2a,0x57,0x57,0x57, + 0x1f,0x50,0x51,0x51,0x14,0x53,0x53,0x52,0x0c,0x53,0x55,0x53,0x04,0x52,0x53, + 0x53,0x00,0x52,0x50,0x50,0x00,0x4d,0x4d,0x4d,0x00,0x47,0x49,0x49,0x00,0x41, + 0x43,0x40,0x00,0x38,0x38,0x38,0x00,0x37,0x37,0x37,0x00,0x86,0xff,0xff,0xff, + 0x00,0x94,0xfa,0xfa,0xfa,0x00,0x06,0xf9,0xf9,0xf9,0x00,0xf6,0xf6,0xf6,0x00, + 0xb5,0xb5,0xb5,0x00,0xee,0xee,0xee,0x00,0xbb,0xbb,0xbb,0x00,0xb1,0xb0,0xb1, + 0x00,0x82,0xda,0xda,0xda,0x00,0x07,0xc9,0xc9,0xc9,0x00,0x95,0x94,0x95,0x00, + 0xae,0xab,0xae,0x00,0xcd,0xc9,0xcd,0x00,0xc3,0xc1,0xc3,0x00,0x87,0x86,0x87, + 0x00,0x80,0x82,0x80,0x00,0x88,0x00,0x00,0x00,0x00,0x0f,0x13,0x13,0x13,0x2a, + 0x61,0x60,0x61,0x58,0x60,0x61,0x61,0x4a,0x58,0x57,0x57,0x3c,0x51,0x52,0x51, + 0x30,0x50,0x52,0x50,0x23,0x53,0x53,0x53,0x19,0x52,0x52,0x53,0x0f,0x50,0x50, + 0x50,0x06,0x4e,0x4d,0x4d,0x00,0x49,0x49,0x49,0x00,0x43,0x43,0x43,0x00,0x3a, + 0x3a,0x3a,0x00,0x37,0x35,0x37,0x00,0x38,0x39,0x39,0x00,0x86,0xff,0xff,0xff, + 0x00,0x94,0xfa,0xfa,0xfa,0x00,0x06,0xf9,0xf9,0xf9,0x00,0xf6,0xf6,0xf6,0x00, + 0xb5,0xb5,0xb5,0x00,0xee,0xee,0xee,0x00,0xbb,0xbb,0xbb,0x00,0xb1,0xb0,0xb1, + 0x00,0x82,0xda,0xda,0xda,0x00,0x07,0xc9,0xc9,0xc9,0x00,0x95,0x94,0x95,0x00, + 0xae,0xab,0xae,0x00,0xcd,0xc9,0xcd,0x00,0xc2,0xc0,0xc2,0x00,0x87,0x86,0x87, + 0x00,0x7f,0x81,0x7f,0x00,0x87,0x00,0x00,0x00,0x00,0x10,0x0e,0x0d,0x0e,0x20, + 0x58,0x58,0x58,0x7c,0x64,0x64,0x64,0x6d,0x58,0x59,0x58,0x5f,0x52,0x50,0x52, + 0x50,0x50,0x4e,0x50,0x42,0x52,0x50,0x52,0x35,0x52,0x52,0x52,0x29,0x50,0x50, + 0x50,0x1d,0x4c,0x4d,0x4d,0x13,0x49,0x49,0x49,0x0a,0x43,0x43,0x43,0x03,0x3d, + 0x3d,0x3d,0x00,0x37,0x35,0x37,0x00,0x38,0x38,0x38,0x00,0x3d,0x3d,0x3d,0x00, + 0x86,0xff,0xff,0xff,0x00,0x94,0xfa,0xfa,0xfa,0x00,0x06,0xf9,0xf9,0xf9,0x00, + 0xf6,0xf6,0xf6,0x00,0xb5,0xb5,0xb5,0x00,0xee,0xee,0xee,0x00,0xbb,0xbb,0xbb, + 0x00,0xb1,0xb0,0xb1,0x00,0x82,0xda,0xda,0xda,0x00,0x07,0xc9,0xc9,0xc9,0x00, + 0x95,0x94,0x95,0x00,0xae,0xab,0xae,0x00,0xcd,0xc9,0xcd,0x00,0xc2,0xc0,0xc2, + 0x00,0x87,0x86,0x87,0x00,0x7f,0x81,0x7f,0x00,0x86,0x00,0x00,0x00,0x00,0x11, + 0x01,0x01,0x01,0x11,0x4b,0x4b,0x4b,0x9e,0x66,0x66,0x66,0x91,0x59,0x59,0x59, + 0x83,0x50,0x50,0x52,0x74,0x4e,0x4d,0x4e,0x65,0x50,0x50,0x50,0x56,0x50,0x50, + 0x50,0x49,0x4e,0x50,0x4e,0x3a,0x4c,0x4c,0x4c,0x2e,0x49,0x49,0x49,0x22,0x43, + 0x45,0x43,0x18,0x3c,0x3d,0x3d,0x0e,0x37,0x37,0x35,0x06,0x37,0x37,0x37,0x00, + 0x3b,0x3b,0x3b,0x00,0x42,0x42,0x42,0x00,0x86,0xff,0xff,0xff,0x00,0x94,0xfa, + 0xfa,0xfa,0x00,0x06,0xf9,0xf9,0xf9,0x00,0xf6,0xf6,0xf6,0x00,0xb5,0xb5,0xb5, + 0x00,0xee,0xee,0xee,0x00,0xbb,0xbb,0xbb,0x00,0xb1,0xb0,0xb1,0x00,0x82,0xda, + 0xda,0xda,0x00,0x07,0xc9,0xc9,0xc9,0x00,0x95,0x94,0x95,0x00,0xae,0xab,0xae, + 0x00,0xcd,0xc9,0xcd,0x00,0xc2,0xc0,0xc2,0x00,0x87,0x86,0x87,0x00,0x7f,0x80, + 0x7f,0x00,0x85,0x00,0x00,0x00,0x00,0x12,0x01,0x01,0x01,0x01,0x3e,0x3e,0x3e, + 0xb5,0x66,0x69,0x66,0xb5,0x59,0x59,0x59,0xa7,0x52,0x52,0x52,0x98,0x4d,0x4d, + 0x4d,0x89,0x4d,0x4d,0x4e,0x7a,0x4e,0x4e,0x4e,0x6b,0x4e,0x4e,0x4e,0x5d,0x4c, + 0x4c,0x4c,0x4e,0x49,0x49,0x49,0x40,0x43,0x43,0x43,0x33,0x3d,0x3d,0x3f,0x27, + 0x37,0x37,0x37,0x1c,0x35,0x37,0x35,0x12,0x39,0x39,0x39,0x09,0x40,0x3e,0x3e, + 0x02,0x3b,0x3c,0x3c,0x00,0x86,0xff,0xff,0xff,0x00,0x94,0xfa,0xfa,0xfa,0x00, + 0x06,0xf9,0xf9,0xf9,0x00,0xf6,0xf6,0xf6,0x00,0xb5,0xb5,0xb5,0x00,0xee,0xee, + 0xee,0x00,0xbb,0xbb,0xbb,0x00,0xb1,0xb0,0xb1,0x00,0x82,0xda,0xda,0xda,0x00, + 0x07,0xc9,0xc9,0xc9,0x00,0x95,0x94,0x95,0x00,0xae,0xab,0xae,0x00,0xcd,0xc9, + 0xcd,0x00,0xc2,0xc0,0xc2,0x00,0x86,0x85,0x86,0x00,0x7e,0x7f,0x7e,0x00,0x85, + 0x00,0x00,0x00,0x00,0x12,0x30,0x30,0x30,0xb1,0x67,0x66,0x67,0xd4,0x5a,0x5a, + 0x5a,0xc8,0x52,0x52,0x52,0xbb,0x4d,0x4d,0x4d,0xac,0x4d,0x4c,0x4c,0x9f,0x4d, + 0x4d,0x4e,0x8f,0x4d,0x4d,0x4d,0x81,0x4a,0x4c,0x4c,0x71,0x47,0x49,0x49,0x63, + 0x45,0x45,0x45,0x54,0x3f,0x3f,0x3f,0x47,0x38,0x37,0x38,0x39,0x35,0x35,0x35, + 0x2c,0x38,0x39,0x39,0x20,0x3e,0x3e,0x3e,0x16,0x43,0x42,0x42,0x0d,0x19,0x19, + 0x19,0x03,0x86,0xff,0xff,0xff,0x00,0x94,0xfa,0xfa,0xfa,0x00,0x06,0xf9,0xf9, + 0xf9,0x00,0xf6,0xf6,0xf6,0x00,0xb5,0xb5,0xb5,0x00,0xee,0xee,0xee,0x00,0xbb, + 0xbb,0xbb,0x00,0xb1,0xb0,0xb1,0x00,0x82,0xda,0xda,0xda,0x00,0x08,0xc9,0xc9, + 0xc9,0x00,0x95,0x94,0x95,0x00,0xae,0xab,0xae,0x00,0xcd,0xc9,0xcd,0x00,0xc2, + 0xc0,0xc2,0x00,0x86,0x85,0x86,0x00,0x7c,0x7d,0x7c,0x00,0x63,0x63,0x63,0x00, + 0x83,0x00,0x00,0x00,0x00,0x13,0x25,0x25,0x25,0xa4,0x64,0x64,0x66,0xee,0x5c, + 0x5c,0x5a,0xe4,0x52,0x52,0x52,0xda,0x4c,0x4c,0x4c,0xce,0x4c,0x4a,0x4c,0xc1, + 0x4d,0x4c,0x4d,0xb3,0x4c,0x4c,0x4c,0xa5,0x4a,0x4a,0x4a,0x96,0x47,0x47,0x47, + 0x87,0x43,0x43,0x43,0x78,0x3f,0x3d,0x3f,0x69,0x38,0x38,0x38,0x5b,0x33,0x33, + 0x33,0x4c,0x38,0x38,0x38,0x3f,0x3b,0x3b,0x3b,0x31,0x43,0x45,0x43,0x26,0x29, + 0x29,0x29,0x17,0x00,0x00,0x00,0x00,0x86,0xff,0xff,0xff,0x00,0x94,0xfa,0xfa, + 0xfa,0x00,0x06,0xf9,0xf9,0xf9,0x00,0xf6,0xf6,0xf6,0x00,0xb5,0xb5,0xb5,0x00, + 0xee,0xee,0xee,0x00,0xbb,0xbb,0xbb,0x00,0xb1,0xb0,0xb1,0x00,0x82,0xda,0xda, + 0xda,0x00,0x08,0xc9,0xc9,0xc9,0x00,0x95,0x94,0x95,0x00,0xae,0xab,0xae,0x00, + 0xcd,0xc9,0xcd,0x00,0xc2,0xc0,0xc2,0x00,0x85,0x84,0x85,0x00,0x7b,0x7c,0x7b, + 0x00,0x61,0x61,0x61,0x00,0x82,0x00,0x00,0x00,0x00,0x14,0x17,0x17,0x17,0x84, + 0x61,0x61,0x61,0xff,0x5c,0x5c,0x5c,0xfa,0x52,0x52,0x52,0xf3,0x4c,0x4a,0x4c, + 0xe9,0x49,0x49,0x49,0xdf,0x4a,0x4a,0x4c,0xd3,0x4a,0x4a,0x4a,0xc6,0x4a,0x49, + 0x4a,0xb8,0x47,0x47,0x47,0xaa,0x45,0x43,0x43,0x9d,0x3f,0x3f,0x3f,0x8d,0x38, + 0x38,0x38,0x7e,0x33,0x33,0x33,0x70,0x37,0x37,0x37,0x61,0x3b,0x3b,0x3b,0x52, + 0x42,0x42,0x42,0x44,0x36,0x36,0x36,0x37,0x00,0x01,0x01,0x04,0x00,0x00,0x00, + 0x00,0x86,0xff,0xff,0xff,0x00,0x94,0xfa,0xfa,0xfa,0x00,0x06,0xf9,0xf9,0xf9, + 0x00,0xf6,0xf6,0xf6,0x00,0xb5,0xb5,0xb5,0x00,0xee,0xee,0xee,0x00,0xbb,0xbb, + 0xbb,0x00,0xb1,0xb0,0xb1,0x00,0x82,0xda,0xda,0xda,0x00,0x1c,0xc9,0xc9,0xc9, + 0x00,0x95,0x94,0x95,0x00,0xae,0xab,0xae,0x00,0xcd,0xc9,0xcd,0x00,0xc2,0xc0, + 0xc2,0x00,0x85,0x84,0x85,0x00,0x7a,0x7c,0x7a,0x00,0x60,0x60,0x60,0x00,0x00, + 0x00,0x00,0x00,0x0f,0x0e,0x0f,0x5f,0x59,0x59,0x59,0xff,0x5e,0x5c,0x5c,0xff, + 0x52,0x52,0x52,0xff,0x4c,0x4c,0x4c,0xfd,0x47,0x47,0x47,0xf6,0x49,0x4a,0x49, + 0xed,0x4a,0x4a,0x4a,0xe3,0x49,0x49,0x49,0xd7,0x46,0x46,0x46,0xcc,0x43,0x43, + 0x43,0xbe,0x3f,0x3f,0x3f,0xb0,0x39,0x38,0x39,0xa2,0x33,0x33,0x33,0x93,0x35, + 0x35,0x35,0x85,0x39,0x39,0x39,0x76,0x40,0x3e,0x40,0x67,0x3c,0x3e,0x3c,0x58, + 0x0a,0x0a,0x0a,0x1a,0x82,0x00,0x00,0x00,0x00,0x86,0xff,0xff,0xff,0x00,0x94, + 0xfa,0xfa,0xfa,0x00,0x06,0xf9,0xf9,0xf9,0x00,0xf6,0xf6,0xf6,0x00,0xb5,0xb5, + 0xb5,0x00,0xee,0xee,0xee,0x00,0xbc,0xbc,0xbc,0x00,0xb1,0xb0,0xb1,0x00,0x82, + 0xda,0xda,0xda,0x00,0x1b,0xc9,0xc9,0xc9,0x00,0x95,0x94,0x95,0x00,0xae,0xaa, + 0xae,0x00,0xcd,0xc9,0xcd,0x00,0xc2,0xc0,0xc2,0x00,0x85,0x84,0x85,0x00,0x79, + 0x7a,0x79,0x00,0x5e,0x5e,0x5e,0x00,0x01,0x01,0x01,0x3f,0x51,0x51,0x51,0xff, + 0x5e,0x5e,0x5c,0xff,0x50,0x52,0x52,0xff,0x4a,0x49,0x49,0xff,0x46,0x46,0x46, + 0xff,0x47,0x47,0x47,0xff,0x47,0x47,0x49,0xf9,0x47,0x47,0x47,0xf1,0x46,0x45, + 0x46,0xe8,0x43,0x43,0x43,0xdd,0x3f,0x3f,0x3f,0xd1,0x38,0x39,0x38,0xc4,0x33, + 0x32,0x33,0xb7,0x35,0x33,0x35,0xa9,0x39,0x39,0x39,0x9a,0x3e,0x3d,0x3d,0x8b, + 0x42,0x42,0x42,0x7c,0x19,0x19,0x19,0x47,0x83,0x00,0x00,0x00,0x00,0x86,0xff, + 0xff,0xff,0x00,0x94,0xfa,0xfa,0xfa,0x00,0x22,0xf9,0xf9,0xf9,0x00,0xf6,0xf6, + 0xf6,0x00,0xb5,0xb5,0xb5,0x00,0xef,0xef,0xef,0x00,0xbd,0xbd,0xbd,0x00,0xb3, + 0xb1,0xb3,0x00,0xdc,0xdc,0xdc,0x17,0xdc,0xdc,0xdc,0x19,0xca,0xca,0xca,0x69, + 0x95,0x93,0x95,0x98,0xad,0xa9,0xad,0xc2,0xcc,0xc8,0xcc,0xc6,0xc0,0xbe,0xc0, + 0xc8,0x82,0x81,0x82,0xc2,0x75,0x76,0x75,0xaa,0x58,0x57,0x58,0xa3,0x3b,0x3c, + 0x3b,0xf5,0x45,0x45,0x45,0xff,0x42,0x42,0x42,0xff,0x46,0x46,0x46,0xff,0x42, + 0x42,0x42,0xff,0x45,0x45,0x45,0xff,0x46,0x46,0x46,0xff,0x45,0x46,0x45,0xff, + 0x43,0x43,0x43,0xfc,0x40,0x41,0x40,0xf5,0x3d,0x3d,0x3d,0xec,0x38,0x39,0x38, + 0xe1,0x32,0x33,0x32,0xd6,0x33,0x33,0x33,0xca,0x38,0x38,0x38,0xbd,0x3d,0x3d, + 0x3d,0xaf,0x45,0x43,0x45,0xa1,0x25,0x27,0x27,0x7f,0x84,0x00,0x00,0x00,0x00, + 0x86,0xff,0xff,0xff,0x00,0x95,0xfa,0xfa,0xfa,0x00,0x21,0xf7,0xf7,0xf7,0x00, + 0xb8,0xb8,0xb8,0x00,0xf2,0xf2,0xf2,0x12,0xc0,0xc0,0xc0,0x66,0xb6,0xb5,0xb6, + 0xb9,0xaf,0xaf,0xaf,0xf1,0x9f,0x9f,0x9f,0xff,0xb7,0xb7,0xb7,0xff,0xad,0xad, + 0xad,0xff,0xd5,0xd5,0xd5,0xff,0xc2,0xc2,0xc2,0xff,0xcf,0xcf,0xcf,0xff,0xad, + 0xad,0xad,0xff,0xae,0xaf,0xae,0xff,0x9e,0xa1,0x9e,0xff,0xaf,0xb4,0xaf,0xf1, + 0xa1,0xa4,0xa1,0xec,0x63,0x63,0x63,0xf6,0x34,0x34,0x34,0xfe,0x36,0x36,0x36, + 0xff,0x42,0x44,0x42,0xff,0x43,0x43,0x41,0xff,0x41,0x41,0x41,0xff,0x40,0x3f, + 0x3f,0xff,0x3d,0x3d,0x3d,0xff,0x39,0x38,0x39,0xf8,0x32,0x32,0x32,0xf0,0x32, + 0x33,0x32,0xe6,0x38,0x38,0x38,0xdb,0x3b,0x3d,0x3b,0xcf,0x43,0x43,0x43,0xc2, + 0x30,0x30,0x32,0xb0,0x01,0x01,0x01,0x04,0x84,0x00,0x00,0x00,0x00,0x86,0xff, + 0xff,0xff,0x00,0x93,0xfa,0xfa,0xfa,0x00,0x83,0xfb,0xfb,0xfb,0x00,0x1f,0xbd, + 0xbd,0xbd,0x64,0x8d,0x8d,0x8d,0xf6,0x7f,0x7f,0x7f,0xff,0x88,0x88,0x88,0xff, + 0x95,0x95,0x95,0xff,0xb0,0xb0,0xb0,0xff,0xab,0xab,0xab,0xff,0xd0,0xd1,0xd0, + 0xff,0xb0,0xb0,0xb0,0xff,0xdd,0xde,0xdd,0xff,0xbc,0xbb,0xbc,0xfe,0xd7,0xd7, + 0xd7,0xfc,0xca,0xcb,0xca,0xf9,0xb3,0xb4,0xb3,0xf5,0xd8,0xda,0xd8,0xf1,0xed, + 0xee,0xed,0xec,0xfe,0xff,0xfe,0xf0,0xc7,0xc8,0xc7,0xf4,0x56,0x57,0x56,0xfc, + 0x2f,0x2f,0x2f,0xff,0x3e,0x3e,0x3e,0xff,0x3d,0x3d,0x3d,0xff,0x3b,0x3b,0x3b, + 0xff,0x38,0x38,0x38,0xff,0x32,0x32,0x32,0xff,0x32,0x32,0x32,0xfb,0x37,0x37, + 0x37,0xf4,0x3b,0x3b,0x3b,0xea,0x41,0x41,0x41,0xe0,0x39,0x39,0x39,0xd5,0x05, + 0x05,0x04,0x2a,0x85,0x00,0x00,0x00,0x00,0x86,0xff,0xff,0xff,0x00,0x92,0xfa, + 0xfa,0xfa,0x00,0x19,0xfb,0xfb,0xfb,0x00,0xfd,0xfd,0xfd,0x00,0xff,0xff,0xff, + 0x00,0xc1,0xc1,0xc1,0xa8,0x72,0x72,0x72,0xff,0x75,0x75,0x75,0xff,0x85,0x85, + 0x85,0xff,0x93,0x95,0x93,0xff,0xaa,0xab,0xaa,0xff,0xa5,0xa5,0xa5,0xff,0xca, + 0xca,0xca,0xff,0xa5,0xa6,0xa5,0xff,0xd7,0xd6,0xd7,0xff,0xb2,0xb1,0xb2,0xff, + 0xbe,0xbd,0xbe,0xfe,0xd9,0xda,0xd9,0xfe,0xb1,0xb1,0xb1,0xfd,0xdb,0xdb,0xdb, + 0xfb,0xc2,0xc0,0xc2,0xfb,0xc5,0xc5,0xc5,0xfb,0xf6,0xf7,0xf6,0xfa,0xff,0xff, + 0xff,0xfc,0xea,0xed,0xea,0xfd,0x6f,0x71,0x6f,0xfe,0x33,0x32,0x33,0xff,0x82, + 0x37,0x37,0x37,0xff,0x82,0x32,0x32,0x32,0xff,0x05,0x35,0x35,0x35,0xff,0x39, + 0x39,0x39,0xfe,0x3e,0x40,0x40,0xf7,0x3e,0x40,0x3e,0xef,0x11,0x10,0x12,0x66, + 0x86,0x00,0x00,0x00,0x00,0x86,0xff,0xff,0xff,0x00,0x8c,0xfa,0xfa,0xfa,0x00, + 0x85,0xfb,0xfb,0xfb,0x00,0x22,0xfc,0xfc,0xfc,0x00,0xfd,0xfd,0xfd,0x00,0xff, + 0xff,0xff,0x00,0xc6,0xc6,0xc6,0xb6,0x74,0x74,0x74,0xff,0x75,0x74,0x75,0xff, + 0x81,0x81,0x81,0xff,0x8e,0x8c,0x8e,0xff,0xa5,0xa6,0xa5,0xff,0x9f,0x9e,0x9f, + 0xff,0xc4,0xc4,0xc4,0xff,0x9f,0x9e,0x9f,0xff,0xcc,0xcc,0xcc,0xff,0xbb,0xba, + 0xbb,0xff,0xae,0xae,0xae,0xff,0xe3,0xe4,0xe3,0xff,0xa5,0xa5,0xa5,0xff,0xd2, + 0xd2,0xd2,0xff,0xcf,0xd0,0xcf,0xfe,0xbd,0xbe,0xbd,0xfe,0xd6,0xd6,0xd6,0xfe, + 0xc9,0xc9,0xc9,0xfe,0xd3,0xd4,0xd3,0xfe,0xd6,0xd9,0xd6,0xfe,0xa5,0xa7,0xa5, + 0xff,0x4d,0x4e,0x4d,0xfe,0x32,0x31,0x32,0xff,0x31,0x31,0x31,0xff,0x32,0x32, + 0x32,0xff,0x35,0x35,0x37,0xff,0x3b,0x39,0x39,0xff,0x3e,0x3e,0x3e,0xff,0x42, + 0x43,0x42,0xff,0x17,0x18,0x17,0xa1,0x87,0x00,0x00,0x00,0x00,0x86,0xff,0xff, + 0xff,0x00,0x8b,0xf3,0xf3,0xf3,0x00,0x82,0xf4,0xf4,0xf4,0x00,0x25,0xe3,0xe1, + 0xe3,0x00,0xde,0xde,0xde,0x00,0xee,0xee,0xee,0x00,0xe3,0xe3,0xe3,0x00,0xea, + 0xea,0xea,0x00,0xe1,0xe1,0xe1,0x00,0xd6,0xd7,0xd6,0x82,0x83,0x83,0x83,0xff, + 0x6f,0x6e,0x6f,0xff,0x7d,0x7c,0x7d,0xff,0x89,0x88,0x89,0xff,0xa4,0xa3,0xa4, + 0xff,0x9c,0x9d,0x9c,0xff,0xc0,0xc0,0xc0,0xff,0xa5,0xa3,0xa5,0xff,0xc0,0xc0, + 0xc0,0xff,0xc9,0xc8,0xc9,0xff,0xa3,0xa2,0xa3,0xff,0xea,0xea,0xea,0xff,0xb1, + 0xb1,0xb1,0xff,0xcc,0xcc,0xcc,0xff,0xd8,0xd8,0xd8,0xff,0xbd,0xbe,0xbd,0xff, + 0xd5,0xd5,0xd5,0xff,0xd3,0xd2,0xd3,0xff,0xca,0xcb,0xca,0xff,0xd5,0xd6,0xd5, + 0xff,0xcf,0xd0,0xcf,0xff,0x7a,0x7b,0x7a,0xff,0x43,0x49,0x43,0xff,0x45,0x49, + 0x45,0xff,0x2f,0x2f,0x2f,0xff,0x33,0x33,0x33,0xff,0x39,0x39,0x39,0xff,0x3d, + 0x3e,0x3e,0xff,0x45,0x43,0x45,0xff,0x24,0x23,0x24,0xd4,0x88,0x00,0x00,0x00, + 0x00,0x86,0xff,0xff,0xff,0x00,0x8c,0xf4,0xf4,0xf4,0x00,0x26,0xf5,0xf5,0xf5, + 0x00,0xe4,0xe2,0xe4,0x00,0xdf,0xdf,0xdf,0x00,0xef,0xef,0xef,0x00,0xe5,0xe5, + 0xe5,0x00,0xee,0xee,0xee,0x00,0xe7,0xe7,0xe7,0x62,0x8b,0x8b,0x8b,0xff,0x6f, + 0x6d,0x6f,0xff,0x7e,0x7e,0x7e,0xff,0x8c,0x8d,0x8c,0xff,0xa7,0xa5,0xa7,0xff, + 0xa3,0xa2,0xa3,0xff,0xbc,0xbc,0xbc,0xff,0xb1,0xb1,0xb1,0xff,0xb5,0xb6,0xb5, + 0xff,0xd6,0xd5,0xd6,0xff,0x9b,0x9c,0x9b,0xff,0xe8,0xe8,0xe8,0xff,0xbb,0xba, + 0xbb,0xff,0xc6,0xc6,0xc6,0xff,0xe1,0xe1,0xe1,0xff,0xc6,0xc6,0xc6,0xff,0xd2, + 0xd1,0xd2,0xff,0xd6,0xd6,0xd6,0xff,0xd3,0xd4,0xd3,0xff,0xd4,0xd5,0xd4,0xff, + 0xda,0xdb,0xda,0xff,0xd9,0xda,0xd9,0xff,0xa5,0xa7,0xa5,0xff,0x59,0x5f,0x59, + 0xff,0x60,0x62,0x60,0xff,0x57,0x57,0x57,0xff,0x32,0x32,0x32,0xff,0x3d,0x3d, + 0x3d,0xff,0x45,0x45,0x45,0xff,0x30,0x30,0x30,0xf2,0x00,0x00,0x00,0x06,0x88, + 0x00,0x00,0x00,0x00,0x86,0xff,0xff,0xff,0x00,0x8c,0xf4,0xf4,0xf4,0x00,0x25, + 0xf5,0xf5,0xf5,0x00,0xe4,0xe3,0xe4,0x00,0xe0,0xe0,0xe0,0x00,0xf0,0xf0,0xf0, + 0x00,0xe8,0xe8,0xe8,0x00,0xf3,0xf3,0xf3,0x50,0x93,0x93,0x93,0xff,0x72,0x72, + 0x72,0xff,0x81,0x81,0x81,0xff,0x94,0x94,0x94,0xff,0xaa,0xaa,0xaa,0xff,0xae, + 0xae,0xae,0xff,0xbc,0xbc,0xbc,0xff,0xc0,0xc0,0xc0,0xff,0xb2,0xb2,0xb2,0xff, + 0xda,0xda,0xda,0xff,0x99,0x98,0x99,0xff,0xe0,0xe0,0xe0,0xff,0xc4,0xc3,0xc4, + 0xff,0xbb,0xbb,0xbb,0xff,0xe3,0xe3,0xe3,0xff,0xca,0xcb,0xca,0xff,0xcf,0xce, + 0xcf,0xff,0xd8,0xd8,0xd8,0xff,0xd9,0xda,0xd9,0xff,0xd2,0xd2,0xd2,0xff,0xda, + 0xd8,0xda,0xff,0xda,0xdb,0xda,0xff,0xcf,0xd0,0xcf,0xff,0xea,0xec,0xea,0xff, + 0xc0,0xc0,0xc0,0xff,0x65,0x64,0x65,0xff,0x6e,0x6d,0x6e,0xff,0x48,0x47,0x48, + 0xff,0x3d,0x3d,0x3d,0xff,0x31,0x31,0x31,0xfb,0x01,0x01,0x01,0x1a,0x89,0x00, + 0x00,0x00,0x00,0x86,0xff,0xff,0xff,0x00,0x8c,0xf4,0xf4,0xf4,0x00,0x24,0xf5, + 0xf5,0xf5,0x00,0xe4,0xe3,0xe4,0x00,0xe1,0xe1,0xe1,0x00,0xf3,0xf3,0xf3,0x00, + 0xed,0xed,0xed,0x3c,0x9e,0x9d,0x9e,0xff,0x7b,0x7b,0x7b,0xff,0x8c,0x8d,0x8c, + 0xff,0xa4,0xa3,0xa4,0xff,0xae,0xae,0xae,0xff,0xc3,0xc3,0xc3,0xff,0xbf,0xbf, + 0xbf,0xff,0xdc,0xdc,0xdc,0xff,0xb6,0xb6,0xb6,0xff,0xe5,0xe5,0xe5,0xff,0xa7, + 0xa7,0xa7,0xff,0xd3,0xd3,0xd3,0xff,0xcc,0xcb,0xcc,0xff,0xab,0xaa,0xab,0xff, + 0xe0,0xe0,0xe0,0xff,0xc9,0xc9,0xc9,0xff,0xcd,0xce,0xcd,0xff,0xd7,0xd5,0xd7, + 0xff,0xdc,0xdc,0xdc,0xff,0xd0,0xd0,0xd0,0xff,0xd5,0xd5,0xd5,0xff,0xdf,0xde, + 0xdf,0xff,0xd1,0xd2,0xd1,0xff,0xdd,0xdd,0xdd,0xff,0xd5,0xd5,0xd5,0xff,0xc3, + 0xc3,0xc3,0xff,0xc6,0xc5,0xc6,0xff,0x6d,0x6a,0x6d,0xff,0x4e,0x4f,0x4e,0xff, + 0x30,0x30,0x30,0xfe,0x00,0x00,0x00,0x36,0x8a,0x00,0x00,0x00,0x00,0x86,0xff, + 0xff,0xff,0x00,0x8c,0xf4,0xf4,0xf4,0x00,0x23,0xf5,0xf5,0xf5,0x00,0xe5,0xe4, + 0xe5,0x00,0xe4,0xe4,0xe4,0x00,0xf9,0xf9,0xf9,0x2d,0x9c,0x9c,0x9c,0xfa,0x6e, + 0x6d,0x6e,0xff,0x7a,0x79,0x7a,0xff,0x7e,0x7c,0x7e,0xff,0x6f,0x6c,0x6f,0xff, + 0x84,0x82,0x84,0xff,0x68,0x68,0x68,0xff,0xa8,0xa6,0xa8,0xff,0x90,0x90,0x90, + 0xff,0xdb,0xdc,0xdb,0xff,0xc4,0xc4,0xc4,0xff,0xd6,0xd5,0xd6,0xff,0xe0,0xe0, + 0xe0,0xff,0xae,0xad,0xae,0xff,0xdb,0xda,0xdb,0xff,0xc8,0xc8,0xc8,0xff,0xc4, + 0xc3,0xc4,0xff,0xd6,0xd6,0xd6,0xff,0xd9,0xda,0xd9,0xff,0xd4,0xd3,0xd4,0xff, + 0xd0,0xce,0xd0,0xff,0xe1,0xe1,0xe1,0xff,0xd2,0xd2,0xd2,0xff,0xd5,0xd5,0xd5, + 0xff,0xd9,0xda,0xd9,0xff,0xc6,0xc7,0xc6,0xff,0xe1,0xe1,0xe1,0xff,0xc9,0xc9, + 0xc9,0xff,0x75,0x74,0x75,0xff,0x42,0x40,0x42,0xff,0x80,0x81,0x80,0xc6,0x8b, + 0x00,0x00,0x00,0x00,0x86,0xff,0xff,0xff,0x00,0x8c,0xf4,0xf4,0xf4,0x00,0x24, + 0xf6,0xf6,0xf6,0x00,0xe8,0xe7,0xe8,0x00,0xea,0xea,0xea,0x33,0x8e,0x8e,0x8e, + 0xf1,0x56,0x53,0x56,0xff,0x54,0x52,0x54,0xff,0x53,0x51,0x53,0xff,0x4f,0x4e, + 0x4f,0xff,0x64,0x62,0x64,0xff,0x74,0x72,0x74,0xff,0x76,0x75,0x76,0xff,0x69, + 0x68,0x69,0xff,0x53,0x52,0x53,0xff,0x68,0x67,0x68,0xff,0x5c,0x5d,0x5c,0xff, + 0xb5,0xb6,0xb5,0xff,0xa6,0xa6,0xa6,0xff,0xdd,0xdd,0xdd,0xff,0xd7,0xd7,0xd7, + 0xff,0xbe,0xbe,0xbe,0xff,0xd7,0xd8,0xd7,0xff,0xd3,0xd4,0xd3,0xff,0xd4,0xd5, + 0xd4,0xff,0xd1,0xd1,0xd1,0xff,0xde,0xe0,0xde,0xff,0xd6,0xd6,0xd6,0xff,0xd0, + 0xcf,0xd0,0xff,0xdb,0xda,0xdb,0xff,0xcc,0xcc,0xcc,0xff,0xd7,0xd6,0xd7,0xff, + 0xca,0xcc,0xca,0xff,0xb6,0xb6,0xb6,0xff,0xdf,0xe0,0xdf,0xff,0x57,0x57,0x57, + 0xff,0x7a,0x7b,0x7a,0xdf,0xff,0xff,0xff,0x01,0x8a,0x00,0x00,0x00,0x00,0x86, + 0xff,0xff,0xff,0x00,0x8b,0xf4,0xf4,0xf4,0x00,0x25,0xf5,0xf6,0xf5,0x00,0xf9, + 0xfa,0xf9,0x00,0xee,0xed,0xee,0x40,0x79,0x77,0x79,0xff,0x45,0x41,0x45,0xff, + 0x4f,0x4d,0x4f,0xff,0x55,0x57,0x55,0xff,0x5d,0x5b,0x5d,0xff,0x83,0x80,0x83, + 0xff,0xb7,0xb4,0xb7,0xff,0xd5,0xd2,0xd5,0xff,0xca,0xc8,0xca,0xff,0xad,0xab, + 0xad,0xff,0x92,0x92,0x92,0xff,0x80,0x82,0x80,0xff,0x71,0x75,0x71,0xff,0x5d, + 0x60,0x5d,0xff,0x48,0x4b,0x48,0xff,0x9c,0x9d,0x9c,0xff,0xa6,0xa7,0xa6,0xff, + 0xdf,0xdf,0xdf,0xff,0xda,0xd9,0xda,0xff,0xd0,0xd1,0xd0,0xff,0xd4,0xd4,0xd4, + 0xff,0xdc,0xdd,0xdc,0xff,0xd8,0xd9,0xd8,0xff,0xce,0xcd,0xce,0xff,0xdb,0xda, + 0xdb,0xff,0xd3,0xd3,0xd3,0xff,0xcf,0xcd,0xcf,0xff,0xd3,0xd2,0xd3,0xff,0xbe, + 0xbf,0xbe,0xff,0xda,0xdb,0xda,0xff,0xba,0xb9,0xba,0xff,0x88,0x89,0x88,0xff, + 0x6e,0x6d,0x6e,0xff,0xe1,0xe0,0xe1,0x4f,0x8a,0x00,0x00,0x00,0x00,0x86,0xff, + 0xff,0xff,0x00,0x89,0xf4,0xf4,0xf4,0x00,0x82,0xf5,0xf5,0xf5,0x00,0x25,0xf8, + 0xf8,0xf8,0x00,0xff,0xff,0xff,0x1b,0x80,0x7c,0x80,0xf6,0x38,0x35,0x38,0xff, + 0x56,0x55,0x56,0xff,0x89,0x8b,0x89,0xff,0xa3,0xa4,0xa3,0xff,0xba,0xb9,0xba, + 0xff,0xd0,0xd0,0xd0,0xff,0xd8,0xd7,0xd8,0xff,0xd7,0xd6,0xd7,0xff,0xcc,0xca, + 0xcc,0xff,0xb7,0xb6,0xb7,0xff,0xa2,0xa1,0xa2,0xff,0x9b,0x9c,0x9b,0xff,0xa8, + 0xaf,0xa8,0xff,0xbe,0xc6,0xbe,0xff,0xb7,0xb9,0xb7,0xff,0x73,0x74,0x73,0xff, + 0x49,0x4c,0x49,0xff,0xb2,0xb3,0xb2,0xff,0xc7,0xc7,0xc7,0xff,0xdb,0xdc,0xdb, + 0xff,0xdb,0xdb,0xdb,0xff,0xda,0xdb,0xda,0xff,0xd1,0xd1,0xd1,0xff,0xda,0xdb, + 0xda,0xff,0xd5,0xd5,0xd5,0xff,0xcc,0xcc,0xcc,0xff,0xd3,0xd3,0xd3,0xff,0xc6, + 0xc7,0xc6,0xff,0xd2,0xd2,0xd2,0xff,0xbc,0xbc,0xbc,0xff,0xb3,0xb3,0xb3,0xff, + 0xdb,0xdb,0xdb,0xff,0x8b,0x87,0x8b,0xff,0xcc,0xc8,0xcc,0x8f,0x8a,0x00,0x00, + 0x00,0x00,0x86,0xff,0xff,0xff,0x00,0x89,0xeb,0xeb,0xeb,0x00,0x28,0xec,0xec, + 0xec,0x00,0xed,0xed,0xed,0x00,0xe5,0xe3,0xe5,0x00,0x9f,0x9d,0x9f,0xb6,0x3c, + 0x39,0x3c,0xff,0x6e,0x6d,0x6e,0xff,0xc5,0xc7,0xc5,0xff,0xde,0xdf,0xde,0xff, + 0xe5,0xe6,0xe5,0xff,0xe0,0xe2,0xe0,0xff,0xd5,0xd6,0xd5,0xff,0xd0,0xd3,0xd0, + 0xff,0xd1,0xd1,0xd1,0xff,0xd4,0xd3,0xd4,0xff,0xde,0xdd,0xde,0xff,0xdd,0xdb, + 0xdd,0xff,0xcb,0xca,0xcb,0xff,0xbf,0xc4,0xbf,0xff,0xd1,0xd4,0xd1,0xff,0xf5, + 0xf3,0xf5,0xff,0xff,0xff,0xff,0xff,0xc7,0xc8,0xc7,0xff,0x5a,0x5c,0x5a,0xff, + 0x66,0x68,0x66,0xff,0xe5,0xe4,0xe5,0xff,0xe1,0xe2,0xe1,0xff,0xcf,0xd0,0xcf, + 0xff,0xdc,0xdb,0xdc,0xff,0xd9,0xda,0xd9,0xff,0xc9,0xcb,0xc9,0xff,0xd3,0xd1, + 0xd3,0xff,0xcd,0xcd,0xcd,0xff,0xca,0xc9,0xca,0xff,0xc8,0xc8,0xc8,0xff,0xb6, + 0xb4,0xb6,0xff,0xd3,0xd4,0xd3,0xff,0xb1,0xb1,0xb1,0xff,0xb6,0xb2,0xb6,0xff, + 0xbb,0xb9,0xbb,0xc7,0xf2,0xf2,0xf2,0x00,0x89,0xef,0xef,0xef,0x00,0x86,0xff, + 0xff,0xff,0x00,0x89,0xec,0xec,0xec,0x00,0x28,0xed,0xed,0xed,0x00,0xef,0xef, + 0xef,0x00,0xe8,0xe7,0xe8,0x38,0x59,0x55,0x59,0xff,0x7f,0x7d,0x7f,0xff,0xe0, + 0xe0,0xe0,0xff,0xe5,0xe5,0xe5,0xff,0xd2,0xd2,0xd2,0xff,0xb5,0xb7,0xb5,0xff, + 0x83,0x82,0x83,0xff,0x7d,0x7c,0x7d,0xff,0x79,0x7a,0x79,0xff,0x4f,0x50,0x4f, + 0xff,0x51,0x52,0x51,0xff,0x83,0x7e,0x83,0xff,0xb0,0xaf,0xb0,0xff,0xcf,0xce, + 0xcf,0xff,0xd3,0xd2,0xd3,0xff,0xce,0xcd,0xce,0xff,0xdc,0xde,0xdc,0xff,0xf4, + 0xf5,0xf4,0xff,0xff,0xff,0xff,0xff,0xdd,0xe2,0xdd,0xff,0x7a,0x7c,0x7a,0xff, + 0x68,0x67,0x68,0xff,0xaf,0xb0,0xaf,0xff,0xe8,0xe8,0xe8,0xff,0xde,0xdf,0xde, + 0xff,0xc5,0xc6,0xc5,0xff,0xd6,0xd5,0xd6,0xff,0xcf,0xd0,0xcf,0xff,0xc5,0xc5, + 0xc5,0xff,0xcd,0xcc,0xcd,0xff,0xbb,0xbb,0xbb,0xff,0xd5,0xd5,0xd5,0xff,0xa3, + 0xa3,0xa3,0xff,0xc2,0xc1,0xc2,0xff,0xc1,0xc2,0xc1,0xff,0xad,0xab,0xad,0xda, + 0xd9,0xd8,0xd9,0x00,0x89,0xd7,0xd6,0xd7,0x00,0x86,0xff,0xff,0xff,0x00,0x89, + 0xed,0xed,0xed,0x00,0x29,0xee,0xee,0xee,0x00,0xf1,0xf1,0xf1,0x00,0xb9,0xb8, + 0xb9,0x83,0x73,0x72,0x73,0xff,0xde,0xe0,0xde,0xff,0xe1,0xe1,0xe1,0xff,0xae, + 0xac,0xae,0xff,0x90,0x92,0x90,0xff,0x6e,0x6e,0x6e,0xff,0x69,0x67,0x69,0xff, + 0x77,0x78,0x77,0xff,0x4b,0x4c,0x4b,0xff,0x36,0x37,0x36,0xff,0x52,0x4f,0x52, + 0xff,0x6b,0x6a,0x6b,0xff,0x91,0x95,0x91,0xff,0xc3,0xc3,0xc3,0xff,0xd0,0xcd, + 0xd0,0xff,0xc9,0xcb,0xc9,0xff,0xc7,0xc9,0xc7,0xff,0xd3,0xd3,0xd3,0xff,0xe1, + 0xe3,0xe1,0xff,0xd7,0xdc,0xd7,0xff,0xac,0xae,0xac,0xff,0x4f,0x52,0x4f,0xff, + 0x6e,0x6f,0x6e,0xff,0xc8,0xc8,0xc8,0xff,0xbe,0xbf,0xbe,0xff,0xd2,0xd2,0xd2, + 0xff,0xd6,0xd6,0xd6,0xff,0xc0,0xc0,0xc0,0xff,0xd1,0xd0,0xd1,0xff,0xc0,0xc0, + 0xc0,0xff,0xce,0xce,0xce,0xff,0xb6,0xb6,0xb6,0xff,0xb1,0xb1,0xb1,0xff,0xc1, + 0xc1,0xc1,0xff,0xb8,0xb8,0xb8,0xff,0xca,0xca,0xca,0xd7,0xda,0xda,0xda,0x00, + 0xd8,0xd8,0xd8,0x00,0x88,0xd7,0xd7,0xd7,0x00,0x86,0xff,0xff,0xff,0x00,0x84, + 0xd9,0xd8,0xd9,0x00,0x03,0xda,0xd8,0xda,0x00,0xda,0xd9,0xda,0x00,0xda,0xd8, + 0xda,0x00,0x82,0xd9,0xd8,0xd9,0x00,0x28,0xda,0xd9,0xda,0x00,0xdd,0xdc,0xdd, + 0x00,0x92,0x91,0x92,0xc9,0xc2,0xc4,0xc2,0xff,0xe4,0xe4,0xe4,0xff,0xa6,0xa4, + 0xa6,0xff,0x83,0x84,0x83,0xff,0x77,0x77,0x77,0xff,0x6e,0x6b,0x6e,0xff,0x7d, + 0x7e,0x7d,0xff,0x57,0x58,0x57,0xff,0x3a,0x3c,0x3a,0xff,0x57,0x54,0x57,0xff, + 0x74,0x72,0x74,0xff,0x95,0x99,0x95,0xff,0xc0,0xc1,0xc0,0xff,0xd0,0xce,0xd0, + 0xff,0xc7,0xc9,0xc7,0xff,0xdc,0xdd,0xdc,0xff,0xe2,0xe1,0xe2,0xff,0xca,0xcb, + 0xca,0xff,0xcf,0xcf,0xcf,0xff,0xbf,0xc3,0xbf,0xff,0x72,0x74,0x72,0xff,0x4f, + 0x52,0x4f,0xff,0x44,0x47,0x44,0xff,0x4d,0x4e,0x4d,0xff,0xc3,0xc4,0xc3,0xff, + 0xe8,0xe9,0xe8,0xff,0xb2,0xb0,0xb2,0xff,0xd3,0xd1,0xd3,0xff,0xc0,0xc0,0xc0, + 0xff,0xbf,0xbe,0xbf,0xff,0xc6,0xc5,0xc6,0xff,0xad,0xad,0xad,0xff,0xcb,0xcb, + 0xcb,0xff,0xa4,0xa4,0xa4,0xff,0xc7,0xc9,0xc7,0xff,0xd1,0xd3,0xd1,0xbd,0xfc, + 0xfc,0xfc,0x00,0x89,0xfa,0xfa,0xfa,0x00,0x86,0xff,0xff,0xff,0x00,0x83,0xd9, + 0xd9,0xd9,0x00,0x01,0xda,0xda,0xda,0x00,0x83,0xdb,0xdb,0xdb,0x00,0x2b,0xda, + 0xda,0xda,0x00,0xd9,0xd9,0xd9,0x00,0xda,0xda,0xda,0x00,0xdc,0xdc,0xdc,0x0c, + 0xbb,0xbc,0xbb,0xe5,0xde,0xe1,0xde,0xff,0xad,0xad,0xad,0xff,0x82,0x83,0x82, + 0xff,0x7e,0x7f,0x7e,0xff,0x6d,0x6a,0x6d,0xff,0x7f,0x80,0x7f,0xff,0x5f,0x60, + 0x5f,0xff,0x3b,0x3d,0x3b,0xff,0x51,0x51,0x51,0xff,0x6f,0x6c,0x6f,0xff,0x8f, + 0x91,0x8f,0xff,0xba,0xbc,0xba,0xff,0xd0,0xcf,0xd0,0xff,0xc9,0xc9,0xc9,0xff, + 0xd5,0xd8,0xd5,0xff,0xf1,0xef,0xf1,0xff,0xce,0xce,0xce,0xff,0x9e,0x9f,0x9e, + 0xff,0xc1,0xc2,0xc1,0xff,0xd2,0xd8,0xd2,0xff,0x9e,0xa2,0x9e,0xff,0x3e,0x44, + 0x3e,0xff,0x4a,0x4e,0x4a,0xff,0x59,0x59,0x59,0xff,0x73,0x74,0x73,0xff,0x97, + 0x97,0x97,0xff,0xc9,0xc8,0xc9,0xff,0xcf,0xcf,0xcf,0xff,0xb0,0xb0,0xb0,0xff, + 0xd2,0xd1,0xd2,0xff,0xaa,0xaa,0xaa,0xff,0xd1,0xd0,0xd1,0xff,0x9e,0x9f,0x9e, + 0xff,0xc2,0xc3,0xc2,0xff,0xbb,0xbb,0xbb,0xff,0xdb,0xdb,0xdb,0xc8,0xf5,0xf5, + 0xf5,0x00,0xf3,0xf3,0xf3,0x00,0x88,0xf2,0xf2,0xf2,0x00,0x86,0xff,0xff,0xff, + 0x00,0x82,0xf0,0xf0,0xf0,0x00,0x06,0xf9,0xf7,0xf9,0x00,0xe0,0xe0,0xe0,0x00, + 0xcd,0xcd,0xcd,0x00,0xce,0xce,0xce,0x00,0xd5,0xd7,0xd5,0x00,0xf3,0xf3,0xf3, + 0x00,0x82,0xf2,0xf2,0xf2,0x00,0x28,0xf4,0xf4,0xf4,0x07,0xd5,0xd9,0xd5,0xee, + 0xb5,0xb4,0xb5,0xff,0x82,0x83,0x82,0xff,0x82,0x84,0x82,0xff,0x6b,0x6a,0x6b, + 0xff,0x80,0x7f,0x80,0xff,0x66,0x67,0x66,0xff,0x3d,0x3f,0x3d,0xff,0x50,0x4f, + 0x50,0xff,0x78,0x76,0x78,0xff,0xa0,0xa3,0xa0,0xff,0xc5,0xc7,0xc5,0xff,0xd7, + 0xd5,0xd7,0xff,0xcd,0xca,0xcd,0xff,0xd2,0xd3,0xd2,0xff,0xef,0xee,0xef,0xff, + 0xda,0xd9,0xda,0xff,0x9a,0x99,0x9a,0xff,0xa0,0xa0,0xa0,0xff,0xc9,0xc7,0xc9, + 0xff,0xce,0xd2,0xce,0xff,0xd6,0xdc,0xd6,0xff,0x9f,0xa4,0x9f,0xff,0x58,0x59, + 0x58,0xff,0x6d,0x6b,0x6d,0xff,0x50,0x4f,0x50,0xff,0x81,0x81,0x81,0xff,0xde, + 0xde,0xde,0xff,0xa9,0xa9,0xa9,0xff,0xd1,0xd0,0xd1,0xff,0xa6,0xa7,0xa6,0xff, + 0xc4,0xc5,0xc4,0xff,0xac,0xad,0xac,0xff,0xb5,0xb5,0xb5,0xff,0xbd,0xbe,0xbd, + 0xff,0xc1,0xc1,0xc1,0xff,0xd6,0xd6,0xd6,0xb2,0xf0,0xf0,0xf0,0x00,0xee,0xee, + 0xee,0x00,0x88,0xed,0xed,0xed,0x00,0x86,0xff,0xff,0xff,0x00,0x82,0xef,0xef, + 0xef,0x00,0x30,0xf8,0xf6,0xf8,0x00,0xe0,0xe0,0xe0,0x00,0xcd,0xcd,0xcd,0x00, + 0xcf,0xcf,0xcf,0x00,0xd6,0xd8,0xd6,0x00,0xbb,0xbc,0xbb,0x00,0xe8,0xe8,0xe8, + 0x00,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0x17,0xbc,0xbd,0xbc,0xff,0x83,0x81, + 0x83,0xff,0x84,0x86,0x84,0xff,0x6b,0x69,0x6b,0xff,0x7e,0x7e,0x7e,0xff,0x6d, + 0x6e,0x6d,0xff,0x3d,0x40,0x3d,0xff,0x4d,0x4e,0x4d,0xff,0x4f,0x4c,0x4f,0xff, + 0x35,0x34,0x35,0xff,0x5b,0x5c,0x5b,0xff,0x9f,0x9d,0x9f,0xff,0xcc,0xc9,0xcc, + 0xff,0xe2,0xe3,0xe2,0xff,0xff,0xff,0xff,0xff,0xee,0xec,0xee,0xff,0xa7,0xa7, + 0xa7,0xff,0xa4,0xa4,0xa4,0xff,0xc7,0xc6,0xc7,0xff,0xd3,0xd4,0xd3,0xff,0xbe, + 0xc0,0xbe,0xff,0xc2,0xc6,0xc2,0xff,0xd7,0xdc,0xd7,0xff,0xa2,0xa4,0xa2,0xff, + 0x66,0x62,0x66,0xff,0x60,0x5d,0x60,0xff,0x55,0x55,0x55,0xff,0x78,0x78,0x78, + 0xff,0xce,0xce,0xce,0xff,0xbd,0xbd,0xbd,0xff,0xac,0xae,0xac,0xff,0xc0,0xbe, + 0xc0,0xff,0xa7,0xa7,0xa7,0xff,0xbe,0xbe,0xbe,0xff,0xb6,0xb6,0xb6,0xff,0xb9, + 0xb9,0xb9,0xff,0xd1,0xd1,0xd1,0xbe,0xf3,0xf3,0xf3,0x00,0xf1,0xf1,0xf1,0x00, + 0x88,0xf0,0xf0,0xf0,0x00,0x86,0xff,0xff,0xff,0x00,0x82,0xef,0xef,0xef,0x00, + 0x2f,0xf7,0xf6,0xf7,0x00,0xe0,0xe0,0xe0,0x00,0xcd,0xcd,0xcd,0x00,0xcf,0xcf, + 0xcf,0x00,0xd7,0xd8,0xd7,0x00,0xbd,0xbe,0xbd,0x00,0xec,0xec,0xec,0x00,0xae, + 0xad,0xae,0x00,0xdd,0xdd,0xdd,0x4d,0x81,0x81,0x81,0xff,0x7e,0x7f,0x7e,0xff, + 0x64,0x62,0x64,0xff,0x72,0x72,0x72,0xff,0x6a,0x6b,0x6a,0xff,0x3d,0x40,0x3d, + 0xff,0x47,0x48,0x47,0xff,0x53,0x4f,0x53,0xff,0x2d,0x2c,0x2d,0xff,0x47,0x47, + 0x47,0xff,0x41,0x45,0x41,0xff,0x2a,0x2d,0x2a,0xff,0x2f,0x2e,0x2f,0xff,0x49, + 0x4a,0x49,0xff,0x8a,0x88,0x8a,0xff,0xa1,0xa0,0xa1,0xff,0xba,0xbb,0xba,0xff, + 0xd7,0xd7,0xd7,0xff,0xd9,0xd8,0xd9,0xff,0xc3,0xc3,0xc3,0xff,0xb6,0xba,0xb6, + 0xff,0xca,0xc9,0xca,0xff,0xd4,0xd7,0xd4,0xff,0xd6,0xdc,0xd6,0xff,0x8b,0x8c, + 0x8b,0xff,0x4c,0x4a,0x4c,0xff,0x48,0x48,0x48,0xff,0x6e,0x6f,0x6e,0xff,0xc6, + 0xc6,0xc6,0xff,0xb4,0xb4,0xb4,0xff,0xcc,0xcb,0xcc,0xff,0x9e,0x9e,0x9e,0xff, + 0xc4,0xc3,0xc4,0xff,0xb2,0xb2,0xb2,0xff,0xbd,0xbd,0xbd,0xff,0xb0,0xb0,0xb0, + 0xff,0xd0,0xd0,0xd0,0x9f,0xf4,0xf4,0xf4,0x00,0x89,0xf2,0xf2,0xf2,0x00,0x86, + 0xff,0xff,0xff,0x00,0x82,0xef,0xef,0xef,0x00,0x2f,0xf7,0xf6,0xf7,0x00,0xe0, + 0xe0,0xe0,0x00,0xcd,0xcd,0xcd,0x00,0xd0,0xd0,0xd0,0x00,0xd9,0xda,0xd9,0x00, + 0xc1,0xc2,0xc1,0x00,0xf1,0xf1,0xf1,0x01,0xb4,0xb3,0xb4,0x55,0x7e,0x7b,0x7e, + 0xf5,0x8b,0x8c,0x8b,0xff,0x9e,0x9b,0x9e,0xff,0xa1,0x9e,0xa1,0xff,0x96,0x95, + 0x96,0xff,0x5a,0x5c,0x5a,0xff,0x41,0x43,0x41,0xff,0x5a,0x56,0x5a,0xff,0x6a, + 0x69,0x6a,0xff,0x95,0x98,0x95,0xff,0xa8,0xad,0xa8,0xff,0xc1,0xca,0xc1,0xff, + 0xdd,0xe0,0xdd,0xff,0xe0,0xe1,0xe0,0xff,0xb5,0xb5,0xb5,0xff,0x6d,0x6e,0x6d, + 0xff,0x29,0x29,0x29,0xff,0x40,0x40,0x40,0xff,0xa3,0xa0,0xa3,0xff,0xda,0xdb, + 0xda,0xff,0xc8,0xcc,0xc8,0xff,0xc4,0xc8,0xc4,0xff,0xdf,0xdc,0xdf,0xff,0xd8, + 0xd6,0xd8,0xff,0xcc,0xd2,0xcc,0xff,0xc9,0xcf,0xc9,0xff,0x57,0x55,0x57,0xff, + 0x43,0x43,0x43,0xff,0x48,0x4b,0x48,0xff,0x82,0x83,0x82,0xff,0xdf,0xde,0xdf, + 0xff,0xa9,0xa8,0xa9,0xff,0xbf,0xc1,0xbf,0xff,0xb2,0xb2,0xb2,0xff,0xbc,0xbc, + 0xbc,0xff,0xae,0xae,0xae,0xff,0xa3,0xa3,0xa3,0xff,0xe2,0xe3,0xe2,0x5e,0xdf, + 0xdf,0xdf,0x00,0x89,0xde,0xde,0xde,0x00,0x86,0xff,0xff,0xff,0x00,0x82,0xef, + 0xef,0xef,0x00,0x2f,0xf7,0xf6,0xf7,0x00,0xe0,0xe0,0xe0,0x00,0xce,0xce,0xce, + 0x00,0xd2,0xd2,0xd2,0x00,0xdd,0xde,0xdd,0x00,0xc6,0xc8,0xc6,0x7c,0x83,0x85, + 0x83,0xec,0x64,0x61,0x64,0xff,0x7d,0x7b,0x7d,0xff,0xb7,0xb5,0xb7,0xff,0xd6, + 0xd1,0xd6,0xff,0xcc,0xca,0xcc,0xff,0xb4,0xb2,0xb4,0xff,0x9b,0x9b,0x9b,0xff, + 0x91,0x90,0x91,0xff,0x86,0x86,0x86,0xff,0x9e,0xa1,0x9e,0xff,0xb9,0xbe,0xb9, + 0xff,0xac,0xb3,0xac,0xff,0xcd,0xd0,0xcd,0xff,0xea,0xeb,0xea,0xff,0xfd,0xfe, + 0xfd,0xff,0xff,0xff,0xff,0xff,0xfd,0xff,0xfd,0xff,0xc1,0xc2,0xc1,0xff,0x49, + 0x4c,0x49,0xff,0x08,0x09,0x08,0xff,0x2c,0x2c,0x2c,0xff,0x98,0x9a,0x98,0xff, + 0xf1,0xf0,0xf1,0xff,0xec,0xe9,0xec,0xff,0xb4,0xb5,0xb4,0xff,0xa7,0xa6,0xa7, + 0xff,0xd9,0xde,0xd9,0xff,0x9d,0xa0,0x9d,0xff,0x46,0x47,0x46,0xff,0x58,0x58, + 0x58,0xff,0x72,0x72,0x72,0xff,0xb8,0xb8,0xb8,0xff,0xc6,0xc6,0xc6,0xff,0xbd, + 0xbe,0xbd,0xff,0xbb,0xbc,0xbb,0xff,0xb5,0xb7,0xb5,0xff,0x99,0x98,0x99,0xff, + 0xa0,0xa0,0xa0,0xff,0xce,0xcc,0xce,0x23,0xcc,0xc9,0xcc,0x00,0x89,0xcb,0xc8, + 0xcb,0x00,0x86,0xff,0xff,0xff,0x00,0x82,0xef,0xef,0xef,0x00,0x2f,0xf7,0xf6, + 0xf7,0x00,0xe0,0xe0,0xe0,0x00,0xd0,0xd0,0xd0,0x00,0xd6,0xd6,0xd6,0x0d,0x90, + 0x92,0x90,0xd0,0x60,0x62,0x60,0xff,0x5a,0x57,0x5a,0xff,0x7f,0x7c,0x7f,0xff, + 0xb3,0xb3,0xb3,0xff,0xcf,0xcc,0xcf,0xff,0xc5,0xc2,0xc5,0xff,0xad,0xac,0xad, + 0xff,0x98,0x99,0x98,0xff,0x95,0x94,0x95,0xff,0x9b,0x9b,0x9b,0xff,0xa6,0xab, + 0xa6,0xff,0xbb,0xc3,0xbb,0xff,0xd3,0xd6,0xd3,0xff,0xd5,0xd7,0xd5,0xff,0xe4, + 0xe4,0xe4,0xff,0xee,0xec,0xee,0xff,0xe4,0xe2,0xe4,0xff,0xd7,0xda,0xd7,0xff, + 0xc4,0xc5,0xc4,0xff,0x7e,0x7f,0x7e,0xff,0x57,0x5a,0x57,0xff,0x4e,0x53,0x4e, + 0xff,0x3a,0x3b,0x3a,0xff,0x0d,0x0d,0x0d,0xff,0x60,0x5e,0x60,0xff,0xc7,0xc8, + 0xc7,0xff,0xa6,0xa3,0xa6,0xff,0x9d,0x9c,0x9d,0xff,0xc7,0xcc,0xc7,0xff,0xcf, + 0xd6,0xcf,0xff,0x72,0x72,0x72,0xff,0x7c,0x77,0x7c,0xff,0x53,0x53,0x53,0xff, + 0xab,0xab,0xab,0xff,0xd3,0xd3,0xd3,0xff,0xbb,0xbb,0xbb,0xff,0xba,0xbb,0xba, + 0xff,0xa4,0xa4,0xa4,0xff,0x7c,0x7c,0x7c,0xff,0xbd,0xbd,0xbd,0xa2,0xcd,0xca, + 0xcd,0x00,0xcb,0xc9,0xcb,0x00,0x89,0xca,0xc8,0xca,0x00,0x86,0xff,0xff,0xff, + 0x00,0x82,0xef,0xef,0xef,0x00,0x2e,0xf8,0xf7,0xf8,0x00,0xe2,0xe2,0xe2,0x00, + 0xd2,0xd2,0xd2,0x04,0x8d,0x8d,0x8d,0xd0,0x54,0x57,0x54,0xff,0x5e,0x5c,0x5e, + 0xff,0x7a,0x78,0x7a,0xff,0xab,0xa9,0xab,0xff,0xca,0xc7,0xca,0xff,0xc4,0xc1, + 0xc4,0xff,0xac,0xa9,0xac,0xff,0x96,0x95,0x96,0xff,0x8f,0x8e,0x8f,0xff,0x96, + 0x96,0x96,0xff,0x9f,0xa2,0x9f,0xff,0xb2,0xba,0xb2,0xff,0xcd,0xd0,0xcd,0xff, + 0xe4,0xe4,0xe4,0xff,0xf0,0xf1,0xf0,0xff,0xf2,0xf2,0xf2,0xff,0xe4,0xe3,0xe4, + 0xff,0xb0,0xaf,0xb0,0xff,0xa1,0xa3,0xa1,0xff,0xc4,0xc2,0xc4,0xff,0x8f,0x91, + 0x8f,0xff,0x46,0x4b,0x46,0xff,0x50,0x51,0x50,0xff,0x75,0x75,0x75,0xff,0x6b, + 0x6b,0x6b,0xff,0x14,0x15,0x14,0xff,0x12,0x12,0x12,0xff,0x91,0x90,0x91,0xff, + 0xc8,0xcc,0xc8,0xff,0xd5,0xd5,0xd5,0xff,0xd1,0xd5,0xd1,0xff,0xad,0xad,0xad, + 0xff,0x9d,0x94,0x9d,0xff,0x6c,0x6c,0x6c,0xff,0x7d,0x7e,0x7d,0xff,0xcb,0xca, + 0xcb,0xff,0xc3,0xc3,0xc3,0xff,0xab,0xab,0xab,0xff,0x85,0x84,0x85,0xff,0x88, + 0x87,0x88,0xf4,0xf2,0xf2,0xf2,0x1a,0xee,0xee,0xee,0x00,0x8a,0xec,0xec,0xec, + 0x00,0x86,0xff,0xff,0xff,0x00,0x82,0xef,0xef,0xef,0x00,0x2e,0xf9,0xf7,0xf9, + 0x00,0xe3,0xe3,0xe3,0x00,0x8f,0x90,0x8f,0xb7,0x7b,0x7d,0x7b,0xff,0xa3,0xa2, + 0xa3,0xff,0xb2,0xb2,0xb2,0xff,0xc1,0xc1,0xc1,0xff,0xc6,0xc6,0xc6,0xff,0xc6, + 0xc5,0xc6,0xff,0xbc,0xbc,0xbc,0xff,0xab,0xaa,0xab,0xff,0x98,0x98,0x98,0xff, + 0x92,0x92,0x92,0xff,0x99,0x9d,0x99,0xff,0xae,0xb4,0xae,0xff,0xc7,0xcb,0xc7, + 0xff,0xe1,0xdf,0xe1,0xff,0xed,0xed,0xed,0xff,0xf0,0xf1,0xf0,0xff,0xf1,0xf3, + 0xf1,0xff,0xe1,0xe5,0xe1,0xff,0xb4,0xb7,0xb4,0xff,0xc5,0xc1,0xc5,0xff,0xde, + 0xde,0xde,0xff,0xd0,0xd1,0xd0,0xff,0xae,0xb1,0xae,0xff,0x8d,0x90,0x8d,0xff, + 0x68,0x66,0x68,0xff,0x58,0x58,0x58,0xff,0x5b,0x5b,0x5b,0xff,0x23,0x24,0x23, + 0xff,0x08,0x0a,0x08,0xff,0xbe,0xbd,0xbe,0xff,0xef,0xed,0xef,0xff,0xca,0xce, + 0xca,0xff,0xc8,0xca,0xc8,0xff,0xae,0xa9,0xae,0xff,0x76,0x79,0x76,0xff,0x6e, + 0x6f,0x6e,0xff,0xd4,0xd4,0xd4,0xff,0xb6,0xb6,0xb6,0xff,0x91,0x90,0x91,0xff, + 0x79,0x78,0x79,0xff,0xde,0xdd,0xde,0x53,0xee,0xee,0xee,0x00,0xeb,0xeb,0xeb, + 0x00,0x8a,0xea,0xea,0xea,0x00,0x86,0xff,0xff,0xff,0x00,0x30,0xef,0xef,0xef, + 0x00,0xf0,0xf0,0xf0,0x00,0xfa,0xf8,0xfa,0x00,0xbc,0xbd,0xbc,0xa3,0xb0,0xb1, + 0xb0,0xff,0xd8,0xd9,0xd8,0xff,0xdd,0xde,0xdd,0xff,0xd9,0xdb,0xd9,0xff,0xd6, + 0xd7,0xd6,0xff,0xd3,0xd4,0xd3,0xff,0xd1,0xd2,0xd1,0xff,0xd2,0xd1,0xd2,0xff, + 0xd3,0xd2,0xd3,0xff,0xcf,0xce,0xcf,0xff,0xc2,0xc2,0xc2,0xff,0xb7,0xba,0xb7, + 0xff,0xc3,0xc7,0xc3,0xff,0xde,0xde,0xde,0xff,0xee,0xee,0xee,0xff,0xf0,0xf1, + 0xf0,0xff,0xf0,0xf0,0xf0,0xff,0xe7,0xeb,0xe7,0xff,0xd3,0xd9,0xd3,0xff,0xaa, + 0xac,0xaa,0xff,0x9b,0x9a,0x9b,0xff,0xcf,0xd0,0xcf,0xff,0xc1,0xc2,0xc1,0xff, + 0xc6,0xcb,0xc6,0xff,0xe9,0xe7,0xe9,0xff,0xbf,0xbf,0xbf,0xff,0x59,0x5b,0x59, + 0xff,0x42,0x44,0x42,0xff,0x67,0x68,0x67,0xff,0x4e,0x4a,0x4e,0xff,0x2c,0x28, + 0x2c,0xff,0xc5,0xc2,0xc5,0xff,0xd9,0xdb,0xd9,0xff,0xcc,0xcf,0xcc,0xff,0xad, + 0xad,0xad,0xff,0x7e,0x7e,0x7e,0xff,0x58,0x5b,0x58,0xff,0xb8,0xba,0xb8,0xff, + 0xac,0xab,0xac,0xff,0x75,0x73,0x75,0xff,0xcc,0xcb,0xcc,0x7d,0xd9,0xd8,0xd9, + 0x00,0xea,0xea,0xea,0x00,0xe9,0xe9,0xe9,0x00,0x8a,0xe8,0xe8,0xe8,0x00,0x86, + 0xff,0xff,0xff,0x00,0x07,0xf0,0xf0,0xf0,0x00,0xf1,0xf1,0xf1,0x00,0xd8,0xd9, + 0xd8,0x90,0xc9,0xca,0xc9,0xff,0xd6,0xd7,0xd6,0xff,0xd2,0xd3,0xd2,0xff,0xd1, + 0xd2,0xd1,0xff,0x83,0xd0,0xd1,0xd0,0xff,0x02,0xd0,0xd0,0xd0,0xff,0xd3,0xd3, + 0xd3,0xff,0x82,0xd4,0xd3,0xd4,0xff,0x1e,0xd6,0xd5,0xd6,0xff,0xd3,0xd2,0xd3, + 0xff,0xcf,0xcd,0xcf,0xff,0xdc,0xdc,0xdc,0xff,0xef,0xf0,0xef,0xff,0xf3,0xf4, + 0xf3,0xff,0xea,0xed,0xea,0xff,0xd7,0xdc,0xd7,0xff,0xb6,0xb9,0xb6,0xff,0x7e, + 0x7e,0x7e,0xff,0x4b,0x4d,0x4b,0xff,0x64,0x69,0x64,0xff,0xc0,0xc5,0xc0,0xff, + 0xda,0xdb,0xda,0xff,0xe5,0xe1,0xe5,0xff,0xcc,0xce,0xcc,0xff,0x9a,0x99,0x9a, + 0xff,0x64,0x64,0x64,0xff,0x77,0x72,0x77,0xff,0xc0,0xb8,0xc0,0xff,0x3c,0x3b, + 0x3c,0xff,0x46,0x46,0x46,0xff,0xe6,0xe4,0xe6,0xff,0xcd,0xd1,0xcd,0xff,0xb5, + 0xb5,0xb5,0xff,0x8a,0x87,0x8a,0xff,0x5d,0x60,0x5d,0xff,0xbc,0xbd,0xbc,0xff, + 0x88,0x87,0x88,0xff,0xa6,0xa6,0xa6,0xc1,0x94,0xff,0xff,0xff,0x00,0x0f,0xed, + 0xed,0xed,0x00,0xdf,0xe0,0xdf,0x5d,0xc6,0xc7,0xc6,0xff,0xd1,0xd3,0xd1,0xff, + 0xd0,0xd1,0xd0,0xff,0xd0,0xd0,0xd0,0xff,0xd0,0xd1,0xd0,0xff,0xd5,0xd6,0xd5, + 0xff,0xde,0xdf,0xde,0xff,0xe0,0xe1,0xe0,0xff,0xdd,0xdd,0xdd,0xff,0xc0,0xbf, + 0xc0,0xff,0xa1,0xa1,0xa1,0xff,0xc1,0xc0,0xc1,0xff,0xc8,0xc6,0xc8,0xff,0x82, + 0xcf,0xce,0xcf,0xff,0x1b,0xca,0xca,0xca,0xff,0xd0,0xcf,0xd0,0xff,0xdf,0xe3, + 0xdf,0xff,0xdb,0xe1,0xdb,0xff,0xbe,0xc2,0xbe,0xff,0x88,0x89,0x88,0xff,0x5f, + 0x5e,0x5f,0xff,0x45,0x4b,0x45,0xff,0x3b,0x3f,0x3b,0xff,0x82,0x85,0x82,0xff, + 0xec,0xe8,0xec,0xff,0xcf,0xd0,0xcf,0xff,0x9d,0x9c,0x9d,0xff,0x9f,0x9d,0x9f, + 0xff,0xbe,0xc0,0xbe,0xff,0xb3,0xac,0xb3,0xff,0xb1,0xae,0xb1,0xff,0x5a,0x5b, + 0x5a,0xff,0x21,0x21,0x21,0xff,0xc6,0xc6,0xc6,0xff,0xd1,0xd4,0xd1,0xff,0xc1, + 0xc2,0xc1,0xff,0x96,0x97,0x96,0xff,0x57,0x5a,0x57,0xff,0x9c,0x9d,0x9c,0xff, + 0x90,0x90,0x90,0xf9,0xec,0xeb,0xec,0x17,0x94,0xff,0xff,0xff,0x00,0x10,0xef, + 0xef,0xef,0x00,0xce,0xcf,0xce,0xe7,0xce,0xcf,0xce,0xff,0xd0,0xd1,0xd0,0xff, + 0xd0,0xd0,0xd0,0xff,0xd2,0xd2,0xd2,0xff,0xe0,0xe1,0xe0,0xff,0xd3,0xd4,0xd3, + 0xff,0xa4,0xa5,0xa4,0xff,0x78,0x79,0x78,0xff,0x95,0x94,0x95,0xff,0xbe,0xbe, + 0xbe,0xff,0xaa,0xaa,0xaa,0xff,0xa6,0xa4,0xa6,0xff,0xc5,0xc3,0xc5,0xff,0xd3, + 0xd3,0xd3,0xff,0x82,0xcb,0xcc,0xcb,0xff,0x1a,0xcc,0xcc,0xcc,0xff,0xc8,0xca, + 0xc8,0xff,0xbf,0xc1,0xbf,0xff,0x8d,0x8f,0x8d,0xff,0x61,0x62,0x61,0xff,0x4b, + 0x4f,0x4b,0xff,0x49,0x4d,0x49,0xff,0x59,0x5c,0x59,0xff,0x63,0x61,0x63,0xff, + 0x9e,0x9d,0x9e,0xff,0xb2,0xb2,0xb2,0xff,0x98,0x94,0x98,0xff,0xb0,0xb2,0xb0, + 0xff,0xdd,0xdb,0xdd,0xff,0xe2,0xdd,0xe2,0xff,0xb7,0xb4,0xb7,0xff,0x3d,0x3d, + 0x3d,0xff,0x29,0x29,0x29,0xff,0xa5,0xa8,0xa5,0xff,0xd2,0xd5,0xd2,0xff,0xcf, + 0xd1,0xcf,0xff,0x8b,0x8d,0x8b,0xff,0x59,0x5b,0x59,0xff,0x94,0x95,0x94,0xff, + 0xde,0xdd,0xde,0x5d,0xe9,0xe8,0xe9,0x00,0x94,0xff,0xff,0xff,0x00,0x13,0xe0, + 0xe0,0xe0,0x54,0xca,0xcb,0xca,0xff,0xd0,0xd1,0xd0,0xff,0xd0,0xd0,0xd0,0xff, + 0xd3,0xd2,0xd3,0xff,0xe3,0xe3,0xe3,0xff,0xa0,0xa0,0xa0,0xff,0x3f,0x3f,0x3f, + 0xff,0x0e,0x0e,0x0e,0xff,0x1d,0x1d,0x1d,0xff,0xa6,0xa5,0xa6,0xff,0xcb,0xcb, + 0xcb,0xff,0xab,0xa9,0xab,0xff,0xbf,0xbd,0xbf,0xff,0xe4,0xe3,0xe4,0xff,0xdd, + 0xdd,0xdd,0xff,0xc8,0xc8,0xc8,0xff,0xc9,0xc9,0xc9,0xff,0xcc,0xcc,0xcc,0xff, + 0x82,0xce,0xcf,0xce,0xff,0x17,0x96,0x98,0x96,0xff,0x44,0x47,0x44,0xff,0x40, + 0x47,0x40,0xff,0x56,0x5b,0x56,0xff,0x6b,0x6b,0x6b,0xff,0x70,0x6e,0x70,0xff, + 0x5d,0x5d,0x5d,0xff,0x87,0x84,0x87,0xff,0xb0,0xb2,0xb0,0xff,0xcf,0xd2,0xcf, + 0xff,0xe0,0xdd,0xe0,0xff,0xe3,0xe0,0xe3,0xff,0xb8,0xb8,0xb8,0xff,0x0d,0x0e, + 0x0d,0xff,0x49,0x4a,0x49,0xff,0x90,0x94,0x90,0xff,0xd8,0xda,0xd8,0xff,0xca, + 0xcc,0xca,0xff,0x63,0x68,0x63,0xff,0x5e,0x60,0x5e,0xff,0xc2,0xc2,0xc2,0xad, + 0xda,0xd9,0xda,0x00,0xe6,0xe5,0xe6,0x00,0x94,0xff,0xff,0xff,0x00,0x2d,0xd6, + 0xd6,0xd6,0xa6,0xcd,0xce,0xcd,0xff,0xd0,0xd0,0xd0,0xff,0xd1,0xd1,0xd1,0xff, + 0xe1,0xe1,0xe1,0xff,0x9f,0x9f,0x9f,0xff,0x1f,0x1d,0x1f,0xff,0x32,0x33,0x32, + 0xff,0x2d,0x2d,0x2d,0xff,0x9d,0x9a,0x9d,0xff,0xc5,0xc5,0xc5,0xff,0x9c,0x9a, + 0x9c,0xff,0xab,0xa7,0xab,0xff,0xda,0xda,0xda,0xff,0xec,0xed,0xec,0xff,0xdb, + 0xdd,0xdb,0xff,0xdb,0xdb,0xdb,0xff,0xd3,0xd3,0xd3,0xff,0xca,0xc8,0xca,0xff, + 0xcd,0xcb,0xcd,0xff,0xd1,0xd0,0xd1,0xff,0xd9,0xd9,0xd9,0xff,0x91,0x93,0x91, + 0xff,0x49,0x4e,0x49,0xff,0x63,0x63,0x63,0xff,0x73,0x6f,0x73,0xff,0x6c,0x6b, + 0x6c,0xff,0x57,0x57,0x57,0xff,0x55,0x55,0x55,0xff,0xc2,0xc6,0xc2,0xff,0xe6, + 0xe4,0xe6,0xff,0xdb,0xd5,0xdb,0xff,0xe0,0xdf,0xe0,0xff,0xad,0xad,0xad,0xff, + 0x47,0x48,0x47,0xff,0x4a,0x4d,0x4a,0xff,0xb1,0xb2,0xb1,0xff,0xdc,0xdc,0xdc, + 0xff,0x98,0x9a,0x98,0xff,0x41,0x44,0x41,0xff,0x7a,0x7b,0x7a,0xff,0xff,0xff, + 0xff,0x19,0xf8,0xf8,0xf8,0x00,0xf5,0xf5,0xf5,0x00,0xf4,0xf4,0xf4,0x00,0x8d, + 0xf3,0xf3,0xf3,0x00,0x86,0xff,0xff,0xff,0x00,0x2c,0xd2,0xd1,0xd2,0xc2,0xce, + 0xcf,0xce,0xff,0xd0,0xd0,0xd0,0xff,0xd6,0xd6,0xd6,0xff,0xd1,0xd1,0xd1,0xff, + 0x38,0x38,0x38,0xff,0x33,0x34,0x33,0xff,0x56,0x55,0x56,0xff,0x81,0x80,0x81, + 0xff,0x9c,0x9e,0x9c,0xff,0xa8,0xaa,0xa8,0xff,0xc3,0xc1,0xc3,0xff,0xbf,0xbf, + 0xbf,0xff,0xba,0xbb,0xba,0xff,0xb8,0xba,0xb8,0xff,0xd1,0xd2,0xd1,0xff,0xfc, + 0xfc,0xfc,0xff,0xfe,0xfe,0xfe,0xff,0xdd,0xde,0xdd,0xff,0xcb,0xc8,0xcb,0xff, + 0xcd,0xcc,0xcd,0xff,0xd2,0xd1,0xd2,0xff,0xdb,0xd9,0xdb,0xff,0x96,0x97,0x96, + 0xff,0x65,0x61,0x65,0xff,0x6c,0x6a,0x6c,0xff,0x62,0x62,0x62,0xff,0x56,0x55, + 0x56,0xff,0x3d,0x3d,0x3d,0xff,0x93,0x92,0x93,0xff,0xec,0xe6,0xec,0xff,0xda, + 0xd8,0xda,0xff,0xcd,0xcd,0xcd,0xff,0xa2,0xa0,0xa2,0xff,0x51,0x54,0x51,0xff, + 0x74,0x76,0x74,0xff,0xda,0xdb,0xda,0xff,0xc7,0xc8,0xc7,0xff,0x58,0x5a,0x58, + 0xff,0x48,0x4a,0x48,0xff,0xd0,0xd0,0xd0,0x7c,0xfa,0xfa,0xfa,0x00,0xf6,0xf6, + 0xf6,0x00,0xf5,0xf4,0xf5,0x00,0x8e,0xf4,0xf4,0xf4,0x00,0x86,0xff,0xff,0xff, + 0x00,0x2a,0xd3,0xd4,0xd3,0xc0,0xce,0xce,0xce,0xff,0xd0,0xd0,0xd0,0xff,0xdd, + 0xdd,0xdd,0xff,0xa8,0xa8,0xa8,0xff,0x30,0x30,0x30,0xff,0x4c,0x4c,0x4c,0xff, + 0x72,0x70,0x72,0xff,0x9c,0x9c,0x9c,0xff,0xb4,0xb5,0xb4,0xff,0xe9,0xe6,0xe9, + 0xff,0xf4,0xf5,0xf4,0xff,0xf2,0xf4,0xf2,0xff,0xf7,0xf7,0xf7,0xff,0xe7,0xe5, + 0xe7,0xff,0xbc,0xbc,0xbc,0xff,0xd1,0xd1,0xd1,0xff,0xff,0xff,0xff,0xff,0xf1, + 0xf3,0xf1,0xff,0xd6,0xd5,0xd6,0xff,0xc9,0xc8,0xc9,0xff,0xc8,0xc9,0xc8,0xff, + 0xce,0xcf,0xce,0xff,0xd2,0xd4,0xd2,0xff,0x8f,0x8f,0x8f,0xff,0x59,0x59,0x59, + 0xff,0x59,0x57,0x59,0xff,0x4f,0x4e,0x4f,0xff,0x47,0x49,0x47,0xff,0x67,0x66, + 0x67,0xff,0xda,0xd6,0xda,0xff,0xd9,0xd9,0xd9,0xff,0xb2,0xb1,0xb2,0xff,0x61, + 0x62,0x61,0xff,0x4e,0x51,0x4e,0xff,0xc4,0xc5,0xc4,0xff,0xdc,0xdd,0xdc,0xff, + 0x8c,0x8f,0x8c,0xff,0x35,0x37,0x35,0xff,0x9c,0x9c,0x9c,0xc4,0xf9,0xfa,0xf9, + 0x00,0xf2,0xf3,0xf2,0x00,0x90,0xf0,0xf1,0xf0,0x00,0x86,0xff,0xff,0xff,0x00, + 0x2a,0xdc,0xdd,0xdc,0xa0,0xcd,0xcd,0xcd,0xff,0xd0,0xd0,0xd0,0xff,0xde,0xdd, + 0xde,0xff,0x9a,0x99,0x9a,0xff,0x41,0x3e,0x41,0xff,0x5a,0x57,0x5a,0xff,0x8e, + 0x8e,0x8e,0xff,0xb3,0xb4,0xb3,0xff,0xe0,0xdf,0xe0,0xff,0xef,0xef,0xef,0xff, + 0xe8,0xea,0xe8,0xff,0xf1,0xf2,0xf1,0xff,0xfc,0xfa,0xfc,0xff,0xff,0xff,0xff, + 0xff,0xc9,0xc7,0xc9,0xff,0x97,0x96,0x97,0xff,0xa7,0xa8,0xa7,0xff,0xe3,0xe4, + 0xe3,0xff,0xed,0xef,0xed,0xff,0xe1,0xe0,0xe1,0xff,0xc4,0xc5,0xc4,0xff,0xc5, + 0xca,0xc5,0xff,0xcd,0xd0,0xcd,0xff,0xcf,0xd3,0xcf,0xff,0x70,0x70,0x70,0xff, + 0x45,0x44,0x45,0xff,0x4d,0x4d,0x4d,0xff,0x58,0x59,0x58,0xff,0x71,0x70,0x71, + 0xff,0xbf,0xba,0xbf,0xff,0xc6,0xc4,0xc6,0xff,0x7e,0x7e,0x7e,0xff,0x3c,0x40, + 0x3c,0xff,0xab,0xad,0xab,0xff,0xde,0xdf,0xde,0xff,0xad,0xae,0xad,0xff,0x40, + 0x43,0x40,0xff,0x95,0x96,0x95,0xc4,0xf6,0xf6,0xf6,0x0a,0xf4,0xf5,0xf4,0x00, + 0xf1,0xf2,0xf1,0x00,0x90,0xf0,0xf1,0xf0,0x00,0x86,0xff,0xff,0xff,0x00,0x29, + 0xdb,0xdd,0xdb,0x65,0xcd,0xcd,0xcd,0xff,0xd0,0xd0,0xd0,0xff,0xdc,0xda,0xdc, + 0xff,0xa3,0xa2,0xa3,0xff,0x48,0x44,0x48,0xff,0x60,0x5f,0x60,0xff,0xa4,0xa5, + 0xa4,0xff,0xdc,0xdb,0xdc,0xff,0xef,0xef,0xef,0xff,0xe8,0xe9,0xe8,0xff,0xef, + 0xf1,0xef,0xff,0xfa,0xf7,0xfa,0xff,0xfb,0xfb,0xfb,0xff,0xd0,0xcf,0xd0,0xff, + 0xae,0xac,0xae,0xff,0x84,0x81,0x84,0xff,0x7f,0x7d,0x7f,0xff,0xbd,0xbe,0xbd, + 0xff,0xf4,0xf4,0xf4,0xff,0xff,0xff,0xff,0xff,0xd8,0xd9,0xd8,0xff,0xc1,0xc5, + 0xc1,0xff,0xc7,0xca,0xc7,0xff,0xd1,0xd8,0xd1,0xff,0xbd,0xbf,0xbd,0xff,0x4e, + 0x4e,0x4e,0xff,0x4e,0x51,0x4e,0xff,0x6f,0x6e,0x6f,0xff,0x97,0x8d,0x97,0xff, + 0xb2,0xac,0xb2,0xff,0x99,0x9a,0x99,0xff,0x3f,0x40,0x3f,0xff,0x86,0x88,0x86, + 0xff,0xd6,0xd7,0xd6,0xff,0xaf,0xb0,0xaf,0xff,0x6e,0x70,0x6e,0xff,0xa6,0xa7, + 0xa6,0x82,0xec,0xec,0xec,0x07,0xf1,0xf1,0xf1,0x00,0xf1,0xf2,0xf1,0x00,0x91, + 0xf0,0xf1,0xf0,0x00,0x86,0xff,0xff,0xff,0x00,0x29,0xee,0xef,0xee,0x1a,0xd1, + 0xd1,0xd1,0xff,0xce,0xce,0xce,0xff,0xd9,0xd8,0xd9,0xff,0xb9,0xb8,0xb9,0xff, + 0x4e,0x4c,0x4e,0xff,0x53,0x53,0x53,0xff,0xc1,0xc1,0xc1,0xff,0xf6,0xf5,0xf6, + 0xff,0xea,0xeb,0xea,0xff,0xed,0xee,0xed,0xff,0xf8,0xf7,0xf8,0xff,0xfb,0xfa, + 0xfb,0xff,0xdd,0xde,0xdd,0xff,0xae,0xac,0xae,0xff,0x90,0x8e,0x90,0xff,0x74, + 0x71,0x74,0xff,0xeb,0xe8,0xeb,0xff,0xcd,0xcf,0xcd,0xff,0xc2,0xc3,0xc2,0xff, + 0xff,0xff,0xff,0xff,0xeb,0xec,0xeb,0xff,0xc9,0xcb,0xc9,0xff,0xc5,0xc8,0xc5, + 0xff,0xc8,0xcc,0xc8,0xff,0xd6,0xdc,0xd6,0xff,0x97,0x99,0x97,0xff,0x59,0x59, + 0x59,0xff,0x8c,0x84,0x8c,0xff,0xac,0xa5,0xac,0xff,0xa6,0xa7,0xa6,0xff,0x53, + 0x55,0x53,0xff,0x5a,0x5c,0x5a,0xff,0xcd,0xcf,0xcd,0xff,0xc4,0xc5,0xc4,0xce, + 0xac,0xad,0xac,0x9a,0xcb,0xcc,0xcb,0x28,0xa2,0xa3,0xa2,0x00,0xe9,0xe8,0xe9, + 0x00,0xef,0xef,0xef,0x00,0xf1,0xf2,0xf1,0x00,0x91,0xf0,0xf1,0xf0,0x00,0x86, + 0xff,0xff,0xff,0x00,0x28,0xec,0xed,0xec,0x00,0xdb,0xdb,0xdb,0xc1,0xcb,0xcb, + 0xcb,0xff,0xd3,0xd2,0xd3,0xff,0xd4,0xd1,0xd4,0xff,0x5b,0x5b,0x5b,0xff,0x3c, + 0x3d,0x3c,0xff,0xba,0xba,0xba,0xff,0xfa,0xfa,0xfa,0xff,0xed,0xee,0xed,0xff, + 0xf6,0xf5,0xf6,0xff,0xfa,0xf7,0xfa,0xff,0xe6,0xe7,0xe6,0xff,0xad,0xaa,0xad, + 0xff,0x99,0x97,0x99,0xff,0x6a,0x67,0x6a,0xff,0xd3,0xd1,0xd3,0xff,0xec,0xed, + 0xec,0xff,0xde,0xdf,0xde,0xff,0xbc,0xbf,0xbc,0xff,0xd7,0xd8,0xd7,0xff,0xf3, + 0xf4,0xf3,0xff,0xde,0xdf,0xde,0xff,0xc5,0xc9,0xc5,0xff,0xc7,0xcb,0xc7,0xff, + 0xca,0xd0,0xca,0xff,0xc8,0xca,0xc8,0xff,0x89,0x83,0x89,0xff,0xa0,0x97,0xa0, + 0xff,0xa8,0xa9,0xa8,0xff,0x95,0x95,0x95,0xff,0x53,0x55,0x53,0xff,0xce,0xcf, + 0xce,0x8e,0xf4,0xf5,0xf4,0x41,0xda,0xda,0xda,0x00,0xaa,0xab,0xaa,0x00,0xc9, + 0xca,0xc9,0x00,0xa0,0xa1,0xa0,0x00,0xe8,0xe7,0xe8,0x00,0xee,0xee,0xee,0x00, + 0x92,0xf0,0xf1,0xf0,0x00,0x86,0xff,0xff,0xff,0x00,0x28,0xed,0xeb,0xed,0x00, + 0xef,0xed,0xef,0x4c,0xcb,0xca,0xcb,0xff,0xce,0xcd,0xce,0xff,0xdf,0xde,0xdf, + 0xff,0x89,0x88,0x89,0xff,0x22,0x23,0x22,0xff,0x79,0x7a,0x79,0xff,0xfb,0xfd, + 0xfb,0xff,0xfa,0xf9,0xfa,0xff,0xf8,0xf7,0xf8,0xff,0xef,0xef,0xef,0xff,0xcd, + 0xcd,0xcd,0xff,0xbf,0xbc,0xbf,0xff,0x84,0x82,0x84,0xff,0xba,0xb8,0xba,0xff, + 0xf2,0xf2,0xf2,0xff,0xd7,0xd8,0xd7,0xff,0xe8,0xea,0xe8,0xff,0xd0,0xce,0xd0, + 0xff,0xad,0xaf,0xad,0xff,0xf6,0xf6,0xf6,0xff,0xd9,0xd9,0xd9,0xff,0xc6,0xcc, + 0xc6,0xff,0xc8,0xcd,0xc8,0xff,0xc7,0xcc,0xc7,0xff,0xcc,0xd2,0xcc,0xff,0xbb, + 0xb8,0xbb,0xff,0xa1,0x9f,0xa1,0xff,0x9a,0x9e,0x9a,0xff,0x97,0x95,0x97,0xff, + 0xca,0xca,0xca,0x9a,0xc8,0xc9,0xc8,0x00,0xf0,0xf1,0xf0,0x00,0xd8,0xd8,0xd8, + 0x00,0xa9,0xaa,0xa9,0x00,0xc8,0xc9,0xc8,0x00,0xa0,0xa1,0xa0,0x00,0xe7,0xe7, + 0xe7,0x00,0xee,0xee,0xee,0x00,0x92,0xf0,0xf1,0xf0,0x00,0x86,0xff,0xff,0xff, + 0x00,0x28,0xf9,0xf8,0xf9,0x00,0xfb,0xfa,0xfb,0x00,0xdb,0xda,0xdb,0xcc,0xca, + 0xc9,0xca,0xff,0xd7,0xd6,0xd7,0xff,0xcc,0xcb,0xcc,0xff,0x34,0x36,0x34,0xff, + 0x29,0x2b,0x29,0xff,0xd0,0xce,0xd0,0xff,0xff,0xff,0xff,0xff,0xef,0xf0,0xef, + 0xff,0xe2,0xe3,0xe2,0xff,0xe2,0xe4,0xe2,0xff,0xd0,0xcd,0xd0,0xff,0xcd,0xcb, + 0xcd,0xff,0xed,0xed,0xed,0xff,0xd9,0xda,0xd9,0xff,0xe3,0xe3,0xe3,0xff,0xe2, + 0xe0,0xe2,0xff,0xb8,0xb5,0xb8,0xff,0x9a,0x9a,0x9a,0xff,0xdc,0xdb,0xdc,0xff, + 0xb4,0xb5,0xb4,0xff,0xad,0xaf,0xad,0xff,0xcd,0xd2,0xcd,0xff,0xc6,0xcb,0xc6, + 0xff,0xc8,0xce,0xc8,0xff,0xc7,0xc8,0xc7,0xff,0x9b,0x9d,0x9b,0xff,0x97,0x97, + 0x97,0xff,0xae,0xae,0xae,0xff,0xe7,0xe8,0xe7,0x3b,0xe3,0xe4,0xe3,0x00,0xed, + 0xef,0xed,0x00,0xd7,0xd7,0xd7,0x00,0xa8,0xa9,0xa8,0x00,0xc8,0xc9,0xc8,0x00, + 0xa0,0xa1,0xa0,0x00,0xe7,0xe7,0xe7,0x00,0xee,0xee,0xee,0x00,0x92,0xf0,0xf1, + 0xf0,0x00,0x86,0xff,0xff,0xff,0x00,0x28,0xf8,0xf7,0xf8,0x00,0xf9,0xf8,0xf9, + 0x00,0xf4,0xf3,0xf4,0x3c,0xcc,0xcb,0xcc,0xff,0xce,0xcd,0xce,0xff,0xe2,0xe1, + 0xe2,0xff,0x93,0x93,0x93,0xff,0x14,0x16,0x14,0xff,0x5f,0x5e,0x5f,0xff,0xf3, + 0xf2,0xf3,0xff,0xef,0xf0,0xef,0xff,0xe5,0xe5,0xe5,0xff,0xf7,0xf8,0xf7,0xff, + 0xfc,0xfd,0xfc,0xff,0xf1,0xef,0xf1,0xff,0xd8,0xd9,0xd8,0xff,0xde,0xdf,0xde, + 0xff,0xe7,0xe6,0xe7,0xff,0xc2,0xc0,0xc2,0xff,0xab,0xaa,0xab,0xff,0xa8,0xa9, + 0xa8,0xff,0xba,0xbb,0xba,0xff,0x74,0x73,0x74,0xff,0x5c,0x5d,0x5c,0xff,0xd5, + 0xd7,0xd5,0xff,0xc9,0xcc,0xc9,0xff,0xc8,0xcc,0xc8,0xff,0xcb,0xcc,0xcb,0xff, + 0x9f,0x9d,0x9f,0xff,0xa3,0xa1,0xa3,0xff,0xbd,0xc1,0xbd,0xff,0xe8,0xe8,0xe8, + 0x27,0xe6,0xe5,0xe6,0x00,0xe5,0xe5,0xe5,0x00,0xd5,0xd5,0xd5,0x00,0xa6,0xa8, + 0xa6,0x00,0xc7,0xc8,0xc7,0x00,0x9f,0xa0,0x9f,0x00,0xe7,0xe7,0xe7,0x00,0xee, + 0xee,0xee,0x00,0x92,0xf0,0xf1,0xf0,0x00,0x86,0xff,0xff,0xff,0x00,0x82,0xf8, + 0xf7,0xf8,0x00,0x1e,0xf3,0xf2,0xf3,0x00,0xe4,0xe4,0xe4,0x92,0xc8,0xc8,0xc8, + 0xff,0xd1,0xd1,0xd1,0xff,0xda,0xdb,0xda,0xff,0x70,0x71,0x70,0xff,0x25,0x23, + 0x25,0xff,0x78,0x77,0x78,0xff,0xe9,0xe9,0xe9,0xff,0xff,0xff,0xff,0xff,0xfe, + 0xfe,0xfe,0xff,0xf3,0xf1,0xf3,0xff,0xdb,0xdb,0xdb,0xff,0xd9,0xdc,0xd9,0xff, + 0xe9,0xe9,0xe9,0xff,0xcc,0xcb,0xcc,0xff,0xa7,0xa5,0xa7,0xff,0xc1,0xc2,0xc1, + 0xff,0xb1,0xb3,0xb1,0xff,0x90,0x90,0x90,0xff,0x20,0x1f,0x20,0xff,0x4b,0x4c, + 0x4b,0xff,0xd6,0xd9,0xd6,0xff,0xca,0xcd,0xca,0xff,0xc7,0xc9,0xc7,0xff,0xc9, + 0xca,0xc9,0xff,0xac,0xaa,0xac,0xff,0xb3,0xb2,0xb3,0xff,0xc1,0xc3,0xc1,0xe2, + 0xf7,0xf7,0xf7,0x00,0x82,0xf4,0xf4,0xf4,0x00,0x06,0xf5,0xf5,0xf5,0x00,0xf8, + 0xf8,0xf8,0x00,0xc4,0xc6,0xc4,0x00,0x9e,0x9f,0x9e,0x00,0xe7,0xe7,0xe7,0x00, + 0xee,0xee,0xee,0x00,0x92,0xf0,0xf1,0xf0,0x00,0x86,0xff,0xff,0xff,0x00,0x82, + 0xfb,0xfb,0xfb,0x00,0x1e,0xfc,0xfc,0xfc,0x00,0xfe,0xff,0xfe,0x00,0xda,0xd8, + 0xda,0xc9,0xc5,0xc8,0xc5,0xff,0xd2,0xd4,0xd2,0xff,0xd6,0xd7,0xd6,0xff,0x72, + 0x71,0x72,0xff,0x31,0x31,0x31,0xff,0x72,0x72,0x72,0xff,0xec,0xec,0xec,0xff, + 0xff,0xff,0xff,0xff,0xe5,0xe6,0xe5,0xff,0xd8,0xdb,0xd8,0xff,0xe9,0xea,0xe9, + 0xff,0xd7,0xd5,0xd7,0xff,0xab,0xa9,0xab,0xff,0xb8,0xb8,0xb8,0xff,0xca,0xca, + 0xca,0xff,0x9f,0x9e,0x9f,0xff,0x49,0x49,0x49,0xff,0x12,0x12,0x12,0xff,0x5e, + 0x60,0x5e,0xff,0xd7,0xda,0xd7,0xff,0xca,0xcc,0xca,0xff,0xc6,0xc7,0xc6,0xff, + 0xc5,0xc7,0xc5,0xff,0xbc,0xbe,0xbc,0xff,0xa7,0xa9,0xa7,0xff,0xc7,0xc7,0xc7, + 0x78,0xf6,0xf6,0xf6,0x00,0x82,0xf3,0xf3,0xf3,0x00,0x06,0xf4,0xf4,0xf4,0x00, + 0xf6,0xf6,0xf6,0x00,0xc2,0xc3,0xc2,0x00,0x9c,0x9d,0x9c,0x00,0xe6,0xe6,0xe6, + 0x00,0xee,0xee,0xee,0x00,0x92,0xf0,0xf1,0xf0,0x00,0x86,0xff,0xff,0xff,0x00, + 0x82,0xfb,0xfb,0xfb,0x00,0x26,0xfb,0xfc,0xfb,0x00,0xfd,0xfd,0xfd,0x00,0xf5, + 0xf5,0xf5,0x0a,0xd2,0xd2,0xd2,0xe2,0xc7,0xc8,0xc7,0xff,0xd2,0xd4,0xd2,0xff, + 0xd3,0xd8,0xd3,0xff,0x7c,0x80,0x7c,0xff,0x2e,0x2e,0x2e,0xff,0x48,0x47,0x48, + 0xff,0xa3,0xa0,0xa3,0xff,0xd7,0xd7,0xd7,0xff,0xf3,0xf5,0xf3,0xff,0xe9,0xe8, + 0xe9,0xff,0xbb,0xb9,0xbb,0xff,0xb9,0xb8,0xb9,0xff,0xce,0xcf,0xce,0xff,0xa9, + 0xa9,0xa9,0xff,0x5a,0x59,0x5a,0xff,0x2d,0x2c,0x2d,0xff,0x1e,0x1d,0x1e,0xff, + 0x88,0x88,0x88,0xff,0xd7,0xd9,0xd7,0xff,0xc7,0xc8,0xc7,0xff,0xc5,0xc6,0xc5, + 0xff,0xc7,0xc8,0xc7,0xff,0xb2,0xb6,0xb2,0xff,0xa9,0xaa,0xa9,0xd5,0xef,0xef, + 0xef,0x00,0xec,0xec,0xec,0x00,0xeb,0xeb,0xeb,0x00,0xea,0xea,0xea,0x00,0xeb, + 0xeb,0xeb,0x00,0xec,0xec,0xec,0x00,0xed,0xed,0xed,0x00,0xee,0xee,0xee,0x00, + 0xe4,0xe4,0xe4,0x00,0xed,0xed,0xed,0x00,0x92,0xf0,0xf1,0xf0,0x00,0x86,0xff, + 0xff,0xff,0x00,0x83,0xfb,0xfb,0xfb,0x00,0x16,0xfc,0xfc,0xfc,0x00,0xf4,0xf4, + 0xf4,0x00,0xf6,0xf6,0xf6,0x1c,0xd4,0xd4,0xd4,0xe7,0xc4,0xc7,0xc4,0xff,0xcd, + 0xd2,0xcd,0xff,0xd4,0xdb,0xd4,0xff,0x97,0x9c,0x97,0xff,0x35,0x34,0x35,0xff, + 0x21,0x1e,0x21,0xff,0x59,0x59,0x59,0xff,0x8f,0x8e,0x8f,0xff,0xa4,0xa3,0xa4, + 0xff,0x9b,0x99,0x9b,0xff,0xa3,0xa3,0xa3,0xff,0x84,0x85,0x84,0xff,0x4e,0x4d, + 0x4e,0xff,0x2e,0x2d,0x2e,0xff,0x20,0x1f,0x20,0xff,0x36,0x36,0x36,0xff,0xc4, + 0xc7,0xc4,0xff,0xcd,0xce,0xcd,0xff,0x82,0xc5,0xc6,0xc5,0xff,0x04,0xc3,0xc4, + 0xc3,0xff,0x9e,0x9f,0x9e,0xff,0xde,0xde,0xde,0x2a,0xed,0xed,0xed,0x00,0x86, + 0xeb,0xeb,0xeb,0x00,0x03,0xec,0xec,0xec,0x00,0xe3,0xe3,0xe3,0x00,0xed,0xed, + 0xed,0x00,0x92,0xf0,0xf1,0xf0,0x00,0x86,0xff,0xff,0xff,0x00,0x83,0xfb,0xfb, + 0xfb,0x00,0x1c,0xfc,0xfc,0xfc,0x00,0xf3,0xf3,0xf3,0x00,0xf4,0xf4,0xf4,0x00, + 0xf2,0xf1,0xf2,0x15,0xd1,0xd5,0xd1,0xd3,0xc2,0xc7,0xc2,0xff,0xc8,0xce,0xc8, + 0xff,0xd5,0xdc,0xd5,0xff,0xc2,0xc6,0xc2,0xff,0x65,0x66,0x65,0xff,0x2f,0x2f, + 0x2f,0xff,0x3d,0x3c,0x3d,0xff,0x3c,0x3b,0x3c,0xff,0x30,0x2f,0x30,0xff,0x2e, + 0x2c,0x2e,0xff,0x27,0x24,0x27,0xff,0x23,0x22,0x23,0xff,0x1e,0x1d,0x1e,0xff, + 0x33,0x34,0x33,0xff,0xab,0xac,0xab,0xff,0xd4,0xd4,0xd4,0xff,0xc6,0xc7,0xc6, + 0xff,0xc5,0xc6,0xc5,0xff,0xc7,0xc8,0xc7,0xff,0xb1,0xb3,0xb1,0xff,0xc8,0xc9, + 0xc8,0x71,0xdb,0xdb,0xdb,0x00,0xec,0xec,0xec,0x00,0x87,0xea,0xea,0xea,0x00, + 0x03,0xe2,0xe2,0xe2,0x00,0xec,0xed,0xec,0x00,0xf0,0xf1,0xf0,0x00,0x91,0xef, + 0xf1,0xef,0x00,0x86,0xff,0xff,0xff,0x00,0x83,0xfb,0xfb,0xfb,0x00,0x06,0xfc, + 0xfc,0xfc,0x00,0xf2,0xf2,0xf2,0x00,0xf3,0xf3,0xf3,0x00,0xf0,0xf0,0xf0,0x00, + 0xf4,0xf3,0xf4,0x01,0xda,0xdd,0xda,0xa1,0x82,0xc5,0xca,0xc5,0xff,0x06,0xd8, + 0xdd,0xd8,0xff,0xb9,0xbe,0xb9,0xff,0x3c,0x3b,0x3c,0xff,0x38,0x36,0x38,0xff, + 0x26,0x24,0x26,0xff,0x3e,0x3d,0x3e,0xff,0x82,0x3d,0x3b,0x3d,0xff,0x0b,0x4d, + 0x4d,0x4d,0xff,0x7a,0x7c,0x7a,0xff,0xc1,0xc5,0xc1,0xff,0xd6,0xd5,0xd6,0xff, + 0xc6,0xc8,0xc6,0xff,0xc5,0xc6,0xc5,0xff,0xc4,0xc5,0xc4,0xff,0xbf,0xc1,0xbf, + 0xff,0xcb,0xcc,0xcb,0xbf,0xfa,0xf9,0xfa,0x00,0xf7,0xf6,0xf7,0x00,0x89,0xf6, + 0xf5,0xf6,0x00,0x01,0xf6,0xf4,0xf6,0x00,0x92,0xf5,0xf4,0xf5,0x00,0x86,0xff, + 0xff,0xff,0x00,0x83,0xfb,0xfb,0xfb,0x00,0x1b,0xfc,0xfc,0xfc,0x00,0xf2,0xf2, + 0xf2,0x00,0xf3,0xf3,0xf3,0x00,0xef,0xef,0xef,0x00,0xf3,0xf2,0xf3,0x00,0xd8, + 0xdc,0xd8,0x00,0xe9,0xea,0xe9,0x59,0xce,0xd1,0xce,0xec,0xc4,0xca,0xc4,0xff, + 0xd1,0xd6,0xd1,0xff,0xa4,0xa6,0xa4,0xff,0x44,0x42,0x44,0xff,0x45,0x44,0x45, + 0xff,0xbe,0xc0,0xbe,0xff,0xcd,0xd1,0xcd,0xff,0xc7,0xcb,0xc7,0xff,0xd0,0xd2, + 0xd0,0xff,0xd6,0xd8,0xd6,0xff,0xce,0xd0,0xce,0xff,0xc7,0xc7,0xc7,0xff,0xc6, + 0xc6,0xc6,0xff,0xc5,0xc5,0xc5,0xff,0xbf,0xc0,0xbf,0xff,0xc9,0xcc,0xc9,0xf4, + 0xf8,0xf9,0xf8,0x12,0xf7,0xf6,0xf7,0x00,0xf6,0xf5,0xf6,0x00,0x9c,0xf5,0xf4, + 0xf5,0x00,0x86,0xff,0xff,0xff,0x00,0x83,0xfb,0xfb,0xfb,0x00,0x1a,0xfc,0xfc, + 0xfc,0x00,0xf2,0xf2,0xf2,0x00,0xf3,0xf3,0xf3,0x00,0xef,0xef,0xef,0x00,0xf3, + 0xf1,0xf3,0x00,0xd7,0xdb,0xd7,0x00,0xe7,0xe8,0xe7,0x00,0xe7,0xe7,0xe7,0x0d, + 0xde,0xe0,0xde,0x8b,0xcf,0xd3,0xcf,0xfa,0xcf,0xd3,0xcf,0xff,0xc6,0xc9,0xc6, + 0xff,0xc7,0xcb,0xc7,0xff,0xd1,0xd4,0xd1,0xff,0xce,0xd0,0xce,0xff,0xcd,0xce, + 0xcd,0xff,0xc9,0xca,0xc9,0xff,0xc6,0xc7,0xc6,0xff,0xc6,0xc6,0xc6,0xff,0xc7, + 0xc6,0xc7,0xff,0xc5,0xc4,0xc5,0xff,0xc0,0xc0,0xc0,0xff,0xc7,0xc7,0xc7,0xf4, + 0xed,0xee,0xed,0x3b,0xf6,0xf7,0xf6,0x00,0xf6,0xf4,0xf6,0x00,0x9d,0xf5,0xf4, + 0xf5,0x00,0x86,0xff,0xff,0xff,0x00,0x83,0xfb,0xfb,0xfb,0x00,0x10,0xfc,0xfc, + 0xfc,0x00,0xf2,0xf2,0xf2,0x00,0xf3,0xf3,0xf3,0x00,0xef,0xef,0xef,0x00,0xf3, + 0xf1,0xf3,0x00,0xd7,0xdb,0xd7,0x00,0xe7,0xe8,0xe7,0x00,0xe6,0xe6,0xe6,0x00, + 0xdc,0xde,0xdc,0x00,0xe3,0xe4,0xe3,0x11,0xdf,0xe1,0xdf,0x75,0xd7,0xd9,0xd7, + 0xdb,0xcc,0xce,0xcc,0xff,0xc5,0xc7,0xc5,0xff,0xc2,0xc3,0xc2,0xff,0xc2,0xc2, + 0xc2,0xff,0x82,0xc3,0xc4,0xc3,0xff,0x01,0xc4,0xc2,0xc4,0xff,0x82,0xc2,0xc2, + 0xc2,0xff,0x04,0xd5,0xd5,0xd5,0xb7,0xef,0xef,0xef,0x1e,0xec,0xed,0xec,0x00, + 0xf5,0xf6,0xf5,0x00,0x9e,0xf5,0xf4,0xf5,0x00,0x86,0xff,0xff,0xff,0x00,0x83, + 0xfb,0xfb,0xfb,0x00,0x19,0xfc,0xfc,0xfc,0x00,0xf2,0xf2,0xf2,0x00,0xf3,0xf3, + 0xf3,0x00,0xef,0xef,0xef,0x00,0xf3,0xf1,0xf3,0x00,0xd7,0xdb,0xd7,0x00,0xe7, + 0xe8,0xe7,0x00,0xe6,0xe5,0xe6,0x00,0xdb,0xdd,0xdb,0x00,0xe2,0xe2,0xe2,0x00, + 0xdd,0xdf,0xdd,0x00,0xf0,0xee,0xf0,0x00,0xe3,0xe2,0xe3,0x25,0xe3,0xe5,0xe3, + 0x67,0xd6,0xd5,0xd6,0x99,0xd3,0xd4,0xd3,0xb8,0xcc,0xcd,0xcc,0xcc,0xce,0xce, + 0xce,0xc4,0xd4,0xd4,0xd4,0xad,0xdf,0xe0,0xdf,0x71,0xe0,0xe0,0xe0,0x2b,0xd3, + 0xd3,0xd3,0x00,0xee,0xee,0xee,0x00,0xeb,0xec,0xeb,0x00,0xf5,0xf6,0xf5,0x00, + 0x9e,0xf5,0xf4,0xf5,0x00,0x86,0xff,0xff,0xff,0x00 +}; + +static const GdkPixdata bnc_cable_pixdata = { + 0x47646b50, /* Pixbuf magic: 'GdkP' */ + 24 + 10525, /* header length + pixel_data length */ + 0x2010002, /* pixdata_type */ + 256, /* rowstride */ + 64, /* width */ + 64, /* height */ + bnc_cable_pixdata_pixel_data /* pixel_data */ +}; diff --git a/src/image_data/image.c b/src/image_data/image.c deleted file mode 100644 index 22ca190..0000000 --- a/src/image_data/image.c +++ /dev/null @@ -1,95 +0,0 @@ -/* - * nvidia-settings: A tool for configuring the NVIDIA X driver on Unix - * and Linux systems. - * - * Copyright (C) 2004 NVIDIA Corporation. - * - * This program is free software; you can redistribute it and/or - * modify it under the terms of Version 2 of the GNU General Public - * License as published by the Free Software Foundation. - * - * This program is distributed in the hope that it will be useful, but - * WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See Version 2 - * of the GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the: - * - * Free Software Foundation, Inc. - * 59 Temple Place - Suite 330 - * Boston, MA 02111-1307, USA - * - */ - -/* - * This source file contains a simple routine for uncompressing RGB - * 1-byte-run-length-encoded images as generated by gimp when saving - * as "C-Source". - */ - -#include "image.h" - -#include <stdlib.h> -#include <string.h> - -#define GIMP_IMAGE_RUN_LENGTH_DECODE(image_buf, rle_data, size, bpp) \ -do { \ - unsigned int __bpp; \ - unsigned char *__ip; \ - const unsigned char *__il, *__rd; \ - \ - __bpp = (bpp); \ - __ip = (image_buf); \ - __il = __ip + (size) * __bpp; \ - __rd = (unsigned char *)(rle_data); \ - \ - if (__bpp > 3) { /* RGBA */ \ - while (__ip < __il) { \ - unsigned int __l = *(__rd++); \ - if (__l & 128) { \ - __l = __l - 128; \ - do { \ - memcpy (__ip, __rd, 4); __ip += 4; \ - } while (--__l); \ - __rd += 4; \ - } else { \ - __l *= 4; \ - memcpy (__ip, __rd, __l); \ - __ip += __l; __rd += __l; \ - } \ - } \ - } else { /* RGB */ \ - while (__ip < __il) { \ - unsigned int __l = *(__rd++); \ - if (__l & 128) { \ - __l = __l - 128; \ - do { \ - memcpy (__ip, __rd, 3); __ip += 3; \ - } while (--__l); __rd += 3; \ - } else { \ - __l *= 3; \ - memcpy (__ip, __rd, __l); \ - __ip += __l; __rd += __l; \ - } \ - } \ - } \ -} while (0) - -unsigned char *decompress_image_data(const nv_image_t *img) -{ - unsigned char *buf = malloc(img->width * - img->height * - img->bytes_per_pixel); - - GIMP_IMAGE_RUN_LENGTH_DECODE(buf, img->rle_pixel_data, - img->width * img->height, - img->bytes_per_pixel); - return buf; -} - - -void free_decompressed_image(unsigned char *buf, void *ptr) -{ - free(buf); -} diff --git a/src/image_data/image.h b/src/image_data/image.h deleted file mode 100644 index 59e90aa..0000000 --- a/src/image_data/image.h +++ /dev/null @@ -1,73 +0,0 @@ -/* - * nvidia-settings: A tool for configuring the NVIDIA X driver on Unix - * and Linux systems. - * - * Copyright (C) 2004 NVIDIA Corporation. - * - * This program is free software; you can redistribute it and/or - * modify it under the terms of Version 2 of the GNU General Public - * License as published by the Free Software Foundation. - * - * This program is distributed in the hope that it will be useful, but - * WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See Version 2 - * of the GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the: - * - * Free Software Foundation, Inc. - * 59 Temple Place - Suite 330 - * Boston, MA 02111-1307, USA - * - */ - -#ifndef __IMAGE_H__ -#define __IMAGE_H__ - -typedef struct { - unsigned int width; - unsigned int height; - unsigned int bytes_per_pixel; /* 3:RGB, 4:RGBA */ - unsigned int fill_column_index; - char *rle_pixel_data; -} nv_image_t; - -unsigned char *decompress_image_data(const nv_image_t *img); -void free_decompressed_image(unsigned char *buf, void *ptr); - - -/* - * enum for the banner artwork - */ - -typedef enum { - BANNER_ARTWORK_ANTIALIAS, - BANNER_ARTWORK_BSD, - BANNER_ARTWORK_CLOCK, - BANNER_ARTWORK_COLOR, - BANNER_ARTWORK_CONFIG, - BANNER_ARTWORK_CRT, - BANNER_ARTWORK_CURSOR_SHADOW, - BANNER_ARTWORK_DFP, - BANNER_ARTWORK_DISPLAY_CONFIG, - BANNER_ARTWORK_FRAMELOCK, - BANNER_ARTWORK_GLX, - BANNER_ARTWORK_GPU, - BANNER_ARTWORK_HELP, - BANNER_ARTWORK_OPENGL, - BANNER_ARTWORK_PENGUIN, - BANNER_ARTWORK_ROTATION, - BANNER_ARTWORK_SDI, - BANNER_ARTWORK_SOLARIS, - BANNER_ARTWORK_THERMAL, - BANNER_ARTWORK_TV, - BANNER_ARTWORK_VCS, - BANNER_ARTWORK_X, - BANNER_ARTWORK_XVIDEO, - BANNER_ARTWORK_INVALID, - BANNER_ARTWORK_SDI_SHARED_SYNC_BNC, -} BannerArtworkType; - - -#endif /* __IMAGE_H__ */ diff --git a/src/image_data/led_green.h b/src/image_data/led_green.h deleted file mode 100644 index b70132a..0000000 --- a/src/image_data/led_green.h +++ /dev/null @@ -1,44 +0,0 @@ -/* GIMP RGBA C-Source image dump 1-byte-run-length-encoded (led_green.c) */
-
-#include "image.h"
-
-static const nv_image_t led_green = {
- 16, 16, 4, 0,
- "\221\377\377\377\0\15\366\377\374\0\376\377\377\0\377\374\375\0\354\346\346"
- "R\305\303\304\234\302\301\311\327\304\301\324\372\277\273\311\327\267\262"
- "\266\234\322\307\327R\377\374\377\0\376\377\363\0\373\377\375\0\203\377\377"
- "\377\0\15\376\377\377\0\375\374\377\27\320\321\314\213\317\324\320\374\337"
- "\354\332\377\325\356\304\377\312\345\272\377\277\335\253\377\265\322\264"
- "\377\254\267\263\374\250\243\247\213\377\374\371\27\376\376\377\0\203\377"
- "\377\377\0\15\377\376\375\0\314\314\314\213\340\347\361\377\331\360\306\377"
- "\271\341\211\377\225\311[\377z\273-\377}\277A\377|\300m\377\224\274\231\377"
- "\245\260\252\377\244\237\243\213\377\373\377\0\203\377\377\377\0\15\366\361"
- "\356R\313\317\316\374\331\364\301\377\256\327y\377\247\324u\377\255\340\203"
- "\377\233\332g\377~\311.\377]\260*\377d\246\\\377\214\262\231\377\213\225"
- "\224\374\304\276\310R\203\377\377\377\0\15\314\306\320\234\335\350\344\377"
- "\270\341\201\377\236\317f\377\305\352\266\377\322\361\317\377\271\337\254"
- "\377\227\322T\377h\271\26\377<\217'\377b\246s\377\207\250\227\377\222\223"
- "\230\234\203\377\377\377\0\15\300\275\310\327\332\356\323\377\223\312S\377"
- "\241\331l\377\307\352\300\377\335\366\326\377\273\335\240\377\232\314[\377"
- "p\273\30\3777\224\"\3776\217O\377\207\265\231\377quv\327\203\377\377\377"
- "\0\15\304\276\276\372\323\353\307\377s\266\33\377\212\321E\377\250\330\216"
- "\377\266\335\214\377\247\326z\377\214\315?\377\\\256\36\377+\220*\377\21"
- "p.\377\216\275\235\377qsr\372\203\377\377\377\0\15\303\270\310\327\313\340"
- "\317\377p\262D\377q\300&\377\212\314F\377\224\315H\377\205\3123\377f\270"
- "\30\377D\236\"\377\21y\40\3774\217T\377\220\271\233\377hfg\327\203\377\377"
- "\377\0\15\333\312\322\234\274\313\266\377\203\276z\377E\232%\377X\260\34"
- "\377a\264\36\377Y\247\40\377G\226!\377\25z*\377\3j!\377e\270\204\377r\232"
- "\202\377\205\207\204\234\203\377\377\377\0\15\372\362\377R\246\260\261\374"
- "\246\312\260\377]\235`\377*\200%\377%\212\"\377\37\211'\377\12s\36\377\7"
- "k#\377S\244j\377\212\271\225\377]i]\374\317\304\310R\203\377\377\377\0\15"
- "\374\377\377\0\322\323\327\213\242\250\250\377\234\271\247\377g\246{\377"
- "2\214O\377\15q3\3773\226]\377g\265\203\377\211\266\225\377iqd\377\237\225"
- "\224\213\377\366\374\0\203\377\377\377\0\15\370\377\363\0\377\376\373\27"
- "\330\313\322\213\234\230\231\374\222\244\230\377\217\265\234\377\220\273"
- "\237\377\214\264\231\377w\230\203\377`j_\374\250\237\240\213\377\376\377"
- "\27\373\377\377\0\203\377\377\377\0\15\376\377\377\0\376\374\377\0\377\371"
- "\377\0\370\356\366R\312\304\310\234\236\232\233\327\210\202\204\372\216\205"
- "\210\327\252\254\253\234\341\333\335R\377\375\377\0\362\373\372\0\367\377"
- "\377\0\242\377\377\377\0",
-};
-
diff --git a/src/image_data/led_green_pixdata.h b/src/image_data/led_green_pixdata.h new file mode 100644 index 0000000..80075aa --- /dev/null +++ b/src/image_data/led_green_pixdata.h @@ -0,0 +1,65 @@ +/* GdkPixbuf RGBA C-Source image dump 1-byte-run-length-encoded */ + +static guint8 led_green_pixdata_pixel_data[] = { + 0x91,0xff,0xff,0xff,0x00,0x0d,0xf6,0xff,0xfc,0x00,0xfe,0xff,0xff,0x00,0xff, + 0xfc,0xfd,0x00,0xec,0xe6,0xe6,0x52,0xc5,0xc3,0xc4,0x9c,0xc2,0xc1,0xc9,0xd7, + 0xc4,0xc1,0xd4,0xfa,0xbf,0xbb,0xc9,0xd7,0xb7,0xb2,0xb6,0x9c,0xd2,0xc7,0xd7, + 0x52,0xff,0xfc,0xff,0x00,0xfe,0xff,0xf3,0x00,0xfb,0xff,0xfd,0x00,0x83,0xff, + 0xff,0xff,0x00,0x0d,0xfe,0xff,0xff,0x00,0xfd,0xfc,0xff,0x17,0xd0,0xd1,0xcc, + 0x8b,0xcf,0xd4,0xd0,0xfc,0xdf,0xec,0xda,0xff,0xd5,0xee,0xc4,0xff,0xca,0xe5, + 0xba,0xff,0xbf,0xdd,0xab,0xff,0xb5,0xd2,0xb4,0xff,0xac,0xb7,0xb3,0xfc,0xa8, + 0xa3,0xa7,0x8b,0xff,0xfc,0xf9,0x17,0xfe,0xfe,0xff,0x00,0x83,0xff,0xff,0xff, + 0x00,0x0d,0xff,0xfe,0xfd,0x00,0xcc,0xcc,0xcc,0x8b,0xe0,0xe7,0xf1,0xff,0xd9, + 0xf0,0xc6,0xff,0xb9,0xe1,0x89,0xff,0x95,0xc9,0x5b,0xff,0x7a,0xbb,0x2d,0xff, + 0x7d,0xbf,0x41,0xff,0x7c,0xc0,0x6d,0xff,0x94,0xbc,0x99,0xff,0xa5,0xb0,0xaa, + 0xff,0xa4,0x9f,0xa3,0x8b,0xff,0xfb,0xff,0x00,0x83,0xff,0xff,0xff,0x00,0x0d, + 0xf6,0xf1,0xee,0x52,0xcb,0xcf,0xce,0xfc,0xd9,0xf4,0xc1,0xff,0xae,0xd7,0x79, + 0xff,0xa7,0xd4,0x75,0xff,0xad,0xe0,0x83,0xff,0x9b,0xda,0x67,0xff,0x7e,0xc9, + 0x2e,0xff,0x5d,0xb0,0x2a,0xff,0x64,0xa6,0x5c,0xff,0x8c,0xb2,0x99,0xff,0x8b, + 0x95,0x94,0xfc,0xc4,0xbe,0xc8,0x52,0x83,0xff,0xff,0xff,0x00,0x0d,0xcc,0xc6, + 0xd0,0x9c,0xdd,0xe8,0xe4,0xff,0xb8,0xe1,0x81,0xff,0x9e,0xcf,0x66,0xff,0xc5, + 0xea,0xb6,0xff,0xd2,0xf1,0xcf,0xff,0xb9,0xdf,0xac,0xff,0x97,0xd2,0x54,0xff, + 0x68,0xb9,0x16,0xff,0x3c,0x8f,0x27,0xff,0x62,0xa6,0x73,0xff,0x87,0xa8,0x97, + 0xff,0x92,0x93,0x98,0x9c,0x83,0xff,0xff,0xff,0x00,0x0d,0xc0,0xbd,0xc8,0xd7, + 0xda,0xee,0xd3,0xff,0x93,0xca,0x53,0xff,0xa1,0xd9,0x6c,0xff,0xc7,0xea,0xc0, + 0xff,0xdd,0xf6,0xd6,0xff,0xbb,0xdd,0xa0,0xff,0x9a,0xcc,0x5b,0xff,0x70,0xbb, + 0x18,0xff,0x37,0x94,0x22,0xff,0x36,0x8f,0x4f,0xff,0x87,0xb5,0x99,0xff,0x71, + 0x75,0x76,0xd7,0x83,0xff,0xff,0xff,0x00,0x0d,0xc4,0xbe,0xbe,0xfa,0xd3,0xeb, + 0xc7,0xff,0x73,0xb6,0x1b,0xff,0x8a,0xd1,0x45,0xff,0xa8,0xd8,0x8e,0xff,0xb6, + 0xdd,0x8c,0xff,0xa7,0xd6,0x7a,0xff,0x8c,0xcd,0x3f,0xff,0x5c,0xae,0x1e,0xff, + 0x2b,0x90,0x2a,0xff,0x11,0x70,0x2e,0xff,0x8e,0xbd,0x9d,0xff,0x71,0x73,0x72, + 0xfa,0x83,0xff,0xff,0xff,0x00,0x0d,0xc3,0xb8,0xc8,0xd7,0xcb,0xe0,0xcf,0xff, + 0x70,0xb2,0x44,0xff,0x71,0xc0,0x26,0xff,0x8a,0xcc,0x46,0xff,0x94,0xcd,0x48, + 0xff,0x85,0xca,0x33,0xff,0x66,0xb8,0x18,0xff,0x44,0x9e,0x22,0xff,0x11,0x79, + 0x20,0xff,0x34,0x8f,0x54,0xff,0x90,0xb9,0x9b,0xff,0x68,0x66,0x67,0xd7,0x83, + 0xff,0xff,0xff,0x00,0x0d,0xdb,0xca,0xd2,0x9c,0xbc,0xcb,0xb6,0xff,0x83,0xbe, + 0x7a,0xff,0x45,0x9a,0x25,0xff,0x58,0xb0,0x1c,0xff,0x61,0xb4,0x1e,0xff,0x59, + 0xa7,0x20,0xff,0x47,0x96,0x21,0xff,0x15,0x7a,0x2a,0xff,0x03,0x6a,0x21,0xff, + 0x65,0xb8,0x84,0xff,0x72,0x9a,0x82,0xff,0x85,0x87,0x84,0x9c,0x83,0xff,0xff, + 0xff,0x00,0x0d,0xfa,0xf2,0xff,0x52,0xa6,0xb0,0xb1,0xfc,0xa6,0xca,0xb0,0xff, + 0x5d,0x9d,0x60,0xff,0x2a,0x80,0x25,0xff,0x25,0x8a,0x22,0xff,0x1f,0x89,0x27, + 0xff,0x0a,0x73,0x1e,0xff,0x07,0x6b,0x23,0xff,0x53,0xa4,0x6a,0xff,0x8a,0xb9, + 0x95,0xff,0x5d,0x69,0x5d,0xfc,0xcf,0xc4,0xc8,0x52,0x83,0xff,0xff,0xff,0x00, + 0x0d,0xfc,0xff,0xff,0x00,0xd2,0xd3,0xd7,0x8b,0xa2,0xa8,0xa8,0xff,0x9c,0xb9, + 0xa7,0xff,0x67,0xa6,0x7b,0xff,0x32,0x8c,0x4f,0xff,0x0d,0x71,0x33,0xff,0x33, + 0x96,0x5d,0xff,0x67,0xb5,0x83,0xff,0x89,0xb6,0x95,0xff,0x69,0x71,0x64,0xff, + 0x9f,0x95,0x94,0x8b,0xff,0xf6,0xfc,0x00,0x83,0xff,0xff,0xff,0x00,0x0d,0xf8, + 0xff,0xf3,0x00,0xff,0xfe,0xfb,0x17,0xd8,0xcb,0xd2,0x8b,0x9c,0x98,0x99,0xfc, + 0x92,0xa4,0x98,0xff,0x8f,0xb5,0x9c,0xff,0x90,0xbb,0x9f,0xff,0x8c,0xb4,0x99, + 0xff,0x77,0x98,0x83,0xff,0x60,0x6a,0x5f,0xfc,0xa8,0x9f,0xa0,0x8b,0xff,0xfe, + 0xff,0x17,0xfb,0xff,0xff,0x00,0x83,0xff,0xff,0xff,0x00,0x0d,0xfe,0xff,0xff, + 0x00,0xfe,0xfc,0xff,0x00,0xff,0xf9,0xff,0x00,0xf8,0xee,0xf6,0x52,0xca,0xc4, + 0xc8,0x9c,0x9e,0x9a,0x9b,0xd7,0x88,0x82,0x84,0xfa,0x8e,0x85,0x88,0xd7,0xaa, + 0xac,0xab,0x9c,0xe1,0xdb,0xdd,0x52,0xff,0xfd,0xff,0x00,0xf2,0xfb,0xfa,0x00, + 0xf7,0xff,0xff,0x00,0xa2,0xff,0xff,0xff,0x00 +}; + +static const GdkPixdata led_green_pixdata = { + 0x47646b50, /* Pixbuf magic: 'GdkP' */ + 24 + 759, /* header length + pixel_data length */ + 0x2010002, /* pixdata_type */ + 64, /* rowstride */ + 16, /* width */ + 16, /* height */ + led_green_pixdata_pixel_data /* pixel_data */ +}; diff --git a/src/image_data/led_grey.h b/src/image_data/led_grey.h deleted file mode 100644 index 64faa6e..0000000 --- a/src/image_data/led_grey.h +++ /dev/null @@ -1,38 +0,0 @@ -/* GIMP RGBA C-Source image dump 1-byte-run-length-encoded (led_grey.c) */
-
-#include "image.h"
-
-static const nv_image_t led_grey = {
- 16, 16, 4, 0,
- "\222\377\377\377\0\13\376\376\376\0\377\377\377\0\346\346\346R\275\275\275"
- "\234\260\260\260\327\265\265\265\372\253\253\253\327\252\252\252\234\321"
- "\321\321R\377\377\377\0\371\371\371\0\205\377\377\377\0\14\376\376\376\27"
- "\270\270\270\213\300\300\300\374\313\313\313\377\241\241\241\377\212\212"
- "\212\377\177\177\177\377\216\216\216\377\217\217\217\374\226\226\226\213"
- "\373\373\373\27\376\376\376\0\203\377\377\377\0\14\376\376\376\0\305\305"
- "\305\213\317\317\317\377\252\252\252\377III\377\37\37\37\377\3\3\3\377\17"
- "\17\17\377\37\37\37\377===\377www\377\215\215\215\213\204\377\377\377\0\15"
- "\363\363\363R\270\270\270\374\260\260\260\377555\377FFF\377VVV\377DDD\377"
- "\37\37\37\377\0\0\0\377\21\21\21\377+++\377eee\374\300\300\300R\203\377\377"
- "\377\0\15\301\301\301\234\315\315\315\377PPP\377777\377\204\204\204\377\223"
- "\223\223\377mmm\377333\377\0\0\0\377\3\3\3\377\14\14\14\377DDD\377uuu\234"
- "\203\377\377\377\0\15\263\263\263\327\266\266\266\377\30\30\30\377JJJ\377"
- "\202\202\202\377\237\237\237\377sss\377:::\377\5\5\5\377\0\0\0\377\6\6\6"
- "\377;;;\377NNN\327\203\377\377\377\0\10\254\254\254\372\261\261\261\377\2"
- "\2\2\377000\377XXX\377fff\377GGG\377!!!\377\202\0\0\0\377\3\3\3\3\377888"
- "\377EEE\372\203\377\377\377\0\15\251\251\251\327\231\231\231\377\16\16\16"
- "\377\13\13\13\377'''\377---\377###\377\4\4\4\377\0\0\0\377\2\2\2\377\10\10"
- "\10\377HHH\377:::\327\203\377\377\377\0\3\300\300\300\234\234\234\234\377"
- "###\377\202\0\0\0\377\2\5\5\5\377\0\0\0\377\202\1\1\1\377\4\0\0\0\377$$$"
- "\377>>>\377fff\234\203\377\377\377\0\15\365\365\365R\217\217\217\374[[[\377"
- "\21\21\21\377\3\3\3\377\0\0\0\377\2\2\2\377\0\0\0\377\1\1\1\377\25\25\25"
- "\377HHH\377\40\40\40\374\301\301\301R\204\377\377\377\0\13\307\307\307\213"
- "\202\202\202\377@@@\377\16\16\16\377\4\4\4\377\2\2\2\377\12\12\12\377((("
- "\377CCC\377\30\30\30\377\201\201\201\213\205\377\377\377\0\14\375\375\375"
- "\27\312\312\312\213qqq\374YYY\377;;;\377DDD\377@@@\377333\377(((\374\207"
- "\207\207\213\377\377\377\27\375\375\375\0\205\377\377\377\0\13\372\372\372"
- "\0\352\352\352R\252\252\252\234\201\201\201\327]]]\372eee\327\222\222\222"
- "\234\317\317\317R\377\377\377\0\371\371\371\0\376\376\376\0\242\377\377\377"
- "\0",
-};
-
diff --git a/src/image_data/led_grey_pixdata.h b/src/image_data/led_grey_pixdata.h new file mode 100644 index 0000000..fe95680 --- /dev/null +++ b/src/image_data/led_grey_pixdata.h @@ -0,0 +1,62 @@ +/* GdkPixbuf RGBA C-Source image dump 1-byte-run-length-encoded */ + +static guint8 led_grey_pixdata_pixel_data[] = { + 0x92,0xff,0xff,0xff,0x00,0x0b,0xfe,0xfe,0xfe,0x00,0xff,0xff,0xff,0x00,0xe6, + 0xe6,0xe6,0x52,0xbd,0xbd,0xbd,0x9c,0xb0,0xb0,0xb0,0xd7,0xb5,0xb5,0xb5,0xfa, + 0xab,0xab,0xab,0xd7,0xaa,0xaa,0xaa,0x9c,0xd1,0xd1,0xd1,0x52,0xff,0xff,0xff, + 0x00,0xf9,0xf9,0xf9,0x00,0x85,0xff,0xff,0xff,0x00,0x0c,0xfe,0xfe,0xfe,0x17, + 0xb8,0xb8,0xb8,0x8b,0xc0,0xc0,0xc0,0xfc,0xcb,0xcb,0xcb,0xff,0xa1,0xa1,0xa1, + 0xff,0x8a,0x8a,0x8a,0xff,0x7f,0x7f,0x7f,0xff,0x8e,0x8e,0x8e,0xff,0x8f,0x8f, + 0x8f,0xfc,0x96,0x96,0x96,0x8b,0xfb,0xfb,0xfb,0x17,0xfe,0xfe,0xfe,0x00,0x83, + 0xff,0xff,0xff,0x00,0x0c,0xfe,0xfe,0xfe,0x00,0xc5,0xc5,0xc5,0x8b,0xcf,0xcf, + 0xcf,0xff,0xaa,0xaa,0xaa,0xff,0x49,0x49,0x49,0xff,0x1f,0x1f,0x1f,0xff,0x03, + 0x03,0x03,0xff,0x0f,0x0f,0x0f,0xff,0x1f,0x1f,0x1f,0xff,0x3d,0x3d,0x3d,0xff, + 0x77,0x77,0x77,0xff,0x8d,0x8d,0x8d,0x8b,0x84,0xff,0xff,0xff,0x00,0x0d,0xf3, + 0xf3,0xf3,0x52,0xb8,0xb8,0xb8,0xfc,0xb0,0xb0,0xb0,0xff,0x35,0x35,0x35,0xff, + 0x46,0x46,0x46,0xff,0x56,0x56,0x56,0xff,0x44,0x44,0x44,0xff,0x1f,0x1f,0x1f, + 0xff,0x00,0x00,0x00,0xff,0x11,0x11,0x11,0xff,0x2b,0x2b,0x2b,0xff,0x65,0x65, + 0x65,0xfc,0xc0,0xc0,0xc0,0x52,0x83,0xff,0xff,0xff,0x00,0x0d,0xc1,0xc1,0xc1, + 0x9c,0xcd,0xcd,0xcd,0xff,0x50,0x50,0x50,0xff,0x37,0x37,0x37,0xff,0x84,0x84, + 0x84,0xff,0x93,0x93,0x93,0xff,0x6d,0x6d,0x6d,0xff,0x33,0x33,0x33,0xff,0x00, + 0x00,0x00,0xff,0x03,0x03,0x03,0xff,0x0c,0x0c,0x0c,0xff,0x44,0x44,0x44,0xff, + 0x75,0x75,0x75,0x9c,0x83,0xff,0xff,0xff,0x00,0x0d,0xb3,0xb3,0xb3,0xd7,0xb6, + 0xb6,0xb6,0xff,0x18,0x18,0x18,0xff,0x4a,0x4a,0x4a,0xff,0x82,0x82,0x82,0xff, + 0x9f,0x9f,0x9f,0xff,0x73,0x73,0x73,0xff,0x3a,0x3a,0x3a,0xff,0x05,0x05,0x05, + 0xff,0x00,0x00,0x00,0xff,0x06,0x06,0x06,0xff,0x3b,0x3b,0x3b,0xff,0x4e,0x4e, + 0x4e,0xd7,0x83,0xff,0xff,0xff,0x00,0x08,0xac,0xac,0xac,0xfa,0xb1,0xb1,0xb1, + 0xff,0x02,0x02,0x02,0xff,0x30,0x30,0x30,0xff,0x58,0x58,0x58,0xff,0x66,0x66, + 0x66,0xff,0x47,0x47,0x47,0xff,0x21,0x21,0x21,0xff,0x82,0x00,0x00,0x00,0xff, + 0x03,0x03,0x03,0x03,0xff,0x38,0x38,0x38,0xff,0x45,0x45,0x45,0xfa,0x83,0xff, + 0xff,0xff,0x00,0x0d,0xa9,0xa9,0xa9,0xd7,0x99,0x99,0x99,0xff,0x0e,0x0e,0x0e, + 0xff,0x0b,0x0b,0x0b,0xff,0x27,0x27,0x27,0xff,0x2d,0x2d,0x2d,0xff,0x23,0x23, + 0x23,0xff,0x04,0x04,0x04,0xff,0x00,0x00,0x00,0xff,0x02,0x02,0x02,0xff,0x08, + 0x08,0x08,0xff,0x48,0x48,0x48,0xff,0x3a,0x3a,0x3a,0xd7,0x83,0xff,0xff,0xff, + 0x00,0x03,0xc0,0xc0,0xc0,0x9c,0x9c,0x9c,0x9c,0xff,0x23,0x23,0x23,0xff,0x82, + 0x00,0x00,0x00,0xff,0x02,0x05,0x05,0x05,0xff,0x00,0x00,0x00,0xff,0x82,0x01, + 0x01,0x01,0xff,0x04,0x00,0x00,0x00,0xff,0x24,0x24,0x24,0xff,0x3e,0x3e,0x3e, + 0xff,0x66,0x66,0x66,0x9c,0x83,0xff,0xff,0xff,0x00,0x0d,0xf5,0xf5,0xf5,0x52, + 0x8f,0x8f,0x8f,0xfc,0x5b,0x5b,0x5b,0xff,0x11,0x11,0x11,0xff,0x03,0x03,0x03, + 0xff,0x00,0x00,0x00,0xff,0x02,0x02,0x02,0xff,0x00,0x00,0x00,0xff,0x01,0x01, + 0x01,0xff,0x15,0x15,0x15,0xff,0x48,0x48,0x48,0xff,0x20,0x20,0x20,0xfc,0xc1, + 0xc1,0xc1,0x52,0x84,0xff,0xff,0xff,0x00,0x0b,0xc7,0xc7,0xc7,0x8b,0x82,0x82, + 0x82,0xff,0x40,0x40,0x40,0xff,0x0e,0x0e,0x0e,0xff,0x04,0x04,0x04,0xff,0x02, + 0x02,0x02,0xff,0x0a,0x0a,0x0a,0xff,0x28,0x28,0x28,0xff,0x43,0x43,0x43,0xff, + 0x18,0x18,0x18,0xff,0x81,0x81,0x81,0x8b,0x85,0xff,0xff,0xff,0x00,0x0c,0xfd, + 0xfd,0xfd,0x17,0xca,0xca,0xca,0x8b,0x71,0x71,0x71,0xfc,0x59,0x59,0x59,0xff, + 0x3b,0x3b,0x3b,0xff,0x44,0x44,0x44,0xff,0x40,0x40,0x40,0xff,0x33,0x33,0x33, + 0xff,0x28,0x28,0x28,0xfc,0x87,0x87,0x87,0x8b,0xff,0xff,0xff,0x17,0xfd,0xfd, + 0xfd,0x00,0x85,0xff,0xff,0xff,0x00,0x0b,0xfa,0xfa,0xfa,0x00,0xea,0xea,0xea, + 0x52,0xaa,0xaa,0xaa,0x9c,0x81,0x81,0x81,0xd7,0x5d,0x5d,0x5d,0xfa,0x65,0x65, + 0x65,0xd7,0x92,0x92,0x92,0x9c,0xcf,0xcf,0xcf,0x52,0xff,0xff,0xff,0x00,0xf9, + 0xf9,0xf9,0x00,0xfe,0xfe,0xfe,0x00,0xa2,0xff,0xff,0xff,0x00 +}; + +static const GdkPixdata led_grey_pixdata = { + 0x47646b50, /* Pixbuf magic: 'GdkP' */ + 24 + 717, /* header length + pixel_data length */ + 0x2010002, /* pixdata_type */ + 64, /* rowstride */ + 16, /* width */ + 16, /* height */ + led_grey_pixdata_pixel_data /* pixel_data */ +}; diff --git a/src/image_data/led_red.h b/src/image_data/led_red.h deleted file mode 100644 index 045394f..0000000 --- a/src/image_data/led_red.h +++ /dev/null @@ -1,42 +0,0 @@ -/* GIMP RGBA C-Source image dump 1-byte-run-length-encoded (led_red.c) */
-
-#include "image.h"
-
-static const nv_image_t led_red = {
- 16, 16, 4, 0,
- "\224\377\377\377\0\7\377\376\377J\364\362\365\227\334\330\331\324\325\323"
- "\330\372\322\325\336\324\345\352\355\227\371\375\377J\207\377\377\377\0\13"
- "\377\376\377\6\370\373\377|\274\313\306\356\326\340\325\377\345\341\326\377"
- "\342\325\317\377\333\321\320\377\305\305\303\377\266\300\277\356\326\342"
- "\342|\377\376\377\6\205\377\377\377\0\13\357\363\364v\301\315\313\377\371"
- "\354\346\377\361\225\230\377\360I[\377\300\27*\377\306IQ\377\311\202\206"
- "\377\311\264\261\377\247\262\256\377\311\315\320v\204\377\377\377\0\15\377"
- "\372\373<\304\312\310\343\373\332\341\377\343n\201\377\3375B\377\353B?\377"
- "\3374-\377\315\12\20\377\241\4\27\377\240Z\\\377\247\250\240\377\227\235"
- "\233\343\355\351\352<\203\377\377\377\0\15\336\336\346\206\347\350\332\377"
- "\363\220\213\377\3416H\377\350\222\221\377\366\237\245\377\362w|\377\343"
- "3=\377\301\16\22\377\224\21\27\377\220ws\377\247\226\234\377\255\255\255"
- "\206\203\377\377\377\0\15\274\306\317\303\353\330\321\377\341DU\377\361`"
- "m\377\355\272\267\377\377\334\332\377\371\231\233\377\340JK\377\323\21\34"
- "\377\216\25\32\377tFH\377\256\227\235\377\206\204\205\303\203\377\377\377"
- "\0\15\271\310\313\356\361\320\311\377\314\12\"\377\354OZ\377\351\237\240"
- "\377\344\261\260\377\356\201\204\377\340=>\377\305\11\27\377\217\30\36\377"
- "]\40'\377\265\232\241\377vxu\356\203\377\377\377\0\15\267\303\301\356\346"
- "\312\277\377\3227=\377\340\32'\377\353NU\377\363\\e\377\346AH\377\335\30"
- "\"\377\264\16\34\377w\35\35\377\200GM\377\273\211\225\377boh\356\203\377"
- "\377\377\0\15\273\301\301\303\320\303\273\377\277nj\377\300\13\24\377\313"
- "\14\21\377\341\30\"\377\306\16\30\377\272\10\30\377\215\24\33\377T\"\33\377"
- "\242nr\377\266s\205\377\\pg\303\203\377\377\377\0\15\336\341\346\206\260"
- "\256\261\377\273\237\236\377\257ST\377\234\30\26\377\243\23\22\377\236\27"
- "\36\377{\25\40\377V!\33\377\225]\\\377\300\203\213\377qTY\377\234\250\244"
- "\206\203\377\377\377\0\15\372\374\373<\265\266\272\343\257\250\257\377\250"
- "\224\226\377\244qp\377\204CA\377f$&\377zNO\377\234{v\377\302\201\211\377"
- "\207ce\377Z\\W\343\360\364\365<\204\377\377\377\0\13\362\367\361v\244\237"
- "\246\377\225\225\235\377\232\213\222\377\261\221\226\377\270\231\227\377"
- "\263\220\216\377\265oz\377~VW\377JXK\377\336\316\321v\205\377\377\377\0\13"
- "\377\377\377\6\371\371\371|\270\270\270\356\207\206\204\377ztt\377qgh\377"
- "j^`\377UUU\377\222\222\222\356\346\346\346|\377\377\377\6\207\377\377\377"
- "\0\7\377\377\377J\365\365\363\227\336\332\331\324\314\306\306\372\323\312"
- "\313\324\357\357\357\227\367\367\367J\225\377\377\377\0",
-};
-
diff --git a/src/image_data/led_red_pixdata.h b/src/image_data/led_red_pixdata.h new file mode 100644 index 0000000..4e11800 --- /dev/null +++ b/src/image_data/led_red_pixdata.h @@ -0,0 +1,64 @@ +/* GdkPixbuf RGBA C-Source image dump 1-byte-run-length-encoded */ + +static guint8 led_red_pixdata_pixel_data[] = { + 0x94,0xff,0xff,0xff,0x00,0x07,0xff,0xfe,0xff,0x4a,0xf4,0xf2,0xf5,0x97,0xdc, + 0xd8,0xd9,0xd4,0xd5,0xd3,0xd8,0xfa,0xd2,0xd5,0xde,0xd4,0xe5,0xea,0xed,0x97, + 0xf9,0xfd,0xff,0x4a,0x87,0xff,0xff,0xff,0x00,0x0b,0xff,0xfe,0xff,0x06,0xf8, + 0xfb,0xff,0x7c,0xbc,0xcb,0xc6,0xee,0xd6,0xe0,0xd5,0xff,0xe5,0xe1,0xd6,0xff, + 0xe2,0xd5,0xcf,0xff,0xdb,0xd1,0xd0,0xff,0xc5,0xc5,0xc3,0xff,0xb6,0xc0,0xbf, + 0xee,0xd6,0xe2,0xe2,0x7c,0xff,0xfe,0xff,0x06,0x85,0xff,0xff,0xff,0x00,0x0b, + 0xef,0xf3,0xf4,0x76,0xc1,0xcd,0xcb,0xff,0xf9,0xec,0xe6,0xff,0xf1,0x95,0x98, + 0xff,0xf0,0x49,0x5b,0xff,0xc0,0x17,0x2a,0xff,0xc6,0x49,0x51,0xff,0xc9,0x82, + 0x86,0xff,0xc9,0xb4,0xb1,0xff,0xa7,0xb2,0xae,0xff,0xc9,0xcd,0xd0,0x76,0x84, + 0xff,0xff,0xff,0x00,0x0d,0xff,0xfa,0xfb,0x3c,0xc4,0xca,0xc8,0xe3,0xfb,0xda, + 0xe1,0xff,0xe3,0x6e,0x81,0xff,0xdf,0x35,0x42,0xff,0xeb,0x42,0x3f,0xff,0xdf, + 0x34,0x2d,0xff,0xcd,0x0a,0x10,0xff,0xa1,0x04,0x17,0xff,0xa0,0x5a,0x5c,0xff, + 0xa7,0xa8,0xa0,0xff,0x97,0x9d,0x9b,0xe3,0xed,0xe9,0xea,0x3c,0x83,0xff,0xff, + 0xff,0x00,0x0d,0xde,0xde,0xe6,0x86,0xe7,0xe8,0xda,0xff,0xf3,0x90,0x8b,0xff, + 0xe1,0x36,0x48,0xff,0xe8,0x92,0x91,0xff,0xf6,0x9f,0xa5,0xff,0xf2,0x77,0x7c, + 0xff,0xe3,0x33,0x3d,0xff,0xc1,0x0e,0x12,0xff,0x94,0x11,0x17,0xff,0x90,0x77, + 0x73,0xff,0xa7,0x96,0x9c,0xff,0xad,0xad,0xad,0x86,0x83,0xff,0xff,0xff,0x00, + 0x0d,0xbc,0xc6,0xcf,0xc3,0xeb,0xd8,0xd1,0xff,0xe1,0x44,0x55,0xff,0xf1,0x60, + 0x6d,0xff,0xed,0xba,0xb7,0xff,0xff,0xdc,0xda,0xff,0xf9,0x99,0x9b,0xff,0xe0, + 0x4a,0x4b,0xff,0xd3,0x11,0x1c,0xff,0x8e,0x15,0x1a,0xff,0x74,0x46,0x48,0xff, + 0xae,0x97,0x9d,0xff,0x86,0x84,0x85,0xc3,0x83,0xff,0xff,0xff,0x00,0x0d,0xb9, + 0xc8,0xcb,0xee,0xf1,0xd0,0xc9,0xff,0xcc,0x0a,0x22,0xff,0xec,0x4f,0x5a,0xff, + 0xe9,0x9f,0xa0,0xff,0xe4,0xb1,0xb0,0xff,0xee,0x81,0x84,0xff,0xe0,0x3d,0x3e, + 0xff,0xc5,0x09,0x17,0xff,0x8f,0x18,0x1e,0xff,0x5d,0x20,0x27,0xff,0xb5,0x9a, + 0xa1,0xff,0x76,0x78,0x75,0xee,0x83,0xff,0xff,0xff,0x00,0x0d,0xb7,0xc3,0xc1, + 0xee,0xe6,0xca,0xbf,0xff,0xd2,0x37,0x3d,0xff,0xe0,0x1a,0x27,0xff,0xeb,0x4e, + 0x55,0xff,0xf3,0x5c,0x65,0xff,0xe6,0x41,0x48,0xff,0xdd,0x18,0x22,0xff,0xb4, + 0x0e,0x1c,0xff,0x77,0x1d,0x1d,0xff,0x80,0x47,0x4d,0xff,0xbb,0x89,0x95,0xff, + 0x62,0x6f,0x68,0xee,0x83,0xff,0xff,0xff,0x00,0x0d,0xbb,0xc1,0xc1,0xc3,0xd0, + 0xc3,0xbb,0xff,0xbf,0x6e,0x6a,0xff,0xc0,0x0b,0x14,0xff,0xcb,0x0c,0x11,0xff, + 0xe1,0x18,0x22,0xff,0xc6,0x0e,0x18,0xff,0xba,0x08,0x18,0xff,0x8d,0x14,0x1b, + 0xff,0x54,0x22,0x1b,0xff,0xa2,0x6e,0x72,0xff,0xb6,0x73,0x85,0xff,0x5c,0x70, + 0x67,0xc3,0x83,0xff,0xff,0xff,0x00,0x0d,0xde,0xe1,0xe6,0x86,0xb0,0xae,0xb1, + 0xff,0xbb,0x9f,0x9e,0xff,0xaf,0x53,0x54,0xff,0x9c,0x18,0x16,0xff,0xa3,0x13, + 0x12,0xff,0x9e,0x17,0x1e,0xff,0x7b,0x15,0x20,0xff,0x56,0x21,0x1b,0xff,0x95, + 0x5d,0x5c,0xff,0xc0,0x83,0x8b,0xff,0x71,0x54,0x59,0xff,0x9c,0xa8,0xa4,0x86, + 0x83,0xff,0xff,0xff,0x00,0x0d,0xfa,0xfc,0xfb,0x3c,0xb5,0xb6,0xba,0xe3,0xaf, + 0xa8,0xaf,0xff,0xa8,0x94,0x96,0xff,0xa4,0x71,0x70,0xff,0x84,0x43,0x41,0xff, + 0x66,0x24,0x26,0xff,0x7a,0x4e,0x4f,0xff,0x9c,0x7b,0x76,0xff,0xc2,0x81,0x89, + 0xff,0x87,0x63,0x65,0xff,0x5a,0x5c,0x57,0xe3,0xf0,0xf4,0xf5,0x3c,0x84,0xff, + 0xff,0xff,0x00,0x0b,0xf2,0xf7,0xf1,0x76,0xa4,0x9f,0xa6,0xff,0x95,0x95,0x9d, + 0xff,0x9a,0x8b,0x92,0xff,0xb1,0x91,0x96,0xff,0xb8,0x99,0x97,0xff,0xb3,0x90, + 0x8e,0xff,0xb5,0x6f,0x7a,0xff,0x7e,0x56,0x57,0xff,0x4a,0x58,0x4b,0xff,0xde, + 0xce,0xd1,0x76,0x85,0xff,0xff,0xff,0x00,0x0b,0xff,0xff,0xff,0x06,0xf9,0xf9, + 0xf9,0x7c,0xb8,0xb8,0xb8,0xee,0x87,0x86,0x84,0xff,0x7a,0x74,0x74,0xff,0x71, + 0x67,0x68,0xff,0x6a,0x5e,0x60,0xff,0x55,0x55,0x55,0xff,0x92,0x92,0x92,0xee, + 0xe6,0xe6,0xe6,0x7c,0xff,0xff,0xff,0x06,0x87,0xff,0xff,0xff,0x00,0x07,0xff, + 0xff,0xff,0x4a,0xf5,0xf5,0xf3,0x97,0xde,0xda,0xd9,0xd4,0xcc,0xc6,0xc6,0xfa, + 0xd3,0xca,0xcb,0xd4,0xef,0xef,0xef,0x97,0xf7,0xf7,0xf7,0x4a,0x95,0xff,0xff, + 0xff,0x00 +}; + +static const GdkPixdata led_red_pixdata = { + 0x47646b50, /* Pixbuf magic: 'GdkP' */ + 24 + 737, /* header length + pixel_data length */ + 0x2010002, /* pixdata_type */ + 64, /* rowstride */ + 16, /* width */ + 16, /* height */ + led_red_pixdata_pixel_data /* pixel_data */ +}; diff --git a/src/image_data/logo_pixdata.h b/src/image_data/logo_pixdata.h index e6033a0..7cdd600 100644 --- a/src/image_data/logo_pixdata.h +++ b/src/image_data/logo_pixdata.h @@ -448,7 +448,8 @@ static guint8 logo_pixdata_pixel_data[] = { 0x02,0x02,0x02,0x55,0x02,0x02,0x02,0x69,0x03,0x03,0x03,0x71,0x00,0x00,0x00, 0x5b,0x00,0x00,0x00,0x35,0x00,0x00,0x00,0x27,0x00,0x00,0x00,0x1c,0x00,0x00, 0x00,0x1a,0x00,0x00,0x00,0x33,0x02,0x02,0x02,0x66,0x03,0x03,0x03,0x73,0x03, - 0x03,0x03,0x68,0x01,0x01,0x01,0x50,0x0a,0x0a,0x0a,0x6a,0x02,0x02,0x02,0x46, + 0x03,0x03,0x68,0x01,0x01,0x01,0x50,0x0a,0x0a,0x0a,0x6a,0x02,0x02,0x02,0x46 + }; static const GdkPixdata logo_pixdata = { diff --git a/src/image_data/logo_tall_pixdata.h b/src/image_data/logo_tall_pixdata.h index 8065ffb..35dad50 100644 --- a/src/image_data/logo_tall_pixdata.h +++ b/src/image_data/logo_tall_pixdata.h @@ -1542,7 +1542,8 @@ static guint8 logo_tall_pixdata_pixel_data[] = { 0xff,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0xff,0x00, 0xff,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0xff,0x00, 0xff,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0xff,0x00, - 0xff,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0xff,0x00,0xe6,0xff,0xff,0xff,0x00, + 0xff,0xff,0xff,0xff,0x00,0xff,0xff,0xff,0xff,0x00,0xe6,0xff,0xff,0xff,0x00 + }; static const GdkPixdata logo_tall_pixdata = { diff --git a/src/image_data/nvidia_icon_pixdata.h b/src/image_data/nvidia_icon_pixdata.h index 73e9343..4555b18 100644 --- a/src/image_data/nvidia_icon_pixdata.h +++ b/src/image_data/nvidia_icon_pixdata.h @@ -1,417 +1,725 @@ /* GdkPixbuf RGBA C-Source image dump 1-byte-run-length-encoded */ static guint8 nvidia_icon_pixdata_pixel_data[] = { - "\377\0\0\0\0\377\0\0\0\0\377\0\0\0\0\377\0\0\0\0\377\0\0\0\0\377\0\0" - "\0\0\346\0\0\0\0\226\0\0\0\1\227\0\0\0\2\202\0\0\0\1\233\0\0\0\0\11\0" - "\0\0\3<[\4""8\244\325J\243\273\352d\245\273\352e\245\273\352e\246\275" - "\352j\246\277\352n\247\277\352o\247\202\277\352o\250\10\277\352p\251" - "\277\353q\252\300\353q\252\300\353r\252\300\353r\253\301\354s\254\301" - "\354r\255\301\354s\255\202\302\354t\256\12\302\354s\260\302\354s\261" - "\303\355t\261\303\355v\262\303\354v\262\303\354v\263\303\354w\263\303" - "\354x\263\304\355y\264\303\354x\265\202\304\354y\265\202\304\354y\266" - "\17\304\354z\266\304\354y\267\304\354z\267\304\354z\270\303\354y\270" - "\303\354y\271\304\354y\271\304\355y\272\303\355w\272\302\355t\273\303" - "\355t\273\302\356s\274\237\314N\263\16\24\1\14\0\0\0\1\232\0\0\0\0\3" - "\0\0\0\12""7T\1x\274\345r\377\202\331\377\225\377\6\331\377\226\377\332" - "\377\230\377\332\377\231\377\333\377\231\377\332\377\231\377\333\377" - "\231\377\215\333\377\232\377\4\333\377\233\377\334\377\233\377\333\377" - "\233\377\334\377\233\377\202\333\377\233\377\203\334\377\235\377\203" - "\334\377\234\377\203\335\377\236\377\202\334\377\235\377\203\333\377" - "\232\377\6\332\377\231\377\332\377\230\377\331\377\227\377\260\330g\370" - "\12\17\1!\0\0\0\4\231\0\0\0\0\7\0\0\0\1\0\0\0\21""1K\1\206\301\350z\377" - "\333\377\233\377\334\377\234\377\334\377\233\377\206\334\377\234\377" - "\206\334\377\235\377\2\334\377\236\377\335\377\236\377\202\334\377\236" - "\377\2\334\377\235\377\335\377\236\377\204\335\377\237\377\1\335\377" - "\236\377\207\335\377\237\377\1\335\377\240\377\204\335\377\237\377\1" - "\335\377\236\377\203\334\377\235\377\5\333\377\233\377\333\377\232\377" - "\266\334p\371\10\14\0""1\0\0\0\6\231\0\0\0\0\5\0\0\0\1\0\0\0\24/H\1\212" - "\306\353\201\377\335\377\237\377\206\335\377\240\377\202\335\377\241" - "\377\2\336\377\241\377\335\377\241\377\212\336\377\241\377\1\336\377" - "\242\377\202\336\377\241\377\202\335\377\241\377\202\336\377\242\377" - "\202\336\377\241\377\2\335\377\240\377\335\377\241\377\202\336\377\243" - "\377\3\336\377\242\377\335\377\241\377\335\377\240\377\203\335\377\237" - "\377\203\335\377\240\377\4\335\377\237\377\275\342y\371\10\14\0""4\0" - "\0\0\7\231\0\0\0\0\4\0\0\0\1\0\0\0\24/H\1\213\312\355\211\377\206\336" - "\377\243\377\3\336\377\244\377\336\377\243\377\336\377\244\377\203\337" - "\377\244\377\213\337\377\245\377\1\336\377\244\377\202\337\377\244\377" - "\3\337\377\246\377\337\377\244\377\336\377\244\377\202\336\377\243\377" - "\2\336\377\244\377\337\377\244\377\213\336\377\243\377\3\303\347\201" - "\371\10\13\0""5\0\0\0\7\231\0\0\0\0\14\0\0\0\1\0\0\0\24-E\1\213q\233" - "%\377y\243,\377{\247-\377\201\2544\377\212\265>\377\227\302K\377\251" - "\322^\377\277\344z\377\326\370\231\377\206\340\377\250\377\1\340\377" - "\251\377\203\340\377\250\377\203\340\377\251\377\210\340\377\250\377" - "\1\340\377\247\377\203\340\377\250\377\2\340\377\247\377\337\377\246" - "\377\204\337\377\245\377\1\336\377\244\377\202\337\377\244\377\202\336" - "\377\244\377\3\310\353\210\372\13\20\0""7\0\0\0\7\226\0\0\0\0\7\0\0\0" - "\1\1\2\0\3Rs\17\14\212\2629)h\215#V1J\5\240<\\\1\377\205;[\1\377\7<]" - "\1\377Ad\1\377Jq\3\377f\220\33\377\222\272H\377\275\342{\377\336\375" - "\245\377\202\341\377\253\377\7\341\377\254\377\342\377\254\377\341\377" - "\253\377\341\377\254\377\342\377\254\377\341\377\254\377\342\377\254" - "\377\205\341\377\253\377\202\341\377\252\377\203\340\377\251\377\1\341" - "\377\251\377\211\340\377\250\377\203\340\377\247\377\3\315\356\217\374" - "\20\31\0<\0\0\0\7\222\0\0\0\0\21\0\0\0\1\4\5\0\3s\232&\31\270\334o[\312" - "\354\210\230\321\362\221\316\330\371\233\364\340\376\247\377\237\305" - "Z\377<\\\1\3774P\1\3422M\1\3353N\1\3354O\1\3415R\1\3518V\1\363;[\1\375" - "\202;[\1\377\202;Z\1\377\4@c\1\377W\177\17\377\220\270J\377\313\354\216" - "\377\215\342\377\255\377\202\342\377\254\377\3\341\377\253\377\341\377" - "\254\377\341\377\253\377\203\340\377\251\377\211\340\377\250\377\3\322" - "\363\225\375\24\40\0A\0\0\0\10\217\0\0\0\0\7\0\0\0\1\0\0\0\3\203\247" - "9\36\301\343|s\320\362\221\304\334\374\241\373\340\377\251\377\203\341" - "\377\252\377\24\330\367\235\377\220\266J\3777U\1\377\13\21\1y\0\0\0]" - "\0\0\0Z\0\0\0\\\0\0\0`\0\0\0d\4\6\0p\24\36\1\212#5\1\254/G\1\3178V\1" - "\363;Z\1\377:Y\1\377:Z\1\377Cg\1\377u\234.\377\276\340\177\377\213\342" - "\377\255\377\204\342\377\254\377\1\341\377\253\377\202\341\377\252\377" - "\212\340\377\250\377\3\325\366\231\376\33*\1F\0\0\0\10\215\0\0\0\0\35" - "\0\0\0\1/@\12\7\261\324iL\316\357\215\263\334\374\241\371\340\377\250" - "\377\340\377\251\377\334\373\242\377\273\337z\377\226\274P\377s\233," - "\377U|\16\377Ej\3\377@c\1\3778V\1\377\22\33\1Z\3\5\0'\1\2\0\40\0\0\0" - "\40\0\0\0\"\0\0\0%\0\0\0,\0\0\0""5\0\0\0C\0\0\0T\3\4\0g\31&\1\223-E\1" - "\3129W\1\367\202:Y\1\377\3\77b\1\377q\230,\377\304\345\210\377\205\342" - "\377\255\377\202\342\377\254\377\2\341\377\254\377\341\377\253\377\202" - "\341\377\252\377\3\340\377\251\377\341\377\251\377\340\377\251\377\210" - "\340\377\250\377\2\340\377\247\377\337\377\246\377\202\337\377\245\377" - "\3\326\370\231\377!2\2K\0\0\0\11\213\0\0\0\0\14\0\0\0\1CY\23\12\273\336" - "te\322\364\221\325\337\377\245\377\337\377\246\377\337\376\245\377\270" - "\334v\377\200\2479\377Ou\12\377@b\1\377<\\\1\377\204;[\1\377\26Ac\2\377" - "\313\356\212\362\325\366\227\356\323\365\223\346\317\361\216\324\311" - "\354\210\264\275\341y\210\231\302NQ0G\10\30\0\0\0\22\0\0\0\31\0\0\0'" - "\0\0\0:\0\0\0Q\10\14\1p%9\1\2617T\1\360:Y\1\3779X\1\377Be\3\377\206\253" - "B\377\330\366\237\377\202\341\377\253\377\202\340\377\251\377\2\340\377" - "\250\377\340\377\251\377\207\340\377\250\377\202\340\377\247\377\202" - "\337\377\246\377\1\337\377\245\377\202\336\377\244\377\204\336\377\243" - "\377\3\330\372\233\377(:\7O\0\0\0\12\211\0\0\0\0\4\0\0\0\1""7I\17\11" - "\274\336sd\324\366\223\337\202\336\377\243\377\4\331\373\234\377\241" - "\307\\\377\\\203\25\377\77b\1\377\204;[\1\377\6:Z\1\3734P\1\343-E\1\311" - "&:\1\2675Q\4\315\332\372\236\377\206\340\377\247\377\17\325\370\226\364" - "\305\353\200\254\234\307LN\23\35\1\14\0\0\0\15\0\0\0\30\0\0\0+\0\0\0" - "F\4\6\0f%8\1\2567U\1\3649X\1\377:Y\1\377Qv\20\377\262\325r\377\202\340" - "\377\250\377\202\340\377\247\377\1\337\377\246\377\202\337\377\245\377" - "\202\336\377\244\377\1\337\377\244\377\202\336\377\244\377\205\336\377" - "\243\377\205\336\377\242\377\4\336\377\241\377\331\373\232\377.B\12S" - "\0\0\0\12\207\0\0\0\0\4\0\0\0\1\3\5\0\4\260\322gJ\322\365\216\322\202" - "\335\377\237\377\5\333\376\235\377\247\315a\377V}\21\377=^\1\377;Z\1" - "\377\202;[\1\377\14""9W\1\363-D\1\306\34+\1\227\6\11\0m\0\0\0Z\0\0\0" - "O\0\0\0R/G\6\241\326\367\227\377\330\371\232\377\331\372\234\377\335" - "\376\241\377\205\336\377\243\377\21\335\376\241\377\312\361\205\326\243" - "\317S^\40""1\2\12\0\0\0\10\0\0\0\23\0\0\0'\0\0\0E\11\16\1m,C\1\3049X" - "\1\3759X\1\377=_\2\377\203\250A\377\332\373\236\377\336\377\243\377\336" - "\377\244\377\202\336\377\243\377\4\336\377\242\377\335\377\240\377\336" - "\377\241\377\336\377\242\377\203\335\377\241\377\202\335\377\240\377" - "\205\335\377\237\377\1\334\377\236\377\202\334\377\234\377\3\331\374" - "\230\3774J\16W\0\0\0\13\206\0\0\0\0\37\0\0\0\2\207\2549!\304\357q\255" - "\326\376\215\376\327\377\220\377\330\377\221\377\302\351|\377i\220\"" - "\377>_\1\377:Z\1\377;Z\1\377;[\1\3775Q\1\341\40""1\1\237\5\7\0e\0\0\0" - "L\0\0\0""8\0\0\0(\0\0\0\35\0\0\0\26\0\0\0$+A\1\220Gk\6\377Dg\3\377Dh" - "\5\377Lp\14\377`\204\37\377\201\245A\377\254\320k\377\326\372\224\377" - "\332\377\230\377\202\332\377\227\377%\331\376\224\377\300\355o\313\206" - "\2660=\0\0\0\5\0\0\0\7\0\0\0\23\0\0\0+\0\0\0M\31&\1\2145R\1\3539X\1\377" - ":Y\1\377a\206\37\377\314\356\214\377\335\377\240\377\335\377\237\377" - "\334\377\235\377\333\377\231\377\331\377\223\377\333\377\231\377\331" - "\377\225\377\330\377\221\377\327\377\220\377\327\377\216\377\326\377" - "\214\377\326\377\215\377\327\377\217\377\326\377\216\377\326\377\213" - "\377\324\377\206\377\321\377\177\377\317\377y\377\320\377{\377\321\377" - "~\377\320\375\177\3779P\21[\0\0\0\13\204\0\0\0\0\30\0\0\0\1\6\10\1\5" - "\250\333Ed\304\372a\356\311\377i\377\312\377k\377\312\376k\377\225\303" - "@\377Fj\4\377:Z\1\377:Y\1\377;Z\1\3776R\1\345\35,\1\224\0\1\0V\0\0\0" - ";\0\0\0$\0\0\0\25\0\0\0\13\0\0\0\7Dc\12\20\223\3054;a\211\31n4L\10\252" - "\207;[\1\377\3Eg\10\377\177\2467\377\300\356l\377\202\317\377x\377\12" - "\316\377w\377\310\372m\374\243\330C\2143M\4\15\0\0\0\3\0\0\0\10\0\0\0" - "\31\0\0\0""8\10\13\1e.F\2\313\2029X\1\377\30Mp\16\377\267\337n\377\325" - "\377\210\377\323\377\203\377\320\377|\377\321\377}\377\320\377z\377\316" - "\377u\377\315\377s\377\315\377r\377\314\377q\377\313\377o\377\313\377" - "l\377\311\377i\377\311\377g\377\307\377b\377\305\377^\377\305\377]\377" - "\305\377\\\377\305\377^\377\306\377a\377\306\375c\377<V\17_\0\0\0\14" - "\203\0\0\0\0\11\0\0\0\2x\245\"\37\256\355;\262\273\375F\377\275\376I" - "\377\276\376K\377\272\371H\377r\241\35\377=_\1\377\202:Y\1\377\32:X\1" - "\370';\1\252\3\4\0Y\0\0\0""7\0\0\0\35\0\0\0\15\0\0\0\7x\247\36#\247\343" - "8u\264\361E\300\275\372O\365\304\377Y\377}\255&\3779X\1\3770I\1\322+" - "B\1\303*A\1\301,D\1\3101L\1\3318V\1\361;[\1\377:Z\1\377:Y\1\377@a\4\377" - "\202\2553\377\302\372^\377\202\305\377^\377\3\304\377[\377\254\350\77" - "\311c\220\22%\202\0\0\0\3\24\0\0\0\16\0\0\0(\1\1\0P%8\2\2508W\1\3748" - "W\1\377Bd\5\377\244\323N\377\312\377k\377\311\377i\377\310\377e\377\307" - "\377c\377\305\377]\377\302\377V\377\300\377R\377\277\377O\377\277\376" - "M\377\276\376K\377\274\375I\377\273\375F\377\202\273\375E\377\7\272\375" - "E\377\272\375D\377\273\375F\377\274\375H\377\273\374G\377>Z\14b\0\0\0" - "\14\202\0\0\0\0\4\0\0\0\4\221\311*N\256\3609\352\263\366=\377\202\264" - "\367>\377\3\255\356:\377]\212\16\377;[\1\377\202:Y\1\377\11""5Q\1\341" - "\23\35\1v\0\0\0\77\0\0\0\37\0\0\0\15\10\14\1\10\215\305&D\252\3527\263" - "\265\370\77\372\202\270\373B\377\15\271\374C\377\263\365\77\377r\244" - "\31\3776S\1\377\15\23\1r\0\0\0O\0\0\0K\0\0\0O\0\0\0X\1\2\0e\23\35\1\210" - ")\77\1\2758U\1\363\2029X\1\377\26Sy\15\377\247\344:\377\271\374D\377" - "\271\374C\377\271\374D\377\253\3548\346q\243\27<\0\0\0\3\0\0\0\2\0\0" - "\0\10\0\0\0\35\0\0\0C\34+\1\2167U\1\3668W\1\377\77`\3\377\231\3159\377" - "\276\375L\377\273\374H\377\271\373C\377\267\372A\377\266\371@\377\202" - "\265\370\77\377\202\264\367>\377\1\263\366=\377\202\264\367>\377\205" - "\263\366=\377\7\264\367=\377A^\15e\0\0\0\15\0\0\0\1#1\6\11\231\325*\203" - "\252\3554\375\203\254\3576\377#\244\3452\377U~\12\377:Y\1\3779X\1\377" - ":Y\1\377/H\2\305\5\10\1W\0\0\0,\0\0\0\21\0\0\0\10\201\266\37""8\243\343" - "0\277\256\3618\377\257\3629\377\260\363:\377\226\322,\377k\233\27\377" - "Kq\7\377>_\1\377=_\1\3776R\1\377\22\32\1Q\0\0\0\31\0\0\0\23\0\0\0\25" - "\0\0\0\33\0\0\0%\0\0\0""5\0\0\0K\6\10\1j&:\1\2648V\1\3708W\1\377Ac\4" - "\377\223\316,\377\203\261\364;\377\14\250\3513\361s\247\27I\0\0\0\4\0" - "\0\0\1\0\0\0\5\0\0\0\26\0\0\0:\26\"\1~6T\1\3618W\1\377>_\3\377\222\315" - "+\377\202\260\363:\377\3\257\3629\377\256\3618\377\255\3607\377\202\254" - "\3576\377\202\255\3607\377\206\254\3576\377\7\255\3607\377\255\3606\377" - "B_\15g\0\0\0\15Wz\22\25\232\331'\266\243\346-\377\203\244\347.\377\21" - "\237\341,\377T}\12\3779Y\1\3779X\1\3779X\1\376+A\2\261\1\1\0H\0\0\0\40" - "\0\0\0\13Ed\14\22\224\322$\222\245\347/\373\247\3521\377\250\3532\377" - "\230\326*\377[\206\16\377=]\1\377\204;[\1\377\4\77a\2\377q\244\27\222" - "b\222\15""0\4\5\1\4\202\0\0\0\2\32\0\0\0\4\0\0\0\12\0\0\0\25\0\0\0*\0" - "\0\0I\17\27\1y2M\1\3358W\1\377=]\2\377\214\307%\377\251\3543\377\250" - "\3532\377\251\3543\377\240\342,\364l\236\22G\0\0\0\4\0\0\0\0\0\0\0\3" - "\0\0\0\22\0\0\0""4\24\36\1w6T\1\3618W\1\377@a\3\377\224\321(\377\250" - "\3532\377\202\246\3510\377\203\245\350/\377\2\246\3510\377\245\350/\377" - "\203\244\347.\377\202\245\350/\377\6\246\3510\377\245\350/\377\244\347" - ".\377Ca\14i\0\0\0\15\226\327\"\321\202\234\337&\377\1\234\340'\377\202" - "\235\340'\377\2]\212\15\3779Y\1\377\2029X\1\377\6)\77\2\252\0\0\0@\0" - "\0\0\31\0\0\0\11n\241\25""0\227\331$\325\202\237\342)\377\4\237\343)" - "\377}\264\33\377Ac\3\377:Z\1\377\202;[\1\377\11""7U\1\355-D\1\310%8\1" - "\264;[\4\317\240\343*\377\236\340(\375\217\317\35\267\\\212\10(\0\0\0" - "\3\202\0\0\0\0\11\0\0\0\2\0\0\0\7\0\0\0\26\0\0\0""3\3\5\0],C\1\3048W" - "\1\377\77`\3\377\223\321$\377\202\241\344+\377\15\240\343*\377\230\331" - "%\357Gm\5""5\0\0\0\3\0\0\0\0\0\0\0\3\0\0\0\20\0\0\0""2\26!\1y7U\1\365" - "8W\1\377Mt\7\377\236\341(\377\204\237\342)\377\205\236\341(\377\202\237" - "\342)\377\10\236\341(\377\234\337&\377\235\340'\377\235\341'\377Ba\12" - "k\0\0\0\15\222\324\35\377\225\330\37\377\203\226\331\40\377\12\212\311" - "\32\377=^\1\3778W\1\3779X\1\377,C\2\263\0\1\0>\0\0\0\26\0\0\0\10x\257" - "\26M\224\327\40\360\202\230\333\"\377\14\231\334#\377n\241\22\377;[\1" - "\377:Y\1\377:Z\1\3776T\1\350\36.\1\231\1\2\0`\0\0\0O\0\0\0Q3N\4\237\230" - "\333\"\377\202\231\334#\377\4\215\315\33\357R}\5W\0\0\0\6\0\0\0\1\202" - "\0\0\0\0\26\0\0\0\2\0\0\0\14\0\0\0&\1\1\0Q+A\1\275c\224\13\377\226\331" - "!\377\232\335$\377\232\335#\377\231\334#\377v\256\25\3779V\3\320\15\22" - "\4\22\0\0\0\2\0\0\0\0\0\0\0\2\0\0\0\17\0\0\0""4\32(\1\205=_\1\372\201" - "\276\25\377\230\333\"\377\203\231\334#\377\202\230\333\"\377\1\227\332" - "!\377\204\230\333\"\377\1\227\332!\377\202\226\331\40\377\5\225\330\37" - "\377\227\332!\377Aa\11l\0\0\0\16p\245\21\327\202\220\323\32\377\1\217" - "\322\31\377\202\220\323\32\377\10U\203\4\3777U\1\3771K\2\317\2\2\0B\0" - "\0\0\26\0\0\0\5\1\1\0\20|\266\25\334\203\222\325\34\377\14\201\276\25" - "\377:Z\1\3779X\1\377:Y\1\377-D\1\277\5\7\0^\0\0\0:\0\0\0\"\0\0\0\26\0" - "\0\0$7T\4\220\222\325\34\377\203\223\326\35\377\3}\272\21\373>_\2\\\0" - "\0\0\6\203\0\0\0\0\5\0\0\0\1\0\0\0\12\31&\1""3r\251\20\312\222\325\34" - "\377\203\223\326\35\377\5\177\272\25\377>_\1\3777T\1\362\31%\1""4\0\0" - "\0\5\202\0\0\0\0\7\0\0\0\3\0\0\0\26'<\1lx\263\20\371\221\324\33\377\222" - "\325\34\377\223\326\35\377\202\222\325\34\377\202\221\324\33\377\203" - "\222\325\34\377\203\221\324\33\377\203\220\323\32\377\5\221\324\33\377" - "@_\7m\0\0\0\16""4N\5\210\211\313\24\377\203\212\315\24\377\11\213\316" - "\25\377r\254\13\377Ae\1\377,C\1\270\0\0\0\40\0\0\0\5\0\0\0\3\0\0\0\36" - "R{\11\260\202\214\317\26\377\15\213\316\25\377\210\312\24\377Ek\1\377" - "8V\1\376';\2\251\0\0\0H\0\0\0#\0\0\0\15\0\0\0\4\0\0\0\2\0\0\0\26""8U" - "\3\212\215\317\27\377\204\215\320\27\377\3e\232\7\361)>\2""4\0\0\0\4" - "\202\0\0\0\0\4\0\0\0\2Q{\5'\201\300\21\321\214\317\26\377\202\215\320" - "\27\377\7\216\321\30\377\177\275\22\377Cf\2\3778V\1\375\37""0\1\210\0" - "\0\0$\0\0\0\5\202\0\0\0\0\3\0\0\0\4""7U\2=t\257\14\356\203\214\317\26" - "\377\203\215\320\27\377\1\214\317\26\377\202\215\320\27\377\4\213\316" - "\25\377\214\317\26\377\213\316\25\377\214\317\25\377\202\213\316\25\377" - "\1\212\315\24\377\202\213\316\25\377\6\77^\6m\0\0\0\16\1\2\0Fi\236\13" - "\336\206\311\20\377\206\311\17\377\202\206\311\20\377\11\202\304\16\377" - "R\177\1\3779X\1\367\26\40\2'\0\0\0\2\0\0\0\3\0\0\0\36\36-\1{{\270\16" - "\377\203\207\312\21\377\13d\231\6\3775Q\1\367\7\13\1O\0\0\0\32\0\0\0" - "\6\0\0\0\1\0\0\0\0\0\0\0\1\0\0\0\26""7S\3\213\210\312\22\377\204\210" - "\313\22\377\7\202\304\17\377Mw\2\304\4\6\1\20\0\0\0\2\0\0\0\4`\221\6" - ">\201\302\17\346\203\210\313\22\377\14\211\314\23\377}\274\17\377Di\2" - "\3778W\1\377&:\1\252\0\0\0\77\0\0\0\23\0\0\0\2\0\0\0\0\0\0\0\4>_\2""6" - "t\260\12\350\202\210\313\22\377\202\207\312\21\377\1\210\313\22\377\203" - "\211\314\23\377\1\207\312\22\377\203\207\312\21\377\2\206\311\20\377" - "\207\312\21\377\202\206\311\20\377\203\207\312\21\377\5=]\5m\0\0\0\16" - "\0\0\0)+B\3\207\177\300\13\376\204\202\305\14\377\17j\242\5\377Ho\1\377" - "3M\2\203\0\0\0\7\0\0\0\1\0\0\0\23\2\2\0IR}\5\344\204\307\15\377\203\306" - "\15\377\204\306\16\377{\273\13\377Fk\1\377(=\2{\0\0\0\13\203\0\0\0\0" - "\3\0\0\0\1\0\0\0\26""6R\2\212\202\204\307\16\377\1\203\306\15\377\203" - "\204\307\16\377\6o\252\7\377;Z\2l\0\0\0\14h\236\6]\201\302\14\365\205" - "\310\17\377\202\204\307\16\377\15\205\310\17\377y\266\14\377Ej\2\377" - "8W\1\377+B\1\275\1\1\0I\0\0\0\32\0\0\0\4\0\0\0\1\0\0\0\4Dh\2""9s\260" - "\10\350\203\306\15\377\204\204\307\16\377\3\203\305\16\377k\241\11\377" - "\203\306\16\377\204\204\307\16\377\210\203\306\15\377\5<[\4m\0\0\0\16" - "\0\0\0\24\0\1\0FY\210\6\321\204\177\302\11\377\12|\275\10\377V\206\1" - "\377Cg\1\350\30#\2\33\0\0\0\2\0\0\0\11\0\0\0""0$7\1\233q\255\7\377\177" - "\302\11\377\202\200\303\12\377\4d\232\3\3779X\1\334\10\13\1\25\0\0\0" - "\1\202\0\0\0\0\4\0\0\0\1\0\0\0\26""5Q\2\212\200\303\12\377\204\201\304" - "\13\377\202\200\303\12\377\3[\215\2\352e\234\5\223\177\301\12\374\204" - "\201\304\13\377\16s\256\11\377Bf\2\3778X\1\377-E\1\305\2\3\0O\0\0\0\37" - "\0\0\0\6\0\0\0\1\0\0\0\5Jr\2=t\261\6\352\201\304\13\377\200\303\12\377" - "\201\304\13\377\202\200\303\12\377\6}\275\13\377Nw\4\377<\\\1\377Kt\3" - "\377s\257\11\377\201\305\13\377\203\201\304\13\377\5\200\303\12\377\177" - "\302\11\377\200\303\12\377\201\304\13\377\201\303\13\377\202\177\302" - "\11\377\6""9X\3l\0\0\0\16\0\0\0\7\0\0\0(\24\36\1sr\257\6\371\204|\277" - "\6\377\11l\247\4\377P|\1\377>`\2\204\0\0\0\7\0\0\0\3\0\0\0\32\3\4\0R" - "Dh\2\350{\275\7\377\202}\300\7\377\4y\273\6\377S\201\1\3770I\2w\0\0\0" - "\7\202\0\0\0\0\6\0\0\0\1\0\0\0\26""5Q\2\212}\300\10\377~\301\10\377}" - "\300\7\377\204~\301\10\377\2{\275\7\377~\300\10\377\204~\301\10\377\14" - "h\240\5\377\77`\1\3779X\1\377-E\1\305\1\2\0Q\0\0\0\"\0\0\0\10\0\0\0\1" - "\0\0\0\6S\200\2Lu\265\5\360}\300\7\377\204~\301\10\377\10t\262\7\377" - "Ej\2\377;[\1\376<\\\1\377;[\1\377=]\1\377U\203\3\377w\266\10\377\203" - "~\301\10\377\2}\301\7\377~\301\10\377\202}\300\7\377\12|\277\6\377}\300" - "\7\3778V\2k\0\0\0\16\0\0\0\1\0\0\0\22\0\0\0B;[\2\261y\273\4\377z\275" - "\4\377\202y\274\3\377\25y\273\3\377^\222\1\377Kt\1\361)=\3(\0\0\0\2\0" - "\0\0\12\0\0\0""1\34+\1\217X\207\3\376z\275\4\377{\276\5\377z\275\4\377" - "p\256\3\377Lv\1\360$7\2.\0\0\0\3\0\0\0\0\0\0\0\1\0\0\0\26""5Q\2\212{" - "\275\5\377\212{\276\5\377\14z\273\5\377Z\212\3\377<\\\1\3779X\1\376*" - "@\1\272\1\2\0Q\0\0\0\"\0\0\0\10\0\0\0\2\1\1\0\10]\220\2iv\267\4\370\204" - "{\276\5\377\7|\277\6\377j\244\4\377>`\1\3777U\1\367\32(\1\244!3\1\254" - "9W\1\362\202;[\1\377\7\77a\1\377\\\216\4\377y\272\6\377|\277\6\377{\276" - "\5\377z\275\4\377{\276\5\377\203z\275\4\377\7""6T\2j\0\0\0\16\0\0\0\0" - "\0\0\0\5\0\0\0\"\4\6\0]V\206\2\345\203w\272\1\377\12w\271\1\377q\261" - "\1\377V\205\1\377Be\2\255\1\1\0\11\0\0\0\3\0\0\0\27\0\0\0J/G\1\311b\231" - "\2\377\203x\273\2\377\7k\246\1\377Mw\1\313\30$\2\25\0\0\0\2\0\0\0\1\0" - "\0\0\26""6S\1\212\206x\273\2\377\202y\274\3\377\16x\273\2\377y\274\3" - "\377m\252\3\377Iq\1\377;Z\1\3779X\1\373#5\1\244\0\0\0L\0\0\0!\0\0\0\10" - "\0\0\0\3\30$\1\16f\237\2\223w\271\2\375\204x\273\2\377\12x\273\3\377" - "\\\216\2\377;Z\1\3775R\1\355\23\36\1\204\0\0\0O\0\0\0K\11\15\0k+A\1\275" - ":Z\1\372\202;[\1\377\3Ch\1\377d\233\2\377y\273\3\377\204x\273\2\377\11" - "w\272\2\3774P\1i\0\0\0\15\0\0\0\0\0\0\0\1\0\0\0\15\0\0\0""6\30$\1\206" - "f\236\1\374\202u\266\1\377\14u\267\1\377u\266\1\377i\243\1\377Oz\1\377" - "8U\2^\0\0\0\5\0\0\0\7\0\0\0'\10\14\1e7T\1\351e\236\1\377v\267\1\377\202" - "v\270\1\377\7k\246\1\377R~\1\267\30$\2\21\0\0\0\2\0\0\0\26""7V\1\212" - "v\267\1\377\206v\270\1\377\20v\271\1\377p\257\1\377U\204\1\377>_\1\377" - ";[\1\3777T\1\353\27#\1\207\0\0\0D\0\0\0\35\0\0\0\7\0\0\0\4Fm\2&m\252" - "\1\303v\267\1\377v\270\1\377v\271\1\377\202v\270\1\377\22s\264\1\377" - "Nx\1\3779Y\1\3772M\1\335\13\21\1q\0\0\0;\0\0\0\32\0\0\0\25\0\0\0)\0\0" - "\0J\17\27\1y/I\1\315;[\1\376;[\1\377<\\\1\377Ny\1\377q\260\1\377v\270" - "\1\377\203v\267\1\377\2""1L\1f\0\0\0\15\202\0\0\0\0\23\0\0\0\3\0\0\0" - "\27\0\0\0I-E\1\263l\247\1\377s\262\1\377r\261\1\377r\262\1\377r\261\1" - "\377c\231\1\377Ho\1\355-D\3,\0\0\0\3\0\0\0\16\0\0\0""5\22\33\1|9Y\1\364" - "`\225\1\377t\263\1\377\202s\263\1\377\30n\253\1\377\\\216\1\3057T\2%" - "\0\0\0\31""9X\1\212s\263\1\377t\264\1\377t\265\1\377u\265\1\377t\265" - "\1\377r\261\1\377e\236\1\377Q~\1\377\77`\1\377;[\1\377;Z\1\375,C\1\302" - "\7\12\0f\0\0\0""8\0\0\0\26\0\0\0\6\2\3\0\10`\224\2^p\257\1\354\202t\264" - "\1\377\27t\265\1\377t\264\1\377t\265\1\377h\241\1\377Ch\1\3779X\1\376" - "*@\1\276\3\4\0_\0\0\0""2\0\0\0\22\0\0\0\4\0\0\0\2\0\0\0\7\0\0\0\26\0" - "\0\0""0\0\0\0Q\30$\1\2125Q\1\342;[\1\377:Y\1\377Ek\1\377q\260\1\377t" - "\264\1\377\202s\263\1\377\2.G\1c\0\0\0\15\203\0\0\0\0\5\0\0\0\7\0\0\0" - "$\2\2\0Z<\\\1\327l\250\1\377\202o\255\1\377&p\255\1\377n\253\1\377^\222" - "\1\377Ch\1\316\36-\2\25\0\0\0\4\0\0\0\24\0\0\0>\26!\1\2108W\1\365S\201" - "\1\377n\254\1\377p\257\1\377p\256\1\377p\255\1\377h\242\1\355Oz\1\204" - ".G\1\227Cg\1\377Lv\1\377P{\1\377Ny\1\377Ho\1\377\77b\1\377<]\1\377;[" - "\1\377;[\1\3751K\1\324\24\37\1\205\0\0\0N\0\0\0*\0\0\0\20\0\0\0\7Ir\2" - "$j\244\1\256p\257\1\376p\257\1\377q\260\1\377\202q\257\1\377\11p\257" - "\1\377V\206\1\377<\\\1\3778W\1\367\36.\1\235\0\0\0Q\0\0\0)\0\0\0\15\0" - "\0\0\2\203\0\0\0\0\10\0\0\0\2\0\0\0\12\0\0\0\33\0\0\0""8\3\4\0_,D\1\307" - "Gm\1\377h\241\1\377\204p\256\1\377\2+B\1`\0\0\0\15\203\0\0\0\0\25\0\0" - "\0\1\0\0\0\14\0\0\0""0\11\16\1mCg\1\352j\245\1\377l\247\1\377l\250\1" - "\377l\247\1\377k\246\1\377[\216\1\377Ac\2\264\21\31\3\15\0\0\0\5\0\0" - "\0\27\0\0\0A\22\34\1\2025R\1\353Di\1\377_\223\1\377m\250\1\377\202m\251" - "\1\377\3W\207\1\377<\\\1\3769X\1\365\204<\\\1\377\13<\\\1\3756S\1\350" - "*@\1\276\21\32\1\202\0\0\0U\0\0\0""6\0\0\0\32\0\0\0\13,E\2\23e\234\1" - "}l\250\1\361\202m\252\1\377\203n\253\1\377\11f\236\1\377Fm\1\377;Z\1" - "\3772M\1\335\20\30\1|\0\0\0E\0\0\0\37\0\0\0\11\0\0\0\1\206\0\0\0\0\5" - "\0\0\0\4\1\1\0\24+B\1\205T\203\1\370l\250\1\377\204m\251\1\377\3l\250" - "\1\377(>\1]\0\0\0\14\204\0\0\0\0\6\0\0\0\2\0\0\0\21\0\0\0:\21\31\1\177" - "Ek\1\363g\240\1\377\203h\242\1\377\35h\241\1\377[\216\1\377@b\2\251\25" - "\37\2\15\0\0\0\6\0\0\0\27\0\0\0=\10\13\0n-E\1\314;[\1\376Ek\1\377X\210" - "\1\377f\236\1\377U\203\1\3778U\1\377\14\23\1\211\13\21\1\201\27#\1\222" - "\31'\1\226\25\40\1\214\7\13\0u\0\0\0`\0\0\0L\0\0\0""4\0\0\0\36\0\0\0" - "\17""3P\1\27c\232\1ti\243\1\343\202j\245\1\377\15k\245\1\377j\244\1\377" - "j\245\1\377h\242\1\377R~\1\377=]\1\377:X\1\372%9\1\260\2\2\0_\0\0\0""6" - "\0\0\0\26\0\0\0\5\0\0\0\1\206\0\0\0\0\7\0\0\0\3)>\2(Ks\1\271d\233\1\377" - "i\244\1\377j\244\1\377j\245\1\377\203j\244\1\377\3i\243\1\377%9\1Z\0" - "\0\0\14\205\0\0\0\0\6\0\0\0\3\0\0\0\26\0\0\0B\25\40\1\212Dh\1\367c\231" - "\1\377\203e\235\1\377\17f\236\1\377^\222\1\377Ad\2\263\37/\2\23\0\0\0" - "\5\0\0\0\23\0\0\0""2\0\0\0Y\30%\1\2243N\1\336;[\1\376=^\1\377Ad\1\377" - "6S\1\377\20\30\1c\202\0\0\0""9\14\0\0\0;\0\0\0""7\0\0\0.\0\0\0#\0\0\0" - "\30\13\21\0\23W\207\2>d\233\1\225g\240\1\354g\237\1\377g\240\1\377g\237" - "\1\377\202g\240\1\377\12f\236\1\377V\205\1\377@c\1\377;[\1\3773N\1\335" - "\22\34\1\203\0\0\0L\0\0\0'\0\0\0\16\0\0\0\3\206\0\0\0\0\5\0\0\0\2\35" - ",\2\23Ho\2\204^\221\1\363g\240\1\377\206g\237\1\377\4f\237\1\377f\235" - "\1\377!3\1U\0\0\0\13\206\0\0\0\0\7\0\0\0\5\0\0\0\32\0\0\0E\26\"\1\215" - "\77b\1\365^\222\1\377c\231\1\377\203c\232\1\377\26b\231\1\377Gn\1\317" - "-D\2+\0\0\0\5\0\0\0\14\0\0\0\"\0\0\0A\0\0\0`\24\37\1\215*A\1\3036S\1" - "\352;[\1\376=^\1\177:Y\1=,D\2)-F\1(Fm\1""3Z\214\1Ja\227\1pd\233\1\242" - "e\235\1\341e\234\1\377\205d\233\1\377\13b\231\1\377T\202\1\377Ad\1\377" - "<\\\1\3778U\1\357\40""1\1\244\1\1\0^\0\0\0""9\0\0\0\31\0\0\0\7\0\0\0" - "\1\205\0\0\0\0\5\0\0\0\2\32'\2\17Kt\2q]\221\1\345f\236\1\377\203d\233" - "\1\377\1d\232\1\377\202d\233\1\377\1c\232\1\377\202d\233\1\377\3c\231" - "\1\377\36.\1R\0\0\0\13\207\0\0\0\0\6\0\0\0\5\0\0\0\33\0\0\0F\23\34\1" - "\207:Y\1\357W\206\1\377\204a\227\1\377\15e\235\1\377T\202\1\3619W\2l" - "\16\25\1\12\0\0\0\7\0\0\0\21\0\0\0$\0\0\0<\0\0\0S\0\0\0h&;\1\250b\231" - "\1\377f\236\1\377\202f\237\1\376\2e\234\1\377b\231\1\377\207b\230\1\377" - "\13[\215\1\377Mw\1\377\77a\1\377<\\\1\3778V\1\361%8\1\261\4\7\0k\0\0" - "\0F\0\0\0%\0\0\0\16\0\0\0\3\204\0\0\0\0\6\0\0\0\1\0\0\0\3+@\2\27R\177" - "\1y_\224\1\345e\235\1\377\204a\227\1\377\202b\227\1\377\202a\227\1\377" - "\1b\230\1\377\202a\227\1\377\3`\225\1\377\34*\1N\0\0\0\13\210\0\0\0\0" - "\7\0\0\0\6\0\0\0\32\0\0\0B\14\22\0y3N\1\340Ku\1\377_\223\1\377\203`\226" - "\1\377\14b\231\1\377b\230\1\377Nx\1\3122M\2J\10\14\1\10\0\0\0\6\0\0\0" - "\15\0\0\0\31\0\0\0""3(=\1\224`\224\1\377a\226\1\377\207a\227\1\377\16" - "_\224\1\377X\211\1\377Ny\1\377Cg\1\377=]\1\377<\\\1\3775R\1\346\"4\1" - "\253\5\7\0l\0\0\0K\0\0\0,\0\0\0\24\0\0\0\6\0\0\0\1\203\0\0\0\0\6\0\0" - "\0\1\5\7\0\5>`\2""2[\214\1\230c\231\1\361d\233\1\377\202`\226\1\377\206" - "a\226\1\377\203`\226\1\377\202`\225\1\377\3^\222\1\376\30$\1J\0\0\0\12" - "\211\0\0\0\0\10\0\0\0\5\0\0\0\26\0\0\0:\3\5\0h)\77\1\300@c\1\375V\205" - "\1\377a\226\1\377\203a\227\1\377\11d\234\1\377b\230\1\377T\202\1\316" - "=^\2n\"4\2\35\0\0\0\6\0\0\0\32+B\1\212W\207\1\377\202Z\214\1\377\7Y\212" - "\1\377W\210\1\377T\203\1\377P|\1\377Kt\1\377Di\1\377>`\1\377\202<]\1" - "\377\11""8V\1\357+B\1\305\25\40\1\217\0\1\0c\0\0\0H\0\0\0-\0\0\0\26\0" - "\0\0\10\0\0\0\2\202\0\0\0\0\10\0\0\0\1\0\0\0\4.G\2\36T\202\2ra\226\1" - "\310f\236\1\375c\232\1\377b\227\1\377\205a\227\1\377\2a\226\1\377`\226" - "\1\377\206`\225\1\377\4`\226\1\377]\221\1\375\24\35\1E\0\0\0\11\212\0" - "\0\0\0\11\0\0\0\3\0\0\0\21\0\0\0/\0\0\0W\27#\1\2246S\1\351Fl\1\377Y\212" - "\1\377b\230\1\377\203c\231\1\377\6c\232\1\377h\242\1\377`\225\1\373[" - "\215\1\315Nx\1\2402M\1\276\204=^\1\377\203<]\1\377\14;[\1\3727T\1\352" - "/I\1\321$8\1\262\22\33\1\212\1\1\0h\0\0\0S\0\0\0<\0\0\0%\0\0\0\24\0\0" - "\0\10\0\0\0\2\202\0\0\0\1\6\0\0\0\4&9\2\30Mx\2e_\223\1\274f\236\1\372" - "g\237\1\377\202c\232\1\377\203c\231\1\377\207b\230\1\377\1b\227\1\377" - "\205a\227\1\377\3]\221\1\374\20\30\1@\0\0\0\11\213\0\0\0\0\12\0\0\0\2" - "\0\0\0\13\0\0\0\"\0\0\0E\3\5\0l$7\1\2639X\1\363Fl\1\377V\206\1\377c\232" - "\1\377\205e\235\1\377\33X\210\1\3779X\1\377\36.\1\251\35,\1\243\37/\1" - "\247\36.\1\245\34+\1\237\27#\1\225\16\25\0\205\4\7\0s\0\0\0f\0\0\0Z\0" - "\0\0K\0\0\0:\0\0\0)\0\0\0\31\0\0\0\15\0\0\0\5\0\0\0\2\0\0\0\3\16\25\1" - "\10""4O\2""3R\177\1y_\224\1\277f\236\1\366k\246\1\377g\237\1\377\202" - "f\236\1\377\3e\235\1\377d\234\1\377e\235\1\377\203d\233\1\377\1c\232" - "\1\377\202d\233\1\377\203c\233\1\377\202d\233\1\377\1c\232\1\377\203" - "c\231\1\377\3^\222\1\373\14\21\1;\0\0\0\10\214\0\0\0\0'\0\0\0\1\0\0\0" - "\6\0\0\0\25\0\0\0/\0\0\0Q\6\11\0t%8\1\2657U\1\355\77b\1\377Lv\1\377Y" - "\213\1\377d\233\1\377i\242\1\377i\243\1\377Z\213\1\3778U\1\377\17\26" - "\1p\0\0\0I\0\0\0F\0\0\0E\0\0\0C\0\0\0>\0\0\0""7\0\0\0/\0\0\0&\0\0\0\34" - "\0\0\0\23\0\0\0\14\0\0\0\7\0\0\0\5\11\16\1\10,C\2-Gn\2dZ\213\2\241b\230" - "\1\342l\247\1\377m\251\1\377j\244\1\377i\244\1\377\202i\243\1\377\5h" - "\242\1\377h\241\1\377g\241\1\377g\240\1\377h\240\1\377\203g\240\1\377" - "\1g\237\1\377\203g\240\1\377\202g\237\1\377\203g\240\1\377\6g\237\1\377" - "f\236\1\377f\235\1\377`\224\1\371\10\13\0""7\0\0\0\10\216\0\0\0\0#\0" - "\0\0\2\0\0\0\12\0\0\0\32\0\0\0""3\0\0\0P\1\2\0k\31&\1\232-E\1\3149W\1" - "\362=_\1\377Cg\1\377Ku\1\377Lu\1\3778V\1\377\24\36\1S\0\0\0\27\0\0\0" - "\21\0\0\0\20\0\0\0\17\0\0\0\15\0\0\0\13\0\0\0\11\0\0\0\10\24\36\2\17" - ")>\2*=]\2TR~\2\205^\221\2\273d\233\2\356n\253\1\377q\261\1\377o\255\1" - "\377n\254\1\377n\253\1\377m\252\1\377\202m\251\1\377\203l\250\1\377\1" - "l\247\1\377\203k\247\1\377\2l\250\1\377k\247\1\377\207k\246\1\377\205" - "j\245\1\377\4j\244\1\377b\227\1\367\4\6\1""3\0\0\0\7\220\0\0\0\0\37\0" - "\0\0\3\0\0\0\12\0\0\0\31\0\0\0-\0\0\0D\0\0\0[\2\3\0o\22\34\1\216#6\1" - "\261-E\1\3143O\1\3409W\1\364Ek\2\255Hn\2\201Fl\2tGm\2vLu\2\200R\177\3" - "\216X\210\3\243]\220\3\273a\227\2\332g\237\2\364o\254\2\376u\266\2\377" - "u\265\1\377t\264\1\377t\263\1\377s\263\1\377s\262\1\377r\262\1\377r\261" - "\1\377\206q\260\1\377\202q\257\1\377\2p\257\1\377p\256\1\377\202p\257" - "\1\377\1q\257\1\377\202p\256\1\377\1o\255\1\377\203p\256\1\377\202o\255" - "\1\377\202o\254\1\377\1n\254\1\377\202n\253\1\377\3c\232\1\365\2\3\1" - "1\0\0\0\7\222\0\0\0\0\14\0\0\0\2\0\0\0\7\0\0\0\21\0\0\0\36\0\0\0.\0\0" - "\0>\0\0\0M\0\0\0Z\0\0\0h\"4\1\244q\257\3\377z\275\4\377\202z\276\4\377" - "\1z\275\4\377\202y\274\3\377\203x\273\2\377\2x\272\2\377w\272\2\377\202" - "w\272\1\377\204w\271\1\377\1v\271\1\377\207v\270\1\377\202v\267\1\377" - "\203u\267\1\377\1v\267\1\377\202u\266\1\377\3t\265\1\377u\266\1\377u" - "\265\1\377\202u\266\1\377\1t\265\1\377\202t\264\1\377\203s\263\1\377" - "\3f\236\1\364\2\3\1/\0\0\0\6\224\0\0\0\0\11\0\0\0\1\0\0\0\3\0\0\0\7\0" - "\0\0\15\0\0\0\24\0\0\0\35\0\0\0""1%9\1\222r\260\6\377\214}\300\7\377" - "\207|\277\6\377\2{\276\5\377|\277\6\377\206{\276\5\377\206z\275\4\377" - "\206y\274\3\377\203x\273\2\377\202x\272\2\377\3g\240\2\363\1\2\0.\0\0" - "\0\6\230\0\0\0\0\5\0\0\0\1\0\0\0\3\0\0\0\26(>\1\207t\261\10\377\221\201" - "\304\13\377\211\200\303\12\377\202\177\302\11\377\205~\301\10\377\202" - "}\300\7\377\203|\277\6\377\206}\300\7\377\3i\241\5\362\1\2\0-\0\0\0\6" - "\231\0\0\0\0\4\0\0\0\1\0\0\0\23)\77\1\205s\260\11\377\224\203\306\15" - "\377\207\202\305\14\377\3\201\304\13\377\200\303\12\377\201\304\13\377" - "\203\200\303\12\377\206\177\302\11\377\205\200\303\12\377\3h\237\6\361" - "\1\1\0,\0\0\0\6\231\0\0\0\0\4\0\0\0\1\0\0\0\23)@\1\204Y\211\4\377\202" - "a\224\5\377\2a\224\6\377`\223\6\377\202`\222\6\377\1a\224\6\377\202a" - "\225\6\377\24a\224\6\377`\223\6\377_\222\6\377_\221\6\377_\222\6\377" - "a\224\6\377a\225\6\377b\225\6\377b\226\6\377b\225\6\377b\226\6\377b\225" - "\6\377a\225\5\377a\224\5\377`\223\5\377`\222\5\377_\222\5\377^\221\5" - "\377^\220\5\377^\217\5\377\203]\217\5\377\2^\217\5\377^\220\5\377\204" - "_\222\4\377\4^\220\4\377]\217\5\377]\216\5\377\\\216\5\377\202\\\215" - "\4\377\3P{\3\361\1\1\0,\0\0\0\5\231\0\0\0\0\4\0\0\0\1\0\0\0\21\37/\1" - "f.G\1\301\212-E\1\311\1-D\1\311\203-E\1\311\4-D\1\311-E\1\311,D\1\311" - "-E\1\311\202,D\1\310\1,D\1\311\217,D\1\310\1,C\1\310\202,D\1\310\204" - ",C\1\310\4,D\1\306.F\1\256\0\1\0(\0\0\0\5\232\0\0\0\0\3\0\0\0\13\0\0" - "\0-\0\0\0O\253\0\0\0[\4\0\0\0W\0\0\0A\0\0\0\32\0\0\0\3\232\0\0\0\0\4" - "\0\0\0\3\0\0\0\16\0\0\0\31\0\0\0\34\211\0\0\0\35\241\0\0\0\34\4\0\0\0" - "\33\0\0\0\24\0\0\0\10\0\0\0\1\233\0\0\0\0\1\0\0\0\1\255\0\0\0\2\202\0" - "\0\0\1\377\0\0\0\0\377\0\0\0\0\377\0\0\0\0\377\0\0\0\0\377\0\0\0\0\377" - "\0\0\0\0\313\0\0\0\0", + 0xff,0x00,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0x00, + 0xff,0x00,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0x00, + 0xe6,0x00,0x00,0x00,0x00,0x96,0x00,0x00,0x00,0x01,0x97,0x00,0x00,0x00,0x02, + 0x82,0x00,0x00,0x00,0x01,0x9b,0x00,0x00,0x00,0x00,0x09,0x00,0x00,0x00,0x03, + 0x3c,0x5b,0x04,0x38,0xa4,0xd5,0x4a,0xa3,0xbb,0xea,0x64,0xa5,0xbb,0xea,0x65, + 0xa5,0xbb,0xea,0x65,0xa6,0xbd,0xea,0x6a,0xa6,0xbf,0xea,0x6e,0xa7,0xbf,0xea, + 0x6f,0xa7,0x82,0xbf,0xea,0x6f,0xa8,0x08,0xbf,0xea,0x70,0xa9,0xbf,0xeb,0x71, + 0xaa,0xc0,0xeb,0x71,0xaa,0xc0,0xeb,0x72,0xaa,0xc0,0xeb,0x72,0xab,0xc1,0xec, + 0x73,0xac,0xc1,0xec,0x72,0xad,0xc1,0xec,0x73,0xad,0x82,0xc2,0xec,0x74,0xae, + 0x0a,0xc2,0xec,0x73,0xb0,0xc2,0xec,0x73,0xb1,0xc3,0xed,0x74,0xb1,0xc3,0xed, + 0x76,0xb2,0xc3,0xec,0x76,0xb2,0xc3,0xec,0x76,0xb3,0xc3,0xec,0x77,0xb3,0xc3, + 0xec,0x78,0xb3,0xc4,0xed,0x79,0xb4,0xc3,0xec,0x78,0xb5,0x82,0xc4,0xec,0x79, + 0xb5,0x82,0xc4,0xec,0x79,0xb6,0x0f,0xc4,0xec,0x7a,0xb6,0xc4,0xec,0x79,0xb7, + 0xc4,0xec,0x7a,0xb7,0xc4,0xec,0x7a,0xb8,0xc3,0xec,0x79,0xb8,0xc3,0xec,0x79, + 0xb9,0xc4,0xec,0x79,0xb9,0xc4,0xed,0x79,0xba,0xc3,0xed,0x77,0xba,0xc2,0xed, + 0x74,0xbb,0xc3,0xed,0x74,0xbb,0xc2,0xee,0x73,0xbc,0x9f,0xcc,0x4e,0xb3,0x0e, + 0x14,0x01,0x0c,0x00,0x00,0x00,0x01,0x9a,0x00,0x00,0x00,0x00,0x03,0x00,0x00, + 0x00,0x0a,0x37,0x54,0x01,0x78,0xbc,0xe5,0x72,0xff,0x82,0xd9,0xff,0x95,0xff, + 0x06,0xd9,0xff,0x96,0xff,0xda,0xff,0x98,0xff,0xda,0xff,0x99,0xff,0xdb,0xff, + 0x99,0xff,0xda,0xff,0x99,0xff,0xdb,0xff,0x99,0xff,0x8d,0xdb,0xff,0x9a,0xff, + 0x04,0xdb,0xff,0x9b,0xff,0xdc,0xff,0x9b,0xff,0xdb,0xff,0x9b,0xff,0xdc,0xff, + 0x9b,0xff,0x82,0xdb,0xff,0x9b,0xff,0x83,0xdc,0xff,0x9d,0xff,0x83,0xdc,0xff, + 0x9c,0xff,0x83,0xdd,0xff,0x9e,0xff,0x82,0xdc,0xff,0x9d,0xff,0x83,0xdb,0xff, + 0x9a,0xff,0x06,0xda,0xff,0x99,0xff,0xda,0xff,0x98,0xff,0xd9,0xff,0x97,0xff, + 0xb0,0xd8,0x67,0xf8,0x0a,0x0f,0x01,0x21,0x00,0x00,0x00,0x04,0x99,0x00,0x00, + 0x00,0x00,0x07,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x11,0x31,0x4b,0x01,0x86, + 0xc1,0xe8,0x7a,0xff,0xdb,0xff,0x9b,0xff,0xdc,0xff,0x9c,0xff,0xdc,0xff,0x9b, + 0xff,0x86,0xdc,0xff,0x9c,0xff,0x86,0xdc,0xff,0x9d,0xff,0x02,0xdc,0xff,0x9e, + 0xff,0xdd,0xff,0x9e,0xff,0x82,0xdc,0xff,0x9e,0xff,0x02,0xdc,0xff,0x9d,0xff, + 0xdd,0xff,0x9e,0xff,0x84,0xdd,0xff,0x9f,0xff,0x01,0xdd,0xff,0x9e,0xff,0x87, + 0xdd,0xff,0x9f,0xff,0x01,0xdd,0xff,0xa0,0xff,0x84,0xdd,0xff,0x9f,0xff,0x01, + 0xdd,0xff,0x9e,0xff,0x83,0xdc,0xff,0x9d,0xff,0x05,0xdb,0xff,0x9b,0xff,0xdb, + 0xff,0x9a,0xff,0xb6,0xdc,0x70,0xf9,0x08,0x0c,0x00,0x31,0x00,0x00,0x00,0x06, + 0x99,0x00,0x00,0x00,0x00,0x05,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x14,0x2f, + 0x48,0x01,0x8a,0xc6,0xeb,0x81,0xff,0xdd,0xff,0x9f,0xff,0x86,0xdd,0xff,0xa0, + 0xff,0x82,0xdd,0xff,0xa1,0xff,0x02,0xde,0xff,0xa1,0xff,0xdd,0xff,0xa1,0xff, + 0x8a,0xde,0xff,0xa1,0xff,0x01,0xde,0xff,0xa2,0xff,0x82,0xde,0xff,0xa1,0xff, + 0x82,0xdd,0xff,0xa1,0xff,0x82,0xde,0xff,0xa2,0xff,0x82,0xde,0xff,0xa1,0xff, + 0x02,0xdd,0xff,0xa0,0xff,0xdd,0xff,0xa1,0xff,0x82,0xde,0xff,0xa3,0xff,0x03, + 0xde,0xff,0xa2,0xff,0xdd,0xff,0xa1,0xff,0xdd,0xff,0xa0,0xff,0x83,0xdd,0xff, + 0x9f,0xff,0x83,0xdd,0xff,0xa0,0xff,0x04,0xdd,0xff,0x9f,0xff,0xbd,0xe2,0x79, + 0xf9,0x08,0x0c,0x00,0x34,0x00,0x00,0x00,0x07,0x99,0x00,0x00,0x00,0x00,0x04, + 0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x14,0x2f,0x48,0x01,0x8b,0xca,0xed,0x89, + 0xff,0x86,0xde,0xff,0xa3,0xff,0x03,0xde,0xff,0xa4,0xff,0xde,0xff,0xa3,0xff, + 0xde,0xff,0xa4,0xff,0x83,0xdf,0xff,0xa4,0xff,0x8b,0xdf,0xff,0xa5,0xff,0x01, + 0xde,0xff,0xa4,0xff,0x82,0xdf,0xff,0xa4,0xff,0x03,0xdf,0xff,0xa6,0xff,0xdf, + 0xff,0xa4,0xff,0xde,0xff,0xa4,0xff,0x82,0xde,0xff,0xa3,0xff,0x02,0xde,0xff, + 0xa4,0xff,0xdf,0xff,0xa4,0xff,0x8b,0xde,0xff,0xa3,0xff,0x03,0xc3,0xe7,0x81, + 0xf9,0x08,0x0b,0x00,0x35,0x00,0x00,0x00,0x07,0x99,0x00,0x00,0x00,0x00,0x0c, + 0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x14,0x2d,0x45,0x01,0x8b,0x71,0x9b,0x25, + 0xff,0x79,0xa3,0x2c,0xff,0x7b,0xa7,0x2d,0xff,0x81,0xac,0x34,0xff,0x8a,0xb5, + 0x3e,0xff,0x97,0xc2,0x4b,0xff,0xa9,0xd2,0x5e,0xff,0xbf,0xe4,0x7a,0xff,0xd6, + 0xf8,0x99,0xff,0x86,0xe0,0xff,0xa8,0xff,0x01,0xe0,0xff,0xa9,0xff,0x83,0xe0, + 0xff,0xa8,0xff,0x83,0xe0,0xff,0xa9,0xff,0x88,0xe0,0xff,0xa8,0xff,0x01,0xe0, + 0xff,0xa7,0xff,0x83,0xe0,0xff,0xa8,0xff,0x02,0xe0,0xff,0xa7,0xff,0xdf,0xff, + 0xa6,0xff,0x84,0xdf,0xff,0xa5,0xff,0x01,0xde,0xff,0xa4,0xff,0x82,0xdf,0xff, + 0xa4,0xff,0x82,0xde,0xff,0xa4,0xff,0x03,0xc8,0xeb,0x88,0xfa,0x0b,0x10,0x00, + 0x37,0x00,0x00,0x00,0x07,0x96,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x01, + 0x01,0x02,0x00,0x03,0x52,0x73,0x0f,0x0c,0x8a,0xb2,0x39,0x29,0x68,0x8d,0x23, + 0x56,0x31,0x4a,0x05,0xa0,0x3c,0x5c,0x01,0xff,0x85,0x3b,0x5b,0x01,0xff,0x07, + 0x3c,0x5d,0x01,0xff,0x41,0x64,0x01,0xff,0x4a,0x71,0x03,0xff,0x66,0x90,0x1b, + 0xff,0x92,0xba,0x48,0xff,0xbd,0xe2,0x7b,0xff,0xde,0xfd,0xa5,0xff,0x82,0xe1, + 0xff,0xab,0xff,0x07,0xe1,0xff,0xac,0xff,0xe2,0xff,0xac,0xff,0xe1,0xff,0xab, + 0xff,0xe1,0xff,0xac,0xff,0xe2,0xff,0xac,0xff,0xe1,0xff,0xac,0xff,0xe2,0xff, + 0xac,0xff,0x85,0xe1,0xff,0xab,0xff,0x82,0xe1,0xff,0xaa,0xff,0x83,0xe0,0xff, + 0xa9,0xff,0x01,0xe1,0xff,0xa9,0xff,0x89,0xe0,0xff,0xa8,0xff,0x83,0xe0,0xff, + 0xa7,0xff,0x03,0xcd,0xee,0x8f,0xfc,0x10,0x19,0x00,0x3c,0x00,0x00,0x00,0x07, + 0x92,0x00,0x00,0x00,0x00,0x11,0x00,0x00,0x00,0x01,0x04,0x05,0x00,0x03,0x73, + 0x9a,0x26,0x19,0xb8,0xdc,0x6f,0x5b,0xca,0xec,0x88,0x98,0xd1,0xf2,0x91,0xce, + 0xd8,0xf9,0x9b,0xf4,0xe0,0xfe,0xa7,0xff,0x9f,0xc5,0x5a,0xff,0x3c,0x5c,0x01, + 0xff,0x34,0x50,0x01,0xe2,0x32,0x4d,0x01,0xdd,0x33,0x4e,0x01,0xdd,0x34,0x4f, + 0x01,0xe1,0x35,0x52,0x01,0xe9,0x38,0x56,0x01,0xf3,0x3b,0x5b,0x01,0xfd,0x82, + 0x3b,0x5b,0x01,0xff,0x82,0x3b,0x5a,0x01,0xff,0x04,0x40,0x63,0x01,0xff,0x57, + 0x7f,0x0f,0xff,0x90,0xb8,0x4a,0xff,0xcb,0xec,0x8e,0xff,0x8d,0xe2,0xff,0xad, + 0xff,0x82,0xe2,0xff,0xac,0xff,0x03,0xe1,0xff,0xab,0xff,0xe1,0xff,0xac,0xff, + 0xe1,0xff,0xab,0xff,0x83,0xe0,0xff,0xa9,0xff,0x89,0xe0,0xff,0xa8,0xff,0x03, + 0xd2,0xf3,0x95,0xfd,0x14,0x20,0x00,0x41,0x00,0x00,0x00,0x08,0x8f,0x00,0x00, + 0x00,0x00,0x07,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x03,0x83,0xa7,0x39,0x1e, + 0xc1,0xe3,0x7c,0x73,0xd0,0xf2,0x91,0xc4,0xdc,0xfc,0xa1,0xfb,0xe0,0xff,0xa9, + 0xff,0x83,0xe1,0xff,0xaa,0xff,0x14,0xd8,0xf7,0x9d,0xff,0x90,0xb6,0x4a,0xff, + 0x37,0x55,0x01,0xff,0x0b,0x11,0x01,0x79,0x00,0x00,0x00,0x5d,0x00,0x00,0x00, + 0x5a,0x00,0x00,0x00,0x5c,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0x64,0x04,0x06, + 0x00,0x70,0x14,0x1e,0x01,0x8a,0x23,0x35,0x01,0xac,0x2f,0x47,0x01,0xcf,0x38, + 0x56,0x01,0xf3,0x3b,0x5a,0x01,0xff,0x3a,0x59,0x01,0xff,0x3a,0x5a,0x01,0xff, + 0x43,0x67,0x01,0xff,0x75,0x9c,0x2e,0xff,0xbe,0xe0,0x7f,0xff,0x8b,0xe2,0xff, + 0xad,0xff,0x84,0xe2,0xff,0xac,0xff,0x01,0xe1,0xff,0xab,0xff,0x82,0xe1,0xff, + 0xaa,0xff,0x8a,0xe0,0xff,0xa8,0xff,0x03,0xd5,0xf6,0x99,0xfe,0x1b,0x2a,0x01, + 0x46,0x00,0x00,0x00,0x08,0x8d,0x00,0x00,0x00,0x00,0x1d,0x00,0x00,0x00,0x01, + 0x2f,0x40,0x0a,0x07,0xb1,0xd4,0x69,0x4c,0xce,0xef,0x8d,0xb3,0xdc,0xfc,0xa1, + 0xf9,0xe0,0xff,0xa8,0xff,0xe0,0xff,0xa9,0xff,0xdc,0xfb,0xa2,0xff,0xbb,0xdf, + 0x7a,0xff,0x96,0xbc,0x50,0xff,0x73,0x9b,0x2c,0xff,0x55,0x7c,0x0e,0xff,0x45, + 0x6a,0x03,0xff,0x40,0x63,0x01,0xff,0x38,0x56,0x01,0xff,0x12,0x1b,0x01,0x5a, + 0x03,0x05,0x00,0x27,0x01,0x02,0x00,0x20,0x00,0x00,0x00,0x20,0x00,0x00,0x00, + 0x22,0x00,0x00,0x00,0x25,0x00,0x00,0x00,0x2c,0x00,0x00,0x00,0x35,0x00,0x00, + 0x00,0x43,0x00,0x00,0x00,0x54,0x03,0x04,0x00,0x67,0x19,0x26,0x01,0x93,0x2d, + 0x45,0x01,0xca,0x39,0x57,0x01,0xf7,0x82,0x3a,0x59,0x01,0xff,0x03,0x3f,0x62, + 0x01,0xff,0x71,0x98,0x2c,0xff,0xc4,0xe5,0x88,0xff,0x85,0xe2,0xff,0xad,0xff, + 0x82,0xe2,0xff,0xac,0xff,0x02,0xe1,0xff,0xac,0xff,0xe1,0xff,0xab,0xff,0x82, + 0xe1,0xff,0xaa,0xff,0x03,0xe0,0xff,0xa9,0xff,0xe1,0xff,0xa9,0xff,0xe0,0xff, + 0xa9,0xff,0x88,0xe0,0xff,0xa8,0xff,0x02,0xe0,0xff,0xa7,0xff,0xdf,0xff,0xa6, + 0xff,0x82,0xdf,0xff,0xa5,0xff,0x03,0xd6,0xf8,0x99,0xff,0x21,0x32,0x02,0x4b, + 0x00,0x00,0x00,0x09,0x8b,0x00,0x00,0x00,0x00,0x0c,0x00,0x00,0x00,0x01,0x43, + 0x59,0x13,0x0a,0xbb,0xde,0x74,0x65,0xd2,0xf4,0x91,0xd5,0xdf,0xff,0xa5,0xff, + 0xdf,0xff,0xa6,0xff,0xdf,0xfe,0xa5,0xff,0xb8,0xdc,0x76,0xff,0x80,0xa7,0x39, + 0xff,0x4f,0x75,0x0a,0xff,0x40,0x62,0x01,0xff,0x3c,0x5c,0x01,0xff,0x84,0x3b, + 0x5b,0x01,0xff,0x16,0x41,0x63,0x02,0xff,0xcb,0xee,0x8a,0xf2,0xd5,0xf6,0x97, + 0xee,0xd3,0xf5,0x93,0xe6,0xcf,0xf1,0x8e,0xd4,0xc9,0xec,0x88,0xb4,0xbd,0xe1, + 0x79,0x88,0x99,0xc2,0x4e,0x51,0x30,0x47,0x08,0x18,0x00,0x00,0x00,0x12,0x00, + 0x00,0x00,0x19,0x00,0x00,0x00,0x27,0x00,0x00,0x00,0x3a,0x00,0x00,0x00,0x51, + 0x08,0x0c,0x01,0x70,0x25,0x39,0x01,0xb1,0x37,0x54,0x01,0xf0,0x3a,0x59,0x01, + 0xff,0x39,0x58,0x01,0xff,0x42,0x65,0x03,0xff,0x86,0xab,0x42,0xff,0xd8,0xf6, + 0x9f,0xff,0x82,0xe1,0xff,0xab,0xff,0x82,0xe0,0xff,0xa9,0xff,0x02,0xe0,0xff, + 0xa8,0xff,0xe0,0xff,0xa9,0xff,0x87,0xe0,0xff,0xa8,0xff,0x82,0xe0,0xff,0xa7, + 0xff,0x82,0xdf,0xff,0xa6,0xff,0x01,0xdf,0xff,0xa5,0xff,0x82,0xde,0xff,0xa4, + 0xff,0x84,0xde,0xff,0xa3,0xff,0x03,0xd8,0xfa,0x9b,0xff,0x28,0x3a,0x07,0x4f, + 0x00,0x00,0x00,0x0a,0x89,0x00,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x01,0x37, + 0x49,0x0f,0x09,0xbc,0xde,0x73,0x64,0xd4,0xf6,0x93,0xdf,0x82,0xde,0xff,0xa3, + 0xff,0x04,0xd9,0xfb,0x9c,0xff,0xa1,0xc7,0x5c,0xff,0x5c,0x83,0x15,0xff,0x3f, + 0x62,0x01,0xff,0x84,0x3b,0x5b,0x01,0xff,0x06,0x3a,0x5a,0x01,0xfb,0x34,0x50, + 0x01,0xe3,0x2d,0x45,0x01,0xc9,0x26,0x3a,0x01,0xb7,0x35,0x51,0x04,0xcd,0xda, + 0xfa,0x9e,0xff,0x86,0xe0,0xff,0xa7,0xff,0x0f,0xd5,0xf8,0x96,0xf4,0xc5,0xeb, + 0x80,0xac,0x9c,0xc7,0x4c,0x4e,0x13,0x1d,0x01,0x0c,0x00,0x00,0x00,0x0d,0x00, + 0x00,0x00,0x18,0x00,0x00,0x00,0x2b,0x00,0x00,0x00,0x46,0x04,0x06,0x00,0x66, + 0x25,0x38,0x01,0xae,0x37,0x55,0x01,0xf4,0x39,0x58,0x01,0xff,0x3a,0x59,0x01, + 0xff,0x51,0x76,0x10,0xff,0xb2,0xd5,0x72,0xff,0x82,0xe0,0xff,0xa8,0xff,0x82, + 0xe0,0xff,0xa7,0xff,0x01,0xdf,0xff,0xa6,0xff,0x82,0xdf,0xff,0xa5,0xff,0x82, + 0xde,0xff,0xa4,0xff,0x01,0xdf,0xff,0xa4,0xff,0x82,0xde,0xff,0xa4,0xff,0x85, + 0xde,0xff,0xa3,0xff,0x85,0xde,0xff,0xa2,0xff,0x04,0xde,0xff,0xa1,0xff,0xd9, + 0xfb,0x9a,0xff,0x2e,0x42,0x0a,0x53,0x00,0x00,0x00,0x0a,0x87,0x00,0x00,0x00, + 0x00,0x04,0x00,0x00,0x00,0x01,0x03,0x05,0x00,0x04,0xb0,0xd2,0x67,0x4a,0xd2, + 0xf5,0x8e,0xd2,0x82,0xdd,0xff,0x9f,0xff,0x05,0xdb,0xfe,0x9d,0xff,0xa7,0xcd, + 0x61,0xff,0x56,0x7d,0x11,0xff,0x3d,0x5e,0x01,0xff,0x3b,0x5a,0x01,0xff,0x82, + 0x3b,0x5b,0x01,0xff,0x0c,0x39,0x57,0x01,0xf3,0x2d,0x44,0x01,0xc6,0x1c,0x2b, + 0x01,0x97,0x06,0x09,0x00,0x6d,0x00,0x00,0x00,0x5a,0x00,0x00,0x00,0x4f,0x00, + 0x00,0x00,0x52,0x2f,0x47,0x06,0xa1,0xd6,0xf7,0x97,0xff,0xd8,0xf9,0x9a,0xff, + 0xd9,0xfa,0x9c,0xff,0xdd,0xfe,0xa1,0xff,0x85,0xde,0xff,0xa3,0xff,0x11,0xdd, + 0xfe,0xa1,0xff,0xca,0xf1,0x85,0xd6,0xa3,0xcf,0x53,0x5e,0x20,0x31,0x02,0x0a, + 0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x13,0x00,0x00,0x00,0x27,0x00,0x00,0x00, + 0x45,0x09,0x0e,0x01,0x6d,0x2c,0x43,0x01,0xc4,0x39,0x58,0x01,0xfd,0x39,0x58, + 0x01,0xff,0x3d,0x5f,0x02,0xff,0x83,0xa8,0x41,0xff,0xda,0xfb,0x9e,0xff,0xde, + 0xff,0xa3,0xff,0xde,0xff,0xa4,0xff,0x82,0xde,0xff,0xa3,0xff,0x04,0xde,0xff, + 0xa2,0xff,0xdd,0xff,0xa0,0xff,0xde,0xff,0xa1,0xff,0xde,0xff,0xa2,0xff,0x83, + 0xdd,0xff,0xa1,0xff,0x82,0xdd,0xff,0xa0,0xff,0x85,0xdd,0xff,0x9f,0xff,0x01, + 0xdc,0xff,0x9e,0xff,0x82,0xdc,0xff,0x9c,0xff,0x03,0xd9,0xfc,0x98,0xff,0x34, + 0x4a,0x0e,0x57,0x00,0x00,0x00,0x0b,0x86,0x00,0x00,0x00,0x00,0x1f,0x00,0x00, + 0x00,0x02,0x87,0xac,0x39,0x21,0xc4,0xef,0x71,0xad,0xd6,0xfe,0x8d,0xfe,0xd7, + 0xff,0x90,0xff,0xd8,0xff,0x91,0xff,0xc2,0xe9,0x7c,0xff,0x69,0x90,0x22,0xff, + 0x3e,0x5f,0x01,0xff,0x3a,0x5a,0x01,0xff,0x3b,0x5a,0x01,0xff,0x3b,0x5b,0x01, + 0xff,0x35,0x51,0x01,0xe1,0x20,0x31,0x01,0x9f,0x05,0x07,0x00,0x65,0x00,0x00, + 0x00,0x4c,0x00,0x00,0x00,0x38,0x00,0x00,0x00,0x28,0x00,0x00,0x00,0x1d,0x00, + 0x00,0x00,0x16,0x00,0x00,0x00,0x24,0x2b,0x41,0x01,0x90,0x47,0x6b,0x06,0xff, + 0x44,0x67,0x03,0xff,0x44,0x68,0x05,0xff,0x4c,0x70,0x0c,0xff,0x60,0x84,0x1f, + 0xff,0x81,0xa5,0x41,0xff,0xac,0xd0,0x6b,0xff,0xd6,0xfa,0x94,0xff,0xda,0xff, + 0x98,0xff,0x82,0xda,0xff,0x97,0xff,0x25,0xd9,0xfe,0x94,0xff,0xc0,0xed,0x6f, + 0xcb,0x86,0xb6,0x30,0x3d,0x00,0x00,0x00,0x05,0x00,0x00,0x00,0x07,0x00,0x00, + 0x00,0x13,0x00,0x00,0x00,0x2b,0x00,0x00,0x00,0x4d,0x19,0x26,0x01,0x8c,0x35, + 0x52,0x01,0xeb,0x39,0x58,0x01,0xff,0x3a,0x59,0x01,0xff,0x61,0x86,0x1f,0xff, + 0xcc,0xee,0x8c,0xff,0xdd,0xff,0xa0,0xff,0xdd,0xff,0x9f,0xff,0xdc,0xff,0x9d, + 0xff,0xdb,0xff,0x99,0xff,0xd9,0xff,0x93,0xff,0xdb,0xff,0x99,0xff,0xd9,0xff, + 0x95,0xff,0xd8,0xff,0x91,0xff,0xd7,0xff,0x90,0xff,0xd7,0xff,0x8e,0xff,0xd6, + 0xff,0x8c,0xff,0xd6,0xff,0x8d,0xff,0xd7,0xff,0x8f,0xff,0xd6,0xff,0x8e,0xff, + 0xd6,0xff,0x8b,0xff,0xd4,0xff,0x86,0xff,0xd1,0xff,0x7f,0xff,0xcf,0xff,0x79, + 0xff,0xd0,0xff,0x7b,0xff,0xd1,0xff,0x7e,0xff,0xd0,0xfd,0x7f,0xff,0x39,0x50, + 0x11,0x5b,0x00,0x00,0x00,0x0b,0x84,0x00,0x00,0x00,0x00,0x18,0x00,0x00,0x00, + 0x01,0x06,0x08,0x01,0x05,0xa8,0xdb,0x45,0x64,0xc4,0xfa,0x61,0xee,0xc9,0xff, + 0x69,0xff,0xca,0xff,0x6b,0xff,0xca,0xfe,0x6b,0xff,0x95,0xc3,0x40,0xff,0x46, + 0x6a,0x04,0xff,0x3a,0x5a,0x01,0xff,0x3a,0x59,0x01,0xff,0x3b,0x5a,0x01,0xff, + 0x36,0x52,0x01,0xe5,0x1d,0x2c,0x01,0x94,0x00,0x01,0x00,0x56,0x00,0x00,0x00, + 0x3b,0x00,0x00,0x00,0x24,0x00,0x00,0x00,0x15,0x00,0x00,0x00,0x0b,0x00,0x00, + 0x00,0x07,0x44,0x63,0x0a,0x10,0x93,0xc5,0x34,0x3b,0x61,0x89,0x19,0x6e,0x34, + 0x4c,0x08,0xaa,0x87,0x3b,0x5b,0x01,0xff,0x03,0x45,0x67,0x08,0xff,0x7f,0xa6, + 0x37,0xff,0xc0,0xee,0x6c,0xff,0x82,0xcf,0xff,0x78,0xff,0x0a,0xce,0xff,0x77, + 0xff,0xc8,0xfa,0x6d,0xfc,0xa3,0xd8,0x43,0x8c,0x33,0x4d,0x04,0x0d,0x00,0x00, + 0x00,0x03,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x19,0x00,0x00,0x00,0x38,0x08, + 0x0b,0x01,0x65,0x2e,0x46,0x02,0xcb,0x82,0x39,0x58,0x01,0xff,0x18,0x4d,0x70, + 0x0e,0xff,0xb7,0xdf,0x6e,0xff,0xd5,0xff,0x88,0xff,0xd3,0xff,0x83,0xff,0xd0, + 0xff,0x7c,0xff,0xd1,0xff,0x7d,0xff,0xd0,0xff,0x7a,0xff,0xce,0xff,0x75,0xff, + 0xcd,0xff,0x73,0xff,0xcd,0xff,0x72,0xff,0xcc,0xff,0x71,0xff,0xcb,0xff,0x6f, + 0xff,0xcb,0xff,0x6c,0xff,0xc9,0xff,0x69,0xff,0xc9,0xff,0x67,0xff,0xc7,0xff, + 0x62,0xff,0xc5,0xff,0x5e,0xff,0xc5,0xff,0x5d,0xff,0xc5,0xff,0x5c,0xff,0xc5, + 0xff,0x5e,0xff,0xc6,0xff,0x61,0xff,0xc6,0xfd,0x63,0xff,0x3c,0x56,0x0f,0x5f, + 0x00,0x00,0x00,0x0c,0x83,0x00,0x00,0x00,0x00,0x09,0x00,0x00,0x00,0x02,0x78, + 0xa5,0x22,0x1f,0xae,0xed,0x3b,0xb2,0xbb,0xfd,0x46,0xff,0xbd,0xfe,0x49,0xff, + 0xbe,0xfe,0x4b,0xff,0xba,0xf9,0x48,0xff,0x72,0xa1,0x1d,0xff,0x3d,0x5f,0x01, + 0xff,0x82,0x3a,0x59,0x01,0xff,0x1a,0x3a,0x58,0x01,0xf8,0x27,0x3b,0x01,0xaa, + 0x03,0x04,0x00,0x59,0x00,0x00,0x00,0x37,0x00,0x00,0x00,0x1d,0x00,0x00,0x00, + 0x0d,0x00,0x00,0x00,0x07,0x78,0xa7,0x1e,0x23,0xa7,0xe3,0x38,0x75,0xb4,0xf1, + 0x45,0xc0,0xbd,0xfa,0x4f,0xf5,0xc4,0xff,0x59,0xff,0x7d,0xad,0x26,0xff,0x39, + 0x58,0x01,0xff,0x30,0x49,0x01,0xd2,0x2b,0x42,0x01,0xc3,0x2a,0x41,0x01,0xc1, + 0x2c,0x44,0x01,0xc8,0x31,0x4c,0x01,0xd9,0x38,0x56,0x01,0xf1,0x3b,0x5b,0x01, + 0xff,0x3a,0x5a,0x01,0xff,0x3a,0x59,0x01,0xff,0x40,0x61,0x04,0xff,0x82,0xad, + 0x33,0xff,0xc2,0xfa,0x5e,0xff,0x82,0xc5,0xff,0x5e,0xff,0x03,0xc4,0xff,0x5b, + 0xff,0xac,0xe8,0x3f,0xc9,0x63,0x90,0x12,0x25,0x82,0x00,0x00,0x00,0x03,0x14, + 0x00,0x00,0x00,0x0e,0x00,0x00,0x00,0x28,0x01,0x01,0x00,0x50,0x25,0x38,0x02, + 0xa8,0x38,0x57,0x01,0xfc,0x38,0x57,0x01,0xff,0x42,0x64,0x05,0xff,0xa4,0xd3, + 0x4e,0xff,0xca,0xff,0x6b,0xff,0xc9,0xff,0x69,0xff,0xc8,0xff,0x65,0xff,0xc7, + 0xff,0x63,0xff,0xc5,0xff,0x5d,0xff,0xc2,0xff,0x56,0xff,0xc0,0xff,0x52,0xff, + 0xbf,0xff,0x4f,0xff,0xbf,0xfe,0x4d,0xff,0xbe,0xfe,0x4b,0xff,0xbc,0xfd,0x49, + 0xff,0xbb,0xfd,0x46,0xff,0x82,0xbb,0xfd,0x45,0xff,0x07,0xba,0xfd,0x45,0xff, + 0xba,0xfd,0x44,0xff,0xbb,0xfd,0x46,0xff,0xbc,0xfd,0x48,0xff,0xbb,0xfc,0x47, + 0xff,0x3e,0x5a,0x0c,0x62,0x00,0x00,0x00,0x0c,0x82,0x00,0x00,0x00,0x00,0x04, + 0x00,0x00,0x00,0x04,0x91,0xc9,0x2a,0x4e,0xae,0xf0,0x39,0xea,0xb3,0xf6,0x3d, + 0xff,0x82,0xb4,0xf7,0x3e,0xff,0x03,0xad,0xee,0x3a,0xff,0x5d,0x8a,0x0e,0xff, + 0x3b,0x5b,0x01,0xff,0x82,0x3a,0x59,0x01,0xff,0x09,0x35,0x51,0x01,0xe1,0x13, + 0x1d,0x01,0x76,0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x1f,0x00,0x00,0x00,0x0d, + 0x08,0x0c,0x01,0x08,0x8d,0xc5,0x26,0x44,0xaa,0xea,0x37,0xb3,0xb5,0xf8,0x3f, + 0xfa,0x82,0xb8,0xfb,0x42,0xff,0x0d,0xb9,0xfc,0x43,0xff,0xb3,0xf5,0x3f,0xff, + 0x72,0xa4,0x19,0xff,0x36,0x53,0x01,0xff,0x0d,0x13,0x01,0x72,0x00,0x00,0x00, + 0x4f,0x00,0x00,0x00,0x4b,0x00,0x00,0x00,0x4f,0x00,0x00,0x00,0x58,0x01,0x02, + 0x00,0x65,0x13,0x1d,0x01,0x88,0x29,0x3f,0x01,0xbd,0x38,0x55,0x01,0xf3,0x82, + 0x39,0x58,0x01,0xff,0x16,0x53,0x79,0x0d,0xff,0xa7,0xe4,0x3a,0xff,0xb9,0xfc, + 0x44,0xff,0xb9,0xfc,0x43,0xff,0xb9,0xfc,0x44,0xff,0xab,0xec,0x38,0xe6,0x71, + 0xa3,0x17,0x3c,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x08, + 0x00,0x00,0x00,0x1d,0x00,0x00,0x00,0x43,0x1c,0x2b,0x01,0x8e,0x37,0x55,0x01, + 0xf6,0x38,0x57,0x01,0xff,0x3f,0x60,0x03,0xff,0x99,0xcd,0x39,0xff,0xbe,0xfd, + 0x4c,0xff,0xbb,0xfc,0x48,0xff,0xb9,0xfb,0x43,0xff,0xb7,0xfa,0x41,0xff,0xb6, + 0xf9,0x40,0xff,0x82,0xb5,0xf8,0x3f,0xff,0x82,0xb4,0xf7,0x3e,0xff,0x01,0xb3, + 0xf6,0x3d,0xff,0x82,0xb4,0xf7,0x3e,0xff,0x85,0xb3,0xf6,0x3d,0xff,0x07,0xb4, + 0xf7,0x3d,0xff,0x41,0x5e,0x0d,0x65,0x00,0x00,0x00,0x0d,0x00,0x00,0x00,0x01, + 0x23,0x31,0x06,0x09,0x99,0xd5,0x2a,0x83,0xaa,0xed,0x34,0xfd,0x83,0xac,0xef, + 0x36,0xff,0x23,0xa4,0xe5,0x32,0xff,0x55,0x7e,0x0a,0xff,0x3a,0x59,0x01,0xff, + 0x39,0x58,0x01,0xff,0x3a,0x59,0x01,0xff,0x2f,0x48,0x02,0xc5,0x05,0x08,0x01, + 0x57,0x00,0x00,0x00,0x2c,0x00,0x00,0x00,0x11,0x00,0x00,0x00,0x08,0x81,0xb6, + 0x1f,0x38,0xa3,0xe3,0x30,0xbf,0xae,0xf1,0x38,0xff,0xaf,0xf2,0x39,0xff,0xb0, + 0xf3,0x3a,0xff,0x96,0xd2,0x2c,0xff,0x6b,0x9b,0x17,0xff,0x4b,0x71,0x07,0xff, + 0x3e,0x5f,0x01,0xff,0x3d,0x5f,0x01,0xff,0x36,0x52,0x01,0xff,0x12,0x1a,0x01, + 0x51,0x00,0x00,0x00,0x19,0x00,0x00,0x00,0x13,0x00,0x00,0x00,0x15,0x00,0x00, + 0x00,0x1b,0x00,0x00,0x00,0x25,0x00,0x00,0x00,0x35,0x00,0x00,0x00,0x4b,0x06, + 0x08,0x01,0x6a,0x26,0x3a,0x01,0xb4,0x38,0x56,0x01,0xf8,0x38,0x57,0x01,0xff, + 0x41,0x63,0x04,0xff,0x93,0xce,0x2c,0xff,0x83,0xb1,0xf4,0x3b,0xff,0x0c,0xa8, + 0xe9,0x33,0xf1,0x73,0xa7,0x17,0x49,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x01, + 0x00,0x00,0x00,0x05,0x00,0x00,0x00,0x16,0x00,0x00,0x00,0x3a,0x16,0x22,0x01, + 0x7e,0x36,0x54,0x01,0xf1,0x38,0x57,0x01,0xff,0x3e,0x5f,0x03,0xff,0x92,0xcd, + 0x2b,0xff,0x82,0xb0,0xf3,0x3a,0xff,0x03,0xaf,0xf2,0x39,0xff,0xae,0xf1,0x38, + 0xff,0xad,0xf0,0x37,0xff,0x82,0xac,0xef,0x36,0xff,0x82,0xad,0xf0,0x37,0xff, + 0x86,0xac,0xef,0x36,0xff,0x07,0xad,0xf0,0x37,0xff,0xad,0xf0,0x36,0xff,0x42, + 0x5f,0x0d,0x67,0x00,0x00,0x00,0x0d,0x57,0x7a,0x12,0x15,0x9a,0xd9,0x27,0xb6, + 0xa3,0xe6,0x2d,0xff,0x83,0xa4,0xe7,0x2e,0xff,0x11,0x9f,0xe1,0x2c,0xff,0x54, + 0x7d,0x0a,0xff,0x39,0x59,0x01,0xff,0x39,0x58,0x01,0xff,0x39,0x58,0x01,0xfe, + 0x2b,0x41,0x02,0xb1,0x01,0x01,0x00,0x48,0x00,0x00,0x00,0x20,0x00,0x00,0x00, + 0x0b,0x45,0x64,0x0c,0x12,0x94,0xd2,0x24,0x92,0xa5,0xe7,0x2f,0xfb,0xa7,0xea, + 0x31,0xff,0xa8,0xeb,0x32,0xff,0x98,0xd6,0x2a,0xff,0x5b,0x86,0x0e,0xff,0x3d, + 0x5d,0x01,0xff,0x84,0x3b,0x5b,0x01,0xff,0x04,0x3f,0x61,0x02,0xff,0x71,0xa4, + 0x17,0x92,0x62,0x92,0x0d,0x30,0x04,0x05,0x01,0x04,0x82,0x00,0x00,0x00,0x02, + 0x1a,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x0a,0x00,0x00,0x00,0x15,0x00,0x00, + 0x00,0x2a,0x00,0x00,0x00,0x49,0x0f,0x17,0x01,0x79,0x32,0x4d,0x01,0xdd,0x38, + 0x57,0x01,0xff,0x3d,0x5d,0x02,0xff,0x8c,0xc7,0x25,0xff,0xa9,0xec,0x33,0xff, + 0xa8,0xeb,0x32,0xff,0xa9,0xec,0x33,0xff,0xa0,0xe2,0x2c,0xf4,0x6c,0x9e,0x12, + 0x47,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00, + 0x00,0x12,0x00,0x00,0x00,0x34,0x14,0x1e,0x01,0x77,0x36,0x54,0x01,0xf1,0x38, + 0x57,0x01,0xff,0x40,0x61,0x03,0xff,0x94,0xd1,0x28,0xff,0xa8,0xeb,0x32,0xff, + 0x82,0xa6,0xe9,0x30,0xff,0x83,0xa5,0xe8,0x2f,0xff,0x02,0xa6,0xe9,0x30,0xff, + 0xa5,0xe8,0x2f,0xff,0x83,0xa4,0xe7,0x2e,0xff,0x82,0xa5,0xe8,0x2f,0xff,0x06, + 0xa6,0xe9,0x30,0xff,0xa5,0xe8,0x2f,0xff,0xa4,0xe7,0x2e,0xff,0x43,0x61,0x0c, + 0x69,0x00,0x00,0x00,0x0d,0x96,0xd7,0x22,0xd1,0x82,0x9c,0xdf,0x26,0xff,0x01, + 0x9c,0xe0,0x27,0xff,0x82,0x9d,0xe0,0x27,0xff,0x02,0x5d,0x8a,0x0d,0xff,0x39, + 0x59,0x01,0xff,0x82,0x39,0x58,0x01,0xff,0x06,0x29,0x3f,0x02,0xaa,0x00,0x00, + 0x00,0x40,0x00,0x00,0x00,0x19,0x00,0x00,0x00,0x09,0x6e,0xa1,0x15,0x30,0x97, + 0xd9,0x24,0xd5,0x82,0x9f,0xe2,0x29,0xff,0x04,0x9f,0xe3,0x29,0xff,0x7d,0xb4, + 0x1b,0xff,0x41,0x63,0x03,0xff,0x3a,0x5a,0x01,0xff,0x82,0x3b,0x5b,0x01,0xff, + 0x09,0x37,0x55,0x01,0xed,0x2d,0x44,0x01,0xc8,0x25,0x38,0x01,0xb4,0x3b,0x5b, + 0x04,0xcf,0xa0,0xe3,0x2a,0xff,0x9e,0xe0,0x28,0xfd,0x8f,0xcf,0x1d,0xb7,0x5c, + 0x8a,0x08,0x28,0x00,0x00,0x00,0x03,0x82,0x00,0x00,0x00,0x00,0x09,0x00,0x00, + 0x00,0x02,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x16,0x00,0x00,0x00,0x33,0x03, + 0x05,0x00,0x5d,0x2c,0x43,0x01,0xc4,0x38,0x57,0x01,0xff,0x3f,0x60,0x03,0xff, + 0x93,0xd1,0x24,0xff,0x82,0xa1,0xe4,0x2b,0xff,0x0d,0xa0,0xe3,0x2a,0xff,0x98, + 0xd9,0x25,0xef,0x47,0x6d,0x05,0x35,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x10,0x00,0x00,0x00,0x32,0x16,0x21,0x01, + 0x79,0x37,0x55,0x01,0xf5,0x38,0x57,0x01,0xff,0x4d,0x74,0x07,0xff,0x9e,0xe1, + 0x28,0xff,0x84,0x9f,0xe2,0x29,0xff,0x85,0x9e,0xe1,0x28,0xff,0x82,0x9f,0xe2, + 0x29,0xff,0x08,0x9e,0xe1,0x28,0xff,0x9c,0xdf,0x26,0xff,0x9d,0xe0,0x27,0xff, + 0x9d,0xe1,0x27,0xff,0x42,0x61,0x0a,0x6b,0x00,0x00,0x00,0x0d,0x92,0xd4,0x1d, + 0xff,0x95,0xd8,0x1f,0xff,0x83,0x96,0xd9,0x20,0xff,0x0a,0x8a,0xc9,0x1a,0xff, + 0x3d,0x5e,0x01,0xff,0x38,0x57,0x01,0xff,0x39,0x58,0x01,0xff,0x2c,0x43,0x02, + 0xb3,0x00,0x01,0x00,0x3e,0x00,0x00,0x00,0x16,0x00,0x00,0x00,0x08,0x78,0xaf, + 0x16,0x4d,0x94,0xd7,0x20,0xf0,0x82,0x98,0xdb,0x22,0xff,0x0c,0x99,0xdc,0x23, + 0xff,0x6e,0xa1,0x12,0xff,0x3b,0x5b,0x01,0xff,0x3a,0x59,0x01,0xff,0x3a,0x5a, + 0x01,0xff,0x36,0x54,0x01,0xe8,0x1e,0x2e,0x01,0x99,0x01,0x02,0x00,0x60,0x00, + 0x00,0x00,0x4f,0x00,0x00,0x00,0x51,0x33,0x4e,0x04,0x9f,0x98,0xdb,0x22,0xff, + 0x82,0x99,0xdc,0x23,0xff,0x04,0x8d,0xcd,0x1b,0xef,0x52,0x7d,0x05,0x57,0x00, + 0x00,0x00,0x06,0x00,0x00,0x00,0x01,0x82,0x00,0x00,0x00,0x00,0x16,0x00,0x00, + 0x00,0x02,0x00,0x00,0x00,0x0c,0x00,0x00,0x00,0x26,0x01,0x01,0x00,0x51,0x2b, + 0x41,0x01,0xbd,0x63,0x94,0x0b,0xff,0x96,0xd9,0x21,0xff,0x9a,0xdd,0x24,0xff, + 0x9a,0xdd,0x23,0xff,0x99,0xdc,0x23,0xff,0x76,0xae,0x15,0xff,0x39,0x56,0x03, + 0xd0,0x0d,0x12,0x04,0x12,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00, + 0x00,0x02,0x00,0x00,0x00,0x0f,0x00,0x00,0x00,0x34,0x1a,0x28,0x01,0x85,0x3d, + 0x5f,0x01,0xfa,0x81,0xbe,0x15,0xff,0x98,0xdb,0x22,0xff,0x83,0x99,0xdc,0x23, + 0xff,0x82,0x98,0xdb,0x22,0xff,0x01,0x97,0xda,0x21,0xff,0x84,0x98,0xdb,0x22, + 0xff,0x01,0x97,0xda,0x21,0xff,0x82,0x96,0xd9,0x20,0xff,0x05,0x95,0xd8,0x1f, + 0xff,0x97,0xda,0x21,0xff,0x41,0x61,0x09,0x6c,0x00,0x00,0x00,0x0e,0x70,0xa5, + 0x11,0xd7,0x82,0x90,0xd3,0x1a,0xff,0x01,0x8f,0xd2,0x19,0xff,0x82,0x90,0xd3, + 0x1a,0xff,0x08,0x55,0x83,0x04,0xff,0x37,0x55,0x01,0xff,0x31,0x4b,0x02,0xcf, + 0x02,0x02,0x00,0x42,0x00,0x00,0x00,0x16,0x00,0x00,0x00,0x05,0x01,0x01,0x00, + 0x10,0x7c,0xb6,0x15,0xdc,0x83,0x92,0xd5,0x1c,0xff,0x0c,0x81,0xbe,0x15,0xff, + 0x3a,0x5a,0x01,0xff,0x39,0x58,0x01,0xff,0x3a,0x59,0x01,0xff,0x2d,0x44,0x01, + 0xbf,0x05,0x07,0x00,0x5e,0x00,0x00,0x00,0x3a,0x00,0x00,0x00,0x22,0x00,0x00, + 0x00,0x16,0x00,0x00,0x00,0x24,0x37,0x54,0x04,0x90,0x92,0xd5,0x1c,0xff,0x83, + 0x93,0xd6,0x1d,0xff,0x03,0x7d,0xba,0x11,0xfb,0x3e,0x5f,0x02,0x5c,0x00,0x00, + 0x00,0x06,0x83,0x00,0x00,0x00,0x00,0x05,0x00,0x00,0x00,0x01,0x00,0x00,0x00, + 0x0a,0x19,0x26,0x01,0x33,0x72,0xa9,0x10,0xca,0x92,0xd5,0x1c,0xff,0x83,0x93, + 0xd6,0x1d,0xff,0x05,0x7f,0xba,0x15,0xff,0x3e,0x5f,0x01,0xff,0x37,0x54,0x01, + 0xf2,0x19,0x25,0x01,0x34,0x00,0x00,0x00,0x05,0x82,0x00,0x00,0x00,0x00,0x07, + 0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x16,0x27,0x3c,0x01,0x6c,0x78,0xb3,0x10, + 0xf9,0x91,0xd4,0x1b,0xff,0x92,0xd5,0x1c,0xff,0x93,0xd6,0x1d,0xff,0x82,0x92, + 0xd5,0x1c,0xff,0x82,0x91,0xd4,0x1b,0xff,0x83,0x92,0xd5,0x1c,0xff,0x83,0x91, + 0xd4,0x1b,0xff,0x83,0x90,0xd3,0x1a,0xff,0x05,0x91,0xd4,0x1b,0xff,0x40,0x5f, + 0x07,0x6d,0x00,0x00,0x00,0x0e,0x34,0x4e,0x05,0x88,0x89,0xcb,0x14,0xff,0x83, + 0x8a,0xcd,0x14,0xff,0x09,0x8b,0xce,0x15,0xff,0x72,0xac,0x0b,0xff,0x41,0x65, + 0x01,0xff,0x2c,0x43,0x01,0xb8,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x05,0x00, + 0x00,0x00,0x03,0x00,0x00,0x00,0x1e,0x52,0x7b,0x09,0xb0,0x82,0x8c,0xcf,0x16, + 0xff,0x0d,0x8b,0xce,0x15,0xff,0x88,0xca,0x14,0xff,0x45,0x6b,0x01,0xff,0x38, + 0x56,0x01,0xfe,0x27,0x3b,0x02,0xa9,0x00,0x00,0x00,0x48,0x00,0x00,0x00,0x23, + 0x00,0x00,0x00,0x0d,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x02,0x00,0x00,0x00, + 0x16,0x38,0x55,0x03,0x8a,0x8d,0xcf,0x17,0xff,0x84,0x8d,0xd0,0x17,0xff,0x03, + 0x65,0x9a,0x07,0xf1,0x29,0x3e,0x02,0x34,0x00,0x00,0x00,0x04,0x82,0x00,0x00, + 0x00,0x00,0x04,0x00,0x00,0x00,0x02,0x51,0x7b,0x05,0x27,0x81,0xc0,0x11,0xd1, + 0x8c,0xcf,0x16,0xff,0x82,0x8d,0xd0,0x17,0xff,0x07,0x8e,0xd1,0x18,0xff,0x7f, + 0xbd,0x12,0xff,0x43,0x66,0x02,0xff,0x38,0x56,0x01,0xfd,0x1f,0x30,0x01,0x88, + 0x00,0x00,0x00,0x24,0x00,0x00,0x00,0x05,0x82,0x00,0x00,0x00,0x00,0x03,0x00, + 0x00,0x00,0x04,0x37,0x55,0x02,0x3d,0x74,0xaf,0x0c,0xee,0x83,0x8c,0xcf,0x16, + 0xff,0x83,0x8d,0xd0,0x17,0xff,0x01,0x8c,0xcf,0x16,0xff,0x82,0x8d,0xd0,0x17, + 0xff,0x04,0x8b,0xce,0x15,0xff,0x8c,0xcf,0x16,0xff,0x8b,0xce,0x15,0xff,0x8c, + 0xcf,0x15,0xff,0x82,0x8b,0xce,0x15,0xff,0x01,0x8a,0xcd,0x14,0xff,0x82,0x8b, + 0xce,0x15,0xff,0x06,0x3f,0x5e,0x06,0x6d,0x00,0x00,0x00,0x0e,0x01,0x02,0x00, + 0x46,0x69,0x9e,0x0b,0xde,0x86,0xc9,0x10,0xff,0x86,0xc9,0x0f,0xff,0x82,0x86, + 0xc9,0x10,0xff,0x09,0x82,0xc4,0x0e,0xff,0x52,0x7f,0x01,0xff,0x39,0x58,0x01, + 0xf7,0x16,0x20,0x02,0x27,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x03,0x00,0x00, + 0x00,0x1e,0x1e,0x2d,0x01,0x7b,0x7b,0xb8,0x0e,0xff,0x83,0x87,0xca,0x11,0xff, + 0x0b,0x64,0x99,0x06,0xff,0x35,0x51,0x01,0xf7,0x07,0x0b,0x01,0x4f,0x00,0x00, + 0x00,0x1a,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00, + 0x00,0x00,0x01,0x00,0x00,0x00,0x16,0x37,0x53,0x03,0x8b,0x88,0xca,0x12,0xff, + 0x84,0x88,0xcb,0x12,0xff,0x07,0x82,0xc4,0x0f,0xff,0x4d,0x77,0x02,0xc4,0x04, + 0x06,0x01,0x10,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x04,0x60,0x91,0x06,0x3e, + 0x81,0xc2,0x0f,0xe6,0x83,0x88,0xcb,0x12,0xff,0x0c,0x89,0xcc,0x13,0xff,0x7d, + 0xbc,0x0f,0xff,0x44,0x69,0x02,0xff,0x38,0x57,0x01,0xff,0x26,0x3a,0x01,0xaa, + 0x00,0x00,0x00,0x3f,0x00,0x00,0x00,0x13,0x00,0x00,0x00,0x02,0x00,0x00,0x00, + 0x00,0x00,0x00,0x00,0x04,0x3e,0x5f,0x02,0x36,0x74,0xb0,0x0a,0xe8,0x82,0x88, + 0xcb,0x12,0xff,0x82,0x87,0xca,0x11,0xff,0x01,0x88,0xcb,0x12,0xff,0x83,0x89, + 0xcc,0x13,0xff,0x01,0x87,0xca,0x12,0xff,0x83,0x87,0xca,0x11,0xff,0x02,0x86, + 0xc9,0x10,0xff,0x87,0xca,0x11,0xff,0x82,0x86,0xc9,0x10,0xff,0x83,0x87,0xca, + 0x11,0xff,0x05,0x3d,0x5d,0x05,0x6d,0x00,0x00,0x00,0x0e,0x00,0x00,0x00,0x29, + 0x2b,0x42,0x03,0x87,0x7f,0xc0,0x0b,0xfe,0x84,0x82,0xc5,0x0c,0xff,0x0f,0x6a, + 0xa2,0x05,0xff,0x48,0x6f,0x01,0xff,0x33,0x4d,0x02,0x83,0x00,0x00,0x00,0x07, + 0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x13,0x02,0x02,0x00,0x49,0x52,0x7d,0x05, + 0xe4,0x84,0xc7,0x0d,0xff,0x83,0xc6,0x0d,0xff,0x84,0xc6,0x0e,0xff,0x7b,0xbb, + 0x0b,0xff,0x46,0x6b,0x01,0xff,0x28,0x3d,0x02,0x7b,0x00,0x00,0x00,0x0b,0x83, + 0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x16,0x36,0x52, + 0x02,0x8a,0x82,0x84,0xc7,0x0e,0xff,0x01,0x83,0xc6,0x0d,0xff,0x83,0x84,0xc7, + 0x0e,0xff,0x06,0x6f,0xaa,0x07,0xff,0x3b,0x5a,0x02,0x6c,0x00,0x00,0x00,0x0c, + 0x68,0x9e,0x06,0x5d,0x81,0xc2,0x0c,0xf5,0x85,0xc8,0x0f,0xff,0x82,0x84,0xc7, + 0x0e,0xff,0x0d,0x85,0xc8,0x0f,0xff,0x79,0xb6,0x0c,0xff,0x45,0x6a,0x02,0xff, + 0x38,0x57,0x01,0xff,0x2b,0x42,0x01,0xbd,0x01,0x01,0x00,0x49,0x00,0x00,0x00, + 0x1a,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x04,0x44,0x68, + 0x02,0x39,0x73,0xb0,0x08,0xe8,0x83,0xc6,0x0d,0xff,0x84,0x84,0xc7,0x0e,0xff, + 0x03,0x83,0xc5,0x0e,0xff,0x6b,0xa1,0x09,0xff,0x83,0xc6,0x0e,0xff,0x84,0x84, + 0xc7,0x0e,0xff,0x88,0x83,0xc6,0x0d,0xff,0x05,0x3c,0x5b,0x04,0x6d,0x00,0x00, + 0x00,0x0e,0x00,0x00,0x00,0x14,0x00,0x01,0x00,0x46,0x59,0x88,0x06,0xd1,0x84, + 0x7f,0xc2,0x09,0xff,0x0a,0x7c,0xbd,0x08,0xff,0x56,0x86,0x01,0xff,0x43,0x67, + 0x01,0xe8,0x18,0x23,0x02,0x1b,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x09,0x00, + 0x00,0x00,0x30,0x24,0x37,0x01,0x9b,0x71,0xad,0x07,0xff,0x7f,0xc2,0x09,0xff, + 0x82,0x80,0xc3,0x0a,0xff,0x04,0x64,0x9a,0x03,0xff,0x39,0x58,0x01,0xdc,0x08, + 0x0b,0x01,0x15,0x00,0x00,0x00,0x01,0x82,0x00,0x00,0x00,0x00,0x04,0x00,0x00, + 0x00,0x01,0x00,0x00,0x00,0x16,0x35,0x51,0x02,0x8a,0x80,0xc3,0x0a,0xff,0x84, + 0x81,0xc4,0x0b,0xff,0x82,0x80,0xc3,0x0a,0xff,0x03,0x5b,0x8d,0x02,0xea,0x65, + 0x9c,0x05,0x93,0x7f,0xc1,0x0a,0xfc,0x84,0x81,0xc4,0x0b,0xff,0x0e,0x73,0xae, + 0x09,0xff,0x42,0x66,0x02,0xff,0x38,0x58,0x01,0xff,0x2d,0x45,0x01,0xc5,0x02, + 0x03,0x00,0x4f,0x00,0x00,0x00,0x1f,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x01, + 0x00,0x00,0x00,0x05,0x4a,0x72,0x02,0x3d,0x74,0xb1,0x06,0xea,0x81,0xc4,0x0b, + 0xff,0x80,0xc3,0x0a,0xff,0x81,0xc4,0x0b,0xff,0x82,0x80,0xc3,0x0a,0xff,0x06, + 0x7d,0xbd,0x0b,0xff,0x4e,0x77,0x04,0xff,0x3c,0x5c,0x01,0xff,0x4b,0x74,0x03, + 0xff,0x73,0xaf,0x09,0xff,0x81,0xc5,0x0b,0xff,0x83,0x81,0xc4,0x0b,0xff,0x05, + 0x80,0xc3,0x0a,0xff,0x7f,0xc2,0x09,0xff,0x80,0xc3,0x0a,0xff,0x81,0xc4,0x0b, + 0xff,0x81,0xc3,0x0b,0xff,0x82,0x7f,0xc2,0x09,0xff,0x06,0x39,0x58,0x03,0x6c, + 0x00,0x00,0x00,0x0e,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x28,0x14,0x1e,0x01, + 0x73,0x72,0xaf,0x06,0xf9,0x84,0x7c,0xbf,0x06,0xff,0x09,0x6c,0xa7,0x04,0xff, + 0x50,0x7c,0x01,0xff,0x3e,0x60,0x02,0x84,0x00,0x00,0x00,0x07,0x00,0x00,0x00, + 0x03,0x00,0x00,0x00,0x1a,0x03,0x04,0x00,0x52,0x44,0x68,0x02,0xe8,0x7b,0xbd, + 0x07,0xff,0x82,0x7d,0xc0,0x07,0xff,0x04,0x79,0xbb,0x06,0xff,0x53,0x81,0x01, + 0xff,0x30,0x49,0x02,0x77,0x00,0x00,0x00,0x07,0x82,0x00,0x00,0x00,0x00,0x06, + 0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x16,0x35,0x51,0x02,0x8a,0x7d,0xc0,0x08, + 0xff,0x7e,0xc1,0x08,0xff,0x7d,0xc0,0x07,0xff,0x84,0x7e,0xc1,0x08,0xff,0x02, + 0x7b,0xbd,0x07,0xff,0x7e,0xc0,0x08,0xff,0x84,0x7e,0xc1,0x08,0xff,0x0c,0x68, + 0xa0,0x05,0xff,0x3f,0x60,0x01,0xff,0x39,0x58,0x01,0xff,0x2d,0x45,0x01,0xc5, + 0x01,0x02,0x00,0x51,0x00,0x00,0x00,0x22,0x00,0x00,0x00,0x08,0x00,0x00,0x00, + 0x01,0x00,0x00,0x00,0x06,0x53,0x80,0x02,0x4c,0x75,0xb5,0x05,0xf0,0x7d,0xc0, + 0x07,0xff,0x84,0x7e,0xc1,0x08,0xff,0x08,0x74,0xb2,0x07,0xff,0x45,0x6a,0x02, + 0xff,0x3b,0x5b,0x01,0xfe,0x3c,0x5c,0x01,0xff,0x3b,0x5b,0x01,0xff,0x3d,0x5d, + 0x01,0xff,0x55,0x83,0x03,0xff,0x77,0xb6,0x08,0xff,0x83,0x7e,0xc1,0x08,0xff, + 0x02,0x7d,0xc1,0x07,0xff,0x7e,0xc1,0x08,0xff,0x82,0x7d,0xc0,0x07,0xff,0x0a, + 0x7c,0xbf,0x06,0xff,0x7d,0xc0,0x07,0xff,0x38,0x56,0x02,0x6b,0x00,0x00,0x00, + 0x0e,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x12,0x00,0x00,0x00,0x42,0x3b,0x5b, + 0x02,0xb1,0x79,0xbb,0x04,0xff,0x7a,0xbd,0x04,0xff,0x82,0x79,0xbc,0x03,0xff, + 0x15,0x79,0xbb,0x03,0xff,0x5e,0x92,0x01,0xff,0x4b,0x74,0x01,0xf1,0x29,0x3d, + 0x03,0x28,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x0a,0x00,0x00,0x00,0x31,0x1c, + 0x2b,0x01,0x8f,0x58,0x87,0x03,0xfe,0x7a,0xbd,0x04,0xff,0x7b,0xbe,0x05,0xff, + 0x7a,0xbd,0x04,0xff,0x70,0xae,0x03,0xff,0x4c,0x76,0x01,0xf0,0x24,0x37,0x02, + 0x2e,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00, + 0x00,0x16,0x35,0x51,0x02,0x8a,0x7b,0xbd,0x05,0xff,0x8a,0x7b,0xbe,0x05,0xff, + 0x0c,0x7a,0xbb,0x05,0xff,0x5a,0x8a,0x03,0xff,0x3c,0x5c,0x01,0xff,0x39,0x58, + 0x01,0xfe,0x2a,0x40,0x01,0xba,0x01,0x02,0x00,0x51,0x00,0x00,0x00,0x22,0x00, + 0x00,0x00,0x08,0x00,0x00,0x00,0x02,0x01,0x01,0x00,0x08,0x5d,0x90,0x02,0x69, + 0x76,0xb7,0x04,0xf8,0x84,0x7b,0xbe,0x05,0xff,0x07,0x7c,0xbf,0x06,0xff,0x6a, + 0xa4,0x04,0xff,0x3e,0x60,0x01,0xff,0x37,0x55,0x01,0xf7,0x1a,0x28,0x01,0xa4, + 0x21,0x33,0x01,0xac,0x39,0x57,0x01,0xf2,0x82,0x3b,0x5b,0x01,0xff,0x07,0x3f, + 0x61,0x01,0xff,0x5c,0x8e,0x04,0xff,0x79,0xba,0x06,0xff,0x7c,0xbf,0x06,0xff, + 0x7b,0xbe,0x05,0xff,0x7a,0xbd,0x04,0xff,0x7b,0xbe,0x05,0xff,0x83,0x7a,0xbd, + 0x04,0xff,0x07,0x36,0x54,0x02,0x6a,0x00,0x00,0x00,0x0e,0x00,0x00,0x00,0x00, + 0x00,0x00,0x00,0x05,0x00,0x00,0x00,0x22,0x04,0x06,0x00,0x5d,0x56,0x86,0x02, + 0xe5,0x83,0x77,0xba,0x01,0xff,0x0a,0x77,0xb9,0x01,0xff,0x71,0xb1,0x01,0xff, + 0x56,0x85,0x01,0xff,0x42,0x65,0x02,0xad,0x01,0x01,0x00,0x09,0x00,0x00,0x00, + 0x03,0x00,0x00,0x00,0x17,0x00,0x00,0x00,0x4a,0x2f,0x47,0x01,0xc9,0x62,0x99, + 0x02,0xff,0x83,0x78,0xbb,0x02,0xff,0x07,0x6b,0xa6,0x01,0xff,0x4d,0x77,0x01, + 0xcb,0x18,0x24,0x02,0x15,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x01,0x00,0x00, + 0x00,0x16,0x36,0x53,0x01,0x8a,0x86,0x78,0xbb,0x02,0xff,0x82,0x79,0xbc,0x03, + 0xff,0x0e,0x78,0xbb,0x02,0xff,0x79,0xbc,0x03,0xff,0x6d,0xaa,0x03,0xff,0x49, + 0x71,0x01,0xff,0x3b,0x5a,0x01,0xff,0x39,0x58,0x01,0xfb,0x23,0x35,0x01,0xa4, + 0x00,0x00,0x00,0x4c,0x00,0x00,0x00,0x21,0x00,0x00,0x00,0x08,0x00,0x00,0x00, + 0x03,0x18,0x24,0x01,0x0e,0x66,0x9f,0x02,0x93,0x77,0xb9,0x02,0xfd,0x84,0x78, + 0xbb,0x02,0xff,0x0a,0x78,0xbb,0x03,0xff,0x5c,0x8e,0x02,0xff,0x3b,0x5a,0x01, + 0xff,0x35,0x52,0x01,0xed,0x13,0x1e,0x01,0x84,0x00,0x00,0x00,0x4f,0x00,0x00, + 0x00,0x4b,0x09,0x0d,0x00,0x6b,0x2b,0x41,0x01,0xbd,0x3a,0x5a,0x01,0xfa,0x82, + 0x3b,0x5b,0x01,0xff,0x03,0x43,0x68,0x01,0xff,0x64,0x9b,0x02,0xff,0x79,0xbb, + 0x03,0xff,0x84,0x78,0xbb,0x02,0xff,0x09,0x77,0xba,0x02,0xff,0x34,0x50,0x01, + 0x69,0x00,0x00,0x00,0x0d,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x00, + 0x00,0x0d,0x00,0x00,0x00,0x36,0x18,0x24,0x01,0x86,0x66,0x9e,0x01,0xfc,0x82, + 0x75,0xb6,0x01,0xff,0x0c,0x75,0xb7,0x01,0xff,0x75,0xb6,0x01,0xff,0x69,0xa3, + 0x01,0xff,0x4f,0x7a,0x01,0xff,0x38,0x55,0x02,0x5e,0x00,0x00,0x00,0x05,0x00, + 0x00,0x00,0x07,0x00,0x00,0x00,0x27,0x08,0x0c,0x01,0x65,0x37,0x54,0x01,0xe9, + 0x65,0x9e,0x01,0xff,0x76,0xb7,0x01,0xff,0x82,0x76,0xb8,0x01,0xff,0x07,0x6b, + 0xa6,0x01,0xff,0x52,0x7e,0x01,0xb7,0x18,0x24,0x02,0x11,0x00,0x00,0x00,0x02, + 0x00,0x00,0x00,0x16,0x37,0x56,0x01,0x8a,0x76,0xb7,0x01,0xff,0x86,0x76,0xb8, + 0x01,0xff,0x10,0x76,0xb9,0x01,0xff,0x70,0xaf,0x01,0xff,0x55,0x84,0x01,0xff, + 0x3e,0x5f,0x01,0xff,0x3b,0x5b,0x01,0xff,0x37,0x54,0x01,0xeb,0x17,0x23,0x01, + 0x87,0x00,0x00,0x00,0x44,0x00,0x00,0x00,0x1d,0x00,0x00,0x00,0x07,0x00,0x00, + 0x00,0x04,0x46,0x6d,0x02,0x26,0x6d,0xaa,0x01,0xc3,0x76,0xb7,0x01,0xff,0x76, + 0xb8,0x01,0xff,0x76,0xb9,0x01,0xff,0x82,0x76,0xb8,0x01,0xff,0x12,0x73,0xb4, + 0x01,0xff,0x4e,0x78,0x01,0xff,0x39,0x59,0x01,0xff,0x32,0x4d,0x01,0xdd,0x0b, + 0x11,0x01,0x71,0x00,0x00,0x00,0x3b,0x00,0x00,0x00,0x1a,0x00,0x00,0x00,0x15, + 0x00,0x00,0x00,0x29,0x00,0x00,0x00,0x4a,0x0f,0x17,0x01,0x79,0x2f,0x49,0x01, + 0xcd,0x3b,0x5b,0x01,0xfe,0x3b,0x5b,0x01,0xff,0x3c,0x5c,0x01,0xff,0x4e,0x79, + 0x01,0xff,0x71,0xb0,0x01,0xff,0x76,0xb8,0x01,0xff,0x83,0x76,0xb7,0x01,0xff, + 0x02,0x31,0x4c,0x01,0x66,0x00,0x00,0x00,0x0d,0x82,0x00,0x00,0x00,0x00,0x13, + 0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x17,0x00,0x00,0x00,0x49,0x2d,0x45,0x01, + 0xb3,0x6c,0xa7,0x01,0xff,0x73,0xb2,0x01,0xff,0x72,0xb1,0x01,0xff,0x72,0xb2, + 0x01,0xff,0x72,0xb1,0x01,0xff,0x63,0x99,0x01,0xff,0x48,0x6f,0x01,0xed,0x2d, + 0x44,0x03,0x2c,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x0e,0x00,0x00,0x00,0x35, + 0x12,0x1b,0x01,0x7c,0x39,0x59,0x01,0xf4,0x60,0x95,0x01,0xff,0x74,0xb3,0x01, + 0xff,0x82,0x73,0xb3,0x01,0xff,0x18,0x6e,0xab,0x01,0xff,0x5c,0x8e,0x01,0xc5, + 0x37,0x54,0x02,0x25,0x00,0x00,0x00,0x19,0x39,0x58,0x01,0x8a,0x73,0xb3,0x01, + 0xff,0x74,0xb4,0x01,0xff,0x74,0xb5,0x01,0xff,0x75,0xb5,0x01,0xff,0x74,0xb5, + 0x01,0xff,0x72,0xb1,0x01,0xff,0x65,0x9e,0x01,0xff,0x51,0x7e,0x01,0xff,0x3f, + 0x60,0x01,0xff,0x3b,0x5b,0x01,0xff,0x3b,0x5a,0x01,0xfd,0x2c,0x43,0x01,0xc2, + 0x07,0x0a,0x00,0x66,0x00,0x00,0x00,0x38,0x00,0x00,0x00,0x16,0x00,0x00,0x00, + 0x06,0x02,0x03,0x00,0x08,0x60,0x94,0x02,0x5e,0x70,0xaf,0x01,0xec,0x82,0x74, + 0xb4,0x01,0xff,0x17,0x74,0xb5,0x01,0xff,0x74,0xb4,0x01,0xff,0x74,0xb5,0x01, + 0xff,0x68,0xa1,0x01,0xff,0x43,0x68,0x01,0xff,0x39,0x58,0x01,0xfe,0x2a,0x40, + 0x01,0xbe,0x03,0x04,0x00,0x5f,0x00,0x00,0x00,0x32,0x00,0x00,0x00,0x12,0x00, + 0x00,0x00,0x04,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x16, + 0x00,0x00,0x00,0x30,0x00,0x00,0x00,0x51,0x18,0x24,0x01,0x8a,0x35,0x51,0x01, + 0xe2,0x3b,0x5b,0x01,0xff,0x3a,0x59,0x01,0xff,0x45,0x6b,0x01,0xff,0x71,0xb0, + 0x01,0xff,0x74,0xb4,0x01,0xff,0x82,0x73,0xb3,0x01,0xff,0x02,0x2e,0x47,0x01, + 0x63,0x00,0x00,0x00,0x0d,0x83,0x00,0x00,0x00,0x00,0x05,0x00,0x00,0x00,0x07, + 0x00,0x00,0x00,0x24,0x02,0x02,0x00,0x5a,0x3c,0x5c,0x01,0xd7,0x6c,0xa8,0x01, + 0xff,0x82,0x6f,0xad,0x01,0xff,0x26,0x70,0xad,0x01,0xff,0x6e,0xab,0x01,0xff, + 0x5e,0x92,0x01,0xff,0x43,0x68,0x01,0xce,0x1e,0x2d,0x02,0x15,0x00,0x00,0x00, + 0x04,0x00,0x00,0x00,0x14,0x00,0x00,0x00,0x3e,0x16,0x21,0x01,0x88,0x38,0x57, + 0x01,0xf5,0x53,0x81,0x01,0xff,0x6e,0xac,0x01,0xff,0x70,0xaf,0x01,0xff,0x70, + 0xae,0x01,0xff,0x70,0xad,0x01,0xff,0x68,0xa2,0x01,0xed,0x4f,0x7a,0x01,0x84, + 0x2e,0x47,0x01,0x97,0x43,0x67,0x01,0xff,0x4c,0x76,0x01,0xff,0x50,0x7b,0x01, + 0xff,0x4e,0x79,0x01,0xff,0x48,0x6f,0x01,0xff,0x3f,0x62,0x01,0xff,0x3c,0x5d, + 0x01,0xff,0x3b,0x5b,0x01,0xff,0x3b,0x5b,0x01,0xfd,0x31,0x4b,0x01,0xd4,0x14, + 0x1f,0x01,0x85,0x00,0x00,0x00,0x4e,0x00,0x00,0x00,0x2a,0x00,0x00,0x00,0x10, + 0x00,0x00,0x00,0x07,0x49,0x72,0x02,0x24,0x6a,0xa4,0x01,0xae,0x70,0xaf,0x01, + 0xfe,0x70,0xaf,0x01,0xff,0x71,0xb0,0x01,0xff,0x82,0x71,0xaf,0x01,0xff,0x09, + 0x70,0xaf,0x01,0xff,0x56,0x86,0x01,0xff,0x3c,0x5c,0x01,0xff,0x38,0x57,0x01, + 0xf7,0x1e,0x2e,0x01,0x9d,0x00,0x00,0x00,0x51,0x00,0x00,0x00,0x29,0x00,0x00, + 0x00,0x0d,0x00,0x00,0x00,0x02,0x83,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00, + 0x02,0x00,0x00,0x00,0x0a,0x00,0x00,0x00,0x1b,0x00,0x00,0x00,0x38,0x03,0x04, + 0x00,0x5f,0x2c,0x44,0x01,0xc7,0x47,0x6d,0x01,0xff,0x68,0xa1,0x01,0xff,0x84, + 0x70,0xae,0x01,0xff,0x02,0x2b,0x42,0x01,0x60,0x00,0x00,0x00,0x0d,0x83,0x00, + 0x00,0x00,0x00,0x15,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x0c,0x00,0x00,0x00, + 0x30,0x09,0x0e,0x01,0x6d,0x43,0x67,0x01,0xea,0x6a,0xa5,0x01,0xff,0x6c,0xa7, + 0x01,0xff,0x6c,0xa8,0x01,0xff,0x6c,0xa7,0x01,0xff,0x6b,0xa6,0x01,0xff,0x5b, + 0x8e,0x01,0xff,0x41,0x63,0x02,0xb4,0x11,0x19,0x03,0x0d,0x00,0x00,0x00,0x05, + 0x00,0x00,0x00,0x17,0x00,0x00,0x00,0x41,0x12,0x1c,0x01,0x82,0x35,0x52,0x01, + 0xeb,0x44,0x69,0x01,0xff,0x5f,0x93,0x01,0xff,0x6d,0xa8,0x01,0xff,0x82,0x6d, + 0xa9,0x01,0xff,0x03,0x57,0x87,0x01,0xff,0x3c,0x5c,0x01,0xfe,0x39,0x58,0x01, + 0xf5,0x84,0x3c,0x5c,0x01,0xff,0x0b,0x3c,0x5c,0x01,0xfd,0x36,0x53,0x01,0xe8, + 0x2a,0x40,0x01,0xbe,0x11,0x1a,0x01,0x82,0x00,0x00,0x00,0x55,0x00,0x00,0x00, + 0x36,0x00,0x00,0x00,0x1a,0x00,0x00,0x00,0x0b,0x2c,0x45,0x02,0x13,0x65,0x9c, + 0x01,0x7d,0x6c,0xa8,0x01,0xf1,0x82,0x6d,0xaa,0x01,0xff,0x83,0x6e,0xab,0x01, + 0xff,0x09,0x66,0x9e,0x01,0xff,0x46,0x6d,0x01,0xff,0x3b,0x5a,0x01,0xff,0x32, + 0x4d,0x01,0xdd,0x10,0x18,0x01,0x7c,0x00,0x00,0x00,0x45,0x00,0x00,0x00,0x1f, + 0x00,0x00,0x00,0x09,0x00,0x00,0x00,0x01,0x86,0x00,0x00,0x00,0x00,0x05,0x00, + 0x00,0x00,0x04,0x01,0x01,0x00,0x14,0x2b,0x42,0x01,0x85,0x54,0x83,0x01,0xf8, + 0x6c,0xa8,0x01,0xff,0x84,0x6d,0xa9,0x01,0xff,0x03,0x6c,0xa8,0x01,0xff,0x28, + 0x3e,0x01,0x5d,0x00,0x00,0x00,0x0c,0x84,0x00,0x00,0x00,0x00,0x06,0x00,0x00, + 0x00,0x02,0x00,0x00,0x00,0x11,0x00,0x00,0x00,0x3a,0x11,0x19,0x01,0x7f,0x45, + 0x6b,0x01,0xf3,0x67,0xa0,0x01,0xff,0x83,0x68,0xa2,0x01,0xff,0x1d,0x68,0xa1, + 0x01,0xff,0x5b,0x8e,0x01,0xff,0x40,0x62,0x02,0xa9,0x15,0x1f,0x02,0x0d,0x00, + 0x00,0x00,0x06,0x00,0x00,0x00,0x17,0x00,0x00,0x00,0x3d,0x08,0x0b,0x00,0x6e, + 0x2d,0x45,0x01,0xcc,0x3b,0x5b,0x01,0xfe,0x45,0x6b,0x01,0xff,0x58,0x88,0x01, + 0xff,0x66,0x9e,0x01,0xff,0x55,0x83,0x01,0xff,0x38,0x55,0x01,0xff,0x0c,0x13, + 0x01,0x89,0x0b,0x11,0x01,0x81,0x17,0x23,0x01,0x92,0x19,0x27,0x01,0x96,0x15, + 0x20,0x01,0x8c,0x07,0x0b,0x00,0x75,0x00,0x00,0x00,0x60,0x00,0x00,0x00,0x4c, + 0x00,0x00,0x00,0x34,0x00,0x00,0x00,0x1e,0x00,0x00,0x00,0x0f,0x33,0x50,0x01, + 0x17,0x63,0x9a,0x01,0x74,0x69,0xa3,0x01,0xe3,0x82,0x6a,0xa5,0x01,0xff,0x0d, + 0x6b,0xa5,0x01,0xff,0x6a,0xa4,0x01,0xff,0x6a,0xa5,0x01,0xff,0x68,0xa2,0x01, + 0xff,0x52,0x7e,0x01,0xff,0x3d,0x5d,0x01,0xff,0x3a,0x58,0x01,0xfa,0x25,0x39, + 0x01,0xb0,0x02,0x02,0x00,0x5f,0x00,0x00,0x00,0x36,0x00,0x00,0x00,0x16,0x00, + 0x00,0x00,0x05,0x00,0x00,0x00,0x01,0x86,0x00,0x00,0x00,0x00,0x07,0x00,0x00, + 0x00,0x03,0x29,0x3e,0x02,0x28,0x4b,0x73,0x01,0xb9,0x64,0x9b,0x01,0xff,0x69, + 0xa4,0x01,0xff,0x6a,0xa4,0x01,0xff,0x6a,0xa5,0x01,0xff,0x83,0x6a,0xa4,0x01, + 0xff,0x03,0x69,0xa3,0x01,0xff,0x25,0x39,0x01,0x5a,0x00,0x00,0x00,0x0c,0x85, + 0x00,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x03,0x00,0x00,0x00,0x16,0x00,0x00, + 0x00,0x42,0x15,0x20,0x01,0x8a,0x44,0x68,0x01,0xf7,0x63,0x99,0x01,0xff,0x83, + 0x65,0x9d,0x01,0xff,0x0f,0x66,0x9e,0x01,0xff,0x5e,0x92,0x01,0xff,0x41,0x64, + 0x02,0xb3,0x1f,0x2f,0x02,0x13,0x00,0x00,0x00,0x05,0x00,0x00,0x00,0x13,0x00, + 0x00,0x00,0x32,0x00,0x00,0x00,0x59,0x18,0x25,0x01,0x94,0x33,0x4e,0x01,0xde, + 0x3b,0x5b,0x01,0xfe,0x3d,0x5e,0x01,0xff,0x41,0x64,0x01,0xff,0x36,0x53,0x01, + 0xff,0x10,0x18,0x01,0x63,0x82,0x00,0x00,0x00,0x39,0x0c,0x00,0x00,0x00,0x3b, + 0x00,0x00,0x00,0x37,0x00,0x00,0x00,0x2e,0x00,0x00,0x00,0x23,0x00,0x00,0x00, + 0x18,0x0b,0x11,0x00,0x13,0x57,0x87,0x02,0x3e,0x64,0x9b,0x01,0x95,0x67,0xa0, + 0x01,0xec,0x67,0x9f,0x01,0xff,0x67,0xa0,0x01,0xff,0x67,0x9f,0x01,0xff,0x82, + 0x67,0xa0,0x01,0xff,0x0a,0x66,0x9e,0x01,0xff,0x56,0x85,0x01,0xff,0x40,0x63, + 0x01,0xff,0x3b,0x5b,0x01,0xff,0x33,0x4e,0x01,0xdd,0x12,0x1c,0x01,0x83,0x00, + 0x00,0x00,0x4c,0x00,0x00,0x00,0x27,0x00,0x00,0x00,0x0e,0x00,0x00,0x00,0x03, + 0x86,0x00,0x00,0x00,0x00,0x05,0x00,0x00,0x00,0x02,0x1d,0x2c,0x02,0x13,0x48, + 0x6f,0x02,0x84,0x5e,0x91,0x01,0xf3,0x67,0xa0,0x01,0xff,0x86,0x67,0x9f,0x01, + 0xff,0x04,0x66,0x9f,0x01,0xff,0x66,0x9d,0x01,0xff,0x21,0x33,0x01,0x55,0x00, + 0x00,0x00,0x0b,0x86,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x05,0x00,0x00, + 0x00,0x1a,0x00,0x00,0x00,0x45,0x16,0x22,0x01,0x8d,0x3f,0x62,0x01,0xf5,0x5e, + 0x92,0x01,0xff,0x63,0x99,0x01,0xff,0x83,0x63,0x9a,0x01,0xff,0x16,0x62,0x99, + 0x01,0xff,0x47,0x6e,0x01,0xcf,0x2d,0x44,0x02,0x2b,0x00,0x00,0x00,0x05,0x00, + 0x00,0x00,0x0c,0x00,0x00,0x00,0x22,0x00,0x00,0x00,0x41,0x00,0x00,0x00,0x60, + 0x14,0x1f,0x01,0x8d,0x2a,0x41,0x01,0xc3,0x36,0x53,0x01,0xea,0x3b,0x5b,0x01, + 0xfe,0x3d,0x5e,0x01,0x7f,0x3a,0x59,0x01,0x3d,0x2c,0x44,0x02,0x29,0x2d,0x46, + 0x01,0x28,0x46,0x6d,0x01,0x33,0x5a,0x8c,0x01,0x4a,0x61,0x97,0x01,0x70,0x64, + 0x9b,0x01,0xa2,0x65,0x9d,0x01,0xe1,0x65,0x9c,0x01,0xff,0x85,0x64,0x9b,0x01, + 0xff,0x0b,0x62,0x99,0x01,0xff,0x54,0x82,0x01,0xff,0x41,0x64,0x01,0xff,0x3c, + 0x5c,0x01,0xff,0x38,0x55,0x01,0xef,0x20,0x31,0x01,0xa4,0x01,0x01,0x00,0x5e, + 0x00,0x00,0x00,0x39,0x00,0x00,0x00,0x19,0x00,0x00,0x00,0x07,0x00,0x00,0x00, + 0x01,0x85,0x00,0x00,0x00,0x00,0x05,0x00,0x00,0x00,0x02,0x1a,0x27,0x02,0x0f, + 0x4b,0x74,0x02,0x71,0x5d,0x91,0x01,0xe5,0x66,0x9e,0x01,0xff,0x83,0x64,0x9b, + 0x01,0xff,0x01,0x64,0x9a,0x01,0xff,0x82,0x64,0x9b,0x01,0xff,0x01,0x63,0x9a, + 0x01,0xff,0x82,0x64,0x9b,0x01,0xff,0x03,0x63,0x99,0x01,0xff,0x1e,0x2e,0x01, + 0x52,0x00,0x00,0x00,0x0b,0x87,0x00,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x05, + 0x00,0x00,0x00,0x1b,0x00,0x00,0x00,0x46,0x13,0x1c,0x01,0x87,0x3a,0x59,0x01, + 0xef,0x57,0x86,0x01,0xff,0x84,0x61,0x97,0x01,0xff,0x0d,0x65,0x9d,0x01,0xff, + 0x54,0x82,0x01,0xf1,0x39,0x57,0x02,0x6c,0x0e,0x15,0x01,0x0a,0x00,0x00,0x00, + 0x07,0x00,0x00,0x00,0x11,0x00,0x00,0x00,0x24,0x00,0x00,0x00,0x3c,0x00,0x00, + 0x00,0x53,0x00,0x00,0x00,0x68,0x26,0x3b,0x01,0xa8,0x62,0x99,0x01,0xff,0x66, + 0x9e,0x01,0xff,0x82,0x66,0x9f,0x01,0xfe,0x02,0x65,0x9c,0x01,0xff,0x62,0x99, + 0x01,0xff,0x87,0x62,0x98,0x01,0xff,0x0b,0x5b,0x8d,0x01,0xff,0x4d,0x77,0x01, + 0xff,0x3f,0x61,0x01,0xff,0x3c,0x5c,0x01,0xff,0x38,0x56,0x01,0xf1,0x25,0x38, + 0x01,0xb1,0x04,0x07,0x00,0x6b,0x00,0x00,0x00,0x46,0x00,0x00,0x00,0x25,0x00, + 0x00,0x00,0x0e,0x00,0x00,0x00,0x03,0x84,0x00,0x00,0x00,0x00,0x06,0x00,0x00, + 0x00,0x01,0x00,0x00,0x00,0x03,0x2b,0x40,0x02,0x17,0x52,0x7f,0x01,0x79,0x5f, + 0x94,0x01,0xe5,0x65,0x9d,0x01,0xff,0x84,0x61,0x97,0x01,0xff,0x82,0x62,0x97, + 0x01,0xff,0x82,0x61,0x97,0x01,0xff,0x01,0x62,0x98,0x01,0xff,0x82,0x61,0x97, + 0x01,0xff,0x03,0x60,0x95,0x01,0xff,0x1c,0x2a,0x01,0x4e,0x00,0x00,0x00,0x0b, + 0x88,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x1a,0x00, + 0x00,0x00,0x42,0x0c,0x12,0x00,0x79,0x33,0x4e,0x01,0xe0,0x4b,0x75,0x01,0xff, + 0x5f,0x93,0x01,0xff,0x83,0x60,0x96,0x01,0xff,0x0c,0x62,0x99,0x01,0xff,0x62, + 0x98,0x01,0xff,0x4e,0x78,0x01,0xca,0x32,0x4d,0x02,0x4a,0x08,0x0c,0x01,0x08, + 0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x0d,0x00,0x00,0x00,0x19,0x00,0x00,0x00, + 0x33,0x28,0x3d,0x01,0x94,0x60,0x94,0x01,0xff,0x61,0x96,0x01,0xff,0x87,0x61, + 0x97,0x01,0xff,0x0e,0x5f,0x94,0x01,0xff,0x58,0x89,0x01,0xff,0x4e,0x79,0x01, + 0xff,0x43,0x67,0x01,0xff,0x3d,0x5d,0x01,0xff,0x3c,0x5c,0x01,0xff,0x35,0x52, + 0x01,0xe6,0x22,0x34,0x01,0xab,0x05,0x07,0x00,0x6c,0x00,0x00,0x00,0x4b,0x00, + 0x00,0x00,0x2c,0x00,0x00,0x00,0x14,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x01, + 0x83,0x00,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x01,0x05,0x07,0x00,0x05,0x3e, + 0x60,0x02,0x32,0x5b,0x8c,0x01,0x98,0x63,0x99,0x01,0xf1,0x64,0x9b,0x01,0xff, + 0x82,0x60,0x96,0x01,0xff,0x86,0x61,0x96,0x01,0xff,0x83,0x60,0x96,0x01,0xff, + 0x82,0x60,0x95,0x01,0xff,0x03,0x5e,0x92,0x01,0xfe,0x18,0x24,0x01,0x4a,0x00, + 0x00,0x00,0x0a,0x89,0x00,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x05,0x00,0x00, + 0x00,0x16,0x00,0x00,0x00,0x3a,0x03,0x05,0x00,0x68,0x29,0x3f,0x01,0xc0,0x40, + 0x63,0x01,0xfd,0x56,0x85,0x01,0xff,0x61,0x96,0x01,0xff,0x83,0x61,0x97,0x01, + 0xff,0x09,0x64,0x9c,0x01,0xff,0x62,0x98,0x01,0xff,0x54,0x82,0x01,0xce,0x3d, + 0x5e,0x02,0x6e,0x22,0x34,0x02,0x1d,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x1a, + 0x2b,0x42,0x01,0x8a,0x57,0x87,0x01,0xff,0x82,0x5a,0x8c,0x01,0xff,0x07,0x59, + 0x8a,0x01,0xff,0x57,0x88,0x01,0xff,0x54,0x83,0x01,0xff,0x50,0x7c,0x01,0xff, + 0x4b,0x74,0x01,0xff,0x44,0x69,0x01,0xff,0x3e,0x60,0x01,0xff,0x82,0x3c,0x5d, + 0x01,0xff,0x09,0x38,0x56,0x01,0xef,0x2b,0x42,0x01,0xc5,0x15,0x20,0x01,0x8f, + 0x00,0x01,0x00,0x63,0x00,0x00,0x00,0x48,0x00,0x00,0x00,0x2d,0x00,0x00,0x00, + 0x16,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x02,0x82,0x00,0x00,0x00,0x00,0x08, + 0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x04,0x2e,0x47,0x02,0x1e,0x54,0x82,0x02, + 0x72,0x61,0x96,0x01,0xc8,0x66,0x9e,0x01,0xfd,0x63,0x9a,0x01,0xff,0x62,0x97, + 0x01,0xff,0x85,0x61,0x97,0x01,0xff,0x02,0x61,0x96,0x01,0xff,0x60,0x96,0x01, + 0xff,0x86,0x60,0x95,0x01,0xff,0x04,0x60,0x96,0x01,0xff,0x5d,0x91,0x01,0xfd, + 0x14,0x1d,0x01,0x45,0x00,0x00,0x00,0x09,0x8a,0x00,0x00,0x00,0x00,0x09,0x00, + 0x00,0x00,0x03,0x00,0x00,0x00,0x11,0x00,0x00,0x00,0x2f,0x00,0x00,0x00,0x57, + 0x17,0x23,0x01,0x94,0x36,0x53,0x01,0xe9,0x46,0x6c,0x01,0xff,0x59,0x8a,0x01, + 0xff,0x62,0x98,0x01,0xff,0x83,0x63,0x99,0x01,0xff,0x06,0x63,0x9a,0x01,0xff, + 0x68,0xa2,0x01,0xff,0x60,0x95,0x01,0xfb,0x5b,0x8d,0x01,0xcd,0x4e,0x78,0x01, + 0xa0,0x32,0x4d,0x01,0xbe,0x84,0x3d,0x5e,0x01,0xff,0x83,0x3c,0x5d,0x01,0xff, + 0x0c,0x3b,0x5b,0x01,0xfa,0x37,0x54,0x01,0xea,0x2f,0x49,0x01,0xd1,0x24,0x38, + 0x01,0xb2,0x12,0x1b,0x01,0x8a,0x01,0x01,0x00,0x68,0x00,0x00,0x00,0x53,0x00, + 0x00,0x00,0x3c,0x00,0x00,0x00,0x25,0x00,0x00,0x00,0x14,0x00,0x00,0x00,0x08, + 0x00,0x00,0x00,0x02,0x82,0x00,0x00,0x00,0x01,0x06,0x00,0x00,0x00,0x04,0x26, + 0x39,0x02,0x18,0x4d,0x78,0x02,0x65,0x5f,0x93,0x01,0xbc,0x66,0x9e,0x01,0xfa, + 0x67,0x9f,0x01,0xff,0x82,0x63,0x9a,0x01,0xff,0x83,0x63,0x99,0x01,0xff,0x87, + 0x62,0x98,0x01,0xff,0x01,0x62,0x97,0x01,0xff,0x85,0x61,0x97,0x01,0xff,0x03, + 0x5d,0x91,0x01,0xfc,0x10,0x18,0x01,0x40,0x00,0x00,0x00,0x09,0x8b,0x00,0x00, + 0x00,0x00,0x0a,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x0b,0x00,0x00,0x00,0x22, + 0x00,0x00,0x00,0x45,0x03,0x05,0x00,0x6c,0x24,0x37,0x01,0xb3,0x39,0x58,0x01, + 0xf3,0x46,0x6c,0x01,0xff,0x56,0x86,0x01,0xff,0x63,0x9a,0x01,0xff,0x85,0x65, + 0x9d,0x01,0xff,0x1b,0x58,0x88,0x01,0xff,0x39,0x58,0x01,0xff,0x1e,0x2e,0x01, + 0xa9,0x1d,0x2c,0x01,0xa3,0x1f,0x2f,0x01,0xa7,0x1e,0x2e,0x01,0xa5,0x1c,0x2b, + 0x01,0x9f,0x17,0x23,0x01,0x95,0x0e,0x15,0x00,0x85,0x04,0x07,0x00,0x73,0x00, + 0x00,0x00,0x66,0x00,0x00,0x00,0x5a,0x00,0x00,0x00,0x4b,0x00,0x00,0x00,0x3a, + 0x00,0x00,0x00,0x29,0x00,0x00,0x00,0x19,0x00,0x00,0x00,0x0d,0x00,0x00,0x00, + 0x05,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x03,0x0e,0x15,0x01,0x08,0x34,0x4f, + 0x02,0x33,0x52,0x7f,0x01,0x79,0x5f,0x94,0x01,0xbf,0x66,0x9e,0x01,0xf6,0x6b, + 0xa6,0x01,0xff,0x67,0x9f,0x01,0xff,0x82,0x66,0x9e,0x01,0xff,0x03,0x65,0x9d, + 0x01,0xff,0x64,0x9c,0x01,0xff,0x65,0x9d,0x01,0xff,0x83,0x64,0x9b,0x01,0xff, + 0x01,0x63,0x9a,0x01,0xff,0x82,0x64,0x9b,0x01,0xff,0x83,0x63,0x9b,0x01,0xff, + 0x82,0x64,0x9b,0x01,0xff,0x01,0x63,0x9a,0x01,0xff,0x83,0x63,0x99,0x01,0xff, + 0x03,0x5e,0x92,0x01,0xfb,0x0c,0x11,0x01,0x3b,0x00,0x00,0x00,0x08,0x8c,0x00, + 0x00,0x00,0x00,0x27,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x06,0x00,0x00,0x00, + 0x15,0x00,0x00,0x00,0x2f,0x00,0x00,0x00,0x51,0x06,0x09,0x00,0x74,0x25,0x38, + 0x01,0xb5,0x37,0x55,0x01,0xed,0x3f,0x62,0x01,0xff,0x4c,0x76,0x01,0xff,0x59, + 0x8b,0x01,0xff,0x64,0x9b,0x01,0xff,0x69,0xa2,0x01,0xff,0x69,0xa3,0x01,0xff, + 0x5a,0x8b,0x01,0xff,0x38,0x55,0x01,0xff,0x0f,0x16,0x01,0x70,0x00,0x00,0x00, + 0x49,0x00,0x00,0x00,0x46,0x00,0x00,0x00,0x45,0x00,0x00,0x00,0x43,0x00,0x00, + 0x00,0x3e,0x00,0x00,0x00,0x37,0x00,0x00,0x00,0x2f,0x00,0x00,0x00,0x26,0x00, + 0x00,0x00,0x1c,0x00,0x00,0x00,0x13,0x00,0x00,0x00,0x0c,0x00,0x00,0x00,0x07, + 0x00,0x00,0x00,0x05,0x09,0x0e,0x01,0x08,0x2c,0x43,0x02,0x2d,0x47,0x6e,0x02, + 0x64,0x5a,0x8b,0x02,0xa1,0x62,0x98,0x01,0xe2,0x6c,0xa7,0x01,0xff,0x6d,0xa9, + 0x01,0xff,0x6a,0xa4,0x01,0xff,0x69,0xa4,0x01,0xff,0x82,0x69,0xa3,0x01,0xff, + 0x05,0x68,0xa2,0x01,0xff,0x68,0xa1,0x01,0xff,0x67,0xa1,0x01,0xff,0x67,0xa0, + 0x01,0xff,0x68,0xa0,0x01,0xff,0x83,0x67,0xa0,0x01,0xff,0x01,0x67,0x9f,0x01, + 0xff,0x83,0x67,0xa0,0x01,0xff,0x82,0x67,0x9f,0x01,0xff,0x83,0x67,0xa0,0x01, + 0xff,0x06,0x67,0x9f,0x01,0xff,0x66,0x9e,0x01,0xff,0x66,0x9d,0x01,0xff,0x60, + 0x94,0x01,0xf9,0x08,0x0b,0x00,0x37,0x00,0x00,0x00,0x08,0x8e,0x00,0x00,0x00, + 0x00,0x23,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x0a,0x00,0x00,0x00,0x1a,0x00, + 0x00,0x00,0x33,0x00,0x00,0x00,0x50,0x01,0x02,0x00,0x6b,0x19,0x26,0x01,0x9a, + 0x2d,0x45,0x01,0xcc,0x39,0x57,0x01,0xf2,0x3d,0x5f,0x01,0xff,0x43,0x67,0x01, + 0xff,0x4b,0x75,0x01,0xff,0x4c,0x75,0x01,0xff,0x38,0x56,0x01,0xff,0x14,0x1e, + 0x01,0x53,0x00,0x00,0x00,0x17,0x00,0x00,0x00,0x11,0x00,0x00,0x00,0x10,0x00, + 0x00,0x00,0x0f,0x00,0x00,0x00,0x0d,0x00,0x00,0x00,0x0b,0x00,0x00,0x00,0x09, + 0x00,0x00,0x00,0x08,0x14,0x1e,0x02,0x0f,0x29,0x3e,0x02,0x2a,0x3d,0x5d,0x02, + 0x54,0x52,0x7e,0x02,0x85,0x5e,0x91,0x02,0xbb,0x64,0x9b,0x02,0xee,0x6e,0xab, + 0x01,0xff,0x71,0xb1,0x01,0xff,0x6f,0xad,0x01,0xff,0x6e,0xac,0x01,0xff,0x6e, + 0xab,0x01,0xff,0x6d,0xaa,0x01,0xff,0x82,0x6d,0xa9,0x01,0xff,0x83,0x6c,0xa8, + 0x01,0xff,0x01,0x6c,0xa7,0x01,0xff,0x83,0x6b,0xa7,0x01,0xff,0x02,0x6c,0xa8, + 0x01,0xff,0x6b,0xa7,0x01,0xff,0x87,0x6b,0xa6,0x01,0xff,0x85,0x6a,0xa5,0x01, + 0xff,0x04,0x6a,0xa4,0x01,0xff,0x62,0x97,0x01,0xf7,0x04,0x06,0x01,0x33,0x00, + 0x00,0x00,0x07,0x90,0x00,0x00,0x00,0x00,0x1f,0x00,0x00,0x00,0x03,0x00,0x00, + 0x00,0x0a,0x00,0x00,0x00,0x19,0x00,0x00,0x00,0x2d,0x00,0x00,0x00,0x44,0x00, + 0x00,0x00,0x5b,0x02,0x03,0x00,0x6f,0x12,0x1c,0x01,0x8e,0x23,0x36,0x01,0xb1, + 0x2d,0x45,0x01,0xcc,0x33,0x4f,0x01,0xe0,0x39,0x57,0x01,0xf4,0x45,0x6b,0x02, + 0xad,0x48,0x6e,0x02,0x81,0x46,0x6c,0x02,0x74,0x47,0x6d,0x02,0x76,0x4c,0x75, + 0x02,0x80,0x52,0x7f,0x03,0x8e,0x58,0x88,0x03,0xa3,0x5d,0x90,0x03,0xbb,0x61, + 0x97,0x02,0xda,0x67,0x9f,0x02,0xf4,0x6f,0xac,0x02,0xfe,0x75,0xb6,0x02,0xff, + 0x75,0xb5,0x01,0xff,0x74,0xb4,0x01,0xff,0x74,0xb3,0x01,0xff,0x73,0xb3,0x01, + 0xff,0x73,0xb2,0x01,0xff,0x72,0xb2,0x01,0xff,0x72,0xb1,0x01,0xff,0x86,0x71, + 0xb0,0x01,0xff,0x82,0x71,0xaf,0x01,0xff,0x02,0x70,0xaf,0x01,0xff,0x70,0xae, + 0x01,0xff,0x82,0x70,0xaf,0x01,0xff,0x01,0x71,0xaf,0x01,0xff,0x82,0x70,0xae, + 0x01,0xff,0x01,0x6f,0xad,0x01,0xff,0x83,0x70,0xae,0x01,0xff,0x82,0x6f,0xad, + 0x01,0xff,0x82,0x6f,0xac,0x01,0xff,0x01,0x6e,0xac,0x01,0xff,0x82,0x6e,0xab, + 0x01,0xff,0x03,0x63,0x9a,0x01,0xf5,0x02,0x03,0x01,0x31,0x00,0x00,0x00,0x07, + 0x92,0x00,0x00,0x00,0x00,0x0c,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x07,0x00, + 0x00,0x00,0x11,0x00,0x00,0x00,0x1e,0x00,0x00,0x00,0x2e,0x00,0x00,0x00,0x3e, + 0x00,0x00,0x00,0x4d,0x00,0x00,0x00,0x5a,0x00,0x00,0x00,0x68,0x22,0x34,0x01, + 0xa4,0x71,0xaf,0x03,0xff,0x7a,0xbd,0x04,0xff,0x82,0x7a,0xbe,0x04,0xff,0x01, + 0x7a,0xbd,0x04,0xff,0x82,0x79,0xbc,0x03,0xff,0x83,0x78,0xbb,0x02,0xff,0x02, + 0x78,0xba,0x02,0xff,0x77,0xba,0x02,0xff,0x82,0x77,0xba,0x01,0xff,0x84,0x77, + 0xb9,0x01,0xff,0x01,0x76,0xb9,0x01,0xff,0x87,0x76,0xb8,0x01,0xff,0x82,0x76, + 0xb7,0x01,0xff,0x83,0x75,0xb7,0x01,0xff,0x01,0x76,0xb7,0x01,0xff,0x82,0x75, + 0xb6,0x01,0xff,0x03,0x74,0xb5,0x01,0xff,0x75,0xb6,0x01,0xff,0x75,0xb5,0x01, + 0xff,0x82,0x75,0xb6,0x01,0xff,0x01,0x74,0xb5,0x01,0xff,0x82,0x74,0xb4,0x01, + 0xff,0x83,0x73,0xb3,0x01,0xff,0x03,0x66,0x9e,0x01,0xf4,0x02,0x03,0x01,0x2f, + 0x00,0x00,0x00,0x06,0x94,0x00,0x00,0x00,0x00,0x09,0x00,0x00,0x00,0x01,0x00, + 0x00,0x00,0x03,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x0d,0x00,0x00,0x00,0x14, + 0x00,0x00,0x00,0x1d,0x00,0x00,0x00,0x31,0x25,0x39,0x01,0x92,0x72,0xb0,0x06, + 0xff,0x8c,0x7d,0xc0,0x07,0xff,0x87,0x7c,0xbf,0x06,0xff,0x02,0x7b,0xbe,0x05, + 0xff,0x7c,0xbf,0x06,0xff,0x86,0x7b,0xbe,0x05,0xff,0x86,0x7a,0xbd,0x04,0xff, + 0x86,0x79,0xbc,0x03,0xff,0x83,0x78,0xbb,0x02,0xff,0x82,0x78,0xba,0x02,0xff, + 0x03,0x67,0xa0,0x02,0xf3,0x01,0x02,0x00,0x2e,0x00,0x00,0x00,0x06,0x98,0x00, + 0x00,0x00,0x00,0x05,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x03,0x00,0x00,0x00, + 0x16,0x28,0x3e,0x01,0x87,0x74,0xb1,0x08,0xff,0x91,0x81,0xc4,0x0b,0xff,0x89, + 0x80,0xc3,0x0a,0xff,0x82,0x7f,0xc2,0x09,0xff,0x85,0x7e,0xc1,0x08,0xff,0x82, + 0x7d,0xc0,0x07,0xff,0x83,0x7c,0xbf,0x06,0xff,0x86,0x7d,0xc0,0x07,0xff,0x03, + 0x69,0xa1,0x05,0xf2,0x01,0x02,0x00,0x2d,0x00,0x00,0x00,0x06,0x99,0x00,0x00, + 0x00,0x00,0x04,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x13,0x29,0x3f,0x01,0x85, + 0x73,0xb0,0x09,0xff,0x94,0x83,0xc6,0x0d,0xff,0x87,0x82,0xc5,0x0c,0xff,0x03, + 0x81,0xc4,0x0b,0xff,0x80,0xc3,0x0a,0xff,0x81,0xc4,0x0b,0xff,0x83,0x80,0xc3, + 0x0a,0xff,0x86,0x7f,0xc2,0x09,0xff,0x85,0x80,0xc3,0x0a,0xff,0x03,0x68,0x9f, + 0x06,0xf1,0x01,0x01,0x00,0x2c,0x00,0x00,0x00,0x06,0x99,0x00,0x00,0x00,0x00, + 0x04,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x13,0x29,0x40,0x01,0x84,0x59,0x89, + 0x04,0xff,0x82,0x61,0x94,0x05,0xff,0x02,0x61,0x94,0x06,0xff,0x60,0x93,0x06, + 0xff,0x82,0x60,0x92,0x06,0xff,0x01,0x61,0x94,0x06,0xff,0x82,0x61,0x95,0x06, + 0xff,0x14,0x61,0x94,0x06,0xff,0x60,0x93,0x06,0xff,0x5f,0x92,0x06,0xff,0x5f, + 0x91,0x06,0xff,0x5f,0x92,0x06,0xff,0x61,0x94,0x06,0xff,0x61,0x95,0x06,0xff, + 0x62,0x95,0x06,0xff,0x62,0x96,0x06,0xff,0x62,0x95,0x06,0xff,0x62,0x96,0x06, + 0xff,0x62,0x95,0x06,0xff,0x61,0x95,0x05,0xff,0x61,0x94,0x05,0xff,0x60,0x93, + 0x05,0xff,0x60,0x92,0x05,0xff,0x5f,0x92,0x05,0xff,0x5e,0x91,0x05,0xff,0x5e, + 0x90,0x05,0xff,0x5e,0x8f,0x05,0xff,0x83,0x5d,0x8f,0x05,0xff,0x02,0x5e,0x8f, + 0x05,0xff,0x5e,0x90,0x05,0xff,0x84,0x5f,0x92,0x04,0xff,0x04,0x5e,0x90,0x04, + 0xff,0x5d,0x8f,0x05,0xff,0x5d,0x8e,0x05,0xff,0x5c,0x8e,0x05,0xff,0x82,0x5c, + 0x8d,0x04,0xff,0x03,0x50,0x7b,0x03,0xf1,0x01,0x01,0x00,0x2c,0x00,0x00,0x00, + 0x05,0x99,0x00,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x11, + 0x1f,0x2f,0x01,0x66,0x2e,0x47,0x01,0xc1,0x8a,0x2d,0x45,0x01,0xc9,0x01,0x2d, + 0x44,0x01,0xc9,0x83,0x2d,0x45,0x01,0xc9,0x04,0x2d,0x44,0x01,0xc9,0x2d,0x45, + 0x01,0xc9,0x2c,0x44,0x01,0xc9,0x2d,0x45,0x01,0xc9,0x82,0x2c,0x44,0x01,0xc8, + 0x01,0x2c,0x44,0x01,0xc9,0x8f,0x2c,0x44,0x01,0xc8,0x01,0x2c,0x43,0x01,0xc8, + 0x82,0x2c,0x44,0x01,0xc8,0x84,0x2c,0x43,0x01,0xc8,0x04,0x2c,0x44,0x01,0xc6, + 0x2e,0x46,0x01,0xae,0x00,0x01,0x00,0x28,0x00,0x00,0x00,0x05,0x9a,0x00,0x00, + 0x00,0x00,0x03,0x00,0x00,0x00,0x0b,0x00,0x00,0x00,0x2d,0x00,0x00,0x00,0x4f, + 0xab,0x00,0x00,0x00,0x5b,0x04,0x00,0x00,0x00,0x57,0x00,0x00,0x00,0x41,0x00, + 0x00,0x00,0x1a,0x00,0x00,0x00,0x03,0x9a,0x00,0x00,0x00,0x00,0x04,0x00,0x00, + 0x00,0x03,0x00,0x00,0x00,0x0e,0x00,0x00,0x00,0x19,0x00,0x00,0x00,0x1c,0x89, + 0x00,0x00,0x00,0x1d,0xa1,0x00,0x00,0x00,0x1c,0x04,0x00,0x00,0x00,0x1b,0x00, + 0x00,0x00,0x14,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x01,0x9b,0x00,0x00,0x00, + 0x00,0x01,0x00,0x00,0x00,0x01,0xad,0x00,0x00,0x00,0x02,0x82,0x00,0x00,0x00, + 0x01,0xff,0x00,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0x00,0xff,0x00,0x00,0x00, + 0x00,0xff,0x00,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0x00,0xff,0x00,0x00,0x00, + 0x00,0xcb,0x00,0x00,0x00,0x00 }; static const GdkPixdata nvidia_icon_pixdata = { @@ -421,5 +729,5 @@ static const GdkPixdata nvidia_icon_pixdata = { 304, /* rowstride */ 76, /* width */ 76, /* height */ - nvidia_icon_pixdata_pixel_data, /* pixel_data: */ + nvidia_icon_pixdata_pixel_data /* pixel_data */ }; diff --git a/src/image_data/png_to_c_header.sh b/src/image_data/png_to_c_header.sh new file mode 100644 index 0000000..65f7c26 --- /dev/null +++ b/src/image_data/png_to_c_header.sh @@ -0,0 +1,187 @@ +#!/bin/sh +# +#/**** BEGIN - Self compiling script ****\ + +## +## This script is meant to generate a header file from +## png image data. The process is to take a png file, +## pass it through gdk-pixbuf-csource and then to +## reformat the generated header by generating c code +## that will include the data array part of the +## cdk-pixbuf-csource header and convert/output a non- +## string version of the same data. +## +## NOTE: This file will be duplicated to generate the +## c code and the first three lines will be +## modified to include a starting (c-style) +## comment block to comment out all the +## scripting, leaving the c-code at the bottom. +## This is done to make sure that compilation +## errors/warnings are tied to the right line +## number. + + +## +## Make sure we were given a png file. +## + +if [ "$1" = "" ]; then + echo "Usage: $0 <FILE.PNG>" + exit 1 +fi + + + +## +## Figure out what to name the new header file +## + +PNG=$1 +NAME=`echo $PNG | sed 's/.png/_pixdata/i'` +HEADER=${NAME}.h +TMP_HEADER="$0.tmp.header.h" + +echo "PNG : $PNG" +echo "NAME : $NAME" +echo "HEADER : $HEADER" +echo "" + + + +## +## Convert the PNG data to a temporary header +## + +echo "Converting '$PNG' to temp header '$TMP_HEADER' ..." +gdk-pixbuf-csource --struct --name=${NAME} $PNG > $TMP_HEADER || exit 1 + + + +## +## Generate header to include for compilation +## + +INC_HEADER="$0.inc.header.h" + +echo "Generating include header '$INC_HEADER' ..." + +echo "static char tmp_pixel_data[] = " > $INC_HEADER +sed -n '/[ \t]*\".*$/ p' $TMP_HEADER | sed 's/,$//' >> $INC_HEADER +echo ";" >> $INC_HEADER + + + +## +## Generate the code that will include the header above +## + +TMP_CODE="$0.code.c" + +echo "Generating conversion code '$TMP_CODE' ..." + +let L="`wc -l < $0` - 3" # Skip the first three lines! +echo "#include \"$INC_HEADER\"" > $TMP_CODE +echo "" >> $TMP_CODE +echo "/""**" >> $TMP_CODE +echo "" >> $TMP_CODE +tail -n $L $0 >> $TMP_CODE + + + +## +## Compile +## + +TMP_BIN="$0.binary" + +echo "Compiling conversion app '$TMP_BIN' ..." + +# Compile Flags +CFLAGS="-g -Wall" + +gcc $CFLAGS -o $TMP_BIN $TMP_CODE + +RET="$?" > /dev/null +if [ "$RET" != "0" ]; then + echo "Compilation error" + exit 1 +fi + + + +## +## Execute code to do conversion. +## + +echo "Converting $TMP_HEADER => ${HEADER}_MID ..." + +./$TMP_BIN > ${HEADER}_MID + + + +## +## Generate final header +## + +echo "Generating final header '$HEADER' ..." + +head -n 2 $TMP_HEADER > $HEADER +echo "static guint8 ${NAME}_pixel_data[] = {" >> $HEADER +cat ${HEADER}_MID >> $HEADER +echo "" >> $HEADER +echo "};" >> $HEADER + +REGEXP="s/^ \(.*\/\* pixel_data.*\)/ ${NAME}_pixel_data \/\* pixel_data \*\//" + +# gdk-pixbuf-csource adds 2 extra empty lines so get rid of one of them. +L=`wc -l < $TMP_HEADER` +let L="$L - `tail -n 2 $TMP_HEADER | grep '^[ \t]*$' | wc -l`" + +head -n $L $TMP_HEADER | \ +sed -n '/^ \"/ !p' | \ +sed -n '/^\// !p' | \ +sed -e "$REGEXP" >> $HEADER + + + +## +## Cleanup +## + +rm -rf $TMP_HEADER $INC_HEADER $TMP_CODE ${HEADER}_MID $TMP_BIN + +echo "" +echo "Created '${HEADER}'" + +exit + +\***** END - Self compiling script *******/ + +#include <stdio.h> + +int main(int argc, char **argv) +{ + char *data = tmp_pixel_data; + size_t len = sizeof(tmp_pixel_data) -1; // -1 for string terminator '\0' + size_t i; + int output = 0; + + printf(" "); + for ( i = 0; i < len; i++ ) { + + printf("0x%.2x", (0xFF & *data)); + output++; + + if ( i+1 < len ) { + printf(","); + } + if ( output >= 15 ) { + output = 0; + printf("\n "); + } + + data++; + } + + return 0; +} diff --git a/src/image_data/rj45_input.h b/src/image_data/rj45_input.h deleted file mode 100644 index 4e2dea7..0000000 --- a/src/image_data/rj45_input.h +++ /dev/null @@ -1,50 +0,0 @@ -/* GIMP RGBA C-Source image dump 1-byte-run-length-encoded (rj45_input.c) */
-
-#include "image.h"
-
-static const nv_image_t rj45_input = {
- 20, 28, 4, 0,
- "\225666\377\222\0\0\0\0\202666\377\1\0\0\0\0\206ddd\377\204\0\0\0\0\2066"
- "66\377\1\0\0\0\0\202666\377\2\0\0\0\0ddd\377\204\0\377\0\377\1ddd\377\204"
- "PPP\377\1""666\377\204\236\245\212\377\2""666\377\0\0\0\0\202666\377\2\0"
- "\0\0\0ddd\377\204\0\377\0\377\1ddd\377\204f\206\236\377\1""666\377\204\236"
- "\245\212\377\2""666\377\0\0\0\0\202666\377\1\0\0\0\0\206ddd\377\204f\206"
- "\236\377\206666\377\1\0\0\0\0\202666\377\202\0\0\0\0\1PPP\377\214f\206\236"
- "\377\1PPP\377\202\0\0\0\0\202666\377\202\0\0\0\0\2PPP\377f\206\236\377\211"
- "\307\323\334\377\3Jj\204\377f\206\236\377PPP\377\202\0\0\0\0\202666\377\202"
- "\0\0\0\0\3PPP\377f\206\236\377\307\323\334\377\210\214\244\266\377\3Jj\204"
- "\377f\206\236\377PPP\377\202\0\0\0\0\202666\377\202\0\0\0\0\16PPP\377f\206"
- "\236\377\307\323\334\377\214\244\266\377v\220\244\377\245\267\305\377\303"
- "\317\332\377\245\270\305\377\204\234\260\377e\201\231\377\214\244\266\377"
- "Jj\204\377f\206\236\377PPP\377\202\0\0\0\0\202666\377\202\0\0\0\0\16PPP\377"
- "f\206\236\377\307\323\334\377\214\244\266\377v\217\243\377\263\302\316\377"
- "\317\331\342\377\250\272\307\377\177\230\254\377?^y\377\214\244\266\377J"
- "j\204\377f\206\236\377PPP\377\202\0\0\0\0\202666\377\202\0\0\0\0\16PPP\377"
- "f\206\236\377\307\323\334\377\214\244\266\377v\217\243\377\263\302\316\377"
- "\327\337\347\377\250\272\307\377\177\230\254\377?^y\377\214\244\266\377J"
- "j\204\377f\206\236\377PPP\377\202\0\0\0\0\202666\377\202\0\0\0\0\1PPP\377"
- "\203f\206\236\377\6v\217\243\377\263\302\316\377\340\347\354\377\250\272"
- "\307\377\177\230\254\377?^y\377\203f\206\236\377\1PPP\377\202\0\0\0\0\202"
- "666\377\202\0\0\0\0\204PPP\377\6v\217\243\377\263\302\316\377\352\356\362"
- "\377\250\272\307\377\177\230\254\377?^y\377\204PPP\377\202\0\0\0\0\20266"
- "6\377\206\0\0\0\0\6v\217\243\377\263\302\316\377\365\367\371\377\250\272"
- "\307\377\177\230\254\377?^y\377\206\0\0\0\0\210666\377\6v\217\243\377\263"
- "\302\316\377\376\377\377\377\250\272\307\377\177\230\254\377?^y\377\2076"
- "66\377\207\0\0\0\0\6v\217\243\377\263\302\316\377\377\377\377\377\250\272"
- "\307\377\177\230\254\377?^y\377\216\0\0\0\0\6v\217\243\377\263\302\316\377"
- "\377\377\377\377\250\272\307\377\177\230\254\377?^y\377\216\0\0\0\0\6v\217"
- "\243\377\263\302\316\377\377\377\377\377\250\272\307\377\177\230\254\377"
- "?^y\377\216\0\0\0\0\6v\217\243\371\263\302\316\371\377\377\377\377\250\272"
- "\307\371\177\230\254\371?^y\371\216\0\0\0\0\6v\217\243\350\263\302\316\350"
- "\377\377\377\377\250\272\307\350\177\230\254\350?^y\350\216\0\0\0\0\6v\217"
- "\243\324\263\302\316\324\377\377\377\377\250\272\307\324\177\230\254\324"
- "?^y\324\216\0\0\0\0\6v\217\243\275\263\302\316\275\377\377\377\377\250\272"
- "\307\275\177\230\254\275?^y\275\216\0\0\0\0\6v\217\243\244\263\302\316\244"
- "\377\377\377\377\250\272\307\244\177\230\254\244?^y\244\216\0\0\0\0\6v\217"
- "\243\211\263\302\316\211\377\377\377\377\250\272\307\211\177\230\254\211"
- "?^y\211\216\0\0\0\0\6v\217\243l\263\302\316l\377\377\377\377\250\272\307"
- "l\177\230\254l?^yl\216\0\0\0\0\6v\217\243M\263\302\316M\377\377\377\377\250"
- "\272\307M\177\230\254M?^yM\216\0\0\0\0\6v\217\243,\263\302\316,\377\377\377"
- "\377\250\272\307,\177\230\254,?^y,\207\0\0\0\0",
-};
-
diff --git a/src/image_data/rj45_input_pixdata.h b/src/image_data/rj45_input_pixdata.h new file mode 100644 index 0000000..c5df738 --- /dev/null +++ b/src/image_data/rj45_input_pixdata.h @@ -0,0 +1,85 @@ +/* GdkPixbuf RGBA C-Source image dump 1-byte-run-length-encoded */ + +static guint8 rj45_input_pixdata_pixel_data[] = { + 0x95,0x36,0x36,0x36,0xff,0x92,0x00,0x00,0x00,0x00,0x82,0x36,0x36,0x36,0xff, + 0x01,0x00,0x00,0x00,0x00,0x86,0x64,0x64,0x64,0xff,0x84,0x00,0x00,0x00,0x00, + 0x86,0x36,0x36,0x36,0xff,0x01,0x00,0x00,0x00,0x00,0x82,0x36,0x36,0x36,0xff, + 0x02,0x00,0x00,0x00,0x00,0x64,0x64,0x64,0xff,0x84,0x00,0xff,0x00,0xff,0x01, + 0x64,0x64,0x64,0xff,0x84,0x50,0x50,0x50,0xff,0x01,0x36,0x36,0x36,0xff,0x84, + 0x9e,0xa5,0x8a,0xff,0x02,0x36,0x36,0x36,0xff,0x00,0x00,0x00,0x00,0x82,0x36, + 0x36,0x36,0xff,0x02,0x00,0x00,0x00,0x00,0x64,0x64,0x64,0xff,0x84,0x00,0xff, + 0x00,0xff,0x01,0x64,0x64,0x64,0xff,0x84,0x66,0x86,0x9e,0xff,0x01,0x36,0x36, + 0x36,0xff,0x84,0x9e,0xa5,0x8a,0xff,0x02,0x36,0x36,0x36,0xff,0x00,0x00,0x00, + 0x00,0x82,0x36,0x36,0x36,0xff,0x01,0x00,0x00,0x00,0x00,0x86,0x64,0x64,0x64, + 0xff,0x84,0x66,0x86,0x9e,0xff,0x86,0x36,0x36,0x36,0xff,0x01,0x00,0x00,0x00, + 0x00,0x82,0x36,0x36,0x36,0xff,0x82,0x00,0x00,0x00,0x00,0x01,0x50,0x50,0x50, + 0xff,0x8c,0x66,0x86,0x9e,0xff,0x01,0x50,0x50,0x50,0xff,0x82,0x00,0x00,0x00, + 0x00,0x82,0x36,0x36,0x36,0xff,0x82,0x00,0x00,0x00,0x00,0x02,0x50,0x50,0x50, + 0xff,0x66,0x86,0x9e,0xff,0x89,0xc7,0xd3,0xdc,0xff,0x03,0x4a,0x6a,0x84,0xff, + 0x66,0x86,0x9e,0xff,0x50,0x50,0x50,0xff,0x82,0x00,0x00,0x00,0x00,0x82,0x36, + 0x36,0x36,0xff,0x82,0x00,0x00,0x00,0x00,0x03,0x50,0x50,0x50,0xff,0x66,0x86, + 0x9e,0xff,0xc7,0xd3,0xdc,0xff,0x88,0x8c,0xa4,0xb6,0xff,0x03,0x4a,0x6a,0x84, + 0xff,0x66,0x86,0x9e,0xff,0x50,0x50,0x50,0xff,0x82,0x00,0x00,0x00,0x00,0x82, + 0x36,0x36,0x36,0xff,0x82,0x00,0x00,0x00,0x00,0x0e,0x50,0x50,0x50,0xff,0x66, + 0x86,0x9e,0xff,0xc7,0xd3,0xdc,0xff,0x8c,0xa4,0xb6,0xff,0x76,0x90,0xa4,0xff, + 0xa5,0xb7,0xc5,0xff,0xc3,0xcf,0xda,0xff,0xa5,0xb8,0xc5,0xff,0x84,0x9c,0xb0, + 0xff,0x65,0x81,0x99,0xff,0x8c,0xa4,0xb6,0xff,0x4a,0x6a,0x84,0xff,0x66,0x86, + 0x9e,0xff,0x50,0x50,0x50,0xff,0x82,0x00,0x00,0x00,0x00,0x82,0x36,0x36,0x36, + 0xff,0x82,0x00,0x00,0x00,0x00,0x0e,0x50,0x50,0x50,0xff,0x66,0x86,0x9e,0xff, + 0xc7,0xd3,0xdc,0xff,0x8c,0xa4,0xb6,0xff,0x76,0x8f,0xa3,0xff,0xb3,0xc2,0xce, + 0xff,0xcf,0xd9,0xe2,0xff,0xa8,0xba,0xc7,0xff,0x7f,0x98,0xac,0xff,0x3f,0x5e, + 0x79,0xff,0x8c,0xa4,0xb6,0xff,0x4a,0x6a,0x84,0xff,0x66,0x86,0x9e,0xff,0x50, + 0x50,0x50,0xff,0x82,0x00,0x00,0x00,0x00,0x82,0x36,0x36,0x36,0xff,0x82,0x00, + 0x00,0x00,0x00,0x0e,0x50,0x50,0x50,0xff,0x66,0x86,0x9e,0xff,0xc7,0xd3,0xdc, + 0xff,0x8c,0xa4,0xb6,0xff,0x76,0x8f,0xa3,0xff,0xb3,0xc2,0xce,0xff,0xd7,0xdf, + 0xe7,0xff,0xa8,0xba,0xc7,0xff,0x7f,0x98,0xac,0xff,0x3f,0x5e,0x79,0xff,0x8c, + 0xa4,0xb6,0xff,0x4a,0x6a,0x84,0xff,0x66,0x86,0x9e,0xff,0x50,0x50,0x50,0xff, + 0x82,0x00,0x00,0x00,0x00,0x82,0x36,0x36,0x36,0xff,0x82,0x00,0x00,0x00,0x00, + 0x01,0x50,0x50,0x50,0xff,0x83,0x66,0x86,0x9e,0xff,0x06,0x76,0x8f,0xa3,0xff, + 0xb3,0xc2,0xce,0xff,0xe0,0xe7,0xec,0xff,0xa8,0xba,0xc7,0xff,0x7f,0x98,0xac, + 0xff,0x3f,0x5e,0x79,0xff,0x83,0x66,0x86,0x9e,0xff,0x01,0x50,0x50,0x50,0xff, + 0x82,0x00,0x00,0x00,0x00,0x82,0x36,0x36,0x36,0xff,0x82,0x00,0x00,0x00,0x00, + 0x84,0x50,0x50,0x50,0xff,0x06,0x76,0x8f,0xa3,0xff,0xb3,0xc2,0xce,0xff,0xea, + 0xee,0xf2,0xff,0xa8,0xba,0xc7,0xff,0x7f,0x98,0xac,0xff,0x3f,0x5e,0x79,0xff, + 0x84,0x50,0x50,0x50,0xff,0x82,0x00,0x00,0x00,0x00,0x82,0x36,0x36,0x36,0xff, + 0x86,0x00,0x00,0x00,0x00,0x06,0x76,0x8f,0xa3,0xff,0xb3,0xc2,0xce,0xff,0xf5, + 0xf7,0xf9,0xff,0xa8,0xba,0xc7,0xff,0x7f,0x98,0xac,0xff,0x3f,0x5e,0x79,0xff, + 0x86,0x00,0x00,0x00,0x00,0x88,0x36,0x36,0x36,0xff,0x06,0x76,0x8f,0xa3,0xff, + 0xb3,0xc2,0xce,0xff,0xfe,0xff,0xff,0xff,0xa8,0xba,0xc7,0xff,0x7f,0x98,0xac, + 0xff,0x3f,0x5e,0x79,0xff,0x87,0x36,0x36,0x36,0xff,0x87,0x00,0x00,0x00,0x00, + 0x06,0x76,0x8f,0xa3,0xff,0xb3,0xc2,0xce,0xff,0xff,0xff,0xff,0xff,0xa8,0xba, + 0xc7,0xff,0x7f,0x98,0xac,0xff,0x3f,0x5e,0x79,0xff,0x8e,0x00,0x00,0x00,0x00, + 0x06,0x76,0x8f,0xa3,0xff,0xb3,0xc2,0xce,0xff,0xff,0xff,0xff,0xff,0xa8,0xba, + 0xc7,0xff,0x7f,0x98,0xac,0xff,0x3f,0x5e,0x79,0xff,0x8e,0x00,0x00,0x00,0x00, + 0x06,0x76,0x8f,0xa3,0xff,0xb3,0xc2,0xce,0xff,0xff,0xff,0xff,0xff,0xa8,0xba, + 0xc7,0xff,0x7f,0x98,0xac,0xff,0x3f,0x5e,0x79,0xff,0x8e,0x00,0x00,0x00,0x00, + 0x06,0x76,0x8f,0xa3,0xf9,0xb3,0xc2,0xce,0xf9,0xff,0xff,0xff,0xff,0xa8,0xba, + 0xc7,0xf9,0x7f,0x98,0xac,0xf9,0x3f,0x5e,0x79,0xf9,0x8e,0x00,0x00,0x00,0x00, + 0x06,0x76,0x8f,0xa3,0xe8,0xb3,0xc2,0xce,0xe8,0xff,0xff,0xff,0xff,0xa8,0xba, + 0xc7,0xe8,0x7f,0x98,0xac,0xe8,0x3f,0x5e,0x79,0xe8,0x8e,0x00,0x00,0x00,0x00, + 0x06,0x76,0x8f,0xa3,0xd4,0xb3,0xc2,0xce,0xd4,0xff,0xff,0xff,0xff,0xa8,0xba, + 0xc7,0xd4,0x7f,0x98,0xac,0xd4,0x3f,0x5e,0x79,0xd4,0x8e,0x00,0x00,0x00,0x00, + 0x06,0x76,0x8f,0xa3,0xbd,0xb3,0xc2,0xce,0xbd,0xff,0xff,0xff,0xff,0xa8,0xba, + 0xc7,0xbd,0x7f,0x98,0xac,0xbd,0x3f,0x5e,0x79,0xbd,0x8e,0x00,0x00,0x00,0x00, + 0x06,0x76,0x8f,0xa3,0xa4,0xb3,0xc2,0xce,0xa4,0xff,0xff,0xff,0xff,0xa8,0xba, + 0xc7,0xa4,0x7f,0x98,0xac,0xa4,0x3f,0x5e,0x79,0xa4,0x8e,0x00,0x00,0x00,0x00, + 0x06,0x76,0x8f,0xa3,0x89,0xb3,0xc2,0xce,0x89,0xff,0xff,0xff,0xff,0xa8,0xba, + 0xc7,0x89,0x7f,0x98,0xac,0x89,0x3f,0x5e,0x79,0x89,0x8e,0x00,0x00,0x00,0x00, + 0x06,0x76,0x8f,0xa3,0x6c,0xb3,0xc2,0xce,0x6c,0xff,0xff,0xff,0xff,0xa8,0xba, + 0xc7,0x6c,0x7f,0x98,0xac,0x6c,0x3f,0x5e,0x79,0x6c,0x8e,0x00,0x00,0x00,0x00, + 0x06,0x76,0x8f,0xa3,0x4d,0xb3,0xc2,0xce,0x4d,0xff,0xff,0xff,0xff,0xa8,0xba, + 0xc7,0x4d,0x7f,0x98,0xac,0x4d,0x3f,0x5e,0x79,0x4d,0x8e,0x00,0x00,0x00,0x00, + 0x06,0x76,0x8f,0xa3,0x2c,0xb3,0xc2,0xce,0x2c,0xff,0xff,0xff,0xff,0xa8,0xba, + 0xc7,0x2c,0x7f,0x98,0xac,0x2c,0x3f,0x5e,0x79,0x2c,0x87,0x00,0x00,0x00,0x00 + +}; + +static const GdkPixdata rj45_input_pixdata = { + 0x47646b50, /* Pixbuf magic: 'GdkP' */ + 24 + 1050, /* header length + pixel_data length */ + 0x2010002, /* pixdata_type */ + 80, /* rowstride */ + 20, /* width */ + 28, /* height */ + rj45_input_pixdata_pixel_data /* pixel_data */ +}; diff --git a/src/image_data/rj45_output.h b/src/image_data/rj45_output.h deleted file mode 100644 index 7aa92d7..0000000 --- a/src/image_data/rj45_output.h +++ /dev/null @@ -1,53 +0,0 @@ -/* GIMP RGBA C-Source image dump 1-byte-run-length-encoded (rj45_output.c) */
-
-#include "image.h"
-
-static const nv_image_t rj45_output = {
- 20, 28, 4, 0,
- "\225666\377\222666\0\202666\377\1""666\0\206ddd\377\203\377\377\377\0\1""6"
- "66\0\206666\377\1""666\0\202666\377\2""666\0ddd\377\204y\236y\377\1ddd\377"
- "\204PPP\377\1""666\377\204\377\314\2\377\2""666\377\377\377\377\0\202666"
- "\377\2""666\0ddd\377\204y\236y\377\1ddd\377\204f\206\236\377\1""666\377\204"
- "\377\314\2\377\2""666\377\377\377\377\0\202666\377\1""666\0\206ddd\377\204"
- "f\206\236\377\206666\377\1\377\377\377\0\202666\377\3""666\0\377\377\377"
- "\0PPP\377\214f\206\236\377\1PPP\377\202\377\377\377\0\202666\377\4""666\0"
- "\377\377\377\0PPP\377f\206\236\377\211\307\323\334\377\3Jj\204\377f\206\236"
- "\377PPP\377\202\377\377\377\0\202666\377\5""666\0\377\377\377\0PPP\377f\206"
- "\236\377\307\323\334\377\210\214\244\266\377\3Jj\204\377f\206\236\377PPP"
- "\377\202\377\377\377\0\202666\377\20""666\0\377\377\377\0PPP\377f\206\236"
- "\377\307\323\334\377\214\244\266\377v\220\244\377\245\267\305\377\303\317"
- "\332\377\245\270\305\377\204\234\260\377e\201\231\377\214\244\266\377Jj\204"
- "\377f\206\236\377PPP\377\202\377\377\377\0\202666\377\20""666\0\377\377\377"
- "\0PPP\377f\206\236\377\307\323\334\377\214\244\266\377v\217\243\377\263\302"
- "\316\377\317\331\342\377\250\272\307\377\177\230\254\377?^y\377\214\244\266"
- "\377Jj\204\377f\206\236\377PPP\377\202\377\377\377\0\202666\377\20""666\0"
- "\377\377\377\0PPP\377f\206\236\377\307\323\334\377\214\244\266\377v\217\243"
- "\377\263\302\316\377\327\337\347\377\250\272\307\377\177\230\254\377?^y\377"
- "\214\244\266\377Jj\204\377f\206\236\377PPP\377\202\377\377\377\0\202666\377"
- "\3""666\0\377\377\377\0PPP\377\203f\206\236\377\6v\217\243\377\263\302\316"
- "\377\340\347\354\377\250\272\307\377\177\230\254\377?^y\377\203f\206\236"
- "\377\1PPP\377\202\377\377\377\0\202666\377\2""666\0\377\377\377\0\204PPP"
- "\377\6v\217\243\377\263\302\316\377\352\356\362\377\250\272\307\377\177\230"
- "\254\377?^y\377\204PPP\377\202666\0\202666\377\206666\0\6v\217\243\377\263"
- "\302\316\377\365\367\371\377\250\272\307\377\177\230\254\377?^y\377\2066"
- "66\0\210666\377\6v\217\243\377\263\302\316\377\376\377\377\377\250\272\307"
- "\377\177\230\254\377?^y\377\207666\377\207\377\377\377\0\6v\217\243\377\263"
- "\302\316\377\377\377\377\377\250\272\307\377\177\230\254\377?^y\377\216\377"
- "\377\377\0\6v\217\243\377\263\302\316\377\377\377\377\377\250\272\307\377"
- "\177\230\254\377?^y\377\216\377\377\377\0\6v\217\243\377\263\302\316\377"
- "\377\377\377\377\250\272\307\377\177\230\254\377?^y\377\216\377\377\377\0"
- "\6v\217\243\371\263\302\316\371\377\377\377\377\250\272\307\371\177\230\254"
- "\371?^y\371\216\377\377\377\0\6v\217\243\350\263\302\316\350\377\377\377"
- "\377\250\272\307\350\177\230\254\350?^y\350\216\377\377\377\0\6v\217\243"
- "\324\263\302\316\324\377\377\377\377\250\272\307\324\177\230\254\324?^y\324"
- "\216\377\377\377\0\6v\217\243\275\263\302\316\275\377\377\377\377\250\272"
- "\307\275\177\230\254\275?^y\275\216\377\377\377\0\6v\217\243\244\263\302"
- "\316\244\377\377\377\377\250\272\307\244\177\230\254\244?^y\244\216\377\377"
- "\377\0\6v\217\243\211\263\302\316\211\377\377\377\377\250\272\307\211\177"
- "\230\254\211?^y\211\216\377\377\377\0\6v\217\243l\263\302\316l\377\377\377"
- "\377\250\272\307l\177\230\254l?^yl\216\377\377\377\0\6v\217\243M\263\302"
- "\316M\377\377\377\377\250\272\307M\177\230\254M?^yM\216\377\377\377\0\6v"
- "\217\243,\263\302\316,\377\377\377\377\250\272\307,\177\230\254,?^y,\207"
- "\377\377\377\0",
-};
-
diff --git a/src/image_data/rj45_output_pixdata.h b/src/image_data/rj45_output_pixdata.h new file mode 100644 index 0000000..10669fc --- /dev/null +++ b/src/image_data/rj45_output_pixdata.h @@ -0,0 +1,87 @@ +/* GdkPixbuf RGBA C-Source image dump 1-byte-run-length-encoded */ + +static guint8 rj45_output_pixdata_pixel_data[] = { + 0x95,0x36,0x36,0x36,0xff,0x92,0x36,0x36,0x36,0x00,0x82,0x36,0x36,0x36,0xff, + 0x01,0x36,0x36,0x36,0x00,0x86,0x64,0x64,0x64,0xff,0x83,0xff,0xff,0xff,0x00, + 0x01,0x36,0x36,0x36,0x00,0x86,0x36,0x36,0x36,0xff,0x01,0x36,0x36,0x36,0x00, + 0x82,0x36,0x36,0x36,0xff,0x02,0x36,0x36,0x36,0x00,0x64,0x64,0x64,0xff,0x84, + 0x79,0x9e,0x79,0xff,0x01,0x64,0x64,0x64,0xff,0x84,0x50,0x50,0x50,0xff,0x01, + 0x36,0x36,0x36,0xff,0x84,0xff,0xcc,0x02,0xff,0x02,0x36,0x36,0x36,0xff,0xff, + 0xff,0xff,0x00,0x82,0x36,0x36,0x36,0xff,0x02,0x36,0x36,0x36,0x00,0x64,0x64, + 0x64,0xff,0x84,0x79,0x9e,0x79,0xff,0x01,0x64,0x64,0x64,0xff,0x84,0x66,0x86, + 0x9e,0xff,0x01,0x36,0x36,0x36,0xff,0x84,0xff,0xcc,0x02,0xff,0x02,0x36,0x36, + 0x36,0xff,0xff,0xff,0xff,0x00,0x82,0x36,0x36,0x36,0xff,0x01,0x36,0x36,0x36, + 0x00,0x86,0x64,0x64,0x64,0xff,0x84,0x66,0x86,0x9e,0xff,0x86,0x36,0x36,0x36, + 0xff,0x01,0xff,0xff,0xff,0x00,0x82,0x36,0x36,0x36,0xff,0x03,0x36,0x36,0x36, + 0x00,0xff,0xff,0xff,0x00,0x50,0x50,0x50,0xff,0x8c,0x66,0x86,0x9e,0xff,0x01, + 0x50,0x50,0x50,0xff,0x82,0xff,0xff,0xff,0x00,0x82,0x36,0x36,0x36,0xff,0x04, + 0x36,0x36,0x36,0x00,0xff,0xff,0xff,0x00,0x50,0x50,0x50,0xff,0x66,0x86,0x9e, + 0xff,0x89,0xc7,0xd3,0xdc,0xff,0x03,0x4a,0x6a,0x84,0xff,0x66,0x86,0x9e,0xff, + 0x50,0x50,0x50,0xff,0x82,0xff,0xff,0xff,0x00,0x82,0x36,0x36,0x36,0xff,0x05, + 0x36,0x36,0x36,0x00,0xff,0xff,0xff,0x00,0x50,0x50,0x50,0xff,0x66,0x86,0x9e, + 0xff,0xc7,0xd3,0xdc,0xff,0x88,0x8c,0xa4,0xb6,0xff,0x03,0x4a,0x6a,0x84,0xff, + 0x66,0x86,0x9e,0xff,0x50,0x50,0x50,0xff,0x82,0xff,0xff,0xff,0x00,0x82,0x36, + 0x36,0x36,0xff,0x10,0x36,0x36,0x36,0x00,0xff,0xff,0xff,0x00,0x50,0x50,0x50, + 0xff,0x66,0x86,0x9e,0xff,0xc7,0xd3,0xdc,0xff,0x8c,0xa4,0xb6,0xff,0x76,0x90, + 0xa4,0xff,0xa5,0xb7,0xc5,0xff,0xc3,0xcf,0xda,0xff,0xa5,0xb8,0xc5,0xff,0x84, + 0x9c,0xb0,0xff,0x65,0x81,0x99,0xff,0x8c,0xa4,0xb6,0xff,0x4a,0x6a,0x84,0xff, + 0x66,0x86,0x9e,0xff,0x50,0x50,0x50,0xff,0x82,0xff,0xff,0xff,0x00,0x82,0x36, + 0x36,0x36,0xff,0x10,0x36,0x36,0x36,0x00,0xff,0xff,0xff,0x00,0x50,0x50,0x50, + 0xff,0x66,0x86,0x9e,0xff,0xc7,0xd3,0xdc,0xff,0x8c,0xa4,0xb6,0xff,0x76,0x8f, + 0xa3,0xff,0xb3,0xc2,0xce,0xff,0xcf,0xd9,0xe2,0xff,0xa8,0xba,0xc7,0xff,0x7f, + 0x98,0xac,0xff,0x3f,0x5e,0x79,0xff,0x8c,0xa4,0xb6,0xff,0x4a,0x6a,0x84,0xff, + 0x66,0x86,0x9e,0xff,0x50,0x50,0x50,0xff,0x82,0xff,0xff,0xff,0x00,0x82,0x36, + 0x36,0x36,0xff,0x10,0x36,0x36,0x36,0x00,0xff,0xff,0xff,0x00,0x50,0x50,0x50, + 0xff,0x66,0x86,0x9e,0xff,0xc7,0xd3,0xdc,0xff,0x8c,0xa4,0xb6,0xff,0x76,0x8f, + 0xa3,0xff,0xb3,0xc2,0xce,0xff,0xd7,0xdf,0xe7,0xff,0xa8,0xba,0xc7,0xff,0x7f, + 0x98,0xac,0xff,0x3f,0x5e,0x79,0xff,0x8c,0xa4,0xb6,0xff,0x4a,0x6a,0x84,0xff, + 0x66,0x86,0x9e,0xff,0x50,0x50,0x50,0xff,0x82,0xff,0xff,0xff,0x00,0x82,0x36, + 0x36,0x36,0xff,0x03,0x36,0x36,0x36,0x00,0xff,0xff,0xff,0x00,0x50,0x50,0x50, + 0xff,0x83,0x66,0x86,0x9e,0xff,0x06,0x76,0x8f,0xa3,0xff,0xb3,0xc2,0xce,0xff, + 0xe0,0xe7,0xec,0xff,0xa8,0xba,0xc7,0xff,0x7f,0x98,0xac,0xff,0x3f,0x5e,0x79, + 0xff,0x83,0x66,0x86,0x9e,0xff,0x01,0x50,0x50,0x50,0xff,0x82,0xff,0xff,0xff, + 0x00,0x82,0x36,0x36,0x36,0xff,0x02,0x36,0x36,0x36,0x00,0xff,0xff,0xff,0x00, + 0x84,0x50,0x50,0x50,0xff,0x06,0x76,0x8f,0xa3,0xff,0xb3,0xc2,0xce,0xff,0xea, + 0xee,0xf2,0xff,0xa8,0xba,0xc7,0xff,0x7f,0x98,0xac,0xff,0x3f,0x5e,0x79,0xff, + 0x84,0x50,0x50,0x50,0xff,0x82,0x36,0x36,0x36,0x00,0x82,0x36,0x36,0x36,0xff, + 0x86,0x36,0x36,0x36,0x00,0x06,0x76,0x8f,0xa3,0xff,0xb3,0xc2,0xce,0xff,0xf5, + 0xf7,0xf9,0xff,0xa8,0xba,0xc7,0xff,0x7f,0x98,0xac,0xff,0x3f,0x5e,0x79,0xff, + 0x86,0x36,0x36,0x36,0x00,0x88,0x36,0x36,0x36,0xff,0x06,0x76,0x8f,0xa3,0xff, + 0xb3,0xc2,0xce,0xff,0xfe,0xff,0xff,0xff,0xa8,0xba,0xc7,0xff,0x7f,0x98,0xac, + 0xff,0x3f,0x5e,0x79,0xff,0x87,0x36,0x36,0x36,0xff,0x87,0xff,0xff,0xff,0x00, + 0x06,0x76,0x8f,0xa3,0xff,0xb3,0xc2,0xce,0xff,0xff,0xff,0xff,0xff,0xa8,0xba, + 0xc7,0xff,0x7f,0x98,0xac,0xff,0x3f,0x5e,0x79,0xff,0x8e,0xff,0xff,0xff,0x00, + 0x06,0x76,0x8f,0xa3,0xff,0xb3,0xc2,0xce,0xff,0xff,0xff,0xff,0xff,0xa8,0xba, + 0xc7,0xff,0x7f,0x98,0xac,0xff,0x3f,0x5e,0x79,0xff,0x8e,0xff,0xff,0xff,0x00, + 0x06,0x76,0x8f,0xa3,0xff,0xb3,0xc2,0xce,0xff,0xff,0xff,0xff,0xff,0xa8,0xba, + 0xc7,0xff,0x7f,0x98,0xac,0xff,0x3f,0x5e,0x79,0xff,0x8e,0xff,0xff,0xff,0x00, + 0x06,0x76,0x8f,0xa3,0xf9,0xb3,0xc2,0xce,0xf9,0xff,0xff,0xff,0xff,0xa8,0xba, + 0xc7,0xf9,0x7f,0x98,0xac,0xf9,0x3f,0x5e,0x79,0xf9,0x8e,0xff,0xff,0xff,0x00, + 0x06,0x76,0x8f,0xa3,0xe8,0xb3,0xc2,0xce,0xe8,0xff,0xff,0xff,0xff,0xa8,0xba, + 0xc7,0xe8,0x7f,0x98,0xac,0xe8,0x3f,0x5e,0x79,0xe8,0x8e,0xff,0xff,0xff,0x00, + 0x06,0x76,0x8f,0xa3,0xd4,0xb3,0xc2,0xce,0xd4,0xff,0xff,0xff,0xff,0xa8,0xba, + 0xc7,0xd4,0x7f,0x98,0xac,0xd4,0x3f,0x5e,0x79,0xd4,0x8e,0xff,0xff,0xff,0x00, + 0x06,0x76,0x8f,0xa3,0xbd,0xb3,0xc2,0xce,0xbd,0xff,0xff,0xff,0xff,0xa8,0xba, + 0xc7,0xbd,0x7f,0x98,0xac,0xbd,0x3f,0x5e,0x79,0xbd,0x8e,0xff,0xff,0xff,0x00, + 0x06,0x76,0x8f,0xa3,0xa4,0xb3,0xc2,0xce,0xa4,0xff,0xff,0xff,0xff,0xa8,0xba, + 0xc7,0xa4,0x7f,0x98,0xac,0xa4,0x3f,0x5e,0x79,0xa4,0x8e,0xff,0xff,0xff,0x00, + 0x06,0x76,0x8f,0xa3,0x89,0xb3,0xc2,0xce,0x89,0xff,0xff,0xff,0xff,0xa8,0xba, + 0xc7,0x89,0x7f,0x98,0xac,0x89,0x3f,0x5e,0x79,0x89,0x8e,0xff,0xff,0xff,0x00, + 0x06,0x76,0x8f,0xa3,0x6c,0xb3,0xc2,0xce,0x6c,0xff,0xff,0xff,0xff,0xa8,0xba, + 0xc7,0x6c,0x7f,0x98,0xac,0x6c,0x3f,0x5e,0x79,0x6c,0x8e,0xff,0xff,0xff,0x00, + 0x06,0x76,0x8f,0xa3,0x4d,0xb3,0xc2,0xce,0x4d,0xff,0xff,0xff,0xff,0xa8,0xba, + 0xc7,0x4d,0x7f,0x98,0xac,0x4d,0x3f,0x5e,0x79,0x4d,0x8e,0xff,0xff,0xff,0x00, + 0x06,0x76,0x8f,0xa3,0x2c,0xb3,0xc2,0xce,0x2c,0xff,0xff,0xff,0xff,0xa8,0xba, + 0xc7,0x2c,0x7f,0x98,0xac,0x2c,0x3f,0x5e,0x79,0x2c,0x87,0xff,0xff,0xff,0x00 + +}; + +static const GdkPixdata rj45_output_pixdata = { + 0x47646b50, /* Pixbuf magic: 'GdkP' */ + 24 + 1080, /* header length + pixel_data length */ + 0x2010002, /* pixdata_type */ + 80, /* rowstride */ + 20, /* width */ + 28, /* height */ + rj45_output_pixdata_pixel_data /* pixel_data */ +}; diff --git a/src/image_data/rj45_unused.h b/src/image_data/rj45_unused.h deleted file mode 100644 index a3d01bf..0000000 --- a/src/image_data/rj45_unused.h +++ /dev/null @@ -1,21 +0,0 @@ -/* GIMP RGBA C-Source image dump 1-byte-run-length-encoded (rj45_unused2.c) */ - -#include "image.h" - -static const nv_image_t rj45_unused = { - 20, 28, 4, 0, - "\225666\200\222\0\0\0\0\202666\200\1\0\0\0\0\206666\200\204\0\0\0\0\2066" - "66\200\1\0\0\0\0\202666\200\2\0\0\0\0""666\200\204\0\0\0\0\206666\200\204" - "\0\0\0\0\2""666\200\0\0\0\0\202666\200\2\0\0\0\0""666\200\204\0\0\0\0\1""6" - "66\200\204\0\0\0\0\1""666\200\204\0\0\0\0\2""666\200\0\0\0\0\202666\200\1" - "\0\0\0\0\206666\200\204\0\0\0\0\206666\200\1\0\0\0\0\202666\200\202\0\0\0" - "\0\1""666\200\214\0\0\0\0\1""666\200\202\0\0\0\0\202666\200\202\0\0\0\0\1" - """666\200\214\0\0\0\0\1""666\200\202\0\0\0\0\202666\200\202\0\0\0\0\1""6" - "66\200\214\0\0\0\0\1""666\200\202\0\0\0\0\202666\200\202\0\0\0\0\1""666\200" - "\214\0\0\0\0\1""666\200\202\0\0\0\0\202666\200\202\0\0\0\0\1""666\200\214" - "\0\0\0\0\1""666\200\202\0\0\0\0\202666\200\202\0\0\0\0\1""666\200\214\0\0" - "\0\0\1""666\200\202\0\0\0\0\202666\200\202\0\0\0\0\1""666\200\214\0\0\0\0" - "\1""666\200\202\0\0\0\0\202666\200\202\0\0\0\0\216666\200\202\0\0\0\0\202" - "666\200\222\0\0\0\0\225666\200\377\0\0\0\0\347\0\0\0\0\1\250\272\307,\211" - "\0\0\0\0", -}; diff --git a/src/image_data/rj45_unused_pixdata.h b/src/image_data/rj45_unused_pixdata.h new file mode 100644 index 0000000..bb2fb04 --- /dev/null +++ b/src/image_data/rj45_unused_pixdata.h @@ -0,0 +1,43 @@ +/* GdkPixbuf RGBA C-Source image dump 1-byte-run-length-encoded */ + +static guint8 rj45_unused_pixdata_pixel_data[] = { + 0x95,0x36,0x36,0x36,0x80,0x92,0x00,0x00,0x00,0x00,0x82,0x36,0x36,0x36,0x80, + 0x01,0x00,0x00,0x00,0x00,0x86,0x36,0x36,0x36,0x80,0x84,0x00,0x00,0x00,0x00, + 0x86,0x36,0x36,0x36,0x80,0x01,0x00,0x00,0x00,0x00,0x82,0x36,0x36,0x36,0x80, + 0x02,0x00,0x00,0x00,0x00,0x36,0x36,0x36,0x80,0x84,0x00,0x00,0x00,0x00,0x86, + 0x36,0x36,0x36,0x80,0x84,0x00,0x00,0x00,0x00,0x02,0x36,0x36,0x36,0x80,0x00, + 0x00,0x00,0x00,0x82,0x36,0x36,0x36,0x80,0x02,0x00,0x00,0x00,0x00,0x36,0x36, + 0x36,0x80,0x84,0x00,0x00,0x00,0x00,0x01,0x36,0x36,0x36,0x80,0x84,0x00,0x00, + 0x00,0x00,0x01,0x36,0x36,0x36,0x80,0x84,0x00,0x00,0x00,0x00,0x02,0x36,0x36, + 0x36,0x80,0x00,0x00,0x00,0x00,0x82,0x36,0x36,0x36,0x80,0x01,0x00,0x00,0x00, + 0x00,0x86,0x36,0x36,0x36,0x80,0x84,0x00,0x00,0x00,0x00,0x86,0x36,0x36,0x36, + 0x80,0x01,0x00,0x00,0x00,0x00,0x82,0x36,0x36,0x36,0x80,0x82,0x00,0x00,0x00, + 0x00,0x01,0x36,0x36,0x36,0x80,0x8c,0x00,0x00,0x00,0x00,0x01,0x36,0x36,0x36, + 0x80,0x82,0x00,0x00,0x00,0x00,0x82,0x36,0x36,0x36,0x80,0x82,0x00,0x00,0x00, + 0x00,0x01,0x36,0x36,0x36,0x80,0x8c,0x00,0x00,0x00,0x00,0x01,0x36,0x36,0x36, + 0x80,0x82,0x00,0x00,0x00,0x00,0x82,0x36,0x36,0x36,0x80,0x82,0x00,0x00,0x00, + 0x00,0x01,0x36,0x36,0x36,0x80,0x8c,0x00,0x00,0x00,0x00,0x01,0x36,0x36,0x36, + 0x80,0x82,0x00,0x00,0x00,0x00,0x82,0x36,0x36,0x36,0x80,0x82,0x00,0x00,0x00, + 0x00,0x01,0x36,0x36,0x36,0x80,0x8c,0x00,0x00,0x00,0x00,0x01,0x36,0x36,0x36, + 0x80,0x82,0x00,0x00,0x00,0x00,0x82,0x36,0x36,0x36,0x80,0x82,0x00,0x00,0x00, + 0x00,0x01,0x36,0x36,0x36,0x80,0x8c,0x00,0x00,0x00,0x00,0x01,0x36,0x36,0x36, + 0x80,0x82,0x00,0x00,0x00,0x00,0x82,0x36,0x36,0x36,0x80,0x82,0x00,0x00,0x00, + 0x00,0x01,0x36,0x36,0x36,0x80,0x8c,0x00,0x00,0x00,0x00,0x01,0x36,0x36,0x36, + 0x80,0x82,0x00,0x00,0x00,0x00,0x82,0x36,0x36,0x36,0x80,0x82,0x00,0x00,0x00, + 0x00,0x01,0x36,0x36,0x36,0x80,0x8c,0x00,0x00,0x00,0x00,0x01,0x36,0x36,0x36, + 0x80,0x82,0x00,0x00,0x00,0x00,0x82,0x36,0x36,0x36,0x80,0x82,0x00,0x00,0x00, + 0x00,0x8e,0x36,0x36,0x36,0x80,0x82,0x00,0x00,0x00,0x00,0x82,0x36,0x36,0x36, + 0x80,0x92,0x00,0x00,0x00,0x00,0x95,0x36,0x36,0x36,0x80,0xff,0x00,0x00,0x00, + 0x00,0xe7,0x00,0x00,0x00,0x00,0x01,0xa8,0xba,0xc7,0x2c,0x89,0x00,0x00,0x00, + 0x00 +}; + +static const GdkPixdata rj45_unused_pixdata = { + 0x47646b50, /* Pixbuf magic: 'GdkP' */ + 24 + 421, /* header length + pixel_data length */ + 0x2010002, /* pixdata_type */ + 80, /* rowstride */ + 20, /* width */ + 28, /* height */ + rj45_unused_pixdata_pixel_data /* pixel_data */ +}; diff --git a/src/image_data/rotate_left_off.h b/src/image_data/rotate_left_off.h deleted file mode 100644 index ac3416a..0000000 --- a/src/image_data/rotate_left_off.h +++ /dev/null @@ -1,101 +0,0 @@ -/* GIMP RGB C-Source image dump 1-byte-run-length-encoded (rotate_left_off.c) */
-
-#include "image.h"
-
-static const nv_image_t rotate_left_off_image = {
- 26, 26, 3, 0,
- "\231\230\230\230\177rrr\230\230\230\376\376\376\375\375\375\374\374\374\373"
- "\373\373\372\372\372\371\371\371\370\370\370\367\367\367\365\365\365\364"
- "\364\364\363\363\363\362\362\362\361\361\361\360\360\360\357\357\357\356"
- "\356\356\355\355\355\354\354\354\353\353\353\352\352\352\351\351\351\350"
- "\350\350\347\347\347\346\346\346222\230\230\230\375\375\375\374\374\374\373"
- "\373\373\372\372\372\371\371\371\367\367\367\366\366\366\365\365\365\364"
- "\364\364\363\363\363\362\362\362\361\361\361\360\360\360\357\357\357\356"
- "\356\356\355\355\355\354\354\354\353\353\353\352\352\352\351\351\351\347"
- "\347\347\346\346\346\345\345\345\344\344\344222\230\230\230\373\373\373\372"
- "\372\372\371\371\371\370\370\370\367\367\367\366\366\366\365\365\365\364"
- "\364\364\363\363\363\362\362\362\361\361\361\360\360\360\357\357\357\356"
- "\356\356\355\355\355\354\354\354\353\353\353\351\351\351\350\350\350\347"
- "\347\347\346\346\346\345\345\345\344\344\344\343\343\343222\230\230\230\372"
- "\372\372\371\371\371\370\370\370\367\367\367\366\366\366\365\365\365\364"
- "\364\364\363\363\363\362\362\362\361\361\361\360\360\360\356\356\356\355"
- "\355\355\354\354\354\353\353\353\352\352\352\351\351\351\350\350\350\347"
- "\347\347\346\346\346\345\345\345\344\344\344\343\343\343\342\342\342222\230"
- "\230\230\371\371\371\370\370\370\367\367\367\366\366\366\365\365\365\364"
- "\364\364\363\363\363\362\362\362\360\360\360\357\357\357\356\356\356\355"
- "\355\355\354\354\354\353\353\353\352\352\352\351\351\351\350\350\350\347"
- "\347\347\346\346\346\345\345\345\344\344\344\7\343\343\343\342\342\342\340"
- "\340\340222\230\230\230\370\370\370\367\367\367\202\365\365\365\13\363\363"
- "\363\362\362\362\361\361\361\360\360\360\357\357\357\356\356\356\355\355"
- "\355\354\354\354\353\353\353\315\315\315\221\221\221\202ttt\26\344\344\344"
- "\345\345\345\344\344\344\342\342\342\341\341\341\340\340\340\337\337\337"
- "222\230\230\230\366\366\366\365\365\365\364\364\364\363\363\363\362\362\362"
- "\361\361\361\360\360\360\357\357\357\356\356\356\355\355\355\354\354\354"
- "\315\315\315XXX\204%%%\25\340\340\340\343\343\343\342\342\342\341\341\341"
- "\340\340\340\337\337\337\336\336\336222\230\230\230\365\365\365\364\364\364"
- "\363\363\363\362\362\362\361\361\361\360\360\360\357\357\357\356\356\356"
- "\355\355\355\354\354\354\277\277\277$$$\205%%%\24\337\337\337\342\342\342"
- "\341\341\341\340\340\340\337\337\337\336\336\336\335\335\335222\230\230\230"
- "\364\364\364\363\363\363\362\362\362\361\361\361\360\360\360\357\357\357"
- "\356\356\356\354\354\354\353\353\353\315\315\315$$$\203%%%\1MMM\202\221\221"
- "\221\23\337\337\337\341\341\341\340\340\340\337\337\337\336\336\336\335\335"
- "\335\333\333\333222\230\230\230\363\363\363\362\362\362\360\360\360\357\357"
- "\357\356\356\356\355\355\355\354\354\354\353\353\353\352\352\352WWW\202%"
- "%%\27""222\272\272\272\376\376\376\371\371\371\360\360\360\341\341\341\340"
- "\340\340\336\336\336\335\335\335\334\334\334\333\333\333\332\332\332222\230"
- "\230\230\361\361\361\360\360\360\357\357\357\356\356\356\355\355\355\354"
- "\354\354\353\353\353\352\352\352\314\314\314\203%%%\27\272\272\272\374\374"
- "\374\353\353\353\342\342\342\340\340\340\337\337\337\336\336\336\335\335"
- "\335\334\334\334\333\333\333\332\332\332\331\331\331222\230\230\230\360\360"
- "\360\357\357\357\356\356\356\355\355\355\354\354\354\353\353\353\352\352"
- "\352\351\351\351\220\220\220\202%%%\24MMM\376\376\376\353\353\353\341\341"
- "\341\340\340\340\337\337\337\336\336\336\335\335\335\334\334\334\333\333"
- "\333\332\332\332\331\331\331\330\330\330222\230\230\230\357\357\357\356\356"
- "\356\355\355\355\354\354\354\353\353\353\202\351\351\351\2\347\347\347ss"
- "s\202%%%\40\221\221\221\371\371\371\341\341\341\340\340\340\337\337\337\336"
- "\336\336\335\335\335\334\334\334\333\333\333\332\332\332\331\331\331\327"
- "\327\327\326\326\326222\230\230\230\356\356\356\354\354\354\353\353\353\352"
- "\352\352\351\351\351+++\14\14\14\30\30\30$$$000<<<HHHTTTaaa\201\201\201\336"
- "\336\336\335\335\335\202\333\333\333(\331\331\331\330\330\330\327\327\327"
- "\326\326\326\325\325\325222\230\230\230\354\354\354\353\353\353\352\352\352"
- "\351\351\351\350\350\350\331\331\331%%%$$$000<<<HHHTTTaaavvv\366\366\366"
- "\370\370\370\333\333\333\332\332\332\331\331\331\330\330\330\327\327\327"
- "\326\326\326\325\325\325\324\324\324222\230\230\230\353\353\353\352\352\352"
- "\351\351\351\350\350\350\347\347\347\346\346\346\302\302\302\202<<<<HHHT"
- "TTaaavvv\345\345\345\374\374\374\335\335\335\332\332\332\331\331\331\330"
- "\330\330\327\327\327\326\326\326\325\325\325\324\324\324\323\323\323222\230"
- "\230\230\352\352\352\351\351\351\350\350\350\347\347\347\345\345\345\344"
- "\344\344\343\343\343\246\246\246HHHTTTaaammm\314\314\314\374\374\374\342"
- "\342\342\332\332\332\331\331\331\330\330\330\327\327\327\326\326\326\325"
- "\325\325\324\324\324\322\322\322\321\321\321222\230\230\230\351\351\351\347"
- "\347\347\346\346\346\345\345\345\344\344\344\343\343\343\342\342\342\341"
- "\341\341\237\237\237aaammm\273\273\273\376\376\376\350\350\350\332\332\332"
- "\331\331\331\327\327\327\202\326\326\326)\324\324\324\323\323\323\322\322"
- "\322\321\321\321\320\320\320222\230\230\230\347\347\347\346\346\346\345\345"
- "\345\344\344\344\343\343\343\342\342\342\341\341\341\340\340\340\337\337"
- "\337\234\234\234\252\252\252\376\376\376\355\355\355\331\331\331\330\330"
- "\330\327\327\327\326\326\326\325\325\325\324\324\324\323\323\323\322\322"
- "\322\321\321\321\320\320\320\317\317\317222\230\230\230\346\346\346\345\345"
- "\345\344\344\344\343\343\343\342\342\342\341\341\341\340\340\340\336\336"
- "\336\202\335\335\335\202\361\361\361!\331\331\331\330\330\330\327\327\327"
- "\326\326\326\325\325\325\324\324\324\323\323\323\322\322\322\321\321\321"
- "\320\320\320\317\317\317\316\316\316222\230\230\230\345\345\345\344\344\344"
- "\343\343\343\342\342\342\340\340\340\337\337\337\336\336\336\335\335\335"
- "\334\334\334\333\333\333\332\332\332\331\331\331\330\330\330\327\327\327"
- "\326\326\326\325\325\325\324\324\324\323\323\323\322\322\322\202\320\320"
- "\320)\317\317\317\315\315\315\314\314\314222\230\230\230\344\344\344\342"
- "\342\342\341\341\341\340\340\340\337\337\337\336\336\336\335\335\335\334"
- "\334\334\333\333\333\332\332\332\331\331\331\330\330\330\327\327\327\326"
- "\326\326\325\325\325\324\324\324\322\322\322\321\321\321\320\320\320\317"
- "\317\317\316\316\316\315\315\315\314\314\314\313\313\313222\230\230\230\342"
- "\342\342\341\341\341\340\340\340\337\337\337\336\336\336\335\335\335\334"
- "\334\334\333\333\333\332\332\332\331\331\331\202\327\327\327$\326\326\326"
- "\324\324\324\323\323\323\322\322\322\321\321\321\320\320\320\317\317\317"
- "\316\316\316\315\315\315\314\314\314\313\313\313\312\312\312222\230\230\230"
- "\341\341\341\340\340\340\337\337\337\336\336\336\335\335\335\334\334\334"
- "\333\333\333\331\331\331\330\330\330\327\327\327\326\326\326\325\325\325"
- "\324\324\324\323\323\323\322\322\322\321\321\321\320\320\320\317\317\317"
- "\316\316\316\315\315\315\314\314\314\313\313\313\202\311\311\311\2""222r"
- "rr\231222",
-};
-
diff --git a/src/image_data/rotate_left_off_pixdata.h b/src/image_data/rotate_left_off_pixdata.h new file mode 100644 index 0000000..bbd0282 --- /dev/null +++ b/src/image_data/rotate_left_off_pixdata.h @@ -0,0 +1,138 @@ +/* GdkPixbuf RGB C-Source image dump 1-byte-run-length-encoded */ + +static guint8 rotate_left_off_pixdata_pixel_data[] = { + 0x99,0x99,0x99,0x99,0x7f,0x72,0x72,0x72,0x99,0x99,0x99,0xff,0xff,0xff,0xfe, + 0xfe,0xfe,0xfd,0xfd,0xfd,0xfc,0xfc,0xfc,0xfb,0xfb,0xfb,0xfa,0xfa,0xfa,0xf9, + 0xf9,0xf9,0xf8,0xf8,0xf8,0xf6,0xf6,0xf6,0xf5,0xf5,0xf5,0xf4,0xf4,0xf4,0xf3, + 0xf3,0xf3,0xf2,0xf2,0xf2,0xf1,0xf1,0xf1,0xf0,0xf0,0xf0,0xef,0xef,0xef,0xee, + 0xee,0xee,0xed,0xed,0xed,0xec,0xec,0xec,0xeb,0xeb,0xeb,0xea,0xea,0xea,0xe9, + 0xe9,0xe9,0xe8,0xe8,0xe8,0xe7,0xe7,0xe7,0x32,0x32,0x32,0x99,0x99,0x99,0xfe, + 0xfe,0xfe,0xfd,0xfd,0xfd,0xfc,0xfc,0xfc,0xfb,0xfb,0xfb,0xfa,0xfa,0xfa,0xf8, + 0xf8,0xf8,0xf7,0xf7,0xf7,0xf6,0xf6,0xf6,0xf5,0xf5,0xf5,0xf4,0xf4,0xf4,0xf3, + 0xf3,0xf3,0xf2,0xf2,0xf2,0xf1,0xf1,0xf1,0xf0,0xf0,0xf0,0xef,0xef,0xef,0xee, + 0xee,0xee,0xed,0xed,0xed,0xec,0xec,0xec,0xeb,0xeb,0xeb,0xea,0xea,0xea,0xe8, + 0xe8,0xe8,0xe7,0xe7,0xe7,0xe6,0xe6,0xe6,0xe5,0xe5,0xe5,0x32,0x32,0x32,0x99, + 0x99,0x99,0xfc,0xfc,0xfc,0xfb,0xfb,0xfb,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf8, + 0xf8,0xf8,0xf7,0xf7,0xf7,0xf6,0xf6,0xf6,0xf5,0xf5,0xf5,0xf4,0xf4,0xf4,0xf3, + 0xf3,0xf3,0xf2,0xf2,0xf2,0xf1,0xf1,0xf1,0xf0,0xf0,0xf0,0xef,0xef,0xef,0xee, + 0xee,0xee,0xed,0xed,0xed,0xec,0xec,0xec,0xea,0xea,0xea,0xe9,0xe9,0xe9,0xe8, + 0xe8,0xe8,0xe7,0xe7,0xe7,0xe6,0xe6,0xe6,0xe5,0xe5,0xe5,0xe4,0xe4,0xe4,0x32, + 0x32,0x32,0x99,0x99,0x99,0xfb,0xfb,0xfb,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf8, + 0xf8,0xf8,0xf7,0xf7,0xf7,0xf6,0xf6,0xf6,0xf5,0xf5,0xf5,0xf4,0xf4,0xf4,0xf3, + 0xf3,0xf3,0xf2,0xf2,0xf2,0xf1,0xf1,0xf1,0xef,0xef,0xef,0xee,0xee,0xee,0xed, + 0xed,0xed,0xec,0xec,0xec,0xeb,0xeb,0xeb,0xea,0xea,0xea,0xe9,0xe9,0xe9,0xe8, + 0xe8,0xe8,0xe7,0xe7,0xe7,0xe6,0xe6,0xe6,0xe5,0xe5,0xe5,0xe4,0xe4,0xe4,0xe3, + 0xe3,0xe3,0x32,0x32,0x32,0x99,0x99,0x99,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf8, + 0xf8,0xf8,0xf7,0xf7,0xf7,0xf6,0xf6,0xf6,0xf5,0xf5,0xf5,0xf4,0xf4,0xf4,0xf3, + 0xf3,0xf3,0xf1,0xf1,0xf1,0xf0,0xf0,0xf0,0xef,0xef,0xef,0xee,0xee,0xee,0xed, + 0xed,0xed,0xec,0xec,0xec,0xeb,0xeb,0xeb,0xea,0xea,0xea,0xe9,0xe9,0xe9,0xe8, + 0xe8,0xe8,0xe7,0xe7,0xe7,0xe6,0xe6,0xe6,0xe5,0xe5,0xe5,0x07,0xe4,0xe4,0xe4, + 0xe3,0xe3,0xe3,0xe1,0xe1,0xe1,0x32,0x32,0x32,0x99,0x99,0x99,0xf9,0xf9,0xf9, + 0xf8,0xf8,0xf8,0x82,0xf6,0xf6,0xf6,0x0b,0xf4,0xf4,0xf4,0xf3,0xf3,0xf3,0xf2, + 0xf2,0xf2,0xf1,0xf1,0xf1,0xf0,0xf0,0xf0,0xef,0xef,0xef,0xee,0xee,0xee,0xed, + 0xed,0xed,0xec,0xec,0xec,0xce,0xce,0xce,0x92,0x92,0x92,0x82,0x74,0x74,0x74, + 0x16,0xe5,0xe5,0xe5,0xe6,0xe6,0xe6,0xe5,0xe5,0xe5,0xe3,0xe3,0xe3,0xe2,0xe2, + 0xe2,0xe1,0xe1,0xe1,0xe0,0xe0,0xe0,0x32,0x32,0x32,0x99,0x99,0x99,0xf7,0xf7, + 0xf7,0xf6,0xf6,0xf6,0xf5,0xf5,0xf5,0xf4,0xf4,0xf4,0xf3,0xf3,0xf3,0xf2,0xf2, + 0xf2,0xf1,0xf1,0xf1,0xf0,0xf0,0xf0,0xef,0xef,0xef,0xee,0xee,0xee,0xed,0xed, + 0xed,0xce,0xce,0xce,0x58,0x58,0x58,0x84,0x25,0x25,0x25,0x15,0xe1,0xe1,0xe1, + 0xe4,0xe4,0xe4,0xe3,0xe3,0xe3,0xe2,0xe2,0xe2,0xe1,0xe1,0xe1,0xe0,0xe0,0xe0, + 0xdf,0xdf,0xdf,0x32,0x32,0x32,0x99,0x99,0x99,0xf6,0xf6,0xf6,0xf5,0xf5,0xf5, + 0xf4,0xf4,0xf4,0xf3,0xf3,0xf3,0xf2,0xf2,0xf2,0xf1,0xf1,0xf1,0xf0,0xf0,0xf0, + 0xef,0xef,0xef,0xee,0xee,0xee,0xed,0xed,0xed,0xc0,0xc0,0xc0,0x24,0x24,0x24, + 0x85,0x25,0x25,0x25,0x14,0xe0,0xe0,0xe0,0xe3,0xe3,0xe3,0xe2,0xe2,0xe2,0xe1, + 0xe1,0xe1,0xe0,0xe0,0xe0,0xdf,0xdf,0xdf,0xde,0xde,0xde,0x32,0x32,0x32,0x99, + 0x99,0x99,0xf5,0xf5,0xf5,0xf4,0xf4,0xf4,0xf3,0xf3,0xf3,0xf2,0xf2,0xf2,0xf1, + 0xf1,0xf1,0xf0,0xf0,0xf0,0xef,0xef,0xef,0xed,0xed,0xed,0xec,0xec,0xec,0xce, + 0xce,0xce,0x24,0x24,0x24,0x83,0x25,0x25,0x25,0x01,0x4d,0x4d,0x4d,0x82,0x92, + 0x92,0x92,0x13,0xe0,0xe0,0xe0,0xe2,0xe2,0xe2,0xe1,0xe1,0xe1,0xe0,0xe0,0xe0, + 0xdf,0xdf,0xdf,0xde,0xde,0xde,0xdc,0xdc,0xdc,0x32,0x32,0x32,0x99,0x99,0x99, + 0xf4,0xf4,0xf4,0xf3,0xf3,0xf3,0xf1,0xf1,0xf1,0xf0,0xf0,0xf0,0xef,0xef,0xef, + 0xee,0xee,0xee,0xed,0xed,0xed,0xec,0xec,0xec,0xeb,0xeb,0xeb,0x57,0x57,0x57, + 0x82,0x25,0x25,0x25,0x17,0x32,0x32,0x32,0xbb,0xbb,0xbb,0xff,0xff,0xff,0xfa, + 0xfa,0xfa,0xf1,0xf1,0xf1,0xe2,0xe2,0xe2,0xe1,0xe1,0xe1,0xdf,0xdf,0xdf,0xde, + 0xde,0xde,0xdd,0xdd,0xdd,0xdc,0xdc,0xdc,0xdb,0xdb,0xdb,0x32,0x32,0x32,0x99, + 0x99,0x99,0xf2,0xf2,0xf2,0xf1,0xf1,0xf1,0xf0,0xf0,0xf0,0xef,0xef,0xef,0xee, + 0xee,0xee,0xed,0xed,0xed,0xec,0xec,0xec,0xeb,0xeb,0xeb,0xcd,0xcd,0xcd,0x83, + 0x25,0x25,0x25,0x17,0xbb,0xbb,0xbb,0xfd,0xfd,0xfd,0xec,0xec,0xec,0xe3,0xe3, + 0xe3,0xe1,0xe1,0xe1,0xe0,0xe0,0xe0,0xdf,0xdf,0xdf,0xde,0xde,0xde,0xdd,0xdd, + 0xdd,0xdc,0xdc,0xdc,0xdb,0xdb,0xdb,0xda,0xda,0xda,0x32,0x32,0x32,0x99,0x99, + 0x99,0xf1,0xf1,0xf1,0xf0,0xf0,0xf0,0xef,0xef,0xef,0xee,0xee,0xee,0xed,0xed, + 0xed,0xec,0xec,0xec,0xeb,0xeb,0xeb,0xea,0xea,0xea,0x91,0x91,0x91,0x82,0x25, + 0x25,0x25,0x14,0x4d,0x4d,0x4d,0xff,0xff,0xff,0xec,0xec,0xec,0xe2,0xe2,0xe2, + 0xe1,0xe1,0xe1,0xe0,0xe0,0xe0,0xdf,0xdf,0xdf,0xde,0xde,0xde,0xdd,0xdd,0xdd, + 0xdc,0xdc,0xdc,0xdb,0xdb,0xdb,0xda,0xda,0xda,0xd9,0xd9,0xd9,0x32,0x32,0x32, + 0x99,0x99,0x99,0xf0,0xf0,0xf0,0xef,0xef,0xef,0xee,0xee,0xee,0xed,0xed,0xed, + 0xec,0xec,0xec,0x82,0xea,0xea,0xea,0x02,0xe8,0xe8,0xe8,0x73,0x73,0x73,0x82, + 0x25,0x25,0x25,0x20,0x92,0x92,0x92,0xfa,0xfa,0xfa,0xe2,0xe2,0xe2,0xe1,0xe1, + 0xe1,0xe0,0xe0,0xe0,0xdf,0xdf,0xdf,0xde,0xde,0xde,0xdd,0xdd,0xdd,0xdc,0xdc, + 0xdc,0xdb,0xdb,0xdb,0xda,0xda,0xda,0xd8,0xd8,0xd8,0xd7,0xd7,0xd7,0x32,0x32, + 0x32,0x99,0x99,0x99,0xef,0xef,0xef,0xed,0xed,0xed,0xec,0xec,0xec,0xeb,0xeb, + 0xeb,0xea,0xea,0xea,0x2b,0x2b,0x2b,0x0c,0x0c,0x0c,0x18,0x18,0x18,0x24,0x24, + 0x24,0x30,0x30,0x30,0x3c,0x3c,0x3c,0x48,0x48,0x48,0x54,0x54,0x54,0x61,0x61, + 0x61,0x82,0x82,0x82,0xdf,0xdf,0xdf,0xde,0xde,0xde,0x82,0xdc,0xdc,0xdc,0x28, + 0xda,0xda,0xda,0xd9,0xd9,0xd9,0xd8,0xd8,0xd8,0xd7,0xd7,0xd7,0xd6,0xd6,0xd6, + 0x32,0x32,0x32,0x99,0x99,0x99,0xed,0xed,0xed,0xec,0xec,0xec,0xeb,0xeb,0xeb, + 0xea,0xea,0xea,0xe9,0xe9,0xe9,0xda,0xda,0xda,0x25,0x25,0x25,0x24,0x24,0x24, + 0x30,0x30,0x30,0x3c,0x3c,0x3c,0x48,0x48,0x48,0x54,0x54,0x54,0x61,0x61,0x61, + 0x76,0x76,0x76,0xf7,0xf7,0xf7,0xf9,0xf9,0xf9,0xdc,0xdc,0xdc,0xdb,0xdb,0xdb, + 0xda,0xda,0xda,0xd9,0xd9,0xd9,0xd8,0xd8,0xd8,0xd7,0xd7,0xd7,0xd6,0xd6,0xd6, + 0xd5,0xd5,0xd5,0x32,0x32,0x32,0x99,0x99,0x99,0xec,0xec,0xec,0xeb,0xeb,0xeb, + 0xea,0xea,0xea,0xe9,0xe9,0xe9,0xe8,0xe8,0xe8,0xe7,0xe7,0xe7,0xc3,0xc3,0xc3, + 0x82,0x3c,0x3c,0x3c,0x3c,0x48,0x48,0x48,0x54,0x54,0x54,0x61,0x61,0x61,0x76, + 0x76,0x76,0xe6,0xe6,0xe6,0xfd,0xfd,0xfd,0xde,0xde,0xde,0xdb,0xdb,0xdb,0xda, + 0xda,0xda,0xd9,0xd9,0xd9,0xd8,0xd8,0xd8,0xd7,0xd7,0xd7,0xd6,0xd6,0xd6,0xd5, + 0xd5,0xd5,0xd4,0xd4,0xd4,0x32,0x32,0x32,0x99,0x99,0x99,0xeb,0xeb,0xeb,0xea, + 0xea,0xea,0xe9,0xe9,0xe9,0xe8,0xe8,0xe8,0xe6,0xe6,0xe6,0xe5,0xe5,0xe5,0xe4, + 0xe4,0xe4,0xa7,0xa7,0xa7,0x48,0x48,0x48,0x54,0x54,0x54,0x61,0x61,0x61,0x6d, + 0x6d,0x6d,0xcd,0xcd,0xcd,0xfd,0xfd,0xfd,0xe3,0xe3,0xe3,0xdb,0xdb,0xdb,0xda, + 0xda,0xda,0xd9,0xd9,0xd9,0xd8,0xd8,0xd8,0xd7,0xd7,0xd7,0xd6,0xd6,0xd6,0xd5, + 0xd5,0xd5,0xd3,0xd3,0xd3,0xd2,0xd2,0xd2,0x32,0x32,0x32,0x99,0x99,0x99,0xea, + 0xea,0xea,0xe8,0xe8,0xe8,0xe7,0xe7,0xe7,0xe6,0xe6,0xe6,0xe5,0xe5,0xe5,0xe4, + 0xe4,0xe4,0xe3,0xe3,0xe3,0xe2,0xe2,0xe2,0xa0,0xa0,0xa0,0x61,0x61,0x61,0x6d, + 0x6d,0x6d,0xbc,0xbc,0xbc,0xff,0xff,0xff,0xe9,0xe9,0xe9,0xdb,0xdb,0xdb,0xda, + 0xda,0xda,0xd8,0xd8,0xd8,0x82,0xd7,0xd7,0xd7,0x29,0xd5,0xd5,0xd5,0xd4,0xd4, + 0xd4,0xd3,0xd3,0xd3,0xd2,0xd2,0xd2,0xd1,0xd1,0xd1,0x32,0x32,0x32,0x99,0x99, + 0x99,0xe8,0xe8,0xe8,0xe7,0xe7,0xe7,0xe6,0xe6,0xe6,0xe5,0xe5,0xe5,0xe4,0xe4, + 0xe4,0xe3,0xe3,0xe3,0xe2,0xe2,0xe2,0xe1,0xe1,0xe1,0xe0,0xe0,0xe0,0x9d,0x9d, + 0x9d,0xab,0xab,0xab,0xff,0xff,0xff,0xee,0xee,0xee,0xda,0xda,0xda,0xd9,0xd9, + 0xd9,0xd8,0xd8,0xd8,0xd7,0xd7,0xd7,0xd6,0xd6,0xd6,0xd5,0xd5,0xd5,0xd4,0xd4, + 0xd4,0xd3,0xd3,0xd3,0xd2,0xd2,0xd2,0xd1,0xd1,0xd1,0xd0,0xd0,0xd0,0x32,0x32, + 0x32,0x99,0x99,0x99,0xe7,0xe7,0xe7,0xe6,0xe6,0xe6,0xe5,0xe5,0xe5,0xe4,0xe4, + 0xe4,0xe3,0xe3,0xe3,0xe2,0xe2,0xe2,0xe1,0xe1,0xe1,0xdf,0xdf,0xdf,0x82,0xde, + 0xde,0xde,0x82,0xf2,0xf2,0xf2,0x21,0xda,0xda,0xda,0xd9,0xd9,0xd9,0xd8,0xd8, + 0xd8,0xd7,0xd7,0xd7,0xd6,0xd6,0xd6,0xd5,0xd5,0xd5,0xd4,0xd4,0xd4,0xd3,0xd3, + 0xd3,0xd2,0xd2,0xd2,0xd1,0xd1,0xd1,0xd0,0xd0,0xd0,0xcf,0xcf,0xcf,0x32,0x32, + 0x32,0x99,0x99,0x99,0xe6,0xe6,0xe6,0xe5,0xe5,0xe5,0xe4,0xe4,0xe4,0xe3,0xe3, + 0xe3,0xe1,0xe1,0xe1,0xe0,0xe0,0xe0,0xdf,0xdf,0xdf,0xde,0xde,0xde,0xdd,0xdd, + 0xdd,0xdc,0xdc,0xdc,0xdb,0xdb,0xdb,0xda,0xda,0xda,0xd9,0xd9,0xd9,0xd8,0xd8, + 0xd8,0xd7,0xd7,0xd7,0xd6,0xd6,0xd6,0xd5,0xd5,0xd5,0xd4,0xd4,0xd4,0xd3,0xd3, + 0xd3,0x82,0xd1,0xd1,0xd1,0x29,0xd0,0xd0,0xd0,0xce,0xce,0xce,0xcd,0xcd,0xcd, + 0x32,0x32,0x32,0x99,0x99,0x99,0xe5,0xe5,0xe5,0xe3,0xe3,0xe3,0xe2,0xe2,0xe2, + 0xe1,0xe1,0xe1,0xe0,0xe0,0xe0,0xdf,0xdf,0xdf,0xde,0xde,0xde,0xdd,0xdd,0xdd, + 0xdc,0xdc,0xdc,0xdb,0xdb,0xdb,0xda,0xda,0xda,0xd9,0xd9,0xd9,0xd8,0xd8,0xd8, + 0xd7,0xd7,0xd7,0xd6,0xd6,0xd6,0xd5,0xd5,0xd5,0xd3,0xd3,0xd3,0xd2,0xd2,0xd2, + 0xd1,0xd1,0xd1,0xd0,0xd0,0xd0,0xcf,0xcf,0xcf,0xce,0xce,0xce,0xcd,0xcd,0xcd, + 0xcc,0xcc,0xcc,0x32,0x32,0x32,0x99,0x99,0x99,0xe3,0xe3,0xe3,0xe2,0xe2,0xe2, + 0xe1,0xe1,0xe1,0xe0,0xe0,0xe0,0xdf,0xdf,0xdf,0xde,0xde,0xde,0xdd,0xdd,0xdd, + 0xdc,0xdc,0xdc,0xdb,0xdb,0xdb,0xda,0xda,0xda,0x82,0xd8,0xd8,0xd8,0x24,0xd7, + 0xd7,0xd7,0xd5,0xd5,0xd5,0xd4,0xd4,0xd4,0xd3,0xd3,0xd3,0xd2,0xd2,0xd2,0xd1, + 0xd1,0xd1,0xd0,0xd0,0xd0,0xcf,0xcf,0xcf,0xce,0xce,0xce,0xcd,0xcd,0xcd,0xcc, + 0xcc,0xcc,0xcb,0xcb,0xcb,0x32,0x32,0x32,0x99,0x99,0x99,0xe2,0xe2,0xe2,0xe1, + 0xe1,0xe1,0xe0,0xe0,0xe0,0xdf,0xdf,0xdf,0xde,0xde,0xde,0xdd,0xdd,0xdd,0xdc, + 0xdc,0xdc,0xda,0xda,0xda,0xd9,0xd9,0xd9,0xd8,0xd8,0xd8,0xd7,0xd7,0xd7,0xd6, + 0xd6,0xd6,0xd5,0xd5,0xd5,0xd4,0xd4,0xd4,0xd3,0xd3,0xd3,0xd2,0xd2,0xd2,0xd1, + 0xd1,0xd1,0xd0,0xd0,0xd0,0xcf,0xcf,0xcf,0xce,0xce,0xce,0xcd,0xcd,0xcd,0xcc, + 0xcc,0xcc,0x82,0xca,0xca,0xca,0x02,0x32,0x32,0x32,0x72,0x72,0x72,0x99,0x32, + 0x32,0x32 +}; + +static const GdkPixdata rotate_left_off_pixdata = { + 0x47646b50, /* Pixbuf magic: 'GdkP' */ + 24 + 1847, /* header length + pixel_data length */ + 0x2010001, /* pixdata_type */ + 78, /* rowstride */ + 26, /* width */ + 26, /* height */ + rotate_left_off_pixdata_pixel_data /* pixel_data */ +}; diff --git a/src/image_data/rotate_left_on.h b/src/image_data/rotate_left_on.h deleted file mode 100644 index 7f9bbe2..0000000 --- a/src/image_data/rotate_left_on.h +++ /dev/null @@ -1,95 +0,0 @@ -/* GIMP RGB C-Source image dump 1-byte-run-length-encoded (rotate_left_on.c) */
-
-#include "image.h"
-
-static const nv_image_t rotate_left_on_image = {
- 26, 26, 3, 0,
- "\231222\177\213\213\213222\306\306\306\304\304\304\302\302\302\300\300\300"
- "\277\277\277\275\275\275\273\273\273\271\271\271\267\267\267\265\265\265"
- "\264\264\264\262\262\262\260\260\260\256\256\256\254\254\254\252\252\252"
- "\250\250\250\247\247\247\245\245\245\243\243\243\241\241\241\237\237\237"
- "\235\235\235\234\234\234\300\300\300222\304\304\304\302\302\302\300\300\300"
- "\276\276\276\274\274\274\273\273\273\271\271\271\267\267\267\265\265\265"
- "\263\263\263\261\261\261\260\260\260\256\256\256\254\254\254\252\252\252"
- "\250\250\250\246\246\246\245\245\245\243\243\243\241\241\241\237\237\237"
- "\235\235\235\234\234\234\232\232\232\300\300\300222\301\301\301\300\300\300"
- "\276\276\276\274\274\274\272\272\272\270\270\270\266\266\266\265\265\265"
- "\263\263\263\261\261\261\257\257\257\255\255\255\253\253\253\252\252\252"
- "\250\250\250\246\246\246\244\244\244\242\242\242\240\240\240\237\237\237"
- "\235\235\235\233\233\233\231\231\231\227\227\227\300\300\300222\277\277\277"
- "\276\276\276\274\274\274\272\272\272\270\270\270\266\266\266\264\264\264"
- "\263\263\263\261\261\261\257\257\257\255\255\255\253\253\253\251\251\251"
- "\250\250\250\246\246\246\244\244\244\242\242\242\240\240\240\236\236\236"
- "\235\235\235\233\233\233\231\231\231\227\227\227\225\225\225\300\300\300"
- "222\275\275\275\273\273\273\271\271\271\270\270\270\266\266\266\264\264\264"
- "\262\262\262\260\260\260\256\256\256\255\255\255\253\253\253\251\251\251"
- "\247\247\247\245\245\245\243\243\243\242\242\242\240\240\240\236\236\236"
- "\234\234\234\232\232\232\230\230\230/\227\227\227\225\225\225\223\223\223"
- "\300\300\300222\273\273\273\271\271\271\267\267\267\266\266\266\264\264\264"
- "\262\262\262\260\260\260\256\256\256\254\254\254\252\252\252\251\251\251"
- "\247\247\247\245\245\245\216\216\216eeePPPOOObbb\231\231\231\230\230\230"
- "\226\226\226\224\224\224\222\222\222\221\221\221\300\300\300222\271\271\271"
- "\267\267\267\265\265\265\263\263\263\261\261\261\260\260\260\256\256\256"
- "\254\254\254\252\252\252\250\250\250\246\246\246\220\220\220===\0\0\0\40"
- "\40\40```\202\200\200\200\26\227\227\227\226\226\226\224\224\224\222\222"
- "\222\221\221\221\217\217\217\300\300\300222\267\267\267\265\265\265\263\263"
- "\263\261\261\261\257\257\257\255\255\255\253\253\253\252\252\252\250\250"
- "\250\246\246\246\205\205\205\12\12\12\40\40\40\237\237\237\204\376\376\376"
- "\25\227\227\227\224\224\224\222\222\222\220\220\220\216\216\216\214\214\214"
- "\300\300\300222\264\264\264\263\263\263\261\261\261\257\257\257\255\255\255"
- "\253\253\253\252\252\252\250\250\250\246\246\246\217\217\217\12\12\12""0"
- "00\357\357\357\205\376\376\376\24\226\226\226\222\222\222\220\220\220\216"
- "\216\216\214\214\214\212\212\212\300\300\300222\262\262\262\260\260\260\256"
- "\256\256\255\255\255\253\253\253\251\251\251\247\247\247\245\245\245\243"
- "\243\243===\40\40\40\357\357\357\203\376\376\376\26\353\353\353\312\312\312"
- "\311\311\311\223\223\223\217\217\217\216\216\216\214\214\214\212\212\212"
- "\210\210\210\300\300\300222\260\260\260\256\256\256\255\255\255\253\253\253"
- "\251\251\251\247\247\247\245\245\245\243\243\243\215\215\215\0\0\0\237\237"
- "\237\202\376\376\376\27\370\370\370\267\267\267\225\225\225\223\223\223\221"
- "\221\221\217\217\217\215\215\215\213\213\213\211\211\211\210\210\210\206"
- "\206\206\300\300\300222\256\256\256\254\254\254\252\252\252\250\250\250\246"
- "\246\246\245\245\245\243\243\243\241\241\241ddd\40\40\40\203\376\376\376"
- "\27\267\267\267\224\224\224\222\222\222\221\221\221\217\217\217\215\215\215"
- "\213\213\213\211\211\211\207\207\207\206\206\206\204\204\204\300\300\300"
- "222\254\254\254\252\252\252\250\250\250\246\246\246\244\244\244\242\242\242"
- "\241\241\241\237\237\237OOO```\202\376\376\376\24\353\353\353\224\224\224"
- "\222\222\222\220\220\220\216\216\216\214\214\214\212\212\212\211\211\211"
- "\207\207\207\205\205\205\203\203\203\201\201\201\300\300\300222\252\252\252"
- "\250\250\250\246\246\246\244\244\244\242\242\242\36\36\36\203\0\0\0\1\200"
- "\200\200\202\376\376\376\25\200\200\200\0\0\0\33\33\33\216\216\216\214\214"
- "\214\212\212\212\211\211\211\207\207\207\205\205\205\203\203\203\201\201"
- "\201\200\200\200\300\300\300222\247\247\247\245\245\245\243\243\243\242\242"
- "\242\240\240\240\224\224\224\321\321\321\210\376\376\376\23\351\351\351\212"
- "\212\212\210\210\210\206\206\206\204\204\204\203\203\203\201\201\201\200"
- "\200\200~~~\300\300\300222\245\245\245\243\243\243\242\242\242\240\240\240"
- "\236\236\236\234\234\234\205\205\205\360\360\360\206\376\376\376\6\367\367"
- "\367\221\221\221\210\210\210\206\206\206\204\204\204\202\202\202\202\200"
- "\200\200\15~~~|||\300\300\300222\243\243\243\241\241\241\237\237\237\235"
- "\235\235\234\234\234\232\232\232\230\230\230|||\357\357\357\204\376\376\376"
- "\26\367\367\367\237\237\237\207\207\207\206\206\206\204\204\204\202\202\202"
- "\200\200\200\177\177\177}}}|||zzz\300\300\300222\241\241\241\237\237\237"
- "\235\235\235\233\233\233\231\231\231\230\230\230\226\226\226\224\224\224"
- "\215\215\215\204\376\376\376\27\265\265\265\207\207\207\205\205\205\203\203"
- "\203\201\201\201\200\200\200\177\177\177}}}{{{yyywww\300\300\300222\237\237"
- "\237\235\235\235\233\233\233\231\231\231\227\227\227\225\225\225\224\224"
- "\224\222\222\222\220\220\220\231\231\231\202\376\376\376\177\304\304\304"
- "\207\207\207\205\205\205\203\203\203\201\201\201\200\200\200\177\177\177"
- "}}}{{{yyywwwvvv\300\300\300222\234\234\234\232\232\232\231\231\231\227\227"
- "\227\225\225\225\223\223\223\221\221\221\217\217\217\216\216\216\214\214"
- "\214\323\323\323\322\322\322\206\206\206\204\204\204\203\203\203\201\201"
- "\201\200\200\200~~~|||zzzyyywwwuuusss\300\300\300222\232\232\232\230\230"
- "\230\227\227\227\225\225\225\223\223\223\221\221\221\217\217\217\216\216"
- "\216\214\214\214\212\212\212\210\210\210\206\206\206\204\204\204\202\202"
- "\202\201\201\201\200\200\200~~~|||zzzxxxwwwuuusssqqq\300\300\300222\230\230"
- "\230\226\226\226\224\224\224\222\222\222\221\221\221\217\217\217\215\215"
- "\215\213\213\213\211\211\211\207\207\207\206\206\206\204\204\204\202\202"
- "\202\200\200\200\177\177\177}}}|||zzzxxxvvvtttrrrqqqooo\300\300\300222\226"
- "\226\226\224\224\224\222\222\222\220\220\220\217\217\217\215\215\215\213"
- "\213\213\211\211\211\207\207\207\205\205\205\203\203\203\202\202\202\200"
- "\200\200\177\177\177}}}{{{yyywwwvvvtttrrrpppnnnlll\300\300\300222\224\224"
- "\224\222\222\222\220\220\220\216\216\216\214\214\214\212\212\212\211\211"
- "\211\207\207\207\205\205\205\21\203\203\203\201\201\201\200\200\200\177\177"
- "\177}}}{{{yyywwwvvvtttrrrpppnnnlllkkk\300\300\300\213\213\213\231\300\300"
- "\300",
-};
-
diff --git a/src/image_data/rotate_left_on_pixdata.h b/src/image_data/rotate_left_on_pixdata.h new file mode 100644 index 0000000..c489283 --- /dev/null +++ b/src/image_data/rotate_left_on_pixdata.h @@ -0,0 +1,135 @@ +/* GdkPixbuf RGB C-Source image dump 1-byte-run-length-encoded */ + +static guint8 rotate_left_on_pixdata_pixel_data[] = { + 0x99,0x32,0x32,0x32,0x7f,0x8c,0x8c,0x8c,0x32,0x32,0x32,0xc7,0xc7,0xc7,0xc5, + 0xc5,0xc5,0xc3,0xc3,0xc3,0xc1,0xc1,0xc1,0xc0,0xc0,0xc0,0xbe,0xbe,0xbe,0xbc, + 0xbc,0xbc,0xba,0xba,0xba,0xb8,0xb8,0xb8,0xb6,0xb6,0xb6,0xb5,0xb5,0xb5,0xb3, + 0xb3,0xb3,0xb1,0xb1,0xb1,0xaf,0xaf,0xaf,0xad,0xad,0xad,0xab,0xab,0xab,0xa9, + 0xa9,0xa9,0xa8,0xa8,0xa8,0xa6,0xa6,0xa6,0xa4,0xa4,0xa4,0xa2,0xa2,0xa2,0xa0, + 0xa0,0xa0,0x9e,0x9e,0x9e,0x9d,0x9d,0x9d,0xc1,0xc1,0xc1,0x32,0x32,0x32,0xc5, + 0xc5,0xc5,0xc3,0xc3,0xc3,0xc1,0xc1,0xc1,0xbf,0xbf,0xbf,0xbd,0xbd,0xbd,0xbc, + 0xbc,0xbc,0xba,0xba,0xba,0xb8,0xb8,0xb8,0xb6,0xb6,0xb6,0xb4,0xb4,0xb4,0xb2, + 0xb2,0xb2,0xb1,0xb1,0xb1,0xaf,0xaf,0xaf,0xad,0xad,0xad,0xab,0xab,0xab,0xa9, + 0xa9,0xa9,0xa7,0xa7,0xa7,0xa6,0xa6,0xa6,0xa4,0xa4,0xa4,0xa2,0xa2,0xa2,0xa0, + 0xa0,0xa0,0x9e,0x9e,0x9e,0x9d,0x9d,0x9d,0x9b,0x9b,0x9b,0xc1,0xc1,0xc1,0x32, + 0x32,0x32,0xc2,0xc2,0xc2,0xc1,0xc1,0xc1,0xbf,0xbf,0xbf,0xbd,0xbd,0xbd,0xbb, + 0xbb,0xbb,0xb9,0xb9,0xb9,0xb7,0xb7,0xb7,0xb6,0xb6,0xb6,0xb4,0xb4,0xb4,0xb2, + 0xb2,0xb2,0xb0,0xb0,0xb0,0xae,0xae,0xae,0xac,0xac,0xac,0xab,0xab,0xab,0xa9, + 0xa9,0xa9,0xa7,0xa7,0xa7,0xa5,0xa5,0xa5,0xa3,0xa3,0xa3,0xa1,0xa1,0xa1,0xa0, + 0xa0,0xa0,0x9e,0x9e,0x9e,0x9c,0x9c,0x9c,0x9a,0x9a,0x9a,0x98,0x98,0x98,0xc1, + 0xc1,0xc1,0x32,0x32,0x32,0xc0,0xc0,0xc0,0xbf,0xbf,0xbf,0xbd,0xbd,0xbd,0xbb, + 0xbb,0xbb,0xb9,0xb9,0xb9,0xb7,0xb7,0xb7,0xb5,0xb5,0xb5,0xb4,0xb4,0xb4,0xb2, + 0xb2,0xb2,0xb0,0xb0,0xb0,0xae,0xae,0xae,0xac,0xac,0xac,0xaa,0xaa,0xaa,0xa9, + 0xa9,0xa9,0xa7,0xa7,0xa7,0xa5,0xa5,0xa5,0xa3,0xa3,0xa3,0xa1,0xa1,0xa1,0x9f, + 0x9f,0x9f,0x9e,0x9e,0x9e,0x9c,0x9c,0x9c,0x9a,0x9a,0x9a,0x98,0x98,0x98,0x96, + 0x96,0x96,0xc1,0xc1,0xc1,0x32,0x32,0x32,0xbe,0xbe,0xbe,0xbc,0xbc,0xbc,0xba, + 0xba,0xba,0xb9,0xb9,0xb9,0xb7,0xb7,0xb7,0xb5,0xb5,0xb5,0xb3,0xb3,0xb3,0xb1, + 0xb1,0xb1,0xaf,0xaf,0xaf,0xae,0xae,0xae,0xac,0xac,0xac,0xaa,0xaa,0xaa,0xa8, + 0xa8,0xa8,0xa6,0xa6,0xa6,0xa4,0xa4,0xa4,0xa3,0xa3,0xa3,0xa1,0xa1,0xa1,0x9f, + 0x9f,0x9f,0x9d,0x9d,0x9d,0x9b,0x9b,0x9b,0x99,0x99,0x99,0x2f,0x98,0x98,0x98, + 0x96,0x96,0x96,0x94,0x94,0x94,0xc1,0xc1,0xc1,0x32,0x32,0x32,0xbc,0xbc,0xbc, + 0xba,0xba,0xba,0xb8,0xb8,0xb8,0xb7,0xb7,0xb7,0xb5,0xb5,0xb5,0xb3,0xb3,0xb3, + 0xb1,0xb1,0xb1,0xaf,0xaf,0xaf,0xad,0xad,0xad,0xab,0xab,0xab,0xaa,0xaa,0xaa, + 0xa8,0xa8,0xa8,0xa6,0xa6,0xa6,0x8f,0x8f,0x8f,0x65,0x65,0x65,0x50,0x50,0x50, + 0x4f,0x4f,0x4f,0x62,0x62,0x62,0x9a,0x9a,0x9a,0x99,0x99,0x99,0x97,0x97,0x97, + 0x95,0x95,0x95,0x93,0x93,0x93,0x92,0x92,0x92,0xc1,0xc1,0xc1,0x32,0x32,0x32, + 0xba,0xba,0xba,0xb8,0xb8,0xb8,0xb6,0xb6,0xb6,0xb4,0xb4,0xb4,0xb2,0xb2,0xb2, + 0xb1,0xb1,0xb1,0xaf,0xaf,0xaf,0xad,0xad,0xad,0xab,0xab,0xab,0xa9,0xa9,0xa9, + 0xa7,0xa7,0xa7,0x91,0x91,0x91,0x3d,0x3d,0x3d,0x00,0x00,0x00,0x20,0x20,0x20, + 0x60,0x60,0x60,0x82,0x80,0x80,0x80,0x16,0x98,0x98,0x98,0x97,0x97,0x97,0x95, + 0x95,0x95,0x93,0x93,0x93,0x92,0x92,0x92,0x90,0x90,0x90,0xc1,0xc1,0xc1,0x32, + 0x32,0x32,0xb8,0xb8,0xb8,0xb6,0xb6,0xb6,0xb4,0xb4,0xb4,0xb2,0xb2,0xb2,0xb0, + 0xb0,0xb0,0xae,0xae,0xae,0xac,0xac,0xac,0xab,0xab,0xab,0xa9,0xa9,0xa9,0xa7, + 0xa7,0xa7,0x86,0x86,0x86,0x0a,0x0a,0x0a,0x20,0x20,0x20,0xa0,0xa0,0xa0,0x84, + 0xff,0xff,0xff,0x15,0x98,0x98,0x98,0x95,0x95,0x95,0x93,0x93,0x93,0x91,0x91, + 0x91,0x8f,0x8f,0x8f,0x8d,0x8d,0x8d,0xc1,0xc1,0xc1,0x32,0x32,0x32,0xb5,0xb5, + 0xb5,0xb4,0xb4,0xb4,0xb2,0xb2,0xb2,0xb0,0xb0,0xb0,0xae,0xae,0xae,0xac,0xac, + 0xac,0xab,0xab,0xab,0xa9,0xa9,0xa9,0xa7,0xa7,0xa7,0x90,0x90,0x90,0x0a,0x0a, + 0x0a,0x30,0x30,0x30,0xf0,0xf0,0xf0,0x85,0xff,0xff,0xff,0x14,0x97,0x97,0x97, + 0x93,0x93,0x93,0x91,0x91,0x91,0x8f,0x8f,0x8f,0x8d,0x8d,0x8d,0x8b,0x8b,0x8b, + 0xc1,0xc1,0xc1,0x32,0x32,0x32,0xb3,0xb3,0xb3,0xb1,0xb1,0xb1,0xaf,0xaf,0xaf, + 0xae,0xae,0xae,0xac,0xac,0xac,0xaa,0xaa,0xaa,0xa8,0xa8,0xa8,0xa6,0xa6,0xa6, + 0xa4,0xa4,0xa4,0x3d,0x3d,0x3d,0x20,0x20,0x20,0xf0,0xf0,0xf0,0x83,0xff,0xff, + 0xff,0x16,0xec,0xec,0xec,0xcb,0xcb,0xcb,0xca,0xca,0xca,0x94,0x94,0x94,0x90, + 0x90,0x90,0x8f,0x8f,0x8f,0x8d,0x8d,0x8d,0x8b,0x8b,0x8b,0x89,0x89,0x89,0xc1, + 0xc1,0xc1,0x32,0x32,0x32,0xb1,0xb1,0xb1,0xaf,0xaf,0xaf,0xae,0xae,0xae,0xac, + 0xac,0xac,0xaa,0xaa,0xaa,0xa8,0xa8,0xa8,0xa6,0xa6,0xa6,0xa4,0xa4,0xa4,0x8e, + 0x8e,0x8e,0x00,0x00,0x00,0xa0,0xa0,0xa0,0x82,0xff,0xff,0xff,0x17,0xf9,0xf9, + 0xf9,0xb8,0xb8,0xb8,0x96,0x96,0x96,0x94,0x94,0x94,0x92,0x92,0x92,0x90,0x90, + 0x90,0x8e,0x8e,0x8e,0x8c,0x8c,0x8c,0x8a,0x8a,0x8a,0x89,0x89,0x89,0x87,0x87, + 0x87,0xc1,0xc1,0xc1,0x32,0x32,0x32,0xaf,0xaf,0xaf,0xad,0xad,0xad,0xab,0xab, + 0xab,0xa9,0xa9,0xa9,0xa7,0xa7,0xa7,0xa6,0xa6,0xa6,0xa4,0xa4,0xa4,0xa2,0xa2, + 0xa2,0x64,0x64,0x64,0x20,0x20,0x20,0x83,0xff,0xff,0xff,0x17,0xb8,0xb8,0xb8, + 0x95,0x95,0x95,0x93,0x93,0x93,0x92,0x92,0x92,0x90,0x90,0x90,0x8e,0x8e,0x8e, + 0x8c,0x8c,0x8c,0x8a,0x8a,0x8a,0x88,0x88,0x88,0x87,0x87,0x87,0x85,0x85,0x85, + 0xc1,0xc1,0xc1,0x32,0x32,0x32,0xad,0xad,0xad,0xab,0xab,0xab,0xa9,0xa9,0xa9, + 0xa7,0xa7,0xa7,0xa5,0xa5,0xa5,0xa3,0xa3,0xa3,0xa2,0xa2,0xa2,0xa0,0xa0,0xa0, + 0x4f,0x4f,0x4f,0x60,0x60,0x60,0x82,0xff,0xff,0xff,0x14,0xec,0xec,0xec,0x95, + 0x95,0x95,0x93,0x93,0x93,0x91,0x91,0x91,0x8f,0x8f,0x8f,0x8d,0x8d,0x8d,0x8b, + 0x8b,0x8b,0x8a,0x8a,0x8a,0x88,0x88,0x88,0x86,0x86,0x86,0x84,0x84,0x84,0x82, + 0x82,0x82,0xc1,0xc1,0xc1,0x32,0x32,0x32,0xab,0xab,0xab,0xa9,0xa9,0xa9,0xa7, + 0xa7,0xa7,0xa5,0xa5,0xa5,0xa3,0xa3,0xa3,0x1e,0x1e,0x1e,0x83,0x00,0x00,0x00, + 0x01,0x80,0x80,0x80,0x82,0xff,0xff,0xff,0x15,0x80,0x80,0x80,0x00,0x00,0x00, + 0x1b,0x1b,0x1b,0x8f,0x8f,0x8f,0x8d,0x8d,0x8d,0x8b,0x8b,0x8b,0x8a,0x8a,0x8a, + 0x88,0x88,0x88,0x86,0x86,0x86,0x84,0x84,0x84,0x82,0x82,0x82,0x80,0x80,0x80, + 0xc1,0xc1,0xc1,0x32,0x32,0x32,0xa8,0xa8,0xa8,0xa6,0xa6,0xa6,0xa4,0xa4,0xa4, + 0xa3,0xa3,0xa3,0xa1,0xa1,0xa1,0x95,0x95,0x95,0xd2,0xd2,0xd2,0x88,0xff,0xff, + 0xff,0x13,0xea,0xea,0xea,0x8b,0x8b,0x8b,0x89,0x89,0x89,0x87,0x87,0x87,0x85, + 0x85,0x85,0x84,0x84,0x84,0x82,0x82,0x82,0x80,0x80,0x80,0x7e,0x7e,0x7e,0xc1, + 0xc1,0xc1,0x32,0x32,0x32,0xa6,0xa6,0xa6,0xa4,0xa4,0xa4,0xa3,0xa3,0xa3,0xa1, + 0xa1,0xa1,0x9f,0x9f,0x9f,0x9d,0x9d,0x9d,0x86,0x86,0x86,0xf1,0xf1,0xf1,0x86, + 0xff,0xff,0xff,0x15,0xf8,0xf8,0xf8,0x92,0x92,0x92,0x89,0x89,0x89,0x87,0x87, + 0x87,0x85,0x85,0x85,0x83,0x83,0x83,0x81,0x81,0x81,0x80,0x80,0x80,0x7e,0x7e, + 0x7e,0x7c,0x7c,0x7c,0xc1,0xc1,0xc1,0x32,0x32,0x32,0xa4,0xa4,0xa4,0xa2,0xa2, + 0xa2,0xa0,0xa0,0xa0,0x9e,0x9e,0x9e,0x9d,0x9d,0x9d,0x9b,0x9b,0x9b,0x99,0x99, + 0x99,0x7c,0x7c,0x7c,0xf0,0xf0,0xf0,0x84,0xff,0xff,0xff,0x16,0xf8,0xf8,0xf8, + 0xa0,0xa0,0xa0,0x88,0x88,0x88,0x87,0x87,0x87,0x85,0x85,0x85,0x83,0x83,0x83, + 0x81,0x81,0x81,0x7f,0x7f,0x7f,0x7d,0x7d,0x7d,0x7c,0x7c,0x7c,0x7a,0x7a,0x7a, + 0xc1,0xc1,0xc1,0x32,0x32,0x32,0xa2,0xa2,0xa2,0xa0,0xa0,0xa0,0x9e,0x9e,0x9e, + 0x9c,0x9c,0x9c,0x9a,0x9a,0x9a,0x99,0x99,0x99,0x97,0x97,0x97,0x95,0x95,0x95, + 0x8e,0x8e,0x8e,0x84,0xff,0xff,0xff,0x17,0xb6,0xb6,0xb6,0x88,0x88,0x88,0x86, + 0x86,0x86,0x84,0x84,0x84,0x82,0x82,0x82,0x81,0x81,0x81,0x7f,0x7f,0x7f,0x7d, + 0x7d,0x7d,0x7b,0x7b,0x7b,0x79,0x79,0x79,0x77,0x77,0x77,0xc1,0xc1,0xc1,0x32, + 0x32,0x32,0xa0,0xa0,0xa0,0x9e,0x9e,0x9e,0x9c,0x9c,0x9c,0x9a,0x9a,0x9a,0x98, + 0x98,0x98,0x96,0x96,0x96,0x95,0x95,0x95,0x93,0x93,0x93,0x91,0x91,0x91,0x9a, + 0x9a,0x9a,0x82,0xff,0xff,0xff,0x7f,0xc5,0xc5,0xc5,0x88,0x88,0x88,0x86,0x86, + 0x86,0x84,0x84,0x84,0x82,0x82,0x82,0x80,0x80,0x80,0x7f,0x7f,0x7f,0x7d,0x7d, + 0x7d,0x7b,0x7b,0x7b,0x79,0x79,0x79,0x77,0x77,0x77,0x76,0x76,0x76,0xc1,0xc1, + 0xc1,0x32,0x32,0x32,0x9d,0x9d,0x9d,0x9b,0x9b,0x9b,0x9a,0x9a,0x9a,0x98,0x98, + 0x98,0x96,0x96,0x96,0x94,0x94,0x94,0x92,0x92,0x92,0x90,0x90,0x90,0x8f,0x8f, + 0x8f,0x8d,0x8d,0x8d,0xd4,0xd4,0xd4,0xd3,0xd3,0xd3,0x87,0x87,0x87,0x85,0x85, + 0x85,0x84,0x84,0x84,0x82,0x82,0x82,0x80,0x80,0x80,0x7e,0x7e,0x7e,0x7c,0x7c, + 0x7c,0x7a,0x7a,0x7a,0x79,0x79,0x79,0x77,0x77,0x77,0x75,0x75,0x75,0x73,0x73, + 0x73,0xc1,0xc1,0xc1,0x32,0x32,0x32,0x9b,0x9b,0x9b,0x99,0x99,0x99,0x98,0x98, + 0x98,0x96,0x96,0x96,0x94,0x94,0x94,0x92,0x92,0x92,0x90,0x90,0x90,0x8f,0x8f, + 0x8f,0x8d,0x8d,0x8d,0x8b,0x8b,0x8b,0x89,0x89,0x89,0x87,0x87,0x87,0x85,0x85, + 0x85,0x83,0x83,0x83,0x82,0x82,0x82,0x80,0x80,0x80,0x7e,0x7e,0x7e,0x7c,0x7c, + 0x7c,0x7a,0x7a,0x7a,0x78,0x78,0x78,0x77,0x77,0x77,0x75,0x75,0x75,0x73,0x73, + 0x73,0x71,0x71,0x71,0xc1,0xc1,0xc1,0x32,0x32,0x32,0x99,0x99,0x99,0x97,0x97, + 0x97,0x95,0x95,0x95,0x93,0x93,0x93,0x92,0x92,0x92,0x90,0x90,0x90,0x8e,0x8e, + 0x8e,0x8c,0x8c,0x8c,0x8a,0x8a,0x8a,0x88,0x88,0x88,0x87,0x87,0x87,0x85,0x85, + 0x85,0x83,0x83,0x83,0x81,0x81,0x81,0x7f,0x7f,0x7f,0x7d,0x7d,0x7d,0x7c,0x7c, + 0x7c,0x7a,0x7a,0x7a,0x78,0x78,0x78,0x76,0x76,0x76,0x74,0x74,0x74,0x72,0x72, + 0x72,0x71,0x71,0x71,0x6f,0x6f,0x6f,0xc1,0xc1,0xc1,0x32,0x32,0x32,0x97,0x97, + 0x97,0x95,0x95,0x95,0x93,0x93,0x93,0x91,0x91,0x91,0x90,0x90,0x90,0x8e,0x8e, + 0x8e,0x8c,0x8c,0x8c,0x8a,0x8a,0x8a,0x88,0x88,0x88,0x86,0x86,0x86,0x84,0x84, + 0x84,0x83,0x83,0x83,0x81,0x81,0x81,0x7f,0x7f,0x7f,0x7d,0x7d,0x7d,0x7b,0x7b, + 0x7b,0x79,0x79,0x79,0x77,0x77,0x77,0x76,0x76,0x76,0x74,0x74,0x74,0x72,0x72, + 0x72,0x70,0x70,0x70,0x6e,0x6e,0x6e,0x6c,0x6c,0x6c,0xc1,0xc1,0xc1,0x32,0x32, + 0x32,0x95,0x95,0x95,0x93,0x93,0x93,0x91,0x91,0x91,0x8f,0x8f,0x8f,0x8d,0x8d, + 0x8d,0x8b,0x8b,0x8b,0x8a,0x8a,0x8a,0x88,0x88,0x88,0x86,0x86,0x86,0x11,0x84, + 0x84,0x84,0x82,0x82,0x82,0x80,0x80,0x80,0x7f,0x7f,0x7f,0x7d,0x7d,0x7d,0x7b, + 0x7b,0x7b,0x79,0x79,0x79,0x77,0x77,0x77,0x76,0x76,0x76,0x74,0x74,0x74,0x72, + 0x72,0x72,0x70,0x70,0x70,0x6e,0x6e,0x6e,0x6c,0x6c,0x6c,0x6b,0x6b,0x6b,0xc1, + 0xc1,0xc1,0x8c,0x8c,0x8c,0x99,0xc1,0xc1,0xc1 +}; + +static const GdkPixdata rotate_left_on_pixdata = { + 0x47646b50, /* Pixbuf magic: 'GdkP' */ + 24 + 1809, /* header length + pixel_data length */ + 0x2010001, /* pixdata_type */ + 78, /* rowstride */ + 26, /* width */ + 26, /* height */ + rotate_left_on_pixdata_pixel_data /* pixel_data */ +}; diff --git a/src/image_data/rotate_right_off.h b/src/image_data/rotate_right_off.h deleted file mode 100644 index e36c405..0000000 --- a/src/image_data/rotate_right_off.h +++ /dev/null @@ -1,101 +0,0 @@ -/* GIMP RGB C-Source image dump 1-byte-run-length-encoded (rotate_right_off.c) */
-
-#include "image.h"
-
-static const nv_image_t rotate_right_off_image = {
- 26, 26, 3, 0,
- "\231\230\230\230\177rrr\230\230\230\376\376\376\375\375\375\374\374\374\373"
- "\373\373\372\372\372\371\371\371\370\370\370\367\367\367\365\365\365\364"
- "\364\364\363\363\363\362\362\362\361\361\361\360\360\360\357\357\357\356"
- "\356\356\355\355\355\354\354\354\353\353\353\352\352\352\351\351\351\350"
- "\350\350\347\347\347\346\346\346222\230\230\230\375\375\375\374\374\374\373"
- "\373\373\372\372\372\371\371\371\367\367\367\366\366\366\365\365\365\364"
- "\364\364\363\363\363\362\362\362\361\361\361\360\360\360\357\357\357\356"
- "\356\356\355\355\355\354\354\354\353\353\353\352\352\352\351\351\351\347"
- "\347\347\346\346\346\345\345\345\344\344\344222\230\230\230\373\373\373\372"
- "\372\372\371\371\371\370\370\370\367\367\367\366\366\366\365\365\365\364"
- "\364\364\363\363\363\362\362\362\361\361\361\360\360\360\357\357\357\356"
- "\356\356\355\355\355\354\354\354\353\353\353\351\351\351\350\350\350\347"
- "\347\347\346\346\346\345\345\345\344\344\344\343\343\343222\230\230\230\372"
- "\372\372\371\371\371\370\370\370\367\367\367\366\366\366\365\365\365\364"
- "\364\364\363\363\363\362\362\362\361\361\361\360\360\360\356\356\356\355"
- "\355\355\354\354\354\353\353\353\352\352\352\351\351\351\350\350\350\347"
- "\347\347\346\346\346\345\345\345\344\344\344\343\343\343\342\342\342222\230"
- "\230\230\371\371\371\370\370\370\367\367\367\366\366\366\365\365\365\364"
- "\364\364\363\363\363\362\362\362\360\360\360\357\357\357\356\356\356\355"
- "\355\355\354\354\354\353\353\353\352\352\352\351\351\351\350\350\350\347"
- "\347\347\346\346\346\345\345\345\344\344\344\7\343\343\343\342\342\342\340"
- "\340\340222\230\230\230\370\370\370\367\367\367\202\365\365\365\34\363\363"
- "\363\362\362\362yyyxxx\225\225\225\320\320\320\355\355\355\354\354\354\353"
- "\353\353\352\352\352\351\351\351\350\350\350\347\347\347\346\346\346\345"
- "\345\345\344\344\344\342\342\342\341\341\341\340\340\340\337\337\337222\230"
- "\230\230\366\366\366\365\365\365\364\364\364\363\363\363\362\362\362\361"
- "\361\361\204%%%\4MMM\315\315\315\352\352\352\351\351\351\202\347\347\347"
- "\20\345\345\345\344\344\344\343\343\343\342\342\342\341\341\341\340\340\340"
- "\337\337\337\336\336\336222\230\230\230\365\365\365\364\364\364\363\363\363"
- "\362\362\362\361\361\361\360\360\360\205%%%\25---\244\244\244\347\347\347"
- "\346\346\346\345\345\345\344\344\344\343\343\343\342\342\342\341\341\341"
- "\340\340\340\337\337\337\336\336\336\335\335\335222\230\230\230\364\364\364"
- "\363\363\363\362\362\362\361\361\361\360\360\360\357\357\357\202\221\221"
- "\221\1MMM\203%%%\31""111\243\243\243\345\345\345\344\344\344\343\343\343"
- "\342\342\342\341\341\341\340\340\340\337\337\337\336\336\336\335\335\335"
- "\333\333\333222\230\230\230\363\363\363\362\362\362\360\360\360\357\357\357"
- "\356\356\356\355\355\355\373\373\373\365\365\365\364\364\364\257\257\257"
- "222\202%%%\30sss\347\347\347\343\343\343\342\342\342\341\341\341\340\340"
- "\340\336\336\336\335\335\335\334\334\334\333\333\333\332\332\332222\230\230"
- "\230\361\361\361\360\360\360\357\357\357\356\356\356\355\355\355\354\354"
- "\354\353\353\353\352\352\352\351\351\351\350\350\350~~~\203%%%\30\326\326"
- "\326\342\342\342\340\340\340\337\337\337\336\336\336\335\335\335\334\334"
- "\334\333\333\333\332\332\332\331\331\331222\230\230\230\360\360\360\357\357"
- "\357\356\356\356\355\355\355\354\354\354\353\353\353\352\352\352\351\351"
- "\351\350\350\350\347\347\347\345\345\345333\202%%%\21\254\254\254\344\344"
- "\344\337\337\337\336\336\336\335\335\335\334\334\334\333\333\333\332\332"
- "\332\331\331\331\330\330\330222\230\230\230\357\357\357\356\356\356\355\355"
- "\355\354\354\354\353\353\353\202\351\351\351\5\347\347\347\346\346\346\345"
- "\345\345\344\344\344rrr\202%%%J\221\221\221\353\353\353\336\336\336\335\335"
- "\335\334\334\334\333\333\333\332\332\332\331\331\331\327\327\327\326\326"
- "\326222\230\230\230\356\356\356\354\354\354\353\353\353\352\352\352\351\351"
- "\351\350\350\350\347\347\347\346\346\346***\14\14\14\30\30\30$$$000<<<HH"
- "HTTTaaa\200\200\200\333\333\333\331\331\331\330\330\330\327\327\327\326\326"
- "\326\325\325\325222\230\230\230\354\354\354\353\353\353\352\352\352\351\351"
- "\351\350\350\350\347\347\347\346\346\346\345\345\345\326\326\326%%%$$$00"
- "0<<<HHHTTTaaavvv\366\366\366\367\367\367\330\330\330\327\327\327\326\326"
- "\326\325\325\325\324\324\324222\230\230\230\353\353\353\352\352\352\351\351"
- "\351\350\350\350\347\347\347\346\346\346\345\345\345\344\344\344\343\343"
- "\343\300\300\300\202<<<9HHHTTTaaavvv\345\345\345\374\374\374\332\332\332"
- "\327\327\327\326\326\326\325\325\325\324\324\324\323\323\323222\230\230\230"
- "\352\352\352\351\351\351\350\350\350\347\347\347\345\345\345\344\344\344"
- "\343\343\343\342\342\342\341\341\341\340\340\340\245\245\245HHHTTTaaammm"
- "\314\314\314\374\374\374\337\337\337\327\327\327\326\326\326\325\325\325"
- "\324\324\324\322\322\322\321\321\321222\230\230\230\351\351\351\347\347\347"
- "\346\346\346\345\345\345\344\344\344\343\343\343\342\342\342\341\341\341"
- "\340\340\340\337\337\337\336\336\336\236\236\236aaammm\273\273\273\376\376"
- "\376\346\346\346\202\326\326\326)\324\324\324\323\323\323\322\322\322\321"
- "\321\321\320\320\320222\230\230\230\347\347\347\346\346\346\345\345\345\344"
- "\344\344\343\343\343\342\342\342\341\341\341\340\340\340\337\337\337\336"
- "\336\336\335\335\335\334\334\334\234\234\234\252\252\252\376\376\376\353"
- "\353\353\326\326\326\325\325\325\324\324\324\323\323\323\322\322\322\321"
- "\321\321\320\320\320\317\317\317222\230\230\230\346\346\346\345\345\345\344"
- "\344\344\343\343\343\342\342\342\341\341\341\340\340\340\336\336\336\202"
- "\335\335\335#\333\333\333\332\332\332\331\331\331\360\360\360\357\357\357"
- "\326\326\326\325\325\325\324\324\324\323\323\323\322\322\322\321\321\321"
- "\320\320\320\317\317\317\316\316\316222\230\230\230\345\345\345\344\344\344"
- "\343\343\343\342\342\342\340\340\340\337\337\337\336\336\336\335\335\335"
- "\334\334\334\333\333\333\332\332\332\331\331\331\330\330\330\327\327\327"
- "\326\326\326\325\325\325\324\324\324\323\323\323\322\322\322\202\320\320"
- "\320)\317\317\317\315\315\315\314\314\314222\230\230\230\344\344\344\342"
- "\342\342\341\341\341\340\340\340\337\337\337\336\336\336\335\335\335\334"
- "\334\334\333\333\333\332\332\332\331\331\331\330\330\330\327\327\327\326"
- "\326\326\325\325\325\324\324\324\322\322\322\321\321\321\320\320\320\317"
- "\317\317\316\316\316\315\315\315\314\314\314\313\313\313222\230\230\230\342"
- "\342\342\341\341\341\340\340\340\337\337\337\336\336\336\335\335\335\334"
- "\334\334\333\333\333\332\332\332\331\331\331\202\327\327\327$\326\326\326"
- "\324\324\324\323\323\323\322\322\322\321\321\321\320\320\320\317\317\317"
- "\316\316\316\315\315\315\314\314\314\313\313\313\312\312\312222\230\230\230"
- "\341\341\341\340\340\340\337\337\337\336\336\336\335\335\335\334\334\334"
- "\333\333\333\331\331\331\330\330\330\327\327\327\326\326\326\325\325\325"
- "\324\324\324\323\323\323\322\322\322\321\321\321\320\320\320\317\317\317"
- "\316\316\316\315\315\315\314\314\314\313\313\313\202\311\311\311\2""222r"
- "rr\231222",
-};
-
diff --git a/src/image_data/rotate_right_off_pixdata.h b/src/image_data/rotate_right_off_pixdata.h new file mode 100644 index 0000000..1eb0be1 --- /dev/null +++ b/src/image_data/rotate_right_off_pixdata.h @@ -0,0 +1,138 @@ +/* GdkPixbuf RGB C-Source image dump 1-byte-run-length-encoded */ + +static guint8 rotate_right_off_pixdata_pixel_data[] = { + 0x99,0x99,0x99,0x99,0x7f,0x72,0x72,0x72,0x99,0x99,0x99,0xff,0xff,0xff,0xfe, + 0xfe,0xfe,0xfd,0xfd,0xfd,0xfc,0xfc,0xfc,0xfb,0xfb,0xfb,0xfa,0xfa,0xfa,0xf9, + 0xf9,0xf9,0xf8,0xf8,0xf8,0xf6,0xf6,0xf6,0xf5,0xf5,0xf5,0xf4,0xf4,0xf4,0xf3, + 0xf3,0xf3,0xf2,0xf2,0xf2,0xf1,0xf1,0xf1,0xf0,0xf0,0xf0,0xef,0xef,0xef,0xee, + 0xee,0xee,0xed,0xed,0xed,0xec,0xec,0xec,0xeb,0xeb,0xeb,0xea,0xea,0xea,0xe9, + 0xe9,0xe9,0xe8,0xe8,0xe8,0xe7,0xe7,0xe7,0x32,0x32,0x32,0x99,0x99,0x99,0xfe, + 0xfe,0xfe,0xfd,0xfd,0xfd,0xfc,0xfc,0xfc,0xfb,0xfb,0xfb,0xfa,0xfa,0xfa,0xf8, + 0xf8,0xf8,0xf7,0xf7,0xf7,0xf6,0xf6,0xf6,0xf5,0xf5,0xf5,0xf4,0xf4,0xf4,0xf3, + 0xf3,0xf3,0xf2,0xf2,0xf2,0xf1,0xf1,0xf1,0xf0,0xf0,0xf0,0xef,0xef,0xef,0xee, + 0xee,0xee,0xed,0xed,0xed,0xec,0xec,0xec,0xeb,0xeb,0xeb,0xea,0xea,0xea,0xe8, + 0xe8,0xe8,0xe7,0xe7,0xe7,0xe6,0xe6,0xe6,0xe5,0xe5,0xe5,0x32,0x32,0x32,0x99, + 0x99,0x99,0xfc,0xfc,0xfc,0xfb,0xfb,0xfb,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf8, + 0xf8,0xf8,0xf7,0xf7,0xf7,0xf6,0xf6,0xf6,0xf5,0xf5,0xf5,0xf4,0xf4,0xf4,0xf3, + 0xf3,0xf3,0xf2,0xf2,0xf2,0xf1,0xf1,0xf1,0xf0,0xf0,0xf0,0xef,0xef,0xef,0xee, + 0xee,0xee,0xed,0xed,0xed,0xec,0xec,0xec,0xea,0xea,0xea,0xe9,0xe9,0xe9,0xe8, + 0xe8,0xe8,0xe7,0xe7,0xe7,0xe6,0xe6,0xe6,0xe5,0xe5,0xe5,0xe4,0xe4,0xe4,0x32, + 0x32,0x32,0x99,0x99,0x99,0xfb,0xfb,0xfb,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf8, + 0xf8,0xf8,0xf7,0xf7,0xf7,0xf6,0xf6,0xf6,0xf5,0xf5,0xf5,0xf4,0xf4,0xf4,0xf3, + 0xf3,0xf3,0xf2,0xf2,0xf2,0xf1,0xf1,0xf1,0xef,0xef,0xef,0xee,0xee,0xee,0xed, + 0xed,0xed,0xec,0xec,0xec,0xeb,0xeb,0xeb,0xea,0xea,0xea,0xe9,0xe9,0xe9,0xe8, + 0xe8,0xe8,0xe7,0xe7,0xe7,0xe6,0xe6,0xe6,0xe5,0xe5,0xe5,0xe4,0xe4,0xe4,0xe3, + 0xe3,0xe3,0x32,0x32,0x32,0x99,0x99,0x99,0xfa,0xfa,0xfa,0xf9,0xf9,0xf9,0xf8, + 0xf8,0xf8,0xf7,0xf7,0xf7,0xf6,0xf6,0xf6,0xf5,0xf5,0xf5,0xf4,0xf4,0xf4,0xf3, + 0xf3,0xf3,0xf1,0xf1,0xf1,0xf0,0xf0,0xf0,0xef,0xef,0xef,0xee,0xee,0xee,0xed, + 0xed,0xed,0xec,0xec,0xec,0xeb,0xeb,0xeb,0xea,0xea,0xea,0xe9,0xe9,0xe9,0xe8, + 0xe8,0xe8,0xe7,0xe7,0xe7,0xe6,0xe6,0xe6,0xe5,0xe5,0xe5,0x07,0xe4,0xe4,0xe4, + 0xe3,0xe3,0xe3,0xe1,0xe1,0xe1,0x32,0x32,0x32,0x99,0x99,0x99,0xf9,0xf9,0xf9, + 0xf8,0xf8,0xf8,0x82,0xf6,0xf6,0xf6,0x1c,0xf4,0xf4,0xf4,0xf3,0xf3,0xf3,0x79, + 0x79,0x79,0x78,0x78,0x78,0x96,0x96,0x96,0xd1,0xd1,0xd1,0xee,0xee,0xee,0xed, + 0xed,0xed,0xec,0xec,0xec,0xeb,0xeb,0xeb,0xea,0xea,0xea,0xe9,0xe9,0xe9,0xe8, + 0xe8,0xe8,0xe7,0xe7,0xe7,0xe6,0xe6,0xe6,0xe5,0xe5,0xe5,0xe3,0xe3,0xe3,0xe2, + 0xe2,0xe2,0xe1,0xe1,0xe1,0xe0,0xe0,0xe0,0x32,0x32,0x32,0x99,0x99,0x99,0xf7, + 0xf7,0xf7,0xf6,0xf6,0xf6,0xf5,0xf5,0xf5,0xf4,0xf4,0xf4,0xf3,0xf3,0xf3,0xf2, + 0xf2,0xf2,0x84,0x25,0x25,0x25,0x04,0x4d,0x4d,0x4d,0xce,0xce,0xce,0xeb,0xeb, + 0xeb,0xea,0xea,0xea,0x82,0xe8,0xe8,0xe8,0x10,0xe6,0xe6,0xe6,0xe5,0xe5,0xe5, + 0xe4,0xe4,0xe4,0xe3,0xe3,0xe3,0xe2,0xe2,0xe2,0xe1,0xe1,0xe1,0xe0,0xe0,0xe0, + 0xdf,0xdf,0xdf,0x32,0x32,0x32,0x99,0x99,0x99,0xf6,0xf6,0xf6,0xf5,0xf5,0xf5, + 0xf4,0xf4,0xf4,0xf3,0xf3,0xf3,0xf2,0xf2,0xf2,0xf1,0xf1,0xf1,0x85,0x25,0x25, + 0x25,0x15,0x2d,0x2d,0x2d,0xa5,0xa5,0xa5,0xe8,0xe8,0xe8,0xe7,0xe7,0xe7,0xe6, + 0xe6,0xe6,0xe5,0xe5,0xe5,0xe4,0xe4,0xe4,0xe3,0xe3,0xe3,0xe2,0xe2,0xe2,0xe1, + 0xe1,0xe1,0xe0,0xe0,0xe0,0xdf,0xdf,0xdf,0xde,0xde,0xde,0x32,0x32,0x32,0x99, + 0x99,0x99,0xf5,0xf5,0xf5,0xf4,0xf4,0xf4,0xf3,0xf3,0xf3,0xf2,0xf2,0xf2,0xf1, + 0xf1,0xf1,0xf0,0xf0,0xf0,0x82,0x92,0x92,0x92,0x01,0x4d,0x4d,0x4d,0x83,0x25, + 0x25,0x25,0x19,0x31,0x31,0x31,0xa4,0xa4,0xa4,0xe6,0xe6,0xe6,0xe5,0xe5,0xe5, + 0xe4,0xe4,0xe4,0xe3,0xe3,0xe3,0xe2,0xe2,0xe2,0xe1,0xe1,0xe1,0xe0,0xe0,0xe0, + 0xdf,0xdf,0xdf,0xde,0xde,0xde,0xdc,0xdc,0xdc,0x32,0x32,0x32,0x99,0x99,0x99, + 0xf4,0xf4,0xf4,0xf3,0xf3,0xf3,0xf1,0xf1,0xf1,0xf0,0xf0,0xf0,0xef,0xef,0xef, + 0xee,0xee,0xee,0xfc,0xfc,0xfc,0xf6,0xf6,0xf6,0xf5,0xf5,0xf5,0xb0,0xb0,0xb0, + 0x32,0x32,0x32,0x82,0x25,0x25,0x25,0x18,0x73,0x73,0x73,0xe8,0xe8,0xe8,0xe4, + 0xe4,0xe4,0xe3,0xe3,0xe3,0xe2,0xe2,0xe2,0xe1,0xe1,0xe1,0xdf,0xdf,0xdf,0xde, + 0xde,0xde,0xdd,0xdd,0xdd,0xdc,0xdc,0xdc,0xdb,0xdb,0xdb,0x32,0x32,0x32,0x99, + 0x99,0x99,0xf2,0xf2,0xf2,0xf1,0xf1,0xf1,0xf0,0xf0,0xf0,0xef,0xef,0xef,0xee, + 0xee,0xee,0xed,0xed,0xed,0xec,0xec,0xec,0xeb,0xeb,0xeb,0xea,0xea,0xea,0xe9, + 0xe9,0xe9,0x7e,0x7e,0x7e,0x83,0x25,0x25,0x25,0x18,0xd7,0xd7,0xd7,0xe3,0xe3, + 0xe3,0xe1,0xe1,0xe1,0xe0,0xe0,0xe0,0xdf,0xdf,0xdf,0xde,0xde,0xde,0xdd,0xdd, + 0xdd,0xdc,0xdc,0xdc,0xdb,0xdb,0xdb,0xda,0xda,0xda,0x32,0x32,0x32,0x99,0x99, + 0x99,0xf1,0xf1,0xf1,0xf0,0xf0,0xf0,0xef,0xef,0xef,0xee,0xee,0xee,0xed,0xed, + 0xed,0xec,0xec,0xec,0xeb,0xeb,0xeb,0xea,0xea,0xea,0xe9,0xe9,0xe9,0xe8,0xe8, + 0xe8,0xe6,0xe6,0xe6,0x33,0x33,0x33,0x82,0x25,0x25,0x25,0x11,0xad,0xad,0xad, + 0xe5,0xe5,0xe5,0xe0,0xe0,0xe0,0xdf,0xdf,0xdf,0xde,0xde,0xde,0xdd,0xdd,0xdd, + 0xdc,0xdc,0xdc,0xdb,0xdb,0xdb,0xda,0xda,0xda,0xd9,0xd9,0xd9,0x32,0x32,0x32, + 0x99,0x99,0x99,0xf0,0xf0,0xf0,0xef,0xef,0xef,0xee,0xee,0xee,0xed,0xed,0xed, + 0xec,0xec,0xec,0x82,0xea,0xea,0xea,0x05,0xe8,0xe8,0xe8,0xe7,0xe7,0xe7,0xe6, + 0xe6,0xe6,0xe5,0xe5,0xe5,0x72,0x72,0x72,0x82,0x25,0x25,0x25,0x4a,0x92,0x92, + 0x92,0xec,0xec,0xec,0xdf,0xdf,0xdf,0xde,0xde,0xde,0xdd,0xdd,0xdd,0xdc,0xdc, + 0xdc,0xdb,0xdb,0xdb,0xda,0xda,0xda,0xd8,0xd8,0xd8,0xd7,0xd7,0xd7,0x32,0x32, + 0x32,0x99,0x99,0x99,0xef,0xef,0xef,0xed,0xed,0xed,0xec,0xec,0xec,0xeb,0xeb, + 0xeb,0xea,0xea,0xea,0xe9,0xe9,0xe9,0xe8,0xe8,0xe8,0xe7,0xe7,0xe7,0x2a,0x2a, + 0x2a,0x0c,0x0c,0x0c,0x18,0x18,0x18,0x24,0x24,0x24,0x30,0x30,0x30,0x3c,0x3c, + 0x3c,0x48,0x48,0x48,0x54,0x54,0x54,0x61,0x61,0x61,0x81,0x81,0x81,0xdc,0xdc, + 0xdc,0xda,0xda,0xda,0xd9,0xd9,0xd9,0xd8,0xd8,0xd8,0xd7,0xd7,0xd7,0xd6,0xd6, + 0xd6,0x32,0x32,0x32,0x99,0x99,0x99,0xed,0xed,0xed,0xec,0xec,0xec,0xeb,0xeb, + 0xeb,0xea,0xea,0xea,0xe9,0xe9,0xe9,0xe8,0xe8,0xe8,0xe7,0xe7,0xe7,0xe6,0xe6, + 0xe6,0xd7,0xd7,0xd7,0x25,0x25,0x25,0x24,0x24,0x24,0x30,0x30,0x30,0x3c,0x3c, + 0x3c,0x48,0x48,0x48,0x54,0x54,0x54,0x61,0x61,0x61,0x76,0x76,0x76,0xf7,0xf7, + 0xf7,0xf8,0xf8,0xf8,0xd9,0xd9,0xd9,0xd8,0xd8,0xd8,0xd7,0xd7,0xd7,0xd6,0xd6, + 0xd6,0xd5,0xd5,0xd5,0x32,0x32,0x32,0x99,0x99,0x99,0xec,0xec,0xec,0xeb,0xeb, + 0xeb,0xea,0xea,0xea,0xe9,0xe9,0xe9,0xe8,0xe8,0xe8,0xe7,0xe7,0xe7,0xe6,0xe6, + 0xe6,0xe5,0xe5,0xe5,0xe4,0xe4,0xe4,0xc1,0xc1,0xc1,0x82,0x3c,0x3c,0x3c,0x39, + 0x48,0x48,0x48,0x54,0x54,0x54,0x61,0x61,0x61,0x76,0x76,0x76,0xe6,0xe6,0xe6, + 0xfd,0xfd,0xfd,0xdb,0xdb,0xdb,0xd8,0xd8,0xd8,0xd7,0xd7,0xd7,0xd6,0xd6,0xd6, + 0xd5,0xd5,0xd5,0xd4,0xd4,0xd4,0x32,0x32,0x32,0x99,0x99,0x99,0xeb,0xeb,0xeb, + 0xea,0xea,0xea,0xe9,0xe9,0xe9,0xe8,0xe8,0xe8,0xe6,0xe6,0xe6,0xe5,0xe5,0xe5, + 0xe4,0xe4,0xe4,0xe3,0xe3,0xe3,0xe2,0xe2,0xe2,0xe1,0xe1,0xe1,0xa6,0xa6,0xa6, + 0x48,0x48,0x48,0x54,0x54,0x54,0x61,0x61,0x61,0x6d,0x6d,0x6d,0xcd,0xcd,0xcd, + 0xfd,0xfd,0xfd,0xe0,0xe0,0xe0,0xd8,0xd8,0xd8,0xd7,0xd7,0xd7,0xd6,0xd6,0xd6, + 0xd5,0xd5,0xd5,0xd3,0xd3,0xd3,0xd2,0xd2,0xd2,0x32,0x32,0x32,0x99,0x99,0x99, + 0xea,0xea,0xea,0xe8,0xe8,0xe8,0xe7,0xe7,0xe7,0xe6,0xe6,0xe6,0xe5,0xe5,0xe5, + 0xe4,0xe4,0xe4,0xe3,0xe3,0xe3,0xe2,0xe2,0xe2,0xe1,0xe1,0xe1,0xe0,0xe0,0xe0, + 0xdf,0xdf,0xdf,0x9f,0x9f,0x9f,0x61,0x61,0x61,0x6d,0x6d,0x6d,0xbc,0xbc,0xbc, + 0xff,0xff,0xff,0xe7,0xe7,0xe7,0x82,0xd7,0xd7,0xd7,0x29,0xd5,0xd5,0xd5,0xd4, + 0xd4,0xd4,0xd3,0xd3,0xd3,0xd2,0xd2,0xd2,0xd1,0xd1,0xd1,0x32,0x32,0x32,0x99, + 0x99,0x99,0xe8,0xe8,0xe8,0xe7,0xe7,0xe7,0xe6,0xe6,0xe6,0xe5,0xe5,0xe5,0xe4, + 0xe4,0xe4,0xe3,0xe3,0xe3,0xe2,0xe2,0xe2,0xe1,0xe1,0xe1,0xe0,0xe0,0xe0,0xdf, + 0xdf,0xdf,0xde,0xde,0xde,0xdd,0xdd,0xdd,0x9d,0x9d,0x9d,0xab,0xab,0xab,0xff, + 0xff,0xff,0xec,0xec,0xec,0xd7,0xd7,0xd7,0xd6,0xd6,0xd6,0xd5,0xd5,0xd5,0xd4, + 0xd4,0xd4,0xd3,0xd3,0xd3,0xd2,0xd2,0xd2,0xd1,0xd1,0xd1,0xd0,0xd0,0xd0,0x32, + 0x32,0x32,0x99,0x99,0x99,0xe7,0xe7,0xe7,0xe6,0xe6,0xe6,0xe5,0xe5,0xe5,0xe4, + 0xe4,0xe4,0xe3,0xe3,0xe3,0xe2,0xe2,0xe2,0xe1,0xe1,0xe1,0xdf,0xdf,0xdf,0x82, + 0xde,0xde,0xde,0x23,0xdc,0xdc,0xdc,0xdb,0xdb,0xdb,0xda,0xda,0xda,0xf1,0xf1, + 0xf1,0xf0,0xf0,0xf0,0xd7,0xd7,0xd7,0xd6,0xd6,0xd6,0xd5,0xd5,0xd5,0xd4,0xd4, + 0xd4,0xd3,0xd3,0xd3,0xd2,0xd2,0xd2,0xd1,0xd1,0xd1,0xd0,0xd0,0xd0,0xcf,0xcf, + 0xcf,0x32,0x32,0x32,0x99,0x99,0x99,0xe6,0xe6,0xe6,0xe5,0xe5,0xe5,0xe4,0xe4, + 0xe4,0xe3,0xe3,0xe3,0xe1,0xe1,0xe1,0xe0,0xe0,0xe0,0xdf,0xdf,0xdf,0xde,0xde, + 0xde,0xdd,0xdd,0xdd,0xdc,0xdc,0xdc,0xdb,0xdb,0xdb,0xda,0xda,0xda,0xd9,0xd9, + 0xd9,0xd8,0xd8,0xd8,0xd7,0xd7,0xd7,0xd6,0xd6,0xd6,0xd5,0xd5,0xd5,0xd4,0xd4, + 0xd4,0xd3,0xd3,0xd3,0x82,0xd1,0xd1,0xd1,0x29,0xd0,0xd0,0xd0,0xce,0xce,0xce, + 0xcd,0xcd,0xcd,0x32,0x32,0x32,0x99,0x99,0x99,0xe5,0xe5,0xe5,0xe3,0xe3,0xe3, + 0xe2,0xe2,0xe2,0xe1,0xe1,0xe1,0xe0,0xe0,0xe0,0xdf,0xdf,0xdf,0xde,0xde,0xde, + 0xdd,0xdd,0xdd,0xdc,0xdc,0xdc,0xdb,0xdb,0xdb,0xda,0xda,0xda,0xd9,0xd9,0xd9, + 0xd8,0xd8,0xd8,0xd7,0xd7,0xd7,0xd6,0xd6,0xd6,0xd5,0xd5,0xd5,0xd3,0xd3,0xd3, + 0xd2,0xd2,0xd2,0xd1,0xd1,0xd1,0xd0,0xd0,0xd0,0xcf,0xcf,0xcf,0xce,0xce,0xce, + 0xcd,0xcd,0xcd,0xcc,0xcc,0xcc,0x32,0x32,0x32,0x99,0x99,0x99,0xe3,0xe3,0xe3, + 0xe2,0xe2,0xe2,0xe1,0xe1,0xe1,0xe0,0xe0,0xe0,0xdf,0xdf,0xdf,0xde,0xde,0xde, + 0xdd,0xdd,0xdd,0xdc,0xdc,0xdc,0xdb,0xdb,0xdb,0xda,0xda,0xda,0x82,0xd8,0xd8, + 0xd8,0x24,0xd7,0xd7,0xd7,0xd5,0xd5,0xd5,0xd4,0xd4,0xd4,0xd3,0xd3,0xd3,0xd2, + 0xd2,0xd2,0xd1,0xd1,0xd1,0xd0,0xd0,0xd0,0xcf,0xcf,0xcf,0xce,0xce,0xce,0xcd, + 0xcd,0xcd,0xcc,0xcc,0xcc,0xcb,0xcb,0xcb,0x32,0x32,0x32,0x99,0x99,0x99,0xe2, + 0xe2,0xe2,0xe1,0xe1,0xe1,0xe0,0xe0,0xe0,0xdf,0xdf,0xdf,0xde,0xde,0xde,0xdd, + 0xdd,0xdd,0xdc,0xdc,0xdc,0xda,0xda,0xda,0xd9,0xd9,0xd9,0xd8,0xd8,0xd8,0xd7, + 0xd7,0xd7,0xd6,0xd6,0xd6,0xd5,0xd5,0xd5,0xd4,0xd4,0xd4,0xd3,0xd3,0xd3,0xd2, + 0xd2,0xd2,0xd1,0xd1,0xd1,0xd0,0xd0,0xd0,0xcf,0xcf,0xcf,0xce,0xce,0xce,0xcd, + 0xcd,0xcd,0xcc,0xcc,0xcc,0x82,0xca,0xca,0xca,0x02,0x32,0x32,0x32,0x72,0x72, + 0x72,0x99,0x32,0x32,0x32 +}; + +static const GdkPixdata rotate_right_off_pixdata = { + 0x47646b50, /* Pixbuf magic: 'GdkP' */ + 24 + 1850, /* header length + pixel_data length */ + 0x2010001, /* pixdata_type */ + 78, /* rowstride */ + 26, /* width */ + 26, /* height */ + rotate_right_off_pixdata_pixel_data /* pixel_data */ +}; diff --git a/src/image_data/rotate_right_on.h b/src/image_data/rotate_right_on.h deleted file mode 100644 index 42f37f7..0000000 --- a/src/image_data/rotate_right_on.h +++ /dev/null @@ -1,95 +0,0 @@ -/* GIMP RGB C-Source image dump 1-byte-run-length-encoded (rotate_right_on.c) */
-
-#include "image.h"
-
-static const nv_image_t rotate_right_on_image = {
- 26, 26, 3, 0,
- "\231222\177\213\213\213222\306\306\306\304\304\304\302\302\302\300\300\300"
- "\277\277\277\275\275\275\273\273\273\271\271\271\267\267\267\265\265\265"
- "\264\264\264\262\262\262\260\260\260\256\256\256\254\254\254\252\252\252"
- "\250\250\250\247\247\247\245\245\245\243\243\243\241\241\241\237\237\237"
- "\235\235\235\234\234\234\300\300\300222\304\304\304\302\302\302\300\300\300"
- "\276\276\276\274\274\274\273\273\273\271\271\271\267\267\267\265\265\265"
- "\263\263\263\261\261\261\260\260\260\256\256\256\254\254\254\252\252\252"
- "\250\250\250\246\246\246\245\245\245\243\243\243\241\241\241\237\237\237"
- "\235\235\235\234\234\234\232\232\232\300\300\300222\301\301\301\300\300\300"
- "\276\276\276\274\274\274\272\272\272\270\270\270\266\266\266\265\265\265"
- "\263\263\263\261\261\261\257\257\257\255\255\255\253\253\253\252\252\252"
- "\250\250\250\246\246\246\244\244\244\242\242\242\240\240\240\237\237\237"
- "\235\235\235\233\233\233\231\231\231\227\227\227\300\300\300222\277\277\277"
- "\276\276\276\274\274\274\272\272\272\270\270\270\266\266\266\264\264\264"
- "\263\263\263\261\261\261\257\257\257\255\255\255\253\253\253\251\251\251"
- "\250\250\250\246\246\246\244\244\244\242\242\242\240\240\240\236\236\236"
- "\235\235\235\233\233\233\231\231\231\227\227\227\225\225\225\300\300\300"
- "222\275\275\275\273\273\273\271\271\271\270\270\270\266\266\266\264\264\264"
- "\262\262\262\260\260\260\256\256\256\255\255\255\253\253\253\251\251\251"
- "\247\247\247\245\245\245\243\243\243\242\242\242\240\240\240\236\236\236"
- "\234\234\234\232\232\232\230\230\230&\227\227\227\225\225\225\223\223\223"
- "\300\300\300222\273\273\273\271\271\271\267\267\267\266\266\266\264\264\264"
- "\262\262\262\260\260\260WWWlll\225\225\225\251\251\251\247\247\247\245\245"
- "\245\243\243\243\241\241\241\237\237\237\236\236\236\234\234\234\232\232"
- "\232\230\230\230\226\226\226\224\224\224\222\222\222\221\221\221\300\300"
- "\300222\271\271\271\267\267\267\265\265\265\263\263\263\261\261\261\260\260"
- "\260\256\256\256\202\200\200\200\30```666\220\220\220\243\243\243\241\241"
- "\241\237\237\237\235\235\235\234\234\234\232\232\232\230\230\230\226\226"
- "\226\224\224\224\222\222\222\221\221\221\217\217\217\300\300\300222\267\267"
- "\267\265\265\265\263\263\263\261\261\261\257\257\257\255\255\255\253\253"
- "\253\204\376\376\376\26\243\243\243rrr\237\237\237\235\235\235\233\233\233"
- "\231\231\231\227\227\227\225\225\225\224\224\224\222\222\222\220\220\220"
- "\216\216\216\214\214\214\300\300\300222\264\264\264\263\263\263\261\261\261"
- "\257\257\257\255\255\255\253\253\253\252\252\252\205\376\376\376\30\360\360"
- "\360\244\244\244\233\233\233\231\231\231\227\227\227\225\225\225\224\224"
- "\224\222\222\222\220\220\220\216\216\216\214\214\214\212\212\212\300\300"
- "\300222\262\262\262\260\260\260\256\256\256\255\255\255\253\253\253\251\251"
- "\251\247\247\247\322\322\322\321\321\321\354\354\354\203\376\376\376\31\365"
- "\365\365\245\245\245\227\227\227\225\225\225\223\223\223\221\221\221\217"
- "\217\217\216\216\216\214\214\214\212\212\212\210\210\210\300\300\300222\260"
- "\260\260\256\256\256\255\255\255\253\253\253\251\251\251\247\247\247\245"
- "\245\245\243\243\243\241\241\241\240\240\240\226\226\226\357\357\357\202"
- "\376\376\376\30\334\334\334\225\225\225\223\223\223\221\221\221\217\217\217"
- "\215\215\215\213\213\213\211\211\211\210\210\210\206\206\206\300\300\300"
- "222\256\256\256\254\254\254\252\252\252\250\250\250\246\246\246\245\245\245"
- "\243\243\243\241\241\241\237\237\237\235\235\235\234\234\234ZZZ\203\376\376"
- "\376\30\240\240\240\221\221\221\217\217\217\215\215\215\213\213\213\211\211"
- "\211\207\207\207\206\206\206\204\204\204\300\300\300222\254\254\254\252\252"
- "\252\250\250\250\246\246\246\244\244\244\242\242\242\241\241\241\237\237"
- "\237\235\235\235\233\233\233\231\231\231LLL\317\317\317\202\376\376\376\24"
- "\271\271\271\216\216\216\214\214\214\212\212\212\211\211\211\207\207\207"
- "\205\205\205\203\203\203\201\201\201\300\300\300222\252\252\252\250\250\250"
- "\246\246\246\244\244\244\242\242\242\240\240\240\237\237\237\235\235\235"
- "\35\35\35\203\0\0\0\1\200\200\200\202\376\376\376\25\200\200\200\0\0\0\32"
- "\32\32\211\211\211\207\207\207\205\205\205\203\203\203\201\201\201\200\200"
- "\200\300\300\300222\247\247\247\245\245\245\243\243\243\242\242\242\240\240"
- "\240\236\236\236\234\234\234\232\232\232\216\216\216\321\321\321\210\376"
- "\376\376\23\350\350\350\204\204\204\203\203\203\201\201\201\200\200\200~"
- "~~\300\300\300222\245\245\245\243\243\243\242\242\242\240\240\240\236\236"
- "\236\234\234\234\232\232\232\230\230\230\227\227\227\201\201\201\360\360"
- "\360\206\376\376\376\3\367\367\367\214\214\214\202\202\202\202\200\200\200"
- "\20~~~|||\300\300\300222\243\243\243\241\241\241\237\237\237\235\235\235"
- "\234\234\234\232\232\232\230\230\230\226\226\226\224\224\224\222\222\222"
- "zzz\357\357\357\204\376\376\376\26\367\367\367\233\233\233\202\202\202\200"
- "\200\200\177\177\177}}}|||zzz\300\300\300222\241\241\241\237\237\237\235"
- "\235\235\233\233\233\231\231\231\230\230\230\226\226\226\224\224\224\222"
- "\222\222\220\220\220\216\216\216\213\213\213\204\376\376\376\27\261\261\261"
- "\201\201\201\200\200\200\177\177\177}}}{{{yyywww\300\300\300222\237\237\237"
- "\235\235\235\233\233\233\231\231\231\227\227\227\225\225\225\224\224\224"
- "\222\222\222\220\220\220\216\216\216\214\214\214\212\212\212\230\230\230"
- "\202\376\376\376\177\301\301\301\201\201\201\200\200\200\177\177\177}}}{"
- "{{yyywwwvvv\300\300\300222\234\234\234\232\232\232\231\231\231\227\227\227"
- "\225\225\225\223\223\223\221\221\221\217\217\217\216\216\216\214\214\214"
- "\212\212\212\210\210\210\206\206\206\321\321\321\320\320\320\201\201\201"
- "\200\200\200~~~|||zzzyyywwwuuusss\300\300\300222\232\232\232\230\230\230"
- "\227\227\227\225\225\225\223\223\223\221\221\221\217\217\217\216\216\216"
- "\214\214\214\212\212\212\210\210\210\206\206\206\204\204\204\202\202\202"
- "\201\201\201\200\200\200~~~|||zzzxxxwwwuuusssqqq\300\300\300222\230\230\230"
- "\226\226\226\224\224\224\222\222\222\221\221\221\217\217\217\215\215\215"
- "\213\213\213\211\211\211\207\207\207\206\206\206\204\204\204\202\202\202"
- "\200\200\200\177\177\177}}}|||zzzxxxvvvtttrrrqqqooo\300\300\300222\226\226"
- "\226\224\224\224\222\222\222\220\220\220\217\217\217\215\215\215\213\213"
- "\213\211\211\211\207\207\207\205\205\205\203\203\203\202\202\202\200\200"
- "\200\177\177\177}}}{{{yyywwwvvvtttrrrpppnnnlll\300\300\300222\224\224\224"
- "\222\222\222\220\220\220\216\216\216\214\214\214\212\212\212\211\211\211"
- "\207\207\207\205\205\205\203\203\203\201\201\201\200\200\200\16\177\177\177"
- "}}}{{{yyywwwvvvtttrrrpppnnnlllkkk\300\300\300\213\213\213\231\300\300\300",
-};
-
diff --git a/src/image_data/rotate_right_on_pixdata.h b/src/image_data/rotate_right_on_pixdata.h new file mode 100644 index 0000000..c4acd08 --- /dev/null +++ b/src/image_data/rotate_right_on_pixdata.h @@ -0,0 +1,135 @@ +/* GdkPixbuf RGB C-Source image dump 1-byte-run-length-encoded */ + +static guint8 rotate_right_on_pixdata_pixel_data[] = { + 0x99,0x32,0x32,0x32,0x7f,0x8c,0x8c,0x8c,0x32,0x32,0x32,0xc7,0xc7,0xc7,0xc5, + 0xc5,0xc5,0xc3,0xc3,0xc3,0xc1,0xc1,0xc1,0xc0,0xc0,0xc0,0xbe,0xbe,0xbe,0xbc, + 0xbc,0xbc,0xba,0xba,0xba,0xb8,0xb8,0xb8,0xb6,0xb6,0xb6,0xb5,0xb5,0xb5,0xb3, + 0xb3,0xb3,0xb1,0xb1,0xb1,0xaf,0xaf,0xaf,0xad,0xad,0xad,0xab,0xab,0xab,0xa9, + 0xa9,0xa9,0xa8,0xa8,0xa8,0xa6,0xa6,0xa6,0xa4,0xa4,0xa4,0xa2,0xa2,0xa2,0xa0, + 0xa0,0xa0,0x9e,0x9e,0x9e,0x9d,0x9d,0x9d,0xc1,0xc1,0xc1,0x32,0x32,0x32,0xc5, + 0xc5,0xc5,0xc3,0xc3,0xc3,0xc1,0xc1,0xc1,0xbf,0xbf,0xbf,0xbd,0xbd,0xbd,0xbc, + 0xbc,0xbc,0xba,0xba,0xba,0xb8,0xb8,0xb8,0xb6,0xb6,0xb6,0xb4,0xb4,0xb4,0xb2, + 0xb2,0xb2,0xb1,0xb1,0xb1,0xaf,0xaf,0xaf,0xad,0xad,0xad,0xab,0xab,0xab,0xa9, + 0xa9,0xa9,0xa7,0xa7,0xa7,0xa6,0xa6,0xa6,0xa4,0xa4,0xa4,0xa2,0xa2,0xa2,0xa0, + 0xa0,0xa0,0x9e,0x9e,0x9e,0x9d,0x9d,0x9d,0x9b,0x9b,0x9b,0xc1,0xc1,0xc1,0x32, + 0x32,0x32,0xc2,0xc2,0xc2,0xc1,0xc1,0xc1,0xbf,0xbf,0xbf,0xbd,0xbd,0xbd,0xbb, + 0xbb,0xbb,0xb9,0xb9,0xb9,0xb7,0xb7,0xb7,0xb6,0xb6,0xb6,0xb4,0xb4,0xb4,0xb2, + 0xb2,0xb2,0xb0,0xb0,0xb0,0xae,0xae,0xae,0xac,0xac,0xac,0xab,0xab,0xab,0xa9, + 0xa9,0xa9,0xa7,0xa7,0xa7,0xa5,0xa5,0xa5,0xa3,0xa3,0xa3,0xa1,0xa1,0xa1,0xa0, + 0xa0,0xa0,0x9e,0x9e,0x9e,0x9c,0x9c,0x9c,0x9a,0x9a,0x9a,0x98,0x98,0x98,0xc1, + 0xc1,0xc1,0x32,0x32,0x32,0xc0,0xc0,0xc0,0xbf,0xbf,0xbf,0xbd,0xbd,0xbd,0xbb, + 0xbb,0xbb,0xb9,0xb9,0xb9,0xb7,0xb7,0xb7,0xb5,0xb5,0xb5,0xb4,0xb4,0xb4,0xb2, + 0xb2,0xb2,0xb0,0xb0,0xb0,0xae,0xae,0xae,0xac,0xac,0xac,0xaa,0xaa,0xaa,0xa9, + 0xa9,0xa9,0xa7,0xa7,0xa7,0xa5,0xa5,0xa5,0xa3,0xa3,0xa3,0xa1,0xa1,0xa1,0x9f, + 0x9f,0x9f,0x9e,0x9e,0x9e,0x9c,0x9c,0x9c,0x9a,0x9a,0x9a,0x98,0x98,0x98,0x96, + 0x96,0x96,0xc1,0xc1,0xc1,0x32,0x32,0x32,0xbe,0xbe,0xbe,0xbc,0xbc,0xbc,0xba, + 0xba,0xba,0xb9,0xb9,0xb9,0xb7,0xb7,0xb7,0xb5,0xb5,0xb5,0xb3,0xb3,0xb3,0xb1, + 0xb1,0xb1,0xaf,0xaf,0xaf,0xae,0xae,0xae,0xac,0xac,0xac,0xaa,0xaa,0xaa,0xa8, + 0xa8,0xa8,0xa6,0xa6,0xa6,0xa4,0xa4,0xa4,0xa3,0xa3,0xa3,0xa1,0xa1,0xa1,0x9f, + 0x9f,0x9f,0x9d,0x9d,0x9d,0x9b,0x9b,0x9b,0x99,0x99,0x99,0x26,0x98,0x98,0x98, + 0x96,0x96,0x96,0x94,0x94,0x94,0xc1,0xc1,0xc1,0x32,0x32,0x32,0xbc,0xbc,0xbc, + 0xba,0xba,0xba,0xb8,0xb8,0xb8,0xb7,0xb7,0xb7,0xb5,0xb5,0xb5,0xb3,0xb3,0xb3, + 0xb1,0xb1,0xb1,0x57,0x57,0x57,0x6c,0x6c,0x6c,0x96,0x96,0x96,0xaa,0xaa,0xaa, + 0xa8,0xa8,0xa8,0xa6,0xa6,0xa6,0xa4,0xa4,0xa4,0xa2,0xa2,0xa2,0xa0,0xa0,0xa0, + 0x9f,0x9f,0x9f,0x9d,0x9d,0x9d,0x9b,0x9b,0x9b,0x99,0x99,0x99,0x97,0x97,0x97, + 0x95,0x95,0x95,0x93,0x93,0x93,0x92,0x92,0x92,0xc1,0xc1,0xc1,0x32,0x32,0x32, + 0xba,0xba,0xba,0xb8,0xb8,0xb8,0xb6,0xb6,0xb6,0xb4,0xb4,0xb4,0xb2,0xb2,0xb2, + 0xb1,0xb1,0xb1,0xaf,0xaf,0xaf,0x82,0x80,0x80,0x80,0x18,0x60,0x60,0x60,0x36, + 0x36,0x36,0x91,0x91,0x91,0xa4,0xa4,0xa4,0xa2,0xa2,0xa2,0xa0,0xa0,0xa0,0x9e, + 0x9e,0x9e,0x9d,0x9d,0x9d,0x9b,0x9b,0x9b,0x99,0x99,0x99,0x97,0x97,0x97,0x95, + 0x95,0x95,0x93,0x93,0x93,0x92,0x92,0x92,0x90,0x90,0x90,0xc1,0xc1,0xc1,0x32, + 0x32,0x32,0xb8,0xb8,0xb8,0xb6,0xb6,0xb6,0xb4,0xb4,0xb4,0xb2,0xb2,0xb2,0xb0, + 0xb0,0xb0,0xae,0xae,0xae,0xac,0xac,0xac,0x84,0xff,0xff,0xff,0x16,0xa4,0xa4, + 0xa4,0x72,0x72,0x72,0xa0,0xa0,0xa0,0x9e,0x9e,0x9e,0x9c,0x9c,0x9c,0x9a,0x9a, + 0x9a,0x98,0x98,0x98,0x96,0x96,0x96,0x95,0x95,0x95,0x93,0x93,0x93,0x91,0x91, + 0x91,0x8f,0x8f,0x8f,0x8d,0x8d,0x8d,0xc1,0xc1,0xc1,0x32,0x32,0x32,0xb5,0xb5, + 0xb5,0xb4,0xb4,0xb4,0xb2,0xb2,0xb2,0xb0,0xb0,0xb0,0xae,0xae,0xae,0xac,0xac, + 0xac,0xab,0xab,0xab,0x85,0xff,0xff,0xff,0x18,0xf1,0xf1,0xf1,0xa5,0xa5,0xa5, + 0x9c,0x9c,0x9c,0x9a,0x9a,0x9a,0x98,0x98,0x98,0x96,0x96,0x96,0x95,0x95,0x95, + 0x93,0x93,0x93,0x91,0x91,0x91,0x8f,0x8f,0x8f,0x8d,0x8d,0x8d,0x8b,0x8b,0x8b, + 0xc1,0xc1,0xc1,0x32,0x32,0x32,0xb3,0xb3,0xb3,0xb1,0xb1,0xb1,0xaf,0xaf,0xaf, + 0xae,0xae,0xae,0xac,0xac,0xac,0xaa,0xaa,0xaa,0xa8,0xa8,0xa8,0xd3,0xd3,0xd3, + 0xd2,0xd2,0xd2,0xed,0xed,0xed,0x83,0xff,0xff,0xff,0x19,0xf6,0xf6,0xf6,0xa6, + 0xa6,0xa6,0x98,0x98,0x98,0x96,0x96,0x96,0x94,0x94,0x94,0x92,0x92,0x92,0x90, + 0x90,0x90,0x8f,0x8f,0x8f,0x8d,0x8d,0x8d,0x8b,0x8b,0x8b,0x89,0x89,0x89,0xc1, + 0xc1,0xc1,0x32,0x32,0x32,0xb1,0xb1,0xb1,0xaf,0xaf,0xaf,0xae,0xae,0xae,0xac, + 0xac,0xac,0xaa,0xaa,0xaa,0xa8,0xa8,0xa8,0xa6,0xa6,0xa6,0xa4,0xa4,0xa4,0xa2, + 0xa2,0xa2,0xa1,0xa1,0xa1,0x97,0x97,0x97,0xf0,0xf0,0xf0,0x82,0xff,0xff,0xff, + 0x18,0xdd,0xdd,0xdd,0x96,0x96,0x96,0x94,0x94,0x94,0x92,0x92,0x92,0x90,0x90, + 0x90,0x8e,0x8e,0x8e,0x8c,0x8c,0x8c,0x8a,0x8a,0x8a,0x89,0x89,0x89,0x87,0x87, + 0x87,0xc1,0xc1,0xc1,0x32,0x32,0x32,0xaf,0xaf,0xaf,0xad,0xad,0xad,0xab,0xab, + 0xab,0xa9,0xa9,0xa9,0xa7,0xa7,0xa7,0xa6,0xa6,0xa6,0xa4,0xa4,0xa4,0xa2,0xa2, + 0xa2,0xa0,0xa0,0xa0,0x9e,0x9e,0x9e,0x9d,0x9d,0x9d,0x5a,0x5a,0x5a,0x83,0xff, + 0xff,0xff,0x18,0xa1,0xa1,0xa1,0x92,0x92,0x92,0x90,0x90,0x90,0x8e,0x8e,0x8e, + 0x8c,0x8c,0x8c,0x8a,0x8a,0x8a,0x88,0x88,0x88,0x87,0x87,0x87,0x85,0x85,0x85, + 0xc1,0xc1,0xc1,0x32,0x32,0x32,0xad,0xad,0xad,0xab,0xab,0xab,0xa9,0xa9,0xa9, + 0xa7,0xa7,0xa7,0xa5,0xa5,0xa5,0xa3,0xa3,0xa3,0xa2,0xa2,0xa2,0xa0,0xa0,0xa0, + 0x9e,0x9e,0x9e,0x9c,0x9c,0x9c,0x9a,0x9a,0x9a,0x4c,0x4c,0x4c,0xd0,0xd0,0xd0, + 0x82,0xff,0xff,0xff,0x14,0xba,0xba,0xba,0x8f,0x8f,0x8f,0x8d,0x8d,0x8d,0x8b, + 0x8b,0x8b,0x8a,0x8a,0x8a,0x88,0x88,0x88,0x86,0x86,0x86,0x84,0x84,0x84,0x82, + 0x82,0x82,0xc1,0xc1,0xc1,0x32,0x32,0x32,0xab,0xab,0xab,0xa9,0xa9,0xa9,0xa7, + 0xa7,0xa7,0xa5,0xa5,0xa5,0xa3,0xa3,0xa3,0xa1,0xa1,0xa1,0xa0,0xa0,0xa0,0x9e, + 0x9e,0x9e,0x1d,0x1d,0x1d,0x83,0x00,0x00,0x00,0x01,0x80,0x80,0x80,0x82,0xff, + 0xff,0xff,0x15,0x80,0x80,0x80,0x00,0x00,0x00,0x1a,0x1a,0x1a,0x8a,0x8a,0x8a, + 0x88,0x88,0x88,0x86,0x86,0x86,0x84,0x84,0x84,0x82,0x82,0x82,0x80,0x80,0x80, + 0xc1,0xc1,0xc1,0x32,0x32,0x32,0xa8,0xa8,0xa8,0xa6,0xa6,0xa6,0xa4,0xa4,0xa4, + 0xa3,0xa3,0xa3,0xa1,0xa1,0xa1,0x9f,0x9f,0x9f,0x9d,0x9d,0x9d,0x9b,0x9b,0x9b, + 0x8f,0x8f,0x8f,0xd2,0xd2,0xd2,0x88,0xff,0xff,0xff,0x13,0xe9,0xe9,0xe9,0x85, + 0x85,0x85,0x84,0x84,0x84,0x82,0x82,0x82,0x80,0x80,0x80,0x7e,0x7e,0x7e,0xc1, + 0xc1,0xc1,0x32,0x32,0x32,0xa6,0xa6,0xa6,0xa4,0xa4,0xa4,0xa3,0xa3,0xa3,0xa1, + 0xa1,0xa1,0x9f,0x9f,0x9f,0x9d,0x9d,0x9d,0x9b,0x9b,0x9b,0x99,0x99,0x99,0x98, + 0x98,0x98,0x82,0x82,0x82,0xf1,0xf1,0xf1,0x86,0xff,0xff,0xff,0x15,0xf8,0xf8, + 0xf8,0x8d,0x8d,0x8d,0x83,0x83,0x83,0x81,0x81,0x81,0x80,0x80,0x80,0x7e,0x7e, + 0x7e,0x7c,0x7c,0x7c,0xc1,0xc1,0xc1,0x32,0x32,0x32,0xa4,0xa4,0xa4,0xa2,0xa2, + 0xa2,0xa0,0xa0,0xa0,0x9e,0x9e,0x9e,0x9d,0x9d,0x9d,0x9b,0x9b,0x9b,0x99,0x99, + 0x99,0x97,0x97,0x97,0x95,0x95,0x95,0x93,0x93,0x93,0x7a,0x7a,0x7a,0xf0,0xf0, + 0xf0,0x84,0xff,0xff,0xff,0x16,0xf8,0xf8,0xf8,0x9c,0x9c,0x9c,0x83,0x83,0x83, + 0x81,0x81,0x81,0x7f,0x7f,0x7f,0x7d,0x7d,0x7d,0x7c,0x7c,0x7c,0x7a,0x7a,0x7a, + 0xc1,0xc1,0xc1,0x32,0x32,0x32,0xa2,0xa2,0xa2,0xa0,0xa0,0xa0,0x9e,0x9e,0x9e, + 0x9c,0x9c,0x9c,0x9a,0x9a,0x9a,0x99,0x99,0x99,0x97,0x97,0x97,0x95,0x95,0x95, + 0x93,0x93,0x93,0x91,0x91,0x91,0x8f,0x8f,0x8f,0x8c,0x8c,0x8c,0x84,0xff,0xff, + 0xff,0x17,0xb2,0xb2,0xb2,0x82,0x82,0x82,0x81,0x81,0x81,0x7f,0x7f,0x7f,0x7d, + 0x7d,0x7d,0x7b,0x7b,0x7b,0x79,0x79,0x79,0x77,0x77,0x77,0xc1,0xc1,0xc1,0x32, + 0x32,0x32,0xa0,0xa0,0xa0,0x9e,0x9e,0x9e,0x9c,0x9c,0x9c,0x9a,0x9a,0x9a,0x98, + 0x98,0x98,0x96,0x96,0x96,0x95,0x95,0x95,0x93,0x93,0x93,0x91,0x91,0x91,0x8f, + 0x8f,0x8f,0x8d,0x8d,0x8d,0x8b,0x8b,0x8b,0x99,0x99,0x99,0x82,0xff,0xff,0xff, + 0x7f,0xc2,0xc2,0xc2,0x82,0x82,0x82,0x80,0x80,0x80,0x7f,0x7f,0x7f,0x7d,0x7d, + 0x7d,0x7b,0x7b,0x7b,0x79,0x79,0x79,0x77,0x77,0x77,0x76,0x76,0x76,0xc1,0xc1, + 0xc1,0x32,0x32,0x32,0x9d,0x9d,0x9d,0x9b,0x9b,0x9b,0x9a,0x9a,0x9a,0x98,0x98, + 0x98,0x96,0x96,0x96,0x94,0x94,0x94,0x92,0x92,0x92,0x90,0x90,0x90,0x8f,0x8f, + 0x8f,0x8d,0x8d,0x8d,0x8b,0x8b,0x8b,0x89,0x89,0x89,0x87,0x87,0x87,0xd2,0xd2, + 0xd2,0xd1,0xd1,0xd1,0x82,0x82,0x82,0x80,0x80,0x80,0x7e,0x7e,0x7e,0x7c,0x7c, + 0x7c,0x7a,0x7a,0x7a,0x79,0x79,0x79,0x77,0x77,0x77,0x75,0x75,0x75,0x73,0x73, + 0x73,0xc1,0xc1,0xc1,0x32,0x32,0x32,0x9b,0x9b,0x9b,0x99,0x99,0x99,0x98,0x98, + 0x98,0x96,0x96,0x96,0x94,0x94,0x94,0x92,0x92,0x92,0x90,0x90,0x90,0x8f,0x8f, + 0x8f,0x8d,0x8d,0x8d,0x8b,0x8b,0x8b,0x89,0x89,0x89,0x87,0x87,0x87,0x85,0x85, + 0x85,0x83,0x83,0x83,0x82,0x82,0x82,0x80,0x80,0x80,0x7e,0x7e,0x7e,0x7c,0x7c, + 0x7c,0x7a,0x7a,0x7a,0x78,0x78,0x78,0x77,0x77,0x77,0x75,0x75,0x75,0x73,0x73, + 0x73,0x71,0x71,0x71,0xc1,0xc1,0xc1,0x32,0x32,0x32,0x99,0x99,0x99,0x97,0x97, + 0x97,0x95,0x95,0x95,0x93,0x93,0x93,0x92,0x92,0x92,0x90,0x90,0x90,0x8e,0x8e, + 0x8e,0x8c,0x8c,0x8c,0x8a,0x8a,0x8a,0x88,0x88,0x88,0x87,0x87,0x87,0x85,0x85, + 0x85,0x83,0x83,0x83,0x81,0x81,0x81,0x7f,0x7f,0x7f,0x7d,0x7d,0x7d,0x7c,0x7c, + 0x7c,0x7a,0x7a,0x7a,0x78,0x78,0x78,0x76,0x76,0x76,0x74,0x74,0x74,0x72,0x72, + 0x72,0x71,0x71,0x71,0x6f,0x6f,0x6f,0xc1,0xc1,0xc1,0x32,0x32,0x32,0x97,0x97, + 0x97,0x95,0x95,0x95,0x93,0x93,0x93,0x91,0x91,0x91,0x90,0x90,0x90,0x8e,0x8e, + 0x8e,0x8c,0x8c,0x8c,0x8a,0x8a,0x8a,0x88,0x88,0x88,0x86,0x86,0x86,0x84,0x84, + 0x84,0x83,0x83,0x83,0x81,0x81,0x81,0x7f,0x7f,0x7f,0x7d,0x7d,0x7d,0x7b,0x7b, + 0x7b,0x79,0x79,0x79,0x77,0x77,0x77,0x76,0x76,0x76,0x74,0x74,0x74,0x72,0x72, + 0x72,0x70,0x70,0x70,0x6e,0x6e,0x6e,0x6c,0x6c,0x6c,0xc1,0xc1,0xc1,0x32,0x32, + 0x32,0x95,0x95,0x95,0x93,0x93,0x93,0x91,0x91,0x91,0x8f,0x8f,0x8f,0x8d,0x8d, + 0x8d,0x8b,0x8b,0x8b,0x8a,0x8a,0x8a,0x88,0x88,0x88,0x86,0x86,0x86,0x84,0x84, + 0x84,0x82,0x82,0x82,0x80,0x80,0x80,0x0e,0x7f,0x7f,0x7f,0x7d,0x7d,0x7d,0x7b, + 0x7b,0x7b,0x79,0x79,0x79,0x77,0x77,0x77,0x76,0x76,0x76,0x74,0x74,0x74,0x72, + 0x72,0x72,0x70,0x70,0x70,0x6e,0x6e,0x6e,0x6c,0x6c,0x6c,0x6b,0x6b,0x6b,0xc1, + 0xc1,0xc1,0x8c,0x8c,0x8c,0x99,0xc1,0xc1,0xc1 +}; + +static const GdkPixdata rotate_right_on_pixdata = { + 0x47646b50, /* Pixbuf magic: 'GdkP' */ + 24 + 1809, /* header length + pixel_data length */ + 0x2010001, /* pixdata_type */ + 78, /* rowstride */ + 26, /* width */ + 26, /* height */ + rotate_right_on_pixdata_pixel_data /* pixel_data */ +}; diff --git a/src/image_data/rotation_orientation_horiz.h b/src/image_data/rotation_orientation_horiz.h deleted file mode 100644 index eda5baf..0000000 --- a/src/image_data/rotation_orientation_horiz.h +++ /dev/null @@ -1,722 +0,0 @@ -/* GIMP RGB C-Source image dump 1-byte-run-length-encoded (rotation_orientation_horz.c) */ - -#include "image.h" - -static const nv_image_t rotation_orientation_horiz_image = { - 120, 90, 3, 0, - "\7\345\345\345\334\313\312\336\327\326\345\345\345\342\342\342\345\345\345" - "\340\340\340\202\345\345\345\1\343\343\343\203\345\345\345\3\342\342\342" - "\345\345\345\343\343\343\203\345\345\345\17\320\322\322\254\312\311\271\305" - "\325\334\334\333\276\306\312\331\332\331\327\327\327\311\311\311\340\340" - "\340\310\310\317\251\260\266\320\321\330\325\326\327\316\322\324\341\341" - "\341\301\345\345\345\3\341\341\341\344\344\344\330\330\330\202\345\345\345" - "\1\342\342\342\202\345\345\345\202\337\337\337-\345\345\345\334\334\334\343" - "\343\343\336\336\336\345\345\345\340\340\340\341\341\341\345\345\345\310" - "\310\310\307\307\307\345\345\345\336\332\332\265<6\262US\315\315\315\225" - "\225\225\242\242\242\214\214\214\273\273\273\225\225\225\251\251\251\231" - "\231\231\263\263\263\345\345\345\261\261\261\247\247\247\242\242\242\254" - "\254\254\237\237\237\311\311\311\266\277\305u\232\225\204\214\235\320\301" - "\251\264\247\202\300\276\262\277\276\274\312\312\315\321\321\321\270\270" - "\277\210\235\252\277\301\312\227\265\322\252\242\235\330\330\330\301\345" - "\345\345\10\342\342\342\344\344\344\267\267\267\237\237\237\301\301\301\226" - "\226\226\257\257\257\254\254\254\202\270\270\270\21\342\342\342\274\274\274" - "\275\275\275\223\223\223\264\264\264\213\213\213\204\204\204\343\343\343" - "\234\234\234\265\265\265\345\345\345\340\340\340\330\325\325\322\312\312" - "\335\335\335\316\316\316\305\305\305\202\325\325\325\31\320\320\320\324\324" - "\324\326\326\326\324\324\324\340\340\340\335\335\335\324\324\324\325\325" - "\325\326\326\326\324\324\324\331\331\331\337\337\337\277\303\307\301\301" - "\305\333\332\331\317\305\263\323\317\310\333\332\327\306\304\305\311\312" - "\313\327\327\330\266\303\320\326\326\326\301\306\316\252\254\273\302\340" - "\340\340\3\334\334\334\340\340\340\334\334\334\202\325\325\325\6\331\331" - "\331\323\323\323\277\277\277\320\320\320\317\317\317\327\327\327\202\334" - "\334\334\15\325\325\325\334\334\334\331\331\331\333\333\333\340\340\340\307" - "\307\307\315\315\315\340\340\340$<r%=r%=s&>t'?t\205'?u\23(@u'@u(@u(Av)Aw" - ")Bw*Bx+Cy+Dy,Dz,Ez-E{-F|.F}.G}/G~/H\1770H\1770I\200\2021I\200\33""2J\201" - "2J\2023K\2034L\2044M\2055N\2066O\2077P\2108Q\2119S\2139T\214:U\215;U\216" - ";V\216<V\217<W\220=X\220=X\221>Y\222>Y\223?Z\223@Z\224@[\224A[\225A\\\226" - "B\\\226B]\227\202C^\230\2D_\231D_\232\202E`\233\12Fa\234Fb\234Gb\235Gc\236" - "Hc\237Hd\237Ie\240Ie\241Jf\241Kf\242\202Lg\243\7Mh\244Mh\245Ni\245Nj\246" - "Oj\247Ok\247Pk\250\202Ql\251\10Rm\252Rn\253Sn\253So\254To\255Tp\255Up\256" - "Uq\257\233Vq\257\5\36""7o\37""7p\37""8p\40""9q\40""9r\202!:s\6\";t\"<u#<" - "u#=v$=w$>w\204%>w\203%?w\5&@x&@y'Az(Az(B{\202)C|\2*D}*D~\202+E\177&,E\200" - ",F\200-F\200.G\201.G\202/H\202/I\2030I\2040J\2051J\2051K\2062L\2073M\210" - "3N\2114O\2125P\2136Q\2157R\2168S\2178T\2209U\221:V\223;W\223;X\224<X\225" - "<Y\226=Y\226>Z\227>[\230?[\230?\\\231@\\\232@]\233A^\233A^\234B_\235C_\235" - "C`\236\202Da\237\26Eb\240Eb\241Fc\242Gc\242Hd\243He\244Ie\244If\245Jg\246" - "Kg\247Kh\247Lh\250Li\251Mi\251Mj\252Nk\253Nk\254Ol\254Ol\255Pm\256Qm\256" - "Qn\257\233Ro\260\23\36""6o\36""7o\37""8p\37""8q\40""9q\40""9r!:s!;s\";t#" - "<u#<v$=v$>w%>x%?x&?y&@z'@{'A{\205(B|\1)B|\202)C|))C}*D}*E~+E\177,E\177,E" - "\200-F\200-F\201.G\201.H\202/H\203/I\2030I\2040J\2051K\2052K\2062L\2073L" - "\2103M\2104N\2114N\2125O\2125O\2136P\2146Q\2157Q\2158R\2168S\2179T\221:U" - "\222;V\223<W\224=X\225=Z\227>[\230?\\\231@]\232A]\233A^\233B^\234B_\235\202" - "C`\236\17Da\237Da\240Eb\240Eb\241Fc\242Gd\243Hd\243Ie\244Ie\245Jf\245Jg\246" - "Kg\247Kh\247Lh\250Li\251\202Mj\252\5Nk\253Ok\254Ol\254Pl\255Pm\256\202Qn" - "\257\232Ro\260\10\35""6n\36""7o\36""7p\37""8p\37""8q\40""9r!:r!:s\202\";" - "t\5#<u#=v$=w$>w%>x\202&?y\10'@z'A{(A{(B|)B})C~*D~*D\177\202+E\200\1+F\200" - "\206,F\200;-F\200-G\201.G\202.H\202/H\203/I\2040J\2041J\2051K\2062K\2062" - "L\2073M\2103M\2114N\2114N\2125O\2136P\2136P\2147Q\2157Q\2168R\2168S\2179" - "S\2209T\220:T\221:U\222;U\222<V\223<W\224=W\225>Y\226?Z\227?[\231@\\\232" - "A]\233B_\235C`\236Da\237Eb\240Eb\241Fc\241Gc\242Hd\243He\243Ie\244If\245" - "Jf\246Jg\246Kg\247Lh\250Li\250Mi\251Mj\252Nj\252Nk\253Ol\254Ol\255Pm\255" - "Pm\256\202Qn\257\231Ro\260\7\34""6n\35""6n\36""7o\37""7p\37""8p\40""9q\40" - """9r\202!:s\30\";t\"<u#<u#=v$=w$>x%>x&?y&@z'@z'A{(B|(B})C})C~*D\177+D\177" - "+E\200,F\200,G\200-H\201-H\202.I\203.J\203\205/J\204\2030I\204\3""0J\205" - "1K\2051K\206\2022L\207\5""3M\2103M\2114N\2115O\2125O\213\2026P\214\5""7Q" - "\2157Q\2168R\2178S\2179S\220\202:T\221\34;U\222;V\223<V\223<W\224=W\225=" - "X\226>Y\226>Y\227?Z\230@Z\230@[\231A\\\232B]\233C^\235C_\236Ea\237Fb\241" - "Gc\242Hd\243Ie\244Jf\245Jf\246Kg\247Kh\247Lh\250Li\251Mi\251Mj\252\202Nk" - "\253\5Ol\254Pl\255Pm\256Qn\256Qn\257\231Ro\260\32\34""5m\34""6n\36""6o\36" - """7o\37""8p\37""8q\40""9q\40""9r!:s!;t\":p*@r#<v$=v$>w%>x%?y&?y&@z'@{'A{" - "(B|)B})C}*C~*D\177\202+E\200\5,F\200,G\201-H\201-I\202.I\203\202/J\204\11" - """0K\2050K\2061L\2061M\2072M\2102N\2103N\2102N\2103N\210\2043M\210\26""4" - "N\2114N\2125O\2125O\2136P\2146Q\2157Q\2158R\2168R\2179S\2209T\220:T\221:" - "U\222;U\222;V\223<V\224<W\224=X\225>X\226>Y\226?Y\227?Z\230\202@[\231\5A" - "\\\232A\\\233B]\233B^\234C^\235\202D_\236\17E`\237Fa\240Fb\242Gd\243Ie\244" - "Jf\246Kg\247Li\250Mj\252Nj\252Nk\253Ok\254Ol\254Pm\255Pm\256\202Qn\257\230" - "Ro\260\33\33""5m\34""5m\35""6n\36""7o\36""7p\37""8p\37""8q\40""9rGX\200\203" - "\222\247\227\260\304\213\232\254$<s#=v$=w$>w%>x%?y&?z'@z'A{(A{(B|)B})C~*" - "D~*D\177\202+E\200\22,F\200-H\201-H\202.I\202.I\203/J\204/K\2050K\2050L\206" - "1L\2071M\2072M\2103N\2113O\2114O\2124P\2135P\2135Q\214\2076Q\215+7Q\2157" - "Q\2168R\2168R\2179S\2209T\220:T\221:U\222;V\223<V\223<W\224=W\225=X\225>" - "X\226>Y\227?Z\227?Z\230@[\231@[\232A\\\232B\\\233B]\234C^\234C^\235D_\236" - "D`\237E`\237Ea\240Ea\241Eb\241Fb\242Gc\243Gd\243Hd\244If\246Jg\247Kh\250" - "Mi\252Nj\253Ol\254Pm\256Qn\257Rn\260\227Ro\260$\33""4l\33""5m\34""6n\35""6" - "n\36""7o\37""8p\37""8q\40""9qmy\222\215\301\345\236\310\350\302\314\324\177" - "\207\234#<u#=v$=w%>x%?x&?y&@z'@z'A{(B|(B})C})C~*D\177+D\177+E\200,F\200," - "G\200-H\201-H\202.I\203.J\203/J\204\2020K\205\10""1L\2061M\2072M\2072N\210" - "3N\2113O\2124O\2124P\213\2025Q\214\5""6R\2157R\2167S\2178T\2178T\220\204" - "9U\221\205:U\221\34;U\222;V\223<V\223<W\224=W\225=X\226>Y\226>Y\227?Z\230" - "@Z\230@[\231A\\\232A\\\233B]\233B]\234C^\235C_\235D_\236D`\237E`\237Ea\240" - "Ea\241Fb\242Fc\242Gc\243Gd\244Hd\244He\245\202If\246\7Jg\247Kg\250Kh\251" - "Li\252Mj\253Nk\254Ol\255\202Pm\256\1Qn\257\222Ro\260\34\33""4l\33""5m\34" - """5m\35""6n\36""6o\36""7o\37""8p\37""8q{\203\227\247\304\331\271\302\311" - "\310\313\311\207\215\231#<u#<v$=v$>w%>x%?x&?y&@z'@{'A{(B|)B})C}*D~*D\177" - "\202+E\200\26,F\200,G\201-H\201-I\202.I\203/J\203/J\2040K\2050L\2061L\206" - "1M\2072M\2102N\2103N\2113O\2124P\2135P\2135Q\2146Q\2156R\2157S\2167S\217" - "\2028T\220\7""9U\2219V\222:V\222;W\223;W\224<X\224<X\225\207=Y\226\4>X\226" - ">Y\227?Y\227?Z\230\202@[\231\5A\\\232A\\\233B]\233B^\234C^\235\202D_\236" - "\1E`\237\202Ea\240\14Eb\241Fb\242Fc\242Gc\243Gd\244He\245Ie\245If\246Jf\247" - "Jg\247Kh\250Kh\251\202Li\252\206Mj\253\1Nk\254\202Ol\255\1Pm\256\202Qn\257" - "\212Ro\260\35\32""4k\33""4l\33""5m\34""5m\35""6n\36""7o\36""7p\37""8pox\214" - "\234\234\235Ybwft\222Vh\201\";u#<u#=v$=w$>w%>x%?y&@y'@z'A{(A|(B|)C})C~*D" - "~*D\177\202+E\200\20,F\200-H\201-H\202.I\202.I\203/J\204/K\2040K\2050L\206" - "1L\2071M\2072N\2103N\2113O\2114O\2124P\213\2025Q\214\27""6R\2156R\2167S\216" - "7S\2178T\2209U\2209U\221:V\222:V\223;W\223;X\224<X\225<Y\225=Y\226=Z\227" - ">Z\227?[\230?\\\231@\\\232@]\232A]\233@]\232A]\232\202A\\\232\30A\\\233A" - "\\\232A]\233B]\234C^\234C^\235D_\236D`\237E`\237Ea\240Ea\241Eb\241Fb\242" - "Gc\243Gd\243Hd\244He\245Ie\246If\246Jg\247Jg\250Kh\250Lh\251Li\252\216Mj" - "\253\1Nk\254\202Ol\255\1Pm\256\202Qn\257\202Ro\260\13\32""3k\32""4l\33""5" - "l\33""5m\34""6n\35""6n\36""7o\37""7p\37""8q\40""8p\40""9r\202!:s#\";t\"<" - "u#<u#=v$=w%>x%?x&?y&@z'@z'A{(B|(B})C})C~*D\177+D\177+E\200,F\200,G\200-H" - "\201-H\202.I\203.J\203/J\204/K\2050K\2051L\2061M\2072M\2102N\2103N\2113O" - "\2124P\2124P\213\2025Q\214\5""6R\2157R\2167S\2178T\2178T\220\2029U\221\5" - ":V\222:W\223;W\224;X\224<X\225\202=Y\226\13>Z\227>[\230?[\230?\\\231@\\\232" - "@]\233A^\233A^\234B_\235C_\235C`\236\203Da\237\202D`\237\204E`\237\17Ea\240" - "Eb\241Fb\242Fc\242Gc\243Gd\244Hd\244He\245If\246If\247Jg\247Kg\250Kh\251" - "Li\251Li\252\224Mj\253\30Nk\254\31""3j\32""4k\32""4l\33""5m\34""5m\35""6" - "n\36""7o>Py5JwAT\177>Q}>Q~BT~<P}\";t#<u#<v$=v$>w%>x%?y&?y&@z\202'A{\5(B|" - ")B})C}*C~*D\177\202+E\200\5,F\200,G\201-H\201.I\202.I\203\202/J\204\22""0" - "K\2050L\2061L\2061M\2072M\2102N\2103N\2113O\2124P\2135P\2135Q\2146Q\2156" - "R\2157S\2167S\2178T\2178T\2209U\221\202:V\222\17;W\223;W\224<X\224<Y\225" - "=Y\226=Z\227>Z\227>[\230?[\231?\\\231@]\232A]\233A^\234B^\234B_\235\202C" - "`\236\7Da\237Da\240Eb\240Ec\241Fc\242Gd\243Hd\243\203Hd\244\202Hd\243\12" - "Gd\244Gd\243Gd\244He\245Ie\245If\246Jf\247Jg\250Kh\250Kh\251\202Li\252\224" - "Mj\253\37\31""3j\32""3k\32""4k\33""4l\33""5m\34""6m\35""6n8Kx8Ku=LnFUwIX" - "zBRv5Go\";t\";u#<u#=v$=w$>w%>x&?y&@y'@z'A{(A|(B|)C})C~*D~*D\177\202+E\200" - "\20,F\200-H\201-H\202.I\202.I\203/J\204/K\2040K\2050L\2061L\2071M\2072N\210" - "3N\2113O\2114O\2124P\213\2025Q\214\5""6R\2156R\2167S\2167S\2178T\220\202" - "9U\221\30:V\222:V\223;W\223;X\224<X\225<Y\225=Y\226=Z\227>Z\230?[\230?\\" - "\231@\\\232@]\232A]\233A^\234B_\234B_\235C`\236D`\237Da\237Eb\240Eb\241F" - "c\241Gc\242\202Hd\243\5Ie\244If\245Jf\246Jg\246Kh\247\203Lh\250\204Kh\250" - "\4Kg\250Kh\250Kh\251Li\252\224Mj\253\15\31""2i\31""3j\32""3k\32""4l\33""5" - "l\33""5m\34""6n\35""6n\36""7o\37""8p\37""8q\40""9q\40""9r\202!:s*\";t\"<" - "u#<u$=v$=w%>x%?x&?y&@z'@z'A{(B|(B})C}*C~*D\177+D\177+E\200,F\200,G\201-H" - "\201-H\202.I\203.J\203/J\204/K\2050K\2051L\2061M\2072M\2102N\2103N\2113O" - "\2124O\2124P\2135Q\2146Q\2146R\2157R\2167S\2178T\2178T\220\2029U\221&:V\222" - ":W\223;W\224;X\224<X\225=Y\226=Z\226>Z\227>[\230?[\230?\\\231@\\\232@]\233" - "A^\233A^\234B_\235C_\235C`\236Da\237Da\240Eb\240Eb\241Fc\242Gd\242Hd\243" - "He\244Ie\244Jf\245Jf\246Kg\247Kh\247Lh\250Li\251Mj\251Mj\252Nk\253Nk\254" - "Ol\254\202Ol\255\202Ol\254\2Ol\255Nk\254\221Mj\253\14\30""2i\31""2j\31""3" - "j\32""4k\32""4l\33""5m\34""5m\34""6n\36""6o\36""7o\37""8p\37""8q\202\40""9" - "r\1!:s\202\";t\17#<u#<v$=v$>w%>x%?y&?y&@z'A{(A{(B|)B})C}*D~*D\177\202+E\200" - "\26,F\200,G\201-H\201-I\202.I\203/J\203/J\2040K\2050L\2061L\2061M\2072M\210" - "2N\2103N\2114O\2124P\2135P\2135Q\2146Q\2156R\2157S\2167S\217\2028T\220\22" - """9U\2219V\222:V\222;W\223;W\224<X\224<Y\225=Y\226=Z\227>Z\227>[\230?[\231" - "@\\\231@]\232A]\233A^\234B^\234B_\235\202C`\236\5Da\237Da\240Eb\241Fc\241" - "Fc\242\202Hd\243\17Ie\244Ie\245Jf\245Jg\246Kg\247Kh\250Li\250Li\251Mj\252" - "Nj\252Nk\253Ok\254Ol\255Pm\255Pm\256\202Qn\257\203Ro\260\2Qn\257Pm\256\202" - "Ol\255\1Nk\254\212Mj\2533\30""1i\31""2i\31""3j\32""3k\32""4k\33""4l\33""5" - "m\34""6m\35""6n\36""7o\36""7p\37""8p\40""9q\40""9r!:r!:s\";t\";u#<u#=v$=" - "w%>w%>x&?y&@y'@z'A{(A|(B|)B})C~*D~*D\177+E\200,E\200,F\200-H\201-H\202.I" - "\202.I\203/J\204/K\2050K\2050L\2061L\2072M\2072N\2103N\2113O\2124O\2124P" - "\213\2025Q\214\5""6R\2156R\2167S\2167S\2178T\220\2029U\221*:V\222:V\223;" - "W\223;X\224<X\225<Y\225=Y\226=Z\227>[\230?[\230?\\\231@\\\232@]\232A]\233" - "A^\234B_\234B_\235C`\236D`\237Da\237Eb\240Eb\241Fc\241Gc\242Hd\243He\244" - "Ie\244If\245Jf\246Kg\246Kh\247Lh\250Li\250Mi\251Mj\252Nj\253Nk\253Ol\254" - "Ol\255Pm\256Qm\256Qn\257\212Ro\260\2Qn\257Pm\256\202Ol\255\1Nk\254\203Mj" - "\253\17\30""1h\30""2i\31""2j\31""3j\32""3k\32""4l\33""5l\33""5m\34""6n\35" - """6n\36""7o\37""7p\37""8q\40""9q\40""9r\202!:s\31\";t\"<u#<v$=v$=w%>x%?x" - "&?y&@z'@z'A{(B|(B})C}*C~*D\177+E\177+E\200,F\200,G\200-H\201-H\202.I\203" - ".J\203/J\204\2020K\205\17""1L\2061M\2072M\2102N\2103N\2113O\2124P\2124P\213" - "5Q\2146Q\2146R\2157R\2167S\2178T\2178T\220\2029U\221*:V\222:W\223;W\224<" - "X\224<X\225=Y\226=Z\226>Z\227>[\230?[\231?\\\231@]\232@]\233A^\233A^\234" - "B_\235C_\235C`\236Da\237Da\240Eb\240Eb\241Fc\242Gd\242Hd\243Ie\244Ie\245" - "Jf\245Jg\246Kg\247Kh\247Lh\250Li\251Mi\251Mj\252Nk\253Ok\254Ol\254Pl\255" - "Pm\256Qn\256Qn\257\220Ro\260\13Qn\257\27""1h\30""1h\30""2i\31""2j\31""3j" - "\32""4k\33""4l\33""5m\34""5m\35""6n\202\36""7o\2\37""8p\37""8q\202\40""9" - "r\1!:s\202\";t\10#<u#<v$=v$>w%>x%?y&?y&@z\202'A{\5(B|)B})C}*C~*D\177\202" - "+E\200\5,F\200,G\201-H\201.I\202.I\203\202/J\204\13""0K\2050L\2061L\2061" - "M\2072M\2102N\2103O\2114O\2124P\2135P\2135Q\214\2026R\215\2""7S\2167S\217" - "\2028T\220\22""9U\2219V\222:V\222;W\223;W\224<X\224<Y\225=Y\226=Z\227>Z\227" - ">[\230?\\\231@\\\231@]\232A]\233A^\234B^\234B_\235\202C`\236\5Da\237Da\240" - "Eb\241Fc\241Fc\242\202Hd\243\17Ie\244If\245Jf\245Jg\246Kg\247Kh\250Li\250" - "Mi\251Mj\252Nj\252Nk\253Ok\254Ol\255Pm\255Pm\256\202Qn\257\220Ro\2605\27" - """0g\27""1h\30""1i\31""2i\31""3j\32""3k\32""4k\33""4l\33""5m\34""6n\35""6" - "n\36""7o\36""7p\37""8p\40""9q\40""9r!:r!:s\";t\";u#<u#=v$=w$>w%>x&?y&@z'" - "@z'A{(A|(B|)C})C~*D~*D\177+E\200,E\200,G\200-H\201-H\202.I\202.I\203/J\204" - "/K\2050K\2050L\2061L\2072M\2072N\2103N\2113O\2114O\2124P\213\2025Q\214\5" - """6R\2156R\2167S\2168S\2178T\220\2029U\221\17:V\222:V\223;W\223;X\224<X\225" - "<Y\225=Y\226>Z\227>[\230?[\230?\\\231@\\\232@]\232A]\233A^\234\202B_\235" - "\22C`\236D`\237Da\237Eb\240Eb\241Fc\242Gc\242Hd\243He\244Ie\244If\245Jf\246" - "Kg\246Kg\247Lh\250Li\251Mi\251Mj\252\202Nk\253\5Ol\254Ol\255Pm\255Pm\256" - "Qn\257\220Ro\260\202\27""0g\15\27""0f\30""0g\30""1g\31""1g\31""1h\32""2h" - "\32""2i\33""2h\33""4j\33""3j\34""5l\35""5l\35""6m\202\36""7nX\37""8o\37""8" - "p\40""9q\40:q!:r!;s\";s#<t#=u$=v$>w%?x&@y'@z'A{(B|)C}*D~+D\177+E\200,F\200" - ",G\201-H\201-H\202.I\203.J\203/J\2040K\2050K\2061L\2061M\2072M\2102N\210" - "3N\2113O\2124P\2124P\2135Q\2146Q\2156R\2157R\2167S\2178T\2178T\2209U\221" - "9U\222:V\222:W\223;W\224;X\224<X\225=Y\226=Z\226>Z\227>[\230?[\231?\\\231" - "@]\232@]\233A^\233B^\234B_\235C_\235C`\236Da\237Da\240Eb\240Eb\241Fc\242" - "Gd\242Hd\243Ie\244Ie\245Jf\245Jf\246Kg\247Kh\247Lh\250Li\251Mj\251Mj\252" - "Nk\253Ok\254Ol\254Pl\255Pm\256Qn\256Qn\257\217Ro\260\23\25-b\26-b\26.c\27" - ".c\27/d\30/e\30""0e\31""1f|xt\315\257z\225\204l\267\231j4Ce\33""4j\34""5" - "k\34""5l\35""6m\35""7m\36""7n\202\37""8o\26\40""9p\40""9q!:q!;r\";s\"<t#" - "<t#=u$>v%>v%?w&?x&@y'Ay'Az(B{)C|*D~+E\177,G\200-H\201.I\203\202/J\204\13" - """0K\2050L\2061L\2061M\2072M\2102N\2113O\2114O\2124P\2135P\2135Q\214\202" - "6R\215\2""7S\2167S\217\2028T\220\1""9U\221\202:V\222\17;W\223;W\224<X\225" - "<Y\225=Y\226=Z\227>Z\227>[\230?\\\231@\\\232@]\232A]\233A^\234B_\234B_\235" - "\202C`\236\5Da\237Da\240Eb\241Fc\241Fc\242\202Hd\243\17Ie\244If\245Jf\246" - "Jg\246Kg\247Kh\250Li\250Mi\251Mj\252Nj\252Nk\253Ol\254Ol\255Pm\255Pm\256" - "\202Qn\257\213Ro\260\33Qn\257Pm\256Ol\255\25,a\25-a\26-b\26.c\27.d\30/d\30" - """0e\31""1g\200zu\333\271\206\321\264\210\336\300\222\223\207{\33""4k\34" - """5l\34""6l\35""6m\36""7n\36""8o\37""8o\40""9p\40""9q!:q!;r\202\";s\11\"" - "<t#<t#=u$=u$>v%>w%?w&@x&@y\202'Az\22(B{)B|)C|*D}*D~+E~+E\200-G\200.H\202" - "/J\2040L\2061L\2072M\2072N\2103N\2113O\2114O\2124P\213\2025Q\214\5""6R\215" - "6R\2167S\2168S\2178T\220\2029U\221\17:V\222:V\223;W\223;X\224<X\225<Y\225" - "=Y\226>Z\227>[\230?[\230?\\\231@\\\232@]\232A^\233A^\234\202B_\235\1C`\236" - "\202Da\237\3Eb\240Eb\241Fc\241\203Gc\242\203Fb\241\15Fb\242Fc\243Gd\243H" - "e\245Jg\247Li\251Nj\253Nk\253Ol\254Ol\255Pm\256Qm\256Qn\257\205Ro\260\202" - "Qn\257\3Pm\256Ol\255Nk\254\204Mj\253\23\24,`\25,a\26-b\26.c\27""0f\30""1" - "h\31""2j\31""3jjjs\361\312\223\177vlle_HIU\36""6n\36""7o\37""8p\37""8q\40" - """9q\40""9r\202!:s\11\";t\"<u#<v$=v$>w%>x%?x&?y&@y\202&@z\202'Az\2'A{(A{" - "\203(B{\4)C|)C}*D}*D~\202+E\177\22,E\200-F\200-F\201.H\2020J\2041L\2072N" - "\2103N\2113O\2124P\2124P\2135Q\2146Q\2156R\2157S\2167S\2178T\2178T\220\202" - "9U\221\20:V\222:W\223;W\224<X\224<X\225=Y\226=Z\226>Z\227>[\230?[\231?\\" - "\231@]\232@]\233A^\233B^\234B_\235\202C`\236\202Da\237\23D`\237C_\236C^\235" - "C_\235D_\236E`\237E`\240Ea\240Eb\241Fb\242Fc\242Gc\243Gd\244He\245If\246" - "Kh\250Nj\253Ol\254Pl\255\204Pm\256\2Ol\255Nk\254\212Mj\253\16\24+`\25,a\26" - ".d\27""0g\27""1h\30""1h\30""2i\31""2jafv\237\204a\217_?\235jEqK?\35""6n\202" - "\36""7o\5\37""8p\37""8q\40""9r!:r!:s\202\";t\17#<u#<v$=w$>w%>x%?y&?y&@z'" - "A{(A{(B|)B})C~*D~*D\177\203+E\200\4+F\200+E\177+F\177+E\177\202,E\200\17" - "-F\200-G\201.G\201.H\2020I\2042M\2073O\2114O\2124P\2135P\2135Q\2146R\215" - "6R\2167S\2167S\217\2028T\220\1""9U\221\202:V\222\15;W\223;X\224<X\225<Y\225" - "=Y\226=Z\227>Z\227>[\230?\\\231@\\\232@]\232A]\233A^\234\202B^\234\7A]\233" - "A\\\233A\\\232A\\\233B]\234C^\234C^\235\202D_\236\1E`\237\202Ea\240\14Eb" - "\241Fb\242Fc\243Gc\243Hd\244He\245Ie\245If\246Jg\247Jg\250Kh\250Kh\251\202" - "Li\252\214Mj\253\7\24+_\24,b\26/f\26""0f\27""0g\27""1h\30""1i\202\31""2i" - "\13\32""3k(6aEE]\40""5e\34""6n\35""6n\36""7o\36""7p\37""8p\40""9q\40""9r" - "\202!:s\27\";t\";u#<u#=v$=w%>w%>x&?y&@z'@z'A{(A|(B|)C})C~*D\177+D\177+E\200" - ",F\200,G\200-H\201-H\202.I\202\202.H\202\12-G\201-F\200.G\201.G\202/H\202" - "/I\2031K\2063O\2114O\2124P\213\2025Q\214\5""6R\2156R\2167S\2168T\2178T\220" - "\2029U\221\16:V\222:V\223;W\223;X\224<X\225<Y\226=Y\226>Z\227>[\230?[\230" - "?\\\231@\\\232?\\\231?[\230\203?Z\230\1@[\231\202A\\\232\2B]\233B]\234\202" - "C^\235\13D_\236D`\237E`\237Ea\240Ea\241Fb\241Fc\242Gc\243Gd\244Hd\244He\245" - "\202If\246\5Jg\247Jg\250Kh\251Lh\251Li\252\212Mj\253\6Nk\254Ol\255\23+_\24" - ",`\26/e\26/f\202\27""0g!*Aq3Hu;Nx2Fq2Gu=Py7Ly7Lz.Du\36""6o\36""7o\37""8p" - "\37""8q\40""9q\40""9r!:s!;t\";t#<u#<v$=v$=w%>x%?x&?y&@z'@{'A{(B|(B})C}*C" - "~*D\177\202+E\200*,F\200,G\201-H\201-I\202.I\203.J\203/J\204/K\204.I\203" - ".G\201.H\202/H\203/I\2031L\2063O\2124P\2124P\2135Q\2146Q\2156R\2157R\216" - "7S\2178T\2178T\2209U\2219V\221:V\222;W\223;W\224<X\224<X\225=Y\226=Z\226" - ">Z\227=Y\226=X\225<W\225=X\225=X\226>Y\226?Y\227?Z\230\202@[\231\17A\\\232" - "A\\\233B]\233B]\234C^\235C_\235D_\236E`\237E`\240Ea\240Eb\241Fb\242Fc\242" - "Gc\243Gd\244\202He\245\7If\246Jf\247Jg\247Kg\250Kh\251Li\251Li\252\205Mj" - "\253\4Nk\254Ol\255Pm\256Qn\257\202Ro\260\20\23*_\24+_\25-b\26/f\26""0f\27" - """0g0DoBQq;Kn7Jt)=k7Iq=Lm@Pt6Ho\35""6n\202\36""7o\5\37""8p\37""8q\40""9r" - "\40:r!:s\202\";t\17#<u#=v$=v$>w%>x%?y&?y'@z'A{(A{(B|)B})C~*D~*D\177\202+" - "E\200\5,F\200,H\201-H\202.I\202.I\203\202/J\204\2""0K\2050J\205\202.H\202" - "\13/H\2030I\2042M\2074O\2124P\2135P\2135Q\2146R\2156R\2167S\2167S\217\202" - "8T\220\1""9U\221\202:V\222\1;W\223\202;W\224\14;V\223;U\222:U\222;U\223;" - "V\223<W\224=W\224=X\225>X\226>Y\227?Z\227?Z\230\202@[\231\5A\\\232B\\\233" - "B]\234C^\234C^\235\202D_\236\17Ea\240Fb\241Fc\242Fb\241Fb\242Fc\243Gd\243" - "Hd\244He\245Ie\246If\246Jg\247Jg\250Kh\250Kh\251\202Li\252\4Mj\253Nk\254" - "Pm\256Qn\257\206Ro\260\26\23*^\23*_\24+_\24,b\26/e\26""0g\27""0g\30""1h\30" - """2i\31""2i\31""3j\32""3k\32""4k\33""4l\33""5m\34""6n\35""6n\36""7o\36""7" - "p\37""8p\40""9q\40""9r\202!:s#\";t\";u#<u#=v$=w$>x%>x&?y&@z'@z'A{(A|(B|)" - "C})C~*D~+D\177+E\200,F\200,G\200-H\201-H\202.I\202.J\203/J\204/K\2050K\205" - "/J\205.G\202/H\202/I\2030I\2043N\2114O\2124P\213\2025Q\214\5""6R\2156R\216" - "7S\2168T\2178T\220\2039U\221\1""9T\220\2028S\217\13""9S\2209T\220:T\221;" - "U\222;V\223<V\223<W\224=W\225=X\225>Y\226>Y\227\202?Z\230\16@[\231A[\232" - "A\\\232B]\233B]\234C_\235Ea\240Gc\242He\244Ie\244If\245Jf\246If\245Ie\245" - "\204He\245\7If\246Jf\247Kg\250Li\251Mj\252Nk\254Pm\256\212Ro\260)\22)]\23" - "*^\23+_\24+`\25,`\25-b\26/e\27""0g\30""1h\30""2i\31""2j\31""3j\32""3k\32" - """4l\33""5l\34""5m\34""6n\35""6o\36""7o\37""8p\37""8q\40""9q\40""9r!:s!;" - "s\";t#<u#<v$=v$=w%>x%?x&?y&@z'@{'A{(B|(B})C}*C~*D\177\202+E\200\11,F\200" - ",G\201-H\201-I\202.I\203/J\203/J\2040K\2050K\206\202.H\202\4/H\203/I\203" - "1K\2063O\212\2024P\213\3""5Q\2146Q\2156R\215\2027S\216\24""7R\2166Q\2156" - "P\2146Q\2157Q\2157R\2168R\2179S\2179S\220:T\221:U\221;U\222;V\223<V\224<" - "W\224=X\225=X\226>Y\226?Y\227?Z\230\202@[\231\30A\\\232B^\235Da\237Eb\241" - "Fc\242Gd\243Hd\243Ie\244Ie\245Jf\245Jg\246Kg\247Kh\247Lh\250Li\251Mj\251" - "Mj\252Nk\253Ok\254Ol\254Pm\255Pm\256Qn\256Qn\257\211Ro\260\1\22)]\202\23" - "*^\17\24+_\24+`\25,a\25-a\26-b\27/e\30""0g\30""2h\31""2j\32""3k\32""4k\33" - """4l\33""5m\34""5m\35""6n\202\36""7o\5\37""8p\37""8q\40""9r!:r!:s\202\";" - "t\17#<u#=v$=w$>w%>x%?y&?y'@z'A{(A|(B|)B})C~*D~*D\177\202+E\200\5,F\200,H" - "\201-H\202.I\202.I\203\202/J\204\11""0K\205/I\203.G\201.H\202/H\203/I\204" - "2N\2104O\2124P\213\2025P\213\37""4O\2134N\2124N\2114N\2125O\2136P\2136P\214" - "7Q\2157Q\2168R\2168S\2179S\2209T\220:T\221:U\222;U\223;V\223<W\224=W\225" - "=X\225>X\226>Y\227?Z\227@[\231B^\234C`\236Da\237Eb\240Eb\241Fc\241Gc\242" - "\202Hd\243\17Ie\244If\245Jf\246Jg\246Kg\247Kh\250Li\250Mi\251Mj\252Nj\253" - "Nk\253Ol\254Ol\255Pm\255Pm\256\202Qn\257\210Ro\260\202\22)]\26\23*^\23*_" - "\24+_\24,`\25,a\25-a\26-b\27.c\27/d\30/e\30""1g\31""2i\32""3j\33""4l\33""5" - "m\34""6n\35""6n\36""7o\37""7p\37""8p\40""9q\40""9r\202!:s\26\";t\"<u#<u#" - "=v$=w%>w%>x&?y&@z'@z'A{(A|(B|)C})C~*D\177+D\177+E\200,F\200,G\200-H\201-" - "H\202\202.I\203\12/J\204/K\205/I\203.G\201.G\202/H\202/I\2031K\2062N\210" - "2M\210\2032L\207\5""3M\2104M\2114N\2115O\2125O\213\2026P\214\5""7Q\2157Q" - "\2168R\2168S\2179S\220\202:T\221\13;U\222;V\223<V\223<W\224=W\225=X\226?" - "Z\230@]\233B_\235C_\235C`\236\202Da\237\26Eb\240Eb\241Fc\242Gc\242Hd\243" - "He\244Ie\244If\245Jf\246Kg\247Kh\247Lh\250Li\251Mi\251Mj\252Nk\253Nk\254" - "Ol\254Ol\255Pm\256Qn\256Qn\257\206Ro\260\202Qn\257\202\22)])\22)^\23*^\23" - "+_\24+`\25,`\25,a\26-a&9dBTy+?j\30/e\30""0e\31""1f\31""1g\32""2h\33""3j\34" - """5l\35""6n\36""7o\37""8p\37""8q\40""9q\40""9r!:s!;t\";t#<u#<v$=v$=w%>x%" - "?x&?y&@z'@{'A{(B|(B})C}*C~*D\177\202+E\200*,F\200,G\201-H\201-I\202.I\203" - "/J\203/J\204.I\203-F\201.G\201.H\202/H\203/I\2030I\2040J\2051K\2062K\206" - "2L\2073L\2103M\2104N\2114N\2125O\2125O\2136P\2146Q\2157Q\2157R\2168R\217" - "9S\2179S\220:T\221:U\221;U\222;V\223<W\224>Y\227@\\\231A]\233A^\233B^\234" - "B_\235\202C`\236\17Da\237Da\240Eb\240Eb\241Fc\242Gd\243Hd\243Ie\244Ie\245" - "Jf\245Jg\246Kg\247Kh\247Lh\250Li\251\202Mj\252\2Nk\253Ok\254\202Ol\254\4" - "Ol\255Ol\254Nk\254Ol\255\202Nk\254\204Mj\253,\23+a\22*^\22)]\23*^\23*_\24" - "+_\24+`\25,a7Hk\225\230\234\315\317\321\237\244\252':e\30/e\31""0f\31""1" - "f\32""1g\32""2h\33""2h\33""3i\33""4j\34""5k\35""6m\36""7o\37""8q\40""9r!" - ":s\";t\";u#<u#=v$=w$>w%>x%?y&?y'@z'A{(A{(B|)B})C~*D~*D\177\202+E\200\4,F" - "\200-H\201-H\202.I\202\202.I\203+-G\201-F\200-G\201.G\202.H\202/H\2030I\204" - "0J\2041J\2051K\2062K\2062L\2073M\2103M\2114N\2114N\2125O\2136P\2136P\214" - "7Q\2157Q\2168R\2168S\2179S\2209T\220:T\221;V\223=X\225>[\230?\\\231@\\\232" - "@]\232A]\233A^\234B_\234B_\235C`\236C`\237Da\237Eb\240Eb\241Fc\241Gc\242" - "\202Hd\243\6Ie\244If\245Jf\246Jg\246Kg\247Kh\250\202Lh\250\2Kh\250Kg\247" - "\202Jg\247\5Jg\250Kh\250Kh\251Li\252Mi\252\206Mj\253\202\23,b\21\23+`\22" - "*^\23*^\23*_\24+_\24,`';e\241\257\275\226\241\253\214\230\243\35""1^\30/" - "d\30""0e\31""0f\31""1g\32""2g\32""2h\202\33""3i\26\33""4j\33""4k\34""5l\35" - """6l\35""6m\36""7n\37""8p\40:r!;s#<u#=v$=w%>x%?x&?y&@z'@z'A{(A|(B|)C})C~" - "\202*D\177\2+E\200,F\200\202,G\200\1+F\200\202+E\177\13,E\200,F\200-F\200" - ".G\201.H\202/H\203/I\2030I\2040J\2051J\2051K\206\2022L\207\5""3M\2104M\211" - "4N\2125O\2125O\213\2026P\214\31""7Q\2157R\2168R\2169S\220:V\222<X\225=Y\226" - ">Z\227>[\230?[\230?\\\231@\\\232@]\233A^\233A^\234B_\235C_\235C`\236Da\237" - "Da\240Eb\240Eb\241Fc\242Gc\242Hd\243\202Ie\244\17If\245He\244Hd\244Gd\243" - "Gc\243Gd\244Hd\244He\245If\246If\247Jg\247Kg\250Kh\251Li\251Li\252\206Mj" - "\253\204\23,b(\23+a\23+_\24+_\24+`\26+]\312\312\313\245\245\246\233\234\236" - "\26-a\27/d\30/e\30""0e\31""0f\32""1g\32""2g\33""2h\33""3i\33""3j\33""4j\34" - """5k\34""5l\35""6l\35""6m\36""7n\36""8o\37""8o\40""9p\40:q!;s\"<t$=v%>w&" - "?y&@z'@{'A{(B|)B})C}*D~\202*D\177\1*D~\202)C}\3*D}*E~+E\177\202,E\200#-F" - "\200-G\201.G\201.H\202/H\203/I\2030I\2040J\2051K\2062K\2062L\2073L\2103M" - "\2104N\2114N\2125O\2125O\2136P\2147Q\2158S\217:V\222;W\224<X\224<Y\225=Y" - "\226=Z\227>Z\227>[\230?[\231?\\\231@]\232A]\233A^\233B^\234B_\235\202C`\236" - "\7Da\237Da\240Eb\240Ec\241Fc\242Fb\241Fa\240\203Ea\240\5Eb\241Fb\242Fc\243" - "Gc\243Gd\244\202He\245\5If\246Jf\247Jg\247Kh\250Kh\251\202Li\252\3Mj\253" - "Nk\254Ol\255\202Pm\256\205\23,b%\24-c\24,b\24,a\24+`hr\207\201\204\213Q\\" - "t\26.c\27.c\27/d\30""0e\31""0f\31""1f\32""1g\32""2h\33""2h\33""3i\33""4j" - "\33""4k\34""5k\35""5l\35""6m\36""7m\36""7n\37""8o\37""8p\40""9p\40:q!:r!" - ";r\";s\"<t#=u%>w%?x'@z'A{\202(B|3(Az'Az(B{(B|)C|*D}*D~+E~+E\177,E\200,F\200" - "-F\200-G\201.G\202.H\202/H\2030I\2040J\2041J\2051K\2062K\2072L\2073M\210" - "3M\2114N\2114N\2126Q\2148S\2179U\221:V\222:V\223;W\223;X\224<X\225<Y\225" - "=Y\226=Z\227>Z\230?[\230?\\\231@\\\232@]\232A]\233A^\234B_\234B_\235C`\236" - "C`\237D`\237C_\236C_\235\202C^\235\23D_\236D`\236E`\237Ea\240Ea\241Eb\241" - "Fb\242Gc\243Gd\243Hd\244He\245Ie\246If\246Kh\250Li\252Nk\253Ol\255Pm\256" - "Qo\257\204Ro\260\206\23,b\5\24-c\24-d\25.d\25-c\25-b\202\26-b\10\27.c\27" - "/d\30/d\30""0e\31""0f\31""1g\32""2g\32""2h\202\33""3i\5\33""4j\34""4k\34" - """5l\35""6l\35""6m\202\36""7n\22\37""8o\37""9p\40""9p!:q!:r\";s\"<s#<t#=" - "u$=u$>v%>w%?x&@x&@y'Az(Az(B{\202)C|\2*D}*D~\202+E\177\13,E\200,F\200-F\200" - ".G\201.H\202/H\203/I\2030I\2040J\2051J\2051K\206\2022L\207\5""3N\2115P\214" - "7S\2168T\2178T\220\2029U\221\5:V\222:W\223;W\223;X\224<X\225\202=Y\226\12" - ">Z\227>[\230?[\230?\\\231@\\\232@]\233A^\233A^\234A^\233A]\233\203A\\\232" - "\26B]\233B]\234C^\235C_\235D_\236D`\237E`\237Ea\240Eb\241Fb\242Fc\242Hd\244" - "If\246Kg\247Li\251Nj\253Nk\254Ol\254Pl\255Pm\256Qn\256Qn\257\203Ro\260\1" - "Qn\257\206\23,b\7\23,c\24-c0Es@OoARwM\\{+?k\203\27/d\30\30/e\30""0e\31""1" - "f\32""1g\32""2h\33""2h\33""3i\33""3j\33""4j\34""5k\34""5l\35""6l\35""6m\36" - """7n\36""8o\37""8o\40""9p\40""9q!:q!;r\";s\"<s#<t#=u\202$>v\5%?w&?x&@x'@" - "y'Az\202(B{\5)C|)C}*D}*E~+E\177\202,E\200\17-F\200-G\201.G\201.H\202/H\203" - "/I\2030J\2040J\2051K\2062L\2074P\2136Q\2156R\2157S\2167S\217\2028T\220\22" - """9U\2219V\222:V\222;W\223;W\224<X\224<X\225=Y\226=Z\227>Z\227>[\230?[\231" - "@\\\231?\\\231?Z\230>Y\227?Y\227?Z\230\202@[\231\5A\\\232A\\\233B]\233B^" - "\234C^\235\202D_\236\17E`\237Ea\240Gc\242He\244Jg\246Kh\250Lh\250Li\251M" - "j\252Nj\252Nk\253Ok\254Ol\254Pm\255Pm\256\202Qn\257\202Ro\260\1Nk\254\207" - "\23,b\11\24-c\31""2g\37""4b/Bl)<g\35""4f\27""0g\27""1h\30""1h\202\30""1g" - "f\31""1g\31""1f\32""1g\32""2h\33""2h\33""3i\33""4j\33""4k\34""5k\35""5l\35" - """6m\36""7m\36""7n\37""8o\37""8p\40""9p\40:q!:r!;r\";s#<t#=t$=u$>v%>w%?w" - "&?x&@y'Ay'Az(B{(B|)C|*D}*D~+E~+E\177,E\200,F\200-F\200-G\201.G\202.H\202" - "/I\2030I\2040J\2042M\2104P\2135P\2135Q\2146R\2156R\2167S\2167S\2178T\220" - "9U\2209U\221:V\222:V\223;W\223;X\224<X\225<Y\225=Y\226=Z\227>Z\227>Y\227" - "=X\225=W\225=X\225>X\226>Y\227?Z\227?Z\230@[\231@[\232A\\\232A]\233B]\234" - "C^\234C^\235E`\237Gc\242Ie\244If\245Jf\246Jg\246Kg\247Lh\250Li\250Mi\251" - "Mj\252Nj\253Nk\253Ol\254Ol\255Pm\255Pm\256Qn\257Ro\260Ol\255Mj\253\210\23" - ",b\15\24-c\24-d\25.d\25/e\26/f\26""0g\27""0g\30""1h\30""2i\31""2i\31""3j" - "\32""3k\32""3j\202\33""3j\202\33""3i\1\33""4j\202\34""5k\2\35""6l\35""6m" - "\202\36""7n\26\37""8o\37""9p\40""9p!:q!:r\";s\"<s#<t#=u$=u$>v%?w%?x&@x'@" - "y'Az(Az(B{)C|)C}*D}*D~\202+E\177\13,E\200,F\200-F\200.G\201.H\202/H\203/" - "I\2030I\2042M\2074P\2124P\213\2025Q\214\5""6R\2157R\2167S\2178T\2178T\220" - "\2029U\221\7:V\222:W\223;W\224<X\224<X\225<Y\225<W\224\202;V\223\11<V\223" - "<W\224=W\225=X\226>Y\226>Y\227?Z\230@Z\230@[\231\202A\\\232\26B]\233C_\236" - "Fb\241Gd\242Hd\243He\244Ie\244Jf\245Jg\246Kg\247Kh\247Lh\250Li\251Mi\251" - "Mj\252Nk\253Nk\254Ol\254Pl\255Pm\256Qn\256Ol\255\202Mj\253\210\23,b\23\23" - "-c\24-c\25.d\25.e\26/e\26/f\27""0g\27""1h\30""1h\30""2i\31""2j\31""3j\32" - """4k\33""4l\33""5m\34""5m\34""6m\35""6m\34""5m\202\34""5l\15\35""6l\35""6" - "m\36""7n\36""8o\37""8o\40""9p\40""9q!:q!;r\";s\"<s#<t#=u\202$>v\5%?w&?x&" - "@x'@y'Az\202(B{\26)C|)C}*D}*E~+E\177,E\177,E\200-F\200-G\201.G\201.H\202" - "/H\203/I\2030J\2041K\2064O\2125P\2135Q\2146Q\2156R\2157S\2167S\217\2028T" - "\220\3""9U\2219V\222:V\222\202;W\223\15:U\2229T\220:T\221:U\222;U\222;V\223" - "<V\224<W\224=X\225>X\226>Y\227?Y\227?Z\230\202@[\231\5B]\234Da\237Eb\240" - "Ec\241Fc\242\202Hd\243\17Ie\244If\245Jf\245Jg\246Kg\247Kh\250Lh\250Li\251" - "Mj\252Nj\252Nk\253Ok\254Ol\254Pm\255Ol\255\202Li\252\1Mj\253\211\23,b\21" - "\24-c\24-d\25.d\25/e\26/f\26""0f\27""0g\27""1h\30""1i\31""2i\31""3j\32""3" - "k\32""4k\33""4l\33""5m\34""5m\34""5l\202\34""4k(\34""5k\35""5l\35""6m\36" - """7m\36""7n\37""8o\37""8p\40""9p\40:q!:r!;r\";s#<t#=t$=u$>v%>w%?w&?x&@y'" - "Ay'Az(B{)B|)C|*D}*D~+E~+E\177,E\200,F\200-F\200-G\201.G\202.H\202/I\2030" - "I\2040J\2041K\2063O\212\2025Q\214\6""6R\2156R\2167S\2167S\2178T\2209U\220" - "\2029U\221$8S\2178R\2168S\2179S\2209T\220:T\221:U\222;V\223<V\223<W\224=" - "W\225=X\225>X\226>Y\227?Z\227@[\231B^\235C`\237Da\237Eb\240Eb\241Fc\241G" - "c\242Hd\243He\244Ie\244If\245Jf\246Jg\246Kg\247Lh\250Li\250Mi\251Mj\252N" - "j\253Nk\253\202Ol\254\4Li\251Kh\251Li\252Mj\253\212\23,b\15\24-c\24.d\25" - ".e\25/e\26/f\26""0g\27""0g\30""1h\30""2i\31""2i\31""3j\32""3j\32""2i\202" - "\32""2h\202\33""3i\1\33""4j\202\34""5k\2\35""6l\35""6m\202\36""7n\22\37""8" - "o\37""9p\40""9p!:q!:r\";s\"<s#<t#=u$=u$>v%>w%?x&@x&@y'Az(Az(B{\202)C|\2*" - "D}*D~\202+E\177\1,E\200\202-F\200\10.G\201.H\202/H\202/I\2030I\2040J\205" - "1K\2063N\211\2025Q\21416R\2157R\2167S\2178T\2177S\2167Q\2156P\2147Q\2157" - "R\2168R\2168S\2179S\220:T\221:U\221;U\222;V\223<V\223<W\224=W\225=X\226>" - "Y\226@\\\232B_\235C_\235C`\236Da\237Da\240Eb\240Eb\241Fc\242Gd\242Hd\243" - "He\244Ie\244Jf\245Jg\246Kg\247Kh\247Lh\250Li\251Mi\251Mj\252Nk\253Ok\254" - "Kh\251Kg\250Kh\251Li\251Li\252\212\23,b\12\23,c\24-c\24.d\25.e\26/e\26/f" - "\27""0g\27""1g\30""0g\30""0f\202\30""0e\5\31""1f\31""1g\32""2h\33""2h\33" - """3i\202\33""4j\5\34""5k\34""5l\35""6l\35""7m\36""7n\202\37""8o\17\40""9" - "p\40""9q!:q!;r\";s\"<t#<t#=u$>v%>v%?w&?x&@x'@y'Az\202(B{\5)C|)C}*D}*E~+E" - "\177\202,E\200\16-F\200-G\201.G\201.H\202/H\203/I\2030J\2041J\2051K\2063" - "M\2105Q\2146Q\2156R\2156Q\214\2035O\213\1""6P\214\2027Q\215\17""8R\2168R" - "\2179S\2209T\220:T\221:U\222;U\222;V\223<W\224=W\224>Y\226@\\\232A^\234B" - "^\234B_\235\202C`\236\5Da\237Da\240Eb\240Ec\241Fc\242\202Hd\243\5Ie\244I" - "f\245Jf\245Jg\246Kg\247\202Lh\250\11Li\251Mj\252Nj\252Li\251Jf\247Jg\250" - "Kh\250Kh\251Li\252\213\23,b\17\24-c\24-d\25.d\25.e\25.d\26.c\26-b\26.c\27" - ".d\30/d\30""0e\31""0f\31""1f\32""1g\32""2h\202\33""3i1\33""4j\33""4k\34""5" - "k\35""6l\35""6m\36""7m\36""7n\37""8o\37""8p\40""9p\40:q!:r!;r\";s\"<t#=t" - "$=u$>v%>w%?w&@x&@y'Ay'Az(B{)B|)C|*D}*D~+E~+E\177,E\200,F\200-F\200-G\201" - ".G\202.H\202/I\2030I\2040J\2041J\2051K\2063M\2104O\2123M\2103M\2114N\211" - "4N\2125O\213\2026P\214\17""7Q\2157Q\2168R\2168S\2179S\2209T\220:T\221:U\222" - ";V\223<V\223=Y\226@\\\232@]\232A^\233A^\234\202B_\235\22C`\236C`\237Da\237" - "Eb\240Eb\241Fc\241Gc\242Hd\243He\244Ie\244If\245Jf\246Jg\246Kg\247Lh\250" - "Li\251Mi\251Li\251\202If\246\4Jg\247Jg\250Kh\250Lh\251\214\23,b\1\23,a\202" - "\24+`\14\24,`\25,a\26-b\26.b\27.c\27/d\30/e\30""0e\31""0f\31""1g\32""2g\32" - """2h\202\33""3i\5\33""4j\34""5k\34""5l\35""6l\35""6m\202\36""7n\26\37""8" - "o\37""9p\40""9q!:q!:r\";s\"<s#<t#=u$=u$>v%>w%?x&@x&@y'Az(Bz(B{)C|)C}*D}*" - "D~\202+E\177\1,E\200\202-F\200\17.G\201.H\202/H\203/I\2030I\2040J\2051K\205" - "1K\2062L\2072L\2103M\2104N\2114N\2125O\2125O\213\2026P\214\31""7Q\2157R\216" - "8R\2178S\2179S\220:T\221:U\221;V\222=Y\226?[\231?\\\231@\\\232@]\233A^\233" - "A^\234B_\235C_\235C`\236Da\237Da\240Eb\240Eb\241Fc\242Gd\242Hd\243\202Ie" - "\244\4Jf\245Jf\246Kg\247Kh\247\202Lh\250\202He\245\5If\246Jf\247Jg\247Kg" - "\250Kh\251\210\23,b\34\23+a\22*_\22)^\22)]\22)^\23*^\24+_\24+`\25,a\25-a" - "\26-b\26.c\27.c\27/d\30/e\30""0e\31""1f\32""1g\32""2h\33""2h\33""3i\33""3" - "j\33""4j\34""5k\34""5l\35""6l\36""6m\36""7n\202\37""8o\17\40""9p\40""9q!" - ":q!;r\";s\"<t#<t#=u$>v%>v%?w&?x&@x'Ay'Az\202(B{\5)C|)D}*D~*E~+E\177\202," - "E\200\17-F\200-G\201.G\201.H\202/H\203/I\2040J\2041J\2051K\2062K\2062L\207" - "3L\2103M\2104N\2114N\212\2025O\213\1""6P\214\2027Q\215\17""8R\2168R\2179" - "S\2209T\220;U\222=Y\226>Z\227>[\230?\\\231@\\\231@]\232A]\233A^\234B^\234" - "B_\235\202C`\236\5Da\237Da\240Eb\241Fc\241Gc\242\202Hd\243\16Ie\244If\245" - "Jf\245Jg\246Kg\247Kh\247He\245Hd\244He\245Ie\245If\246Jf\247Jg\250Kh\250" - "\205\23,b\2\23+a\22*_\206\22)]\17\23*^\23*_\24+_\24,`\25,a\25-a\26-b\27." - "c\27.d\30/d\30""0e\31""0f\31""1f\32""1g\32""2h\202\33""3i\21\33""4j\33""4" - "k\34""5k\35""5l\35""6m\36""7m\36""7n\37""8o\37""8p\40""9p\40:q!:r!;r\";s" - "\"<t#=u$=v\202%>w\27%?w&@x&@y'Ay'Az(B{)B|)C|*D}*D~+E~+E\177,E\200,F\200-" - "F\200-G\201.G\202.H\202/I\2030I\2040J\2041J\2051K\206\2022L\207\5""3M\210" - "3M\2114N\2115N\2125O\213\2026P\214\17""7Q\2157Q\2168R\2168S\217:U\221<Y\225" - "=Y\226>Z\227>[\230?[\230?\\\231@\\\232@]\232A]\233A^\234\202B_\235\1C`\236" - "\202Da\237\23Eb\240Eb\241Fc\241Gc\242Hd\243He\244Ie\244If\245Jf\246Jg\246" - "He\244Gc\243Gd\244Hd\244He\245Ie\246If\246Jg\247Jg\250\202\23,b\2\23+`\22" - "*_\212\22)]\5\23*^\23+_\24+`\25,`\25,a\202\26-b\17\27.c\27/d\30/d\30""0e" - "\31""0f\31""1g\32""2g\32""2h\33""3i\33""3j\33""4j\34""5k\34""5l\35""6l\35" - """6m\202\36""7n\26\37""8o\37""9p\40""9q!:q!:r\";s\"<t$>w&@y'@z'A{&@z&?x&" - "@x'@y'Az(Az(B{)C|)C}*D}*D~\202+E\177\1,E\200\202-F\2002.G\201.H\202/H\203" - "/I\2030I\2040J\2051K\2051K\2062L\2073L\2103M\2104N\2114N\2125O\2125O\213" - "6P\2146P\2157Q\2157R\2169T\221<X\224<X\225=Y\226=Z\227>Z\227>[\230?[\231" - "?\\\231@]\232@]\233A^\233B^\234B_\235C`\235C`\236Da\237Da\240Eb\240Eb\241" - "Fc\242Gd\242Hd\243Ie\244Ie\245Jf\245Ie\245Fb\242Fc\242Gc\243Gd\244\202He" - "\245\4If\246Jf\247Jg\247\22*^\215\22)]\21\22*^\23*^\23+_\24+`\25,a\25-a\26" - "-b\26.c\27.c\27/d\30/e\30""0e\31""1f\32""1g\32""2h\33""2h\33""3i\202\33""4" - "j\5\34""5k\34""5l\35""6m\35""7m\36""7n\202\37""8o\17\40""9p\40""9q!:r#<u" - "%>x%?y&?y&@z'A{(A{(B|'A{&@y'Ay'Az\202(B{\5)C|)C}*D~+E~+E\177\202,E\200\17" - "-F\200-G\201.G\201.H\202/H\2030I\2040J\2041J\2051K\2062K\2062L\2073L\210" - "3M\2104N\2114N\212\2025O\213\22""6P\2147Q\2159T\220;W\223;W\224<X\225<Y\225" - "=Y\226=Z\227>Z\227>[\230?\\\231@\\\231@]\232A]\233A^\234B^\234B_\235\202" - "C`\236\5Da\237Da\240Eb\241Fc\241Gc\242\202Hd\243\202Ie\244\202Eb\241\10F" - "b\242Fc\243Gd\243Gd\244He\245Ie\245If\246Jf\247\217\22)]\17\23*^\23*_\24" - "+_\24+`\25,a\25-b\26-b\26.c\27/d\30/d\30""0e\31""0f\31""1f\32""1g\32""2h" - "\202\33""3i\5\33""4j\33""4k\34""5k\35""6l\35""6m\202\36""7n\22\37""8o\37" - """9p!:s#<v$=w%>w%>x&?y&@z'@z'A{(A|(B|)B|'Az'Ay(Az(B{\202)C|\17*D}*D~+E~+" - "E\177,E\200,F\200-F\200-G\201.G\202/H\202/I\2030I\2040J\2041J\2051K\206\202" - "2L\207\26""3M\2103M\2114N\2115N\2125O\2136P\2148S\217:V\222:V\223;W\223;" - "X\224<X\225<Y\226=Y\226>Z\227>[\230?[\230?\\\231@\\\232@]\232A^\233A^\234" - "\202B_\235\22C`\236D`\237Da\237Eb\240Eb\241Fc\241Gc\242Hd\243Hd\244Fa\240" - "Ea\240Ea\241Fb\241Fc\242Gc\243Gd\244Hd\244He\245\202If\246\217\22)]\6\22" - ")^\23*^\23+_\24+`\24,`\25,a\202\26-b'\27.c\27/d\30/e\30""0e\31""0f\31""1" - "g\32""2g\32""2h\33""3i\33""3j\33""4j\34""5k\34""5l\35""6l\35""6m\36""7n\40" - """9q\";t#<u#<v$=v$=w%>x%?x&?y&@z'@{'A{(B|(B})C}(B{'Az(Bz(B{)C|)C}*D}*D~\202" - "+E\177\22,E\200-F\200-F\201.G\201.H\202/H\203/I\2030I\2040J\2051K\2051K\206" - "2L\2073L\2103M\2104N\2114N\2125O\2127R\215\2029U\221\31:V\222:W\223;W\224" - "<X\224<X\225=Y\226=Z\226>Z\227>[\230?[\231?\\\231@]\232@]\233A^\233B^\234" - "B_\235C_\236C`\236Da\237Da\240Eb\240Eb\241Fc\242Gd\242Fa\240\202E`\237\6" - "Ea\240Eb\241Fb\242Fc\242Gc\243Gd\244\202He\245\1If\246\220\22)]\4\22*^\23" - "*^\24+_\24+`\202\25,a\13\26-b\26.c\27.c\27/d\30/e\30""0f\31""1f\32""1g\32" - """2h\33""2h\33""3i\202\33""4j\5\34""5k\34""5l\36""7o\40""9r!:s\202\";t\12" - "#<u#=v$=v$>w%>x%?y&?y&@z'A{(A|\202(B|\3'A{'Ay'Az\202(B{\5)C|)C}*D}+E~+E\177" - "\202,E\200\13-F\200-G\201.G\201.H\202/H\203/I\2040J\2041J\2051K\2062K\206" - "2L\207\2023M\210\5""4N\2116P\2148T\2209T\2209U\221\202:V\222\26;W\223;W\224" - "<X\225<Y\225=Y\226=Z\227>Z\227>[\230?\\\231@\\\231@]\232A]\233A^\234B^\234" - "B_\235C`\236C`\237Da\237Db\240Eb\241Fc\241Ea\240\202D_\236\12E`\237Ea\240" - "Ea\241Eb\241Fb\242Fc\243Gd\243Hd\244He\245Ie\245\221\22)]\17\23*^\23*_\24" - "+_\24+`\25,a\25-b\26-b\26.c\27.d\30/d\30""0e\31""0f\31""1f\32""1g\32""2h" - "\202\33""3i\5\33""4j\35""5m\37""8p\40""9q\40""9r\202!:s\17\";t\";u#<u#=v" - "$=w$>w%>x&?y&@z'@z&@z&?x%?w&@x&@y\202'Az\1(B{\202)C|\17*D}*D~+E~+E\177,E" - "\200,F\200-F\200-G\201.G\202/H\202/I\2030I\2040J\2041J\2051K\206\2022L\207" - "\5""3M\2104O\2127S\2168T\2178T\220\2029U\221\17:V\222:V\223;W\223;X\224<" - "X\225<Y\226=Y\226>Z\227>[\230?[\230?\\\231@\\\232@]\232A^\233A^\234\202B" - "_\235\5C`\236D`\237Da\237Eb\240Ea\240\202C^\235\13D_\236D`\237E`\237Ea\240" - "Ea\241Eb\242Fc\242Gc\243Gd\244Hd\244He\245\221\22)]\6\22)^\23*^\23*_\24+" - "`\24,`\25,a\202\26-bM\27.c\27/d\30/e\30""0e\31""1f\31""1g\32""2g\32""2h\34" - """4k\35""6n\36""7o\37""8p\37""8q\40""9q\40""9r!:s!;s\";t#<u#<v$=v$=w%>x%" - "?x%>x$>v$=u$>v%?w&?x&@x'@y'Az(Bz(B{)C|)C}*D}*D~+E\177,E\177,E\200-F\200-" - "G\201.G\201.H\202/H\203/I\2030I\2040J\2051K\2052K\2062L\2073M\2106R\2157" - "S\2167S\2178T\2178T\2209U\2219U\222:V\222:W\223;W\224<X\224<X\225=Y\226=" - "Z\226>Z\227>[\230?[\231?\\\231@]\232A]\233A^\233B^\234B_\235\202C`\236\202" - "Da\237\16B^\234B]\234C^\235C_\235D_\236E`\237E`\240Ea\240Eb\241Fb\242Fc\242" - "Gc\243Gd\244He\245\222\22)]\4\23*^\23*_\24+_\24+`\202\25,a\22\26-b\26.c\27" - ".c\27/d\30/e\30""0f\31""1f\32""2i\33""4l\34""5m\35""6n\36""7o\36""7p\37""8" - "p\37""8q\40""9r\40:r!:s\202\";t\17#<u#<v$=w#=v#<t\"<t#<t$=u$>v%>v%?w&?x&" - "@y'Ay'Az\202(B{\5)C|*D}*D~+E~+E\177\202,E\200\17-F\200-G\201.G\201.H\202" - "/H\203/I\2040J\2041J\2051K\2062K\2062L\2075P\2136R\2167S\2167S\217\2028T" - "\220\31""9U\221:V\222:V\223;W\223;X\224<X\225<Y\225=Y\226=Z\227>Z\227>[\230" - "?\\\231@\\\232@]\232A]\233A^\234B_\234B_\235C`\236C`\237B^\234A\\\233B]\234" - "C^\234C^\235\202D_\236\10E`\237Ea\240Ea\241Eb\241Fb\242Fc\243Gd\243Hd\244" - "\223\22)]\26\23*^\23*_\24+_\24,`\25,a\25-b\26-b\26.c\27/d\30/d\30""1g\32" - """3j\32""4l\33""4l\33""5m\34""6n\35""6n\36""7o\36""7p\37""8q\40""9q\40""9" - "r\202!:s\22\";t\"<u#<u!;s!:r\";r\";s#<t#=u$=u$>v%>w%?w&@x&@y'Az(Az(B{\202" - ")C|\2*D}*D~\202+E\177\13,E\200,F\200-F\200.G\201.G\202/H\202/I\2030I\204" - "0J\2051J\2051K\206\2022L\207\5""5Q\2147R\2167S\2178T\2178T\220\2029U\221" - "\17:V\222:V\223;W\223;X\224<X\225<Y\226=Y\226>Z\227>[\230?[\230?\\\231@\\" - "\232@]\233A^\233A^\234\202B_\235\1B^\234\202A\\\232\2B]\233B]\234\202C^\235" - "\11D_\236D`\237E`\237Ea\240Ea\241Fb\241Fc\242Gc\243Gd\244\223\22)]\27\22" - ")^\23*^\23+_\24+`\25,`\25,a\26-b\26.c\27/e\30""1h\31""2j\31""3j\32""3k\32" - """4l\33""5l\34""5m\35""6n\36""6o\36""7o\37""8p\37""8q\40""9q\40""9r\202!" - ":s\26\40""9q\40""9p\40""9q!:q!;r\";s\"<s#<t#=u$=v$>v%?w&?x&@x'@y'Az(Bz(B" - "{)C|)C}*D}*E~\202+E\177$,E\200-F\200-F\201.G\201.H\202/H\203/I\2030I\204" - "0J\2051K\2051K\2062L\2073M\2106Q\2157S\2167S\2178T\2178T\2209U\2219U\222" - ":V\222:W\223;W\224<X\224<X\225=Y\226=Z\227>Z\227>[\230?[\231?\\\231@]\232" - "@]\233A^\234B^\234A^\234\202@[\231\16A\\\232A\\\233B]\233B]\234C^\235C_\236" - "D_\236E`\237E`\240Ea\240Eb\241Fb\242Fc\242Gc\243\224\22)]\30\23*^\23*_\24" - "+_\24+`\25,a\25.c\27""0f\27""1h\30""1h\30""2i\31""2j\32""3k\32""4k\33""4" - "l\33""5m\34""5m\35""6n\36""7o\36""7p\37""8p\37""8q\40""9r\37""9p\36""7o\202" - "\37""8o\17\40""9p\40:q!:q!;r\";s\"<t#<t$=u$>v%>w%?w&?x&@y'Ay'Az\202(B{\5" - ")C|*D}*D~+E~+E\177\202,E\200\22-F\200-G\201.G\201.H\202/H\2030I\2040J\204" - "1J\2051K\2062K\2062L\2073M\2116R\2157S\2167S\2178T\2208U\2209U\221\202:V" - "\222\15;W\223;W\224<X\225<Y\225=Y\226=Z\227>Z\227>[\230?\\\231@\\\232@]\232" - "A]\233A^\233\202?Z\230\202@[\231\5A\\\232A]\233B]\234C^\234C^\235\202D_\236" - "\6E`\237Ea\240Ea\241Eb\241Fb\242Gc\243\225\22)]\24\23*^\23*_\24,a\25.d\26" - "/f\26""0g\27""0g\27""1h\30""2i\31""2i\31""3j\32""3k\32""4l\33""4l\33""5m" - "\34""6n\35""6n\36""7o\37""7p\36""7o\202\35""6m\202\36""7n\22\37""8o\37""9" - "p\40""9p\40:q!:r!;s\"<s#<t#=u$=u$>v%>w%?w&@x&@y'Az(Az(B{\202)C|\2*D}*D~\202" - "+E\177\13,E\200,F\200-F\200.G\201.H\202/H\202/I\2030I\2040J\2051J\2051K\206" - "\2022L\207\5""4N\2116R\2157S\2178T\2178T\220\2029U\221\17:V\222:W\223;W\223" - ";X\224<X\225<Y\226=Y\226>Z\227>[\230?[\230?\\\231@\\\232@]\232?Z\227>Y\227" - "\202?Z\230\1@[\231\202A\\\232\13B]\233B]\234C^\235C_\235D_\236D`\237E`\237" - "Ea\240Ea\241Fb\241Fc\242\225\22)]\20\23*_\24,b\24.d\25.e\26/e\26/f\27""0" - "g\27""1g\30""1h\30""2i\31""2j\31""3j\32""3k\32""4l\33""5l\34""5m\202\35""6" - "n\27\34""5l\34""5k\34""5l\35""6l\35""6m\36""7n\36""8n\37""8o\40""9p\40""9" - "q!:q!:r\";s\"<s#<t#=u$=v$>v%?w%?x&@x'@y'Az\202(B{\17)C|)C}*D}*E~+E\177,E" - "\177,E\200-F\200-G\201.G\201.H\202/H\203/I\2030J\2040J\205\2021K\206\31""2" - "L\2073L\2104N\2116R\2157S\2178T\2178T\2209U\2219V\222:V\222;W\223;W\224<" - "X\224<Y\225=Y\226=Z\227>Z\227>[\230?[\231?\\\231>Z\227>X\226>Y\226?Y\227" - "?Z\230\202@[\231\14A\\\232A\\\233B]\233B]\234C^\235C_\236D_\236E`\237E`\240" - "Ea\240Eb\241Fb\242\223\22)]\33\22*^\23+a\23,b\23-c\24-d\25.d\25.e\26/f\26" - """0f\27""0g\27""1h\30""1h\30""2i\31""3j\32""3k\32""4k\33""4l\33""5m\33""4" - "k\33""3i\33""4j\33""4k\34""5k\34""5l\35""6m\36""7m\36""7n\202\37""8o*\40" - """9p\40:q!:r!;r\";s\"<t#<t$=u$>v%>w%?w&?x&@y'Ay'Az(B{(B|)C|*D}*D~+E~+E\177" - ",E\200,F\200-F\200-G\201.G\202.H\202/I\2030I\2040J\2041J\2051K\2062K\207" - "2L\2073M\2104N\2116R\2157S\2178T\2209U\2209U\221\202:V\222\34;W\223;W\224" - "<X\225<Y\225=Y\226=Z\227>Z\227?[\230>Z\227=W\225=X\225>X\226>Y\227?Z\227" - "?Z\230@[\231@[\232A\\\232B\\\233B]\234C^\234C^\235D_\236D`\236E`\237Ea\240" - "Ea\241Eb\241\221\22)]\2\22*^\23+a\204\23,b\15\24-c\24-d\25.d\25/e\26/f\26" - """0g\27""0g\30""1h\30""2i\31""2i\31""3j\32""3k\32""3j\202\32""2h\202\33""3" - "i\5\33""4j\34""4k\34""5k\35""6l\35""6m\202\36""7n\17\37""8o\37""9p\40""9" - "p\40:q!:r!;s\";s#<t#=u$=u$>v%>w%?w&@x&@y\202'Az\1(B{\202)C|\2*D}*D~\202+" - "E\177\13,E\200,F\200-F\200.G\201.H\202/H\202/I\2030I\2040J\2051J\2051K\206" - "\2022L\207\5""3M\2104N\2116R\2158T\2178T\220\2029U\221\5:V\222:W\223;W\223" - ";X\224<X\225\202=Y\226\202>Z\227\11<V\224<W\224=W\225=X\226>Y\226>Y\227?" - "Z\230@Z\230@[\231\202A\\\232\2B]\233B]\234\202C^\235\5D_\236D`\237E`\237" - "Ea\240Ea\241\217\22)]\2\22*^\23+a\206\23,b\13\23,c\24-c\24.d\25.e\26/e\26" - "/f\27""0g\27""1h\30""1h\30""2i\31""2i\202\31""1f\34\31""1g\32""2g\33""2h" - "\33""3i\33""3j\33""4j\34""5k\34""5l\35""6l\35""6m\36""7n\36""8o\37""8o\40" - """9p\40""9q!:q!;r\";s\"<s#<t#=u$=v$>v%?w&?x&@x'@y'Az\202(B{\5)C|)C}*D}*E" - "~+E\177\202,E\200\32-F\200-F\201.G\201.H\202/H\203/I\2030I\2040J\2051K\206" - "2K\2062L\2073L\2103M\2104N\2116Q\2148T\2178T\2209U\2219V\222:V\222;W\223" - ";W\224<X\225<Y\225=Y\226=Z\226\202;V\223\7<V\224<W\224=X\225=X\226>Y\226" - "?Y\227?Z\230\202@[\231\5A\\\232A\\\233B]\233B]\234C^\235\202D_\236\3E`\237" - "E`\240Ea\240\215\22)]\2\22*^\23+a\211\23,b\6\24-c\24-d\25.d\25.e\26/f\26" - """0f\202\27""0gX\27/e\27/d\30""0e\31""0f\31""1f\32""1g\32""2h\33""2h\33""3" - "i\33""4j\33""4k\34""5k\34""5l\35""6m\36""7m\36""7n\37""8o\37""8p\40""9p\40" - ":q!:r!;r\";s\"<t#<t$=u$>v%>w%?w&?x&@y'Ay'Az(B{(B|)C|*D}*D~+E~+E\177,E\200" - ",F\200-F\200-G\201.G\202.H\202/I\2030I\2040J\2041J\2051K\2062K\2072L\207" - "3M\2103M\2114N\2115O\2137S\2179U\2209U\221:V\222:V\223;W\223;X\224<X\225" - "<Y\225;V\223;U\222;U\223<V\223<W\224=W\225=X\225>X\226>Y\227?Z\227?Z\230" - "@[\231@[\232A\\\232B]\233B]\234C^\234C^\235D_\236D`\236E`\237Ea\240\213\22" - ")]\2\22*^\23+`\214\23,b\17\24-c\24-d\25.e\25/e\26/f\26.d\26.b\27.c\27/d\30" - "/d\30""0e\31""0f\31""1g\32""2g\32""2h\202\33""3i\5\33""4j\34""4k\34""5l\35" - """6l\35""6m\202\36""7n\22\37""8o\37""9p\40""9p!:q!:r\";s\"<s#<t#=u$=u$>v" - "%>w%?x&@x&@y'Az(Az(B{\202)C|\2*D}*D~\202+E\177\31,E\200,F\200-F\200-G\201" - ".H\202/H\203/I\2030I\2040J\2051J\2051K\2062L\2072L\2103M\2104M\2114N\212" - "5O\2126Q\2158T\2209U\221:V\222:W\223;W\223;X\224;V\223\202:T\221\10;U\222" - ";V\223<V\224<W\224=W\225=X\226>Y\226?Y\227\202?Z\230\1@[\231\202A\\\232\7" - "B]\233B]\234C^\235C_\235D_\236D`\237E`\237\211\22)]\2\22)^\23+`\216\23,b" - "\4\23,c\24-c\24.d\25-c\202\25,a#\26-b\26.c\27.c\27/d\30/e\30""0e\31""1f\32" - """1g\32""2g\33""2h\33""3i\33""3j\33""4j\34""5k\34""5l\35""6l\35""6m\36""7" - "n\36""8o\37""8o\40""9p\40""9q!:q!;r\";s\"<s#<t#=u$>v%>v%?w&?x&@x'@y'Az\202" - "(B{\5)C|)C}*D}*E~+E\177\202,E\200\17-F\200-G\201.G\201.H\202/H\203/I\203" - "0I\2040J\2051K\2062K\2062L\2073L\2103M\2104N\2114N\212\2025O\213\5""7R\216" - "9U\221:V\222;W\223:V\223\2029S\220\13:T\221:U\222;U\222;V\223<V\224<W\224" - "=X\225>X\226>Y\227?Y\227?Z\230\202@[\231\5A\\\232A\\\233B]\233B^\234C^\235" - "\202D_\236\1E`\237\207\22)]\2\22)^\23+`\222\23,bE\23+`\24+_\24+`\25,a\25" - "-a\26-b\26.c\27.c\30/d\30""0e\31""0f\31""1f\32""1g\32""2h\33""2i\33""3i\33" - """4j\33""4k\34""5k\35""5l\35""6m\36""7m\36""7n\37""8o\37""8p\40""9p\40:q" - "!:r!;r\";s\"<t#=t$=u$>v%>w%?w&?x&@y'Ay'Az(B{)B|)C|*D}*D~+E~+E\177,E\200," - "F\200-F\200-G\201.G\202.H\202/H\2030I\2040J\2041J\2051K\2062K\2072L\2073" - "M\2103M\2114N\2114N\2125O\2136P\2136P\2147R\2169T\220\2028S\217\26""9S\220" - "9T\220:T\221:U\222;U\223<V\223<W\224=W\225=X\225>X\226>Y\227?Z\227?Z\230" - "@[\231@[\232A\\\232B]\233B]\234C^\234C^\235D_\236D`\237\205\22)]\2\22)^\23" - "+`\221\23,b\22\23,a\22*_\22)]\23*^\23+_\24+`\24,`\25,a\25-b\26-b\27.c\27" - "/d\30/e\30""0e\31""0f\31""1g\32""2g\32""2h\202\33""3i\5\33""4j\34""4k\34" - """5l\35""6l\35""6m\202\36""7n\13\37""8o\37""9p\40""9q\40:q!:r\";s\"<s#<t" - "#=u$=u$>v\202%?w\3&@x'@y'Az\202(B{\202)C|\2*D}*D~\202+E\177\1,E\200\202-" - "F\200\10.G\201.H\202/H\202/I\2030I\2040J\2051J\2051K\206\2022L\207\5""3M" - "\2104M\2114N\2125O\2125O\213\2026P\214\5""7Q\2157R\2168R\2178S\2179S\220" - "\202:T\221\22;U\222;V\223<V\223<W\224=W\225=X\226>Y\226>Y\227?Z\230@Z\230" - "@[\231A\\\232A\\\233B]\233B]\234C^\235C_\235D_\236\203\22)]\2\22)^\23+`\222" - "\23,b\1\22+`\203\22)]\4\22)^\23*^\24+_\24+`\202\25,a\13\26-b\26.c\27.c\27" - "/d\30/e\30""0e\31""1f\31""1g\32""2g\33""2h\33""3i\202\33""4j\26\34""5k\34" - """5l\35""6l\35""6m\36""7n\36""8o\37""8o\40""9p\40""9q!:q!;r\";s\"<t#<t#=" - "u$>v%>v%?w&?x&@x(B{*D~\202(B{\5)C|)C}*D}*E~+E\177\202,E\200\17-F\200-G\201" - ".G\201.H\202/H\203/I\2030J\2040J\2051K\2062K\2062L\2073L\2103M\2104N\211" - "4N\212\2025O\213\22""6P\2146Q\2157Q\2158R\2168R\2179S\2179T\220:T\221:U\222" - ";U\222;V\223<V\224<W\224=X\225>X\226>Y\227?Y\227?Z\230\202@[\231\11A\\\232" - "A\\\233B]\233B^\234C^\235D_\236\22)]\22)^\23+`\222\23,b\2\23+`\22)^\205\22" - ")]\17\23*^\23*_\24+_\24+`\25,a\25-a\26-b\26.c\27.d\27/d\30""0e\31""0f\31" - """1f\32""1g\32""2h\202\33""3iL\33""4j\33""4k\34""5k\34""6l\35""6m\36""7m" - "\36""7n\37""8o\37""8p\40""9p\40:q!:r!;r\";s\"<t#=u$=u$>v%>w%?w'@y)C~*D~*" - "C~(B{)B|)C|*D}*D~+E~+E\177,E\200,F\200-F\200-G\201.G\202/H\202/I\2030I\204" - "0J\2041J\2051K\2062K\2072L\2073M\2103M\2114N\2115N\2125O\2136P\2136P\214" - "7Q\2157Q\2168R\2168S\2179S\2209T\221:T\221;U\222;V\223<V\223<W\224=W\225" - "=X\225>X\226>Y\227?Z\227?Z\230@[\231@[\232A\\\232B]\233B]\234C^\234C^\235" - "\23+`\222\23,b\2\23+a\22*^\207\22)]\6\22)^\23*^\23+_\24+`\24,`\25,a\202\26" - "-b\10\27.c\27/d\30/e\30""0e\31""0f\31""1g\32""2g\32""2h\202\33""3i\5\33""4" - "j\34""5k\34""5l\35""6l\35""6m\202\36""7n\26\37""8o\37""9p\40""9q\40:q!:r" - "\";s\"<s#<t#=u$=u$>v%?x(B|)C})C~*D\177)C}(B{)C|)C}*D}*D~\202+E\177\1,E\200" - "\202-F\200\10.G\201.H\202/H\203/I\2030I\2040J\2051K\2051K\206\2022L\207\5" - """3M\2104N\2114N\2125O\2125O\213\2026P\214\27""7Q\2157R\2168R\2169S\2179" - "S\220:T\221:U\221;U\222;V\223<V\224<W\224=W\225=X\226>Y\226?Y\227?Z\230@" - "Z\230@[\231A\\\232A\\\233B]\233B]\234C^\235\222\23,b\1\22*_\212\22)]\4\22" - ")^\23*^\24+_\24+`\202\25,a\13\26-b\26.c\27.c\27/d\30/e\30""0e\31""1f\31""1" - "g\32""2h\33""2h\33""3i\202\33""4j\5\34""5k\34""5l\35""6l\36""6m\36""7n\202" - "\37""8o\26\40""9p\40""9q!:q!;r\";s\"<t#<t#=u$>v'@z(B|)B})C}*C~*D\177)C}(" - "B{)C|)C}*D~+E~+E\177\202,E\200\13-F\200-G\201.G\201.H\202/H\203/I\2040I\204" - "1J\2051K\2062K\2062L\207\2023M\210\2""4N\2114N\212\2025O\213\22""6P\2146" - "Q\2157Q\2158R\2168R\2179S\2209T\220:T\221:U\222;U\222;V\223<W\224=W\224=" - "X\225>X\226>Y\227?Y\227?Z\230\202@[\231\4A\\\232A\\\233B]\234B^\234\220\23" - ",b\1\22+`\215\22)]\17\23*^\23*_\24+_\24+`\25,a\25-a\26-b\26.c\27.d\27/d\30" - """0e\31""0f\31""1f\32""1g\32""2h\202\33""3i*\33""4j\33""4k\34""5k\35""5l" - "\35""6m\36""7m\36""7n\37""8o\37""8p\40""9p\40:q!:r!;r\";s#<t#=u&?x'A{(A|" - "(B|)C})C~*D~*D\177)C|)B|)C|*D}*D~+E~+E\177,E\200,F\200-F\200-G\201.G\202" - ".H\202/I\2030I\2040J\2041J\2051K\206\2022L\207\26""3M\2103M\2114N\2115N\212" - "5O\2136P\2136P\2147Q\2157Q\2168R\2168S\2179S\2209T\220:T\221:U\222;V\223" - "<V\223<W\224=W\225=X\225>X\226>Y\227\202?Z\230\5@[\231@[\232A\\\232B]\233" - "B]\234\216\23,b\2\23+`\22)^\217\22)]\5\23*^\23*_\24+`\24,`\25,a\202\26-b" - "\10\27.c\27/d\30/e\30""0e\31""0f\31""1g\32""2g\32""2h\202\33""3i\5\33""4" - "j\34""5k\34""5l\35""6l\35""6m\202\36""7n\21\37""8o\37""9p\40""9p!:q!:r\"" - ";s\"<s$>v&@z'@z'A{(B|(B})C}*C~*D\177+D\177\203)C|\2*D}*D~\202+E\177\22,E" - "\200,F\200-F\200.G\201.H\202/H\203/I\2030I\2040J\2051K\2051K\2062L\2072L" - "\2103M\2104N\2114N\2125O\2125O\213\2026P\214\25""7Q\2157R\2168R\2179S\217" - "9S\220:T\221:U\221;U\222;V\223<V\224<W\224=X\225=X\226>Y\226?Y\227?Z\230" - "@Z\230@[\231A\\\232A\\\233B]\233\214\23,b\2\23+a\22*^\221\22)]\21\22*^\23" - "*^\23+_\24+`\25,`\25,a\26-b\26.c\27.c\27/d\30/e\30""0e\31""1f\31""1g\32""2" - "h\33""2h\33""3i\202\33""4j\5\34""5k\34""5l\35""6m\35""7m\36""7n\202\37""8" - "o\20\40""9p\40""9q!:q!;r#<u%?y&?y&@z'A{(A{(B|)B})C}*C~*D\177+E\177\202)C" - "|\4)C}*D}+E~+E\177\202,E\200\13-F\200-G\201.G\201.H\202/H\203/I\2030J\204" - "1J\2051K\2062K\2062L\207\2023M\210\2""4N\2114N\212\2025O\213\1""6P\214\202" - "7Q\215\17""8R\2168R\2179S\2209T\220:T\221:U\222;U\222;V\223<V\224=W\224=" - "X\225>X\226>Y\227?Y\227?Z\230\202@[\231\2A\\\232A\\\233\213\23,b\1\22*_\224" - "\22)]\17\23*^\23*_\24+_\24,`\25,a\25-a\26-b\27.c\27.d\30/d\30""0e\31""0f" - "\31""1g\32""1g\32""2h\202\33""3i*\33""4j\33""4k\34""5k\35""5l\35""6m\36""7" - "m\36""7n\37""8o\37""8p\40""9p\40:q\";s$>w%>x&?y&@z'@z'A{(A|(B|)C})C~*D~*" - "D\177+E\200)C})C|*D}*D~+E~+E\177,E\200,F\200-F\200-G\201.G\202/H\202/I\203" - "0I\2040J\2041J\2051K\206\2022L\207\5""3M\2103M\2114N\2115N\2125O\213\202" - "6P\214\17""7Q\2157Q\2168R\2168S\2179S\2209T\220:T\221;U\222;V\223<V\223<" - "W\224=W\225=X\225>X\226>Y\227\202?Z\230\3@[\231@\\\232A\\\232\211\23,b\1" - "\22+`\226\22)]\6\22)^\23*^\23+_\24+`\24,`\25,a\202\26-b\10\27.c\27/d\30/" - "e\30""0e\31""0f\31""1g\32""2g\32""2h\202\33""3i\5\33""4j\34""5k\34""5l\35" - """6l\35""6m\202\36""7n\26\37""8o\37""9p\40""9q#=v$=w%>x%?x&?y&@z'@z'A{(A" - "|(B})C}*C~*D\177+D\177+E\200*D\177)C}*D}*D~\202+E\177\1,E\200\202-F\200$" - ".G\201.H\202/H\203/I\2030I\2040J\2051K\2051K\2062L\2073L\2103M\2104M\211" - "4N\2125O\2125O\2136P\2146P\2157Q\2157R\2168R\2179S\2179S\220:T\221:U\221" - ";U\222;V\223<V\224<W\224=W\225=X\226>Y\226?Y\227?Z\230@[\230@[\231A\\\232" - "\207\23,b\2\23+a\22)^\230\22)]\21\22*^\23*^\24+_\24+`\25,a\25-a\26-b\26." - "c\27.c\27/d\30/e\30""0f\31""1f\32""1g\32""2h\33""2h\33""3i\202\33""4j\5\34" - """5k\34""5l\35""6l\35""7m\36""7n\202\37""8o\17\";t#<v$=v$>w%>x%?y&?y'@z'" - "A{(A{(B|)B})C~*D~*D\177\202+E\200\5+F\200*D~*D}+E~+E\177\202,E\200\13-F\200" - "-G\201.G\201.H\202/H\203/I\2030J\2041J\2051K\2062K\2062L\207\2023M\210\2" - """4N\2114N\212\2025O\213\1""6P\214\2027Q\215\17""8R\2168R\2179S\2179T\220" - ":T\221:U\222;U\222;V\223<W\224=W\224=X\225>X\226>Y\227?Y\227?Z\230\202@[" - "\231\205\23,b\2\23,a\22*^\233\22)]\17\23*^\23*_\24+_\24+`\25,a\25-a\26-b" - "\27.c\27/d\30/d\30""0e\31""0f\31""1f\32""1g\32""2h\202\33""3i\35\33""4j\33" - """4k\34""5k\35""6l\35""6m\36""7m\36""7n!:r\";u#<u#=v$=w%>w%>x&?y&@z'@z'A" - "{(A|(B|)C})C~*D\177+D\177+E\200,F\200,G\200+F\200*D~\202+E\177#,E\200,F\200" - "-F\200.G\201.G\202/H\202/I\2030I\2040J\2041J\2051K\2062K\2072L\2073M\210" - "3M\2114N\2125N\2125O\2136P\2136P\2147Q\2157Q\2168R\2168S\2179S\2209T\221" - ":T\221:U\222;V\223<V\223<W\224=W\225=X\225>X\226>Y\227\202?Z\230\1@[\231" - "\204\23,b\1\22*_\235\22)]/\22)^\23*^\23+_\24+`\25,`\25,a\26-b\26.b\27.c\27" - "/d\30/e\30""0e\31""0f\31""1g\32""2g\32""2h\33""3i\33""3j\33""4j\34""5k\34" - """5l\35""6l\35""6m\37""8p!;s\";t\"<u#<v$=v$>w%>x%?x&?y&@z'@z'A{(B|)B})C}" - "*C~*D\177+E\177+E\200,F\200,G\200-H\201+F\200\202+E\177%,E\200-F\200-F\201" - ".G\201.H\202/H\203/I\2030I\2040J\2051K\2051K\2062L\2073L\2103M\2104N\211" - "4N\2125O\2125O\2136P\2146P\2157Q\2157R\2168R\2179S\2179S\220:T\221:U\221" - ";U\222;V\223<V\224<W\224=X\225=X\226>Y\226?Y\227?Z\230@[\231\202\23,b\1\23" - "+`\240\22)]\21\22*^\23*_\24+_\24+`\25,a\25-a\26-b\26.c\27.c\27/d\30/e\30" - """0e\31""1f\32""1g\32""2h\33""2h\33""3i\202\33""4j\5\34""5k\34""5l\36""7" - "n!:r!:s\202\";t\17#<u#<v$=v$>w%>x%?y&?y&@z'A{(A{(B|)B})C~*D~*D\177\202+E" - "\200\2,F\200,G\201\202-H\201\1,F\200\202,E\200\13-F\200-G\201.G\201.H\202" - "/H\203/I\2040J\2041J\2051K\2062K\2062L\207\2023M\210\5""4N\2114N\2125O\213" - "5P\2136P\214\2027Q\215\21""8R\2168R\2179S\2209T\220:T\221:U\222;U\222;V\223" - "<W\224=W\225=X\225>X\226>Y\227?Y\227?Z\230\23+a\22*^\242\22)]\17\23*^\23" - "*_\24+_\24,`\25,a\25-a\26-b\26.c\27.d\30/d\30""0e\31""0f\31""1f\32""1g\32" - """2h\202\33""3i\5\33""4j\33""4k\35""6l\37""8q\40""9r\202!:s\17\";t\"<u#<" - "u#=v$=w%>w%>x&?y&@z'@z'A{(A|(B|)C})C~\202*D\177\7+E\200,F\200,G\200-H\201" - "-H\202.I\202-H\202\202,F\200\11-F\200-G\201.G\202/H\202/I\2030I\2040J\205" - "1J\2051K\206\2022L\207\5""3M\2103M\2114N\2115O\2125O\213\2026P\214\20""7" - "Q\2157Q\2168R\2168S\2179S\2209T\221:T\221;U\222;V\223<V\223<W\224=W\225=" - "X\225>Y\226>Y\227?Z\230\245\22)]\5\23*^\23+_\24+`\25,`\25,a\202\26-b;\27" - ".c\27/d\30/e\30""0e\31""0f\31""1g\32""2g\32""2h\33""3i\33""3j\33""4k\36""7" - "o\37""8q\40""9q\40""9r!:s!;s\";t\"<u#<v$=v$=w%>x%?x&?y&@z'@{'A{(B|(B})C}" - ")C~*D\177+E\177+E\200,F\200,G\201-H\201-I\202.I\203,F\200,E\200-F\200-F\201" - ".G\201.H\202/H\203/I\2030I\2040J\2051K\2051K\2062L\2073L\2103M\2104N\211" - "4N\2125O\2125O\213\2026P\214\24""7Q\2157R\2168R\2179S\2179S\220:T\221:U\222" - ";U\222;V\223<V\224<W\224=X\225=X\226>Y\226?Y\227\302\303\307\314\315\321" - "\307\311\314\303\305\311\325\327\333\243\331\333\336\210\331\333\337\207" - "\332\333\337\220\332\334\340\203\333\334\340\202\333\334\341\230\333\335" - "\341\203\333\335\342\203\334\335\342\2\334\336\342\202\213\236\202p{\223" - "\1\237\244\256\202\253\255\261\1\260\262\266\202\253\255\261\1\260\262\266" - "\202\253\255\261\6\260\262\267\317\316\314\231\236\232\215\244\223\322\322" - "\322\340\340\340\346\345\345\345\1Xd\177\202:Jm\1\214\220\232\202\240\240" - "\240\1\250\250\250\202\240\240\240\1\250\250\250\202\240\240\240\6\247\247" - "\247\306\306\306\302\302\301\300\276\273\311\311\311\342\342\342\346\345" - "\345\345\1q{\216\202Yf\200\1\230\233\242\202\247\247\247\1\255\255\255\202" - "\247\247\247\1\255\255\255\202\247\247\247\1\256\256\256", -}; - diff --git a/src/image_data/rotation_orientation_horiz_flipped.h b/src/image_data/rotation_orientation_horiz_flipped.h deleted file mode 100644 index 8ceca39..0000000 --- a/src/image_data/rotation_orientation_horiz_flipped.h +++ /dev/null @@ -1,723 +0,0 @@ -/* GIMP RGB C-Source image dump 1-byte-run-length-encoded (...) */ - -#include "image.h" - -static const nv_image_t rotation_orientation_horiz_flipped_image = { - 120, 90, 3, 0, - "\5\306\306\306\302\302\301\300\276\273\311\311\311\342\342\342\346\345\345" - "\345\1q{\216\202Yf\200\1\230\233\242\202\247\247\247\1\255\255\255\202\247" - "\247\247\1\255\255\255\202\247\247\247\6\256\256\256\317\316\314\231\236" - "\232\215\244\223\322\322\322\340\340\340\346\345\345\345\1Xd\177\202:Jm\1" - "\214\220\232\202\240\240\240\1\250\250\250\202\240\240\240\1\250\250\250" - "\202\240\240\240\6\247\247\247\302\303\307\314\315\321\307\311\314\303\305" - "\311\325\327\333\243\331\333\336\210\331\333\337\207\332\333\337\220\332" - "\334\340\203\333\334\340\202\333\334\341\230\333\335\341\203\333\335\342" - "\203\334\335\342\2\334\336\342\202\213\236\202p{\223\1\237\244\256\202\253" - "\255\261\1\260\262\266\202\253\255\261\1\260\262\266\202\253\255\261\1\260" - "\262\267\245\22)]\5\23*^\23+_\24+`\25,`\25,a\202\26-b;\27.c\27/d\30/e\30" - """0e\31""0f\31""1g\32""2g\32""2h\33""3i\33""3j\33""4k\36""7o\37""8q\40""9" - "q\40""9r!:s!;s\";t\"<u#<v$=v$=w%>x%?x&?y&@z'@{'A{(B|(B})C})C~*D\177+E\177" - "+E\200,F\200,G\201-H\201-I\202.I\203,F\200,E\200-F\200-F\201.G\201.H\202" - "/H\203/I\2030I\2040J\2051K\2051K\2062L\2073L\2103M\2104N\2114N\2125O\212" - "5O\213\2026P\214\21""7Q\2157R\2168R\2179S\2179S\220:T\221:U\222;U\222;V\223" - "<V\224<W\224=X\225=X\226>Y\226?Y\227\23+a\22*^\242\22)]\17\23*^\23*_\24+" - "_\24,`\25,a\25-a\26-b\26.c\27.d\30/d\30""0e\31""0f\31""1f\32""1g\32""2h\202" - "\33""3i\5\33""4j\33""4k\35""6l\37""8q\40""9r\202!:s\17\";t\"<u#<u#=v$=w%" - ">w%>x&?y&@z'@z'A{(A|(B|)C})C~\202*D\177\7+E\200,F\200,G\200-H\201-H\202." - "I\202-H\202\202,F\200\11-F\200-G\201.G\202/H\202/I\2030I\2040J\2051J\205" - "1K\206\2022L\207\5""3M\2103M\2114N\2115O\2125O\213\2026P\214\20""7Q\2157" - "Q\2168R\2168S\2179S\2209T\221:T\221;U\222;V\223<V\223<W\224=W\225=X\225>" - "Y\226>Y\227?Z\230\202\23,b\1\23+`\240\22)]\21\22*^\23*_\24+_\24+`\25,a\25" - "-a\26-b\26.c\27.c\27/d\30/e\30""0e\31""1f\32""1g\32""2h\33""2h\33""3i\202" - "\33""4j\5\34""5k\34""5l\36""7n!:r!:s\202\";t\17#<u#<v$=v$>w%>x%?y&?y&@z'" - "A{(A{(B|)B})C~*D~*D\177\202+E\200\2,F\200,G\201\202-H\201\1,F\200\202,E\200" - "\13-F\200-G\201.G\201.H\202/H\203/I\2040J\2041J\2051K\2062K\2062L\207\202" - "3M\210\5""4N\2114N\2125O\2135P\2136P\214\2027Q\215\17""8R\2168R\2179S\220" - "9T\220:T\221:U\222;U\222;V\223<W\224=W\225=X\225>X\226>Y\227?Y\227?Z\230" - "\204\23,b\1\22*_\235\22)]/\22)^\23*^\23+_\24+`\25,`\25,a\26-b\26.b\27.c\27" - "/d\30/e\30""0e\31""0f\31""1g\32""2g\32""2h\33""3i\33""3j\33""4j\34""5k\34" - """5l\35""6l\35""6m\37""8p!;s\";t\"<u#<v$=v$>w%>x%?x&?y&@z'@z'A{(B|)B})C}" - "*C~*D\177+E\177+E\200,F\200,G\200-H\201+F\200\202+E\177%,E\200-F\200-F\201" - ".G\201.H\202/H\203/I\2030I\2040J\2051K\2051K\2062L\2073L\2103M\2104N\211" - "4N\2125O\2125O\2136P\2146P\2157Q\2157R\2168R\2179S\2179S\220:T\221:U\221" - ";U\222;V\223<V\224<W\224=X\225=X\226>Y\226?Y\227?Z\230@[\231\205\23,b\2\23" - ",a\22*^\233\22)]\17\23*^\23*_\24+_\24+`\25,a\25-a\26-b\27.c\27/d\30/d\30" - """0e\31""0f\31""1f\32""1g\32""2h\202\33""3i\35\33""4j\33""4k\34""5k\35""6" - "l\35""6m\36""7m\36""7n!:r\";u#<u#=v$=w%>w%>x&?y&@z'@z'A{(A|(B|)C})C~*D\177" - "+D\177+E\200,F\200,G\200+F\200*D~\202+E\177#,E\200,F\200-F\200.G\201.G\202" - "/H\202/I\2030I\2040J\2041J\2051K\2062K\2072L\2073M\2103M\2114N\2125N\212" - "5O\2136P\2136P\2147Q\2157Q\2168R\2168S\2179S\2209T\221:T\221:U\222;V\223" - "<V\223<W\224=W\225=X\225>X\226>Y\227\202?Z\230\1@[\231\207\23,b\2\23+a\22" - ")^\230\22)]\21\22*^\23*^\24+_\24+`\25,a\25-a\26-b\26.c\27.c\27/d\30/e\30" - """0f\31""1f\32""1g\32""2h\33""2h\33""3i\202\33""4j\5\34""5k\34""5l\35""6" - "l\35""7m\36""7n\202\37""8o\17\";t#<v$=v$>w%>x%?y&?y'@z'A{(A{(B|)B})C~*D~" - "*D\177\202+E\200\5+F\200*D~*D}+E~+E\177\202,E\200\13-F\200-G\201.G\201.H" - "\202/H\203/I\2030J\2041J\2051K\2062K\2062L\207\2023M\210\2""4N\2114N\212" - "\2025O\213\1""6P\214\2027Q\215\17""8R\2168R\2179S\2179T\220:T\221:U\222;" - "U\222;V\223<W\224=W\224=X\225>X\226>Y\227?Y\227?Z\230\202@[\231\211\23,b" - "\1\22+`\226\22)]\6\22)^\23*^\23+_\24+`\24,`\25,a\202\26-b\10\27.c\27/d\30" - "/e\30""0e\31""0f\31""1g\32""2g\32""2h\202\33""3i\5\33""4j\34""5k\34""5l\35" - """6l\35""6m\202\36""7n\26\37""8o\37""9p\40""9q#=v$=w%>x%?x&?y&@z'@z'A{(A" - "|(B})C}*C~*D\177+D\177+E\200*D\177)C}*D}*D~\202+E\177\1,E\200\202-F\200$" - ".G\201.H\202/H\203/I\2030I\2040J\2051K\2051K\2062L\2073L\2103M\2104M\211" - "4N\2125O\2125O\2136P\2146P\2157Q\2157R\2168R\2179S\2179S\220:T\221:U\221" - ";U\222;V\223<V\224<W\224=W\225=X\226>Y\226?Y\227?Z\230@[\230@[\231A\\\232" - "\213\23,b\1\22*_\224\22)]\17\23*^\23*_\24+_\24,`\25,a\25-a\26-b\27.c\27." - "d\30/d\30""0e\31""0f\31""1g\32""1g\32""2h\202\33""3i*\33""4j\33""4k\34""5" - "k\35""5l\35""6m\36""7m\36""7n\37""8o\37""8p\40""9p\40:q\";s$>w%>x&?y&@z'" - "@z'A{(A|(B|)C})C~*D~*D\177+E\200)C})C|*D}*D~+E~+E\177,E\200,F\200-F\200-" - "G\201.G\202/H\202/I\2030I\2040J\2041J\2051K\206\2022L\207\5""3M\2103M\211" - "4N\2115N\2125O\213\2026P\214\17""7Q\2157Q\2168R\2168S\2179S\2209T\220:T\221" - ";U\222;V\223<V\223<W\224=W\225=X\225>X\226>Y\227\202?Z\230\3@[\231@\\\232" - "A\\\232\214\23,b\2\23+a\22*^\221\22)]\21\22*^\23*^\23+_\24+`\25,`\25,a\26" - "-b\26.c\27.c\27/d\30/e\30""0e\31""1f\31""1g\32""2h\33""2h\33""3i\202\33""4" - "j\5\34""5k\34""5l\35""6m\35""7m\36""7n\202\37""8o\20\40""9p\40""9q!:q!;r" - "#<u%?y&?y&@z'A{(A{(B|)B})C}*C~*D\177+E\177\202)C|\4)C}*D}+E~+E\177\202,E" - "\200\13-F\200-G\201.G\201.H\202/H\203/I\2030J\2041J\2051K\2062K\2062L\207" - "\2023M\210\2""4N\2114N\212\2025O\213\1""6P\214\2027Q\215\17""8R\2168R\217" - "9S\2209T\220:T\221:U\222;U\222;V\223<V\224=W\224=X\225>X\226>Y\227?Y\227" - "?Z\230\202@[\231\2A\\\232A\\\233\216\23,b\2\23+`\22)^\217\22)]\5\23*^\23" - "*_\24+`\24,`\25,a\202\26-b\10\27.c\27/d\30/e\30""0e\31""0f\31""1g\32""2g" - "\32""2h\202\33""3i\5\33""4j\34""5k\34""5l\35""6l\35""6m\202\36""7n\21\37" - """8o\37""9p\40""9p!:q!:r\";s\"<s$>v&@z'@z'A{(B|(B})C}*C~*D\177+D\177\203" - ")C|\2*D}*D~\202+E\177\22,E\200,F\200-F\200.G\201.H\202/H\203/I\2030I\204" - "0J\2051K\2051K\2062L\2072L\2103M\2104N\2114N\2125O\2125O\213\2026P\214\25" - """7Q\2157R\2168R\2179S\2179S\220:T\221:U\221;U\222;V\223<V\224<W\224=X\225" - "=X\226>Y\226?Y\227?Z\230@Z\230@[\231A\\\232A\\\233B]\233\220\23,b\1\22+`" - "\215\22)]\17\23*^\23*_\24+_\24+`\25,a\25-a\26-b\26.c\27.d\27/d\30""0e\31" - """0f\31""1f\32""1g\32""2h\202\33""3i*\33""4j\33""4k\34""5k\35""5l\35""6m" - "\36""7m\36""7n\37""8o\37""8p\40""9p\40:q!:r!;r\";s#<t#=u&?x'A{(A|(B|)C})" - "C~*D~*D\177)C|)B|)C|*D}*D~+E~+E\177,E\200,F\200-F\200-G\201.G\202.H\202/" - "I\2030I\2040J\2041J\2051K\206\2022L\207\26""3M\2103M\2114N\2115N\2125O\213" - "6P\2136P\2147Q\2157Q\2168R\2168S\2179S\2209T\220:T\221:U\222;V\223<V\223" - "<W\224=W\225=X\225>X\226>Y\227\202?Z\230\5@[\231@[\232A\\\232B]\233B]\234" - "\222\23,b\1\22*_\212\22)]\4\22)^\23*^\24+_\24+`\202\25,a\13\26-b\26.c\27" - ".c\27/d\30/e\30""0e\31""1f\31""1g\32""2h\33""2h\33""3i\202\33""4j\5\34""5" - "k\34""5l\35""6l\36""6m\36""7n\202\37""8o\26\40""9p\40""9q!:q!;r\";s\"<t#" - "<t#=u$>v'@z(B|)B})C}*C~*D\177)C}(B{)C|)C}*D~+E~+E\177\202,E\200\13-F\200" - "-G\201.G\201.H\202/H\203/I\2040I\2041J\2051K\2062K\2062L\207\2023M\210\2" - """4N\2114N\212\2025O\213\22""6P\2146Q\2157Q\2158R\2168R\2179S\2209T\220:" - "T\221:U\222;U\222;V\223<W\224=W\224=X\225>X\226>Y\227?Y\227?Z\230\202@[\231" - "\5A\\\232A\\\233B]\234B^\234\23+`\222\23,b\2\23+a\22*^\207\22)]\6\22)^\23" - "*^\23+_\24+`\24,`\25,a\202\26-b\10\27.c\27/d\30/e\30""0e\31""0f\31""1g\32" - """2g\32""2h\202\33""3i\5\33""4j\34""5k\34""5l\35""6l\35""6m\202\36""7n\26" - "\37""8o\37""9p\40""9q\40:q!:r\";s\"<s#<t#=u$=u$>v%?x(B|)C})C~*D\177)C}(B" - "{)C|)C}*D}*D~\202+E\177\1,E\200\202-F\200\10.G\201.H\202/H\203/I\2030I\204" - "0J\2051K\2051K\206\2022L\207\5""3M\2104N\2114N\2125O\2125O\213\2026P\214" - "\32""7Q\2157R\2168R\2169S\2179S\220:T\221:U\221;U\222;V\223<V\224<W\224=" - "W\225=X\226>Y\226?Y\227?Z\230@Z\230@[\231A\\\232A\\\233B]\233B]\234C^\235" - "\22)]\22)^\23+`\222\23,b\2\23+`\22)^\205\22)]\17\23*^\23*_\24+_\24+`\25," - "a\25-a\26-b\26.c\27.d\27/d\30""0e\31""0f\31""1f\32""1g\32""2h\202\33""3i" - "K\33""4j\33""4k\34""5k\34""6l\35""6m\36""7m\36""7n\37""8o\37""8p\40""9p\40" - ":q!:r!;r\";s\"<t#=u$=u$>v%>w%?w'@y)C~*D~*C~(B{)B|)C|*D}*D~+E~+E\177,E\200" - ",F\200-F\200-G\201.G\202/H\202/I\2030I\2040J\2041J\2051K\2062K\2072L\207" - "3M\2103M\2114N\2115N\2125O\2136P\2136P\2147Q\2157Q\2168R\2168S\2179S\220" - "9T\221:T\221;U\222;V\223<V\223<W\224=W\225=X\225>X\226>Y\227?Z\227?Z\230" - "@[\231@[\232A\\\232B]\233B]\234C^\234C^\235\203\22)]\2\22)^\23+`\222\23," - "b\1\22+`\203\22)]\4\22)^\23*^\24+_\24+`\202\25,a\13\26-b\26.c\27.c\27/d\30" - "/e\30""0e\31""1f\31""1g\32""2g\33""2h\33""3i\202\33""4j\26\34""5k\34""5l" - "\35""6l\35""6m\36""7n\36""8o\37""8o\40""9p\40""9q!:q!;r\";s\"<t#<t#=u$>v" - "%>v%?w&?x&@x(B{*D~\202(B{\5)C|)C}*D}*E~+E\177\202,E\200\17-F\200-G\201.G" - "\201.H\202/H\203/I\2030J\2040J\2051K\2062K\2062L\2073L\2103M\2104N\2114N" - "\212\2025O\213\22""6P\2146Q\2157Q\2158R\2168R\2179S\2179T\220:T\221:U\222" - ";U\222;V\223<V\224<W\224=X\225>X\226>Y\227?Y\227?Z\230\202@[\231\6A\\\232" - "A\\\233B]\233B^\234C^\235D_\236\205\22)]\2\22)^\23+`\221\23,b\22\23,a\22" - "*_\22)]\23*^\23+_\24+`\24,`\25,a\25-b\26-b\27.c\27/d\30/e\30""0e\31""0f\31" - """1g\32""2g\32""2h\202\33""3i\5\33""4j\34""4k\34""5l\35""6l\35""6m\202\36" - """7n\13\37""8o\37""9p\40""9q\40:q!:r\";s\"<s#<t#=u$=u$>v\202%?w\3&@x'@y'" - "Az\202(B{\202)C|\2*D}*D~\202+E\177\1,E\200\202-F\200\10.G\201.H\202/H\202" - "/I\2030I\2040J\2051J\2051K\206\2022L\207\5""3M\2104M\2114N\2125O\2125O\213" - "\2026P\214\5""7Q\2157R\2168R\2178S\2179S\220\202:T\221\22;U\222;V\223<V\223" - "<W\224=W\225=X\226>Y\226>Y\227?Z\230@Z\230@[\231A\\\232A\\\233B]\233B]\234" - "C^\235C_\235D_\236\207\22)]\2\22)^\23+`\222\23,bE\23+`\24+_\24+`\25,a\25" - "-a\26-b\26.c\27.c\30/d\30""0e\31""0f\31""1f\32""1g\32""2h\33""2i\33""3i\33" - """4j\33""4k\34""5k\35""5l\35""6m\36""7m\36""7n\37""8o\37""8p\40""9p\40:q" - "!:r!;r\";s\"<t#=t$=u$>v%>w%?w&?x&@y'Ay'Az(B{)B|)C|*D}*D~+E~+E\177,E\200," - "F\200-F\200-G\201.G\202.H\202/H\2030I\2040J\2041J\2051K\2062K\2072L\2073" - "M\2103M\2114N\2114N\2125O\2136P\2136P\2147R\2169T\220\2028S\217\26""9S\220" - "9T\220:T\221:U\222;U\223<V\223<W\224=W\225=X\225>X\226>Y\227?Z\227?Z\230" - "@[\231@[\232A\\\232B]\233B]\234C^\234C^\235D_\236D`\237\211\22)]\2\22)^\23" - "+`\216\23,b\4\23,c\24-c\24.d\25-c\202\25,a#\26-b\26.c\27.c\27/d\30/e\30""0" - "e\31""1f\32""1g\32""2g\33""2h\33""3i\33""3j\33""4j\34""5k\34""5l\35""6l\35" - """6m\36""7n\36""8o\37""8o\40""9p\40""9q!:q!;r\";s\"<s#<t#=u$>v%>v%?w&?x&" - "@x'@y'Az\202(B{\5)C|)C}*D}*E~+E\177\202,E\200\17-F\200-G\201.G\201.H\202" - "/H\203/I\2030I\2040J\2051K\2062K\2062L\2073L\2103M\2104N\2114N\212\2025O" - "\213\5""7R\2169U\221:V\222;W\223:V\223\2029S\220\13:T\221:U\222;U\222;V\223" - "<V\224<W\224=X\225>X\226>Y\227?Y\227?Z\230\202@[\231\5A\\\232A\\\233B]\233" - "B^\234C^\235\202D_\236\1E`\237\213\22)]\2\22*^\23+`\214\23,b\17\24-c\24-" - "d\25.e\25/e\26/f\26.d\26.b\27.c\27/d\30/d\30""0e\31""0f\31""1g\32""2g\32" - """2h\202\33""3i\5\33""4j\34""4k\34""5l\35""6l\35""6m\202\36""7n\22\37""8" - "o\37""9p\40""9p!:q!:r\";s\"<s#<t#=u$=u$>v%>w%?x&@x&@y'Az(Az(B{\202)C|\2*" - "D}*D~\202+E\177\31,E\200,F\200-F\200-G\201.H\202/H\203/I\2030I\2040J\205" - "1J\2051K\2062L\2072L\2103M\2104M\2114N\2125O\2126Q\2158T\2209U\221:V\222" - ":W\223;W\223;X\224;V\223\202:T\221\10;U\222;V\223<V\224<W\224=W\225=X\226" - ">Y\226?Y\227\202?Z\230\1@[\231\202A\\\232\7B]\233B]\234C^\235C_\235D_\236" - "D`\237E`\237\215\22)]\2\22*^\23+a\211\23,b\6\24-c\24-d\25.d\25.e\26/f\26" - """0f\202\27""0gX\27/e\27/d\30""0e\31""0f\31""1f\32""1g\32""2h\33""2h\33""3" - "i\33""4j\33""4k\34""5k\34""5l\35""6m\36""7m\36""7n\37""8o\37""8p\40""9p\40" - ":q!:r!;r\";s\"<t#<t$=u$>v%>w%?w&?x&@y'Ay'Az(B{(B|)C|*D}*D~+E~+E\177,E\200" - ",F\200-F\200-G\201.G\202.H\202/I\2030I\2040J\2041J\2051K\2062K\2072L\207" - "3M\2103M\2114N\2115O\2137S\2179U\2209U\221:V\222:V\223;W\223;X\224<X\225" - "<Y\225;V\223;U\222;U\223<V\223<W\224=W\225=X\225>X\226>Y\227?Z\227?Z\230" - "@[\231@[\232A\\\232B]\233B]\234C^\234C^\235D_\236D`\236E`\237Ea\240\217\22" - ")]\2\22*^\23+a\206\23,b\13\23,c\24-c\24.d\25.e\26/e\26/f\27""0g\27""1h\30" - """1h\30""2i\31""2i\202\31""1f\34\31""1g\32""2g\33""2h\33""3i\33""3j\33""4" - "j\34""5k\34""5l\35""6l\35""6m\36""7n\36""8o\37""8o\40""9p\40""9q!:q!;r\"" - ";s\"<s#<t#=u$=v$>v%?w&?x&@x'@y'Az\202(B{\5)C|)C}*D}*E~+E\177\202,E\200\32" - "-F\200-F\201.G\201.H\202/H\203/I\2030I\2040J\2051K\2062K\2062L\2073L\210" - "3M\2104N\2116Q\2148T\2178T\2209U\2219V\222:V\222;W\223;W\224<X\225<Y\225" - "=Y\226=Z\226\202;V\223\7<V\224<W\224=X\225=X\226>Y\226?Y\227?Z\230\202@[" - "\231\5A\\\232A\\\233B]\233B]\234C^\235\202D_\236\3E`\237E`\240Ea\240\221" - "\22)]\2\22*^\23+a\204\23,b\15\24-c\24-d\25.d\25/e\26/f\26""0g\27""0g\30""1" - "h\30""2i\31""2i\31""3j\32""3k\32""3j\202\32""2h\202\33""3i\5\33""4j\34""4" - "k\34""5k\35""6l\35""6m\202\36""7n\17\37""8o\37""9p\40""9p\40:q!:r!;s\";s" - "#<t#=u$=u$>v%>w%?w&@x&@y\202'Az\1(B{\202)C|\2*D}*D~\202+E\177\13,E\200,F" - "\200-F\200.G\201.H\202/H\202/I\2030I\2040J\2051J\2051K\206\2022L\207\5""3" - "M\2104N\2116R\2158T\2178T\220\2029U\221\5:V\222:W\223;W\223;X\224<X\225\202" - "=Y\226\202>Z\227\11<V\224<W\224=W\225=X\226>Y\226>Y\227?Z\230@Z\230@[\231" - "\202A\\\232\2B]\233B]\234\202C^\235\5D_\236D`\237E`\237Ea\240Ea\241\223\22" - ")]\33\22*^\23+a\23,b\23-c\24-d\25.d\25.e\26/f\26""0f\27""0g\27""1h\30""1" - "h\30""2i\31""3j\32""3k\32""4k\33""4l\33""5m\33""4k\33""3i\33""4j\33""4k\34" - """5k\34""5l\35""6m\36""7m\36""7n\202\37""8o*\40""9p\40:q!:r!;r\";s\"<t#<" - "t$=u$>v%>w%?w&?x&@y'Ay'Az(B{(B|)C|*D}*D~+E~+E\177,E\200,F\200-F\200-G\201" - ".G\202.H\202/I\2030I\2040J\2041J\2051K\2062K\2072L\2073M\2104N\2116R\215" - "7S\2178T\2209U\2209U\221\202:V\222\34;W\223;W\224<X\225<Y\225=Y\226=Z\227" - ">Z\227?[\230>Z\227=W\225=X\225>X\226>Y\227?Z\227?Z\230@[\231@[\232A\\\232" - "B\\\233B]\234C^\234C^\235D_\236D`\236E`\237Ea\240Ea\241Eb\241\225\22)]\20" - "\23*_\24,b\24.d\25.e\26/e\26/f\27""0g\27""1g\30""1h\30""2i\31""2j\31""3j" - "\32""3k\32""4l\33""5l\34""5m\202\35""6n\27\34""5l\34""5k\34""5l\35""6l\35" - """6m\36""7n\36""8n\37""8o\40""9p\40""9q!:q!:r\";s\"<s#<t#=u$=v$>v%?w%?x&" - "@x'@y'Az\202(B{\17)C|)C}*D}*E~+E\177,E\177,E\200-F\200-G\201.G\201.H\202" - "/H\203/I\2030J\2040J\205\2021K\206\31""2L\2073L\2104N\2116R\2157S\2178T\217" - "8T\2209U\2219V\222:V\222;W\223;W\224<X\224<Y\225=Y\226=Z\227>Z\227>[\230" - "?[\231?\\\231>Z\227>X\226>Y\226?Y\227?Z\230\202@[\231\14A\\\232A\\\233B]" - "\233B]\234C^\235C_\236D_\236E`\237E`\240Ea\240Eb\241Fb\242\225\22)]\24\23" - "*^\23*_\24,a\25.d\26/f\26""0g\27""0g\27""1h\30""2i\31""2i\31""3j\32""3k\32" - """4l\33""4l\33""5m\34""6n\35""6n\36""7o\37""7p\36""7o\202\35""6m\202\36""7" - "n\22\37""8o\37""9p\40""9p\40:q!:r!;s\"<s#<t#=u$=u$>v%>w%?w&@x&@y'Az(Az(B" - "{\202)C|\2*D}*D~\202+E\177\13,E\200,F\200-F\200.G\201.H\202/H\202/I\2030" - "I\2040J\2051J\2051K\206\2022L\207\5""4N\2116R\2157S\2178T\2178T\220\2029" - "U\221\17:V\222:W\223;W\223;X\224<X\225<Y\226=Y\226>Z\227>[\230?[\230?\\\231" - "@\\\232@]\232?Z\227>Y\227\202?Z\230\1@[\231\202A\\\232\13B]\233B]\234C^\235" - "C_\235D_\236D`\237E`\237Ea\240Ea\241Fb\241Fc\242\224\22)]\30\23*^\23*_\24" - "+_\24+`\25,a\25.c\27""0f\27""1h\30""1h\30""2i\31""2j\32""3k\32""4k\33""4" - "l\33""5m\34""5m\35""6n\36""7o\36""7p\37""8p\37""8q\40""9r\37""9p\36""7o\202" - "\37""8o\17\40""9p\40:q!:q!;r\";s\"<t#<t$=u$>v%>w%?w&?x&@y'Ay'Az\202(B{\5" - ")C|*D}*D~+E~+E\177\202,E\200\22-F\200-G\201.G\201.H\202/H\2030I\2040J\204" - "1J\2051K\2062K\2062L\2073M\2116R\2157S\2167S\2178T\2208U\2209U\221\202:V" - "\222\15;W\223;W\224<X\225<Y\225=Y\226=Z\227>Z\227>[\230?\\\231@\\\232@]\232" - "A]\233A^\233\202?Z\230\202@[\231\5A\\\232A]\233B]\234C^\234C^\235\202D_\236" - "\6E`\237Ea\240Ea\241Eb\241Fb\242Gc\243\223\22)]\27\22)^\23*^\23+_\24+`\25" - ",`\25,a\26-b\26.c\27/e\30""1h\31""2j\31""3j\32""3k\32""4l\33""5l\34""5m\35" - """6n\36""6o\36""7o\37""8p\37""8q\40""9q\40""9r\202!:s\26\40""9q\40""9p\40" - """9q!:q!;r\";s\"<s#<t#=u$=v$>v%?w&?x&@x'@y'Az(Bz(B{)C|)C}*D}*E~\202+E\177" - "$,E\200-F\200-F\201.G\201.H\202/H\203/I\2030I\2040J\2051K\2051K\2062L\207" - "3M\2106Q\2157S\2167S\2178T\2178T\2209U\2219U\222:V\222:W\223;W\224<X\224" - "<X\225=Y\226=Z\227>Z\227>[\230?[\231?\\\231@]\232@]\233A^\234B^\234A^\234" - "\202@[\231\16A\\\232A\\\233B]\233B]\234C^\235C_\236D_\236E`\237E`\240Ea\240" - "Eb\241Fb\242Fc\242Gc\243\223\22)]\26\23*^\23*_\24+_\24,`\25,a\25-b\26-b\26" - ".c\27/d\30/d\30""1g\32""3j\32""4l\33""4l\33""5m\34""6n\35""6n\36""7o\36""7" - "p\37""8q\40""9q\40""9r\202!:s\22\";t\"<u#<u!;s!:r\";r\";s#<t#=u$=u$>v%>w" - "%?w&@x&@y'Az(Az(B{\202)C|\2*D}*D~\202+E\177\13,E\200,F\200-F\200.G\201.G" - "\202/H\202/I\2030I\2040J\2051J\2051K\206\2022L\207\5""5Q\2147R\2167S\217" - "8T\2178T\220\2029U\221\17:V\222:V\223;W\223;X\224<X\225<Y\226=Y\226>Z\227" - ">[\230?[\230?\\\231@\\\232@]\233A^\233A^\234\202B_\235\1B^\234\202A\\\232" - "\2B]\233B]\234\202C^\235\11D_\236D`\237E`\237Ea\240Ea\241Fb\241Fc\242Gc\243" - "Gd\244\222\22)]\4\23*^\23*_\24+_\24+`\202\25,a\22\26-b\26.c\27.c\27/d\30" - "/e\30""0f\31""1f\32""2i\33""4l\34""5m\35""6n\36""7o\36""7p\37""8p\37""8q" - "\40""9r\40:r!:s\202\";t\17#<u#<v$=w#=v#<t\"<t#<t$=u$>v%>v%?w&?x&@y'Ay'Az" - "\202(B{\5)C|*D}*D~+E~+E\177\202,E\200\17-F\200-G\201.G\201.H\202/H\203/I" - "\2040J\2041J\2051K\2062K\2062L\2075P\2136R\2167S\2167S\217\2028T\220\31""9" - "U\221:V\222:V\223;W\223;X\224<X\225<Y\225=Y\226=Z\227>Z\227>[\230?\\\231" - "@\\\232@]\232A]\233A^\234B_\234B_\235C`\236C`\237B^\234A\\\233B]\234C^\234" - "C^\235\202D_\236\10E`\237Ea\240Ea\241Eb\241Fb\242Fc\243Gd\243Hd\244\221\22" - ")]\6\22)^\23*^\23*_\24+`\24,`\25,a\202\26-bM\27.c\27/d\30/e\30""0e\31""1" - "f\31""1g\32""2g\32""2h\34""4k\35""6n\36""7o\37""8p\37""8q\40""9q\40""9r!" - ":s!;s\";t#<u#<v$=v$=w%>x%?x%>x$>v$=u$>v%?w&?x&@x'@y'Az(Bz(B{)C|)C}*D}*D~" - "+E\177,E\177,E\200-F\200-G\201.G\201.H\202/H\203/I\2030I\2040J\2051K\205" - "2K\2062L\2073M\2106R\2157S\2167S\2178T\2178T\2209U\2219U\222:V\222:W\223" - ";W\224<X\224<X\225=Y\226=Z\226>Z\227>[\230?[\231?\\\231@]\232A]\233A^\233" - "B^\234B_\235\202C`\236\202Da\237\16B^\234B]\234C^\235C_\235D_\236E`\237E" - "`\240Ea\240Eb\241Fb\242Fc\242Gc\243Gd\244He\245\221\22)]\17\23*^\23*_\24" - "+_\24+`\25,a\25-b\26-b\26.c\27.d\30/d\30""0e\31""0f\31""1f\32""1g\32""2h" - "\202\33""3i\5\33""4j\35""5m\37""8p\40""9q\40""9r\202!:s\17\";t\";u#<u#=v" - "$=w$>w%>x&?y&@z'@z&@z&?x%?w&@x&@y\202'Az\1(B{\202)C|\17*D}*D~+E~+E\177,E" - "\200,F\200-F\200-G\201.G\202/H\202/I\2030I\2040J\2041J\2051K\206\2022L\207" - "\5""3M\2104O\2127S\2168T\2178T\220\2029U\221\17:V\222:V\223;W\223;X\224<" - "X\225<Y\226=Y\226>Z\227>[\230?[\230?\\\231@\\\232@]\232A^\233A^\234\202B" - "_\235\5C`\236D`\237Da\237Eb\240Ea\240\202C^\235\13D_\236D`\237E`\237Ea\240" - "Ea\241Eb\242Fc\242Gc\243Gd\244Hd\244He\245\220\22)]\4\22*^\23*^\24+_\24+" - "`\202\25,a\13\26-b\26.c\27.c\27/d\30/e\30""0f\31""1f\32""1g\32""2h\33""2" - "h\33""3i\202\33""4j\5\34""5k\34""5l\36""7o\40""9r!:s\202\";t\12#<u#=v$=v" - "$>w%>x%?y&?y&@z'A{(A|\202(B|\3'A{'Ay'Az\202(B{\5)C|)C}*D}+E~+E\177\202,E" - "\200\13-F\200-G\201.G\201.H\202/H\203/I\2040J\2041J\2051K\2062K\2062L\207" - "\2023M\210\5""4N\2116P\2148T\2209T\2209U\221\202:V\222\26;W\223;W\224<X\225" - "<Y\225=Y\226=Z\227>Z\227>[\230?\\\231@\\\231@]\232A]\233A^\234B^\234B_\235" - "C`\236C`\237Da\237Db\240Eb\241Fc\241Ea\240\202D_\236\12E`\237Ea\240Ea\241" - "Eb\241Fb\242Fc\243Gd\243Hd\244He\245Ie\245\217\22)]\6\22)^\23*^\23+_\24+" - "`\24,`\25,a\202\26-b'\27.c\27/d\30/e\30""0e\31""0f\31""1g\32""2g\32""2h\33" - """3i\33""3j\33""4j\34""5k\34""5l\35""6l\35""6m\36""7n\40""9q\";t#<u#<v$=" - "v$=w%>x%?x&?y&@z'@{'A{(B|(B})C}(B{'Az(Bz(B{)C|)C}*D}*D~\202+E\177\22,E\200" - "-F\200-F\201.G\201.H\202/H\203/I\2030I\2040J\2051K\2051K\2062L\2073L\210" - "3M\2104N\2114N\2125O\2127R\215\2029U\221\31:V\222:W\223;W\224<X\224<X\225" - "=Y\226=Z\226>Z\227>[\230?[\231?\\\231@]\232@]\233A^\233B^\234B_\235C_\236" - "C`\236Da\237Da\240Eb\240Eb\241Fc\242Gd\242Fa\240\202E`\237\6Ea\240Eb\241" - "Fb\242Fc\242Gc\243Gd\244\202He\245\1If\246\217\22)]\17\23*^\23*_\24+_\24" - "+`\25,a\25-b\26-b\26.c\27/d\30/d\30""0e\31""0f\31""1f\32""1g\32""2h\202\33" - """3i\5\33""4j\33""4k\34""5k\35""6l\35""6m\202\36""7n\22\37""8o\37""9p!:s" - "#<v$=w%>w%>x&?y&@z'@z'A{(A|(B|)B|'Az'Ay(Az(B{\202)C|\17*D}*D~+E~+E\177,E" - "\200,F\200-F\200-G\201.G\202/H\202/I\2030I\2040J\2041J\2051K\206\2022L\207" - "\26""3M\2103M\2114N\2115N\2125O\2136P\2148S\217:V\222:V\223;W\223;X\224<" - "X\225<Y\226=Y\226>Z\227>[\230?[\230?\\\231@\\\232@]\232A^\233A^\234\202B" - "_\235\22C`\236D`\237Da\237Eb\240Eb\241Fc\241Gc\242Hd\243Hd\244Fa\240Ea\240" - "Ea\241Fb\241Fc\242Gc\243Gd\244Hd\244He\245\202If\246\1\22*^\215\22)]\21\22" - "*^\23*^\23+_\24+`\25,a\25-a\26-b\26.c\27.c\27/d\30/e\30""0e\31""1f\32""1" - "g\32""2h\33""2h\33""3i\202\33""4j\5\34""5k\34""5l\35""6m\35""7m\36""7n\202" - "\37""8o\17\40""9p\40""9q!:r#<u%>x%?y&?y&@z'A{(A{(B|'A{&@y'Ay'Az\202(B{\5" - ")C|)C}*D~+E~+E\177\202,E\200\17-F\200-G\201.G\201.H\202/H\2030I\2040J\204" - "1J\2051K\2062K\2062L\2073L\2103M\2104N\2114N\212\2025O\213\22""6P\2147Q\215" - "9T\220;W\223;W\224<X\225<Y\225=Y\226=Z\227>Z\227>[\230?\\\231@\\\231@]\232" - "A]\233A^\234B^\234B_\235\202C`\236\5Da\237Da\240Eb\241Fc\241Gc\242\202Hd" - "\243\202Ie\244\202Eb\241\10Fb\242Fc\243Gd\243Gd\244He\245Ie\245If\246Jf\247" - "\202\23,b\2\23+`\22*_\212\22)]\5\23*^\23+_\24+`\25,`\25,a\202\26-b\17\27" - ".c\27/d\30/d\30""0e\31""0f\31""1g\32""2g\32""2h\33""3i\33""3j\33""4j\34""5" - "k\34""5l\35""6l\35""6m\202\36""7n\26\37""8o\37""9p\40""9q!:q!:r\";s\"<t$" - ">w&@y'@z'A{&@z&?x&@x'@y'Az(Az(B{)C|)C}*D}*D~\202+E\177\1,E\200\202-F\200" - "2.G\201.H\202/H\203/I\2030I\2040J\2051K\2051K\2062L\2073L\2103M\2104N\211" - "4N\2125O\2125O\2136P\2146P\2157Q\2157R\2169T\221<X\224<X\225=Y\226=Z\227" - ">Z\227>[\230?[\231?\\\231@]\232@]\233A^\233B^\234B_\235C`\235C`\236Da\237" - "Da\240Eb\240Eb\241Fc\242Gd\242Hd\243Ie\244Ie\245Jf\245Ie\245Fb\242Fc\242" - "Gc\243Gd\244\202He\245\3If\246Jf\247Jg\247\205\23,b\2\23+a\22*_\206\22)]" - "\17\23*^\23*_\24+_\24,`\25,a\25-a\26-b\27.c\27.d\30/d\30""0e\31""0f\31""1" - "f\32""1g\32""2h\202\33""3i\21\33""4j\33""4k\34""5k\35""5l\35""6m\36""7m\36" - """7n\37""8o\37""8p\40""9p\40:q!:r!;r\";s\"<t#=u$=v\202%>w\27%?w&@x&@y'Ay" - "'Az(B{)B|)C|*D}*D~+E~+E\177,E\200,F\200-F\200-G\201.G\202.H\202/I\2030I\204" - "0J\2041J\2051K\206\2022L\207\5""3M\2103M\2114N\2115N\2125O\213\2026P\214" - "\17""7Q\2157Q\2168R\2168S\217:U\221<Y\225=Y\226>Z\227>[\230?[\230?\\\231" - "@\\\232@]\232A]\233A^\234\202B_\235\1C`\236\202Da\237\23Eb\240Eb\241Fc\241" - "Gc\242Hd\243He\244Ie\244If\245Jf\246Jg\246He\244Gc\243Gd\244Hd\244He\245" - "Ie\246If\246Jg\247Jg\250\210\23,b\34\23+a\22*_\22)^\22)]\22)^\23*^\24+_\24" - "+`\25,a\25-a\26-b\26.c\27.c\27/d\30/e\30""0e\31""1f\32""1g\32""2h\33""2h" - "\33""3i\33""3j\33""4j\34""5k\34""5l\35""6l\36""6m\36""7n\202\37""8o\17\40" - """9p\40""9q!:q!;r\";s\"<t#<t#=u$>v%>v%?w&?x&@x'Ay'Az\202(B{\5)C|)D}*D~*E" - "~+E\177\202,E\200\17-F\200-G\201.G\201.H\202/H\203/I\2040J\2041J\2051K\206" - "2K\2062L\2073L\2103M\2104N\2114N\212\2025O\213\1""6P\214\2027Q\215\17""8" - "R\2168R\2179S\2209T\220;U\222=Y\226>Z\227>[\230?\\\231@\\\231@]\232A]\233" - "A^\234B^\234B_\235\202C`\236\5Da\237Da\240Eb\241Fc\241Gc\242\202Hd\243\16" - "Ie\244If\245Jf\245Jg\246Kg\247Kh\247He\245Hd\244He\245Ie\245If\246Jf\247" - "Jg\250Kh\250\214\23,b\1\23,a\202\24+`\14\24,`\25,a\26-b\26.b\27.c\27/d\30" - "/e\30""0e\31""0f\31""1g\32""2g\32""2h\202\33""3i\5\33""4j\34""5k\34""5l\35" - """6l\35""6m\202\36""7n\26\37""8o\37""9p\40""9q!:q!:r\";s\"<s#<t#=u$=u$>v" - "%>w%?x&@x&@y'Az(Bz(B{)C|)C}*D}*D~\202+E\177\1,E\200\202-F\200\17.G\201.H" - "\202/H\203/I\2030I\2040J\2051K\2051K\2062L\2072L\2103M\2104N\2114N\2125O" - "\2125O\213\2026P\214\31""7Q\2157R\2168R\2178S\2179S\220:T\221:U\221;V\222" - "=Y\226?[\231?\\\231@\\\232@]\233A^\233A^\234B_\235C_\235C`\236Da\237Da\240" - "Eb\240Eb\241Fc\242Gd\242Hd\243\202Ie\244\4Jf\245Jf\246Kg\247Kh\247\202Lh" - "\250\202He\245\5If\246Jf\247Jg\247Kg\250Kh\251\213\23,b\17\24-c\24-d\25." - "d\25.e\25.d\26.c\26-b\26.c\27.d\30/d\30""0e\31""0f\31""1f\32""1g\32""2h\202" - "\33""3i1\33""4j\33""4k\34""5k\35""6l\35""6m\36""7m\36""7n\37""8o\37""8p\40" - """9p\40:q!:r!;r\";s\"<t#=t$=u$>v%>w%?w&@x&@y'Ay'Az(B{)B|)C|*D}*D~+E~+E\177" - ",E\200,F\200-F\200-G\201.G\202.H\202/I\2030I\2040J\2041J\2051K\2063M\210" - "4O\2123M\2103M\2114N\2114N\2125O\213\2026P\214\17""7Q\2157Q\2168R\2168S\217" - "9S\2209T\220:T\221:U\222;V\223<V\223=Y\226@\\\232@]\232A^\233A^\234\202B" - "_\235\22C`\236C`\237Da\237Eb\240Eb\241Fc\241Gc\242Hd\243He\244Ie\244If\245" - "Jf\246Jg\246Kg\247Lh\250Li\251Mi\251Li\251\202If\246\4Jg\247Jg\250Kh\250" - "Lh\251\212\23,b\12\23,c\24-c\24.d\25.e\26/e\26/f\27""0g\27""1g\30""0g\30" - """0f\202\30""0e\5\31""1f\31""1g\32""2h\33""2h\33""3i\202\33""4j\5\34""5k" - "\34""5l\35""6l\35""7m\36""7n\202\37""8o\17\40""9p\40""9q!:q!;r\";s\"<t#<" - "t#=u$>v%>v%?w&?x&@x'@y'Az\202(B{\5)C|)C}*D}*E~+E\177\202,E\200\16-F\200-" - "G\201.G\201.H\202/H\203/I\2030J\2041J\2051K\2063M\2105Q\2146Q\2156R\2156" - "Q\214\2035O\213\1""6P\214\2027Q\215\17""8R\2168R\2179S\2209T\220:T\221:U" - "\222;U\222;V\223<W\224=W\224>Y\226@\\\232A^\234B^\234B_\235\202C`\236\5D" - "a\237Da\240Eb\240Ec\241Fc\242\202Hd\243\5Ie\244If\245Jf\245Jg\246Kg\247\202" - "Lh\250\11Li\251Mj\252Nj\252Li\251Jf\247Jg\250Kh\250Kh\251Li\252\212\23,b" - "\15\24-c\24.d\25.e\25/e\26/f\26""0g\27""0g\30""1h\30""2i\31""2i\31""3j\32" - """3j\32""2i\202\32""2h\202\33""3i\1\33""4j\202\34""5k\2\35""6l\35""6m\202" - "\36""7n\22\37""8o\37""9p\40""9p!:q!:r\";s\"<s#<t#=u$=u$>v%>w%?x&@x&@y'Az" - "(Az(B{\202)C|\2*D}*D~\202+E\177\1,E\200\202-F\200\10.G\201.H\202/H\202/I" - "\2030I\2040J\2051K\2063N\211\2025Q\21416R\2157R\2167S\2178T\2177S\2167Q\215" - "6P\2147Q\2157R\2168R\2168S\2179S\220:T\221:U\221;U\222;V\223<V\223<W\224" - "=W\225=X\226>Y\226@\\\232B_\235C_\235C`\236Da\237Da\240Eb\240Eb\241Fc\242" - "Gd\242Hd\243He\244Ie\244Jf\245Jg\246Kg\247Kh\247Lh\250Li\251Mi\251Mj\252" - "Nk\253Ok\254Kh\251Kg\250Kh\251Li\251Li\252\211\23,b\21\24-c\24-d\25.d\25" - "/e\26/f\26""0f\27""0g\27""1h\30""1i\31""2i\31""3j\32""3k\32""4k\33""4l\33" - """5m\34""5m\34""5l\202\34""4k(\34""5k\35""5l\35""6m\36""7m\36""7n\37""8o" - "\37""8p\40""9p\40:q!:r!;r\";s#<t#=t$=u$>v%>w%?w&?x&@y'Ay'Az(B{)B|)C|*D}*" - "D~+E~+E\177,E\200,F\200-F\200-G\201.G\202.H\202/I\2030I\2040J\2041K\2063" - "O\212\2025Q\214\6""6R\2156R\2167S\2167S\2178T\2209U\220\2029U\221$8S\217" - "8R\2168S\2179S\2209T\220:T\221:U\222;V\223<V\223<W\224=W\225=X\225>X\226" - ">Y\227?Z\227@[\231B^\235C`\237Da\237Eb\240Eb\241Fc\241Gc\242Hd\243He\244" - "Ie\244If\245Jf\246Jg\246Kg\247Lh\250Li\250Mi\251Mj\252Nj\253Nk\253\202Ol" - "\254\4Li\251Kh\251Li\252Mj\253\210\23,b\23\23-c\24-c\25.d\25.e\26/e\26/f" - "\27""0g\27""1h\30""1h\30""2i\31""2j\31""3j\32""4k\33""4l\33""5m\34""5m\34" - """6m\35""6m\34""5m\202\34""5l\15\35""6l\35""6m\36""7n\36""8o\37""8o\40""9" - "p\40""9q!:q!;r\";s\"<s#<t#=u\202$>v\5%?w&?x&@x'@y'Az\202(B{\26)C|)C}*D}*" - "E~+E\177,E\177,E\200-F\200-G\201.G\201.H\202/H\203/I\2030J\2041K\2064O\212" - "5P\2135Q\2146Q\2156R\2157S\2167S\217\2028T\220\3""9U\2219V\222:V\222\202" - ";W\223\15:U\2229T\220:T\221:U\222;U\222;V\223<V\224<W\224=X\225>X\226>Y\227" - "?Y\227?Z\230\202@[\231\5B]\234Da\237Eb\240Ec\241Fc\242\202Hd\243\17Ie\244" - "If\245Jf\245Jg\246Kg\247Kh\250Lh\250Li\251Mj\252Nj\252Nk\253Ok\254Ol\254" - "Pm\255Ol\255\202Li\252\1Mj\253\210\23,b\15\24-c\24-d\25.d\25/e\26/f\26""0" - "g\27""0g\30""1h\30""2i\31""2i\31""3j\32""3k\32""3j\202\33""3j\202\33""3i" - "\1\33""4j\202\34""5k\2\35""6l\35""6m\202\36""7n\26\37""8o\37""9p\40""9p!" - ":q!:r\";s\"<s#<t#=u$=u$>v%?w%?x&@x'@y'Az(Az(B{)C|)C}*D}*D~\202+E\177\13," - "E\200,F\200-F\200.G\201.H\202/H\203/I\2030I\2042M\2074P\2124P\213\2025Q\214" - "\5""6R\2157R\2167S\2178T\2178T\220\2029U\221\7:V\222:W\223;W\224<X\224<X" - "\225<Y\225<W\224\202;V\223\11<V\223<W\224=W\225=X\226>Y\226>Y\227?Z\230@" - "Z\230@[\231\202A\\\232\26B]\233C_\236Fb\241Gd\242Hd\243He\244Ie\244Jf\245" - "Jg\246Kg\247Kh\247Lh\250Li\251Mi\251Mj\252Nk\253Nk\254Ol\254Pl\255Pm\256" - "Qn\256Ol\255\202Mj\253\207\23,b\11\24-c\31""2g\37""4b/Bl)<g\35""4f\27""0" - "g\27""1h\30""1h\202\30""1gf\31""1g\31""1f\32""1g\32""2h\33""2h\33""3i\33" - """4j\33""4k\34""5k\35""5l\35""6m\36""7m\36""7n\37""8o\37""8p\40""9p\40:q" - "!:r!;r\";s#<t#=t$=u$>v%>w%?w&?x&@y'Ay'Az(B{(B|)C|*D}*D~+E~+E\177,E\200,F" - "\200-F\200-G\201.G\202.H\202/I\2030I\2040J\2042M\2104P\2135P\2135Q\2146R" - "\2156R\2167S\2167S\2178T\2209U\2209U\221:V\222:V\223;W\223;X\224<X\225<Y" - "\225=Y\226=Z\227>Z\227>Y\227=X\225=W\225=X\225>X\226>Y\227?Z\227?Z\230@[" - "\231@[\232A\\\232A]\233B]\234C^\234C^\235E`\237Gc\242Ie\244If\245Jf\246J" - "g\246Kg\247Lh\250Li\250Mi\251Mj\252Nj\253Nk\253Ol\254Ol\255Pm\255Pm\256Q" - "n\257Ro\260Ol\255Mj\253\206\23,b\7\23,c\24-c0Es@OoARwM\\{+?k\203\27/d\30" - "\30/e\30""0e\31""1f\32""1g\32""2h\33""2h\33""3i\33""3j\33""4j\34""5k\34""5" - "l\35""6l\35""6m\36""7n\36""8o\37""8o\40""9p\40""9q!:q!;r\";s\"<s#<t#=u\202" - "$>v\5%?w&?x&@x'@y'Az\202(B{\5)C|)C}*D}*E~+E\177\202,E\200\17-F\200-G\201" - ".G\201.H\202/H\203/I\2030J\2040J\2051K\2062L\2074P\2136Q\2156R\2157S\216" - "7S\217\2028T\220\22""9U\2219V\222:V\222;W\223;W\224<X\224<X\225=Y\226=Z\227" - ">Z\227>[\230?[\231@\\\231?\\\231?Z\230>Y\227?Y\227?Z\230\202@[\231\5A\\\232" - "A\\\233B]\233B^\234C^\235\202D_\236\17E`\237Ea\240Gc\242He\244Jg\246Kh\250" - "Lh\250Li\251Mj\252Nj\252Nk\253Ok\254Ol\254Pm\255Pm\256\202Qn\257\202Ro\260" - "\1Nk\254\206\23,b\5\24-c\24-d\25.d\25-c\25-b\202\26-b\10\27.c\27/d\30/d\30" - """0e\31""0f\31""1g\32""2g\32""2h\202\33""3i\5\33""4j\34""4k\34""5l\35""6" - "l\35""6m\202\36""7n\22\37""8o\37""9p\40""9p!:q!:r\";s\"<s#<t#=u$=u$>v%>w" - "%?x&@x&@y'Az(Az(B{\202)C|\2*D}*D~\202+E\177\13,E\200,F\200-F\200.G\201.H" - "\202/H\203/I\2030I\2040J\2051J\2051K\206\2022L\207\5""3N\2115P\2147S\216" - "8T\2178T\220\2029U\221\5:V\222:W\223;W\223;X\224<X\225\202=Y\226\12>Z\227" - ">[\230?[\230?\\\231@\\\232@]\233A^\233A^\234A^\233A]\233\203A\\\232\26B]" - "\233B]\234C^\235C_\235D_\236D`\237E`\237Ea\240Eb\241Fb\242Fc\242Hd\244If" - "\246Kg\247Li\251Nj\253Nk\254Ol\254Pl\255Pm\256Qn\256Qn\257\203Ro\260\1Qn" - "\257\205\23,b%\24-c\24,b\24,a\24+`hr\207\201\204\213Q\\t\26.c\27.c\27/d\30" - """0e\31""0f\31""1f\32""1g\32""2h\33""2h\33""3i\33""4j\33""4k\34""5k\35""5" - "l\35""6m\36""7m\36""7n\37""8o\37""8p\40""9p\40:q!:r!;r\";s\"<t#=u%>w%?x'" - "@z'A{\202(B|3(Az'Az(B{(B|)C|*D}*D~+E~+E\177,E\200,F\200-F\200-G\201.G\202" - ".H\202/H\2030I\2040J\2041J\2051K\2062K\2072L\2073M\2103M\2114N\2114N\212" - "6Q\2148S\2179U\221:V\222:V\223;W\223;X\224<X\225<Y\225=Y\226=Z\227>Z\230" - "?[\230?\\\231@\\\232@]\232A]\233A^\234B_\234B_\235C`\236C`\237D`\237C_\236" - "C_\235\202C^\235\23D_\236D`\236E`\237Ea\240Ea\241Eb\241Fb\242Gc\243Gd\243" - "Hd\244He\245Ie\246If\246Kh\250Li\252Nk\253Ol\255Pm\256Qo\257\204Ro\260\204" - "\23,b(\23+a\23+_\24+_\24+`\26+]\312\312\313\245\245\246\233\234\236\26-a" - "\27/d\30/e\30""0e\31""0f\32""1g\32""2g\33""2h\33""3i\33""3j\33""4j\34""5" - "k\34""5l\35""6l\35""6m\36""7n\36""8o\37""8o\40""9p\40:q!;s\"<t$=v%>w&?y&" - "@z'@{'A{(B|)B})C}*D~\202*D\177\1*D~\202)C}\3*D}*E~+E\177\202,E\200#-F\200" - "-G\201.G\201.H\202/H\203/I\2030I\2040J\2051K\2062K\2062L\2073L\2103M\210" - "4N\2114N\2125O\2125O\2136P\2147Q\2158S\217:V\222;W\224<X\224<Y\225=Y\226" - "=Z\227>Z\227>[\230?[\231?\\\231@]\232A]\233A^\233B^\234B_\235\202C`\236\7" - "Da\237Da\240Eb\240Ec\241Fc\242Fb\241Fa\240\203Ea\240\5Eb\241Fb\242Fc\243" - "Gc\243Gd\244\202He\245\5If\246Jf\247Jg\247Kh\250Kh\251\202Li\252\3Mj\253" - "Nk\254Ol\255\202Pm\256\202\23,b\21\23+`\22*^\23*^\23*_\24+_\24,`';e\241\257" - "\275\226\241\253\214\230\243\35""1^\30/d\30""0e\31""0f\31""1g\32""2g\32""2" - "h\202\33""3i\26\33""4j\33""4k\34""5l\35""6l\35""6m\36""7n\37""8p\40:r!;s" - "#<u#=v$=w%>x%?x&?y&@z'@z'A{(A|(B|)C})C~\202*D\177\2+E\200,F\200\202,G\200" - "\1+F\200\202+E\177\13,E\200,F\200-F\200.G\201.H\202/H\203/I\2030I\2040J\205" - "1J\2051K\206\2022L\207\5""3M\2104M\2114N\2125O\2125O\213\2026P\214\31""7" - "Q\2157R\2168R\2169S\220:V\222<X\225=Y\226>Z\227>[\230?[\230?\\\231@\\\232" - "@]\233A^\233A^\234B_\235C_\235C`\236Da\237Da\240Eb\240Eb\241Fc\242Gc\242" - "Hd\243\202Ie\244\17If\245He\244Hd\244Gd\243Gc\243Gd\244Hd\244He\245If\246" - "If\247Jg\247Kg\250Kh\251Li\251Li\252\206Mj\253,\23+a\22*^\22)]\23*^\23*_" - "\24+_\24+`\25,a7Hk\225\230\234\315\317\321\237\244\252':e\30/e\31""0f\31" - """1f\32""1g\32""2h\33""2h\33""3i\33""4j\34""5k\35""6m\36""7o\37""8q\40""9" - "r!:s\";t\";u#<u#=v$=w$>w%>x%?y&?y'@z'A{(A{(B|)B})C~*D~*D\177\202+E\200\4" - ",F\200-H\201-H\202.I\202\202.I\203+-G\201-F\200-G\201.G\202.H\202/H\2030" - "I\2040J\2041J\2051K\2062K\2062L\2073M\2103M\2114N\2114N\2125O\2136P\2136" - "P\2147Q\2157Q\2168R\2168S\2179S\2209T\220:T\221;V\223=X\225>[\230?\\\231" - "@\\\232@]\232A]\233A^\234B_\234B_\235C`\236C`\237Da\237Eb\240Eb\241Fc\241" - "Gc\242\202Hd\243\6Ie\244If\245Jf\246Jg\246Kg\247Kh\250\202Lh\250\2Kh\250" - "Kg\247\202Jg\247\5Jg\250Kh\250Kh\251Li\252Mi\252\206Mj\253\202\22)])\22)" - "^\23*^\23+_\24+`\25,`\25,a\26-a&9dBTy+?j\30/e\30""0e\31""1f\31""1g\32""2" - "h\33""3j\34""5l\35""6n\36""7o\37""8p\37""8q\40""9q\40""9r!:s!;t\";t#<u#<" - "v$=v$=w%>x%?x&?y&@z'@{'A{(B|(B})C}*C~*D\177\202+E\200*,F\200,G\201-H\201" - "-I\202.I\203/J\203/J\204.I\203-F\201.G\201.H\202/H\203/I\2030I\2040J\205" - "1K\2062K\2062L\2073L\2103M\2104N\2114N\2125O\2125O\2136P\2146Q\2157Q\215" - "7R\2168R\2179S\2179S\220:T\221:U\221;U\222;V\223<W\224>Y\227@\\\231A]\233" - "A^\233B^\234B_\235\202C`\236\17Da\237Da\240Eb\240Eb\241Fc\242Gd\243Hd\243" - "Ie\244Ie\245Jf\245Jg\246Kg\247Kh\247Lh\250Li\251\202Mj\252\2Nk\253Ok\254" - "\202Ol\254\4Ol\255Ol\254Nk\254Ol\255\202Nk\254\204Mj\253\202\22)]\26\23*" - "^\23*_\24+_\24,`\25,a\25-a\26-b\27.c\27/d\30/e\30""1g\31""2i\32""3j\33""4" - "l\33""5m\34""6n\35""6n\36""7o\37""7p\37""8p\40""9q\40""9r\202!:s\26\";t\"" - "<u#<u#=v$=w%>w%>x&?y&@z'@z'A{(A|(B|)C})C~*D\177+D\177+E\200,F\200,G\200-" - "H\201-H\202\202.I\203\12/J\204/K\205/I\203.G\201.G\202/H\202/I\2031K\206" - "2N\2102M\210\2032L\207\5""3M\2104M\2114N\2115O\2125O\213\2026P\214\5""7Q" - "\2157Q\2168R\2168S\2179S\220\202:T\221\13;U\222;V\223<V\223<W\224=W\225=" - "X\226?Z\230@]\233B_\235C_\235C`\236\202Da\237\26Eb\240Eb\241Fc\242Gc\242" - "Hd\243He\244Ie\244If\245Jf\246Kg\247Kh\247Lh\250Li\251Mi\251Mj\252Nk\253" - "Nk\254Ol\254Ol\255Pm\256Qn\256Qn\257\206Ro\260\202Qn\257\1\22)]\202\23*^" - "\17\24+_\24+`\25,a\25-a\26-b\27/e\30""0g\30""2h\31""2j\32""3k\32""4k\33""4" - "l\33""5m\34""5m\35""6n\202\36""7o\5\37""8p\37""8q\40""9r!:r!:s\202\";t\17" - "#<u#=v$=w$>w%>x%?y&?y'@z'A{(A|(B|)B})C~*D~*D\177\202+E\200\5,F\200,H\201" - "-H\202.I\202.I\203\202/J\204\11""0K\205/I\203.G\201.H\202/H\203/I\2042N\210" - "4O\2124P\213\2025P\213\37""4O\2134N\2124N\2114N\2125O\2136P\2136P\2147Q\215" - "7Q\2168R\2168S\2179S\2209T\220:T\221:U\222;U\223;V\223<W\224=W\225=X\225" - ">X\226>Y\227?Z\227@[\231B^\234C`\236Da\237Eb\240Eb\241Fc\241Gc\242\202Hd" - "\243\17Ie\244If\245Jf\246Jg\246Kg\247Kh\250Li\250Mi\251Mj\252Nj\253Nk\253" - "Ol\254Ol\255Pm\255Pm\256\202Qn\257\210Ro\260)\22)]\23*^\23+_\24+`\25,`\25" - "-b\26/e\27""0g\30""1h\30""2i\31""2j\31""3j\32""3k\32""4l\33""5l\34""5m\34" - """6n\35""6o\36""7o\37""8p\37""8q\40""9q\40""9r!:s!;s\";t#<u#<v$=v$=w%>x%" - "?x&?y&@z'@{'A{(B|(B})C}*C~*D\177\202+E\200\11,F\200,G\201-H\201-I\202.I\203" - "/J\203/J\2040K\2050K\206\202.H\202\4/H\203/I\2031K\2063O\212\2024P\213\3" - """5Q\2146Q\2156R\215\2027S\216\24""7R\2166Q\2156P\2146Q\2157Q\2157R\2168" - "R\2179S\2179S\220:T\221:U\221;U\222;V\223<V\224<W\224=X\225=X\226>Y\226?" - "Y\227?Z\230\202@[\231\30A\\\232B^\235Da\237Eb\241Fc\242Gd\243Hd\243Ie\244" - "Ie\245Jf\245Jg\246Kg\247Kh\247Lh\250Li\251Mj\251Mj\252Nk\253Ok\254Ol\254" - "Pm\255Pm\256Qn\256Qn\257\211Ro\260\26\23*^\23*_\24+_\24,b\26/e\26""0g\27" - """0g\30""1h\30""2i\31""2i\31""3j\32""3k\32""4k\33""4l\33""5m\34""6n\35""6" - "n\36""7o\36""7p\37""8p\40""9q\40""9r\202!:s#\";t\";u#<u#=v$=w$>x%>x&?y&@" - "z'@z'A{(A|(B|)C})C~*D~+D\177+E\200,F\200,G\200-H\201-H\202.I\202.J\203/J" - "\204/K\2050K\205/J\205.G\202/H\202/I\2030I\2043N\2114O\2124P\213\2025Q\214" - "\5""6R\2156R\2167S\2168T\2178T\220\2039U\221\1""9T\220\2028S\217\13""9S\220" - "9T\220:T\221;U\222;V\223<V\223<W\224=W\225=X\225>Y\226>Y\227\202?Z\230\16" - "@[\231A[\232A\\\232B]\233B]\234C_\235Ea\240Gc\242He\244Ie\244If\245Jf\246" - "If\245Ie\245\204He\245\7If\246Jf\247Kg\250Li\251Mj\252Nk\254Pm\256\212Ro" - "\260\20\23*_\24+_\25-b\26/f\26""0f\27""0g0DoBQq;Kn7Jt)=k7Iq=Lm@Pt6Ho\35""6" - "n\202\36""7o\5\37""8p\37""8q\40""9r\40:r!:s\202\";t\17#<u#=v$=v$>w%>x%?y" - "&?y'@z'A{(A{(B|)B})C~*D~*D\177\202+E\200\5,F\200,H\201-H\202.I\202.I\203" - "\202/J\204\2""0K\2050J\205\202.H\202\13/H\2030I\2042M\2074O\2124P\2135P\213" - "5Q\2146R\2156R\2167S\2167S\217\2028T\220\1""9U\221\202:V\222\1;W\223\202" - ";W\224\14;V\223;U\222:U\222;U\223;V\223<W\224=W\224=X\225>X\226>Y\227?Z\227" - "?Z\230\202@[\231\5A\\\232B\\\233B]\234C^\234C^\235\202D_\236\17Ea\240Fb\241" - "Fc\242Fb\241Fb\242Fc\243Gd\243Hd\244He\245Ie\246If\246Jg\247Jg\250Kh\250" - "Kh\251\202Li\252\4Mj\253Nk\254Pm\256Qn\257\206Ro\260\4\23+_\24,`\26/e\26" - "/f\202\27""0g!*Aq3Hu;Nx2Fq2Gu=Py7Ly7Lz.Du\36""6o\36""7o\37""8p\37""8q\40" - """9q\40""9r!:s!;t\";t#<u#<v$=v$=w%>x%?x&?y&@z'@{'A{(B|(B})C}*C~*D\177\202" - "+E\200*,F\200,G\201-H\201-I\202.I\203.J\203/J\204/K\204.I\203.G\201.H\202" - "/H\203/I\2031L\2063O\2124P\2124P\2135Q\2146Q\2156R\2157R\2167S\2178T\217" - "8T\2209U\2219V\221:V\222;W\223;W\224<X\224<X\225=Y\226=Z\226>Z\227=Y\226" - "=X\225<W\225=X\225=X\226>Y\226?Y\227?Z\230\202@[\231\17A\\\232A\\\233B]\233" - "B]\234C^\235C_\235D_\236E`\237E`\240Ea\240Eb\241Fb\242Fc\242Gc\243Gd\244" - "\202He\245\7If\246Jf\247Jg\247Kg\250Kh\251Li\251Li\252\205Mj\253\4Nk\254" - "Ol\255Pm\256Qn\257\202Ro\260\7\24+_\24,b\26/f\26""0f\27""0g\27""1h\30""1" - "i\202\31""2i\13\32""3k(6aEE]\40""5e\34""6n\35""6n\36""7o\36""7p\37""8p\40" - """9q\40""9r\202!:s\27\";t\";u#<u#=v$=w%>w%>x&?y&@z'@z'A{(A|(B|)C})C~*D\177" - "+D\177+E\200,F\200,G\200-H\201-H\202.I\202\202.H\202\12-G\201-F\200.G\201" - ".G\202/H\202/I\2031K\2063O\2114O\2124P\213\2025Q\214\5""6R\2156R\2167S\216" - "8T\2178T\220\2029U\221\16:V\222:V\223;W\223;X\224<X\225<Y\226=Y\226>Z\227" - ">[\230?[\230?\\\231@\\\232?\\\231?[\230\203?Z\230\1@[\231\202A\\\232\2B]" - "\233B]\234\202C^\235\13D_\236D`\237E`\237Ea\240Ea\241Fb\241Fc\242Gc\243G" - "d\244Hd\244He\245\202If\246\5Jg\247Jg\250Kh\251Lh\251Li\252\212Mj\253\20" - "Nk\254Ol\255\24+`\25,a\26.d\27""0g\27""1h\30""1h\30""2i\31""2jafv\237\204" - "a\217_?\235jEqK?\35""6n\202\36""7o\5\37""8p\37""8q\40""9r!:r!:s\202\";t\17" - "#<u#<v$=w$>w%>x%?y&?y&@z'A{(A{(B|)B})C~*D~*D\177\203+E\200\4+F\200+E\177" - "+F\177+E\177\202,E\200\17-F\200-G\201.G\201.H\2020I\2042M\2073O\2114O\212" - "4P\2135P\2135Q\2146R\2156R\2167S\2167S\217\2028T\220\1""9U\221\202:V\222" - "\15;W\223;X\224<X\225<Y\225=Y\226=Z\227>Z\227>[\230?\\\231@\\\232@]\232A" - "]\233A^\234\202B^\234\7A]\233A\\\233A\\\232A\\\233B]\234C^\234C^\235\202" - "D_\236\1E`\237\202Ea\240\14Eb\241Fb\242Fc\243Gc\243Hd\244He\245Ie\245If\246" - "Jg\247Jg\250Kh\250Kh\251\202Li\252\214Mj\253\23\24,`\25,a\26-b\26.c\27""0" - "f\30""1h\31""2j\31""3jjjs\361\312\223\177vlle_HIU\36""6n\36""7o\37""8p\37" - """8q\40""9q\40""9r\202!:s\11\";t\"<u#<v$=v$>w%>x%?x&?y&@y\202&@z\202'Az\2" - "'A{(A{\203(B{\4)C|)C}*D}*D~\202+E\177\22,E\200-F\200-F\201.H\2020J\2041L" - "\2072N\2103N\2113O\2124P\2124P\2135Q\2146Q\2156R\2157S\2167S\2178T\2178T" - "\220\2029U\221\20:V\222:W\223;W\224<X\224<X\225=Y\226=Z\226>Z\227>[\230?" - "[\231?\\\231@]\232@]\233A^\233B^\234B_\235\202C`\236\202Da\237\23D`\237C" - "_\236C^\235C_\235D_\236E`\237E`\240Ea\240Eb\241Fb\242Fc\242Gc\243Gd\244H" - "e\245If\246Kh\250Nj\253Ol\254Pl\255\204Pm\256\2Ol\255Nk\254\212Mj\253\30" - "\25,a\25-a\26-b\26.c\27.d\30/d\30""0e\31""1g\200zu\333\271\206\321\264\210" - "\336\300\222\223\207{\33""4k\34""5l\34""6l\35""6m\36""7n\36""8o\37""8o\40" - """9p\40""9q!:q!;r\202\";s\11\"<t#<t#=u$=u$>v%>w%?w&@x&@y\202'Az\22(B{)B|" - ")C|*D}*D~+E~+E\200-G\200.H\202/J\2040L\2061L\2072M\2072N\2103N\2113O\211" - "4O\2124P\213\2025Q\214\5""6R\2156R\2167S\2168S\2178T\220\2029U\221\17:V\222" - ":V\223;W\223;X\224<X\225<Y\225=Y\226>Z\227>[\230?[\230?\\\231@\\\232@]\232" - "A^\233A^\234\202B_\235\1C`\236\202Da\237\3Eb\240Eb\241Fc\241\203Gc\242\203" - "Fb\241\15Fb\242Fc\243Gd\243He\245Jg\247Li\251Nj\253Nk\253Ol\254Ol\255Pm\256" - "Qm\256Qn\257\205Ro\260\202Qn\257\3Pm\256Ol\255Nk\254\204Mj\253\23\25-b\26" - "-b\26.c\27.c\27/d\30/e\30""0e\31""1f|xt\315\257z\225\204l\267\231j4Ce\33" - """4j\34""5k\34""5l\35""6m\35""7m\36""7n\202\37""8o\26\40""9p\40""9q!:q!;" - "r\";s\"<t#<t#=u$>v%>v%?w&?x&@y'Ay'Az(B{)C|*D~+E\177,G\200-H\201.I\203\202" - "/J\204\13""0K\2050L\2061L\2061M\2072M\2102N\2113O\2114O\2124P\2135P\2135" - "Q\214\2026R\215\2""7S\2167S\217\2028T\220\1""9U\221\202:V\222\17;W\223;W" - "\224<X\225<Y\225=Y\226=Z\227>Z\227>[\230?\\\231@\\\232@]\232A]\233A^\234" - "B_\234B_\235\202C`\236\5Da\237Da\240Eb\241Fc\241Fc\242\202Hd\243\17Ie\244" - "If\245Jf\246Jg\246Kg\247Kh\250Li\250Mi\251Mj\252Nj\252Nk\253Ol\254Ol\255" - "Pm\255Pm\256\202Qn\257\213Ro\260\3Qn\257Pm\256Ol\255\202\27""0g\15\27""0" - "f\30""0g\30""1g\31""1g\31""1h\32""2h\32""2i\33""2h\33""4j\33""3j\34""5l\35" - """5l\35""6m\202\36""7nX\37""8o\37""8p\40""9q\40:q!:r!;s\";s#<t#=u$=v$>w%" - "?x&@y'@z'A{(B|)C}*D~+D\177+E\200,F\200,G\201-H\201-H\202.I\203.J\203/J\204" - "0K\2050K\2061L\2061M\2072M\2102N\2103N\2113O\2124P\2124P\2135Q\2146Q\215" - "6R\2157R\2167S\2178T\2178T\2209U\2219U\222:V\222:W\223;W\224;X\224<X\225" - "=Y\226=Z\226>Z\227>[\230?[\231?\\\231@]\232@]\233A^\233B^\234B_\235C_\235" - "C`\236Da\237Da\240Eb\240Eb\241Fc\242Gd\242Hd\243Ie\244Ie\245Jf\245Jf\246" - "Kg\247Kh\247Lh\250Li\251Mj\251Mj\252Nk\253Ok\254Ol\254Pl\255Pm\256Qn\256" - "Qn\257\217Ro\2605\27""0g\27""1h\30""1i\31""2i\31""3j\32""3k\32""4k\33""4" - "l\33""5m\34""6n\35""6n\36""7o\36""7p\37""8p\40""9q\40""9r!:r!:s\";t\";u#" - "<u#=v$=w$>w%>x&?y&@z'@z'A{(A|(B|)C})C~*D~*D\177+E\200,E\200,G\200-H\201-" - "H\202.I\202.I\203/J\204/K\2050K\2050L\2061L\2072M\2072N\2103N\2113O\2114" - "O\2124P\213\2025Q\214\5""6R\2156R\2167S\2168S\2178T\220\2029U\221\17:V\222" - ":V\223;W\223;X\224<X\225<Y\225=Y\226>Z\227>[\230?[\230?\\\231@\\\232@]\232" - "A]\233A^\234\202B_\235\22C`\236D`\237Da\237Eb\240Eb\241Fc\242Gc\242Hd\243" - "He\244Ie\244If\245Jf\246Kg\246Kg\247Lh\250Li\251Mi\251Mj\252\202Nk\253\5" - "Ol\254Ol\255Pm\255Pm\256Qn\257\220Ro\260\12\27""1h\30""1h\30""2i\31""2j\31" - """3j\32""4k\33""4l\33""5m\34""5m\35""6n\202\36""7o\2\37""8p\37""8q\202\40" - """9r\1!:s\202\";t\10#<u#<v$=v$>w%>x%?y&?y&@z\202'A{\5(B|)B})C}*C~*D\177\202" - "+E\200\5,F\200,G\201-H\201.I\202.I\203\202/J\204\13""0K\2050L\2061L\2061" - "M\2072M\2102N\2103O\2114O\2124P\2135P\2135Q\214\2026R\215\2""7S\2167S\217" - "\2028T\220\22""9U\2219V\222:V\222;W\223;W\224<X\224<Y\225=Y\226=Z\227>Z\227" - ">[\230?\\\231@\\\231@]\232A]\233A^\234B^\234B_\235\202C`\236\5Da\237Da\240" - "Eb\241Fc\241Fc\242\202Hd\243\17Ie\244If\245Jf\245Jg\246Kg\247Kh\250Li\250" - "Mi\251Mj\252Nj\252Nk\253Ok\254Ol\255Pm\255Pm\256\202Qn\257\220Ro\260\17\30" - """1h\30""2i\31""2j\31""3j\32""3k\32""4l\33""5l\33""5m\34""6n\35""6n\36""7" - "o\37""7p\37""8q\40""9q\40""9r\202!:s\31\";t\"<u#<v$=v$=w%>x%?x&?y&@z'@z'" - "A{(B|(B})C}*C~*D\177+E\177+E\200,F\200,G\200-H\201-H\202.I\203.J\203/J\204" - "\2020K\205\17""1L\2061M\2072M\2102N\2103N\2113O\2124P\2124P\2135Q\2146Q\214" - "6R\2157R\2167S\2178T\2178T\220\2029U\221*:V\222:W\223;W\224<X\224<X\225=" - "Y\226=Z\226>Z\227>[\230?[\231?\\\231@]\232@]\233A^\233A^\234B_\235C_\235" - "C`\236Da\237Da\240Eb\240Eb\241Fc\242Gd\242Hd\243Ie\244Ie\245Jf\245Jg\246" - "Kg\247Kh\247Lh\250Li\251Mi\251Mj\252Nk\253Ok\254Ol\254Pl\255Pm\256Qn\256" - "Qn\257\220Ro\2604Qn\257\30""1i\31""2i\31""3j\32""3k\32""4k\33""4l\33""5m" - "\34""6m\35""6n\36""7o\36""7p\37""8p\40""9q\40""9r!:r!:s\";t\";u#<u#=v$=w" - "%>w%>x&?y&@y'@z'A{(A|(B|)B})C~*D~*D\177+E\200,E\200,F\200-H\201-H\202.I\202" - ".I\203/J\204/K\2050K\2050L\2061L\2072M\2072N\2103N\2113O\2124O\2124P\213" - "\2025Q\214\5""6R\2156R\2167S\2167S\2178T\220\2029U\221*:V\222:V\223;W\223" - ";X\224<X\225<Y\225=Y\226=Z\227>[\230?[\230?\\\231@\\\232@]\232A]\233A^\234" - "B_\234B_\235C`\236D`\237Da\237Eb\240Eb\241Fc\241Gc\242Hd\243He\244Ie\244" - "If\245Jf\246Kg\246Kh\247Lh\250Li\250Mi\251Mj\252Nj\253Nk\253Ol\254Ol\255" - "Pm\256Qm\256Qn\257\212Ro\260\2Qn\257Pm\256\202Ol\255\1Nk\254\203Mj\253\14" - "\30""2i\31""2j\31""3j\32""4k\32""4l\33""5m\34""5m\34""6n\36""6o\36""7o\37" - """8p\37""8q\202\40""9r\1!:s\202\";t\17#<u#<v$=v$>w%>x%?y&?y&@z'A{(A{(B|)" - "B})C}*D~*D\177\202+E\200\26,F\200,G\201-H\201-I\202.I\203/J\203/J\2040K\205" - "0L\2061L\2061M\2072M\2102N\2103N\2114O\2124P\2135P\2135Q\2146Q\2156R\215" - "7S\2167S\217\2028T\220\22""9U\2219V\222:V\222;W\223;W\224<X\224<Y\225=Y\226" - "=Z\227>Z\227>[\230?[\231@\\\231@]\232A]\233A^\234B^\234B_\235\202C`\236\5" - "Da\237Da\240Eb\241Fc\241Fc\242\202Hd\243\17Ie\244Ie\245Jf\245Jg\246Kg\247" - "Kh\250Li\250Li\251Mj\252Nj\252Nk\253Ok\254Ol\255Pm\255Pm\256\202Qn\257\203" - "Ro\260\2Qn\257Pm\256\202Ol\255\1Nk\254\212Mj\253\15\31""2i\31""3j\32""3k" - "\32""4l\33""5l\33""5m\34""6n\35""6n\36""7o\37""8p\37""8q\40""9q\40""9r\202" - "!:s*\";t\"<u#<u$=v$=w%>x%?x&?y&@z'@z'A{(B|(B})C}*C~*D\177+D\177+E\200,F\200" - ",G\201-H\201-H\202.I\203.J\203/J\204/K\2050K\2051L\2061M\2072M\2102N\210" - "3N\2113O\2124O\2124P\2135Q\2146Q\2146R\2157R\2167S\2178T\2178T\220\2029U" - "\221&:V\222:W\223;W\224;X\224<X\225=Y\226=Z\226>Z\227>[\230?[\230?\\\231" - "@\\\232@]\233A^\233A^\234B_\235C_\235C`\236Da\237Da\240Eb\240Eb\241Fc\242" - "Gd\242Hd\243He\244Ie\244Jf\245Jf\246Kg\247Kh\247Lh\250Li\251Mj\251Mj\252" - "Nk\253Nk\254Ol\254\202Ol\255\202Ol\254\2Ol\255Nk\254\221Mj\253\37\31""3j" - "\32""3k\32""4k\33""4l\33""5m\34""6m\35""6n8Kx8Ku=LnFUwIXzBRv5Go\";t\";u#" - "<u#=v$=w$>w%>x&?y&@y'@z'A{(A|(B|)C})C~*D~*D\177\202+E\200\20,F\200-H\201" - "-H\202.I\202.I\203/J\204/K\2040K\2050L\2061L\2071M\2072N\2103N\2113O\211" - "4O\2124P\213\2025Q\214\5""6R\2156R\2167S\2167S\2178T\220\2029U\221\30:V\222" - ":V\223;W\223;X\224<X\225<Y\225=Y\226=Z\227>Z\230?[\230?\\\231@\\\232@]\232" - "A]\233A^\234B_\234B_\235C`\236D`\237Da\237Eb\240Eb\241Fc\241Gc\242\202Hd" - "\243\5Ie\244If\245Jf\246Jg\246Kh\247\203Lh\250\204Kh\250\4Kg\250Kh\250Kh" - "\251Li\252\224Mj\253\27\31""3j\32""4k\32""4l\33""5m\34""5m\35""6n\36""7o" - ">Py5JwAT\177>Q}>Q~BT~<P}\";t#<u#<v$=v$>w%>x%?y&?y&@z\202'A{\5(B|)B})C}*C" - "~*D\177\202+E\200\5,F\200,G\201-H\201.I\202.I\203\202/J\204\22""0K\2050L" - "\2061L\2061M\2072M\2102N\2103N\2113O\2124P\2135P\2135Q\2146Q\2156R\2157S" - "\2167S\2178T\2178T\2209U\221\202:V\222\17;W\223;W\224<X\224<Y\225=Y\226=" - "Z\227>Z\227>[\230?[\231?\\\231@]\232A]\233A^\234B^\234B_\235\202C`\236\7" - "Da\237Da\240Eb\240Ec\241Fc\242Gd\243Hd\243\203Hd\244\202Hd\243\12Gd\244G" - "d\243Gd\244He\245Ie\245If\246Jf\247Jg\250Kh\250Kh\251\202Li\252\224Mj\253" - "\13\32""3k\32""4l\33""5l\33""5m\34""6n\35""6n\36""7o\37""7p\37""8q\40""8" - "p\40""9r\202!:s#\";t\"<u#<u#=v$=w%>x%?x&?y&@z'@z'A{(B|(B})C})C~*D\177+D\177" - "+E\200,F\200,G\200-H\201-H\202.I\203.J\203/J\204/K\2050K\2051L\2061M\207" - "2M\2102N\2103N\2113O\2124P\2124P\213\2025Q\214\5""6R\2157R\2167S\2178T\217" - "8T\220\2029U\221\5:V\222:W\223;W\224;X\224<X\225\202=Y\226\13>Z\227>[\230" - "?[\230?\\\231@\\\232@]\233A^\233A^\234B_\235C_\235C`\236\203Da\237\202D`" - "\237\204E`\237\17Ea\240Eb\241Fb\242Fc\242Gc\243Gd\244Hd\244He\245If\246I" - "f\247Jg\247Kg\250Kh\251Li\251Li\252\224Mj\253\36Nk\254\32""4k\33""4l\33""5" - "m\34""5m\35""6n\36""7o\36""7p\37""8pox\214\234\234\235Ybwft\222Vh\201\";" - "u#<u#=v$=w$>w%>x%?y&@y'@z'A{(A|(B|)C})C~*D~*D\177\202+E\200\20,F\200-H\201" - "-H\202.I\202.I\203/J\204/K\2040K\2050L\2061L\2071M\2072N\2103N\2113O\211" - "4O\2124P\213\2025Q\214\27""6R\2156R\2167S\2167S\2178T\2209U\2209U\221:V\222" - ":V\223;W\223;X\224<X\225<Y\225=Y\226=Z\227>Z\227?[\230?\\\231@\\\232@]\232" - "A]\233@]\232A]\232\202A\\\232\30A\\\233A\\\232A]\233B]\234C^\234C^\235D_" - "\236D`\237E`\237Ea\240Ea\241Eb\241Fb\242Gc\243Gd\243Hd\244He\245Ie\246If" - "\246Jg\247Jg\250Kh\250Lh\251Li\252\216Mj\253\1Nk\254\202Ol\255\1Pm\256\202" - "Qn\257\202Ro\260\34\33""4l\33""5m\34""5m\35""6n\36""6o\36""7o\37""8p\37""8" - "q{\203\227\247\304\331\271\302\311\310\313\311\207\215\231#<u#<v$=v$>w%>" - "x%?x&?y&@z'@{'A{(B|)B})C}*D~*D\177\202+E\200\26,F\200,G\201-H\201-I\202." - "I\203/J\203/J\2040K\2050L\2061L\2061M\2072M\2102N\2103N\2113O\2124P\2135" - "P\2135Q\2146Q\2156R\2157S\2167S\217\2028T\220\7""9U\2219V\222:V\222;W\223" - ";W\224<X\224<X\225\207=Y\226\4>X\226>Y\227?Y\227?Z\230\202@[\231\5A\\\232" - "A\\\233B]\233B^\234C^\235\202D_\236\1E`\237\202Ea\240\14Eb\241Fb\242Fc\242" - "Gc\243Gd\244He\245Ie\245If\246Jf\247Jg\247Kh\250Kh\251\202Li\252\206Mj\253" - "\1Nk\254\202Ol\255\1Pm\256\202Qn\257\212Ro\260$\33""4l\33""5m\34""6n\35""6" - "n\36""7o\37""8p\37""8q\40""9qmy\222\215\301\345\236\310\350\302\314\324\177" - "\207\234#<u#=v$=w%>x%?x&?y&@z'@z'A{(B|(B})C})C~*D\177+D\177+E\200,F\200," - "G\200-H\201-H\202.I\203.J\203/J\204\2020K\205\10""1L\2061M\2072M\2072N\210" - "3N\2113O\2124O\2124P\213\2025Q\214\5""6R\2157R\2167S\2178T\2178T\220\204" - "9U\221\205:U\221\34;U\222;V\223<V\223<W\224=W\225=X\226>Y\226>Y\227?Z\230" - "@Z\230@[\231A\\\232A\\\233B]\233B]\234C^\235C_\235D_\236D`\237E`\237Ea\240" - "Ea\241Fb\242Fc\242Gc\243Gd\244Hd\244He\245\202If\246\7Jg\247Kg\250Kh\251" - "Li\252Mj\253Nk\254Ol\255\202Pm\256\1Qn\257\222Ro\260\33\33""5m\34""5m\35" - """6n\36""7o\36""7p\37""8p\37""8q\40""9rGX\200\203\222\247\227\260\304\213" - "\232\254$<s#=v$=w$>w%>x%?y&?z'@z'A{(A{(B|)B})C~*D~*D\177\202+E\200\22,F\200" - "-H\201-H\202.I\202.I\203/J\204/K\2050K\2050L\2061L\2071M\2072M\2103N\211" - "3O\2114O\2124P\2135P\2135Q\214\2076Q\215+7Q\2157Q\2168R\2168R\2179S\2209" - "T\220:T\221:U\222;V\223<V\223<W\224=W\225=X\225>X\226>Y\227?Z\227?Z\230@" - "[\231@[\232A\\\232B\\\233B]\234C^\234C^\235D_\236D`\237E`\237Ea\240Ea\241" - "Eb\241Fb\242Gc\243Gd\243Hd\244If\246Jg\247Kh\250Mi\252Nj\253Ol\254Pm\256" - "Qn\257Rn\260\227Ro\260\32\34""5m\34""6n\36""6o\36""7o\37""8p\37""8q\40""9" - "q\40""9r!:s!;t\":p*@r#<v$=v$>w%>x%?y&?y&@z'@{'A{(B|)B})C}*C~*D\177\202+E" - "\200\5,F\200,G\201-H\201-I\202.I\203\202/J\204\11""0K\2050K\2061L\2061M\207" - "2M\2102N\2103N\2102N\2103N\210\2043M\210\26""4N\2114N\2125O\2125O\2136P\214" - "6Q\2157Q\2158R\2168R\2179S\2209T\220:T\221:U\222;U\222;V\223<V\224<W\224" - "=X\225>X\226>Y\226?Y\227?Z\230\202@[\231\5A\\\232A\\\233B]\233B^\234C^\235" - "\202D_\236\17E`\237Fa\240Fb\242Gd\243Ie\244Jf\246Kg\247Li\250Mj\252Nj\252" - "Nk\253Ok\254Ol\254Pm\255Pm\256\202Qn\257\230Ro\260\7\34""6n\35""6n\36""7" - "o\37""7p\37""8p\40""9q\40""9r\202!:s\30\";t\"<u#<u#=v$=w$>x%>x&?y&@z'@z'" - "A{(B|(B})C})C~*D\177+D\177+E\200,F\200,G\200-H\201-H\202.I\203.J\203\205" - "/J\204\2030I\204\3""0J\2051K\2051K\206\2022L\207\5""3M\2103M\2114N\2115O" - "\2125O\213\2026P\214\5""7Q\2157Q\2168R\2178S\2179S\220\202:T\221\34;U\222" - ";V\223<V\223<W\224=W\225=X\226>Y\226>Y\227?Z\230@Z\230@[\231A\\\232B]\233" - "C^\235C_\236Ea\237Fb\241Gc\242Hd\243Ie\244Jf\245Jf\246Kg\247Kh\247Lh\250" - "Li\251Mi\251Mj\252\202Nk\253\5Ol\254Pl\255Pm\256Qn\256Qn\257\231Ro\260\10" - "\35""6n\36""7o\36""7p\37""8p\37""8q\40""9r!:r!:s\202\";t\5#<u#=v$=w$>w%>" - "x\202&?y\10'@z'A{(A{(B|)B})C~*D~*D\177\202+E\200\1+F\200\206,F\200;-F\200" - "-G\201.G\202.H\202/H\203/I\2040J\2041J\2051K\2062K\2062L\2073M\2103M\211" - "4N\2114N\2125O\2136P\2136P\2147Q\2157Q\2168R\2168S\2179S\2209T\220:T\221" - ":U\222;U\222<V\223<W\224=W\225>Y\226?Z\227?[\231@\\\232A]\233B_\235C`\236" - "Da\237Eb\240Eb\241Fc\241Gc\242Hd\243He\243Ie\244If\245Jf\246Jg\246Kg\247" - "Lh\250Li\250Mi\251Mj\252Nj\252Nk\253Ol\254Ol\255Pm\255Pm\256\202Qn\257\231" - "Ro\260\23\36""6o\36""7o\37""8p\37""8q\40""9q\40""9r!:s!;s\";t#<u#<v$=v$>" - "w%>x%?x&?y&@z'@{'A{\205(B|\1)B|\202)C|))C}*D}*E~+E\177,E\177,E\200-F\200" - "-F\201.G\201.H\202/H\203/I\2030I\2040J\2051K\2052K\2062L\2073L\2103M\210" - "4N\2114N\2125O\2125O\2136P\2146Q\2157Q\2158R\2168S\2179T\221:U\222;V\223" - "<W\224=X\225=Z\227>[\230?\\\231@]\232A]\233A^\233B^\234B_\235\202C`\236\17" - "Da\237Da\240Eb\240Eb\241Fc\242Gd\243Hd\243Ie\244Ie\245Jf\245Jg\246Kg\247" - "Kh\247Lh\250Li\251\202Mj\252\5Nk\253Ok\254Ol\254Pl\255Pm\256\202Qn\257\232" - "Ro\260\5\36""7o\37""7p\37""8p\40""9q\40""9r\202!:s\6\";t\"<u#<u#=v$=w$>w" - "\204%>w\203%?w\5&@x&@y'Az(Az(B{\202)C|\2*D}*D~\202+E\177&,E\200,F\200-F\200" - ".G\201.G\202/H\202/I\2030I\2040J\2051J\2051K\2062L\2073M\2103N\2114O\212" - "5P\2136Q\2157R\2168S\2178T\2209U\221:V\223;W\223;X\224<X\225<Y\226=Y\226" - ">Z\227>[\230?[\230?\\\231@\\\232@]\233A^\233A^\234B_\235C_\235C`\236\202" - "Da\237\26Eb\240Eb\241Fc\242Gc\242Hd\243He\244Ie\244If\245Jg\246Kg\247Kh\247" - "Lh\250Li\251Mi\251Mj\252Nk\253Nk\254Ol\254Ol\255Pm\256Qm\256Qn\257\233Ro" - "\260\5$<r%=r%=s&>t'?t\205'?u\23(@u'@u(@u(Av)Aw)Bw*Bx+Cy+Dy,Dz,Ez-E{-F|.F" - "}.G}/G~/H\1770H\1770I\200\2021I\200\33""2J\2012J\2023K\2034L\2044M\2055N" - "\2066O\2077P\2108Q\2119S\2139T\214:U\215;U\216;V\216<V\217<W\220=X\220=X" - "\221>Y\222>Y\223?Z\223@Z\224@[\224A[\225A\\\226B\\\226B]\227\202C^\230\2" - "D_\231D_\232\202E`\233\12Fa\234Fb\234Gb\235Gc\236Hc\237Hd\237Ie\240Ie\241" - "Jf\241Kf\242\202Lg\243\7Mh\244Mh\245Ni\245Nj\246Oj\247Ok\247Pk\250\202Ql" - "\251\10Rm\252Rn\253Sn\253So\254To\255Tp\255Up\256Uq\257\233Vq\257\6\340\340" - "\340\330\325\325\322\312\312\335\335\335\316\316\316\305\305\305\202\325" - "\325\325\31\320\320\320\324\324\324\326\326\326\324\324\324\340\340\340\335" - "\335\335\324\324\324\325\325\325\326\326\326\324\324\324\331\331\331\337" - "\337\337\277\303\307\301\301\305\333\332\331\317\305\263\323\317\310\333" - "\332\327\306\304\305\311\312\313\327\327\330\266\303\320\326\326\326\301" - "\306\316\252\254\273\302\340\340\340\3\334\334\334\340\340\340\334\334\334" - "\202\325\325\325\6\331\331\331\323\323\323\277\277\277\320\320\320\317\317" - "\317\327\327\327\202\334\334\334*\325\325\325\334\334\334\331\331\331\333" - "\333\333\340\340\340\307\307\307\315\315\315\340\340\340\336\332\332\265" - "<6\262US\315\315\315\225\225\225\242\242\242\214\214\214\273\273\273\225" - "\225\225\251\251\251\231\231\231\263\263\263\345\345\345\261\261\261\247" - "\247\247\242\242\242\254\254\254\237\237\237\311\311\311\266\277\305u\232" - "\225\204\214\235\320\301\251\264\247\202\300\276\262\277\276\274\312\312" - "\315\321\321\321\270\270\277\210\235\252\277\301\312\227\265\322\252\242" - "\235\330\330\330\301\345\345\345\10\342\342\342\344\344\344\267\267\267\237" - "\237\237\301\301\301\226\226\226\257\257\257\254\254\254\202\270\270\270" - "\12\342\342\342\274\274\274\275\275\275\223\223\223\264\264\264\213\213\213" - "\204\204\204\343\343\343\234\234\234\265\265\265\202\345\345\345\6\334\313" - "\312\336\327\326\345\345\345\342\342\342\345\345\345\340\340\340\202\345" - "\345\345\1\343\343\343\203\345\345\345\3\342\342\342\345\345\345\343\343" - "\343\203\345\345\345\17\320\322\322\254\312\311\271\305\325\334\334\333\276" - "\306\312\331\332\331\327\327\327\311\311\311\340\340\340\310\310\317\251" - "\260\266\320\321\330\325\326\327\316\322\324\341\341\341\301\345\345\345" - "\3\341\341\341\344\344\344\330\330\330\202\345\345\345\1\342\342\342\202" - "\345\345\345\202\337\337\337\13\345\345\345\334\334\334\343\343\343\336\336" - "\336\345\345\345\340\340\340\341\341\341\345\345\345\310\310\310\307\307" - "\307\345\345\345", -}; - diff --git a/src/image_data/rotation_orientation_horz_pixdata.h b/src/image_data/rotation_orientation_horz_pixdata.h new file mode 100644 index 0000000..d346355 --- /dev/null +++ b/src/image_data/rotation_orientation_horz_pixdata.h @@ -0,0 +1,2304 @@ +/* GdkPixbuf RGBA C-Source image dump 1-byte-run-length-encoded */ + +static guint8 rotation_orientation_horz_pixdata_pixel_data[] = { + 0x03,0x00,0x00,0x00,0xff,0x05,0x05,0x05,0xff,0x05,0x04,0x04,0xff,0x91,0x05, + 0x05,0x05,0xff,0x05,0x04,0x05,0x05,0xff,0x04,0x04,0x04,0xff,0x04,0x04,0x05, + 0xff,0x05,0x05,0x05,0xff,0x04,0x05,0x05,0xff,0x84,0x05,0x05,0x05,0xff,0x82, + 0x04,0x04,0x04,0xff,0xd5,0x05,0x05,0x05,0xff,0x82,0x04,0x04,0x04,0xff,0x0b, + 0x05,0x05,0x05,0xff,0x00,0x00,0x00,0xff,0x04,0x04,0x04,0xff,0xe5,0xe4,0xe4, + 0xff,0xdb,0xc6,0xc5,0xff,0xde,0xd4,0xd3,0xff,0xe5,0xe5,0xe5,0xff,0xe0,0xe0, + 0xe0,0xff,0xe2,0xe2,0xe2,0xff,0xde,0xde,0xde,0xff,0xe4,0xe4,0xe4,0xff,0x82, + 0xe2,0xe2,0xe2,0xff,0x18,0xe3,0xe3,0xe3,0xff,0xe4,0xe4,0xe4,0xff,0xe5,0xe5, + 0xe5,0xff,0xe1,0xe1,0xe1,0xff,0xe3,0xe3,0xe3,0xff,0xe2,0xe2,0xe2,0xff,0xe3, + 0xe3,0xe3,0xff,0xe4,0xe4,0xe4,0xff,0xde,0xdf,0xdf,0xff,0xc3,0xcf,0xcf,0xff, + 0xaf,0xc7,0xcc,0xff,0xc6,0xcd,0xd6,0xff,0xd1,0xd3,0xd3,0xff,0xc9,0xce,0xcf, + 0xff,0xd8,0xd9,0xd8,0xff,0xd1,0xd1,0xd1,0xff,0xd4,0xd4,0xd4,0xff,0xd5,0xd5, + 0xd8,0xff,0xb9,0xbc,0xc3,0xff,0xbd,0xc1,0xc8,0xff,0xd2,0xd4,0xd8,0xff,0xd0, + 0xd3,0xd5,0xff,0xd9,0xda,0xdb,0xff,0xe4,0xe4,0xe4,0xff,0xbf,0xe6,0xe6,0xe6, + 0xff,0x0f,0xe3,0xe3,0xe3,0xff,0xe4,0xe4,0xe4,0xff,0xdc,0xdc,0xdc,0xff,0xdf, + 0xdf,0xdf,0xff,0xe4,0xe4,0xe4,0xff,0xe1,0xe1,0xe1,0xff,0xe3,0xe3,0xe3,0xff, + 0xe4,0xe4,0xe4,0xff,0xe0,0xe0,0xe0,0xff,0xde,0xde,0xde,0xff,0xe4,0xe4,0xe4, + 0xff,0xdd,0xdd,0xdd,0xff,0xe1,0xe1,0xe1,0xff,0xdd,0xdd,0xdd,0xff,0xe3,0xe3, + 0xe3,0xff,0x82,0xde,0xde,0xde,0xff,0x04,0xe5,0xe5,0xe5,0xff,0xc9,0xc9,0xc9, + 0xff,0xc7,0xc7,0xc7,0xff,0xe5,0xe5,0xe5,0xff,0x82,0x04,0x04,0x04,0xff,0x22, + 0xde,0xd6,0xd6,0xff,0xb8,0x47,0x42,0xff,0xb7,0x64,0x62,0xff,0xcb,0xcb,0xcb, + 0xff,0x9b,0x9b,0x9b,0xff,0xa3,0xa3,0xa3,0xff,0x98,0x98,0x98,0xff,0xb8,0xb8, + 0xb8,0xff,0x9d,0x9d,0x9d,0xff,0xaa,0xaa,0xaa,0xff,0xa3,0xa3,0xa3,0xff,0xc0, + 0xc0,0xc0,0xff,0xda,0xda,0xda,0xff,0xb2,0xb2,0xb2,0xff,0xaa,0xaa,0xaa,0xff, + 0xa9,0xa9,0xa9,0xff,0xac,0xac,0xac,0xff,0xb0,0xb0,0xb0,0xff,0xc5,0xc8,0xca, + 0xff,0xa4,0xb6,0xb8,0xff,0x7f,0x99,0x9c,0xff,0xa4,0xa4,0xa5,0xff,0xc7,0xba, + 0x9e,0xff,0xbb,0xb3,0x99,0xff,0xc2,0xc0,0xb9,0xff,0xc6,0xc5,0xc5,0xff,0xce, + 0xce,0xcf,0xff,0xc7,0xc7,0xca,0xff,0xa4,0xae,0xb8,0xff,0xa7,0xb2,0xbd,0xff, + 0xad,0xbd,0xcf,0xff,0xa4,0xad,0xb7,0xff,0xc5,0xc2,0xc0,0xff,0xe0,0xe0,0xe0, + 0xff,0xbf,0xe6,0xe6,0xe6,0xff,0x82,0xe4,0xe4,0xe4,0xff,0x36,0xc8,0xc8,0xc8, + 0xff,0xab,0xab,0xab,0xff,0xba,0xba,0xba,0xff,0xa6,0xa6,0xa6,0xff,0xac,0xac, + 0xac,0xff,0xaf,0xaf,0xaf,0xff,0xb8,0xb8,0xb8,0xff,0xbb,0xbb,0xbb,0xff,0xda, + 0xda,0xda,0xff,0xc5,0xc5,0xc5,0xff,0xc0,0xc0,0xc0,0xff,0x9e,0x9e,0x9e,0xff, + 0xb4,0xb4,0xb4,0xff,0x96,0x96,0x96,0xff,0x8b,0x8b,0x8b,0xff,0xdc,0xdc,0xdc, + 0xff,0xa4,0xa4,0xa4,0xff,0xb6,0xb6,0xb6,0xff,0xe4,0xe4,0xe4,0xff,0x04,0x04, + 0x04,0xff,0x03,0x03,0x04,0xff,0xd0,0xd2,0xd7,0xff,0xc9,0xc8,0xcd,0xff,0xc5, + 0xc0,0xc4,0xff,0xcd,0xcf,0xd4,0xff,0xc0,0xc2,0xc6,0xff,0xba,0xbc,0xc1,0xff, + 0xc7,0xc9,0xce,0xff,0xc6,0xc8,0xcd,0xff,0xc3,0xc5,0xca,0xff,0xc6,0xc8,0xcd, + 0xff,0xc7,0xca,0xce,0xff,0xc8,0xca,0xcf,0xff,0xd0,0xd2,0xd7,0xff,0xcc,0xce, + 0xd3,0xff,0xc6,0xc8,0xcd,0xff,0xc7,0xc9,0xce,0xff,0xc7,0xca,0xce,0xff,0xc8, + 0xca,0xce,0xff,0xcd,0xcf,0xd3,0xff,0xc6,0xca,0xd0,0xff,0xb4,0xb8,0xc1,0xff, + 0xbe,0xc0,0xc6,0xff,0xc9,0xc6,0xc4,0xff,0xc3,0xbf,0xb7,0xff,0xc9,0xc8,0xc8, + 0xff,0xc4,0xc5,0xc9,0xff,0xbb,0xbd,0xc2,0xff,0xc3,0xc5,0xcb,0xff,0xbb,0xc3, + 0xce,0xff,0xba,0xc2,0xcd,0xff,0xbf,0xc3,0xcc,0xff,0xaa,0xaf,0xbf,0xff,0xbc, + 0xbf,0xca,0xff,0x86,0xd2,0xd4,0xd9,0xff,0x83,0xd2,0xd5,0xda,0xff,0x8c,0xd3, + 0xd5,0xda,0xff,0x82,0xd3,0xd5,0xdb,0xff,0x87,0xd3,0xd6,0xdb,0xff,0x87,0xd4, + 0xd6,0xdb,0xff,0x86,0xd4,0xd6,0xdc,0xff,0x87,0xd4,0xd7,0xdc,0xff,0x84,0xd5, + 0xd7,0xdc,0xff,0x8a,0xd5,0xd7,0xdd,0xff,0x1c,0xd3,0xd5,0xda,0xff,0xd4,0xd6, + 0xdb,0xff,0xd2,0xd5,0xda,0xff,0xcd,0xcf,0xd5,0xff,0xcb,0xcd,0xd3,0xff,0xce, + 0xd0,0xd5,0xff,0xca,0xcd,0xd2,0xff,0xbb,0xbe,0xc3,0xff,0xc3,0xc5,0xcb,0xff, + 0xc6,0xc8,0xcd,0xff,0xcb,0xce,0xd3,0xff,0xd0,0xd3,0xd8,0xff,0xd1,0xd4,0xd9, + 0xff,0xcc,0xce,0xd4,0xff,0xd0,0xd3,0xd8,0xff,0xcf,0xd1,0xd7,0xff,0xd0,0xd3, + 0xd8,0xff,0xd5,0xd7,0xdc,0xff,0xc0,0xc2,0xc7,0xff,0xc3,0xc6,0xcb,0xff,0xd4, + 0xd7,0xdc,0xff,0x03,0x04,0x04,0xff,0x01,0x01,0x02,0xff,0x23,0x3b,0x72,0xff, + 0x24,0x3c,0x72,0xff,0x24,0x3d,0x73,0xff,0x25,0x3e,0x74,0xff,0x26,0x3e,0x74, + 0xff,0x82,0x26,0x3e,0x75,0xff,0x82,0x26,0x3f,0x75,0xff,0x01,0x27,0x3f,0x75, + 0xff,0x82,0x27,0x40,0x75,0xff,0x0e,0x28,0x40,0x75,0xff,0x28,0x41,0x76,0xff, + 0x29,0x41,0x77,0xff,0x29,0x42,0x77,0xff,0x2a,0x42,0x78,0xff,0x2a,0x43,0x79, + 0xff,0x2b,0x43,0x79,0xff,0x2b,0x44,0x7a,0xff,0x2c,0x44,0x7a,0xff,0x2c,0x45, + 0x7b,0xff,0x2d,0x45,0x7c,0xff,0x2d,0x46,0x7d,0xff,0x2e,0x47,0x7d,0xff,0x2e, + 0x47,0x7e,0xff,0x82,0x2f,0x48,0x7f,0xff,0x12,0x30,0x49,0x80,0xff,0x30,0x49, + 0x81,0xff,0x31,0x49,0x81,0xff,0x31,0x4a,0x82,0xff,0x32,0x4a,0x83,0xff,0x33, + 0x4b,0x84,0xff,0x33,0x4c,0x85,0xff,0x34,0x4d,0x86,0xff,0x35,0x4e,0x87,0xff, + 0x36,0x4f,0x88,0xff,0x37,0x50,0x89,0xff,0x38,0x51,0x8b,0xff,0x38,0x53,0x8c, + 0xff,0x39,0x54,0x8d,0xff,0x3a,0x54,0x8e,0xff,0x3a,0x55,0x8e,0xff,0x3b,0x55, + 0x8f,0xff,0x3b,0x56,0x90,0xff,0x82,0x3c,0x57,0x91,0xff,0x03,0x3d,0x58,0x92, + 0xff,0x3d,0x58,0x94,0xff,0x3e,0x59,0x94,0xff,0x82,0x3f,0x5a,0x95,0xff,0x04, + 0x40,0x5b,0x96,0xff,0x40,0x5b,0x97,0xff,0x41,0x5c,0x97,0xff,0x41,0x5d,0x98, + 0xff,0x82,0x42,0x5e,0x99,0xff,0x21,0x43,0x5f,0x9a,0xff,0x43,0x5f,0x9b,0xff, + 0x44,0x60,0x9c,0xff,0x45,0x60,0x9c,0xff,0x45,0x61,0x9d,0xff,0x46,0x62,0x9d, + 0xff,0x46,0x62,0x9e,0xff,0x47,0x63,0x9f,0xff,0x47,0x63,0xa0,0xff,0x48,0x64, + 0xa0,0xff,0x48,0x65,0xa1,0xff,0x49,0x65,0xa2,0xff,0x4a,0x66,0xa2,0xff,0x4b, + 0x66,0xa3,0xff,0x4b,0x67,0xa4,0xff,0x4c,0x67,0xa4,0xff,0x4c,0x68,0xa5,0xff, + 0x4d,0x68,0xa6,0xff,0x4d,0x69,0xa6,0xff,0x4e,0x6a,0xa7,0xff,0x4f,0x6a,0xa8, + 0xff,0x4f,0x6b,0xa8,0xff,0x50,0x6b,0xa9,0xff,0x50,0x6c,0xaa,0xff,0x51,0x6c, + 0xaa,0xff,0x52,0x6d,0xab,0xff,0x52,0x6e,0xac,0xff,0x53,0x6e,0xad,0xff,0x53, + 0x6f,0xad,0xff,0x54,0x6f,0xae,0xff,0x54,0x70,0xaf,0xff,0x55,0x70,0xb0,0xff, + 0x55,0x71,0xb0,0xff,0x9a,0x56,0x71,0xb0,0xff,0x07,0x01,0x02,0x03,0xff,0x00, + 0x01,0x02,0xff,0x1e,0x37,0x6f,0xff,0x1f,0x37,0x70,0xff,0x1f,0x38,0x70,0xff, + 0x20,0x39,0x71,0xff,0x20,0x39,0x72,0xff,0x82,0x21,0x3a,0x73,0xff,0x06,0x22, + 0x3b,0x74,0xff,0x22,0x3c,0x75,0xff,0x23,0x3c,0x75,0xff,0x23,0x3d,0x76,0xff, + 0x24,0x3d,0x77,0xff,0x24,0x3e,0x77,0xff,0x83,0x25,0x3e,0x77,0xff,0x01,0x25, + 0x3f,0x77,0xff,0x82,0x25,0x3f,0x78,0xff,0x02,0x26,0x40,0x78,0xff,0x26,0x40, + 0x79,0xff,0x82,0x27,0x41,0x7a,0xff,0x02,0x28,0x41,0x7b,0xff,0x29,0x42,0x7c, + 0xff,0x82,0x29,0x43,0x7c,0xff,0x29,0x2a,0x44,0x7d,0xff,0x2a,0x44,0x7e,0xff, + 0x2b,0x45,0x7f,0xff,0x2c,0x45,0x7f,0xff,0x2c,0x45,0x80,0xff,0x2d,0x46,0x81, + 0xff,0x2d,0x46,0x82,0xff,0x2e,0x47,0x83,0xff,0x2f,0x48,0x83,0xff,0x2f,0x49, + 0x84,0xff,0x30,0x49,0x85,0xff,0x30,0x4a,0x86,0xff,0x31,0x4a,0x86,0xff,0x31, + 0x4b,0x87,0xff,0x32,0x4c,0x88,0xff,0x33,0x4d,0x89,0xff,0x33,0x4e,0x8a,0xff, + 0x34,0x4e,0x8b,0xff,0x35,0x50,0x8c,0xff,0x36,0x50,0x8d,0xff,0x37,0x51,0x8e, + 0xff,0x37,0x52,0x8f,0xff,0x38,0x53,0x90,0xff,0x38,0x54,0x91,0xff,0x39,0x55, + 0x93,0xff,0x3a,0x56,0x93,0xff,0x3b,0x57,0x94,0xff,0x3c,0x57,0x95,0xff,0x3c, + 0x58,0x96,0xff,0x3d,0x59,0x97,0xff,0x3e,0x5a,0x98,0xff,0x3e,0x5b,0x99,0xff, + 0x3f,0x5b,0x99,0xff,0x3f,0x5c,0x9a,0xff,0x40,0x5c,0x9b,0xff,0x40,0x5d,0x9c, + 0xff,0x41,0x5e,0x9c,0xff,0x41,0x5e,0x9d,0xff,0x42,0x5f,0x9e,0xff,0x43,0x5f, + 0x9e,0xff,0x43,0x60,0x9f,0xff,0x82,0x44,0x61,0xa0,0xff,0x14,0x45,0x62,0xa1, + 0xff,0x45,0x62,0xa2,0xff,0x46,0x63,0xa3,0xff,0x47,0x63,0xa3,0xff,0x48,0x64, + 0xa4,0xff,0x48,0x65,0xa5,0xff,0x49,0x65,0xa5,0xff,0x49,0x66,0xa6,0xff,0x4a, + 0x67,0xa7,0xff,0x4b,0x67,0xa8,0xff,0x4b,0x68,0xa8,0xff,0x4c,0x68,0xa9,0xff, + 0x4c,0x69,0xaa,0xff,0x4d,0x69,0xaa,0xff,0x4d,0x6a,0xab,0xff,0x4e,0x6b,0xac, + 0xff,0x4e,0x6b,0xad,0xff,0x4f,0x6c,0xad,0xff,0x4f,0x6c,0xae,0xff,0x50,0x6d, + 0xaf,0xff,0x82,0x51,0x6e,0xb0,0xff,0x9a,0x52,0x6f,0xb1,0xff,0x15,0x01,0x02, + 0x03,0xff,0x00,0x01,0x02,0xff,0x1e,0x36,0x6f,0xff,0x1e,0x37,0x6f,0xff,0x1f, + 0x38,0x70,0xff,0x1f,0x38,0x71,0xff,0x20,0x39,0x71,0xff,0x20,0x39,0x72,0xff, + 0x21,0x3a,0x73,0xff,0x21,0x3b,0x73,0xff,0x22,0x3b,0x74,0xff,0x23,0x3c,0x75, + 0xff,0x23,0x3c,0x76,0xff,0x24,0x3d,0x76,0xff,0x24,0x3e,0x77,0xff,0x25,0x3e, + 0x78,0xff,0x25,0x3f,0x78,0xff,0x26,0x3f,0x79,0xff,0x26,0x40,0x7a,0xff,0x27, + 0x40,0x7b,0xff,0x27,0x41,0x7b,0xff,0x84,0x28,0x42,0x7c,0xff,0x01,0x29,0x42, + 0x7c,0xff,0x83,0x29,0x43,0x7d,0xff,0x28,0x2a,0x44,0x7d,0xff,0x2a,0x45,0x7e, + 0xff,0x2b,0x45,0x7f,0xff,0x2c,0x45,0x7f,0xff,0x2c,0x45,0x80,0xff,0x2c,0x46, + 0x81,0xff,0x2d,0x46,0x81,0xff,0x2e,0x47,0x82,0xff,0x2e,0x48,0x83,0xff,0x2f, + 0x48,0x84,0xff,0x2f,0x49,0x84,0xff,0x30,0x49,0x85,0xff,0x30,0x4a,0x86,0xff, + 0x31,0x4b,0x86,0xff,0x32,0x4b,0x87,0xff,0x32,0x4c,0x88,0xff,0x33,0x4c,0x89, + 0xff,0x33,0x4d,0x89,0xff,0x34,0x4e,0x8a,0xff,0x34,0x4e,0x8b,0xff,0x35,0x4f, + 0x8b,0xff,0x35,0x4f,0x8c,0xff,0x36,0x50,0x8d,0xff,0x36,0x51,0x8e,0xff,0x37, + 0x51,0x8e,0xff,0x38,0x52,0x8f,0xff,0x38,0x53,0x90,0xff,0x39,0x54,0x92,0xff, + 0x3a,0x55,0x93,0xff,0x3b,0x56,0x94,0xff,0x3c,0x57,0x95,0xff,0x3d,0x58,0x96, + 0xff,0x3d,0x59,0x97,0xff,0x3e,0x5a,0x98,0xff,0x3f,0x5b,0x99,0xff,0x40,0x5c, + 0x9a,0xff,0x41,0x5c,0x9b,0xff,0x41,0x5d,0x9c,0xff,0x42,0x5e,0x9d,0xff,0x42, + 0x5f,0x9e,0xff,0x82,0x43,0x60,0x9f,0xff,0x0f,0x44,0x61,0xa0,0xff,0x44,0x61, + 0xa1,0xff,0x45,0x62,0xa1,0xff,0x45,0x62,0xa2,0xff,0x46,0x63,0xa3,0xff,0x47, + 0x64,0xa4,0xff,0x48,0x64,0xa4,0xff,0x49,0x65,0xa5,0xff,0x49,0x65,0xa6,0xff, + 0x4a,0x66,0xa6,0xff,0x4a,0x67,0xa7,0xff,0x4b,0x67,0xa8,0xff,0x4b,0x68,0xa8, + 0xff,0x4c,0x68,0xa9,0xff,0x4c,0x69,0xaa,0xff,0x82,0x4d,0x6a,0xab,0xff,0x05, + 0x4e,0x6b,0xac,0xff,0x4f,0x6b,0xad,0xff,0x4f,0x6c,0xad,0xff,0x50,0x6d,0xae, + 0xff,0x50,0x6d,0xaf,0xff,0x82,0x51,0x6e,0xb0,0xff,0x99,0x52,0x6f,0xb1,0xff, + 0x0a,0x01,0x02,0x03,0xff,0x00,0x01,0x02,0xff,0x1d,0x36,0x6e,0xff,0x1e,0x37, + 0x6f,0xff,0x1e,0x37,0x70,0xff,0x1f,0x38,0x70,0xff,0x1f,0x38,0x71,0xff,0x20, + 0x39,0x72,0xff,0x21,0x3a,0x72,0xff,0x21,0x3a,0x73,0xff,0x82,0x22,0x3b,0x74, + 0xff,0x05,0x23,0x3c,0x75,0xff,0x23,0x3d,0x76,0xff,0x24,0x3d,0x77,0xff,0x24, + 0x3e,0x77,0xff,0x25,0x3e,0x78,0xff,0x82,0x26,0x3f,0x79,0xff,0x08,0x27,0x40, + 0x7a,0xff,0x27,0x41,0x7b,0xff,0x28,0x41,0x7b,0xff,0x28,0x42,0x7c,0xff,0x29, + 0x42,0x7d,0xff,0x29,0x43,0x7e,0xff,0x2a,0x44,0x7e,0xff,0x2a,0x44,0x7f,0xff, + 0x82,0x2b,0x45,0x80,0xff,0x83,0x2c,0x46,0x80,0xff,0x01,0x2c,0x46,0x81,0xff, + 0x82,0x2c,0x47,0x81,0xff,0x82,0x2d,0x47,0x82,0xff,0x82,0x2e,0x48,0x83,0xff, + 0x38,0x2f,0x48,0x84,0xff,0x2f,0x49,0x85,0xff,0x30,0x4a,0x85,0xff,0x31,0x4a, + 0x86,0xff,0x31,0x4b,0x87,0xff,0x32,0x4b,0x87,0xff,0x32,0x4c,0x88,0xff,0x33, + 0x4d,0x89,0xff,0x33,0x4d,0x8a,0xff,0x34,0x4e,0x8a,0xff,0x34,0x4e,0x8b,0xff, + 0x35,0x4f,0x8c,0xff,0x36,0x50,0x8c,0xff,0x36,0x50,0x8d,0xff,0x37,0x51,0x8e, + 0xff,0x37,0x51,0x8f,0xff,0x38,0x52,0x8f,0xff,0x38,0x53,0x90,0xff,0x39,0x53, + 0x91,0xff,0x39,0x54,0x91,0xff,0x3a,0x54,0x92,0xff,0x3a,0x55,0x93,0xff,0x3b, + 0x55,0x93,0xff,0x3c,0x56,0x94,0xff,0x3c,0x57,0x95,0xff,0x3d,0x57,0x96,0xff, + 0x3e,0x59,0x97,0xff,0x3f,0x5a,0x98,0xff,0x3f,0x5b,0x9a,0xff,0x40,0x5c,0x9b, + 0xff,0x41,0x5d,0x9c,0xff,0x42,0x5e,0x9d,0xff,0x43,0x5f,0x9e,0xff,0x44,0x60, + 0x9f,0xff,0x45,0x61,0xa0,0xff,0x45,0x62,0xa1,0xff,0x46,0x62,0xa2,0xff,0x47, + 0x63,0xa3,0xff,0x48,0x64,0xa4,0xff,0x48,0x65,0xa4,0xff,0x49,0x65,0xa5,0xff, + 0x49,0x66,0xa6,0xff,0x4a,0x66,0xa7,0xff,0x4a,0x67,0xa7,0xff,0x4b,0x67,0xa8, + 0xff,0x4c,0x68,0xa9,0xff,0x4c,0x69,0xa9,0xff,0x4d,0x69,0xaa,0xff,0x4d,0x6a, + 0xab,0xff,0x4e,0x6a,0xab,0xff,0x4e,0x6b,0xac,0xff,0x4f,0x6c,0xad,0xff,0x50, + 0x6c,0xae,0xff,0x50,0x6d,0xaf,0xff,0x51,0x6e,0xaf,0xff,0x51,0x6e,0xb0,0xff, + 0x99,0x52,0x6f,0xb1,0xff,0x09,0x01,0x02,0x03,0xff,0x00,0x01,0x02,0xff,0x1c, + 0x36,0x6e,0xff,0x1d,0x36,0x6e,0xff,0x1e,0x37,0x6f,0xff,0x1f,0x37,0x70,0xff, + 0x1f,0x38,0x70,0xff,0x20,0x39,0x71,0xff,0x20,0x39,0x72,0xff,0x82,0x21,0x3a, + 0x73,0xff,0x17,0x22,0x3b,0x74,0xff,0x22,0x3c,0x74,0xff,0x24,0x3d,0x75,0xff, + 0x23,0x3d,0x76,0xff,0x24,0x3d,0x77,0xff,0x24,0x3e,0x78,0xff,0x25,0x3e,0x78, + 0xff,0x26,0x3f,0x79,0xff,0x26,0x40,0x7a,0xff,0x27,0x40,0x7a,0xff,0x27,0x41, + 0x7b,0xff,0x28,0x42,0x7c,0xff,0x28,0x42,0x7d,0xff,0x29,0x43,0x7d,0xff,0x29, + 0x43,0x7e,0xff,0x2a,0x44,0x7f,0xff,0x2b,0x44,0x7f,0xff,0x2b,0x45,0x80,0xff, + 0x2c,0x46,0x81,0xff,0x2c,0x47,0x81,0xff,0x2d,0x48,0x82,0xff,0x2d,0x49,0x83, + 0xff,0x2e,0x49,0x84,0xff,0x85,0x2f,0x4a,0x85,0xff,0x83,0x30,0x4a,0x86,0xff, + 0x03,0x31,0x4b,0x86,0xff,0x31,0x4b,0x87,0xff,0x31,0x4c,0x87,0xff,0x82,0x32, + 0x4c,0x88,0xff,0x05,0x33,0x4d,0x89,0xff,0x33,0x4d,0x8a,0xff,0x34,0x4e,0x8a, + 0xff,0x35,0x4f,0x8b,0xff,0x35,0x4f,0x8c,0xff,0x82,0x36,0x50,0x8d,0xff,0x05, + 0x37,0x51,0x8e,0xff,0x37,0x51,0x8f,0xff,0x38,0x52,0x90,0xff,0x38,0x53,0x90, + 0xff,0x39,0x53,0x91,0xff,0x82,0x3a,0x54,0x92,0xff,0x1c,0x3b,0x55,0x93,0xff, + 0x3b,0x56,0x94,0xff,0x3c,0x56,0x94,0xff,0x3c,0x57,0x95,0xff,0x3d,0x57,0x96, + 0xff,0x3d,0x58,0x97,0xff,0x3e,0x59,0x97,0xff,0x3e,0x59,0x98,0xff,0x3f,0x5a, + 0x99,0xff,0x40,0x5a,0x99,0xff,0x40,0x5b,0x9a,0xff,0x41,0x5c,0x9b,0xff,0x42, + 0x5d,0x9c,0xff,0x43,0x5e,0x9e,0xff,0x43,0x5f,0x9f,0xff,0x45,0x61,0xa0,0xff, + 0x46,0x61,0xa1,0xff,0x47,0x62,0xa2,0xff,0x48,0x63,0xa3,0xff,0x49,0x64,0xa4, + 0xff,0x49,0x65,0xa5,0xff,0x4a,0x66,0xa7,0xff,0x4a,0x67,0xa7,0xff,0x4b,0x67, + 0xa8,0xff,0x4c,0x68,0xa9,0xff,0x4c,0x69,0xaa,0xff,0x4d,0x69,0xaa,0xff,0x4d, + 0x6a,0xab,0xff,0x82,0x4e,0x6b,0xac,0xff,0x03,0x4f,0x6c,0xad,0xff,0x50,0x6d, + 0xae,0xff,0x50,0x6d,0xaf,0xff,0x82,0x51,0x6e,0xb0,0xff,0x98,0x52,0x6f,0xb1, + 0xff,0x1c,0x01,0x02,0x03,0xff,0x00,0x01,0x02,0xff,0x1c,0x35,0x6d,0xff,0x1c, + 0x36,0x6e,0xff,0x1e,0x36,0x6f,0xff,0x1e,0x37,0x6f,0xff,0x1f,0x38,0x70,0xff, + 0x1f,0x38,0x71,0xff,0x20,0x39,0x71,0xff,0x21,0x3a,0x73,0xff,0x2b,0x43,0x77, + 0xff,0x37,0x4f,0x80,0xff,0x3c,0x54,0x82,0xff,0x39,0x4f,0x7d,0xff,0x23,0x3c, + 0x75,0xff,0x24,0x3d,0x76,0xff,0x24,0x3e,0x77,0xff,0x25,0x3e,0x78,0xff,0x25, + 0x3f,0x79,0xff,0x26,0x3f,0x79,0xff,0x26,0x40,0x7a,0xff,0x27,0x40,0x7b,0xff, + 0x27,0x41,0x7b,0xff,0x28,0x42,0x7c,0xff,0x29,0x42,0x7d,0xff,0x29,0x43,0x7d, + 0xff,0x2a,0x43,0x7e,0xff,0x2a,0x44,0x7f,0xff,0x82,0x2b,0x45,0x80,0xff,0x0f, + 0x2c,0x46,0x81,0xff,0x2d,0x47,0x82,0xff,0x2d,0x48,0x83,0xff,0x2e,0x49,0x83, + 0xff,0x2e,0x49,0x84,0xff,0x2f,0x4a,0x85,0xff,0x2f,0x4b,0x86,0xff,0x30,0x4b, + 0x86,0xff,0x30,0x4c,0x87,0xff,0x31,0x4d,0x88,0xff,0x32,0x4d,0x89,0xff,0x32, + 0x4e,0x89,0xff,0x33,0x4e,0x89,0xff,0x32,0x4e,0x89,0xff,0x33,0x4e,0x89,0xff, + 0x83,0x33,0x4e,0x8a,0xff,0x03,0x34,0x4e,0x8a,0xff,0x34,0x4e,0x8b,0xff,0x34, + 0x4f,0x8c,0xff,0x82,0x35,0x4f,0x8c,0xff,0x12,0x36,0x50,0x8d,0xff,0x36,0x51, + 0x8e,0xff,0x37,0x51,0x8e,0xff,0x38,0x52,0x8f,0xff,0x38,0x52,0x90,0xff,0x39, + 0x53,0x91,0xff,0x39,0x54,0x91,0xff,0x3a,0x54,0x92,0xff,0x3a,0x55,0x93,0xff, + 0x3b,0x55,0x93,0xff,0x3b,0x56,0x94,0xff,0x3c,0x56,0x95,0xff,0x3c,0x57,0x95, + 0xff,0x3d,0x58,0x96,0xff,0x3e,0x58,0x97,0xff,0x3e,0x59,0x97,0xff,0x3f,0x59, + 0x98,0xff,0x3f,0x5a,0x99,0xff,0x82,0x40,0x5b,0x9a,0xff,0x05,0x41,0x5c,0x9b, + 0xff,0x41,0x5c,0x9c,0xff,0x42,0x5d,0x9c,0xff,0x42,0x5e,0x9d,0xff,0x43,0x5e, + 0x9e,0xff,0x82,0x44,0x5f,0x9f,0xff,0x11,0x45,0x60,0xa0,0xff,0x46,0x61,0xa1, + 0xff,0x46,0x62,0xa3,0xff,0x47,0x64,0xa4,0xff,0x49,0x65,0xa5,0xff,0x4a,0x66, + 0xa7,0xff,0x4a,0x67,0xa7,0xff,0x4b,0x68,0xa9,0xff,0x4c,0x69,0xaa,0xff,0x4d, + 0x6a,0xab,0xff,0x4e,0x6a,0xac,0xff,0x4e,0x6b,0xac,0xff,0x4f,0x6c,0xad,0xff, + 0x50,0x6d,0xae,0xff,0x50,0x6d,0xaf,0xff,0x51,0x6e,0xb0,0xff,0x52,0x6e,0xb1, + 0xff,0x97,0x52,0x6f,0xb1,0xff,0x1d,0x01,0x02,0x03,0xff,0x00,0x01,0x02,0xff, + 0x1b,0x35,0x6d,0xff,0x1c,0x35,0x6d,0xff,0x1d,0x36,0x6e,0xff,0x1e,0x37,0x6f, + 0xff,0x1e,0x37,0x70,0xff,0x1f,0x38,0x70,0xff,0x1f,0x38,0x71,0xff,0x27,0x3f, + 0x75,0xff,0x59,0x6a,0x8d,0xff,0x8a,0xa3,0xbb,0xff,0x9a,0xb4,0xc9,0xff,0x85, + 0x94,0xaa,0xff,0x35,0x4a,0x7b,0xff,0x23,0x3d,0x76,0xff,0x24,0x3d,0x77,0xff, + 0x24,0x3e,0x77,0xff,0x25,0x3e,0x78,0xff,0x25,0x3f,0x79,0xff,0x26,0x3f,0x7a, + 0xff,0x27,0x40,0x7a,0xff,0x27,0x41,0x7b,0xff,0x28,0x41,0x7b,0xff,0x28,0x42, + 0x7c,0xff,0x29,0x42,0x7d,0xff,0x29,0x43,0x7e,0xff,0x2a,0x44,0x7e,0xff,0x2a, + 0x44,0x7f,0xff,0x82,0x2b,0x45,0x80,0xff,0x06,0x2c,0x47,0x81,0xff,0x2d,0x48, + 0x82,0xff,0x2d,0x48,0x83,0xff,0x2e,0x49,0x84,0xff,0x2e,0x4a,0x84,0xff,0x2f, + 0x4a,0x85,0xff,0x82,0x30,0x4b,0x86,0xff,0x09,0x31,0x4c,0x87,0xff,0x31,0x4d, + 0x88,0xff,0x32,0x4d,0x89,0xff,0x33,0x4e,0x89,0xff,0x33,0x4f,0x8a,0xff,0x34, + 0x4f,0x8b,0xff,0x34,0x50,0x8c,0xff,0x35,0x50,0x8c,0xff,0x35,0x51,0x8d,0xff, + 0x84,0x36,0x51,0x8e,0xff,0x02,0x36,0x52,0x8e,0xff,0x36,0x52,0x8f,0xff,0x82, + 0x37,0x52,0x8f,0xff,0x01,0x37,0x52,0x90,0xff,0x82,0x38,0x53,0x90,0xff,0x26, + 0x39,0x53,0x91,0xff,0x39,0x54,0x91,0xff,0x3a,0x54,0x92,0xff,0x3a,0x55,0x93, + 0xff,0x3b,0x56,0x94,0xff,0x3c,0x56,0x94,0xff,0x3c,0x57,0x95,0xff,0x3d,0x57, + 0x96,0xff,0x3d,0x58,0x96,0xff,0x3e,0x58,0x97,0xff,0x3e,0x59,0x98,0xff,0x3f, + 0x5a,0x98,0xff,0x3f,0x5a,0x99,0xff,0x40,0x5b,0x9a,0xff,0x40,0x5b,0x9b,0xff, + 0x41,0x5c,0x9b,0xff,0x42,0x5c,0x9c,0xff,0x42,0x5d,0x9d,0xff,0x43,0x5e,0x9d, + 0xff,0x43,0x5e,0x9e,0xff,0x44,0x5f,0x9f,0xff,0x44,0x60,0xa0,0xff,0x45,0x60, + 0xa0,0xff,0x45,0x61,0xa1,0xff,0x45,0x61,0xa2,0xff,0x45,0x62,0xa2,0xff,0x46, + 0x62,0xa3,0xff,0x47,0x63,0xa4,0xff,0x47,0x64,0xa4,0xff,0x48,0x65,0xa6,0xff, + 0x49,0x66,0xa7,0xff,0x4a,0x67,0xa8,0xff,0x4b,0x68,0xa9,0xff,0x4d,0x69,0xab, + 0xff,0x4e,0x6a,0xac,0xff,0x4e,0x6b,0xad,0xff,0x4f,0x6c,0xae,0xff,0x50,0x6d, + 0xaf,0xff,0x83,0x51,0x6e,0xb0,0xff,0x94,0x52,0x6f,0xb1,0xff,0x2f,0x01,0x02, + 0x03,0xff,0x00,0x01,0x02,0xff,0x1b,0x34,0x6c,0xff,0x1b,0x35,0x6d,0xff,0x1c, + 0x36,0x6e,0xff,0x1d,0x36,0x6e,0xff,0x1e,0x37,0x6f,0xff,0x1f,0x38,0x70,0xff, + 0x1f,0x38,0x71,0xff,0x2c,0x43,0x76,0xff,0x77,0x87,0xa1,0xff,0x98,0xc4,0xe3, + 0xff,0xac,0xc8,0xde,0xff,0xb6,0xbe,0xc7,0xff,0x6c,0x78,0x93,0xff,0x23,0x3c, + 0x75,0xff,0x23,0x3d,0x76,0xff,0x24,0x3d,0x77,0xff,0x25,0x3e,0x78,0xff,0x25, + 0x3f,0x78,0xff,0x26,0x3f,0x79,0xff,0x26,0x40,0x7a,0xff,0x27,0x40,0x7a,0xff, + 0x27,0x41,0x7b,0xff,0x28,0x42,0x7c,0xff,0x28,0x42,0x7d,0xff,0x29,0x43,0x7d, + 0xff,0x29,0x43,0x7e,0xff,0x2a,0x44,0x7f,0xff,0x2b,0x44,0x7f,0xff,0x2b,0x45, + 0x80,0xff,0x2c,0x46,0x81,0xff,0x2c,0x47,0x82,0xff,0x2d,0x48,0x82,0xff,0x2d, + 0x49,0x83,0xff,0x2e,0x49,0x84,0xff,0x2f,0x4a,0x84,0xff,0x2f,0x4a,0x85,0xff, + 0x30,0x4b,0x86,0xff,0x30,0x4c,0x87,0xff,0x31,0x4c,0x87,0xff,0x31,0x4d,0x88, + 0xff,0x32,0x4e,0x89,0xff,0x33,0x4e,0x8a,0xff,0x33,0x4f,0x8a,0xff,0x34,0x4f, + 0x8b,0xff,0x34,0x50,0x8c,0xff,0x82,0x35,0x51,0x8d,0xff,0x05,0x36,0x52,0x8e, + 0xff,0x37,0x52,0x8f,0xff,0x37,0x53,0x90,0xff,0x38,0x54,0x90,0xff,0x38,0x54, + 0x91,0xff,0x84,0x39,0x55,0x92,0xff,0x82,0x3a,0x56,0x93,0xff,0x83,0x3b,0x56, + 0x93,0xff,0x01,0x3c,0x56,0x94,0xff,0x82,0x3c,0x57,0x95,0xff,0x21,0x3c,0x58, + 0x96,0xff,0x3d,0x58,0x96,0xff,0x3d,0x58,0x97,0xff,0x3e,0x59,0x97,0xff,0x3e, + 0x59,0x98,0xff,0x3f,0x5a,0x99,0xff,0x40,0x5a,0x99,0xff,0x40,0x5b,0x9a,0xff, + 0x41,0x5c,0x9b,0xff,0x41,0x5c,0x9c,0xff,0x42,0x5d,0x9c,0xff,0x42,0x5d,0x9d, + 0xff,0x43,0x5e,0x9e,0xff,0x43,0x5f,0x9e,0xff,0x44,0x5f,0x9f,0xff,0x44,0x60, + 0xa0,0xff,0x45,0x60,0xa0,0xff,0x45,0x61,0xa1,0xff,0x45,0x61,0xa2,0xff,0x46, + 0x62,0xa3,0xff,0x46,0x63,0xa3,0xff,0x47,0x63,0xa4,0xff,0x47,0x64,0xa5,0xff, + 0x48,0x64,0xa5,0xff,0x48,0x65,0xa6,0xff,0x49,0x66,0xa7,0xff,0x4a,0x66,0xa8, + 0xff,0x4a,0x67,0xa8,0xff,0x4b,0x68,0xa9,0xff,0x4b,0x68,0xaa,0xff,0x4c,0x69, + 0xab,0xff,0x4d,0x6a,0xac,0xff,0x4e,0x6b,0xad,0xff,0x82,0x4f,0x6c,0xae,0xff, + 0x82,0x50,0x6d,0xaf,0xff,0x85,0x51,0x6e,0xb0,0xff,0x8c,0x52,0x6f,0xb1,0xff, + 0x35,0x01,0x02,0x03,0xff,0x00,0x01,0x02,0xff,0x1b,0x34,0x6c,0xff,0x1b,0x35, + 0x6d,0xff,0x1c,0x35,0x6d,0xff,0x1d,0x36,0x6e,0xff,0x1e,0x36,0x6f,0xff,0x1e, + 0x37,0x6f,0xff,0x1f,0x38,0x70,0xff,0x2c,0x43,0x76,0xff,0x7f,0x8a,0x9d,0xff, + 0xa4,0xb6,0xc5,0xff,0xa1,0xaa,0xb4,0xff,0xa2,0xa9,0xb2,0xff,0x66,0x73,0x8c, + 0xff,0x23,0x3c,0x75,0xff,0x23,0x3c,0x76,0xff,0x24,0x3d,0x76,0xff,0x24,0x3e, + 0x77,0xff,0x25,0x3e,0x78,0xff,0x25,0x3f,0x78,0xff,0x26,0x3f,0x79,0xff,0x26, + 0x40,0x7a,0xff,0x27,0x40,0x7b,0xff,0x27,0x41,0x7b,0xff,0x28,0x42,0x7c,0xff, + 0x29,0x42,0x7d,0xff,0x29,0x43,0x7d,0xff,0x2a,0x44,0x7e,0xff,0x2a,0x44,0x7f, + 0xff,0x2b,0x45,0x80,0xff,0x2b,0x45,0x81,0xff,0x2c,0x46,0x81,0xff,0x2d,0x47, + 0x82,0xff,0x2d,0x48,0x83,0xff,0x2e,0x49,0x83,0xff,0x2e,0x49,0x84,0xff,0x2f, + 0x4a,0x85,0xff,0x2f,0x4b,0x85,0xff,0x30,0x4b,0x86,0xff,0x30,0x4c,0x87,0xff, + 0x31,0x4c,0x88,0xff,0x31,0x4d,0x88,0xff,0x32,0x4e,0x89,0xff,0x33,0x4e,0x8a, + 0xff,0x33,0x4f,0x8b,0xff,0x34,0x50,0x8b,0xff,0x35,0x50,0x8c,0xff,0x35,0x51, + 0x8d,0xff,0x36,0x51,0x8e,0xff,0x36,0x52,0x8e,0xff,0x37,0x53,0x8f,0xff,0x37, + 0x53,0x90,0xff,0x82,0x38,0x54,0x91,0xff,0x07,0x39,0x55,0x92,0xff,0x39,0x56, + 0x93,0xff,0x3a,0x56,0x93,0xff,0x3b,0x57,0x94,0xff,0x3b,0x57,0x95,0xff,0x3c, + 0x58,0x95,0xff,0x3c,0x58,0x96,0xff,0x84,0x3d,0x59,0x97,0xff,0x83,0x3e,0x5a, + 0x98,0xff,0x01,0x3f,0x5a,0x98,0xff,0x82,0x3f,0x5a,0x99,0xff,0x82,0x40,0x5b, + 0x9a,0xff,0x06,0x40,0x5b,0x9b,0xff,0x41,0x5c,0x9b,0xff,0x41,0x5c,0x9c,0xff, + 0x42,0x5d,0x9c,0xff,0x42,0x5e,0x9d,0xff,0x43,0x5e,0x9e,0xff,0x82,0x44,0x5f, + 0x9f,0xff,0x01,0x45,0x60,0xa0,0xff,0x82,0x45,0x61,0xa1,0xff,0x0d,0x45,0x62, + 0xa2,0xff,0x46,0x62,0xa3,0xff,0x46,0x63,0xa3,0xff,0x47,0x63,0xa4,0xff,0x47, + 0x64,0xa5,0xff,0x48,0x65,0xa6,0xff,0x49,0x65,0xa7,0xff,0x49,0x66,0xa7,0xff, + 0x4a,0x67,0xa8,0xff,0x4a,0x67,0xa9,0xff,0x4b,0x68,0xa9,0xff,0x4c,0x68,0xaa, + 0xff,0x4c,0x69,0xab,0xff,0x86,0x4d,0x6a,0xac,0xff,0x83,0x4e,0x6b,0xad,0xff, + 0x01,0x4f,0x6c,0xae,0xff,0x83,0x50,0x6d,0xaf,0xff,0x85,0x51,0x6e,0xb0,0xff, + 0x84,0x52,0x6f,0xb1,0xff,0x48,0x01,0x02,0x03,0xff,0x00,0x01,0x02,0xff,0x1a, + 0x34,0x6b,0xff,0x1b,0x34,0x6c,0xff,0x1b,0x35,0x6d,0xff,0x1c,0x35,0x6d,0xff, + 0x1d,0x36,0x6e,0xff,0x1e,0x37,0x6f,0xff,0x1e,0x37,0x70,0xff,0x27,0x3e,0x73, + 0xff,0x5c,0x69,0x86,0xff,0x6e,0x77,0x8b,0xff,0x49,0x58,0x79,0xff,0x4f,0x61, + 0x87,0xff,0x3e,0x53,0x7b,0xff,0x22,0x3b,0x75,0xff,0x23,0x3c,0x75,0xff,0x23, + 0x3d,0x76,0xff,0x24,0x3d,0x77,0xff,0x24,0x3e,0x77,0xff,0x25,0x3e,0x78,0xff, + 0x25,0x3f,0x79,0xff,0x26,0x40,0x79,0xff,0x27,0x40,0x7a,0xff,0x27,0x41,0x7b, + 0xff,0x28,0x41,0x7c,0xff,0x28,0x42,0x7c,0xff,0x29,0x43,0x7d,0xff,0x29,0x43, + 0x7e,0xff,0x2a,0x44,0x7e,0xff,0x2a,0x44,0x7f,0xff,0x2b,0x45,0x80,0xff,0x2c, + 0x46,0x81,0xff,0x2c,0x47,0x81,0xff,0x2d,0x48,0x82,0xff,0x2d,0x48,0x83,0xff, + 0x2e,0x49,0x84,0xff,0x2e,0x4a,0x84,0xff,0x2f,0x4a,0x85,0xff,0x2f,0x4b,0x86, + 0xff,0x30,0x4b,0x86,0xff,0x31,0x4c,0x87,0xff,0x31,0x4d,0x88,0xff,0x32,0x4d, + 0x89,0xff,0x33,0x4e,0x8a,0xff,0x33,0x4f,0x8a,0xff,0x34,0x4f,0x8b,0xff,0x34, + 0x50,0x8c,0xff,0x35,0x51,0x8c,0xff,0x35,0x51,0x8d,0xff,0x36,0x52,0x8e,0xff, + 0x36,0x52,0x8f,0xff,0x37,0x53,0x8f,0xff,0x37,0x53,0x90,0xff,0x38,0x54,0x91, + 0xff,0x39,0x55,0x91,0xff,0x39,0x55,0x92,0xff,0x3a,0x56,0x93,0xff,0x3a,0x56, + 0x94,0xff,0x3b,0x57,0x94,0xff,0x3b,0x58,0x95,0xff,0x3c,0x58,0x96,0xff,0x3c, + 0x59,0x96,0xff,0x3d,0x59,0x97,0xff,0x3d,0x5a,0x98,0xff,0x3e,0x5a,0x98,0xff, + 0x3f,0x5b,0x99,0xff,0x3f,0x5c,0x9a,0xff,0x40,0x5c,0x9b,0xff,0x40,0x5d,0x9b, + 0xff,0x41,0x5d,0x9c,0xff,0x40,0x5d,0x9b,0xff,0x82,0x41,0x5d,0x9c,0xff,0x02, + 0x42,0x5d,0x9c,0xff,0x42,0x5d,0x9d,0xff,0x82,0x42,0x5e,0x9d,0xff,0x04,0x43, + 0x5e,0x9e,0xff,0x43,0x5f,0x9e,0xff,0x44,0x5f,0x9f,0xff,0x44,0x60,0xa0,0xff, + 0x82,0x45,0x60,0xa0,0xff,0x0f,0x45,0x61,0xa1,0xff,0x45,0x61,0xa2,0xff,0x45, + 0x62,0xa2,0xff,0x46,0x62,0xa3,0xff,0x47,0x63,0xa4,0xff,0x47,0x64,0xa4,0xff, + 0x48,0x64,0xa5,0xff,0x48,0x65,0xa6,0xff,0x49,0x66,0xa7,0xff,0x49,0x66,0xa8, + 0xff,0x4a,0x67,0xa8,0xff,0x4b,0x67,0xa9,0xff,0x4b,0x68,0xaa,0xff,0x4c,0x69, + 0xaa,0xff,0x4c,0x69,0xab,0xff,0x8d,0x4d,0x6a,0xac,0xff,0x83,0x4e,0x6b,0xad, + 0xff,0x01,0x4f,0x6c,0xae,0xff,0x83,0x50,0x6d,0xaf,0xff,0x0e,0x51,0x6e,0xb0, + 0xff,0x01,0x02,0x03,0xff,0x00,0x01,0x02,0xff,0x1a,0x33,0x6b,0xff,0x1a,0x34, + 0x6c,0xff,0x1b,0x35,0x6c,0xff,0x1b,0x35,0x6d,0xff,0x1c,0x36,0x6e,0xff,0x1d, + 0x36,0x6e,0xff,0x1f,0x38,0x70,0xff,0x29,0x3f,0x73,0xff,0x27,0x3e,0x73,0xff, + 0x2b,0x41,0x75,0xff,0x2a,0x41,0x76,0xff,0x82,0x2b,0x42,0x77,0xff,0x10,0x28, + 0x40,0x76,0xff,0x22,0x3c,0x75,0xff,0x23,0x3c,0x75,0xff,0x23,0x3d,0x76,0xff, + 0x24,0x3d,0x77,0xff,0x25,0x3e,0x78,0xff,0x25,0x3f,0x78,0xff,0x26,0x3f,0x79, + 0xff,0x26,0x40,0x7a,0xff,0x27,0x40,0x7a,0xff,0x27,0x41,0x7b,0xff,0x28,0x42, + 0x7c,0xff,0x28,0x42,0x7d,0xff,0x29,0x43,0x7d,0xff,0x29,0x43,0x7e,0xff,0x2a, + 0x44,0x7f,0xff,0x82,0x2b,0x45,0x80,0xff,0x05,0x2c,0x46,0x81,0xff,0x2c,0x47, + 0x82,0xff,0x2d,0x48,0x82,0xff,0x2e,0x49,0x83,0xff,0x2e,0x49,0x84,0xff,0x82, + 0x2f,0x4a,0x85,0xff,0x09,0x30,0x4b,0x86,0xff,0x30,0x4c,0x87,0xff,0x31,0x4c, + 0x87,0xff,0x31,0x4d,0x88,0xff,0x32,0x4d,0x89,0xff,0x32,0x4e,0x89,0xff,0x33, + 0x4f,0x8a,0xff,0x34,0x4f,0x8b,0xff,0x34,0x50,0x8c,0xff,0x82,0x35,0x51,0x8d, + 0xff,0x05,0x36,0x52,0x8e,0xff,0x37,0x52,0x8f,0xff,0x37,0x53,0x90,0xff,0x38, + 0x54,0x90,0xff,0x38,0x54,0x91,0xff,0x82,0x39,0x55,0x92,0xff,0x05,0x3a,0x56, + 0x93,0xff,0x3a,0x57,0x94,0xff,0x3b,0x57,0x95,0xff,0x3b,0x58,0x95,0xff,0x3c, + 0x58,0x96,0xff,0x82,0x3d,0x59,0x97,0xff,0x0b,0x3e,0x5a,0x98,0xff,0x3e,0x5b, + 0x99,0xff,0x3f,0x5b,0x99,0xff,0x3f,0x5c,0x9a,0xff,0x40,0x5c,0x9b,0xff,0x40, + 0x5d,0x9c,0xff,0x41,0x5e,0x9c,0xff,0x41,0x5e,0x9d,0xff,0x42,0x5f,0x9e,0xff, + 0x43,0x5f,0x9e,0xff,0x43,0x60,0x9f,0xff,0x84,0x44,0x61,0xa0,0xff,0x82,0x45, + 0x61,0xa1,0xff,0x82,0x46,0x61,0xa1,0xff,0x0e,0x46,0x62,0xa2,0xff,0x46,0x62, + 0xa3,0xff,0x46,0x63,0xa3,0xff,0x47,0x63,0xa3,0xff,0x47,0x63,0xa4,0xff,0x47, + 0x64,0xa4,0xff,0x47,0x64,0xa5,0xff,0x48,0x65,0xa6,0xff,0x49,0x65,0xa6,0xff, + 0x49,0x66,0xa7,0xff,0x4a,0x66,0xa8,0xff,0x4a,0x67,0xa9,0xff,0x4b,0x68,0xa9, + 0xff,0x4b,0x68,0xaa,0xff,0x82,0x4c,0x69,0xab,0xff,0x93,0x4d,0x6a,0xac,0xff, + 0x1a,0x4e,0x6b,0xad,0xff,0x01,0x02,0x03,0xff,0x00,0x01,0x02,0xff,0x19,0x33, + 0x6a,0xff,0x1a,0x34,0x6b,0xff,0x1a,0x34,0x6c,0xff,0x1b,0x35,0x6d,0xff,0x1c, + 0x35,0x6d,0xff,0x1d,0x36,0x6e,0xff,0x22,0x3a,0x70,0xff,0x3b,0x4e,0x78,0xff, + 0x38,0x4b,0x77,0xff,0x40,0x51,0x79,0xff,0x41,0x53,0x7b,0xff,0x42,0x53,0x7c, + 0xff,0x40,0x52,0x7b,0xff,0x34,0x48,0x77,0xff,0x22,0x3b,0x74,0xff,0x23,0x3c, + 0x75,0xff,0x23,0x3c,0x76,0xff,0x24,0x3d,0x76,0xff,0x24,0x3e,0x77,0xff,0x25, + 0x3e,0x78,0xff,0x25,0x3f,0x79,0xff,0x26,0x3f,0x79,0xff,0x26,0x40,0x7a,0xff, + 0x82,0x27,0x41,0x7b,0xff,0x1f,0x28,0x42,0x7c,0xff,0x29,0x42,0x7d,0xff,0x29, + 0x43,0x7d,0xff,0x2a,0x43,0x7e,0xff,0x2a,0x44,0x7f,0xff,0x2b,0x45,0x80,0xff, + 0x2b,0x45,0x81,0xff,0x2c,0x46,0x81,0xff,0x2d,0x47,0x82,0xff,0x2d,0x48,0x83, + 0xff,0x2e,0x49,0x83,0xff,0x2e,0x49,0x84,0xff,0x2f,0x4a,0x85,0xff,0x2f,0x4b, + 0x85,0xff,0x30,0x4b,0x86,0xff,0x30,0x4c,0x87,0xff,0x31,0x4c,0x88,0xff,0x31, + 0x4d,0x88,0xff,0x32,0x4e,0x89,0xff,0x33,0x4e,0x8a,0xff,0x33,0x4f,0x8b,0xff, + 0x34,0x50,0x8b,0xff,0x35,0x50,0x8c,0xff,0x35,0x51,0x8d,0xff,0x36,0x51,0x8e, + 0xff,0x36,0x52,0x8e,0xff,0x37,0x53,0x8f,0xff,0x37,0x53,0x90,0xff,0x38,0x54, + 0x90,0xff,0x38,0x54,0x91,0xff,0x39,0x55,0x92,0xff,0x82,0x3a,0x56,0x93,0xff, + 0x0f,0x3b,0x57,0x94,0xff,0x3b,0x57,0x95,0xff,0x3c,0x58,0x95,0xff,0x3c,0x59, + 0x96,0xff,0x3d,0x59,0x97,0xff,0x3d,0x5a,0x98,0xff,0x3e,0x5a,0x98,0xff,0x3e, + 0x5b,0x99,0xff,0x3f,0x5b,0x9a,0xff,0x3f,0x5c,0x9a,0xff,0x40,0x5d,0x9b,0xff, + 0x41,0x5d,0x9c,0xff,0x41,0x5e,0x9d,0xff,0x42,0x5e,0x9d,0xff,0x42,0x5f,0x9e, + 0xff,0x82,0x43,0x60,0x9f,0xff,0x07,0x44,0x61,0xa0,0xff,0x44,0x61,0xa1,0xff, + 0x45,0x62,0xa1,0xff,0x45,0x63,0xa2,0xff,0x46,0x63,0xa3,0xff,0x47,0x64,0xa4, + 0xff,0x48,0x64,0xa4,0xff,0x82,0x48,0x64,0xa5,0xff,0x02,0x48,0x65,0xa5,0xff, + 0x49,0x65,0xa5,0xff,0x83,0x49,0x65,0xa6,0xff,0x01,0x49,0x66,0xa7,0xff,0x82, + 0x4a,0x66,0xa7,0xff,0x02,0x4a,0x67,0xa8,0xff,0x4a,0x67,0xa9,0xff,0x82,0x4b, + 0x68,0xa9,0xff,0x02,0x4b,0x68,0xaa,0xff,0x4c,0x69,0xab,0xff,0x94,0x4d,0x6a, + 0xac,0xff,0x34,0x01,0x02,0x03,0xff,0x00,0x01,0x02,0xff,0x19,0x33,0x6a,0xff, + 0x1a,0x33,0x6b,0xff,0x1a,0x34,0x6b,0xff,0x1b,0x34,0x6c,0xff,0x1b,0x35,0x6d, + 0xff,0x1c,0x36,0x6d,0xff,0x1f,0x38,0x6f,0xff,0x2e,0x43,0x74,0xff,0x2f,0x44, + 0x72,0xff,0x33,0x46,0x70,0xff,0x38,0x4b,0x75,0xff,0x39,0x4c,0x76,0xff,0x34, + 0x47,0x74,0xff,0x2b,0x40,0x71,0xff,0x22,0x3b,0x74,0xff,0x22,0x3b,0x75,0xff, + 0x23,0x3c,0x75,0xff,0x23,0x3d,0x76,0xff,0x24,0x3d,0x77,0xff,0x24,0x3e,0x77, + 0xff,0x25,0x3e,0x78,0xff,0x26,0x3f,0x79,0xff,0x26,0x40,0x79,0xff,0x27,0x40, + 0x7a,0xff,0x27,0x41,0x7b,0xff,0x28,0x41,0x7c,0xff,0x28,0x42,0x7c,0xff,0x29, + 0x43,0x7d,0xff,0x29,0x43,0x7e,0xff,0x2a,0x44,0x7f,0xff,0x2b,0x44,0x7f,0xff, + 0x2b,0x45,0x80,0xff,0x2c,0x46,0x81,0xff,0x2c,0x47,0x82,0xff,0x2d,0x48,0x82, + 0xff,0x2d,0x48,0x83,0xff,0x2e,0x49,0x84,0xff,0x2e,0x4a,0x84,0xff,0x2f,0x4a, + 0x85,0xff,0x2f,0x4b,0x86,0xff,0x30,0x4b,0x86,0xff,0x31,0x4c,0x87,0xff,0x31, + 0x4d,0x88,0xff,0x32,0x4d,0x89,0xff,0x32,0x4e,0x89,0xff,0x33,0x4e,0x8a,0xff, + 0x33,0x4f,0x8b,0xff,0x34,0x50,0x8c,0xff,0x35,0x50,0x8c,0xff,0x35,0x51,0x8d, + 0xff,0x82,0x36,0x52,0x8e,0xff,0x03,0x37,0x53,0x8f,0xff,0x37,0x53,0x90,0xff, + 0x38,0x54,0x91,0xff,0x82,0x39,0x55,0x92,0xff,0x18,0x3a,0x56,0x93,0xff,0x3a, + 0x56,0x94,0xff,0x3b,0x57,0x94,0xff,0x3b,0x58,0x95,0xff,0x3c,0x58,0x96,0xff, + 0x3c,0x59,0x96,0xff,0x3d,0x59,0x97,0xff,0x3d,0x5a,0x98,0xff,0x3e,0x5a,0x99, + 0xff,0x3f,0x5b,0x99,0xff,0x3f,0x5c,0x9a,0xff,0x40,0x5c,0x9b,0xff,0x40,0x5d, + 0x9b,0xff,0x41,0x5d,0x9c,0xff,0x41,0x5e,0x9d,0xff,0x42,0x5f,0x9d,0xff,0x42, + 0x5f,0x9e,0xff,0x43,0x60,0x9f,0xff,0x44,0x60,0xa0,0xff,0x44,0x61,0xa0,0xff, + 0x45,0x62,0xa1,0xff,0x45,0x62,0xa2,0xff,0x46,0x63,0xa2,0xff,0x47,0x63,0xa3, + 0xff,0x82,0x48,0x64,0xa4,0xff,0x05,0x49,0x65,0xa5,0xff,0x49,0x66,0xa6,0xff, + 0x4a,0x66,0xa7,0xff,0x4a,0x67,0xa7,0xff,0x4b,0x68,0xa8,0xff,0x82,0x4c,0x68, + 0xa9,0xff,0x01,0x4c,0x69,0xa9,0xff,0x84,0x4c,0x69,0xaa,0xff,0x82,0x4c,0x69, + 0xab,0xff,0x03,0x4d,0x6a,0xac,0xff,0x4e,0x6b,0xac,0xff,0x4e,0x6b,0xad,0xff, + 0x92,0x4d,0x6a,0xac,0xff,0x0f,0x01,0x02,0x03,0xff,0x00,0x01,0x02,0xff,0x19, + 0x32,0x69,0xff,0x19,0x33,0x6a,0xff,0x1a,0x33,0x6b,0xff,0x1a,0x34,0x6c,0xff, + 0x1b,0x35,0x6c,0xff,0x1b,0x35,0x6d,0xff,0x1c,0x36,0x6e,0xff,0x1d,0x36,0x6e, + 0xff,0x1e,0x37,0x6f,0xff,0x1f,0x38,0x70,0xff,0x1f,0x38,0x71,0xff,0x20,0x39, + 0x71,0xff,0x20,0x39,0x72,0xff,0x82,0x21,0x3a,0x73,0xff,0x10,0x22,0x3b,0x74, + 0xff,0x22,0x3c,0x75,0xff,0x23,0x3c,0x75,0xff,0x24,0x3d,0x76,0xff,0x24,0x3d, + 0x77,0xff,0x25,0x3e,0x78,0xff,0x25,0x3f,0x78,0xff,0x26,0x3f,0x79,0xff,0x26, + 0x40,0x7a,0xff,0x27,0x40,0x7a,0xff,0x27,0x41,0x7b,0xff,0x28,0x42,0x7c,0xff, + 0x28,0x42,0x7d,0xff,0x29,0x43,0x7d,0xff,0x2a,0x44,0x7e,0xff,0x2a,0x44,0x7f, + 0xff,0x82,0x2b,0x45,0x80,0xff,0x17,0x2c,0x46,0x81,0xff,0x2c,0x47,0x82,0xff, + 0x2d,0x48,0x82,0xff,0x2d,0x49,0x83,0xff,0x2e,0x49,0x84,0xff,0x2f,0x4a,0x84, + 0xff,0x2f,0x4a,0x85,0xff,0x30,0x4b,0x86,0xff,0x30,0x4c,0x87,0xff,0x31,0x4c, + 0x87,0xff,0x31,0x4d,0x88,0xff,0x32,0x4d,0x89,0xff,0x32,0x4e,0x89,0xff,0x33, + 0x4e,0x8a,0xff,0x34,0x4f,0x8b,0xff,0x34,0x50,0x8c,0xff,0x35,0x51,0x8d,0xff, + 0x36,0x51,0x8d,0xff,0x36,0x52,0x8e,0xff,0x37,0x52,0x8f,0xff,0x37,0x53,0x90, + 0xff,0x38,0x54,0x90,0xff,0x38,0x54,0x91,0xff,0x82,0x39,0x55,0x92,0xff,0x25, + 0x3a,0x56,0x93,0xff,0x3a,0x57,0x94,0xff,0x3b,0x57,0x95,0xff,0x3b,0x58,0x95, + 0xff,0x3c,0x58,0x96,0xff,0x3d,0x59,0x97,0xff,0x3d,0x5a,0x97,0xff,0x3e,0x5a, + 0x98,0xff,0x3e,0x5b,0x99,0xff,0x3f,0x5b,0x99,0xff,0x3f,0x5c,0x9a,0xff,0x40, + 0x5c,0x9b,0xff,0x40,0x5d,0x9c,0xff,0x41,0x5e,0x9c,0xff,0x41,0x5e,0x9d,0xff, + 0x42,0x5f,0x9e,0xff,0x43,0x5f,0x9e,0xff,0x43,0x60,0x9f,0xff,0x44,0x61,0xa0, + 0xff,0x44,0x61,0xa1,0xff,0x45,0x62,0xa1,0xff,0x45,0x62,0xa2,0xff,0x46,0x63, + 0xa3,0xff,0x47,0x64,0xa3,0xff,0x48,0x64,0xa4,0xff,0x48,0x65,0xa5,0xff,0x49, + 0x65,0xa5,0xff,0x4a,0x66,0xa6,0xff,0x4a,0x66,0xa7,0xff,0x4b,0x67,0xa8,0xff, + 0x4b,0x68,0xa8,0xff,0x4c,0x69,0xa9,0xff,0x4c,0x69,0xaa,0xff,0x4d,0x6a,0xab, + 0xff,0x4e,0x6a,0xab,0xff,0x4e,0x6b,0xac,0xff,0x4f,0x6b,0xad,0xff,0x83,0x4f, + 0x6c,0xae,0xff,0x01,0x50,0x6d,0xae,0xff,0x82,0x50,0x6d,0xaf,0xff,0x83,0x4f, + 0x6c,0xae,0xff,0x83,0x4e,0x6b,0xad,0xff,0x8b,0x4d,0x6a,0xac,0xff,0x0e,0x01, + 0x02,0x03,0xff,0x00,0x01,0x02,0xff,0x18,0x32,0x69,0xff,0x19,0x32,0x6a,0xff, + 0x19,0x33,0x6a,0xff,0x1a,0x34,0x6b,0xff,0x1a,0x34,0x6c,0xff,0x1b,0x35,0x6d, + 0xff,0x1c,0x35,0x6d,0xff,0x1c,0x36,0x6e,0xff,0x1e,0x36,0x6f,0xff,0x1e,0x37, + 0x6f,0xff,0x1f,0x38,0x70,0xff,0x1f,0x38,0x71,0xff,0x82,0x20,0x39,0x72,0xff, + 0x01,0x21,0x3a,0x73,0xff,0x82,0x22,0x3b,0x74,0xff,0x26,0x23,0x3c,0x75,0xff, + 0x23,0x3c,0x76,0xff,0x24,0x3d,0x76,0xff,0x24,0x3e,0x77,0xff,0x25,0x3e,0x78, + 0xff,0x25,0x3f,0x79,0xff,0x26,0x3f,0x79,0xff,0x26,0x40,0x7a,0xff,0x27,0x41, + 0x7b,0xff,0x28,0x41,0x7b,0xff,0x28,0x42,0x7c,0xff,0x29,0x42,0x7d,0xff,0x29, + 0x43,0x7e,0xff,0x2a,0x44,0x7e,0xff,0x2a,0x44,0x7f,0xff,0x2b,0x45,0x80,0xff, + 0x2c,0x45,0x81,0xff,0x2c,0x46,0x81,0xff,0x2d,0x47,0x82,0xff,0x2d,0x48,0x83, + 0xff,0x2e,0x49,0x83,0xff,0x2e,0x49,0x84,0xff,0x2f,0x4a,0x85,0xff,0x2f,0x4b, + 0x86,0xff,0x30,0x4b,0x86,0xff,0x30,0x4c,0x87,0xff,0x31,0x4c,0x88,0xff,0x32, + 0x4d,0x88,0xff,0x32,0x4e,0x89,0xff,0x33,0x4e,0x8a,0xff,0x33,0x4f,0x8b,0xff, + 0x34,0x4f,0x8b,0xff,0x34,0x50,0x8c,0xff,0x35,0x51,0x8d,0xff,0x36,0x51,0x8e, + 0xff,0x36,0x52,0x8e,0xff,0x37,0x53,0x8f,0xff,0x37,0x53,0x90,0xff,0x82,0x38, + 0x54,0x91,0xff,0x12,0x39,0x55,0x92,0xff,0x39,0x56,0x93,0xff,0x3a,0x56,0x93, + 0xff,0x3b,0x57,0x94,0xff,0x3b,0x57,0x95,0xff,0x3c,0x58,0x95,0xff,0x3c,0x59, + 0x96,0xff,0x3d,0x59,0x97,0xff,0x3d,0x5a,0x98,0xff,0x3e,0x5a,0x98,0xff,0x3e, + 0x5b,0x99,0xff,0x3f,0x5b,0x9a,0xff,0x40,0x5c,0x9a,0xff,0x40,0x5d,0x9b,0xff, + 0x41,0x5d,0x9c,0xff,0x41,0x5e,0x9d,0xff,0x42,0x5e,0x9d,0xff,0x42,0x5f,0x9e, + 0xff,0x82,0x43,0x60,0x9f,0xff,0x05,0x44,0x61,0xa0,0xff,0x44,0x61,0xa1,0xff, + 0x45,0x62,0xa2,0xff,0x46,0x63,0xa2,0xff,0x47,0x63,0xa3,0xff,0x82,0x48,0x64, + 0xa4,0xff,0x10,0x49,0x65,0xa5,0xff,0x49,0x65,0xa6,0xff,0x4a,0x66,0xa6,0xff, + 0x4a,0x67,0xa7,0xff,0x4b,0x67,0xa8,0xff,0x4c,0x68,0xa9,0xff,0x4c,0x69,0xa9, + 0xff,0x4d,0x69,0xaa,0xff,0x4d,0x6a,0xab,0xff,0x4e,0x6a,0xac,0xff,0x4e,0x6b, + 0xac,0xff,0x4f,0x6c,0xad,0xff,0x4f,0x6c,0xae,0xff,0x50,0x6d,0xaf,0xff,0x51, + 0x6d,0xaf,0xff,0x51,0x6e,0xb0,0xff,0x84,0x52,0x6f,0xb1,0xff,0x01,0x51,0x6e, + 0xb0,0xff,0x83,0x50,0x6d,0xaf,0xff,0x83,0x4f,0x6c,0xae,0xff,0x83,0x4e,0x6b, + 0xad,0xff,0x84,0x4d,0x6a,0xac,0xff,0x2b,0x01,0x02,0x03,0xff,0x00,0x01,0x02, + 0xff,0x18,0x31,0x69,0xff,0x19,0x32,0x69,0xff,0x19,0x33,0x6a,0xff,0x1a,0x33, + 0x6b,0xff,0x1a,0x34,0x6b,0xff,0x1b,0x34,0x6c,0xff,0x1b,0x35,0x6d,0xff,0x1c, + 0x36,0x6d,0xff,0x1d,0x36,0x6e,0xff,0x1e,0x37,0x6f,0xff,0x1e,0x37,0x70,0xff, + 0x1f,0x38,0x70,0xff,0x20,0x39,0x71,0xff,0x20,0x39,0x72,0xff,0x21,0x3a,0x72, + 0xff,0x21,0x3a,0x73,0xff,0x22,0x3b,0x74,0xff,0x22,0x3b,0x75,0xff,0x23,0x3c, + 0x75,0xff,0x23,0x3d,0x76,0xff,0x24,0x3d,0x77,0xff,0x25,0x3e,0x77,0xff,0x25, + 0x3e,0x78,0xff,0x26,0x3f,0x79,0xff,0x26,0x40,0x79,0xff,0x27,0x40,0x7a,0xff, + 0x27,0x41,0x7b,0xff,0x28,0x41,0x7c,0xff,0x28,0x42,0x7c,0xff,0x29,0x43,0x7d, + 0xff,0x2a,0x43,0x7e,0xff,0x2a,0x44,0x7f,0xff,0x2b,0x45,0x7f,0xff,0x2b,0x45, + 0x80,0xff,0x2c,0x46,0x81,0xff,0x2c,0x47,0x81,0xff,0x2d,0x48,0x82,0xff,0x2d, + 0x48,0x83,0xff,0x2e,0x49,0x84,0xff,0x2e,0x4a,0x84,0xff,0x2f,0x4a,0x85,0xff, + 0x82,0x30,0x4b,0x86,0xff,0x09,0x31,0x4c,0x87,0xff,0x31,0x4d,0x88,0xff,0x32, + 0x4d,0x89,0xff,0x32,0x4e,0x89,0xff,0x33,0x4e,0x8a,0xff,0x33,0x4f,0x8b,0xff, + 0x34,0x50,0x8b,0xff,0x34,0x50,0x8c,0xff,0x35,0x51,0x8d,0xff,0x82,0x36,0x52, + 0x8e,0xff,0x03,0x37,0x53,0x8f,0xff,0x37,0x53,0x90,0xff,0x38,0x54,0x91,0xff, + 0x82,0x39,0x55,0x92,0xff,0x2a,0x3a,0x56,0x93,0xff,0x3a,0x56,0x94,0xff,0x3b, + 0x57,0x94,0xff,0x3b,0x58,0x95,0xff,0x3c,0x58,0x96,0xff,0x3c,0x59,0x96,0xff, + 0x3d,0x59,0x97,0xff,0x3d,0x5a,0x98,0xff,0x3e,0x5b,0x99,0xff,0x3f,0x5b,0x99, + 0xff,0x3f,0x5c,0x9a,0xff,0x40,0x5c,0x9b,0xff,0x40,0x5d,0x9b,0xff,0x41,0x5d, + 0x9c,0xff,0x41,0x5e,0x9d,0xff,0x42,0x5f,0x9d,0xff,0x42,0x5f,0x9e,0xff,0x43, + 0x60,0x9f,0xff,0x44,0x60,0xa0,0xff,0x44,0x61,0xa0,0xff,0x45,0x62,0xa1,0xff, + 0x45,0x62,0xa2,0xff,0x46,0x63,0xa2,0xff,0x47,0x63,0xa3,0xff,0x48,0x64,0xa4, + 0xff,0x48,0x65,0xa5,0xff,0x49,0x65,0xa5,0xff,0x49,0x66,0xa6,0xff,0x4a,0x66, + 0xa7,0xff,0x4b,0x67,0xa7,0xff,0x4b,0x68,0xa8,0xff,0x4c,0x68,0xa9,0xff,0x4c, + 0x69,0xaa,0xff,0x4d,0x69,0xaa,0xff,0x4d,0x6a,0xab,0xff,0x4e,0x6b,0xac,0xff, + 0x4f,0x6b,0xad,0xff,0x4f,0x6c,0xad,0xff,0x50,0x6c,0xae,0xff,0x50,0x6d,0xaf, + 0xff,0x51,0x6e,0xaf,0xff,0x51,0x6e,0xb0,0xff,0x8a,0x52,0x6f,0xb1,0xff,0x01, + 0x51,0x6e,0xb0,0xff,0x83,0x50,0x6d,0xaf,0xff,0x83,0x4f,0x6c,0xae,0xff,0x11, + 0x01,0x02,0x03,0xff,0x00,0x01,0x02,0xff,0x18,0x31,0x68,0xff,0x18,0x32,0x69, + 0xff,0x19,0x32,0x6a,0xff,0x19,0x33,0x6a,0xff,0x1a,0x33,0x6b,0xff,0x1a,0x34, + 0x6c,0xff,0x1b,0x35,0x6c,0xff,0x1b,0x35,0x6d,0xff,0x1c,0x36,0x6e,0xff,0x1d, + 0x36,0x6e,0xff,0x1e,0x37,0x6f,0xff,0x1f,0x37,0x70,0xff,0x1f,0x38,0x71,0xff, + 0x20,0x39,0x71,0xff,0x20,0x39,0x72,0xff,0x82,0x21,0x3a,0x73,0xff,0x10,0x22, + 0x3b,0x74,0xff,0x22,0x3c,0x75,0xff,0x23,0x3c,0x76,0xff,0x24,0x3d,0x76,0xff, + 0x24,0x3d,0x77,0xff,0x25,0x3e,0x78,0xff,0x25,0x3f,0x78,0xff,0x26,0x3f,0x79, + 0xff,0x26,0x40,0x7a,0xff,0x27,0x40,0x7a,0xff,0x27,0x41,0x7b,0xff,0x28,0x42, + 0x7c,0xff,0x29,0x42,0x7d,0xff,0x29,0x43,0x7d,0xff,0x2a,0x43,0x7e,0xff,0x2a, + 0x44,0x7f,0xff,0x82,0x2b,0x45,0x80,0xff,0x05,0x2c,0x46,0x81,0xff,0x2c,0x47, + 0x82,0xff,0x2d,0x48,0x82,0xff,0x2e,0x49,0x83,0xff,0x2e,0x49,0x84,0xff,0x82, + 0x2f,0x4a,0x85,0xff,0x0b,0x30,0x4b,0x86,0xff,0x30,0x4c,0x87,0xff,0x31,0x4c, + 0x87,0xff,0x31,0x4d,0x88,0xff,0x32,0x4d,0x89,0xff,0x32,0x4e,0x89,0xff,0x33, + 0x4f,0x8a,0xff,0x34,0x4f,0x8b,0xff,0x34,0x50,0x8c,0xff,0x35,0x50,0x8c,0xff, + 0x35,0x51,0x8d,0xff,0x82,0x36,0x52,0x8e,0xff,0x03,0x37,0x53,0x8f,0xff,0x38, + 0x54,0x90,0xff,0x38,0x54,0x91,0xff,0x82,0x39,0x55,0x92,0xff,0x28,0x3a,0x56, + 0x93,0xff,0x3a,0x57,0x94,0xff,0x3b,0x57,0x95,0xff,0x3c,0x58,0x95,0xff,0x3c, + 0x58,0x96,0xff,0x3d,0x59,0x97,0xff,0x3d,0x5a,0x97,0xff,0x3e,0x5a,0x98,0xff, + 0x3e,0x5b,0x99,0xff,0x3f,0x5b,0x9a,0xff,0x3f,0x5c,0x9a,0xff,0x40,0x5d,0x9b, + 0xff,0x40,0x5d,0x9c,0xff,0x41,0x5e,0x9c,0xff,0x41,0x5e,0x9d,0xff,0x42,0x5f, + 0x9e,0xff,0x43,0x5f,0x9e,0xff,0x43,0x60,0x9f,0xff,0x44,0x61,0xa0,0xff,0x44, + 0x61,0xa1,0xff,0x45,0x62,0xa1,0xff,0x45,0x62,0xa2,0xff,0x46,0x63,0xa3,0xff, + 0x47,0x64,0xa3,0xff,0x48,0x64,0xa4,0xff,0x49,0x65,0xa5,0xff,0x49,0x65,0xa6, + 0xff,0x4a,0x66,0xa6,0xff,0x4a,0x67,0xa7,0xff,0x4b,0x67,0xa8,0xff,0x4b,0x68, + 0xa9,0xff,0x4c,0x69,0xa9,0xff,0x4d,0x69,0xaa,0xff,0x4d,0x6a,0xab,0xff,0x4e, + 0x6a,0xab,0xff,0x4e,0x6b,0xac,0xff,0x4f,0x6b,0xad,0xff,0x4f,0x6c,0xae,0xff, + 0x50,0x6d,0xae,0xff,0x50,0x6d,0xaf,0xff,0x82,0x51,0x6e,0xb0,0xff,0x8f,0x52, + 0x6f,0xb1,0xff,0x0d,0x51,0x6e,0xb0,0xff,0x01,0x02,0x03,0xff,0x00,0x01,0x02, + 0xff,0x17,0x31,0x68,0xff,0x18,0x31,0x68,0xff,0x18,0x32,0x69,0xff,0x19,0x32, + 0x6a,0xff,0x19,0x33,0x6a,0xff,0x1a,0x34,0x6b,0xff,0x1b,0x34,0x6c,0xff,0x1b, + 0x35,0x6d,0xff,0x1c,0x35,0x6d,0xff,0x1d,0x36,0x6e,0xff,0x82,0x1e,0x37,0x6f, + 0xff,0x02,0x1f,0x38,0x70,0xff,0x1f,0x38,0x71,0xff,0x82,0x20,0x39,0x72,0xff, + 0x01,0x21,0x3a,0x73,0xff,0x82,0x22,0x3b,0x74,0xff,0x08,0x23,0x3c,0x75,0xff, + 0x23,0x3c,0x76,0xff,0x24,0x3d,0x76,0xff,0x24,0x3e,0x77,0xff,0x25,0x3e,0x78, + 0xff,0x25,0x3f,0x79,0xff,0x26,0x3f,0x79,0xff,0x26,0x40,0x7a,0xff,0x82,0x27, + 0x41,0x7b,0xff,0x17,0x28,0x42,0x7c,0xff,0x29,0x43,0x7d,0xff,0x29,0x43,0x7e, + 0xff,0x2a,0x44,0x7e,0xff,0x2a,0x44,0x7f,0xff,0x2b,0x45,0x80,0xff,0x2c,0x45, + 0x81,0xff,0x2c,0x46,0x81,0xff,0x2d,0x48,0x82,0xff,0x2d,0x48,0x83,0xff,0x2e, + 0x49,0x83,0xff,0x2e,0x49,0x84,0xff,0x2f,0x4a,0x85,0xff,0x2f,0x4b,0x86,0xff, + 0x30,0x4b,0x86,0xff,0x30,0x4c,0x87,0xff,0x31,0x4c,0x88,0xff,0x32,0x4d,0x88, + 0xff,0x32,0x4e,0x89,0xff,0x33,0x4e,0x8a,0xff,0x33,0x4f,0x8a,0xff,0x34,0x4f, + 0x8b,0xff,0x34,0x50,0x8c,0xff,0x82,0x35,0x51,0x8d,0xff,0x17,0x36,0x52,0x8e, + 0xff,0x36,0x52,0x8f,0xff,0x37,0x53,0x8f,0xff,0x38,0x54,0x90,0xff,0x38,0x54, + 0x91,0xff,0x39,0x55,0x92,0xff,0x39,0x56,0x93,0xff,0x3a,0x56,0x93,0xff,0x3b, + 0x57,0x94,0xff,0x3b,0x57,0x95,0xff,0x3c,0x58,0x95,0xff,0x3c,0x59,0x96,0xff, + 0x3d,0x59,0x97,0xff,0x3d,0x5a,0x98,0xff,0x3e,0x5a,0x98,0xff,0x3e,0x5b,0x99, + 0xff,0x3f,0x5c,0x9a,0xff,0x40,0x5c,0x9a,0xff,0x40,0x5d,0x9b,0xff,0x41,0x5d, + 0x9c,0xff,0x41,0x5e,0x9d,0xff,0x42,0x5e,0x9d,0xff,0x42,0x5f,0x9e,0xff,0x82, + 0x43,0x60,0x9f,0xff,0x05,0x44,0x61,0xa0,0xff,0x44,0x61,0xa1,0xff,0x45,0x62, + 0xa2,0xff,0x46,0x63,0xa2,0xff,0x47,0x63,0xa3,0xff,0x82,0x48,0x64,0xa4,0xff, + 0x09,0x49,0x65,0xa5,0xff,0x49,0x66,0xa6,0xff,0x4a,0x66,0xa6,0xff,0x4b,0x67, + 0xa7,0xff,0x4b,0x67,0xa8,0xff,0x4c,0x68,0xa9,0xff,0x4c,0x69,0xaa,0xff,0x4d, + 0x69,0xaa,0xff,0x4d,0x6a,0xab,0xff,0x82,0x4e,0x6b,0xac,0xff,0x05,0x4f,0x6c, + 0xad,0xff,0x4f,0x6c,0xae,0xff,0x50,0x6d,0xae,0xff,0x50,0x6d,0xaf,0xff,0x51, + 0x6e,0xb0,0xff,0x90,0x52,0x6f,0xb1,0xff,0x04,0x01,0x02,0x03,0xff,0x00,0x01, + 0x02,0xff,0x17,0x30,0x67,0xff,0x17,0x31,0x68,0xff,0x82,0x18,0x31,0x68,0xff, + 0x02,0x19,0x32,0x69,0xff,0x1a,0x32,0x69,0xff,0x82,0x1a,0x33,0x6a,0xff,0x33, + 0x1b,0x34,0x6b,0xff,0x1c,0x34,0x6b,0xff,0x1c,0x35,0x6c,0xff,0x1d,0x35,0x6d, + 0xff,0x1d,0x36,0x6e,0xff,0x1e,0x37,0x6e,0xff,0x1f,0x38,0x6f,0xff,0x1f,0x38, + 0x70,0xff,0x20,0x39,0x70,0xff,0x20,0x39,0x71,0xff,0x21,0x3a,0x72,0xff,0x21, + 0x3a,0x73,0xff,0x22,0x3b,0x73,0xff,0x22,0x3c,0x74,0xff,0x23,0x3c,0x75,0xff, + 0x23,0x3d,0x75,0xff,0x24,0x3d,0x76,0xff,0x25,0x3e,0x77,0xff,0x25,0x3f,0x78, + 0xff,0x26,0x3f,0x79,0xff,0x26,0x40,0x7a,0xff,0x27,0x41,0x7b,0xff,0x28,0x42, + 0x7c,0xff,0x28,0x42,0x7d,0xff,0x29,0x43,0x7d,0xff,0x2a,0x44,0x7e,0xff,0x2b, + 0x44,0x7f,0xff,0x2b,0x45,0x80,0xff,0x2c,0x46,0x81,0xff,0x2c,0x47,0x82,0xff, + 0x2d,0x48,0x82,0xff,0x2d,0x48,0x83,0xff,0x2e,0x49,0x84,0xff,0x2e,0x4a,0x84, + 0xff,0x2f,0x4a,0x85,0xff,0x30,0x4b,0x86,0xff,0x30,0x4b,0x87,0xff,0x31,0x4c, + 0x87,0xff,0x31,0x4d,0x88,0xff,0x32,0x4d,0x89,0xff,0x32,0x4e,0x89,0xff,0x33, + 0x4e,0x8a,0xff,0x33,0x4f,0x8b,0xff,0x34,0x50,0x8b,0xff,0x34,0x50,0x8c,0xff, + 0x35,0x51,0x8d,0xff,0x36,0x51,0x8e,0xff,0x36,0x52,0x8e,0xff,0x37,0x52,0x8f, + 0xff,0x37,0x53,0x90,0xff,0x38,0x54,0x90,0xff,0x82,0x39,0x55,0x92,0xff,0x0f, + 0x3a,0x56,0x93,0xff,0x3a,0x56,0x94,0xff,0x3b,0x57,0x94,0xff,0x3b,0x58,0x95, + 0xff,0x3c,0x58,0x96,0xff,0x3c,0x59,0x96,0xff,0x3d,0x59,0x97,0xff,0x3e,0x5a, + 0x98,0xff,0x3e,0x5b,0x99,0xff,0x3f,0x5b,0x99,0xff,0x3f,0x5c,0x9a,0xff,0x40, + 0x5c,0x9b,0xff,0x40,0x5d,0x9b,0xff,0x41,0x5d,0x9c,0xff,0x41,0x5e,0x9d,0xff, + 0x82,0x42,0x5f,0x9e,0xff,0x19,0x43,0x60,0x9f,0xff,0x44,0x60,0xa0,0xff,0x44, + 0x61,0xa0,0xff,0x45,0x62,0xa1,0xff,0x45,0x62,0xa2,0xff,0x46,0x63,0xa3,0xff, + 0x47,0x63,0xa3,0xff,0x48,0x64,0xa4,0xff,0x48,0x65,0xa5,0xff,0x49,0x65,0xa5, + 0xff,0x49,0x66,0xa6,0xff,0x4a,0x66,0xa7,0xff,0x4b,0x67,0xa8,0xff,0x4b,0x68, + 0xa8,0xff,0x4c,0x68,0xa9,0xff,0x4c,0x69,0xaa,0xff,0x4d,0x6a,0xaa,0xff,0x4d, + 0x6a,0xab,0xff,0x4e,0x6b,0xac,0xff,0x4f,0x6b,0xad,0xff,0x4f,0x6c,0xad,0xff, + 0x50,0x6c,0xae,0xff,0x50,0x6d,0xaf,0xff,0x51,0x6e,0xaf,0xff,0x51,0x6e,0xb0, + 0xff,0x8f,0x52,0x6f,0xb1,0xff,0x02,0x01,0x02,0x03,0xff,0x00,0x01,0x02,0xff, + 0x82,0x16,0x2e,0x64,0xff,0x0e,0x17,0x2f,0x64,0xff,0x17,0x2f,0x65,0xff,0x18, + 0x30,0x65,0xff,0x18,0x30,0x66,0xff,0x19,0x31,0x67,0xff,0x21,0x37,0x68,0xff, + 0x54,0x5b,0x6f,0xff,0x73,0x70,0x70,0xff,0x5f,0x60,0x6b,0xff,0x5e,0x5f,0x6a, + 0xff,0x26,0x3b,0x69,0xff,0x1c,0x35,0x6b,0xff,0x1d,0x36,0x6c,0xff,0x1d,0x36, + 0x6d,0xff,0x82,0x1e,0x37,0x6e,0xff,0x18,0x1f,0x38,0x6f,0xff,0x1f,0x39,0x70, + 0xff,0x20,0x39,0x70,0xff,0x20,0x3a,0x71,0xff,0x21,0x3a,0x72,0xff,0x22,0x3b, + 0x72,0xff,0x22,0x3c,0x73,0xff,0x23,0x3c,0x74,0xff,0x23,0x3d,0x75,0xff,0x24, + 0x3d,0x76,0xff,0x24,0x3e,0x77,0xff,0x25,0x3f,0x78,0xff,0x26,0x3f,0x78,0xff, + 0x26,0x40,0x79,0xff,0x27,0x41,0x7a,0xff,0x28,0x42,0x7b,0xff,0x29,0x42,0x7c, + 0xff,0x29,0x43,0x7d,0xff,0x2a,0x44,0x7e,0xff,0x2b,0x45,0x7f,0xff,0x2c,0x46, + 0x80,0xff,0x2c,0x47,0x81,0xff,0x2d,0x48,0x83,0xff,0x2e,0x49,0x84,0xff,0x82, + 0x2f,0x4a,0x85,0xff,0x0b,0x30,0x4b,0x86,0xff,0x30,0x4c,0x87,0xff,0x31,0x4c, + 0x87,0xff,0x31,0x4d,0x88,0xff,0x32,0x4d,0x89,0xff,0x32,0x4e,0x8a,0xff,0x33, + 0x4f,0x8a,0xff,0x34,0x4f,0x8b,0xff,0x34,0x50,0x8c,0xff,0x35,0x50,0x8c,0xff, + 0x35,0x51,0x8d,0xff,0x82,0x36,0x52,0x8e,0xff,0x2d,0x37,0x53,0x8f,0xff,0x37, + 0x53,0x90,0xff,0x38,0x54,0x91,0xff,0x38,0x54,0x92,0xff,0x39,0x55,0x93,0xff, + 0x3a,0x56,0x93,0xff,0x3a,0x57,0x94,0xff,0x3b,0x57,0x95,0xff,0x3b,0x58,0x95, + 0xff,0x3c,0x58,0x96,0xff,0x3d,0x59,0x97,0xff,0x3d,0x5a,0x97,0xff,0x3e,0x5a, + 0x98,0xff,0x3e,0x5b,0x99,0xff,0x3f,0x5b,0x9a,0xff,0x3f,0x5c,0x9a,0xff,0x40, + 0x5d,0x9b,0xff,0x40,0x5d,0x9c,0xff,0x41,0x5e,0x9c,0xff,0x42,0x5e,0x9d,0xff, + 0x42,0x5f,0x9e,0xff,0x43,0x5f,0x9e,0xff,0x43,0x60,0x9f,0xff,0x44,0x61,0xa0, + 0xff,0x44,0x61,0xa1,0xff,0x45,0x62,0xa1,0xff,0x45,0x62,0xa2,0xff,0x46,0x63, + 0xa3,0xff,0x47,0x64,0xa3,0xff,0x48,0x64,0xa4,0xff,0x49,0x65,0xa5,0xff,0x49, + 0x65,0xa6,0xff,0x4a,0x66,0xa7,0xff,0x4a,0x67,0xa7,0xff,0x4b,0x67,0xa8,0xff, + 0x4b,0x68,0xa9,0xff,0x4c,0x69,0xa9,0xff,0x4d,0x69,0xaa,0xff,0x4d,0x6a,0xab, + 0xff,0x4e,0x6a,0xab,0xff,0x4e,0x6b,0xac,0xff,0x4f,0x6c,0xad,0xff,0x4f,0x6c, + 0xae,0xff,0x50,0x6d,0xae,0xff,0x50,0x6d,0xaf,0xff,0x82,0x51,0x6e,0xb0,0xff, + 0x8c,0x52,0x6f,0xb1,0xff,0x1c,0x51,0x6e,0xb0,0xff,0x50,0x6d,0xaf,0xff,0x01, + 0x02,0x03,0xff,0x00,0x01,0x02,0xff,0x15,0x2c,0x61,0xff,0x15,0x2d,0x62,0xff, + 0x16,0x2d,0x62,0xff,0x17,0x2e,0x63,0xff,0x17,0x2f,0x64,0xff,0x18,0x2f,0x65, + 0xff,0x18,0x30,0x65,0xff,0x28,0x3c,0x69,0xff,0x8d,0x83,0x77,0xff,0xd0,0xb1, + 0x80,0xff,0xbb,0xa2,0x7d,0xff,0xb8,0xa0,0x7d,0xff,0x56,0x5c,0x6f,0xff,0x1b, + 0x34,0x6b,0xff,0x1c,0x35,0x6c,0xff,0x1c,0x36,0x6c,0xff,0x1d,0x36,0x6d,0xff, + 0x1e,0x37,0x6e,0xff,0x1e,0x38,0x6f,0xff,0x1f,0x38,0x6f,0xff,0x20,0x39,0x70, + 0xff,0x20,0x39,0x71,0xff,0x21,0x3a,0x71,0xff,0x21,0x3b,0x72,0xff,0x82,0x22, + 0x3b,0x73,0xff,0x08,0x22,0x3c,0x74,0xff,0x23,0x3c,0x74,0xff,0x23,0x3d,0x75, + 0xff,0x24,0x3e,0x76,0xff,0x25,0x3e,0x77,0xff,0x25,0x3f,0x77,0xff,0x26,0x40, + 0x78,0xff,0x26,0x40,0x79,0xff,0x82,0x27,0x41,0x7a,0xff,0x12,0x28,0x42,0x7b, + 0xff,0x29,0x43,0x7c,0xff,0x2a,0x44,0x7d,0xff,0x2b,0x45,0x7e,0xff,0x2b,0x46, + 0x80,0xff,0x2c,0x47,0x80,0xff,0x2d,0x47,0x82,0xff,0x2e,0x48,0x83,0xff,0x2f, + 0x49,0x84,0xff,0x2f,0x4b,0x86,0xff,0x30,0x4c,0x87,0xff,0x31,0x4c,0x88,0xff, + 0x32,0x4d,0x88,0xff,0x32,0x4e,0x89,0xff,0x33,0x4e,0x8a,0xff,0x33,0x4f,0x8a, + 0xff,0x34,0x4f,0x8b,0xff,0x34,0x50,0x8c,0xff,0x82,0x35,0x51,0x8d,0xff,0x05, + 0x36,0x52,0x8e,0xff,0x36,0x52,0x8f,0xff,0x37,0x53,0x8f,0xff,0x38,0x53,0x90, + 0xff,0x38,0x54,0x91,0xff,0x82,0x39,0x55,0x92,0xff,0x10,0x3a,0x56,0x93,0xff, + 0x3b,0x57,0x94,0xff,0x3b,0x57,0x95,0xff,0x3c,0x58,0x96,0xff,0x3c,0x59,0x96, + 0xff,0x3d,0x59,0x97,0xff,0x3d,0x5a,0x98,0xff,0x3e,0x5a,0x98,0xff,0x3e,0x5b, + 0x99,0xff,0x3f,0x5c,0x9a,0xff,0x40,0x5c,0x9b,0xff,0x40,0x5d,0x9b,0xff,0x41, + 0x5d,0x9c,0xff,0x41,0x5e,0x9d,0xff,0x42,0x5f,0x9d,0xff,0x42,0x5f,0x9e,0xff, + 0x82,0x43,0x60,0x9f,0xff,0x04,0x44,0x61,0xa0,0xff,0x44,0x61,0xa1,0xff,0x45, + 0x62,0xa2,0xff,0x46,0x63,0xa2,0xff,0x82,0x47,0x63,0xa3,0xff,0x84,0x48,0x64, + 0xa4,0xff,0x0d,0x48,0x64,0xa5,0xff,0x48,0x65,0xa6,0xff,0x49,0x66,0xa6,0xff, + 0x4a,0x67,0xa7,0xff,0x4b,0x68,0xa9,0xff,0x4c,0x69,0xaa,0xff,0x4e,0x6a,0xab, + 0xff,0x4e,0x6b,0xac,0xff,0x4f,0x6c,0xad,0xff,0x4f,0x6c,0xae,0xff,0x50,0x6d, + 0xaf,0xff,0x51,0x6d,0xaf,0xff,0x51,0x6e,0xb0,0xff,0x86,0x52,0x6f,0xb1,0xff, + 0x82,0x51,0x6e,0xb0,0xff,0x82,0x50,0x6d,0xaf,0xff,0x82,0x4f,0x6c,0xae,0xff, + 0x82,0x4e,0x6b,0xad,0xff,0x11,0x01,0x02,0x03,0xff,0x00,0x01,0x02,0xff,0x14, + 0x2c,0x60,0xff,0x15,0x2c,0x61,0xff,0x16,0x2d,0x62,0xff,0x16,0x2e,0x63,0xff, + 0x17,0x2f,0x65,0xff,0x18,0x30,0x66,0xff,0x19,0x31,0x68,0xff,0x26,0x3b,0x6a, + 0xff,0x87,0x7f,0x78,0xff,0xdc,0xbb,0x8a,0xff,0xa2,0x91,0x78,0xff,0x93,0x84, + 0x72,0xff,0x58,0x5a,0x67,0xff,0x1d,0x35,0x6d,0xff,0x1d,0x36,0x6e,0xff,0x82, + 0x1e,0x37,0x6f,0xff,0x0c,0x1f,0x38,0x70,0xff,0x1f,0x39,0x71,0xff,0x20,0x39, + 0x71,0xff,0x21,0x3a,0x72,0xff,0x21,0x3b,0x73,0xff,0x22,0x3b,0x74,0xff,0x23, + 0x3c,0x74,0xff,0x23,0x3c,0x75,0xff,0x23,0x3d,0x76,0xff,0x24,0x3d,0x76,0xff, + 0x24,0x3e,0x77,0xff,0x25,0x3e,0x77,0xff,0x82,0x25,0x3f,0x78,0xff,0x82,0x26, + 0x40,0x79,0xff,0x82,0x27,0x41,0x7a,0xff,0x01,0x28,0x41,0x7b,0xff,0x82,0x28, + 0x42,0x7b,0xff,0x28,0x29,0x43,0x7c,0xff,0x29,0x43,0x7d,0xff,0x2a,0x44,0x7d, + 0xff,0x2a,0x44,0x7e,0xff,0x2b,0x45,0x7f,0xff,0x2c,0x46,0x80,0xff,0x2d,0x46, + 0x81,0xff,0x2e,0x47,0x82,0xff,0x2e,0x48,0x84,0xff,0x2f,0x4a,0x85,0xff,0x31, + 0x4b,0x86,0xff,0x31,0x4d,0x88,0xff,0x32,0x4e,0x89,0xff,0x33,0x4e,0x8a,0xff, + 0x33,0x4f,0x8b,0xff,0x34,0x50,0x8b,0xff,0x34,0x50,0x8c,0xff,0x35,0x51,0x8d, + 0xff,0x36,0x51,0x8e,0xff,0x36,0x52,0x8e,0xff,0x37,0x53,0x8f,0xff,0x37,0x53, + 0x90,0xff,0x38,0x54,0x90,0xff,0x38,0x54,0x91,0xff,0x39,0x55,0x92,0xff,0x39, + 0x55,0x93,0xff,0x3a,0x56,0x93,0xff,0x3a,0x57,0x94,0xff,0x3b,0x58,0x95,0xff, + 0x3c,0x58,0x96,0xff,0x3c,0x59,0x96,0xff,0x3d,0x59,0x97,0xff,0x3e,0x5a,0x98, + 0xff,0x3e,0x5b,0x99,0xff,0x3f,0x5b,0x99,0xff,0x3f,0x5c,0x9a,0xff,0x40,0x5c, + 0x9b,0xff,0x40,0x5d,0x9b,0xff,0x41,0x5e,0x9c,0xff,0x41,0x5e,0x9d,0xff,0x82, + 0x42,0x5f,0x9e,0xff,0x01,0x43,0x60,0x9f,0xff,0x82,0x44,0x61,0xa0,0xff,0x82, + 0x44,0x61,0xa1,0xff,0x03,0x44,0x60,0xa0,0xff,0x45,0x60,0xa0,0xff,0x45,0x61, + 0xa0,0xff,0x83,0x45,0x61,0xa1,0xff,0x0b,0x45,0x62,0xa2,0xff,0x46,0x62,0xa3, + 0xff,0x46,0x63,0xa3,0xff,0x47,0x64,0xa4,0xff,0x48,0x65,0xa6,0xff,0x49,0x66, + 0xa7,0xff,0x4b,0x67,0xa9,0xff,0x4c,0x69,0xaa,0xff,0x4e,0x6a,0xac,0xff,0x4f, + 0x6c,0xad,0xff,0x50,0x6c,0xae,0xff,0x82,0x50,0x6d,0xaf,0xff,0x82,0x51,0x6e, + 0xb0,0xff,0x82,0x50,0x6d,0xaf,0xff,0x83,0x4f,0x6c,0xae,0xff,0x82,0x4e,0x6b, + 0xad,0xff,0x85,0x4d,0x6a,0xac,0xff,0x15,0x01,0x02,0x03,0xff,0x00,0x01,0x02, + 0xff,0x14,0x2b,0x60,0xff,0x15,0x2c,0x61,0xff,0x16,0x2e,0x63,0xff,0x17,0x2f, + 0x65,0xff,0x17,0x31,0x67,0xff,0x18,0x31,0x68,0xff,0x18,0x32,0x69,0xff,0x24, + 0x3a,0x6c,0xff,0x74,0x71,0x75,0xff,0xb8,0x98,0x6f,0xff,0x89,0x68,0x51,0xff, + 0x81,0x62,0x4e,0xff,0x51,0x46,0x51,0xff,0x1e,0x36,0x6e,0xff,0x1e,0x37,0x6f, + 0xff,0x1f,0x38,0x70,0xff,0x1f,0x38,0x71,0xff,0x20,0x39,0x71,0xff,0x20,0x39, + 0x72,0xff,0x82,0x21,0x3a,0x73,0xff,0x08,0x22,0x3b,0x74,0xff,0x22,0x3c,0x75, + 0xff,0x23,0x3c,0x76,0xff,0x24,0x3d,0x76,0xff,0x24,0x3e,0x77,0xff,0x25,0x3e, + 0x78,0xff,0x25,0x3f,0x78,0xff,0x26,0x3f,0x79,0xff,0x82,0x26,0x40,0x7a,0xff, + 0x04,0x27,0x41,0x7b,0xff,0x28,0x41,0x7b,0xff,0x28,0x42,0x7c,0xff,0x28,0x42, + 0x7d,0xff,0x82,0x29,0x43,0x7d,0xff,0x82,0x2a,0x44,0x7e,0xff,0x02,0x2a,0x44, + 0x7f,0xff,0x2a,0x45,0x7f,0xff,0x83,0x2b,0x45,0x7f,0xff,0x82,0x2c,0x45,0x80, + 0xff,0x0f,0x2d,0x46,0x81,0xff,0x2d,0x47,0x82,0xff,0x2f,0x48,0x83,0xff,0x2f, + 0x49,0x85,0xff,0x31,0x4b,0x86,0xff,0x32,0x4d,0x89,0xff,0x33,0x4f,0x8a,0xff, + 0x34,0x4f,0x8b,0xff,0x34,0x50,0x8c,0xff,0x35,0x50,0x8c,0xff,0x35,0x51,0x8d, + 0xff,0x36,0x52,0x8e,0xff,0x36,0x52,0x8f,0xff,0x37,0x53,0x8f,0xff,0x37,0x53, + 0x90,0xff,0x82,0x38,0x54,0x91,0xff,0x10,0x39,0x55,0x92,0xff,0x3a,0x56,0x93, + 0xff,0x3a,0x56,0x94,0xff,0x3b,0x57,0x94,0xff,0x3b,0x58,0x95,0xff,0x3c,0x58, + 0x96,0xff,0x3d,0x59,0x97,0xff,0x3d,0x5a,0x97,0xff,0x3e,0x5a,0x98,0xff,0x3e, + 0x5b,0x99,0xff,0x3f,0x5b,0x9a,0xff,0x3f,0x5c,0x9a,0xff,0x40,0x5d,0x9b,0xff, + 0x40,0x5d,0x9c,0xff,0x41,0x5e,0x9c,0xff,0x42,0x5e,0x9d,0xff,0x82,0x42,0x5f, + 0x9e,0xff,0x83,0x42,0x5e,0x9d,0xff,0x01,0x42,0x5e,0x9e,0xff,0x82,0x43,0x5e, + 0x9e,0xff,0x03,0x43,0x5f,0x9e,0xff,0x44,0x5f,0x9f,0xff,0x45,0x60,0xa0,0xff, + 0x82,0x45,0x61,0xa1,0xff,0x0c,0x45,0x62,0xa2,0xff,0x46,0x62,0xa3,0xff,0x46, + 0x63,0xa4,0xff,0x47,0x63,0xa4,0xff,0x48,0x64,0xa5,0xff,0x48,0x65,0xa6,0xff, + 0x49,0x66,0xa7,0xff,0x4b,0x67,0xa8,0xff,0x4c,0x69,0xaa,0xff,0x4c,0x69,0xab, + 0xff,0x4d,0x6a,0xab,0xff,0x4d,0x6a,0xac,0xff,0x83,0x4e,0x6b,0xad,0xff,0x8b, + 0x4d,0x6a,0xac,0xff,0x10,0x01,0x02,0x03,0xff,0x00,0x01,0x02,0xff,0x14,0x2b, + 0x5f,0xff,0x14,0x2c,0x62,0xff,0x16,0x2f,0x65,0xff,0x16,0x30,0x66,0xff,0x17, + 0x30,0x67,0xff,0x17,0x31,0x68,0xff,0x18,0x31,0x69,0xff,0x1d,0x35,0x6a,0xff, + 0x39,0x48,0x6d,0xff,0x4f,0x51,0x64,0xff,0x55,0x49,0x54,0xff,0x5f,0x4f,0x54, + 0xff,0x38,0x3c,0x5c,0xff,0x1d,0x36,0x6e,0xff,0x82,0x1e,0x37,0x6f,0xff,0x05, + 0x1f,0x38,0x70,0xff,0x1f,0x38,0x71,0xff,0x20,0x39,0x72,0xff,0x21,0x3a,0x72, + 0xff,0x21,0x3a,0x73,0xff,0x82,0x22,0x3b,0x74,0xff,0x0f,0x23,0x3c,0x75,0xff, + 0x23,0x3c,0x76,0xff,0x24,0x3d,0x77,0xff,0x24,0x3e,0x77,0xff,0x25,0x3e,0x78, + 0xff,0x25,0x3f,0x79,0xff,0x26,0x40,0x7a,0xff,0x27,0x40,0x7a,0xff,0x27,0x41, + 0x7b,0xff,0x28,0x41,0x7c,0xff,0x28,0x42,0x7c,0xff,0x29,0x43,0x7d,0xff,0x29, + 0x43,0x7e,0xff,0x2a,0x44,0x7f,0xff,0x2b,0x44,0x7f,0xff,0x82,0x2b,0x45,0x80, + 0xff,0x01,0x2c,0x46,0x81,0xff,0x82,0x2c,0x47,0x81,0xff,0x01,0x2d,0x47,0x81, + 0xff,0x83,0x2d,0x47,0x82,0xff,0x09,0x2d,0x46,0x81,0xff,0x2e,0x47,0x82,0xff, + 0x2e,0x47,0x83,0xff,0x2f,0x48,0x84,0xff,0x30,0x4a,0x85,0xff,0x32,0x4c,0x88, + 0xff,0x33,0x4f,0x8a,0xff,0x34,0x4f,0x8b,0xff,0x34,0x50,0x8c,0xff,0x82,0x35, + 0x51,0x8d,0xff,0x05,0x36,0x52,0x8e,0xff,0x36,0x52,0x8f,0xff,0x37,0x53,0x8f, + 0xff,0x38,0x54,0x90,0xff,0x38,0x54,0x91,0xff,0x82,0x39,0x55,0x92,0xff,0x0a, + 0x3a,0x56,0x93,0xff,0x3a,0x57,0x94,0xff,0x3b,0x57,0x95,0xff,0x3b,0x58,0x95, + 0xff,0x3c,0x59,0x96,0xff,0x3d,0x59,0x97,0xff,0x3d,0x5a,0x98,0xff,0x3e,0x5a, + 0x98,0xff,0x3e,0x5b,0x99,0xff,0x3f,0x5c,0x9a,0xff,0x85,0x40,0x5c,0x9b,0xff, + 0x82,0x40,0x5b,0x9a,0xff,0x82,0x41,0x5c,0x9b,0xff,0x0f,0x41,0x5c,0x9c,0xff, + 0x42,0x5d,0x9d,0xff,0x43,0x5e,0x9d,0xff,0x43,0x5e,0x9e,0xff,0x44,0x5f,0x9f, + 0xff,0x44,0x60,0xa0,0xff,0x45,0x60,0xa0,0xff,0x45,0x61,0xa1,0xff,0x45,0x61, + 0xa2,0xff,0x46,0x62,0xa2,0xff,0x46,0x63,0xa3,0xff,0x47,0x63,0xa4,0xff,0x47, + 0x64,0xa5,0xff,0x48,0x64,0xa5,0xff,0x48,0x65,0xa6,0xff,0x82,0x49,0x66,0xa7, + 0xff,0x05,0x4a,0x67,0xa8,0xff,0x4a,0x67,0xa9,0xff,0x4b,0x68,0xaa,0xff,0x4c, + 0x68,0xaa,0xff,0x4c,0x69,0xab,0xff,0x8a,0x4d,0x6a,0xac,0xff,0x82,0x4e,0x6b, + 0xad,0xff,0x16,0x01,0x02,0x03,0xff,0x00,0x01,0x02,0xff,0x13,0x2b,0x5f,0xff, + 0x14,0x2c,0x61,0xff,0x16,0x2f,0x65,0xff,0x16,0x2f,0x66,0xff,0x17,0x30,0x67, + 0xff,0x18,0x32,0x68,0xff,0x24,0x3c,0x6e,0xff,0x2a,0x40,0x71,0xff,0x2e,0x43, + 0x72,0xff,0x2a,0x3f,0x6f,0xff,0x32,0x43,0x6e,0xff,0x3c,0x4a,0x6f,0xff,0x2e, + 0x44,0x73,0xff,0x2c,0x43,0x75,0xff,0x25,0x3d,0x72,0xff,0x1e,0x37,0x6f,0xff, + 0x1e,0x37,0x70,0xff,0x1f,0x38,0x70,0xff,0x20,0x39,0x71,0xff,0x20,0x39,0x72, + 0xff,0x82,0x21,0x3a,0x73,0xff,0x10,0x22,0x3b,0x74,0xff,0x22,0x3b,0x75,0xff, + 0x23,0x3c,0x75,0xff,0x23,0x3d,0x76,0xff,0x24,0x3d,0x77,0xff,0x25,0x3e,0x77, + 0xff,0x25,0x3e,0x78,0xff,0x26,0x3f,0x79,0xff,0x26,0x40,0x7a,0xff,0x27,0x40, + 0x7b,0xff,0x27,0x41,0x7b,0xff,0x28,0x42,0x7c,0xff,0x28,0x42,0x7d,0xff,0x29, + 0x43,0x7d,0xff,0x2a,0x43,0x7e,0xff,0x2a,0x44,0x7f,0xff,0x82,0x2b,0x45,0x80, + 0xff,0x05,0x2c,0x46,0x81,0xff,0x2c,0x47,0x82,0xff,0x2d,0x48,0x82,0xff,0x2d, + 0x49,0x83,0xff,0x2e,0x49,0x83,0xff,0x83,0x2e,0x49,0x84,0xff,0x15,0x2e,0x48, + 0x83,0xff,0x2e,0x47,0x83,0xff,0x2e,0x48,0x83,0xff,0x2f,0x48,0x84,0xff,0x30, + 0x4a,0x85,0xff,0x32,0x4d,0x88,0xff,0x33,0x4f,0x8b,0xff,0x34,0x50,0x8b,0xff, + 0x34,0x50,0x8c,0xff,0x35,0x51,0x8d,0xff,0x36,0x51,0x8e,0xff,0x36,0x52,0x8e, + 0xff,0x37,0x52,0x8f,0xff,0x37,0x53,0x90,0xff,0x38,0x54,0x90,0xff,0x38,0x54, + 0x91,0xff,0x39,0x55,0x92,0xff,0x39,0x56,0x92,0xff,0x3a,0x56,0x93,0xff,0x3b, + 0x57,0x94,0xff,0x3b,0x57,0x95,0xff,0x82,0x3c,0x58,0x96,0xff,0x01,0x3d,0x59, + 0x97,0xff,0x83,0x3e,0x5a,0x98,0xff,0x84,0x3e,0x59,0x98,0xff,0x01,0x3f,0x59, + 0x98,0xff,0x82,0x3f,0x5a,0x99,0xff,0x01,0x40,0x5b,0x9a,0xff,0x82,0x41,0x5c, + 0x9b,0xff,0x02,0x42,0x5d,0x9c,0xff,0x42,0x5d,0x9d,0xff,0x82,0x43,0x5e,0x9e, + 0xff,0x09,0x44,0x5f,0x9f,0xff,0x45,0x60,0xa0,0xff,0x45,0x60,0xa1,0xff,0x45, + 0x61,0xa1,0xff,0x45,0x62,0xa2,0xff,0x46,0x62,0xa3,0xff,0x46,0x63,0xa3,0xff, + 0x47,0x63,0xa4,0xff,0x47,0x64,0xa5,0xff,0x82,0x48,0x65,0xa6,0xff,0x07,0x49, + 0x66,0xa7,0xff,0x4a,0x66,0xa8,0xff,0x4a,0x67,0xa8,0xff,0x4b,0x67,0xa9,0xff, + 0x4b,0x68,0xaa,0xff,0x4c,0x69,0xaa,0xff,0x4c,0x69,0xab,0xff,0x85,0x4d,0x6a, + 0xac,0xff,0x82,0x4e,0x6b,0xad,0xff,0x82,0x4f,0x6c,0xae,0xff,0x2b,0x50,0x6d, + 0xaf,0xff,0x51,0x6e,0xb0,0xff,0x01,0x02,0x03,0xff,0x00,0x01,0x02,0xff,0x13, + 0x2a,0x5f,0xff,0x14,0x2b,0x60,0xff,0x15,0x2e,0x63,0xff,0x16,0x2f,0x66,0xff, + 0x16,0x30,0x66,0xff,0x1a,0x32,0x68,0xff,0x30,0x44,0x70,0xff,0x3d,0x4e,0x72, + 0xff,0x3a,0x4b,0x72,0xff,0x34,0x47,0x72,0xff,0x2f,0x43,0x70,0xff,0x39,0x4c, + 0x73,0xff,0x3b,0x4d,0x72,0xff,0x3a,0x4d,0x75,0xff,0x2d,0x42,0x70,0xff,0x1e, + 0x36,0x6f,0xff,0x1e,0x37,0x6f,0xff,0x1f,0x38,0x70,0xff,0x1f,0x38,0x71,0xff, + 0x20,0x39,0x71,0xff,0x20,0x39,0x72,0xff,0x21,0x3a,0x73,0xff,0x21,0x3b,0x74, + 0xff,0x22,0x3b,0x74,0xff,0x23,0x3c,0x75,0xff,0x23,0x3c,0x76,0xff,0x24,0x3d, + 0x76,0xff,0x24,0x3d,0x77,0xff,0x25,0x3e,0x78,0xff,0x25,0x3f,0x79,0xff,0x26, + 0x3f,0x79,0xff,0x27,0x40,0x7a,0xff,0x27,0x41,0x7b,0xff,0x28,0x41,0x7b,0xff, + 0x28,0x42,0x7c,0xff,0x29,0x42,0x7d,0xff,0x29,0x43,0x7e,0xff,0x2a,0x44,0x7e, + 0xff,0x2a,0x44,0x7f,0xff,0x82,0x2b,0x45,0x80,0xff,0x05,0x2c,0x46,0x81,0xff, + 0x2c,0x48,0x82,0xff,0x2d,0x48,0x83,0xff,0x2e,0x49,0x83,0xff,0x2e,0x49,0x84, + 0xff,0x83,0x2f,0x4a,0x85,0xff,0x01,0x2f,0x49,0x85,0xff,0x82,0x2e,0x48,0x83, + 0xff,0x0b,0x2f,0x48,0x84,0xff,0x30,0x4a,0x86,0xff,0x32,0x4d,0x89,0xff,0x34, + 0x4f,0x8b,0xff,0x34,0x50,0x8c,0xff,0x35,0x50,0x8c,0xff,0x35,0x51,0x8d,0xff, + 0x36,0x52,0x8e,0xff,0x36,0x52,0x8f,0xff,0x37,0x53,0x8f,0xff,0x37,0x53,0x90, + 0xff,0x82,0x38,0x54,0x91,0xff,0x01,0x39,0x55,0x92,0xff,0x82,0x3a,0x56,0x93, + 0xff,0x01,0x3b,0x57,0x94,0xff,0x82,0x3b,0x57,0x95,0xff,0x04,0x3c,0x57,0x95, + 0xff,0x3c,0x57,0x94,0xff,0x3b,0x57,0x95,0xff,0x3c,0x56,0x95,0xff,0x82,0x3c, + 0x57,0x95,0xff,0x05,0x3d,0x58,0x96,0xff,0x3d,0x58,0x97,0xff,0x3e,0x59,0x97, + 0xff,0x3f,0x59,0x98,0xff,0x3f,0x5a,0x99,0xff,0x82,0x40,0x5b,0x9a,0xff,0x05, + 0x41,0x5c,0x9b,0xff,0x41,0x5c,0x9c,0xff,0x42,0x5d,0x9c,0xff,0x42,0x5d,0x9d, + 0xff,0x43,0x5e,0x9e,0xff,0x82,0x44,0x5f,0x9f,0xff,0x02,0x45,0x60,0xa0,0xff, + 0x45,0x61,0xa1,0xff,0x82,0x46,0x62,0xa2,0xff,0x0b,0x46,0x62,0xa3,0xff,0x46, + 0x63,0xa4,0xff,0x47,0x64,0xa4,0xff,0x48,0x64,0xa5,0xff,0x48,0x65,0xa6,0xff, + 0x49,0x65,0xa7,0xff,0x49,0x66,0xa7,0xff,0x4a,0x67,0xa8,0xff,0x4a,0x67,0xa9, + 0xff,0x4b,0x68,0xa9,0xff,0x4b,0x68,0xaa,0xff,0x82,0x4c,0x69,0xab,0xff,0x03, + 0x4d,0x6a,0xac,0xff,0x4e,0x6b,0xad,0xff,0x4f,0x6c,0xae,0xff,0x82,0x50,0x6d, + 0xaf,0xff,0x82,0x51,0x6e,0xb0,0xff,0x83,0x52,0x6f,0xb1,0xff,0x12,0x01,0x02, + 0x03,0xff,0x00,0x01,0x02,0xff,0x13,0x2a,0x5e,0xff,0x13,0x2a,0x5f,0xff,0x14, + 0x2c,0x60,0xff,0x15,0x2d,0x63,0xff,0x16,0x2f,0x65,0xff,0x17,0x31,0x67,0xff, + 0x20,0x37,0x6a,0xff,0x25,0x3b,0x6b,0xff,0x23,0x3a,0x6b,0xff,0x22,0x39,0x6c, + 0xff,0x1f,0x37,0x6b,0xff,0x24,0x3b,0x6d,0xff,0x26,0x3c,0x6c,0xff,0x26,0x3d, + 0x6e,0xff,0x22,0x3a,0x6e,0xff,0x1d,0x36,0x6e,0xff,0x82,0x1e,0x37,0x6f,0xff, + 0x05,0x1f,0x38,0x70,0xff,0x1f,0x38,0x71,0xff,0x20,0x39,0x72,0xff,0x20,0x3a, + 0x72,0xff,0x21,0x3a,0x73,0xff,0x82,0x22,0x3b,0x74,0xff,0x21,0x23,0x3c,0x75, + 0xff,0x23,0x3d,0x76,0xff,0x24,0x3d,0x76,0xff,0x24,0x3e,0x77,0xff,0x25,0x3e, + 0x78,0xff,0x26,0x3f,0x79,0xff,0x26,0x40,0x7a,0xff,0x27,0x40,0x7a,0xff,0x27, + 0x41,0x7b,0xff,0x28,0x41,0x7c,0xff,0x28,0x42,0x7c,0xff,0x29,0x43,0x7d,0xff, + 0x29,0x43,0x7e,0xff,0x2a,0x44,0x7e,0xff,0x2b,0x44,0x7f,0xff,0x2b,0x45,0x80, + 0xff,0x2c,0x46,0x81,0xff,0x2c,0x47,0x81,0xff,0x2d,0x48,0x82,0xff,0x2d,0x48, + 0x83,0xff,0x2e,0x49,0x83,0xff,0x2e,0x4a,0x84,0xff,0x2f,0x4a,0x85,0xff,0x2f, + 0x4b,0x86,0xff,0x30,0x4b,0x86,0xff,0x2f,0x4a,0x85,0xff,0x2e,0x48,0x83,0xff, + 0x2f,0x48,0x83,0xff,0x2f,0x49,0x84,0xff,0x31,0x4a,0x86,0xff,0x33,0x4e,0x8a, + 0xff,0x34,0x4f,0x8b,0xff,0x34,0x50,0x8c,0xff,0x82,0x35,0x51,0x8d,0xff,0x05, + 0x36,0x52,0x8e,0xff,0x36,0x52,0x8f,0xff,0x37,0x53,0x8f,0xff,0x38,0x54,0x90, + 0xff,0x38,0x54,0x91,0xff,0x83,0x39,0x55,0x92,0xff,0x01,0x3a,0x55,0x92,0xff, + 0x82,0x39,0x54,0x92,0xff,0x82,0x3a,0x54,0x92,0xff,0x0a,0x3a,0x54,0x93,0xff, + 0x3b,0x55,0x94,0xff,0x3b,0x56,0x94,0xff,0x3c,0x57,0x95,0xff,0x3d,0x57,0x95, + 0xff,0x3d,0x58,0x96,0xff,0x3e,0x58,0x97,0xff,0x3e,0x59,0x98,0xff,0x3f,0x5a, + 0x98,0xff,0x3f,0x5a,0x99,0xff,0x82,0x40,0x5b,0x9a,0xff,0x08,0x41,0x5c,0x9b, + 0xff,0x42,0x5c,0x9c,0xff,0x42,0x5d,0x9d,0xff,0x43,0x5e,0x9d,0xff,0x44,0x60, + 0x9f,0xff,0x45,0x61,0xa1,0xff,0x47,0x63,0xa3,0xff,0x48,0x64,0xa4,0xff,0x83, + 0x48,0x65,0xa5,0xff,0x02,0x48,0x64,0xa5,0xff,0x48,0x65,0xa5,0xff,0x83,0x48, + 0x65,0xa6,0xff,0x08,0x49,0x66,0xa7,0xff,0x4a,0x66,0xa8,0xff,0x4a,0x67,0xa9, + 0xff,0x4b,0x68,0xaa,0xff,0x4c,0x69,0xaa,0xff,0x4d,0x6a,0xac,0xff,0x4e,0x6b, + 0xad,0xff,0x50,0x6d,0xaf,0xff,0x82,0x51,0x6e,0xb0,0xff,0x87,0x52,0x6f,0xb1, + 0xff,0x18,0x01,0x02,0x03,0xff,0x00,0x01,0x02,0xff,0x12,0x29,0x5d,0xff,0x13, + 0x2a,0x5e,0xff,0x13,0x2b,0x5f,0xff,0x14,0x2b,0x61,0xff,0x15,0x2d,0x62,0xff, + 0x15,0x2e,0x64,0xff,0x16,0x2f,0x66,0xff,0x17,0x30,0x67,0xff,0x18,0x31,0x68, + 0xff,0x18,0x32,0x69,0xff,0x19,0x32,0x6a,0xff,0x19,0x33,0x6a,0xff,0x1a,0x33, + 0x6b,0xff,0x1a,0x34,0x6c,0xff,0x1b,0x35,0x6d,0xff,0x1c,0x35,0x6d,0xff,0x1d, + 0x36,0x6e,0xff,0x1e,0x37,0x6f,0xff,0x1e,0x37,0x70,0xff,0x1f,0x38,0x70,0xff, + 0x20,0x39,0x71,0xff,0x20,0x39,0x72,0xff,0x82,0x21,0x3a,0x73,0xff,0x10,0x22, + 0x3b,0x74,0xff,0x22,0x3b,0x75,0xff,0x23,0x3c,0x75,0xff,0x23,0x3d,0x76,0xff, + 0x24,0x3d,0x77,0xff,0x25,0x3e,0x78,0xff,0x25,0x3f,0x78,0xff,0x26,0x3f,0x79, + 0xff,0x26,0x40,0x7a,0xff,0x27,0x40,0x7b,0xff,0x27,0x41,0x7b,0xff,0x28,0x42, + 0x7c,0xff,0x28,0x42,0x7d,0xff,0x29,0x43,0x7d,0xff,0x2a,0x43,0x7e,0xff,0x2a, + 0x44,0x7f,0xff,0x82,0x2b,0x45,0x80,0xff,0x09,0x2c,0x46,0x81,0xff,0x2c,0x47, + 0x82,0xff,0x2d,0x48,0x82,0xff,0x2d,0x49,0x83,0xff,0x2e,0x49,0x84,0xff,0x2f, + 0x4a,0x84,0xff,0x2f,0x4a,0x85,0xff,0x30,0x4b,0x86,0xff,0x30,0x4b,0x87,0xff, + 0x82,0x2e,0x48,0x83,0xff,0x04,0x2f,0x48,0x84,0xff,0x2f,0x49,0x84,0xff,0x31, + 0x4c,0x88,0xff,0x33,0x4f,0x8b,0xff,0x82,0x34,0x50,0x8c,0xff,0x03,0x35,0x51, + 0x8d,0xff,0x36,0x51,0x8e,0xff,0x36,0x52,0x8e,0xff,0x82,0x37,0x53,0x8f,0xff, + 0x01,0x37,0x53,0x90,0xff,0x83,0x37,0x52,0x8f,0xff,0x0e,0x38,0x52,0x8f,0xff, + 0x37,0x52,0x8f,0xff,0x38,0x52,0x90,0xff,0x39,0x53,0x90,0xff,0x39,0x53,0x91, + 0xff,0x3a,0x54,0x92,0xff,0x3a,0x55,0x93,0xff,0x3b,0x55,0x93,0xff,0x3c,0x56, + 0x94,0xff,0x3c,0x57,0x95,0xff,0x3d,0x57,0x96,0xff,0x3d,0x58,0x96,0xff,0x3e, + 0x59,0x97,0xff,0x3e,0x59,0x98,0xff,0x82,0x3f,0x5a,0x99,0xff,0x0c,0x40,0x5b, + 0x9a,0xff,0x41,0x5b,0x9b,0xff,0x41,0x5d,0x9c,0xff,0x43,0x5f,0x9e,0xff,0x44, + 0x60,0xa0,0xff,0x45,0x62,0xa2,0xff,0x46,0x63,0xa3,0xff,0x48,0x64,0xa4,0xff, + 0x49,0x65,0xa5,0xff,0x49,0x65,0xa6,0xff,0x4a,0x66,0xa6,0xff,0x4a,0x66,0xa7, + 0xff,0x82,0x4a,0x67,0xa7,0xff,0x01,0x4b,0x67,0xa8,0xff,0x82,0x4b,0x68,0xa9, + 0xff,0x08,0x4c,0x69,0xa9,0xff,0x4d,0x69,0xab,0xff,0x4e,0x6a,0xac,0xff,0x4e, + 0x6b,0xac,0xff,0x4f,0x6c,0xad,0xff,0x4f,0x6c,0xae,0xff,0x50,0x6d,0xaf,0xff, + 0x51,0x6e,0xb0,0xff,0x89,0x52,0x6f,0xb1,0xff,0x03,0x01,0x02,0x03,0xff,0x00, + 0x01,0x02,0xff,0x12,0x29,0x5d,0xff,0x82,0x13,0x2a,0x5e,0xff,0x26,0x14,0x2b, + 0x5f,0xff,0x14,0x2b,0x60,0xff,0x15,0x2c,0x61,0xff,0x15,0x2e,0x62,0xff,0x16, + 0x2e,0x64,0xff,0x17,0x30,0x66,0xff,0x18,0x31,0x68,0xff,0x18,0x32,0x69,0xff, + 0x19,0x32,0x6a,0xff,0x1a,0x33,0x6b,0xff,0x1a,0x34,0x6b,0xff,0x1b,0x34,0x6c, + 0xff,0x1b,0x35,0x6d,0xff,0x1c,0x35,0x6e,0xff,0x1d,0x36,0x6f,0xff,0x1e,0x37, + 0x6f,0xff,0x1f,0x38,0x70,0xff,0x1f,0x38,0x71,0xff,0x20,0x39,0x71,0xff,0x20, + 0x39,0x72,0xff,0x21,0x3a,0x73,0xff,0x21,0x3b,0x73,0xff,0x22,0x3b,0x74,0xff, + 0x23,0x3c,0x75,0xff,0x23,0x3c,0x76,0xff,0x24,0x3d,0x76,0xff,0x24,0x3e,0x77, + 0xff,0x25,0x3e,0x78,0xff,0x25,0x3f,0x79,0xff,0x26,0x3f,0x79,0xff,0x27,0x40, + 0x7a,0xff,0x27,0x41,0x7b,0xff,0x28,0x41,0x7c,0xff,0x28,0x42,0x7c,0xff,0x29, + 0x42,0x7d,0xff,0x29,0x43,0x7e,0xff,0x2a,0x44,0x7e,0xff,0x2a,0x44,0x7f,0xff, + 0x82,0x2b,0x45,0x80,0xff,0x05,0x2c,0x46,0x81,0xff,0x2c,0x48,0x82,0xff,0x2d, + 0x48,0x83,0xff,0x2e,0x49,0x83,0xff,0x2e,0x49,0x84,0xff,0x82,0x2f,0x4a,0x85, + 0xff,0x0a,0x30,0x4b,0x86,0xff,0x2f,0x49,0x84,0xff,0x2e,0x47,0x82,0xff,0x2e, + 0x48,0x83,0xff,0x2f,0x48,0x84,0xff,0x30,0x49,0x85,0xff,0x32,0x4e,0x89,0xff, + 0x34,0x4f,0x8b,0xff,0x34,0x50,0x8c,0xff,0x35,0x50,0x8c,0xff,0x82,0x35,0x50, + 0x8d,0xff,0x1d,0x35,0x4f,0x8c,0xff,0x35,0x4f,0x8b,0xff,0x35,0x4f,0x8c,0xff, + 0x35,0x50,0x8d,0xff,0x36,0x50,0x8c,0xff,0x36,0x50,0x8d,0xff,0x37,0x51,0x8e, + 0xff,0x37,0x51,0x8f,0xff,0x38,0x52,0x8f,0xff,0x38,0x53,0x90,0xff,0x39,0x53, + 0x91,0xff,0x39,0x54,0x91,0xff,0x3a,0x54,0x92,0xff,0x3a,0x55,0x93,0xff,0x3b, + 0x55,0x94,0xff,0x3c,0x56,0x95,0xff,0x3c,0x57,0x95,0xff,0x3d,0x58,0x96,0xff, + 0x3d,0x58,0x97,0xff,0x3e,0x59,0x97,0xff,0x3f,0x59,0x98,0xff,0x3f,0x5a,0x99, + 0xff,0x41,0x5c,0x9b,0xff,0x42,0x5e,0x9d,0xff,0x43,0x5f,0x9f,0xff,0x44,0x61, + 0xa0,0xff,0x45,0x62,0xa1,0xff,0x46,0x63,0xa2,0xff,0x47,0x63,0xa3,0xff,0x82, + 0x48,0x64,0xa4,0xff,0x0f,0x49,0x65,0xa5,0xff,0x49,0x66,0xa6,0xff,0x4a,0x66, + 0xa7,0xff,0x4a,0x67,0xa7,0xff,0x4b,0x67,0xa8,0xff,0x4b,0x68,0xa9,0xff,0x4c, + 0x69,0xa9,0xff,0x4d,0x69,0xaa,0xff,0x4d,0x6a,0xab,0xff,0x4e,0x6a,0xac,0xff, + 0x4e,0x6b,0xac,0xff,0x4f,0x6c,0xad,0xff,0x4f,0x6c,0xae,0xff,0x50,0x6d,0xae, + 0xff,0x50,0x6d,0xaf,0xff,0x82,0x51,0x6e,0xb0,0xff,0x88,0x52,0x6f,0xb1,0xff, + 0x02,0x01,0x02,0x03,0xff,0x00,0x01,0x02,0xff,0x82,0x12,0x29,0x5d,0xff,0x10, + 0x13,0x2a,0x5e,0xff,0x13,0x2a,0x5f,0xff,0x14,0x2b,0x5f,0xff,0x14,0x2c,0x60, + 0xff,0x15,0x2c,0x61,0xff,0x15,0x2d,0x61,0xff,0x16,0x2e,0x63,0xff,0x17,0x2f, + 0x64,0xff,0x17,0x30,0x65,0xff,0x18,0x30,0x67,0xff,0x19,0x32,0x68,0xff,0x1a, + 0x33,0x6a,0xff,0x1a,0x34,0x6b,0xff,0x1b,0x34,0x6c,0xff,0x1c,0x35,0x6d,0xff, + 0x1d,0x36,0x6e,0xff,0x82,0x1e,0x37,0x6f,0xff,0x05,0x1f,0x38,0x70,0xff,0x1f, + 0x38,0x71,0xff,0x20,0x39,0x72,0xff,0x21,0x3a,0x72,0xff,0x21,0x3a,0x73,0xff, + 0x82,0x22,0x3b,0x74,0xff,0x14,0x23,0x3c,0x75,0xff,0x23,0x3d,0x76,0xff,0x24, + 0x3d,0x77,0xff,0x25,0x3e,0x77,0xff,0x25,0x3e,0x78,0xff,0x26,0x3f,0x79,0xff, + 0x26,0x40,0x7a,0xff,0x27,0x40,0x7a,0xff,0x27,0x41,0x7b,0xff,0x28,0x41,0x7c, + 0xff,0x28,0x42,0x7c,0xff,0x29,0x43,0x7d,0xff,0x29,0x43,0x7e,0xff,0x2a,0x44, + 0x7f,0xff,0x2b,0x44,0x7f,0xff,0x2b,0x45,0x80,0xff,0x2c,0x46,0x81,0xff,0x2c, + 0x47,0x81,0xff,0x2d,0x48,0x82,0xff,0x2d,0x48,0x83,0xff,0x82,0x2e,0x49,0x84, + 0xff,0x0a,0x2f,0x4a,0x85,0xff,0x2f,0x4b,0x86,0xff,0x2f,0x49,0x84,0xff,0x2e, + 0x47,0x82,0xff,0x2e,0x47,0x83,0xff,0x2f,0x48,0x83,0xff,0x2f,0x49,0x84,0xff, + 0x31,0x4c,0x87,0xff,0x32,0x4e,0x89,0xff,0x33,0x4e,0x8a,0xff,0x83,0x33,0x4d, + 0x89,0xff,0x05,0x33,0x4d,0x8a,0xff,0x34,0x4d,0x8a,0xff,0x34,0x4e,0x8a,0xff, + 0x35,0x4f,0x8b,0xff,0x35,0x4f,0x8c,0xff,0x82,0x36,0x50,0x8d,0xff,0x29,0x37, + 0x51,0x8e,0xff,0x37,0x51,0x8f,0xff,0x38,0x52,0x8f,0xff,0x38,0x53,0x90,0xff, + 0x39,0x53,0x91,0xff,0x3a,0x54,0x92,0xff,0x3a,0x54,0x93,0xff,0x3b,0x55,0x93, + 0xff,0x3b,0x56,0x94,0xff,0x3c,0x57,0x95,0xff,0x3d,0x57,0x96,0xff,0x3d,0x58, + 0x96,0xff,0x3e,0x59,0x98,0xff,0x3f,0x5b,0x9a,0xff,0x40,0x5d,0x9c,0xff,0x42, + 0x5e,0x9d,0xff,0x43,0x5f,0x9e,0xff,0x43,0x60,0x9f,0xff,0x44,0x61,0xa0,0xff, + 0x45,0x62,0xa1,0xff,0x45,0x62,0xa2,0xff,0x46,0x63,0xa3,0xff,0x47,0x63,0xa3, + 0xff,0x48,0x64,0xa4,0xff,0x48,0x65,0xa5,0xff,0x49,0x65,0xa5,0xff,0x49,0x66, + 0xa6,0xff,0x4a,0x66,0xa7,0xff,0x4b,0x67,0xa8,0xff,0x4b,0x68,0xa8,0xff,0x4c, + 0x68,0xa9,0xff,0x4c,0x69,0xaa,0xff,0x4d,0x69,0xaa,0xff,0x4d,0x6a,0xab,0xff, + 0x4e,0x6b,0xac,0xff,0x4e,0x6b,0xad,0xff,0x4f,0x6c,0xad,0xff,0x4f,0x6c,0xae, + 0xff,0x50,0x6d,0xaf,0xff,0x51,0x6e,0xaf,0xff,0x51,0x6e,0xb0,0xff,0x86,0x52, + 0x6f,0xb1,0xff,0x82,0x51,0x6e,0xb0,0xff,0x02,0x01,0x02,0x03,0xff,0x00,0x01, + 0x02,0xff,0x82,0x12,0x29,0x5d,0xff,0x16,0x12,0x29,0x5e,0xff,0x13,0x2a,0x5e, + 0xff,0x13,0x2b,0x5f,0xff,0x14,0x2b,0x60,0xff,0x15,0x2c,0x60,0xff,0x15,0x2c, + 0x61,0xff,0x18,0x2f,0x62,0xff,0x26,0x3a,0x67,0xff,0x34,0x48,0x72,0xff,0x23, + 0x39,0x68,0xff,0x18,0x30,0x66,0xff,0x18,0x31,0x66,0xff,0x19,0x32,0x67,0xff, + 0x1a,0x32,0x68,0xff,0x1b,0x33,0x6a,0xff,0x1c,0x34,0x6b,0xff,0x1d,0x36,0x6d, + 0xff,0x1e,0x37,0x6f,0xff,0x1f,0x37,0x70,0xff,0x1f,0x38,0x70,0xff,0x20,0x39, + 0x71,0xff,0x20,0x39,0x72,0xff,0x82,0x21,0x3a,0x73,0xff,0x10,0x22,0x3b,0x74, + 0xff,0x22,0x3c,0x75,0xff,0x23,0x3c,0x75,0xff,0x24,0x3d,0x76,0xff,0x24,0x3d, + 0x77,0xff,0x25,0x3e,0x78,0xff,0x25,0x3f,0x78,0xff,0x26,0x3f,0x79,0xff,0x26, + 0x40,0x7a,0xff,0x27,0x40,0x7b,0xff,0x27,0x41,0x7b,0xff,0x28,0x42,0x7c,0xff, + 0x28,0x42,0x7d,0xff,0x29,0x43,0x7d,0xff,0x2a,0x43,0x7e,0xff,0x2a,0x44,0x7f, + 0xff,0x82,0x2b,0x45,0x80,0xff,0x2b,0x2c,0x46,0x81,0xff,0x2c,0x47,0x82,0xff, + 0x2d,0x48,0x82,0xff,0x2d,0x49,0x83,0xff,0x2e,0x49,0x84,0xff,0x2f,0x4a,0x84, + 0xff,0x2f,0x4a,0x85,0xff,0x2e,0x49,0x84,0xff,0x2d,0x47,0x82,0xff,0x2e,0x47, + 0x82,0xff,0x2e,0x48,0x83,0xff,0x2f,0x48,0x84,0xff,0x2f,0x49,0x85,0xff,0x30, + 0x4a,0x86,0xff,0x30,0x4b,0x87,0xff,0x31,0x4b,0x87,0xff,0x32,0x4b,0x87,0xff, + 0x32,0x4c,0x88,0xff,0x33,0x4c,0x89,0xff,0x33,0x4d,0x89,0xff,0x34,0x4e,0x8a, + 0xff,0x34,0x4e,0x8b,0xff,0x35,0x4f,0x8b,0xff,0x35,0x4f,0x8c,0xff,0x36,0x50, + 0x8d,0xff,0x36,0x51,0x8e,0xff,0x37,0x51,0x8e,0xff,0x37,0x52,0x8f,0xff,0x38, + 0x52,0x90,0xff,0x39,0x53,0x90,0xff,0x39,0x53,0x91,0xff,0x3a,0x54,0x92,0xff, + 0x3a,0x55,0x93,0xff,0x3b,0x55,0x93,0xff,0x3b,0x56,0x94,0xff,0x3d,0x58,0x96, + 0xff,0x3e,0x59,0x98,0xff,0x40,0x5c,0x9a,0xff,0x41,0x5d,0x9c,0xff,0x41,0x5e, + 0x9d,0xff,0x42,0x5f,0x9e,0xff,0x43,0x5f,0x9e,0xff,0x43,0x60,0x9f,0xff,0x82, + 0x44,0x61,0xa0,0xff,0x0d,0x45,0x62,0xa1,0xff,0x45,0x62,0xa2,0xff,0x46,0x63, + 0xa3,0xff,0x47,0x64,0xa4,0xff,0x48,0x64,0xa4,0xff,0x49,0x65,0xa5,0xff,0x49, + 0x65,0xa6,0xff,0x4a,0x66,0xa6,0xff,0x4a,0x67,0xa7,0xff,0x4b,0x67,0xa8,0xff, + 0x4b,0x68,0xa8,0xff,0x4c,0x68,0xa9,0xff,0x4c,0x69,0xaa,0xff,0x82,0x4d,0x6a, + 0xab,0xff,0x02,0x4e,0x6b,0xac,0xff,0x4f,0x6b,0xad,0xff,0x82,0x4f,0x6c,0xad, + 0xff,0x83,0x4f,0x6c,0xae,0xff,0x01,0x50,0x6d,0xaf,0xff,0x82,0x4f,0x6c,0xae, + 0xff,0x84,0x4e,0x6b,0xad,0xff,0x2d,0x01,0x02,0x03,0xff,0x00,0x01,0x02,0xff, + 0x13,0x2b,0x60,0xff,0x12,0x2a,0x5e,0xff,0x12,0x29,0x5d,0xff,0x13,0x2a,0x5e, + 0xff,0x13,0x2a,0x5f,0xff,0x14,0x2b,0x5f,0xff,0x14,0x2b,0x60,0xff,0x19,0x2f, + 0x62,0xff,0x3d,0x4d,0x6f,0xff,0x87,0x8d,0x99,0xff,0xa7,0xae,0xb8,0xff,0x72, + 0x7c,0x91,0xff,0x21,0x36,0x65,0xff,0x18,0x2f,0x65,0xff,0x19,0x30,0x66,0xff, + 0x19,0x31,0x66,0xff,0x1a,0x32,0x68,0xff,0x1b,0x32,0x69,0xff,0x1b,0x33,0x69, + 0xff,0x1c,0x34,0x6a,0xff,0x1c,0x35,0x6b,0xff,0x1d,0x36,0x6d,0xff,0x1e,0x37, + 0x6e,0xff,0x1f,0x38,0x70,0xff,0x20,0x39,0x72,0xff,0x21,0x3a,0x73,0xff,0x21, + 0x3b,0x74,0xff,0x22,0x3b,0x74,0xff,0x23,0x3c,0x75,0xff,0x23,0x3d,0x76,0xff, + 0x24,0x3d,0x77,0xff,0x24,0x3e,0x77,0xff,0x25,0x3e,0x78,0xff,0x25,0x3f,0x79, + 0xff,0x26,0x3f,0x79,0xff,0x27,0x40,0x7a,0xff,0x27,0x41,0x7b,0xff,0x28,0x41, + 0x7b,0xff,0x28,0x42,0x7c,0xff,0x29,0x42,0x7d,0xff,0x29,0x43,0x7e,0xff,0x2a, + 0x44,0x7e,0xff,0x2a,0x44,0x7f,0xff,0x82,0x2b,0x45,0x80,0xff,0x04,0x2c,0x46, + 0x81,0xff,0x2d,0x48,0x82,0xff,0x2d,0x48,0x83,0xff,0x2e,0x49,0x83,0xff,0x82, + 0x2e,0x49,0x84,0xff,0x23,0x2d,0x48,0x83,0xff,0x2d,0x46,0x81,0xff,0x2d,0x47, + 0x82,0xff,0x2e,0x47,0x83,0xff,0x2e,0x48,0x83,0xff,0x2f,0x48,0x84,0xff,0x30, + 0x49,0x85,0xff,0x30,0x4a,0x85,0xff,0x31,0x4a,0x86,0xff,0x31,0x4b,0x87,0xff, + 0x32,0x4b,0x87,0xff,0x32,0x4c,0x88,0xff,0x33,0x4d,0x89,0xff,0x33,0x4d,0x8a, + 0xff,0x34,0x4e,0x8a,0xff,0x34,0x4e,0x8b,0xff,0x35,0x4f,0x8c,0xff,0x36,0x50, + 0x8c,0xff,0x36,0x50,0x8d,0xff,0x37,0x51,0x8e,0xff,0x37,0x51,0x8f,0xff,0x38, + 0x52,0x8f,0xff,0x38,0x53,0x90,0xff,0x39,0x53,0x91,0xff,0x39,0x54,0x91,0xff, + 0x3a,0x55,0x93,0xff,0x3b,0x56,0x94,0xff,0x3d,0x58,0x96,0xff,0x3e,0x5b,0x99, + 0xff,0x3f,0x5c,0x9a,0xff,0x40,0x5c,0x9b,0xff,0x41,0x5d,0x9c,0xff,0x41,0x5e, + 0x9c,0xff,0x42,0x5e,0x9d,0xff,0x42,0x5f,0x9e,0xff,0x82,0x43,0x60,0x9f,0xff, + 0x05,0x44,0x61,0xa0,0xff,0x45,0x62,0xa1,0xff,0x45,0x62,0xa2,0xff,0x46,0x63, + 0xa2,0xff,0x47,0x63,0xa3,0xff,0x82,0x48,0x64,0xa4,0xff,0x06,0x49,0x65,0xa5, + 0xff,0x49,0x66,0xa6,0xff,0x4a,0x66,0xa7,0xff,0x4a,0x67,0xa7,0xff,0x4b,0x67, + 0xa8,0xff,0x4b,0x68,0xa9,0xff,0x84,0x4c,0x68,0xa9,0xff,0x82,0x4b,0x68,0xa9, + 0xff,0x02,0x4b,0x68,0xaa,0xff,0x4c,0x69,0xaa,0xff,0x82,0x4c,0x69,0xab,0xff, + 0x87,0x4d,0x6a,0xac,0xff,0x19,0x01,0x02,0x03,0xff,0x00,0x01,0x02,0xff,0x13, + 0x2c,0x62,0xff,0x13,0x2c,0x61,0xff,0x13,0x2b,0x5f,0xff,0x12,0x2a,0x5e,0xff, + 0x13,0x2a,0x5e,0xff,0x13,0x2a,0x5f,0xff,0x14,0x2b,0x5f,0xff,0x17,0x2f,0x61, + 0xff,0x3d,0x50,0x74,0xff,0xa0,0xab,0xb7,0xff,0x9e,0xa8,0xb1,0xff,0x78,0x85, + 0x96,0xff,0x1d,0x32,0x60,0xff,0x18,0x2f,0x64,0xff,0x18,0x30,0x65,0xff,0x19, + 0x30,0x66,0xff,0x19,0x31,0x67,0xff,0x1a,0x32,0x67,0xff,0x1a,0x32,0x68,0xff, + 0x1b,0x33,0x69,0xff,0x1b,0x34,0x6a,0xff,0x1b,0x34,0x6b,0xff,0x1c,0x35,0x6c, + 0xff,0x82,0x1d,0x36,0x6d,0xff,0x11,0x1e,0x37,0x6e,0xff,0x1f,0x38,0x70,0xff, + 0x20,0x39,0x72,0xff,0x21,0x3b,0x73,0xff,0x22,0x3c,0x74,0xff,0x23,0x3d,0x76, + 0xff,0x24,0x3d,0x77,0xff,0x25,0x3e,0x78,0xff,0x25,0x3f,0x78,0xff,0x26,0x3f, + 0x79,0xff,0x26,0x40,0x7a,0xff,0x27,0x40,0x7a,0xff,0x27,0x41,0x7b,0xff,0x28, + 0x41,0x7c,0xff,0x28,0x42,0x7c,0xff,0x29,0x43,0x7d,0xff,0x29,0x43,0x7e,0xff, + 0x82,0x2a,0x44,0x7f,0xff,0x02,0x2b,0x45,0x80,0xff,0x2c,0x46,0x81,0xff,0x83, + 0x2c,0x47,0x81,0xff,0x82,0x2c,0x46,0x80,0xff,0x0b,0x2c,0x45,0x80,0xff,0x2c, + 0x46,0x81,0xff,0x2d,0x46,0x81,0xff,0x2e,0x47,0x82,0xff,0x2e,0x48,0x83,0xff, + 0x2f,0x48,0x84,0xff,0x2f,0x49,0x84,0xff,0x30,0x49,0x85,0xff,0x30,0x4a,0x86, + 0xff,0x31,0x4a,0x86,0xff,0x31,0x4b,0x87,0xff,0x82,0x32,0x4c,0x88,0xff,0x05, + 0x33,0x4d,0x89,0xff,0x34,0x4d,0x8a,0xff,0x34,0x4e,0x8b,0xff,0x35,0x4f,0x8b, + 0xff,0x35,0x4f,0x8c,0xff,0x82,0x36,0x50,0x8d,0xff,0x18,0x37,0x51,0x8e,0xff, + 0x37,0x52,0x8f,0xff,0x38,0x52,0x90,0xff,0x39,0x54,0x91,0xff,0x3a,0x56,0x93, + 0xff,0x3c,0x58,0x96,0xff,0x3d,0x59,0x97,0xff,0x3e,0x5a,0x98,0xff,0x3e,0x5b, + 0x99,0xff,0x3f,0x5b,0x9a,0xff,0x3f,0x5c,0x9a,0xff,0x40,0x5d,0x9b,0xff,0x41, + 0x5d,0x9c,0xff,0x41,0x5e,0x9d,0xff,0x42,0x5f,0x9d,0xff,0x42,0x5f,0x9e,0xff, + 0x43,0x60,0x9f,0xff,0x43,0x60,0xa0,0xff,0x44,0x61,0xa1,0xff,0x45,0x62,0xa1, + 0xff,0x45,0x62,0xa2,0xff,0x46,0x63,0xa3,0xff,0x47,0x63,0xa3,0xff,0x48,0x64, + 0xa4,0xff,0x82,0x49,0x65,0xa5,0xff,0x82,0x49,0x66,0xa6,0xff,0x03,0x49,0x65, + 0xa6,0xff,0x48,0x65,0xa5,0xff,0x48,0x64,0xa5,0xff,0x82,0x48,0x65,0xa6,0xff, + 0x08,0x49,0x65,0xa6,0xff,0x49,0x66,0xa7,0xff,0x49,0x66,0xa8,0xff,0x4a,0x67, + 0xa8,0xff,0x4b,0x67,0xa9,0xff,0x4b,0x68,0xaa,0xff,0x4c,0x69,0xaa,0xff,0x4c, + 0x69,0xab,0xff,0x86,0x4d,0x6a,0xac,0xff,0x02,0x01,0x02,0x03,0xff,0x00,0x01, + 0x02,0xff,0x83,0x13,0x2c,0x62,0xff,0x28,0x13,0x2c,0x61,0xff,0x13,0x2b,0x60, + 0xff,0x13,0x2b,0x5f,0xff,0x14,0x2b,0x5f,0xff,0x15,0x2c,0x60,0xff,0x35,0x47, + 0x70,0xff,0xbe,0xc0,0xc3,0xff,0xa1,0xa4,0xa6,0xff,0x7e,0x85,0x92,0xff,0x17, + 0x2e,0x61,0xff,0x17,0x2f,0x64,0xff,0x18,0x2f,0x65,0xff,0x18,0x30,0x65,0xff, + 0x19,0x30,0x66,0xff,0x1a,0x31,0x67,0xff,0x1a,0x32,0x68,0xff,0x1b,0x32,0x68, + 0xff,0x1b,0x33,0x69,0xff,0x1b,0x33,0x6a,0xff,0x1b,0x34,0x6b,0xff,0x1c,0x35, + 0x6c,0xff,0x1d,0x36,0x6c,0xff,0x1d,0x36,0x6d,0xff,0x1e,0x37,0x6e,0xff,0x1e, + 0x38,0x6f,0xff,0x1f,0x38,0x70,0xff,0x20,0x39,0x70,0xff,0x21,0x3a,0x71,0xff, + 0x21,0x3b,0x73,0xff,0x22,0x3c,0x74,0xff,0x23,0x3d,0x76,0xff,0x25,0x3e,0x77, + 0xff,0x26,0x3f,0x78,0xff,0x26,0x40,0x7a,0xff,0x27,0x40,0x7b,0xff,0x27,0x41, + 0x7b,0xff,0x28,0x42,0x7c,0xff,0x29,0x42,0x7d,0xff,0x29,0x43,0x7d,0xff,0x2a, + 0x44,0x7e,0xff,0x83,0x2a,0x44,0x7f,0xff,0x83,0x2a,0x44,0x7e,0xff,0x02,0x2a, + 0x45,0x7e,0xff,0x2b,0x45,0x7f,0xff,0x82,0x2c,0x45,0x80,0xff,0x28,0x2d,0x46, + 0x81,0xff,0x2d,0x47,0x82,0xff,0x2e,0x47,0x82,0xff,0x2e,0x48,0x83,0xff,0x2f, + 0x48,0x84,0xff,0x2f,0x49,0x84,0xff,0x30,0x49,0x85,0xff,0x30,0x4a,0x86,0xff, + 0x31,0x4b,0x87,0xff,0x32,0x4b,0x87,0xff,0x32,0x4c,0x88,0xff,0x33,0x4c,0x89, + 0xff,0x33,0x4d,0x89,0xff,0x34,0x4e,0x8a,0xff,0x34,0x4e,0x8b,0xff,0x35,0x4f, + 0x8b,0xff,0x35,0x4f,0x8c,0xff,0x36,0x50,0x8d,0xff,0x37,0x51,0x8e,0xff,0x38, + 0x53,0x90,0xff,0x3a,0x56,0x93,0xff,0x3b,0x57,0x94,0xff,0x3c,0x58,0x95,0xff, + 0x3c,0x59,0x96,0xff,0x3d,0x59,0x97,0xff,0x3d,0x5a,0x98,0xff,0x3e,0x5a,0x98, + 0xff,0x3e,0x5b,0x99,0xff,0x3f,0x5b,0x9a,0xff,0x3f,0x5c,0x9b,0xff,0x40,0x5d, + 0x9c,0xff,0x41,0x5e,0x9c,0xff,0x41,0x5e,0x9d,0xff,0x42,0x5f,0x9e,0xff,0x43, + 0x5f,0x9e,0xff,0x43,0x60,0x9f,0xff,0x44,0x61,0xa0,0xff,0x44,0x61,0xa1,0xff, + 0x45,0x62,0xa1,0xff,0x45,0x63,0xa2,0xff,0x82,0x46,0x63,0xa3,0xff,0x85,0x46, + 0x62,0xa2,0xff,0x04,0x46,0x62,0xa3,0xff,0x46,0x63,0xa4,0xff,0x47,0x63,0xa4, + 0xff,0x47,0x64,0xa5,0xff,0x82,0x48,0x65,0xa6,0xff,0x05,0x49,0x66,0xa7,0xff, + 0x4a,0x66,0xa8,0xff,0x4a,0x67,0xa8,0xff,0x4b,0x68,0xa9,0xff,0x4b,0x68,0xaa, + 0xff,0x82,0x4c,0x69,0xab,0xff,0x02,0x4d,0x6a,0xac,0xff,0x4e,0x6b,0xad,0xff, + 0x83,0x4f,0x6c,0xae,0xff,0x02,0x01,0x02,0x03,0xff,0x00,0x01,0x02,0xff,0x85, + 0x13,0x2c,0x62,0xff,0x01,0x14,0x2d,0x62,0xff,0x82,0x14,0x2c,0x61,0xff,0x21, + 0x24,0x39,0x68,0xff,0x7a,0x81,0x92,0xff,0x7f,0x83,0x8c,0xff,0x4d,0x5a,0x75, + 0xff,0x16,0x2e,0x63,0xff,0x17,0x2e,0x63,0xff,0x17,0x2f,0x64,0xff,0x18,0x30, + 0x65,0xff,0x19,0x30,0x66,0xff,0x19,0x31,0x66,0xff,0x1a,0x31,0x67,0xff,0x1a, + 0x32,0x68,0xff,0x1b,0x32,0x69,0xff,0x1b,0x33,0x69,0xff,0x1b,0x34,0x6a,0xff, + 0x1b,0x34,0x6b,0xff,0x1c,0x35,0x6c,0xff,0x1d,0x36,0x6c,0xff,0x1d,0x36,0x6d, + 0xff,0x1e,0x37,0x6e,0xff,0x1e,0x38,0x6f,0xff,0x1f,0x38,0x70,0xff,0x20,0x39, + 0x70,0xff,0x20,0x3a,0x71,0xff,0x21,0x3a,0x72,0xff,0x21,0x3b,0x72,0xff,0x22, + 0x3b,0x73,0xff,0x23,0x3c,0x74,0xff,0x23,0x3d,0x75,0xff,0x25,0x3e,0x77,0xff, + 0x25,0x3f,0x78,0xff,0x27,0x40,0x7a,0xff,0x27,0x41,0x7b,0xff,0x82,0x28,0x42, + 0x7c,0xff,0x2f,0x28,0x42,0x7b,0xff,0x28,0x41,0x7b,0xff,0x28,0x42,0x7b,0xff, + 0x28,0x42,0x7c,0xff,0x29,0x43,0x7c,0xff,0x2a,0x44,0x7d,0xff,0x2a,0x44,0x7e, + 0xff,0x2b,0x45,0x7e,0xff,0x2b,0x45,0x7f,0xff,0x2c,0x45,0x80,0xff,0x2c,0x46, + 0x80,0xff,0x2d,0x46,0x81,0xff,0x2d,0x47,0x82,0xff,0x2e,0x47,0x83,0xff,0x2e, + 0x48,0x83,0xff,0x2f,0x48,0x84,0xff,0x30,0x49,0x85,0xff,0x30,0x4a,0x85,0xff, + 0x31,0x4a,0x86,0xff,0x31,0x4b,0x87,0xff,0x32,0x4b,0x88,0xff,0x32,0x4c,0x88, + 0xff,0x33,0x4d,0x89,0xff,0x33,0x4d,0x8a,0xff,0x34,0x4e,0x8a,0xff,0x34,0x4f, + 0x8b,0xff,0x36,0x51,0x8d,0xff,0x38,0x53,0x90,0xff,0x39,0x55,0x92,0xff,0x3a, + 0x56,0x93,0xff,0x3a,0x56,0x94,0xff,0x3b,0x57,0x94,0xff,0x3b,0x58,0x95,0xff, + 0x3c,0x58,0x96,0xff,0x3c,0x59,0x96,0xff,0x3d,0x59,0x97,0xff,0x3d,0x5a,0x98, + 0xff,0x3e,0x5a,0x99,0xff,0x3f,0x5b,0x99,0xff,0x3f,0x5c,0x9a,0xff,0x40,0x5c, + 0x9b,0xff,0x41,0x5d,0x9c,0xff,0x41,0x5e,0x9c,0xff,0x42,0x5e,0x9d,0xff,0x42, + 0x5f,0x9e,0xff,0x43,0x60,0x9f,0xff,0x43,0x60,0xa0,0xff,0x82,0x44,0x60,0xa0, + 0xff,0x01,0x43,0x60,0x9f,0xff,0x82,0x43,0x5f,0x9f,0xff,0x14,0x44,0x5f,0x9f, + 0xff,0x44,0x60,0x9f,0xff,0x45,0x60,0xa0,0xff,0x45,0x61,0xa1,0xff,0x45,0x61, + 0xa2,0xff,0x45,0x62,0xa2,0xff,0x46,0x62,0xa3,0xff,0x47,0x63,0xa4,0xff,0x47, + 0x64,0xa4,0xff,0x48,0x64,0xa5,0xff,0x48,0x65,0xa6,0xff,0x49,0x65,0xa7,0xff, + 0x49,0x66,0xa7,0xff,0x4b,0x68,0xa9,0xff,0x4c,0x69,0xaa,0xff,0x4d,0x6a,0xac, + 0xff,0x4e,0x6b,0xad,0xff,0x4f,0x6c,0xae,0xff,0x50,0x6e,0xaf,0xff,0x51,0x6e, + 0xb0,0xff,0x83,0x52,0x6f,0xb1,0xff,0x02,0x01,0x02,0x03,0xff,0x00,0x01,0x02, + 0xff,0x86,0x13,0x2c,0x62,0xff,0x24,0x14,0x2d,0x63,0xff,0x14,0x2d,0x64,0xff, + 0x17,0x2f,0x64,0xff,0x20,0x36,0x68,0xff,0x22,0x37,0x67,0xff,0x1c,0x32,0x64, + 0xff,0x16,0x2d,0x62,0xff,0x17,0x2e,0x63,0xff,0x17,0x2f,0x64,0xff,0x18,0x2f, + 0x64,0xff,0x18,0x30,0x65,0xff,0x19,0x30,0x66,0xff,0x19,0x31,0x67,0xff,0x1a, + 0x32,0x67,0xff,0x1a,0x32,0x68,0xff,0x1b,0x33,0x69,0xff,0x1b,0x33,0x6a,0xff, + 0x1b,0x34,0x6a,0xff,0x1c,0x35,0x6b,0xff,0x1d,0x35,0x6c,0xff,0x1d,0x36,0x6d, + 0xff,0x1e,0x37,0x6d,0xff,0x1e,0x37,0x6e,0xff,0x1f,0x38,0x6f,0xff,0x1f,0x39, + 0x70,0xff,0x20,0x39,0x70,0xff,0x21,0x3a,0x71,0xff,0x21,0x3a,0x72,0xff,0x22, + 0x3b,0x73,0xff,0x22,0x3c,0x73,0xff,0x23,0x3c,0x74,0xff,0x23,0x3d,0x75,0xff, + 0x24,0x3d,0x75,0xff,0x24,0x3e,0x76,0xff,0x25,0x3e,0x77,0xff,0x25,0x3f,0x78, + 0xff,0x82,0x26,0x40,0x79,0xff,0x03,0x27,0x41,0x7a,0xff,0x28,0x41,0x7a,0xff, + 0x28,0x42,0x7b,0xff,0x82,0x29,0x43,0x7c,0xff,0x02,0x2a,0x44,0x7d,0xff,0x2a, + 0x44,0x7e,0xff,0x82,0x2b,0x45,0x7f,0xff,0x0b,0x2c,0x45,0x80,0xff,0x2c,0x46, + 0x81,0xff,0x2d,0x46,0x81,0xff,0x2e,0x47,0x82,0xff,0x2e,0x48,0x83,0xff,0x2f, + 0x48,0x84,0xff,0x2f,0x49,0x84,0xff,0x30,0x49,0x85,0xff,0x30,0x4a,0x86,0xff, + 0x31,0x4a,0x86,0xff,0x31,0x4b,0x87,0xff,0x82,0x32,0x4c,0x88,0xff,0x05,0x33, + 0x4e,0x8a,0xff,0x35,0x50,0x8d,0xff,0x37,0x53,0x8f,0xff,0x38,0x54,0x90,0xff, + 0x38,0x54,0x91,0xff,0x82,0x39,0x55,0x92,0xff,0x05,0x3a,0x56,0x93,0xff,0x3a, + 0x57,0x94,0xff,0x3b,0x57,0x94,0xff,0x3b,0x58,0x95,0xff,0x3c,0x58,0x96,0xff, + 0x82,0x3d,0x59,0x97,0xff,0x06,0x3e,0x5a,0x98,0xff,0x3e,0x5b,0x99,0xff,0x3f, + 0x5b,0x9a,0xff,0x3f,0x5c,0x9a,0xff,0x40,0x5d,0x9b,0xff,0x41,0x5d,0x9c,0xff, + 0x82,0x41,0x5e,0x9d,0xff,0x01,0x41,0x5e,0x9c,0xff,0x82,0x41,0x5d,0x9c,0xff, + 0x17,0x41,0x5c,0x9c,0xff,0x42,0x5d,0x9c,0xff,0x42,0x5d,0x9d,0xff,0x43,0x5e, + 0x9e,0xff,0x43,0x5f,0x9e,0xff,0x44,0x5f,0x9f,0xff,0x44,0x60,0xa0,0xff,0x45, + 0x60,0xa0,0xff,0x45,0x61,0xa1,0xff,0x45,0x62,0xa2,0xff,0x46,0x62,0xa3,0xff, + 0x46,0x63,0xa3,0xff,0x47,0x64,0xa4,0xff,0x49,0x65,0xa6,0xff,0x4a,0x67,0xa8, + 0xff,0x4b,0x68,0xa9,0xff,0x4d,0x69,0xab,0xff,0x4e,0x6a,0xac,0xff,0x4e,0x6b, + 0xad,0xff,0x50,0x6c,0xae,0xff,0x50,0x6d,0xaf,0xff,0x51,0x6e,0xaf,0xff,0x51, + 0x6e,0xb0,0xff,0x83,0x52,0x6f,0xb1,0xff,0x03,0x51,0x6e,0xb0,0xff,0x01,0x02, + 0x03,0xff,0x00,0x01,0x02,0xff,0x86,0x13,0x2c,0x62,0xff,0x07,0x13,0x2c,0x63, + 0xff,0x18,0x30,0x65,0xff,0x2f,0x44,0x71,0xff,0x3b,0x4c,0x6f,0xff,0x3e,0x50, + 0x75,0xff,0x41,0x51,0x75,0xff,0x25,0x3a,0x69,0xff,0x83,0x17,0x2f,0x64,0xff, + 0x17,0x18,0x2f,0x65,0xff,0x18,0x30,0x65,0xff,0x19,0x31,0x66,0xff,0x1a,0x31, + 0x67,0xff,0x1a,0x32,0x68,0xff,0x1b,0x32,0x68,0xff,0x1b,0x33,0x69,0xff,0x1b, + 0x33,0x6a,0xff,0x1b,0x34,0x6b,0xff,0x1c,0x35,0x6c,0xff,0x1d,0x36,0x6c,0xff, + 0x1d,0x36,0x6d,0xff,0x1e,0x37,0x6e,0xff,0x1e,0x38,0x6f,0xff,0x1f,0x38,0x6f, + 0xff,0x20,0x39,0x70,0xff,0x20,0x39,0x71,0xff,0x21,0x3a,0x71,0xff,0x21,0x3b, + 0x72,0xff,0x22,0x3b,0x73,0xff,0x22,0x3c,0x73,0xff,0x23,0x3c,0x74,0xff,0x23, + 0x3d,0x75,0xff,0x82,0x24,0x3e,0x76,0xff,0x05,0x25,0x3f,0x77,0xff,0x26,0x3f, + 0x78,0xff,0x26,0x40,0x78,0xff,0x27,0x40,0x79,0xff,0x27,0x41,0x7a,0xff,0x82, + 0x28,0x42,0x7b,0xff,0x05,0x29,0x43,0x7c,0xff,0x29,0x43,0x7d,0xff,0x2a,0x44, + 0x7d,0xff,0x2a,0x45,0x7e,0xff,0x2b,0x45,0x7f,0xff,0x82,0x2c,0x45,0x80,0xff, + 0x0f,0x2d,0x46,0x81,0xff,0x2d,0x47,0x82,0xff,0x2e,0x47,0x82,0xff,0x2e,0x48, + 0x83,0xff,0x2f,0x48,0x84,0xff,0x2f,0x49,0x84,0xff,0x30,0x4a,0x85,0xff,0x30, + 0x4a,0x86,0xff,0x31,0x4b,0x87,0xff,0x32,0x4c,0x88,0xff,0x34,0x50,0x8c,0xff, + 0x36,0x51,0x8e,0xff,0x36,0x52,0x8e,0xff,0x37,0x53,0x8f,0xff,0x37,0x53,0x90, + 0xff,0x82,0x38,0x54,0x91,0xff,0x11,0x39,0x55,0x92,0xff,0x39,0x56,0x93,0xff, + 0x3a,0x56,0x93,0xff,0x3b,0x57,0x94,0xff,0x3b,0x57,0x95,0xff,0x3c,0x58,0x95, + 0xff,0x3c,0x58,0x96,0xff,0x3d,0x59,0x97,0xff,0x3d,0x5a,0x98,0xff,0x3e,0x5a, + 0x98,0xff,0x3e,0x5b,0x99,0xff,0x3f,0x5b,0x9a,0xff,0x40,0x5c,0x9a,0xff,0x3f, + 0x5b,0x9a,0xff,0x3f,0x5a,0x99,0xff,0x3f,0x5a,0x98,0xff,0x3f,0x5a,0x99,0xff, + 0x82,0x40,0x5b,0x9a,0xff,0x05,0x41,0x5c,0x9b,0xff,0x41,0x5c,0x9c,0xff,0x42, + 0x5d,0x9c,0xff,0x42,0x5e,0x9d,0xff,0x43,0x5e,0x9e,0xff,0x82,0x44,0x5f,0x9f, + 0xff,0x0f,0x45,0x60,0xa0,0xff,0x45,0x61,0xa1,0xff,0x46,0x62,0xa2,0xff,0x47, + 0x64,0xa4,0xff,0x49,0x66,0xa6,0xff,0x4a,0x67,0xa8,0xff,0x4b,0x68,0xa9,0xff, + 0x4c,0x69,0xaa,0xff,0x4d,0x6a,0xab,0xff,0x4e,0x6a,0xab,0xff,0x4e,0x6b,0xac, + 0xff,0x4f,0x6b,0xad,0xff,0x4f,0x6c,0xad,0xff,0x50,0x6d,0xae,0xff,0x50,0x6d, + 0xaf,0xff,0x82,0x51,0x6e,0xb0,0xff,0x82,0x52,0x6f,0xb1,0xff,0x03,0x4e,0x6b, + 0xad,0xff,0x01,0x02,0x03,0xff,0x00,0x01,0x02,0xff,0x87,0x13,0x2c,0x62,0xff, + 0x08,0x15,0x2e,0x64,0xff,0x1c,0x34,0x67,0xff,0x25,0x39,0x65,0xff,0x30,0x42, + 0x6c,0xff,0x29,0x3d,0x68,0xff,0x1d,0x34,0x67,0xff,0x17,0x30,0x67,0xff,0x17, + 0x31,0x68,0xff,0x83,0x18,0x31,0x67,0xff,0x42,0x19,0x31,0x67,0xff,0x19,0x31, + 0x66,0xff,0x1a,0x31,0x67,0xff,0x1a,0x32,0x68,0xff,0x1b,0x32,0x68,0xff,0x1b, + 0x33,0x69,0xff,0x1b,0x34,0x6a,0xff,0x1b,0x34,0x6b,0xff,0x1c,0x35,0x6c,0xff, + 0x1d,0x36,0x6c,0xff,0x1d,0x36,0x6d,0xff,0x1e,0x37,0x6e,0xff,0x1f,0x38,0x6f, + 0xff,0x1f,0x38,0x70,0xff,0x20,0x39,0x70,0xff,0x20,0x3a,0x71,0xff,0x21,0x3a, + 0x72,0xff,0x21,0x3b,0x72,0xff,0x22,0x3b,0x73,0xff,0x23,0x3c,0x74,0xff,0x23, + 0x3d,0x74,0xff,0x24,0x3d,0x75,0xff,0x24,0x3e,0x76,0xff,0x25,0x3e,0x77,0xff, + 0x25,0x3f,0x77,0xff,0x26,0x3f,0x78,0xff,0x26,0x40,0x79,0xff,0x27,0x41,0x79, + 0xff,0x27,0x41,0x7a,0xff,0x28,0x42,0x7b,0xff,0x28,0x42,0x7c,0xff,0x29,0x43, + 0x7c,0xff,0x2a,0x44,0x7d,0xff,0x2a,0x44,0x7e,0xff,0x2b,0x45,0x7e,0xff,0x2b, + 0x45,0x7f,0xff,0x2c,0x45,0x80,0xff,0x2c,0x46,0x80,0xff,0x2d,0x46,0x81,0xff, + 0x2d,0x47,0x82,0xff,0x2e,0x47,0x83,0xff,0x2e,0x48,0x83,0xff,0x2f,0x49,0x84, + 0xff,0x30,0x49,0x85,0xff,0x30,0x4a,0x85,0xff,0x32,0x4d,0x89,0xff,0x34,0x50, + 0x8c,0xff,0x35,0x50,0x8c,0xff,0x35,0x51,0x8d,0xff,0x36,0x52,0x8e,0xff,0x36, + 0x52,0x8f,0xff,0x37,0x53,0x8f,0xff,0x37,0x53,0x90,0xff,0x38,0x54,0x91,0xff, + 0x39,0x55,0x91,0xff,0x39,0x55,0x92,0xff,0x3a,0x56,0x93,0xff,0x3a,0x56,0x94, + 0xff,0x3b,0x57,0x94,0xff,0x3b,0x58,0x95,0xff,0x3c,0x58,0x96,0xff,0x3c,0x59, + 0x96,0xff,0x3d,0x59,0x97,0xff,0x3d,0x5a,0x98,0xff,0x3e,0x5a,0x98,0xff,0x3e, + 0x59,0x97,0xff,0x82,0x3d,0x58,0x96,0xff,0x22,0x3e,0x58,0x97,0xff,0x3e,0x59, + 0x98,0xff,0x3f,0x59,0x98,0xff,0x3f,0x5a,0x99,0xff,0x40,0x5b,0x9a,0xff,0x40, + 0x5b,0x9b,0xff,0x41,0x5c,0x9b,0xff,0x41,0x5d,0x9c,0xff,0x42,0x5d,0x9d,0xff, + 0x43,0x5e,0x9d,0xff,0x43,0x5e,0x9e,0xff,0x44,0x5f,0x9f,0xff,0x46,0x62,0xa2, + 0xff,0x48,0x64,0xa4,0xff,0x49,0x65,0xa5,0xff,0x4a,0x66,0xa7,0xff,0x4a,0x67, + 0xa7,0xff,0x4b,0x67,0xa8,0xff,0x4c,0x68,0xa9,0xff,0x4c,0x69,0xa9,0xff,0x4d, + 0x69,0xaa,0xff,0x4d,0x6a,0xab,0xff,0x4e,0x6a,0xac,0xff,0x4e,0x6b,0xac,0xff, + 0x4f,0x6c,0xad,0xff,0x4f,0x6c,0xae,0xff,0x50,0x6d,0xae,0xff,0x50,0x6d,0xaf, + 0xff,0x51,0x6e,0xb0,0xff,0x52,0x6f,0xb1,0xff,0x4f,0x6c,0xae,0xff,0x4d,0x6a, + 0xac,0xff,0x01,0x02,0x03,0xff,0x00,0x01,0x02,0xff,0x88,0x13,0x2c,0x62,0xff, + 0x0b,0x14,0x2d,0x63,0xff,0x15,0x2e,0x64,0xff,0x17,0x2f,0x65,0xff,0x16,0x30, + 0x65,0xff,0x16,0x2f,0x66,0xff,0x16,0x30,0x67,0xff,0x17,0x30,0x67,0xff,0x18, + 0x31,0x68,0xff,0x18,0x32,0x69,0xff,0x19,0x32,0x69,0xff,0x19,0x33,0x6a,0xff, + 0x82,0x1a,0x33,0x6a,0xff,0x82,0x1b,0x33,0x6a,0xff,0x82,0x1b,0x33,0x69,0xff, + 0x04,0x1b,0x34,0x6a,0xff,0x1c,0x35,0x6b,0xff,0x1d,0x35,0x6c,0xff,0x1d,0x36, + 0x6d,0xff,0x82,0x1e,0x37,0x6e,0xff,0x16,0x1f,0x38,0x6f,0xff,0x1f,0x39,0x70, + 0xff,0x20,0x39,0x70,0xff,0x21,0x3a,0x71,0xff,0x21,0x3a,0x72,0xff,0x22,0x3b, + 0x73,0xff,0x22,0x3c,0x73,0xff,0x23,0x3c,0x74,0xff,0x23,0x3d,0x75,0xff,0x24, + 0x3d,0x75,0xff,0x24,0x3e,0x76,0xff,0x25,0x3f,0x77,0xff,0x25,0x3f,0x78,0xff, + 0x26,0x40,0x78,0xff,0x27,0x40,0x79,0xff,0x27,0x41,0x7a,0xff,0x28,0x41,0x7a, + 0xff,0x28,0x42,0x7b,0xff,0x29,0x43,0x7c,0xff,0x29,0x43,0x7d,0xff,0x2a,0x44, + 0x7d,0xff,0x2a,0x44,0x7e,0xff,0x82,0x2b,0x45,0x7f,0xff,0x0b,0x2c,0x45,0x80, + 0xff,0x2c,0x46,0x81,0xff,0x2d,0x46,0x81,0xff,0x2e,0x47,0x82,0xff,0x2e,0x48, + 0x83,0xff,0x2f,0x48,0x84,0xff,0x2f,0x49,0x84,0xff,0x30,0x49,0x85,0xff,0x32, + 0x4d,0x88,0xff,0x34,0x50,0x8b,0xff,0x34,0x50,0x8c,0xff,0x82,0x35,0x51,0x8d, + 0xff,0x05,0x36,0x52,0x8e,0xff,0x37,0x52,0x8f,0xff,0x37,0x53,0x90,0xff,0x38, + 0x54,0x90,0xff,0x38,0x54,0x91,0xff,0x82,0x39,0x55,0x92,0xff,0x04,0x3a,0x56, + 0x93,0xff,0x3a,0x57,0x94,0xff,0x3b,0x57,0x95,0xff,0x3c,0x58,0x95,0xff,0x82, + 0x3c,0x58,0x96,0xff,0x03,0x3c,0x57,0x95,0xff,0x3b,0x56,0x94,0xff,0x3c,0x56, + 0x94,0xff,0x82,0x3c,0x57,0x95,0xff,0x06,0x3d,0x57,0x96,0xff,0x3e,0x58,0x97, + 0xff,0x3e,0x59,0x98,0xff,0x3f,0x5a,0x99,0xff,0x40,0x5a,0x99,0xff,0x40,0x5b, + 0x9a,0xff,0x82,0x41,0x5c,0x9b,0xff,0x16,0x42,0x5d,0x9c,0xff,0x43,0x5e,0x9e, + 0xff,0x45,0x61,0xa1,0xff,0x46,0x63,0xa2,0xff,0x48,0x64,0xa4,0xff,0x48,0x65, + 0xa5,0xff,0x49,0x65,0xa5,0xff,0x4a,0x66,0xa6,0xff,0x4a,0x67,0xa7,0xff,0x4b, + 0x67,0xa8,0xff,0x4b,0x68,0xa8,0xff,0x4c,0x68,0xa9,0xff,0x4c,0x69,0xaa,0xff, + 0x4d,0x69,0xaa,0xff,0x4d,0x6a,0xab,0xff,0x4e,0x6b,0xac,0xff,0x4e,0x6b,0xad, + 0xff,0x4f,0x6c,0xad,0xff,0x50,0x6c,0xae,0xff,0x50,0x6d,0xaf,0xff,0x51,0x6e, + 0xaf,0xff,0x4f,0x6c,0xae,0xff,0x82,0x4d,0x6a,0xac,0xff,0x02,0x01,0x02,0x03, + 0xff,0x00,0x01,0x02,0xff,0x88,0x13,0x2c,0x62,0xff,0x12,0x13,0x2d,0x63,0xff, + 0x14,0x2d,0x63,0xff,0x15,0x2e,0x64,0xff,0x15,0x2e,0x65,0xff,0x16,0x2f,0x65, + 0xff,0x16,0x2f,0x66,0xff,0x17,0x30,0x67,0xff,0x17,0x31,0x68,0xff,0x18,0x31, + 0x68,0xff,0x18,0x32,0x69,0xff,0x19,0x32,0x6a,0xff,0x19,0x33,0x6a,0xff,0x1a, + 0x34,0x6b,0xff,0x1b,0x34,0x6c,0xff,0x1b,0x35,0x6d,0xff,0x1c,0x35,0x6d,0xff, + 0x1c,0x36,0x6d,0xff,0x1d,0x36,0x6d,0xff,0x82,0x1c,0x35,0x6c,0xff,0x0d,0x1d, + 0x36,0x6c,0xff,0x1d,0x36,0x6d,0xff,0x1e,0x37,0x6e,0xff,0x1e,0x38,0x6f,0xff, + 0x1f,0x38,0x6f,0xff,0x20,0x39,0x70,0xff,0x20,0x39,0x71,0xff,0x21,0x3a,0x71, + 0xff,0x21,0x3b,0x72,0xff,0x22,0x3b,0x73,0xff,0x22,0x3c,0x73,0xff,0x23,0x3c, + 0x74,0xff,0x23,0x3d,0x75,0xff,0x82,0x24,0x3e,0x76,0xff,0x05,0x25,0x3f,0x77, + 0xff,0x26,0x3f,0x78,0xff,0x26,0x40,0x78,0xff,0x27,0x40,0x79,0xff,0x27,0x41, + 0x7a,0xff,0x82,0x28,0x42,0x7b,0xff,0x16,0x29,0x43,0x7c,0xff,0x29,0x43,0x7d, + 0xff,0x2a,0x44,0x7d,0xff,0x2a,0x45,0x7e,0xff,0x2b,0x45,0x7f,0xff,0x2c,0x45, + 0x7f,0xff,0x2c,0x45,0x80,0xff,0x2d,0x46,0x81,0xff,0x2d,0x47,0x82,0xff,0x2e, + 0x47,0x82,0xff,0x2e,0x48,0x83,0xff,0x2f,0x48,0x84,0xff,0x2f,0x49,0x84,0xff, + 0x30,0x4a,0x85,0xff,0x31,0x4c,0x88,0xff,0x34,0x4f,0x8b,0xff,0x35,0x50,0x8c, + 0xff,0x35,0x51,0x8d,0xff,0x36,0x51,0x8e,0xff,0x36,0x52,0x8e,0xff,0x37,0x53, + 0x8f,0xff,0x37,0x53,0x90,0xff,0x82,0x38,0x54,0x91,0xff,0x11,0x39,0x55,0x92, + 0xff,0x39,0x56,0x93,0xff,0x3a,0x56,0x93,0xff,0x3b,0x57,0x94,0xff,0x3b,0x56, + 0x94,0xff,0x3a,0x55,0x92,0xff,0x39,0x54,0x92,0xff,0x3a,0x54,0x92,0xff,0x3a, + 0x55,0x93,0xff,0x3b,0x55,0x93,0xff,0x3b,0x56,0x94,0xff,0x3c,0x56,0x95,0xff, + 0x3c,0x57,0x96,0xff,0x3d,0x58,0x96,0xff,0x3e,0x59,0x97,0xff,0x3f,0x59,0x98, + 0xff,0x3f,0x5a,0x99,0xff,0x82,0x40,0x5b,0x9a,0xff,0x16,0x41,0x5c,0x9c,0xff, + 0x43,0x5f,0x9f,0xff,0x45,0x61,0xa0,0xff,0x45,0x63,0xa2,0xff,0x46,0x63,0xa3, + 0xff,0x47,0x64,0xa4,0xff,0x48,0x64,0xa4,0xff,0x49,0x65,0xa5,0xff,0x49,0x66, + 0xa6,0xff,0x4a,0x66,0xa6,0xff,0x4a,0x67,0xa7,0xff,0x4b,0x67,0xa8,0xff,0x4b, + 0x68,0xa9,0xff,0x4c,0x68,0xa9,0xff,0x4c,0x69,0xaa,0xff,0x4d,0x6a,0xab,0xff, + 0x4e,0x6a,0xab,0xff,0x4e,0x6b,0xac,0xff,0x4f,0x6b,0xad,0xff,0x4f,0x6c,0xad, + 0xff,0x50,0x6d,0xae,0xff,0x4f,0x6c,0xae,0xff,0x82,0x4c,0x69,0xab,0xff,0x03, + 0x4d,0x6a,0xac,0xff,0x01,0x02,0x03,0xff,0x00,0x01,0x02,0xff,0x89,0x13,0x2c, + 0x62,0xff,0x11,0x14,0x2d,0x63,0xff,0x14,0x2d,0x64,0xff,0x15,0x2e,0x64,0xff, + 0x15,0x2f,0x65,0xff,0x16,0x2f,0x66,0xff,0x16,0x30,0x66,0xff,0x17,0x30,0x67, + 0xff,0x17,0x31,0x68,0xff,0x18,0x31,0x69,0xff,0x19,0x32,0x69,0xff,0x19,0x33, + 0x6a,0xff,0x1a,0x33,0x6b,0xff,0x1a,0x34,0x6b,0xff,0x1b,0x34,0x6c,0xff,0x1b, + 0x35,0x6d,0xff,0x1c,0x35,0x6d,0xff,0x1c,0x35,0x6c,0xff,0x82,0x1c,0x34,0x6b, + 0xff,0x27,0x1c,0x35,0x6c,0xff,0x1d,0x36,0x6d,0xff,0x1e,0x37,0x6d,0xff,0x1e, + 0x37,0x6e,0xff,0x1f,0x38,0x6f,0xff,0x1f,0x38,0x70,0xff,0x20,0x39,0x70,0xff, + 0x20,0x3a,0x71,0xff,0x21,0x3a,0x72,0xff,0x21,0x3b,0x72,0xff,0x22,0x3b,0x73, + 0xff,0x23,0x3c,0x74,0xff,0x23,0x3d,0x74,0xff,0x24,0x3d,0x75,0xff,0x24,0x3e, + 0x76,0xff,0x25,0x3e,0x77,0xff,0x25,0x3f,0x77,0xff,0x26,0x3f,0x78,0xff,0x26, + 0x40,0x79,0xff,0x27,0x41,0x79,0xff,0x27,0x41,0x7a,0xff,0x28,0x42,0x7b,0xff, + 0x29,0x42,0x7c,0xff,0x29,0x43,0x7c,0xff,0x2a,0x44,0x7d,0xff,0x2a,0x44,0x7e, + 0xff,0x2b,0x45,0x7e,0xff,0x2b,0x45,0x7f,0xff,0x2c,0x45,0x80,0xff,0x2c,0x46, + 0x80,0xff,0x2d,0x46,0x81,0xff,0x2d,0x47,0x82,0xff,0x2e,0x47,0x83,0xff,0x2e, + 0x48,0x83,0xff,0x2f,0x49,0x84,0xff,0x30,0x49,0x85,0xff,0x30,0x4a,0x85,0xff, + 0x31,0x4c,0x88,0xff,0x33,0x4f,0x8b,0xff,0x82,0x35,0x51,0x8d,0xff,0x2b,0x36, + 0x52,0x8e,0xff,0x36,0x52,0x8f,0xff,0x37,0x53,0x8f,0xff,0x37,0x53,0x90,0xff, + 0x38,0x54,0x91,0xff,0x39,0x55,0x91,0xff,0x39,0x55,0x92,0xff,0x39,0x54,0x91, + 0xff,0x38,0x53,0x90,0xff,0x38,0x52,0x8f,0xff,0x38,0x53,0x90,0xff,0x39,0x53, + 0x91,0xff,0x39,0x54,0x91,0xff,0x3a,0x54,0x92,0xff,0x3a,0x55,0x93,0xff,0x3b, + 0x56,0x94,0xff,0x3c,0x56,0x94,0xff,0x3c,0x57,0x95,0xff,0x3d,0x57,0x96,0xff, + 0x3e,0x58,0x97,0xff,0x3e,0x59,0x98,0xff,0x3f,0x5a,0x98,0xff,0x40,0x5b,0x99, + 0xff,0x41,0x5d,0x9c,0xff,0x43,0x5f,0x9f,0xff,0x44,0x61,0xa0,0xff,0x45,0x62, + 0xa1,0xff,0x45,0x62,0xa2,0xff,0x46,0x63,0xa2,0xff,0x47,0x63,0xa3,0xff,0x48, + 0x64,0xa4,0xff,0x48,0x65,0xa5,0xff,0x49,0x65,0xa5,0xff,0x49,0x66,0xa6,0xff, + 0x4a,0x66,0xa7,0xff,0x4a,0x67,0xa7,0xff,0x4b,0x67,0xa8,0xff,0x4c,0x68,0xa9, + 0xff,0x4c,0x69,0xa9,0xff,0x4d,0x69,0xaa,0xff,0x4d,0x6a,0xab,0xff,0x4e,0x6a, + 0xac,0xff,0x4e,0x6b,0xac,0xff,0x82,0x4f,0x6c,0xad,0xff,0x06,0x4c,0x69,0xaa, + 0xff,0x4b,0x68,0xaa,0xff,0x4c,0x69,0xab,0xff,0x4d,0x6a,0xac,0xff,0x01,0x02, + 0x03,0xff,0x00,0x01,0x02,0xff,0x8a,0x13,0x2c,0x62,0xff,0x0d,0x14,0x2d,0x63, + 0xff,0x14,0x2e,0x64,0xff,0x15,0x2e,0x65,0xff,0x15,0x2f,0x65,0xff,0x16,0x2f, + 0x66,0xff,0x16,0x30,0x67,0xff,0x17,0x30,0x67,0xff,0x18,0x31,0x68,0xff,0x18, + 0x32,0x69,0xff,0x19,0x32,0x69,0xff,0x19,0x33,0x6a,0xff,0x1a,0x33,0x6a,0xff, + 0x1a,0x32,0x69,0xff,0x82,0x1a,0x32,0x68,0xff,0x82,0x1b,0x33,0x69,0xff,0x04, + 0x1b,0x34,0x6a,0xff,0x1c,0x35,0x6b,0xff,0x1c,0x35,0x6c,0xff,0x1d,0x36,0x6d, + 0xff,0x82,0x1e,0x37,0x6e,0xff,0x12,0x1f,0x38,0x6f,0xff,0x1f,0x39,0x70,0xff, + 0x20,0x39,0x70,0xff,0x21,0x3a,0x71,0xff,0x21,0x3a,0x72,0xff,0x22,0x3b,0x73, + 0xff,0x22,0x3c,0x73,0xff,0x23,0x3c,0x74,0xff,0x23,0x3d,0x75,0xff,0x24,0x3d, + 0x75,0xff,0x24,0x3e,0x76,0xff,0x25,0x3e,0x77,0xff,0x25,0x3f,0x78,0xff,0x26, + 0x40,0x78,0xff,0x26,0x40,0x79,0xff,0x27,0x41,0x7a,0xff,0x28,0x41,0x7a,0xff, + 0x28,0x42,0x7b,0xff,0x82,0x29,0x43,0x7c,0xff,0x02,0x2a,0x44,0x7d,0xff,0x2a, + 0x44,0x7e,0xff,0x82,0x2b,0x45,0x7f,0xff,0x01,0x2c,0x45,0x80,0xff,0x82,0x2d, + 0x46,0x81,0xff,0x08,0x2e,0x47,0x82,0xff,0x2e,0x48,0x83,0xff,0x2f,0x48,0x83, + 0xff,0x2f,0x49,0x84,0xff,0x30,0x49,0x85,0xff,0x30,0x4a,0x86,0xff,0x31,0x4b, + 0x87,0xff,0x33,0x4e,0x8a,0xff,0x82,0x35,0x51,0x8d,0xff,0x32,0x36,0x52,0x8e, + 0xff,0x37,0x52,0x8f,0xff,0x37,0x53,0x90,0xff,0x38,0x54,0x90,0xff,0x37,0x52, + 0x8f,0xff,0x37,0x51,0x8e,0xff,0x36,0x50,0x8d,0xff,0x37,0x51,0x8e,0xff,0x37, + 0x52,0x8f,0xff,0x38,0x52,0x8f,0xff,0x38,0x53,0x90,0xff,0x39,0x53,0x91,0xff, + 0x3a,0x54,0x92,0xff,0x3a,0x55,0x92,0xff,0x3b,0x55,0x93,0xff,0x3b,0x56,0x94, + 0xff,0x3c,0x56,0x94,0xff,0x3c,0x57,0x95,0xff,0x3d,0x58,0x96,0xff,0x3e,0x59, + 0x97,0xff,0x3f,0x5b,0x99,0xff,0x41,0x5e,0x9d,0xff,0x43,0x5f,0x9e,0xff,0x43, + 0x60,0x9f,0xff,0x44,0x61,0xa0,0xff,0x44,0x61,0xa1,0xff,0x45,0x62,0xa1,0xff, + 0x45,0x62,0xa2,0xff,0x46,0x63,0xa3,0xff,0x47,0x64,0xa3,0xff,0x48,0x64,0xa4, + 0xff,0x48,0x65,0xa5,0xff,0x49,0x65,0xa5,0xff,0x4a,0x66,0xa6,0xff,0x4a,0x67, + 0xa7,0xff,0x4b,0x67,0xa8,0xff,0x4b,0x68,0xa8,0xff,0x4c,0x68,0xa9,0xff,0x4c, + 0x69,0xaa,0xff,0x4d,0x69,0xaa,0xff,0x4d,0x6a,0xab,0xff,0x4e,0x6b,0xac,0xff, + 0x4f,0x6b,0xad,0xff,0x4b,0x68,0xaa,0xff,0x4b,0x67,0xa9,0xff,0x4b,0x68,0xaa, + 0xff,0x4c,0x69,0xaa,0xff,0x4c,0x69,0xab,0xff,0x01,0x02,0x03,0xff,0x00,0x01, + 0x02,0xff,0x8a,0x13,0x2c,0x62,0xff,0x0a,0x13,0x2c,0x63,0xff,0x14,0x2d,0x63, + 0xff,0x14,0x2e,0x64,0xff,0x15,0x2e,0x65,0xff,0x16,0x2f,0x65,0xff,0x16,0x2f, + 0x66,0xff,0x17,0x30,0x67,0xff,0x17,0x31,0x67,0xff,0x18,0x30,0x67,0xff,0x18, + 0x30,0x66,0xff,0x82,0x18,0x30,0x65,0xff,0x05,0x19,0x31,0x66,0xff,0x19,0x31, + 0x67,0xff,0x1a,0x32,0x68,0xff,0x1b,0x32,0x68,0xff,0x1b,0x33,0x69,0xff,0x82, + 0x1b,0x34,0x6a,0xff,0x04,0x1c,0x35,0x6b,0xff,0x1d,0x36,0x6c,0xff,0x1d,0x37, + 0x6d,0xff,0x1e,0x37,0x6e,0xff,0x82,0x1f,0x38,0x6f,0xff,0x0f,0x20,0x39,0x70, + 0xff,0x20,0x39,0x71,0xff,0x21,0x3a,0x71,0xff,0x21,0x3b,0x72,0xff,0x22,0x3b, + 0x73,0xff,0x22,0x3c,0x74,0xff,0x23,0x3c,0x74,0xff,0x23,0x3d,0x75,0xff,0x24, + 0x3e,0x76,0xff,0x25,0x3e,0x76,0xff,0x25,0x3f,0x77,0xff,0x26,0x3f,0x78,0xff, + 0x26,0x40,0x78,0xff,0x27,0x40,0x79,0xff,0x27,0x41,0x7a,0xff,0x82,0x28,0x42, + 0x7b,0xff,0x05,0x29,0x43,0x7c,0xff,0x29,0x43,0x7d,0xff,0x2a,0x44,0x7d,0xff, + 0x2a,0x45,0x7e,0xff,0x2b,0x45,0x7f,0xff,0x82,0x2c,0x45,0x80,0xff,0x0e,0x2d, + 0x46,0x81,0xff,0x2d,0x47,0x82,0xff,0x2e,0x47,0x82,0xff,0x2e,0x48,0x83,0xff, + 0x2f,0x48,0x84,0xff,0x2f,0x49,0x84,0xff,0x30,0x4a,0x85,0xff,0x31,0x4a,0x86, + 0xff,0x31,0x4b,0x87,0xff,0x33,0x4e,0x8a,0xff,0x35,0x51,0x8d,0xff,0x36,0x51, + 0x8e,0xff,0x36,0x52,0x8e,0xff,0x36,0x50,0x8d,0xff,0x83,0x35,0x4f,0x8c,0xff, + 0x01,0x36,0x50,0x8d,0xff,0x82,0x37,0x51,0x8e,0xff,0x0e,0x38,0x52,0x8f,0xff, + 0x38,0x52,0x90,0xff,0x39,0x53,0x91,0xff,0x39,0x54,0x91,0xff,0x3a,0x54,0x92, + 0xff,0x3a,0x55,0x93,0xff,0x3b,0x55,0x93,0xff,0x3b,0x56,0x94,0xff,0x3c,0x57, + 0x95,0xff,0x3e,0x58,0x96,0xff,0x3f,0x5b,0x99,0xff,0x41,0x5d,0x9c,0xff,0x42, + 0x5e,0x9d,0xff,0x42,0x5f,0x9e,0xff,0x82,0x43,0x60,0x9f,0xff,0x0c,0x44,0x61, + 0xa0,0xff,0x44,0x61,0xa1,0xff,0x45,0x62,0xa1,0xff,0x45,0x63,0xa2,0xff,0x46, + 0x63,0xa3,0xff,0x47,0x64,0xa4,0xff,0x48,0x64,0xa4,0xff,0x49,0x65,0xa5,0xff, + 0x49,0x66,0xa6,0xff,0x4a,0x66,0xa6,0xff,0x4a,0x67,0xa7,0xff,0x4b,0x67,0xa8, + 0xff,0x82,0x4c,0x68,0xa9,0xff,0x0b,0x4c,0x69,0xaa,0xff,0x4d,0x6a,0xab,0xff, + 0x4e,0x6a,0xab,0xff,0x4c,0x69,0xaa,0xff,0x4a,0x66,0xa8,0xff,0x4a,0x67,0xa9, + 0xff,0x4b,0x68,0xa9,0xff,0x4b,0x68,0xaa,0xff,0x4c,0x69,0xab,0xff,0x01,0x02, + 0x03,0xff,0x00,0x01,0x02,0xff,0x8b,0x13,0x2c,0x62,0xff,0x02,0x14,0x2d,0x63, + 0xff,0x14,0x2d,0x64,0xff,0x82,0x15,0x2e,0x64,0xff,0x0b,0x15,0x2e,0x63,0xff, + 0x16,0x2e,0x63,0xff,0x16,0x2d,0x62,0xff,0x16,0x2e,0x63,0xff,0x17,0x2e,0x64, + 0xff,0x18,0x2f,0x64,0xff,0x18,0x30,0x65,0xff,0x19,0x30,0x66,0xff,0x19,0x31, + 0x66,0xff,0x1a,0x31,0x67,0xff,0x1a,0x32,0x68,0xff,0x82,0x1b,0x33,0x69,0xff, + 0x30,0x1b,0x34,0x6a,0xff,0x1c,0x35,0x6b,0xff,0x1c,0x35,0x6c,0xff,0x1d,0x36, + 0x6d,0xff,0x1e,0x37,0x6d,0xff,0x1e,0x37,0x6e,0xff,0x1f,0x38,0x6f,0xff,0x1f, + 0x38,0x70,0xff,0x20,0x39,0x70,0xff,0x20,0x3a,0x71,0xff,0x21,0x3a,0x72,0xff, + 0x21,0x3b,0x72,0xff,0x22,0x3b,0x73,0xff,0x22,0x3c,0x74,0xff,0x23,0x3d,0x74, + 0xff,0x24,0x3d,0x75,0xff,0x24,0x3e,0x76,0xff,0x25,0x3e,0x77,0xff,0x25,0x3f, + 0x77,0xff,0x26,0x40,0x78,0xff,0x26,0x40,0x79,0xff,0x27,0x41,0x79,0xff,0x27, + 0x41,0x7a,0xff,0x28,0x42,0x7b,0xff,0x29,0x42,0x7c,0xff,0x29,0x43,0x7c,0xff, + 0x2a,0x44,0x7d,0xff,0x2a,0x44,0x7e,0xff,0x2b,0x45,0x7e,0xff,0x2b,0x45,0x7f, + 0xff,0x2c,0x45,0x80,0xff,0x2c,0x46,0x80,0xff,0x2d,0x46,0x81,0xff,0x2d,0x47, + 0x82,0xff,0x2e,0x47,0x83,0xff,0x2e,0x48,0x83,0xff,0x2f,0x49,0x84,0xff,0x30, + 0x49,0x85,0xff,0x30,0x4a,0x85,0xff,0x31,0x4a,0x86,0xff,0x31,0x4b,0x87,0xff, + 0x33,0x4d,0x89,0xff,0x34,0x4e,0x8a,0xff,0x33,0x4d,0x89,0xff,0x33,0x4d,0x8a, + 0xff,0x34,0x4e,0x8a,0xff,0x34,0x4e,0x8b,0xff,0x35,0x4f,0x8c,0xff,0x82,0x36, + 0x50,0x8d,0xff,0x22,0x37,0x51,0x8e,0xff,0x37,0x51,0x8f,0xff,0x38,0x52,0x8f, + 0xff,0x38,0x53,0x90,0xff,0x39,0x53,0x91,0xff,0x39,0x54,0x91,0xff,0x3a,0x54, + 0x92,0xff,0x3a,0x55,0x93,0xff,0x3b,0x56,0x94,0xff,0x3d,0x58,0x96,0xff,0x3f, + 0x5b,0x99,0xff,0x40,0x5c,0x9b,0xff,0x40,0x5d,0x9c,0xff,0x41,0x5e,0x9d,0xff, + 0x42,0x5f,0x9d,0xff,0x42,0x5f,0x9e,0xff,0x43,0x60,0x9f,0xff,0x43,0x60,0xa0, + 0xff,0x44,0x61,0xa0,0xff,0x45,0x62,0xa1,0xff,0x45,0x62,0xa2,0xff,0x46,0x63, + 0xa2,0xff,0x47,0x63,0xa3,0xff,0x48,0x64,0xa4,0xff,0x48,0x65,0xa5,0xff,0x49, + 0x65,0xa5,0xff,0x49,0x66,0xa6,0xff,0x4a,0x66,0xa7,0xff,0x4a,0x67,0xa7,0xff, + 0x4b,0x67,0xa8,0xff,0x4c,0x68,0xa9,0xff,0x4c,0x69,0xaa,0xff,0x4d,0x69,0xaa, + 0xff,0x4c,0x69,0xaa,0xff,0x82,0x49,0x66,0xa7,0xff,0x06,0x4a,0x67,0xa8,0xff, + 0x4a,0x67,0xa9,0xff,0x4b,0x68,0xa9,0xff,0x4c,0x68,0xaa,0xff,0x01,0x02,0x03, + 0xff,0x00,0x01,0x02,0xff,0x8b,0x13,0x2c,0x62,0xff,0x82,0x13,0x2c,0x61,0xff, + 0x82,0x14,0x2b,0x60,0xff,0x0c,0x14,0x2c,0x60,0xff,0x15,0x2c,0x61,0xff,0x16, + 0x2d,0x62,0xff,0x16,0x2e,0x62,0xff,0x17,0x2e,0x63,0xff,0x17,0x2f,0x64,0xff, + 0x18,0x2f,0x65,0xff,0x18,0x30,0x65,0xff,0x19,0x30,0x66,0xff,0x19,0x31,0x67, + 0xff,0x1a,0x32,0x67,0xff,0x1a,0x32,0x68,0xff,0x82,0x1b,0x33,0x69,0xff,0x1c, + 0x1b,0x34,0x6a,0xff,0x1c,0x35,0x6b,0xff,0x1c,0x35,0x6c,0xff,0x1d,0x36,0x6d, + 0xff,0x1e,0x37,0x6d,0xff,0x1e,0x37,0x6e,0xff,0x1f,0x38,0x6f,0xff,0x1f,0x39, + 0x70,0xff,0x20,0x39,0x71,0xff,0x21,0x3a,0x71,0xff,0x21,0x3a,0x72,0xff,0x22, + 0x3b,0x73,0xff,0x22,0x3c,0x73,0xff,0x23,0x3c,0x74,0xff,0x23,0x3d,0x75,0xff, + 0x24,0x3d,0x75,0xff,0x24,0x3e,0x76,0xff,0x25,0x3e,0x77,0xff,0x25,0x3f,0x78, + 0xff,0x26,0x40,0x78,0xff,0x26,0x40,0x79,0xff,0x27,0x41,0x7a,0xff,0x28,0x42, + 0x7a,0xff,0x28,0x42,0x7b,0xff,0x29,0x43,0x7c,0xff,0x29,0x43,0x7d,0xff,0x2a, + 0x44,0x7d,0xff,0x2a,0x44,0x7e,0xff,0x82,0x2b,0x45,0x7f,0xff,0x01,0x2c,0x45, + 0x80,0xff,0x82,0x2d,0x46,0x81,0xff,0x0f,0x2e,0x47,0x82,0xff,0x2e,0x48,0x83, + 0xff,0x2f,0x48,0x84,0xff,0x2f,0x49,0x84,0xff,0x30,0x49,0x85,0xff,0x30,0x4a, + 0x86,0xff,0x31,0x4b,0x86,0xff,0x31,0x4b,0x87,0xff,0x32,0x4c,0x88,0xff,0x32, + 0x4c,0x89,0xff,0x33,0x4d,0x89,0xff,0x34,0x4e,0x8a,0xff,0x34,0x4e,0x8b,0xff, + 0x35,0x4f,0x8b,0xff,0x35,0x4f,0x8c,0xff,0x82,0x36,0x50,0x8d,0xff,0x18,0x37, + 0x51,0x8e,0xff,0x37,0x52,0x8f,0xff,0x38,0x52,0x90,0xff,0x38,0x53,0x90,0xff, + 0x39,0x53,0x91,0xff,0x3a,0x54,0x92,0xff,0x3b,0x56,0x93,0xff,0x3c,0x58,0x95, + 0xff,0x3e,0x5a,0x98,0xff,0x3f,0x5b,0x9a,0xff,0x40,0x5c,0x9a,0xff,0x40,0x5d, + 0x9b,0xff,0x41,0x5d,0x9c,0xff,0x41,0x5e,0x9d,0xff,0x42,0x5f,0x9e,0xff,0x43, + 0x5f,0x9e,0xff,0x43,0x60,0x9f,0xff,0x44,0x61,0xa0,0xff,0x44,0x61,0xa1,0xff, + 0x45,0x62,0xa1,0xff,0x45,0x62,0xa2,0xff,0x46,0x63,0xa3,0xff,0x47,0x64,0xa3, + 0xff,0x48,0x64,0xa4,0xff,0x82,0x49,0x65,0xa5,0xff,0x04,0x4a,0x66,0xa6,0xff, + 0x4a,0x66,0xa7,0xff,0x4b,0x67,0xa8,0xff,0x4b,0x68,0xa8,0xff,0x82,0x4c,0x68, + 0xa9,0xff,0x82,0x48,0x65,0xa6,0xff,0x07,0x49,0x66,0xa7,0xff,0x4a,0x66,0xa8, + 0xff,0x4a,0x67,0xa8,0xff,0x4b,0x67,0xa9,0xff,0x4b,0x68,0xaa,0xff,0x01,0x02, + 0x03,0xff,0x00,0x01,0x02,0xff,0x87,0x13,0x2c,0x62,0xff,0x2d,0x13,0x2c,0x61, + 0xff,0x13,0x2b,0x60,0xff,0x12,0x2a,0x5f,0xff,0x12,0x29,0x5e,0xff,0x12,0x29, + 0x5d,0xff,0x12,0x29,0x5e,0xff,0x13,0x2a,0x5e,0xff,0x14,0x2b,0x5f,0xff,0x14, + 0x2b,0x60,0xff,0x15,0x2c,0x61,0xff,0x15,0x2d,0x61,0xff,0x16,0x2d,0x62,0xff, + 0x16,0x2e,0x63,0xff,0x17,0x2e,0x63,0xff,0x17,0x2f,0x64,0xff,0x18,0x2f,0x65, + 0xff,0x18,0x30,0x65,0xff,0x19,0x31,0x66,0xff,0x1a,0x31,0x67,0xff,0x1a,0x32, + 0x68,0xff,0x1b,0x32,0x68,0xff,0x1b,0x33,0x69,0xff,0x1b,0x34,0x6a,0xff,0x1b, + 0x34,0x6b,0xff,0x1c,0x35,0x6b,0xff,0x1d,0x35,0x6c,0xff,0x1e,0x36,0x6d,0xff, + 0x1e,0x37,0x6e,0xff,0x1f,0x38,0x6e,0xff,0x1f,0x38,0x6f,0xff,0x20,0x39,0x70, + 0xff,0x20,0x39,0x71,0xff,0x21,0x3a,0x71,0xff,0x21,0x3b,0x72,0xff,0x22,0x3b, + 0x73,0xff,0x22,0x3c,0x74,0xff,0x23,0x3c,0x74,0xff,0x23,0x3d,0x75,0xff,0x24, + 0x3e,0x76,0xff,0x25,0x3e,0x76,0xff,0x25,0x3f,0x77,0xff,0x26,0x3f,0x78,0xff, + 0x26,0x40,0x78,0xff,0x27,0x41,0x79,0xff,0x27,0x41,0x7a,0xff,0x82,0x28,0x42, + 0x7b,0xff,0x05,0x29,0x43,0x7c,0xff,0x29,0x44,0x7d,0xff,0x2a,0x44,0x7e,0xff, + 0x2a,0x45,0x7e,0xff,0x2b,0x45,0x7f,0xff,0x82,0x2c,0x45,0x80,0xff,0x0f,0x2d, + 0x46,0x81,0xff,0x2d,0x47,0x82,0xff,0x2e,0x47,0x82,0xff,0x2e,0x48,0x83,0xff, + 0x2f,0x48,0x84,0xff,0x2f,0x49,0x85,0xff,0x30,0x4a,0x85,0xff,0x31,0x4a,0x86, + 0xff,0x31,0x4b,0x87,0xff,0x32,0x4b,0x87,0xff,0x32,0x4c,0x88,0xff,0x33,0x4c, + 0x89,0xff,0x33,0x4d,0x89,0xff,0x34,0x4e,0x8a,0xff,0x34,0x4e,0x8b,0xff,0x82, + 0x35,0x4f,0x8c,0xff,0x01,0x36,0x50,0x8d,0xff,0x82,0x37,0x51,0x8e,0xff,0x0e, + 0x38,0x52,0x8f,0xff,0x38,0x52,0x90,0xff,0x39,0x53,0x91,0xff,0x3a,0x55,0x92, + 0xff,0x3c,0x57,0x95,0xff,0x3d,0x59,0x97,0xff,0x3e,0x5a,0x98,0xff,0x3e,0x5b, + 0x99,0xff,0x3f,0x5c,0x9a,0xff,0x40,0x5c,0x9b,0xff,0x40,0x5d,0x9b,0xff,0x41, + 0x5d,0x9c,0xff,0x42,0x5e,0x9d,0xff,0x42,0x5f,0x9e,0xff,0x82,0x43,0x60,0x9f, + 0xff,0x05,0x44,0x61,0xa0,0xff,0x44,0x61,0xa1,0xff,0x45,0x62,0xa2,0xff,0x46, + 0x63,0xa2,0xff,0x47,0x63,0xa3,0xff,0x82,0x48,0x64,0xa4,0xff,0x10,0x49,0x65, + 0xa5,0xff,0x49,0x66,0xa6,0xff,0x4a,0x66,0xa6,0xff,0x4a,0x67,0xa7,0xff,0x4b, + 0x67,0xa8,0xff,0x4b,0x68,0xa8,0xff,0x48,0x65,0xa6,0xff,0x48,0x64,0xa5,0xff, + 0x48,0x65,0xa6,0xff,0x49,0x65,0xa6,0xff,0x49,0x66,0xa7,0xff,0x4a,0x66,0xa8, + 0xff,0x4a,0x67,0xa9,0xff,0x4b,0x68,0xa9,0xff,0x01,0x02,0x03,0xff,0x00,0x01, + 0x02,0xff,0x84,0x13,0x2c,0x62,0xff,0x03,0x13,0x2c,0x61,0xff,0x13,0x2b,0x60, + 0xff,0x12,0x2a,0x5f,0xff,0x86,0x12,0x29,0x5d,0xff,0x21,0x13,0x2a,0x5e,0xff, + 0x13,0x2a,0x5f,0xff,0x14,0x2b,0x5f,0xff,0x14,0x2c,0x60,0xff,0x15,0x2c,0x61, + 0xff,0x15,0x2d,0x61,0xff,0x16,0x2d,0x62,0xff,0x17,0x2e,0x63,0xff,0x17,0x2e, + 0x64,0xff,0x18,0x2f,0x64,0xff,0x18,0x30,0x65,0xff,0x19,0x30,0x66,0xff,0x19, + 0x31,0x66,0xff,0x1a,0x31,0x67,0xff,0x1a,0x32,0x68,0xff,0x1b,0x33,0x69,0xff, + 0x1b,0x33,0x6a,0xff,0x1b,0x34,0x6a,0xff,0x1c,0x35,0x6b,0xff,0x1c,0x35,0x6c, + 0xff,0x1d,0x36,0x6c,0xff,0x1e,0x37,0x6d,0xff,0x1e,0x37,0x6e,0xff,0x1f,0x38, + 0x6f,0xff,0x1f,0x38,0x70,0xff,0x20,0x39,0x70,0xff,0x20,0x3a,0x71,0xff,0x21, + 0x3a,0x72,0xff,0x21,0x3b,0x72,0xff,0x22,0x3b,0x73,0xff,0x22,0x3c,0x74,0xff, + 0x23,0x3d,0x75,0xff,0x24,0x3d,0x76,0xff,0x82,0x25,0x3e,0x77,0xff,0x17,0x25, + 0x3f,0x77,0xff,0x26,0x40,0x78,0xff,0x26,0x40,0x79,0xff,0x27,0x41,0x79,0xff, + 0x27,0x41,0x7a,0xff,0x28,0x42,0x7b,0xff,0x29,0x42,0x7c,0xff,0x29,0x43,0x7c, + 0xff,0x2a,0x44,0x7d,0xff,0x2a,0x44,0x7e,0xff,0x2b,0x45,0x7e,0xff,0x2b,0x45, + 0x7f,0xff,0x2c,0x45,0x80,0xff,0x2c,0x46,0x81,0xff,0x2d,0x46,0x81,0xff,0x2d, + 0x47,0x82,0xff,0x2e,0x47,0x83,0xff,0x2e,0x48,0x83,0xff,0x2f,0x49,0x84,0xff, + 0x30,0x49,0x85,0xff,0x30,0x4a,0x85,0xff,0x31,0x4a,0x86,0xff,0x31,0x4b,0x87, + 0xff,0x82,0x32,0x4c,0x88,0xff,0x05,0x33,0x4d,0x89,0xff,0x33,0x4d,0x8a,0xff, + 0x34,0x4e,0x8a,0xff,0x35,0x4e,0x8b,0xff,0x35,0x4f,0x8c,0xff,0x82,0x36,0x50, + 0x8d,0xff,0x11,0x37,0x51,0x8e,0xff,0x37,0x51,0x8f,0xff,0x38,0x52,0x8f,0xff, + 0x39,0x54,0x91,0xff,0x3b,0x57,0x94,0xff,0x3c,0x59,0x96,0xff,0x3d,0x59,0x97, + 0xff,0x3e,0x5a,0x98,0xff,0x3e,0x5b,0x99,0xff,0x3f,0x5b,0x9a,0xff,0x3f,0x5c, + 0x9a,0xff,0x40,0x5d,0x9b,0xff,0x40,0x5d,0x9c,0xff,0x41,0x5e,0x9c,0xff,0x42, + 0x5f,0x9d,0xff,0x42,0x5f,0x9e,0xff,0x43,0x60,0x9f,0xff,0x82,0x44,0x61,0xa0, + 0xff,0x15,0x45,0x62,0xa1,0xff,0x45,0x62,0xa2,0xff,0x46,0x63,0xa2,0xff,0x47, + 0x63,0xa3,0xff,0x48,0x64,0xa4,0xff,0x48,0x65,0xa5,0xff,0x49,0x65,0xa5,0xff, + 0x49,0x66,0xa6,0xff,0x4a,0x66,0xa7,0xff,0x4a,0x67,0xa7,0xff,0x48,0x65,0xa5, + 0xff,0x47,0x63,0xa4,0xff,0x47,0x64,0xa5,0xff,0x48,0x64,0xa5,0xff,0x48,0x65, + 0xa6,0xff,0x49,0x65,0xa7,0xff,0x49,0x66,0xa7,0xff,0x4a,0x67,0xa8,0xff,0x4a, + 0x67,0xa9,0xff,0x01,0x02,0x03,0xff,0x00,0x01,0x02,0xff,0x82,0x13,0x2c,0x61, + 0xff,0x02,0x13,0x2b,0x5f,0xff,0x12,0x2a,0x5f,0xff,0x8a,0x12,0x29,0x5d,0xff, + 0x05,0x13,0x2a,0x5e,0xff,0x13,0x2b,0x5f,0xff,0x14,0x2b,0x60,0xff,0x15,0x2c, + 0x60,0xff,0x15,0x2c,0x61,0xff,0x82,0x16,0x2d,0x62,0xff,0x09,0x17,0x2e,0x63, + 0xff,0x17,0x2f,0x64,0xff,0x18,0x2f,0x64,0xff,0x18,0x30,0x65,0xff,0x19,0x30, + 0x66,0xff,0x19,0x31,0x67,0xff,0x1a,0x32,0x67,0xff,0x1a,0x32,0x68,0xff,0x1b, + 0x33,0x69,0xff,0x82,0x1b,0x34,0x6a,0xff,0x03,0x1c,0x35,0x6b,0xff,0x1c,0x35, + 0x6c,0xff,0x1d,0x36,0x6d,0xff,0x82,0x1e,0x37,0x6e,0xff,0x16,0x1f,0x38,0x6f, + 0xff,0x1f,0x39,0x70,0xff,0x20,0x39,0x71,0xff,0x21,0x3a,0x71,0xff,0x21,0x3a, + 0x72,0xff,0x22,0x3b,0x73,0xff,0x22,0x3c,0x74,0xff,0x24,0x3e,0x77,0xff,0x26, + 0x3f,0x79,0xff,0x27,0x40,0x7a,0xff,0x27,0x41,0x7b,0xff,0x26,0x40,0x7a,0xff, + 0x26,0x40,0x79,0xff,0x26,0x40,0x78,0xff,0x27,0x40,0x79,0xff,0x27,0x41,0x7a, + 0xff,0x28,0x41,0x7a,0xff,0x28,0x42,0x7b,0xff,0x29,0x43,0x7c,0xff,0x29,0x43, + 0x7d,0xff,0x2a,0x44,0x7d,0xff,0x2a,0x44,0x7e,0xff,0x82,0x2b,0x45,0x7f,0xff, + 0x01,0x2c,0x45,0x80,0xff,0x82,0x2d,0x46,0x81,0xff,0x31,0x2e,0x47,0x82,0xff, + 0x2e,0x48,0x83,0xff,0x2f,0x48,0x84,0xff,0x2f,0x49,0x84,0xff,0x30,0x49,0x85, + 0xff,0x30,0x4a,0x86,0xff,0x31,0x4b,0x86,0xff,0x31,0x4b,0x87,0xff,0x32,0x4c, + 0x88,0xff,0x33,0x4c,0x89,0xff,0x33,0x4d,0x89,0xff,0x34,0x4e,0x8a,0xff,0x34, + 0x4e,0x8b,0xff,0x35,0x4f,0x8b,0xff,0x35,0x4f,0x8c,0xff,0x36,0x50,0x8d,0xff, + 0x36,0x50,0x8e,0xff,0x37,0x51,0x8e,0xff,0x38,0x53,0x90,0xff,0x3a,0x56,0x93, + 0xff,0x3c,0x58,0x95,0xff,0x3c,0x58,0x96,0xff,0x3d,0x59,0x97,0xff,0x3d,0x5a, + 0x98,0xff,0x3e,0x5a,0x98,0xff,0x3e,0x5b,0x99,0xff,0x3f,0x5c,0x9a,0xff,0x40, + 0x5c,0x9a,0xff,0x40,0x5d,0x9b,0xff,0x41,0x5d,0x9c,0xff,0x42,0x5e,0x9d,0xff, + 0x42,0x5f,0x9e,0xff,0x43,0x5f,0x9e,0xff,0x43,0x60,0x9f,0xff,0x44,0x61,0xa0, + 0xff,0x44,0x61,0xa1,0xff,0x45,0x62,0xa1,0xff,0x45,0x62,0xa2,0xff,0x46,0x63, + 0xa3,0xff,0x47,0x64,0xa3,0xff,0x48,0x64,0xa4,0xff,0x49,0x65,0xa5,0xff,0x49, + 0x65,0xa6,0xff,0x4a,0x66,0xa6,0xff,0x49,0x65,0xa5,0xff,0x46,0x62,0xa3,0xff, + 0x46,0x63,0xa3,0xff,0x47,0x63,0xa4,0xff,0x47,0x64,0xa5,0xff,0x82,0x48,0x65, + 0xa6,0xff,0x06,0x49,0x66,0xa7,0xff,0x4a,0x66,0xa8,0xff,0x4a,0x67,0xa8,0xff, + 0x01,0x02,0x03,0xff,0x00,0x01,0x02,0xff,0x12,0x2a,0x5e,0xff,0x8d,0x12,0x29, + 0x5d,0xff,0x0f,0x12,0x2a,0x5e,0xff,0x13,0x2a,0x5e,0xff,0x13,0x2b,0x5f,0xff, + 0x14,0x2b,0x60,0xff,0x15,0x2c,0x61,0xff,0x15,0x2d,0x61,0xff,0x16,0x2d,0x62, + 0xff,0x16,0x2e,0x63,0xff,0x17,0x2e,0x63,0xff,0x17,0x2f,0x64,0xff,0x18,0x2f, + 0x65,0xff,0x18,0x30,0x65,0xff,0x19,0x31,0x66,0xff,0x1a,0x31,0x67,0xff,0x1a, + 0x32,0x68,0xff,0x82,0x1b,0x33,0x69,0xff,0x06,0x1b,0x34,0x6a,0xff,0x1b,0x34, + 0x6b,0xff,0x1c,0x35,0x6b,0xff,0x1d,0x36,0x6c,0xff,0x1d,0x37,0x6d,0xff,0x1e, + 0x37,0x6e,0xff,0x82,0x1f,0x38,0x6f,0xff,0x0f,0x20,0x39,0x70,0xff,0x20,0x39, + 0x71,0xff,0x21,0x3a,0x72,0xff,0x23,0x3c,0x75,0xff,0x25,0x3e,0x77,0xff,0x25, + 0x3f,0x79,0xff,0x26,0x3f,0x79,0xff,0x26,0x40,0x7a,0xff,0x27,0x41,0x7b,0xff, + 0x28,0x41,0x7b,0xff,0x28,0x42,0x7c,0xff,0x27,0x41,0x7b,0xff,0x27,0x40,0x7a, + 0xff,0x27,0x41,0x79,0xff,0x27,0x41,0x7a,0xff,0x82,0x28,0x42,0x7b,0xff,0x05, + 0x29,0x43,0x7c,0xff,0x29,0x43,0x7d,0xff,0x2a,0x44,0x7e,0xff,0x2b,0x45,0x7e, + 0xff,0x2b,0x45,0x7f,0xff,0x82,0x2c,0x45,0x80,0xff,0x0f,0x2d,0x46,0x81,0xff, + 0x2d,0x47,0x82,0xff,0x2e,0x47,0x82,0xff,0x2e,0x48,0x83,0xff,0x2f,0x48,0x84, + 0xff,0x30,0x49,0x85,0xff,0x30,0x4a,0x85,0xff,0x31,0x4a,0x86,0xff,0x31,0x4b, + 0x87,0xff,0x32,0x4b,0x87,0xff,0x32,0x4c,0x88,0xff,0x33,0x4c,0x89,0xff,0x33, + 0x4d,0x89,0xff,0x34,0x4e,0x8a,0xff,0x34,0x4e,0x8b,0xff,0x82,0x35,0x4f,0x8c, + 0xff,0x11,0x36,0x50,0x8d,0xff,0x38,0x52,0x8f,0xff,0x3a,0x55,0x92,0xff,0x3b, + 0x57,0x94,0xff,0x3b,0x57,0x95,0xff,0x3c,0x58,0x96,0xff,0x3c,0x59,0x96,0xff, + 0x3d,0x59,0x97,0xff,0x3d,0x5a,0x98,0xff,0x3e,0x5b,0x99,0xff,0x3f,0x5b,0x99, + 0xff,0x3f,0x5c,0x9a,0xff,0x40,0x5c,0x9b,0xff,0x40,0x5d,0x9b,0xff,0x41,0x5e, + 0x9c,0xff,0x42,0x5e,0x9d,0xff,0x42,0x5f,0x9e,0xff,0x82,0x43,0x60,0x9f,0xff, + 0x05,0x44,0x61,0xa0,0xff,0x44,0x61,0xa1,0xff,0x45,0x62,0xa2,0xff,0x46,0x63, + 0xa2,0xff,0x47,0x63,0xa3,0xff,0x82,0x48,0x64,0xa4,0xff,0x0e,0x49,0x65,0xa5, + 0xff,0x49,0x64,0xa4,0xff,0x46,0x62,0xa2,0xff,0x45,0x62,0xa2,0xff,0x46,0x62, + 0xa3,0xff,0x46,0x63,0xa4,0xff,0x47,0x64,0xa4,0xff,0x47,0x64,0xa5,0xff,0x48, + 0x65,0xa6,0xff,0x49,0x65,0xa6,0xff,0x49,0x66,0xa7,0xff,0x4a,0x66,0xa8,0xff, + 0x01,0x02,0x03,0xff,0x00,0x01,0x02,0xff,0x8f,0x12,0x29,0x5d,0xff,0x29,0x13, + 0x2a,0x5e,0xff,0x13,0x2a,0x5f,0xff,0x14,0x2b,0x5f,0xff,0x14,0x2b,0x60,0xff, + 0x15,0x2c,0x61,0xff,0x15,0x2d,0x62,0xff,0x16,0x2d,0x62,0xff,0x16,0x2e,0x63, + 0xff,0x17,0x2f,0x64,0xff,0x18,0x2f,0x64,0xff,0x18,0x30,0x65,0xff,0x19,0x30, + 0x66,0xff,0x19,0x31,0x66,0xff,0x1a,0x31,0x67,0xff,0x1a,0x32,0x68,0xff,0x1b, + 0x33,0x69,0xff,0x1b,0x33,0x6a,0xff,0x1b,0x34,0x6a,0xff,0x1c,0x35,0x6b,0xff, + 0x1c,0x35,0x6c,0xff,0x1d,0x36,0x6c,0xff,0x1e,0x37,0x6d,0xff,0x1e,0x37,0x6e, + 0xff,0x1f,0x38,0x6f,0xff,0x1f,0x39,0x70,0xff,0x21,0x3a,0x73,0xff,0x23,0x3c, + 0x75,0xff,0x24,0x3d,0x77,0xff,0x25,0x3e,0x77,0xff,0x25,0x3e,0x78,0xff,0x26, + 0x3f,0x79,0xff,0x26,0x40,0x7a,0xff,0x27,0x40,0x7a,0xff,0x27,0x41,0x7b,0xff, + 0x28,0x41,0x7c,0xff,0x28,0x42,0x7c,0xff,0x29,0x42,0x7c,0xff,0x28,0x41,0x7b, + 0xff,0x27,0x41,0x7a,0xff,0x28,0x41,0x7a,0xff,0x28,0x42,0x7b,0xff,0x82,0x29, + 0x43,0x7c,0xff,0x0f,0x2a,0x44,0x7d,0xff,0x2a,0x44,0x7e,0xff,0x2b,0x45,0x7e, + 0xff,0x2b,0x45,0x7f,0xff,0x2c,0x45,0x80,0xff,0x2c,0x46,0x81,0xff,0x2d,0x46, + 0x81,0xff,0x2d,0x47,0x82,0xff,0x2e,0x47,0x83,0xff,0x2f,0x48,0x83,0xff,0x2f, + 0x49,0x84,0xff,0x30,0x49,0x85,0xff,0x30,0x4a,0x85,0xff,0x31,0x4a,0x86,0xff, + 0x31,0x4b,0x87,0xff,0x82,0x32,0x4c,0x88,0xff,0x1e,0x33,0x4d,0x89,0xff,0x33, + 0x4d,0x8a,0xff,0x34,0x4e,0x8a,0xff,0x35,0x4e,0x8b,0xff,0x35,0x4f,0x8c,0xff, + 0x37,0x51,0x8e,0xff,0x39,0x54,0x91,0xff,0x3a,0x56,0x93,0xff,0x3a,0x56,0x94, + 0xff,0x3b,0x57,0x94,0xff,0x3b,0x58,0x95,0xff,0x3c,0x58,0x96,0xff,0x3c,0x59, + 0x97,0xff,0x3d,0x59,0x97,0xff,0x3e,0x5a,0x98,0xff,0x3e,0x5b,0x99,0xff,0x3f, + 0x5b,0x9a,0xff,0x3f,0x5c,0x9a,0xff,0x40,0x5d,0x9b,0xff,0x40,0x5d,0x9c,0xff, + 0x41,0x5e,0x9c,0xff,0x42,0x5f,0x9d,0xff,0x42,0x5f,0x9e,0xff,0x43,0x60,0x9f, + 0xff,0x44,0x60,0xa0,0xff,0x44,0x61,0xa0,0xff,0x45,0x62,0xa1,0xff,0x45,0x62, + 0xa2,0xff,0x46,0x63,0xa2,0xff,0x47,0x63,0xa3,0xff,0x82,0x48,0x64,0xa4,0xff, + 0x09,0x46,0x61,0xa1,0xff,0x45,0x61,0xa1,0xff,0x45,0x61,0xa2,0xff,0x46,0x62, + 0xa2,0xff,0x46,0x63,0xa3,0xff,0x47,0x63,0xa4,0xff,0x47,0x64,0xa5,0xff,0x48, + 0x64,0xa5,0xff,0x48,0x65,0xa6,0xff,0x82,0x49,0x66,0xa7,0xff,0x02,0x01,0x02, + 0x03,0xff,0x00,0x01,0x02,0xff,0x8f,0x12,0x29,0x5d,0xff,0x06,0x12,0x29,0x5e, + 0xff,0x13,0x2a,0x5e,0xff,0x13,0x2b,0x5f,0xff,0x14,0x2b,0x60,0xff,0x14,0x2c, + 0x60,0xff,0x15,0x2c,0x61,0xff,0x82,0x16,0x2d,0x62,0xff,0x09,0x17,0x2e,0x63, + 0xff,0x17,0x2f,0x64,0xff,0x18,0x2f,0x65,0xff,0x18,0x30,0x65,0xff,0x19,0x30, + 0x66,0xff,0x19,0x31,0x67,0xff,0x1a,0x32,0x68,0xff,0x1b,0x32,0x68,0xff,0x1b, + 0x33,0x69,0xff,0x82,0x1b,0x34,0x6a,0xff,0x06,0x1c,0x35,0x6b,0xff,0x1c,0x35, + 0x6c,0xff,0x1d,0x36,0x6d,0xff,0x1e,0x37,0x6e,0xff,0x20,0x39,0x71,0xff,0x21, + 0x3a,0x73,0xff,0x82,0x23,0x3c,0x75,0xff,0x13,0x24,0x3d,0x76,0xff,0x24,0x3d, + 0x77,0xff,0x25,0x3e,0x78,0xff,0x25,0x3f,0x78,0xff,0x26,0x3f,0x79,0xff,0x26, + 0x40,0x7a,0xff,0x27,0x40,0x7b,0xff,0x27,0x41,0x7b,0xff,0x28,0x42,0x7c,0xff, + 0x28,0x42,0x7d,0xff,0x29,0x43,0x7d,0xff,0x28,0x42,0x7b,0xff,0x27,0x41,0x7a, + 0xff,0x28,0x42,0x7a,0xff,0x28,0x42,0x7b,0xff,0x29,0x43,0x7c,0xff,0x29,0x43, + 0x7d,0xff,0x2a,0x44,0x7d,0xff,0x2a,0x44,0x7e,0xff,0x82,0x2b,0x45,0x7f,0xff, + 0x12,0x2c,0x45,0x80,0xff,0x2d,0x46,0x81,0xff,0x2d,0x46,0x82,0xff,0x2e,0x47, + 0x82,0xff,0x2e,0x48,0x83,0xff,0x2f,0x48,0x84,0xff,0x2f,0x49,0x84,0xff,0x30, + 0x49,0x85,0xff,0x30,0x4a,0x86,0xff,0x31,0x4b,0x86,0xff,0x31,0x4b,0x87,0xff, + 0x32,0x4c,0x88,0xff,0x33,0x4c,0x89,0xff,0x33,0x4d,0x89,0xff,0x34,0x4e,0x8a, + 0xff,0x34,0x4e,0x8b,0xff,0x36,0x50,0x8d,0xff,0x38,0x53,0x90,0xff,0x82,0x39, + 0x55,0x92,0xff,0x15,0x3a,0x56,0x93,0xff,0x3a,0x57,0x94,0xff,0x3b,0x57,0x95, + 0xff,0x3c,0x58,0x95,0xff,0x3c,0x58,0x96,0xff,0x3d,0x59,0x97,0xff,0x3d,0x5a, + 0x98,0xff,0x3e,0x5a,0x98,0xff,0x3e,0x5b,0x99,0xff,0x3f,0x5c,0x9a,0xff,0x40, + 0x5c,0x9a,0xff,0x40,0x5d,0x9b,0xff,0x41,0x5d,0x9c,0xff,0x41,0x5e,0x9d,0xff, + 0x42,0x5f,0x9e,0xff,0x43,0x5f,0x9e,0xff,0x43,0x60,0x9f,0xff,0x44,0x61,0xa0, + 0xff,0x44,0x61,0xa1,0xff,0x45,0x62,0xa1,0xff,0x45,0x62,0xa2,0xff,0x82,0x46, + 0x63,0xa3,0xff,0x01,0x46,0x61,0xa1,0xff,0x82,0x45,0x60,0xa0,0xff,0x06,0x45, + 0x61,0xa1,0xff,0x45,0x62,0xa2,0xff,0x46,0x62,0xa3,0xff,0x46,0x63,0xa3,0xff, + 0x47,0x63,0xa4,0xff,0x47,0x64,0xa5,0xff,0x82,0x48,0x65,0xa6,0xff,0x03,0x49, + 0x66,0xa7,0xff,0x01,0x02,0x03,0xff,0x00,0x01,0x02,0xff,0x90,0x12,0x29,0x5d, + 0xff,0x04,0x12,0x2a,0x5e,0xff,0x13,0x2a,0x5e,0xff,0x14,0x2b,0x5f,0xff,0x14, + 0x2b,0x60,0xff,0x82,0x15,0x2c,0x61,0xff,0x09,0x16,0x2d,0x62,0xff,0x16,0x2e, + 0x63,0xff,0x17,0x2e,0x63,0xff,0x17,0x2f,0x64,0xff,0x18,0x2f,0x65,0xff,0x18, + 0x30,0x66,0xff,0x19,0x31,0x66,0xff,0x1a,0x31,0x67,0xff,0x1a,0x32,0x68,0xff, + 0x82,0x1b,0x33,0x69,0xff,0x06,0x1b,0x34,0x6a,0xff,0x1c,0x35,0x6b,0xff,0x1d, + 0x35,0x6c,0xff,0x1e,0x37,0x6f,0xff,0x1f,0x38,0x71,0xff,0x21,0x3a,0x73,0xff, + 0x82,0x22,0x3b,0x74,0xff,0x08,0x23,0x3c,0x75,0xff,0x23,0x3c,0x76,0xff,0x24, + 0x3d,0x76,0xff,0x24,0x3e,0x77,0xff,0x25,0x3e,0x78,0xff,0x25,0x3f,0x79,0xff, + 0x26,0x3f,0x79,0xff,0x26,0x40,0x7a,0xff,0x82,0x27,0x41,0x7b,0xff,0x05,0x28, + 0x41,0x7b,0xff,0x27,0x41,0x7b,0xff,0x27,0x41,0x7a,0xff,0x27,0x41,0x79,0xff, + 0x27,0x41,0x7a,0xff,0x82,0x28,0x42,0x7b,0xff,0x05,0x29,0x43,0x7c,0xff,0x29, + 0x43,0x7d,0xff,0x2a,0x44,0x7d,0xff,0x2b,0x45,0x7e,0xff,0x2b,0x45,0x7f,0xff, + 0x82,0x2c,0x45,0x80,0xff,0x0b,0x2d,0x46,0x81,0xff,0x2d,0x47,0x82,0xff,0x2e, + 0x47,0x82,0xff,0x2e,0x48,0x83,0xff,0x2f,0x48,0x84,0xff,0x2f,0x49,0x85,0xff, + 0x30,0x4a,0x85,0xff,0x31,0x4a,0x86,0xff,0x31,0x4b,0x87,0xff,0x32,0x4b,0x87, + 0xff,0x32,0x4c,0x88,0xff,0x82,0x33,0x4d,0x89,0xff,0x05,0x35,0x4f,0x8b,0xff, + 0x37,0x52,0x8f,0xff,0x38,0x54,0x91,0xff,0x39,0x54,0x91,0xff,0x39,0x55,0x92, + 0xff,0x82,0x3a,0x56,0x93,0xff,0x0e,0x3b,0x57,0x94,0xff,0x3b,0x57,0x95,0xff, + 0x3c,0x58,0x96,0xff,0x3c,0x59,0x96,0xff,0x3d,0x59,0x97,0xff,0x3e,0x5a,0x98, + 0xff,0x3e,0x5b,0x99,0xff,0x3f,0x5b,0x99,0xff,0x3f,0x5c,0x9a,0xff,0x40,0x5c, + 0x9b,0xff,0x40,0x5d,0x9b,0xff,0x41,0x5e,0x9c,0xff,0x41,0x5e,0x9d,0xff,0x42, + 0x5f,0x9e,0xff,0x82,0x43,0x60,0x9f,0xff,0x05,0x44,0x61,0xa0,0xff,0x44,0x61, + 0xa1,0xff,0x45,0x62,0xa1,0xff,0x46,0x62,0xa2,0xff,0x45,0x61,0xa1,0xff,0x82, + 0x44,0x5f,0x9f,0xff,0x0c,0x45,0x60,0xa0,0xff,0x45,0x61,0xa1,0xff,0x45,0x61, + 0xa2,0xff,0x45,0x62,0xa2,0xff,0x46,0x62,0xa3,0xff,0x46,0x63,0xa4,0xff,0x47, + 0x64,0xa4,0xff,0x48,0x64,0xa5,0xff,0x48,0x65,0xa6,0xff,0x49,0x65,0xa6,0xff, + 0x01,0x02,0x03,0xff,0x00,0x01,0x02,0xff,0x91,0x12,0x29,0x5d,0xff,0x17,0x13, + 0x2a,0x5e,0xff,0x13,0x2a,0x5f,0xff,0x14,0x2b,0x5f,0xff,0x14,0x2b,0x60,0xff, + 0x15,0x2c,0x61,0xff,0x15,0x2d,0x62,0xff,0x16,0x2d,0x62,0xff,0x16,0x2e,0x63, + 0xff,0x17,0x2e,0x64,0xff,0x18,0x2f,0x64,0xff,0x18,0x30,0x65,0xff,0x19,0x30, + 0x66,0xff,0x19,0x31,0x67,0xff,0x1a,0x32,0x67,0xff,0x1a,0x32,0x68,0xff,0x1b, + 0x33,0x69,0xff,0x1b,0x34,0x6a,0xff,0x1d,0x35,0x6d,0xff,0x1e,0x37,0x6f,0xff, + 0x1f,0x38,0x71,0xff,0x20,0x39,0x71,0xff,0x20,0x39,0x72,0xff,0x21,0x3a,0x73, + 0xff,0x82,0x22,0x3b,0x74,0xff,0x05,0x23,0x3c,0x75,0xff,0x23,0x3d,0x76,0xff, + 0x24,0x3d,0x77,0xff,0x24,0x3e,0x77,0xff,0x25,0x3e,0x78,0xff,0x84,0x26,0x3f, + 0x79,0xff,0x04,0x25,0x3f,0x78,0xff,0x25,0x3f,0x77,0xff,0x26,0x40,0x78,0xff, + 0x26,0x40,0x79,0xff,0x82,0x27,0x41,0x7a,0xff,0x01,0x28,0x42,0x7b,0xff,0x82, + 0x29,0x43,0x7c,0xff,0x0f,0x2a,0x44,0x7d,0xff,0x2a,0x44,0x7e,0xff,0x2b,0x45, + 0x7e,0xff,0x2b,0x45,0x7f,0xff,0x2c,0x45,0x80,0xff,0x2c,0x46,0x81,0xff,0x2d, + 0x46,0x81,0xff,0x2d,0x47,0x82,0xff,0x2e,0x47,0x83,0xff,0x2f,0x48,0x83,0xff, + 0x2f,0x49,0x84,0xff,0x30,0x49,0x85,0xff,0x30,0x4a,0x85,0xff,0x31,0x4a,0x86, + 0xff,0x31,0x4b,0x87,0xff,0x82,0x32,0x4c,0x88,0xff,0x05,0x33,0x4e,0x8a,0xff, + 0x35,0x51,0x8d,0xff,0x37,0x53,0x8f,0xff,0x38,0x54,0x90,0xff,0x38,0x54,0x91, + 0xff,0x82,0x39,0x55,0x92,0xff,0x15,0x3a,0x56,0x93,0xff,0x3a,0x56,0x94,0xff, + 0x3b,0x57,0x94,0xff,0x3b,0x58,0x95,0xff,0x3c,0x58,0x96,0xff,0x3d,0x59,0x97, + 0xff,0x3d,0x5a,0x97,0xff,0x3e,0x5a,0x98,0xff,0x3e,0x5b,0x99,0xff,0x3f,0x5b, + 0x9a,0xff,0x3f,0x5c,0x9a,0xff,0x40,0x5d,0x9b,0xff,0x41,0x5d,0x9c,0xff,0x41, + 0x5e,0x9c,0xff,0x42,0x5e,0x9d,0xff,0x42,0x5f,0x9e,0xff,0x43,0x60,0x9f,0xff, + 0x44,0x60,0xa0,0xff,0x44,0x61,0xa0,0xff,0x45,0x62,0xa1,0xff,0x44,0x61,0xa0, + 0xff,0x82,0x43,0x5e,0x9e,0xff,0x0d,0x44,0x5f,0x9f,0xff,0x44,0x60,0xa0,0xff, + 0x45,0x60,0xa0,0xff,0x45,0x61,0xa1,0xff,0x45,0x61,0xa2,0xff,0x45,0x62,0xa3, + 0xff,0x46,0x63,0xa3,0xff,0x47,0x63,0xa4,0xff,0x47,0x64,0xa5,0xff,0x48,0x64, + 0xa5,0xff,0x48,0x65,0xa6,0xff,0x01,0x02,0x03,0xff,0x00,0x01,0x02,0xff,0x91, + 0x12,0x29,0x5d,0xff,0x06,0x12,0x29,0x5e,0xff,0x13,0x2a,0x5e,0xff,0x13,0x2a, + 0x5f,0xff,0x14,0x2b,0x60,0xff,0x14,0x2c,0x60,0xff,0x15,0x2c,0x61,0xff,0x82, + 0x16,0x2d,0x62,0xff,0x11,0x17,0x2e,0x63,0xff,0x17,0x2f,0x64,0xff,0x18,0x2f, + 0x65,0xff,0x18,0x30,0x65,0xff,0x19,0x31,0x66,0xff,0x1a,0x32,0x67,0xff,0x1a, + 0x32,0x68,0xff,0x1b,0x34,0x6a,0xff,0x1d,0x35,0x6d,0xff,0x1e,0x37,0x6f,0xff, + 0x1e,0x37,0x70,0xff,0x1f,0x38,0x70,0xff,0x1f,0x38,0x71,0xff,0x20,0x39,0x72, + 0xff,0x20,0x3a,0x72,0xff,0x21,0x3a,0x73,0xff,0x22,0x3b,0x74,0xff,0x82,0x23, + 0x3c,0x75,0xff,0x02,0x24,0x3d,0x76,0xff,0x24,0x3d,0x77,0xff,0x83,0x24,0x3e, + 0x77,0xff,0x47,0x24,0x3d,0x76,0xff,0x24,0x3d,0x75,0xff,0x24,0x3e,0x76,0xff, + 0x25,0x3f,0x77,0xff,0x26,0x3f,0x78,0xff,0x26,0x40,0x78,0xff,0x27,0x40,0x79, + 0xff,0x27,0x41,0x7a,0xff,0x28,0x42,0x7a,0xff,0x28,0x42,0x7b,0xff,0x29,0x43, + 0x7c,0xff,0x29,0x43,0x7d,0xff,0x2a,0x44,0x7d,0xff,0x2a,0x44,0x7e,0xff,0x2b, + 0x45,0x7f,0xff,0x2c,0x45,0x7f,0xff,0x2c,0x45,0x80,0xff,0x2d,0x46,0x81,0xff, + 0x2d,0x47,0x82,0xff,0x2e,0x47,0x82,0xff,0x2e,0x48,0x83,0xff,0x2f,0x48,0x84, + 0xff,0x2f,0x49,0x84,0xff,0x30,0x49,0x85,0xff,0x30,0x4a,0x86,0xff,0x31,0x4b, + 0x86,0xff,0x32,0x4b,0x87,0xff,0x32,0x4c,0x88,0xff,0x34,0x4e,0x8a,0xff,0x36, + 0x52,0x8e,0xff,0x37,0x53,0x8f,0xff,0x37,0x53,0x90,0xff,0x38,0x54,0x90,0xff, + 0x38,0x54,0x91,0xff,0x39,0x55,0x92,0xff,0x39,0x55,0x93,0xff,0x3a,0x56,0x93, + 0xff,0x3a,0x57,0x94,0xff,0x3b,0x57,0x95,0xff,0x3c,0x58,0x95,0xff,0x3c,0x59, + 0x96,0xff,0x3d,0x59,0x97,0xff,0x3d,0x5a,0x98,0xff,0x3e,0x5a,0x98,0xff,0x3e, + 0x5b,0x99,0xff,0x3f,0x5c,0x9a,0xff,0x40,0x5c,0x9b,0xff,0x40,0x5d,0x9b,0xff, + 0x41,0x5d,0x9c,0xff,0x41,0x5e,0x9d,0xff,0x42,0x5f,0x9d,0xff,0x42,0x5f,0x9e, + 0xff,0x43,0x60,0x9f,0xff,0x44,0x61,0xa0,0xff,0x44,0x60,0x9f,0xff,0x42,0x5e, + 0x9d,0xff,0x42,0x5d,0x9d,0xff,0x43,0x5e,0x9e,0xff,0x43,0x5f,0x9e,0xff,0x44, + 0x5f,0x9f,0xff,0x45,0x60,0xa0,0xff,0x45,0x60,0xa1,0xff,0x45,0x61,0xa1,0xff, + 0x45,0x62,0xa2,0xff,0x46,0x62,0xa3,0xff,0x46,0x63,0xa3,0xff,0x47,0x63,0xa4, + 0xff,0x47,0x64,0xa5,0xff,0x48,0x65,0xa6,0xff,0x01,0x02,0x03,0xff,0x00,0x01, + 0x02,0xff,0x92,0x12,0x29,0x5d,0xff,0x04,0x13,0x2a,0x5e,0xff,0x13,0x2a,0x5f, + 0xff,0x14,0x2b,0x5f,0xff,0x14,0x2b,0x60,0xff,0x82,0x15,0x2c,0x61,0xff,0x10, + 0x16,0x2d,0x62,0xff,0x16,0x2e,0x63,0xff,0x17,0x2e,0x63,0xff,0x17,0x2f,0x64, + 0xff,0x18,0x30,0x65,0xff,0x19,0x31,0x67,0xff,0x1a,0x32,0x69,0xff,0x1b,0x33, + 0x6b,0xff,0x1b,0x35,0x6d,0xff,0x1c,0x36,0x6e,0xff,0x1d,0x36,0x6e,0xff,0x1e, + 0x37,0x6f,0xff,0x1e,0x37,0x70,0xff,0x1f,0x38,0x71,0xff,0x20,0x39,0x71,0xff, + 0x20,0x39,0x72,0xff,0x82,0x21,0x3a,0x73,0xff,0x02,0x22,0x3b,0x74,0xff,0x23, + 0x3c,0x75,0xff,0x82,0x23,0x3c,0x76,0xff,0x0c,0x23,0x3c,0x75,0xff,0x23,0x3c, + 0x74,0xff,0x22,0x3c,0x74,0xff,0x23,0x3c,0x74,0xff,0x24,0x3d,0x75,0xff,0x24, + 0x3e,0x76,0xff,0x25,0x3e,0x76,0xff,0x25,0x3f,0x77,0xff,0x26,0x3f,0x78,0xff, + 0x26,0x40,0x79,0xff,0x27,0x41,0x79,0xff,0x27,0x41,0x7a,0xff,0x82,0x28,0x42, + 0x7b,0xff,0x05,0x29,0x43,0x7c,0xff,0x2a,0x44,0x7d,0xff,0x2a,0x44,0x7e,0xff, + 0x2b,0x45,0x7e,0xff,0x2b,0x45,0x7f,0xff,0x82,0x2c,0x45,0x80,0xff,0x0f,0x2d, + 0x46,0x81,0xff,0x2d,0x47,0x82,0xff,0x2e,0x47,0x82,0xff,0x2e,0x48,0x83,0xff, + 0x2f,0x48,0x84,0xff,0x2f,0x49,0x85,0xff,0x30,0x4a,0x85,0xff,0x31,0x4a,0x86, + 0xff,0x31,0x4b,0x87,0xff,0x32,0x4b,0x87,0xff,0x33,0x4d,0x89,0xff,0x35,0x50, + 0x8c,0xff,0x36,0x52,0x8f,0xff,0x37,0x53,0x8f,0xff,0x37,0x53,0x90,0xff,0x82, + 0x38,0x54,0x91,0xff,0x10,0x39,0x55,0x92,0xff,0x3a,0x56,0x93,0xff,0x3a,0x56, + 0x94,0xff,0x3b,0x57,0x94,0xff,0x3b,0x58,0x95,0xff,0x3c,0x58,0x96,0xff,0x3c, + 0x59,0x97,0xff,0x3d,0x59,0x97,0xff,0x3e,0x5a,0x98,0xff,0x3e,0x5b,0x99,0xff, + 0x3f,0x5b,0x99,0xff,0x3f,0x5c,0x9a,0xff,0x40,0x5c,0x9b,0xff,0x40,0x5d,0x9c, + 0xff,0x41,0x5e,0x9c,0xff,0x41,0x5e,0x9d,0xff,0x82,0x42,0x5f,0x9e,0xff,0x06, + 0x43,0x5f,0x9f,0xff,0x42,0x5e,0x9d,0xff,0x41,0x5c,0x9c,0xff,0x42,0x5d,0x9c, + 0xff,0x43,0x5e,0x9d,0xff,0x43,0x5e,0x9e,0xff,0x82,0x44,0x5f,0x9f,0xff,0x0a, + 0x45,0x60,0xa0,0xff,0x45,0x61,0xa1,0xff,0x45,0x61,0xa2,0xff,0x45,0x62,0xa2, + 0xff,0x46,0x62,0xa3,0xff,0x46,0x63,0xa4,0xff,0x47,0x64,0xa4,0xff,0x48,0x64, + 0xa5,0xff,0x01,0x02,0x03,0xff,0x00,0x01,0x02,0xff,0x93,0x12,0x29,0x5d,0xff, + 0x16,0x13,0x2a,0x5e,0xff,0x13,0x2a,0x5f,0xff,0x14,0x2b,0x5f,0xff,0x14,0x2c, + 0x60,0xff,0x15,0x2c,0x61,0xff,0x15,0x2d,0x62,0xff,0x16,0x2d,0x62,0xff,0x16, + 0x2e,0x64,0xff,0x17,0x2f,0x65,0xff,0x18,0x30,0x67,0xff,0x19,0x32,0x69,0xff, + 0x1a,0x33,0x6b,0xff,0x1a,0x34,0x6c,0xff,0x1b,0x35,0x6c,0xff,0x1c,0x35,0x6d, + 0xff,0x1d,0x36,0x6e,0xff,0x1e,0x36,0x6f,0xff,0x1e,0x37,0x6f,0xff,0x1f,0x38, + 0x70,0xff,0x1f,0x38,0x71,0xff,0x20,0x39,0x71,0xff,0x20,0x39,0x72,0xff,0x82, + 0x21,0x3a,0x73,0xff,0x11,0x21,0x3b,0x74,0xff,0x22,0x3b,0x73,0xff,0x21,0x3b, + 0x73,0xff,0x21,0x3a,0x72,0xff,0x22,0x3b,0x72,0xff,0x22,0x3b,0x73,0xff,0x23, + 0x3c,0x74,0xff,0x23,0x3d,0x75,0xff,0x24,0x3d,0x75,0xff,0x24,0x3e,0x76,0xff, + 0x25,0x3e,0x77,0xff,0x25,0x3f,0x77,0xff,0x26,0x40,0x78,0xff,0x26,0x40,0x79, + 0xff,0x27,0x41,0x7a,0xff,0x28,0x41,0x7a,0xff,0x28,0x42,0x7b,0xff,0x82,0x29, + 0x43,0x7c,0xff,0x02,0x2a,0x44,0x7d,0xff,0x2a,0x44,0x7e,0xff,0x82,0x2b,0x45, + 0x7f,0xff,0x12,0x2c,0x45,0x80,0xff,0x2c,0x46,0x81,0xff,0x2d,0x46,0x81,0xff, + 0x2e,0x47,0x82,0xff,0x2e,0x47,0x83,0xff,0x2f,0x48,0x83,0xff,0x2f,0x49,0x84, + 0xff,0x30,0x49,0x85,0xff,0x30,0x4a,0x86,0xff,0x31,0x4a,0x86,0xff,0x31,0x4b, + 0x87,0xff,0x32,0x4c,0x88,0xff,0x33,0x4d,0x89,0xff,0x35,0x50,0x8d,0xff,0x37, + 0x52,0x8f,0xff,0x37,0x53,0x90,0xff,0x38,0x54,0x90,0xff,0x38,0x54,0x91,0xff, + 0x82,0x39,0x55,0x92,0xff,0x11,0x3a,0x56,0x93,0xff,0x3a,0x56,0x94,0xff,0x3b, + 0x57,0x94,0xff,0x3c,0x58,0x95,0xff,0x3c,0x58,0x96,0xff,0x3d,0x59,0x97,0xff, + 0x3d,0x5a,0x98,0xff,0x3e,0x5a,0x98,0xff,0x3e,0x5b,0x99,0xff,0x3f,0x5b,0x9a, + 0xff,0x3f,0x5c,0x9a,0xff,0x40,0x5d,0x9b,0xff,0x40,0x5d,0x9c,0xff,0x41,0x5e, + 0x9d,0xff,0x42,0x5e,0x9d,0xff,0x42,0x5f,0x9e,0xff,0x41,0x5d,0x9c,0xff,0x82, + 0x41,0x5c,0x9b,0xff,0x0f,0x42,0x5d,0x9c,0xff,0x42,0x5d,0x9d,0xff,0x43,0x5e, + 0x9d,0xff,0x43,0x5e,0x9e,0xff,0x44,0x5f,0x9f,0xff,0x44,0x60,0xa0,0xff,0x45, + 0x60,0xa0,0xff,0x45,0x61,0xa1,0xff,0x45,0x61,0xa2,0xff,0x46,0x62,0xa2,0xff, + 0x46,0x63,0xa3,0xff,0x47,0x63,0xa4,0xff,0x47,0x64,0xa5,0xff,0x01,0x02,0x03, + 0xff,0x00,0x01,0x02,0xff,0x93,0x12,0x29,0x5d,0xff,0x15,0x12,0x29,0x5e,0xff, + 0x13,0x2a,0x5e,0xff,0x13,0x2b,0x5f,0xff,0x14,0x2b,0x60,0xff,0x15,0x2c,0x60, + 0xff,0x15,0x2d,0x62,0xff,0x16,0x2e,0x63,0xff,0x17,0x2f,0x65,0xff,0x17,0x30, + 0x67,0xff,0x18,0x31,0x69,0xff,0x19,0x32,0x6a,0xff,0x1a,0x33,0x6b,0xff,0x1a, + 0x34,0x6b,0xff,0x1b,0x34,0x6c,0xff,0x1b,0x35,0x6d,0xff,0x1c,0x35,0x6d,0xff, + 0x1d,0x36,0x6e,0xff,0x1e,0x37,0x6f,0xff,0x1e,0x37,0x70,0xff,0x1f,0x38,0x70, + 0xff,0x1f,0x38,0x71,0xff,0x83,0x20,0x39,0x72,0xff,0x01,0x20,0x39,0x71,0xff, + 0x82,0x20,0x39,0x70,0xff,0x13,0x21,0x3a,0x71,0xff,0x21,0x3b,0x72,0xff,0x22, + 0x3b,0x72,0xff,0x22,0x3c,0x73,0xff,0x23,0x3c,0x74,0xff,0x23,0x3d,0x75,0xff, + 0x24,0x3d,0x76,0xff,0x24,0x3e,0x76,0xff,0x25,0x3f,0x77,0xff,0x26,0x3f,0x78, + 0xff,0x26,0x40,0x78,0xff,0x27,0x40,0x79,0xff,0x27,0x41,0x7a,0xff,0x28,0x42, + 0x7a,0xff,0x28,0x42,0x7b,0xff,0x29,0x43,0x7c,0xff,0x29,0x43,0x7d,0xff,0x2a, + 0x44,0x7d,0xff,0x2a,0x45,0x7e,0xff,0x82,0x2b,0x45,0x7f,0xff,0x23,0x2c,0x45, + 0x80,0xff,0x2d,0x46,0x81,0xff,0x2d,0x46,0x82,0xff,0x2e,0x47,0x82,0xff,0x2e, + 0x48,0x83,0xff,0x2f,0x48,0x84,0xff,0x2f,0x49,0x84,0xff,0x30,0x49,0x85,0xff, + 0x30,0x4a,0x86,0xff,0x31,0x4b,0x86,0xff,0x31,0x4b,0x87,0xff,0x32,0x4c,0x88, + 0xff,0x33,0x4e,0x8a,0xff,0x36,0x51,0x8d,0xff,0x37,0x53,0x8f,0xff,0x37,0x53, + 0x90,0xff,0x38,0x54,0x90,0xff,0x38,0x54,0x91,0xff,0x39,0x55,0x92,0xff,0x39, + 0x55,0x93,0xff,0x3a,0x56,0x93,0xff,0x3a,0x57,0x94,0xff,0x3b,0x57,0x95,0xff, + 0x3c,0x58,0x96,0xff,0x3c,0x59,0x96,0xff,0x3d,0x59,0x97,0xff,0x3d,0x5a,0x98, + 0xff,0x3e,0x5a,0x98,0xff,0x3e,0x5b,0x99,0xff,0x3f,0x5c,0x9a,0xff,0x40,0x5c, + 0x9b,0xff,0x40,0x5d,0x9b,0xff,0x41,0x5d,0x9c,0xff,0x41,0x5e,0x9d,0xff,0x41, + 0x5d,0x9c,0xff,0x83,0x40,0x5b,0x9a,0xff,0x0f,0x41,0x5c,0x9b,0xff,0x42,0x5d, + 0x9c,0xff,0x42,0x5d,0x9d,0xff,0x43,0x5e,0x9e,0xff,0x43,0x5f,0x9e,0xff,0x44, + 0x5f,0x9f,0xff,0x45,0x60,0xa0,0xff,0x45,0x60,0xa1,0xff,0x45,0x61,0xa1,0xff, + 0x45,0x62,0xa2,0xff,0x46,0x62,0xa3,0xff,0x46,0x63,0xa3,0xff,0x47,0x63,0xa4, + 0xff,0x01,0x02,0x03,0xff,0x00,0x01,0x02,0xff,0x94,0x12,0x29,0x5d,0xff,0x13, + 0x13,0x2a,0x5e,0xff,0x13,0x2a,0x5f,0xff,0x14,0x2b,0x60,0xff,0x14,0x2c,0x61, + 0xff,0x15,0x2d,0x63,0xff,0x16,0x2f,0x65,0xff,0x17,0x30,0x67,0xff,0x17,0x31, + 0x68,0xff,0x18,0x31,0x68,0xff,0x19,0x32,0x69,0xff,0x19,0x33,0x6a,0xff,0x1a, + 0x33,0x6b,0xff,0x1a,0x34,0x6c,0xff,0x1b,0x34,0x6c,0xff,0x1b,0x35,0x6d,0xff, + 0x1c,0x36,0x6e,0xff,0x1d,0x36,0x6e,0xff,0x1e,0x37,0x6f,0xff,0x1f,0x37,0x70, + 0xff,0x82,0x1f,0x38,0x70,0xff,0x01,0x1e,0x38,0x6f,0xff,0x82,0x1e,0x37,0x6f, + 0xff,0x10,0x1f,0x38,0x6f,0xff,0x1f,0x39,0x70,0xff,0x20,0x39,0x70,0xff,0x21, + 0x3a,0x71,0xff,0x21,0x3b,0x72,0xff,0x22,0x3b,0x73,0xff,0x22,0x3c,0x74,0xff, + 0x23,0x3c,0x74,0xff,0x24,0x3d,0x75,0xff,0x24,0x3e,0x76,0xff,0x25,0x3e,0x77, + 0xff,0x25,0x3f,0x77,0xff,0x26,0x3f,0x78,0xff,0x26,0x40,0x79,0xff,0x27,0x41, + 0x79,0xff,0x27,0x41,0x7a,0xff,0x82,0x28,0x42,0x7b,0xff,0x05,0x29,0x43,0x7c, + 0xff,0x2a,0x44,0x7d,0xff,0x2a,0x44,0x7e,0xff,0x2b,0x45,0x7e,0xff,0x2b,0x45, + 0x7f,0xff,0x82,0x2c,0x45,0x80,0xff,0x12,0x2d,0x46,0x81,0xff,0x2d,0x47,0x82, + 0xff,0x2e,0x47,0x82,0xff,0x2e,0x48,0x83,0xff,0x2f,0x48,0x84,0xff,0x30,0x49, + 0x85,0xff,0x30,0x4a,0x85,0xff,0x31,0x4a,0x86,0xff,0x31,0x4b,0x87,0xff,0x32, + 0x4b,0x87,0xff,0x32,0x4c,0x88,0xff,0x34,0x4e,0x8a,0xff,0x36,0x51,0x8d,0xff, + 0x37,0x53,0x8f,0xff,0x37,0x53,0x90,0xff,0x38,0x54,0x91,0xff,0x38,0x55,0x91, + 0xff,0x39,0x55,0x92,0xff,0x82,0x3a,0x56,0x93,0xff,0x0a,0x3b,0x57,0x94,0xff, + 0x3b,0x58,0x95,0xff,0x3c,0x58,0x96,0xff,0x3c,0x59,0x97,0xff,0x3d,0x59,0x97, + 0xff,0x3e,0x5a,0x98,0xff,0x3e,0x5b,0x99,0xff,0x3f,0x5b,0x99,0xff,0x3f,0x5c, + 0x9a,0xff,0x40,0x5c,0x9b,0xff,0x82,0x40,0x5d,0x9b,0xff,0x83,0x3f,0x5a,0x99, + 0xff,0x01,0x40,0x5b,0x9a,0xff,0x82,0x41,0x5c,0x9b,0xff,0x03,0x42,0x5d,0x9c, + 0xff,0x43,0x5e,0x9d,0xff,0x43,0x5e,0x9e,0xff,0x82,0x44,0x5f,0x9f,0xff,0x08, + 0x45,0x60,0xa0,0xff,0x45,0x61,0xa1,0xff,0x45,0x61,0xa2,0xff,0x45,0x62,0xa2, + 0xff,0x46,0x62,0xa3,0xff,0x47,0x63,0xa4,0xff,0x01,0x02,0x03,0xff,0x00,0x01, + 0x02,0xff,0x94,0x12,0x29,0x5d,0xff,0x10,0x12,0x29,0x5e,0xff,0x13,0x2a,0x5f, + 0xff,0x14,0x2c,0x61,0xff,0x14,0x2d,0x63,0xff,0x15,0x2e,0x65,0xff,0x16,0x2f, + 0x66,0xff,0x16,0x30,0x67,0xff,0x17,0x30,0x67,0xff,0x17,0x31,0x68,0xff,0x18, + 0x32,0x69,0xff,0x19,0x32,0x6a,0xff,0x19,0x33,0x6a,0xff,0x1a,0x33,0x6b,0xff, + 0x1a,0x34,0x6c,0xff,0x1b,0x35,0x6c,0xff,0x1c,0x35,0x6d,0xff,0x82,0x1d,0x36, + 0x6e,0xff,0x02,0x1e,0x36,0x6e,0xff,0x1d,0x36,0x6e,0xff,0x83,0x1d,0x36,0x6d, + 0xff,0x13,0x1e,0x37,0x6e,0xff,0x1e,0x38,0x6e,0xff,0x1f,0x38,0x6f,0xff,0x20, + 0x39,0x70,0xff,0x20,0x39,0x71,0xff,0x21,0x3a,0x71,0xff,0x21,0x3b,0x72,0xff, + 0x22,0x3b,0x73,0xff,0x23,0x3c,0x74,0xff,0x23,0x3d,0x74,0xff,0x24,0x3d,0x75, + 0xff,0x24,0x3e,0x76,0xff,0x25,0x3e,0x77,0xff,0x25,0x3f,0x77,0xff,0x26,0x40, + 0x78,0xff,0x26,0x40,0x79,0xff,0x27,0x41,0x7a,0xff,0x28,0x41,0x7a,0xff,0x28, + 0x42,0x7b,0xff,0x82,0x29,0x43,0x7c,0xff,0x02,0x2a,0x44,0x7d,0xff,0x2a,0x44, + 0x7e,0xff,0x82,0x2b,0x45,0x7f,0xff,0x12,0x2c,0x45,0x80,0xff,0x2c,0x46,0x81, + 0xff,0x2d,0x46,0x81,0xff,0x2e,0x47,0x82,0xff,0x2e,0x48,0x83,0xff,0x2f,0x48, + 0x83,0xff,0x2f,0x49,0x84,0xff,0x30,0x49,0x85,0xff,0x30,0x4a,0x86,0xff,0x31, + 0x4a,0x86,0xff,0x31,0x4b,0x87,0xff,0x32,0x4c,0x88,0xff,0x33,0x4c,0x89,0xff, + 0x34,0x4e,0x8b,0xff,0x36,0x51,0x8e,0xff,0x37,0x53,0x90,0xff,0x38,0x54,0x90, + 0xff,0x38,0x54,0x91,0xff,0x82,0x39,0x55,0x92,0xff,0x0a,0x3a,0x56,0x93,0xff, + 0x3b,0x57,0x94,0xff,0x3b,0x57,0x95,0xff,0x3c,0x58,0x95,0xff,0x3c,0x59,0x96, + 0xff,0x3d,0x59,0x97,0xff,0x3d,0x5a,0x98,0xff,0x3e,0x5a,0x98,0xff,0x3e,0x5b, + 0x99,0xff,0x3f,0x5b,0x9a,0xff,0x82,0x3f,0x5c,0x9a,0xff,0x04,0x3f,0x5a,0x98, + 0xff,0x3e,0x59,0x98,0xff,0x3f,0x59,0x98,0xff,0x3f,0x5a,0x99,0xff,0x82,0x40, + 0x5b,0x9a,0xff,0x0e,0x41,0x5c,0x9b,0xff,0x41,0x5c,0x9c,0xff,0x42,0x5d,0x9c, + 0xff,0x43,0x5e,0x9d,0xff,0x43,0x5e,0x9e,0xff,0x44,0x5f,0x9f,0xff,0x44,0x60, + 0xa0,0xff,0x45,0x60,0xa0,0xff,0x45,0x61,0xa1,0xff,0x45,0x61,0xa2,0xff,0x46, + 0x62,0xa2,0xff,0x46,0x63,0xa3,0xff,0x01,0x02,0x03,0xff,0x00,0x01,0x02,0xff, + 0x93,0x12,0x29,0x5d,0xff,0x13,0x12,0x2a,0x5e,0xff,0x13,0x2a,0x5f,0xff,0x13, + 0x2b,0x61,0xff,0x14,0x2d,0x63,0xff,0x14,0x2e,0x64,0xff,0x15,0x2e,0x65,0xff, + 0x16,0x2f,0x65,0xff,0x16,0x2f,0x66,0xff,0x17,0x30,0x67,0xff,0x17,0x31,0x67, + 0xff,0x18,0x31,0x68,0xff,0x18,0x32,0x69,0xff,0x19,0x33,0x6a,0xff,0x1a,0x33, + 0x6b,0xff,0x1a,0x34,0x6b,0xff,0x1b,0x34,0x6c,0xff,0x1b,0x35,0x6d,0xff,0x1c, + 0x35,0x6d,0xff,0x1c,0x35,0x6c,0xff,0x83,0x1c,0x35,0x6b,0xff,0x04,0x1c,0x35, + 0x6c,0xff,0x1d,0x36,0x6d,0xff,0x1e,0x37,0x6d,0xff,0x1e,0x37,0x6e,0xff,0x82, + 0x1f,0x38,0x6f,0xff,0x0e,0x20,0x39,0x70,0xff,0x20,0x3a,0x71,0xff,0x21,0x3a, + 0x72,0xff,0x22,0x3b,0x73,0xff,0x22,0x3c,0x73,0xff,0x23,0x3c,0x74,0xff,0x23, + 0x3d,0x75,0xff,0x24,0x3d,0x76,0xff,0x24,0x3e,0x76,0xff,0x25,0x3f,0x77,0xff, + 0x25,0x3f,0x78,0xff,0x26,0x40,0x78,0xff,0x27,0x40,0x79,0xff,0x27,0x41,0x7a, + 0xff,0x82,0x28,0x42,0x7b,0xff,0x0f,0x29,0x43,0x7c,0xff,0x29,0x43,0x7d,0xff, + 0x2a,0x44,0x7d,0xff,0x2a,0x45,0x7e,0xff,0x2b,0x45,0x7f,0xff,0x2c,0x45,0x7f, + 0xff,0x2c,0x45,0x80,0xff,0x2d,0x46,0x81,0xff,0x2d,0x47,0x82,0xff,0x2e,0x47, + 0x82,0xff,0x2e,0x48,0x83,0xff,0x2f,0x48,0x84,0xff,0x2f,0x49,0x84,0xff,0x30, + 0x4a,0x85,0xff,0x30,0x4a,0x86,0xff,0x82,0x31,0x4b,0x87,0xff,0x11,0x32,0x4c, + 0x88,0xff,0x33,0x4d,0x89,0xff,0x34,0x4f,0x8b,0xff,0x36,0x51,0x8e,0xff,0x37, + 0x53,0x90,0xff,0x38,0x54,0x90,0xff,0x38,0x54,0x91,0xff,0x39,0x55,0x92,0xff, + 0x39,0x56,0x93,0xff,0x3a,0x56,0x93,0xff,0x3b,0x57,0x94,0xff,0x3b,0x57,0x95, + 0xff,0x3c,0x58,0x96,0xff,0x3c,0x59,0x96,0xff,0x3d,0x59,0x97,0xff,0x3d,0x5a, + 0x98,0xff,0x3e,0x5a,0x98,0xff,0x82,0x3f,0x5b,0x99,0xff,0x01,0x3e,0x5a,0x98, + 0xff,0x82,0x3e,0x58,0x97,0xff,0x12,0x3e,0x59,0x98,0xff,0x3f,0x5a,0x98,0xff, + 0x3f,0x5a,0x99,0xff,0x40,0x5b,0x9a,0xff,0x40,0x5b,0x9b,0xff,0x41,0x5c,0x9b, + 0xff,0x42,0x5c,0x9c,0xff,0x42,0x5d,0x9d,0xff,0x43,0x5e,0x9e,0xff,0x43,0x5f, + 0x9e,0xff,0x44,0x5f,0x9f,0xff,0x45,0x60,0xa0,0xff,0x45,0x60,0xa1,0xff,0x45, + 0x61,0xa1,0xff,0x45,0x62,0xa2,0xff,0x46,0x62,0xa3,0xff,0x01,0x02,0x03,0xff, + 0x00,0x01,0x02,0xff,0x91,0x12,0x29,0x5d,0xff,0x03,0x12,0x2a,0x5e,0xff,0x12, + 0x2a,0x5f,0xff,0x13,0x2b,0x60,0xff,0x82,0x13,0x2c,0x62,0xff,0x0f,0x13,0x2d, + 0x63,0xff,0x14,0x2d,0x64,0xff,0x15,0x2e,0x64,0xff,0x15,0x2e,0x65,0xff,0x16, + 0x2f,0x66,0xff,0x16,0x30,0x66,0xff,0x17,0x30,0x67,0xff,0x18,0x31,0x68,0xff, + 0x18,0x32,0x69,0xff,0x19,0x32,0x69,0xff,0x19,0x33,0x6a,0xff,0x1a,0x33,0x6b, + 0xff,0x1a,0x34,0x6b,0xff,0x1b,0x34,0x6b,0xff,0x1b,0x33,0x6a,0xff,0x82,0x1b, + 0x33,0x69,0xff,0x05,0x1b,0x34,0x6a,0xff,0x1c,0x34,0x6b,0xff,0x1c,0x35,0x6b, + 0xff,0x1d,0x36,0x6c,0xff,0x1d,0x36,0x6d,0xff,0x82,0x1e,0x37,0x6e,0xff,0x30, + 0x1f,0x38,0x6f,0xff,0x1f,0x39,0x70,0xff,0x20,0x39,0x70,0xff,0x20,0x3a,0x71, + 0xff,0x21,0x3a,0x72,0xff,0x21,0x3b,0x73,0xff,0x22,0x3c,0x74,0xff,0x23,0x3c, + 0x74,0xff,0x24,0x3d,0x75,0xff,0x24,0x3e,0x76,0xff,0x25,0x3e,0x77,0xff,0x25, + 0x3f,0x77,0xff,0x26,0x3f,0x78,0xff,0x26,0x40,0x79,0xff,0x27,0x41,0x79,0xff, + 0x27,0x41,0x7a,0xff,0x28,0x42,0x7b,0xff,0x28,0x42,0x7c,0xff,0x29,0x43,0x7c, + 0xff,0x2a,0x44,0x7d,0xff,0x2a,0x44,0x7e,0xff,0x2b,0x45,0x7e,0xff,0x2b,0x45, + 0x7f,0xff,0x2c,0x45,0x80,0xff,0x2c,0x46,0x80,0xff,0x2d,0x46,0x81,0xff,0x2d, + 0x47,0x82,0xff,0x2e,0x47,0x83,0xff,0x2e,0x48,0x83,0xff,0x2f,0x49,0x84,0xff, + 0x30,0x49,0x85,0xff,0x30,0x4a,0x85,0xff,0x31,0x4a,0x86,0xff,0x31,0x4b,0x87, + 0xff,0x32,0x4b,0x88,0xff,0x32,0x4c,0x88,0xff,0x33,0x4d,0x89,0xff,0x34,0x4f, + 0x8b,0xff,0x36,0x51,0x8d,0xff,0x37,0x53,0x90,0xff,0x38,0x54,0x91,0xff,0x39, + 0x55,0x91,0xff,0x39,0x55,0x92,0xff,0x3a,0x56,0x93,0xff,0x3a,0x57,0x94,0xff, + 0x3b,0x57,0x94,0xff,0x3b,0x58,0x95,0xff,0x3c,0x58,0x96,0xff,0x82,0x3d,0x59, + 0x97,0xff,0x82,0x3e,0x5a,0x98,0xff,0x01,0x3e,0x59,0x97,0xff,0x82,0x3d,0x57, + 0x96,0xff,0x06,0x3d,0x58,0x97,0xff,0x3e,0x59,0x97,0xff,0x3e,0x59,0x98,0xff, + 0x3f,0x5a,0x99,0xff,0x40,0x5a,0x99,0xff,0x40,0x5b,0x9a,0xff,0x82,0x41,0x5c, + 0x9b,0xff,0x03,0x42,0x5d,0x9c,0xff,0x42,0x5d,0x9d,0xff,0x43,0x5e,0x9e,0xff, + 0x82,0x44,0x5f,0x9f,0xff,0x06,0x45,0x60,0xa0,0xff,0x45,0x61,0xa1,0xff,0x45, + 0x61,0xa2,0xff,0x45,0x62,0xa2,0xff,0x01,0x02,0x03,0xff,0x00,0x01,0x02,0xff, + 0x8f,0x12,0x29,0x5d,0xff,0x03,0x12,0x2a,0x5e,0xff,0x12,0x2a,0x5f,0xff,0x13, + 0x2b,0x60,0xff,0x85,0x13,0x2c,0x62,0xff,0x09,0x14,0x2d,0x63,0xff,0x14,0x2d, + 0x64,0xff,0x15,0x2e,0x64,0xff,0x15,0x2f,0x65,0xff,0x16,0x2f,0x66,0xff,0x16, + 0x30,0x67,0xff,0x17,0x31,0x68,0xff,0x18,0x31,0x68,0xff,0x18,0x32,0x69,0xff, + 0x82,0x19,0x32,0x69,0xff,0x83,0x1a,0x32,0x68,0xff,0x18,0x1b,0x32,0x68,0xff, + 0x1b,0x33,0x69,0xff,0x1b,0x33,0x6a,0xff,0x1b,0x34,0x6a,0xff,0x1c,0x35,0x6b, + 0xff,0x1c,0x35,0x6c,0xff,0x1d,0x36,0x6c,0xff,0x1d,0x36,0x6d,0xff,0x1e,0x37, + 0x6e,0xff,0x1e,0x38,0x6f,0xff,0x1f,0x38,0x6f,0xff,0x20,0x39,0x70,0xff,0x20, + 0x39,0x71,0xff,0x21,0x3a,0x71,0xff,0x21,0x3b,0x72,0xff,0x22,0x3b,0x73,0xff, + 0x22,0x3c,0x73,0xff,0x23,0x3c,0x74,0xff,0x24,0x3d,0x75,0xff,0x24,0x3e,0x76, + 0xff,0x25,0x3e,0x77,0xff,0x25,0x3f,0x77,0xff,0x26,0x40,0x78,0xff,0x26,0x40, + 0x79,0xff,0x82,0x27,0x41,0x7a,0xff,0x01,0x28,0x42,0x7b,0xff,0x82,0x29,0x43, + 0x7c,0xff,0x02,0x2a,0x44,0x7d,0xff,0x2a,0x44,0x7e,0xff,0x82,0x2b,0x45,0x7f, + 0xff,0x0b,0x2c,0x45,0x80,0xff,0x2c,0x46,0x81,0xff,0x2d,0x46,0x81,0xff,0x2e, + 0x47,0x82,0xff,0x2e,0x48,0x83,0xff,0x2f,0x48,0x83,0xff,0x2f,0x49,0x84,0xff, + 0x30,0x49,0x85,0xff,0x30,0x4a,0x86,0xff,0x31,0x4a,0x86,0xff,0x31,0x4b,0x87, + 0xff,0x82,0x32,0x4c,0x88,0xff,0x17,0x33,0x4d,0x89,0xff,0x34,0x4f,0x8b,0xff, + 0x36,0x51,0x8d,0xff,0x38,0x53,0x90,0xff,0x38,0x54,0x91,0xff,0x39,0x55,0x92, + 0xff,0x39,0x56,0x93,0xff,0x3a,0x56,0x93,0xff,0x3b,0x57,0x94,0xff,0x3b,0x57, + 0x95,0xff,0x3c,0x58,0x96,0xff,0x3c,0x59,0x96,0xff,0x3d,0x59,0x97,0xff,0x3d, + 0x5a,0x97,0xff,0x3d,0x59,0x97,0xff,0x3c,0x57,0x95,0xff,0x3c,0x56,0x95,0xff, + 0x3c,0x57,0x95,0xff,0x3d,0x58,0x96,0xff,0x3d,0x58,0x97,0xff,0x3e,0x59,0x97, + 0xff,0x3f,0x59,0x98,0xff,0x3f,0x5a,0x99,0xff,0x82,0x40,0x5b,0x9a,0xff,0x05, + 0x41,0x5c,0x9b,0xff,0x41,0x5c,0x9c,0xff,0x42,0x5d,0x9c,0xff,0x42,0x5d,0x9d, + 0xff,0x43,0x5e,0x9e,0xff,0x82,0x44,0x5f,0x9f,0xff,0x05,0x45,0x60,0xa0,0xff, + 0x45,0x61,0xa1,0xff,0x45,0x61,0xa2,0xff,0x01,0x02,0x03,0xff,0x00,0x01,0x02, + 0xff,0x8d,0x12,0x29,0x5d,0xff,0x03,0x12,0x2a,0x5e,0xff,0x12,0x2a,0x5f,0xff, + 0x13,0x2b,0x60,0xff,0x87,0x13,0x2c,0x62,0xff,0x08,0x13,0x2c,0x63,0xff,0x14, + 0x2d,0x63,0xff,0x14,0x2e,0x64,0xff,0x15,0x2e,0x65,0xff,0x16,0x2f,0x65,0xff, + 0x16,0x2f,0x66,0xff,0x17,0x30,0x67,0xff,0x17,0x31,0x68,0xff,0x82,0x18,0x31, + 0x67,0xff,0x01,0x18,0x31,0x66,0xff,0x82,0x19,0x31,0x66,0xff,0x1b,0x1a,0x31, + 0x67,0xff,0x1a,0x32,0x68,0xff,0x1b,0x32,0x68,0xff,0x1b,0x33,0x69,0xff,0x1b, + 0x34,0x6a,0xff,0x1b,0x34,0x6b,0xff,0x1c,0x35,0x6b,0xff,0x1c,0x35,0x6c,0xff, + 0x1d,0x36,0x6d,0xff,0x1e,0x37,0x6d,0xff,0x1e,0x37,0x6e,0xff,0x1f,0x38,0x6f, + 0xff,0x1f,0x38,0x70,0xff,0x20,0x39,0x70,0xff,0x20,0x3a,0x71,0xff,0x21,0x3a, + 0x72,0xff,0x21,0x3b,0x72,0xff,0x22,0x3b,0x73,0xff,0x22,0x3c,0x74,0xff,0x23, + 0x3c,0x74,0xff,0x24,0x3d,0x75,0xff,0x24,0x3e,0x76,0xff,0x25,0x3f,0x77,0xff, + 0x26,0x3f,0x78,0xff,0x26,0x40,0x78,0xff,0x27,0x40,0x79,0xff,0x27,0x41,0x7a, + 0xff,0x82,0x28,0x42,0x7b,0xff,0x05,0x29,0x43,0x7c,0xff,0x29,0x43,0x7d,0xff, + 0x2a,0x44,0x7d,0xff,0x2a,0x45,0x7e,0xff,0x2b,0x45,0x7f,0xff,0x82,0x2c,0x45, + 0x80,0xff,0x19,0x2d,0x46,0x81,0xff,0x2d,0x46,0x82,0xff,0x2e,0x47,0x82,0xff, + 0x2e,0x48,0x83,0xff,0x2f,0x48,0x84,0xff,0x2f,0x49,0x84,0xff,0x30,0x49,0x85, + 0xff,0x30,0x4a,0x86,0xff,0x31,0x4b,0x87,0xff,0x32,0x4b,0x87,0xff,0x32,0x4c, + 0x88,0xff,0x33,0x4c,0x89,0xff,0x33,0x4d,0x89,0xff,0x34,0x4e,0x8b,0xff,0x36, + 0x51,0x8d,0xff,0x37,0x53,0x8f,0xff,0x38,0x54,0x91,0xff,0x39,0x55,0x92,0xff, + 0x3a,0x56,0x93,0xff,0x3a,0x56,0x94,0xff,0x3b,0x57,0x94,0xff,0x3b,0x58,0x95, + 0xff,0x3c,0x58,0x96,0xff,0x3c,0x59,0x96,0xff,0x3c,0x58,0x96,0xff,0x82,0x3b, + 0x56,0x94,0xff,0x15,0x3c,0x56,0x94,0xff,0x3c,0x57,0x95,0xff,0x3d,0x57,0x96, + 0xff,0x3d,0x58,0x96,0xff,0x3e,0x58,0x97,0xff,0x3e,0x59,0x98,0xff,0x3f,0x5a, + 0x98,0xff,0x3f,0x5a,0x99,0xff,0x40,0x5b,0x9a,0xff,0x40,0x5b,0x9b,0xff,0x41, + 0x5c,0x9b,0xff,0x42,0x5d,0x9c,0xff,0x42,0x5d,0x9d,0xff,0x43,0x5e,0x9d,0xff, + 0x43,0x5e,0x9e,0xff,0x44,0x5f,0x9f,0xff,0x44,0x60,0x9f,0xff,0x45,0x60,0xa0, + 0xff,0x45,0x61,0xa1,0xff,0x01,0x02,0x03,0xff,0x00,0x01,0x02,0xff,0x8b,0x12, + 0x29,0x5d,0xff,0x03,0x12,0x2a,0x5e,0xff,0x12,0x2a,0x5f,0xff,0x13,0x2b,0x60, + 0xff,0x8a,0x13,0x2c,0x62,0xff,0x04,0x14,0x2d,0x63,0xff,0x14,0x2d,0x64,0xff, + 0x15,0x2e,0x64,0xff,0x15,0x2e,0x65,0xff,0x82,0x16,0x2f,0x66,0xff,0x01,0x17, + 0x2f,0x65,0xff,0x82,0x17,0x2f,0x64,0xff,0x06,0x18,0x2f,0x64,0xff,0x18,0x30, + 0x65,0xff,0x19,0x30,0x66,0xff,0x19,0x31,0x67,0xff,0x1a,0x32,0x67,0xff,0x1a, + 0x32,0x68,0xff,0x82,0x1b,0x33,0x69,0xff,0x05,0x1b,0x34,0x6a,0xff,0x1c,0x34, + 0x6b,0xff,0x1c,0x35,0x6c,0xff,0x1d,0x36,0x6c,0xff,0x1d,0x36,0x6d,0xff,0x82, + 0x1e,0x37,0x6e,0xff,0x31,0x1f,0x38,0x6f,0xff,0x1f,0x39,0x70,0xff,0x20,0x39, + 0x70,0xff,0x21,0x3a,0x71,0xff,0x21,0x3a,0x72,0xff,0x22,0x3b,0x73,0xff,0x22, + 0x3c,0x73,0xff,0x23,0x3c,0x74,0xff,0x23,0x3d,0x75,0xff,0x24,0x3d,0x75,0xff, + 0x24,0x3e,0x76,0xff,0x25,0x3f,0x77,0xff,0x26,0x3f,0x78,0xff,0x26,0x40,0x79, + 0xff,0x27,0x41,0x79,0xff,0x27,0x41,0x7a,0xff,0x28,0x42,0x7b,0xff,0x28,0x42, + 0x7c,0xff,0x29,0x43,0x7c,0xff,0x2a,0x44,0x7d,0xff,0x2a,0x44,0x7e,0xff,0x2b, + 0x45,0x7e,0xff,0x2b,0x45,0x7f,0xff,0x2c,0x45,0x80,0xff,0x2c,0x46,0x80,0xff, + 0x2d,0x46,0x81,0xff,0x2d,0x47,0x82,0xff,0x2e,0x47,0x83,0xff,0x2e,0x48,0x83, + 0xff,0x2f,0x49,0x84,0xff,0x30,0x49,0x85,0xff,0x30,0x4a,0x85,0xff,0x31,0x4a, + 0x86,0xff,0x31,0x4b,0x87,0xff,0x32,0x4b,0x88,0xff,0x32,0x4c,0x88,0xff,0x33, + 0x4d,0x89,0xff,0x33,0x4d,0x8a,0xff,0x34,0x4e,0x8b,0xff,0x35,0x50,0x8c,0xff, + 0x37,0x52,0x8e,0xff,0x38,0x54,0x91,0xff,0x39,0x55,0x92,0xff,0x3a,0x56,0x93, + 0xff,0x3a,0x57,0x94,0xff,0x3b,0x57,0x94,0xff,0x3b,0x58,0x95,0xff,0x3c,0x58, + 0x95,0xff,0x3b,0x56,0x94,0xff,0x82,0x3b,0x55,0x93,0xff,0x07,0x3b,0x56,0x94, + 0xff,0x3c,0x56,0x95,0xff,0x3c,0x57,0x95,0xff,0x3d,0x57,0x96,0xff,0x3d,0x58, + 0x97,0xff,0x3e,0x59,0x97,0xff,0x3f,0x59,0x98,0xff,0x82,0x3f,0x5a,0x99,0xff, + 0x01,0x40,0x5b,0x9a,0xff,0x82,0x41,0x5c,0x9b,0xff,0x09,0x42,0x5d,0x9c,0xff, + 0x42,0x5d,0x9d,0xff,0x43,0x5e,0x9e,0xff,0x43,0x5f,0x9e,0xff,0x44,0x5f,0x9f, + 0xff,0x44,0x60,0xa0,0xff,0x45,0x60,0xa0,0xff,0x01,0x02,0x03,0xff,0x00,0x01, + 0x02,0xff,0x89,0x12,0x29,0x5d,0xff,0x04,0x12,0x29,0x5e,0xff,0x13,0x2a,0x5f, + 0xff,0x13,0x2b,0x60,0xff,0x13,0x2c,0x61,0xff,0x8c,0x13,0x2c,0x62,0xff,0x02, + 0x14,0x2d,0x63,0xff,0x14,0x2d,0x64,0xff,0x82,0x15,0x2e,0x64,0xff,0x25,0x15, + 0x2d,0x63,0xff,0x16,0x2d,0x62,0xff,0x16,0x2e,0x63,0xff,0x17,0x2e,0x63,0xff, + 0x17,0x2f,0x64,0xff,0x18,0x2f,0x65,0xff,0x18,0x30,0x65,0xff,0x19,0x31,0x66, + 0xff,0x1a,0x31,0x67,0xff,0x1a,0x32,0x67,0xff,0x1b,0x32,0x68,0xff,0x1b,0x33, + 0x69,0xff,0x1b,0x33,0x6a,0xff,0x1b,0x34,0x6a,0xff,0x1c,0x35,0x6b,0xff,0x1c, + 0x35,0x6c,0xff,0x1d,0x36,0x6c,0xff,0x1d,0x36,0x6d,0xff,0x1e,0x37,0x6e,0xff, + 0x1e,0x38,0x6f,0xff,0x1f,0x38,0x6f,0xff,0x20,0x39,0x70,0xff,0x20,0x39,0x71, + 0xff,0x21,0x3a,0x71,0xff,0x21,0x3b,0x72,0xff,0x22,0x3b,0x73,0xff,0x22,0x3c, + 0x73,0xff,0x23,0x3c,0x74,0xff,0x23,0x3d,0x75,0xff,0x24,0x3e,0x76,0xff,0x25, + 0x3e,0x76,0xff,0x25,0x3f,0x77,0xff,0x26,0x40,0x78,0xff,0x26,0x40,0x79,0xff, + 0x27,0x41,0x7a,0xff,0x28,0x41,0x7a,0xff,0x28,0x42,0x7b,0xff,0x82,0x29,0x43, + 0x7c,0xff,0x02,0x2a,0x44,0x7d,0xff,0x2a,0x44,0x7e,0xff,0x82,0x2b,0x45,0x7f, + 0xff,0x15,0x2c,0x45,0x80,0xff,0x2c,0x46,0x81,0xff,0x2d,0x46,0x81,0xff,0x2d, + 0x47,0x82,0xff,0x2e,0x48,0x83,0xff,0x2f,0x48,0x84,0xff,0x2f,0x49,0x84,0xff, + 0x30,0x49,0x85,0xff,0x30,0x4a,0x86,0xff,0x31,0x4a,0x86,0xff,0x31,0x4b,0x87, + 0xff,0x32,0x4c,0x88,0xff,0x32,0x4c,0x89,0xff,0x33,0x4d,0x89,0xff,0x34,0x4d, + 0x8a,0xff,0x34,0x4e,0x8b,0xff,0x35,0x4f,0x8c,0xff,0x36,0x51,0x8e,0xff,0x37, + 0x52,0x8f,0xff,0x39,0x55,0x92,0xff,0x3a,0x56,0x93,0xff,0x82,0x3b,0x57,0x94, + 0xff,0x01,0x3a,0x55,0x93,0xff,0x82,0x3a,0x54,0x92,0xff,0x0a,0x3a,0x55,0x93, + 0xff,0x3b,0x55,0x93,0xff,0x3b,0x56,0x94,0xff,0x3c,0x56,0x95,0xff,0x3c,0x57, + 0x95,0xff,0x3d,0x58,0x96,0xff,0x3e,0x58,0x97,0xff,0x3e,0x59,0x98,0xff,0x3f, + 0x59,0x98,0xff,0x3f,0x5a,0x99,0xff,0x82,0x40,0x5b,0x9a,0xff,0x05,0x41,0x5c, + 0x9b,0xff,0x41,0x5c,0x9c,0xff,0x42,0x5d,0x9c,0xff,0x42,0x5e,0x9d,0xff,0x43, + 0x5e,0x9e,0xff,0x82,0x44,0x5f,0x9f,0xff,0x03,0x45,0x60,0xa0,0xff,0x01,0x02, + 0x03,0xff,0x00,0x01,0x02,0xff,0x87,0x12,0x29,0x5d,0xff,0x04,0x12,0x29,0x5e, + 0xff,0x13,0x2a,0x5f,0xff,0x13,0x2b,0x60,0xff,0x13,0x2c,0x61,0xff,0x90,0x13, + 0x2c,0x62,0xff,0x82,0x14,0x2c,0x61,0xff,0x24,0x15,0x2c,0x61,0xff,0x15,0x2d, + 0x61,0xff,0x16,0x2d,0x62,0xff,0x16,0x2e,0x63,0xff,0x17,0x2e,0x63,0xff,0x18, + 0x2f,0x64,0xff,0x18,0x30,0x65,0xff,0x19,0x30,0x66,0xff,0x19,0x31,0x66,0xff, + 0x1a,0x31,0x67,0xff,0x1a,0x32,0x68,0xff,0x1b,0x32,0x69,0xff,0x1b,0x33,0x69, + 0xff,0x1b,0x34,0x6a,0xff,0x1b,0x34,0x6b,0xff,0x1c,0x35,0x6b,0xff,0x1d,0x35, + 0x6c,0xff,0x1d,0x36,0x6d,0xff,0x1e,0x37,0x6d,0xff,0x1e,0x37,0x6e,0xff,0x1f, + 0x38,0x6f,0xff,0x1f,0x38,0x70,0xff,0x20,0x39,0x70,0xff,0x20,0x3a,0x71,0xff, + 0x21,0x3a,0x72,0xff,0x21,0x3b,0x72,0xff,0x22,0x3b,0x73,0xff,0x22,0x3c,0x74, + 0xff,0x23,0x3d,0x74,0xff,0x24,0x3d,0x75,0xff,0x24,0x3e,0x76,0xff,0x25,0x3e, + 0x77,0xff,0x25,0x3f,0x77,0xff,0x26,0x3f,0x78,0xff,0x27,0x40,0x79,0xff,0x27, + 0x41,0x7a,0xff,0x82,0x28,0x42,0x7b,0xff,0x05,0x29,0x43,0x7c,0xff,0x29,0x43, + 0x7d,0xff,0x2a,0x44,0x7d,0xff,0x2a,0x45,0x7e,0xff,0x2b,0x45,0x7f,0xff,0x82, + 0x2c,0x45,0x80,0xff,0x13,0x2d,0x46,0x81,0xff,0x2d,0x47,0x82,0xff,0x2e,0x47, + 0x82,0xff,0x2e,0x48,0x83,0xff,0x2f,0x48,0x84,0xff,0x2f,0x49,0x84,0xff,0x30, + 0x49,0x85,0xff,0x30,0x4a,0x86,0xff,0x31,0x4b,0x87,0xff,0x32,0x4b,0x87,0xff, + 0x32,0x4c,0x88,0xff,0x33,0x4c,0x89,0xff,0x33,0x4d,0x89,0xff,0x34,0x4e,0x8a, + 0xff,0x34,0x4e,0x8b,0xff,0x35,0x4f,0x8c,0xff,0x36,0x50,0x8d,0xff,0x37,0x52, + 0x8e,0xff,0x38,0x53,0x90,0xff,0x82,0x39,0x55,0x92,0xff,0x19,0x39,0x54,0x91, + 0xff,0x39,0x53,0x91,0xff,0x39,0x54,0x91,0xff,0x3a,0x54,0x92,0xff,0x3a,0x55, + 0x93,0xff,0x3b,0x55,0x94,0xff,0x3c,0x56,0x94,0xff,0x3c,0x57,0x95,0xff,0x3d, + 0x57,0x96,0xff,0x3d,0x58,0x96,0xff,0x3e,0x58,0x97,0xff,0x3e,0x59,0x98,0xff, + 0x3f,0x5a,0x98,0xff,0x3f,0x5a,0x99,0xff,0x40,0x5b,0x9a,0xff,0x40,0x5b,0x9b, + 0xff,0x41,0x5c,0x9b,0xff,0x42,0x5d,0x9c,0xff,0x42,0x5d,0x9d,0xff,0x43,0x5e, + 0x9d,0xff,0x43,0x5e,0x9e,0xff,0x44,0x5f,0x9f,0xff,0x44,0x60,0xa0,0xff,0x01, + 0x02,0x03,0xff,0x00,0x01,0x02,0xff,0x85,0x12,0x29,0x5d,0xff,0x04,0x12,0x29, + 0x5e,0xff,0x13,0x2a,0x5f,0xff,0x13,0x2b,0x60,0xff,0x13,0x2c,0x61,0xff,0x8f, + 0x13,0x2c,0x62,0xff,0x11,0x13,0x2c,0x61,0xff,0x12,0x2b,0x60,0xff,0x13,0x2a, + 0x5f,0xff,0x13,0x2b,0x5f,0xff,0x14,0x2b,0x5f,0xff,0x14,0x2c,0x60,0xff,0x15, + 0x2c,0x61,0xff,0x15,0x2d,0x62,0xff,0x16,0x2d,0x62,0xff,0x17,0x2e,0x63,0xff, + 0x17,0x2f,0x64,0xff,0x18,0x2f,0x65,0xff,0x18,0x30,0x65,0xff,0x19,0x30,0x66, + 0xff,0x19,0x31,0x67,0xff,0x1a,0x32,0x67,0xff,0x1a,0x32,0x68,0xff,0x82,0x1b, + 0x33,0x69,0xff,0x05,0x1b,0x34,0x6a,0xff,0x1c,0x34,0x6b,0xff,0x1c,0x35,0x6c, + 0xff,0x1d,0x36,0x6c,0xff,0x1d,0x36,0x6d,0xff,0x82,0x1e,0x37,0x6e,0xff,0x29, + 0x1f,0x38,0x6f,0xff,0x1f,0x39,0x70,0xff,0x20,0x39,0x71,0xff,0x20,0x3a,0x71, + 0xff,0x21,0x3a,0x72,0xff,0x22,0x3b,0x73,0xff,0x22,0x3c,0x73,0xff,0x23,0x3c, + 0x74,0xff,0x23,0x3d,0x75,0xff,0x24,0x3d,0x75,0xff,0x24,0x3e,0x76,0xff,0x25, + 0x3f,0x77,0xff,0x25,0x3f,0x78,0xff,0x26,0x40,0x78,0xff,0x27,0x40,0x79,0xff, + 0x27,0x41,0x7a,0xff,0x28,0x42,0x7b,0xff,0x29,0x42,0x7c,0xff,0x29,0x43,0x7c, + 0xff,0x2a,0x44,0x7d,0xff,0x2a,0x44,0x7e,0xff,0x2b,0x45,0x7e,0xff,0x2b,0x45, + 0x7f,0xff,0x2c,0x45,0x80,0xff,0x2c,0x46,0x80,0xff,0x2d,0x46,0x81,0xff,0x2d, + 0x47,0x82,0xff,0x2e,0x47,0x83,0xff,0x2e,0x48,0x83,0xff,0x2f,0x48,0x84,0xff, + 0x30,0x49,0x85,0xff,0x30,0x4a,0x85,0xff,0x31,0x4a,0x86,0xff,0x31,0x4b,0x87, + 0xff,0x32,0x4b,0x88,0xff,0x32,0x4c,0x88,0xff,0x33,0x4d,0x89,0xff,0x33,0x4d, + 0x8a,0xff,0x34,0x4e,0x8a,0xff,0x35,0x4f,0x8b,0xff,0x35,0x4f,0x8c,0xff,0x82, + 0x36,0x50,0x8d,0xff,0x05,0x37,0x52,0x8f,0xff,0x38,0x52,0x8f,0xff,0x38,0x52, + 0x90,0xff,0x38,0x53,0x90,0xff,0x39,0x53,0x91,0xff,0x82,0x3a,0x54,0x92,0xff, + 0x14,0x3b,0x55,0x93,0xff,0x3b,0x56,0x94,0xff,0x3c,0x56,0x94,0xff,0x3c,0x57, + 0x95,0xff,0x3d,0x57,0x96,0xff,0x3d,0x58,0x97,0xff,0x3e,0x59,0x97,0xff,0x3e, + 0x59,0x98,0xff,0x3f,0x5a,0x99,0xff,0x40,0x5a,0x99,0xff,0x40,0x5b,0x9a,0xff, + 0x41,0x5c,0x9b,0xff,0x41,0x5c,0x9c,0xff,0x42,0x5d,0x9c,0xff,0x42,0x5d,0x9d, + 0xff,0x43,0x5e,0x9e,0xff,0x43,0x5f,0x9e,0xff,0x44,0x5f,0x9f,0xff,0x01,0x02, + 0x03,0xff,0x00,0x01,0x02,0xff,0x83,0x12,0x29,0x5d,0xff,0x04,0x12,0x29,0x5e, + 0xff,0x13,0x2a,0x5f,0xff,0x13,0x2b,0x60,0xff,0x13,0x2c,0x61,0xff,0x90,0x13, + 0x2c,0x62,0xff,0x02,0x12,0x2b,0x60,0xff,0x12,0x2a,0x5e,0xff,0x82,0x12,0x29, + 0x5d,0xff,0x03,0x13,0x2a,0x5e,0xff,0x13,0x2b,0x5f,0xff,0x14,0x2b,0x60,0xff, + 0x82,0x15,0x2c,0x61,0xff,0x0b,0x16,0x2d,0x62,0xff,0x16,0x2e,0x63,0xff,0x17, + 0x2e,0x63,0xff,0x17,0x2f,0x64,0xff,0x18,0x2f,0x65,0xff,0x18,0x30,0x65,0xff, + 0x19,0x31,0x66,0xff,0x19,0x31,0x67,0xff,0x1a,0x32,0x67,0xff,0x1b,0x32,0x68, + 0xff,0x1b,0x33,0x69,0xff,0x82,0x1b,0x34,0x6a,0xff,0x17,0x1c,0x35,0x6b,0xff, + 0x1c,0x35,0x6c,0xff,0x1d,0x36,0x6c,0xff,0x1d,0x36,0x6d,0xff,0x1e,0x37,0x6e, + 0xff,0x1e,0x38,0x6f,0xff,0x1f,0x38,0x6f,0xff,0x20,0x39,0x70,0xff,0x20,0x39, + 0x71,0xff,0x21,0x3a,0x71,0xff,0x21,0x3b,0x72,0xff,0x22,0x3b,0x73,0xff,0x22, + 0x3c,0x74,0xff,0x23,0x3c,0x74,0xff,0x23,0x3d,0x75,0xff,0x24,0x3e,0x76,0xff, + 0x25,0x3e,0x76,0xff,0x25,0x3f,0x77,0xff,0x26,0x3f,0x78,0xff,0x27,0x40,0x79, + 0xff,0x28,0x42,0x7b,0xff,0x29,0x43,0x7d,0xff,0x28,0x42,0x7b,0xff,0x82,0x29, + 0x43,0x7c,0xff,0x02,0x2a,0x44,0x7d,0xff,0x2a,0x44,0x7e,0xff,0x82,0x2b,0x45, + 0x7f,0xff,0x01,0x2c,0x45,0x80,0xff,0x82,0x2d,0x46,0x81,0xff,0x08,0x2e,0x47, + 0x82,0xff,0x2e,0x48,0x83,0xff,0x2f,0x48,0x83,0xff,0x2f,0x49,0x84,0xff,0x30, + 0x49,0x85,0xff,0x30,0x4a,0x86,0xff,0x31,0x4a,0x86,0xff,0x31,0x4b,0x87,0xff, + 0x82,0x32,0x4c,0x88,0xff,0x03,0x33,0x4d,0x89,0xff,0x34,0x4d,0x8a,0xff,0x34, + 0x4e,0x8b,0xff,0x82,0x35,0x4f,0x8c,0xff,0x12,0x36,0x50,0x8d,0xff,0x36,0x51, + 0x8e,0xff,0x37,0x51,0x8e,0xff,0x38,0x52,0x8f,0xff,0x38,0x52,0x90,0xff,0x39, + 0x53,0x90,0xff,0x39,0x54,0x91,0xff,0x3a,0x54,0x92,0xff,0x3a,0x55,0x93,0xff, + 0x3b,0x55,0x93,0xff,0x3b,0x56,0x94,0xff,0x3c,0x56,0x95,0xff,0x3c,0x57,0x95, + 0xff,0x3d,0x58,0x96,0xff,0x3e,0x58,0x97,0xff,0x3e,0x59,0x98,0xff,0x3f,0x59, + 0x98,0xff,0x3f,0x5a,0x99,0xff,0x82,0x40,0x5b,0x9a,0xff,0x0d,0x41,0x5c,0x9b, + 0xff,0x41,0x5c,0x9c,0xff,0x42,0x5d,0x9c,0xff,0x42,0x5e,0x9d,0xff,0x43,0x5e, + 0x9e,0xff,0x44,0x5f,0x9f,0xff,0x01,0x02,0x03,0xff,0x00,0x01,0x02,0xff,0x12, + 0x29,0x5d,0xff,0x12,0x29,0x5e,0xff,0x13,0x2a,0x5f,0xff,0x13,0x2b,0x60,0xff, + 0x13,0x2c,0x61,0xff,0x90,0x13,0x2c,0x62,0xff,0x03,0x13,0x2b,0x60,0xff,0x12, + 0x2a,0x5f,0xff,0x12,0x29,0x5e,0xff,0x83,0x12,0x29,0x5d,0xff,0x0f,0x12,0x29, + 0x5e,0xff,0x13,0x2a,0x5e,0xff,0x14,0x2b,0x5f,0xff,0x14,0x2b,0x60,0xff,0x15, + 0x2c,0x61,0xff,0x15,0x2d,0x61,0xff,0x16,0x2d,0x62,0xff,0x16,0x2e,0x63,0xff, + 0x17,0x2e,0x64,0xff,0x17,0x2f,0x64,0xff,0x18,0x30,0x65,0xff,0x19,0x30,0x66, + 0xff,0x19,0x31,0x66,0xff,0x1a,0x31,0x67,0xff,0x1a,0x32,0x68,0xff,0x82,0x1b, + 0x33,0x69,0xff,0x1e,0x1b,0x34,0x6a,0xff,0x1b,0x34,0x6b,0xff,0x1c,0x35,0x6b, + 0xff,0x1c,0x36,0x6c,0xff,0x1d,0x36,0x6d,0xff,0x1e,0x37,0x6d,0xff,0x1e,0x37, + 0x6e,0xff,0x1f,0x38,0x6f,0xff,0x1f,0x38,0x70,0xff,0x20,0x39,0x70,0xff,0x20, + 0x3a,0x71,0xff,0x21,0x3a,0x72,0xff,0x21,0x3b,0x72,0xff,0x22,0x3b,0x73,0xff, + 0x22,0x3c,0x74,0xff,0x23,0x3d,0x75,0xff,0x24,0x3d,0x75,0xff,0x24,0x3e,0x76, + 0xff,0x25,0x3e,0x77,0xff,0x25,0x3f,0x77,0xff,0x27,0x40,0x79,0xff,0x29,0x43, + 0x7d,0xff,0x2a,0x44,0x7e,0xff,0x29,0x43,0x7d,0xff,0x28,0x42,0x7b,0xff,0x29, + 0x43,0x7c,0xff,0x29,0x43,0x7d,0xff,0x2a,0x44,0x7d,0xff,0x2a,0x45,0x7e,0xff, + 0x2b,0x45,0x7f,0xff,0x82,0x2c,0x45,0x80,0xff,0x2f,0x2d,0x46,0x81,0xff,0x2d, + 0x47,0x82,0xff,0x2e,0x47,0x82,0xff,0x2e,0x48,0x83,0xff,0x2f,0x48,0x84,0xff, + 0x2f,0x49,0x84,0xff,0x30,0x4a,0x85,0xff,0x30,0x4a,0x86,0xff,0x31,0x4b,0x87, + 0xff,0x32,0x4b,0x87,0xff,0x32,0x4c,0x88,0xff,0x33,0x4c,0x89,0xff,0x33,0x4d, + 0x89,0xff,0x34,0x4e,0x8a,0xff,0x35,0x4e,0x8b,0xff,0x35,0x4f,0x8c,0xff,0x36, + 0x50,0x8c,0xff,0x36,0x50,0x8d,0xff,0x37,0x51,0x8e,0xff,0x37,0x51,0x8f,0xff, + 0x38,0x52,0x8f,0xff,0x38,0x53,0x90,0xff,0x39,0x53,0x91,0xff,0x39,0x54,0x92, + 0xff,0x3a,0x54,0x92,0xff,0x3b,0x55,0x93,0xff,0x3b,0x56,0x94,0xff,0x3c,0x56, + 0x94,0xff,0x3c,0x57,0x95,0xff,0x3d,0x57,0x96,0xff,0x3d,0x58,0x96,0xff,0x3e, + 0x58,0x97,0xff,0x3e,0x59,0x98,0xff,0x3f,0x5a,0x98,0xff,0x3f,0x5a,0x99,0xff, + 0x40,0x5b,0x9a,0xff,0x40,0x5b,0x9b,0xff,0x41,0x5c,0x9b,0xff,0x42,0x5d,0x9c, + 0xff,0x42,0x5d,0x9d,0xff,0x43,0x5e,0x9d,0xff,0x43,0x5e,0x9e,0xff,0x01,0x02, + 0x03,0xff,0x00,0x01,0x02,0xff,0x13,0x2a,0x5f,0xff,0x13,0x2b,0x61,0xff,0x13, + 0x2c,0x61,0xff,0x90,0x13,0x2c,0x62,0xff,0x03,0x13,0x2b,0x61,0xff,0x12,0x2a, + 0x5f,0xff,0x12,0x29,0x5e,0xff,0x86,0x12,0x29,0x5d,0xff,0x05,0x13,0x2a,0x5e, + 0xff,0x13,0x2b,0x5f,0xff,0x14,0x2b,0x60,0xff,0x14,0x2c,0x60,0xff,0x15,0x2c, + 0x61,0xff,0x82,0x16,0x2d,0x62,0xff,0x08,0x17,0x2e,0x63,0xff,0x17,0x2f,0x64, + 0xff,0x18,0x2f,0x65,0xff,0x18,0x30,0x65,0xff,0x19,0x30,0x66,0xff,0x19,0x31, + 0x67,0xff,0x1a,0x32,0x67,0xff,0x1a,0x32,0x68,0xff,0x82,0x1b,0x33,0x69,0xff, + 0x05,0x1b,0x34,0x6a,0xff,0x1c,0x35,0x6b,0xff,0x1c,0x35,0x6c,0xff,0x1d,0x36, + 0x6c,0xff,0x1d,0x36,0x6d,0xff,0x82,0x1e,0x37,0x6e,0xff,0x29,0x1f,0x38,0x6f, + 0xff,0x1f,0x39,0x70,0xff,0x20,0x39,0x71,0xff,0x20,0x3a,0x71,0xff,0x21,0x3a, + 0x72,0xff,0x22,0x3b,0x73,0xff,0x22,0x3c,0x73,0xff,0x23,0x3c,0x74,0xff,0x23, + 0x3d,0x75,0xff,0x24,0x3d,0x75,0xff,0x24,0x3e,0x76,0xff,0x25,0x3f,0x78,0xff, + 0x28,0x41,0x7b,0xff,0x29,0x43,0x7d,0xff,0x29,0x43,0x7e,0xff,0x2a,0x43,0x7e, + 0xff,0x29,0x43,0x7c,0xff,0x28,0x42,0x7b,0xff,0x29,0x43,0x7c,0xff,0x2a,0x44, + 0x7d,0xff,0x2a,0x44,0x7e,0xff,0x2b,0x45,0x7e,0xff,0x2b,0x45,0x7f,0xff,0x2c, + 0x45,0x80,0xff,0x2c,0x46,0x80,0xff,0x2d,0x46,0x81,0xff,0x2d,0x47,0x82,0xff, + 0x2e,0x47,0x83,0xff,0x2f,0x48,0x83,0xff,0x2f,0x49,0x84,0xff,0x30,0x49,0x85, + 0xff,0x30,0x4a,0x85,0xff,0x31,0x4a,0x86,0xff,0x31,0x4b,0x87,0xff,0x32,0x4b, + 0x88,0xff,0x32,0x4c,0x88,0xff,0x33,0x4d,0x89,0xff,0x34,0x4e,0x8a,0xff,0x34, + 0x4e,0x8b,0xff,0x35,0x4f,0x8b,0xff,0x35,0x4f,0x8c,0xff,0x82,0x36,0x50,0x8d, + 0xff,0x1a,0x37,0x51,0x8e,0xff,0x37,0x52,0x8f,0xff,0x38,0x52,0x8f,0xff,0x39, + 0x53,0x90,0xff,0x39,0x53,0x91,0xff,0x3a,0x54,0x92,0xff,0x3a,0x55,0x92,0xff, + 0x3b,0x55,0x93,0xff,0x3b,0x56,0x94,0xff,0x3c,0x56,0x95,0xff,0x3c,0x57,0x95, + 0xff,0x3d,0x57,0x96,0xff,0x3d,0x58,0x97,0xff,0x3e,0x59,0x97,0xff,0x3f,0x59, + 0x98,0xff,0x3f,0x5a,0x99,0xff,0x40,0x5a,0x99,0xff,0x40,0x5b,0x9a,0xff,0x41, + 0x5c,0x9b,0xff,0x41,0x5c,0x9c,0xff,0x42,0x5d,0x9c,0xff,0x42,0x5d,0x9d,0xff, + 0x43,0x5e,0x9e,0xff,0x01,0x02,0x03,0xff,0x00,0x01,0x02,0xff,0x13,0x2c,0x61, + 0xff,0x90,0x13,0x2c,0x62,0xff,0x03,0x13,0x2c,0x61,0xff,0x12,0x2a,0x60,0xff, + 0x12,0x2a,0x5e,0xff,0x88,0x12,0x29,0x5d,0xff,0x04,0x12,0x29,0x5e,0xff,0x13, + 0x2a,0x5e,0xff,0x14,0x2b,0x5f,0xff,0x14,0x2b,0x60,0xff,0x82,0x15,0x2c,0x61, + 0xff,0x0b,0x16,0x2d,0x62,0xff,0x16,0x2e,0x63,0xff,0x17,0x2e,0x63,0xff,0x17, + 0x2f,0x64,0xff,0x18,0x2f,0x65,0xff,0x18,0x30,0x65,0xff,0x19,0x31,0x66,0xff, + 0x19,0x31,0x67,0xff,0x1a,0x32,0x68,0xff,0x1b,0x32,0x68,0xff,0x1b,0x33,0x69, + 0xff,0x82,0x1b,0x34,0x6a,0xff,0x05,0x1c,0x35,0x6b,0xff,0x1c,0x35,0x6c,0xff, + 0x1d,0x36,0x6c,0xff,0x1e,0x36,0x6d,0xff,0x1e,0x37,0x6e,0xff,0x82,0x1f,0x38, + 0x6f,0xff,0x14,0x20,0x39,0x70,0xff,0x20,0x39,0x71,0xff,0x21,0x3a,0x71,0xff, + 0x21,0x3b,0x72,0xff,0x22,0x3b,0x73,0xff,0x22,0x3c,0x74,0xff,0x23,0x3c,0x74, + 0xff,0x23,0x3d,0x75,0xff,0x24,0x3e,0x76,0xff,0x26,0x40,0x7a,0xff,0x28,0x42, + 0x7c,0xff,0x29,0x42,0x7d,0xff,0x29,0x43,0x7d,0xff,0x2a,0x43,0x7e,0xff,0x29, + 0x43,0x7e,0xff,0x29,0x43,0x7c,0xff,0x28,0x42,0x7c,0xff,0x29,0x43,0x7c,0xff, + 0x29,0x43,0x7d,0xff,0x2a,0x44,0x7e,0xff,0x82,0x2b,0x45,0x7f,0xff,0x01,0x2c, + 0x45,0x80,0xff,0x82,0x2d,0x46,0x81,0xff,0x08,0x2e,0x47,0x82,0xff,0x2e,0x48, + 0x83,0xff,0x2f,0x48,0x84,0xff,0x2f,0x49,0x84,0xff,0x30,0x49,0x85,0xff,0x30, + 0x4a,0x86,0xff,0x31,0x4b,0x86,0xff,0x31,0x4b,0x87,0xff,0x82,0x32,0x4c,0x88, + 0xff,0x03,0x33,0x4d,0x89,0xff,0x34,0x4e,0x8a,0xff,0x34,0x4e,0x8b,0xff,0x82, + 0x35,0x4f,0x8c,0xff,0x12,0x36,0x50,0x8d,0xff,0x36,0x51,0x8e,0xff,0x37,0x51, + 0x8e,0xff,0x38,0x52,0x8f,0xff,0x38,0x52,0x90,0xff,0x39,0x53,0x91,0xff,0x39, + 0x54,0x91,0xff,0x3a,0x54,0x92,0xff,0x3a,0x55,0x93,0xff,0x3b,0x55,0x93,0xff, + 0x3b,0x56,0x94,0xff,0x3c,0x57,0x95,0xff,0x3d,0x57,0x95,0xff,0x3d,0x58,0x96, + 0xff,0x3e,0x58,0x97,0xff,0x3e,0x59,0x98,0xff,0x3f,0x59,0x98,0xff,0x3f,0x5a, + 0x99,0xff,0x82,0x40,0x5b,0x9a,0xff,0x06,0x41,0x5c,0x9b,0xff,0x41,0x5c,0x9c, + 0xff,0x42,0x5d,0x9d,0xff,0x42,0x5e,0x9d,0xff,0x01,0x02,0x03,0xff,0x00,0x01, + 0x02,0xff,0x90,0x13,0x2c,0x62,0xff,0x02,0x12,0x2b,0x60,0xff,0x12,0x2a,0x5e, + 0xff,0x8b,0x12,0x29,0x5d,0xff,0x0f,0x13,0x2a,0x5e,0xff,0x13,0x2a,0x5f,0xff, + 0x14,0x2b,0x5f,0xff,0x14,0x2b,0x60,0xff,0x15,0x2c,0x61,0xff,0x15,0x2d,0x61, + 0xff,0x16,0x2d,0x62,0xff,0x16,0x2e,0x63,0xff,0x17,0x2e,0x64,0xff,0x17,0x2f, + 0x64,0xff,0x18,0x30,0x65,0xff,0x19,0x30,0x66,0xff,0x19,0x31,0x66,0xff,0x1a, + 0x31,0x67,0xff,0x1a,0x32,0x68,0xff,0x82,0x1b,0x33,0x69,0xff,0x1e,0x1b,0x34, + 0x6a,0xff,0x1b,0x34,0x6b,0xff,0x1c,0x35,0x6b,0xff,0x1d,0x35,0x6c,0xff,0x1d, + 0x36,0x6d,0xff,0x1e,0x37,0x6d,0xff,0x1e,0x37,0x6e,0xff,0x1f,0x38,0x6f,0xff, + 0x1f,0x38,0x70,0xff,0x20,0x39,0x70,0xff,0x20,0x3a,0x71,0xff,0x21,0x3a,0x72, + 0xff,0x21,0x3b,0x72,0xff,0x22,0x3b,0x73,0xff,0x23,0x3c,0x74,0xff,0x23,0x3d, + 0x75,0xff,0x25,0x3f,0x78,0xff,0x27,0x41,0x7b,0xff,0x28,0x41,0x7c,0xff,0x28, + 0x42,0x7c,0xff,0x29,0x43,0x7d,0xff,0x29,0x43,0x7e,0xff,0x2a,0x44,0x7e,0xff, + 0x29,0x43,0x7e,0xff,0x29,0x43,0x7c,0xff,0x29,0x42,0x7c,0xff,0x29,0x43,0x7d, + 0xff,0x2a,0x44,0x7d,0xff,0x2b,0x45,0x7e,0xff,0x2b,0x45,0x7f,0xff,0x82,0x2c, + 0x45,0x80,0xff,0x21,0x2d,0x46,0x81,0xff,0x2d,0x47,0x82,0xff,0x2e,0x47,0x82, + 0xff,0x2e,0x48,0x83,0xff,0x2f,0x48,0x84,0xff,0x2f,0x49,0x85,0xff,0x30,0x49, + 0x85,0xff,0x31,0x4a,0x86,0xff,0x31,0x4b,0x87,0xff,0x32,0x4b,0x87,0xff,0x32, + 0x4c,0x88,0xff,0x33,0x4d,0x89,0xff,0x33,0x4d,0x8a,0xff,0x34,0x4e,0x8a,0xff, + 0x35,0x4e,0x8b,0xff,0x35,0x4f,0x8c,0xff,0x36,0x50,0x8c,0xff,0x36,0x50,0x8d, + 0xff,0x37,0x51,0x8e,0xff,0x37,0x51,0x8f,0xff,0x38,0x52,0x8f,0xff,0x38,0x53, + 0x90,0xff,0x39,0x53,0x91,0xff,0x39,0x54,0x91,0xff,0x3a,0x54,0x92,0xff,0x3a, + 0x55,0x93,0xff,0x3b,0x56,0x94,0xff,0x3c,0x56,0x94,0xff,0x3c,0x57,0x95,0xff, + 0x3d,0x57,0x96,0xff,0x3d,0x58,0x96,0xff,0x3e,0x58,0x97,0xff,0x3e,0x59,0x98, + 0xff,0x82,0x3f,0x5a,0x99,0xff,0x07,0x40,0x5b,0x9a,0xff,0x40,0x5b,0x9b,0xff, + 0x41,0x5c,0x9b,0xff,0x42,0x5d,0x9c,0xff,0x42,0x5d,0x9d,0xff,0x01,0x02,0x03, + 0xff,0x00,0x01,0x02,0xff,0x8e,0x13,0x2c,0x62,0xff,0x03,0x13,0x2b,0x60,0xff, + 0x12,0x2a,0x5f,0xff,0x12,0x29,0x5e,0xff,0x8d,0x12,0x29,0x5d,0xff,0x05,0x13, + 0x2a,0x5e,0xff,0x13,0x2a,0x5f,0xff,0x14,0x2b,0x60,0xff,0x14,0x2c,0x60,0xff, + 0x15,0x2c,0x61,0xff,0x82,0x16,0x2d,0x62,0xff,0x08,0x17,0x2e,0x63,0xff,0x17, + 0x2f,0x64,0xff,0x18,0x2f,0x65,0xff,0x18,0x30,0x65,0xff,0x19,0x30,0x66,0xff, + 0x19,0x31,0x67,0xff,0x1a,0x32,0x67,0xff,0x1a,0x32,0x68,0xff,0x82,0x1b,0x33, + 0x69,0xff,0x05,0x1b,0x34,0x6a,0xff,0x1c,0x35,0x6b,0xff,0x1c,0x35,0x6c,0xff, + 0x1d,0x36,0x6c,0xff,0x1d,0x36,0x6d,0xff,0x82,0x1e,0x37,0x6e,0xff,0x11,0x1f, + 0x38,0x6f,0xff,0x1f,0x39,0x70,0xff,0x20,0x39,0x70,0xff,0x21,0x3a,0x71,0xff, + 0x21,0x3a,0x72,0xff,0x22,0x3b,0x73,0xff,0x22,0x3c,0x73,0xff,0x24,0x3e,0x76, + 0xff,0x26,0x40,0x79,0xff,0x27,0x40,0x7a,0xff,0x27,0x41,0x7b,0xff,0x28,0x42, + 0x7c,0xff,0x28,0x42,0x7d,0xff,0x29,0x43,0x7d,0xff,0x2a,0x43,0x7e,0xff,0x2a, + 0x44,0x7f,0xff,0x2a,0x43,0x7e,0xff,0x82,0x29,0x43,0x7c,0xff,0x16,0x29,0x43, + 0x7d,0xff,0x2a,0x44,0x7d,0xff,0x2a,0x44,0x7e,0xff,0x2b,0x45,0x7f,0xff,0x2c, + 0x45,0x80,0xff,0x2c,0x46,0x81,0xff,0x2d,0x46,0x81,0xff,0x2d,0x47,0x82,0xff, + 0x2e,0x47,0x83,0xff,0x2e,0x48,0x83,0xff,0x2f,0x49,0x84,0xff,0x30,0x49,0x85, + 0xff,0x30,0x4a,0x85,0xff,0x31,0x4a,0x86,0xff,0x31,0x4b,0x87,0xff,0x32,0x4c, + 0x88,0xff,0x32,0x4c,0x89,0xff,0x33,0x4d,0x89,0xff,0x34,0x4e,0x8a,0xff,0x34, + 0x4e,0x8b,0xff,0x35,0x4f,0x8b,0xff,0x35,0x4f,0x8c,0xff,0x82,0x36,0x50,0x8d, + 0xff,0x17,0x37,0x51,0x8e,0xff,0x37,0x52,0x8f,0xff,0x38,0x52,0x90,0xff,0x39, + 0x53,0x90,0xff,0x39,0x53,0x91,0xff,0x3a,0x54,0x92,0xff,0x3a,0x55,0x92,0xff, + 0x3b,0x55,0x93,0xff,0x3b,0x56,0x94,0xff,0x3c,0x56,0x95,0xff,0x3c,0x57,0x95, + 0xff,0x3d,0x58,0x96,0xff,0x3d,0x58,0x97,0xff,0x3e,0x59,0x97,0xff,0x3f,0x59, + 0x98,0xff,0x3f,0x5a,0x99,0xff,0x40,0x5a,0x99,0xff,0x40,0x5b,0x9a,0xff,0x41, + 0x5c,0x9b,0xff,0x41,0x5c,0x9c,0xff,0x42,0x5d,0x9c,0xff,0x01,0x02,0x03,0xff, + 0x00,0x01,0x02,0xff,0x8c,0x13,0x2c,0x62,0xff,0x03,0x13,0x2b,0x61,0xff,0x12, + 0x2a,0x5f,0xff,0x12,0x29,0x5e,0xff,0x8f,0x12,0x29,0x5d,0xff,0x11,0x12,0x2a, + 0x5e,0xff,0x13,0x2a,0x5e,0xff,0x13,0x2b,0x5f,0xff,0x14,0x2b,0x60,0xff,0x15, + 0x2c,0x60,0xff,0x15,0x2c,0x61,0xff,0x16,0x2d,0x62,0xff,0x16,0x2e,0x63,0xff, + 0x17,0x2e,0x63,0xff,0x17,0x2f,0x64,0xff,0x18,0x2f,0x65,0xff,0x18,0x30,0x65, + 0xff,0x19,0x31,0x66,0xff,0x19,0x31,0x67,0xff,0x1a,0x32,0x68,0xff,0x1b,0x32, + 0x68,0xff,0x1b,0x33,0x69,0xff,0x82,0x1b,0x34,0x6a,0xff,0x05,0x1c,0x35,0x6b, + 0xff,0x1c,0x35,0x6c,0xff,0x1d,0x36,0x6d,0xff,0x1d,0x37,0x6d,0xff,0x1e,0x37, + 0x6e,0xff,0x82,0x1f,0x38,0x6f,0xff,0x10,0x20,0x39,0x70,0xff,0x20,0x39,0x71, + 0xff,0x21,0x3a,0x71,0xff,0x21,0x3b,0x72,0xff,0x23,0x3c,0x75,0xff,0x25,0x3f, + 0x78,0xff,0x26,0x3f,0x79,0xff,0x26,0x40,0x7a,0xff,0x27,0x41,0x7b,0xff,0x28, + 0x41,0x7b,0xff,0x28,0x42,0x7c,0xff,0x29,0x42,0x7d,0xff,0x29,0x43,0x7d,0xff, + 0x2a,0x43,0x7e,0xff,0x2a,0x44,0x7f,0xff,0x2a,0x44,0x7e,0xff,0x82,0x29,0x43, + 0x7c,0xff,0x10,0x29,0x43,0x7d,0xff,0x2a,0x44,0x7e,0xff,0x2b,0x45,0x7e,0xff, + 0x2b,0x45,0x7f,0xff,0x2c,0x45,0x80,0xff,0x2c,0x46,0x81,0xff,0x2d,0x46,0x81, + 0xff,0x2e,0x47,0x82,0xff,0x2e,0x48,0x83,0xff,0x2f,0x48,0x84,0xff,0x2f,0x49, + 0x84,0xff,0x30,0x49,0x85,0xff,0x30,0x4a,0x86,0xff,0x31,0x4b,0x86,0xff,0x31, + 0x4b,0x87,0xff,0x32,0x4c,0x88,0xff,0x82,0x33,0x4d,0x89,0xff,0x02,0x34,0x4e, + 0x8a,0xff,0x34,0x4e,0x8b,0xff,0x82,0x35,0x4f,0x8c,0xff,0x01,0x36,0x50,0x8d, + 0xff,0x82,0x37,0x51,0x8e,0xff,0x0f,0x38,0x52,0x8f,0xff,0x38,0x52,0x90,0xff, + 0x39,0x53,0x91,0xff,0x39,0x54,0x91,0xff,0x3a,0x54,0x92,0xff,0x3a,0x55,0x93, + 0xff,0x3b,0x55,0x93,0xff,0x3b,0x56,0x94,0xff,0x3c,0x56,0x95,0xff,0x3d,0x57, + 0x95,0xff,0x3d,0x58,0x96,0xff,0x3e,0x58,0x97,0xff,0x3e,0x59,0x98,0xff,0x3f, + 0x59,0x98,0xff,0x3f,0x5a,0x99,0xff,0x82,0x40,0x5b,0x9a,0xff,0x04,0x41,0x5c, + 0x9b,0xff,0x41,0x5c,0x9c,0xff,0x01,0x02,0x03,0xff,0x00,0x01,0x02,0xff,0x8b, + 0x13,0x2c,0x62,0xff,0x02,0x12,0x2a,0x5f,0xff,0x12,0x29,0x5e,0xff,0x92,0x12, + 0x29,0x5d,0xff,0x0f,0x13,0x2a,0x5e,0xff,0x13,0x2a,0x5f,0xff,0x14,0x2b,0x5f, + 0xff,0x14,0x2c,0x60,0xff,0x15,0x2c,0x61,0xff,0x15,0x2d,0x61,0xff,0x16,0x2d, + 0x62,0xff,0x17,0x2e,0x63,0xff,0x17,0x2e,0x64,0xff,0x18,0x2f,0x64,0xff,0x18, + 0x30,0x65,0xff,0x19,0x30,0x66,0xff,0x19,0x31,0x67,0xff,0x1a,0x31,0x67,0xff, + 0x1a,0x32,0x68,0xff,0x82,0x1b,0x33,0x69,0xff,0x1e,0x1b,0x34,0x6a,0xff,0x1b, + 0x34,0x6b,0xff,0x1c,0x35,0x6b,0xff,0x1d,0x35,0x6c,0xff,0x1d,0x36,0x6d,0xff, + 0x1e,0x37,0x6d,0xff,0x1e,0x37,0x6e,0xff,0x1f,0x38,0x6f,0xff,0x1f,0x38,0x70, + 0xff,0x20,0x39,0x70,0xff,0x20,0x3a,0x71,0xff,0x22,0x3b,0x73,0xff,0x24,0x3e, + 0x77,0xff,0x25,0x3e,0x78,0xff,0x26,0x3f,0x79,0xff,0x26,0x40,0x7a,0xff,0x27, + 0x40,0x7a,0xff,0x27,0x41,0x7b,0xff,0x28,0x41,0x7c,0xff,0x28,0x42,0x7c,0xff, + 0x29,0x43,0x7d,0xff,0x29,0x43,0x7e,0xff,0x2a,0x44,0x7e,0xff,0x2a,0x44,0x7f, + 0xff,0x2a,0x44,0x7e,0xff,0x29,0x43,0x7d,0xff,0x29,0x43,0x7c,0xff,0x2a,0x44, + 0x7d,0xff,0x2a,0x44,0x7e,0xff,0x2b,0x45,0x7f,0xff,0x82,0x2c,0x45,0x80,0xff, + 0x09,0x2d,0x46,0x81,0xff,0x2d,0x47,0x82,0xff,0x2e,0x47,0x82,0xff,0x2e,0x48, + 0x83,0xff,0x2f,0x48,0x84,0xff,0x2f,0x49,0x84,0xff,0x30,0x4a,0x85,0xff,0x31, + 0x4a,0x86,0xff,0x31,0x4b,0x87,0xff,0x82,0x32,0x4c,0x88,0xff,0x05,0x33,0x4d, + 0x89,0xff,0x33,0x4d,0x8a,0xff,0x34,0x4e,0x8a,0xff,0x35,0x4e,0x8b,0xff,0x35, + 0x4f,0x8c,0xff,0x82,0x36,0x50,0x8d,0xff,0x0f,0x37,0x51,0x8e,0xff,0x37,0x51, + 0x8f,0xff,0x38,0x52,0x8f,0xff,0x38,0x53,0x90,0xff,0x39,0x53,0x91,0xff,0x39, + 0x54,0x91,0xff,0x3a,0x54,0x92,0xff,0x3b,0x55,0x93,0xff,0x3b,0x56,0x94,0xff, + 0x3c,0x56,0x94,0xff,0x3c,0x57,0x95,0xff,0x3d,0x57,0x96,0xff,0x3d,0x58,0x96, + 0xff,0x3e,0x58,0x97,0xff,0x3e,0x59,0x98,0xff,0x82,0x3f,0x5a,0x99,0xff,0x05, + 0x40,0x5b,0x9a,0xff,0x40,0x5c,0x9b,0xff,0x41,0x5c,0x9b,0xff,0x01,0x02,0x03, + 0xff,0x00,0x01,0x02,0xff,0x89,0x13,0x2c,0x62,0xff,0x02,0x12,0x2b,0x60,0xff, + 0x12,0x2a,0x5e,0xff,0x94,0x12,0x29,0x5d,0xff,0x06,0x12,0x29,0x5e,0xff,0x13, + 0x2a,0x5e,0xff,0x13,0x2b,0x5f,0xff,0x14,0x2b,0x60,0xff,0x14,0x2c,0x60,0xff, + 0x15,0x2c,0x61,0xff,0x82,0x16,0x2d,0x62,0xff,0x08,0x17,0x2e,0x63,0xff,0x17, + 0x2f,0x64,0xff,0x18,0x2f,0x65,0xff,0x18,0x30,0x65,0xff,0x19,0x30,0x66,0xff, + 0x19,0x31,0x67,0xff,0x1a,0x32,0x67,0xff,0x1a,0x32,0x68,0xff,0x82,0x1b,0x33, + 0x69,0xff,0x05,0x1b,0x34,0x6a,0xff,0x1c,0x35,0x6b,0xff,0x1c,0x35,0x6c,0xff, + 0x1d,0x36,0x6c,0xff,0x1d,0x36,0x6d,0xff,0x82,0x1e,0x37,0x6e,0xff,0x40,0x1f, + 0x38,0x6f,0xff,0x1f,0x39,0x70,0xff,0x20,0x39,0x71,0xff,0x23,0x3d,0x75,0xff, + 0x24,0x3d,0x77,0xff,0x25,0x3e,0x78,0xff,0x25,0x3f,0x78,0xff,0x26,0x3f,0x79, + 0xff,0x26,0x40,0x7a,0xff,0x27,0x40,0x7a,0xff,0x27,0x41,0x7b,0xff,0x28,0x41, + 0x7c,0xff,0x28,0x42,0x7d,0xff,0x29,0x43,0x7d,0xff,0x2a,0x43,0x7e,0xff,0x2a, + 0x44,0x7f,0xff,0x2b,0x44,0x7f,0xff,0x2a,0x44,0x7f,0xff,0x2a,0x44,0x7e,0xff, + 0x29,0x43,0x7d,0xff,0x2a,0x44,0x7d,0xff,0x2a,0x44,0x7e,0xff,0x2b,0x45,0x7f, + 0xff,0x2c,0x45,0x80,0xff,0x2c,0x46,0x81,0xff,0x2d,0x46,0x81,0xff,0x2d,0x47, + 0x82,0xff,0x2e,0x47,0x83,0xff,0x2f,0x48,0x83,0xff,0x2f,0x49,0x84,0xff,0x30, + 0x49,0x85,0xff,0x30,0x4a,0x85,0xff,0x31,0x4a,0x86,0xff,0x31,0x4b,0x87,0xff, + 0x32,0x4c,0x88,0xff,0x33,0x4c,0x89,0xff,0x33,0x4d,0x89,0xff,0x34,0x4d,0x8a, + 0xff,0x34,0x4e,0x8b,0xff,0x35,0x4f,0x8b,0xff,0x35,0x4f,0x8c,0xff,0x36,0x50, + 0x8d,0xff,0x36,0x50,0x8e,0xff,0x37,0x51,0x8e,0xff,0x37,0x52,0x8f,0xff,0x38, + 0x52,0x90,0xff,0x39,0x53,0x90,0xff,0x39,0x53,0x91,0xff,0x3a,0x54,0x92,0xff, + 0x3a,0x55,0x92,0xff,0x3b,0x55,0x93,0xff,0x3b,0x56,0x94,0xff,0x3c,0x56,0x95, + 0xff,0x3c,0x57,0x95,0xff,0x3d,0x57,0x96,0xff,0x3d,0x58,0x97,0xff,0x3e,0x59, + 0x97,0xff,0x3f,0x59,0x98,0xff,0x3f,0x5a,0x99,0xff,0x40,0x5b,0x99,0xff,0x40, + 0x5b,0x9a,0xff,0x41,0x5c,0x9b,0xff,0x01,0x02,0x03,0xff,0x00,0x01,0x02,0xff, + 0x87,0x13,0x2c,0x62,0xff,0x03,0x13,0x2b,0x61,0xff,0x12,0x2a,0x5f,0xff,0x12, + 0x29,0x5e,0xff,0x96,0x12,0x29,0x5d,0xff,0x11,0x12,0x2a,0x5e,0xff,0x13,0x2a, + 0x5e,0xff,0x14,0x2b,0x5f,0xff,0x14,0x2b,0x60,0xff,0x15,0x2c,0x61,0xff,0x15, + 0x2d,0x61,0xff,0x16,0x2d,0x62,0xff,0x16,0x2e,0x63,0xff,0x17,0x2e,0x63,0xff, + 0x17,0x2f,0x64,0xff,0x18,0x2f,0x65,0xff,0x18,0x30,0x66,0xff,0x19,0x31,0x66, + 0xff,0x1a,0x31,0x67,0xff,0x1a,0x32,0x68,0xff,0x1b,0x32,0x68,0xff,0x1b,0x33, + 0x69,0xff,0x82,0x1b,0x34,0x6a,0xff,0x05,0x1c,0x35,0x6b,0xff,0x1c,0x35,0x6c, + 0xff,0x1d,0x36,0x6c,0xff,0x1d,0x37,0x6d,0xff,0x1e,0x37,0x6e,0xff,0x82,0x1f, + 0x38,0x6f,0xff,0x0f,0x22,0x3b,0x73,0xff,0x23,0x3c,0x76,0xff,0x24,0x3d,0x76, + 0xff,0x24,0x3e,0x77,0xff,0x25,0x3e,0x78,0xff,0x25,0x3f,0x79,0xff,0x26,0x3f, + 0x79,0xff,0x27,0x40,0x7a,0xff,0x27,0x41,0x7b,0xff,0x28,0x41,0x7b,0xff,0x28, + 0x42,0x7c,0xff,0x29,0x42,0x7d,0xff,0x29,0x43,0x7e,0xff,0x2a,0x44,0x7e,0xff, + 0x2a,0x44,0x7f,0xff,0x82,0x2b,0x45,0x80,0xff,0x01,0x2a,0x45,0x7f,0xff,0x82, + 0x2a,0x44,0x7e,0xff,0x03,0x2b,0x45,0x7e,0xff,0x2b,0x45,0x7f,0xff,0x2c,0x45, + 0x80,0xff,0x82,0x2d,0x46,0x81,0xff,0x09,0x2e,0x47,0x82,0xff,0x2e,0x48,0x83, + 0xff,0x2f,0x48,0x84,0xff,0x2f,0x49,0x84,0xff,0x30,0x49,0x85,0xff,0x30,0x4a, + 0x86,0xff,0x31,0x4b,0x87,0xff,0x32,0x4b,0x87,0xff,0x32,0x4c,0x88,0xff,0x82, + 0x33,0x4d,0x89,0xff,0x02,0x34,0x4e,0x8a,0xff,0x34,0x4e,0x8b,0xff,0x82,0x35, + 0x4f,0x8c,0xff,0x01,0x36,0x50,0x8d,0xff,0x82,0x37,0x51,0x8e,0xff,0x0f,0x38, + 0x52,0x8f,0xff,0x38,0x52,0x90,0xff,0x39,0x53,0x90,0xff,0x39,0x54,0x91,0xff, + 0x3a,0x54,0x92,0xff,0x3a,0x55,0x93,0xff,0x3b,0x55,0x93,0xff,0x3b,0x56,0x94, + 0xff,0x3c,0x57,0x95,0xff,0x3d,0x57,0x95,0xff,0x3d,0x58,0x96,0xff,0x3e,0x58, + 0x97,0xff,0x3e,0x59,0x98,0xff,0x3f,0x59,0x98,0xff,0x3f,0x5a,0x99,0xff,0x82, + 0x40,0x5b,0x9a,0xff,0x02,0x01,0x01,0x03,0xff,0x00,0x01,0x02,0xff,0x85,0x13, + 0x2c,0x62,0xff,0x03,0x13,0x2c,0x61,0xff,0x12,0x2a,0x5f,0xff,0x12,0x29,0x5e, + 0xff,0x99,0x12,0x29,0x5d,0xff,0x0f,0x13,0x2a,0x5e,0xff,0x13,0x2a,0x5f,0xff, + 0x14,0x2b,0x5f,0xff,0x14,0x2b,0x60,0xff,0x15,0x2c,0x61,0xff,0x15,0x2d,0x61, + 0xff,0x16,0x2d,0x62,0xff,0x17,0x2e,0x63,0xff,0x17,0x2f,0x64,0xff,0x18,0x2f, + 0x64,0xff,0x18,0x30,0x65,0xff,0x19,0x30,0x66,0xff,0x19,0x31,0x66,0xff,0x1a, + 0x31,0x67,0xff,0x1a,0x32,0x68,0xff,0x82,0x1b,0x33,0x69,0xff,0x1d,0x1b,0x34, + 0x6a,0xff,0x1b,0x34,0x6b,0xff,0x1c,0x35,0x6b,0xff,0x1d,0x36,0x6c,0xff,0x1d, + 0x36,0x6d,0xff,0x1e,0x37,0x6d,0xff,0x1e,0x37,0x6e,0xff,0x21,0x3a,0x71,0xff, + 0x22,0x3b,0x75,0xff,0x23,0x3c,0x75,0xff,0x23,0x3d,0x76,0xff,0x24,0x3d,0x77, + 0xff,0x25,0x3e,0x77,0xff,0x25,0x3e,0x78,0xff,0x26,0x3f,0x79,0xff,0x26,0x40, + 0x7a,0xff,0x27,0x40,0x7a,0xff,0x27,0x41,0x7b,0xff,0x28,0x41,0x7c,0xff,0x28, + 0x42,0x7c,0xff,0x29,0x43,0x7d,0xff,0x29,0x43,0x7e,0xff,0x2a,0x44,0x7f,0xff, + 0x2b,0x44,0x7f,0xff,0x2b,0x45,0x80,0xff,0x2c,0x46,0x81,0xff,0x2b,0x46,0x80, + 0xff,0x2b,0x45,0x7f,0xff,0x2a,0x44,0x7e,0xff,0x82,0x2b,0x45,0x7f,0xff,0x22, + 0x2c,0x45,0x80,0xff,0x2d,0x46,0x81,0xff,0x2d,0x47,0x82,0xff,0x2e,0x47,0x82, + 0xff,0x2e,0x48,0x83,0xff,0x2f,0x48,0x84,0xff,0x2f,0x49,0x84,0xff,0x30,0x4a, + 0x85,0xff,0x31,0x4a,0x86,0xff,0x31,0x4b,0x87,0xff,0x32,0x4b,0x88,0xff,0x32, + 0x4c,0x88,0xff,0x33,0x4d,0x89,0xff,0x33,0x4d,0x8a,0xff,0x34,0x4e,0x8b,0xff, + 0x35,0x4e,0x8b,0xff,0x35,0x4f,0x8c,0xff,0x36,0x50,0x8c,0xff,0x36,0x50,0x8d, + 0xff,0x37,0x51,0x8e,0xff,0x37,0x51,0x8f,0xff,0x38,0x52,0x8f,0xff,0x38,0x53, + 0x90,0xff,0x39,0x53,0x91,0xff,0x39,0x54,0x92,0xff,0x3a,0x54,0x92,0xff,0x3a, + 0x55,0x93,0xff,0x3b,0x56,0x94,0xff,0x3c,0x56,0x94,0xff,0x3c,0x57,0x95,0xff, + 0x3d,0x57,0x96,0xff,0x3d,0x58,0x96,0xff,0x3e,0x58,0x97,0xff,0x3e,0x59,0x98, + 0xff,0x82,0x3f,0x5a,0x99,0xff,0x03,0x40,0x5b,0x9a,0xff,0x01,0x01,0x03,0xff, + 0x00,0x01,0x02,0xff,0x84,0x13,0x2c,0x62,0xff,0x02,0x12,0x2a,0x5f,0xff,0x12, + 0x29,0x5e,0xff,0x9b,0x12,0x29,0x5d,0xff,0x2c,0x12,0x29,0x5e,0xff,0x13,0x2a, + 0x5e,0xff,0x13,0x2b,0x5f,0xff,0x14,0x2b,0x60,0xff,0x15,0x2c,0x60,0xff,0x15, + 0x2c,0x61,0xff,0x16,0x2d,0x62,0xff,0x16,0x2e,0x62,0xff,0x17,0x2e,0x63,0xff, + 0x17,0x2f,0x64,0xff,0x18,0x2f,0x65,0xff,0x18,0x30,0x65,0xff,0x19,0x30,0x66, + 0xff,0x19,0x31,0x67,0xff,0x1a,0x32,0x67,0xff,0x1a,0x32,0x68,0xff,0x1b,0x33, + 0x69,0xff,0x1b,0x33,0x6a,0xff,0x1b,0x34,0x6a,0xff,0x1c,0x35,0x6b,0xff,0x1c, + 0x35,0x6c,0xff,0x1d,0x36,0x6c,0xff,0x1d,0x36,0x6d,0xff,0x1f,0x38,0x70,0xff, + 0x21,0x3b,0x73,0xff,0x22,0x3b,0x74,0xff,0x22,0x3c,0x75,0xff,0x23,0x3c,0x76, + 0xff,0x24,0x3d,0x76,0xff,0x24,0x3e,0x77,0xff,0x25,0x3e,0x78,0xff,0x25,0x3f, + 0x78,0xff,0x26,0x3f,0x79,0xff,0x26,0x40,0x7a,0xff,0x27,0x40,0x7a,0xff,0x27, + 0x41,0x7b,0xff,0x28,0x42,0x7c,0xff,0x29,0x42,0x7d,0xff,0x29,0x43,0x7d,0xff, + 0x2a,0x43,0x7e,0xff,0x2a,0x44,0x7f,0xff,0x2b,0x45,0x7f,0xff,0x2b,0x45,0x80, + 0xff,0x2c,0x46,0x81,0xff,0x82,0x2c,0x47,0x81,0xff,0x29,0x2b,0x46,0x80,0xff, + 0x2b,0x45,0x7f,0xff,0x2b,0x45,0x80,0xff,0x2c,0x45,0x80,0xff,0x2d,0x46,0x81, + 0xff,0x2e,0x47,0x82,0xff,0x2e,0x47,0x83,0xff,0x2f,0x48,0x83,0xff,0x2f,0x49, + 0x84,0xff,0x30,0x49,0x85,0xff,0x30,0x4a,0x86,0xff,0x31,0x4b,0x86,0xff,0x31, + 0x4b,0x87,0xff,0x32,0x4c,0x88,0xff,0x33,0x4c,0x89,0xff,0x33,0x4d,0x89,0xff, + 0x34,0x4e,0x8a,0xff,0x34,0x4e,0x8b,0xff,0x35,0x4f,0x8b,0xff,0x35,0x4f,0x8c, + 0xff,0x36,0x50,0x8d,0xff,0x36,0x50,0x8e,0xff,0x37,0x51,0x8e,0xff,0x37,0x52, + 0x8f,0xff,0x38,0x52,0x90,0xff,0x39,0x53,0x90,0xff,0x39,0x53,0x91,0xff,0x3a, + 0x54,0x92,0xff,0x3a,0x55,0x92,0xff,0x3b,0x55,0x93,0xff,0x3b,0x56,0x94,0xff, + 0x3c,0x56,0x95,0xff,0x3c,0x57,0x95,0xff,0x3d,0x58,0x96,0xff,0x3d,0x58,0x97, + 0xff,0x3e,0x59,0x97,0xff,0x3f,0x59,0x98,0xff,0x3f,0x5a,0x99,0xff,0x40,0x5b, + 0x9a,0xff,0x01,0x01,0x03,0xff,0x00,0x01,0x02,0xff,0x82,0x13,0x2c,0x62,0xff, + 0x02,0x13,0x2b,0x60,0xff,0x12,0x29,0x5e,0xff,0x9e,0x12,0x29,0x5d,0xff,0x11, + 0x12,0x2a,0x5e,0xff,0x13,0x2a,0x5f,0xff,0x14,0x2b,0x5f,0xff,0x14,0x2b,0x60, + 0xff,0x15,0x2c,0x61,0xff,0x15,0x2d,0x61,0xff,0x16,0x2d,0x62,0xff,0x16,0x2e, + 0x63,0xff,0x17,0x2e,0x63,0xff,0x17,0x2f,0x64,0xff,0x18,0x2f,0x65,0xff,0x18, + 0x30,0x65,0xff,0x19,0x31,0x66,0xff,0x1a,0x31,0x67,0xff,0x1a,0x32,0x68,0xff, + 0x1b,0x32,0x68,0xff,0x1b,0x33,0x69,0xff,0x82,0x1b,0x34,0x6a,0xff,0x05,0x1c, + 0x35,0x6b,0xff,0x1c,0x35,0x6c,0xff,0x1e,0x37,0x6e,0xff,0x21,0x3a,0x72,0xff, + 0x21,0x3a,0x73,0xff,0x82,0x22,0x3b,0x74,0xff,0x0f,0x23,0x3c,0x75,0xff,0x23, + 0x3c,0x76,0xff,0x24,0x3d,0x76,0xff,0x24,0x3e,0x77,0xff,0x25,0x3e,0x78,0xff, + 0x25,0x3f,0x79,0xff,0x26,0x3f,0x79,0xff,0x26,0x40,0x7a,0xff,0x27,0x41,0x7b, + 0xff,0x28,0x41,0x7b,0xff,0x28,0x42,0x7c,0xff,0x29,0x42,0x7d,0xff,0x29,0x43, + 0x7e,0xff,0x2a,0x44,0x7e,0xff,0x2a,0x44,0x7f,0xff,0x82,0x2b,0x45,0x80,0xff, + 0x11,0x2c,0x46,0x81,0xff,0x2c,0x47,0x82,0xff,0x2d,0x48,0x82,0xff,0x2c,0x47, + 0x81,0xff,0x2c,0x46,0x80,0xff,0x2c,0x45,0x80,0xff,0x2c,0x45,0x81,0xff,0x2d, + 0x46,0x82,0xff,0x2e,0x47,0x82,0xff,0x2e,0x48,0x83,0xff,0x2f,0x48,0x84,0xff, + 0x2f,0x49,0x84,0xff,0x30,0x4a,0x85,0xff,0x31,0x4a,0x86,0xff,0x31,0x4b,0x87, + 0xff,0x32,0x4b,0x87,0xff,0x32,0x4c,0x88,0xff,0x82,0x33,0x4d,0x89,0xff,0x05, + 0x34,0x4e,0x8a,0xff,0x34,0x4e,0x8b,0xff,0x35,0x4f,0x8c,0xff,0x35,0x50,0x8c, + 0xff,0x36,0x50,0x8d,0xff,0x82,0x37,0x51,0x8e,0xff,0x13,0x38,0x52,0x8f,0xff, + 0x38,0x52,0x90,0xff,0x39,0x53,0x91,0xff,0x39,0x54,0x91,0xff,0x3a,0x54,0x92, + 0xff,0x3a,0x55,0x93,0xff,0x3b,0x55,0x93,0xff,0x3b,0x56,0x94,0xff,0x3c,0x57, + 0x95,0xff,0x3d,0x57,0x96,0xff,0x3d,0x58,0x96,0xff,0x3e,0x58,0x97,0xff,0x3e, + 0x59,0x98,0xff,0x3f,0x59,0x98,0xff,0x3f,0x5a,0x99,0xff,0x01,0x01,0x03,0xff, + 0x00,0x01,0x02,0xff,0x13,0x2b,0x61,0xff,0x12,0x2a,0x5e,0xff,0xa1,0x12,0x29, + 0x5d,0xff,0x0f,0x13,0x2a,0x5e,0xff,0x13,0x2a,0x5f,0xff,0x14,0x2b,0x5f,0xff, + 0x14,0x2c,0x60,0xff,0x15,0x2c,0x61,0xff,0x15,0x2d,0x61,0xff,0x16,0x2d,0x62, + 0xff,0x16,0x2e,0x63,0xff,0x17,0x2e,0x64,0xff,0x18,0x2f,0x64,0xff,0x18,0x30, + 0x65,0xff,0x19,0x30,0x66,0xff,0x19,0x31,0x66,0xff,0x1a,0x31,0x67,0xff,0x1a, + 0x32,0x68,0xff,0x82,0x1b,0x33,0x69,0xff,0x05,0x1b,0x34,0x6a,0xff,0x1b,0x34, + 0x6b,0xff,0x1d,0x36,0x6c,0xff,0x1f,0x38,0x70,0xff,0x20,0x39,0x72,0xff,0x82, + 0x21,0x3a,0x73,0xff,0x0f,0x22,0x3b,0x74,0xff,0x22,0x3c,0x75,0xff,0x23,0x3c, + 0x75,0xff,0x23,0x3d,0x76,0xff,0x24,0x3d,0x77,0xff,0x25,0x3e,0x77,0xff,0x25, + 0x3e,0x78,0xff,0x26,0x3f,0x79,0xff,0x26,0x40,0x7a,0xff,0x27,0x40,0x7a,0xff, + 0x27,0x41,0x7b,0xff,0x28,0x41,0x7c,0xff,0x28,0x42,0x7c,0xff,0x29,0x43,0x7d, + 0xff,0x29,0x43,0x7e,0xff,0x82,0x2a,0x44,0x7f,0xff,0x04,0x2b,0x45,0x80,0xff, + 0x2c,0x46,0x81,0xff,0x2c,0x47,0x81,0xff,0x2d,0x48,0x82,0xff,0x82,0x2d,0x48, + 0x83,0xff,0x0b,0x2d,0x47,0x82,0xff,0x2c,0x46,0x81,0xff,0x2d,0x46,0x81,0xff, + 0x2d,0x47,0x82,0xff,0x2e,0x47,0x82,0xff,0x2e,0x48,0x83,0xff,0x2f,0x48,0x84, + 0xff,0x30,0x49,0x85,0xff,0x30,0x4a,0x86,0xff,0x31,0x4a,0x86,0xff,0x31,0x4b, + 0x87,0xff,0x82,0x32,0x4c,0x88,0xff,0x05,0x33,0x4d,0x89,0xff,0x33,0x4d,0x8a, + 0xff,0x34,0x4e,0x8a,0xff,0x35,0x4f,0x8b,0xff,0x35,0x4f,0x8c,0xff,0x82,0x36, + 0x50,0x8d,0xff,0x12,0x37,0x51,0x8e,0xff,0x37,0x51,0x8f,0xff,0x38,0x52,0x8f, + 0xff,0x38,0x53,0x90,0xff,0x39,0x53,0x91,0xff,0x39,0x54,0x92,0xff,0x3a,0x54, + 0x92,0xff,0x3b,0x55,0x93,0xff,0x3b,0x56,0x94,0xff,0x3c,0x56,0x94,0xff,0x3c, + 0x57,0x95,0xff,0x3d,0x57,0x96,0xff,0x3d,0x58,0x96,0xff,0x3e,0x59,0x97,0xff, + 0x3e,0x59,0x98,0xff,0x3f,0x5a,0x99,0xff,0x01,0x01,0x03,0xff,0x00,0x01,0x02, + 0xff,0xa4,0x12,0x29,0x5d,0xff,0x05,0x13,0x2a,0x5e,0xff,0x13,0x2b,0x5f,0xff, + 0x14,0x2b,0x60,0xff,0x15,0x2c,0x60,0xff,0x15,0x2c,0x61,0xff,0x82,0x16,0x2d, + 0x62,0xff,0x3a,0x17,0x2e,0x63,0xff,0x17,0x2f,0x64,0xff,0x18,0x2f,0x65,0xff, + 0x18,0x30,0x65,0xff,0x19,0x30,0x66,0xff,0x19,0x31,0x67,0xff,0x1a,0x32,0x67, + 0xff,0x1a,0x32,0x68,0xff,0x1b,0x33,0x69,0xff,0x1b,0x33,0x6a,0xff,0x1b,0x34, + 0x6b,0xff,0x1e,0x37,0x6e,0xff,0x1f,0x38,0x71,0xff,0x20,0x39,0x71,0xff,0x20, + 0x39,0x72,0xff,0x21,0x3a,0x73,0xff,0x21,0x3b,0x73,0xff,0x22,0x3b,0x74,0xff, + 0x22,0x3c,0x75,0xff,0x23,0x3c,0x76,0xff,0x24,0x3d,0x76,0xff,0x24,0x3d,0x77, + 0xff,0x25,0x3e,0x78,0xff,0x25,0x3f,0x78,0xff,0x26,0x3f,0x79,0xff,0x26,0x40, + 0x7a,0xff,0x27,0x40,0x7b,0xff,0x27,0x41,0x7b,0xff,0x28,0x42,0x7c,0xff,0x28, + 0x42,0x7d,0xff,0x29,0x43,0x7d,0xff,0x29,0x43,0x7e,0xff,0x2a,0x44,0x7f,0xff, + 0x2b,0x45,0x7f,0xff,0x2b,0x45,0x80,0xff,0x2c,0x46,0x81,0xff,0x2c,0x47,0x82, + 0xff,0x2d,0x48,0x82,0xff,0x2d,0x49,0x83,0xff,0x2d,0x48,0x83,0xff,0x2c,0x46, + 0x81,0xff,0x2c,0x45,0x80,0xff,0x2d,0x46,0x81,0xff,0x2d,0x47,0x82,0xff,0x2e, + 0x47,0x83,0xff,0x2f,0x48,0x83,0xff,0x2f,0x49,0x84,0xff,0x30,0x49,0x85,0xff, + 0x30,0x4a,0x86,0xff,0x31,0x4b,0x86,0xff,0x31,0x4b,0x87,0xff,0x32,0x4c,0x88, + 0xff,0x33,0x4c,0x89,0xff,0x33,0x4d,0x89,0xff,0x34,0x4e,0x8a,0xff,0x34,0x4e, + 0x8b,0xff,0x35,0x4f,0x8b,0xff,0x35,0x4f,0x8c,0xff,0x82,0x36,0x50,0x8d,0xff, + 0x16,0x37,0x51,0x8e,0xff,0x37,0x52,0x8f,0xff,0x38,0x52,0x90,0xff,0x39,0x53, + 0x90,0xff,0x39,0x53,0x91,0xff,0x3a,0x54,0x92,0xff,0x3a,0x55,0x93,0xff,0x3b, + 0x55,0x93,0xff,0x3b,0x56,0x94,0xff,0x3c,0x56,0x95,0xff,0x3c,0x57,0x95,0xff, + 0x3d,0x58,0x96,0xff,0x3d,0x58,0x97,0xff,0x3e,0x59,0x97,0xff,0x3f,0x59,0x98, + 0xff,0x01,0x01,0x02,0xff,0x03,0x03,0x03,0xff,0xb4,0xb7,0xbf,0xff,0xbd,0xbf, + 0xc8,0xff,0xb8,0xbc,0xc3,0xff,0xb6,0xba,0xc2,0xff,0xc5,0xc9,0xd1,0xff,0xa0, + 0xc9,0xcc,0xd4,0xff,0x82,0xc9,0xcd,0xd4,0xff,0x88,0xc9,0xcd,0xd5,0xff,0x83, + 0xca,0xcd,0xd5,0xff,0x84,0xca,0xcd,0xd6,0xff,0x01,0xcb,0xce,0xd7,0xff,0x85, + 0xcb,0xcf,0xd7,0xff,0x89,0xcb,0xcf,0xd8,0xff,0x82,0xcc,0xcf,0xd8,0xff,0x01, + 0xcc,0xd0,0xd8,0xff,0x83,0xcc,0xd0,0xd9,0xff,0x82,0xcd,0xd1,0xd9,0xff,0x95, + 0xcd,0xd1,0xda,0xff,0x01,0xcd,0xd1,0xdb,0xff,0x82,0xcd,0xd2,0xdb,0xff,0x02, + 0xce,0xd2,0xdb,0xff,0xce,0xd2,0xdc,0xff,0x82,0xcf,0xd2,0xdc,0xff,0x0d,0x8f, + 0x98,0xac,0xff,0x6f,0x7b,0x96,0xff,0x6b,0x78,0x94,0xff,0x8f,0x97,0xa8,0xff, + 0xa0,0xa5,0xaf,0xff,0xa2,0xa6,0xaf,0xff,0xa6,0xaa,0xb3,0xff,0xa3,0xa7,0xb0, + 0xff,0xa2,0xa6,0xaf,0xff,0xa7,0xab,0xb4,0xff,0xa3,0xa7,0xb0,0xff,0xa2,0xa7, + 0xb0,0xff,0xa7,0xab,0xb5,0xff,0x82,0x03,0x03,0x03,0xff,0x05,0xce,0xcd,0xcb, + 0xff,0x9d,0xa2,0x9e,0xff,0x96,0xaa,0x9c,0xff,0xd3,0xd3,0xd4,0xff,0xe1,0xe1, + 0xe1,0xff,0xe3,0xe5,0xe5,0xe6,0xff,0x0e,0xe5,0xe6,0xe6,0xff,0x7b,0x84,0x98, + 0xff,0x44,0x53,0x73,0xff,0x3e,0x4d,0x70,0xff,0x80,0x86,0x94,0xff,0x9f,0x9f, + 0xa1,0xff,0xa2,0xa2,0xa2,0xff,0xa8,0xa9,0xa9,0xff,0xa3,0xa3,0xa3,0xff,0xa2, + 0xa2,0xa2,0xff,0xa9,0xa9,0xa9,0xff,0xa2,0xa2,0xa3,0xff,0xa2,0xa2,0xa2,0xff, + 0xa8,0xa8,0xa9,0xff,0x82,0x03,0x03,0x03,0xff,0x05,0xc7,0xc7,0xc7,0xff,0xc1, + 0xc1,0xc0,0xff,0xc0,0xbf,0xbb,0xff,0xcc,0xcc,0xcc,0xff,0xe3,0xe3,0xe3,0xff, + 0xe4,0xe6,0xe6,0xe6,0xff,0x07,0x8b,0x93,0xa2,0xff,0x5d,0x69,0x82,0xff,0x58, + 0x65,0x7f,0xff,0x8d,0x92,0x9c,0xff,0xa5,0xa6,0xa7,0xff,0xa8,0xa8,0xa8,0xff, + 0xad,0xad,0xad,0xff,0x82,0xa8,0xa8,0xa8,0xff,0x01,0xad,0xad,0xad,0xff,0x82, + 0xa8,0xa8,0xa8,0xff,0x03,0xae,0xae,0xae,0xff,0x03,0x03,0x03,0xff,0x00,0x00, + 0x00,0xff,0x84,0x04,0x04,0x04,0xff,0xe5,0x05,0x05,0x05,0xff,0x01,0x03,0x03, + 0x04,0xff,0x82,0x02,0x02,0x03,0xff,0x01,0x03,0x03,0x03,0xff,0x89,0x04,0x04, + 0x04,0xff,0x01,0x00,0x00,0x00,0xff +}; + +static const GdkPixdata rotation_orientation_horz_pixdata = { + 0x47646b50, /* Pixbuf magic: 'GdkP' */ + 24 + 34342, /* header length + pixel_data length */ + 0x2010002, /* pixdata_type */ + 480, /* rowstride */ + 120, /* width */ + 90, /* height */ + rotation_orientation_horz_pixdata_pixel_data /* pixel_data */ +}; diff --git a/src/image_data/rotation_orientation_vert.h b/src/image_data/rotation_orientation_vert.h deleted file mode 100644 index 52fa3f9..0000000 --- a/src/image_data/rotation_orientation_vert.h +++ /dev/null @@ -1,736 +0,0 @@ -/* GIMP RGB C-Source image dump 1-byte-run-length-encoded (rotation_orientation_vert.c) */ - -#include "image.h" - -static const nv_image_t rotation_orientation_vert_image = { - 90, 120, 3, 0, - "\7\345\345\345\334\313\312\336\327\326\345\345\345\342\342\342\345\345\345" - "\340\340\340\202\345\345\345\1\343\343\343\203\345\345\345\3\342\342\342" - "\345\345\345\343\343\343\203\345\345\345\17\320\322\322\254\312\311\271\305" - "\325\334\334\333\276\306\312\331\332\331\327\327\327\311\311\311\340\340" - "\340\310\310\317\251\260\266\320\321\330\325\326\327\316\322\324\341\341" - "\341\243\345\345\345\3\341\341\341\344\344\344\330\330\330\202\345\345\345" - "\1\342\342\342\202\345\345\345\202\337\337\337-\345\345\345\334\334\334\343" - "\343\343\336\336\336\344\344\344\340\340\340\341\341\341\345\345\345\310" - "\310\310\307\307\307\345\345\345\336\332\332\265<6\262US\315\315\315\225" - "\225\225\242\242\242\214\214\214\273\273\273\225\225\225\251\251\251\231" - "\231\231\263\263\263\345\345\345\261\261\261\247\247\247\242\242\242\254" - "\254\254\237\237\237\311\311\311\266\277\305u\232\225\204\214\235\320\301" - "\251\264\247\202\300\276\262\277\276\274\312\312\315\321\321\321\270\270" - "\277\210\235\252\277\301\312\227\265\322\252\242\235\330\330\330\243\345" - "\345\345\10\342\342\342\344\344\344\267\267\267\237\237\237\301\301\301\226" - "\226\226\257\257\257\254\254\254\202\270\270\270\21\342\342\342\274\274\274" - "\275\275\275\213\213\213\265\265\265\213\213\213\204\204\204\343\343\343" - "\234\234\234\265\265\265\345\345\345\340\340\340\330\325\325\322\312\312" - "\335\335\335\316\316\316\305\305\305\202\325\325\325\31\320\320\320\324\324" - "\324\326\326\326\324\324\324\340\340\340\335\335\335\324\324\324\325\325" - "\325\326\326\326\324\324\324\331\331\331\337\337\337\277\303\307\301\301" - "\305\333\332\331\317\305\263\323\317\310\333\332\327\306\304\305\311\312" - "\313\327\327\330\266\303\320\326\326\326\301\306\316\252\254\273\244\340" - "\340\340\3\334\334\334\340\340\340\334\334\334\202\325\325\325\6\331\331" - "\331\323\323\323\277\277\277\320\320\320\317\317\317\327\327\327\202\334" - "\334\334\11\324\324\324\333\333\333\331\331\331\333\333\333\340\340\340\307" - "\307\307\315\315\315\340\340\340%<r\203$<qA%=q%=r&>s'?t'@u(@v)Av*Bw*Cx+D" - "y,Dz,E{-F|.F}/G~/H\1771J\2002K\2023L\2034N\2055O\2076P\2107Q\2117R\2128S" - "\2129S\213:T\214:U\215;V\216<V\217<W\220=X\221>Y\222?Y\222?Z\223@[\224A\\" - "\225A\\\226B]\227C^\230C^\231D_\232E`\233Ea\233Fb\234Gb\235Gc\236Hd\237I" - "d\240Je\241Kf\242Lg\243Mg\244Mh\244Ni\245Oj\246Ok\247Pk\250Ql\251Qm\252R" - "m\253Sn\254To\255Tp\255Up\256\225Vq\257\5\37""7p\37""8q\40""9r!:r!:s\203" - "!:r\34!;r\";s#<t$=u$>v%?w&?x&@y'Az(B{)C|)C}*D}+E~+E\177,E\200-F\200.H\202" - "/J\2041K\2062M\2103O\2114P\2135Q\2146R\2156R\2167S\2178T\220\2029U\221\37" - ":V\222;W\223<X\224<Y\225=Y\226>Z\227>[\230?\\\231@]\232A]\233A^\234B_\235" - "C`\236D`\237Da\240Eb\241Fc\241Gd\242Hd\243Ie\244Jf\245Jg\246Kh\247Lh\250" - "Li\251Mj\252Nk\253Ok\254Ol\255Pm\256Qn\257\225Ro\260\7\36""7o\37""8p\40""9" - "q\40""9r!:s\";t#<u\202#=v\1$=v\202#=u:$=v%>w%?x&@x'Ay(Az(B{)C|*D}*E~+E\177" - ",E\200-F\200-G\201.H\202/H\2030I\2040J\2051K\2062M\2104N\2125P\2136R\215" - "7S\2178T\2209U\221:V\222;W\223;W\224<X\225=Y\226=Z\227>[\230?[\231@\\\232" - "@]\232A^\234B_\234C_\235C`\236Da\237Eb\240Ec\241Gc\242Hd\243Ie\244If\245" - "Jg\246Kg\247Lh\250Li\251Mj\252Nj\253Nk\254Ol\255Pm\255Qn\256Qn\257\224Ro" - "\260\14\36""7o\37""8p\37""8q\40""9r!:s\";t\"<u#<u$=w%>w%?x&?y\204&@y6'@y" - "'Az(B{)C|)C}*D~+E\177,E\200,F\200-F\201.G\201/H\202/I\2030J\2041J\2051K\206" - "2L\2073M\2104N\2114N\2125P\2137Q\2158S\2179U\221:V\223<X\224<Y\226=Z\226" - ">Z\227?[\230?\\\231@]\232A]\233B^\234B_\235C`\236Da\237Ea\240Eb\241Fc\242" - "Hd\243He\244Ie\245Jf\246Kg\246Kh\247Li\250Mi\251Mj\252Nk\253Ol\254Pl\255" - "Pm\256Qn\257\224Ro\260\17\36""7o\36""7p\37""8q\40""9q!:r!:s\";t#<u#=v$>w" - "%>x&?y&@z'A{(A|\202)B}\204)C|2*D}+E~+E\177,E\200-F\200-G\201.H\202/I\203" - "0I\2040J\2051K\2062L\2073L\2103M\2114N\2125O\2126P\2136P\2147Q\2158R\216" - "8S\217:T\221;V\223<X\224=Y\226?[\230@\\\232A]\233A^\234B_\235C`\236D`\237" - "Da\240Eb\240Fc\241Gd\242Hd\243Ie\244Jf\245Jg\246Kg\247Lh\250Li\251Mj\252" - "Nk\253Ok\254Ol\255Pm\256Qn\257Rn\257\223Ro\260\24\35""6n\36""7o\37""8p\40" - """9q\40""9r!:s\";t\"<u#=v$=w%=s,Bu&@z'@{(A{(B|)C}*D~*D\177+E\200\202+F\200" - "1+F\177+E\177,E\200-F\200-G\201.G\202/H\203/I\2040J\2051K\2052K\2062L\207" - "3M\2104N\2115N\2125O\2136P\2147Q\2157R\2168R\2179S\220:T\221:U\222;V\223" - "<V\224=W\225>Y\226?[\231A]\233B_\235C`\236Da\237Eb\240Eb\241Gc\242Hd\243" - "Ie\244If\245Jf\246Kg\247Kh\250Li\250Mi\251Nj\252Nk\253Ol\254Pm\255Qm\256" - "Qn\257\223Ro\260\31\35""6n\36""7o\37""8p\37""8q\40""9r!:s!;t\";uHZ\201\203" - "\223\247\230\260\304\214\232\255'?w'@z'A{(B|)B}*C~*D\177+E\200,F\200,G\201" - "-H\202.I\203.I\202\202.H\202,.G\202/H\202/I\2030I\2041J\2051K\2062L\2073" - "M\2104M\2114N\2125O\2136P\2146Q\2157Q\2168R\2179S\2179T\220:T\221;U\222<" - "V\223<W\224=X\225>X\226>Y\227?Z\230@[\231B]\233C_\236Da\240Fc\241Gd\243H" - "e\244Ie\244Jf\245Jg\246Kh\247Lh\250Mi\251Mj\252Nk\253Ol\254Pl\255Pm\256Q" - "n\257\223Ro\260H\34""6n\36""6o\36""7o\37""8p\40""9q\40:r!:s\";tnz\224\215" - "\301\345\236\310\350\302\314\324\200\210\236&@z'A{(A|(B})C~*D\177+E\177+" - "E\200,G\200-H\201.I\202.J\203/J\2040K\2050L\2061L\2061K\2061K\2051J\2051" - "K\2062L\2073L\2103M\2114N\2115O\2125P\2136P\2147Q\2158R\2168S\2179S\220:" - "T\221;U\222;V\223<W\224=W\225=X\226>Y\227?Z\230@[\230@[\231A\\\232B]\233" - "C^\234D`\236Fa\240Gc\243Ie\245Jg\246Kg\247Lh\250Li\251Mj\252Nk\253Nk\254" - "Ol\255Pm\256Qn\256Qn\257\222Ro\260\40\34""5m\35""6n\36""7o\37""8p\40""8q" - "\40""9r!:s\";t|\204\230\247\304\331\271\302\311\310\313\311\210\215\232&" - "@y'@z(A{(B|)C}*D~*D\177+E\200,F\200-H\201-H\202.I\203/J\204/K\2050L\2061" - "L\2072M\2072N\2113O\211\2033N\211%3M\2104N\2115N\2125O\2136P\2147Q\2157R" - "\2168R\2179S\220:T\221:U\222;V\222<V\223<W\224=X\225>Y\226?Y\227?Z\230@[" - "\231A\\\232B]\233B]\234C^\235D_\236D`\237Ea\240Fb\241Gd\243If\245Kh\247M" - "i\251Nj\252Nk\253Ol\254Pm\255Pm\256Qn\257\222Ro\260#\33""5m\34""6n\36""7" - "o\37""7p\37""8q\40""9r!:s!;tqy\215\234\234\235Zcxgv\224Xj\204&?y&@z'A{(B" - "|)B})C~*D\177+E\200,F\200,G\201-H\202.I\202/J\203/J\2040K\2051L\2061M\207" - "2N\2103N\2114O\2124P\2135Q\214\2026Q\215\1""6Q\214\2026P\214\40""6P\2157" - "Q\2168R\2179S\2179T\220:T\221;U\222;V\223<W\224=X\225>X\226>Y\227?Z\230@" - "[\231A\\\232A\\\233B]\234C^\235D_\235D`\236E`\237Ea\240Eb\241Fc\242Gc\243" - "Hd\244Jf\246Kh\250Mj\252Ol\255Pm\256Qn\257\222Ro\260'\33""5m\34""5n\35""6" - "n\36""7o\37""8p\40""9q\40""9r!:s\";t\"<t#=v$=w%>x&?y&@z'A{(A|(B})C~*D~+D" - "\177+E\200,F\200-H\201-I\202.I\203/J\2040K\2050L\2061M\2072M\2103N\2113O" - "\2124P\2135Q\2145Q\2156R\2157S\2168T\217\2038T\220\2028S\217\36""9S\220:" - "T\221:U\222;V\223<V\224=W\225=X\226>Y\227?Z\227@Z\230@[\231A\\\232B]\233" - "B^\234C^\235D_\236E`\237Ea\240Ea\241Fb\242Gc\243Gd\244He\245Ie\246If\247" - "Jg\250Li\251Nj\253Ol\255Qn\257\220Ro\260+\33""4l\34""5m\35""6n\36""7o\37" - """8p\37""8q\40""9r@R{7LzDW\201AT\200@T\201EW\200?S\200&?y'@z'A{(B|)C}*C~" - "*D\177+E\200,F\200,H\201-H\202.I\203/J\204/K\2050L\2061L\2062M\2072N\210" - "3O\2114O\2125P\2135Q\2146R\2157S\2167S\2178T\2209U\221:V\222:V\223\203;W" - "\223\202;V\223\31<V\223<W\224=X\225>Y\226?Y\227?Z\230@[\231A\\\232B]\233" - "B]\234C^\235D_\236D`\237E`\240Ea\241Eb\241Fc\242Gd\243Hd\244He\245If\246" - "Jg\247Kg\250Kh\251Li\252\202Mj\253\3Nk\254Ol\255Qn\257\214Ro\260(\33""4l" - "\33""5m\34""6n\36""7o\36""7p\37""8q\40""9r:N{;Mx?NqHWzKZ|DTy8Js&?y&@z'A{" - "(B|)B})C~*D\177+E\200,E\200,G\200-H\201.I\202.J\203/J\2040K\2051L\2061M\207" - "2N\2103N\2113O\2124P\2135Q\2146Q\2156R\2167S\2178T\220\2029U\221\5:V\222" - ";W\223<X\224<Y\225=Y\226\202>Z\227\30>Y\227>Y\226>X\226>Y\227?Z\230@[\231" - "A[\232A\\\233B]\234C^\234C_\235D_\236E`\237Ea\240Eb\241Fb\242Gc\243Hd\244" - "He\245If\246Jf\247Jg\250Kh\251Li\252\206Mj\253\4Nk\254Ol\255Pm\256Qn\257" - "\207Ro\2603\32""4l\33""5l\34""5m\35""6n\36""7o\37""8p\40""9q\40""9r!:s\"" - ";t#<u#=v$=w%>x%?y&@z'@{(A{(B})C}*D~+D\177+E\200,F\200-H\201-I\202.I\203/" - "J\2040K\2050L\2061L\2072M\2103N\2113O\2114P\2125P\2145Q\2146R\2157S\2168" - "T\2178T\2209U\221:V\222:W\223;X\224<X\225=Y\226=Z\227>[\230?\\\231@\\\232" - "\202@]\232\1@\\\232\202@[\231\22A\\\232B]\233B^\234C^\235D_\236E`\237Ea\240" - "Ea\241Fb\242Fc\243Gd\244He\245Ie\246If\246Jg\247Kh\250Li\251Li\252\211Mj" - "\253\4Nk\254Ol\255Pm\256Qn\257\203Ro\260:\32""4k\33""4l\33""5m\35""6n\36" - """7o\37""8p\37""8q\40""9r!:s!;t\";u#<v$=w$>w%?x&?y'@z'A{(B|)C})C~*D\177+" - "E\200,F\200,G\201-H\202.I\203/J\204/K\2040K\2051L\2062M\2072N\2103O\2114" - "O\2124P\2135Q\2146R\2157S\2167S\2178T\2209U\2219V\222:V\223;W\224<X\225<" - "Y\225=Z\226>Z\227?[\230?\\\231@]\232A^\233A^\234B_\235C`\236C_\236C_\235" - "\202C^\235\16D_\236D`\237E`\240Ea\240Eb\241Fc\242Gc\243Hd\244He\245If\246" - "Jg\247Kg\250Kh\251Li\252\216Mj\253>Nk\254Ol\255\32""3k\32""4l\33""5m\34""6" - "n\36""6o\36""7p\37""8q\40""9q!:r!:s\";t#<u#=v$=w%>x&?y&@z'A{(A|)B})C~*D\177" - "+E\177+E\200,G\200-H\201.I\202.J\203/J\2040K\2050L\2061M\2072M\2103N\211" - "3O\2124P\2135Q\2146Q\2156R\2167S\2178T\2179U\2209U\221:V\222;W\223;X\224" - "<X\225=Y\226>Z\227>[\230?\\\231@\\\232A]\233A^\234B_\235C`\236C`\237Da\237" - "Eb\240Fc\241\202Fb\241\15Fa\240Ea\240Eb\241Fb\242Gc\243Gd\244He\245If\246" - "Jf\247Jg\250Kh\251Li\252Mi\252\217Mj\253A\31""3j\32""4k\33""5l\34""5m\35" - """6n\36""7o\37""8p\37""9q\40""9r!:s\";t#<u#<v$=w%>x%?y&@z'@z(A{(B|)C}*D~" - "+D\177+E\200,F\200-H\201-H\202.I\203/J\2040K\2050L\2061L\2072M\2102N\211" - "3O\2114P\2125P\2135Q\2146R\2157S\2168S\2178T\2209U\221:V\222:W\223;W\224" - "<X\225=Y\226=Z\227>[\230?[\230?\\\231@]\232A^\233B_\234B_\235C`\236Da\237" - "Eb\240Eb\241Fc\242Hd\243Ie\244Ie\245Ie\244\202Hd\244\10Gd\244Hd\244Ie\245" - "If\246Jg\247Kh\250Lh\251Li\252\217Mj\253F\31""3j\32""4k\33""4l\33""5m\35" - """6n\36""7o\37""7p\37""8q\40""9r!:s!;t\";u#<u$=v$>w%>x&?y'@z'A{(B|)B})C~" - "*D\177+E\200,F\200,G\201-H\202.I\202/J\203/K\2040K\2051L\2061M\2072N\210" - "3N\2114O\2124P\2135Q\2146R\2156R\2167S\2178T\2209U\2219V\222:V\222;W\223" - "<X\224<Y\225=Y\226>Z\227?[\230?\\\231@]\232A]\233A^\234B_\235C`\236D`\237" - "Da\240Eb\241Fc\242Gd\243Hd\243Ie\244Jf\245Jg\246Kh\247Lh\250Kh\250Kg\247" - "\202Jg\247\3Kg\250Kh\251Li\252\217Mj\2538\31""2j\32""3k\32""4l\33""5m\34" - """6n\35""6n\36""7o\37""8p\40""9q\40""9r!:s\";t#<u#=v$=w%>x&?y&@z'A{(A|(B" - "})C~*D~+E\177+E\200,F\200-H\201.I\202.I\203/J\2040K\2050L\2061M\2072M\210" - "3N\2113O\2124P\2135Q\2146Q\2156R\2157S\2168T\2178T\2209U\221:V\222;W\223" - ";X\224<X\225=Y\226>Z\227>[\230?\\\231@\\\232@]\233A^\234B_\235\202C`\236" - "\15Da\237Eb\240Fc\241Gc\242Hd\243Ie\244If\245Jg\246Kg\247Lh\250Li\251Mj\252" - "Nj\253\202Nk\253\3Mj\253Mj\252Li\252\216Mj\253O\31""2i\31""3j\32""4k\33""4" - "l\34""5m\35""6n\36""7o\37""8p\37""8q\40""8p!:s!:r\"<u#<v$=w%>x%?y&@y'@z'" - "A{(B|)C}*C~*D\177+E\200,F\200-H\201-H\202.I\203/J\204/K\2050L\2061L\2072" - "M\2072N\2103O\2114O\2125P\2135Q\2146R\2157S\2168S\2178T\2209U\221:V\222:" - "W\223;W\224<X\225=Y\226=Z\227>Z\227?[\230?\\\231@]\232A^\233B^\234B_\235" - "C`\236Da\237Eb\240Eb\241Fc\242Hd\243He\244If\245Jf\246Kg\246Kh\247Li\250" - "Mi\251Nj\252Nk\253Ol\254Pm\255Pm\256Qn\257Pm\256Ol\255Nk\254\213Mj\253L\30" - """2i\31""3j\32""3k\33""4l\33""5m\34""6n\36""7o\37""7p~{x\315\260{\227\206" - "o\270\232k9Hl#<u$=v$>w%>x&?y&@z'A{(B|)B})C~*D\177+E\200+F\200,G\201-H\201" - ".I\202.J\203/J\2040K\2051L\2061M\2072N\2103N\2114O\2124P\2135Q\2146Q\215" - "6R\2167S\2178T\2209U\2219U\222:V\223;W\223<X\224<Y\225=Y\226>Z\227>[\230" - "?\\\231@\\\232A]\233A^\234B_\235C`\236D`\237Da\240Eb\241Fc\241Gd\242Hd\243" - "Ie\244Jf\245Jg\246Kh\247Lh\250Mi\251Mj\252Nk\253Ol\254Ol\255Pm\256Qn\257" - "\204Ro\260\3Pm\256Ol\255Nk\254\207Mj\253&\30""2i\31""2j\32""3k\32""4l\33" - """5m\34""5m\35""6n\36""7o\202|x\333\271\206\321\264\210\336\300\222\225\211" - "~#<u#=v$=w%>x%?y&@z'A{(A|(B})C}*D~+D\177+E\200,F\200-H\201.I\202.I\203/J" - "\2040K\2050L\2061M\2072M\2103N\2113O\2124P\213\2025Q\214%6R\2157S\2168T\217" - "8T\2209U\221:V\222;W\223;W\224<X\225=Y\226=Z\227>[\230?[\231@\\\232@]\233" - "A^\234B_\234C_\235C`\236Da\237Eb\240Ec\241Gc\242Hd\243Ie\244If\245Jf\246" - "Kg\247Lh\250Li\251Mj\252Nj\253Nk\253Ol\254Pm\255Qn\256Qn\257\207Ro\260\3" - "Pm\256Ol\255Nk\254\203Mj\253M\30""1h\31""2i\31""3j\32""4k\33""4l\33""5m\35" - """6n\36""7olku\361\312\223\177vlle_KKX\";u#<v$=v$>w%?x&?y'@z'A{(B|)C})C~" - "*D\177+E\200,F\200,G\201-H\202.I\203/J\204/K\2040L\2051L\2062M\2072N\210" - "3O\2114O\2124P\2135Q\2146R\2157R\2167S\2178T\2209U\221:V\222:V\223;W\224" - "<X\225<Y\225=Z\226>Z\227?[\230?\\\231@]\232A]\233B^\234B_\235C`\236Da\237" - "Da\240Eb\241Fc\242Hd\243He\244Ie\245Jf\245Kg\246Kh\247Li\250Mi\251Mj\252" - "Nk\253Ol\254Pl\255Pm\256Qn\257\213Ro\260\33Pm\256Ol\255\30""1h\30""2i\31" - """2j\32""3k\33""4l\33""5m\34""6n\36""7odhy\240\205b\217`@\235jEsMA\";t#<" - "u#=v$>w%>x&?y&@z'A{(B|)B})C~*D\177\202+E\2002,G\200-H\202.I\202.J\203/J\204" - "0K\2051L\2061M\2072N\2103N\2113O\2124P\2135Q\2146Q\2156R\2167S\2178T\217" - "9U\2209U\221:V\222;W\223;X\224<Y\225=Y\226>Z\227>[\230?\\\231@\\\232A]\233" - "A^\234B_\235C`\236C`\237Da\240Eb\241Fc\241Gd\242Hd\243Ie\244Jf\245Jg\246" - "Kg\247Lh\250Li\251Mj\252Nk\253Ok\254Ol\255Pm\256Qn\257\215Ro\260N\27""1h" - "\30""1i\31""2i\31""3k\32""4k\33""5l\34""5m\35""6n\36""6n\37""8p,:fHHa&9k" - "\";t\"<u#=v$=w%>x%?y&@z'@{(A|(B|)C}*D~+D\177+E\200,F\200-H\201-H\202.I\203" - "/J\2040K\2050L\2061L\2072M\2102N\2113O\2124P\2125P\2135Q\2146R\2157S\216" - "8T\2178T\2209U\221:V\222:W\223;W\224<X\225=Y\226=Z\227>[\230?[\231@\\\232" - "@]\232A^\233B_\234B_\235C`\236Da\237Eb\240Eb\241Gc\242Hd\243Ie\244If\245" - "Jf\246Kg\247Lh\250Li\251Mi\251Nj\252Nk\253Ol\254Pm\255Qm\256Qn\257\214Ro" - "\260N\27""0g\30""1h\30""2i\31""3j\32""4k\33""4l.Du7Ly?Q|6Ju7LzAT~<P~<P\177" - "3I{#<u$=v$>w%?x&?y'@z'A{(B|)C}*C~*D\177+E\200,F\200,G\201-H\202.I\203/J\203" - "/K\2040K\2051L\2062M\2072N\2103N\2114O\2124P\2135Q\2146R\2157S\2167S\217" - "8T\2209U\2219V\222:V\223;W\223<X\224<Y\225=Z\226>Z\227?[\230?\\\231@]\232" - "A]\233A^\234B_\235C`\236Da\237Da\240Eb\241Fc\242Gd\242He\244Ie\244Jf\245" - "Jg\246Kh\247Lh\250Mi\251Mj\252Nk\253Ol\254Pl\255Pm\256Qn\257\214Ro\260O\27" - """0g\27""1h\30""2i\31""2j\32""3j\32""3k3FrDRr>Mp:Mw,An:Lt@NoCSw:Ks\";t\"" - "<u#=u$=w%>x&@y'A{(A|)B})C~*D\177+E\177+E\200,G\200-H\201.I\202.I\203/J\204" - "0K\2051L\2061M\2072M\2103N\2113O\2124P\2135Q\2146Q\2156R\2157S\2168T\217" - "8U\2209U\221:V\222;W\223;X\224<Y\225=Y\226>Z\227>[\230?\\\231@\\\232@]\233" - "A^\234B_\235C_\236C`\236Da\237Eb\240Fc\241Gc\242Hd\243Ie\244If\245Jg\246" - "Kg\247Lh\250Li\251Mj\252Nj\253Ok\254Ol\255Pm\256Qn\256Qn\257\213Ro\260\1" - "\26/e\202\27/dL\30/d\30""0e\31""1f\32""2g\33""2h\33""3i\33""4j\34""5k\35" - """5l\35""6m\36""7n\37""8o\37""9p\40""9q!:r\";s\"<t#=t$=u%>w&@x'Az(B{)C}+" - "D\177,F\200-H\201-H\202.I\203/J\204/K\2050L\2061L\2072M\2102N\2103O\2114" - "O\2125P\2135Q\2146R\2157S\2167S\2178T\2209U\221:V\222:W\223;W\224<X\225=" - "Y\226=Z\227>[\227?[\230?\\\231@]\232A^\233B^\234B_\235C`\236Da\237Eb\240" - "Eb\241Fc\242Hd\243Ie\244Ie\245Jf\246Kg\247Kh\247Li\250Mi\251Nj\252Nk\253" - "Ol\254Pm\255Qm\256Qn\257\213Ro\260O\25-a\26-b\27.c\27/d\30""0e\31""0f\32" - """1g\32""2h\33""3i\33""4j\34""4k\34""5l\35""6m\36""7n\36""8o\37""8o\40""9" - "p!:q!;r\";s#<t#=u$>v%?w&?x&@y'Az(B{)C|*D~,F\200-H\201.J\203/J\2040K\2051" - "L\2061M\2072N\2103N\2114O\2124P\2135Q\2146R\2156R\2167S\2178T\2209U\2219" - "U\222:V\223;W\223<X\224<Y\225=Y\226>Z\227?[\230?\\\231@]\232A]\233A^\234" - "B_\235C`\236D`\237Da\240Eb\241Fc\242Gd\243Hd\243Ie\244Jf\245Jg\246Kh\247" - "Lh\250Mi\251Mj\252Nk\253Ol\254Pl\255Pm\256Qn\257\211Ro\260FPm\256Ol\255\25" - ",a\26-b\26.c\27/d\30/e\31""0f\31""1g\32""2h\33""2h\33""3i\33""4j\34""5k\35" - """6l\35""7m\36""7n\37""8o\40""9p\40:q!:r\";s\"<t#=u$>v%>w%?x&@x'Ay(Az(B{" - ")C|*D}*E~+E\200-G\201/J\2040L\2061M\2072M\2103N\2113O\2124P\2135P\2146Q\215" - "6R\2157S\2168T\2178T\2209U\221:V\222;W\223;X\224<X\225=Y\226>Z\227>[\230" - "?\\\231@\\\232@]\233A^\233B_\234C_\235C`\236Da\237Eb\240Ec\241Gc\242Hd\243" - "Gc\242\202Fb\242\12Fc\242Gd\243If\246Li\251Nj\253Nk\253Ol\254Pm\255Qm\256" - "Qn\257\205Ro\260\2Pm\256Nk\254\203Mj\253\23\25,a\25-b\26-c\27/d\30""1g\31" - """2j\32""3k\33""4l\33""5m\35""6n\36""7n\36""7o\37""8p\40""9r!:s\";t\";u#" - "<u$=v\202$>w\1%>x\202%?x'&?x&@x'@y'Az(B{)C|*D}*D~+E\177,E\200,F\200.H\202" - "0K\2052M\2072N\2103O\2114O\2124P\2135Q\2146R\2157S\2167S\2178T\2209U\221" - ":V\222:V\223;W\224<X\225<Y\226=Z\227>Z\227?[\230?\\\231@]\232A^\233B^\234" - "B_\235C`\236Da\237\202Eb\240\23Ea\237D_\236D`\237E`\240Ea\241Fb\242Fc\242" - "Gd\243Hd\244Kg\247Nk\253Ol\254Pm\255Pm\256Qn\257Ro\260Qn\257Pm\256Nk\254" - "\206Mj\253\32\24,`\25,a\26/d\30""1h\30""2i\31""3j\32""3k\32""4l\33""5l+@" - "mFY\2000Es\37""8q\40""9q!:r!:s\";t#<u$=v$>w%>x&?y&@z'A{(B|)B}\203)C}\22)" - "C|)C}*D}+E~+E\177,E\200-F\200.G\201/I\2031M\2073N\2113O\2124P\2135Q\2146" - "Q\2156R\2167S\2178T\220\2029U\221\14:V\222;W\223;X\224<Y\225=Y\226>Z\227" - ">[\230?\\\231@\\\232A]\233A^\234B_\235\202C`\236\17C_\235B]\234C^\234C_\235" - "D_\236E`\237Ea\240Eb\241Fb\242Gc\243Hd\244He\245Jf\246Li\252Nk\253\202Nk" - "\254\212Mj\253\36\24+`\25-b\27""0g\27""1h\30""2i\31""2j\32""3k\32""4l;Mr" - "\225\230\234\315\317\321\237\244\252-Ao\40""9q\40""9r!:s\";t\"<u#=v$=w%>" - "x%?y&@z'@{(A|(B|)C}*D~+D\177+E\200\202,F\2001+F\200+E\177,E\200-F\200-G\201" - ".G\202/H\2032M\2073O\2124P\2125P\2145Q\2146R\2157S\2168T\2178T\2209U\221" - ":V\222;W\223;X\224<X\225=Y\226=Z\227>[\230?[\231@\\\232@]\233A^\233B^\234" - "A]\233@\\\232A\\\232B]\233B]\234C^\235D_\236E`\237Ea\240Ea\241Fb\242Gc\243" - "Gd\244He\245Ie\245If\246Jg\247Kh\250Li\251Li\252\211Mj\253#\24+`\25.d\26" - """0f\27""0g\30""1h\31""2i\31""3j\32""4k+Am\241\257\275\226\241\253\214\230" - "\243#9h\37""8q\40""9r!:s\";t\";u#<v$=v$>w%?x&?y'@z'A{(B|)B}*C~*D\177+E\200" - ",F\200,G\201-H\202.I\202-H\201\202-F\200\27.G\201.H\202/I\2043N\2114O\212" - "4P\2135Q\2146R\2157R\2167S\2178T\2209U\2219V\222:V\223;W\224<X\225<Y\226" - "=Y\226>Z\227?[\230?\\\231@]\232@\\\231\202?Z\230\23@[\231A\\\232A\\\233B" - "]\234C^\235D_\236D`\237E`\240Ea\240Fb\241Fc\242Gd\243Hd\244He\245If\246J" - "g\247Kg\250Kh\251Li\252\210Mj\2531Nk\254\24+_\25.d\26/f\27""0g\27""1h\30" - """2i\31""3j\32""3k\33""3g\312\312\313\245\245\246\233\234\236\36""6m\37""8" - "p\40""9q!:r!:s\";t#<u#=v$>w%>x&?y&@z'A{(A|)B})C~*D\177+E\177+E\200,G\200" - "-H\201.I\202.J\203/J\204.H\203.G\201.H\202/H\2031K\2053O\2124P\2135Q\214" - "6Q\2156R\2167S\2178T\217\2029U\221\10:V\222;W\223;X\224<X\225=Y\226>Z\227" - ">[\230>Z\227\202=X\226\26>Y\227?Z\230@[\231@[\232A\\\232B]\233C^\234C^\235" - "D_\236E`\237Ea\240Eb\241Fb\242Gc\243Gd\244He\245If\246Jf\247Jg\250Kh\251" - "Li\252Lj\252\205Mj\253UNk\254Pm\256Ro\260\23+_\25-b\26/f\27""0g\27""1h\30" - """1i\31""2j\31""3j\32""4kku\214\202\205\215U`z\36""7o\37""8p\40""8q\40""9" - "r!:s\";t#<u#<v$=w%>x%?y&@z'@z(A{(B|)C}*D~*D\177+E\200,F\200-H\201-H\202." - "I\203/J\2040K\205/I\203.G\202/H\203/I\2043N\2114P\2125P\2135Q\2146R\2157" - "S\2168T\2178T\2209U\221:V\222:W\223;W\224<X\225=Y\226<Y\225<W\224<V\224=" - "W\224=X\225>Y\226?Y\227?Z\230@[\231A\\\232B]\233B]\234C^\235D_\236E`\237" - "Ea\240Ea\241Fb\242Fc\243Gd\244Hd\244Ie\245If\246Jg\247Kh\250Kh\251Li\252" - "\203Mj\253\2Nk\254Qn\257\203Ro\260U\23*_\24+`\26/e\26""0f\27""0g\30""1h\30" - """2i\31""3j\32""3k\33""4l\33""5m\35""6n\36""7o\37""8p\37""8q\40""9r!:s!;" - "t\";t#<u$=v$>w%?x&?y'@z'A{(B|)B})C~*D\177+E\200,F\200,G\201-H\202.I\203/" - "J\203/J\2040K\205.H\202/H\202/I\2031K\2064O\2124P\2135Q\2146R\2157R\2167" - "S\2178T\2209U\2219U\222:V\223;W\223;W\224:U\222:U\221;U\222;V\223<W\224=" - "X\225>X\226>Y\227?Z\230@[\231A\\\232A\\\233B]\234C^\235C_\236D`\237Fb\241" - "Gc\243Fb\242Fc\242Gc\243Hd\244He\245If\246Jg\247Kg\250Kh\251Li\252Mj\253" - "Nk\254Qn\257\205Ro\260J\23*^\24+_\24,b\26/f\27""0g\27""1h\30""2i\31""2j5" - "JyCRsDV|Q_\2000Es\36""7o\37""8p\40""9q\40:r!:s\";t#<u#=v$=w%>x&?y&@z'A{(" - "A|(B})C~*D~+E\177+E\200,G\200-H\201.I\202.I\203/J\2040K\205/J\205.H\202/" - "H\2030I\2043O\2124P\2135Q\2146Q\2156R\2157S\2168T\2178U\2209U\221:U\2219" - "T\2208S\2179S\220:T\221;U\222;V\223<W\224=W\225=X\226>Y\227?Z\227@Z\231@" - "[\231A\\\232B]\233B^\234D`\237Gc\242Ie\244If\245Jf\246He\244\202Gd\244\7" - "He\245Ie\246Jf\247Jg\250Li\251Nk\254Qn\257\207Ro\260S\23*^\23*_\24+`\25-" - "b\26/f\27""0h\30""1i\31""2i\36""7m#9h3Gr-Am#:m\36""7o\37""8p\37""8q\40""9" - "r!:s\";t\"<u#<v$=w%>x%?x&?z'@z(A{(B|)C}*C~*D\177+E\200,F\200-H\201-H\202" - ".I\203/J\204/K\2050K\206.H\202/H\203/I\2032M\2104O\2125P\2135Q\2146R\215" - "7S\2167S\2178T\2207R\2167Q\2157R\2168R\2179S\220:T\221:U\222;U\222<V\223" - "<W\224=X\225>Y\226?Y\227?Z\230@[\231A\\\232B]\233Da\237Fc\242Hd\243He\244" - "Ie\245Jf\246Kg\247Kh\247Kh\250Lh\250Li\251Mj\252Ok\254Pm\255Pm\256Qn\257" - "\207Ro\260S\22)]\23*^\24+_\24,`\25-b\27/e\30""1h\30""2i\31""3j\32""3k\33" - """4l\33""5m\34""6n\36""7o\37""7p\37""8q\40""9q!:r!;s\";t#<u$=v$>w%>x&?y&" - "@z'A{(B|)B})C~*D\177+E\200,E\200,G\201-H\202.I\203.J\203/J\2040K\205.H\203" - ".H\202/I\2031K\2064O\2124P\2135Q\2146R\2156R\2166Q\2145O\2136P\2146P\215" - "7Q\2158R\2169S\2179T\220:T\221;U\222;V\223<W\224=X\225>X\226>Y\227?Z\230" - "@[\231A]\233Da\237Eb\241Fc\241Gd\242Hd\243Ie\244Jf\245Jg\246Kh\247Lh\250" - "Li\251Mj\252Nk\253Ok\254Ol\255Pm\256Qn\257\207Ro\260T\22)]\23*^\23+_\24+" - "`\25,a\26-b\27.d\30""1g\31""2j\32""3k\32""4l\33""5l\34""5m\35""6n\36""7o" - "\37""8p\40""9q\40""9r!:s\";t#<u#=v$=w%>x%?y&@z'A{(A|(B|)C}*D~+D\177+E\200" - ",F\200-H\201.I\202.I\203/J\2040K\205/I\203.G\202/H\2030I\2043O\2114P\213" - "5P\2134O\2123M\2114N\2115O\2125O\2136P\2147Q\2158R\2168S\2179S\220:T\221" - ":U\222;V\223<V\224=W\225=X\226>Y\226?Z\230A]\233C`\236Da\237Eb\240Ec\241" - "Gc\242Hd\243Ie\244If\245Jf\246Kg\247Kh\250Li\251Mj\252Nj\253Nk\254Ol\255" - "Pm\255Qn\256Qn\257\206Ro\260-\22)]\23*^\23*_\24+`\25,a\25-a\26.b\27.c\30" - "/e\31""1h\32""3k\33""4l\33""5m\35""6n\36""7o\37""8p\37""8q\40""9r!:s\";t" - "\";u#<v$=v$>w%?x&?y'@z'A{(B|)C}*C~*D\177+E\200,F\200,G\201-H\202.I\203/J" - "\204/K\205.I\203.G\201/H\202/I\2032N\2103N\211\2022L\207%3M\2104M\2114N\212" - "5O\2136P\2147Q\2157Q\2168R\2179S\2209T\221:U\221;U\222<V\223<W\224=X\225" - ">Y\227A]\233B_\235C`\236Da\237Da\240Eb\241Fc\242Hd\243He\244Ie\245Jf\245" - "Kg\246Kh\247Lh\250Mi\251Mj\252Nk\253Ol\254Pl\255Pm\256Qn\257\206Ro\260\202" - "\22)]\36\23*^\24+_\24,`\25,a\26-b\27.c\27/d\30""0e\31""0f\32""2h\33""4k\34" - """6m\36""6o\36""7p\37""8p\40""9q!:r!:s\";t#<u#=v$>w%>x&?y&@z'A{(A|)B})C~" - "*D\177\202+E\2001,G\200-H\201.I\202.J\203/J\204.H\202.G\201.H\202/I\2030" - "J\2041J\2051K\2062L\2073L\2103M\2114N\2125O\2126P\2136P\2147Q\2158R\2168" - "S\2179T\220:T\221;U\222;V\223<W\224>Y\226@]\232A^\234B_\235C`\236C`\237D" - "a\237Eb\240Fc\241Gd\242Hd\243Ie\244Jf\245Jg\246Kg\247Lh\250Li\251Mj\252N" - "k\253Ok\254Ol\255Pm\256\203Qn\257\4Pm\256Ol\255Nk\254Mj\253\202\22)]Q\23" - "*^\23+_\24+`\25,a\26-b\26.c\27/d\30/e\30""0e\31""1f\32""2g\33""2i\34""4k" - "\35""6n\37""8p\40""9q\40""9r!:s\";t#<u#=v$=w%>x%?y&@z'@{(A{(B|)C}*D~*D\177" - "+E\200,F\200-H\201-H\202.I\203/J\204.H\202-G\201.G\202/H\203/I\2040J\205" - "1K\2062K\2062L\2073M\2104N\2115O\2125O\2136P\2147Q\2157R\2168R\2179S\220" - ":T\221:U\222;V\223=Y\226@\\\231@]\232A^\233B_\234C_\235C`\236Da\237Eb\240" - "Eb\241Fc\242Hd\243Ie\244If\245Jf\246Kg\247Kh\250Li\251Mi\251Nj\252Nk\253" - "Mj\253Mj\252\202Li\252\205Mj\253'\23+a\22)]\22)^\23*_\24+`\25,`\25-a\26-" - "b\27.c\27/d\30""0e\31""1f\32""1g\32""2h\33""3i\33""4j\34""5k\35""6n\37""8" - "p!:s!;t\";u#<u$=v$>w%?x&?y'@z'A{(B|)B}*C~*D\177+E\200,F\200,G\201-H\202." - "I\203.I\202\202-F\200,.G\201/H\202/I\2030J\2041J\2051K\2062L\2073M\2104M" - "\2114N\2125O\2136P\2147Q\2157Q\2168R\2179S\2179T\220:U\222=Y\226>[\230?\\" - "\231@]\232A]\233A^\234B_\235C`\236Da\237Da\240Eb\241Fc\242Gd\243He\244Ie" - "\245Jf\245Jg\246Kh\247Lh\250Kg\247Jg\247If\246Jg\247Kg\250Kh\251Li\252\205" - "Mj\253V\23,b\23+a\22)^\23*^\24+_\24,`\25,a\26-b\27.c\27/d\30""0e\31""0f\31" - """1g\32""2h\33""3i\33""3j\33""4j\34""5k\35""6l\36""7n\37""8p!:s#<u#=v$=w" - "%>x&?y&@z'A{(A|(B})C~*D\177+E\177+E\200,G\200-H\201,F\200+E\177,E\200-F\200" - ".G\201.H\202/H\2030I\2040J\2051K\2062L\2073L\2103M\2104N\2125O\2125P\213" - "6P\2147Q\2158R\2168S\217:U\222=Y\226=Z\227>[\230?\\\231@\\\232@]\233A^\234" - "B_\235C_\236C`\236Da\237Eb\240Ec\241Gc\242Hd\243Ie\244Jf\245If\245He\244" - "Gd\243Gd\244He\245If\246Jf\247Jg\250Kh\250Li\251Mi\253\204Mj\253\202\23," - "bF\23,a\23*_\23+_\24+`\25,a\26-b\26.c\27.c\30/e\30""0e\31""1f\32""2g\33""2" - "h\33""3i\33""4j\34""5k\35""5l\35""6m\36""7n\37""8o\40""9p!;s#<u%>w%?y&@y" - "'@z'A{(B|)C}*D~*D\177+E\200+E\177*D}*D~+E\177,E\200-F\200-G\201.G\202/H\203" - "/I\2030J\2041J\2052K\2062L\2073M\2104N\2115N\2125O\2136P\2147Q\2158R\217" - ":V\222<X\225=Y\226=Z\227>Z\230?[\230?\\\231@]\232A^\233B^\234B_\235C`\236" - "Da\237Eb\240Eb\241Fc\242\202Hd\243\14Fb\241Ea\241Fb\242Fc\243Gd\243Hd\244" - "Ie\245If\246Jg\247Kh\250Kh\251Li\252\203Mj\253\1Nk\254\204\23,b\36\23+`\24" - "+_\25,`\25-a\26-b\27.c\27/d\30""0e\31""0f\32""1g\32""2h\33""3i\33""4j\33" - """4k\34""5l\35""6m\36""7n\36""8n\37""8o\40""9p!:q!;s#<u%>w&@z'A{(B|)B})C" - "~*C~\202)C|4)C}*D~+E~+E\177,F\200-F\200.G\201.H\202/I\2030I\2041J\2051K\206" - "2L\2073M\2103M\2114N\2125O\2136P\2148S\217:V\222;W\223<X\224<Y\225=Y\226" - ">Z\227>[\230?\\\231@]\232A]\233A^\234B_\235C`\236Da\237Da\240Eb\241Eb\240" - "D`\237D_\236E`\237Ea\240Eb\241Fc\242Gc\243Hd\244He\245If\246Jf\247Jg\250" - "Kh\251Li\252Nl\254Pm\256\202Ro\260\204\23,b\33\24-c\24,b\24+`\25,a\26-b\26" - ".c\27/d\30/e\31""0f\31""1g\32""2h\33""3i\33""3j\33""4j\34""5k\35""6l\35""6" - "m\36""7n\37""8o\40""9p\40:q!:r\";s#<t#=u%>w&@y\202(A{#'Az(Az(B{)C|*D}*E~" - "+E\177,E\200-F\200-G\201.H\202/H\2030I\2040J\2051K\2062K\2072L\2073M\210" - "4N\2115P\2138S\2179U\221:V\222;W\223;X\224<X\225=Y\226=Z\227>[\230?[\231" - "@\\\232@]\233A^\234B_\234C_\235\202C`\236\202C^\234\17C^\235D_\236E`\237" - "Ea\240Ea\241Fb\242Gc\243Gd\244He\245Ie\246Jg\247Li\252Ol\254Qm\256Qn\257" - "\203Ro\260\204\23,b\3\24-c\24-d\25.d\202\25-b9\26.b\27.c\30/d\30""0e\31""1" - "f\32""1g\33""2h\33""3i\33""4j\34""5k\34""5l\35""6m\36""7n\37""8o\37""9p\40" - """9q!:r\";r\"<s#<t$=u$>v%?w&@x'@y'Az(B{)C|)D}*D~+E\177,E\200,F\200-F\201" - ".G\201/H\202/I\2030J\2041J\2052K\2062L\2073M\2105P\2147S\2178T\2209U\221" - ":V\222:V\223;W\224<X\225<Y\225=Z\227>Z\227?[\230?\\\231@]\232A^\233\202B" - "^\234\202A\\\232\21B]\233B]\234C^\235D_\236D`\237E`\240Ea\241Fb\241Fc\242" - "Gd\244Jf\247Li\251Nk\253Ol\254Pl\255Pm\256Qn\257\202Ro\260\1Qn\257\205\23" - ",b1\24-c\25.d\25/e\26.e\26.c\27.c\27/d\30""0e\31""0f\32""1g\32""2h\33""3" - "i\33""3j\33""4k\34""5k\35""6m\36""7m\36""8n\37""8o\40""9p\40:q!;r\";s#<t" - "#=u$>v%?w&?x&@y'Az(B{)B|)C}*D}+E~+E\177,E\200-F\200.G\201.H\202/I\2030I\204" - "1J\2051K\2062L\2075P\2146R\2167S\2178T\220\2029U\221\37:V\222;W\223<X\224" - "<Y\225=Y\226>Z\227>[\230?\\\231@\\\232@]\232?[\230?Z\230@[\231A[\232A\\\233" - "B]\233C^\234C_\235D_\236E`\237Ea\240Fb\242Ie\245Lh\250Mi\251Mj\252Nk\253" - "Ok\254Ol\255Pm\256Qn\257\202Ro\260\1Ol\255\205\23,bU\24-c\24.d\25.e\26/f" - "\27""0g\27""0f\27/e\30/e\31""0f\31""1f\32""2h\33""2h\33""3i\33""4j\34""5" - "k\35""6l\35""6m\36""7n\37""8o\40""9p\40:q!:r\";s\"<t#=u$=v%>v%?x&@x'Ay(A" - "z(B{)C|*D}*E~+E\177,E\200-F\200-G\201.G\202/H\2030I\2040J\2051K\2064P\213" - "5Q\2146R\2157S\2168T\2178T\2209U\221:V\222:W\223;W\224<X\225=Y\226=Z\227" - ">[\230?[\231?[\230>X\226>Y\226?Z\227@Z\230@[\231A\\\232B]\233B^\234C^\235" - "D_\236E`\237Gc\243Jf\246Kg\247Lh\250Li\251Mj\252Nj\252Nk\254Ol\254Pm\255" - "Qn\256Qn\257Ro\260Nk\254\205\23,b\6\23,c\24-d\25.e\26/f\26""0f\27""0g\202" - "\30""1hM\31""1g\31""1f\32""1g\32""2h\33""3i\33""4j\34""5k\34""5l\35""6m\36" - """7n\36""8o\37""8p\40""9q!:q!;r\"<s#<t$=u$>v%?w&@x&@y'Az(B{)C|)D}*D~+E\177" - ",E\200,F\200-F\200.G\201.H\202/I\2030I\2043N\2114P\2135Q\2146R\2157R\216" - "7S\2178T\2209U\221:V\222:V\223;W\224<X\224<Y\225=Z\226>Z\227=X\226<W\224" - "=X\225>X\226>Y\227?Z\230@[\231A\\\232A\\\233B]\234C^\235E`\237Hd\243Ie\245" - "Jf\245Kg\246Kh\247Lh\250Mi\251Mj\252Nk\253Ol\254Pl\255Pm\256Qn\257Pm\256" - "Mj\253\206\23,b\13\24-c\25.d\25/e\26/f\27""0g\30""1h\30""2i\31""2j\32""3" - "k\32""3j\32""3i\202\33""3i+\33""4k\34""5k\35""6l\36""7m\36""7n\37""8o\40" - """9p\40:q!:r\";s#<t#=u$>v%?w&?x&@y'Az(Bz(B{)C|*D}+E~+E\177,E\200-F\200.G" - "\201.H\202/H\2030I\2043N\2114P\2135Q\2146Q\2156R\2167S\2178T\2179U\2209U" - "\221:V\222;W\223;X\224<Y\225=Y\225\202;V\223\5<W\224=W\225>X\226>Y\227?Z" - "\230\202@[\231\23A\\\232B]\233D`\237Gd\242Hd\243Ie\244Jf\245Jg\246Kg\247" - "Lh\250Li\251Mj\252Nk\253Ok\254Ol\255Pm\256Qn\257Nk\254Mj\253\206\23,b\13" - "\24-c\24.d\25.e\26/f\27""0g\27""1h\30""1h\31""2i\31""3j\32""4k\33""5l\202" - "\34""5l(\33""4k\34""5k\35""6l\35""6m\36""7n\37""8o\37""9p\40""9q!:r\";s\"" - "<t#=u$=v%>v%?w&@x'@y'Az(B{)C|*D}*D~+E\177,E\200-F\200-G\201.G\202/H\2030" - "I\2030J\2054O\2125P\2135Q\2146R\2157S\2168T\2178T\2209U\221:V\222:W\223\202" - ";W\224\31:U\221:U\222;V\223<V\223<W\225=X\225>Y\226?Y\227?Z\230@[\231A\\" - "\232C`\236Eb\241Fc\242Hd\243Ie\244If\245Jf\246Kg\247Kh\250Li\250Mj\251Nj" - "\252Nk\253Ol\254\202Pm\255\2Li\252Mj\253\206\23,b\16\23-c\24-c\25.d\25/e" - "\26""0f\27""0g\30""1h\30""2i\31""3j\32""4k\33""4l\33""5m\35""6n\36""7o\202" - "\34""5lD\35""6m\36""7n\36""8o\37""8o\40""9p!:q!;r\"<s#<t$=u$>v%?w&?x&@y'" - "Az(B{)C|)C}*D~+E\177,E\177,E\200-F\200.G\201.H\202/I\2030I\2042L\2074P\213" - "5Q\2146R\2157R\2167S\2178T\2209U\2219V\222:V\223:U\2219S\2209T\220:U\221" - ";U\222;V\223<W\224=X\225>X\226>Y\227?Z\230@[\231B_\235Da\240Eb\241Fc\242" - "Gd\243He\243Ie\244Jf\245Jg\246Kh\247Lh\250Mi\251Mj\252Nk\253Ol\254Ol\255" - "Mj\253Li\252Mj\253\207\23,b\14\24-c\25.d\25/e\26/f\27""0g\27""1h\30""2i\31" - """2j\32""3k\32""4l\33""5m\34""5l\202\33""4jE\34""5k\35""6l\35""6m\36""7n" - "\37""8o\40""9p\40:q!:r\";s#<t#=u$>v%>w&?x&@y'Ay(Bz(B{)C|*D}+E~+E\177,E\200" - "-F\200-G\201.H\202/H\2030I\2040J\2053N\2105Q\2145Q\2156R\2167S\2168T\217" - "8T\2209U\2218S\2178R\2168S\2179S\220:T\221;U\222;V\223<V\224=W\225=X\226" - ">Y\227?Z\230A]\233C`\236Da\237Eb\240Fc\241Gc\242Hd\243Ie\244If\245Jf\246" - "Kg\247Lh\250Li\251Mj\252Nk\253Nk\254Ol\254Kh\251Li\251Li\252\207\23,b2\24" - "-c\24-d\25.e\26/f\26""0g\27""1h\30""1i\31""2i\31""3j\32""3j\32""2i\33""2" - "h\33""3i\33""4j\34""5k\34""5l\35""6m\36""7n\37""8o\37""9p\40""9q!:r!;s\"" - "<t#=t$=u$>v%?w&@x'@y'Az(B{)C|*D}*D~+E\177,E\200,F\200-G\201.G\202/H\202/" - "I\2030J\2041J\2054O\2125Q\2146R\2157S\2168S\2178T\217\2027Q\215\37""7Q\216" - "8R\2179S\220:T\221:U\222;V\222<V\223<W\224=X\225>Y\226@\\\232B_\235C`\236" - "Da\237Eb\240Eb\241Fc\242Hd\243He\244Ie\245Jf\246Kg\247Kh\247Li\250Mi\251" - "Mj\252Nk\253Mj\252Kh\250Kh\251Li\252\210\23,b\5\24-c\25.d\25/e\26/f\27""0" - "g\202\30""1h*\30""1g\31""0f\32""1g\32""2h\33""3i\33""4j\33""4k\34""5l\35" - """6l\36""7m\36""8n\37""8o\40""9p!:q!;r\";s#<t#=u$>v%?w&?x&@y'Az(B{)C|)C}" - "*D}+E~+E\177,E\200-F\200.G\201.H\202/I\2030I\2040J\2052L\2075Q\2146R\215" - "6R\2166R\2155O\213\2026P\214\37""7Q\2158R\2169S\2179T\220:T\221;U\222;V\223" - "<W\224=W\225?Z\230A^\234B_\235C`\236Da\237Da\240Eb\241Fc\241Gd\243Hd\243" - "Ie\244Jf\245Jg\246Kh\247Lh\250Mi\251Mj\252Nk\253Kg\247Kg\250Kh\251Li\252" - "\210\23,bR\24-c\24.d\25.e\26/f\27""0g\27/e\27/d\30/e\31""0f\31""1g\32""2" - "h\33""2h\33""3i\33""4j\34""5k\35""6l\35""6m\36""7n\37""8o\40""9p\40:q!:r" - "\";s\"<t#=u$=v%>w%?w&@x'Ay(Az(B{)C|*D}*E~+E\177,E\200-F\200-G\201.G\202/" - "H\203/I\2040J\2051K\2063N\2115Q\2145P\2134N\2115O\2125O\2136P\2147Q\2157" - "R\2168S\2179S\220:T\221:U\222;V\223<V\224=X\226@]\232A^\233B_\235C_\235C" - "`\236Da\237Eb\240Ec\241Gc\242Hd\243Ie\244If\245Jf\246Kg\247Lh\250Li\251M" - "j\252Li\251If\246Jg\247Kh\250Li\251\210\23,bR\23-c\24-d\25.e\25.c\25-b\26" - ".b\27.c\30/d\30""0e\31""1f\32""1g\32""2h\33""3i\33""4j\34""5k\34""5l\35""6" - "m\36""7n\37""8o\37""8p\40""9q!:r!;r\"<s#<t$=u$>v%?w&@x&@y'Az(B{)C|)C}*D~" - "+E\177,E\200,F\200-F\200.G\201/H\202/I\2030J\2041J\2051K\2063N\2113M\210" - "4M\2114N\2125O\2136P\2147Q\2157Q\2168R\2179S\2209T\220:U\221;U\222<W\224" - "?[\231@]\232A^\233B^\234B_\235C`\236Da\237Da\240Eb\241Fc\242Hd\243He\244" - "Ie\245Jf\246Kg\246Kh\247Li\250Mi\251Jf\246If\246Jg\247Kg\250Kh\251\211\23" - ",b1\24,b\24+`\24,`\25,a\26-b\27.c\27/d\30""0e\31""0f\31""1g\32""2h\33""3" - "i\33""3j\33""4k\34""5l\35""6l\36""7m\36""7n\37""8o\40""9p\40:q!;r\";s#<t" - "#=u$>v%>w&?x&@y'Az(B{(B|)C}*D}+E~+E\177,E\200-F\200-G\201.H\202/I\2030I\204" - "0J\2051K\2062L\2073L\2103M\2114N\2125O\213\2026P\214\27""7Q\2158R\2168S\217" - "9S\220:T\221;U\222=Z\227?\\\231@\\\232A]\233A^\234B_\235C`\236C`\237Da\237" - "Eb\240Fc\241Gd\242Hd\243Ie\244Jf\245Jg\246Kg\247\202Lh\250\5He\245If\246" - "Jf\247Jg\250Kh\251\207\23,bS\23+a\22*^\23*^\23+_\24+`\25,a\26-b\26.c\27." - "d\30/e\31""0f\31""1f\32""2g\33""2h\33""3i\33""4j\34""5k\35""6l\35""6m\36" - """7n\37""8o\37""9p\40""9q!:r\";s\"<t#=u$=v%>v%?w&@x'Ay(Az(B{)C|*D}*E~+E\177" - ",E\200,F\200-G\201.G\202/H\203/I\2030J\2051K\2062K\2062L\2073M\2104N\211" - "4O\2125O\2136P\2147Q\2157R\2168R\2179S\220:T\221<W\224>[\230?[\231@\\\231" - "@]\232A^\233B_\234C_\235C`\236Da\237Eb\240Eb\241Gc\242Hd\243Ie\244If\245" - "Jf\246Kg\247Kh\250If\246Hd\245Ie\245If\246Jg\247Kh\250\205\23,b\2\23+a\22" - "*^\202\22)]Q\22)^\23*_\24+`\25,`\25-a\26-b\27.c\30/d\30""0e\31""1f\32""1" - "g\32""2h\33""3i\33""4j\34""4k\34""5l\35""6m\36""7n\36""8o\37""8p\40""9p!" - ":q!;r\"<s#<t$=u$>v%?w&@x&@y'Az(B{)C|)D}*D~+E\177,E\200,F\200-F\200.G\201" - "/H\202/I\2030I\2041J\2051K\2062L\2073M\2104M\2114N\2125O\2136P\2147Q\215" - "7Q\2168R\2179S\217:U\221=Y\226>Z\227?[\230?\\\231@]\232A]\233A^\234B_\235" - "C`\236Da\237Da\240Eb\241Fc\242Gd\242Hd\243Ie\244Jf\245Jg\246Kg\247Gd\243" - "Hd\244He\245If\246Jg\247Kg\250\203\23,b\2\23,a\22*_\205\22)]\13\23*^\24+" - "_\24,`\25,a\26-b\27.c\27/d\30/e\31""0f\31""1g\32""2h\202\33""3i\14\33""4" - "j\34""5k\35""6l\36""7m\36""7n\37""8o\40""9p\40:q!:r\";s#<t#=u\202%>w$%?x" - "&@y'Az(Bz(B{)C|*D}+E~+E\177,E\200-F\200-G\201.H\202/H\2030I\2040J\2051K\206" - "2L\2073L\2103M\2114N\2115O\2125P\2136P\2147Q\2158R\2168S\217<W\224=Y\226" - ">Z\227>[\230?\\\231@\\\232@]\233A^\234B_\235\202C`\236\17Da\237Eb\240Fc\241" - "Gc\242Hd\243Ie\244If\245Jg\246Ie\245Gc\243Gd\244He\245Ie\246Jf\247Jg\250" - "\202\23,b\1\22*_\207\22)]\31\23*^\23*_\24+`\25,a\26-b\26.c\27.d\30/d\30""0" - "e\31""1f\32""2g\33""2h\33""3i\33""4j\34""5k\34""5l\35""6m\36""7n\37""8o\37" - """9p\40""9q!:r\";s\"<t%>x\202'@z6&?x&@x'@y'Az(B{)C|*D}*D~+E\177,E\200-F\200" - "-G\201.G\202/H\203/I\2030J\2051K\2052K\2062L\2073M\2104N\2115N\2125O\213" - "6P\2147Q\2157R\2169U\221<X\225=Y\226=Z\227>[\230?[\231?\\\231@]\232A^\233" - "B^\234B_\235C`\236Da\237Eb\240Eb\241Fc\242Hd\243Ie\244Ie\245Jf\246Fc\242" - "Fc\243Gd\243Hd\244Ie\245If\246Jg\247\22+`\211\22)]\34\22)^\23*_\24+_\25," - "`\25-a\26-b\27.c\27/d\30""0e\31""0f\32""1g\32""2h\33""3i\33""4j\34""4k\34" - """5l\35""6m\36""7m\36""8n\37""8o\40""9p!:q!;s$>w&?y'@z'A{(A|\202&@y2'Az(" - "B{)C|)C}*D~+E\177,E\177,E\200-F\200.G\201.H\202/I\2030I\2041J\2051K\2062" - "L\2073M\2103M\2114N\2125O\2136P\2146P\2157R\216;W\223<X\224<Y\225=Y\226>" - "Z\227>[\230?\\\231@]\232A]\233A^\234B_\235C`\236D`\237Da\240Eb\241Fc\241" - "Gd\242Hd\243Ie\244Hd\244Eb\241Fc\242Gc\243Hd\244He\245If\246Jf\247\213\22" - ")]O\23*^\23+_\24+`\25,a\26-b\26.c\27/d\30/e\31""0f\31""1g\32""2h\33""3h\33" - """3i\33""4j\34""5k\35""6l\35""6m\36""7n\37""8o\40""9p!:q#=v%>x&?y&@z'A{(" - "A|(B|'@z'Ay(Az(B{)C|*D}+E~+E\177,E\200-F\200-G\201.H\202/H\2030I\2040J\205" - "1K\2062K\2072L\2073M\2104N\2115O\2125O\2136P\2149T\221;W\223;X\224<X\225" - "=Y\226=Z\227>[\230?\\\231@\\\232@]\233A^\234B_\235C_\235C`\236Da\237Eb\240" - "Fc\241Gc\242Hd\243Ie\244Fb\241Eb\241Fb\242Gc\243Gd\244He\245Ie\246Jf\246" - "\213\22)]\35\23*^\23*_\24+`\25,a\25-b\26.c\27.c\30/d\30""0e\31""1f\32""1" - "g\32""2h\33""3i\33""4j\34""5k\34""5l\35""6m\36""7n\37""8o\40""9p#<u$=w%>" - "w%?x&?y'@z(A{(B|)B}\202'Az&(B{)C|)D}*D~+E\177,E\200,F\200-G\200.G\201/H\203" - "/I\2030J\2041J\2052K\2062L\2073M\2104N\2115N\2125O\2137Q\215:V\222:V\223" - ";W\224<X\225<Y\226=Z\226>Z\227?[\230?\\\231@]\232A^\233B^\234B_\235C`\236" - "Da\237Da\240Eb\241Fc\242\202Hd\243\10E`\240Ea\241Fb\241Fc\242Gd\243Hd\244" - "Ie\245If\246\214\22)]N\23*^\24+_\24,`\25,a\26-b\27.c\27/d\30""0e\31""0f\32" - """1g\32""2h\33""3i\33""4j\33""4k\34""5l\35""6m\36""7m\37""8o\";t#<u$=v$>" - "w%>x&?y&@z'A{(B|)B}(B|'Az(B{(B|)C|*D}+E~+E\177,E\200-F\200.G\201.H\202/I" - "\2030I\2041J\2051K\2062L\2073L\2103M\2114N\2125O\2128T\2179U\221:V\222;W" - "\223;X\224<Y\225=Y\226>Z\227>[\230?\\\231@]\232A]\233A^\234B_\235C`\236C" - "`\237Da\240Eb\240Fc\241Gd\242Fa\240E`\237Ea\240Eb\241Fb\242Gc\243Hd\244H" - "e\245If\246\214\22)]N\23*^\23*_\24+`\25,a\26-b\26.c\27/d\30/e\30""0f\31""1" - "g\32""2g\33""2h\33""3i\33""4j\34""5k\35""5l\36""7n!:s\";t#<u#=v$=w%>x%?y" - "&@z'@{(A|(B|)C}'Az(Az(B{)C|*D}*D~+E\177,E\200-F\200-G\201.G\202/H\203/I\204" - "0J\2051K\2062K\2062L\2073M\2104N\2116P\2148T\2209U\221:V\222:W\223;W\224" - "<X\225=Y\226=Z\227>[\230?[\231@\\\231@]\233A^\233B_\234C_\235C`\236Da\237" - "Eb\240Ec\241Fc\242D_\236E`\237Ea\240Ea\241Fb\242Fc\243Gd\244He\245Ie\245" - "\214\22)]N\22*^\23*_\24+`\25,a\25-a\26-b\27.c\30/d\30""0e\31""1f\32""1g\32" - """2h\33""3i\33""4j\34""4k\35""6n\40""9r!:s\";t\";u#<v$=v$>w%?x&?y'@z'A{(" - "B|&@y'@y'Az(B{)C|)C}*D~+E\177,E\200,F\200-F\200.G\201/H\202/I\2030J\2041" - "J\2051K\2062L\2073M\2104M\2117R\2168T\2209U\221:V\222:V\223;W\224<X\225<" - "Y\225=Z\226>Z\227?[\230?\\\231@]\232A]\233A^\234B_\235C`\236Da\237Da\240" - "Eb\241Da\237D_\236D`\237E`\240Ea\240Eb\241Fc\242Gc\243Hd\244He\245\215\22" - ")]\30\23*^\24+_\24+`\25,a\26-b\27.c\27/d\30/e\31""0f\31""1g\32""2h\33""3" - "i\33""3j\35""5m\37""8p\40""9q\40:r!:s\";t#<u#=v$=w%>x&?y\202&@z)%?w%?x&@" - "y'Az(Bz(B{)C|*D}+E~+E\177,E\200-F\200.G\201.H\202/H\2030I\2040J\2051K\206" - "2L\2073L\2104N\2127S\2178T\2179U\2209U\221:V\222;W\223;X\224<X\225=Y\226" - ">Z\227>[\230?\\\231@\\\232A]\233A^\234B_\235C`\236C`\237Da\237Eb\240\202" - "C^\235\10D_\236E`\237Ea\240Eb\241Fb\242Gc\243Gd\244He\245\215\22)]M\23*^" - "\23*_\24+`\25,a\26-b\26.c\27.c\30/e\30""0e\31""1f\32""2g\33""2h\34""5l\36" - """7o\37""8p\40""9q\40""9r!:s\";t\"<u#<v$=w%>x%?y%?x$>v%>v%?w&@x'Ay'Az(B{" - ")C|*D}*D~+E\177,E\200-F\200-G\201.G\202/H\203/I\2040J\2041K\2052K\2062L\207" - "5Q\2147S\2168S\2178T\2209U\221:V\222:W\223;W\224<X\225=Y\226=Z\227>[\230" - "?[\230@\\\231@]\233A^\233B_\234B_\235C`\236Da\237C`\236B]\234C^\235D_\236" - "E`\237Ea\240Ea\241Fb\242Fc\243Gd\243Hd\245\215\22)]B\22)^\23*_\24+_\25,`" - "\25-a\26-b\27.c\27/d\30""0e\31""1f\32""1g\33""4k\35""6n\36""7o\37""7p\37" - """8q\40""9r!:s!;t\";t#<u$=v$>w$=v#<t$=u$>v%?w&?x&@y'Az(B{)C|)C}*D~+E\177" - ",E\177,F\200-F\200.G\201.H\202/I\2030I\2041J\2051K\2062L\2075P\2136R\216" - "7S\2178T\2209U\2219V\222:V\223;W\224;X\224<Y\225=Y\226>Z\227>[\230?\\\231" - "@]\232A]\233A^\234B_\235C`\236Da\237\202B]\234\11C^\235C_\235D_\236E`\237" - "Ea\240Eb\241Fc\242Gc\243Hd\244\216\22)]L\23*^\24+_\24+`\25,a\26-b\26.c\27" - "/d\30/e\31""0f\32""3j\33""5m\34""6n\36""6n\36""7o\37""8p\40""9q\40:r!:s\"" - ";t#<u#=v\"<t\";s#<t#=u$>v%>w%?x&@y'Ay(Bz(B{)C|*D}+E~+E\177,E\200-F\200-G" - "\201.H\202/H\2030I\2040J\2051K\2062L\2073M\2116R\2167S\2168T\2178T\2209U" - "\221:V\222;W\223;X\224<X\225=Y\226>Z\227>[\230?\\\231@\\\232@]\233A^\234" - "B_\235C_\236C_\235A\\\232B]\233C^\234C^\235D_\236E`\237Ea\240Eb\241Fb\242" - "Gc\243Gd\244\216\22)]L\23*^\23*_\24+`\25,a\25-b\26.b\27.d\30/e\31""2i\32" - """4k\33""4l\34""5m\35""6n\36""7o\37""8p\37""8q\40""9r!:s\";t\"<u!;s!:r\"" - ";s\"<t#=t$=u%>v%?w&@x'@y'Az(B{)C|*D}*D~+E\177,E\200,F\200-G\201.G\202/H\202" - "/I\2030J\2041J\2052K\2062L\2075Q\2147S\2167S\2178T\2209U\221:V\222:V\223" - ";W\224<X\225=Y\226=Z\227>Z\227?[\230?\\\231@]\232A^\233B^\234B_\235A]\233" - "A\\\232B]\233B]\234C^\235D_\236D`\237E`\240Ea\241Fb\242Fc\242Gd\243\217\22" - ")]1\23*^\24+_\25,`\25,a\26-b\27.d\30""1h\31""3j\32""3k\33""4l\33""5m\34""6" - "n\36""7o\36""7p\37""8q\40""9q!:s!;s\40:r\40""9p!:q!;r\";s#<t#=u$>v%?w&?x" - "&@y'Az(B{)C|)C}*D~+E~+E\177,E\200-F\200.G\201.H\202/I\2030I\2041J\2051K\206" - "2L\2074N\2116R\2167S\2178T\220\2029U\221\30:V\222;W\223;X\224<Y\225=Y\226" - ">Z\227>[\230?\\\231@]\232A]\233A^\234B^\234@[\231A[\232A\\\233B]\234C^\234" - "C_\235D_\236E`\237Ea\240Eb\241Fc\242Gc\243\217\22)]K\23*^\23+_\24+`\25,a" - "\26-c\27""0g\30""2i\31""2j\32""3k\32""4l\33""5m\34""5m\35""6n\36""7o\37""8" - "p\40""9q\40:r\40""9q\37""8o\40""9p\40:q!:r\";s\"<t#=u$=v%>w%?x&@x'Ay(Az(" - "B{)C|*D}*E~+E\177,E\200-F\200-G\201.H\202/H\2030I\2040J\2051K\2062K\2062" - "L\2075Q\2147S\2168T\2178T\2209U\221:V\222;W\223;X\224<X\225=Y\226=Z\227>" - "[\230?[\231@\\\232@]\232A^\234@\\\232@Z\230@[\231A\\\232B]\233B^\234C^\235" - "D_\236E`\237Ea\240Ea\241Fb\242Gc\243\217\22)]K\22*^\23*_\24+`\25-b\26/f\27" - """0g\30""1h\31""2i\31""3j\32""4k\33""5l\34""5m\35""6n\36""7o\37""8p\37""8" - "q\37""8o\36""7n\37""8o\37""8p\40""9q!:q!;r\"<s#<t$=u$>v%?w&@x'@y'Az(B{)C" - "|)C}*D~+E\177,E\200,F\200-F\200.G\201/H\202/I\2030J\2041J\2052K\2062L\207" - "4N\2117S\2167S\2178T\2209U\221:V\222:V\223;W\224<X\225<Y\226=Z\226>Z\227" - "?[\230?\\\231@]\232A]\233?Z\227?Z\230@[\231A\\\232A\\\233B]\234C^\235D_\236" - "D`\237E`\240Ea\241Fb\241Fc\242\220\22)]\36\23*^\24,a\25/e\26/f\27""0g\30" - """1h\30""2i\31""3j\32""3k\33""4l\33""5m\34""6n\36""6o\36""7p\36""7n\35""6" - "l\36""7m\36""7n\37""8o\40""9p\40:q!;r\";s#<t#=u$>v%?w&?x&@y'Az\202(B{\21" - ")C|*D}+E~+E\177,E\200-F\200.G\201.H\202/I\2030I\2040J\2051K\2062L\2073L\210" - "6Q\2147S\2178T\217\2029U\221\27:V\222;W\223;X\224<Y\225=Y\226>Z\227>[\230" - "?\\\231@\\\232?[\231>Y\227?Z\230@[\231A[\232A\\\232B]\233C^\234C_\235D_\236" - "E`\237Ea\240Eb\241Fc\242\220\22)]<\23+`\24-d\25.e\26/f\27""0g\27""1h\30""2" - "i\31""2j\31""3k\32""4k\33""5l\34""5m\35""6n\35""6m\34""5k\35""6l\35""6m\36" - """7n\37""8o\40""9p\40:q!:r\";s\"<t#=u$=v%>v%?w&@x'Ay'Az(B{)C|*D}*D~+E\177" - ",E\200-F\200-G\201.G\202/H\2030I\2040J\2041K\2052K\2062L\2074N\2117S\216" - "8S\2178T\2209U\221:V\222;W\223;W\224<X\225=Y\226=Z\227>[\230?[\231?\\\231" - "\202>Y\226\14?Z\227?Z\230@[\231A\\\232B]\233B]\234C^\235D_\236E`\237Ea\240" - "Ea\241Fb\242\217\22)]K\22*_\23,c\24-d\25.e\26/e\26""0f\27""0g\30""1h\30""2" - "i\31""3j\32""4k\33""4l\33""5m\34""5l\33""4j\34""4k\34""5l\35""6m\36""7n\37" - """8o\37""9p\40""9p!:q!;r\"<s#<t$=u$>v%?w&?x&@y'Az(B{)C|)C}*D~+E\177,E\200" - ",F\200-F\200.G\201.H\202/I\2030J\2041J\2051K\2062L\2073M\2105P\2147S\217" - "8T\2209U\2219V\222:V\223;W\224<X\224<Y\225=Z\226>Z\227?[\230>[\230=X\225" - ">X\226>Y\227?Z\230@[\231A\\\232A\\\233B]\234C^\235D_\236D`\237E`\240Ea\240" - "Eb\241\216\22)]\1\22+`\202\23,bI\24-c\25.d\25.e\26/f\27""0g\27""1h\30""2" - "i\31""2j\32""3k\32""4l\33""4k\33""3i\33""3j\33""4k\34""5k\35""6l\35""7m\36" - """7n\37""8o\40""9p\40:q!:r\";s#<t#=u$>v%>w%?x&@y'Ay(Bz(B{)C|*D}+E~+E\177" - ",E\200-F\200.G\201.H\202/H\2030I\2040J\2051K\2062L\2073L\2103M\2117R\216" - "8T\2178U\2209U\221:V\222;W\223;X\224<X\225=Y\226>Z\227>[\230=X\225=W\225" - "=X\226>Y\227?Z\230@Z\231@[\231A\\\232B]\233C^\234C^\235D_\236E`\237Ea\240" - "Eb\241\215\22)]\1\23+`\203\23,bI\24-c\24-d\25.e\26/f\26""0g\27""1h\30""1" - "i\31""2j\31""3j\32""3i\32""2g\33""2h\33""3i\33""4j\34""5k\34""6l\35""6m\36" - """7n\37""8o\37""9p\40""9q!:r\";s\"<t#=t$=u$>v%?w&@x'@y'Az(B{)C|*D}*D~+E\177" - ",E\200,F\200-F\201.G\202/H\202/I\2030J\2051J\2052K\2062L\2073M\2105O\212" - "7S\2178T\2209U\221:V\222:W\223;W\224<X\225=Y\226=Z\227>Z\227<V\223=W\224" - "=X\225>Y\226?Y\227?Z\230@[\231A\\\232B]\233B]\234C^\235D_\236D`\237E`\240" - "Ea\241\214\22)]\1\23+a\204\23,bI\23,c\24-c\25.d\25/e\26""0f\27""0g\30""1" - "h\30""2i\31""2h\31""0f\32""1g\32""2h\33""3i\33""4j\34""4k\34""5l\35""6m\36" - """7n\36""8o\37""8o\40""9p!:q!;r\";s#<t$=u$>v%?w&?x&@y'Az(B{)C|)C}*D}+E~+" - "E\177,E\200-F\200.G\201.H\202/I\2030I\2041J\2051K\2062L\2073M\2103M\2116" - "Q\2148T\2209U\2219U\222:V\222;W\224<X\224<Y\225=Y\226<W\224;V\223<W\224=" - "X\225>X\226>Y\227?Z\230@[\231A\\\232A\\\233B]\234C^\235C_\236D_\236E`\237" - "Ea\240\213\22)]\1\23+a\206\23,bH\24-c\24.d\25.e\26/f\27""0g\27""1h\30""1" - "g\30/e\31""0f\31""1g\32""2h\33""3h\33""3i\33""4j\34""5k\35""6l\35""6m\36" - """7n\37""8o\40""9p\40:q!:r\";s\"<t#=u$>v%>w%?w&@x'Ay(Az(B{)C|*D}+E~+E\177" - ",E\200-F\200-G\201.H\202/H\2030I\2040J\2051K\2062K\2073L\2103M\2104N\211" - "7R\2168T\2209U\221:V\222;W\223;X\224<X\225=Y\226;U\222;V\223<W\224=W\225" - "=X\226>Y\227?Z\227@Z\230@[\231A\\\232B]\233B^\234C^\235D_\236E`\237Ea\240" - "\211\22)]\2\22)^\23+a\207\23,bH\23-c\24-d\25.e\26/f\26""0f\27""0f\27.d\30" - "/d\30""0e\31""1f\32""1g\32""2h\33""3i\33""4j\34""5k\34""5l\35""6m\36""7n" - "\37""8o\37""9p\40""9q!:r!;r\"<s#<t$=u$>v%?w&@x'@y'Az(B{)C|)D}*D~+E\177,E" - "\200,F\200-G\201.G\201/H\202/I\2030J\2041J\2051K\2062L\2073M\2104N\2114O" - "\2127S\2179U\221:V\222:W\223;W\224<X\225;W\223:U\222;U\222<V\223<W\224=X" - "\225>Y\226?Y\227?Z\230@[\231A\\\232A\\\233B]\234C^\235D_\236D`\237E`\240" - "\210\22)]\2\22*^\23,a\211\23,b\20\24-c\25.d\25/e\26/e\26-b\27.c\27/d\30""0" - "e\31""0f\32""1g\32""2h\33""3i\33""4j\33""4k\34""5l\35""6l\202\36""7n$\37" - """8o\40""9p!:q!;r\";s#<t#=u$>v%?w&?x&@y'Az(B{(B|)C}*D}+E~+E\177,E\200-F\200" - ".G\201.H\202/I\2030I\2041J\2051K\2062L\2073L\2103M\2114N\2125O\2138S\217" - "9U\221:V\222;W\223;X\224\202:T\221\17;U\222;V\223<W\224=W\225>X\226>Y\227" - "?Z\230@[\231A[\232A\\\233B]\233C^\234C_\235D_\236E`\237\207\22)]\1\22*^\213" - "\23,bG\24-c\24.d\25-c\25,a\26-b\26.c\27.d\30/e\31""0f\31""1g\32""2g\33""2" - "h\33""3i\33""4j\34""5k\35""6l\35""6m\36""7n\37""8o\40""9p\40:q!:r\";s\"<" - "t#=u$=v%>v%?w&@x'Ay(Az(B{)C|*D}*E~+E\177,E\200-F\200-G\201.G\202/H\2030I" - "\2040J\2051K\2062K\2062L\2073M\2104N\2115N\2125O\2138S\217:V\222;W\223:V" - "\2229S\220:T\221:U\222;V\223<V\224=W\225=X\225>Y\226?Y\227@Z\230@[\231A\\" - "\232B]\233B]\234C^\235D_\236E`\237\206\22)]\1\22*_\214\23,bG\23,c\24,b\24" - "+`\25,`\25-a\26-b\27.c\30/d\30""0e\31""1f\32""1g\32""2h\33""3i\33""4j\34" - """4k\34""5l\35""6m\36""7n\37""8o\37""8p\40""9p!:q!;r\"<s#<t$=u$>v%?w&@x'" - "@y'Az(B{)C|)C}*D~+E\177,E\200,F\200-F\200.G\201/H\202/I\2030J\2041J\2051" - "K\2062L\2073M\2104N\2114N\2125O\2136P\2148S\216:V\2229T\2209S\2209T\220:" - "U\221;U\222;V\223<W\224=X\225>X\226>Y\227?Z\230@[\231A\\\232A\\\233B]\234" - "C^\235D_\236D`\237\205\22)]\1\22*_\215\23,b\37\23+a\23*_\24+_\24,`\25,a\26" - "-b\27.c\27/d\30/e\31""0f\31""1g\32""2h\33""3i\33""3j\33""4k\34""5k\35""6" - "l\36""7m\36""7n\37""8o\40""9p\40:q!;r\";s#<t#=u$>v%>w&?x&@y'Az\202(B{&)C" - "|*D}+E~+E\177,E\200-F\200.G\201.H\202/H\2030I\2040J\2051K\2062L\2073L\210" - "3M\2114N\2125O\2136P\2136P\2147Q\2168R\2168S\2179S\220:T\221;U\222;V\223" - "<W\224=W\225>X\226>Y\227?Z\230@[\231@[\232A\\\232B]\233C^\234C^\235D_\236" - "\204\22)]\1\22*_\215\23,b\40\23+a\22)]\23*^\23+_\24+`\25,a\26-b\26.c\27." - "d\30/e\30""0f\31""1f\32""2g\33""2h\33""3i\33""4j\34""5k\34""6l\35""6m\36" - """7n\37""8o\37""9p\40""9q!:r\";s\"<t#=t$=u%>v%?w&@x'Ay\202(B{&)C|*D}*D~+" - "E\177,E\200-F\200-G\201.G\202/H\203/I\2030J\2041K\2052K\2062L\2073M\2104" - "N\2115N\2125O\2136P\2147Q\2157R\2168R\2179S\220:T\221:U\222;V\223<V\223=" - "W\224=X\225>Y\226?Y\227?Z\230@[\231A\\\232B]\233B]\234C^\235D_\236\203\22" - ")]\1\22+`\215\23,b\1\23+a\202\22)]F\22)^\23*_\24+_\25,`\25-a\26-b\27.c\27" - "/d\30""0e\31""1f\32""1g\32""2h\33""3i\33""4j\34""5k\34""5l\35""6m\36""7n" - "\36""8o\37""8o\40""9p!:q!;r\"<s#<t#=u$>v%?w&@x'@y)C~(B{)C|)C}*D~+E\177,E" - "\177,E\200-F\200.G\201.H\202/I\2030I\2041J\2051K\2062L\2073M\2104M\2114N" - "\2125O\2136P\2146Q\2157Q\2158R\2179S\2179T\220:T\221;U\222;V\223<W\224=X" - "\225>X\226?Y\227?Z\230@[\231A\\\232A\\\233B]\234C^\235C_\236\202\22)]\1\23" - "+`\215\23,b\1\23+a\204\22)]\13\23*^\24+_\24+`\25,a\26-b\26.c\27/d\30/e\31" - """0f\31""1g\32""2h\202\33""3i:\33""4j\34""5k\35""6l\35""6m\36""7n\37""8o" - "\40""9p\40:q!;r\";s#<t#=u$>v%>w%?x'A{*D~)B|(B{)C|*D}+E~+E\177,E\200-F\200" - "-G\201.G\202/H\2030I\2040J\2051K\2062L\2073L\2103M\2104N\2115O\2125O\213" - "6P\2147Q\2158R\2168S\2179S\220:T\221;U\222;V\223<V\224=W\225=X\226>Y\227" - "?Z\230@Z\230@[\231A\\\232B]\233C^\234C^\235\22)]\23+a\215\23,b\1\23+a\205" - "\22)]F\23*^\23*_\24+`\25,a\25-b\26.c\27.c\30/d\30""0e\31""1f\32""1g\33""2" - "h\33""3i\33""4j\34""5k\34""5l\35""6m\36""7n\37""8o\37""9p\40""9q!:r\";s\"" - "<t#=t$=u$>v%?w)B|*C~*D~(B{)C|*D}*D~+E\177,E\200,F\200-F\201.G\201/H\202/" - "I\2030J\2041J\2052K\2062L\2073M\2104N\2114N\2125O\2136P\2147Q\2157Q\2168" - "R\2179S\2209T\221:U\222;U\222<V\223<W\224=X\225>Y\226?Y\227?Z\230@[\231A" - "\\\232B]\233B]\234C^\235\23+a\215\23,b\1\23+a\206\22)]\37\22)^\23*^\24+_" - "\24,`\25-a\26-b\27.c\27/d\30""0e\31""0f\32""1g\32""2h\33""3i\33""4j\33""4" - "k\34""5l\35""6m\36""7m\36""8n\37""8o\40""9p!:q!;r\";s#<t#=u$>v&@y)B})C~*" - "D\177\202)B|$)C}*D}+E~+E\177,E\200-F\200.G\201.H\202/I\2030I\2041J\2051K" - "\2062L\2073L\2103M\2114N\2125O\2136P\2146P\2157Q\2158R\2169S\2179T\220:T" - "\221;U\222;V\223<W\224=X\225>X\226>Y\227?Z\230@[\231@[\232A\\\233B]\234C" - "^\235\215\23,b\1\23+a\210\22)]\35\23*^\24+_\24+`\25,a\26-b\26.c\27/d\30/" - "e\31""0f\31""1g\32""2g\33""2h\33""3i\33""4j\34""5k\35""6l\36""6m\36""7n\37" - """8o\40""9p\40:q!:r\";s\"<t#=u$=v'A{(B})C}\202*D~%(B{)C|*D}*E~+E\177,E\200" - "-F\200-G\201.H\202/H\2030I\2040J\2051K\2052K\2072L\2073M\2104N\2115O\212" - "5O\2136P\2147Q\2158R\2168S\2179S\220:T\221:U\222;V\223<W\224=W\225=X\226" - ">Y\226?Z\227@Z\230@[\231A\\\232B]\233B^\234\214\23,b\1\23+a\211\22)]\37\22" - "*^\23*_\24+`\25,a\25-b\26-b\27.c\30/d\30""0e\31""1f\32""1g\33""2h\33""3i" - "\33""4j\34""5k\34""5l\35""6m\36""7n\37""8o\37""8p\40""9q!:q!;r\"<s#<t$>w" - "'A{(B|)C}*C~*D\177\202)C|#)D}*D~+E\177,E\200,F\200-F\201.G\201/H\202/I\203" - "0J\2041J\2051K\2062L\2073M\2104N\2114N\2125O\2136P\2147Q\2157Q\2168R\217" - "9S\2209T\220:U\221;U\222<V\223<W\224=X\225>Y\226>Y\227?Z\230@[\231A\\\232" - "A\\\233B]\234\213\23,b\2\23,a\22)^\212\22)]C\23*^\24+_\24,`\25,a\26-b\27" - ".c\27/d\30""0e\31""0f\32""1g\32""2h\33""3i\33""4j\33""4k\34""5l\35""6l\36" - """7m\36""7n\37""8o\40""9p!:q!;r\";s#<t&?y'A{(A|)B})C~*D\177*D~(B{)C|*D}+" - "E~+E\177,E\200-F\200-G\201.H\202/I\2030I\2040J\2051K\2062L\2073L\2103M\211" - "4N\2125O\2136P\2136P\2147Q\2158R\2168S\2179T\220:T\221;U\222;V\223<W\224" - "=W\225>X\226>Y\227?Z\230@[\231@[\232A\\\233B]\233\212\23,b\2\23,a\22)^\213" - "\22)]\37\23*^\23*_\24+`\25,a\26-b\26.c\27.d\30/e\30""0f\31""1f\32""2g\33" - """2h\33""3i\33""4j\34""5k\35""6l\35""6m\36""7n\37""8o\37""9p\40:q!:r\";s" - "#=u&@y'@{(A{(B|)C}*D~*D\177\202)C|\"*D}*D~+E\177,E\200,F\200-G\201.G\202" - "/H\203/I\2040J\2041K\2052K\2062L\2073M\2104N\2114O\2125O\2136P\2147Q\215" - "7R\2168R\2179S\220:T\221:U\222;V\223<V\224=W\224=X\226>Y\226?Y\227?Z\230" - "@[\231A\\\232B]\233\211\23,b\2\23,a\22)^\214\22)]\36\22)^\23*_\24+`\25,`" - "\25-a\26-b\27.c\27/d\30""0e\31""1f\32""1g\32""2h\33""3i\33""4j\34""5k\34" - """5l\35""6m\36""7n\37""8o\37""8p\40""9p!:q!;r$>w&?y'@z'A{(B|)B})C~\202*D" - "\177#)C|)C}*D~+E\177,E\200,F\200-F\200.G\201.H\202/I\2030J\2041J\2051K\206" - "2L\2073M\2104M\2114N\2125O\2136P\2146Q\2157Q\2158R\2179S\2179T\220:T\221" - ";U\222<V\223<W\224=X\225>X\226>Y\227?Z\230@[\231A\\\232A\\\233\210\23,b\2" - "\23,a\22)^\216\22)]B\23*^\24+_\24,`\25,a\26-b\27.c\27/d\30/e\31""0f\31""1" - "g\32""2h\33""3i\33""3j\33""4j\34""5k\35""6l\35""6m\36""7n\37""8o\40""9p\40" - ":q\";s%>x&?y&@z'A{(A|)B})C~*D\177+E\177)C})C|*D}+E~+E\177,E\200-F\200.G\201" - ".H\202/H\2030I\2040J\2051K\2062L\2073L\2103M\2104N\2115O\2125O\2136P\214" - "7Q\2158R\2168S\2179S\220:T\221;U\222;V\223<W\224=W\225=X\226>Y\227?Z\230" - "@Z\230@[\231A\\\232\207\23,b\2\23,a\22)^\217\22)]B\23*^\23*_\24+`\25,a\26" - "-b\26.c\27.c\30/d\30""0e\31""1f\32""2g\33""2h\33""3i\33""4j\34""5k\34""5" - "l\35""6m\36""7n\37""8o\37""9p\40""9q#<u%>x%?x&@z'@z'A{(B|)C}*C~*D\177+E\200" - ")C}*D}*D~+E\177,E\200,F\200-G\201.G\202/H\202/I\2030J\2041J\2052K\2062L\207" - "3M\2104N\2114N\2125O\2136P\2147Q\2157R\2168R\2179S\220:T\221:U\222;V\223" - "<V\224<W\224=X\225>Y\226?Y\227?Z\230@[\231A\\\232\206\23,b\2\23,a\22)^\220" - "\22)]\37\22)^\23*^\24+_\25,`\25-a\26-b\27.c\27/d\30""0e\31""1f\32""1g\32" - """2h\33""3i\33""4j\34""4k\34""5l\35""6m\36""7m\36""7n\37""8o\40""9q$=v$>" - "w%>x&?y'@z'A{(B|)B})C~*D\177\202+E\200!)C}*D~+E~,E\177,E\200-F\200.G\201" - ".H\202/I\2030I\2041J\2051K\2062L\2073M\2103M\2114N\2125O\2136P\2146Q\215" - "7Q\2158R\2168S\2179T\220:T\221;U\222;V\223<W\224=X\225>X\226>Y\227?Z\230" - "@[\231A\\\232\206\23,b\1\22)^\222\22)]A\23*^\23+_\24+`\25,a\26-b\26.c\27" - "/d\30/e\31""0f\31""1g\32""2h\33""2h\33""3i\33""4j\34""5k\35""6l\35""6m\36" - """7n\37""8o!:s#=v$=w%>x%?y&@z'A{(A|(B})C}*D~+D\177+E\200+E\177*D}*E~+E\177" - ",E\200-F\200-G\201.H\202/H\2030I\2040J\2051K\2062K\2072L\2103M\2104N\211" - "5O\2125O\2136P\2147Q\2158R\2168S\2179S\220:T\221:U\222;V\223<V\224=W\225" - "=X\226>Y\227?Z\230@Z\230@[\231\205\23,b\1\22*^\223\22)]A\22*^\23*_\24+`\25" - ",a\25-b\26.b\27.c\30/d\30""0e\31""1f\32""1g\32""2h\33""3i\33""4j\34""5k\34" - """5l\35""6m\36""7n\37""8o\";t#<v$=w%>x%?y&?y'@z'A{(B|)C}*C~*D\177+E\200," - "F\200+F\177*D~+E\177,E\200-F\200-F\201.G\201/H\202/I\2030J\2041J\2051K\206" - "2L\2073M\2104N\2114N\2125O\2136P\2147Q\2157R\2168R\2179S\2209T\221:U\221" - ";U\222<V\223<W\224=X\225>X\226?Y\227?Z\230@[\231\204\23,b\1\22*^\225\22)" - "]\36\23*^\24+_\24,`\25-a\26-b\27.c\27/d\30""0e\31""0f\32""1g\32""2h\33""3" - "i\33""4j\33""4k\34""5l\35""6l\36""7m\40""9q\";t#<u#=v$>w%>x&?y&@z'A{(B|)" - "B})C~*D\177\202+E\200\40,G\200+F\200+E~+E\177,E\200-F\200.G\201.H\202/I\203" - "0I\2041J\2051K\2062L\2073L\2103M\2114N\2125O\2136P\2136P\2147Q\2158R\216" - "9S\2179T\220:T\221;U\222;V\223<W\224=W\225>X\226>Y\227?Z\230@[\231\203\23" - ",b\1\22*^\226\22)]@\23*^\23+_\24+`\25,a\26-b\26.c\27/d\30/e\31""0f\31""1" - "g\32""2g\33""2h\33""3i\33""4j\34""5k\35""6l\35""6m!:r\";t\"<u#=v$=w%>x%?" - "y&@z'A{(A|(B|)C}*D~+D\177+E\200,F\200-H\201,F\200+E\177,E\200-F\200-G\201" - ".G\202/H\203/I\2040J\2051K\2052K\2062L\2073M\2104N\2115N\2125O\2136P\214" - "7Q\2157R\2168R\2179S\220:T\221:U\222;V\223<V\224=W\225=X\226>Y\226?Z\227" - "?Z\230\202\23,b\1\22*^\227\22)]B\22*^\23*_\24+`\25,`\25-a\26-b\27.c\30/d" - "\30""0e\31""1f\32""1g\32""2h\33""3i\33""4j\34""4k\34""5l\36""7o!:s\";t\"" - ";u#<v$=v$>w%?x&?y'@z'A{(B|)C})C~*D\177+E\200,F\200,G\201-H\202,G\200,E\200" - ",F\200-F\200.G\201/H\202/I\2030I\2041J\2051K\2062L\2073M\2104N\2114N\212" - "5O\2136P\2147Q\2157Q\2168R\2179S\2209T\220:U\221;U\222<V\223<W\224=X\225" - ">X\226>Y\227?Z\230\23,b\22*^\231\22)]\36\23*^\24+_\24,`\25,a\26-b\27.c\27" - "/d\30/e\31""0f\31""1g\32""2h\33""3i\33""3j\33""4k\34""5k\37""8q\40:r!:s\"" - ";t#<u#=v$>w%>x&?y&@z'A{(A|)B})C~*D\177\202+E\200\40,G\200-H\201.I\202-G\200" - ",E\200-F\200-G\201.H\202/H\2030I\2040J\2051K\2062L\2073L\2103M\2114N\211" - "5O\2126P\2136P\2147Q\2158R\2168S\2179T\220:T\221;U\222;V\223<W\224=W\225" - ">X\226>Y\227?Z\230\22*^\232\22)]?\23*^\23*_\24+`\25,a\26-b\26.c\27.d\30/" - "d\30""0e\31""1f\32""2g\33""2h\33""3i\33""4j\35""6m\40""9q\40""9r!:s\";t\"" - "<u#<v$=w%>x%?y&@z'@z(A{(B|)C}*D~*D\177+E\200,F\200-H\201-H\202.I\203-G\200" - ",F\200-G\201.G\202/H\203/I\2030J\2051K\2052K\2062L\2073M\2104N\2115N\212" - "5O\2136P\2147Q\2157R\2168R\2179S\220:T\221:U\222;V\223<V\224<W\225=X\225" - ">Y\226?Y\227\233\22)]$\22)^\23*_\24+_\25,`\25-a\26-b\27.c\27/d\30""0e\31" - """0f\32""1g\32""2h\33""3i\33""4j\36""7o\37""8q\40""9r!:s!;t\";u#<u$=v$>w" - "%>x&?y&@z'A{(B|)B})C~*D\177+E\200,F\200,G\201-H\202.I\202\202,E\200\31-F" - "\200.G\201.H\202/I\2030I\2041J\2051K\2062L\2073M\2104M\2114N\2125O\2136P" - "\2146P\2157Q\2168R\2169S\2179T\220:T\221;U\222<V\223<W\224=X\225>X\226>Y" - "\227\234\22)]C\23*^\24+_\24+`\25,a\26-b\26.c\27/d\30/e\31""0f\31""1g\32""2" - "h\33""3i\34""4k\36""7o\37""8p\40""9q\40""9r!:s\";t#<u#=v$=w%>x&?y&@z'A{(" - "A|(B})C~*D~+D\177+E\200,F\200-H\201-G\201+E\177,E\200-F\200-G\201.H\202/" - "H\2030I\2040J\2051K\2062L\2073L\2103M\2104N\2115O\2125O\2136P\2147Q\2158" - "R\2168S\2179S\220:T\221:U\222;V\223<W\224=W\225=X\226>Y\227\302\303\307\314" - "\315\321\307\311\314\303\305\311\325\327\333\232\331\333\336\206\331\333" - "\337\204\332\333\337\215\332\334\340\1\333\334\340\202\333\334\341\223\333" - "\335\341\202\333\335\342\202\334\335\342\202\334\336\342\15\223\232\253p" - "{\223\247\252\262\253\255\261\260\262\266\257\261\266\253\255\262\260\262" - "\267\317\316\314\231\236\232\215\244\223\322\322\322\340\340\340\315\345" - "\345\345\4s}\221:Jm\232\234\241\240\240\240\202\250\250\250\7\241\241\241" - "\247\247\247\306\306\306\302\302\301\300\276\273\311\311\311\342\342\342" - "\315\345\345\345\4\206\216\236Yf\200\242\244\250\247\247\247\202\255\255" - "\255\2\250\250\250\256\256\256", -}; - diff --git a/src/image_data/rotation_orientation_vert_flipped.h b/src/image_data/rotation_orientation_vert_flipped.h deleted file mode 100644 index bc8bbf2..0000000 --- a/src/image_data/rotation_orientation_vert_flipped.h +++ /dev/null @@ -1,736 +0,0 @@ -/* GIMP RGB C-Source image dump 1-byte-run-length-encoded (...) */ - -#include "image.h" - -static const nv_image_t rotation_orientation_vert_flipped_image = { - 90, 120, 3, 0, - "\5\306\306\306\302\302\301\300\276\273\311\311\311\342\342\342\315\345\345" - "\345\4\206\216\236Yf\200\242\244\250\247\247\247\202\255\255\255\7\250\250" - "\250\256\256\256\317\316\314\231\236\232\215\244\223\322\322\322\340\340" - "\340\315\345\345\345\4s}\221:Jm\232\234\241\240\240\240\202\250\250\250\7" - "\241\241\241\247\247\247\302\303\307\314\315\321\307\311\314\303\305\311" - "\325\327\333\232\331\333\336\206\331\333\337\204\332\333\337\215\332\334" - "\340\1\333\334\340\202\333\334\341\223\333\335\341\202\333\335\342\202\334" - "\335\342\202\334\336\342\10\223\232\253p{\223\247\252\262\253\255\261\260" - "\262\266\257\261\266\253\255\262\260\262\267\234\22)]>\23*^\24+_\24+`\25" - ",a\26-b\26.c\27/d\30/e\31""0f\31""1g\32""2h\33""3i\34""4k\36""7o\37""8p\40" - """9q\40""9r!:s\";t#<u#=v$=w%>x&?y&@z'A{(A|(B})C~*D~+D\177+E\200,F\200-H\201" - "-G\201+E\177,E\200-F\200-G\201.H\202/H\2030I\2040J\2051K\2062L\2073L\210" - "3M\2104N\2115O\2125O\2136P\2147Q\2158R\2168S\2179S\220:T\221:U\222;V\223" - "<W\224=W\225=X\226>Y\227\233\22)]$\22)^\23*_\24+_\25,`\25-a\26-b\27.c\27" - "/d\30""0e\31""0f\32""1g\32""2h\33""3i\33""4j\36""7o\37""8q\40""9r!:s!;t\"" - ";u#<u$=v$>w%>x&?y&@z'A{(B|)B})C~*D\177+E\200,F\200,G\201-H\202.I\202\202" - ",E\200\32-F\200.G\201.H\202/I\2030I\2041J\2051K\2062L\2073M\2104M\2114N\212" - "5O\2136P\2146P\2157Q\2168R\2169S\2179T\220:T\221;U\222<V\223<W\224=X\225" - ">X\226>Y\227\22*^\232\22)]A\23*^\23*_\24+`\25,a\26-b\26.c\27.d\30/d\30""0" - "e\31""1f\32""2g\33""2h\33""3i\33""4j\35""6m\40""9q\40""9r!:s\";t\"<u#<v$" - "=w%>x%?y&@z'@z(A{(B|)C}*D~*D\177+E\200,F\200-H\201-H\202.I\203-G\200,F\200" - "-G\201.G\202/H\203/I\2030J\2051K\2052K\2062L\2073M\2104N\2115N\2125O\213" - "6P\2147Q\2157R\2168R\2179S\220:T\221:U\222;V\223<V\224<W\225=X\225>Y\226" - "?Y\227\23,b\22*^\231\22)]\36\23*^\24+_\24,`\25,a\26-b\27.c\27/d\30/e\31""0" - "f\31""1g\32""2h\33""3i\33""3j\33""4k\34""5k\37""8q\40:r!:s\";t#<u#=v$>w%" - ">x&?y&@z'A{(A|)B})C~*D\177\202+E\200\37,G\200-H\201.I\202-G\200,E\200-F\200" - "-G\201.H\202/H\2030I\2040J\2051K\2062L\2073L\2103M\2114N\2115O\2126P\213" - "6P\2147Q\2158R\2168S\2179T\220:T\221;U\222;V\223<W\224=W\225>X\226>Y\227" - "?Z\230\202\23,b\1\22*^\227\22)]@\22*^\23*_\24+`\25,`\25-a\26-b\27.c\30/d" - "\30""0e\31""1f\32""1g\32""2h\33""3i\33""4j\34""4k\34""5l\36""7o!:s\";t\"" - ";u#<v$=v$>w%?x&?y'@z'A{(B|)C})C~*D\177+E\200,F\200,G\201-H\202,G\200,E\200" - ",F\200-F\200.G\201/H\202/I\2030I\2041J\2051K\2062L\2073M\2104N\2114N\212" - "5O\2136P\2147Q\2157Q\2168R\2179S\2209T\220:U\221;U\222<V\223<W\224=X\225" - ">X\226>Y\227?Z\230\203\23,b\1\22*^\226\22)]@\23*^\23+_\24+`\25,a\26-b\26" - ".c\27/d\30/e\31""0f\31""1g\32""2g\33""2h\33""3i\33""4j\34""5k\35""6l\35""6" - "m!:r\";t\"<u#=v$=w%>x%?y&@z'A{(A|(B|)C}*D~+D\177+E\200,F\200-H\201,F\200" - "+E\177,E\200-F\200-G\201.G\202/H\203/I\2040J\2051K\2052K\2062L\2073M\210" - "4N\2115N\2125O\2136P\2147Q\2157R\2168R\2179S\220:T\221:U\222;V\223<V\224" - "=W\225=X\226>Y\226?Z\227?Z\230\204\23,b\1\22*^\225\22)]\36\23*^\24+_\24," - "`\25-a\26-b\27.c\27/d\30""0e\31""0f\32""1g\32""2h\33""3i\33""4j\33""4k\34" - """5l\35""6l\36""7m\40""9q\";t#<u#=v$>w%>x&?y&@z'A{(B|)B})C~*D\177\202+E\200" - "\40,G\200+F\200+E~+E\177,E\200-F\200.G\201.H\202/I\2030I\2041J\2051K\206" - "2L\2073L\2103M\2114N\2125O\2136P\2136P\2147Q\2158R\2169S\2179T\220:T\221" - ";U\222;V\223<W\224=W\225>X\226>Y\227?Z\230@[\231\205\23,b\1\22*^\223\22)" - "]A\22*^\23*_\24+`\25,a\25-b\26.b\27.c\30/d\30""0e\31""1f\32""1g\32""2h\33" - """3i\33""4j\34""5k\34""5l\35""6m\36""7n\37""8o\";t#<v$=w%>x%?y&?y'@z'A{(" - "B|)C}*C~*D\177+E\200,F\200+F\177*D~+E\177,E\200-F\200-F\201.G\201/H\202/" - "I\2030J\2041J\2051K\2062L\2073M\2104N\2114N\2125O\2136P\2147Q\2157R\2168" - "R\2179S\2209T\221:U\221;U\222<V\223<W\224=X\225>X\226?Y\227?Z\230@[\231\206" - "\23,b\1\22)^\222\22)]A\23*^\23+_\24+`\25,a\26-b\26.c\27/d\30/e\31""0f\31" - """1g\32""2h\33""2h\33""3i\33""4j\34""5k\35""6l\35""6m\36""7n\37""8o!:s#=" - "v$=w%>x%?y&@z'A{(A|(B})C}*D~+D\177+E\200+E\177*D}*E~+E\177,E\200-F\200-G" - "\201.H\202/H\2030I\2040J\2051K\2062K\2072L\2103M\2104N\2115O\2125O\2136P" - "\2147Q\2158R\2168S\2179S\220:T\221:U\222;V\223<V\224=W\225=X\226>Y\227?Z" - "\230@Z\230@[\231\206\23,b\2\23,a\22)^\220\22)]\37\22)^\23*^\24+_\25,`\25" - "-a\26-b\27.c\27/d\30""0e\31""1f\32""1g\32""2h\33""3i\33""4j\34""4k\34""5" - "l\35""6m\36""7m\36""7n\37""8o\40""9q$=v$>w%>x&?y'@z'A{(B|)B})C~*D\177\202" - "+E\200!)C}*D~+E~,E\177,E\200-F\200.G\201.H\202/I\2030I\2041J\2051K\2062L" - "\2073M\2103M\2114N\2125O\2136P\2146Q\2157Q\2158R\2168S\2179T\220:T\221;U" - "\222;V\223<W\224=X\225>X\226>Y\227?Z\230@[\231A\\\232\207\23,b\2\23,a\22" - ")^\217\22)]B\23*^\23*_\24+`\25,a\26-b\26.c\27.c\30/d\30""0e\31""1f\32""2" - "g\33""2h\33""3i\33""4j\34""5k\34""5l\35""6m\36""7n\37""8o\37""9p\40""9q#" - "<u%>x%?x&@z'@z'A{(B|)C}*C~*D\177+E\200)C}*D}*D~+E\177,E\200,F\200-G\201." - "G\202/H\202/I\2030J\2041J\2052K\2062L\2073M\2104N\2114N\2125O\2136P\2147" - "Q\2157R\2168R\2179S\220:T\221:U\222;V\223<V\224<W\224=X\225>Y\226?Y\227?" - "Z\230@[\231A\\\232\210\23,b\2\23,a\22)^\216\22)]B\23*^\24+_\24,`\25,a\26" - "-b\27.c\27/d\30/e\31""0f\31""1g\32""2h\33""3i\33""3j\33""4j\34""5k\35""6" - "l\35""6m\36""7n\37""8o\40""9p\40:q\";s%>x&?y&@z'A{(A|)B})C~*D\177+E\177)" - "C})C|*D}+E~+E\177,E\200-F\200.G\201.H\202/H\2030I\2040J\2051K\2062L\2073" - "L\2103M\2104N\2115O\2125O\2136P\2147Q\2158R\2168S\2179S\220:T\221;U\222;" - "V\223<W\224=W\225=X\226>Y\227?Z\230@Z\230@[\231A\\\232\211\23,b\2\23,a\22" - ")^\214\22)]\36\22)^\23*_\24+`\25,`\25-a\26-b\27.c\27/d\30""0e\31""1f\32""1" - "g\32""2h\33""3i\33""4j\34""5k\34""5l\35""6m\36""7n\37""8o\37""8p\40""9p!" - ":q!;r$>w&?y'@z'A{(B|)B})C~\202*D\177#)C|)C}*D~+E\177,E\200,F\200-F\200.G" - "\201.H\202/I\2030J\2041J\2051K\2062L\2073M\2104M\2114N\2125O\2136P\2146Q" - "\2157Q\2158R\2179S\2179T\220:T\221;U\222<V\223<W\224=X\225>X\226>Y\227?Z" - "\230@[\231A\\\232A\\\233\212\23,b\2\23,a\22)^\213\22)]\37\23*^\23*_\24+`" - "\25,a\26-b\26.c\27.d\30/e\30""0f\31""1f\32""2g\33""2h\33""3i\33""4j\34""5" - "k\35""6l\35""6m\36""7n\37""8o\37""9p\40:q!:r\";s#=u&@y'@{(A{(B|)C}*D~*D\177" - "\202)C|\"*D}*D~+E\177,E\200,F\200-G\201.G\202/H\203/I\2040J\2041K\2052K\206" - "2L\2073M\2104N\2114O\2125O\2136P\2147Q\2157R\2168R\2179S\220:T\221:U\222" - ";V\223<V\224=W\224=X\226>Y\226?Y\227?Z\230@[\231A\\\232B]\233\213\23,b\2" - "\23,a\22)^\212\22)]C\23*^\24+_\24,`\25,a\26-b\27.c\27/d\30""0e\31""0f\32" - """1g\32""2h\33""3i\33""4j\33""4k\34""5l\35""6l\36""7m\36""7n\37""8o\40""9" - "p!:q!;r\";s#<t&?y'A{(A|)B})C~*D\177*D~(B{)C|*D}+E~+E\177,E\200-F\200-G\201" - ".H\202/I\2030I\2040J\2051K\2062L\2073L\2103M\2114N\2125O\2136P\2136P\214" - "7Q\2158R\2168S\2179T\220:T\221;U\222;V\223<W\224=W\225>X\226>Y\227?Z\230" - "@[\231@[\232A\\\233B]\233\214\23,b\1\23+a\211\22)]\37\22*^\23*_\24+`\25," - "a\25-b\26-b\27.c\30/d\30""0e\31""1f\32""1g\33""2h\33""3i\33""4j\34""5k\34" - """5l\35""6m\36""7n\37""8o\37""8p\40""9q!:q!;r\"<s#<t$>w'A{(B|)C}*C~*D\177" - "\202)C|#)D}*D~+E\177,E\200,F\200-F\201.G\201/H\202/I\2030J\2041J\2051K\206" - "2L\2073M\2104N\2114N\2125O\2136P\2147Q\2157Q\2168R\2179S\2209T\220:U\221" - ";U\222<V\223<W\224=X\225>Y\226>Y\227?Z\230@[\231A\\\232A\\\233B]\234\215" - "\23,b\1\23+a\210\22)]\35\23*^\24+_\24+`\25,a\26-b\26.c\27/d\30/e\31""0f\31" - """1g\32""2g\33""2h\33""3i\33""4j\34""5k\35""6l\36""6m\36""7n\37""8o\40""9" - "p\40:q!:r\";s\"<t#=u$=v'A{(B})C}\202*D~&(B{)C|*D}*E~+E\177,E\200-F\200-G" - "\201.H\202/H\2030I\2040J\2051K\2052K\2072L\2073M\2104N\2115O\2125O\2136P" - "\2147Q\2158R\2168S\2179S\220:T\221:U\222;V\223<W\224=W\225=X\226>Y\226?Z" - "\227@Z\230@[\231A\\\232B]\233B^\234\23+a\215\23,b\1\23+a\206\22)]\37\22)" - "^\23*^\24+_\24,`\25-a\26-b\27.c\27/d\30""0e\31""0f\32""1g\32""2h\33""3i\33" - """4j\33""4k\34""5l\35""6m\36""7m\36""8n\37""8o\40""9p!:q!;r\";s#<t#=u$>v" - "&@y)B})C~*D\177\202)B|&)C}*D}+E~+E\177,E\200-F\200.G\201.H\202/I\2030I\204" - "1J\2051K\2062L\2073L\2103M\2114N\2125O\2136P\2146P\2157Q\2158R\2169S\217" - "9T\220:T\221;U\222;V\223<W\224=X\225>X\226>Y\227?Z\230@[\231@[\232A\\\233" - "B]\234C^\235\22)]\23+a\215\23,b\1\23+a\205\22)]E\23*^\23*_\24+`\25,a\25-" - "b\26.c\27.c\30/d\30""0e\31""1f\32""1g\33""2h\33""3i\33""4j\34""5k\34""5l" - "\35""6m\36""7n\37""8o\37""9p\40""9q!:r\";s\"<t#=t$=u$>v%?w)B|*C~*D~(B{)C" - "|*D}*D~+E\177,E\200,F\200-F\201.G\201/H\202/I\2030J\2041J\2052K\2062L\207" - "3M\2104N\2114N\2125O\2136P\2147Q\2157Q\2168R\2179S\2209T\221:U\222;U\222" - "<V\223<W\224=X\225>Y\226?Y\227?Z\230@[\231A\\\232B]\233B]\234C^\235\202\22" - ")]\1\23+`\215\23,b\1\23+a\204\22)]\13\23*^\24+_\24+`\25,a\26-b\26.c\27/d" - "\30/e\31""0f\31""1g\32""2h\202\33""3i8\33""4j\34""5k\35""6l\35""6m\36""7" - "n\37""8o\40""9p\40:q!;r\";s#<t#=u$>v%>w%?x'A{*D~)B|(B{)C|*D}+E~+E\177,E\200" - "-F\200-G\201.G\202/H\2030I\2040J\2051K\2062L\2073L\2103M\2104N\2115O\212" - "5O\2136P\2147Q\2158R\2168S\2179S\220:T\221;U\222;V\223<V\224=W\225=X\226" - ">Y\227?Z\230@Z\230@[\231A\\\232B]\233C^\234C^\235\203\22)]\1\22+`\215\23" - ",b\1\23+a\202\22)]F\22)^\23*_\24+_\25,`\25-a\26-b\27.c\27/d\30""0e\31""1" - "f\32""1g\32""2h\33""3i\33""4j\34""5k\34""5l\35""6m\36""7n\36""8o\37""8o\40" - """9p!:q!;r\"<s#<t#=u$>v%?w&@x'@y)C~(B{)C|)C}*D~+E\177,E\177,E\200-F\200." - "G\201.H\202/I\2030I\2041J\2051K\2062L\2073M\2104M\2114N\2125O\2136P\2146" - "Q\2157Q\2158R\2179S\2179T\220:T\221;U\222;V\223<W\224=X\225>X\226?Y\227?" - "Z\230@[\231A\\\232A\\\233B]\234C^\235C_\236\204\22)]\1\22*_\215\23,b\40\23" - "+a\22)]\23*^\23+_\24+`\25,a\26-b\26.c\27.d\30/e\30""0f\31""1f\32""2g\33""2" - "h\33""3i\33""4j\34""5k\34""6l\35""6m\36""7n\37""8o\37""9p\40""9q!:r\";s\"" - "<t#=t$=u%>v%?w&@x'Ay\202(B{&)C|*D}*D~+E\177,E\200-F\200-G\201.G\202/H\203" - "/I\2030J\2041K\2052K\2062L\2073M\2104N\2115N\2125O\2136P\2147Q\2157R\216" - "8R\2179S\220:T\221:U\222;V\223<V\223=W\224=X\225>Y\226?Y\227?Z\230@[\231" - "A\\\232B]\233B]\234C^\235D_\236\205\22)]\1\22*_\215\23,b\37\23+a\23*_\24" - "+_\24,`\25,a\26-b\27.c\27/d\30/e\31""0f\31""1g\32""2h\33""3i\33""3j\33""4" - "k\34""5k\35""6l\36""7m\36""7n\37""8o\40""9p\40:q!;r\";s#<t#=u$>v%>w&?x&@" - "y'Az\202(B{&)C|*D}+E~+E\177,E\200-F\200.G\201.H\202/H\2030I\2040J\2051K\206" - "2L\2073L\2103M\2114N\2125O\2136P\2136P\2147Q\2168R\2168S\2179S\220:T\221" - ";U\222;V\223<W\224=W\225>X\226>Y\227?Z\230@[\231@[\232A\\\232B]\233C^\234" - "C^\235D_\236\206\22)]\1\22*_\214\23,bG\23,c\24,b\24+`\25,`\25-a\26-b\27." - "c\30/d\30""0e\31""1f\32""1g\32""2h\33""3i\33""4j\34""4k\34""5l\35""6m\36" - """7n\37""8o\37""8p\40""9p!:q!;r\"<s#<t$=u$>v%?w&@x'@y'Az(B{)C|)C}*D~+E\177" - ",E\200,F\200-F\200.G\201/H\202/I\2030J\2041J\2051K\2062L\2073M\2104N\211" - "4N\2125O\2136P\2148S\216:V\2229T\2209S\2209T\220:U\221;U\222;V\223<W\224" - "=X\225>X\226>Y\227?Z\230@[\231A\\\232A\\\233B]\234C^\235D_\236D`\237\207" - "\22)]\1\22*^\213\23,bG\24-c\24.d\25-c\25,a\26-b\26.c\27.d\30/e\31""0f\31" - """1g\32""2g\33""2h\33""3i\33""4j\34""5k\35""6l\35""6m\36""7n\37""8o\40""9" - "p\40:q!:r\";s\"<t#=u$=v%>v%?w&@x'Ay(Az(B{)C|*D}*E~+E\177,E\200-F\200-G\201" - ".G\202/H\2030I\2040J\2051K\2062K\2062L\2073M\2104N\2115N\2125O\2138S\217" - ":V\222;W\223:V\2229S\220:T\221:U\222;V\223<V\224=W\225=X\225>Y\226?Y\227" - "@Z\230@[\231A\\\232B]\233B]\234C^\235D_\236E`\237\210\22)]\2\22*^\23,a\211" - "\23,b\20\24-c\25.d\25/e\26/e\26-b\27.c\27/d\30""0e\31""0f\32""1g\32""2h\33" - """3i\33""4j\33""4k\34""5l\35""6l\202\36""7n$\37""8o\40""9p!:q!;r\";s#<t#" - "=u$>v%?w&?x&@y'Az(B{(B|)C}*D}+E~+E\177,E\200-F\200.G\201.H\202/I\2030I\204" - "1J\2051K\2062L\2073L\2103M\2114N\2125O\2138S\2179U\221:V\222;W\223;X\224" - "\202:T\221\17;U\222;V\223<W\224=W\225>X\226>Y\227?Z\230@[\231A[\232A\\\233" - "B]\233C^\234C_\235D_\236E`\237\211\22)]\2\22)^\23+a\207\23,bH\23-c\24-d\25" - ".e\26/f\26""0f\27""0f\27.d\30/d\30""0e\31""1f\32""1g\32""2h\33""3i\33""4" - "j\34""5k\34""5l\35""6m\36""7n\37""8o\37""9p\40""9q!:r!;r\"<s#<t$=u$>v%?w" - "&@x'@y'Az(B{)C|)D}*D~+E\177,E\200,F\200-G\201.G\201/H\202/I\2030J\2041J\205" - "1K\2062L\2073M\2104N\2114O\2127S\2179U\221:V\222:W\223;W\224<X\225;W\223" - ":U\222;U\222<V\223<W\224=X\225>Y\226?Y\227?Z\230@[\231A\\\232A\\\233B]\234" - "C^\235D_\236D`\237E`\240\213\22)]\1\23+a\206\23,bH\24-c\24.d\25.e\26/f\27" - """0g\27""1h\30""1g\30/e\31""0f\31""1g\32""2h\33""3h\33""3i\33""4j\34""5k" - "\35""6l\35""6m\36""7n\37""8o\40""9p\40:q!:r\";s\"<t#=u$>v%>w%?w&@x'Ay(Az" - "(B{)C|*D}+E~+E\177,E\200-F\200-G\201.H\202/H\2030I\2040J\2051K\2062K\207" - "3L\2103M\2104N\2117R\2168T\2209U\221:V\222;W\223;X\224<X\225=Y\226;U\222" - ";V\223<W\224=W\225=X\226>Y\227?Z\227@Z\230@[\231A\\\232B]\233B^\234C^\235" - "D_\236E`\237Ea\240\214\22)]\1\23+a\204\23,bI\23,c\24-c\25.d\25/e\26""0f\27" - """0g\30""1h\30""2i\31""2h\31""0f\32""1g\32""2h\33""3i\33""4j\34""4k\34""5" - "l\35""6m\36""7n\36""8o\37""8o\40""9p!:q!;r\";s#<t$=u$>v%?w&?x&@y'Az(B{)C" - "|)C}*D}+E~+E\177,E\200-F\200.G\201.H\202/I\2030I\2041J\2051K\2062L\2073M" - "\2103M\2116Q\2148T\2209U\2219U\222:V\222;W\224<X\224<Y\225=Y\226<W\224;V" - "\223<W\224=X\225>X\226>Y\227?Z\230@[\231A\\\232A\\\233B]\234C^\235C_\236" - "D_\236E`\237Ea\240\215\22)]\1\23+`\203\23,bI\24-c\24-d\25.e\26/f\26""0g\27" - """1h\30""1i\31""2j\31""3j\32""3i\32""2g\33""2h\33""3i\33""4j\34""5k\34""6" - "l\35""6m\36""7n\37""8o\37""9p\40""9q!:r\";s\"<t#=t$=u$>v%?w&@x'@y'Az(B{)" - "C|*D}*D~+E\177,E\200,F\200-F\201.G\202/H\202/I\2030J\2051J\2052K\2062L\207" - "3M\2105O\2127S\2178T\2209U\221:V\222:W\223;W\224<X\225=Y\226=Z\227>Z\227" - "<V\223=W\224=X\225>Y\226?Y\227?Z\230@[\231A\\\232B]\233B]\234C^\235D_\236" - "D`\237E`\240Ea\241\216\22)]\1\22+`\202\23,bI\24-c\25.d\25.e\26/f\27""0g\27" - """1h\30""2i\31""2j\32""3k\32""4l\33""4k\33""3i\33""3j\33""4k\34""5k\35""6" - "l\35""7m\36""7n\37""8o\40""9p\40:q!:r\";s#<t#=u$>v%>w%?x&@y'Ay(Bz(B{)C|*" - "D}+E~+E\177,E\200-F\200.G\201.H\202/H\2030I\2040J\2051K\2062L\2073L\2103" - "M\2117R\2168T\2178U\2209U\221:V\222;W\223;X\224<X\225=Y\226>Z\227>[\230=" - "X\225=W\225=X\226>Y\227?Z\230@Z\231@[\231A\\\232B]\233C^\234C^\235D_\236" - "E`\237Ea\240Eb\241\217\22)]K\22*_\23,c\24-d\25.e\26/e\26""0f\27""0g\30""1" - "h\30""2i\31""3j\32""4k\33""4l\33""5m\34""5l\33""4j\34""4k\34""5l\35""6m\36" - """7n\37""8o\37""9p\40""9p!:q!;r\"<s#<t$=u$>v%?w&?x&@y'Az(B{)C|)C}*D~+E\177" - ",E\200,F\200-F\200.G\201.H\202/I\2030J\2041J\2051K\2062L\2073M\2105P\214" - "7S\2178T\2209U\2219V\222:V\223;W\224<X\224<Y\225=Z\226>Z\227?[\230>[\230" - "=X\225>X\226>Y\227?Z\230@[\231A\\\232A\\\233B]\234C^\235D_\236D`\237E`\240" - "Ea\240Eb\241\220\22)]<\23+`\24-d\25.e\26/f\27""0g\27""1h\30""2i\31""2j\31" - """3k\32""4k\33""5l\34""5m\35""6n\35""6m\34""5k\35""6l\35""6m\36""7n\37""8" - "o\40""9p\40:q!:r\";s\"<t#=u$=v%>v%?w&@x'Ay'Az(B{)C|*D}*D~+E\177,E\200-F\200" - "-G\201.G\202/H\2030I\2040J\2041K\2052K\2062L\2074N\2117S\2168S\2178T\220" - "9U\221:V\222;W\223;W\224<X\225=Y\226=Z\227>[\230?[\231?\\\231\202>Y\226\14" - "?Z\227?Z\230@[\231A\\\232B]\233B]\234C^\235D_\236E`\237Ea\240Ea\241Fb\242" - "\220\22)]\36\23*^\24,a\25/e\26/f\27""0g\30""1h\30""2i\31""3j\32""3k\33""4" - "l\33""5m\34""6n\36""6o\36""7p\36""7n\35""6l\36""7m\36""7n\37""8o\40""9p\40" - ":q!;r\";s#<t#=u$>v%?w&?x&@y'Az\202(B{\21)C|*D}+E~+E\177,E\200-F\200.G\201" - ".H\202/I\2030I\2040J\2051K\2062L\2073L\2106Q\2147S\2178T\217\2029U\221\27" - ":V\222;W\223;X\224<Y\225=Y\226>Z\227>[\230?\\\231@\\\232?[\231>Y\227?Z\230" - "@[\231A[\232A\\\232B]\233C^\234C_\235D_\236E`\237Ea\240Eb\241Fc\242\217\22" - ")]K\22*^\23*_\24+`\25-b\26/f\27""0g\30""1h\31""2i\31""3j\32""4k\33""5l\34" - """5m\35""6n\36""7o\37""8p\37""8q\37""8o\36""7n\37""8o\37""8p\40""9q!:q!;" - "r\"<s#<t$=u$>v%?w&@x'@y'Az(B{)C|)C}*D~+E\177,E\200,F\200-F\200.G\201/H\202" - "/I\2030J\2041J\2052K\2062L\2074N\2117S\2167S\2178T\2209U\221:V\222:V\223" - ";W\224<X\225<Y\226=Z\226>Z\227?[\230?\\\231@]\232A]\233?Z\227?Z\230@[\231" - "A\\\232A\\\233B]\234C^\235D_\236D`\237E`\240Ea\241Fb\241Fc\242\217\22)]K" - "\23*^\23+_\24+`\25,a\26-c\27""0g\30""2i\31""2j\32""3k\32""4l\33""5m\34""5" - "m\35""6n\36""7o\37""8p\40""9q\40:r\40""9q\37""8o\40""9p\40:q!:r\";s\"<t#" - "=u$=v%>w%?x&@x'Ay(Az(B{)C|*D}*E~+E\177,E\200-F\200-G\201.H\202/H\2030I\204" - "0J\2051K\2062K\2062L\2075Q\2147S\2168T\2178T\2209U\221:V\222;W\223;X\224" - "<X\225=Y\226=Z\227>[\230?[\231@\\\232@]\232A^\234@\\\232@Z\230@[\231A\\\232" - "B]\233B^\234C^\235D_\236E`\237Ea\240Ea\241Fb\242Gc\243\217\22)]1\23*^\24" - "+_\25,`\25,a\26-b\27.d\30""1h\31""3j\32""3k\33""4l\33""5m\34""6n\36""7o\36" - """7p\37""8q\40""9q!:s!;s\40:r\40""9p!:q!;r\";s#<t#=u$>v%?w&?x&@y'Az(B{)C" - "|)C}*D~+E~+E\177,E\200-F\200.G\201.H\202/I\2030I\2041J\2051K\2062L\2074N" - "\2116R\2167S\2178T\220\2029U\221\30:V\222;W\223;X\224<Y\225=Y\226>Z\227>" - "[\230?\\\231@]\232A]\233A^\234B^\234@[\231A[\232A\\\233B]\234C^\234C_\235" - "D_\236E`\237Ea\240Eb\241Fc\242Gc\243\216\22)]L\23*^\23*_\24+`\25,a\25-b\26" - ".b\27.d\30/e\31""2i\32""4k\33""4l\34""5m\35""6n\36""7o\37""8p\37""8q\40""9" - "r!:s\";t\"<u!;s!:r\";s\"<t#=t$=u%>v%?w&@x'@y'Az(B{)C|*D}*D~+E\177,E\200," - "F\200-G\201.G\202/H\202/I\2030J\2041J\2052K\2062L\2075Q\2147S\2167S\2178" - "T\2209U\221:V\222:V\223;W\224<X\225=Y\226=Z\227>Z\227?[\230?\\\231@]\232" - "A^\233B^\234B_\235A]\233A\\\232B]\233B]\234C^\235D_\236D`\237E`\240Ea\241" - "Fb\242Fc\242Gd\243\216\22)]L\23*^\24+_\24+`\25,a\26-b\26.c\27/d\30/e\31""0" - "f\32""3j\33""5m\34""6n\36""6n\36""7o\37""8p\40""9q\40:r!:s\";t#<u#=v\"<t" - "\";s#<t#=u$>v%>w%?x&@y'Ay(Bz(B{)C|*D}+E~+E\177,E\200-F\200-G\201.H\202/H" - "\2030I\2040J\2051K\2062L\2073M\2116R\2167S\2168T\2178T\2209U\221:V\222;W" - "\223;X\224<X\225=Y\226>Z\227>[\230?\\\231@\\\232@]\233A^\234B_\235C_\236" - "C_\235A\\\232B]\233C^\234C^\235D_\236E`\237Ea\240Eb\241Fb\242Gc\243Gd\244" - "\215\22)]B\22)^\23*_\24+_\25,`\25-a\26-b\27.c\27/d\30""0e\31""1f\32""1g\33" - """4k\35""6n\36""7o\37""7p\37""8q\40""9r!:s!;t\";t#<u$=v$>w$=v#<t$=u$>v%?" - "w&?x&@y'Az(B{)C|)C}*D~+E\177,E\177,F\200-F\200.G\201.H\202/I\2030I\2041J" - "\2051K\2062L\2075P\2136R\2167S\2178T\2209U\2219V\222:V\223;W\224;X\224<Y" - "\225=Y\226>Z\227>[\230?\\\231@]\232A]\233A^\234B_\235C`\236Da\237\202B]\234" - "\11C^\235C_\235D_\236E`\237Ea\240Eb\241Fc\242Gc\243Hd\244\215\22)]M\23*^" - "\23*_\24+`\25,a\26-b\26.c\27.c\30/e\30""0e\31""1f\32""2g\33""2h\34""5l\36" - """7o\37""8p\40""9q\40""9r!:s\";t\"<u#<v$=w%>x%?y%?x$>v%>v%?w&@x'Ay'Az(B{" - ")C|*D}*D~+E\177,E\200-F\200-G\201.G\202/H\203/I\2040J\2041K\2052K\2062L\207" - "5Q\2147S\2168S\2178T\2209U\221:V\222:W\223;W\224<X\225=Y\226=Z\227>[\230" - "?[\230@\\\231@]\233A^\233B_\234B_\235C`\236Da\237C`\236B]\234C^\235D_\236" - "E`\237Ea\240Ea\241Fb\242Fc\243Gd\243Hd\245\215\22)]\30\23*^\24+_\24+`\25" - ",a\26-b\27.c\27/d\30/e\31""0f\31""1g\32""2h\33""3i\33""3j\35""5m\37""8p\40" - """9q\40:r!:s\";t#<u#=v$=w%>x&?y\202&@z)%?w%?x&@y'Az(Bz(B{)C|*D}+E~+E\177" - ",E\200-F\200.G\201.H\202/H\2030I\2040J\2051K\2062L\2073L\2104N\2127S\217" - "8T\2179U\2209U\221:V\222;W\223;X\224<X\225=Y\226>Z\227>[\230?\\\231@\\\232" - "A]\233A^\234B_\235C`\236C`\237Da\237Eb\240\202C^\235\10D_\236E`\237Ea\240" - "Eb\241Fb\242Gc\243Gd\244He\245\214\22)]N\22*^\23*_\24+`\25,a\25-a\26-b\27" - ".c\30/d\30""0e\31""1f\32""1g\32""2h\33""3i\33""4j\34""4k\35""6n\40""9r!:" - "s\";t\";u#<v$=v$>w%?x&?y'@z'A{(B|&@y'@y'Az(B{)C|)C}*D~+E\177,E\200,F\200" - "-F\200.G\201/H\202/I\2030J\2041J\2051K\2062L\2073M\2104M\2117R\2168T\220" - "9U\221:V\222:V\223;W\224<X\225<Y\225=Z\226>Z\227?[\230?\\\231@]\232A]\233" - "A^\234B_\235C`\236Da\237Da\240Eb\241Da\237D_\236D`\237E`\240Ea\240Eb\241" - "Fc\242Gc\243Hd\244He\245\214\22)]N\23*^\23*_\24+`\25,a\26-b\26.c\27/d\30" - "/e\30""0f\31""1g\32""2g\33""2h\33""3i\33""4j\34""5k\35""5l\36""7n!:s\";t" - "#<u#=v$=w%>x%?y&@z'@{(A|(B|)C}'Az(Az(B{)C|*D}*D~+E\177,E\200-F\200-G\201" - ".G\202/H\203/I\2040J\2051K\2062K\2062L\2073M\2104N\2116P\2148T\2209U\221" - ":V\222:W\223;W\224<X\225=Y\226=Z\227>[\230?[\231@\\\231@]\233A^\233B_\234" - "C_\235C`\236Da\237Eb\240Ec\241Fc\242D_\236E`\237Ea\240Ea\241Fb\242Fc\243" - "Gd\244He\245Ie\245\214\22)]N\23*^\24+_\24,`\25,a\26-b\27.c\27/d\30""0e\31" - """0f\32""1g\32""2h\33""3i\33""4j\33""4k\34""5l\35""6m\36""7m\37""8o\";t#" - "<u$=v$>w%>x&?y&@z'A{(B|)B}(B|'Az(B{(B|)C|*D}+E~+E\177,E\200-F\200.G\201." - "H\202/I\2030I\2041J\2051K\2062L\2073L\2103M\2114N\2125O\2128T\2179U\221:" - "V\222;W\223;X\224<Y\225=Y\226>Z\227>[\230?\\\231@]\232A]\233A^\234B_\235" - "C`\236C`\237Da\240Eb\240Fc\241Gd\242Fa\240E`\237Ea\240Eb\241Fb\242Gc\243" - "Hd\244He\245If\246\213\22)]\35\23*^\23*_\24+`\25,a\25-b\26.c\27.c\30/d\30" - """0e\31""1f\32""1g\32""2h\33""3i\33""4j\34""5k\34""5l\35""6m\36""7n\37""8" - "o\40""9p#<u$=w%>w%?x&?y'@z(A{(B|)B}\202'Az&(B{)C|)D}*D~+E\177,E\200,F\200" - "-G\200.G\201/H\203/I\2030J\2041J\2052K\2062L\2073M\2104N\2115N\2125O\213" - "7Q\215:V\222:V\223;W\224<X\225<Y\226=Z\226>Z\227?[\230?\\\231@]\232A^\233" - "B^\234B_\235C`\236Da\237Da\240Eb\241Fc\242\202Hd\243\10E`\240Ea\241Fb\241" - "Fc\242Gd\243Hd\244Ie\245If\246\213\22)]P\23*^\23+_\24+`\25,a\26-b\26.c\27" - "/d\30/e\31""0f\31""1g\32""2h\33""3h\33""3i\33""4j\34""5k\35""6l\35""6m\36" - """7n\37""8o\40""9p!:q#=v%>x&?y&@z'A{(A|(B|'@z'Ay(Az(B{)C|*D}+E~+E\177,E\200" - "-F\200-G\201.H\202/H\2030I\2040J\2051K\2062K\2072L\2073M\2104N\2115O\212" - "5O\2136P\2149T\221;W\223;X\224<X\225=Y\226=Z\227>[\230?\\\231@\\\232@]\233" - "A^\234B_\235C_\235C`\236Da\237Eb\240Fc\241Gc\242Hd\243Ie\244Fb\241Eb\241" - "Fb\242Gc\243Gd\244He\245Ie\246Jf\246\22+`\211\22)]\34\22)^\23*_\24+_\25," - "`\25-a\26-b\27.c\27/d\30""0e\31""0f\32""1g\32""2h\33""3i\33""4j\34""4k\34" - """5l\35""6m\36""7m\36""8n\37""8o\40""9p!:q!;s$>w&?y'@z'A{(A|\202&@y2'Az(" - "B{)C|)C}*D~+E\177,E\177,E\200-F\200.G\201.H\202/I\2030I\2041J\2051K\2062" - "L\2073M\2103M\2114N\2125O\2136P\2146P\2157R\216;W\223<X\224<Y\225=Y\226>" - "Z\227>[\230?\\\231@]\232A]\233A^\234B_\235C`\236D`\237Da\240Eb\241Fc\241" - "Gd\242Hd\243Ie\244Hd\244Eb\241Fc\242Gc\243Hd\244He\245If\246Jf\247\202\23" - ",b\1\22*_\207\22)]\31\23*^\23*_\24+`\25,a\26-b\26.c\27.d\30/d\30""0e\31""1" - "f\32""2g\33""2h\33""3i\33""4j\34""5k\34""5l\35""6m\36""7n\37""8o\37""9p\40" - """9q!:r\";s\"<t%>x\202'@z5&?x&@x'@y'Az(B{)C|*D}*D~+E\177,E\200-F\200-G\201" - ".G\202/H\203/I\2030J\2051K\2052K\2062L\2073M\2104N\2115N\2125O\2136P\214" - "7Q\2157R\2169U\221<X\225=Y\226=Z\227>[\230?[\231?\\\231@]\232A^\233B^\234" - "B_\235C`\236Da\237Eb\240Eb\241Fc\242Hd\243Ie\244Ie\245Jf\246Fc\242Fc\243" - "Gd\243Hd\244Ie\245If\246Jg\247\203\23,b\2\23,a\22*_\205\22)]\13\23*^\24+" - "_\24,`\25,a\26-b\27.c\27/d\30/e\31""0f\31""1g\32""2h\202\33""3i\14\33""4" - "j\34""5k\35""6l\36""7m\36""7n\37""8o\40""9p\40:q!:r\";s#<t#=u\202%>w$%?x" - "&@y'Az(Bz(B{)C|*D}+E~+E\177,E\200-F\200-G\201.H\202/H\2030I\2040J\2051K\206" - "2L\2073L\2103M\2114N\2115O\2125P\2136P\2147Q\2158R\2168S\217<W\224=Y\226" - ">Z\227>[\230?\\\231@\\\232@]\233A^\234B_\235\202C`\236\17Da\237Eb\240Fc\241" - "Gc\242Hd\243Ie\244If\245Jg\246Ie\245Gc\243Gd\244He\245Ie\246Jf\247Jg\250" - "\205\23,b\2\23+a\22*^\202\22)]Q\22)^\23*_\24+`\25,`\25-a\26-b\27.c\30/d\30" - """0e\31""1f\32""1g\32""2h\33""3i\33""4j\34""4k\34""5l\35""6m\36""7n\36""8" - "o\37""8p\40""9p!:q!;r\"<s#<t$=u$>v%?w&@x&@y'Az(B{)C|)D}*D~+E\177,E\200,F" - "\200-F\200.G\201/H\202/I\2030I\2041J\2051K\2062L\2073M\2104M\2114N\2125O" - "\2136P\2147Q\2157Q\2168R\2179S\217:U\221=Y\226>Z\227?[\230?\\\231@]\232A" - "]\233A^\234B_\235C`\236Da\237Da\240Eb\241Fc\242Gd\242Hd\243Ie\244Jf\245J" - "g\246Kg\247Gd\243Hd\244He\245If\246Jg\247Kg\250\207\23,bS\23+a\22*^\23*^" - "\23+_\24+`\25,a\26-b\26.c\27.d\30/e\31""0f\31""1f\32""2g\33""2h\33""3i\33" - """4j\34""5k\35""6l\35""6m\36""7n\37""8o\37""9p\40""9q!:r\";s\"<t#=u$=v%>" - "v%?w&@x'Ay(Az(B{)C|*D}*E~+E\177,E\200,F\200-G\201.G\202/H\203/I\2030J\205" - "1K\2062K\2062L\2073M\2104N\2114O\2125O\2136P\2147Q\2157R\2168R\2179S\220" - ":T\221<W\224>[\230?[\231@\\\231@]\232A^\233B_\234C_\235C`\236Da\237Eb\240" - "Eb\241Gc\242Hd\243Ie\244If\245Jf\246Kg\247Kh\250If\246Hd\245Ie\245If\246" - "Jg\247Kh\250\211\23,b1\24,b\24+`\24,`\25,a\26-b\27.c\27/d\30""0e\31""0f\31" - """1g\32""2h\33""3i\33""3j\33""4k\34""5l\35""6l\36""7m\36""7n\37""8o\40""9" - "p\40:q!;r\";s#<t#=u$>v%>w&?x&@y'Az(B{(B|)C}*D}+E~+E\177,E\200-F\200-G\201" - ".H\202/I\2030I\2040J\2051K\2062L\2073L\2103M\2114N\2125O\213\2026P\214\27" - """7Q\2158R\2168S\2179S\220:T\221;U\222=Z\227?\\\231@\\\232A]\233A^\234B_" - "\235C`\236C`\237Da\237Eb\240Fc\241Gd\242Hd\243Ie\244Jf\245Jg\246Kg\247\202" - "Lh\250\5He\245If\246Jf\247Jg\250Kh\251\210\23,bR\23-c\24-d\25.e\25.c\25-" - "b\26.b\27.c\30/d\30""0e\31""1f\32""1g\32""2h\33""3i\33""4j\34""5k\34""5l" - "\35""6m\36""7n\37""8o\37""8p\40""9q!:r!;r\"<s#<t$=u$>v%?w&@x&@y'Az(B{)C|" - ")C}*D~+E\177,E\200,F\200-F\200.G\201/H\202/I\2030J\2041J\2051K\2063N\211" - "3M\2104M\2114N\2125O\2136P\2147Q\2157Q\2168R\2179S\2209T\220:U\221;U\222" - "<W\224?[\231@]\232A^\233B^\234B_\235C`\236Da\237Da\240Eb\241Fc\242Hd\243" - "He\244Ie\245Jf\246Kg\246Kh\247Li\250Mi\251Jf\246If\246Jg\247Kg\250Kh\251" - "\210\23,bR\24-c\24.d\25.e\26/f\27""0g\27/e\27/d\30/e\31""0f\31""1g\32""2" - "h\33""2h\33""3i\33""4j\34""5k\35""6l\35""6m\36""7n\37""8o\40""9p\40:q!:r" - "\";s\"<t#=u$=v%>w%?w&@x'Ay(Az(B{)C|*D}*E~+E\177,E\200-F\200-G\201.G\202/" - "H\203/I\2040J\2051K\2063N\2115Q\2145P\2134N\2115O\2125O\2136P\2147Q\2157" - "R\2168S\2179S\220:T\221:U\222;V\223<V\224=X\226@]\232A^\233B_\235C_\235C" - "`\236Da\237Eb\240Ec\241Gc\242Hd\243Ie\244If\245Jf\246Kg\247Lh\250Li\251M" - "j\252Li\251If\246Jg\247Kh\250Li\251\210\23,b\5\24-c\25.d\25/e\26/f\27""0" - "g\202\30""1h*\30""1g\31""0f\32""1g\32""2h\33""3i\33""4j\33""4k\34""5l\35" - """6l\36""7m\36""8n\37""8o\40""9p!:q!;r\";s#<t#=u$>v%?w&?x&@y'Az(B{)C|)C}" - "*D}+E~+E\177,E\200-F\200.G\201.H\202/I\2030I\2040J\2052L\2075Q\2146R\215" - "6R\2166R\2155O\213\2026P\214\37""7Q\2158R\2169S\2179T\220:T\221;U\222;V\223" - "<W\224=W\225?Z\230A^\234B_\235C`\236Da\237Da\240Eb\241Fc\241Gd\243Hd\243" - "Ie\244Jf\245Jg\246Kh\247Lh\250Mi\251Mj\252Nk\253Kg\247Kg\250Kh\251Li\252" - "\207\23,b2\24-c\24-d\25.e\26/f\26""0g\27""1h\30""1i\31""2i\31""3j\32""3j" - "\32""2i\33""2h\33""3i\33""4j\34""5k\34""5l\35""6m\36""7n\37""8o\37""9p\40" - """9q!:r!;s\"<t#=t$=u$>v%?w&@x'@y'Az(B{)C|*D}*D~+E\177,E\200,F\200-G\201." - "G\202/H\202/I\2030J\2041J\2054O\2125Q\2146R\2157S\2168S\2178T\217\2027Q\215" - "\37""7Q\2168R\2179S\220:T\221:U\222;V\222<V\223<W\224=X\225>Y\226@\\\232" - "B_\235C`\236Da\237Eb\240Eb\241Fc\242Hd\243He\244Ie\245Jf\246Kg\247Kh\247" - "Li\250Mi\251Mj\252Nk\253Mj\252Kh\250Kh\251Li\252\207\23,b\14\24-c\25.d\25" - "/e\26/f\27""0g\27""1h\30""2i\31""2j\32""3k\32""4l\33""5m\34""5l\202\33""4" - "jE\34""5k\35""6l\35""6m\36""7n\37""8o\40""9p\40:q!:r\";s#<t#=u$>v%>w&?x&" - "@y'Ay(Bz(B{)C|*D}+E~+E\177,E\200-F\200-G\201.H\202/H\2030I\2040J\2053N\210" - "5Q\2145Q\2156R\2167S\2168T\2178T\2209U\2218S\2178R\2168S\2179S\220:T\221" - ";U\222;V\223<V\224=W\225=X\226>Y\227?Z\230A]\233C`\236Da\237Eb\240Fc\241" - "Gc\242Hd\243Ie\244If\245Jf\246Kg\247Lh\250Li\251Mj\252Nk\253Nk\254Ol\254" - "Kh\251Li\251Li\252\206\23,b\16\23-c\24-c\25.d\25/e\26""0f\27""0g\30""1h\30" - """2i\31""3j\32""4k\33""4l\33""5m\35""6n\36""7o\202\34""5lD\35""6m\36""7n" - "\36""8o\37""8o\40""9p!:q!;r\"<s#<t$=u$>v%?w&?x&@y'Az(B{)C|)C}*D~+E\177,E" - "\177,E\200-F\200.G\201.H\202/I\2030I\2042L\2074P\2135Q\2146R\2157R\2167S" - "\2178T\2209U\2219V\222:V\223:U\2219S\2209T\220:U\221;U\222;V\223<W\224=X" - "\225>X\226>Y\227?Z\230@[\231B_\235Da\240Eb\241Fc\242Gd\243He\243Ie\244Jf" - "\245Jg\246Kh\247Lh\250Mi\251Mj\252Nk\253Ol\254Ol\255Mj\253Li\252Mj\253\206" - "\23,b\13\24-c\24.d\25.e\26/f\27""0g\27""1h\30""1h\31""2i\31""3j\32""4k\33" - """5l\202\34""5l(\33""4k\34""5k\35""6l\35""6m\36""7n\37""8o\37""9p\40""9q" - "!:r\";s\"<t#=u$=v%>v%?w&@x'@y'Az(B{)C|*D}*D~+E\177,E\200-F\200-G\201.G\202" - "/H\2030I\2030J\2054O\2125P\2135Q\2146R\2157S\2168T\2178T\2209U\221:V\222" - ":W\223\202;W\224\31:U\221:U\222;V\223<V\223<W\225=X\225>Y\226?Y\227?Z\230" - "@[\231A\\\232C`\236Eb\241Fc\242Hd\243Ie\244If\245Jf\246Kg\247Kh\250Li\250" - "Mj\251Nj\252Nk\253Ol\254\202Pm\255\2Li\252Mj\253\206\23,b\13\24-c\25.d\25" - "/e\26/f\27""0g\30""1h\30""2i\31""2j\32""3k\32""3j\32""3i\202\33""3i+\33""4" - "k\34""5k\35""6l\36""7m\36""7n\37""8o\40""9p\40:q!:r\";s#<t#=u$>v%?w&?x&@" - "y'Az(Bz(B{)C|*D}+E~+E\177,E\200-F\200.G\201.H\202/H\2030I\2043N\2114P\213" - "5Q\2146Q\2156R\2167S\2178T\2179U\2209U\221:V\222;W\223;X\224<Y\225=Y\225" - "\202;V\223\5<W\224=W\225>X\226>Y\227?Z\230\202@[\231\23A\\\232B]\233D`\237" - "Gd\242Hd\243Ie\244Jf\245Jg\246Kg\247Lh\250Li\251Mj\252Nk\253Ok\254Ol\255" - "Pm\256Qn\257Nk\254Mj\253\205\23,b\6\23,c\24-d\25.e\26/f\26""0f\27""0g\202" - "\30""1hM\31""1g\31""1f\32""1g\32""2h\33""3i\33""4j\34""5k\34""5l\35""6m\36" - """7n\36""8o\37""8p\40""9q!:q!;r\"<s#<t$=u$>v%?w&@x&@y'Az(B{)C|)D}*D~+E\177" - ",E\200,F\200-F\200.G\201.H\202/I\2030I\2043N\2114P\2135Q\2146R\2157R\216" - "7S\2178T\2209U\221:V\222:V\223;W\224<X\224<Y\225=Z\226>Z\227=X\226<W\224" - "=X\225>X\226>Y\227?Z\230@[\231A\\\232A\\\233B]\234C^\235E`\237Hd\243Ie\245" - "Jf\245Kg\246Kh\247Lh\250Mi\251Mj\252Nk\253Ol\254Pl\255Pm\256Qn\257Pm\256" - "Mj\253\205\23,bU\24-c\24.d\25.e\26/f\27""0g\27""0f\27/e\30/e\31""0f\31""1" - "f\32""2h\33""2h\33""3i\33""4j\34""5k\35""6l\35""6m\36""7n\37""8o\40""9p\40" - ":q!:r\";s\"<t#=u$=v%>v%?x&@x'Ay(Az(B{)C|*D}*E~+E\177,E\200-F\200-G\201.G" - "\202/H\2030I\2040J\2051K\2064P\2135Q\2146R\2157S\2168T\2178T\2209U\221:V" - "\222:W\223;W\224<X\225=Y\226=Z\227>[\230?[\231?[\230>X\226>Y\226?Z\227@Z" - "\230@[\231A\\\232B]\233B^\234C^\235D_\236E`\237Gc\243Jf\246Kg\247Lh\250L" - "i\251Mj\252Nj\252Nk\254Ol\254Pm\255Qn\256Qn\257Ro\260Nk\254\205\23,b1\24" - "-c\25.d\25/e\26.e\26.c\27.c\27/d\30""0e\31""0f\32""1g\32""2h\33""3i\33""3" - "j\33""4k\34""5k\35""6m\36""7m\36""8n\37""8o\40""9p\40:q!;r\";s#<t#=u$>v%" - "?w&?x&@y'Az(B{)B|)C}*D}+E~+E\177,E\200-F\200.G\201.H\202/I\2030I\2041J\205" - "1K\2062L\2075P\2146R\2167S\2178T\220\2029U\221\37:V\222;W\223<X\224<Y\225" - "=Y\226>Z\227>[\230?\\\231@\\\232@]\232?[\230?Z\230@[\231A[\232A\\\233B]\233" - "C^\234C_\235D_\236E`\237Ea\240Fb\242Ie\245Lh\250Mi\251Mj\252Nk\253Ok\254" - "Ol\255Pm\256Qn\257\202Ro\260\1Ol\255\204\23,b\3\24-c\24-d\25.d\202\25-b9" - "\26.b\27.c\30/d\30""0e\31""1f\32""1g\33""2h\33""3i\33""4j\34""5k\34""5l\35" - """6m\36""7n\37""8o\37""9p\40""9q!:r\";r\"<s#<t$=u$>v%?w&@x'@y'Az(B{)C|)D" - "}*D~+E\177,E\200,F\200-F\201.G\201/H\202/I\2030J\2041J\2052K\2062L\2073M" - "\2105P\2147S\2178T\2209U\221:V\222:V\223;W\224<X\225<Y\225=Z\227>Z\227?[" - "\230?\\\231@]\232A^\233\202B^\234\202A\\\232\21B]\233B]\234C^\235D_\236D" - "`\237E`\240Ea\241Fb\241Fc\242Gd\244Jf\247Li\251Nk\253Ol\254Pl\255Pm\256Q" - "n\257\202Ro\260\1Qn\257\204\23,b\33\24-c\24,b\24+`\25,a\26-b\26.c\27/d\30" - "/e\31""0f\31""1g\32""2h\33""3i\33""3j\33""4j\34""5k\35""6l\35""6m\36""7n" - "\37""8o\40""9p\40:q!:r\";s#<t#=u%>w&@y\202(A{#'Az(Az(B{)C|*D}*E~+E\177,E" - "\200-F\200-G\201.H\202/H\2030I\2040J\2051K\2062K\2072L\2073M\2104N\2115P" - "\2138S\2179U\221:V\222;W\223;X\224<X\225=Y\226=Z\227>[\230?[\231@\\\232@" - "]\233A^\234B_\234C_\235\202C`\236\202C^\234\17C^\235D_\236E`\237Ea\240Ea" - "\241Fb\242Gc\243Gd\244He\245Ie\246Jg\247Li\252Ol\254Qm\256Qn\257\203Ro\260" - "\204\23,b\36\23+`\24+_\25,`\25-a\26-b\27.c\27/d\30""0e\31""0f\32""1g\32""2" - "h\33""3i\33""4j\33""4k\34""5l\35""6m\36""7n\36""8n\37""8o\40""9p!:q!;s#<" - "u%>w&@z'A{(B|)B})C~*C~\202)C|4)C}*D~+E~+E\177,F\200-F\200.G\201.H\202/I\203" - "0I\2041J\2051K\2062L\2073M\2103M\2114N\2125O\2136P\2148S\217:V\222;W\223" - "<X\224<Y\225=Y\226>Z\227>[\230?\\\231@]\232A]\233A^\234B_\235C`\236Da\237" - "Da\240Eb\241Eb\240D`\237D_\236E`\237Ea\240Eb\241Fc\242Gc\243Hd\244He\245" - "If\246Jf\247Jg\250Kh\251Li\252Nl\254Pm\256\202Ro\260\202\23,bF\23,a\23*_" - "\23+_\24+`\25,a\26-b\26.c\27.c\30/e\30""0e\31""1f\32""2g\33""2h\33""3i\33" - """4j\34""5k\35""5l\35""6m\36""7n\37""8o\40""9p!;s#<u%>w%?y&@y'@z'A{(B|)C" - "}*D~*D\177+E\200+E\177*D}*D~+E\177,E\200-F\200-G\201.G\202/H\203/I\2030J" - "\2041J\2052K\2062L\2073M\2104N\2115N\2125O\2136P\2147Q\2158R\217:V\222<X" - "\225=Y\226=Z\227>Z\230?[\230?\\\231@]\232A^\233B^\234B_\235C`\236Da\237E" - "b\240Eb\241Fc\242\202Hd\243\14Fb\241Ea\241Fb\242Fc\243Gd\243Hd\244Ie\245" - "If\246Jg\247Kh\250Kh\251Li\252\203Mj\253WNk\254\23,b\23+a\22)^\23*^\24+_" - "\24,`\25,a\26-b\27.c\27/d\30""0e\31""0f\31""1g\32""2h\33""3i\33""3j\33""4" - "j\34""5k\35""6l\36""7n\37""8p!:s#<u#=v$=w%>x&?y&@z'A{(A|(B})C~*D\177+E\177" - "+E\200,G\200-H\201,F\200+E\177,E\200-F\200.G\201.H\202/H\2030I\2040J\205" - "1K\2062L\2073L\2103M\2104N\2125O\2125P\2136P\2147Q\2158R\2168S\217:U\222" - "=Y\226=Z\227>[\230?\\\231@\\\232@]\233A^\234B_\235C_\236C`\236Da\237Eb\240" - "Ec\241Gc\242Hd\243Ie\244Jf\245If\245He\244Gd\243Gd\244He\245If\246Jf\247" - "Jg\250Kh\250Li\251Mi\253\204Mj\253'\23+a\22)]\22)^\23*_\24+`\25,`\25-a\26" - "-b\27.c\27/d\30""0e\31""1f\32""1g\32""2h\33""3i\33""4j\34""5k\35""6n\37""8" - "p!:s!;t\";u#<u$=v$>w%?x&?y'@z'A{(B|)B}*C~*D\177+E\200,F\200,G\201-H\202." - "I\203.I\202\202-F\200,.G\201/H\202/I\2030J\2041J\2051K\2062L\2073M\2104M" - "\2114N\2125O\2136P\2147Q\2157Q\2168R\2179S\2179T\220:U\222=Y\226>[\230?\\" - "\231@]\232A]\233A^\234B_\235C`\236Da\237Da\240Eb\241Fc\242Gd\243He\244Ie" - "\245Jf\245Jg\246Kh\247Lh\250Kg\247Jg\247If\246Jg\247Kg\250Kh\251Li\252\205" - "Mj\253\202\22)]Q\23*^\23+_\24+`\25,a\26-b\26.c\27/d\30/e\30""0e\31""1f\32" - """2g\33""2i\34""4k\35""6n\37""8p\40""9q\40""9r!:s\";t#<u#=v$=w%>x%?y&@z'" - "@{(A{(B|)C}*D~*D\177+E\200,F\200-H\201-H\202.I\203/J\204.H\202-G\201.G\202" - "/H\203/I\2040J\2051K\2062K\2062L\2073M\2104N\2115O\2125O\2136P\2147Q\215" - "7R\2168R\2179S\220:T\221:U\222;V\223=Y\226@\\\231@]\232A^\233B_\234C_\235" - "C`\236Da\237Eb\240Eb\241Fc\242Hd\243Ie\244If\245Jf\246Kg\247Kh\250Li\251" - "Mi\251Nj\252Nk\253Mj\253Mj\252\202Li\252\205Mj\253\202\22)]\36\23*^\24+_" - "\24,`\25,a\26-b\27.c\27/d\30""0e\31""0f\32""2h\33""4k\34""6m\36""6o\36""7" - "p\37""8p\40""9q!:r!:s\";t#<u#=v$>w%>x&?y&@z'A{(A|)B})C~*D\177\202+E\2001" - ",G\200-H\201.I\202.J\203/J\204.H\202.G\201.H\202/I\2030J\2041J\2051K\206" - "2L\2073L\2103M\2114N\2125O\2126P\2136P\2147Q\2158R\2168S\2179T\220:T\221" - ";U\222;V\223<W\224>Y\226@]\232A^\234B_\235C`\236C`\237Da\237Eb\240Fc\241" - "Gd\242Hd\243Ie\244Jf\245Jg\246Kg\247Lh\250Li\251Mj\252Nk\253Ok\254Ol\255" - "Pm\256\203Qn\2571Pm\256Ol\255Nk\254Mj\253\22)]\23*^\23*_\24+`\25,a\25-a\26" - ".b\27.c\30/e\31""1h\32""3k\33""4l\33""5m\35""6n\36""7o\37""8p\37""8q\40""9" - "r!:s\";t\";u#<v$=v$>w%?x&?y'@z'A{(B|)C}*C~*D\177+E\200,F\200,G\201-H\202" - ".I\203/J\204/K\205.I\203.G\201/H\202/I\2032N\2103N\211\2022L\207%3M\2104" - "M\2114N\2125O\2136P\2147Q\2157Q\2168R\2179S\2209T\221:U\221;U\222<V\223<" - "W\224=X\225>Y\227A]\233B_\235C`\236Da\237Da\240Eb\241Fc\242Hd\243He\244I" - "e\245Jf\245Kg\246Kh\247Lh\250Mi\251Mj\252Nk\253Ol\254Pl\255Pm\256Qn\257\206" - "Ro\260T\22)]\23*^\23+_\24+`\25,a\26-b\27.d\30""1g\31""2j\32""3k\32""4l\33" - """5l\34""5m\35""6n\36""7o\37""8p\40""9q\40""9r!:s\";t#<u#=v$=w%>x%?y&@z'" - "A{(A|(B|)C}*D~+D\177+E\200,F\200-H\201.I\202.I\203/J\2040K\205/I\203.G\202" - "/H\2030I\2043O\2114P\2135P\2134O\2123M\2114N\2115O\2125O\2136P\2147Q\215" - "8R\2168S\2179S\220:T\221:U\222;V\223<V\224=W\225=X\226>Y\226?Z\230A]\233" - "C`\236Da\237Eb\240Ec\241Gc\242Hd\243Ie\244If\245Jf\246Kg\247Kh\250Li\251" - "Mj\252Nj\253Nk\254Ol\255Pm\255Qn\256Qn\257\206Ro\260S\22)]\23*^\24+_\24," - "`\25-b\27/e\30""1h\30""2i\31""3j\32""3k\33""4l\33""5m\34""6n\36""7o\37""7" - "p\37""8q\40""9q!:r!;s\";t#<u$=v$>w%>x&?y&@z'A{(B|)B})C~*D\177+E\200,E\200" - ",G\201-H\202.I\203.J\203/J\2040K\205.H\203.H\202/I\2031K\2064O\2124P\213" - "5Q\2146R\2156R\2166Q\2145O\2136P\2146P\2157Q\2158R\2169S\2179T\220:T\221" - ";U\222;V\223<W\224=X\225>X\226>Y\227?Z\230@[\231A]\233Da\237Eb\241Fc\241" - "Gd\242Hd\243Ie\244Jf\245Jg\246Kh\247Lh\250Li\251Mj\252Nk\253Ok\254Ol\255" - "Pm\256Qn\257\207Ro\260S\23*^\23*_\24+`\25-b\26/f\27""0h\30""1i\31""2i\36" - """7m#9h3Gr-Am#:m\36""7o\37""8p\37""8q\40""9r!:s\";t\"<u#<v$=w%>x%?x&?z'@" - "z(A{(B|)C}*C~*D\177+E\200,F\200-H\201-H\202.I\203/J\204/K\2050K\206.H\202" - "/H\203/I\2032M\2104O\2125P\2135Q\2146R\2157S\2167S\2178T\2207R\2167Q\215" - "7R\2168R\2179S\220:T\221:U\222;U\222<V\223<W\224=X\225>Y\226?Y\227?Z\230" - "@[\231A\\\232B]\233Da\237Fc\242Hd\243He\244Ie\245Jf\246Kg\247Kh\247Kh\250" - "Lh\250Li\251Mj\252Ok\254Pm\255Pm\256Qn\257\207Ro\260J\23*^\24+_\24,b\26/" - "f\27""0g\27""1h\30""2i\31""2j5JyCRsDV|Q_\2000Es\36""7o\37""8p\40""9q\40:" - "r!:s\";t#<u#=v$=w%>x&?y&@z'A{(A|(B})C~*D~+E\177+E\200,G\200-H\201.I\202." - "I\203/J\2040K\205/J\205.H\202/H\2030I\2043O\2124P\2135Q\2146Q\2156R\2157" - "S\2168T\2178U\2209U\221:U\2219T\2208S\2179S\220:T\221;U\222;V\223<W\224=" - "W\225=X\226>Y\227?Z\227@Z\231@[\231A\\\232B]\233B^\234D`\237Gc\242Ie\244" - "If\245Jf\246He\244\202Gd\244\7He\245Ie\246Jf\247Jg\250Li\251Nk\254Qn\257" - "\207Ro\260U\23*_\24+`\26/e\26""0f\27""0g\30""1h\30""2i\31""3j\32""3k\33""4" - "l\33""5m\35""6n\36""7o\37""8p\37""8q\40""9r!:s!;t\";t#<u$=v$>w%?x&?y'@z'" - "A{(B|)B})C~*D\177+E\200,F\200,G\201-H\202.I\203/J\203/J\2040K\205.H\202/" - "H\202/I\2031K\2064O\2124P\2135Q\2146R\2157R\2167S\2178T\2209U\2219U\222:" - "V\223;W\223;W\224:U\222:U\221;U\222;V\223<W\224=X\225>X\226>Y\227?Z\230@" - "[\231A\\\232A\\\233B]\234C^\235C_\236D`\237Fb\241Gc\243Fb\242Fc\242Gc\243" - "Hd\244He\245If\246Jg\247Kg\250Kh\251Li\252Mj\253Nk\254Qn\257\205Ro\260R\23" - "+_\25-b\26/f\27""0g\27""1h\30""1i\31""2j\31""3j\32""4kku\214\202\205\215" - "U`z\36""7o\37""8p\40""8q\40""9r!:s\";t#<u#<v$=w%>x%?y&@z'@z(A{(B|)C}*D~*" - "D\177+E\200,F\200-H\201-H\202.I\203/J\2040K\205/I\203.G\202/H\203/I\2043" - "N\2114P\2125P\2135Q\2146R\2157S\2168T\2178T\2209U\221:V\222:W\223;W\224<" - "X\225=Y\226<Y\225<W\224<V\224=W\224=X\225>Y\226?Y\227?Z\230@[\231A\\\232" - "B]\233B]\234C^\235D_\236E`\237Ea\240Ea\241Fb\242Fc\243Gd\244Hd\244Ie\245" - "If\246Jg\247Kh\250Kh\251Li\252\203Mj\253\2Nk\254Qn\257\203Ro\2600\24+_\25" - ".d\26/f\27""0g\27""1h\30""2i\31""3j\32""3k\33""3g\312\312\313\245\245\246" - "\233\234\236\36""6m\37""8p\40""9q!:r!:s\";t#<u#=v$>w%>x&?y&@z'A{(A|)B})C" - "~*D\177+E\177+E\200,G\200-H\201.I\202.J\203/J\204.H\203.G\201.H\202/H\203" - "1K\2053O\2124P\2135Q\2146Q\2156R\2167S\2178T\217\2029U\221\10:V\222;W\223" - ";X\224<X\225=Y\226>Z\227>[\230>Z\227\202=X\226\26>Y\227?Z\230@[\231@[\232" - "A\\\232B]\233C^\234C^\235D_\236E`\237Ea\240Eb\241Fb\242Gc\243Gd\244He\245" - "If\246Jf\247Jg\250Kh\251Li\252Lj\252\205Mj\253&Nk\254Pm\256Ro\260\24+`\25" - ".d\26""0f\27""0g\30""1h\31""2i\31""3j\32""4k+Am\241\257\275\226\241\253\214" - "\230\243#9h\37""8q\40""9r!:s\";t\";u#<v$=v$>w%?x&?y'@z'A{(B|)B}*C~*D\177" - "+E\200,F\200,G\201-H\202.I\202-H\201\202-F\200\27.G\201.H\202/I\2043N\211" - "4O\2124P\2135Q\2146R\2157R\2167S\2178T\2209U\2219V\222:V\223;W\224<X\225" - "<Y\226=Y\226>Z\227?[\230?\\\231@]\232@\\\231\202?Z\230\23@[\231A\\\232A\\" - "\233B]\234C^\235D_\236D`\237E`\240Ea\240Fb\241Fc\242Gd\243Hd\244He\245If" - "\246Jg\247Kg\250Kh\251Li\252\210Mj\253\37Nk\254\24+`\25-b\27""0g\27""1h\30" - """2i\31""2j\32""3k\32""4l;Mr\225\230\234\315\317\321\237\244\252-Ao\40""9" - "q\40""9r!:s\";t\"<u#=v$=w%>x%?y&@z'@{(A|(B|)C}*D~+D\177+E\200\202,F\2001" - "+F\200+E\177,E\200-F\200-G\201.G\202/H\2032M\2073O\2124P\2125P\2145Q\214" - "6R\2157S\2168T\2178T\2209U\221:V\222;W\223;X\224<X\225=Y\226=Z\227>[\230" - "?[\231@\\\232@]\233A^\233B^\234A]\233@\\\232A\\\232B]\233B]\234C^\235D_\236" - "E`\237Ea\240Ea\241Fb\242Gc\243Gd\244He\245Ie\245If\246Jg\247Kh\250Li\251" - "Li\252\211Mj\253\32\24,`\25,a\26/d\30""1h\30""2i\31""3j\32""3k\32""4l\33" - """5l+@mFY\2000Es\37""8q\40""9q!:r!:s\";t#<u$=v$>w%>x&?y&@z'A{(B|)B}\203)" - "C}\22)C|)C}*D}+E~+E\177,E\200-F\200.G\201/I\2031M\2073N\2113O\2124P\2135" - "Q\2146Q\2156R\2167S\2178T\220\2029U\221\14:V\222;W\223;X\224<Y\225=Y\226" - ">Z\227>[\230?\\\231@\\\232A]\233A^\234B_\235\202C`\236\17C_\235B]\234C^\234" - "C_\235D_\236E`\237Ea\240Eb\241Fb\242Gc\243Hd\244He\245Jf\246Li\252Nk\253" - "\202Nk\254\212Mj\253\23\25,a\25-b\26-c\27/d\30""1g\31""2j\32""3k\33""4l\33" - """5m\35""6n\36""7n\36""7o\37""8p\40""9r!:s\";t\";u#<u$=v\202$>w\1%>x\202" - "%?x'&?x&@x'@y'Az(B{)C|*D}*D~+E\177,E\200,F\200.H\2020K\2052M\2072N\2103O" - "\2114O\2124P\2135Q\2146R\2157S\2167S\2178T\2209U\221:V\222:V\223;W\224<X" - "\225<Y\226=Z\227>Z\227?[\230?\\\231@]\232A^\233B^\234B_\235C`\236Da\237\202" - "Eb\240\23Ea\237D_\236D`\237E`\240Ea\241Fb\242Fc\242Gd\243Hd\244Kg\247Nk\253" - "Ol\254Pm\255Pm\256Qn\257Ro\260Qn\257Pm\256Nk\254\206Mj\253D\25,a\26-b\26" - ".c\27/d\30/e\31""0f\31""1g\32""2h\33""2h\33""3i\33""4j\34""5k\35""6l\35""7" - "m\36""7n\37""8o\40""9p\40:q!:r\";s\"<t#=u$>v%>w%?x&@x'Ay(Az(B{)C|*D}*E~+" - "E\200-G\201/J\2040L\2061M\2072M\2103N\2113O\2124P\2135P\2146Q\2156R\2157" - "S\2168T\2178T\2209U\221:V\222;W\223;X\224<X\225=Y\226>Z\227>[\230?\\\231" - "@\\\232@]\233A^\233B_\234C_\235C`\236Da\237Eb\240Ec\241Gc\242Hd\243Gc\242" - "\202Fb\242\12Fc\242Gd\243If\246Li\251Nj\253Nk\253Ol\254Pm\255Qm\256Qn\257" - "\205Ro\260\2Pm\256Nk\254\203Mj\253O\25-a\26-b\27.c\27/d\30""0e\31""0f\32" - """1g\32""2h\33""3i\33""4j\34""4k\34""5l\35""6m\36""7n\36""8o\37""8o\40""9" - "p!:q!;r\";s#<t#=u$>v%?w&?x&@y'Az(B{)C|*D~,F\200-H\201.J\203/J\2040K\2051" - "L\2061M\2072N\2103N\2114O\2124P\2135Q\2146R\2156R\2167S\2178T\2209U\2219" - "U\222:V\223;W\223<X\224<Y\225=Y\226>Z\227?[\230?\\\231@]\232A]\233A^\234" - "B_\235C`\236D`\237Da\240Eb\241Fc\242Gd\243Hd\243Ie\244Jf\245Jg\246Kh\247" - "Lh\250Mi\251Mj\252Nk\253Ol\254Pl\255Pm\256Qn\257\211Ro\260\3Pm\256Ol\255" - "\26/e\202\27/dL\30/d\30""0e\31""1f\32""2g\33""2h\33""3i\33""4j\34""5k\35" - """5l\35""6m\36""7n\37""8o\37""9p\40""9q!:r\";s\"<t#=t$=u%>w&@x'Az(B{)C}+" - "D\177,F\200-H\201-H\202.I\203/J\204/K\2050L\2061L\2072M\2102N\2103O\2114" - "O\2125P\2135Q\2146R\2157S\2167S\2178T\2209U\221:V\222:W\223;W\224<X\225=" - "Y\226=Z\227>[\227?[\230?\\\231@]\232A^\233B^\234B_\235C`\236Da\237Eb\240" - "Eb\241Fc\242Hd\243Ie\244Ie\245Jf\246Kg\247Kh\247Li\250Mi\251Nj\252Nk\253" - "Ol\254Pm\255Qm\256Qn\257\213Ro\260O\27""0g\27""1h\30""2i\31""2j\32""3j\32" - """3k3FrDRr>Mp:Mw,An:Lt@NoCSw:Ks\";t\"<u#=u$=w%>x&@y'A{(A|)B})C~*D\177+E\177" - "+E\200,G\200-H\201.I\202.I\203/J\2040K\2051L\2061M\2072M\2103N\2113O\212" - "4P\2135Q\2146Q\2156R\2157S\2168T\2178U\2209U\221:V\222;W\223;X\224<Y\225" - "=Y\226>Z\227>[\230?\\\231@\\\232@]\233A^\234B_\235C_\236C`\236Da\237Eb\240" - "Fc\241Gc\242Hd\243Ie\244If\245Jg\246Kg\247Lh\250Li\251Mj\252Nj\253Ok\254" - "Ol\255Pm\256Qn\256Qn\257\213Ro\260N\27""0g\30""1h\30""2i\31""3j\32""4k\33" - """4l.Du7Ly?Q|6Ju7LzAT~<P~<P\1773I{#<u$=v$>w%?x&?y'@z'A{(B|)C}*C~*D\177+E" - "\200,F\200,G\201-H\202.I\203/J\203/K\2040K\2051L\2062M\2072N\2103N\2114O" - "\2124P\2135Q\2146R\2157S\2167S\2178T\2209U\2219V\222:V\223;W\223<X\224<Y" - "\225=Z\226>Z\227?[\230?\\\231@]\232A]\233A^\234B_\235C`\236Da\237Da\240E" - "b\241Fc\242Gd\242He\244Ie\244Jf\245Jg\246Kh\247Lh\250Mi\251Mj\252Nk\253O" - "l\254Pl\255Pm\256Qn\257\214Ro\260N\27""1h\30""1i\31""2i\31""3k\32""4k\33" - """5l\34""5m\35""6n\36""6n\37""8p,:fHHa&9k\";t\"<u#=v$=w%>x%?y&@z'@{(A|(B" - "|)C}*D~+D\177+E\200,F\200-H\201-H\202.I\203/J\2040K\2050L\2061L\2072M\210" - "2N\2113O\2124P\2125P\2135Q\2146R\2157S\2168T\2178T\2209U\221:V\222:W\223" - ";W\224<X\225=Y\226=Z\227>[\230?[\231@\\\232@]\232A^\233B_\234B_\235C`\236" - "Da\237Eb\240Eb\241Gc\242Hd\243Ie\244If\245Jf\246Kg\247Lh\250Li\251Mi\251" - "Nj\252Nk\253Ol\254Pm\255Qm\256Qn\257\214Ro\260\31\30""1h\30""2i\31""2j\32" - """3k\33""4l\33""5m\34""6n\36""7odhy\240\205b\217`@\235jEsMA\";t#<u#=v$>w" - "%>x&?y&@z'A{(B|)B})C~*D\177\202+E\2002,G\200-H\202.I\202.J\203/J\2040K\205" - "1L\2061M\2072N\2103N\2113O\2124P\2135Q\2146Q\2156R\2167S\2178T\2179U\220" - "9U\221:V\222;W\223;X\224<Y\225=Y\226>Z\227>[\230?\\\231@\\\232A]\233A^\234" - "B_\235C`\236C`\237Da\240Eb\241Fc\241Gd\242Hd\243Ie\244Jf\245Jg\246Kg\247" - "Lh\250Li\251Mj\252Nk\253Ok\254Ol\255Pm\256Qn\257\215Ro\260M\30""1h\31""2" - "i\31""3j\32""4k\33""4l\33""5m\35""6n\36""7olku\361\312\223\177vlle_KKX\"" - ";u#<v$=v$>w%?x&?y'@z'A{(B|)C})C~*D\177+E\200,F\200,G\201-H\202.I\203/J\204" - "/K\2040L\2051L\2062M\2072N\2103O\2114O\2124P\2135Q\2146R\2157R\2167S\217" - "8T\2209U\221:V\222:V\223;W\224<X\225<Y\225=Z\226>Z\227?[\230?\\\231@]\232" - "A]\233B^\234B_\235C`\236Da\237Da\240Eb\241Fc\242Hd\243He\244Ie\245Jf\245" - "Kg\246Kh\247Li\250Mi\251Mj\252Nk\253Ol\254Pl\255Pm\256Qn\257\213Ro\260(P" - "m\256Ol\255\30""2i\31""2j\32""3k\32""4l\33""5m\34""5m\35""6n\36""7o\202|" - "x\333\271\206\321\264\210\336\300\222\225\211~#<u#=v$=w%>x%?y&@z'A{(A|(B" - "})C}*D~+D\177+E\200,F\200-H\201.I\202.I\203/J\2040K\2050L\2061M\2072M\210" - "3N\2113O\2124P\213\2025Q\214%6R\2157S\2168T\2178T\2209U\221:V\222;W\223;" - "W\224<X\225=Y\226=Z\227>[\230?[\231@\\\232@]\233A^\234B_\234C_\235C`\236" - "Da\237Eb\240Ec\241Gc\242Hd\243Ie\244If\245Jf\246Kg\247Lh\250Li\251Mj\252" - "Nj\253Nk\253Ol\254Pm\255Qn\256Qn\257\207Ro\260\3Pm\256Ol\255Nk\254\203Mj" - "\253L\30""2i\31""3j\32""3k\33""4l\33""5m\34""6n\36""7o\37""7p~{x\315\260" - "{\227\206o\270\232k9Hl#<u$=v$>w%>x&?y&@z'A{(B|)B})C~*D\177+E\200+F\200,G" - "\201-H\201.I\202.J\203/J\2040K\2051L\2061M\2072N\2103N\2114O\2124P\2135Q" - "\2146Q\2156R\2167S\2178T\2209U\2219U\222:V\223;W\223<X\224<Y\225=Y\226>Z" - "\227>[\230?\\\231@\\\232A]\233A^\234B_\235C`\236D`\237Da\240Eb\241Fc\241" - "Gd\242Hd\243Ie\244Jf\245Jg\246Kh\247Lh\250Mi\251Mj\252Nk\253Ol\254Ol\255" - "Pm\256Qn\257\204Ro\260\3Pm\256Ol\255Nk\254\207Mj\253O\31""2i\31""3j\32""4" - "k\33""4l\34""5m\35""6n\36""7o\37""8p\37""8q\40""8p!:s!:r\"<u#<v$=w%>x%?y" - "&@y'@z'A{(B|)C}*C~*D\177+E\200,F\200-H\201-H\202.I\203/J\204/K\2050L\206" - "1L\2072M\2072N\2103O\2114O\2125P\2135Q\2146R\2157S\2168S\2178T\2209U\221" - ":V\222:W\223;W\224<X\225=Y\226=Z\227>Z\227?[\230?\\\231@]\232A^\233B^\234" - "B_\235C`\236Da\237Eb\240Eb\241Fc\242Hd\243He\244If\245Jf\246Kg\246Kh\247" - "Li\250Mi\251Nj\252Nk\253Ol\254Pm\255Pm\256Qn\257Pm\256Ol\255Nk\254\213Mj" - "\2538\31""2j\32""3k\32""4l\33""5m\34""6n\35""6n\36""7o\37""8p\40""9q\40""9" - "r!:s\";t#<u#=v$=w%>x&?y&@z'A{(A|(B})C~*D~+E\177+E\200,F\200-H\201.I\202." - "I\203/J\2040K\2050L\2061M\2072M\2103N\2113O\2124P\2135Q\2146Q\2156R\2157" - "S\2168T\2178T\2209U\221:V\222;W\223;X\224<X\225=Y\226>Z\227>[\230?\\\231" - "@\\\232@]\233A^\234B_\235\202C`\236\15Da\237Eb\240Fc\241Gc\242Hd\243Ie\244" - "If\245Jg\246Kg\247Lh\250Li\251Mj\252Nj\253\202Nk\253\3Mj\253Mj\252Li\252" - "\216Mj\253F\31""3j\32""4k\33""4l\33""5m\35""6n\36""7o\37""7p\37""8q\40""9" - "r!:s!;t\";u#<u$=v$>w%>x&?y'@z'A{(B|)B})C~*D\177+E\200,F\200,G\201-H\202." - "I\202/J\203/K\2040K\2051L\2061M\2072N\2103N\2114O\2124P\2135Q\2146R\2156" - "R\2167S\2178T\2209U\2219V\222:V\222;W\223<X\224<Y\225=Y\226>Z\227?[\230?" - "\\\231@]\232A]\233A^\234B_\235C`\236D`\237Da\240Eb\241Fc\242Gd\243Hd\243" - "Ie\244Jf\245Jg\246Kh\247Lh\250Kh\250Kg\247\202Jg\247\3Kg\250Kh\251Li\252" - "\217Mj\253A\31""3j\32""4k\33""5l\34""5m\35""6n\36""7o\37""8p\37""9q\40""9" - "r!:s\";t#<u#<v$=w%>x%?y&@z'@z(A{(B|)C}*D~+D\177+E\200,F\200-H\201-H\202." - "I\203/J\2040K\2050L\2061L\2072M\2102N\2113O\2114P\2125P\2135Q\2146R\2157" - "S\2168S\2178T\2209U\221:V\222:W\223;W\224<X\225=Y\226=Z\227>[\230?[\230?" - "\\\231@]\232A^\233B_\234B_\235C`\236Da\237Eb\240Eb\241Fc\242Hd\243Ie\244" - "Ie\245Ie\244\202Hd\244\10Gd\244Hd\244Ie\245If\246Jg\247Kh\250Lh\251Li\252" - "\217Mj\253<\32""3k\32""4l\33""5m\34""6n\36""6o\36""7p\37""8q\40""9q!:r!:" - "s\";t#<u#=v$=w%>x&?y&@z'A{(A|)B})C~*D\177+E\177+E\200,G\200-H\201.I\202." - "J\203/J\2040K\2050L\2061M\2072M\2103N\2113O\2124P\2135Q\2146Q\2156R\2167" - "S\2178T\2179U\2209U\221:V\222;W\223;X\224<X\225=Y\226>Z\227>[\230?\\\231" - "@\\\232A]\233A^\234B_\235C`\236C`\237Da\237Eb\240Fc\241\202Fb\241\15Fa\240" - "Ea\240Eb\241Fb\242Gc\243Gd\244He\245If\246Jf\247Jg\250Kh\251Li\252Mi\252" - "\217Mj\253:\32""4k\33""4l\33""5m\35""6n\36""7o\37""8p\37""8q\40""9r!:s!;" - "t\";u#<v$=w$>w%?x&?y'@z'A{(B|)C})C~*D\177+E\200,F\200,G\201-H\202.I\203/" - "J\204/K\2040K\2051L\2062M\2072N\2103O\2114O\2124P\2135Q\2146R\2157S\2167" - "S\2178T\2209U\2219V\222:V\223;W\224<X\225<Y\225=Z\226>Z\227?[\230?\\\231" - "@]\232A^\233A^\234B_\235C`\236C_\236C_\235\202C^\235\16D_\236D`\237E`\240" - "Ea\240Eb\241Fc\242Gc\243Hd\244He\245If\246Jg\247Kg\250Kh\251Li\252\216Mj" - "\2535Nk\254Ol\255\32""4l\33""5l\34""5m\35""6n\36""7o\37""8p\40""9q\40""9" - "r!:s\";t#<u#=v$=w%>x%?y&@z'@{(A{(B})C}*D~+D\177+E\200,F\200-H\201-I\202." - "I\203/J\2040K\2050L\2061L\2072M\2103N\2113O\2114P\2125P\2145Q\2146R\2157" - "S\2168T\2178T\2209U\221:V\222:W\223;X\224<X\225=Y\226=Z\227>[\230?\\\231" - "@\\\232\202@]\232\1@\\\232\202@[\231\22A\\\232B]\233B^\234C^\235D_\236E`" - "\237Ea\240Ea\241Fb\242Fc\243Gd\244He\245Ie\246If\246Jg\247Kh\250Li\251Li" - "\252\211Mj\253\4Nk\254Ol\255Pm\256Qn\257\203Ro\260(\33""4l\33""5m\34""6n" - "\36""7o\36""7p\37""8q\40""9r:N{;Mx?NqHWzKZ|DTy8Js&?y&@z'A{(B|)B})C~*D\177" - "+E\200,E\200,G\200-H\201.I\202.J\203/J\2040K\2051L\2061M\2072N\2103N\211" - "3O\2124P\2135Q\2146Q\2156R\2167S\2178T\220\2029U\221\5:V\222;W\223<X\224" - "<Y\225=Y\226\202>Z\227\30>Y\227>Y\226>X\226>Y\227?Z\230@[\231A[\232A\\\233" - "B]\234C^\234C_\235D_\236E`\237Ea\240Eb\241Fb\242Gc\243Hd\244He\245If\246" - "Jf\247Jg\250Kh\251Li\252\206Mj\253\4Nk\254Ol\255Pm\256Qn\257\207Ro\260+\33" - """4l\34""5m\35""6n\36""7o\37""8p\37""8q\40""9r@R{7LzDW\201AT\200@T\201EW" - "\200?S\200&?y'@z'A{(B|)C}*C~*D\177+E\200,F\200,H\201-H\202.I\203/J\204/K" - "\2050L\2061L\2062M\2072N\2103O\2114O\2125P\2135Q\2146R\2157S\2167S\2178T" - "\2209U\221:V\222:V\223\203;W\223\202;V\223\31<V\223<W\224=X\225>Y\226?Y\227" - "?Z\230@[\231A\\\232B]\233B]\234C^\235D_\236D`\237E`\240Ea\241Eb\241Fc\242" - "Gd\243Hd\244He\245If\246Jg\247Kg\250Kh\251Li\252\202Mj\253\3Nk\254Ol\255" - "Qn\257\214Ro\260'\33""5m\34""5n\35""6n\36""7o\37""8p\40""9q\40""9r!:s\";" - "t\"<t#=v$=w%>x&?y&@z'A{(A|(B})C~*D~+D\177+E\200,F\200-H\201-I\202.I\203/" - "J\2040K\2050L\2061M\2072M\2103N\2113O\2124P\2135Q\2145Q\2156R\2157S\2168" - "T\217\2038T\220\2028S\217\36""9S\220:T\221:U\222;V\223<V\224=W\225=X\226" - ">Y\227?Z\227@Z\230@[\231A\\\232B]\233B^\234C^\235D_\236E`\237Ea\240Ea\241" - "Fb\242Gc\243Gd\244He\245Ie\246If\247Jg\250Li\251Nj\253Ol\255Qn\257\220Ro" - "\260#\33""5m\34""6n\36""7o\37""7p\37""8q\40""9r!:s!;tqy\215\234\234\235Z" - "cxgv\224Xj\204&?y&@z'A{(B|)B})C~*D\177+E\200,F\200,G\201-H\202.I\202/J\203" - "/J\2040K\2051L\2061M\2072N\2103N\2114O\2124P\2135Q\214\2026Q\215\1""6Q\214" - "\2026P\214\40""6P\2157Q\2168R\2179S\2179T\220:T\221;U\222;V\223<W\224=X\225" - ">X\226>Y\227?Z\230@[\231A\\\232A\\\233B]\234C^\235D_\235D`\236E`\237Ea\240" - "Eb\241Fc\242Gc\243Hd\244Jf\246Kh\250Mj\252Ol\255Pm\256Qn\257\222Ro\260\40" - "\34""5m\35""6n\36""7o\37""8p\40""8q\40""9r!:s\";t|\204\230\247\304\331\271" - "\302\311\310\313\311\210\215\232&@y'@z(A{(B|)C}*D~*D\177+E\200,F\200-H\201" - "-H\202.I\203/J\204/K\2050L\2061L\2072M\2072N\2113O\211\2033N\211%3M\2104" - "N\2115N\2125O\2136P\2147Q\2157R\2168R\2179S\220:T\221:U\222;V\222<V\223<" - "W\224=X\225>Y\226?Y\227?Z\230@[\231A\\\232B]\233B]\234C^\235D_\236D`\237" - "Ea\240Fb\241Gd\243If\245Kh\247Mi\251Nj\252Nk\253Ol\254Pm\255Pm\256Qn\257" - "\222Ro\260H\34""6n\36""6o\36""7o\37""8p\40""9q\40:r!:s\";tnz\224\215\301" - "\345\236\310\350\302\314\324\200\210\236&@z'A{(A|(B})C~*D\177+E\177+E\200" - ",G\200-H\201.I\202.J\203/J\2040K\2050L\2061L\2061K\2061K\2051J\2051K\206" - "2L\2073L\2103M\2114N\2115O\2125P\2136P\2147Q\2158R\2168S\2179S\220:T\221" - ";U\222;V\223<W\224=W\225=X\226>Y\227?Z\230@[\230@[\231A\\\232B]\233C^\234" - "D`\236Fa\240Gc\243Ie\245Jg\246Kg\247Lh\250Li\251Mj\252Nk\253Nk\254Ol\255" - "Pm\256Qn\256Qn\257\222Ro\260\31\35""6n\36""7o\37""8p\37""8q\40""9r!:s!;t" - "\";uHZ\201\203\223\247\230\260\304\214\232\255'?w'@z'A{(B|)B}*C~*D\177+E" - "\200,F\200,G\201-H\202.I\203.I\202\202.H\202,.G\202/H\202/I\2030I\2041J\205" - "1K\2062L\2073M\2104M\2114N\2125O\2136P\2146Q\2157Q\2168R\2179S\2179T\220" - ":T\221;U\222<V\223<W\224=X\225>X\226>Y\227?Z\230@[\231B]\233C_\236Da\240" - "Fc\241Gd\243He\244Ie\244Jf\245Jg\246Kh\247Lh\250Mi\251Mj\252Nk\253Ol\254" - "Pl\255Pm\256Qn\257\223Ro\260\24\35""6n\36""7o\37""8p\40""9q\40""9r!:s\";" - "t\"<u#=v$=w%=s,Bu&@z'@{(A{(B|)C}*D~*D\177+E\200\202+F\2001+F\177+E\177,E" - "\200-F\200-G\201.G\202/H\203/I\2040J\2051K\2052K\2062L\2073M\2104N\2115N" - "\2125O\2136P\2147Q\2157R\2168R\2179S\220:T\221:U\222;V\223<V\224=W\225>Y" - "\226?[\231A]\233B_\235C`\236Da\237Eb\240Eb\241Gc\242Hd\243Ie\244If\245Jf" - "\246Kg\247Kh\250Li\250Mi\251Nj\252Nk\253Ol\254Pm\255Qm\256Qn\257\223Ro\260" - "\17\36""7o\36""7p\37""8q\40""9q!:r!:s\";t#<u#=v$>w%>x&?y&@z'A{(A|\202)B}" - "\204)C|2*D}+E~+E\177,E\200-F\200-G\201.H\202/I\2030I\2040J\2051K\2062L\207" - "3L\2103M\2114N\2125O\2126P\2136P\2147Q\2158R\2168S\217:T\221;V\223<X\224" - "=Y\226?[\230@\\\232A]\233A^\234B_\235C`\236D`\237Da\240Eb\240Fc\241Gd\242" - "Hd\243Ie\244Jf\245Jg\246Kg\247Lh\250Li\251Mj\252Nk\253Ok\254Ol\255Pm\256" - "Qn\257Rn\257\223Ro\260\14\36""7o\37""8p\37""8q\40""9r!:s\";t\"<u#<u$=w%>" - "w%?x&?y\204&@y6'@y'Az(B{)C|)C}*D~+E\177,E\200,F\200-F\201.G\201/H\202/I\203" - "0J\2041J\2051K\2062L\2073M\2104N\2114N\2125P\2137Q\2158S\2179U\221:V\223" - "<X\224<Y\226=Z\226>Z\227?[\230?\\\231@]\232A]\233B^\234B_\235C`\236Da\237" - "Ea\240Eb\241Fc\242Hd\243He\244Ie\245Jf\246Kg\246Kh\247Li\250Mi\251Mj\252" - "Nk\253Ol\254Pl\255Pm\256Qn\257\224Ro\260\7\36""7o\37""8p\40""9q\40""9r!:" - "s\";t#<u\202#=v\1$=v\202#=u:$=v%>w%?x&@x'Ay(Az(B{)C|*D}*E~+E\177,E\200-F" - "\200-G\201.H\202/H\2030I\2040J\2051K\2062M\2104N\2125P\2136R\2157S\2178T" - "\2209U\221:V\222;W\223;W\224<X\225=Y\226=Z\227>[\230?[\231@\\\232@]\232A" - "^\234B_\234C_\235C`\236Da\237Eb\240Ec\241Gc\242Hd\243Ie\244If\245Jg\246K" - "g\247Lh\250Li\251Mj\252Nj\253Nk\254Ol\255Pm\255Qn\256Qn\257\224Ro\260\5\37" - """7p\37""8q\40""9r!:r!:s\203!:r\34!;r\";s#<t$=u$>v%?w&?x&@y'Az(B{)C|)C}*" - "D}+E~+E\177,E\200-F\200.H\202/J\2041K\2062M\2103O\2114P\2135Q\2146R\2156" - "R\2167S\2178T\220\2029U\221\37:V\222;W\223<X\224<Y\225=Y\226>Z\227>[\230" - "?\\\231@]\232A]\233A^\234B_\235C`\236D`\237Da\240Eb\241Fc\241Gd\242Hd\243" - "Ie\244Jf\245Jg\246Kh\247Lh\250Li\251Mj\252Nk\253Ok\254Ol\255Pm\256Qn\257" - "\225Ro\260\1%<r\203$<qA%=q%=r&>s'?t'@u(@v)Av*Bw*Cx+Dy,Dz,E{-F|.F}/G~/H\177" - "1J\2002K\2023L\2034N\2055O\2076P\2107Q\2117R\2128S\2129S\213:T\214:U\215" - ";V\216<V\217<W\220=X\221>Y\222?Y\222?Z\223@[\224A\\\225A\\\226B]\227C^\230" - "C^\231D_\232E`\233Ea\233Fb\234Gb\235Gc\236Hd\237Id\240Je\241Kf\242Lg\243" - "Mg\244Mh\244Ni\245Oj\246Ok\247Pk\250Ql\251Qm\252Rm\253Sn\254To\255Tp\255" - "Up\256\225Vq\257\6\340\340\340\330\325\325\322\312\312\335\335\335\316\316" - "\316\305\305\305\202\325\325\325\31\320\320\320\324\324\324\326\326\326\324" - "\324\324\340\340\340\335\335\335\324\324\324\325\325\325\326\326\326\324" - "\324\324\331\331\331\337\337\337\277\303\307\301\301\305\333\332\331\317" - "\305\263\323\317\310\333\332\327\306\304\305\311\312\313\327\327\330\266" - "\303\320\326\326\326\301\306\316\252\254\273\244\340\340\340\3\334\334\334" - "\340\340\340\334\334\334\202\325\325\325\6\331\331\331\323\323\323\277\277" - "\277\320\320\320\317\317\317\327\327\327\202\334\334\334*\324\324\324\333" - "\333\333\331\331\331\333\333\333\340\340\340\307\307\307\315\315\315\340" - "\340\340\336\332\332\265<6\262US\315\315\315\225\225\225\242\242\242\214" - "\214\214\273\273\273\225\225\225\251\251\251\231\231\231\263\263\263\345" - "\345\345\261\261\261\247\247\247\242\242\242\254\254\254\237\237\237\311" - "\311\311\266\277\305u\232\225\204\214\235\320\301\251\264\247\202\300\276" - "\262\277\276\274\312\312\315\321\321\321\270\270\277\210\235\252\277\301" - "\312\227\265\322\252\242\235\330\330\330\243\345\345\345\10\342\342\342\344" - "\344\344\267\267\267\237\237\237\301\301\301\226\226\226\257\257\257\254" - "\254\254\202\270\270\270\12\342\342\342\274\274\274\275\275\275\213\213\213" - "\265\265\265\213\213\213\204\204\204\343\343\343\234\234\234\265\265\265" - "\202\345\345\345\6\334\313\312\336\327\326\345\345\345\342\342\342\345\345" - "\345\340\340\340\202\345\345\345\1\343\343\343\203\345\345\345\3\342\342" - "\342\345\345\345\343\343\343\203\345\345\345\17\320\322\322\254\312\311\271" - "\305\325\334\334\333\276\306\312\331\332\331\327\327\327\311\311\311\340" - "\340\340\310\310\317\251\260\266\320\321\330\325\326\327\316\322\324\341" - "\341\341\243\345\345\345\3\341\341\341\344\344\344\330\330\330\202\345\345" - "\345\1\342\342\342\202\345\345\345\202\337\337\337\13\345\345\345\334\334" - "\334\343\343\343\336\336\336\344\344\344\340\340\340\341\341\341\345\345" - "\345\310\310\310\307\307\307\345\345\345", -}; - diff --git a/src/image_data/rotation_orientation_vert_pixdata.h b/src/image_data/rotation_orientation_vert_pixdata.h new file mode 100644 index 0000000..7af1900 --- /dev/null +++ b/src/image_data/rotation_orientation_vert_pixdata.h @@ -0,0 +1,2425 @@ +/* GdkPixbuf RGBA C-Source image dump 1-byte-run-length-encoded */ + +static guint8 rotation_orientation_vert_pixdata_pixel_data[] = { + 0x03,0x00,0x00,0x00,0xff,0x04,0x04,0x04,0xff,0x04,0x03,0x03,0xff,0x91,0x04, + 0x04,0x04,0xff,0x82,0x03,0x03,0x03,0xff,0x01,0x03,0x03,0x04,0xff,0x82,0x03, + 0x03,0x03,0xff,0x04,0x04,0x04,0x04,0xff,0x03,0x03,0x03,0xff,0x04,0x04,0x04, + 0xff,0x03,0x03,0x04,0xff,0x82,0x03,0x03,0x03,0xff,0x82,0x03,0x03,0x04,0xff, + 0xb5,0x04,0x04,0x04,0xff,0x82,0x03,0x03,0x03,0xff,0x0e,0x04,0x04,0x04,0xff, + 0x00,0x00,0x00,0xff,0x05,0x05,0x05,0xff,0xe5,0xe4,0xe4,0xff,0xdc,0xc8,0xc7, + 0xff,0xde,0xd5,0xd4,0xff,0xe5,0xe5,0xe5,0xff,0xe1,0xe1,0xe1,0xff,0xe3,0xe3, + 0xe3,0xff,0xdf,0xdf,0xdf,0xff,0xe4,0xe4,0xe4,0xff,0xe3,0xe3,0xe3,0xff,0xe2, + 0xe2,0xe2,0xff,0xe4,0xe4,0xe4,0xff,0x82,0xe5,0xe5,0xe5,0xff,0x01,0xe2,0xe2, + 0xe2,0xff,0x82,0xe3,0xe3,0xe3,0xff,0x82,0xe4,0xe4,0xe4,0xff,0x04,0xdc,0xdd, + 0xdd,0xff,0xbf,0xce,0xce,0xff,0xb1,0xc7,0xce,0xff,0xca,0xd0,0xd7,0xff,0x82, + 0xcd,0xd1,0xd1,0xff,0x0a,0xd8,0xd8,0xd8,0xff,0xcf,0xcf,0xcf,0xff,0xd8,0xd8, + 0xd8,0xff,0xd1,0xd1,0xd6,0xff,0xb4,0xb9,0xbf,0xff,0xc4,0xc7,0xcd,0xff,0xd3, + 0xd5,0xd8,0xff,0xd0,0xd3,0xd5,0xff,0xdd,0xdd,0xde,0xff,0xe5,0xe5,0xe5,0xff, + 0xa1,0xe6,0xe6,0xe6,0xff,0x82,0xe4,0xe4,0xe4,0xff,0x0d,0xde,0xde,0xde,0xff, + 0xdf,0xdf,0xdf,0xff,0xe4,0xe4,0xe4,0xff,0xe2,0xe2,0xe2,0xff,0xe3,0xe3,0xe3, + 0xff,0xe4,0xe4,0xe4,0xff,0xe0,0xe0,0xe0,0xff,0xdf,0xdf,0xdf,0xff,0xe4,0xe4, + 0xe4,0xff,0xde,0xde,0xde,0xff,0xe1,0xe1,0xe1,0xff,0xde,0xde,0xde,0xff,0xe2, + 0xe2,0xe2,0xff,0x82,0xdf,0xdf,0xdf,0xff,0x04,0xe5,0xe5,0xe5,0xff,0xca,0xca, + 0xca,0xff,0xc7,0xc7,0xc7,0xff,0xe5,0xe5,0xe5,0xff,0x82,0x05,0x05,0x05,0xff, + 0x0e,0xdd,0xd5,0xd4,0xff,0xb8,0x45,0x40,0xff,0xb7,0x65,0x63,0xff,0xc9,0xc9, + 0xc9,0xff,0x9a,0x9a,0x9a,0xff,0xa2,0xa2,0xa2,0xff,0x98,0x98,0x98,0xff,0xb6, + 0xb6,0xb6,0xff,0x9d,0x9d,0x9d,0xff,0xa9,0xa9,0xa9,0xff,0xa3,0xa3,0xa3,0xff, + 0xc3,0xc3,0xc3,0xff,0xd7,0xd7,0xd7,0xff,0xb1,0xb1,0xb1,0xff,0x82,0xa9,0xa9, + 0xa9,0xff,0x12,0xaa,0xaa,0xaa,0xff,0xb3,0xb3,0xb3,0xff,0xc3,0xc7,0xc9,0xff, + 0x9c,0xb1,0xb2,0xff,0x80,0x97,0x9c,0xff,0xad,0xa9,0xa6,0xff,0xc3,0xb6,0x98, + 0xff,0xbd,0xb6,0x9f,0xff,0xc2,0xc0,0xba,0xff,0xc7,0xc6,0xc7,0xff,0xcf,0xcf, + 0xd0,0xff,0xc3,0xc3,0xc7,0xff,0x9c,0xa9,0xb4,0xff,0xb0,0xb8,0xc2,0xff,0xa6, + 0xbb,0xd1,0xff,0xa6,0xa9,0xae,0xff,0xcd,0xcb,0xca,0xff,0xe3,0xe3,0xe3,0xff, + 0xa1,0xe6,0xe6,0xe6,0xff,0x82,0xe4,0xe4,0xe4,0xff,0x13,0xcd,0xcd,0xcd,0xff, + 0xac,0xac,0xac,0xff,0xb6,0xb6,0xb6,0xff,0xa9,0xa9,0xa9,0xff,0xaa,0xaa,0xaa, + 0xff,0xaf,0xaf,0xaf,0xff,0xb6,0xb6,0xb6,0xff,0xba,0xba,0xba,0xff,0xd8,0xd8, + 0xd8,0xff,0xc7,0xc7,0xc7,0xff,0xbf,0xbf,0xbf,0xff,0x99,0x99,0x99,0xff,0xb1, + 0xb1,0xb1,0xff,0x96,0x96,0x96,0xff,0x8a,0x8a,0x8a,0xff,0xda,0xda,0xda,0xff, + 0xa5,0xa5,0xa5,0xff,0xb6,0xb6,0xb6,0xff,0xe4,0xe4,0xe4,0xff,0x82,0x05,0x05, + 0x05,0xff,0x0f,0xd4,0xd6,0xd9,0xff,0xcd,0xcb,0xcf,0xff,0xc8,0xc3,0xc7,0xff, + 0xd0,0xd2,0xd5,0xff,0xc3,0xc4,0xc8,0xff,0xbe,0xbf,0xc3,0xff,0xca,0xcc,0xd0, + 0xff,0xca,0xcb,0xcf,0xff,0xc7,0xc8,0xcc,0xff,0xca,0xcc,0xcf,0xff,0xcb,0xcd, + 0xd0,0xff,0xcd,0xcf,0xd2,0xff,0xd4,0xd6,0xd9,0xff,0xd0,0xd1,0xd5,0xff,0xca, + 0xcc,0xcf,0xff,0x82,0xcb,0xcd,0xd0,0xff,0x10,0xcc,0xce,0xd1,0xff,0xd1,0xd3, + 0xd6,0xff,0xc7,0xca,0xcf,0xff,0xb8,0xbb,0xc3,0xff,0xc5,0xc6,0xcb,0xff,0xcb, + 0xc7,0xc2,0xff,0xc8,0xc3,0xbc,0xff,0xce,0xcd,0xcd,0xff,0xc6,0xc6,0xc9,0xff, + 0xbf,0xc1,0xc6,0xff,0xc9,0xcb,0xcf,0xff,0xb9,0xc3,0xcf,0xff,0xc3,0xc9,0xd0, + 0xff,0xbf,0xc4,0xcd,0xff,0xaa,0xae,0xbe,0xff,0xc9,0xcb,0xd3,0xff,0x86,0xd6, + 0xd8,0xdc,0xff,0x86,0xd7,0xd8,0xdc,0xff,0x82,0xd7,0xd9,0xdc,0xff,0x8d,0xd7, + 0xd9,0xdd,0xff,0x83,0xd8,0xd9,0xdd,0xff,0x82,0xd8,0xd9,0xde,0xff,0x82,0xd8, + 0xda,0xde,0xff,0x83,0xd6,0xd8,0xdc,0xff,0x15,0xd0,0xd2,0xd6,0xff,0xce,0xcf, + 0xd4,0xff,0xd0,0xd2,0xd6,0xff,0xce,0xcf,0xd4,0xff,0xbf,0xc1,0xc5,0xff,0xc4, + 0xc6,0xca,0xff,0xc8,0xca,0xce,0xff,0xce,0xcf,0xd3,0xff,0xd3,0xd5,0xd9,0xff, + 0xd4,0xd6,0xda,0xff,0xce,0xd0,0xd4,0xff,0xd2,0xd4,0xd8,0xff,0xd2,0xd3,0xd8, + 0xff,0xd3,0xd5,0xd9,0xff,0xd7,0xd9,0xdd,0xff,0xc3,0xc4,0xc8,0xff,0xc6,0xc8, + 0xcc,0xff,0xd7,0xd9,0xdd,0xff,0x05,0x05,0x05,0xff,0x01,0x01,0x02,0xff,0x24, + 0x3c,0x72,0xff,0x83,0x24,0x3c,0x71,0xff,0x40,0x25,0x3d,0x71,0xff,0x25,0x3d, + 0x72,0xff,0x26,0x3e,0x73,0xff,0x27,0x3f,0x74,0xff,0x27,0x40,0x75,0xff,0x28, + 0x40,0x76,0xff,0x29,0x41,0x76,0xff,0x2a,0x42,0x77,0xff,0x2a,0x43,0x78,0xff, + 0x2b,0x44,0x79,0xff,0x2c,0x44,0x7a,0xff,0x2c,0x45,0x7b,0xff,0x2d,0x46,0x7c, + 0xff,0x2e,0x46,0x7d,0xff,0x2f,0x47,0x7e,0xff,0x2f,0x48,0x80,0xff,0x31,0x4a, + 0x82,0xff,0x32,0x4b,0x83,0xff,0x33,0x4c,0x85,0xff,0x34,0x4e,0x87,0xff,0x35, + 0x4f,0x88,0xff,0x36,0x50,0x89,0xff,0x36,0x51,0x8a,0xff,0x37,0x52,0x8b,0xff, + 0x38,0x53,0x8b,0xff,0x39,0x53,0x8d,0xff,0x3a,0x54,0x8e,0xff,0x3a,0x55,0x8f, + 0xff,0x3b,0x56,0x90,0xff,0x3c,0x56,0x91,0xff,0x3c,0x57,0x92,0xff,0x3d,0x58, + 0x93,0xff,0x3e,0x59,0x93,0xff,0x3f,0x5a,0x94,0xff,0x3f,0x5b,0x95,0xff,0x40, + 0x5c,0x96,0xff,0x41,0x5c,0x97,0xff,0x42,0x5d,0x98,0xff,0x43,0x5e,0x99,0xff, + 0x43,0x5e,0x9a,0xff,0x44,0x5f,0x9b,0xff,0x45,0x60,0x9c,0xff,0x45,0x61,0x9c, + 0xff,0x46,0x62,0x9d,0xff,0x47,0x62,0x9e,0xff,0x47,0x63,0x9f,0xff,0x48,0x64, + 0xa0,0xff,0x49,0x64,0xa1,0xff,0x4a,0x65,0xa2,0xff,0x4b,0x66,0xa3,0xff,0x4c, + 0x67,0xa4,0xff,0x4d,0x67,0xa5,0xff,0x4d,0x68,0xa5,0xff,0x4e,0x69,0xa6,0xff, + 0x4f,0x6a,0xa7,0xff,0x4f,0x6b,0xa8,0xff,0x50,0x6b,0xa9,0xff,0x51,0x6c,0xaa, + 0xff,0x51,0x6d,0xab,0xff,0x52,0x6d,0xac,0xff,0x53,0x6e,0xad,0xff,0x54,0x6f, + 0xae,0xff,0x54,0x70,0xaf,0xff,0x55,0x70,0xb0,0xff,0x94,0x56,0x71,0xb0,0xff, + 0x07,0x02,0x02,0x04,0xff,0x01,0x01,0x02,0xff,0x1f,0x37,0x70,0xff,0x1f,0x38, + 0x71,0xff,0x20,0x39,0x72,0xff,0x21,0x3a,0x72,0xff,0x21,0x3a,0x73,0xff,0x83, + 0x21,0x3a,0x72,0xff,0x1b,0x21,0x3b,0x73,0xff,0x22,0x3b,0x73,0xff,0x23,0x3c, + 0x74,0xff,0x24,0x3d,0x75,0xff,0x24,0x3e,0x76,0xff,0x25,0x3f,0x77,0xff,0x26, + 0x3f,0x78,0xff,0x26,0x40,0x79,0xff,0x27,0x41,0x7a,0xff,0x28,0x42,0x7b,0xff, + 0x29,0x43,0x7c,0xff,0x29,0x43,0x7d,0xff,0x2a,0x44,0x7d,0xff,0x2b,0x45,0x7e, + 0xff,0x2c,0x45,0x80,0xff,0x2d,0x46,0x81,0xff,0x2e,0x47,0x82,0xff,0x2e,0x49, + 0x84,0xff,0x30,0x4a,0x86,0xff,0x31,0x4c,0x88,0xff,0x32,0x4e,0x89,0xff,0x33, + 0x4f,0x8b,0xff,0x34,0x50,0x8c,0xff,0x35,0x51,0x8d,0xff,0x36,0x52,0x8e,0xff, + 0x37,0x53,0x90,0xff,0x38,0x54,0x91,0xff,0x82,0x39,0x55,0x92,0xff,0x1f,0x3a, + 0x56,0x93,0xff,0x3b,0x57,0x94,0xff,0x3c,0x58,0x95,0xff,0x3c,0x59,0x96,0xff, + 0x3d,0x59,0x97,0xff,0x3e,0x5a,0x98,0xff,0x3e,0x5b,0x99,0xff,0x3f,0x5c,0x9a, + 0xff,0x40,0x5d,0x9b,0xff,0x41,0x5d,0x9c,0xff,0x41,0x5e,0x9d,0xff,0x42,0x5f, + 0x9e,0xff,0x43,0x60,0x9f,0xff,0x44,0x60,0xa0,0xff,0x44,0x61,0xa1,0xff,0x45, + 0x62,0xa2,0xff,0x46,0x63,0xa2,0xff,0x47,0x64,0xa3,0xff,0x48,0x64,0xa4,0xff, + 0x49,0x65,0xa5,0xff,0x4a,0x66,0xa6,0xff,0x4a,0x67,0xa7,0xff,0x4b,0x68,0xa8, + 0xff,0x4c,0x68,0xa9,0xff,0x4c,0x69,0xaa,0xff,0x4d,0x6a,0xab,0xff,0x4e,0x6b, + 0xac,0xff,0x4f,0x6b,0xad,0xff,0x4f,0x6c,0xae,0xff,0x50,0x6d,0xaf,0xff,0x51, + 0x6e,0xb0,0xff,0x94,0x52,0x6f,0xb1,0xff,0x09,0x02,0x02,0x04,0xff,0x01,0x01, + 0x02,0xff,0x1e,0x37,0x6f,0xff,0x1f,0x38,0x70,0xff,0x20,0x39,0x71,0xff,0x20, + 0x39,0x72,0xff,0x21,0x3a,0x73,0xff,0x22,0x3b,0x74,0xff,0x23,0x3c,0x75,0xff, + 0x82,0x23,0x3d,0x76,0xff,0x04,0x24,0x3d,0x76,0xff,0x23,0x3d,0x75,0xff,0x24, + 0x3d,0x76,0xff,0x24,0x3e,0x77,0xff,0x82,0x25,0x3f,0x78,0xff,0x35,0x26,0x40, + 0x78,0xff,0x27,0x41,0x79,0xff,0x28,0x41,0x7a,0xff,0x28,0x42,0x7b,0xff,0x29, + 0x43,0x7c,0xff,0x2a,0x44,0x7d,0xff,0x2a,0x45,0x7f,0xff,0x2c,0x45,0x80,0xff, + 0x2c,0x46,0x81,0xff,0x2d,0x47,0x82,0xff,0x2e,0x47,0x83,0xff,0x2f,0x48,0x83, + 0xff,0x30,0x49,0x85,0xff,0x30,0x4a,0x86,0xff,0x31,0x4b,0x87,0xff,0x32,0x4c, + 0x88,0xff,0x33,0x4d,0x8a,0xff,0x35,0x4f,0x8b,0xff,0x36,0x51,0x8d,0xff,0x36, + 0x52,0x8f,0xff,0x37,0x53,0x90,0xff,0x39,0x54,0x91,0xff,0x3a,0x55,0x92,0xff, + 0x3b,0x57,0x94,0xff,0x3b,0x57,0x95,0xff,0x3c,0x58,0x96,0xff,0x3d,0x59,0x97, + 0xff,0x3d,0x5a,0x98,0xff,0x3e,0x5b,0x99,0xff,0x3f,0x5b,0x9a,0xff,0x40,0x5c, + 0x9b,0xff,0x40,0x5d,0x9b,0xff,0x41,0x5e,0x9d,0xff,0x42,0x5f,0x9d,0xff,0x43, + 0x5f,0x9e,0xff,0x43,0x60,0x9f,0xff,0x44,0x61,0xa0,0xff,0x45,0x62,0xa1,0xff, + 0x45,0x63,0xa2,0xff,0x47,0x63,0xa3,0xff,0x48,0x64,0xa4,0xff,0x49,0x65,0xa5, + 0xff,0x49,0x66,0xa6,0xff,0x4a,0x67,0xa7,0xff,0x4b,0x67,0xa8,0xff,0x4c,0x68, + 0xa9,0xff,0x4c,0x69,0xaa,0xff,0x4d,0x6a,0xab,0xff,0x4e,0x6a,0xac,0xff,0x4e, + 0x6b,0xad,0xff,0x4f,0x6c,0xae,0xff,0x50,0x6d,0xae,0xff,0x51,0x6e,0xb0,0xff, + 0x94,0x52,0x6f,0xb1,0xff,0x0e,0x02,0x02,0x04,0xff,0x01,0x01,0x02,0xff,0x1e, + 0x37,0x6f,0xff,0x1f,0x38,0x70,0xff,0x1f,0x38,0x71,0xff,0x20,0x39,0x72,0xff, + 0x21,0x3a,0x73,0xff,0x22,0x3b,0x74,0xff,0x22,0x3c,0x75,0xff,0x23,0x3c,0x75, + 0xff,0x24,0x3d,0x77,0xff,0x25,0x3e,0x77,0xff,0x25,0x3f,0x78,0xff,0x26,0x3f, + 0x79,0xff,0x83,0x26,0x40,0x79,0xff,0x03,0x27,0x40,0x7a,0xff,0x27,0x41,0x7a, + 0xff,0x28,0x42,0x7b,0xff,0x82,0x29,0x43,0x7c,0xff,0x31,0x29,0x43,0x7d,0xff, + 0x2a,0x44,0x7e,0xff,0x2b,0x45,0x7f,0xff,0x2c,0x45,0x80,0xff,0x2d,0x46,0x81, + 0xff,0x2e,0x47,0x82,0xff,0x2e,0x48,0x83,0xff,0x2f,0x49,0x84,0xff,0x30,0x4a, + 0x85,0xff,0x31,0x4a,0x86,0xff,0x31,0x4b,0x87,0xff,0x32,0x4c,0x88,0xff,0x33, + 0x4d,0x89,0xff,0x34,0x4e,0x8a,0xff,0x34,0x4e,0x8b,0xff,0x35,0x50,0x8c,0xff, + 0x37,0x51,0x8d,0xff,0x38,0x52,0x8f,0xff,0x39,0x54,0x91,0xff,0x3a,0x55,0x93, + 0xff,0x3b,0x57,0x94,0xff,0x3c,0x58,0x96,0xff,0x3d,0x59,0x97,0xff,0x3e,0x5a, + 0x98,0xff,0x3f,0x5b,0x99,0xff,0x3f,0x5c,0x9a,0xff,0x40,0x5d,0x9b,0xff,0x41, + 0x5d,0x9c,0xff,0x42,0x5e,0x9d,0xff,0x42,0x5f,0x9e,0xff,0x43,0x60,0x9f,0xff, + 0x44,0x61,0xa0,0xff,0x45,0x61,0xa1,0xff,0x45,0x62,0xa2,0xff,0x46,0x63,0xa3, + 0xff,0x48,0x64,0xa4,0xff,0x48,0x65,0xa5,0xff,0x49,0x65,0xa6,0xff,0x4a,0x66, + 0xa7,0xff,0x4b,0x67,0xa7,0xff,0x4b,0x68,0xa8,0xff,0x4c,0x69,0xa9,0xff,0x4d, + 0x69,0xaa,0xff,0x4d,0x6a,0xab,0xff,0x4e,0x6b,0xac,0xff,0x4f,0x6c,0xad,0xff, + 0x50,0x6c,0xae,0xff,0x51,0x6e,0xb0,0xff,0x52,0x6e,0xb0,0xff,0x93,0x52,0x6f, + 0xb1,0xff,0x14,0x02,0x02,0x04,0xff,0x01,0x01,0x02,0xff,0x1e,0x37,0x6f,0xff, + 0x1e,0x37,0x70,0xff,0x1f,0x38,0x71,0xff,0x20,0x39,0x71,0xff,0x21,0x3a,0x72, + 0xff,0x21,0x3a,0x73,0xff,0x22,0x3b,0x74,0xff,0x23,0x3c,0x75,0xff,0x23,0x3d, + 0x76,0xff,0x24,0x3e,0x77,0xff,0x25,0x3e,0x78,0xff,0x27,0x40,0x79,0xff,0x26, + 0x40,0x7a,0xff,0x27,0x41,0x7b,0xff,0x28,0x41,0x7c,0xff,0x29,0x42,0x7d,0xff, + 0x29,0x43,0x7d,0xff,0x29,0x43,0x7c,0xff,0x82,0x29,0x43,0x7d,0xff,0x31,0x2a, + 0x44,0x7d,0xff,0x2b,0x45,0x7e,0xff,0x2b,0x45,0x7f,0xff,0x2c,0x45,0x80,0xff, + 0x2d,0x46,0x81,0xff,0x2d,0x47,0x82,0xff,0x2e,0x48,0x83,0xff,0x2f,0x48,0x84, + 0xff,0x30,0x49,0x85,0xff,0x30,0x4a,0x86,0xff,0x31,0x4b,0x87,0xff,0x32,0x4c, + 0x88,0xff,0x33,0x4c,0x89,0xff,0x33,0x4d,0x8a,0xff,0x34,0x4e,0x8b,0xff,0x35, + 0x4f,0x8b,0xff,0x36,0x50,0x8c,0xff,0x36,0x50,0x8d,0xff,0x37,0x51,0x8e,0xff, + 0x38,0x52,0x8f,0xff,0x38,0x53,0x90,0xff,0x3a,0x54,0x92,0xff,0x3b,0x56,0x94, + 0xff,0x3c,0x58,0x95,0xff,0x3d,0x59,0x97,0xff,0x3f,0x5a,0x98,0xff,0x40,0x5b, + 0x9a,0xff,0x41,0x5d,0x9b,0xff,0x41,0x5e,0x9d,0xff,0x42,0x5f,0x9e,0xff,0x43, + 0x60,0x9f,0xff,0x44,0x60,0xa0,0xff,0x44,0x61,0xa1,0xff,0x45,0x62,0xa1,0xff, + 0x46,0x63,0xa2,0xff,0x47,0x64,0xa3,0xff,0x48,0x64,0xa4,0xff,0x49,0x65,0xa5, + 0xff,0x4a,0x66,0xa6,0xff,0x4a,0x67,0xa7,0xff,0x4b,0x67,0xa8,0xff,0x4c,0x68, + 0xa9,0xff,0x4c,0x69,0xaa,0xff,0x4d,0x6a,0xab,0xff,0x4e,0x6b,0xac,0xff,0x4f, + 0x6b,0xad,0xff,0x4f,0x6c,0xae,0xff,0x51,0x6d,0xaf,0xff,0x51,0x6e,0xb0,0xff, + 0x93,0x52,0x6f,0xb1,0xff,0x16,0x02,0x02,0x04,0xff,0x01,0x01,0x02,0xff,0x1d, + 0x36,0x6e,0xff,0x1e,0x37,0x6f,0xff,0x1f,0x38,0x70,0xff,0x20,0x39,0x71,0xff, + 0x20,0x39,0x72,0xff,0x21,0x3a,0x73,0xff,0x22,0x3b,0x74,0xff,0x23,0x3d,0x76, + 0xff,0x2b,0x44,0x7a,0xff,0x35,0x4c,0x7f,0xff,0x39,0x50,0x80,0xff,0x36,0x4c, + 0x7d,0xff,0x26,0x40,0x7a,0xff,0x27,0x40,0x7b,0xff,0x28,0x41,0x7b,0xff,0x28, + 0x42,0x7c,0xff,0x29,0x43,0x7d,0xff,0x2a,0x44,0x7e,0xff,0x2a,0x44,0x7f,0xff, + 0x2b,0x45,0x80,0xff,0x83,0x2b,0x46,0x80,0xff,0x2e,0x2c,0x46,0x80,0xff,0x2d, + 0x46,0x81,0xff,0x2d,0x47,0x82,0xff,0x2e,0x47,0x83,0xff,0x2f,0x48,0x84,0xff, + 0x2f,0x49,0x84,0xff,0x30,0x4a,0x86,0xff,0x31,0x4b,0x86,0xff,0x32,0x4b,0x87, + 0xff,0x32,0x4c,0x88,0xff,0x33,0x4d,0x89,0xff,0x34,0x4e,0x8a,0xff,0x35,0x4e, + 0x8b,0xff,0x35,0x4f,0x8c,0xff,0x36,0x50,0x8d,0xff,0x37,0x51,0x8e,0xff,0x37, + 0x52,0x8f,0xff,0x38,0x52,0x90,0xff,0x39,0x53,0x91,0xff,0x3a,0x54,0x92,0xff, + 0x3a,0x55,0x93,0xff,0x3b,0x56,0x94,0xff,0x3c,0x56,0x95,0xff,0x3d,0x57,0x96, + 0xff,0x3e,0x59,0x97,0xff,0x3f,0x5b,0x9a,0xff,0x41,0x5d,0x9c,0xff,0x42,0x5e, + 0x9d,0xff,0x43,0x5f,0x9e,0xff,0x44,0x61,0xa0,0xff,0x45,0x62,0xa1,0xff,0x45, + 0x62,0xa2,0xff,0x47,0x63,0xa3,0xff,0x48,0x64,0xa4,0xff,0x49,0x65,0xa5,0xff, + 0x49,0x66,0xa6,0xff,0x4a,0x66,0xa7,0xff,0x4b,0x67,0xa8,0xff,0x4b,0x68,0xa9, + 0xff,0x4c,0x69,0xa9,0xff,0x4d,0x69,0xaa,0xff,0x4e,0x6a,0xab,0xff,0x4e,0x6b, + 0xac,0xff,0x4f,0x6c,0xad,0xff,0x50,0x6d,0xaf,0xff,0x51,0x6e,0xb0,0xff,0x93, + 0x52,0x6f,0xb1,0xff,0x18,0x02,0x02,0x04,0xff,0x01,0x01,0x02,0xff,0x1d,0x36, + 0x6e,0xff,0x1e,0x37,0x6f,0xff,0x1f,0x38,0x70,0xff,0x1f,0x38,0x71,0xff,0x20, + 0x39,0x72,0xff,0x21,0x3a,0x73,0xff,0x21,0x3b,0x74,0xff,0x2b,0x42,0x78,0xff, + 0x5b,0x6d,0x8f,0xff,0x8b,0xa2,0xb9,0xff,0x99,0xb1,0xc6,0xff,0x7c,0x8b,0xa6, + 0xff,0x32,0x49,0x7d,0xff,0x27,0x40,0x7a,0xff,0x27,0x41,0x7b,0xff,0x28,0x42, + 0x7c,0xff,0x29,0x42,0x7d,0xff,0x2a,0x43,0x7e,0xff,0x2a,0x44,0x7f,0xff,0x2b, + 0x45,0x80,0xff,0x2c,0x46,0x81,0xff,0x2d,0x47,0x82,0xff,0x83,0x2e,0x49,0x83, + 0xff,0x2d,0x2e,0x48,0x83,0xff,0x2e,0x48,0x84,0xff,0x2f,0x48,0x84,0xff,0x2f, + 0x49,0x84,0xff,0x30,0x49,0x85,0xff,0x31,0x4a,0x86,0xff,0x31,0x4b,0x87,0xff, + 0x32,0x4c,0x88,0xff,0x33,0x4d,0x89,0xff,0x34,0x4d,0x8a,0xff,0x34,0x4e,0x8b, + 0xff,0x35,0x4f,0x8c,0xff,0x36,0x50,0x8d,0xff,0x36,0x51,0x8e,0xff,0x37,0x51, + 0x8f,0xff,0x38,0x52,0x90,0xff,0x39,0x53,0x90,0xff,0x39,0x54,0x91,0xff,0x3a, + 0x54,0x92,0xff,0x3b,0x55,0x93,0xff,0x3c,0x56,0x94,0xff,0x3c,0x57,0x95,0xff, + 0x3d,0x58,0x96,0xff,0x3e,0x58,0x97,0xff,0x3e,0x59,0x98,0xff,0x3f,0x5a,0x99, + 0xff,0x40,0x5b,0x9a,0xff,0x42,0x5d,0x9c,0xff,0x43,0x5f,0x9f,0xff,0x44,0x61, + 0xa0,0xff,0x46,0x62,0xa2,0xff,0x47,0x64,0xa3,0xff,0x48,0x64,0xa4,0xff,0x49, + 0x65,0xa5,0xff,0x4a,0x66,0xa6,0xff,0x4a,0x67,0xa7,0xff,0x4b,0x68,0xa8,0xff, + 0x4c,0x68,0xa9,0xff,0x4d,0x69,0xaa,0xff,0x4d,0x6a,0xab,0xff,0x4e,0x6b,0xac, + 0xff,0x4f,0x6c,0xad,0xff,0x50,0x6d,0xaf,0xff,0x51,0x6e,0xaf,0xff,0x51,0x6e, + 0xb0,0xff,0x92,0x52,0x6f,0xb1,0xff,0x1d,0x02,0x02,0x04,0xff,0x01,0x01,0x02, + 0xff,0x1c,0x36,0x6e,0xff,0x1e,0x36,0x6f,0xff,0x1e,0x37,0x6f,0xff,0x1f,0x38, + 0x70,0xff,0x20,0x39,0x71,0xff,0x20,0x3a,0x72,0xff,0x21,0x3a,0x73,0xff,0x31, + 0x48,0x7b,0xff,0x78,0x8b,0xa7,0xff,0x97,0xc4,0xe3,0xff,0xad,0xc9,0xdf,0xff, + 0xb1,0xba,0xc4,0xff,0x66,0x73,0x93,0xff,0x26,0x40,0x7a,0xff,0x27,0x41,0x7b, + 0xff,0x28,0x41,0x7c,0xff,0x28,0x42,0x7d,0xff,0x29,0x43,0x7e,0xff,0x2a,0x44, + 0x7f,0xff,0x2b,0x45,0x7f,0xff,0x2b,0x46,0x80,0xff,0x2d,0x47,0x81,0xff,0x2d, + 0x48,0x83,0xff,0x2e,0x49,0x84,0xff,0x2f,0x4a,0x85,0xff,0x2f,0x4b,0x86,0xff, + 0x30,0x4c,0x87,0xff,0x83,0x31,0x4c,0x87,0xff,0x82,0x31,0x4b,0x87,0xff,0x26, + 0x32,0x4c,0x88,0xff,0x33,0x4c,0x89,0xff,0x33,0x4d,0x8a,0xff,0x34,0x4e,0x8a, + 0xff,0x35,0x4f,0x8b,0xff,0x35,0x50,0x8c,0xff,0x36,0x50,0x8d,0xff,0x37,0x51, + 0x8e,0xff,0x38,0x52,0x8f,0xff,0x38,0x53,0x90,0xff,0x39,0x53,0x91,0xff,0x3a, + 0x54,0x92,0xff,0x3b,0x55,0x93,0xff,0x3b,0x56,0x94,0xff,0x3c,0x57,0x95,0xff, + 0x3d,0x57,0x96,0xff,0x3d,0x58,0x97,0xff,0x3e,0x59,0x98,0xff,0x3f,0x5a,0x99, + 0xff,0x40,0x5b,0x99,0xff,0x40,0x5b,0x9a,0xff,0x41,0x5c,0x9b,0xff,0x42,0x5d, + 0x9c,0xff,0x43,0x5e,0x9d,0xff,0x44,0x60,0x9f,0xff,0x46,0x61,0xa1,0xff,0x47, + 0x63,0xa4,0xff,0x49,0x65,0xa5,0xff,0x4a,0x66,0xa6,0xff,0x4b,0x67,0xa8,0xff, + 0x4c,0x68,0xa9,0xff,0x4c,0x69,0xaa,0xff,0x4d,0x6a,0xab,0xff,0x4e,0x6b,0xac, + 0xff,0x4e,0x6b,0xad,0xff,0x50,0x6d,0xae,0xff,0x50,0x6d,0xaf,0xff,0x51,0x6e, + 0xb0,0xff,0x92,0x52,0x6f,0xb1,0xff,0x21,0x02,0x02,0x04,0xff,0x01,0x01,0x02, + 0xff,0x1c,0x35,0x6d,0xff,0x1d,0x36,0x6e,0xff,0x1e,0x37,0x6f,0xff,0x1f,0x38, + 0x70,0xff,0x20,0x38,0x71,0xff,0x20,0x39,0x72,0xff,0x21,0x3a,0x73,0xff,0x33, + 0x49,0x7b,0xff,0x83,0x8f,0xa3,0xff,0xa6,0xb9,0xc8,0xff,0xa9,0xb1,0xba,0xff, + 0xa5,0xab,0xb3,0xff,0x64,0x71,0x8d,0xff,0x26,0x40,0x79,0xff,0x27,0x40,0x7a, + 0xff,0x28,0x41,0x7b,0xff,0x28,0x42,0x7c,0xff,0x29,0x43,0x7d,0xff,0x2a,0x44, + 0x7e,0xff,0x2a,0x44,0x7f,0xff,0x2b,0x45,0x80,0xff,0x2c,0x47,0x81,0xff,0x2d, + 0x48,0x83,0xff,0x2e,0x49,0x83,0xff,0x2f,0x4a,0x84,0xff,0x2f,0x4a,0x85,0xff, + 0x30,0x4b,0x86,0xff,0x31,0x4c,0x87,0xff,0x32,0x4d,0x88,0xff,0x32,0x4e,0x89, + 0xff,0x33,0x4f,0x8a,0xff,0x82,0x33,0x4e,0x8a,0xff,0x25,0x33,0x4f,0x8b,0xff, + 0x34,0x4e,0x8a,0xff,0x34,0x4e,0x8b,0xff,0x35,0x4f,0x8b,0xff,0x35,0x4f,0x8c, + 0xff,0x36,0x50,0x8d,0xff,0x37,0x51,0x8e,0xff,0x37,0x52,0x8f,0xff,0x38,0x52, + 0x90,0xff,0x39,0x53,0x91,0xff,0x3a,0x54,0x92,0xff,0x3a,0x55,0x93,0xff,0x3b, + 0x56,0x93,0xff,0x3c,0x56,0x94,0xff,0x3c,0x57,0x95,0xff,0x3d,0x58,0x96,0xff, + 0x3e,0x59,0x97,0xff,0x3f,0x59,0x98,0xff,0x3f,0x5a,0x99,0xff,0x40,0x5b,0x9a, + 0xff,0x41,0x5c,0x9b,0xff,0x42,0x5d,0x9c,0xff,0x42,0x5d,0x9d,0xff,0x43,0x5e, + 0x9e,0xff,0x44,0x5f,0x9f,0xff,0x44,0x60,0xa0,0xff,0x45,0x61,0xa1,0xff,0x46, + 0x62,0xa2,0xff,0x47,0x64,0xa4,0xff,0x49,0x66,0xa6,0xff,0x4b,0x67,0xa8,0xff, + 0x4c,0x68,0xa9,0xff,0x4d,0x6a,0xab,0xff,0x4e,0x6b,0xac,0xff,0x4f,0x6c,0xad, + 0xff,0x50,0x6d,0xaf,0xff,0x51,0x6e,0xb0,0xff,0x92,0x52,0x6f,0xb1,0xff,0x24, + 0x02,0x02,0x04,0xff,0x01,0x01,0x02,0xff,0x1b,0x35,0x6d,0xff,0x1c,0x36,0x6e, + 0xff,0x1e,0x37,0x6f,0xff,0x1f,0x37,0x70,0xff,0x1f,0x38,0x71,0xff,0x20,0x39, + 0x72,0xff,0x21,0x3a,0x73,0xff,0x2d,0x44,0x78,0xff,0x66,0x71,0x8b,0xff,0x74, + 0x7c,0x8d,0xff,0x50,0x5e,0x7d,0xff,0x54,0x66,0x8b,0xff,0x41,0x56,0x7f,0xff, + 0x26,0x3f,0x79,0xff,0x26,0x40,0x7a,0xff,0x27,0x41,0x7b,0xff,0x28,0x42,0x7c, + 0xff,0x29,0x42,0x7d,0xff,0x29,0x43,0x7e,0xff,0x2a,0x44,0x7f,0xff,0x2b,0x45, + 0x80,0xff,0x2c,0x46,0x81,0xff,0x2d,0x47,0x82,0xff,0x2d,0x49,0x83,0xff,0x2e, + 0x49,0x84,0xff,0x2f,0x4a,0x85,0xff,0x30,0x4b,0x86,0xff,0x30,0x4c,0x87,0xff, + 0x31,0x4d,0x88,0xff,0x32,0x4e,0x89,0xff,0x33,0x4e,0x8a,0xff,0x34,0x4f,0x8b, + 0xff,0x34,0x50,0x8c,0xff,0x35,0x51,0x8d,0xff,0x85,0x36,0x51,0x8e,0xff,0x20, + 0x36,0x51,0x8f,0xff,0x37,0x52,0x8f,0xff,0x38,0x52,0x90,0xff,0x39,0x53,0x90, + 0xff,0x39,0x54,0x91,0xff,0x3a,0x54,0x92,0xff,0x3b,0x55,0x93,0xff,0x3b,0x56, + 0x94,0xff,0x3c,0x57,0x95,0xff,0x3d,0x58,0x96,0xff,0x3e,0x58,0x97,0xff,0x3e, + 0x59,0x98,0xff,0x3f,0x5a,0x99,0xff,0x40,0x5b,0x9a,0xff,0x41,0x5c,0x9b,0xff, + 0x41,0x5c,0x9c,0xff,0x42,0x5d,0x9d,0xff,0x43,0x5e,0x9e,0xff,0x44,0x5f,0x9e, + 0xff,0x44,0x60,0x9f,0xff,0x45,0x60,0xa0,0xff,0x45,0x61,0xa1,0xff,0x45,0x62, + 0xa2,0xff,0x46,0x63,0xa3,0xff,0x47,0x63,0xa4,0xff,0x49,0x65,0xa6,0xff,0x4a, + 0x67,0xa8,0xff,0x4b,0x68,0xa9,0xff,0x4d,0x6a,0xac,0xff,0x4f,0x6c,0xad,0xff, + 0x50,0x6d,0xaf,0xff,0x51,0x6e,0xb0,0xff,0x91,0x52,0x6f,0xb1,0xff,0x28,0x02, + 0x02,0x04,0xff,0x01,0x01,0x02,0xff,0x1b,0x35,0x6d,0xff,0x1c,0x35,0x6e,0xff, + 0x1d,0x36,0x6e,0xff,0x1e,0x37,0x6f,0xff,0x1f,0x38,0x70,0xff,0x20,0x39,0x71, + 0xff,0x21,0x3a,0x73,0xff,0x28,0x40,0x75,0xff,0x28,0x40,0x76,0xff,0x2a,0x43, + 0x78,0xff,0x2b,0x43,0x79,0xff,0x2b,0x43,0x7a,0xff,0x2d,0x44,0x7a,0xff,0x2a, + 0x43,0x7b,0xff,0x26,0x40,0x7a,0xff,0x27,0x41,0x7b,0xff,0x28,0x41,0x7c,0xff, + 0x28,0x42,0x7d,0xff,0x29,0x43,0x7e,0xff,0x2a,0x44,0x7e,0xff,0x2b,0x44,0x7f, + 0xff,0x2b,0x45,0x80,0xff,0x2c,0x47,0x82,0xff,0x2d,0x48,0x83,0xff,0x2e,0x49, + 0x84,0xff,0x2f,0x4a,0x85,0xff,0x2f,0x4b,0x86,0xff,0x30,0x4c,0x87,0xff,0x31, + 0x4c,0x87,0xff,0x32,0x4d,0x88,0xff,0x33,0x4e,0x89,0xff,0x33,0x4f,0x8a,0xff, + 0x34,0x50,0x8b,0xff,0x35,0x51,0x8d,0xff,0x35,0x51,0x8e,0xff,0x36,0x52,0x8e, + 0xff,0x37,0x53,0x8f,0xff,0x38,0x54,0x90,0xff,0x84,0x38,0x54,0x91,0xff,0x02, + 0x39,0x54,0x91,0xff,0x39,0x54,0x92,0xff,0x82,0x3a,0x55,0x93,0xff,0x1b,0x3b, + 0x56,0x94,0xff,0x3c,0x56,0x95,0xff,0x3d,0x57,0x96,0xff,0x3d,0x58,0x97,0xff, + 0x3e,0x59,0x98,0xff,0x3f,0x5a,0x98,0xff,0x40,0x5a,0x99,0xff,0x40,0x5b,0x9a, + 0xff,0x41,0x5c,0x9b,0xff,0x42,0x5d,0x9c,0xff,0x42,0x5e,0x9d,0xff,0x43,0x5e, + 0x9e,0xff,0x44,0x5f,0x9f,0xff,0x45,0x60,0xa0,0xff,0x45,0x61,0xa1,0xff,0x45, + 0x61,0xa2,0xff,0x46,0x62,0xa3,0xff,0x47,0x63,0xa4,0xff,0x47,0x64,0xa5,0xff, + 0x48,0x65,0xa6,0xff,0x49,0x66,0xa7,0xff,0x4a,0x67,0xa8,0xff,0x4b,0x68,0xa9, + 0xff,0x4d,0x69,0xab,0xff,0x4e,0x6b,0xad,0xff,0x4f,0x6c,0xae,0xff,0x50,0x6d, + 0xaf,0xff,0x82,0x51,0x6e,0xb0,0xff,0x8d,0x52,0x6f,0xb1,0xff,0x2c,0x02,0x02, + 0x04,0xff,0x01,0x01,0x02,0xff,0x1b,0x34,0x6c,0xff,0x1c,0x35,0x6d,0xff,0x1d, + 0x36,0x6e,0xff,0x1e,0x37,0x6f,0xff,0x1f,0x38,0x70,0xff,0x1f,0x38,0x71,0xff, + 0x25,0x3d,0x74,0xff,0x3d,0x50,0x7b,0xff,0x3a,0x4e,0x7a,0xff,0x43,0x55,0x7e, + 0xff,0x43,0x55,0x7f,0xff,0x43,0x56,0x80,0xff,0x42,0x55,0x7e,0xff,0x36,0x4b, + 0x7c,0xff,0x26,0x3f,0x79,0xff,0x27,0x40,0x7a,0xff,0x27,0x41,0x7b,0xff,0x28, + 0x42,0x7c,0xff,0x29,0x43,0x7d,0xff,0x2a,0x43,0x7e,0xff,0x2a,0x44,0x7f,0xff, + 0x2b,0x45,0x80,0xff,0x2c,0x47,0x81,0xff,0x2d,0x48,0x82,0xff,0x2e,0x49,0x83, + 0xff,0x2e,0x4a,0x84,0xff,0x2f,0x4a,0x85,0xff,0x30,0x4b,0x86,0xff,0x31,0x4c, + 0x87,0xff,0x31,0x4d,0x88,0xff,0x32,0x4e,0x89,0xff,0x33,0x4f,0x8a,0xff,0x34, + 0x4f,0x8b,0xff,0x34,0x50,0x8c,0xff,0x35,0x51,0x8d,0xff,0x36,0x52,0x8e,0xff, + 0x37,0x53,0x8f,0xff,0x37,0x53,0x90,0xff,0x38,0x54,0x91,0xff,0x39,0x55,0x92, + 0xff,0x3a,0x56,0x93,0xff,0x3a,0x56,0x94,0xff,0x82,0x3b,0x57,0x94,0xff,0x01, + 0x3b,0x58,0x95,0xff,0x82,0x3c,0x57,0x95,0xff,0x01,0x3d,0x57,0x95,0xff,0x82, + 0x3d,0x58,0x96,0xff,0x15,0x3e,0x59,0x97,0xff,0x3f,0x59,0x98,0xff,0x3f,0x5a, + 0x99,0xff,0x40,0x5b,0x9a,0xff,0x41,0x5c,0x9b,0xff,0x42,0x5d,0x9c,0xff,0x42, + 0x5d,0x9d,0xff,0x43,0x5e,0x9e,0xff,0x44,0x5f,0x9f,0xff,0x44,0x60,0xa0,0xff, + 0x45,0x60,0xa1,0xff,0x45,0x61,0xa2,0xff,0x45,0x62,0xa2,0xff,0x46,0x63,0xa3, + 0xff,0x47,0x64,0xa4,0xff,0x48,0x64,0xa5,0xff,0x48,0x65,0xa6,0xff,0x4a,0x66, + 0xa8,0xff,0x4a,0x67,0xa9,0xff,0x4b,0x68,0xaa,0xff,0x4c,0x69,0xab,0xff,0x83, + 0x4d,0x6a,0xac,0xff,0x01,0x4e,0x6b,0xad,0xff,0x82,0x50,0x6d,0xaf,0xff,0x83, + 0x51,0x6e,0xb0,0xff,0x88,0x52,0x6f,0xb1,0xff,0x29,0x02,0x02,0x04,0xff,0x01, + 0x01,0x02,0xff,0x1b,0x34,0x6c,0xff,0x1b,0x35,0x6d,0xff,0x1c,0x36,0x6e,0xff, + 0x1e,0x37,0x6f,0xff,0x1e,0x37,0x70,0xff,0x1f,0x38,0x71,0xff,0x23,0x3c,0x73, + 0xff,0x33,0x48,0x78,0xff,0x34,0x48,0x76,0xff,0x39,0x4a,0x73,0xff,0x3e,0x50, + 0x79,0xff,0x3f,0x51,0x7a,0xff,0x39,0x4b,0x77,0xff,0x2e,0x44,0x76,0xff,0x26, + 0x3f,0x79,0xff,0x26,0x40,0x7a,0xff,0x27,0x41,0x7b,0xff,0x28,0x42,0x7c,0xff, + 0x29,0x42,0x7d,0xff,0x29,0x43,0x7e,0xff,0x2a,0x44,0x7f,0xff,0x2b,0x45,0x80, + 0xff,0x2c,0x46,0x81,0xff,0x2d,0x47,0x82,0xff,0x2d,0x49,0x83,0xff,0x2e,0x49, + 0x84,0xff,0x2f,0x4a,0x85,0xff,0x30,0x4b,0x86,0xff,0x30,0x4c,0x87,0xff,0x31, + 0x4c,0x88,0xff,0x32,0x4d,0x89,0xff,0x33,0x4e,0x8a,0xff,0x33,0x4f,0x8b,0xff, + 0x34,0x50,0x8b,0xff,0x35,0x51,0x8d,0xff,0x36,0x51,0x8e,0xff,0x36,0x52,0x8f, + 0xff,0x37,0x53,0x90,0xff,0x38,0x54,0x91,0xff,0x82,0x39,0x55,0x92,0xff,0x05, + 0x3a,0x56,0x93,0xff,0x3b,0x57,0x94,0xff,0x3c,0x58,0x95,0xff,0x3c,0x59,0x96, + 0xff,0x3d,0x59,0x97,0xff,0x82,0x3e,0x5a,0x98,0xff,0x01,0x3e,0x5a,0x99,0xff, + 0x82,0x3f,0x5a,0x98,0xff,0x15,0x3f,0x5a,0x99,0xff,0x3f,0x5b,0x9a,0xff,0x40, + 0x5b,0x9a,0xff,0x41,0x5b,0x9b,0xff,0x41,0x5c,0x9c,0xff,0x42,0x5d,0x9d,0xff, + 0x43,0x5e,0x9d,0xff,0x43,0x5f,0x9e,0xff,0x44,0x5f,0x9f,0xff,0x45,0x60,0xa0, + 0xff,0x45,0x61,0xa1,0xff,0x45,0x62,0xa2,0xff,0x46,0x62,0xa3,0xff,0x47,0x63, + 0xa4,0xff,0x48,0x64,0xa5,0xff,0x49,0x65,0xa6,0xff,0x49,0x66,0xa7,0xff,0x4a, + 0x67,0xa8,0xff,0x4b,0x68,0xa9,0xff,0x4c,0x69,0xaa,0xff,0x4c,0x69,0xab,0xff, + 0x85,0x4d,0x6a,0xac,0xff,0x82,0x4e,0x6b,0xad,0xff,0x02,0x4f,0x6c,0xae,0xff, + 0x50,0x6d,0xaf,0xff,0x83,0x51,0x6e,0xb0,0xff,0x84,0x52,0x6f,0xb1,0xff,0x34, + 0x02,0x02,0x04,0xff,0x01,0x01,0x02,0xff,0x1a,0x34,0x6c,0xff,0x1b,0x35,0x6c, + 0xff,0x1c,0x35,0x6d,0xff,0x1d,0x36,0x6e,0xff,0x1e,0x37,0x6f,0xff,0x1f,0x38, + 0x70,0xff,0x20,0x39,0x71,0xff,0x20,0x39,0x72,0xff,0x21,0x3a,0x73,0xff,0x22, + 0x3b,0x74,0xff,0x23,0x3c,0x75,0xff,0x23,0x3d,0x76,0xff,0x24,0x3d,0x77,0xff, + 0x25,0x3e,0x78,0xff,0x25,0x3f,0x79,0xff,0x26,0x40,0x7a,0xff,0x27,0x40,0x7b, + 0xff,0x28,0x41,0x7c,0xff,0x28,0x42,0x7d,0xff,0x29,0x43,0x7d,0xff,0x2a,0x44, + 0x7e,0xff,0x2b,0x44,0x7f,0xff,0x2c,0x46,0x81,0xff,0x2c,0x47,0x82,0xff,0x2d, + 0x48,0x83,0xff,0x2e,0x49,0x84,0xff,0x2f,0x4a,0x85,0xff,0x2f,0x4b,0x85,0xff, + 0x30,0x4b,0x86,0xff,0x31,0x4c,0x87,0xff,0x32,0x4d,0x88,0xff,0x33,0x4e,0x89, + 0xff,0x33,0x4f,0x8a,0xff,0x34,0x50,0x8b,0xff,0x35,0x50,0x8c,0xff,0x35,0x51, + 0x8d,0xff,0x36,0x52,0x8e,0xff,0x37,0x53,0x8f,0xff,0x38,0x54,0x90,0xff,0x38, + 0x54,0x91,0xff,0x39,0x55,0x92,0xff,0x3a,0x56,0x93,0xff,0x3a,0x57,0x94,0xff, + 0x3b,0x58,0x95,0xff,0x3c,0x58,0x96,0xff,0x3d,0x59,0x97,0xff,0x3d,0x5a,0x98, + 0xff,0x3e,0x5b,0x99,0xff,0x3f,0x5c,0x9a,0xff,0x40,0x5c,0x9b,0xff,0x82,0x40, + 0x5d,0x9b,0xff,0x05,0x40,0x5d,0x9c,0xff,0x41,0x5c,0x9b,0xff,0x41,0x5d,0x9c, + 0xff,0x42,0x5d,0x9c,0xff,0x42,0x5e,0x9d,0xff,0x82,0x43,0x5e,0x9e,0xff,0x0d, + 0x44,0x5f,0x9f,0xff,0x45,0x60,0xa0,0xff,0x45,0x61,0xa1,0xff,0x45,0x61,0xa2, + 0xff,0x46,0x62,0xa3,0xff,0x46,0x63,0xa4,0xff,0x47,0x64,0xa5,0xff,0x48,0x65, + 0xa6,0xff,0x49,0x66,0xa7,0xff,0x4a,0x67,0xa8,0xff,0x4b,0x67,0xa9,0xff,0x4b, + 0x68,0xaa,0xff,0x4c,0x69,0xab,0xff,0x89,0x4d,0x6a,0xac,0xff,0x82,0x4e,0x6b, + 0xad,0xff,0x01,0x4f,0x6c,0xae,0xff,0x82,0x50,0x6d,0xaf,0xff,0x82,0x51,0x6e, + 0xb0,0xff,0x3e,0x02,0x02,0x04,0xff,0x01,0x01,0x02,0xff,0x1a,0x34,0x6b,0xff, + 0x1b,0x34,0x6c,0xff,0x1b,0x35,0x6d,0xff,0x1d,0x36,0x6e,0xff,0x1e,0x37,0x6f, + 0xff,0x1f,0x38,0x70,0xff,0x1f,0x38,0x71,0xff,0x20,0x39,0x72,0xff,0x21,0x3a, + 0x73,0xff,0x21,0x3b,0x74,0xff,0x22,0x3b,0x75,0xff,0x23,0x3c,0x76,0xff,0x24, + 0x3d,0x77,0xff,0x24,0x3e,0x77,0xff,0x25,0x3f,0x78,0xff,0x26,0x3f,0x79,0xff, + 0x27,0x40,0x7a,0xff,0x27,0x41,0x7b,0xff,0x28,0x42,0x7c,0xff,0x29,0x43,0x7d, + 0xff,0x29,0x43,0x7e,0xff,0x2a,0x44,0x7f,0xff,0x2b,0x45,0x80,0xff,0x2c,0x46, + 0x81,0xff,0x2d,0x48,0x82,0xff,0x2e,0x49,0x83,0xff,0x2e,0x4a,0x84,0xff,0x2f, + 0x4a,0x85,0xff,0x30,0x4b,0x86,0xff,0x30,0x4c,0x87,0xff,0x31,0x4d,0x88,0xff, + 0x32,0x4d,0x89,0xff,0x33,0x4e,0x8a,0xff,0x34,0x4f,0x8b,0xff,0x34,0x50,0x8c, + 0xff,0x35,0x51,0x8d,0xff,0x36,0x52,0x8e,0xff,0x37,0x53,0x8f,0xff,0x37,0x53, + 0x90,0xff,0x38,0x54,0x91,0xff,0x39,0x55,0x92,0xff,0x39,0x56,0x93,0xff,0x3a, + 0x56,0x94,0xff,0x3b,0x57,0x95,0xff,0x3c,0x58,0x96,0xff,0x3c,0x59,0x96,0xff, + 0x3d,0x5a,0x97,0xff,0x3e,0x5a,0x98,0xff,0x3f,0x5b,0x99,0xff,0x3f,0x5c,0x9a, + 0xff,0x40,0x5d,0x9b,0xff,0x41,0x5e,0x9c,0xff,0x41,0x5e,0x9d,0xff,0x42,0x5f, + 0x9e,0xff,0x43,0x60,0x9f,0xff,0x43,0x5f,0x9f,0xff,0x43,0x60,0x9f,0xff,0x44, + 0x5f,0x9f,0xff,0x44,0x60,0x9f,0xff,0x45,0x60,0xa0,0xff,0x83,0x45,0x61,0xa1, + 0xff,0x0a,0x45,0x62,0xa2,0xff,0x46,0x63,0xa3,0xff,0x47,0x63,0xa4,0xff,0x48, + 0x64,0xa5,0xff,0x49,0x66,0xa7,0xff,0x4a,0x66,0xa8,0xff,0x4a,0x67,0xa9,0xff, + 0x4b,0x68,0xaa,0xff,0x4c,0x69,0xab,0xff,0x4d,0x69,0xab,0xff,0x8d,0x4d,0x6a, + 0xac,0xff,0x82,0x4e,0x6b,0xad,0xff,0x40,0x02,0x02,0x04,0xff,0x01,0x01,0x02, + 0xff,0x1a,0x33,0x6b,0xff,0x1a,0x34,0x6c,0xff,0x1b,0x35,0x6d,0xff,0x1c,0x36, + 0x6e,0xff,0x1e,0x36,0x6f,0xff,0x1e,0x37,0x70,0xff,0x1f,0x38,0x71,0xff,0x20, + 0x39,0x71,0xff,0x21,0x3a,0x72,0xff,0x21,0x3a,0x73,0xff,0x22,0x3b,0x74,0xff, + 0x23,0x3c,0x75,0xff,0x23,0x3d,0x76,0xff,0x24,0x3d,0x77,0xff,0x25,0x3e,0x78, + 0xff,0x26,0x3f,0x79,0xff,0x26,0x40,0x7a,0xff,0x27,0x41,0x7b,0xff,0x28,0x41, + 0x7c,0xff,0x29,0x42,0x7d,0xff,0x29,0x43,0x7e,0xff,0x2a,0x44,0x7f,0xff,0x2b, + 0x45,0x80,0xff,0x2c,0x46,0x81,0xff,0x2d,0x47,0x82,0xff,0x2d,0x48,0x83,0xff, + 0x2e,0x49,0x84,0xff,0x2f,0x4a,0x85,0xff,0x30,0x4b,0x86,0xff,0x30,0x4c,0x87, + 0xff,0x31,0x4c,0x88,0xff,0x32,0x4d,0x89,0xff,0x32,0x4e,0x8a,0xff,0x33,0x4f, + 0x8b,0xff,0x34,0x50,0x8b,0xff,0x35,0x51,0x8c,0xff,0x36,0x51,0x8d,0xff,0x36, + 0x52,0x8f,0xff,0x37,0x53,0x90,0xff,0x38,0x54,0x90,0xff,0x39,0x55,0x91,0xff, + 0x39,0x55,0x92,0xff,0x3a,0x56,0x93,0xff,0x3b,0x57,0x94,0xff,0x3b,0x58,0x95, + 0xff,0x3c,0x58,0x96,0xff,0x3d,0x59,0x97,0xff,0x3e,0x5a,0x98,0xff,0x3e,0x5b, + 0x99,0xff,0x3f,0x5c,0x9a,0xff,0x40,0x5c,0x9b,0xff,0x41,0x5d,0x9c,0xff,0x41, + 0x5e,0x9d,0xff,0x42,0x5f,0x9e,0xff,0x43,0x60,0x9f,0xff,0x43,0x60,0xa0,0xff, + 0x44,0x61,0xa0,0xff,0x45,0x62,0xa1,0xff,0x46,0x63,0xa2,0xff,0x46,0x62,0xa2, + 0xff,0x47,0x63,0xa3,0xff,0x47,0x62,0xa2,0xff,0x82,0x46,0x63,0xa3,0xff,0x01, + 0x47,0x63,0xa4,0xff,0x82,0x47,0x64,0xa5,0xff,0x06,0x49,0x65,0xa6,0xff,0x49, + 0x66,0xa7,0xff,0x4a,0x67,0xa8,0xff,0x4b,0x68,0xa9,0xff,0x4c,0x68,0xaa,0xff, + 0x4c,0x69,0xab,0xff,0x8f,0x4d,0x6a,0xac,0xff,0x42,0x02,0x02,0x04,0xff,0x01, + 0x01,0x02,0xff,0x19,0x33,0x6a,0xff,0x1a,0x34,0x6b,0xff,0x1b,0x35,0x6c,0xff, + 0x1c,0x35,0x6d,0xff,0x1d,0x36,0x6e,0xff,0x1e,0x37,0x6f,0xff,0x1f,0x38,0x70, + 0xff,0x1f,0x39,0x71,0xff,0x20,0x39,0x72,0xff,0x21,0x3a,0x73,0xff,0x22,0x3b, + 0x74,0xff,0x23,0x3c,0x75,0xff,0x23,0x3c,0x76,0xff,0x24,0x3d,0x77,0xff,0x25, + 0x3e,0x78,0xff,0x25,0x3f,0x79,0xff,0x26,0x40,0x7a,0xff,0x27,0x40,0x7a,0xff, + 0x28,0x41,0x7b,0xff,0x28,0x42,0x7c,0xff,0x29,0x43,0x7d,0xff,0x2a,0x44,0x7e, + 0xff,0x2b,0x45,0x80,0xff,0x2c,0x46,0x81,0xff,0x2c,0x47,0x82,0xff,0x2d,0x48, + 0x83,0xff,0x2e,0x49,0x83,0xff,0x2f,0x4a,0x84,0xff,0x2f,0x4b,0x85,0xff,0x30, + 0x4b,0x86,0xff,0x31,0x4c,0x87,0xff,0x31,0x4d,0x88,0xff,0x32,0x4e,0x89,0xff, + 0x33,0x4e,0x8a,0xff,0x34,0x4f,0x8b,0xff,0x35,0x50,0x8c,0xff,0x35,0x51,0x8d, + 0xff,0x36,0x52,0x8e,0xff,0x37,0x53,0x8f,0xff,0x38,0x53,0x90,0xff,0x38,0x54, + 0x91,0xff,0x39,0x55,0x92,0xff,0x3a,0x56,0x93,0xff,0x3a,0x57,0x94,0xff,0x3b, + 0x57,0x95,0xff,0x3c,0x58,0x96,0xff,0x3d,0x59,0x97,0xff,0x3d,0x5a,0x98,0xff, + 0x3e,0x5b,0x99,0xff,0x3f,0x5b,0x99,0xff,0x3f,0x5c,0x9a,0xff,0x40,0x5d,0x9b, + 0xff,0x41,0x5e,0x9c,0xff,0x42,0x5f,0x9d,0xff,0x42,0x5f,0x9e,0xff,0x43,0x60, + 0x9f,0xff,0x44,0x61,0xa0,0xff,0x45,0x62,0xa1,0xff,0x45,0x62,0xa2,0xff,0x47, + 0x63,0xa3,0xff,0x48,0x64,0xa4,0xff,0x49,0x65,0xa5,0xff,0x49,0x65,0xa6,0xff, + 0x49,0x65,0xa5,0xff,0x83,0x49,0x65,0xa6,0xff,0x06,0x49,0x66,0xa7,0xff,0x4a, + 0x66,0xa7,0xff,0x4a,0x67,0xa8,0xff,0x4b,0x67,0xa9,0xff,0x4b,0x68,0xaa,0xff, + 0x4c,0x69,0xab,0xff,0x8f,0x4d,0x6a,0xac,0xff,0x44,0x02,0x02,0x04,0xff,0x01, + 0x01,0x02,0xff,0x19,0x33,0x6a,0xff,0x1a,0x34,0x6b,0xff,0x1b,0x34,0x6c,0xff, + 0x1b,0x35,0x6d,0xff,0x1d,0x36,0x6e,0xff,0x1e,0x37,0x6f,0xff,0x1f,0x37,0x70, + 0xff,0x1f,0x38,0x71,0xff,0x20,0x39,0x72,0xff,0x21,0x3a,0x73,0xff,0x21,0x3b, + 0x74,0xff,0x22,0x3b,0x75,0xff,0x23,0x3c,0x75,0xff,0x24,0x3d,0x76,0xff,0x24, + 0x3e,0x77,0xff,0x25,0x3e,0x78,0xff,0x26,0x3f,0x79,0xff,0x27,0x40,0x7a,0xff, + 0x27,0x41,0x7b,0xff,0x28,0x42,0x7c,0xff,0x29,0x42,0x7d,0xff,0x29,0x43,0x7e, + 0xff,0x2b,0x45,0x7f,0xff,0x2b,0x45,0x80,0xff,0x2c,0x46,0x81,0xff,0x2d,0x47, + 0x82,0xff,0x2e,0x49,0x83,0xff,0x2e,0x49,0x84,0xff,0x2f,0x4a,0x85,0xff,0x30, + 0x4b,0x86,0xff,0x30,0x4c,0x87,0xff,0x31,0x4d,0x88,0xff,0x32,0x4d,0x89,0xff, + 0x33,0x4e,0x8a,0xff,0x34,0x4f,0x8b,0xff,0x34,0x50,0x8c,0xff,0x35,0x51,0x8d, + 0xff,0x36,0x52,0x8e,0xff,0x36,0x52,0x8f,0xff,0x37,0x53,0x90,0xff,0x38,0x54, + 0x91,0xff,0x39,0x55,0x92,0xff,0x39,0x56,0x93,0xff,0x3a,0x56,0x93,0xff,0x3b, + 0x57,0x94,0xff,0x3c,0x58,0x95,0xff,0x3c,0x59,0x96,0xff,0x3d,0x59,0x97,0xff, + 0x3e,0x5a,0x98,0xff,0x3f,0x5b,0x99,0xff,0x3f,0x5c,0x9a,0xff,0x40,0x5d,0x9b, + 0xff,0x41,0x5d,0x9c,0xff,0x41,0x5e,0x9d,0xff,0x42,0x5f,0x9e,0xff,0x43,0x60, + 0x9f,0xff,0x44,0x60,0xa0,0xff,0x44,0x61,0xa1,0xff,0x45,0x62,0xa2,0xff,0x46, + 0x63,0xa3,0xff,0x47,0x64,0xa4,0xff,0x48,0x64,0xa4,0xff,0x49,0x65,0xa5,0xff, + 0x4a,0x66,0xa6,0xff,0x4a,0x67,0xa7,0xff,0x4b,0x68,0xa8,0xff,0x83,0x4c,0x68, + 0xa9,0xff,0x05,0x4b,0x68,0xa9,0xff,0x4c,0x68,0xaa,0xff,0x4c,0x69,0xaa,0xff, + 0x4c,0x69,0xab,0xff,0x4d,0x6a,0xab,0xff,0x8e,0x4d,0x6a,0xac,0xff,0x39,0x02, + 0x02,0x04,0xff,0x01,0x01,0x02,0xff,0x19,0x32,0x6a,0xff,0x1a,0x33,0x6b,0xff, + 0x1a,0x34,0x6c,0xff,0x1b,0x35,0x6d,0xff,0x1c,0x36,0x6e,0xff,0x1d,0x36,0x6e, + 0xff,0x1e,0x37,0x6f,0xff,0x1f,0x38,0x70,0xff,0x20,0x39,0x71,0xff,0x20,0x39, + 0x72,0xff,0x21,0x3a,0x73,0xff,0x22,0x3b,0x74,0xff,0x23,0x3c,0x75,0xff,0x23, + 0x3d,0x76,0xff,0x24,0x3d,0x77,0xff,0x25,0x3e,0x78,0xff,0x26,0x3f,0x79,0xff, + 0x26,0x40,0x7a,0xff,0x27,0x41,0x7b,0xff,0x28,0x41,0x7c,0xff,0x28,0x42,0x7d, + 0xff,0x29,0x43,0x7e,0xff,0x2a,0x44,0x7f,0xff,0x2b,0x45,0x80,0xff,0x2c,0x46, + 0x81,0xff,0x2d,0x47,0x82,0xff,0x2d,0x48,0x83,0xff,0x2e,0x49,0x84,0xff,0x2f, + 0x4a,0x85,0xff,0x2f,0x4b,0x86,0xff,0x30,0x4c,0x87,0xff,0x31,0x4c,0x88,0xff, + 0x32,0x4d,0x88,0xff,0x32,0x4e,0x89,0xff,0x33,0x4f,0x8a,0xff,0x34,0x50,0x8b, + 0xff,0x35,0x50,0x8c,0xff,0x36,0x51,0x8d,0xff,0x36,0x52,0x8e,0xff,0x37,0x53, + 0x8f,0xff,0x38,0x54,0x90,0xff,0x38,0x54,0x91,0xff,0x39,0x55,0x92,0xff,0x3a, + 0x56,0x93,0xff,0x3b,0x57,0x94,0xff,0x3b,0x58,0x95,0xff,0x3c,0x58,0x96,0xff, + 0x3d,0x59,0x97,0xff,0x3e,0x5a,0x98,0xff,0x3e,0x5b,0x99,0xff,0x3f,0x5c,0x9a, + 0xff,0x40,0x5c,0x9b,0xff,0x40,0x5d,0x9c,0xff,0x41,0x5e,0x9d,0xff,0x42,0x5f, + 0x9e,0xff,0x82,0x43,0x60,0x9f,0xff,0x0c,0x44,0x61,0xa0,0xff,0x45,0x62,0xa1, + 0xff,0x46,0x63,0xa2,0xff,0x47,0x63,0xa3,0xff,0x48,0x64,0xa4,0xff,0x49,0x65, + 0xa5,0xff,0x49,0x66,0xa6,0xff,0x4a,0x67,0xa7,0xff,0x4b,0x67,0xa8,0xff,0x4c, + 0x69,0xa9,0xff,0x4d,0x69,0xaa,0xff,0x4e,0x6a,0xab,0xff,0x82,0x4e,0x6b,0xac, + 0xff,0x85,0x4e,0x6b,0xad,0xff,0x8c,0x4d,0x6a,0xac,0xff,0x4b,0x02,0x02,0x04, + 0xff,0x01,0x01,0x02,0xff,0x19,0x32,0x69,0xff,0x19,0x33,0x6a,0xff,0x1a,0x34, + 0x6b,0xff,0x1b,0x34,0x6c,0xff,0x1c,0x35,0x6d,0xff,0x1d,0x36,0x6e,0xff,0x1e, + 0x37,0x6f,0xff,0x26,0x3d,0x71,0xff,0x4b,0x57,0x74,0xff,0x60,0x64,0x74,0xff, + 0x53,0x5a,0x71,0xff,0x4f,0x57,0x70,0xff,0x29,0x3f,0x73,0xff,0x23,0x3c,0x76, + 0xff,0x24,0x3d,0x77,0xff,0x25,0x3e,0x78,0xff,0x25,0x3f,0x79,0xff,0x26,0x40, + 0x79,0xff,0x27,0x40,0x7a,0xff,0x27,0x41,0x7b,0xff,0x28,0x42,0x7c,0xff,0x29, + 0x43,0x7d,0xff,0x2a,0x44,0x7f,0xff,0x2b,0x45,0x80,0xff,0x2b,0x46,0x81,0xff, + 0x2c,0x47,0x82,0xff,0x2d,0x48,0x82,0xff,0x2e,0x49,0x83,0xff,0x2e,0x4a,0x84, + 0xff,0x2f,0x4a,0x85,0xff,0x30,0x4b,0x86,0xff,0x31,0x4c,0x87,0xff,0x31,0x4d, + 0x88,0xff,0x32,0x4e,0x89,0xff,0x33,0x4e,0x8a,0xff,0x34,0x4f,0x8b,0xff,0x35, + 0x50,0x8c,0xff,0x35,0x51,0x8d,0xff,0x36,0x52,0x8e,0xff,0x37,0x52,0x8f,0xff, + 0x38,0x53,0x90,0xff,0x38,0x54,0x91,0xff,0x39,0x55,0x92,0xff,0x3a,0x56,0x93, + 0xff,0x3a,0x57,0x94,0xff,0x3b,0x57,0x95,0xff,0x3c,0x58,0x96,0xff,0x3d,0x59, + 0x97,0xff,0x3d,0x5a,0x98,0xff,0x3e,0x5a,0x98,0xff,0x3f,0x5b,0x99,0xff,0x3f, + 0x5c,0x9a,0xff,0x40,0x5d,0x9b,0xff,0x41,0x5e,0x9c,0xff,0x42,0x5e,0x9d,0xff, + 0x42,0x5f,0x9e,0xff,0x43,0x60,0x9f,0xff,0x44,0x61,0xa0,0xff,0x45,0x62,0xa1, + 0xff,0x45,0x62,0xa2,0xff,0x47,0x63,0xa3,0xff,0x48,0x64,0xa4,0xff,0x48,0x65, + 0xa5,0xff,0x49,0x66,0xa6,0xff,0x4a,0x66,0xa7,0xff,0x4b,0x67,0xa7,0xff,0x4c, + 0x68,0xa8,0xff,0x4d,0x69,0xaa,0xff,0x4d,0x6a,0xab,0xff,0x4e,0x6b,0xac,0xff, + 0x4f,0x6c,0xad,0xff,0x4f,0x6c,0xae,0xff,0x50,0x6d,0xaf,0xff,0x82,0x51,0x6e, + 0xb0,0xff,0x82,0x50,0x6d,0xaf,0xff,0x01,0x4f,0x6c,0xae,0xff,0x82,0x4e,0x6b, + 0xad,0xff,0x88,0x4d,0x6a,0xac,0xff,0x4d,0x02,0x02,0x04,0xff,0x01,0x01,0x02, + 0xff,0x18,0x32,0x69,0xff,0x19,0x33,0x6a,0xff,0x1a,0x33,0x6b,0xff,0x1b,0x34, + 0x6c,0xff,0x1b,0x35,0x6d,0xff,0x1c,0x36,0x6e,0xff,0x1e,0x37,0x6f,0xff,0x32, + 0x44,0x71,0xff,0x92,0x88,0x7a,0xff,0xcb,0xae,0x7e,0xff,0xb6,0x9e,0x7a,0xff, + 0xab,0x96,0x79,0xff,0x4d,0x57,0x74,0xff,0x23,0x3c,0x75,0xff,0x24,0x3d,0x76, + 0xff,0x24,0x3e,0x77,0xff,0x25,0x3e,0x78,0xff,0x26,0x3f,0x79,0xff,0x26,0x40, + 0x7a,0xff,0x27,0x41,0x7b,0xff,0x28,0x42,0x7c,0xff,0x29,0x42,0x7d,0xff,0x2a, + 0x44,0x7e,0xff,0x2b,0x44,0x7f,0xff,0x2b,0x45,0x80,0xff,0x2c,0x46,0x81,0xff, + 0x2d,0x47,0x82,0xff,0x2e,0x49,0x83,0xff,0x2e,0x49,0x84,0xff,0x2f,0x4a,0x85, + 0xff,0x30,0x4b,0x86,0xff,0x30,0x4c,0x87,0xff,0x31,0x4d,0x88,0xff,0x32,0x4d, + 0x89,0xff,0x33,0x4e,0x8a,0xff,0x33,0x4f,0x8b,0xff,0x34,0x50,0x8c,0xff,0x35, + 0x51,0x8d,0xff,0x36,0x51,0x8e,0xff,0x36,0x52,0x8e,0xff,0x37,0x53,0x90,0xff, + 0x38,0x54,0x91,0xff,0x39,0x55,0x92,0xff,0x39,0x55,0x93,0xff,0x3a,0x56,0x94, + 0xff,0x3b,0x57,0x94,0xff,0x3c,0x58,0x95,0xff,0x3c,0x59,0x96,0xff,0x3d,0x59, + 0x97,0xff,0x3e,0x5a,0x98,0xff,0x3e,0x5b,0x99,0xff,0x3f,0x5c,0x9a,0xff,0x40, + 0x5c,0x9b,0xff,0x41,0x5d,0x9c,0xff,0x41,0x5e,0x9d,0xff,0x42,0x5f,0x9e,0xff, + 0x43,0x60,0x9f,0xff,0x44,0x60,0xa0,0xff,0x44,0x61,0xa1,0xff,0x45,0x62,0xa2, + 0xff,0x46,0x63,0xa2,0xff,0x47,0x64,0xa3,0xff,0x48,0x64,0xa4,0xff,0x49,0x65, + 0xa5,0xff,0x4a,0x66,0xa6,0xff,0x4a,0x67,0xa7,0xff,0x4c,0x68,0xa8,0xff,0x4c, + 0x69,0xaa,0xff,0x4d,0x6a,0xab,0xff,0x4e,0x6a,0xac,0xff,0x4e,0x6b,0xac,0xff, + 0x4f,0x6c,0xad,0xff,0x50,0x6d,0xae,0xff,0x51,0x6e,0xaf,0xff,0x51,0x6e,0xb0, + 0xff,0x83,0x52,0x6f,0xb1,0xff,0x01,0x51,0x6e,0xb0,0xff,0x82,0x50,0x6d,0xaf, + 0xff,0x01,0x4f,0x6c,0xae,0xff,0x82,0x4e,0x6b,0xad,0xff,0x84,0x4d,0x6a,0xac, + 0xff,0x4d,0x02,0x02,0x04,0xff,0x01,0x01,0x02,0xff,0x18,0x32,0x69,0xff,0x19, + 0x32,0x6a,0xff,0x1a,0x33,0x6b,0xff,0x1a,0x34,0x6c,0xff,0x1b,0x35,0x6d,0xff, + 0x1c,0x35,0x6d,0xff,0x1d,0x36,0x6e,0xff,0x30,0x43,0x71,0xff,0x91,0x85,0x7b, + 0xff,0xd8,0xb8,0x89,0xff,0xae,0x9a,0x7d,0xff,0x9e,0x8e,0x79,0xff,0x5d,0x5f, + 0x70,0xff,0x23,0x3c,0x75,0xff,0x23,0x3d,0x76,0xff,0x24,0x3d,0x77,0xff,0x25, + 0x3e,0x78,0xff,0x25,0x3f,0x79,0xff,0x26,0x40,0x7a,0xff,0x27,0x41,0x7b,0xff, + 0x28,0x41,0x7c,0xff,0x28,0x42,0x7d,0xff,0x29,0x43,0x7e,0xff,0x2a,0x44,0x7f, + 0xff,0x2b,0x45,0x80,0xff,0x2c,0x46,0x81,0xff,0x2c,0x47,0x82,0xff,0x2d,0x48, + 0x83,0xff,0x2e,0x49,0x84,0xff,0x2f,0x4a,0x85,0xff,0x2f,0x4b,0x85,0xff,0x30, + 0x4c,0x86,0xff,0x31,0x4c,0x87,0xff,0x32,0x4d,0x88,0xff,0x32,0x4e,0x89,0xff, + 0x33,0x4f,0x8a,0xff,0x34,0x4f,0x8b,0xff,0x34,0x50,0x8c,0xff,0x35,0x51,0x8d, + 0xff,0x36,0x52,0x8e,0xff,0x37,0x53,0x8f,0xff,0x38,0x54,0x90,0xff,0x38,0x54, + 0x91,0xff,0x39,0x55,0x92,0xff,0x3a,0x56,0x93,0xff,0x3b,0x57,0x94,0xff,0x3b, + 0x57,0x95,0xff,0x3c,0x58,0x96,0xff,0x3d,0x59,0x97,0xff,0x3d,0x5a,0x98,0xff, + 0x3e,0x5b,0x99,0xff,0x3f,0x5b,0x9a,0xff,0x40,0x5c,0x9b,0xff,0x40,0x5d,0x9c, + 0xff,0x41,0x5e,0x9d,0xff,0x42,0x5f,0x9d,0xff,0x43,0x5f,0x9e,0xff,0x43,0x60, + 0x9f,0xff,0x44,0x61,0xa0,0xff,0x45,0x62,0xa1,0xff,0x46,0x63,0xa2,0xff,0x47, + 0x63,0xa3,0xff,0x48,0x64,0xa4,0xff,0x49,0x65,0xa5,0xff,0x49,0x66,0xa6,0xff, + 0x4a,0x66,0xa7,0xff,0x4b,0x67,0xa8,0xff,0x4c,0x69,0xa9,0xff,0x4d,0x69,0xaa, + 0xff,0x4d,0x6a,0xab,0xff,0x4e,0x6b,0xac,0xff,0x4f,0x6c,0xad,0xff,0x50,0x6c, + 0xae,0xff,0x50,0x6d,0xaf,0xff,0x51,0x6e,0xb0,0xff,0x87,0x52,0x6f,0xb1,0xff, + 0x01,0x51,0x6e,0xb0,0xff,0x82,0x50,0x6d,0xaf,0xff,0x01,0x4f,0x6c,0xae,0xff, + 0x82,0x4e,0x6b,0xad,0xff,0x4d,0x02,0x02,0x04,0xff,0x01,0x01,0x02,0xff,0x18, + 0x31,0x68,0xff,0x19,0x32,0x69,0xff,0x19,0x33,0x6a,0xff,0x1a,0x34,0x6b,0xff, + 0x1b,0x34,0x6c,0xff,0x1b,0x35,0x6d,0xff,0x1d,0x36,0x6e,0xff,0x2d,0x41,0x71, + 0xff,0x7f,0x78,0x78,0xff,0xbd,0x9d,0x75,0xff,0x85,0x6b,0x57,0xff,0x78,0x5f, + 0x52,0xff,0x4b,0x47,0x5a,0xff,0x22,0x3b,0x75,0xff,0x23,0x3c,0x76,0xff,0x24, + 0x3d,0x76,0xff,0x24,0x3e,0x77,0xff,0x25,0x3f,0x78,0xff,0x26,0x3f,0x79,0xff, + 0x27,0x40,0x7a,0xff,0x27,0x41,0x7b,0xff,0x28,0x42,0x7d,0xff,0x29,0x43,0x7e, + 0xff,0x2a,0x44,0x7f,0xff,0x2b,0x45,0x80,0xff,0x2b,0x45,0x81,0xff,0x2c,0x46, + 0x81,0xff,0x2d,0x48,0x82,0xff,0x2e,0x49,0x83,0xff,0x2e,0x4a,0x84,0xff,0x2f, + 0x4a,0x85,0xff,0x30,0x4b,0x86,0xff,0x31,0x4c,0x87,0xff,0x31,0x4d,0x88,0xff, + 0x32,0x4e,0x89,0xff,0x33,0x4e,0x8a,0xff,0x33,0x4f,0x8b,0xff,0x34,0x50,0x8c, + 0xff,0x35,0x51,0x8d,0xff,0x36,0x51,0x8e,0xff,0x37,0x52,0x8f,0xff,0x37,0x53, + 0x90,0xff,0x38,0x54,0x91,0xff,0x39,0x55,0x92,0xff,0x3a,0x56,0x93,0xff,0x3a, + 0x56,0x94,0xff,0x3b,0x57,0x95,0xff,0x3c,0x58,0x96,0xff,0x3c,0x59,0x96,0xff, + 0x3d,0x5a,0x97,0xff,0x3e,0x5a,0x98,0xff,0x3f,0x5b,0x99,0xff,0x3f,0x5c,0x9a, + 0xff,0x40,0x5d,0x9b,0xff,0x41,0x5d,0x9c,0xff,0x42,0x5e,0x9d,0xff,0x42,0x5f, + 0x9e,0xff,0x43,0x60,0x9f,0xff,0x44,0x61,0xa0,0xff,0x44,0x61,0xa1,0xff,0x45, + 0x62,0xa2,0xff,0x47,0x63,0xa3,0xff,0x48,0x64,0xa4,0xff,0x48,0x65,0xa5,0xff, + 0x49,0x65,0xa6,0xff,0x4a,0x66,0xa6,0xff,0x4b,0x67,0xa7,0xff,0x4c,0x68,0xa9, + 0xff,0x4c,0x69,0xaa,0xff,0x4d,0x6a,0xab,0xff,0x4e,0x6b,0xac,0xff,0x4f,0x6b, + 0xad,0xff,0x4f,0x6c,0xae,0xff,0x50,0x6d,0xaf,0xff,0x51,0x6e,0xb0,0xff,0x8b, + 0x52,0x6f,0xb1,0xff,0x50,0x51,0x6e,0xb0,0xff,0x50,0x6d,0xaf,0xff,0x02,0x02, + 0x04,0xff,0x01,0x01,0x02,0xff,0x18,0x31,0x68,0xff,0x18,0x32,0x69,0xff,0x19, + 0x32,0x6a,0xff,0x1a,0x33,0x6b,0xff,0x1b,0x34,0x6c,0xff,0x1b,0x35,0x6d,0xff, + 0x1c,0x36,0x6e,0xff,0x25,0x3c,0x70,0xff,0x4b,0x55,0x71,0xff,0x65,0x5e,0x63, + 0xff,0x67,0x52,0x52,0xff,0x6c,0x54,0x53,0xff,0x42,0x41,0x5e,0xff,0x22,0x3b, + 0x74,0xff,0x23,0x3c,0x75,0xff,0x23,0x3d,0x76,0xff,0x24,0x3e,0x77,0xff,0x25, + 0x3e,0x78,0xff,0x26,0x3f,0x79,0xff,0x26,0x40,0x7a,0xff,0x27,0x41,0x7b,0xff, + 0x28,0x42,0x7c,0xff,0x29,0x43,0x7d,0xff,0x2a,0x44,0x7e,0xff,0x2b,0x44,0x7f, + 0xff,0x2b,0x45,0x80,0xff,0x2c,0x46,0x81,0xff,0x2d,0x47,0x82,0xff,0x2d,0x48, + 0x83,0xff,0x2e,0x49,0x84,0xff,0x2f,0x4a,0x85,0xff,0x30,0x4b,0x86,0xff,0x30, + 0x4c,0x87,0xff,0x31,0x4c,0x88,0xff,0x32,0x4d,0x89,0xff,0x32,0x4e,0x8a,0xff, + 0x33,0x4f,0x8b,0xff,0x34,0x50,0x8b,0xff,0x35,0x50,0x8c,0xff,0x35,0x51,0x8d, + 0xff,0x36,0x52,0x8e,0xff,0x37,0x53,0x8f,0xff,0x38,0x54,0x90,0xff,0x39,0x55, + 0x91,0xff,0x39,0x55,0x92,0xff,0x3a,0x56,0x93,0xff,0x3b,0x57,0x94,0xff,0x3b, + 0x58,0x95,0xff,0x3c,0x59,0x96,0xff,0x3d,0x59,0x97,0xff,0x3e,0x5a,0x98,0xff, + 0x3e,0x5b,0x99,0xff,0x3f,0x5c,0x9a,0xff,0x40,0x5c,0x9b,0xff,0x41,0x5d,0x9c, + 0xff,0x41,0x5e,0x9d,0xff,0x42,0x5f,0x9e,0xff,0x43,0x60,0x9f,0xff,0x43,0x60, + 0xa0,0xff,0x44,0x61,0xa1,0xff,0x45,0x62,0xa2,0xff,0x46,0x63,0xa2,0xff,0x47, + 0x64,0xa3,0xff,0x48,0x64,0xa4,0xff,0x49,0x65,0xa5,0xff,0x4a,0x66,0xa6,0xff, + 0x4a,0x67,0xa7,0xff,0x4c,0x68,0xa9,0xff,0x4c,0x69,0xaa,0xff,0x4d,0x69,0xaa, + 0xff,0x4e,0x6a,0xab,0xff,0x4e,0x6b,0xac,0xff,0x4f,0x6c,0xad,0xff,0x50,0x6d, + 0xae,0xff,0x51,0x6d,0xaf,0xff,0x51,0x6e,0xb0,0xff,0x8c,0x52,0x6f,0xb1,0xff, + 0x4e,0x02,0x02,0x04,0xff,0x00,0x01,0x02,0xff,0x17,0x31,0x68,0xff,0x18,0x31, + 0x69,0xff,0x19,0x32,0x69,0xff,0x19,0x33,0x6b,0xff,0x1a,0x34,0x6b,0xff,0x1c, + 0x36,0x6d,0xff,0x25,0x3d,0x71,0xff,0x2a,0x41,0x74,0xff,0x2d,0x42,0x74,0xff, + 0x2c,0x41,0x72,0xff,0x36,0x45,0x6f,0xff,0x3f,0x4b,0x70,0xff,0x30,0x44,0x76, + 0xff,0x2d,0x44,0x79,0xff,0x28,0x40,0x77,0xff,0x23,0x3d,0x76,0xff,0x24,0x3d, + 0x77,0xff,0x25,0x3e,0x78,0xff,0x25,0x3f,0x79,0xff,0x26,0x40,0x7a,0xff,0x27, + 0x40,0x7b,0xff,0x28,0x41,0x7c,0xff,0x29,0x43,0x7d,0xff,0x2a,0x43,0x7e,0xff, + 0x2a,0x44,0x7f,0xff,0x2b,0x45,0x80,0xff,0x2c,0x46,0x81,0xff,0x2c,0x47,0x82, + 0xff,0x2d,0x48,0x83,0xff,0x2e,0x49,0x84,0xff,0x2f,0x4a,0x84,0xff,0x2f,0x4b, + 0x85,0xff,0x30,0x4b,0x86,0xff,0x31,0x4c,0x87,0xff,0x32,0x4d,0x88,0xff,0x32, + 0x4e,0x89,0xff,0x33,0x4e,0x8a,0xff,0x34,0x4f,0x8b,0xff,0x34,0x50,0x8c,0xff, + 0x35,0x51,0x8d,0xff,0x36,0x52,0x8e,0xff,0x37,0x53,0x8f,0xff,0x38,0x54,0x90, + 0xff,0x38,0x54,0x91,0xff,0x39,0x55,0x92,0xff,0x3a,0x56,0x93,0xff,0x3a,0x57, + 0x94,0xff,0x3b,0x57,0x95,0xff,0x3c,0x58,0x96,0xff,0x3d,0x59,0x97,0xff,0x3d, + 0x5a,0x98,0xff,0x3e,0x5b,0x99,0xff,0x3f,0x5b,0x9a,0xff,0x40,0x5c,0x9b,0xff, + 0x40,0x5d,0x9b,0xff,0x41,0x5e,0x9c,0xff,0x42,0x5f,0x9d,0xff,0x42,0x5f,0x9e, + 0xff,0x43,0x60,0x9f,0xff,0x44,0x61,0xa0,0xff,0x45,0x62,0xa1,0xff,0x46,0x62, + 0xa2,0xff,0x47,0x63,0xa3,0xff,0x48,0x64,0xa4,0xff,0x49,0x65,0xa5,0xff,0x49, + 0x66,0xa6,0xff,0x4a,0x66,0xa7,0xff,0x4b,0x68,0xa8,0xff,0x4c,0x68,0xa9,0xff, + 0x4d,0x69,0xaa,0xff,0x4d,0x6a,0xab,0xff,0x4e,0x6b,0xac,0xff,0x4f,0x6c,0xad, + 0xff,0x50,0x6c,0xae,0xff,0x50,0x6d,0xaf,0xff,0x51,0x6e,0xb0,0xff,0x8c,0x52, + 0x6f,0xb1,0xff,0x0d,0x02,0x02,0x04,0xff,0x00,0x01,0x02,0xff,0x17,0x30,0x67, + 0xff,0x18,0x31,0x68,0xff,0x18,0x32,0x69,0xff,0x19,0x33,0x6a,0xff,0x1a,0x34, + 0x6b,0xff,0x1e,0x36,0x6d,0xff,0x33,0x47,0x74,0xff,0x3e,0x4f,0x76,0xff,0x3d, + 0x4e,0x76,0xff,0x36,0x4a,0x76,0xff,0x35,0x49,0x75,0xff,0x82,0x3e,0x50,0x78, + 0xff,0x40,0x3d,0x4f,0x7a,0xff,0x30,0x45,0x76,0xff,0x23,0x3c,0x75,0xff,0x23, + 0x3d,0x76,0xff,0x24,0x3e,0x77,0xff,0x25,0x3e,0x78,0xff,0x26,0x3f,0x79,0xff, + 0x27,0x40,0x7a,0xff,0x28,0x41,0x7b,0xff,0x29,0x42,0x7d,0xff,0x29,0x43,0x7e, + 0xff,0x2a,0x44,0x7f,0xff,0x2b,0x45,0x7f,0xff,0x2b,0x45,0x80,0xff,0x2c,0x46, + 0x81,0xff,0x2d,0x48,0x82,0xff,0x2e,0x49,0x83,0xff,0x2e,0x49,0x84,0xff,0x2f, + 0x4a,0x85,0xff,0x30,0x4b,0x86,0xff,0x31,0x4c,0x87,0xff,0x31,0x4d,0x88,0xff, + 0x32,0x4d,0x89,0xff,0x33,0x4e,0x8a,0xff,0x33,0x4f,0x8b,0xff,0x34,0x50,0x8c, + 0xff,0x35,0x51,0x8d,0xff,0x36,0x51,0x8e,0xff,0x36,0x52,0x8e,0xff,0x37,0x53, + 0x8f,0xff,0x38,0x54,0x90,0xff,0x39,0x55,0x92,0xff,0x39,0x56,0x93,0xff,0x3a, + 0x56,0x94,0xff,0x3b,0x57,0x94,0xff,0x3c,0x58,0x95,0xff,0x3c,0x59,0x96,0xff, + 0x3d,0x5a,0x97,0xff,0x3e,0x5a,0x98,0xff,0x3f,0x5b,0x99,0xff,0x3f,0x5c,0x9a, + 0xff,0x40,0x5d,0x9b,0xff,0x41,0x5d,0x9c,0xff,0x41,0x5e,0x9d,0xff,0x42,0x5f, + 0x9e,0xff,0x43,0x60,0x9f,0xff,0x44,0x61,0xa0,0xff,0x44,0x61,0xa1,0xff,0x45, + 0x62,0xa2,0xff,0x46,0x63,0xa3,0xff,0x47,0x64,0xa4,0xff,0x48,0x65,0xa5,0xff, + 0x49,0x65,0xa5,0xff,0x4a,0x66,0xa6,0xff,0x4b,0x67,0xa8,0xff,0x4c,0x68,0xa9, + 0xff,0x4c,0x69,0xaa,0xff,0x4d,0x6a,0xab,0xff,0x4e,0x6a,0xac,0xff,0x4f,0x6b, + 0xad,0xff,0x4f,0x6c,0xae,0xff,0x50,0x6d,0xaf,0xff,0x51,0x6e,0xaf,0xff,0x51, + 0x6e,0xb0,0xff,0x8b,0x52,0x6f,0xb1,0xff,0x02,0x02,0x02,0x04,0xff,0x00,0x01, + 0x02,0xff,0x82,0x17,0x30,0x66,0xff,0x4b,0x18,0x30,0x67,0xff,0x19,0x31,0x67, + 0xff,0x19,0x32,0x68,0xff,0x1b,0x33,0x69,0xff,0x28,0x3d,0x6c,0xff,0x2f,0x41, + 0x6d,0xff,0x2c,0x40,0x6d,0xff,0x29,0x3f,0x6f,0xff,0x26,0x3c,0x6d,0xff,0x2c, + 0x41,0x6f,0xff,0x2f,0x43,0x6f,0xff,0x2f,0x44,0x72,0xff,0x28,0x3f,0x71,0xff, + 0x21,0x3a,0x72,0xff,0x21,0x3b,0x73,0xff,0x22,0x3c,0x74,0xff,0x23,0x3c,0x75, + 0xff,0x24,0x3e,0x76,0xff,0x25,0x3f,0x77,0xff,0x26,0x3f,0x79,0xff,0x27,0x40, + 0x7a,0xff,0x28,0x42,0x7b,0xff,0x29,0x43,0x7d,0xff,0x2a,0x44,0x7e,0xff,0x2b, + 0x44,0x7f,0xff,0x2c,0x46,0x80,0xff,0x2d,0x47,0x82,0xff,0x2d,0x48,0x83,0xff, + 0x2e,0x49,0x84,0xff,0x2f,0x4a,0x85,0xff,0x2f,0x4b,0x86,0xff,0x30,0x4c,0x87, + 0xff,0x31,0x4c,0x88,0xff,0x32,0x4d,0x89,0xff,0x32,0x4e,0x89,0xff,0x33,0x4f, + 0x8a,0xff,0x34,0x4f,0x8b,0xff,0x35,0x50,0x8c,0xff,0x35,0x51,0x8d,0xff,0x36, + 0x52,0x8e,0xff,0x37,0x53,0x8f,0xff,0x37,0x53,0x90,0xff,0x38,0x55,0x91,0xff, + 0x39,0x55,0x92,0xff,0x3a,0x56,0x93,0xff,0x3b,0x57,0x94,0xff,0x3b,0x58,0x95, + 0xff,0x3c,0x59,0x96,0xff,0x3d,0x59,0x97,0xff,0x3e,0x5a,0x98,0xff,0x3e,0x5b, + 0x99,0xff,0x3f,0x5c,0x9a,0xff,0x40,0x5c,0x9b,0xff,0x40,0x5d,0x9c,0xff,0x41, + 0x5e,0x9d,0xff,0x42,0x5f,0x9e,0xff,0x43,0x5f,0x9f,0xff,0x43,0x60,0x9f,0xff, + 0x44,0x61,0xa0,0xff,0x45,0x62,0xa1,0xff,0x46,0x63,0xa2,0xff,0x47,0x63,0xa3, + 0xff,0x48,0x64,0xa4,0xff,0x49,0x65,0xa5,0xff,0x49,0x66,0xa6,0xff,0x4b,0x67, + 0xa8,0xff,0x4b,0x68,0xa8,0xff,0x4c,0x69,0xa9,0xff,0x4d,0x69,0xaa,0xff,0x4e, + 0x6a,0xab,0xff,0x4e,0x6b,0xac,0xff,0x4f,0x6c,0xad,0xff,0x50,0x6d,0xae,0xff, + 0x51,0x6d,0xaf,0xff,0x51,0x6e,0xb0,0xff,0x8b,0x52,0x6f,0xb1,0xff,0x4f,0x02, + 0x02,0x04,0xff,0x00,0x01,0x02,0xff,0x16,0x2e,0x63,0xff,0x17,0x2e,0x63,0xff, + 0x17,0x2f,0x64,0xff,0x18,0x2f,0x64,0xff,0x18,0x30,0x65,0xff,0x19,0x31,0x66, + 0xff,0x1a,0x32,0x67,0xff,0x1b,0x32,0x68,0xff,0x1b,0x33,0x69,0xff,0x1b,0x34, + 0x6a,0xff,0x1c,0x35,0x6b,0xff,0x1d,0x35,0x6c,0xff,0x1d,0x36,0x6d,0xff,0x1e, + 0x37,0x6e,0xff,0x1f,0x38,0x6f,0xff,0x1f,0x39,0x70,0xff,0x20,0x39,0x71,0xff, + 0x21,0x3a,0x72,0xff,0x22,0x3b,0x73,0xff,0x22,0x3c,0x74,0xff,0x23,0x3d,0x74, + 0xff,0x24,0x3d,0x76,0xff,0x25,0x3f,0x77,0xff,0x26,0x40,0x78,0xff,0x27,0x41, + 0x7a,0xff,0x28,0x42,0x7b,0xff,0x29,0x43,0x7c,0xff,0x2a,0x44,0x7e,0xff,0x2b, + 0x45,0x7f,0xff,0x2c,0x47,0x81,0xff,0x2d,0x48,0x82,0xff,0x2e,0x4a,0x84,0xff, + 0x2f,0x4a,0x85,0xff,0x30,0x4b,0x86,0xff,0x31,0x4c,0x87,0xff,0x31,0x4d,0x88, + 0xff,0x32,0x4e,0x89,0xff,0x33,0x4e,0x8a,0xff,0x34,0x4f,0x8b,0xff,0x34,0x50, + 0x8c,0xff,0x35,0x51,0x8d,0xff,0x36,0x52,0x8e,0xff,0x36,0x52,0x8f,0xff,0x37, + 0x53,0x90,0xff,0x38,0x54,0x91,0xff,0x39,0x55,0x92,0xff,0x3a,0x56,0x93,0xff, + 0x3a,0x57,0x94,0xff,0x3b,0x57,0x95,0xff,0x3c,0x58,0x96,0xff,0x3d,0x59,0x97, + 0xff,0x3d,0x5a,0x98,0xff,0x3e,0x5b,0x98,0xff,0x3f,0x5b,0x99,0xff,0x3f,0x5c, + 0x9a,0xff,0x40,0x5d,0x9b,0xff,0x41,0x5e,0x9c,0xff,0x42,0x5e,0x9d,0xff,0x42, + 0x5f,0x9e,0xff,0x43,0x60,0x9f,0xff,0x44,0x61,0xa0,0xff,0x45,0x62,0xa1,0xff, + 0x45,0x62,0xa2,0xff,0x47,0x63,0xa3,0xff,0x48,0x64,0xa4,0xff,0x49,0x65,0xa5, + 0xff,0x49,0x66,0xa6,0xff,0x4a,0x67,0xa7,0xff,0x4b,0x68,0xa8,0xff,0x4c,0x68, + 0xa9,0xff,0x4d,0x69,0xaa,0xff,0x4d,0x6a,0xab,0xff,0x4e,0x6b,0xac,0xff,0x4f, + 0x6c,0xad,0xff,0x50,0x6c,0xae,0xff,0x50,0x6d,0xaf,0xff,0x51,0x6e,0xb0,0xff, + 0x89,0x52,0x6f,0xb1,0xff,0x45,0x51,0x6e,0xb0,0xff,0x50,0x6d,0xaf,0xff,0x02, + 0x02,0x04,0xff,0x00,0x01,0x02,0xff,0x15,0x2c,0x61,0xff,0x16,0x2d,0x62,0xff, + 0x17,0x2e,0x63,0xff,0x17,0x2f,0x64,0xff,0x18,0x30,0x65,0xff,0x19,0x30,0x66, + 0xff,0x1a,0x31,0x67,0xff,0x1a,0x32,0x68,0xff,0x1b,0x33,0x69,0xff,0x1b,0x34, + 0x6a,0xff,0x1c,0x34,0x6b,0xff,0x1c,0x35,0x6c,0xff,0x1d,0x36,0x6d,0xff,0x1e, + 0x37,0x6e,0xff,0x1e,0x38,0x6f,0xff,0x1f,0x38,0x6f,0xff,0x20,0x39,0x70,0xff, + 0x21,0x3a,0x71,0xff,0x21,0x3b,0x72,0xff,0x22,0x3b,0x73,0xff,0x23,0x3c,0x74, + 0xff,0x23,0x3d,0x76,0xff,0x25,0x3e,0x77,0xff,0x25,0x3f,0x78,0xff,0x26,0x40, + 0x78,0xff,0x27,0x41,0x79,0xff,0x28,0x41,0x7a,0xff,0x28,0x42,0x7b,0xff,0x29, + 0x43,0x7c,0xff,0x2a,0x44,0x7e,0xff,0x2b,0x46,0x7f,0xff,0x2c,0x47,0x81,0xff, + 0x2e,0x48,0x83,0xff,0x2f,0x4a,0x85,0xff,0x30,0x4c,0x87,0xff,0x31,0x4d,0x88, + 0xff,0x32,0x4d,0x89,0xff,0x33,0x4e,0x8a,0xff,0x33,0x4f,0x8b,0xff,0x34,0x50, + 0x8c,0xff,0x35,0x50,0x8d,0xff,0x36,0x51,0x8e,0xff,0x36,0x52,0x8e,0xff,0x37, + 0x53,0x8f,0xff,0x38,0x54,0x90,0xff,0x38,0x54,0x92,0xff,0x39,0x55,0x93,0xff, + 0x3a,0x56,0x94,0xff,0x3b,0x57,0x94,0xff,0x3c,0x58,0x95,0xff,0x3c,0x59,0x96, + 0xff,0x3d,0x59,0x97,0xff,0x3e,0x5a,0x98,0xff,0x3f,0x5b,0x99,0xff,0x3f,0x5c, + 0x9a,0xff,0x40,0x5d,0x9b,0xff,0x41,0x5d,0x9c,0xff,0x41,0x5e,0x9d,0xff,0x42, + 0x5f,0x9e,0xff,0x43,0x60,0x9f,0xff,0x44,0x60,0xa0,0xff,0x44,0x61,0xa1,0xff, + 0x45,0x62,0xa2,0xff,0x46,0x63,0xa3,0xff,0x47,0x64,0xa4,0xff,0x82,0x48,0x64, + 0xa4,0xff,0x0b,0x48,0x64,0xa5,0xff,0x48,0x65,0xa5,0xff,0x49,0x66,0xa6,0xff, + 0x4a,0x67,0xa8,0xff,0x4c,0x69,0xaa,0xff,0x4d,0x6a,0xab,0xff,0x4e,0x6b,0xac, + 0xff,0x4f,0x6c,0xad,0xff,0x50,0x6d,0xae,0xff,0x51,0x6d,0xaf,0xff,0x51,0x6e, + 0xb0,0xff,0x85,0x52,0x6f,0xb1,0xff,0x03,0x51,0x6e,0xb0,0xff,0x50,0x6d,0xaf, + 0xff,0x4f,0x6c,0xae,0xff,0x82,0x4e,0x6b,0xad,0xff,0x40,0x02,0x02,0x04,0xff, + 0x00,0x01,0x02,0xff,0x15,0x2c,0x61,0xff,0x15,0x2d,0x62,0xff,0x16,0x2e,0x63, + 0xff,0x17,0x2f,0x64,0xff,0x18,0x30,0x66,0xff,0x19,0x31,0x68,0xff,0x1a,0x32, + 0x69,0xff,0x1b,0x33,0x6a,0xff,0x1b,0x34,0x6b,0xff,0x1c,0x35,0x6c,0xff,0x1d, + 0x36,0x6c,0xff,0x1d,0x36,0x6e,0xff,0x1e,0x37,0x6f,0xff,0x1f,0x38,0x70,0xff, + 0x20,0x39,0x71,0xff,0x21,0x3a,0x72,0xff,0x21,0x3b,0x73,0xff,0x22,0x3b,0x74, + 0xff,0x23,0x3c,0x75,0xff,0x23,0x3d,0x75,0xff,0x24,0x3d,0x76,0xff,0x24,0x3e, + 0x77,0xff,0x25,0x3f,0x77,0xff,0x25,0x3f,0x78,0xff,0x26,0x40,0x78,0xff,0x27, + 0x40,0x79,0xff,0x27,0x41,0x7a,0xff,0x28,0x42,0x7b,0xff,0x29,0x43,0x7c,0xff, + 0x2a,0x44,0x7d,0xff,0x2a,0x44,0x7e,0xff,0x2b,0x45,0x7f,0xff,0x2c,0x46,0x81, + 0xff,0x2d,0x47,0x82,0xff,0x2f,0x49,0x84,0xff,0x30,0x4b,0x86,0xff,0x32,0x4d, + 0x88,0xff,0x32,0x4e,0x89,0xff,0x33,0x4f,0x8a,0xff,0x34,0x4f,0x8b,0xff,0x34, + 0x50,0x8c,0xff,0x35,0x51,0x8d,0xff,0x36,0x52,0x8e,0xff,0x37,0x53,0x8f,0xff, + 0x37,0x53,0x90,0xff,0x38,0x54,0x91,0xff,0x39,0x55,0x92,0xff,0x3a,0x56,0x93, + 0xff,0x3b,0x57,0x94,0xff,0x3b,0x58,0x95,0xff,0x3c,0x58,0x96,0xff,0x3d,0x59, + 0x97,0xff,0x3e,0x5a,0x98,0xff,0x3e,0x5b,0x99,0xff,0x3f,0x5c,0x9a,0xff,0x40, + 0x5c,0x9b,0xff,0x40,0x5d,0x9c,0xff,0x41,0x5e,0x9c,0xff,0x42,0x5f,0x9d,0xff, + 0x43,0x5f,0x9e,0xff,0x43,0x60,0x9f,0xff,0x44,0x61,0xa0,0xff,0x82,0x45,0x62, + 0xa1,0xff,0x02,0x46,0x62,0xa1,0xff,0x46,0x61,0xa1,0xff,0x82,0x45,0x61,0xa2, + 0xff,0x0a,0x46,0x62,0xa3,0xff,0x46,0x63,0xa3,0xff,0x47,0x64,0xa5,0xff,0x49, + 0x66,0xa6,0xff,0x4b,0x68,0xa9,0xff,0x4d,0x6a,0xab,0xff,0x4f,0x6c,0xad,0xff, + 0x50,0x6d,0xae,0xff,0x50,0x6d,0xaf,0xff,0x51,0x6e,0xb0,0xff,0x82,0x52,0x6f, + 0xb1,0xff,0x03,0x51,0x6e,0xb0,0xff,0x50,0x6d,0xaf,0xff,0x4f,0x6c,0xae,0xff, + 0x82,0x4e,0x6b,0xad,0xff,0x83,0x4d,0x6a,0xac,0xff,0x1c,0x02,0x02,0x04,0xff, + 0x00,0x01,0x02,0xff,0x14,0x2c,0x60,0xff,0x15,0x2d,0x62,0xff,0x16,0x2e,0x64, + 0xff,0x18,0x30,0x66,0xff,0x18,0x32,0x68,0xff,0x19,0x33,0x6a,0xff,0x1a,0x33, + 0x6b,0xff,0x1b,0x34,0x6c,0xff,0x1d,0x36,0x6d,0xff,0x29,0x3f,0x70,0xff,0x32, + 0x48,0x76,0xff,0x26,0x3d,0x71,0xff,0x1f,0x38,0x71,0xff,0x20,0x39,0x72,0xff, + 0x21,0x3a,0x73,0xff,0x22,0x3b,0x74,0xff,0x22,0x3b,0x75,0xff,0x23,0x3c,0x75, + 0xff,0x24,0x3d,0x76,0xff,0x24,0x3e,0x77,0xff,0x25,0x3e,0x78,0xff,0x26,0x3f, + 0x79,0xff,0x26,0x40,0x79,0xff,0x27,0x40,0x7a,0xff,0x27,0x41,0x7b,0xff,0x28, + 0x41,0x7b,0xff,0x82,0x28,0x42,0x7c,0xff,0x21,0x29,0x43,0x7c,0xff,0x29,0x43, + 0x7d,0xff,0x2a,0x44,0x7d,0xff,0x2b,0x45,0x7e,0xff,0x2b,0x45,0x7f,0xff,0x2c, + 0x45,0x80,0xff,0x2d,0x47,0x82,0xff,0x2f,0x48,0x83,0xff,0x30,0x4a,0x85,0xff, + 0x31,0x4d,0x88,0xff,0x33,0x4e,0x8a,0xff,0x33,0x4f,0x8b,0xff,0x34,0x50,0x8c, + 0xff,0x35,0x51,0x8d,0xff,0x36,0x51,0x8e,0xff,0x36,0x52,0x8f,0xff,0x37,0x53, + 0x90,0xff,0x38,0x54,0x91,0xff,0x39,0x55,0x92,0xff,0x39,0x55,0x93,0xff,0x3a, + 0x56,0x94,0xff,0x3b,0x57,0x95,0xff,0x3c,0x58,0x96,0xff,0x3c,0x59,0x97,0xff, + 0x3d,0x5a,0x98,0xff,0x3e,0x5a,0x98,0xff,0x3f,0x5b,0x99,0xff,0x3f,0x5c,0x9a, + 0xff,0x40,0x5d,0x9b,0xff,0x41,0x5e,0x9c,0xff,0x42,0x5e,0x9d,0xff,0x42,0x5f, + 0x9e,0xff,0x43,0x60,0x9f,0xff,0x82,0x44,0x60,0x9f,0xff,0x0d,0x44,0x5f,0x9f, + 0xff,0x44,0x5f,0x9e,0xff,0x44,0x5f,0x9f,0xff,0x44,0x60,0xa0,0xff,0x45,0x61, + 0xa1,0xff,0x45,0x62,0xa2,0xff,0x46,0x62,0xa3,0xff,0x47,0x63,0xa4,0xff,0x48, + 0x64,0xa5,0xff,0x49,0x65,0xa6,0xff,0x4b,0x67,0xa8,0xff,0x4d,0x6a,0xab,0xff, + 0x4e,0x6b,0xad,0xff,0x84,0x4f,0x6c,0xae,0xff,0x82,0x4e,0x6b,0xad,0xff,0x86, + 0x4d,0x6a,0xac,0xff,0x1b,0x02,0x02,0x04,0xff,0x00,0x01,0x02,0xff,0x14,0x2b, + 0x60,0xff,0x15,0x2d,0x62,0xff,0x17,0x30,0x66,0xff,0x17,0x31,0x68,0xff,0x18, + 0x32,0x69,0xff,0x19,0x32,0x6a,0xff,0x1a,0x33,0x6b,0xff,0x1e,0x37,0x6d,0xff, + 0x3b,0x4e,0x75,0xff,0x75,0x7f,0x93,0xff,0x8d,0x96,0xa9,0xff,0x5d,0x6b,0x8a, + 0xff,0x25,0x3c,0x70,0xff,0x20,0x39,0x71,0xff,0x21,0x3a,0x72,0xff,0x21,0x3a, + 0x73,0xff,0x22,0x3b,0x74,0xff,0x23,0x3c,0x75,0xff,0x24,0x3d,0x76,0xff,0x24, + 0x3e,0x77,0xff,0x25,0x3e,0x78,0xff,0x26,0x3f,0x79,0xff,0x27,0x40,0x7b,0xff, + 0x28,0x41,0x7c,0xff,0x28,0x42,0x7c,0xff,0x82,0x29,0x43,0x7d,0xff,0x82,0x2a, + 0x44,0x7e,0xff,0x84,0x2b,0x45,0x7f,0xff,0x1a,0x2c,0x45,0x80,0xff,0x2d,0x46, + 0x81,0xff,0x2d,0x47,0x82,0xff,0x2e,0x48,0x83,0xff,0x30,0x4a,0x85,0xff,0x32, + 0x4d,0x88,0xff,0x33,0x4f,0x8b,0xff,0x34,0x50,0x8b,0xff,0x35,0x50,0x8d,0xff, + 0x35,0x51,0x8d,0xff,0x36,0x52,0x8e,0xff,0x37,0x53,0x8f,0xff,0x38,0x54,0x90, + 0xff,0x38,0x54,0x91,0xff,0x39,0x55,0x92,0xff,0x3a,0x56,0x93,0xff,0x3b,0x57, + 0x94,0xff,0x3b,0x58,0x95,0xff,0x3c,0x59,0x96,0xff,0x3d,0x59,0x97,0xff,0x3e, + 0x5a,0x98,0xff,0x3e,0x5b,0x99,0xff,0x3f,0x5c,0x9a,0xff,0x40,0x5c,0x9b,0xff, + 0x41,0x5d,0x9c,0xff,0x41,0x5e,0x9d,0xff,0x82,0x42,0x5e,0x9d,0xff,0x10,0x41, + 0x5d,0x9c,0xff,0x42,0x5d,0x9c,0xff,0x42,0x5d,0x9d,0xff,0x43,0x5e,0x9d,0xff, + 0x43,0x5f,0x9e,0xff,0x44,0x5f,0x9f,0xff,0x45,0x61,0xa1,0xff,0x45,0x61,0xa2, + 0xff,0x46,0x62,0xa3,0xff,0x47,0x63,0xa4,0xff,0x47,0x64,0xa5,0xff,0x48,0x65, + 0xa6,0xff,0x49,0x65,0xa6,0xff,0x4a,0x67,0xa8,0xff,0x4b,0x68,0xa9,0xff,0x4c, + 0x69,0xaa,0xff,0x82,0x4d,0x6a,0xab,0xff,0x89,0x4d,0x6a,0xac,0xff,0x1f,0x02, + 0x02,0x04,0xff,0x00,0x01,0x02,0xff,0x14,0x2b,0x60,0xff,0x15,0x2e,0x63,0xff, + 0x16,0x30,0x66,0xff,0x17,0x31,0x68,0xff,0x18,0x31,0x69,0xff,0x19,0x32,0x6a, + 0xff,0x19,0x33,0x6b,0xff,0x1f,0x37,0x6c,0xff,0x49,0x5b,0x7d,0xff,0xa1,0xaa, + 0xb3,0xff,0xa6,0xae,0xb6,0xff,0x76,0x82,0x96,0xff,0x25,0x3b,0x6d,0xff,0x20, + 0x39,0x71,0xff,0x20,0x39,0x72,0xff,0x21,0x3a,0x73,0xff,0x22,0x3b,0x74,0xff, + 0x22,0x3c,0x75,0xff,0x23,0x3d,0x76,0xff,0x24,0x3d,0x77,0xff,0x25,0x3e,0x78, + 0xff,0x25,0x3f,0x79,0xff,0x27,0x40,0x7a,0xff,0x27,0x41,0x7b,0xff,0x28,0x42, + 0x7c,0xff,0x29,0x42,0x7d,0xff,0x2a,0x43,0x7e,0xff,0x2a,0x44,0x7f,0xff,0x2b, + 0x45,0x80,0xff,0x82,0x2c,0x46,0x81,0xff,0x03,0x2c,0x47,0x82,0xff,0x2d,0x47, + 0x82,0xff,0x2d,0x47,0x81,0xff,0x82,0x2d,0x46,0x81,0xff,0x17,0x2e,0x47,0x82, + 0xff,0x2e,0x48,0x83,0xff,0x30,0x4a,0x86,0xff,0x33,0x4e,0x8a,0xff,0x34,0x4f, + 0x8b,0xff,0x34,0x50,0x8c,0xff,0x35,0x51,0x8d,0xff,0x36,0x52,0x8e,0xff,0x37, + 0x52,0x8f,0xff,0x37,0x53,0x90,0xff,0x38,0x54,0x91,0xff,0x39,0x55,0x92,0xff, + 0x3a,0x56,0x93,0xff,0x3a,0x57,0x94,0xff,0x3b,0x57,0x95,0xff,0x3c,0x58,0x96, + 0xff,0x3d,0x59,0x97,0xff,0x3d,0x5a,0x98,0xff,0x3e,0x5b,0x99,0xff,0x3f,0x5b, + 0x9a,0xff,0x40,0x5c,0x9b,0xff,0x40,0x5d,0x9b,0xff,0x40,0x5c,0x9b,0xff,0x82, + 0x40,0x5b,0x9a,0xff,0x12,0x40,0x5c,0x9b,0xff,0x41,0x5c,0x9b,0xff,0x42,0x5d, + 0x9c,0xff,0x42,0x5d,0x9d,0xff,0x43,0x5e,0x9e,0xff,0x44,0x5f,0x9f,0xff,0x45, + 0x60,0xa1,0xff,0x45,0x61,0xa1,0xff,0x46,0x62,0xa2,0xff,0x46,0x63,0xa3,0xff, + 0x47,0x64,0xa4,0xff,0x48,0x64,0xa5,0xff,0x48,0x65,0xa6,0xff,0x49,0x66,0xa7, + 0xff,0x4a,0x67,0xa8,0xff,0x4b,0x67,0xa9,0xff,0x4b,0x68,0xaa,0xff,0x4c,0x69, + 0xab,0xff,0x88,0x4d,0x6a,0xac,0xff,0x23,0x4e,0x6b,0xad,0xff,0x02,0x02,0x04, + 0xff,0x00,0x01,0x02,0xff,0x14,0x2b,0x60,0xff,0x15,0x2e,0x64,0xff,0x16,0x2f, + 0x66,0xff,0x17,0x30,0x67,0xff,0x18,0x31,0x68,0xff,0x18,0x32,0x69,0xff,0x19, + 0x33,0x6a,0xff,0x1b,0x34,0x6b,0xff,0x43,0x56,0x7e,0xff,0xb5,0xba,0xc0,0xff, + 0x9e,0xa2,0xa7,0xff,0x75,0x7f,0x92,0xff,0x20,0x37,0x6d,0xff,0x1f,0x38,0x71, + 0xff,0x20,0x39,0x72,0xff,0x21,0x3a,0x73,0xff,0x22,0x3b,0x74,0xff,0x22,0x3b, + 0x75,0xff,0x23,0x3c,0x76,0xff,0x24,0x3d,0x76,0xff,0x24,0x3e,0x77,0xff,0x25, + 0x3f,0x79,0xff,0x26,0x40,0x7a,0xff,0x27,0x41,0x7b,0xff,0x28,0x41,0x7c,0xff, + 0x29,0x42,0x7d,0xff,0x29,0x43,0x7e,0xff,0x2a,0x44,0x7f,0xff,0x2b,0x45,0x7f, + 0xff,0x2b,0x45,0x80,0xff,0x2c,0x47,0x81,0xff,0x2d,0x48,0x82,0xff,0x83,0x2e, + 0x49,0x83,0xff,0x0c,0x2e,0x47,0x83,0xff,0x2e,0x47,0x82,0xff,0x2e,0x48,0x83, + 0xff,0x2f,0x48,0x84,0xff,0x31,0x4c,0x87,0xff,0x33,0x4f,0x8b,0xff,0x34,0x50, + 0x8c,0xff,0x35,0x51,0x8d,0xff,0x36,0x51,0x8e,0xff,0x36,0x52,0x8f,0xff,0x37, + 0x53,0x90,0xff,0x38,0x54,0x90,0xff,0x82,0x39,0x55,0x92,0xff,0x06,0x3a,0x56, + 0x94,0xff,0x3b,0x57,0x95,0xff,0x3b,0x58,0x96,0xff,0x3c,0x58,0x96,0xff,0x3d, + 0x59,0x97,0xff,0x3e,0x5a,0x98,0xff,0x82,0x3e,0x5b,0x99,0xff,0x02,0x3e,0x5a, + 0x98,0xff,0x3e,0x59,0x98,0xff,0x82,0x3f,0x5a,0x99,0xff,0x13,0x40,0x5b,0x9a, + 0xff,0x41,0x5c,0x9b,0xff,0x41,0x5c,0x9c,0xff,0x42,0x5d,0x9d,0xff,0x43,0x5e, + 0x9e,0xff,0x44,0x5f,0x9f,0xff,0x45,0x60,0xa0,0xff,0x45,0x61,0xa1,0xff,0x45, + 0x62,0xa2,0xff,0x46,0x62,0xa3,0xff,0x47,0x63,0xa4,0xff,0x47,0x64,0xa5,0xff, + 0x48,0x65,0xa6,0xff,0x49,0x66,0xa7,0xff,0x4a,0x66,0xa8,0xff,0x4a,0x67,0xa9, + 0xff,0x4b,0x68,0xaa,0xff,0x4c,0x69,0xab,0xff,0x4c,0x6a,0xab,0xff,0x85,0x4d, + 0x6a,0xac,0xff,0x27,0x4e,0x6b,0xad,0xff,0x4f,0x6c,0xae,0xff,0x50,0x6d,0xaf, + 0xff,0x02,0x02,0x04,0xff,0x00,0x01,0x02,0xff,0x13,0x2b,0x5f,0xff,0x15,0x2d, + 0x63,0xff,0x16,0x2f,0x66,0xff,0x17,0x30,0x67,0xff,0x17,0x31,0x68,0xff,0x18, + 0x32,0x69,0xff,0x19,0x32,0x6a,0xff,0x1a,0x33,0x6a,0xff,0x33,0x49,0x76,0xff, + 0x8e,0x93,0xa1,0xff,0x87,0x8a,0x93,0xff,0x58,0x64,0x80,0xff,0x1e,0x37,0x6f, + 0xff,0x1f,0x38,0x70,0xff,0x20,0x39,0x71,0xff,0x21,0x3a,0x72,0xff,0x21,0x3a, + 0x73,0xff,0x22,0x3b,0x74,0xff,0x23,0x3c,0x75,0xff,0x23,0x3d,0x76,0xff,0x24, + 0x3e,0x77,0xff,0x25,0x3f,0x79,0xff,0x26,0x40,0x7a,0xff,0x27,0x40,0x7a,0xff, + 0x28,0x41,0x7b,0xff,0x28,0x42,0x7c,0xff,0x29,0x43,0x7d,0xff,0x2a,0x44,0x7e, + 0xff,0x2a,0x44,0x7f,0xff,0x2b,0x45,0x80,0xff,0x2c,0x46,0x81,0xff,0x2d,0x48, + 0x82,0xff,0x2d,0x48,0x83,0xff,0x2e,0x49,0x84,0xff,0x82,0x2f,0x4a,0x85,0xff, + 0x11,0x2f,0x49,0x84,0xff,0x2e,0x48,0x83,0xff,0x2f,0x48,0x84,0xff,0x30,0x4a, + 0x85,0xff,0x33,0x4e,0x8a,0xff,0x34,0x50,0x8b,0xff,0x35,0x50,0x8c,0xff,0x35, + 0x51,0x8d,0xff,0x36,0x52,0x8e,0xff,0x37,0x53,0x8f,0xff,0x38,0x54,0x90,0xff, + 0x38,0x54,0x91,0xff,0x39,0x55,0x92,0xff,0x3a,0x56,0x93,0xff,0x3a,0x57,0x94, + 0xff,0x3b,0x57,0x95,0xff,0x3c,0x58,0x96,0xff,0x82,0x3d,0x59,0x97,0xff,0x19, + 0x3d,0x58,0x96,0xff,0x3d,0x57,0x96,0xff,0x3d,0x58,0x96,0xff,0x3d,0x58,0x97, + 0xff,0x3e,0x59,0x98,0xff,0x3f,0x5a,0x99,0xff,0x40,0x5b,0x9a,0xff,0x40,0x5b, + 0x9b,0xff,0x41,0x5c,0x9b,0xff,0x42,0x5d,0x9c,0xff,0x43,0x5e,0x9d,0xff,0x43, + 0x5e,0x9e,0xff,0x45,0x60,0xa0,0xff,0x45,0x61,0xa1,0xff,0x45,0x61,0xa2,0xff, + 0x46,0x62,0xa3,0xff,0x46,0x63,0xa4,0xff,0x47,0x64,0xa5,0xff,0x48,0x64,0xa5, + 0xff,0x49,0x65,0xa6,0xff,0x49,0x66,0xa7,0xff,0x4a,0x67,0xa8,0xff,0x4b,0x68, + 0xa9,0xff,0x4b,0x68,0xaa,0xff,0x4c,0x69,0xab,0xff,0x83,0x4d,0x6a,0xac,0xff, + 0x3a,0x4e,0x6b,0xad,0xff,0x4f,0x6c,0xae,0xff,0x50,0x6d,0xaf,0xff,0x51,0x6e, + 0xb0,0xff,0x52,0x6f,0xb1,0xff,0x02,0x02,0x04,0xff,0x00,0x01,0x02,0xff,0x13, + 0x2a,0x5f,0xff,0x14,0x2c,0x61,0xff,0x16,0x2f,0x65,0xff,0x16,0x30,0x66,0xff, + 0x17,0x30,0x67,0xff,0x18,0x31,0x68,0xff,0x18,0x32,0x69,0xff,0x19,0x33,0x6a, + 0xff,0x20,0x38,0x6e,0xff,0x39,0x4c,0x78,0xff,0x3b,0x4e,0x77,0xff,0x2b,0x41, + 0x71,0xff,0x1e,0x37,0x6f,0xff,0x1f,0x38,0x70,0xff,0x20,0x38,0x71,0xff,0x20, + 0x39,0x72,0xff,0x21,0x3a,0x73,0xff,0x22,0x3b,0x74,0xff,0x23,0x3c,0x75,0xff, + 0x23,0x3c,0x76,0xff,0x24,0x3d,0x77,0xff,0x25,0x3f,0x78,0xff,0x26,0x3f,0x79, + 0xff,0x27,0x40,0x7a,0xff,0x27,0x41,0x7b,0xff,0x28,0x42,0x7c,0xff,0x29,0x42, + 0x7d,0xff,0x29,0x43,0x7e,0xff,0x2a,0x44,0x7f,0xff,0x2b,0x45,0x80,0xff,0x2c, + 0x46,0x81,0xff,0x2c,0x47,0x82,0xff,0x2d,0x48,0x83,0xff,0x2e,0x49,0x84,0xff, + 0x2f,0x4a,0x84,0xff,0x2f,0x4a,0x85,0xff,0x30,0x4a,0x85,0xff,0x2e,0x48,0x83, + 0xff,0x2f,0x48,0x83,0xff,0x2f,0x49,0x84,0xff,0x31,0x4c,0x88,0xff,0x34,0x4f, + 0x8b,0xff,0x34,0x50,0x8c,0xff,0x35,0x51,0x8d,0xff,0x36,0x52,0x8e,0xff,0x37, + 0x52,0x8f,0xff,0x37,0x53,0x90,0xff,0x38,0x54,0x91,0xff,0x39,0x55,0x92,0xff, + 0x39,0x55,0x93,0xff,0x3a,0x56,0x94,0xff,0x82,0x3b,0x57,0x95,0xff,0x10,0x3b, + 0x56,0x94,0xff,0x3b,0x56,0x93,0xff,0x3b,0x56,0x94,0xff,0x3c,0x56,0x95,0xff, + 0x3d,0x57,0x95,0xff,0x3d,0x58,0x96,0xff,0x3e,0x59,0x97,0xff,0x3f,0x59,0x98, + 0xff,0x3f,0x5a,0x99,0xff,0x40,0x5b,0x9a,0xff,0x41,0x5c,0x9b,0xff,0x42,0x5d, + 0x9c,0xff,0x42,0x5d,0x9d,0xff,0x43,0x5e,0x9e,0xff,0x44,0x60,0xa0,0xff,0x45, + 0x61,0xa1,0xff,0x82,0x46,0x62,0xa3,0xff,0x0d,0x46,0x63,0xa3,0xff,0x47,0x63, + 0xa4,0xff,0x48,0x64,0xa5,0xff,0x48,0x65,0xa6,0xff,0x49,0x66,0xa7,0xff,0x4a, + 0x67,0xa8,0xff,0x4b,0x67,0xa9,0xff,0x4b,0x68,0xaa,0xff,0x4c,0x69,0xab,0xff, + 0x4d,0x6a,0xac,0xff,0x4e,0x6b,0xad,0xff,0x4f,0x6c,0xae,0xff,0x50,0x6d,0xaf, + 0xff,0x84,0x52,0x6f,0xb1,0xff,0x36,0x02,0x02,0x04,0xff,0x00,0x01,0x02,0xff, + 0x13,0x2a,0x5e,0xff,0x14,0x2b,0x60,0xff,0x15,0x2d,0x63,0xff,0x16,0x2f,0x66, + 0xff,0x17,0x30,0x67,0xff,0x17,0x31,0x68,0xff,0x18,0x32,0x69,0xff,0x1d,0x35, + 0x6c,0xff,0x2e,0x44,0x74,0xff,0x36,0x49,0x72,0xff,0x39,0x4d,0x78,0xff,0x3a, + 0x4d,0x78,0xff,0x27,0x3e,0x71,0xff,0x1f,0x38,0x70,0xff,0x1f,0x38,0x71,0xff, + 0x20,0x39,0x72,0xff,0x21,0x3a,0x73,0xff,0x21,0x3b,0x74,0xff,0x22,0x3b,0x74, + 0xff,0x23,0x3c,0x75,0xff,0x24,0x3d,0x76,0xff,0x25,0x3e,0x77,0xff,0x26,0x3f, + 0x79,0xff,0x26,0x40,0x7a,0xff,0x27,0x41,0x7b,0xff,0x28,0x41,0x7c,0xff,0x28, + 0x42,0x7d,0xff,0x29,0x43,0x7e,0xff,0x2a,0x44,0x7e,0xff,0x2b,0x45,0x7f,0xff, + 0x2b,0x45,0x80,0xff,0x2c,0x47,0x81,0xff,0x2d,0x48,0x82,0xff,0x2e,0x49,0x83, + 0xff,0x2e,0x49,0x84,0xff,0x2f,0x4a,0x85,0xff,0x30,0x4b,0x86,0xff,0x2f,0x4a, + 0x85,0xff,0x2e,0x48,0x83,0xff,0x2f,0x48,0x84,0xff,0x30,0x4a,0x86,0xff,0x33, + 0x4f,0x8b,0xff,0x34,0x50,0x8c,0xff,0x35,0x51,0x8d,0xff,0x36,0x51,0x8e,0xff, + 0x36,0x52,0x8e,0xff,0x37,0x53,0x8f,0xff,0x38,0x54,0x90,0xff,0x38,0x55,0x91, + 0xff,0x39,0x55,0x92,0xff,0x3a,0x55,0x93,0xff,0x3a,0x55,0x92,0xff,0x82,0x39, + 0x54,0x92,0xff,0x12,0x3a,0x54,0x92,0xff,0x3b,0x55,0x93,0xff,0x3b,0x56,0x94, + 0xff,0x3c,0x57,0x95,0xff,0x3d,0x58,0x96,0xff,0x3e,0x58,0x97,0xff,0x3e,0x59, + 0x98,0xff,0x3f,0x5a,0x99,0xff,0x40,0x5b,0x9a,0xff,0x41,0x5c,0x9b,0xff,0x41, + 0x5c,0x9c,0xff,0x42,0x5d,0x9d,0xff,0x43,0x5f,0x9f,0xff,0x45,0x61,0xa1,0xff, + 0x47,0x63,0xa3,0xff,0x48,0x65,0xa5,0xff,0x49,0x65,0xa6,0xff,0x48,0x64,0xa5, + 0xff,0x82,0x47,0x64,0xa5,0xff,0x08,0x48,0x65,0xa6,0xff,0x49,0x65,0xa7,0xff, + 0x4a,0x66,0xa8,0xff,0x4a,0x67,0xa9,0xff,0x4b,0x68,0xaa,0xff,0x4d,0x6a,0xac, + 0xff,0x4f,0x6c,0xae,0xff,0x51,0x6e,0xb0,0xff,0x86,0x52,0x6f,0xb1,0xff,0x48, + 0x02,0x02,0x04,0xff,0x00,0x01,0x02,0xff,0x13,0x2a,0x5e,0xff,0x13,0x2a,0x5f, + 0xff,0x14,0x2c,0x61,0xff,0x15,0x2e,0x64,0xff,0x16,0x2f,0x67,0xff,0x17,0x30, + 0x68,0xff,0x18,0x31,0x69,0xff,0x1b,0x34,0x6b,0xff,0x27,0x3e,0x70,0xff,0x30, + 0x43,0x6e,0xff,0x38,0x4b,0x75,0xff,0x33,0x47,0x72,0xff,0x24,0x3b,0x6f,0xff, + 0x1e,0x37,0x6f,0xff,0x1f,0x38,0x70,0xff,0x20,0x39,0x71,0xff,0x20,0x3a,0x72, + 0xff,0x21,0x3a,0x73,0xff,0x22,0x3b,0x74,0xff,0x23,0x3c,0x75,0xff,0x23,0x3d, + 0x76,0xff,0x25,0x3d,0x78,0xff,0x25,0x3f,0x78,0xff,0x26,0x3f,0x79,0xff,0x27, + 0x40,0x7a,0xff,0x28,0x41,0x7b,0xff,0x28,0x42,0x7c,0xff,0x29,0x43,0x7d,0xff, + 0x2a,0x43,0x7e,0xff,0x2a,0x44,0x7f,0xff,0x2b,0x45,0x80,0xff,0x2c,0x46,0x81, + 0xff,0x2d,0x48,0x82,0xff,0x2d,0x48,0x83,0xff,0x2e,0x49,0x84,0xff,0x2f,0x4a, + 0x85,0xff,0x2f,0x4b,0x86,0xff,0x30,0x4b,0x87,0xff,0x2e,0x48,0x83,0xff,0x2f, + 0x48,0x84,0xff,0x2f,0x49,0x84,0xff,0x32,0x4d,0x89,0xff,0x34,0x4f,0x8b,0xff, + 0x35,0x50,0x8c,0xff,0x35,0x51,0x8d,0xff,0x36,0x52,0x8e,0xff,0x37,0x53,0x8f, + 0xff,0x37,0x53,0x90,0xff,0x38,0x54,0x91,0xff,0x38,0x53,0x90,0xff,0x38,0x52, + 0x8f,0xff,0x38,0x53,0x90,0xff,0x38,0x52,0x90,0xff,0x39,0x53,0x91,0xff,0x3a, + 0x54,0x92,0xff,0x3a,0x55,0x93,0xff,0x3b,0x56,0x94,0xff,0x3c,0x57,0x95,0xff, + 0x3d,0x57,0x96,0xff,0x3d,0x58,0x97,0xff,0x3e,0x59,0x98,0xff,0x3f,0x5a,0x99, + 0xff,0x40,0x5a,0x9a,0xff,0x40,0x5b,0x9a,0xff,0x41,0x5c,0x9b,0xff,0x43,0x5e, + 0x9d,0xff,0x44,0x61,0xa1,0xff,0x47,0x63,0xa3,0xff,0x48,0x64,0xa4,0xff,0x49, + 0x65,0xa6,0xff,0x82,0x4a,0x66,0xa7,0xff,0x01,0x4a,0x67,0xa7,0xff,0x82,0x4a, + 0x67,0xa8,0xff,0x06,0x4b,0x68,0xa9,0xff,0x4c,0x68,0xaa,0xff,0x4d,0x69,0xab, + 0xff,0x4e,0x6b,0xad,0xff,0x4f,0x6c,0xae,0xff,0x51,0x6e,0xb0,0xff,0x87,0x52, + 0x6f,0xb1,0xff,0x53,0x02,0x02,0x04,0xff,0x00,0x01,0x02,0xff,0x12,0x29,0x5d, + 0xff,0x13,0x2a,0x5e,0xff,0x14,0x2b,0x5f,0xff,0x14,0x2c,0x61,0xff,0x16,0x2e, + 0x64,0xff,0x17,0x30,0x66,0xff,0x18,0x31,0x68,0xff,0x19,0x32,0x69,0xff,0x1b, + 0x34,0x6b,0xff,0x1e,0x36,0x6b,0xff,0x22,0x39,0x6e,0xff,0x20,0x38,0x6d,0xff, + 0x1e,0x37,0x6e,0xff,0x1e,0x37,0x6f,0xff,0x1f,0x38,0x70,0xff,0x1f,0x38,0x71, + 0xff,0x20,0x39,0x72,0xff,0x21,0x3a,0x73,0xff,0x22,0x3b,0x74,0xff,0x22,0x3c, + 0x75,0xff,0x23,0x3c,0x76,0xff,0x24,0x3d,0x77,0xff,0x25,0x3e,0x78,0xff,0x26, + 0x3f,0x79,0xff,0x26,0x40,0x7a,0xff,0x27,0x41,0x7b,0xff,0x28,0x42,0x7c,0xff, + 0x29,0x42,0x7d,0xff,0x29,0x43,0x7e,0xff,0x2a,0x44,0x7f,0xff,0x2b,0x45,0x80, + 0xff,0x2c,0x45,0x81,0xff,0x2c,0x47,0x82,0xff,0x2d,0x48,0x83,0xff,0x2e,0x49, + 0x84,0xff,0x2e,0x4a,0x84,0xff,0x2f,0x4a,0x85,0xff,0x30,0x4b,0x86,0xff,0x2e, + 0x48,0x84,0xff,0x2e,0x48,0x83,0xff,0x2f,0x49,0x84,0xff,0x31,0x4b,0x87,0xff, + 0x34,0x4f,0x8b,0xff,0x34,0x50,0x8c,0xff,0x35,0x51,0x8d,0xff,0x36,0x52,0x8e, + 0xff,0x36,0x52,0x8f,0xff,0x36,0x51,0x8e,0xff,0x36,0x50,0x8d,0xff,0x36,0x51, + 0x8e,0xff,0x36,0x50,0x8e,0xff,0x37,0x51,0x8e,0xff,0x38,0x52,0x8f,0xff,0x39, + 0x53,0x91,0xff,0x39,0x54,0x92,0xff,0x3a,0x54,0x92,0xff,0x3b,0x55,0x93,0xff, + 0x3c,0x56,0x94,0xff,0x3c,0x57,0x95,0xff,0x3d,0x58,0x96,0xff,0x3e,0x59,0x97, + 0xff,0x3f,0x59,0x98,0xff,0x3f,0x5a,0x99,0xff,0x40,0x5c,0x9b,0xff,0x42,0x5e, + 0x9d,0xff,0x44,0x61,0xa0,0xff,0x45,0x62,0xa2,0xff,0x47,0x64,0xa3,0xff,0x48, + 0x64,0xa4,0xff,0x49,0x65,0xa5,0xff,0x4a,0x66,0xa6,0xff,0x4a,0x67,0xa7,0xff, + 0x4b,0x68,0xa8,0xff,0x4b,0x68,0xa9,0xff,0x4c,0x68,0xa9,0xff,0x4c,0x69,0xaa, + 0xff,0x4d,0x6a,0xab,0xff,0x4f,0x6b,0xad,0xff,0x4f,0x6c,0xae,0xff,0x50,0x6d, + 0xaf,0xff,0x51,0x6e,0xb0,0xff,0x87,0x52,0x6f,0xb1,0xff,0x2e,0x02,0x02,0x04, + 0xff,0x00,0x01,0x02,0xff,0x12,0x29,0x5d,0xff,0x13,0x2a,0x5e,0xff,0x13,0x2b, + 0x5f,0xff,0x14,0x2b,0x60,0xff,0x15,0x2c,0x61,0xff,0x16,0x2e,0x63,0xff,0x17, + 0x2f,0x66,0xff,0x18,0x31,0x68,0xff,0x19,0x32,0x6a,0xff,0x1a,0x33,0x6b,0xff, + 0x1a,0x34,0x6c,0xff,0x1b,0x35,0x6d,0xff,0x1c,0x36,0x6e,0xff,0x1e,0x37,0x6f, + 0xff,0x1f,0x37,0x70,0xff,0x1f,0x38,0x71,0xff,0x20,0x39,0x71,0xff,0x21,0x3a, + 0x72,0xff,0x21,0x3b,0x73,0xff,0x22,0x3b,0x74,0xff,0x23,0x3c,0x75,0xff,0x24, + 0x3d,0x76,0xff,0x25,0x3e,0x78,0xff,0x25,0x3f,0x79,0xff,0x26,0x40,0x7a,0xff, + 0x27,0x41,0x7b,0xff,0x28,0x41,0x7c,0xff,0x28,0x42,0x7c,0xff,0x29,0x43,0x7d, + 0xff,0x2a,0x44,0x7e,0xff,0x2b,0x44,0x7f,0xff,0x2b,0x45,0x80,0xff,0x2c,0x46, + 0x81,0xff,0x2d,0x48,0x82,0xff,0x2e,0x49,0x83,0xff,0x2e,0x49,0x84,0xff,0x2f, + 0x4a,0x85,0xff,0x30,0x4b,0x86,0xff,0x2f,0x49,0x84,0xff,0x2e,0x47,0x83,0xff, + 0x2f,0x48,0x84,0xff,0x30,0x49,0x85,0xff,0x33,0x4f,0x8a,0xff,0x34,0x50,0x8c, + 0xff,0x82,0x35,0x50,0x8c,0xff,0x01,0x34,0x4e,0x8b,0xff,0x82,0x35,0x4f,0x8b, + 0xff,0x21,0x35,0x4f,0x8c,0xff,0x36,0x50,0x8d,0xff,0x37,0x51,0x8e,0xff,0x38, + 0x52,0x8f,0xff,0x38,0x53,0x90,0xff,0x39,0x53,0x91,0xff,0x3a,0x54,0x92,0xff, + 0x3a,0x55,0x93,0xff,0x3b,0x56,0x94,0xff,0x3c,0x57,0x95,0xff,0x3d,0x58,0x96, + 0xff,0x3e,0x58,0x97,0xff,0x3e,0x59,0x98,0xff,0x40,0x5b,0x9a,0xff,0x41,0x5e, + 0x9d,0xff,0x43,0x60,0x9f,0xff,0x44,0x61,0xa1,0xff,0x45,0x63,0xa2,0xff,0x46, + 0x63,0xa3,0xff,0x48,0x64,0xa4,0xff,0x49,0x65,0xa5,0xff,0x49,0x66,0xa6,0xff, + 0x4a,0x66,0xa7,0xff,0x4b,0x67,0xa8,0xff,0x4b,0x68,0xa9,0xff,0x4c,0x69,0xaa, + 0xff,0x4d,0x6a,0xab,0xff,0x4e,0x6a,0xac,0xff,0x4e,0x6b,0xad,0xff,0x4f,0x6c, + 0xae,0xff,0x50,0x6d,0xae,0xff,0x51,0x6e,0xaf,0xff,0x51,0x6e,0xb0,0xff,0x86, + 0x52,0x6f,0xb1,0xff,0x2e,0x02,0x02,0x04,0xff,0x00,0x01,0x02,0xff,0x12,0x29, + 0x5d,0xff,0x13,0x2a,0x5e,0xff,0x13,0x2a,0x5f,0xff,0x14,0x2b,0x60,0xff,0x15, + 0x2c,0x61,0xff,0x15,0x2d,0x61,0xff,0x16,0x2e,0x63,0xff,0x17,0x2f,0x64,0xff, + 0x18,0x30,0x67,0xff,0x19,0x32,0x69,0xff,0x1a,0x34,0x6b,0xff,0x1b,0x34,0x6c, + 0xff,0x1c,0x35,0x6d,0xff,0x1d,0x36,0x6e,0xff,0x1e,0x37,0x6f,0xff,0x1f,0x38, + 0x70,0xff,0x20,0x39,0x71,0xff,0x20,0x39,0x72,0xff,0x21,0x3a,0x73,0xff,0x22, + 0x3b,0x74,0xff,0x23,0x3c,0x75,0xff,0x23,0x3d,0x76,0xff,0x24,0x3e,0x77,0xff, + 0x25,0x3f,0x78,0xff,0x26,0x3f,0x79,0xff,0x27,0x40,0x7a,0xff,0x27,0x41,0x7b, + 0xff,0x28,0x42,0x7c,0xff,0x29,0x43,0x7d,0xff,0x2a,0x43,0x7e,0xff,0x2a,0x44, + 0x7f,0xff,0x2b,0x45,0x80,0xff,0x2c,0x46,0x81,0xff,0x2c,0x47,0x82,0xff,0x2d, + 0x48,0x83,0xff,0x2e,0x49,0x84,0xff,0x2f,0x4a,0x85,0xff,0x2f,0x4b,0x86,0xff, + 0x2e,0x49,0x84,0xff,0x2e,0x47,0x82,0xff,0x2f,0x48,0x83,0xff,0x2f,0x49,0x84, + 0xff,0x32,0x4e,0x89,0xff,0x33,0x4f,0x8a,0xff,0x83,0x33,0x4d,0x89,0xff,0x23, + 0x34,0x4d,0x8a,0xff,0x34,0x4e,0x8b,0xff,0x35,0x4f,0x8c,0xff,0x36,0x50,0x8d, + 0xff,0x37,0x51,0x8e,0xff,0x37,0x51,0x8f,0xff,0x38,0x52,0x90,0xff,0x39,0x53, + 0x91,0xff,0x39,0x54,0x92,0xff,0x3a,0x55,0x93,0xff,0x3b,0x55,0x94,0xff,0x3c, + 0x56,0x95,0xff,0x3d,0x57,0x96,0xff,0x3d,0x58,0x97,0xff,0x3f,0x5a,0x99,0xff, + 0x41,0x5d,0x9c,0xff,0x42,0x5f,0x9e,0xff,0x43,0x60,0x9f,0xff,0x44,0x61,0xa0, + 0xff,0x45,0x62,0xa1,0xff,0x46,0x63,0xa3,0xff,0x47,0x64,0xa4,0xff,0x48,0x65, + 0xa5,0xff,0x49,0x65,0xa6,0xff,0x4a,0x66,0xa6,0xff,0x4b,0x67,0xa7,0xff,0x4b, + 0x68,0xa8,0xff,0x4c,0x68,0xa9,0xff,0x4d,0x69,0xaa,0xff,0x4d,0x6a,0xab,0xff, + 0x4e,0x6b,0xac,0xff,0x4f,0x6c,0xad,0xff,0x50,0x6c,0xae,0xff,0x50,0x6d,0xaf, + 0xff,0x51,0x6e,0xb0,0xff,0x86,0x52,0x6f,0xb1,0xff,0x02,0x02,0x02,0x04,0xff, + 0x00,0x01,0x02,0xff,0x82,0x12,0x29,0x5d,0xff,0x29,0x13,0x2a,0x5e,0xff,0x14, + 0x2b,0x5f,0xff,0x14,0x2c,0x60,0xff,0x15,0x2c,0x61,0xff,0x16,0x2d,0x62,0xff, + 0x17,0x2e,0x63,0xff,0x17,0x2f,0x65,0xff,0x18,0x30,0x66,0xff,0x1a,0x31,0x68, + 0xff,0x1a,0x33,0x6a,0xff,0x1b,0x35,0x6c,0xff,0x1d,0x36,0x6e,0xff,0x1e,0x37, + 0x6f,0xff,0x1f,0x38,0x70,0xff,0x1f,0x38,0x71,0xff,0x20,0x39,0x72,0xff,0x21, + 0x3a,0x73,0xff,0x22,0x3b,0x74,0xff,0x22,0x3b,0x75,0xff,0x23,0x3d,0x76,0xff, + 0x24,0x3e,0x77,0xff,0x25,0x3e,0x78,0xff,0x26,0x3f,0x79,0xff,0x26,0x40,0x7a, + 0xff,0x27,0x41,0x7b,0xff,0x28,0x41,0x7c,0xff,0x29,0x42,0x7d,0xff,0x29,0x43, + 0x7e,0xff,0x2a,0x44,0x7f,0xff,0x2b,0x45,0x80,0xff,0x2b,0x45,0x81,0xff,0x2c, + 0x47,0x81,0xff,0x2d,0x48,0x82,0xff,0x2e,0x49,0x83,0xff,0x2e,0x4a,0x84,0xff, + 0x2f,0x4a,0x85,0xff,0x2e,0x49,0x84,0xff,0x2e,0x47,0x82,0xff,0x2e,0x48,0x83, + 0xff,0x2f,0x49,0x84,0xff,0x30,0x4b,0x86,0xff,0x82,0x31,0x4b,0x87,0xff,0x24, + 0x32,0x4c,0x88,0xff,0x33,0x4c,0x89,0xff,0x33,0x4d,0x8a,0xff,0x34,0x4e,0x8b, + 0xff,0x35,0x4f,0x8b,0xff,0x36,0x50,0x8c,0xff,0x36,0x50,0x8d,0xff,0x37,0x51, + 0x8e,0xff,0x38,0x52,0x8f,0xff,0x38,0x53,0x90,0xff,0x39,0x54,0x91,0xff,0x3a, + 0x54,0x92,0xff,0x3b,0x55,0x93,0xff,0x3b,0x56,0x94,0xff,0x3d,0x58,0x96,0xff, + 0x3e,0x5a,0x98,0xff,0x40,0x5d,0x9b,0xff,0x41,0x5e,0x9d,0xff,0x42,0x5f,0x9e, + 0xff,0x43,0x60,0x9f,0xff,0x44,0x61,0xa0,0xff,0x44,0x61,0xa1,0xff,0x46,0x63, + 0xa2,0xff,0x47,0x64,0xa3,0xff,0x48,0x64,0xa4,0xff,0x49,0x65,0xa5,0xff,0x4a, + 0x66,0xa6,0xff,0x4a,0x67,0xa7,0xff,0x4b,0x67,0xa8,0xff,0x4c,0x68,0xa9,0xff, + 0x4c,0x69,0xaa,0xff,0x4d,0x6a,0xab,0xff,0x4e,0x6b,0xac,0xff,0x4f,0x6b,0xad, + 0xff,0x4f,0x6c,0xae,0xff,0x50,0x6d,0xaf,0xff,0x84,0x51,0x6e,0xb0,0xff,0x05, + 0x50,0x6d,0xaf,0xff,0x4f,0x6c,0xae,0xff,0x4e,0x6b,0xad,0xff,0x02,0x02,0x04, + 0xff,0x00,0x01,0x02,0xff,0x82,0x12,0x29,0x5d,0xff,0x4c,0x13,0x2a,0x5e,0xff, + 0x13,0x2b,0x5f,0xff,0x14,0x2b,0x60,0xff,0x15,0x2c,0x61,0xff,0x16,0x2d,0x62, + 0xff,0x16,0x2e,0x63,0xff,0x17,0x2f,0x64,0xff,0x18,0x2f,0x65,0xff,0x18,0x30, + 0x66,0xff,0x1a,0x32,0x67,0xff,0x1b,0x33,0x69,0xff,0x1c,0x33,0x6b,0xff,0x1d, + 0x35,0x6d,0xff,0x1e,0x37,0x6f,0xff,0x1f,0x38,0x70,0xff,0x20,0x39,0x71,0xff, + 0x21,0x3a,0x72,0xff,0x21,0x3a,0x73,0xff,0x22,0x3b,0x74,0xff,0x23,0x3d,0x76, + 0xff,0x24,0x3d,0x77,0xff,0x25,0x3e,0x78,0xff,0x25,0x3f,0x79,0xff,0x26,0x40, + 0x7a,0xff,0x27,0x40,0x7b,0xff,0x28,0x41,0x7b,0xff,0x28,0x42,0x7c,0xff,0x29, + 0x43,0x7d,0xff,0x2a,0x44,0x7e,0xff,0x2a,0x44,0x7f,0xff,0x2b,0x45,0x80,0xff, + 0x2c,0x46,0x81,0xff,0x2d,0x48,0x82,0xff,0x2d,0x48,0x83,0xff,0x2e,0x49,0x84, + 0xff,0x2f,0x4a,0x85,0xff,0x2e,0x48,0x83,0xff,0x2d,0x47,0x82,0xff,0x2e,0x47, + 0x83,0xff,0x2f,0x48,0x84,0xff,0x2f,0x49,0x85,0xff,0x30,0x4a,0x86,0xff,0x31, + 0x4b,0x87,0xff,0x32,0x4b,0x87,0xff,0x32,0x4c,0x88,0xff,0x33,0x4d,0x89,0xff, + 0x34,0x4e,0x8a,0xff,0x35,0x4f,0x8b,0xff,0x35,0x4f,0x8c,0xff,0x36,0x50,0x8d, + 0xff,0x37,0x51,0x8e,0xff,0x37,0x52,0x8f,0xff,0x38,0x52,0x90,0xff,0x39,0x53, + 0x91,0xff,0x3a,0x54,0x92,0xff,0x3a,0x55,0x93,0xff,0x3c,0x57,0x95,0xff,0x3e, + 0x5a,0x98,0xff,0x40,0x5c,0x9a,0xff,0x40,0x5d,0x9b,0xff,0x41,0x5e,0x9d,0xff, + 0x42,0x5f,0x9e,0xff,0x43,0x60,0x9f,0xff,0x43,0x60,0xa0,0xff,0x44,0x61,0xa0, + 0xff,0x45,0x62,0xa2,0xff,0x46,0x63,0xa3,0xff,0x47,0x64,0xa4,0xff,0x49,0x65, + 0xa5,0xff,0x49,0x66,0xa6,0xff,0x4a,0x66,0xa7,0xff,0x4b,0x67,0xa8,0xff,0x4b, + 0x68,0xa9,0xff,0x4c,0x69,0xaa,0xff,0x4d,0x69,0xaa,0xff,0x4e,0x6a,0xab,0xff, + 0x83,0x4e,0x6b,0xac,0xff,0x82,0x4d,0x6a,0xac,0xff,0x82,0x4e,0x6b,0xad,0xff, + 0x83,0x4d,0x6a,0xac,0xff,0x26,0x02,0x02,0x04,0xff,0x00,0x01,0x02,0xff,0x13, + 0x2b,0x60,0xff,0x12,0x29,0x5d,0xff,0x12,0x29,0x5e,0xff,0x13,0x2a,0x5f,0xff, + 0x14,0x2b,0x60,0xff,0x15,0x2c,0x60,0xff,0x15,0x2d,0x61,0xff,0x16,0x2d,0x62, + 0xff,0x17,0x2e,0x63,0xff,0x17,0x2f,0x64,0xff,0x18,0x30,0x65,0xff,0x19,0x31, + 0x66,0xff,0x1a,0x31,0x67,0xff,0x1b,0x32,0x69,0xff,0x1b,0x34,0x6a,0xff,0x1c, + 0x35,0x6b,0xff,0x1d,0x36,0x6d,0xff,0x1e,0x37,0x6f,0xff,0x20,0x39,0x72,0xff, + 0x21,0x3a,0x73,0xff,0x22,0x3b,0x74,0xff,0x23,0x3c,0x75,0xff,0x24,0x3d,0x76, + 0xff,0x24,0x3e,0x77,0xff,0x25,0x3f,0x78,0xff,0x26,0x3f,0x79,0xff,0x27,0x40, + 0x7a,0xff,0x27,0x41,0x7b,0xff,0x28,0x42,0x7c,0xff,0x29,0x42,0x7d,0xff,0x2a, + 0x43,0x7e,0xff,0x2a,0x44,0x7f,0xff,0x2b,0x45,0x80,0xff,0x2c,0x46,0x81,0xff, + 0x2c,0x47,0x82,0xff,0x2d,0x48,0x83,0xff,0x82,0x2e,0x49,0x84,0xff,0x25,0x2d, + 0x47,0x82,0xff,0x2d,0x46,0x81,0xff,0x2e,0x47,0x82,0xff,0x2f,0x48,0x83,0xff, + 0x2f,0x49,0x84,0xff,0x30,0x4a,0x85,0xff,0x31,0x4a,0x86,0xff,0x31,0x4b,0x87, + 0xff,0x32,0x4c,0x88,0xff,0x33,0x4d,0x89,0xff,0x34,0x4d,0x8a,0xff,0x34,0x4e, + 0x8b,0xff,0x35,0x4f,0x8c,0xff,0x36,0x50,0x8d,0xff,0x37,0x51,0x8e,0xff,0x37, + 0x51,0x8f,0xff,0x38,0x52,0x90,0xff,0x39,0x53,0x90,0xff,0x39,0x54,0x92,0xff, + 0x3b,0x56,0x94,0xff,0x3d,0x59,0x97,0xff,0x3e,0x5b,0x99,0xff,0x40,0x5c,0x9a, + 0xff,0x40,0x5d,0x9b,0xff,0x41,0x5e,0x9c,0xff,0x42,0x5f,0x9d,0xff,0x43,0x5f, + 0x9e,0xff,0x43,0x60,0x9f,0xff,0x44,0x61,0xa0,0xff,0x45,0x62,0xa2,0xff,0x46, + 0x63,0xa3,0xff,0x47,0x64,0xa4,0xff,0x48,0x65,0xa5,0xff,0x49,0x65,0xa6,0xff, + 0x4a,0x66,0xa6,0xff,0x4a,0x67,0xa7,0xff,0x4b,0x68,0xa8,0xff,0x82,0x4c,0x68, + 0xa9,0xff,0x02,0x4b,0x68,0xa9,0xff,0x4a,0x67,0xa8,0xff,0x82,0x4b,0x68,0xa9, + 0xff,0x02,0x4b,0x68,0xaa,0xff,0x4c,0x69,0xab,0xff,0x85,0x4d,0x6a,0xac,0xff, + 0x4b,0x02,0x02,0x04,0xff,0x00,0x01,0x02,0xff,0x13,0x2c,0x62,0xff,0x13,0x2b, + 0x60,0xff,0x12,0x29,0x5e,0xff,0x13,0x2a,0x5e,0xff,0x14,0x2b,0x5f,0xff,0x14, + 0x2c,0x60,0xff,0x15,0x2c,0x61,0xff,0x16,0x2d,0x62,0xff,0x17,0x2e,0x63,0xff, + 0x17,0x2f,0x64,0xff,0x18,0x30,0x65,0xff,0x19,0x30,0x66,0xff,0x19,0x31,0x67, + 0xff,0x1a,0x32,0x68,0xff,0x1b,0x33,0x69,0xff,0x1b,0x34,0x6a,0xff,0x1c,0x35, + 0x6b,0xff,0x1d,0x36,0x6c,0xff,0x1e,0x37,0x6e,0xff,0x1f,0x38,0x70,0xff,0x20, + 0x39,0x72,0xff,0x22,0x3b,0x74,0xff,0x23,0x3d,0x76,0xff,0x24,0x3d,0x77,0xff, + 0x25,0x3e,0x78,0xff,0x26,0x3f,0x79,0xff,0x26,0x40,0x7a,0xff,0x27,0x41,0x7b, + 0xff,0x28,0x41,0x7c,0xff,0x28,0x42,0x7d,0xff,0x29,0x43,0x7e,0xff,0x2a,0x44, + 0x7f,0xff,0x2b,0x45,0x7f,0xff,0x2b,0x45,0x80,0xff,0x2c,0x47,0x81,0xff,0x2d, + 0x48,0x82,0xff,0x2c,0x47,0x81,0xff,0x2c,0x46,0x80,0xff,0x2c,0x45,0x80,0xff, + 0x2d,0x46,0x81,0xff,0x2e,0x47,0x82,0xff,0x2e,0x48,0x83,0xff,0x2f,0x48,0x84, + 0xff,0x30,0x49,0x85,0xff,0x30,0x4a,0x86,0xff,0x31,0x4b,0x87,0xff,0x32,0x4c, + 0x88,0xff,0x33,0x4c,0x89,0xff,0x33,0x4d,0x89,0xff,0x34,0x4e,0x8b,0xff,0x35, + 0x4f,0x8b,0xff,0x35,0x50,0x8c,0xff,0x36,0x50,0x8d,0xff,0x37,0x51,0x8e,0xff, + 0x38,0x52,0x8f,0xff,0x39,0x53,0x91,0xff,0x3b,0x56,0x94,0xff,0x3d,0x59,0x97, + 0xff,0x3d,0x5a,0x98,0xff,0x3e,0x5b,0x99,0xff,0x3f,0x5c,0x9a,0xff,0x40,0x5d, + 0x9b,0xff,0x41,0x5d,0x9c,0xff,0x41,0x5e,0x9d,0xff,0x42,0x5f,0x9e,0xff,0x43, + 0x60,0x9f,0xff,0x44,0x61,0xa0,0xff,0x45,0x62,0xa1,0xff,0x45,0x63,0xa2,0xff, + 0x46,0x63,0xa3,0xff,0x48,0x64,0xa4,0xff,0x49,0x65,0xa5,0xff,0x4a,0x66,0xa6, + 0xff,0x82,0x49,0x66,0xa6,0xff,0x82,0x48,0x65,0xa5,0xff,0x07,0x48,0x65,0xa6, + 0xff,0x49,0x66,0xa7,0xff,0x4a,0x66,0xa8,0xff,0x4a,0x67,0xa9,0xff,0x4b,0x68, + 0xa9,0xff,0x4c,0x69,0xaa,0xff,0x4d,0x69,0xac,0xff,0x84,0x4d,0x6a,0xac,0xff, + 0x02,0x02,0x02,0x04,0xff,0x00,0x01,0x02,0xff,0x82,0x13,0x2c,0x62,0xff,0x47, + 0x13,0x2b,0x60,0xff,0x13,0x2a,0x5f,0xff,0x13,0x2b,0x5f,0xff,0x14,0x2b,0x60, + 0xff,0x15,0x2c,0x61,0xff,0x16,0x2d,0x62,0xff,0x16,0x2e,0x63,0xff,0x17,0x2e, + 0x64,0xff,0x18,0x2f,0x65,0xff,0x18,0x30,0x65,0xff,0x19,0x31,0x66,0xff,0x1a, + 0x32,0x68,0xff,0x1b,0x32,0x69,0xff,0x1b,0x33,0x69,0xff,0x1b,0x34,0x6a,0xff, + 0x1c,0x35,0x6b,0xff,0x1d,0x36,0x6d,0xff,0x1e,0x37,0x6e,0xff,0x1f,0x38,0x6f, + 0xff,0x20,0x39,0x70,0xff,0x21,0x3a,0x72,0xff,0x22,0x3c,0x75,0xff,0x24,0x3d, + 0x76,0xff,0x25,0x3f,0x78,0xff,0x26,0x40,0x79,0xff,0x27,0x40,0x7a,0xff,0x27, + 0x41,0x7b,0xff,0x28,0x42,0x7c,0xff,0x29,0x43,0x7d,0xff,0x2a,0x44,0x7e,0xff, + 0x2a,0x44,0x7f,0xff,0x2b,0x45,0x80,0xff,0x2b,0x45,0x7f,0xff,0x2b,0x45,0x7e, + 0xff,0x2a,0x44,0x7e,0xff,0x2b,0x45,0x7f,0xff,0x2c,0x45,0x80,0xff,0x2d,0x46, + 0x81,0xff,0x2d,0x47,0x82,0xff,0x2e,0x47,0x83,0xff,0x2f,0x48,0x84,0xff,0x2f, + 0x49,0x84,0xff,0x30,0x4a,0x85,0xff,0x31,0x4a,0x86,0xff,0x32,0x4b,0x87,0xff, + 0x32,0x4c,0x88,0xff,0x33,0x4d,0x89,0xff,0x34,0x4e,0x8a,0xff,0x35,0x4e,0x8b, + 0xff,0x35,0x4f,0x8c,0xff,0x36,0x50,0x8d,0xff,0x37,0x51,0x8e,0xff,0x38,0x53, + 0x90,0xff,0x3a,0x56,0x93,0xff,0x3c,0x58,0x96,0xff,0x3d,0x59,0x97,0xff,0x3d, + 0x5a,0x98,0xff,0x3e,0x5b,0x99,0xff,0x3f,0x5b,0x9a,0xff,0x40,0x5c,0x9b,0xff, + 0x40,0x5d,0x9c,0xff,0x41,0x5e,0x9d,0xff,0x42,0x5f,0x9e,0xff,0x43,0x5f,0x9f, + 0xff,0x43,0x60,0x9f,0xff,0x45,0x62,0xa1,0xff,0x45,0x62,0xa2,0xff,0x46,0x63, + 0xa3,0xff,0x47,0x64,0xa4,0xff,0x48,0x64,0xa4,0xff,0x47,0x63,0xa3,0xff,0x82, + 0x46,0x62,0xa3,0xff,0x09,0x46,0x63,0xa4,0xff,0x47,0x64,0xa4,0xff,0x48,0x64, + 0xa5,0xff,0x49,0x65,0xa6,0xff,0x49,0x66,0xa7,0xff,0x4a,0x67,0xa8,0xff,0x4b, + 0x68,0xa9,0xff,0x4b,0x68,0xaa,0xff,0x4c,0x69,0xab,0xff,0x83,0x4d,0x6a,0xac, + 0xff,0x03,0x4e,0x6b,0xad,0xff,0x02,0x02,0x04,0xff,0x00,0x01,0x02,0xff,0x83, + 0x13,0x2c,0x62,0xff,0x1e,0x13,0x2c,0x61,0xff,0x13,0x2b,0x60,0xff,0x14,0x2b, + 0x5f,0xff,0x15,0x2c,0x60,0xff,0x15,0x2d,0x61,0xff,0x16,0x2d,0x62,0xff,0x17, + 0x2e,0x63,0xff,0x17,0x2f,0x64,0xff,0x18,0x30,0x65,0xff,0x19,0x30,0x66,0xff, + 0x1a,0x31,0x67,0xff,0x1a,0x32,0x68,0xff,0x1b,0x33,0x69,0xff,0x1b,0x34,0x6a, + 0xff,0x1c,0x35,0x6b,0xff,0x1d,0x35,0x6c,0xff,0x1d,0x36,0x6d,0xff,0x1e,0x37, + 0x6e,0xff,0x1f,0x38,0x6f,0xff,0x20,0x39,0x70,0xff,0x21,0x3a,0x71,0xff,0x22, + 0x3b,0x73,0xff,0x23,0x3c,0x75,0xff,0x24,0x3e,0x77,0xff,0x26,0x3f,0x79,0xff, + 0x27,0x41,0x7b,0xff,0x28,0x42,0x7c,0xff,0x29,0x42,0x7d,0xff,0x29,0x43,0x7e, + 0xff,0x2a,0x43,0x7e,0xff,0x83,0x29,0x43,0x7d,0xff,0x20,0x2a,0x44,0x7e,0xff, + 0x2b,0x45,0x7e,0xff,0x2b,0x45,0x7f,0xff,0x2c,0x46,0x80,0xff,0x2d,0x46,0x81, + 0xff,0x2e,0x47,0x82,0xff,0x2e,0x48,0x83,0xff,0x2f,0x49,0x84,0xff,0x30,0x49, + 0x85,0xff,0x31,0x4a,0x86,0xff,0x31,0x4b,0x87,0xff,0x32,0x4c,0x88,0xff,0x33, + 0x4d,0x89,0xff,0x33,0x4d,0x8a,0xff,0x34,0x4e,0x8b,0xff,0x35,0x4f,0x8c,0xff, + 0x36,0x51,0x8e,0xff,0x38,0x53,0x90,0xff,0x3a,0x56,0x93,0xff,0x3b,0x57,0x94, + 0xff,0x3c,0x58,0x95,0xff,0x3c,0x59,0x96,0xff,0x3d,0x59,0x97,0xff,0x3e,0x5a, + 0x98,0xff,0x3e,0x5b,0x99,0xff,0x3f,0x5c,0x9a,0xff,0x40,0x5d,0x9b,0xff,0x41, + 0x5e,0x9c,0xff,0x42,0x5e,0x9d,0xff,0x42,0x5f,0x9e,0xff,0x43,0x60,0x9f,0xff, + 0x44,0x61,0xa1,0xff,0x82,0x45,0x62,0xa2,0xff,0x01,0x45,0x61,0xa1,0xff,0x82, + 0x45,0x60,0xa0,0xff,0x0d,0x45,0x61,0xa1,0xff,0x45,0x62,0xa2,0xff,0x46,0x63, + 0xa3,0xff,0x47,0x63,0xa4,0xff,0x48,0x64,0xa5,0xff,0x48,0x65,0xa6,0xff,0x49, + 0x66,0xa7,0xff,0x4a,0x66,0xa8,0xff,0x4a,0x67,0xa9,0xff,0x4b,0x68,0xaa,0xff, + 0x4c,0x69,0xab,0xff,0x4e,0x6b,0xad,0xff,0x4f,0x6c,0xae,0xff,0x82,0x51,0x6e, + 0xb0,0xff,0x02,0x02,0x02,0x04,0xff,0x00,0x01,0x02,0xff,0x84,0x13,0x2c,0x62, + 0xff,0x1a,0x14,0x2d,0x62,0xff,0x14,0x2c,0x61,0xff,0x14,0x2b,0x60,0xff,0x15, + 0x2c,0x61,0xff,0x16,0x2d,0x62,0xff,0x16,0x2e,0x63,0xff,0x17,0x2f,0x64,0xff, + 0x18,0x2f,0x65,0xff,0x19,0x30,0x66,0xff,0x19,0x31,0x67,0xff,0x1a,0x32,0x68, + 0xff,0x1b,0x33,0x69,0xff,0x1b,0x33,0x6a,0xff,0x1b,0x34,0x6b,0xff,0x1c,0x35, + 0x6c,0xff,0x1d,0x36,0x6d,0xff,0x1e,0x37,0x6e,0xff,0x1f,0x38,0x6e,0xff,0x20, + 0x39,0x70,0xff,0x20,0x3a,0x71,0xff,0x21,0x3a,0x72,0xff,0x22,0x3b,0x73,0xff, + 0x23,0x3c,0x74,0xff,0x23,0x3d,0x75,0xff,0x25,0x3e,0x77,0xff,0x26,0x40,0x79, + 0xff,0x83,0x28,0x41,0x7b,0xff,0x21,0x28,0x41,0x7a,0xff,0x28,0x42,0x7b,0xff, + 0x29,0x43,0x7c,0xff,0x2a,0x44,0x7d,0xff,0x2a,0x45,0x7e,0xff,0x2b,0x45,0x7f, + 0xff,0x2c,0x45,0x80,0xff,0x2d,0x46,0x81,0xff,0x2d,0x47,0x82,0xff,0x2e,0x48, + 0x83,0xff,0x2f,0x48,0x84,0xff,0x30,0x49,0x85,0xff,0x30,0x4a,0x86,0xff,0x31, + 0x4b,0x87,0xff,0x32,0x4b,0x88,0xff,0x32,0x4c,0x88,0xff,0x33,0x4d,0x89,0xff, + 0x34,0x4e,0x8a,0xff,0x35,0x50,0x8d,0xff,0x38,0x53,0x90,0xff,0x39,0x55,0x92, + 0xff,0x3a,0x56,0x93,0xff,0x3b,0x57,0x94,0xff,0x3b,0x58,0x95,0xff,0x3c,0x58, + 0x96,0xff,0x3d,0x59,0x97,0xff,0x3d,0x5a,0x98,0xff,0x3e,0x5b,0x99,0xff,0x3f, + 0x5c,0x9a,0xff,0x40,0x5c,0x9b,0xff,0x41,0x5d,0x9c,0xff,0x41,0x5e,0x9d,0xff, + 0x42,0x5f,0x9e,0xff,0x82,0x43,0x60,0x9f,0xff,0x82,0x43,0x5f,0x9e,0xff,0x0f, + 0x43,0x5e,0x9e,0xff,0x44,0x5f,0x9f,0xff,0x45,0x60,0xa0,0xff,0x45,0x61,0xa1, + 0xff,0x45,0x61,0xa2,0xff,0x46,0x62,0xa3,0xff,0x47,0x63,0xa4,0xff,0x47,0x64, + 0xa5,0xff,0x48,0x65,0xa6,0xff,0x49,0x65,0xa7,0xff,0x4a,0x67,0xa8,0xff,0x4b, + 0x68,0xaa,0xff,0x4e,0x6b,0xac,0xff,0x50,0x6c,0xae,0xff,0x51,0x6e,0xaf,0xff, + 0x83,0x52,0x6f,0xb1,0xff,0x02,0x02,0x02,0x04,0xff,0x00,0x01,0x02,0xff,0x84, + 0x13,0x2c,0x62,0xff,0x03,0x14,0x2d,0x63,0xff,0x14,0x2d,0x64,0xff,0x15,0x2d, + 0x63,0xff,0x82,0x15,0x2d,0x62,0xff,0x4c,0x16,0x2e,0x62,0xff,0x17,0x2e,0x63, + 0xff,0x18,0x2f,0x64,0xff,0x18,0x30,0x65,0xff,0x19,0x31,0x66,0xff,0x1a,0x31, + 0x67,0xff,0x1b,0x32,0x69,0xff,0x1b,0x33,0x69,0xff,0x1b,0x34,0x6a,0xff,0x1c, + 0x35,0x6b,0xff,0x1d,0x36,0x6c,0xff,0x1d,0x36,0x6d,0xff,0x1f,0x37,0x6e,0xff, + 0x1f,0x39,0x70,0xff,0x20,0x39,0x71,0xff,0x21,0x3a,0x72,0xff,0x22,0x3b,0x72, + 0xff,0x22,0x3c,0x73,0xff,0x23,0x3c,0x74,0xff,0x24,0x3d,0x75,0xff,0x24,0x3e, + 0x76,0xff,0x25,0x3f,0x77,0xff,0x26,0x40,0x78,0xff,0x27,0x40,0x79,0xff,0x27, + 0x41,0x7a,0xff,0x28,0x42,0x7b,0xff,0x29,0x43,0x7c,0xff,0x2a,0x44,0x7d,0xff, + 0x2a,0x44,0x7e,0xff,0x2b,0x45,0x7f,0xff,0x2c,0x45,0x80,0xff,0x2c,0x46,0x81, + 0xff,0x2d,0x46,0x82,0xff,0x2e,0x47,0x82,0xff,0x2f,0x48,0x83,0xff,0x2f,0x49, + 0x84,0xff,0x30,0x4a,0x85,0xff,0x31,0x4a,0x86,0xff,0x32,0x4b,0x87,0xff,0x32, + 0x4c,0x88,0xff,0x33,0x4d,0x89,0xff,0x35,0x50,0x8d,0xff,0x37,0x53,0x90,0xff, + 0x38,0x54,0x91,0xff,0x39,0x55,0x92,0xff,0x3a,0x56,0x93,0xff,0x3a,0x56,0x94, + 0xff,0x3b,0x57,0x95,0xff,0x3c,0x58,0x96,0xff,0x3c,0x59,0x97,0xff,0x3d,0x5a, + 0x98,0xff,0x3e,0x5a,0x99,0xff,0x3f,0x5b,0x9a,0xff,0x3f,0x5c,0x9b,0xff,0x40, + 0x5d,0x9c,0xff,0x41,0x5e,0x9d,0xff,0x42,0x5e,0x9d,0xff,0x42,0x5d,0x9c,0xff, + 0x41,0x5d,0x9c,0xff,0x42,0x5d,0x9c,0xff,0x42,0x5d,0x9d,0xff,0x43,0x5e,0x9e, + 0xff,0x44,0x5f,0x9f,0xff,0x44,0x60,0xa0,0xff,0x45,0x60,0xa1,0xff,0x45,0x61, + 0xa2,0xff,0x46,0x62,0xa2,0xff,0x46,0x63,0xa3,0xff,0x47,0x64,0xa5,0xff,0x49, + 0x65,0xa7,0xff,0x4b,0x68,0xa9,0xff,0x4d,0x6a,0xab,0xff,0x4e,0x6b,0xad,0xff, + 0x50,0x6c,0xae,0xff,0x50,0x6d,0xaf,0xff,0x51,0x6e,0xb0,0xff,0x82,0x52,0x6f, + 0xb1,0xff,0x03,0x51,0x6e,0xb0,0xff,0x02,0x02,0x04,0xff,0x00,0x01,0x02,0xff, + 0x85,0x13,0x2c,0x62,0xff,0x30,0x14,0x2d,0x63,0xff,0x15,0x2e,0x64,0xff,0x15, + 0x2f,0x65,0xff,0x16,0x2e,0x64,0xff,0x16,0x2e,0x63,0xff,0x17,0x2e,0x63,0xff, + 0x17,0x2f,0x64,0xff,0x18,0x30,0x65,0xff,0x19,0x30,0x66,0xff,0x1a,0x31,0x67, + 0xff,0x1a,0x32,0x68,0xff,0x1b,0x33,0x69,0xff,0x1b,0x34,0x6a,0xff,0x1b,0x34, + 0x6b,0xff,0x1c,0x35,0x6c,0xff,0x1d,0x36,0x6d,0xff,0x1e,0x37,0x6e,0xff,0x1f, + 0x38,0x6f,0xff,0x20,0x39,0x70,0xff,0x20,0x3a,0x71,0xff,0x21,0x3b,0x72,0xff, + 0x22,0x3b,0x73,0xff,0x23,0x3c,0x74,0xff,0x23,0x3d,0x75,0xff,0x24,0x3e,0x76, + 0xff,0x25,0x3f,0x77,0xff,0x26,0x3f,0x78,0xff,0x26,0x40,0x79,0xff,0x27,0x41, + 0x7a,0xff,0x28,0x42,0x7b,0xff,0x29,0x42,0x7c,0xff,0x29,0x43,0x7d,0xff,0x2a, + 0x44,0x7d,0xff,0x2b,0x45,0x7e,0xff,0x2b,0x45,0x7f,0xff,0x2c,0x45,0x80,0xff, + 0x2d,0x46,0x81,0xff,0x2e,0x47,0x82,0xff,0x2e,0x48,0x83,0xff,0x2f,0x49,0x84, + 0xff,0x30,0x49,0x85,0xff,0x31,0x4a,0x86,0xff,0x31,0x4b,0x87,0xff,0x32,0x4c, + 0x88,0xff,0x35,0x50,0x8d,0xff,0x36,0x52,0x8f,0xff,0x37,0x53,0x90,0xff,0x38, + 0x54,0x91,0xff,0x82,0x39,0x55,0x92,0xff,0x1e,0x3a,0x56,0x93,0xff,0x3b,0x57, + 0x94,0xff,0x3c,0x58,0x95,0xff,0x3c,0x59,0x96,0xff,0x3d,0x59,0x97,0xff,0x3e, + 0x5a,0x98,0xff,0x3e,0x5b,0x99,0xff,0x3f,0x5c,0x9a,0xff,0x40,0x5d,0x9b,0xff, + 0x40,0x5c,0x9a,0xff,0x3f,0x5b,0x99,0xff,0x40,0x5b,0x9a,0xff,0x41,0x5b,0x9b, + 0xff,0x41,0x5c,0x9c,0xff,0x42,0x5d,0x9c,0xff,0x43,0x5e,0x9d,0xff,0x43,0x5f, + 0x9e,0xff,0x44,0x5f,0x9f,0xff,0x45,0x60,0xa0,0xff,0x45,0x61,0xa1,0xff,0x46, + 0x62,0xa2,0xff,0x48,0x64,0xa5,0xff,0x4b,0x67,0xa8,0xff,0x4c,0x68,0xa9,0xff, + 0x4d,0x6a,0xab,0xff,0x4e,0x6b,0xac,0xff,0x4f,0x6b,0xad,0xff,0x4f,0x6c,0xae, + 0xff,0x50,0x6d,0xaf,0xff,0x51,0x6e,0xb0,0xff,0x82,0x52,0x6f,0xb1,0xff,0x03, + 0x4f,0x6c,0xae,0xff,0x02,0x02,0x04,0xff,0x00,0x01,0x02,0xff,0x85,0x13,0x2c, + 0x62,0xff,0x55,0x14,0x2d,0x63,0xff,0x14,0x2e,0x64,0xff,0x15,0x2e,0x65,0xff, + 0x16,0x2f,0x66,0xff,0x17,0x30,0x66,0xff,0x17,0x30,0x65,0xff,0x17,0x2f,0x65, + 0xff,0x18,0x2f,0x65,0xff,0x19,0x30,0x66,0xff,0x19,0x31,0x67,0xff,0x1a,0x32, + 0x68,0xff,0x1b,0x32,0x68,0xff,0x1b,0x33,0x6a,0xff,0x1b,0x34,0x6a,0xff,0x1c, + 0x35,0x6c,0xff,0x1d,0x36,0x6d,0xff,0x1e,0x37,0x6d,0xff,0x1f,0x38,0x6f,0xff, + 0x20,0x39,0x70,0xff,0x20,0x3a,0x71,0xff,0x21,0x3a,0x72,0xff,0x22,0x3b,0x73, + 0xff,0x22,0x3c,0x74,0xff,0x23,0x3d,0x75,0xff,0x24,0x3d,0x76,0xff,0x25,0x3e, + 0x76,0xff,0x25,0x3f,0x77,0xff,0x26,0x40,0x78,0xff,0x27,0x41,0x79,0xff,0x28, + 0x41,0x7a,0xff,0x28,0x42,0x7b,0xff,0x29,0x43,0x7c,0xff,0x2a,0x44,0x7d,0xff, + 0x2a,0x45,0x7e,0xff,0x2b,0x45,0x7f,0xff,0x2c,0x45,0x80,0xff,0x2d,0x46,0x81, + 0xff,0x2d,0x47,0x82,0xff,0x2e,0x47,0x83,0xff,0x2f,0x48,0x84,0xff,0x30,0x49, + 0x85,0xff,0x30,0x4a,0x86,0xff,0x31,0x4b,0x87,0xff,0x34,0x50,0x8c,0xff,0x35, + 0x51,0x8d,0xff,0x36,0x52,0x8e,0xff,0x37,0x53,0x8f,0xff,0x38,0x54,0x90,0xff, + 0x38,0x54,0x91,0xff,0x39,0x55,0x92,0xff,0x3a,0x56,0x93,0xff,0x3a,0x57,0x94, + 0xff,0x3b,0x57,0x95,0xff,0x3c,0x58,0x96,0xff,0x3d,0x59,0x97,0xff,0x3d,0x5a, + 0x98,0xff,0x3e,0x5b,0x99,0xff,0x3f,0x5b,0x9a,0xff,0x3f,0x5a,0x98,0xff,0x3e, + 0x59,0x97,0xff,0x3f,0x5a,0x98,0xff,0x3f,0x5a,0x99,0xff,0x40,0x5b,0x9a,0xff, + 0x41,0x5c,0x9b,0xff,0x42,0x5d,0x9c,0xff,0x42,0x5e,0x9d,0xff,0x43,0x5e,0x9e, + 0xff,0x44,0x5f,0x9f,0xff,0x45,0x60,0xa0,0xff,0x46,0x62,0xa2,0xff,0x49,0x65, + 0xa6,0xff,0x4a,0x66,0xa7,0xff,0x4c,0x68,0xa9,0xff,0x4c,0x69,0xaa,0xff,0x4d, + 0x6a,0xab,0xff,0x4e,0x6a,0xab,0xff,0x4e,0x6b,0xad,0xff,0x4f,0x6c,0xad,0xff, + 0x50,0x6d,0xae,0xff,0x51,0x6e,0xaf,0xff,0x51,0x6e,0xb0,0xff,0x52,0x6f,0xb1, + 0xff,0x4e,0x6b,0xad,0xff,0x02,0x02,0x04,0xff,0x00,0x01,0x02,0xff,0x85,0x13, + 0x2c,0x62,0xff,0x39,0x13,0x2c,0x63,0xff,0x14,0x2d,0x64,0xff,0x15,0x2e,0x65, + 0xff,0x16,0x2f,0x66,0xff,0x16,0x30,0x66,0xff,0x17,0x30,0x67,0xff,0x18,0x31, + 0x68,0xff,0x18,0x31,0x67,0xff,0x19,0x31,0x67,0xff,0x19,0x31,0x66,0xff,0x1a, + 0x31,0x67,0xff,0x1a,0x32,0x68,0xff,0x1b,0x33,0x69,0xff,0x1b,0x34,0x6a,0xff, + 0x1c,0x35,0x6b,0xff,0x1d,0x36,0x6c,0xff,0x1d,0x36,0x6d,0xff,0x1e,0x38,0x6f, + 0xff,0x1f,0x38,0x70,0xff,0x20,0x39,0x71,0xff,0x21,0x3a,0x71,0xff,0x21,0x3b, + 0x72,0xff,0x22,0x3c,0x73,0xff,0x23,0x3c,0x74,0xff,0x24,0x3d,0x75,0xff,0x24, + 0x3e,0x76,0xff,0x25,0x3f,0x77,0xff,0x26,0x40,0x78,0xff,0x26,0x40,0x79,0xff, + 0x27,0x41,0x7a,0xff,0x28,0x42,0x7b,0xff,0x29,0x43,0x7c,0xff,0x29,0x44,0x7d, + 0xff,0x2a,0x44,0x7e,0xff,0x2b,0x45,0x7f,0xff,0x2c,0x45,0x80,0xff,0x2c,0x46, + 0x81,0xff,0x2d,0x46,0x81,0xff,0x2e,0x47,0x82,0xff,0x2e,0x48,0x83,0xff,0x2f, + 0x49,0x84,0xff,0x30,0x49,0x85,0xff,0x33,0x4e,0x8a,0xff,0x34,0x50,0x8c,0xff, + 0x35,0x51,0x8d,0xff,0x36,0x52,0x8e,0xff,0x37,0x52,0x8f,0xff,0x37,0x53,0x90, + 0xff,0x38,0x54,0x91,0xff,0x39,0x55,0x92,0xff,0x3a,0x56,0x93,0xff,0x3a,0x56, + 0x94,0xff,0x3b,0x57,0x95,0xff,0x3c,0x58,0x95,0xff,0x3c,0x59,0x96,0xff,0x3d, + 0x5a,0x97,0xff,0x3e,0x59,0x98,0xff,0x82,0x3d,0x58,0x96,0xff,0x1a,0x3e,0x58, + 0x97,0xff,0x3e,0x59,0x97,0xff,0x3f,0x5a,0x98,0xff,0x40,0x5b,0x9a,0xff,0x41, + 0x5c,0x9b,0xff,0x41,0x5c,0x9c,0xff,0x42,0x5d,0x9d,0xff,0x43,0x5e,0x9e,0xff, + 0x44,0x5f,0x9f,0xff,0x47,0x62,0xa2,0xff,0x48,0x64,0xa5,0xff,0x4a,0x66,0xa6, + 0xff,0x4b,0x67,0xa7,0xff,0x4b,0x68,0xa8,0xff,0x4c,0x68,0xa9,0xff,0x4d,0x69, + 0xaa,0xff,0x4d,0x6a,0xab,0xff,0x4e,0x6b,0xac,0xff,0x4f,0x6c,0xad,0xff,0x50, + 0x6c,0xae,0xff,0x50,0x6d,0xaf,0xff,0x51,0x6e,0xb0,0xff,0x50,0x6d,0xaf,0xff, + 0x4d,0x6a,0xac,0xff,0x02,0x02,0x04,0xff,0x00,0x01,0x02,0xff,0x86,0x13,0x2c, + 0x62,0xff,0x09,0x14,0x2d,0x63,0xff,0x15,0x2e,0x64,0xff,0x15,0x2f,0x65,0xff, + 0x16,0x2f,0x66,0xff,0x17,0x30,0x67,0xff,0x18,0x31,0x68,0xff,0x18,0x32,0x69, + 0xff,0x19,0x32,0x6a,0xff,0x1a,0x33,0x6a,0xff,0x82,0x1a,0x33,0x69,0xff,0x32, + 0x1b,0x33,0x69,0xff,0x1b,0x34,0x6a,0xff,0x1b,0x34,0x6b,0xff,0x1c,0x35,0x6c, + 0xff,0x1d,0x36,0x6d,0xff,0x1e,0x37,0x6e,0xff,0x1f,0x38,0x6f,0xff,0x20,0x39, + 0x70,0xff,0x20,0x3a,0x71,0xff,0x21,0x3a,0x72,0xff,0x22,0x3b,0x73,0xff,0x23, + 0x3c,0x74,0xff,0x23,0x3d,0x75,0xff,0x24,0x3e,0x76,0xff,0x25,0x3f,0x77,0xff, + 0x26,0x3f,0x78,0xff,0x26,0x40,0x79,0xff,0x27,0x41,0x7a,0xff,0x28,0x42,0x7a, + 0xff,0x28,0x42,0x7b,0xff,0x29,0x43,0x7c,0xff,0x2a,0x44,0x7d,0xff,0x2b,0x45, + 0x7e,0xff,0x2b,0x45,0x7f,0xff,0x2c,0x45,0x80,0xff,0x2d,0x46,0x81,0xff,0x2e, + 0x47,0x82,0xff,0x2e,0x48,0x83,0xff,0x2f,0x48,0x84,0xff,0x30,0x49,0x85,0xff, + 0x33,0x4e,0x8a,0xff,0x34,0x50,0x8c,0xff,0x35,0x51,0x8d,0xff,0x36,0x51,0x8e, + 0xff,0x36,0x52,0x8f,0xff,0x37,0x53,0x90,0xff,0x38,0x54,0x90,0xff,0x39,0x55, + 0x91,0xff,0x39,0x55,0x92,0xff,0x3a,0x56,0x93,0xff,0x3b,0x57,0x94,0xff,0x3b, + 0x58,0x95,0xff,0x3c,0x59,0x96,0xff,0x3c,0x58,0x95,0xff,0x3b,0x56,0x94,0xff, + 0x3b,0x56,0x95,0xff,0x3c,0x57,0x95,0xff,0x3d,0x57,0x96,0xff,0x3e,0x58,0x97, + 0xff,0x3f,0x59,0x98,0xff,0x82,0x40,0x5b,0x9a,0xff,0x15,0x41,0x5c,0x9b,0xff, + 0x42,0x5d,0x9c,0xff,0x43,0x5f,0x9e,0xff,0x46,0x62,0xa2,0xff,0x48,0x64,0xa4, + 0xff,0x49,0x65,0xa5,0xff,0x4a,0x66,0xa6,0xff,0x4a,0x67,0xa7,0xff,0x4b,0x67, + 0xa8,0xff,0x4c,0x68,0xa9,0xff,0x4c,0x69,0xaa,0xff,0x4d,0x6a,0xab,0xff,0x4e, + 0x6b,0xac,0xff,0x4f,0x6b,0xad,0xff,0x4f,0x6c,0xae,0xff,0x50,0x6d,0xaf,0xff, + 0x51,0x6e,0xb0,0xff,0x4e,0x6b,0xad,0xff,0x4d,0x6a,0xac,0xff,0x02,0x02,0x04, + 0xff,0x00,0x01,0x02,0xff,0x86,0x13,0x2c,0x62,0xff,0x36,0x14,0x2d,0x63,0xff, + 0x14,0x2e,0x64,0xff,0x15,0x2e,0x65,0xff,0x16,0x2f,0x66,0xff,0x17,0x30,0x67, + 0xff,0x17,0x31,0x68,0xff,0x18,0x31,0x68,0xff,0x19,0x32,0x69,0xff,0x19,0x33, + 0x6a,0xff,0x1a,0x34,0x6b,0xff,0x1b,0x35,0x6c,0xff,0x1c,0x35,0x6c,0xff,0x1c, + 0x35,0x6b,0xff,0x1b,0x34,0x6b,0xff,0x1c,0x35,0x6b,0xff,0x1d,0x36,0x6c,0xff, + 0x1e,0x37,0x6e,0xff,0x1f,0x38,0x6f,0xff,0x1f,0x39,0x70,0xff,0x20,0x39,0x71, + 0xff,0x21,0x3a,0x72,0xff,0x22,0x3b,0x73,0xff,0x22,0x3c,0x74,0xff,0x23,0x3d, + 0x75,0xff,0x24,0x3d,0x76,0xff,0x25,0x3e,0x76,0xff,0x25,0x3f,0x77,0xff,0x26, + 0x40,0x78,0xff,0x27,0x40,0x79,0xff,0x27,0x41,0x7a,0xff,0x28,0x42,0x7b,0xff, + 0x29,0x43,0x7c,0xff,0x2a,0x44,0x7d,0xff,0x2a,0x44,0x7e,0xff,0x2b,0x45,0x7f, + 0xff,0x2c,0x45,0x80,0xff,0x2d,0x46,0x81,0xff,0x2d,0x47,0x82,0xff,0x2e,0x47, + 0x83,0xff,0x2f,0x48,0x84,0xff,0x30,0x49,0x84,0xff,0x30,0x4b,0x87,0xff,0x34, + 0x4f,0x8b,0xff,0x35,0x50,0x8c,0xff,0x35,0x51,0x8d,0xff,0x36,0x52,0x8e,0xff, + 0x37,0x53,0x8f,0xff,0x38,0x54,0x90,0xff,0x38,0x54,0x91,0xff,0x39,0x55,0x92, + 0xff,0x3a,0x56,0x93,0xff,0x3a,0x57,0x94,0xff,0x3b,0x57,0x95,0xff,0x3b,0x56, + 0x94,0xff,0x82,0x3a,0x55,0x93,0xff,0x16,0x3b,0x56,0x94,0xff,0x3c,0x56,0x95, + 0xff,0x3d,0x57,0x96,0xff,0x3e,0x58,0x97,0xff,0x3f,0x59,0x98,0xff,0x3f,0x5a, + 0x99,0xff,0x40,0x5b,0x9a,0xff,0x41,0x5c,0x9b,0xff,0x42,0x5e,0x9d,0xff,0x44, + 0x61,0xa1,0xff,0x46,0x63,0xa3,0xff,0x47,0x64,0xa4,0xff,0x49,0x65,0xa5,0xff, + 0x49,0x66,0xa6,0xff,0x4a,0x66,0xa7,0xff,0x4b,0x67,0xa8,0xff,0x4b,0x68,0xa9, + 0xff,0x4c,0x69,0xa9,0xff,0x4d,0x6a,0xaa,0xff,0x4e,0x6a,0xab,0xff,0x4e,0x6b, + 0xac,0xff,0x4f,0x6c,0xad,0xff,0x82,0x50,0x6d,0xae,0xff,0x04,0x4c,0x69,0xab, + 0xff,0x4d,0x6a,0xac,0xff,0x02,0x02,0x04,0xff,0x00,0x01,0x02,0xff,0x86,0x13, + 0x2c,0x62,0xff,0x0c,0x13,0x2d,0x63,0xff,0x14,0x2d,0x63,0xff,0x15,0x2e,0x64, + 0xff,0x15,0x2f,0x65,0xff,0x16,0x30,0x66,0xff,0x17,0x30,0x67,0xff,0x18,0x31, + 0x68,0xff,0x18,0x32,0x69,0xff,0x19,0x33,0x6a,0xff,0x1a,0x34,0x6b,0xff,0x1b, + 0x34,0x6c,0xff,0x1c,0x35,0x6d,0xff,0x82,0x1d,0x36,0x6e,0xff,0x46,0x1c,0x35, + 0x6c,0xff,0x1d,0x36,0x6c,0xff,0x1e,0x37,0x6e,0xff,0x1e,0x38,0x6f,0xff,0x1f, + 0x38,0x6f,0xff,0x20,0x39,0x70,0xff,0x21,0x3a,0x71,0xff,0x21,0x3b,0x72,0xff, + 0x22,0x3c,0x73,0xff,0x23,0x3c,0x74,0xff,0x24,0x3d,0x75,0xff,0x24,0x3e,0x76, + 0xff,0x25,0x3f,0x77,0xff,0x26,0x3f,0x78,0xff,0x26,0x40,0x79,0xff,0x27,0x41, + 0x7a,0xff,0x28,0x42,0x7b,0xff,0x29,0x43,0x7c,0xff,0x29,0x43,0x7d,0xff,0x2a, + 0x44,0x7e,0xff,0x2b,0x45,0x7f,0xff,0x2c,0x45,0x7f,0xff,0x2c,0x45,0x81,0xff, + 0x2d,0x46,0x81,0xff,0x2e,0x47,0x82,0xff,0x2e,0x48,0x83,0xff,0x2f,0x49,0x84, + 0xff,0x30,0x49,0x85,0xff,0x32,0x4d,0x89,0xff,0x34,0x50,0x8c,0xff,0x35,0x51, + 0x8d,0xff,0x36,0x52,0x8e,0xff,0x37,0x52,0x8f,0xff,0x37,0x53,0x90,0xff,0x38, + 0x54,0x91,0xff,0x39,0x55,0x92,0xff,0x39,0x56,0x93,0xff,0x3a,0x56,0x93,0xff, + 0x3a,0x54,0x92,0xff,0x39,0x53,0x91,0xff,0x39,0x54,0x91,0xff,0x3a,0x55,0x92, + 0xff,0x3b,0x55,0x93,0xff,0x3b,0x56,0x94,0xff,0x3c,0x57,0x95,0xff,0x3d,0x58, + 0x96,0xff,0x3e,0x59,0x97,0xff,0x3f,0x5a,0x99,0xff,0x40,0x5b,0x9a,0xff,0x41, + 0x5d,0x9c,0xff,0x43,0x60,0xa0,0xff,0x45,0x62,0xa2,0xff,0x46,0x63,0xa3,0xff, + 0x47,0x64,0xa4,0xff,0x48,0x65,0xa4,0xff,0x49,0x65,0xa5,0xff,0x4a,0x66,0xa6, + 0xff,0x4a,0x67,0xa7,0xff,0x4b,0x68,0xa8,0xff,0x4c,0x68,0xa9,0xff,0x4d,0x69, + 0xaa,0xff,0x4d,0x6a,0xab,0xff,0x4e,0x6b,0xac,0xff,0x4f,0x6c,0xad,0xff,0x4f, + 0x6c,0xae,0xff,0x4d,0x6a,0xac,0xff,0x4c,0x69,0xab,0xff,0x4d,0x6a,0xac,0xff, + 0x02,0x02,0x04,0xff,0x00,0x01,0x02,0xff,0x87,0x13,0x2c,0x62,0xff,0x53,0x14, + 0x2d,0x63,0xff,0x15,0x2e,0x64,0xff,0x15,0x2f,0x65,0xff,0x16,0x2f,0x66,0xff, + 0x17,0x30,0x67,0xff,0x17,0x31,0x68,0xff,0x18,0x32,0x69,0xff,0x19,0x32,0x6a, + 0xff,0x1a,0x33,0x6b,0xff,0x1a,0x34,0x6c,0xff,0x1b,0x35,0x6d,0xff,0x1c,0x35, + 0x6b,0xff,0x1b,0x34,0x6a,0xff,0x1b,0x34,0x6b,0xff,0x1c,0x35,0x6c,0xff,0x1d, + 0x36,0x6d,0xff,0x1e,0x37,0x6e,0xff,0x1f,0x38,0x6f,0xff,0x20,0x39,0x70,0xff, + 0x20,0x3a,0x71,0xff,0x21,0x3a,0x72,0xff,0x22,0x3b,0x73,0xff,0x23,0x3c,0x74, + 0xff,0x23,0x3d,0x75,0xff,0x24,0x3e,0x76,0xff,0x25,0x3e,0x77,0xff,0x26,0x3f, + 0x78,0xff,0x26,0x40,0x79,0xff,0x27,0x41,0x79,0xff,0x28,0x42,0x7a,0xff,0x28, + 0x42,0x7b,0xff,0x29,0x43,0x7c,0xff,0x2a,0x44,0x7d,0xff,0x2b,0x45,0x7e,0xff, + 0x2b,0x45,0x7f,0xff,0x2c,0x45,0x80,0xff,0x2d,0x46,0x81,0xff,0x2d,0x47,0x82, + 0xff,0x2e,0x48,0x83,0xff,0x2f,0x48,0x84,0xff,0x30,0x49,0x85,0xff,0x30,0x4a, + 0x86,0xff,0x33,0x4e,0x8a,0xff,0x35,0x51,0x8d,0xff,0x35,0x51,0x8e,0xff,0x36, + 0x52,0x8f,0xff,0x37,0x53,0x8f,0xff,0x38,0x54,0x90,0xff,0x38,0x54,0x91,0xff, + 0x39,0x54,0x91,0xff,0x38,0x53,0x90,0xff,0x38,0x52,0x8f,0xff,0x38,0x53,0x90, + 0xff,0x39,0x53,0x91,0xff,0x3a,0x54,0x92,0xff,0x3b,0x55,0x93,0xff,0x3b,0x56, + 0x94,0xff,0x3c,0x56,0x95,0xff,0x3d,0x57,0x96,0xff,0x3e,0x59,0x97,0xff,0x3f, + 0x5a,0x99,0xff,0x40,0x5c,0x9b,0xff,0x42,0x5f,0x9e,0xff,0x44,0x61,0xa0,0xff, + 0x45,0x62,0xa1,0xff,0x46,0x63,0xa2,0xff,0x47,0x63,0xa3,0xff,0x48,0x64,0xa4, + 0xff,0x49,0x65,0xa5,0xff,0x49,0x66,0xa6,0xff,0x4a,0x66,0xa7,0xff,0x4b,0x67, + 0xa8,0xff,0x4c,0x68,0xa9,0xff,0x4c,0x69,0xaa,0xff,0x4d,0x6a,0xab,0xff,0x4e, + 0x6b,0xac,0xff,0x4e,0x6b,0xad,0xff,0x4f,0x6c,0xad,0xff,0x4b,0x68,0xaa,0xff, + 0x4c,0x69,0xaa,0xff,0x4c,0x69,0xab,0xff,0x02,0x02,0x04,0xff,0x00,0x01,0x02, + 0xff,0x87,0x13,0x2c,0x62,0xff,0x31,0x14,0x2d,0x63,0xff,0x14,0x2d,0x64,0xff, + 0x15,0x2e,0x65,0xff,0x16,0x2f,0x66,0xff,0x16,0x30,0x67,0xff,0x17,0x31,0x68, + 0xff,0x18,0x31,0x69,0xff,0x19,0x32,0x69,0xff,0x19,0x33,0x6a,0xff,0x1a,0x33, + 0x6a,0xff,0x1a,0x32,0x69,0xff,0x1b,0x32,0x68,0xff,0x1b,0x33,0x69,0xff,0x1b, + 0x34,0x6a,0xff,0x1c,0x35,0x6c,0xff,0x1d,0x36,0x6d,0xff,0x1e,0x37,0x6e,0xff, + 0x1f,0x38,0x6f,0xff,0x1f,0x39,0x70,0xff,0x20,0x39,0x71,0xff,0x21,0x3a,0x72, + 0xff,0x21,0x3b,0x73,0xff,0x22,0x3c,0x74,0xff,0x23,0x3d,0x74,0xff,0x24,0x3d, + 0x75,0xff,0x24,0x3e,0x76,0xff,0x25,0x3f,0x77,0xff,0x26,0x40,0x78,0xff,0x27, + 0x40,0x79,0xff,0x27,0x41,0x7a,0xff,0x28,0x42,0x7b,0xff,0x29,0x43,0x7c,0xff, + 0x2a,0x44,0x7d,0xff,0x2a,0x44,0x7e,0xff,0x2b,0x45,0x7f,0xff,0x2c,0x45,0x80, + 0xff,0x2c,0x46,0x81,0xff,0x2d,0x47,0x82,0xff,0x2e,0x47,0x83,0xff,0x2f,0x48, + 0x83,0xff,0x2f,0x49,0x84,0xff,0x30,0x4a,0x85,0xff,0x31,0x4b,0x87,0xff,0x34, + 0x4f,0x8b,0xff,0x35,0x51,0x8d,0xff,0x36,0x52,0x8e,0xff,0x37,0x53,0x8f,0xff, + 0x38,0x53,0x90,0xff,0x38,0x53,0x8f,0xff,0x82,0x37,0x51,0x8e,0xff,0x20,0x37, + 0x51,0x8f,0xff,0x38,0x52,0x90,0xff,0x39,0x53,0x91,0xff,0x3a,0x54,0x92,0xff, + 0x3a,0x55,0x93,0xff,0x3b,0x56,0x93,0xff,0x3c,0x56,0x94,0xff,0x3c,0x57,0x95, + 0xff,0x3e,0x59,0x97,0xff,0x3f,0x5b,0x99,0xff,0x41,0x5e,0x9d,0xff,0x43,0x60, + 0x9f,0xff,0x44,0x61,0xa0,0xff,0x45,0x62,0xa1,0xff,0x45,0x62,0xa2,0xff,0x46, + 0x63,0xa3,0xff,0x47,0x64,0xa4,0xff,0x48,0x65,0xa5,0xff,0x49,0x65,0xa6,0xff, + 0x4a,0x66,0xa7,0xff,0x4b,0x67,0xa8,0xff,0x4b,0x68,0xa8,0xff,0x4c,0x69,0xa9, + 0xff,0x4d,0x69,0xaa,0xff,0x4d,0x6a,0xab,0xff,0x4e,0x6b,0xac,0xff,0x4d,0x6a, + 0xab,0xff,0x4b,0x68,0xa9,0xff,0x4b,0x68,0xaa,0xff,0x4c,0x69,0xab,0xff,0x02, + 0x02,0x04,0xff,0x00,0x01,0x02,0xff,0x88,0x13,0x2c,0x62,0xff,0x05,0x14,0x2d, + 0x63,0xff,0x15,0x2e,0x64,0xff,0x15,0x2f,0x65,0xff,0x16,0x2f,0x66,0xff,0x17, + 0x30,0x67,0xff,0x82,0x18,0x31,0x68,0xff,0x29,0x18,0x31,0x67,0xff,0x19,0x30, + 0x66,0xff,0x1a,0x31,0x67,0xff,0x1a,0x32,0x68,0xff,0x1b,0x33,0x69,0xff,0x1b, + 0x34,0x6a,0xff,0x1b,0x35,0x6b,0xff,0x1d,0x36,0x6c,0xff,0x1e,0x37,0x6d,0xff, + 0x1e,0x38,0x6e,0xff,0x1f,0x38,0x6f,0xff,0x20,0x39,0x70,0xff,0x21,0x3a,0x71, + 0xff,0x21,0x3b,0x72,0xff,0x22,0x3b,0x73,0xff,0x23,0x3c,0x74,0xff,0x23,0x3d, + 0x75,0xff,0x24,0x3e,0x76,0xff,0x25,0x3f,0x77,0xff,0x26,0x3f,0x78,0xff,0x26, + 0x40,0x79,0xff,0x27,0x41,0x7a,0xff,0x28,0x42,0x7b,0xff,0x29,0x43,0x7c,0xff, + 0x29,0x43,0x7d,0xff,0x2a,0x44,0x7d,0xff,0x2b,0x45,0x7e,0xff,0x2b,0x45,0x7f, + 0xff,0x2c,0x45,0x80,0xff,0x2d,0x46,0x81,0xff,0x2e,0x47,0x82,0xff,0x2e,0x48, + 0x83,0xff,0x2f,0x49,0x84,0xff,0x30,0x49,0x85,0xff,0x30,0x4a,0x86,0xff,0x32, + 0x4d,0x89,0xff,0x35,0x51,0x8d,0xff,0x36,0x52,0x8e,0xff,0x36,0x52,0x8f,0xff, + 0x36,0x51,0x8d,0xff,0x35,0x4f,0x8c,0xff,0x82,0x36,0x50,0x8d,0xff,0x20,0x37, + 0x51,0x8e,0xff,0x38,0x52,0x8f,0xff,0x39,0x53,0x90,0xff,0x39,0x54,0x91,0xff, + 0x3a,0x54,0x92,0xff,0x3b,0x55,0x93,0xff,0x3b,0x56,0x94,0xff,0x3c,0x57,0x95, + 0xff,0x3e,0x59,0x98,0xff,0x40,0x5c,0x9b,0xff,0x42,0x5f,0x9e,0xff,0x43,0x60, + 0x9f,0xff,0x44,0x61,0xa0,0xff,0x44,0x61,0xa1,0xff,0x45,0x62,0xa2,0xff,0x46, + 0x63,0xa2,0xff,0x47,0x64,0xa3,0xff,0x48,0x64,0xa4,0xff,0x49,0x65,0xa5,0xff, + 0x4a,0x66,0xa6,0xff,0x4a,0x67,0xa7,0xff,0x4b,0x68,0xa8,0xff,0x4c,0x68,0xa9, + 0xff,0x4d,0x69,0xaa,0xff,0x4d,0x6a,0xab,0xff,0x4e,0x6b,0xac,0xff,0x4b,0x67, + 0xa8,0xff,0x4b,0x67,0xa9,0xff,0x4b,0x68,0xaa,0xff,0x4c,0x69,0xab,0xff,0x02, + 0x02,0x04,0xff,0x00,0x01,0x02,0xff,0x88,0x13,0x2c,0x62,0xff,0x52,0x14,0x2d, + 0x63,0xff,0x14,0x2e,0x64,0xff,0x15,0x2e,0x65,0xff,0x16,0x2f,0x66,0xff,0x17, + 0x30,0x66,0xff,0x17,0x2f,0x65,0xff,0x17,0x2f,0x64,0xff,0x18,0x2f,0x65,0xff, + 0x19,0x30,0x66,0xff,0x19,0x31,0x67,0xff,0x1a,0x32,0x68,0xff,0x1b,0x32,0x68, + 0xff,0x1b,0x33,0x69,0xff,0x1b,0x35,0x6a,0xff,0x1c,0x35,0x6c,0xff,0x1d,0x36, + 0x6d,0xff,0x1e,0x37,0x6e,0xff,0x1f,0x38,0x6f,0xff,0x20,0x39,0x70,0xff,0x20, + 0x3a,0x71,0xff,0x21,0x3a,0x72,0xff,0x22,0x3b,0x73,0xff,0x22,0x3c,0x74,0xff, + 0x23,0x3d,0x75,0xff,0x24,0x3d,0x76,0xff,0x25,0x3e,0x77,0xff,0x25,0x3f,0x77, + 0xff,0x26,0x40,0x78,0xff,0x27,0x41,0x79,0xff,0x28,0x41,0x7a,0xff,0x28,0x42, + 0x7b,0xff,0x29,0x43,0x7c,0xff,0x2a,0x44,0x7d,0xff,0x2a,0x45,0x7e,0xff,0x2b, + 0x45,0x7f,0xff,0x2c,0x45,0x80,0xff,0x2d,0x46,0x81,0xff,0x2d,0x47,0x82,0xff, + 0x2e,0x47,0x83,0xff,0x2f,0x48,0x84,0xff,0x2f,0x49,0x85,0xff,0x30,0x4a,0x86, + 0xff,0x31,0x4b,0x87,0xff,0x33,0x4e,0x8a,0xff,0x35,0x51,0x8d,0xff,0x35,0x4f, + 0x8b,0xff,0x34,0x4e,0x8a,0xff,0x35,0x4f,0x8b,0xff,0x35,0x4f,0x8c,0xff,0x36, + 0x50,0x8d,0xff,0x37,0x51,0x8e,0xff,0x37,0x52,0x8f,0xff,0x38,0x53,0x90,0xff, + 0x39,0x53,0x91,0xff,0x3a,0x54,0x92,0xff,0x3a,0x55,0x93,0xff,0x3b,0x56,0x94, + 0xff,0x3d,0x57,0x96,0xff,0x3f,0x5b,0x99,0xff,0x41,0x5e,0x9c,0xff,0x42,0x5f, + 0x9d,0xff,0x43,0x5f,0x9e,0xff,0x43,0x60,0x9f,0xff,0x44,0x61,0xa0,0xff,0x45, + 0x62,0xa1,0xff,0x45,0x63,0xa2,0xff,0x46,0x63,0xa3,0xff,0x48,0x64,0xa4,0xff, + 0x49,0x65,0xa5,0xff,0x49,0x66,0xa6,0xff,0x4a,0x66,0xa7,0xff,0x4b,0x67,0xa8, + 0xff,0x4c,0x68,0xa9,0xff,0x4c,0x69,0xaa,0xff,0x4d,0x6a,0xab,0xff,0x4c,0x69, + 0xaa,0xff,0x49,0x66,0xa7,0xff,0x4a,0x67,0xa8,0xff,0x4b,0x68,0xa9,0xff,0x4c, + 0x69,0xaa,0xff,0x02,0x02,0x04,0xff,0x00,0x01,0x02,0xff,0x88,0x13,0x2c,0x62, + 0xff,0x52,0x13,0x2d,0x63,0xff,0x14,0x2d,0x64,0xff,0x15,0x2e,0x64,0xff,0x15, + 0x2e,0x63,0xff,0x15,0x2d,0x62,0xff,0x16,0x2e,0x62,0xff,0x17,0x2e,0x63,0xff, + 0x18,0x2f,0x64,0xff,0x18,0x30,0x65,0xff,0x19,0x31,0x66,0xff,0x1a,0x31,0x67, + 0xff,0x1a,0x32,0x68,0xff,0x1b,0x33,0x69,0xff,0x1b,0x34,0x6a,0xff,0x1c,0x35, + 0x6c,0xff,0x1d,0x36,0x6d,0xff,0x1e,0x37,0x6d,0xff,0x1f,0x38,0x6f,0xff,0x1f, + 0x38,0x70,0xff,0x20,0x39,0x71,0xff,0x21,0x3a,0x72,0xff,0x21,0x3b,0x72,0xff, + 0x22,0x3c,0x73,0xff,0x23,0x3c,0x74,0xff,0x24,0x3d,0x75,0xff,0x24,0x3e,0x76, + 0xff,0x25,0x3f,0x77,0xff,0x26,0x40,0x78,0xff,0x26,0x40,0x79,0xff,0x27,0x41, + 0x7a,0xff,0x28,0x42,0x7b,0xff,0x29,0x43,0x7c,0xff,0x29,0x43,0x7d,0xff,0x2a, + 0x44,0x7e,0xff,0x2b,0x45,0x7f,0xff,0x2c,0x45,0x80,0xff,0x2c,0x46,0x81,0xff, + 0x2d,0x46,0x81,0xff,0x2e,0x47,0x82,0xff,0x2f,0x48,0x83,0xff,0x2f,0x49,0x84, + 0xff,0x30,0x4a,0x85,0xff,0x31,0x4a,0x86,0xff,0x31,0x4b,0x87,0xff,0x33,0x4e, + 0x8a,0xff,0x33,0x4d,0x89,0xff,0x34,0x4d,0x8a,0xff,0x34,0x4e,0x8b,0xff,0x35, + 0x4f,0x8c,0xff,0x36,0x50,0x8d,0xff,0x37,0x51,0x8e,0xff,0x37,0x51,0x8f,0xff, + 0x38,0x52,0x90,0xff,0x39,0x53,0x91,0xff,0x39,0x54,0x91,0xff,0x3a,0x55,0x92, + 0xff,0x3b,0x56,0x94,0xff,0x3d,0x59,0x97,0xff,0x3f,0x5c,0x9a,0xff,0x41,0x5d, + 0x9c,0xff,0x42,0x5e,0x9d,0xff,0x42,0x5f,0x9e,0xff,0x43,0x60,0x9f,0xff,0x44, + 0x61,0xa0,0xff,0x44,0x61,0xa1,0xff,0x45,0x62,0xa2,0xff,0x46,0x63,0xa3,0xff, + 0x47,0x64,0xa4,0xff,0x48,0x65,0xa5,0xff,0x49,0x65,0xa6,0xff,0x4a,0x66,0xa7, + 0xff,0x4b,0x67,0xa7,0xff,0x4b,0x68,0xa8,0xff,0x4c,0x69,0xa9,0xff,0x4d,0x69, + 0xaa,0xff,0x4a,0x66,0xa7,0xff,0x49,0x66,0xa7,0xff,0x4a,0x67,0xa8,0xff,0x4b, + 0x67,0xa9,0xff,0x4b,0x68,0xaa,0xff,0x02,0x02,0x04,0xff,0x00,0x01,0x02,0xff, + 0x89,0x13,0x2c,0x62,0xff,0x30,0x14,0x2c,0x61,0xff,0x14,0x2b,0x60,0xff,0x14, + 0x2c,0x60,0xff,0x15,0x2c,0x61,0xff,0x16,0x2d,0x62,0xff,0x17,0x2e,0x63,0xff, + 0x17,0x2f,0x64,0xff,0x18,0x30,0x65,0xff,0x19,0x30,0x66,0xff,0x19,0x31,0x67, + 0xff,0x1a,0x32,0x68,0xff,0x1b,0x33,0x69,0xff,0x1b,0x33,0x6a,0xff,0x1c,0x35, + 0x6b,0xff,0x1d,0x36,0x6c,0xff,0x1e,0x37,0x6d,0xff,0x1e,0x37,0x6e,0xff,0x1f, + 0x38,0x6f,0xff,0x20,0x39,0x70,0xff,0x20,0x3a,0x71,0xff,0x21,0x3b,0x72,0xff, + 0x22,0x3b,0x73,0xff,0x23,0x3c,0x74,0xff,0x23,0x3d,0x75,0xff,0x24,0x3e,0x76, + 0xff,0x25,0x3e,0x77,0xff,0x26,0x3f,0x78,0xff,0x26,0x40,0x79,0xff,0x27,0x41, + 0x7a,0xff,0x28,0x42,0x7b,0xff,0x28,0x42,0x7c,0xff,0x29,0x43,0x7d,0xff,0x2a, + 0x44,0x7d,0xff,0x2b,0x45,0x7e,0xff,0x2b,0x45,0x7f,0xff,0x2c,0x45,0x80,0xff, + 0x2d,0x46,0x81,0xff,0x2d,0x47,0x82,0xff,0x2e,0x48,0x83,0xff,0x2f,0x49,0x84, + 0xff,0x30,0x49,0x85,0xff,0x30,0x4a,0x86,0xff,0x31,0x4b,0x87,0xff,0x32,0x4c, + 0x88,0xff,0x33,0x4c,0x89,0xff,0x33,0x4d,0x8a,0xff,0x34,0x4e,0x8b,0xff,0x35, + 0x4f,0x8c,0xff,0x82,0x36,0x50,0x8d,0xff,0x16,0x37,0x51,0x8e,0xff,0x38,0x52, + 0x8f,0xff,0x38,0x53,0x90,0xff,0x39,0x53,0x91,0xff,0x3a,0x55,0x93,0xff,0x3c, + 0x57,0x95,0xff,0x3e,0x5b,0x99,0xff,0x3f,0x5c,0x9a,0xff,0x40,0x5d,0x9b,0xff, + 0x41,0x5e,0x9c,0xff,0x42,0x5f,0x9d,0xff,0x43,0x60,0x9f,0xff,0x43,0x60,0xa0, + 0xff,0x44,0x61,0xa0,0xff,0x45,0x62,0xa1,0xff,0x46,0x63,0xa2,0xff,0x47,0x64, + 0xa3,0xff,0x48,0x64,0xa4,0xff,0x49,0x65,0xa5,0xff,0x4a,0x66,0xa6,0xff,0x4a, + 0x67,0xa7,0xff,0x4b,0x67,0xa8,0xff,0x82,0x4c,0x68,0xa9,0xff,0x07,0x48,0x65, + 0xa6,0xff,0x49,0x66,0xa7,0xff,0x4a,0x66,0xa8,0xff,0x4a,0x67,0xa9,0xff,0x4b, + 0x68,0xaa,0xff,0x02,0x02,0x04,0xff,0x00,0x01,0x02,0xff,0x86,0x13,0x2c,0x62, + 0xff,0x54,0x13,0x2c,0x61,0xff,0x13,0x2b,0x60,0xff,0x12,0x2a,0x5e,0xff,0x13, + 0x2a,0x5e,0xff,0x13,0x2b,0x5f,0xff,0x14,0x2b,0x60,0xff,0x15,0x2c,0x61,0xff, + 0x16,0x2d,0x62,0xff,0x16,0x2e,0x63,0xff,0x17,0x2e,0x64,0xff,0x18,0x2f,0x65, + 0xff,0x19,0x30,0x66,0xff,0x19,0x31,0x66,0xff,0x1a,0x32,0x67,0xff,0x1b,0x32, + 0x68,0xff,0x1b,0x33,0x6a,0xff,0x1c,0x34,0x6b,0xff,0x1c,0x35,0x6c,0xff,0x1d, + 0x36,0x6d,0xff,0x1e,0x37,0x6e,0xff,0x1f,0x38,0x6f,0xff,0x1f,0x39,0x70,0xff, + 0x20,0x39,0x71,0xff,0x21,0x3a,0x72,0xff,0x22,0x3b,0x73,0xff,0x22,0x3c,0x74, + 0xff,0x23,0x3d,0x75,0xff,0x24,0x3d,0x76,0xff,0x25,0x3e,0x76,0xff,0x25,0x3f, + 0x77,0xff,0x26,0x40,0x78,0xff,0x27,0x41,0x79,0xff,0x28,0x41,0x7a,0xff,0x28, + 0x42,0x7b,0xff,0x29,0x43,0x7c,0xff,0x2a,0x44,0x7d,0xff,0x2a,0x45,0x7e,0xff, + 0x2b,0x45,0x7f,0xff,0x2c,0x45,0x80,0xff,0x2c,0x46,0x81,0xff,0x2d,0x47,0x82, + 0xff,0x2e,0x47,0x83,0xff,0x2f,0x48,0x84,0xff,0x2f,0x49,0x84,0xff,0x30,0x4a, + 0x86,0xff,0x31,0x4b,0x87,0xff,0x32,0x4b,0x87,0xff,0x32,0x4c,0x88,0xff,0x33, + 0x4d,0x89,0xff,0x34,0x4e,0x8a,0xff,0x34,0x4f,0x8b,0xff,0x35,0x4f,0x8c,0xff, + 0x36,0x50,0x8d,0xff,0x37,0x51,0x8e,0xff,0x37,0x52,0x8f,0xff,0x38,0x52,0x90, + 0xff,0x39,0x53,0x91,0xff,0x3b,0x55,0x93,0xff,0x3d,0x59,0x97,0xff,0x3e,0x5b, + 0x99,0xff,0x3f,0x5c,0x9a,0xff,0x40,0x5d,0x9b,0xff,0x41,0x5d,0x9c,0xff,0x42, + 0x5e,0x9d,0xff,0x42,0x5f,0x9e,0xff,0x43,0x60,0x9f,0xff,0x44,0x61,0xa0,0xff, + 0x45,0x62,0xa1,0xff,0x45,0x62,0xa2,0xff,0x46,0x63,0xa3,0xff,0x48,0x64,0xa4, + 0xff,0x49,0x65,0xa5,0xff,0x49,0x66,0xa6,0xff,0x4a,0x66,0xa7,0xff,0x4b,0x67, + 0xa8,0xff,0x4b,0x68,0xa9,0xff,0x49,0x66,0xa7,0xff,0x48,0x64,0xa6,0xff,0x49, + 0x65,0xa6,0xff,0x49,0x66,0xa7,0xff,0x4a,0x67,0xa8,0xff,0x4b,0x68,0xa9,0xff, + 0x02,0x02,0x04,0xff,0x00,0x01,0x02,0xff,0x85,0x13,0x2c,0x62,0xff,0x02,0x13, + 0x2b,0x60,0xff,0x12,0x2a,0x5e,0xff,0x82,0x12,0x29,0x5d,0xff,0x49,0x12,0x29, + 0x5e,0xff,0x13,0x2a,0x5f,0xff,0x14,0x2b,0x60,0xff,0x15,0x2c,0x60,0xff,0x15, + 0x2d,0x61,0xff,0x16,0x2d,0x62,0xff,0x17,0x2e,0x63,0xff,0x18,0x2f,0x64,0xff, + 0x18,0x30,0x65,0xff,0x19,0x31,0x66,0xff,0x1a,0x31,0x67,0xff,0x1a,0x32,0x68, + 0xff,0x1b,0x33,0x69,0xff,0x1b,0x34,0x6a,0xff,0x1c,0x35,0x6b,0xff,0x1d,0x36, + 0x6c,0xff,0x1e,0x37,0x6d,0xff,0x1e,0x38,0x6e,0xff,0x1f,0x38,0x70,0xff,0x20, + 0x39,0x70,0xff,0x21,0x3a,0x71,0xff,0x21,0x3b,0x72,0xff,0x22,0x3c,0x73,0xff, + 0x23,0x3c,0x74,0xff,0x24,0x3d,0x75,0xff,0x24,0x3e,0x76,0xff,0x25,0x3f,0x77, + 0xff,0x26,0x40,0x78,0xff,0x26,0x40,0x79,0xff,0x27,0x41,0x7a,0xff,0x28,0x42, + 0x7b,0xff,0x29,0x43,0x7c,0xff,0x29,0x44,0x7d,0xff,0x2a,0x44,0x7e,0xff,0x2b, + 0x45,0x7f,0xff,0x2c,0x45,0x80,0xff,0x2c,0x46,0x81,0xff,0x2d,0x46,0x81,0xff, + 0x2e,0x47,0x82,0xff,0x2f,0x48,0x83,0xff,0x2f,0x49,0x84,0xff,0x30,0x49,0x85, + 0xff,0x31,0x4a,0x86,0xff,0x31,0x4b,0x87,0xff,0x32,0x4c,0x88,0xff,0x33,0x4d, + 0x89,0xff,0x34,0x4d,0x8a,0xff,0x34,0x4e,0x8b,0xff,0x35,0x4f,0x8c,0xff,0x36, + 0x50,0x8d,0xff,0x37,0x51,0x8e,0xff,0x37,0x51,0x8f,0xff,0x38,0x52,0x90,0xff, + 0x39,0x54,0x91,0xff,0x3b,0x57,0x94,0xff,0x3d,0x59,0x97,0xff,0x3e,0x5a,0x98, + 0xff,0x3f,0x5c,0x99,0xff,0x40,0x5c,0x9b,0xff,0x40,0x5d,0x9c,0xff,0x41,0x5e, + 0x9d,0xff,0x42,0x5f,0x9e,0xff,0x43,0x60,0x9f,0xff,0x44,0x61,0xa0,0xff,0x44, + 0x61,0xa1,0xff,0x45,0x62,0xa2,0xff,0x46,0x63,0xa3,0xff,0x47,0x64,0xa3,0xff, + 0x48,0x64,0xa4,0xff,0x49,0x65,0xa5,0xff,0x4a,0x66,0xa6,0xff,0x4a,0x67,0xa7, + 0xff,0x4b,0x67,0xa8,0xff,0x82,0x48,0x64,0xa5,0xff,0x06,0x48,0x65,0xa6,0xff, + 0x49,0x66,0xa7,0xff,0x4a,0x67,0xa8,0xff,0x4b,0x67,0xa9,0xff,0x02,0x02,0x04, + 0xff,0x00,0x01,0x02,0xff,0x83,0x13,0x2c,0x62,0xff,0x02,0x13,0x2b,0x60,0xff, + 0x12,0x2a,0x5f,0xff,0x85,0x12,0x29,0x5d,0xff,0x18,0x13,0x2a,0x5e,0xff,0x14, + 0x2b,0x5f,0xff,0x14,0x2c,0x60,0xff,0x15,0x2c,0x61,0xff,0x16,0x2d,0x62,0xff, + 0x17,0x2e,0x63,0xff,0x17,0x2f,0x64,0xff,0x18,0x2f,0x65,0xff,0x19,0x30,0x66, + 0xff,0x19,0x31,0x67,0xff,0x1a,0x32,0x68,0xff,0x1b,0x33,0x69,0xff,0x1b,0x34, + 0x6a,0xff,0x1c,0x35,0x6b,0xff,0x1c,0x35,0x6c,0xff,0x1d,0x36,0x6d,0xff,0x1e, + 0x37,0x6e,0xff,0x1f,0x38,0x6f,0xff,0x20,0x39,0x70,0xff,0x20,0x3a,0x71,0xff, + 0x21,0x3a,0x72,0xff,0x22,0x3b,0x73,0xff,0x23,0x3c,0x74,0xff,0x23,0x3d,0x75, + 0xff,0x82,0x25,0x3e,0x77,0xff,0x39,0x25,0x3f,0x78,0xff,0x26,0x40,0x79,0xff, + 0x27,0x41,0x7a,0xff,0x28,0x42,0x7a,0xff,0x28,0x42,0x7b,0xff,0x29,0x43,0x7c, + 0xff,0x2a,0x44,0x7d,0xff,0x2b,0x45,0x7e,0xff,0x2b,0x45,0x7f,0xff,0x2c,0x45, + 0x80,0xff,0x2d,0x46,0x81,0xff,0x2d,0x47,0x82,0xff,0x2e,0x48,0x83,0xff,0x2f, + 0x48,0x84,0xff,0x30,0x49,0x85,0xff,0x30,0x4a,0x86,0xff,0x31,0x4b,0x87,0xff, + 0x32,0x4c,0x88,0xff,0x33,0x4c,0x89,0xff,0x33,0x4d,0x8a,0xff,0x34,0x4e,0x8a, + 0xff,0x35,0x4f,0x8b,0xff,0x35,0x50,0x8c,0xff,0x36,0x50,0x8d,0xff,0x37,0x51, + 0x8e,0xff,0x38,0x52,0x8f,0xff,0x3a,0x55,0x92,0xff,0x3c,0x58,0x96,0xff,0x3d, + 0x59,0x97,0xff,0x3e,0x5a,0x98,0xff,0x3f,0x5b,0x99,0xff,0x3f,0x5c,0x9a,0xff, + 0x40,0x5d,0x9b,0xff,0x41,0x5e,0x9c,0xff,0x42,0x5f,0x9d,0xff,0x43,0x5f,0x9e, + 0xff,0x43,0x60,0x9f,0xff,0x44,0x61,0xa0,0xff,0x45,0x62,0xa1,0xff,0x46,0x63, + 0xa2,0xff,0x47,0x63,0xa3,0xff,0x48,0x64,0xa4,0xff,0x49,0x65,0xa5,0xff,0x49, + 0x66,0xa6,0xff,0x4a,0x67,0xa7,0xff,0x49,0x65,0xa6,0xff,0x47,0x63,0xa4,0xff, + 0x47,0x64,0xa5,0xff,0x48,0x65,0xa6,0xff,0x49,0x65,0xa7,0xff,0x4a,0x66,0xa8, + 0xff,0x4a,0x67,0xa9,0xff,0x02,0x02,0x04,0xff,0x00,0x01,0x02,0xff,0x13,0x2c, + 0x62,0xff,0x13,0x2b,0x61,0xff,0x12,0x2a,0x5f,0xff,0x87,0x12,0x29,0x5d,0xff, + 0x18,0x13,0x2a,0x5e,0xff,0x13,0x2a,0x5f,0xff,0x14,0x2b,0x60,0xff,0x15,0x2c, + 0x61,0xff,0x16,0x2d,0x62,0xff,0x16,0x2e,0x63,0xff,0x17,0x2e,0x64,0xff,0x18, + 0x2f,0x64,0xff,0x18,0x30,0x65,0xff,0x19,0x31,0x66,0xff,0x1a,0x32,0x67,0xff, + 0x1b,0x33,0x69,0xff,0x1b,0x34,0x6a,0xff,0x1c,0x34,0x6b,0xff,0x1c,0x35,0x6c, + 0xff,0x1d,0x36,0x6d,0xff,0x1e,0x37,0x6e,0xff,0x1f,0x38,0x6e,0xff,0x1f,0x39, + 0x70,0xff,0x20,0x39,0x71,0xff,0x21,0x3a,0x72,0xff,0x22,0x3b,0x73,0xff,0x22, + 0x3c,0x74,0xff,0x24,0x3e,0x77,0xff,0x82,0x27,0x40,0x7a,0xff,0x37,0x26,0x3f, + 0x79,0xff,0x26,0x40,0x78,0xff,0x27,0x40,0x79,0xff,0x27,0x41,0x7a,0xff,0x28, + 0x42,0x7b,0xff,0x29,0x43,0x7c,0xff,0x2a,0x44,0x7d,0xff,0x2a,0x44,0x7e,0xff, + 0x2b,0x45,0x7f,0xff,0x2c,0x45,0x80,0xff,0x2d,0x46,0x81,0xff,0x2d,0x47,0x82, + 0xff,0x2e,0x47,0x83,0xff,0x2f,0x48,0x84,0xff,0x2f,0x49,0x84,0xff,0x30,0x4a, + 0x86,0xff,0x31,0x4b,0x86,0xff,0x32,0x4b,0x87,0xff,0x32,0x4c,0x88,0xff,0x33, + 0x4d,0x89,0xff,0x34,0x4e,0x8a,0xff,0x35,0x4e,0x8b,0xff,0x35,0x4f,0x8c,0xff, + 0x36,0x50,0x8d,0xff,0x37,0x51,0x8e,0xff,0x38,0x53,0x90,0xff,0x3a,0x56,0x94, + 0xff,0x3c,0x58,0x96,0xff,0x3d,0x59,0x97,0xff,0x3d,0x5a,0x98,0xff,0x3e,0x5b, + 0x99,0xff,0x3f,0x5c,0x9a,0xff,0x40,0x5d,0x9b,0xff,0x41,0x5d,0x9c,0xff,0x42, + 0x5e,0x9d,0xff,0x42,0x5f,0x9e,0xff,0x43,0x60,0x9f,0xff,0x44,0x61,0xa0,0xff, + 0x45,0x62,0xa1,0xff,0x45,0x62,0xa2,0xff,0x46,0x63,0xa3,0xff,0x47,0x64,0xa4, + 0xff,0x49,0x65,0xa5,0xff,0x49,0x65,0xa6,0xff,0x4a,0x66,0xa7,0xff,0x47,0x63, + 0xa4,0xff,0x46,0x63,0xa4,0xff,0x47,0x64,0xa4,0xff,0x48,0x64,0xa5,0xff,0x49, + 0x65,0xa6,0xff,0x49,0x66,0xa7,0xff,0x4a,0x67,0xa8,0xff,0x02,0x02,0x04,0xff, + 0x00,0x01,0x02,0xff,0x12,0x2b,0x5f,0xff,0x89,0x12,0x29,0x5d,0xff,0x50,0x12, + 0x29,0x5e,0xff,0x13,0x2a,0x5f,0xff,0x14,0x2b,0x5f,0xff,0x15,0x2c,0x60,0xff, + 0x15,0x2d,0x61,0xff,0x16,0x2d,0x62,0xff,0x17,0x2e,0x63,0xff,0x17,0x2f,0x64, + 0xff,0x18,0x30,0x65,0xff,0x19,0x30,0x66,0xff,0x1a,0x31,0x67,0xff,0x1b,0x32, + 0x68,0xff,0x1b,0x33,0x69,0xff,0x1b,0x34,0x6a,0xff,0x1c,0x35,0x6b,0xff,0x1d, + 0x36,0x6c,0xff,0x1e,0x37,0x6d,0xff,0x1e,0x37,0x6e,0xff,0x1f,0x38,0x6f,0xff, + 0x20,0x39,0x70,0xff,0x21,0x3a,0x71,0xff,0x21,0x3b,0x73,0xff,0x23,0x3d,0x76, + 0xff,0x26,0x3f,0x79,0xff,0x27,0x40,0x7a,0xff,0x27,0x41,0x7b,0xff,0x28,0x41, + 0x7c,0xff,0x27,0x40,0x7a,0xff,0x26,0x40,0x79,0xff,0x27,0x41,0x7a,0xff,0x28, + 0x42,0x7b,0xff,0x29,0x43,0x7c,0xff,0x29,0x43,0x7d,0xff,0x2a,0x44,0x7e,0xff, + 0x2b,0x45,0x7f,0xff,0x2c,0x45,0x7f,0xff,0x2c,0x45,0x80,0xff,0x2d,0x46,0x81, + 0xff,0x2e,0x47,0x82,0xff,0x2e,0x48,0x83,0xff,0x2f,0x49,0x84,0xff,0x30,0x49, + 0x85,0xff,0x31,0x4a,0x86,0xff,0x31,0x4b,0x87,0xff,0x32,0x4c,0x88,0xff,0x33, + 0x4d,0x89,0xff,0x33,0x4d,0x8a,0xff,0x34,0x4e,0x8b,0xff,0x35,0x4f,0x8c,0xff, + 0x36,0x50,0x8d,0xff,0x36,0x51,0x8e,0xff,0x39,0x54,0x91,0xff,0x3b,0x57,0x94, + 0xff,0x3c,0x58,0x95,0xff,0x3c,0x59,0x96,0xff,0x3d,0x59,0x97,0xff,0x3e,0x5a, + 0x98,0xff,0x3f,0x5c,0x9a,0xff,0x40,0x5c,0x9b,0xff,0x40,0x5d,0x9c,0xff,0x41, + 0x5e,0x9d,0xff,0x42,0x5f,0x9e,0xff,0x43,0x60,0x9f,0xff,0x44,0x60,0x9f,0xff, + 0x44,0x61,0xa1,0xff,0x45,0x62,0xa2,0xff,0x46,0x63,0xa2,0xff,0x47,0x64,0xa3, + 0xff,0x48,0x64,0xa4,0xff,0x49,0x65,0xa5,0xff,0x48,0x64,0xa5,0xff,0x45,0x62, + 0xa2,0xff,0x46,0x63,0xa3,0xff,0x47,0x63,0xa4,0xff,0x48,0x64,0xa5,0xff,0x48, + 0x65,0xa6,0xff,0x49,0x66,0xa7,0xff,0x4a,0x66,0xa8,0xff,0x02,0x02,0x04,0xff, + 0x00,0x01,0x02,0xff,0x8b,0x12,0x29,0x5d,0xff,0x4f,0x13,0x2a,0x5e,0xff,0x13, + 0x2b,0x5f,0xff,0x14,0x2b,0x60,0xff,0x15,0x2c,0x61,0xff,0x16,0x2d,0x62,0xff, + 0x16,0x2e,0x63,0xff,0x17,0x2f,0x64,0xff,0x18,0x2f,0x65,0xff,0x19,0x30,0x66, + 0xff,0x19,0x31,0x67,0xff,0x1a,0x32,0x68,0xff,0x1b,0x33,0x69,0xff,0x1b,0x34, + 0x6a,0xff,0x1c,0x35,0x6b,0xff,0x1c,0x35,0x6c,0xff,0x1d,0x36,0x6d,0xff,0x1e, + 0x37,0x6e,0xff,0x1f,0x38,0x6f,0xff,0x20,0x39,0x70,0xff,0x21,0x3a,0x71,0xff, + 0x23,0x3c,0x75,0xff,0x25,0x3e,0x77,0xff,0x26,0x3f,0x79,0xff,0x26,0x40,0x7a, + 0xff,0x27,0x41,0x7b,0xff,0x28,0x41,0x7c,0xff,0x28,0x42,0x7c,0xff,0x27,0x41, + 0x7b,0xff,0x27,0x41,0x79,0xff,0x28,0x41,0x7a,0xff,0x28,0x42,0x7b,0xff,0x29, + 0x43,0x7c,0xff,0x2a,0x44,0x7d,0xff,0x2b,0x45,0x7e,0xff,0x2b,0x45,0x7f,0xff, + 0x2c,0x45,0x80,0xff,0x2d,0x46,0x81,0xff,0x2d,0x47,0x82,0xff,0x2e,0x48,0x83, + 0xff,0x2f,0x48,0x84,0xff,0x30,0x49,0x85,0xff,0x30,0x4a,0x86,0xff,0x31,0x4b, + 0x87,0xff,0x32,0x4b,0x88,0xff,0x32,0x4c,0x88,0xff,0x33,0x4d,0x89,0xff,0x34, + 0x4e,0x8a,0xff,0x35,0x4f,0x8b,0xff,0x35,0x4f,0x8c,0xff,0x37,0x52,0x8f,0xff, + 0x3a,0x55,0x93,0xff,0x3b,0x57,0x94,0xff,0x3b,0x58,0x95,0xff,0x3c,0x58,0x96, + 0xff,0x3d,0x59,0x97,0xff,0x3d,0x5a,0x98,0xff,0x3f,0x5b,0x99,0xff,0x3f,0x5c, + 0x9a,0xff,0x40,0x5d,0x9b,0xff,0x41,0x5e,0x9c,0xff,0x42,0x5e,0x9d,0xff,0x43, + 0x5f,0x9e,0xff,0x43,0x60,0x9f,0xff,0x44,0x61,0xa0,0xff,0x45,0x62,0xa1,0xff, + 0x46,0x63,0xa2,0xff,0x47,0x63,0xa3,0xff,0x48,0x64,0xa4,0xff,0x49,0x65,0xa5, + 0xff,0x46,0x62,0xa2,0xff,0x45,0x62,0xa2,0xff,0x46,0x62,0xa3,0xff,0x47,0x63, + 0xa4,0xff,0x47,0x64,0xa5,0xff,0x48,0x65,0xa6,0xff,0x49,0x65,0xa7,0xff,0x4a, + 0x66,0xa7,0xff,0x02,0x02,0x04,0xff,0x00,0x01,0x02,0xff,0x8b,0x12,0x29,0x5d, + 0xff,0x4f,0x13,0x2a,0x5e,0xff,0x13,0x2a,0x5f,0xff,0x14,0x2b,0x60,0xff,0x15, + 0x2c,0x61,0xff,0x15,0x2d,0x62,0xff,0x16,0x2e,0x63,0xff,0x17,0x2e,0x63,0xff, + 0x18,0x2f,0x64,0xff,0x18,0x30,0x65,0xff,0x19,0x31,0x66,0xff,0x1a,0x32,0x67, + 0xff,0x1b,0x33,0x69,0xff,0x1b,0x34,0x6a,0xff,0x1b,0x34,0x6b,0xff,0x1c,0x35, + 0x6c,0xff,0x1d,0x36,0x6d,0xff,0x1e,0x37,0x6e,0xff,0x1f,0x38,0x6f,0xff,0x20, + 0x39,0x70,0xff,0x22,0x3b,0x74,0xff,0x24,0x3d,0x76,0xff,0x25,0x3e,0x77,0xff, + 0x25,0x3f,0x78,0xff,0x26,0x3f,0x79,0xff,0x27,0x40,0x7a,0xff,0x28,0x41,0x7b, + 0xff,0x28,0x42,0x7c,0xff,0x29,0x42,0x7d,0xff,0x27,0x41,0x7b,0xff,0x27,0x41, + 0x7a,0xff,0x28,0x42,0x7b,0xff,0x29,0x43,0x7c,0xff,0x29,0x44,0x7d,0xff,0x2a, + 0x44,0x7e,0xff,0x2b,0x45,0x7f,0xff,0x2c,0x45,0x80,0xff,0x2c,0x46,0x81,0xff, + 0x2d,0x47,0x81,0xff,0x2e,0x47,0x82,0xff,0x2f,0x48,0x84,0xff,0x2f,0x49,0x84, + 0xff,0x30,0x4a,0x85,0xff,0x31,0x4a,0x86,0xff,0x32,0x4b,0x87,0xff,0x32,0x4c, + 0x88,0xff,0x33,0x4d,0x89,0xff,0x34,0x4e,0x8a,0xff,0x35,0x4e,0x8b,0xff,0x36, + 0x50,0x8d,0xff,0x38,0x53,0x90,0xff,0x3a,0x56,0x93,0xff,0x3a,0x56,0x94,0xff, + 0x3b,0x57,0x95,0xff,0x3c,0x58,0x96,0xff,0x3c,0x59,0x97,0xff,0x3d,0x5a,0x97, + 0xff,0x3e,0x5b,0x99,0xff,0x3f,0x5c,0x9a,0xff,0x40,0x5d,0x9b,0xff,0x41,0x5d, + 0x9c,0xff,0x41,0x5e,0x9d,0xff,0x42,0x5f,0x9e,0xff,0x43,0x60,0x9f,0xff,0x44, + 0x61,0xa0,0xff,0x44,0x61,0xa1,0xff,0x45,0x62,0xa2,0xff,0x46,0x63,0xa3,0xff, + 0x47,0x64,0xa4,0xff,0x48,0x64,0xa3,0xff,0x46,0x61,0xa1,0xff,0x45,0x61,0xa2, + 0xff,0x46,0x62,0xa2,0xff,0x46,0x63,0xa3,0xff,0x47,0x64,0xa4,0xff,0x48,0x64, + 0xa5,0xff,0x49,0x65,0xa6,0xff,0x49,0x66,0xa7,0xff,0x02,0x02,0x04,0xff,0x00, + 0x01,0x02,0xff,0x8c,0x12,0x29,0x5d,0xff,0x4e,0x13,0x2a,0x5e,0xff,0x14,0x2b, + 0x5f,0xff,0x14,0x2c,0x60,0xff,0x15,0x2c,0x61,0xff,0x16,0x2d,0x62,0xff,0x17, + 0x2e,0x63,0xff,0x17,0x2f,0x64,0xff,0x18,0x30,0x65,0xff,0x19,0x30,0x66,0xff, + 0x1a,0x32,0x67,0xff,0x1b,0x32,0x68,0xff,0x1b,0x33,0x69,0xff,0x1b,0x34,0x6a, + 0xff,0x1c,0x35,0x6b,0xff,0x1d,0x35,0x6c,0xff,0x1e,0x37,0x6d,0xff,0x1f,0x38, + 0x6f,0xff,0x21,0x3a,0x73,0xff,0x23,0x3c,0x75,0xff,0x24,0x3d,0x76,0xff,0x24, + 0x3e,0x77,0xff,0x25,0x3e,0x78,0xff,0x26,0x3f,0x79,0xff,0x26,0x40,0x7a,0xff, + 0x27,0x41,0x7b,0xff,0x28,0x42,0x7c,0xff,0x29,0x42,0x7d,0xff,0x28,0x42,0x7c, + 0xff,0x27,0x41,0x7a,0xff,0x28,0x42,0x7b,0xff,0x28,0x42,0x7c,0xff,0x29,0x43, + 0x7c,0xff,0x2a,0x44,0x7d,0xff,0x2b,0x45,0x7e,0xff,0x2b,0x45,0x7f,0xff,0x2c, + 0x45,0x80,0xff,0x2d,0x46,0x81,0xff,0x2e,0x47,0x82,0xff,0x2e,0x48,0x83,0xff, + 0x2f,0x49,0x84,0xff,0x30,0x49,0x85,0xff,0x31,0x4a,0x86,0xff,0x31,0x4b,0x87, + 0xff,0x32,0x4c,0x88,0xff,0x33,0x4c,0x89,0xff,0x33,0x4d,0x8a,0xff,0x34,0x4e, + 0x8b,0xff,0x36,0x51,0x8d,0xff,0x38,0x54,0x91,0xff,0x39,0x55,0x92,0xff,0x3a, + 0x56,0x93,0xff,0x3b,0x57,0x94,0xff,0x3b,0x58,0x95,0xff,0x3c,0x59,0x96,0xff, + 0x3d,0x59,0x97,0xff,0x3e,0x5b,0x99,0xff,0x3f,0x5b,0x9a,0xff,0x40,0x5c,0x9a, + 0xff,0x40,0x5d,0x9b,0xff,0x41,0x5e,0x9c,0xff,0x42,0x5f,0x9d,0xff,0x43,0x60, + 0x9e,0xff,0x43,0x60,0x9f,0xff,0x44,0x61,0xa0,0xff,0x45,0x62,0xa1,0xff,0x46, + 0x63,0xa2,0xff,0x47,0x64,0xa3,0xff,0x46,0x61,0xa1,0xff,0x45,0x60,0xa0,0xff, + 0x45,0x61,0xa1,0xff,0x45,0x62,0xa2,0xff,0x46,0x62,0xa3,0xff,0x47,0x63,0xa4, + 0xff,0x48,0x64,0xa5,0xff,0x48,0x65,0xa6,0xff,0x49,0x66,0xa7,0xff,0x02,0x02, + 0x04,0xff,0x00,0x01,0x02,0xff,0x8c,0x12,0x29,0x5d,0xff,0x1a,0x13,0x2a,0x5e, + 0xff,0x13,0x2a,0x5f,0xff,0x14,0x2b,0x60,0xff,0x15,0x2c,0x61,0xff,0x16,0x2d, + 0x62,0xff,0x16,0x2e,0x63,0xff,0x17,0x2f,0x64,0xff,0x18,0x2f,0x65,0xff,0x18, + 0x30,0x66,0xff,0x19,0x31,0x67,0xff,0x1a,0x32,0x68,0xff,0x1b,0x33,0x69,0xff, + 0x1b,0x34,0x6a,0xff,0x1c,0x34,0x6b,0xff,0x1d,0x35,0x6c,0xff,0x1e,0x37,0x6e, + 0xff,0x20,0x39,0x72,0xff,0x22,0x3b,0x74,0xff,0x23,0x3c,0x75,0xff,0x23,0x3c, + 0x76,0xff,0x24,0x3d,0x77,0xff,0x25,0x3e,0x78,0xff,0x25,0x3f,0x79,0xff,0x26, + 0x40,0x7a,0xff,0x27,0x40,0x7b,0xff,0x28,0x41,0x7c,0xff,0x82,0x28,0x42,0x7c, + 0xff,0x25,0x27,0x41,0x7a,0xff,0x28,0x41,0x7a,0xff,0x28,0x42,0x7b,0xff,0x29, + 0x43,0x7c,0xff,0x2a,0x44,0x7d,0xff,0x2a,0x44,0x7e,0xff,0x2b,0x45,0x7f,0xff, + 0x2c,0x45,0x80,0xff,0x2d,0x46,0x81,0xff,0x2d,0x47,0x82,0xff,0x2e,0x47,0x83, + 0xff,0x2f,0x48,0x84,0xff,0x2f,0x49,0x85,0xff,0x30,0x4a,0x86,0xff,0x31,0x4b, + 0x87,0xff,0x32,0x4b,0x87,0xff,0x32,0x4c,0x88,0xff,0x33,0x4d,0x89,0xff,0x35, + 0x4f,0x8b,0xff,0x37,0x52,0x8f,0xff,0x38,0x54,0x91,0xff,0x39,0x55,0x92,0xff, + 0x3a,0x56,0x93,0xff,0x3a,0x57,0x94,0xff,0x3b,0x57,0x95,0xff,0x3c,0x58,0x96, + 0xff,0x3d,0x59,0x97,0xff,0x3e,0x5a,0x98,0xff,0x3f,0x5b,0x99,0xff,0x3f,0x5c, + 0x9a,0xff,0x40,0x5d,0x9b,0xff,0x41,0x5d,0x9c,0xff,0x41,0x5e,0x9d,0xff,0x42, + 0x5f,0x9e,0xff,0x43,0x60,0x9f,0xff,0x44,0x61,0xa0,0xff,0x45,0x62,0xa1,0xff, + 0x82,0x45,0x63,0xa2,0xff,0x0b,0x44,0x60,0xa0,0xff,0x45,0x60,0xa0,0xff,0x45, + 0x61,0xa1,0xff,0x45,0x61,0xa2,0xff,0x46,0x62,0xa3,0xff,0x46,0x63,0xa4,0xff, + 0x47,0x64,0xa5,0xff,0x48,0x65,0xa6,0xff,0x49,0x65,0xa6,0xff,0x02,0x02,0x04, + 0xff,0x00,0x01,0x02,0xff,0x8c,0x12,0x29,0x5d,0xff,0x19,0x12,0x2a,0x5e,0xff, + 0x13,0x2a,0x5f,0xff,0x14,0x2b,0x60,0xff,0x15,0x2c,0x61,0xff,0x15,0x2d,0x61, + 0xff,0x16,0x2d,0x62,0xff,0x17,0x2e,0x63,0xff,0x18,0x2f,0x64,0xff,0x18,0x30, + 0x65,0xff,0x19,0x31,0x66,0xff,0x1a,0x32,0x68,0xff,0x1b,0x33,0x69,0xff,0x1b, + 0x33,0x6a,0xff,0x1c,0x34,0x6b,0xff,0x1d,0x36,0x6d,0xff,0x1f,0x38,0x71,0xff, + 0x20,0x3a,0x72,0xff,0x21,0x3b,0x73,0xff,0x22,0x3b,0x74,0xff,0x23,0x3c,0x75, + 0xff,0x24,0x3d,0x76,0xff,0x24,0x3e,0x77,0xff,0x25,0x3f,0x78,0xff,0x26,0x3f, + 0x79,0xff,0x27,0x40,0x7a,0xff,0x82,0x27,0x41,0x7b,0xff,0x33,0x26,0x40,0x79, + 0xff,0x27,0x40,0x79,0xff,0x27,0x41,0x7a,0xff,0x28,0x42,0x7b,0xff,0x29,0x43, + 0x7c,0xff,0x29,0x43,0x7d,0xff,0x2a,0x44,0x7e,0xff,0x2b,0x45,0x7f,0xff,0x2c, + 0x45,0x80,0xff,0x2c,0x46,0x80,0xff,0x2d,0x46,0x81,0xff,0x2e,0x47,0x82,0xff, + 0x2f,0x48,0x83,0xff,0x2f,0x49,0x84,0xff,0x30,0x4a,0x85,0xff,0x31,0x4a,0x86, + 0xff,0x31,0x4b,0x87,0xff,0x32,0x4c,0x88,0xff,0x33,0x4d,0x89,0xff,0x35,0x4f, + 0x8c,0xff,0x37,0x53,0x90,0xff,0x38,0x54,0x91,0xff,0x39,0x55,0x92,0xff,0x3a, + 0x56,0x93,0xff,0x3a,0x56,0x94,0xff,0x3b,0x57,0x95,0xff,0x3c,0x58,0x96,0xff, + 0x3d,0x59,0x97,0xff,0x3e,0x5a,0x98,0xff,0x3e,0x5b,0x99,0xff,0x3f,0x5c,0x9a, + 0xff,0x40,0x5c,0x9b,0xff,0x41,0x5d,0x9c,0xff,0x41,0x5e,0x9d,0xff,0x42,0x5f, + 0x9e,0xff,0x43,0x60,0x9f,0xff,0x44,0x61,0xa0,0xff,0x44,0x61,0xa1,0xff,0x45, + 0x62,0xa1,0xff,0x44,0x61,0xa0,0xff,0x44,0x5f,0x9f,0xff,0x44,0x60,0xa0,0xff, + 0x45,0x60,0xa1,0xff,0x45,0x61,0xa1,0xff,0x45,0x62,0xa2,0xff,0x46,0x63,0xa3, + 0xff,0x47,0x63,0xa4,0xff,0x48,0x64,0xa5,0xff,0x48,0x65,0xa6,0xff,0x02,0x02, + 0x04,0xff,0x00,0x01,0x02,0xff,0x8d,0x12,0x29,0x5d,0xff,0x17,0x13,0x2a,0x5e, + 0xff,0x14,0x2b,0x5f,0xff,0x14,0x2b,0x60,0xff,0x15,0x2c,0x61,0xff,0x16,0x2d, + 0x62,0xff,0x17,0x2e,0x63,0xff,0x17,0x2f,0x64,0xff,0x18,0x2f,0x65,0xff,0x19, + 0x30,0x66,0xff,0x1a,0x32,0x67,0xff,0x1b,0x32,0x68,0xff,0x1b,0x33,0x6a,0xff, + 0x1c,0x35,0x6c,0xff,0x1e,0x37,0x6f,0xff,0x20,0x39,0x71,0xff,0x20,0x39,0x72, + 0xff,0x21,0x3a,0x73,0xff,0x22,0x3b,0x74,0xff,0x23,0x3c,0x75,0xff,0x23,0x3d, + 0x76,0xff,0x24,0x3d,0x77,0xff,0x25,0x3e,0x78,0xff,0x26,0x3f,0x79,0xff,0x82, + 0x26,0x40,0x79,0xff,0x26,0x25,0x3f,0x77,0xff,0x25,0x3f,0x78,0xff,0x26,0x40, + 0x79,0xff,0x27,0x41,0x7a,0xff,0x28,0x42,0x7a,0xff,0x28,0x42,0x7b,0xff,0x29, + 0x43,0x7c,0xff,0x2a,0x44,0x7d,0xff,0x2b,0x45,0x7e,0xff,0x2b,0x45,0x7f,0xff, + 0x2c,0x45,0x80,0xff,0x2d,0x46,0x81,0xff,0x2e,0x47,0x82,0xff,0x2e,0x48,0x83, + 0xff,0x2f,0x48,0x84,0xff,0x30,0x49,0x85,0xff,0x30,0x4a,0x86,0xff,0x31,0x4b, + 0x87,0xff,0x32,0x4c,0x88,0xff,0x33,0x4d,0x8a,0xff,0x35,0x50,0x8d,0xff,0x37, + 0x53,0x90,0xff,0x38,0x54,0x90,0xff,0x39,0x55,0x91,0xff,0x39,0x55,0x92,0xff, + 0x3a,0x56,0x93,0xff,0x3b,0x57,0x94,0xff,0x3b,0x58,0x95,0xff,0x3d,0x58,0x96, + 0xff,0x3d,0x5a,0x98,0xff,0x3e,0x5b,0x99,0xff,0x3f,0x5b,0x99,0xff,0x40,0x5c, + 0x9a,0xff,0x40,0x5d,0x9c,0xff,0x41,0x5e,0x9c,0xff,0x42,0x5f,0x9d,0xff,0x42, + 0x5f,0x9e,0xff,0x43,0x60,0x9f,0xff,0x82,0x44,0x61,0xa0,0xff,0x0c,0x43,0x5f, + 0x9e,0xff,0x43,0x5e,0x9e,0xff,0x44,0x5f,0x9f,0xff,0x45,0x60,0xa0,0xff,0x45, + 0x61,0xa1,0xff,0x45,0x62,0xa2,0xff,0x46,0x62,0xa3,0xff,0x47,0x63,0xa4,0xff, + 0x47,0x64,0xa5,0xff,0x48,0x65,0xa6,0xff,0x02,0x02,0x04,0xff,0x00,0x01,0x02, + 0xff,0x8d,0x12,0x29,0x5d,0xff,0x15,0x13,0x2a,0x5e,0xff,0x13,0x2a,0x5f,0xff, + 0x14,0x2b,0x60,0xff,0x15,0x2c,0x61,0xff,0x16,0x2d,0x62,0xff,0x16,0x2e,0x63, + 0xff,0x17,0x2e,0x64,0xff,0x18,0x2f,0x65,0xff,0x18,0x30,0x66,0xff,0x1a,0x31, + 0x67,0xff,0x1b,0x32,0x68,0xff,0x1c,0x34,0x6b,0xff,0x1d,0x36,0x6e,0xff,0x1f, + 0x37,0x70,0xff,0x1f,0x38,0x71,0xff,0x20,0x39,0x72,0xff,0x21,0x3a,0x73,0xff, + 0x22,0x3b,0x74,0xff,0x22,0x3c,0x75,0xff,0x23,0x3c,0x75,0xff,0x24,0x3d,0x76, + 0xff,0x82,0x25,0x3e,0x78,0xff,0x36,0x24,0x3e,0x77,0xff,0x24,0x3e,0x76,0xff, + 0x25,0x3e,0x76,0xff,0x25,0x3f,0x77,0xff,0x26,0x40,0x78,0xff,0x27,0x41,0x79, + 0xff,0x27,0x41,0x7a,0xff,0x28,0x42,0x7b,0xff,0x29,0x43,0x7c,0xff,0x2a,0x44, + 0x7d,0xff,0x2a,0x44,0x7e,0xff,0x2b,0x45,0x7f,0xff,0x2c,0x45,0x80,0xff,0x2d, + 0x46,0x81,0xff,0x2d,0x47,0x82,0xff,0x2e,0x47,0x83,0xff,0x2f,0x48,0x84,0xff, + 0x2f,0x49,0x85,0xff,0x30,0x4a,0x85,0xff,0x31,0x4b,0x86,0xff,0x32,0x4b,0x87, + 0xff,0x33,0x4d,0x89,0xff,0x36,0x51,0x8d,0xff,0x37,0x53,0x8f,0xff,0x38,0x53, + 0x90,0xff,0x38,0x54,0x91,0xff,0x39,0x55,0x92,0xff,0x3a,0x56,0x93,0xff,0x3a, + 0x57,0x94,0xff,0x3b,0x57,0x95,0xff,0x3c,0x59,0x96,0xff,0x3d,0x59,0x97,0xff, + 0x3e,0x5a,0x98,0xff,0x3e,0x5b,0x99,0xff,0x3f,0x5c,0x9a,0xff,0x40,0x5d,0x9b, + 0xff,0x41,0x5d,0x9c,0xff,0x41,0x5e,0x9d,0xff,0x42,0x5f,0x9e,0xff,0x43,0x60, + 0x9f,0xff,0x44,0x61,0xa0,0xff,0x43,0x60,0x9f,0xff,0x42,0x5e,0x9d,0xff,0x43, + 0x5e,0x9e,0xff,0x44,0x5f,0x9f,0xff,0x45,0x60,0xa0,0xff,0x45,0x61,0xa1,0xff, + 0x45,0x61,0xa2,0xff,0x46,0x62,0xa3,0xff,0x46,0x63,0xa4,0xff,0x47,0x64,0xa4, + 0xff,0x48,0x64,0xa6,0xff,0x02,0x02,0x04,0xff,0x00,0x01,0x02,0xff,0x8d,0x12, + 0x29,0x5d,0xff,0x4d,0x12,0x29,0x5e,0xff,0x13,0x2a,0x5f,0xff,0x14,0x2b,0x5f, + 0xff,0x15,0x2c,0x60,0xff,0x15,0x2d,0x61,0xff,0x16,0x2d,0x62,0xff,0x17,0x2e, + 0x63,0xff,0x17,0x2f,0x64,0xff,0x18,0x30,0x66,0xff,0x1a,0x31,0x67,0xff,0x1b, + 0x33,0x6a,0xff,0x1c,0x35,0x6d,0xff,0x1d,0x36,0x6e,0xff,0x1e,0x37,0x6f,0xff, + 0x1f,0x38,0x70,0xff,0x20,0x39,0x71,0xff,0x20,0x3a,0x72,0xff,0x21,0x3a,0x73, + 0xff,0x22,0x3b,0x74,0xff,0x23,0x3c,0x75,0xff,0x24,0x3d,0x76,0xff,0x23,0x3d, + 0x76,0xff,0x23,0x3d,0x75,0xff,0x23,0x3c,0x74,0xff,0x24,0x3d,0x75,0xff,0x24, + 0x3e,0x76,0xff,0x25,0x3f,0x77,0xff,0x26,0x3f,0x78,0xff,0x26,0x40,0x79,0xff, + 0x27,0x41,0x7a,0xff,0x28,0x42,0x7b,0xff,0x29,0x43,0x7c,0xff,0x29,0x43,0x7d, + 0xff,0x2a,0x44,0x7e,0xff,0x2b,0x45,0x7f,0xff,0x2c,0x45,0x7f,0xff,0x2c,0x46, + 0x80,0xff,0x2d,0x46,0x81,0xff,0x2e,0x47,0x82,0xff,0x2e,0x48,0x83,0xff,0x2f, + 0x49,0x84,0xff,0x30,0x49,0x85,0xff,0x31,0x4a,0x86,0xff,0x31,0x4b,0x87,0xff, + 0x33,0x4d,0x89,0xff,0x35,0x50,0x8d,0xff,0x36,0x52,0x8f,0xff,0x37,0x53,0x90, + 0xff,0x38,0x54,0x91,0xff,0x39,0x55,0x92,0xff,0x39,0x56,0x93,0xff,0x3a,0x56, + 0x94,0xff,0x3b,0x57,0x95,0xff,0x3b,0x58,0x95,0xff,0x3d,0x59,0x97,0xff,0x3e, + 0x5a,0x98,0xff,0x3e,0x5b,0x99,0xff,0x3f,0x5c,0x9a,0xff,0x40,0x5c,0x9b,0xff, + 0x40,0x5d,0x9c,0xff,0x41,0x5e,0x9d,0xff,0x42,0x5f,0x9e,0xff,0x43,0x5f,0x9f, + 0xff,0x44,0x60,0x9f,0xff,0x42,0x5e,0x9d,0xff,0x42,0x5d,0x9d,0xff,0x43,0x5e, + 0x9d,0xff,0x43,0x5f,0x9e,0xff,0x44,0x5f,0x9f,0xff,0x45,0x60,0xa0,0xff,0x45, + 0x61,0xa1,0xff,0x45,0x62,0xa2,0xff,0x46,0x63,0xa3,0xff,0x47,0x63,0xa4,0xff, + 0x48,0x64,0xa5,0xff,0x02,0x02,0x04,0xff,0x00,0x01,0x02,0xff,0x8e,0x12,0x29, + 0x5d,0xff,0x3d,0x13,0x2a,0x5e,0xff,0x14,0x2b,0x5f,0xff,0x14,0x2b,0x60,0xff, + 0x15,0x2c,0x61,0xff,0x16,0x2d,0x62,0xff,0x16,0x2e,0x63,0xff,0x17,0x2f,0x64, + 0xff,0x18,0x30,0x66,0xff,0x1a,0x32,0x69,0xff,0x1b,0x34,0x6c,0xff,0x1c,0x35, + 0x6d,0xff,0x1d,0x36,0x6e,0xff,0x1e,0x37,0x6f,0xff,0x1f,0x38,0x70,0xff,0x1f, + 0x38,0x71,0xff,0x20,0x39,0x72,0xff,0x21,0x3a,0x73,0xff,0x22,0x3b,0x74,0xff, + 0x23,0x3c,0x75,0xff,0x22,0x3c,0x75,0xff,0x22,0x3c,0x74,0xff,0x22,0x3b,0x73, + 0xff,0x23,0x3c,0x74,0xff,0x23,0x3d,0x75,0xff,0x24,0x3e,0x76,0xff,0x25,0x3e, + 0x77,0xff,0x25,0x3f,0x78,0xff,0x26,0x40,0x79,0xff,0x27,0x41,0x79,0xff,0x28, + 0x42,0x7a,0xff,0x28,0x42,0x7b,0xff,0x29,0x43,0x7c,0xff,0x2a,0x44,0x7d,0xff, + 0x2b,0x45,0x7e,0xff,0x2b,0x45,0x7f,0xff,0x2c,0x45,0x80,0xff,0x2d,0x46,0x81, + 0xff,0x2d,0x47,0x82,0xff,0x2e,0x48,0x83,0xff,0x2f,0x48,0x84,0xff,0x30,0x49, + 0x85,0xff,0x30,0x4a,0x86,0xff,0x31,0x4b,0x87,0xff,0x32,0x4c,0x88,0xff,0x34, + 0x4e,0x8b,0xff,0x36,0x52,0x8f,0xff,0x37,0x53,0x8f,0xff,0x38,0x54,0x90,0xff, + 0x38,0x54,0x91,0xff,0x39,0x55,0x92,0xff,0x3a,0x56,0x93,0xff,0x3b,0x57,0x94, + 0xff,0x3b,0x58,0x95,0xff,0x3d,0x59,0x97,0xff,0x3d,0x5a,0x98,0xff,0x3e,0x5a, + 0x98,0xff,0x3f,0x5b,0x99,0xff,0x3f,0x5c,0x9a,0xff,0x40,0x5d,0x9b,0xff,0x41, + 0x5e,0x9c,0xff,0x42,0x5e,0x9d,0xff,0x82,0x42,0x5f,0x9e,0xff,0x0d,0x41,0x5d, + 0x9c,0xff,0x42,0x5d,0x9c,0xff,0x43,0x5e,0x9d,0xff,0x43,0x5e,0x9e,0xff,0x44, + 0x5f,0x9f,0xff,0x45,0x60,0xa0,0xff,0x45,0x61,0xa1,0xff,0x45,0x62,0xa2,0xff, + 0x46,0x62,0xa3,0xff,0x47,0x63,0xa4,0xff,0x47,0x64,0xa5,0xff,0x02,0x02,0x04, + 0xff,0x00,0x01,0x02,0xff,0x8e,0x12,0x29,0x5d,0xff,0x4c,0x13,0x2a,0x5e,0xff, + 0x13,0x2a,0x5f,0xff,0x14,0x2b,0x60,0xff,0x15,0x2c,0x61,0xff,0x15,0x2d,0x62, + 0xff,0x16,0x2e,0x63,0xff,0x17,0x2f,0x65,0xff,0x18,0x31,0x68,0xff,0x1a,0x33, + 0x6a,0xff,0x1b,0x34,0x6c,0xff,0x1b,0x35,0x6d,0xff,0x1c,0x36,0x6e,0xff,0x1d, + 0x37,0x6f,0xff,0x1e,0x37,0x70,0xff,0x1f,0x38,0x71,0xff,0x20,0x39,0x71,0xff, + 0x21,0x3a,0x73,0xff,0x21,0x3b,0x73,0xff,0x21,0x3b,0x74,0xff,0x21,0x3b,0x72, + 0xff,0x21,0x3a,0x72,0xff,0x22,0x3b,0x72,0xff,0x22,0x3c,0x73,0xff,0x23,0x3d, + 0x74,0xff,0x24,0x3d,0x75,0xff,0x25,0x3e,0x76,0xff,0x25,0x3f,0x77,0xff,0x26, + 0x40,0x78,0xff,0x27,0x40,0x79,0xff,0x27,0x41,0x7a,0xff,0x28,0x42,0x7b,0xff, + 0x29,0x43,0x7c,0xff,0x2a,0x44,0x7d,0xff,0x2a,0x44,0x7e,0xff,0x2b,0x45,0x7f, + 0xff,0x2c,0x45,0x80,0xff,0x2c,0x46,0x81,0xff,0x2d,0x47,0x82,0xff,0x2e,0x47, + 0x83,0xff,0x2f,0x48,0x83,0xff,0x2f,0x49,0x84,0xff,0x30,0x4a,0x85,0xff,0x31, + 0x4a,0x86,0xff,0x32,0x4b,0x87,0xff,0x33,0x4d,0x89,0xff,0x35,0x51,0x8d,0xff, + 0x37,0x53,0x8f,0xff,0x37,0x53,0x90,0xff,0x38,0x54,0x91,0xff,0x39,0x55,0x92, + 0xff,0x3a,0x56,0x93,0xff,0x3a,0x56,0x94,0xff,0x3b,0x57,0x95,0xff,0x3c,0x59, + 0x96,0xff,0x3d,0x59,0x97,0xff,0x3e,0x5a,0x98,0xff,0x3e,0x5b,0x99,0xff,0x3f, + 0x5c,0x9a,0xff,0x40,0x5d,0x9b,0xff,0x41,0x5d,0x9c,0xff,0x41,0x5e,0x9d,0xff, + 0x42,0x5e,0x9d,0xff,0x41,0x5d,0x9c,0xff,0x41,0x5c,0x9b,0xff,0x42,0x5c,0x9c, + 0xff,0x42,0x5d,0x9d,0xff,0x43,0x5e,0x9e,0xff,0x44,0x5f,0x9e,0xff,0x44,0x60, + 0xa0,0xff,0x45,0x60,0xa1,0xff,0x45,0x61,0xa2,0xff,0x46,0x62,0xa3,0xff,0x46, + 0x63,0xa3,0xff,0x47,0x64,0xa4,0xff,0x02,0x02,0x04,0xff,0x00,0x01,0x02,0xff, + 0x8f,0x12,0x29,0x5d,0xff,0x30,0x13,0x2a,0x5e,0xff,0x14,0x2b,0x5f,0xff,0x15, + 0x2c,0x60,0xff,0x15,0x2c,0x62,0xff,0x16,0x2e,0x64,0xff,0x17,0x30,0x67,0xff, + 0x18,0x32,0x69,0xff,0x1a,0x33,0x6b,0xff,0x1a,0x34,0x6c,0xff,0x1b,0x35,0x6d, + 0xff,0x1c,0x35,0x6d,0xff,0x1d,0x36,0x6e,0xff,0x1e,0x37,0x6f,0xff,0x1f,0x38, + 0x70,0xff,0x20,0x39,0x71,0xff,0x20,0x3a,0x72,0xff,0x21,0x3a,0x72,0xff,0x20, + 0x3a,0x71,0xff,0x20,0x39,0x70,0xff,0x21,0x3a,0x71,0xff,0x21,0x3b,0x72,0xff, + 0x22,0x3b,0x73,0xff,0x23,0x3c,0x74,0xff,0x23,0x3d,0x75,0xff,0x24,0x3e,0x76, + 0xff,0x25,0x3f,0x77,0xff,0x26,0x3f,0x78,0xff,0x26,0x40,0x79,0xff,0x27,0x41, + 0x7a,0xff,0x28,0x42,0x7b,0xff,0x29,0x43,0x7c,0xff,0x29,0x43,0x7d,0xff,0x2a, + 0x44,0x7e,0xff,0x2b,0x45,0x7e,0xff,0x2b,0x45,0x7f,0xff,0x2c,0x45,0x80,0xff, + 0x2d,0x46,0x81,0xff,0x2e,0x47,0x82,0xff,0x2e,0x48,0x83,0xff,0x2f,0x49,0x84, + 0xff,0x30,0x49,0x85,0xff,0x31,0x4a,0x86,0xff,0x31,0x4b,0x87,0xff,0x32,0x4c, + 0x88,0xff,0x34,0x4f,0x8b,0xff,0x36,0x52,0x8f,0xff,0x37,0x53,0x90,0xff,0x38, + 0x54,0x91,0xff,0x82,0x39,0x55,0x92,0xff,0x09,0x3a,0x56,0x93,0xff,0x3b,0x57, + 0x94,0xff,0x3c,0x58,0x96,0xff,0x3d,0x59,0x97,0xff,0x3d,0x5a,0x98,0xff,0x3e, + 0x5b,0x99,0xff,0x3f,0x5b,0x9a,0xff,0x40,0x5c,0x9b,0xff,0x40,0x5d,0x9b,0xff, + 0x82,0x41,0x5e,0x9d,0xff,0x82,0x40,0x5b,0x9a,0xff,0x0c,0x41,0x5c,0x9b,0xff, + 0x42,0x5d,0x9c,0xff,0x43,0x5e,0x9d,0xff,0x43,0x5f,0x9e,0xff,0x44,0x5f,0x9f, + 0xff,0x45,0x60,0xa0,0xff,0x45,0x61,0xa1,0xff,0x45,0x62,0xa2,0xff,0x46,0x63, + 0xa3,0xff,0x47,0x63,0xa4,0xff,0x02,0x02,0x04,0xff,0x00,0x01,0x02,0xff,0x8f, + 0x12,0x29,0x5d,0xff,0x4b,0x13,0x2a,0x5e,0xff,0x13,0x2b,0x5f,0xff,0x14,0x2c, + 0x61,0xff,0x15,0x2d,0x63,0xff,0x16,0x2f,0x65,0xff,0x17,0x31,0x68,0xff,0x18, + 0x32,0x69,0xff,0x19,0x33,0x6a,0xff,0x1a,0x34,0x6b,0xff,0x1b,0x35,0x6c,0xff, + 0x1c,0x35,0x6d,0xff,0x1d,0x36,0x6e,0xff,0x1e,0x37,0x6f,0xff,0x1f,0x38,0x70, + 0xff,0x1f,0x38,0x71,0xff,0x20,0x39,0x71,0xff,0x1f,0x39,0x70,0xff,0x1f,0x38, + 0x6f,0xff,0x1f,0x38,0x70,0xff,0x20,0x39,0x71,0xff,0x21,0x3a,0x72,0xff,0x22, + 0x3b,0x72,0xff,0x22,0x3c,0x73,0xff,0x23,0x3d,0x75,0xff,0x24,0x3d,0x76,0xff, + 0x25,0x3e,0x77,0xff,0x25,0x3f,0x78,0xff,0x26,0x40,0x78,0xff,0x27,0x41,0x79, + 0xff,0x28,0x41,0x7a,0xff,0x28,0x42,0x7b,0xff,0x29,0x43,0x7c,0xff,0x2a,0x44, + 0x7d,0xff,0x2a,0x45,0x7e,0xff,0x2b,0x45,0x7f,0xff,0x2c,0x45,0x80,0xff,0x2d, + 0x46,0x81,0xff,0x2d,0x47,0x82,0xff,0x2e,0x48,0x83,0xff,0x2f,0x48,0x84,0xff, + 0x30,0x49,0x85,0xff,0x30,0x4a,0x86,0xff,0x31,0x4b,0x87,0xff,0x32,0x4b,0x87, + 0xff,0x33,0x4d,0x89,0xff,0x36,0x51,0x8d,0xff,0x37,0x53,0x8f,0xff,0x38,0x54, + 0x90,0xff,0x38,0x54,0x91,0xff,0x39,0x55,0x92,0xff,0x3a,0x56,0x93,0xff,0x3b, + 0x57,0x94,0xff,0x3c,0x58,0x96,0xff,0x3c,0x59,0x97,0xff,0x3d,0x5a,0x97,0xff, + 0x3e,0x5a,0x98,0xff,0x3f,0x5b,0x99,0xff,0x3f,0x5c,0x9a,0xff,0x40,0x5d,0x9b, + 0xff,0x41,0x5d,0x9c,0xff,0x40,0x5c,0x9b,0xff,0x40,0x5a,0x99,0xff,0x40,0x5b, + 0x9a,0xff,0x41,0x5c,0x9b,0xff,0x42,0x5d,0x9c,0xff,0x42,0x5d,0x9d,0xff,0x43, + 0x5e,0x9e,0xff,0x44,0x5f,0x9f,0xff,0x45,0x60,0xa0,0xff,0x45,0x61,0xa1,0xff, + 0x45,0x61,0xa2,0xff,0x46,0x62,0xa3,0xff,0x47,0x63,0xa4,0xff,0x02,0x02,0x04, + 0xff,0x00,0x01,0x02,0xff,0x8f,0x12,0x29,0x5d,0xff,0x0f,0x12,0x2a,0x5e,0xff, + 0x13,0x2b,0x5f,0xff,0x14,0x2c,0x62,0xff,0x15,0x2e,0x64,0xff,0x16,0x2f,0x66, + 0xff,0x17,0x30,0x67,0xff,0x18,0x32,0x69,0xff,0x19,0x33,0x6a,0xff,0x1a,0x33, + 0x6b,0xff,0x1b,0x34,0x6c,0xff,0x1b,0x35,0x6d,0xff,0x1c,0x36,0x6e,0xff,0x1d, + 0x36,0x6f,0xff,0x1e,0x37,0x70,0xff,0x1f,0x38,0x70,0xff,0x83,0x1e,0x37,0x6e, + 0xff,0x28,0x1f,0x38,0x6f,0xff,0x20,0x39,0x70,0xff,0x21,0x3a,0x71,0xff,0x21, + 0x3b,0x72,0xff,0x22,0x3c,0x73,0xff,0x23,0x3c,0x74,0xff,0x24,0x3d,0x75,0xff, + 0x24,0x3e,0x76,0xff,0x25,0x3f,0x77,0xff,0x26,0x40,0x78,0xff,0x27,0x40,0x79, + 0xff,0x27,0x41,0x7a,0xff,0x28,0x42,0x7b,0xff,0x29,0x43,0x7c,0xff,0x29,0x43, + 0x7d,0xff,0x2a,0x44,0x7e,0xff,0x2b,0x45,0x7f,0xff,0x2c,0x45,0x80,0xff,0x2c, + 0x46,0x81,0xff,0x2d,0x46,0x81,0xff,0x2e,0x47,0x82,0xff,0x2f,0x48,0x83,0xff, + 0x2f,0x49,0x84,0xff,0x30,0x4a,0x85,0xff,0x31,0x4a,0x86,0xff,0x32,0x4b,0x87, + 0xff,0x33,0x4c,0x89,0xff,0x35,0x4f,0x8b,0xff,0x37,0x53,0x8f,0xff,0x37,0x53, + 0x90,0xff,0x38,0x54,0x91,0xff,0x39,0x55,0x92,0xff,0x3a,0x56,0x93,0xff,0x3a, + 0x56,0x94,0xff,0x3b,0x58,0x95,0xff,0x3c,0x59,0x96,0xff,0x3d,0x59,0x97,0xff, + 0x3e,0x5a,0x98,0xff,0x3e,0x5b,0x99,0xff,0x3f,0x5c,0x9a,0xff,0x82,0x40,0x5c, + 0x9b,0xff,0x82,0x3f,0x5a,0x99,0xff,0x0d,0x40,0x5b,0x9a,0xff,0x41,0x5b,0x9b, + 0xff,0x41,0x5c,0x9b,0xff,0x42,0x5d,0x9c,0xff,0x43,0x5e,0x9d,0xff,0x44,0x5f, + 0x9e,0xff,0x44,0x60,0x9f,0xff,0x45,0x60,0xa1,0xff,0x45,0x61,0xa2,0xff,0x46, + 0x62,0xa2,0xff,0x46,0x63,0xa3,0xff,0x02,0x02,0x04,0xff,0x00,0x01,0x02,0xff, + 0x8f,0x12,0x29,0x5d,0xff,0x1e,0x12,0x2a,0x5e,0xff,0x13,0x2b,0x60,0xff,0x14, + 0x2d,0x63,0xff,0x15,0x2f,0x65,0xff,0x16,0x2f,0x66,0xff,0x17,0x30,0x67,0xff, + 0x18,0x31,0x68,0xff,0x19,0x32,0x6a,0xff,0x19,0x33,0x6b,0xff,0x1a,0x34,0x6b, + 0xff,0x1b,0x35,0x6c,0xff,0x1c,0x35,0x6d,0xff,0x1d,0x36,0x6e,0xff,0x1e,0x36, + 0x6f,0xff,0x1d,0x36,0x6d,0xff,0x1d,0x36,0x6c,0xff,0x1d,0x36,0x6d,0xff,0x1e, + 0x37,0x6e,0xff,0x1f,0x38,0x6f,0xff,0x20,0x39,0x70,0xff,0x20,0x3a,0x71,0xff, + 0x21,0x3b,0x72,0xff,0x22,0x3b,0x73,0xff,0x23,0x3c,0x74,0xff,0x23,0x3d,0x75, + 0xff,0x24,0x3e,0x76,0xff,0x25,0x3f,0x77,0xff,0x26,0x3f,0x78,0xff,0x26,0x40, + 0x79,0xff,0x27,0x41,0x7a,0xff,0x82,0x28,0x42,0x7b,0xff,0x11,0x29,0x43,0x7c, + 0xff,0x2a,0x44,0x7d,0xff,0x2b,0x45,0x7e,0xff,0x2b,0x45,0x7f,0xff,0x2c,0x45, + 0x80,0xff,0x2d,0x46,0x81,0xff,0x2e,0x47,0x82,0xff,0x2e,0x48,0x83,0xff,0x2f, + 0x49,0x84,0xff,0x30,0x49,0x85,0xff,0x30,0x4a,0x86,0xff,0x31,0x4b,0x87,0xff, + 0x32,0x4c,0x88,0xff,0x34,0x4d,0x8a,0xff,0x36,0x51,0x8d,0xff,0x37,0x53,0x90, + 0xff,0x38,0x54,0x91,0xff,0x82,0x39,0x55,0x92,0xff,0x18,0x3a,0x56,0x93,0xff, + 0x3b,0x57,0x95,0xff,0x3c,0x58,0x96,0xff,0x3d,0x59,0x97,0xff,0x3d,0x5a,0x98, + 0xff,0x3e,0x5b,0x99,0xff,0x3f,0x5b,0x9a,0xff,0x3f,0x5c,0x9a,0xff,0x3f,0x5b, + 0x99,0xff,0x3e,0x59,0x98,0xff,0x3f,0x5a,0x98,0xff,0x3f,0x5a,0x99,0xff,0x40, + 0x5b,0x9a,0xff,0x41,0x5c,0x9b,0xff,0x42,0x5d,0x9c,0xff,0x43,0x5e,0x9d,0xff, + 0x43,0x5e,0x9e,0xff,0x44,0x5f,0x9f,0xff,0x45,0x60,0xa0,0xff,0x45,0x61,0xa1, + 0xff,0x45,0x62,0xa2,0xff,0x46,0x63,0xa3,0xff,0x02,0x02,0x04,0xff,0x00,0x01, + 0x02,0xff,0x8f,0x12,0x29,0x5d,0xff,0x4b,0x12,0x2a,0x5f,0xff,0x13,0x2c,0x62, + 0xff,0x14,0x2d,0x64,0xff,0x15,0x2e,0x65,0xff,0x16,0x2f,0x66,0xff,0x17,0x30, + 0x67,0xff,0x18,0x31,0x68,0xff,0x18,0x32,0x69,0xff,0x19,0x33,0x6a,0xff,0x1a, + 0x34,0x6b,0xff,0x1b,0x34,0x6c,0xff,0x1b,0x35,0x6d,0xff,0x1c,0x35,0x6d,0xff, + 0x1c,0x35,0x6c,0xff,0x1c,0x35,0x6b,0xff,0x1c,0x35,0x6c,0xff,0x1d,0x36,0x6d, + 0xff,0x1e,0x37,0x6e,0xff,0x1f,0x38,0x6f,0xff,0x1f,0x39,0x70,0xff,0x20,0x39, + 0x70,0xff,0x21,0x3a,0x71,0xff,0x22,0x3b,0x72,0xff,0x22,0x3c,0x73,0xff,0x23, + 0x3d,0x74,0xff,0x24,0x3d,0x76,0xff,0x25,0x3e,0x76,0xff,0x25,0x3f,0x77,0xff, + 0x26,0x40,0x78,0xff,0x27,0x41,0x79,0xff,0x27,0x41,0x7a,0xff,0x28,0x42,0x7b, + 0xff,0x29,0x43,0x7c,0xff,0x2a,0x44,0x7d,0xff,0x2a,0x44,0x7e,0xff,0x2b,0x45, + 0x7f,0xff,0x2c,0x45,0x80,0xff,0x2d,0x46,0x81,0xff,0x2d,0x47,0x82,0xff,0x2e, + 0x47,0x83,0xff,0x2f,0x48,0x84,0xff,0x30,0x49,0x85,0xff,0x30,0x4a,0x85,0xff, + 0x31,0x4b,0x86,0xff,0x32,0x4b,0x87,0xff,0x33,0x4d,0x89,0xff,0x35,0x4f,0x8b, + 0xff,0x37,0x52,0x8f,0xff,0x38,0x53,0x90,0xff,0x38,0x54,0x91,0xff,0x39,0x55, + 0x92,0xff,0x3a,0x56,0x93,0xff,0x3b,0x57,0x95,0xff,0x3c,0x58,0x95,0xff,0x3c, + 0x59,0x96,0xff,0x3d,0x5a,0x97,0xff,0x3e,0x5a,0x98,0xff,0x3f,0x5b,0x99,0xff, + 0x3f,0x5b,0x9a,0xff,0x3e,0x5a,0x98,0xff,0x3e,0x59,0x97,0xff,0x3e,0x59,0x98, + 0xff,0x3f,0x5a,0x99,0xff,0x40,0x5b,0x9a,0xff,0x41,0x5c,0x9b,0xff,0x41,0x5c, + 0x9c,0xff,0x42,0x5d,0x9d,0xff,0x43,0x5e,0x9e,0xff,0x44,0x5f,0x9f,0xff,0x45, + 0x60,0xa0,0xff,0x45,0x61,0xa1,0xff,0x45,0x61,0xa2,0xff,0x46,0x62,0xa3,0xff, + 0x02,0x02,0x04,0xff,0x00,0x01,0x02,0xff,0x8e,0x12,0x29,0x5d,0xff,0x3c,0x12, + 0x2a,0x5f,0xff,0x13,0x2b,0x61,0xff,0x13,0x2c,0x63,0xff,0x14,0x2d,0x64,0xff, + 0x15,0x2e,0x65,0xff,0x16,0x2f,0x65,0xff,0x16,0x30,0x66,0xff,0x17,0x30,0x67, + 0xff,0x18,0x32,0x69,0xff,0x19,0x32,0x6a,0xff,0x1a,0x33,0x6b,0xff,0x1a,0x34, + 0x6c,0xff,0x1b,0x34,0x6c,0xff,0x1b,0x34,0x6b,0xff,0x1b,0x34,0x6a,0xff,0x1b, + 0x34,0x6b,0xff,0x1c,0x35,0x6b,0xff,0x1d,0x36,0x6c,0xff,0x1d,0x37,0x6d,0xff, + 0x1e,0x37,0x6e,0xff,0x1f,0x38,0x6f,0xff,0x20,0x39,0x70,0xff,0x20,0x3a,0x71, + 0xff,0x21,0x3a,0x72,0xff,0x22,0x3b,0x73,0xff,0x23,0x3c,0x74,0xff,0x24,0x3d, + 0x75,0xff,0x24,0x3e,0x76,0xff,0x25,0x3f,0x77,0xff,0x26,0x3f,0x78,0xff,0x26, + 0x40,0x79,0xff,0x27,0x41,0x7a,0xff,0x28,0x42,0x7b,0xff,0x29,0x43,0x7c,0xff, + 0x29,0x43,0x7d,0xff,0x2a,0x44,0x7e,0xff,0x2b,0x45,0x7f,0xff,0x2c,0x45,0x80, + 0xff,0x2c,0x46,0x80,0xff,0x2d,0x46,0x81,0xff,0x2e,0x47,0x82,0xff,0x2e,0x48, + 0x83,0xff,0x2f,0x49,0x84,0xff,0x30,0x4a,0x85,0xff,0x31,0x4a,0x86,0xff,0x31, + 0x4b,0x87,0xff,0x32,0x4c,0x88,0xff,0x33,0x4d,0x8a,0xff,0x35,0x50,0x8d,0xff, + 0x37,0x53,0x90,0xff,0x38,0x54,0x91,0xff,0x39,0x55,0x92,0xff,0x39,0x56,0x93, + 0xff,0x3b,0x57,0x94,0xff,0x3b,0x58,0x95,0xff,0x3c,0x58,0x96,0xff,0x3d,0x59, + 0x97,0xff,0x3e,0x5a,0x98,0xff,0x3e,0x5b,0x99,0xff,0x3e,0x5a,0x98,0xff,0x82, + 0x3d,0x58,0x97,0xff,0x0e,0x3e,0x59,0x98,0xff,0x3f,0x5a,0x99,0xff,0x40,0x5a, + 0x9a,0xff,0x40,0x5b,0x9a,0xff,0x41,0x5c,0x9b,0xff,0x42,0x5d,0x9c,0xff,0x43, + 0x5e,0x9d,0xff,0x43,0x5e,0x9e,0xff,0x44,0x5f,0x9f,0xff,0x45,0x60,0xa0,0xff, + 0x45,0x61,0xa1,0xff,0x45,0x62,0xa2,0xff,0x01,0x02,0x04,0xff,0x00,0x01,0x02, + 0xff,0x8d,0x12,0x29,0x5d,0xff,0x02,0x12,0x2a,0x5f,0xff,0x13,0x2c,0x61,0xff, + 0x82,0x13,0x2c,0x62,0xff,0x0a,0x14,0x2d,0x63,0xff,0x15,0x2e,0x64,0xff,0x15, + 0x2e,0x65,0xff,0x16,0x2f,0x66,0xff,0x17,0x30,0x67,0xff,0x18,0x31,0x69,0xff, + 0x19,0x32,0x6a,0xff,0x19,0x33,0x6a,0xff,0x1a,0x33,0x6b,0xff,0x1a,0x33,0x6a, + 0xff,0x82,0x1b,0x33,0x69,0xff,0x3d,0x1b,0x34,0x6a,0xff,0x1c,0x35,0x6b,0xff, + 0x1c,0x36,0x6c,0xff,0x1d,0x36,0x6d,0xff,0x1e,0x37,0x6e,0xff,0x1f,0x38,0x6f, + 0xff,0x1f,0x39,0x70,0xff,0x20,0x39,0x71,0xff,0x21,0x3a,0x72,0xff,0x22,0x3b, + 0x73,0xff,0x22,0x3c,0x74,0xff,0x23,0x3d,0x75,0xff,0x24,0x3e,0x75,0xff,0x25, + 0x3e,0x77,0xff,0x25,0x3f,0x78,0xff,0x26,0x40,0x79,0xff,0x27,0x41,0x79,0xff, + 0x28,0x42,0x7a,0xff,0x28,0x42,0x7b,0xff,0x29,0x43,0x7c,0xff,0x2a,0x44,0x7d, + 0xff,0x2b,0x45,0x7e,0xff,0x2b,0x45,0x7f,0xff,0x2c,0x45,0x80,0xff,0x2d,0x46, + 0x81,0xff,0x2e,0x47,0x82,0xff,0x2e,0x48,0x83,0xff,0x2f,0x48,0x84,0xff,0x30, + 0x49,0x85,0xff,0x30,0x4a,0x86,0xff,0x31,0x4b,0x87,0xff,0x32,0x4c,0x88,0xff, + 0x33,0x4c,0x89,0xff,0x34,0x4f,0x8b,0xff,0x37,0x52,0x8e,0xff,0x38,0x54,0x90, + 0xff,0x38,0x55,0x91,0xff,0x39,0x56,0x92,0xff,0x3a,0x57,0x94,0xff,0x3b,0x57, + 0x95,0xff,0x3c,0x58,0x96,0xff,0x3d,0x59,0x97,0xff,0x3d,0x5a,0x98,0xff,0x3e, + 0x5a,0x98,0xff,0x3d,0x58,0x96,0xff,0x3d,0x57,0x95,0xff,0x3d,0x58,0x96,0xff, + 0x3e,0x59,0x97,0xff,0x3f,0x59,0x98,0xff,0x3f,0x5a,0x99,0xff,0x40,0x5b,0x9a, + 0xff,0x41,0x5c,0x9b,0xff,0x42,0x5d,0x9c,0xff,0x42,0x5d,0x9d,0xff,0x43,0x5e, + 0x9e,0xff,0x44,0x5f,0x9f,0xff,0x45,0x60,0xa0,0xff,0x45,0x61,0xa1,0xff,0x45, + 0x62,0xa2,0xff,0x02,0x02,0x04,0xff,0x00,0x01,0x02,0xff,0x8b,0x12,0x29,0x5d, + 0xff,0x03,0x12,0x29,0x5e,0xff,0x13,0x2a,0x5f,0xff,0x13,0x2c,0x61,0xff,0x83, + 0x13,0x2c,0x62,0xff,0x36,0x14,0x2d,0x63,0xff,0x14,0x2d,0x64,0xff,0x15,0x2e, + 0x65,0xff,0x16,0x2f,0x66,0xff,0x16,0x30,0x67,0xff,0x18,0x31,0x68,0xff,0x18, + 0x32,0x69,0xff,0x19,0x32,0x69,0xff,0x19,0x32,0x68,0xff,0x1a,0x32,0x67,0xff, + 0x1a,0x32,0x68,0xff,0x1b,0x33,0x69,0xff,0x1b,0x34,0x6a,0xff,0x1c,0x34,0x6b, + 0xff,0x1c,0x35,0x6c,0xff,0x1d,0x36,0x6d,0xff,0x1e,0x37,0x6e,0xff,0x1e,0x38, + 0x6f,0xff,0x1f,0x38,0x6f,0xff,0x20,0x39,0x70,0xff,0x21,0x3a,0x71,0xff,0x21, + 0x3b,0x72,0xff,0x22,0x3b,0x73,0xff,0x23,0x3c,0x74,0xff,0x24,0x3d,0x75,0xff, + 0x24,0x3e,0x76,0xff,0x25,0x3f,0x77,0xff,0x26,0x40,0x78,0xff,0x27,0x40,0x79, + 0xff,0x27,0x41,0x7a,0xff,0x28,0x42,0x7b,0xff,0x29,0x43,0x7c,0xff,0x2a,0x44, + 0x7d,0xff,0x2a,0x44,0x7e,0xff,0x2b,0x45,0x7f,0xff,0x2c,0x45,0x80,0xff,0x2c, + 0x46,0x81,0xff,0x2d,0x46,0x82,0xff,0x2e,0x47,0x83,0xff,0x2f,0x48,0x83,0xff, + 0x2f,0x49,0x84,0xff,0x30,0x4a,0x86,0xff,0x31,0x4a,0x86,0xff,0x32,0x4b,0x87, + 0xff,0x32,0x4c,0x88,0xff,0x33,0x4d,0x8a,0xff,0x35,0x50,0x8c,0xff,0x37,0x53, + 0x90,0xff,0x38,0x54,0x91,0xff,0x39,0x55,0x92,0xff,0x3a,0x56,0x93,0xff,0x3b, + 0x57,0x94,0xff,0x3c,0x58,0x95,0xff,0x3c,0x59,0x96,0xff,0x82,0x3d,0x59,0x97, + 0xff,0x82,0x3c,0x57,0x95,0xff,0x0f,0x3d,0x58,0x96,0xff,0x3e,0x58,0x97,0xff, + 0x3e,0x59,0x98,0xff,0x3f,0x5a,0x99,0xff,0x40,0x5b,0x9a,0xff,0x41,0x5c,0x9b, + 0xff,0x41,0x5c,0x9c,0xff,0x42,0x5d,0x9d,0xff,0x43,0x5e,0x9e,0xff,0x43,0x5f, + 0x9f,0xff,0x44,0x5f,0x9f,0xff,0x45,0x60,0xa0,0xff,0x45,0x61,0xa1,0xff,0x01, + 0x02,0x04,0xff,0x00,0x01,0x02,0xff,0x8b,0x12,0x29,0x5d,0xff,0x01,0x13,0x2a, + 0x60,0xff,0x85,0x13,0x2c,0x62,0xff,0x49,0x13,0x2c,0x63,0xff,0x14,0x2d,0x63, + 0xff,0x15,0x2e,0x64,0xff,0x15,0x2f,0x65,0xff,0x17,0x30,0x66,0xff,0x17,0x31, + 0x68,0xff,0x18,0x31,0x68,0xff,0x18,0x31,0x67,0xff,0x19,0x30,0x66,0xff,0x19, + 0x31,0x67,0xff,0x1a,0x32,0x68,0xff,0x1b,0x33,0x68,0xff,0x1b,0x33,0x69,0xff, + 0x1b,0x34,0x6a,0xff,0x1c,0x35,0x6b,0xff,0x1d,0x36,0x6c,0xff,0x1d,0x36,0x6d, + 0xff,0x1e,0x37,0x6e,0xff,0x1f,0x38,0x6f,0xff,0x20,0x39,0x70,0xff,0x20,0x3a, + 0x71,0xff,0x21,0x3a,0x72,0xff,0x22,0x3b,0x73,0xff,0x22,0x3c,0x74,0xff,0x23, + 0x3d,0x75,0xff,0x24,0x3e,0x76,0xff,0x25,0x3f,0x77,0xff,0x26,0x3f,0x78,0xff, + 0x26,0x40,0x79,0xff,0x27,0x41,0x7a,0xff,0x28,0x42,0x7b,0xff,0x29,0x43,0x7c, + 0xff,0x29,0x43,0x7d,0xff,0x2a,0x44,0x7d,0xff,0x2b,0x45,0x7e,0xff,0x2b,0x45, + 0x7f,0xff,0x2c,0x45,0x80,0xff,0x2d,0x46,0x81,0xff,0x2e,0x47,0x82,0xff,0x2e, + 0x48,0x83,0xff,0x2f,0x49,0x84,0xff,0x30,0x49,0x85,0xff,0x31,0x4a,0x86,0xff, + 0x31,0x4b,0x87,0xff,0x32,0x4c,0x88,0xff,0x33,0x4d,0x89,0xff,0x34,0x4e,0x8a, + 0xff,0x36,0x51,0x8e,0xff,0x38,0x54,0x91,0xff,0x39,0x55,0x92,0xff,0x3a,0x56, + 0x93,0xff,0x3b,0x57,0x94,0xff,0x3b,0x58,0x95,0xff,0x3c,0x58,0x96,0xff,0x3d, + 0x59,0x97,0xff,0x3c,0x57,0x95,0xff,0x3b,0x56,0x94,0xff,0x3c,0x57,0x95,0xff, + 0x3d,0x57,0x96,0xff,0x3d,0x58,0x97,0xff,0x3e,0x59,0x98,0xff,0x3f,0x5a,0x98, + 0xff,0x40,0x5a,0x99,0xff,0x40,0x5b,0x9a,0xff,0x41,0x5c,0x9b,0xff,0x42,0x5d, + 0x9c,0xff,0x42,0x5e,0x9d,0xff,0x43,0x5e,0x9e,0xff,0x44,0x5f,0x9f,0xff,0x45, + 0x60,0xa0,0xff,0x45,0x61,0xa1,0xff,0x02,0x02,0x03,0xff,0x00,0x01,0x02,0xff, + 0x89,0x12,0x29,0x5d,0xff,0x02,0x12,0x29,0x5e,0xff,0x13,0x2a,0x60,0xff,0x87, + 0x13,0x2c,0x62,0xff,0x34,0x14,0x2d,0x63,0xff,0x14,0x2e,0x64,0xff,0x15,0x2e, + 0x65,0xff,0x16,0x2f,0x66,0xff,0x17,0x30,0x67,0xff,0x17,0x30,0x66,0xff,0x18, + 0x2f,0x65,0xff,0x18,0x30,0x65,0xff,0x19,0x31,0x66,0xff,0x1a,0x31,0x67,0xff, + 0x1a,0x32,0x68,0xff,0x1b,0x33,0x69,0xff,0x1b,0x34,0x6a,0xff,0x1c,0x35,0x6b, + 0xff,0x1c,0x35,0x6c,0xff,0x1d,0x36,0x6d,0xff,0x1e,0x37,0x6e,0xff,0x1f,0x38, + 0x6f,0xff,0x1f,0x39,0x70,0xff,0x20,0x39,0x71,0xff,0x21,0x3a,0x72,0xff,0x21, + 0x3b,0x72,0xff,0x22,0x3c,0x73,0xff,0x23,0x3c,0x74,0xff,0x24,0x3d,0x75,0xff, + 0x24,0x3e,0x76,0xff,0x25,0x3f,0x77,0xff,0x26,0x40,0x78,0xff,0x27,0x41,0x79, + 0xff,0x28,0x41,0x7a,0xff,0x28,0x42,0x7b,0xff,0x29,0x43,0x7c,0xff,0x2a,0x44, + 0x7d,0xff,0x2b,0x45,0x7e,0xff,0x2b,0x45,0x7f,0xff,0x2c,0x45,0x80,0xff,0x2d, + 0x46,0x81,0xff,0x2d,0x47,0x82,0xff,0x2e,0x48,0x83,0xff,0x2f,0x48,0x84,0xff, + 0x30,0x49,0x85,0xff,0x30,0x4a,0x86,0xff,0x31,0x4b,0x87,0xff,0x32,0x4b,0x88, + 0xff,0x33,0x4c,0x89,0xff,0x33,0x4d,0x89,0xff,0x35,0x4f,0x8b,0xff,0x36,0x52, + 0x8f,0xff,0x38,0x54,0x91,0xff,0x3a,0x56,0x93,0xff,0x3a,0x57,0x94,0xff,0x3b, + 0x57,0x95,0xff,0x82,0x3c,0x58,0x96,0xff,0x12,0x3b,0x56,0x94,0xff,0x3b,0x55, + 0x93,0xff,0x3c,0x56,0x94,0xff,0x3c,0x57,0x95,0xff,0x3d,0x58,0x96,0xff,0x3e, + 0x59,0x97,0xff,0x3f,0x59,0x98,0xff,0x3f,0x5a,0x99,0xff,0x40,0x5b,0x9a,0xff, + 0x41,0x5c,0x9b,0xff,0x41,0x5c,0x9c,0xff,0x42,0x5d,0x9d,0xff,0x43,0x5e,0x9e, + 0xff,0x44,0x5f,0x9f,0xff,0x44,0x60,0xa0,0xff,0x45,0x60,0xa1,0xff,0x01,0x02, + 0x03,0xff,0x00,0x01,0x02,0xff,0x88,0x12,0x29,0x5d,0xff,0x02,0x12,0x2a,0x5e, + 0xff,0x13,0x2b,0x60,0xff,0x88,0x13,0x2c,0x62,0xff,0x03,0x13,0x2d,0x63,0xff, + 0x14,0x2d,0x64,0xff,0x15,0x2e,0x65,0xff,0x82,0x16,0x2f,0x65,0xff,0x0b,0x17, + 0x2e,0x64,0xff,0x17,0x2f,0x64,0xff,0x18,0x30,0x65,0xff,0x19,0x30,0x66,0xff, + 0x1a,0x31,0x67,0xff,0x1a,0x32,0x68,0xff,0x1b,0x33,0x69,0xff,0x1b,0x34,0x6a, + 0xff,0x1b,0x34,0x6b,0xff,0x1c,0x35,0x6c,0xff,0x1d,0x36,0x6c,0xff,0x82,0x1e, + 0x37,0x6e,0xff,0x36,0x1f,0x38,0x6f,0xff,0x20,0x39,0x70,0xff,0x21,0x3a,0x71, + 0xff,0x21,0x3b,0x72,0xff,0x22,0x3b,0x73,0xff,0x23,0x3c,0x74,0xff,0x23,0x3d, + 0x75,0xff,0x24,0x3e,0x76,0xff,0x25,0x3f,0x77,0xff,0x26,0x40,0x78,0xff,0x27, + 0x40,0x79,0xff,0x27,0x41,0x7a,0xff,0x28,0x42,0x7b,0xff,0x29,0x43,0x7c,0xff, + 0x29,0x44,0x7d,0xff,0x2a,0x44,0x7e,0xff,0x2b,0x45,0x7f,0xff,0x2c,0x45,0x80, + 0xff,0x2c,0x46,0x81,0xff,0x2d,0x47,0x82,0xff,0x2e,0x47,0x82,0xff,0x2f,0x48, + 0x83,0xff,0x2f,0x49,0x84,0xff,0x30,0x4a,0x85,0xff,0x31,0x4a,0x86,0xff,0x31, + 0x4b,0x87,0xff,0x32,0x4c,0x88,0xff,0x33,0x4d,0x89,0xff,0x34,0x4e,0x8a,0xff, + 0x35,0x50,0x8c,0xff,0x37,0x52,0x8f,0xff,0x39,0x55,0x92,0xff,0x3a,0x56,0x93, + 0xff,0x3b,0x57,0x94,0xff,0x3b,0x58,0x95,0xff,0x3b,0x56,0x94,0xff,0x3a,0x55, + 0x93,0xff,0x3b,0x55,0x93,0xff,0x3b,0x56,0x94,0xff,0x3c,0x57,0x95,0xff,0x3d, + 0x57,0x96,0xff,0x3e,0x58,0x97,0xff,0x3e,0x59,0x98,0xff,0x3f,0x5a,0x99,0xff, + 0x40,0x5b,0x9a,0xff,0x41,0x5b,0x9b,0xff,0x41,0x5c,0x9c,0xff,0x42,0x5d,0x9c, + 0xff,0x43,0x5e,0x9d,0xff,0x43,0x5f,0x9e,0xff,0x44,0x5f,0x9f,0xff,0x45,0x60, + 0xa0,0xff,0x01,0x02,0x03,0xff,0x00,0x01,0x02,0xff,0x87,0x12,0x29,0x5d,0xff, + 0x02,0x12,0x2a,0x5e,0xff,0x13,0x2b,0x60,0xff,0x8a,0x13,0x2c,0x62,0xff,0x32, + 0x14,0x2d,0x63,0xff,0x15,0x2e,0x64,0xff,0x15,0x2e,0x63,0xff,0x16,0x2d,0x62, + 0xff,0x16,0x2e,0x63,0xff,0x17,0x2e,0x64,0xff,0x18,0x2f,0x65,0xff,0x19,0x30, + 0x66,0xff,0x19,0x31,0x67,0xff,0x1a,0x32,0x67,0xff,0x1b,0x32,0x68,0xff,0x1b, + 0x33,0x69,0xff,0x1b,0x34,0x6a,0xff,0x1c,0x35,0x6b,0xff,0x1d,0x36,0x6c,0xff, + 0x1d,0x36,0x6d,0xff,0x1e,0x37,0x6e,0xff,0x1f,0x38,0x6f,0xff,0x20,0x39,0x70, + 0xff,0x20,0x3a,0x71,0xff,0x21,0x3a,0x72,0xff,0x22,0x3b,0x73,0xff,0x22,0x3c, + 0x74,0xff,0x23,0x3d,0x75,0xff,0x24,0x3d,0x76,0xff,0x25,0x3e,0x76,0xff,0x25, + 0x3f,0x78,0xff,0x26,0x40,0x79,0xff,0x27,0x41,0x7a,0xff,0x28,0x42,0x7b,0xff, + 0x28,0x42,0x7c,0xff,0x29,0x43,0x7d,0xff,0x2a,0x44,0x7d,0xff,0x2b,0x45,0x7e, + 0xff,0x2b,0x45,0x7f,0xff,0x2c,0x45,0x80,0xff,0x2d,0x46,0x81,0xff,0x2e,0x47, + 0x82,0xff,0x2e,0x48,0x83,0xff,0x2f,0x49,0x84,0xff,0x30,0x49,0x85,0xff,0x31, + 0x4a,0x86,0xff,0x31,0x4b,0x87,0xff,0x32,0x4c,0x88,0xff,0x33,0x4c,0x89,0xff, + 0x33,0x4d,0x8a,0xff,0x34,0x4e,0x8b,0xff,0x36,0x50,0x8d,0xff,0x37,0x52,0x8f, + 0xff,0x39,0x55,0x92,0xff,0x82,0x3b,0x57,0x94,0xff,0x13,0x3a,0x55,0x92,0xff, + 0x3a,0x54,0x92,0xff,0x3a,0x55,0x93,0xff,0x3b,0x56,0x94,0xff,0x3c,0x56,0x95, + 0xff,0x3d,0x57,0x96,0xff,0x3d,0x58,0x96,0xff,0x3e,0x59,0x97,0xff,0x3f,0x59, + 0x98,0xff,0x40,0x5a,0x99,0xff,0x40,0x5b,0x9a,0xff,0x41,0x5c,0x9b,0xff,0x42, + 0x5d,0x9c,0xff,0x42,0x5d,0x9d,0xff,0x43,0x5e,0x9e,0xff,0x44,0x5f,0x9f,0xff, + 0x45,0x60,0xa0,0xff,0x02,0x02,0x03,0xff,0x00,0x01,0x02,0xff,0x86,0x12,0x29, + 0x5d,0xff,0x02,0x12,0x2a,0x5e,0xff,0x13,0x2b,0x61,0xff,0x8b,0x13,0x2c,0x62, + 0xff,0x34,0x14,0x2d,0x63,0xff,0x14,0x2c,0x62,0xff,0x15,0x2c,0x61,0xff,0x15, + 0x2d,0x61,0xff,0x16,0x2d,0x62,0xff,0x17,0x2e,0x63,0xff,0x18,0x2f,0x64,0xff, + 0x18,0x30,0x65,0xff,0x19,0x31,0x66,0xff,0x1a,0x31,0x67,0xff,0x1a,0x32,0x68, + 0xff,0x1b,0x33,0x69,0xff,0x1b,0x34,0x6a,0xff,0x1c,0x34,0x6b,0xff,0x1c,0x35, + 0x6c,0xff,0x1d,0x36,0x6d,0xff,0x1e,0x37,0x6e,0xff,0x1f,0x38,0x6f,0xff,0x1f, + 0x38,0x70,0xff,0x20,0x39,0x70,0xff,0x21,0x3a,0x71,0xff,0x21,0x3b,0x72,0xff, + 0x22,0x3c,0x73,0xff,0x23,0x3c,0x74,0xff,0x24,0x3d,0x75,0xff,0x24,0x3e,0x76, + 0xff,0x25,0x3f,0x77,0xff,0x26,0x40,0x78,0xff,0x27,0x41,0x79,0xff,0x28,0x41, + 0x7a,0xff,0x28,0x42,0x7b,0xff,0x29,0x43,0x7c,0xff,0x2a,0x44,0x7d,0xff,0x2a, + 0x45,0x7e,0xff,0x2b,0x45,0x7f,0xff,0x2c,0x45,0x80,0xff,0x2d,0x46,0x81,0xff, + 0x2d,0x47,0x82,0xff,0x2e,0x47,0x83,0xff,0x2f,0x48,0x84,0xff,0x30,0x49,0x85, + 0xff,0x30,0x4a,0x86,0xff,0x31,0x4b,0x87,0xff,0x32,0x4b,0x87,0xff,0x32,0x4c, + 0x88,0xff,0x33,0x4d,0x89,0xff,0x34,0x4e,0x8a,0xff,0x35,0x4f,0x8b,0xff,0x36, + 0x50,0x8d,0xff,0x38,0x53,0x90,0xff,0x3a,0x56,0x92,0xff,0x3a,0x56,0x93,0xff, + 0x82,0x39,0x54,0x91,0xff,0x11,0x3a,0x55,0x92,0xff,0x3b,0x55,0x93,0xff,0x3b, + 0x56,0x94,0xff,0x3c,0x57,0x95,0xff,0x3d,0x58,0x96,0xff,0x3e,0x58,0x97,0xff, + 0x3e,0x59,0x98,0xff,0x3f,0x5a,0x99,0xff,0x40,0x5b,0x9a,0xff,0x41,0x5c,0x9b, + 0xff,0x41,0x5c,0x9c,0xff,0x42,0x5d,0x9d,0xff,0x43,0x5e,0x9e,0xff,0x44,0x5f, + 0x9f,0xff,0x44,0x60,0xa0,0xff,0x01,0x02,0x03,0xff,0x00,0x01,0x02,0xff,0x85, + 0x12,0x29,0x5d,0xff,0x02,0x12,0x2a,0x5f,0xff,0x13,0x2b,0x61,0xff,0x8c,0x13, + 0x2c,0x62,0xff,0x01,0x13,0x2b,0x61,0xff,0x82,0x14,0x2b,0x60,0xff,0x30,0x15, + 0x2c,0x61,0xff,0x16,0x2d,0x62,0xff,0x17,0x2e,0x63,0xff,0x17,0x2f,0x64,0xff, + 0x18,0x2f,0x65,0xff,0x19,0x30,0x66,0xff,0x19,0x31,0x67,0xff,0x1a,0x32,0x68, + 0xff,0x1b,0x33,0x69,0xff,0x1b,0x33,0x6a,0xff,0x1b,0x34,0x6b,0xff,0x1c,0x35, + 0x6b,0xff,0x1d,0x36,0x6c,0xff,0x1e,0x37,0x6d,0xff,0x1e,0x37,0x6e,0xff,0x1f, + 0x38,0x6f,0xff,0x20,0x39,0x70,0xff,0x20,0x3a,0x71,0xff,0x21,0x3b,0x72,0xff, + 0x22,0x3b,0x73,0xff,0x23,0x3c,0x74,0xff,0x23,0x3d,0x75,0xff,0x24,0x3e,0x76, + 0xff,0x25,0x3e,0x77,0xff,0x26,0x3f,0x78,0xff,0x26,0x40,0x79,0xff,0x27,0x41, + 0x7a,0xff,0x28,0x42,0x7b,0xff,0x29,0x43,0x7c,0xff,0x29,0x43,0x7d,0xff,0x2a, + 0x44,0x7e,0xff,0x2b,0x45,0x7f,0xff,0x2c,0x45,0x80,0xff,0x2c,0x46,0x81,0xff, + 0x2d,0x46,0x81,0xff,0x2e,0x47,0x82,0xff,0x2f,0x48,0x83,0xff,0x2f,0x49,0x84, + 0xff,0x30,0x4a,0x85,0xff,0x31,0x4a,0x86,0xff,0x31,0x4b,0x87,0xff,0x32,0x4c, + 0x88,0xff,0x33,0x4d,0x89,0xff,0x34,0x4e,0x8a,0xff,0x35,0x4f,0x8b,0xff,0x36, + 0x50,0x8c,0xff,0x36,0x51,0x8d,0xff,0x38,0x52,0x90,0xff,0x82,0x38,0x53,0x90, + 0xff,0x12,0x39,0x53,0x91,0xff,0x3a,0x54,0x92,0xff,0x3b,0x55,0x93,0xff,0x3b, + 0x56,0x94,0xff,0x3c,0x57,0x95,0xff,0x3d,0x57,0x96,0xff,0x3e,0x58,0x97,0xff, + 0x3e,0x59,0x98,0xff,0x3f,0x5a,0x99,0xff,0x40,0x5b,0x9a,0xff,0x40,0x5b,0x9b, + 0xff,0x41,0x5c,0x9b,0xff,0x42,0x5d,0x9c,0xff,0x43,0x5e,0x9d,0xff,0x43,0x5e, + 0x9e,0xff,0x44,0x5f,0x9f,0xff,0x01,0x02,0x03,0xff,0x00,0x01,0x02,0xff,0x84, + 0x12,0x29,0x5d,0xff,0x02,0x12,0x2a,0x5e,0xff,0x13,0x2b,0x61,0xff,0x8c,0x13, + 0x2c,0x62,0xff,0x01,0x13,0x2b,0x60,0xff,0x82,0x13,0x2a,0x5f,0xff,0x1c,0x14, + 0x2b,0x5f,0xff,0x15,0x2c,0x61,0xff,0x16,0x2d,0x62,0xff,0x16,0x2e,0x63,0xff, + 0x17,0x2e,0x64,0xff,0x18,0x2f,0x65,0xff,0x18,0x30,0x66,0xff,0x19,0x31,0x66, + 0xff,0x1a,0x32,0x67,0xff,0x1b,0x32,0x68,0xff,0x1b,0x33,0x69,0xff,0x1b,0x34, + 0x6a,0xff,0x1c,0x35,0x6b,0xff,0x1c,0x36,0x6c,0xff,0x1d,0x36,0x6d,0xff,0x1e, + 0x37,0x6e,0xff,0x1f,0x38,0x6f,0xff,0x1f,0x39,0x70,0xff,0x20,0x39,0x71,0xff, + 0x21,0x3a,0x72,0xff,0x22,0x3b,0x73,0xff,0x22,0x3c,0x74,0xff,0x23,0x3d,0x74, + 0xff,0x24,0x3d,0x75,0xff,0x25,0x3e,0x76,0xff,0x25,0x3f,0x77,0xff,0x26,0x40, + 0x79,0xff,0x27,0x41,0x7a,0xff,0x82,0x28,0x42,0x7b,0xff,0x27,0x29,0x43,0x7c, + 0xff,0x2a,0x44,0x7d,0xff,0x2b,0x45,0x7e,0xff,0x2b,0x45,0x7f,0xff,0x2c,0x45, + 0x80,0xff,0x2d,0x46,0x81,0xff,0x2e,0x47,0x82,0xff,0x2e,0x48,0x83,0xff,0x2f, + 0x48,0x84,0xff,0x30,0x49,0x85,0xff,0x30,0x4a,0x86,0xff,0x31,0x4b,0x87,0xff, + 0x32,0x4c,0x88,0xff,0x33,0x4c,0x89,0xff,0x33,0x4d,0x8a,0xff,0x35,0x4e,0x8b, + 0xff,0x35,0x4f,0x8c,0xff,0x36,0x50,0x8d,0xff,0x37,0x51,0x8e,0xff,0x37,0x52, + 0x8f,0xff,0x38,0x52,0x90,0xff,0x39,0x53,0x91,0xff,0x3a,0x54,0x92,0xff,0x3a, + 0x55,0x93,0xff,0x3b,0x56,0x94,0xff,0x3c,0x56,0x94,0xff,0x3d,0x57,0x95,0xff, + 0x3d,0x58,0x96,0xff,0x3e,0x59,0x97,0xff,0x3f,0x59,0x98,0xff,0x3f,0x5a,0x99, + 0xff,0x40,0x5b,0x9a,0xff,0x41,0x5c,0x9b,0xff,0x42,0x5d,0x9c,0xff,0x42,0x5d, + 0x9d,0xff,0x43,0x5e,0x9e,0xff,0x44,0x5f,0x9f,0xff,0x01,0x02,0x03,0xff,0x00, + 0x01,0x02,0xff,0x83,0x12,0x29,0x5d,0xff,0x02,0x12,0x2a,0x5f,0xff,0x13,0x2b, + 0x61,0xff,0x8c,0x13,0x2c,0x62,0xff,0x49,0x13,0x2b,0x60,0xff,0x12,0x29,0x5e, + 0xff,0x12,0x29,0x5d,0xff,0x13,0x2a,0x5e,0xff,0x13,0x2b,0x5f,0xff,0x15,0x2c, + 0x60,0xff,0x15,0x2d,0x61,0xff,0x16,0x2d,0x62,0xff,0x17,0x2e,0x63,0xff,0x17, + 0x2f,0x64,0xff,0x18,0x30,0x65,0xff,0x19,0x31,0x66,0xff,0x1a,0x31,0x67,0xff, + 0x1a,0x32,0x68,0xff,0x1b,0x33,0x69,0xff,0x1b,0x34,0x6a,0xff,0x1c,0x35,0x6b, + 0xff,0x1c,0x35,0x6c,0xff,0x1d,0x36,0x6d,0xff,0x1e,0x37,0x6e,0xff,0x1e,0x38, + 0x6f,0xff,0x1f,0x38,0x6f,0xff,0x20,0x39,0x70,0xff,0x21,0x3a,0x71,0xff,0x21, + 0x3b,0x72,0xff,0x22,0x3c,0x73,0xff,0x23,0x3c,0x74,0xff,0x23,0x3d,0x75,0xff, + 0x24,0x3e,0x76,0xff,0x25,0x3f,0x77,0xff,0x26,0x40,0x78,0xff,0x27,0x41,0x79, + 0xff,0x29,0x43,0x7d,0xff,0x28,0x42,0x7b,0xff,0x29,0x43,0x7c,0xff,0x2a,0x44, + 0x7d,0xff,0x2a,0x44,0x7e,0xff,0x2b,0x45,0x7f,0xff,0x2c,0x45,0x80,0xff,0x2d, + 0x46,0x81,0xff,0x2d,0x47,0x82,0xff,0x2e,0x47,0x83,0xff,0x2f,0x48,0x84,0xff, + 0x2f,0x49,0x84,0xff,0x30,0x4a,0x85,0xff,0x31,0x4b,0x86,0xff,0x32,0x4b,0x87, + 0xff,0x32,0x4c,0x88,0xff,0x33,0x4d,0x89,0xff,0x34,0x4e,0x8a,0xff,0x35,0x4f, + 0x8c,0xff,0x36,0x50,0x8d,0xff,0x36,0x51,0x8e,0xff,0x37,0x51,0x8e,0xff,0x38, + 0x52,0x8f,0xff,0x39,0x53,0x90,0xff,0x39,0x54,0x91,0xff,0x3a,0x54,0x92,0xff, + 0x3b,0x55,0x93,0xff,0x3b,0x56,0x94,0xff,0x3c,0x57,0x95,0xff,0x3d,0x58,0x96, + 0xff,0x3e,0x58,0x97,0xff,0x3f,0x59,0x98,0xff,0x3f,0x5a,0x99,0xff,0x40,0x5b, + 0x9a,0xff,0x41,0x5c,0x9b,0xff,0x41,0x5c,0x9c,0xff,0x42,0x5d,0x9d,0xff,0x43, + 0x5e,0x9e,0xff,0x43,0x5f,0x9f,0xff,0x01,0x02,0x03,0xff,0x00,0x01,0x02,0xff, + 0x82,0x12,0x29,0x5d,0xff,0x02,0x13,0x2a,0x5f,0xff,0x13,0x2c,0x61,0xff,0x8c, + 0x13,0x2c,0x62,0xff,0x02,0x13,0x2b,0x60,0xff,0x12,0x29,0x5e,0xff,0x82,0x12, + 0x29,0x5d,0xff,0x0b,0x12,0x29,0x5e,0xff,0x13,0x2a,0x5f,0xff,0x14,0x2b,0x60, + 0xff,0x15,0x2c,0x61,0xff,0x16,0x2d,0x62,0xff,0x16,0x2e,0x63,0xff,0x17,0x2f, + 0x64,0xff,0x18,0x2f,0x65,0xff,0x19,0x30,0x66,0xff,0x19,0x31,0x67,0xff,0x1a, + 0x32,0x68,0xff,0x82,0x1b,0x33,0x69,0xff,0x3c,0x1b,0x34,0x6a,0xff,0x1c,0x35, + 0x6b,0xff,0x1d,0x36,0x6c,0xff,0x1d,0x36,0x6d,0xff,0x1e,0x37,0x6e,0xff,0x1f, + 0x38,0x6f,0xff,0x20,0x39,0x70,0xff,0x20,0x3a,0x71,0xff,0x21,0x3b,0x72,0xff, + 0x22,0x3b,0x73,0xff,0x23,0x3c,0x74,0xff,0x23,0x3d,0x75,0xff,0x24,0x3e,0x76, + 0xff,0x25,0x3e,0x77,0xff,0x26,0x3f,0x78,0xff,0x27,0x41,0x7b,0xff,0x29,0x43, + 0x7e,0xff,0x29,0x42,0x7c,0xff,0x28,0x42,0x7c,0xff,0x29,0x43,0x7d,0xff,0x2a, + 0x44,0x7e,0xff,0x2b,0x45,0x7f,0xff,0x2c,0x45,0x7f,0xff,0x2c,0x45,0x80,0xff, + 0x2d,0x46,0x81,0xff,0x2e,0x47,0x82,0xff,0x2e,0x48,0x83,0xff,0x2f,0x49,0x84, + 0xff,0x30,0x49,0x85,0xff,0x31,0x4a,0x86,0xff,0x31,0x4b,0x87,0xff,0x32,0x4c, + 0x88,0xff,0x33,0x4d,0x89,0xff,0x34,0x4d,0x8a,0xff,0x35,0x4f,0x8b,0xff,0x35, + 0x4f,0x8c,0xff,0x36,0x50,0x8d,0xff,0x37,0x51,0x8e,0xff,0x38,0x52,0x8f,0xff, + 0x38,0x53,0x90,0xff,0x39,0x53,0x91,0xff,0x3a,0x54,0x92,0xff,0x3b,0x55,0x93, + 0xff,0x3b,0x56,0x94,0xff,0x3c,0x56,0x95,0xff,0x3d,0x57,0x96,0xff,0x3d,0x58, + 0x97,0xff,0x3e,0x59,0x98,0xff,0x3f,0x5a,0x99,0xff,0x40,0x5a,0x99,0xff,0x40, + 0x5b,0x9a,0xff,0x41,0x5c,0x9b,0xff,0x42,0x5d,0x9c,0xff,0x43,0x5e,0x9d,0xff, + 0x43,0x5e,0x9e,0xff,0x01,0x02,0x03,0xff,0x00,0x01,0x02,0xff,0x12,0x29,0x5d, + 0xff,0x13,0x2a,0x60,0xff,0x13,0x2c,0x61,0xff,0x8c,0x13,0x2c,0x62,0xff,0x02, + 0x13,0x2b,0x60,0xff,0x12,0x29,0x5e,0xff,0x84,0x12,0x29,0x5d,0xff,0x46,0x13, + 0x2a,0x5e,0xff,0x14,0x2b,0x60,0xff,0x15,0x2c,0x61,0xff,0x15,0x2d,0x62,0xff, + 0x16,0x2e,0x63,0xff,0x17,0x2e,0x63,0xff,0x18,0x2f,0x64,0xff,0x18,0x30,0x65, + 0xff,0x19,0x31,0x66,0xff,0x1a,0x31,0x67,0xff,0x1b,0x32,0x68,0xff,0x1b,0x33, + 0x69,0xff,0x1b,0x34,0x6a,0xff,0x1c,0x35,0x6b,0xff,0x1c,0x35,0x6c,0xff,0x1d, + 0x36,0x6d,0xff,0x1e,0x37,0x6e,0xff,0x1f,0x38,0x6f,0xff,0x1f,0x39,0x70,0xff, + 0x20,0x39,0x71,0xff,0x21,0x3a,0x72,0xff,0x22,0x3b,0x73,0xff,0x22,0x3c,0x74, + 0xff,0x23,0x3d,0x74,0xff,0x24,0x3d,0x75,0xff,0x24,0x3e,0x76,0xff,0x25,0x3f, + 0x78,0xff,0x28,0x42,0x7c,0xff,0x2a,0x43,0x7e,0xff,0x29,0x43,0x7d,0xff,0x28, + 0x42,0x7b,0xff,0x29,0x43,0x7c,0xff,0x2a,0x44,0x7d,0xff,0x2b,0x45,0x7e,0xff, + 0x2b,0x45,0x7f,0xff,0x2c,0x45,0x80,0xff,0x2d,0x46,0x81,0xff,0x2d,0x47,0x82, + 0xff,0x2e,0x47,0x83,0xff,0x2f,0x48,0x84,0xff,0x30,0x49,0x85,0xff,0x30,0x4a, + 0x86,0xff,0x31,0x4b,0x87,0xff,0x32,0x4c,0x88,0xff,0x33,0x4c,0x89,0xff,0x33, + 0x4d,0x8a,0xff,0x34,0x4e,0x8b,0xff,0x35,0x4f,0x8c,0xff,0x36,0x50,0x8d,0xff, + 0x37,0x51,0x8e,0xff,0x37,0x51,0x8f,0xff,0x38,0x52,0x90,0xff,0x39,0x53,0x91, + 0xff,0x39,0x54,0x92,0xff,0x3a,0x55,0x93,0xff,0x3b,0x55,0x93,0xff,0x3c,0x56, + 0x94,0xff,0x3c,0x57,0x95,0xff,0x3d,0x58,0x96,0xff,0x3e,0x59,0x97,0xff,0x3f, + 0x59,0x98,0xff,0x3f,0x5a,0x99,0xff,0x40,0x5b,0x9a,0xff,0x41,0x5c,0x9b,0xff, + 0x42,0x5d,0x9c,0xff,0x42,0x5d,0x9d,0xff,0x43,0x5e,0x9e,0xff,0x01,0x02,0x03, + 0xff,0x00,0x01,0x02,0xff,0x13,0x2a,0x60,0xff,0x8d,0x13,0x2c,0x62,0xff,0x02, + 0x13,0x2b,0x60,0xff,0x12,0x29,0x5e,0xff,0x85,0x12,0x29,0x5d,0xff,0x45,0x13, + 0x2a,0x5e,0xff,0x14,0x2b,0x5f,0xff,0x14,0x2c,0x60,0xff,0x15,0x2d,0x61,0xff, + 0x16,0x2d,0x62,0xff,0x17,0x2e,0x63,0xff,0x17,0x2f,0x64,0xff,0x18,0x30,0x65, + 0xff,0x19,0x30,0x66,0xff,0x1a,0x31,0x67,0xff,0x1a,0x32,0x68,0xff,0x1b,0x33, + 0x69,0xff,0x1b,0x34,0x6a,0xff,0x1b,0x34,0x6b,0xff,0x1c,0x35,0x6c,0xff,0x1d, + 0x36,0x6d,0xff,0x1e,0x37,0x6d,0xff,0x1e,0x38,0x6e,0xff,0x1f,0x38,0x6f,0xff, + 0x20,0x39,0x70,0xff,0x21,0x3a,0x71,0xff,0x21,0x3b,0x72,0xff,0x22,0x3b,0x73, + 0xff,0x23,0x3c,0x74,0xff,0x23,0x3d,0x75,0xff,0x24,0x3e,0x76,0xff,0x26,0x40, + 0x79,0xff,0x29,0x42,0x7d,0xff,0x29,0x43,0x7e,0xff,0x2a,0x44,0x7e,0xff,0x29, + 0x42,0x7c,0xff,0x29,0x43,0x7c,0xff,0x29,0x43,0x7d,0xff,0x2a,0x44,0x7e,0xff, + 0x2b,0x45,0x7f,0xff,0x2c,0x45,0x80,0xff,0x2c,0x46,0x81,0xff,0x2d,0x46,0x82, + 0xff,0x2e,0x47,0x82,0xff,0x2f,0x48,0x83,0xff,0x2f,0x49,0x84,0xff,0x30,0x4a, + 0x85,0xff,0x31,0x4a,0x86,0xff,0x32,0x4b,0x87,0xff,0x32,0x4c,0x88,0xff,0x33, + 0x4d,0x8a,0xff,0x34,0x4e,0x8b,0xff,0x35,0x4f,0x8c,0xff,0x36,0x50,0x8d,0xff, + 0x36,0x50,0x8e,0xff,0x37,0x51,0x8e,0xff,0x38,0x52,0x8f,0xff,0x39,0x53,0x90, + 0xff,0x39,0x54,0x91,0xff,0x3a,0x54,0x92,0xff,0x3b,0x55,0x93,0xff,0x3b,0x56, + 0x94,0xff,0x3c,0x57,0x95,0xff,0x3d,0x58,0x96,0xff,0x3e,0x58,0x97,0xff,0x3e, + 0x59,0x98,0xff,0x3f,0x5a,0x99,0xff,0x40,0x5b,0x9a,0xff,0x40,0x5b,0x9b,0xff, + 0x41,0x5c,0x9c,0xff,0x42,0x5d,0x9d,0xff,0x43,0x5e,0x9e,0xff,0x01,0x02,0x03, + 0xff,0x00,0x01,0x02,0xff,0x8d,0x13,0x2c,0x62,0xff,0x02,0x13,0x2b,0x60,0xff, + 0x12,0x29,0x5e,0xff,0x86,0x12,0x29,0x5d,0xff,0x45,0x13,0x29,0x5e,0xff,0x14, + 0x2b,0x5f,0xff,0x14,0x2b,0x60,0xff,0x15,0x2c,0x61,0xff,0x16,0x2d,0x62,0xff, + 0x16,0x2e,0x63,0xff,0x17,0x2f,0x64,0xff,0x18,0x2f,0x65,0xff,0x19,0x30,0x66, + 0xff,0x19,0x31,0x67,0xff,0x1a,0x32,0x67,0xff,0x1b,0x32,0x68,0xff,0x1b,0x33, + 0x69,0xff,0x1b,0x34,0x6a,0xff,0x1c,0x35,0x6b,0xff,0x1d,0x36,0x6c,0xff,0x1e, + 0x36,0x6d,0xff,0x1e,0x37,0x6e,0xff,0x1f,0x38,0x6f,0xff,0x20,0x39,0x70,0xff, + 0x20,0x3a,0x71,0xff,0x21,0x3a,0x72,0xff,0x22,0x3b,0x73,0xff,0x22,0x3c,0x74, + 0xff,0x23,0x3d,0x75,0xff,0x24,0x3e,0x76,0xff,0x27,0x41,0x7b,0xff,0x28,0x42, + 0x7d,0xff,0x29,0x43,0x7d,0xff,0x2a,0x44,0x7e,0xff,0x29,0x43,0x7d,0xff,0x28, + 0x42,0x7c,0xff,0x29,0x43,0x7c,0xff,0x2a,0x44,0x7d,0xff,0x2b,0x45,0x7e,0xff, + 0x2b,0x45,0x7f,0xff,0x2c,0x45,0x80,0xff,0x2d,0x46,0x81,0xff,0x2e,0x47,0x82, + 0xff,0x2e,0x48,0x83,0xff,0x2f,0x49,0x84,0xff,0x30,0x49,0x85,0xff,0x31,0x4a, + 0x86,0xff,0x31,0x4b,0x87,0xff,0x32,0x4c,0x88,0xff,0x33,0x4c,0x89,0xff,0x34, + 0x4e,0x8a,0xff,0x35,0x4f,0x8b,0xff,0x35,0x4f,0x8c,0xff,0x36,0x50,0x8d,0xff, + 0x37,0x51,0x8e,0xff,0x38,0x52,0x8f,0xff,0x38,0x53,0x90,0xff,0x39,0x53,0x91, + 0xff,0x3a,0x54,0x92,0xff,0x3a,0x55,0x93,0xff,0x3b,0x56,0x94,0xff,0x3c,0x57, + 0x95,0xff,0x3d,0x57,0x96,0xff,0x3d,0x58,0x97,0xff,0x3e,0x59,0x97,0xff,0x3f, + 0x5a,0x98,0xff,0x40,0x5a,0x99,0xff,0x40,0x5b,0x9a,0xff,0x41,0x5c,0x9b,0xff, + 0x42,0x5d,0x9c,0xff,0x42,0x5e,0x9d,0xff,0x01,0x02,0x03,0xff,0x00,0x01,0x02, + 0xff,0x8c,0x13,0x2c,0x62,0xff,0x02,0x13,0x2b,0x60,0xff,0x12,0x29,0x5e,0xff, + 0x88,0x12,0x29,0x5d,0xff,0x1e,0x13,0x2a,0x5f,0xff,0x14,0x2b,0x60,0xff,0x15, + 0x2c,0x61,0xff,0x15,0x2d,0x62,0xff,0x16,0x2d,0x62,0xff,0x17,0x2e,0x63,0xff, + 0x18,0x2f,0x64,0xff,0x18,0x30,0x65,0xff,0x19,0x31,0x66,0xff,0x1a,0x31,0x67, + 0xff,0x1b,0x32,0x68,0xff,0x1b,0x33,0x69,0xff,0x1b,0x34,0x6a,0xff,0x1c,0x35, + 0x6b,0xff,0x1c,0x35,0x6c,0xff,0x1d,0x36,0x6d,0xff,0x1e,0x37,0x6e,0xff,0x1f, + 0x38,0x6f,0xff,0x1f,0x38,0x70,0xff,0x20,0x39,0x71,0xff,0x21,0x3a,0x71,0xff, + 0x21,0x3b,0x72,0xff,0x22,0x3c,0x73,0xff,0x23,0x3c,0x74,0xff,0x24,0x3e,0x77, + 0xff,0x27,0x41,0x7b,0xff,0x28,0x42,0x7c,0xff,0x29,0x43,0x7d,0xff,0x2a,0x43, + 0x7e,0xff,0x2a,0x44,0x7e,0xff,0x82,0x29,0x43,0x7c,0xff,0x24,0x29,0x44,0x7d, + 0xff,0x2a,0x45,0x7e,0xff,0x2b,0x45,0x7f,0xff,0x2c,0x45,0x80,0xff,0x2d,0x46, + 0x81,0xff,0x2d,0x47,0x82,0xff,0x2e,0x48,0x83,0xff,0x2f,0x48,0x84,0xff,0x30, + 0x49,0x85,0xff,0x30,0x4a,0x86,0xff,0x31,0x4b,0x87,0xff,0x32,0x4b,0x88,0xff, + 0x33,0x4c,0x88,0xff,0x34,0x4e,0x8a,0xff,0x34,0x4e,0x8b,0xff,0x35,0x4f,0x8c, + 0xff,0x36,0x50,0x8d,0xff,0x37,0x51,0x8e,0xff,0x37,0x51,0x8f,0xff,0x38,0x52, + 0x90,0xff,0x39,0x53,0x91,0xff,0x39,0x54,0x91,0xff,0x3a,0x55,0x92,0xff,0x3b, + 0x55,0x93,0xff,0x3c,0x56,0x94,0xff,0x3c,0x57,0x95,0xff,0x3d,0x58,0x96,0xff, + 0x3e,0x59,0x97,0xff,0x3e,0x59,0x98,0xff,0x3f,0x5a,0x99,0xff,0x40,0x5b,0x9a, + 0xff,0x41,0x5c,0x9b,0xff,0x41,0x5c,0x9c,0xff,0x42,0x5d,0x9d,0xff,0x01,0x02, + 0x03,0xff,0x00,0x01,0x02,0xff,0x8b,0x13,0x2c,0x62,0xff,0x02,0x13,0x2b,0x61, + 0xff,0x12,0x29,0x5e,0xff,0x89,0x12,0x29,0x5d,0xff,0x44,0x13,0x2a,0x5e,0xff, + 0x14,0x2b,0x5f,0xff,0x14,0x2c,0x60,0xff,0x15,0x2c,0x61,0xff,0x16,0x2d,0x62, + 0xff,0x17,0x2e,0x63,0xff,0x17,0x2f,0x64,0xff,0x18,0x30,0x65,0xff,0x19,0x30, + 0x66,0xff,0x1a,0x31,0x67,0xff,0x1a,0x32,0x68,0xff,0x1b,0x33,0x69,0xff,0x1b, + 0x34,0x6a,0xff,0x1b,0x34,0x6b,0xff,0x1c,0x35,0x6c,0xff,0x1d,0x36,0x6c,0xff, + 0x1e,0x37,0x6d,0xff,0x1e,0x37,0x6e,0xff,0x1f,0x38,0x6f,0xff,0x20,0x39,0x70, + 0xff,0x21,0x3a,0x71,0xff,0x21,0x3b,0x72,0xff,0x22,0x3b,0x73,0xff,0x23,0x3c, + 0x74,0xff,0x25,0x3f,0x79,0xff,0x27,0x41,0x7b,0xff,0x28,0x41,0x7c,0xff,0x29, + 0x42,0x7d,0xff,0x29,0x43,0x7e,0xff,0x2a,0x44,0x7f,0xff,0x29,0x43,0x7d,0xff, + 0x28,0x43,0x7c,0xff,0x29,0x43,0x7d,0xff,0x2a,0x44,0x7e,0xff,0x2b,0x45,0x7f, + 0xff,0x2c,0x45,0x80,0xff,0x2c,0x46,0x81,0xff,0x2d,0x46,0x82,0xff,0x2e,0x47, + 0x82,0xff,0x2f,0x48,0x83,0xff,0x2f,0x49,0x84,0xff,0x30,0x4a,0x85,0xff,0x31, + 0x4a,0x86,0xff,0x31,0x4b,0x87,0xff,0x32,0x4c,0x88,0xff,0x33,0x4d,0x8a,0xff, + 0x34,0x4e,0x8b,0xff,0x35,0x4f,0x8c,0xff,0x36,0x50,0x8c,0xff,0x36,0x50,0x8d, + 0xff,0x37,0x51,0x8e,0xff,0x38,0x52,0x8f,0xff,0x38,0x53,0x90,0xff,0x39,0x54, + 0x91,0xff,0x3a,0x54,0x92,0xff,0x3b,0x55,0x93,0xff,0x3b,0x56,0x94,0xff,0x3c, + 0x57,0x95,0xff,0x3d,0x57,0x96,0xff,0x3e,0x58,0x97,0xff,0x3e,0x59,0x98,0xff, + 0x3f,0x5a,0x99,0xff,0x40,0x5b,0x9a,0xff,0x40,0x5b,0x9b,0xff,0x41,0x5c,0x9c, + 0xff,0x42,0x5d,0x9c,0xff,0x01,0x02,0x03,0xff,0x00,0x01,0x02,0xff,0x8a,0x13, + 0x2c,0x62,0xff,0x02,0x13,0x2b,0x61,0xff,0x12,0x2a,0x5e,0xff,0x8a,0x12,0x29, + 0x5d,0xff,0x1d,0x13,0x2a,0x5e,0xff,0x13,0x2a,0x5f,0xff,0x14,0x2b,0x60,0xff, + 0x15,0x2c,0x61,0xff,0x16,0x2d,0x62,0xff,0x16,0x2e,0x63,0xff,0x17,0x2e,0x64, + 0xff,0x18,0x2f,0x65,0xff,0x18,0x30,0x66,0xff,0x19,0x31,0x66,0xff,0x1a,0x32, + 0x67,0xff,0x1b,0x32,0x68,0xff,0x1b,0x33,0x69,0xff,0x1b,0x34,0x6a,0xff,0x1c, + 0x35,0x6b,0xff,0x1d,0x36,0x6c,0xff,0x1d,0x36,0x6d,0xff,0x1e,0x37,0x6e,0xff, + 0x1f,0x38,0x6f,0xff,0x1f,0x39,0x70,0xff,0x20,0x3a,0x71,0xff,0x21,0x3a,0x72, + 0xff,0x22,0x3b,0x73,0xff,0x23,0x3d,0x75,0xff,0x26,0x40,0x79,0xff,0x27,0x40, + 0x7b,0xff,0x28,0x41,0x7b,0xff,0x28,0x42,0x7c,0xff,0x29,0x43,0x7d,0xff,0x82, + 0x2a,0x44,0x7e,0xff,0x82,0x29,0x43,0x7c,0xff,0x23,0x2a,0x44,0x7d,0xff,0x2a, + 0x44,0x7e,0xff,0x2b,0x45,0x7f,0xff,0x2c,0x45,0x80,0xff,0x2d,0x46,0x81,0xff, + 0x2d,0x47,0x82,0xff,0x2e,0x48,0x83,0xff,0x2f,0x49,0x84,0xff,0x30,0x49,0x85, + 0xff,0x30,0x4a,0x86,0xff,0x31,0x4b,0x87,0xff,0x32,0x4c,0x88,0xff,0x33,0x4d, + 0x89,0xff,0x34,0x4e,0x8a,0xff,0x34,0x4f,0x8b,0xff,0x35,0x4f,0x8c,0xff,0x36, + 0x50,0x8d,0xff,0x37,0x51,0x8e,0xff,0x37,0x52,0x8f,0xff,0x38,0x52,0x90,0xff, + 0x39,0x53,0x91,0xff,0x3a,0x54,0x92,0xff,0x3a,0x55,0x93,0xff,0x3b,0x56,0x94, + 0xff,0x3c,0x56,0x95,0xff,0x3d,0x57,0x95,0xff,0x3d,0x58,0x97,0xff,0x3e,0x59, + 0x97,0xff,0x3f,0x59,0x98,0xff,0x3f,0x5a,0x99,0xff,0x40,0x5b,0x9a,0xff,0x41, + 0x5c,0x9b,0xff,0x42,0x5d,0x9c,0xff,0x01,0x02,0x03,0xff,0x00,0x01,0x02,0xff, + 0x89,0x13,0x2c,0x62,0xff,0x02,0x13,0x2b,0x61,0xff,0x12,0x2a,0x5e,0xff,0x8b, + 0x12,0x29,0x5d,0xff,0x44,0x12,0x29,0x5e,0xff,0x13,0x2a,0x5f,0xff,0x14,0x2b, + 0x60,0xff,0x15,0x2c,0x60,0xff,0x15,0x2d,0x61,0xff,0x16,0x2d,0x62,0xff,0x17, + 0x2e,0x63,0xff,0x17,0x2f,0x64,0xff,0x18,0x30,0x65,0xff,0x19,0x31,0x66,0xff, + 0x1a,0x31,0x67,0xff,0x1a,0x32,0x68,0xff,0x1b,0x33,0x69,0xff,0x1b,0x34,0x6a, + 0xff,0x1c,0x35,0x6b,0xff,0x1c,0x35,0x6c,0xff,0x1d,0x36,0x6d,0xff,0x1e,0x37, + 0x6e,0xff,0x1f,0x38,0x6f,0xff,0x1f,0x38,0x70,0xff,0x20,0x39,0x70,0xff,0x21, + 0x3a,0x71,0xff,0x21,0x3b,0x72,0xff,0x24,0x3e,0x77,0xff,0x26,0x3f,0x79,0xff, + 0x27,0x40,0x7a,0xff,0x27,0x41,0x7b,0xff,0x28,0x42,0x7c,0xff,0x29,0x42,0x7d, + 0xff,0x29,0x43,0x7e,0xff,0x2a,0x44,0x7f,0xff,0x2a,0x44,0x7e,0xff,0x29,0x43, + 0x7c,0xff,0x29,0x43,0x7d,0xff,0x2a,0x44,0x7e,0xff,0x2b,0x45,0x7f,0xff,0x2c, + 0x45,0x80,0xff,0x2c,0x46,0x81,0xff,0x2d,0x47,0x82,0xff,0x2e,0x47,0x83,0xff, + 0x2f,0x48,0x84,0xff,0x2f,0x49,0x85,0xff,0x30,0x4a,0x85,0xff,0x31,0x4b,0x86, + 0xff,0x32,0x4c,0x87,0xff,0x33,0x4d,0x89,0xff,0x34,0x4d,0x8a,0xff,0x34,0x4e, + 0x8b,0xff,0x35,0x4f,0x8c,0xff,0x36,0x50,0x8d,0xff,0x36,0x51,0x8e,0xff,0x37, + 0x51,0x8e,0xff,0x38,0x52,0x8f,0xff,0x39,0x53,0x90,0xff,0x39,0x54,0x91,0xff, + 0x3a,0x54,0x92,0xff,0x3b,0x55,0x93,0xff,0x3c,0x56,0x94,0xff,0x3c,0x57,0x95, + 0xff,0x3d,0x58,0x96,0xff,0x3e,0x58,0x97,0xff,0x3e,0x59,0x98,0xff,0x3f,0x5a, + 0x99,0xff,0x40,0x5b,0x9a,0xff,0x41,0x5c,0x9b,0xff,0x41,0x5c,0x9c,0xff,0x01, + 0x02,0x03,0xff,0x00,0x01,0x02,0xff,0x88,0x13,0x2c,0x62,0xff,0x02,0x13,0x2c, + 0x61,0xff,0x12,0x2a,0x5e,0xff,0x8d,0x12,0x29,0x5d,0xff,0x1d,0x13,0x2a,0x5e, + 0xff,0x14,0x2b,0x5f,0xff,0x14,0x2c,0x60,0xff,0x15,0x2c,0x61,0xff,0x16,0x2d, + 0x62,0xff,0x17,0x2e,0x63,0xff,0x17,0x2f,0x64,0xff,0x18,0x2f,0x65,0xff,0x19, + 0x30,0x66,0xff,0x19,0x31,0x67,0xff,0x1a,0x32,0x68,0xff,0x1b,0x33,0x69,0xff, + 0x1b,0x33,0x6a,0xff,0x1b,0x34,0x6a,0xff,0x1c,0x35,0x6b,0xff,0x1d,0x36,0x6c, + 0xff,0x1d,0x36,0x6d,0xff,0x1e,0x37,0x6e,0xff,0x1f,0x38,0x6f,0xff,0x20,0x39, + 0x70,0xff,0x20,0x3a,0x71,0xff,0x22,0x3b,0x73,0xff,0x25,0x3e,0x78,0xff,0x26, + 0x3f,0x79,0xff,0x26,0x40,0x7a,0xff,0x27,0x41,0x7b,0xff,0x28,0x41,0x7c,0xff, + 0x29,0x42,0x7d,0xff,0x29,0x43,0x7e,0xff,0x82,0x2a,0x44,0x7f,0xff,0x82,0x29, + 0x43,0x7d,0xff,0x22,0x2a,0x44,0x7e,0xff,0x2b,0x45,0x7f,0xff,0x2c,0x45,0x80, + 0xff,0x2c,0x46,0x80,0xff,0x2d,0x46,0x81,0xff,0x2e,0x47,0x82,0xff,0x2e,0x48, + 0x83,0xff,0x2f,0x49,0x84,0xff,0x30,0x4a,0x85,0xff,0x31,0x4a,0x86,0xff,0x32, + 0x4c,0x87,0xff,0x33,0x4c,0x89,0xff,0x33,0x4d,0x89,0xff,0x34,0x4e,0x8a,0xff, + 0x35,0x4f,0x8b,0xff,0x35,0x4f,0x8c,0xff,0x36,0x50,0x8d,0xff,0x37,0x51,0x8e, + 0xff,0x38,0x52,0x8f,0xff,0x38,0x53,0x90,0xff,0x39,0x53,0x91,0xff,0x3a,0x54, + 0x92,0xff,0x3b,0x55,0x93,0xff,0x3b,0x56,0x94,0xff,0x3c,0x57,0x95,0xff,0x3d, + 0x57,0x96,0xff,0x3d,0x58,0x97,0xff,0x3e,0x59,0x98,0xff,0x3f,0x5a,0x99,0xff, + 0x40,0x5a,0x99,0xff,0x40,0x5b,0x9a,0xff,0x41,0x5c,0x9b,0xff,0x01,0x02,0x03, + 0xff,0x00,0x01,0x02,0xff,0x87,0x13,0x2c,0x62,0xff,0x02,0x13,0x2c,0x61,0xff, + 0x12,0x2a,0x5e,0xff,0x8e,0x12,0x29,0x5d,0xff,0x1e,0x13,0x2a,0x5e,0xff,0x13, + 0x2a,0x5f,0xff,0x14,0x2b,0x60,0xff,0x15,0x2c,0x61,0xff,0x16,0x2d,0x62,0xff, + 0x16,0x2e,0x63,0xff,0x17,0x2e,0x63,0xff,0x18,0x2f,0x64,0xff,0x18,0x30,0x65, + 0xff,0x19,0x31,0x66,0xff,0x1a,0x32,0x67,0xff,0x1b,0x32,0x68,0xff,0x1b,0x33, + 0x69,0xff,0x1b,0x34,0x6a,0xff,0x1c,0x35,0x6b,0xff,0x1c,0x35,0x6c,0xff,0x1d, + 0x36,0x6d,0xff,0x1e,0x37,0x6e,0xff,0x1f,0x38,0x6f,0xff,0x1f,0x39,0x70,0xff, + 0x20,0x39,0x71,0xff,0x23,0x3c,0x75,0xff,0x25,0x3e,0x78,0xff,0x25,0x3f,0x78, + 0xff,0x26,0x40,0x7a,0xff,0x27,0x40,0x7a,0xff,0x27,0x41,0x7b,0xff,0x28,0x42, + 0x7c,0xff,0x29,0x43,0x7d,0xff,0x2a,0x43,0x7e,0xff,0x82,0x2a,0x44,0x7f,0xff, + 0x23,0x29,0x43,0x7d,0xff,0x2a,0x44,0x7d,0xff,0x2a,0x44,0x7e,0xff,0x2b,0x45, + 0x7f,0xff,0x2c,0x45,0x80,0xff,0x2d,0x46,0x81,0xff,0x2e,0x47,0x82,0xff,0x2e, + 0x48,0x83,0xff,0x2f,0x48,0x84,0xff,0x30,0x49,0x85,0xff,0x30,0x4a,0x86,0xff, + 0x32,0x4b,0x87,0xff,0x32,0x4c,0x88,0xff,0x33,0x4d,0x89,0xff,0x34,0x4e,0x8a, + 0xff,0x34,0x4e,0x8b,0xff,0x35,0x4f,0x8c,0xff,0x36,0x50,0x8d,0xff,0x37,0x51, + 0x8e,0xff,0x37,0x52,0x8f,0xff,0x38,0x52,0x90,0xff,0x39,0x53,0x91,0xff,0x3a, + 0x54,0x92,0xff,0x3a,0x55,0x93,0xff,0x3b,0x56,0x94,0xff,0x3c,0x56,0x95,0xff, + 0x3c,0x57,0x95,0xff,0x3d,0x58,0x96,0xff,0x3e,0x59,0x97,0xff,0x3f,0x59,0x98, + 0xff,0x3f,0x5a,0x99,0xff,0x40,0x5b,0x9a,0xff,0x41,0x5c,0x9b,0xff,0x01,0x02, + 0x03,0xff,0x00,0x01,0x02,0xff,0x86,0x13,0x2c,0x62,0xff,0x02,0x13,0x2c,0x61, + 0xff,0x12,0x2a,0x5e,0xff,0x8f,0x12,0x29,0x5d,0xff,0x43,0x12,0x29,0x5e,0xff, + 0x13,0x2a,0x5e,0xff,0x14,0x2b,0x5f,0xff,0x15,0x2c,0x60,0xff,0x15,0x2d,0x61, + 0xff,0x16,0x2d,0x62,0xff,0x17,0x2e,0x63,0xff,0x17,0x2f,0x64,0xff,0x18,0x30, + 0x65,0xff,0x19,0x31,0x66,0xff,0x1a,0x31,0x67,0xff,0x1a,0x32,0x68,0xff,0x1b, + 0x33,0x69,0xff,0x1b,0x34,0x6a,0xff,0x1c,0x34,0x6b,0xff,0x1c,0x35,0x6c,0xff, + 0x1d,0x36,0x6d,0xff,0x1e,0x37,0x6d,0xff,0x1e,0x37,0x6e,0xff,0x1f,0x38,0x6f, + 0xff,0x20,0x39,0x71,0xff,0x24,0x3d,0x76,0xff,0x24,0x3e,0x77,0xff,0x25,0x3e, + 0x78,0xff,0x26,0x3f,0x79,0xff,0x27,0x40,0x7a,0xff,0x27,0x41,0x7b,0xff,0x28, + 0x42,0x7c,0xff,0x29,0x42,0x7d,0xff,0x29,0x43,0x7e,0xff,0x2a,0x44,0x7f,0xff, + 0x2b,0x45,0x80,0xff,0x2a,0x44,0x7f,0xff,0x29,0x43,0x7d,0xff,0x2a,0x44,0x7e, + 0xff,0x2b,0x45,0x7f,0xff,0x2c,0x45,0x80,0xff,0x2c,0x46,0x81,0xff,0x2d,0x47, + 0x82,0xff,0x2e,0x47,0x83,0xff,0x2f,0x48,0x83,0xff,0x2f,0x49,0x84,0xff,0x30, + 0x4a,0x85,0xff,0x31,0x4a,0x86,0xff,0x32,0x4c,0x88,0xff,0x33,0x4d,0x89,0xff, + 0x33,0x4d,0x8a,0xff,0x34,0x4e,0x8b,0xff,0x35,0x4f,0x8c,0xff,0x36,0x50,0x8d, + 0xff,0x36,0x51,0x8e,0xff,0x37,0x51,0x8e,0xff,0x38,0x52,0x8f,0xff,0x38,0x53, + 0x90,0xff,0x39,0x54,0x91,0xff,0x3a,0x54,0x92,0xff,0x3b,0x55,0x93,0xff,0x3b, + 0x56,0x94,0xff,0x3c,0x57,0x95,0xff,0x3d,0x58,0x96,0xff,0x3e,0x58,0x97,0xff, + 0x3e,0x59,0x98,0xff,0x3f,0x5a,0x99,0xff,0x40,0x5b,0x9a,0xff,0x41,0x5c,0x9b, + 0xff,0x01,0x02,0x03,0xff,0x00,0x01,0x02,0xff,0x85,0x13,0x2c,0x62,0xff,0x02, + 0x13,0x2c,0x61,0xff,0x12,0x2a,0x5e,0xff,0x91,0x12,0x29,0x5d,0xff,0x42,0x13, + 0x2a,0x5e,0xff,0x13,0x2b,0x5f,0xff,0x14,0x2b,0x60,0xff,0x15,0x2c,0x61,0xff, + 0x16,0x2d,0x62,0xff,0x16,0x2e,0x63,0xff,0x17,0x2f,0x64,0xff,0x18,0x2f,0x65, + 0xff,0x19,0x30,0x66,0xff,0x19,0x31,0x67,0xff,0x1a,0x32,0x68,0xff,0x1b,0x32, + 0x68,0xff,0x1b,0x33,0x69,0xff,0x1b,0x34,0x6a,0xff,0x1c,0x35,0x6b,0xff,0x1d, + 0x36,0x6c,0xff,0x1d,0x36,0x6d,0xff,0x1e,0x37,0x6e,0xff,0x1f,0x38,0x6f,0xff, + 0x21,0x3a,0x72,0xff,0x23,0x3d,0x76,0xff,0x24,0x3d,0x77,0xff,0x25,0x3e,0x78, + 0xff,0x25,0x3f,0x79,0xff,0x26,0x40,0x7a,0xff,0x27,0x41,0x7b,0xff,0x28,0x41, + 0x7c,0xff,0x28,0x42,0x7d,0xff,0x29,0x43,0x7d,0xff,0x2a,0x44,0x7e,0xff,0x2b, + 0x44,0x7f,0xff,0x2b,0x45,0x80,0xff,0x2a,0x44,0x7e,0xff,0x2a,0x44,0x7d,0xff, + 0x2b,0x45,0x7e,0xff,0x2b,0x45,0x7f,0xff,0x2c,0x45,0x80,0xff,0x2d,0x46,0x81, + 0xff,0x2e,0x47,0x82,0xff,0x2e,0x48,0x83,0xff,0x2f,0x49,0x84,0xff,0x30,0x49, + 0x85,0xff,0x31,0x4a,0x86,0xff,0x32,0x4b,0x88,0xff,0x32,0x4c,0x89,0xff,0x33, + 0x4d,0x89,0xff,0x34,0x4e,0x8a,0xff,0x35,0x4f,0x8b,0xff,0x35,0x4f,0x8c,0xff, + 0x36,0x50,0x8d,0xff,0x37,0x51,0x8e,0xff,0x38,0x52,0x8f,0xff,0x38,0x53,0x90, + 0xff,0x39,0x53,0x91,0xff,0x3a,0x54,0x92,0xff,0x3a,0x55,0x93,0xff,0x3b,0x56, + 0x94,0xff,0x3c,0x56,0x95,0xff,0x3d,0x57,0x96,0xff,0x3d,0x58,0x97,0xff,0x3e, + 0x59,0x98,0xff,0x3f,0x5a,0x99,0xff,0x40,0x5a,0x99,0xff,0x40,0x5b,0x9a,0xff, + 0x01,0x02,0x03,0xff,0x00,0x01,0x02,0xff,0x85,0x13,0x2c,0x62,0xff,0x01,0x12, + 0x2a,0x5f,0xff,0x92,0x12,0x29,0x5d,0xff,0x42,0x12,0x2a,0x5e,0xff,0x13,0x2a, + 0x5f,0xff,0x14,0x2b,0x60,0xff,0x15,0x2c,0x61,0xff,0x15,0x2d,0x62,0xff,0x16, + 0x2e,0x62,0xff,0x17,0x2e,0x63,0xff,0x18,0x2f,0x64,0xff,0x18,0x30,0x65,0xff, + 0x19,0x31,0x66,0xff,0x1a,0x31,0x67,0xff,0x1a,0x32,0x68,0xff,0x1b,0x33,0x69, + 0xff,0x1b,0x34,0x6a,0xff,0x1c,0x35,0x6b,0xff,0x1c,0x35,0x6c,0xff,0x1d,0x36, + 0x6d,0xff,0x1e,0x37,0x6e,0xff,0x1f,0x38,0x6f,0xff,0x22,0x3b,0x74,0xff,0x23, + 0x3c,0x76,0xff,0x24,0x3d,0x77,0xff,0x25,0x3e,0x78,0xff,0x25,0x3f,0x79,0xff, + 0x26,0x3f,0x79,0xff,0x27,0x40,0x7a,0xff,0x27,0x41,0x7b,0xff,0x28,0x42,0x7c, + 0xff,0x29,0x43,0x7d,0xff,0x2a,0x43,0x7e,0xff,0x2a,0x44,0x7f,0xff,0x2b,0x45, + 0x80,0xff,0x2c,0x46,0x80,0xff,0x2b,0x45,0x7e,0xff,0x2a,0x44,0x7e,0xff,0x2b, + 0x45,0x7f,0xff,0x2c,0x45,0x80,0xff,0x2d,0x46,0x81,0xff,0x2d,0x47,0x82,0xff, + 0x2e,0x48,0x83,0xff,0x2f,0x48,0x84,0xff,0x30,0x49,0x85,0xff,0x30,0x4a,0x86, + 0xff,0x31,0x4b,0x87,0xff,0x32,0x4c,0x88,0xff,0x33,0x4d,0x89,0xff,0x34,0x4e, + 0x8a,0xff,0x34,0x4e,0x8b,0xff,0x35,0x4f,0x8c,0xff,0x36,0x50,0x8d,0xff,0x37, + 0x51,0x8e,0xff,0x37,0x52,0x8f,0xff,0x38,0x52,0x90,0xff,0x39,0x53,0x91,0xff, + 0x39,0x54,0x92,0xff,0x3a,0x55,0x92,0xff,0x3b,0x55,0x93,0xff,0x3c,0x56,0x94, + 0xff,0x3c,0x57,0x95,0xff,0x3d,0x58,0x96,0xff,0x3e,0x58,0x97,0xff,0x3f,0x59, + 0x98,0xff,0x3f,0x5a,0x99,0xff,0x40,0x5b,0x9a,0xff,0x01,0x02,0x03,0xff,0x00, + 0x01,0x02,0xff,0x84,0x13,0x2c,0x62,0xff,0x01,0x12,0x2a,0x5f,0xff,0x94,0x12, + 0x29,0x5d,0xff,0x21,0x13,0x2a,0x5e,0xff,0x14,0x2b,0x5f,0xff,0x14,0x2c,0x60, + 0xff,0x15,0x2d,0x61,0xff,0x16,0x2d,0x62,0xff,0x17,0x2e,0x63,0xff,0x17,0x2f, + 0x64,0xff,0x18,0x30,0x65,0xff,0x19,0x30,0x66,0xff,0x1a,0x31,0x67,0xff,0x1a, + 0x32,0x68,0xff,0x1b,0x33,0x69,0xff,0x1b,0x34,0x6a,0xff,0x1b,0x34,0x6b,0xff, + 0x1c,0x35,0x6c,0xff,0x1d,0x36,0x6c,0xff,0x1e,0x37,0x6d,0xff,0x20,0x39,0x70, + 0xff,0x22,0x3b,0x74,0xff,0x23,0x3c,0x75,0xff,0x23,0x3d,0x76,0xff,0x24,0x3e, + 0x77,0xff,0x25,0x3e,0x78,0xff,0x26,0x3f,0x79,0xff,0x26,0x40,0x7a,0xff,0x27, + 0x41,0x7b,0xff,0x28,0x42,0x7c,0xff,0x29,0x42,0x7d,0xff,0x29,0x43,0x7e,0xff, + 0x2a,0x44,0x7f,0xff,0x2b,0x45,0x80,0xff,0x2b,0x46,0x80,0xff,0x2c,0x46,0x80, + 0xff,0x82,0x2b,0x45,0x7f,0xff,0x1e,0x2c,0x45,0x80,0xff,0x2d,0x46,0x81,0xff, + 0x2d,0x46,0x82,0xff,0x2e,0x47,0x82,0xff,0x2f,0x48,0x83,0xff,0x2f,0x49,0x84, + 0xff,0x30,0x4a,0x85,0xff,0x31,0x4b,0x87,0xff,0x32,0x4c,0x88,0xff,0x33,0x4c, + 0x89,0xff,0x33,0x4d,0x8a,0xff,0x34,0x4e,0x8b,0xff,0x35,0x4f,0x8c,0xff,0x36, + 0x50,0x8c,0xff,0x36,0x50,0x8d,0xff,0x37,0x51,0x8e,0xff,0x38,0x52,0x8f,0xff, + 0x39,0x53,0x90,0xff,0x39,0x54,0x91,0xff,0x3a,0x54,0x92,0xff,0x3b,0x55,0x93, + 0xff,0x3b,0x56,0x94,0xff,0x3c,0x57,0x95,0xff,0x3d,0x57,0x96,0xff,0x3e,0x58, + 0x97,0xff,0x3e,0x59,0x98,0xff,0x3f,0x5a,0x99,0xff,0x40,0x5b,0x9a,0xff,0x01, + 0x02,0x03,0xff,0x00,0x01,0x02,0xff,0x83,0x13,0x2c,0x62,0xff,0x01,0x12,0x2a, + 0x5e,0xff,0x95,0x12,0x29,0x5d,0xff,0x20,0x13,0x2a,0x5e,0xff,0x13,0x2b,0x5f, + 0xff,0x14,0x2b,0x60,0xff,0x15,0x2c,0x61,0xff,0x16,0x2d,0x62,0xff,0x16,0x2e, + 0x63,0xff,0x17,0x2f,0x64,0xff,0x18,0x2f,0x65,0xff,0x19,0x30,0x66,0xff,0x19, + 0x31,0x67,0xff,0x1a,0x32,0x67,0xff,0x1b,0x32,0x68,0xff,0x1b,0x33,0x69,0xff, + 0x1b,0x34,0x6a,0xff,0x1c,0x35,0x6b,0xff,0x1d,0x36,0x6c,0xff,0x1d,0x36,0x6d, + 0xff,0x21,0x3a,0x72,0xff,0x22,0x3b,0x74,0xff,0x22,0x3c,0x75,0xff,0x23,0x3d, + 0x76,0xff,0x24,0x3d,0x77,0xff,0x25,0x3e,0x78,0xff,0x25,0x3f,0x79,0xff,0x26, + 0x40,0x7a,0xff,0x27,0x41,0x7b,0xff,0x28,0x41,0x7c,0xff,0x28,0x42,0x7c,0xff, + 0x29,0x43,0x7d,0xff,0x2a,0x44,0x7e,0xff,0x2b,0x44,0x7f,0xff,0x2b,0x45,0x80, + 0xff,0x82,0x2c,0x47,0x81,0xff,0x1f,0x2c,0x46,0x7f,0xff,0x2b,0x45,0x7f,0xff, + 0x2c,0x45,0x80,0xff,0x2d,0x46,0x81,0xff,0x2e,0x47,0x82,0xff,0x2e,0x48,0x83, + 0xff,0x2f,0x49,0x84,0xff,0x30,0x49,0x85,0xff,0x31,0x4b,0x86,0xff,0x32,0x4b, + 0x87,0xff,0x32,0x4c,0x88,0xff,0x33,0x4d,0x89,0xff,0x34,0x4e,0x8a,0xff,0x35, + 0x4e,0x8b,0xff,0x35,0x4f,0x8c,0xff,0x36,0x50,0x8d,0xff,0x37,0x51,0x8e,0xff, + 0x37,0x52,0x8f,0xff,0x38,0x52,0x90,0xff,0x39,0x53,0x91,0xff,0x3a,0x54,0x92, + 0xff,0x3a,0x55,0x93,0xff,0x3b,0x56,0x94,0xff,0x3c,0x56,0x95,0xff,0x3d,0x57, + 0x96,0xff,0x3d,0x58,0x97,0xff,0x3e,0x59,0x97,0xff,0x3f,0x5a,0x98,0xff,0x3f, + 0x5a,0x99,0xff,0x01,0x02,0x03,0xff,0x00,0x01,0x02,0xff,0x82,0x13,0x2c,0x62, + 0xff,0x01,0x12,0x2a,0x5e,0xff,0x96,0x12,0x29,0x5d,0xff,0x43,0x12,0x2a,0x5e, + 0xff,0x13,0x2a,0x5f,0xff,0x14,0x2b,0x60,0xff,0x15,0x2c,0x60,0xff,0x15,0x2d, + 0x61,0xff,0x16,0x2d,0x62,0xff,0x17,0x2e,0x63,0xff,0x18,0x2f,0x64,0xff,0x18, + 0x30,0x65,0xff,0x19,0x31,0x66,0xff,0x1a,0x31,0x67,0xff,0x1a,0x32,0x68,0xff, + 0x1b,0x33,0x69,0xff,0x1b,0x34,0x6a,0xff,0x1c,0x34,0x6b,0xff,0x1c,0x35,0x6c, + 0xff,0x1e,0x37,0x6f,0xff,0x21,0x3a,0x73,0xff,0x22,0x3b,0x74,0xff,0x22,0x3b, + 0x75,0xff,0x23,0x3c,0x76,0xff,0x24,0x3d,0x76,0xff,0x24,0x3e,0x77,0xff,0x25, + 0x3f,0x78,0xff,0x26,0x3f,0x79,0xff,0x27,0x40,0x7a,0xff,0x27,0x41,0x7b,0xff, + 0x28,0x42,0x7c,0xff,0x29,0x43,0x7d,0xff,0x29,0x43,0x7e,0xff,0x2a,0x44,0x7f, + 0xff,0x2b,0x45,0x80,0xff,0x2c,0x46,0x81,0xff,0x2c,0x47,0x82,0xff,0x2d,0x47, + 0x82,0xff,0x2c,0x46,0x80,0xff,0x2c,0x45,0x80,0xff,0x2c,0x46,0x81,0xff,0x2d, + 0x47,0x82,0xff,0x2e,0x47,0x83,0xff,0x2f,0x48,0x84,0xff,0x2f,0x49,0x85,0xff, + 0x31,0x4a,0x86,0xff,0x31,0x4b,0x87,0xff,0x32,0x4c,0x88,0xff,0x33,0x4d,0x89, + 0xff,0x34,0x4e,0x8a,0xff,0x34,0x4e,0x8b,0xff,0x35,0x4f,0x8c,0xff,0x36,0x50, + 0x8d,0xff,0x37,0x51,0x8e,0xff,0x37,0x51,0x8f,0xff,0x38,0x52,0x90,0xff,0x39, + 0x53,0x91,0xff,0x39,0x54,0x91,0xff,0x3a,0x55,0x92,0xff,0x3b,0x55,0x93,0xff, + 0x3c,0x56,0x94,0xff,0x3c,0x57,0x95,0xff,0x3d,0x58,0x96,0xff,0x3e,0x58,0x97, + 0xff,0x3e,0x59,0x98,0xff,0x3f,0x5a,0x99,0xff,0x01,0x02,0x03,0xff,0x00,0x01, + 0x02,0xff,0x13,0x2c,0x62,0xff,0x12,0x2a,0x5e,0xff,0x98,0x12,0x29,0x5d,0xff, + 0x21,0x13,0x2a,0x5e,0xff,0x14,0x2b,0x5f,0xff,0x14,0x2c,0x60,0xff,0x15,0x2c, + 0x61,0xff,0x16,0x2d,0x62,0xff,0x17,0x2e,0x63,0xff,0x17,0x2f,0x64,0xff,0x18, + 0x2f,0x65,0xff,0x19,0x30,0x66,0xff,0x19,0x31,0x67,0xff,0x1a,0x32,0x68,0xff, + 0x1b,0x33,0x69,0xff,0x1b,0x33,0x6a,0xff,0x1b,0x34,0x6b,0xff,0x1c,0x35,0x6b, + 0xff,0x1f,0x38,0x70,0xff,0x20,0x3a,0x72,0xff,0x21,0x3a,0x73,0xff,0x22,0x3b, + 0x74,0xff,0x23,0x3c,0x75,0xff,0x23,0x3d,0x76,0xff,0x24,0x3e,0x77,0xff,0x25, + 0x3e,0x78,0xff,0x26,0x3f,0x79,0xff,0x26,0x40,0x7a,0xff,0x27,0x41,0x7b,0xff, + 0x28,0x41,0x7c,0xff,0x29,0x42,0x7d,0xff,0x29,0x43,0x7e,0xff,0x2a,0x44,0x7f, + 0xff,0x2b,0x45,0x80,0xff,0x2b,0x46,0x80,0xff,0x2c,0x47,0x81,0xff,0x82,0x2d, + 0x48,0x82,0xff,0x1e,0x2d,0x46,0x81,0xff,0x2c,0x45,0x80,0xff,0x2d,0x46,0x81, + 0xff,0x2e,0x47,0x82,0xff,0x2f,0x48,0x83,0xff,0x2f,0x49,0x84,0xff,0x30,0x4a, + 0x86,0xff,0x31,0x4b,0x87,0xff,0x32,0x4c,0x88,0xff,0x33,0x4c,0x89,0xff,0x33, + 0x4d,0x8a,0xff,0x34,0x4e,0x8a,0xff,0x35,0x4f,0x8b,0xff,0x36,0x50,0x8c,0xff, + 0x36,0x50,0x8d,0xff,0x37,0x51,0x8e,0xff,0x38,0x52,0x8f,0xff,0x38,0x53,0x90, + 0xff,0x39,0x54,0x91,0xff,0x3a,0x54,0x92,0xff,0x3b,0x55,0x93,0xff,0x3b,0x56, + 0x94,0xff,0x3c,0x57,0x95,0xff,0x3d,0x57,0x96,0xff,0x3e,0x58,0x97,0xff,0x3e, + 0x59,0x98,0xff,0x3f,0x5a,0x99,0xff,0x01,0x02,0x03,0xff,0x00,0x01,0x02,0xff, + 0x12,0x2a,0x5e,0xff,0x99,0x12,0x29,0x5d,0xff,0x22,0x13,0x2a,0x5e,0xff,0x13, + 0x2a,0x5f,0xff,0x14,0x2b,0x60,0xff,0x15,0x2c,0x61,0xff,0x16,0x2d,0x62,0xff, + 0x16,0x2e,0x63,0xff,0x17,0x2e,0x64,0xff,0x18,0x2f,0x64,0xff,0x18,0x30,0x65, + 0xff,0x19,0x31,0x66,0xff,0x1a,0x32,0x67,0xff,0x1b,0x32,0x68,0xff,0x1b,0x33, + 0x69,0xff,0x1b,0x34,0x6a,0xff,0x1d,0x36,0x6d,0xff,0x20,0x39,0x71,0xff,0x20, + 0x39,0x72,0xff,0x21,0x3a,0x73,0xff,0x22,0x3b,0x74,0xff,0x22,0x3c,0x75,0xff, + 0x23,0x3c,0x76,0xff,0x24,0x3d,0x77,0xff,0x25,0x3e,0x78,0xff,0x25,0x3f,0x79, + 0xff,0x26,0x40,0x7a,0xff,0x27,0x40,0x7a,0xff,0x28,0x41,0x7b,0xff,0x28,0x42, + 0x7c,0xff,0x29,0x43,0x7d,0xff,0x2a,0x44,0x7e,0xff,0x2a,0x44,0x7f,0xff,0x2b, + 0x45,0x80,0xff,0x2c,0x47,0x81,0xff,0x2d,0x48,0x82,0xff,0x82,0x2d,0x48,0x83, + 0xff,0x1c,0x2d,0x46,0x81,0xff,0x2c,0x46,0x81,0xff,0x2d,0x47,0x82,0xff,0x2e, + 0x48,0x83,0xff,0x2f,0x49,0x84,0xff,0x30,0x4a,0x85,0xff,0x31,0x4b,0x86,0xff, + 0x32,0x4b,0x87,0xff,0x32,0x4c,0x88,0xff,0x33,0x4d,0x89,0xff,0x34,0x4e,0x8a, + 0xff,0x35,0x4e,0x8b,0xff,0x35,0x4f,0x8c,0xff,0x36,0x50,0x8d,0xff,0x37,0x51, + 0x8e,0xff,0x37,0x52,0x8f,0xff,0x38,0x52,0x90,0xff,0x39,0x53,0x91,0xff,0x3a, + 0x54,0x92,0xff,0x3a,0x55,0x93,0xff,0x3b,0x56,0x94,0xff,0x3c,0x56,0x95,0xff, + 0x3c,0x57,0x96,0xff,0x3d,0x58,0x96,0xff,0x3e,0x59,0x97,0xff,0x3f,0x59,0x98, + 0xff,0x01,0x02,0x03,0xff,0x00,0x01,0x02,0xff,0x9a,0x12,0x29,0x5d,0xff,0x40, + 0x12,0x29,0x5e,0xff,0x13,0x2a,0x5f,0xff,0x14,0x2b,0x5f,0xff,0x15,0x2c,0x60, + 0xff,0x15,0x2d,0x61,0xff,0x16,0x2d,0x62,0xff,0x17,0x2e,0x63,0xff,0x17,0x2f, + 0x64,0xff,0x18,0x30,0x65,0xff,0x19,0x30,0x66,0xff,0x1a,0x31,0x67,0xff,0x1a, + 0x32,0x68,0xff,0x1b,0x33,0x69,0xff,0x1b,0x34,0x6a,0xff,0x1e,0x37,0x6e,0xff, + 0x1f,0x38,0x71,0xff,0x20,0x39,0x72,0xff,0x21,0x3a,0x73,0xff,0x21,0x3b,0x74, + 0xff,0x22,0x3b,0x75,0xff,0x23,0x3c,0x75,0xff,0x24,0x3d,0x76,0xff,0x24,0x3e, + 0x77,0xff,0x25,0x3e,0x78,0xff,0x26,0x3f,0x79,0xff,0x26,0x40,0x7a,0xff,0x27, + 0x41,0x7b,0xff,0x28,0x42,0x7c,0xff,0x29,0x42,0x7d,0xff,0x29,0x43,0x7e,0xff, + 0x2a,0x44,0x7f,0xff,0x2b,0x45,0x80,0xff,0x2c,0x46,0x81,0xff,0x2c,0x47,0x82, + 0xff,0x2d,0x48,0x83,0xff,0x2d,0x48,0x82,0xff,0x2c,0x45,0x80,0xff,0x2c,0x46, + 0x81,0xff,0x2d,0x47,0x82,0xff,0x2e,0x47,0x83,0xff,0x2f,0x49,0x84,0xff,0x30, + 0x49,0x85,0xff,0x31,0x4a,0x86,0xff,0x31,0x4b,0x87,0xff,0x32,0x4c,0x88,0xff, + 0x33,0x4d,0x89,0xff,0x34,0x4d,0x8a,0xff,0x34,0x4e,0x8b,0xff,0x35,0x4f,0x8c, + 0xff,0x36,0x50,0x8d,0xff,0x36,0x50,0x8e,0xff,0x37,0x51,0x8f,0xff,0x38,0x52, + 0x8f,0xff,0x39,0x53,0x90,0xff,0x39,0x54,0x91,0xff,0x3a,0x54,0x92,0xff,0x3b, + 0x55,0x93,0xff,0x3c,0x56,0x94,0xff,0x3c,0x57,0x95,0xff,0x3d,0x58,0x96,0xff, + 0x3e,0x58,0x97,0xff,0x3e,0x59,0x98,0xff,0x01,0x02,0x03,0xff,0x00,0x01,0x02, + 0xff,0x9b,0x12,0x29,0x5d,0xff,0x44,0x13,0x2a,0x5e,0xff,0x14,0x2b,0x5f,0xff, + 0x14,0x2b,0x60,0xff,0x15,0x2c,0x61,0xff,0x16,0x2d,0x62,0xff,0x16,0x2e,0x63, + 0xff,0x17,0x2f,0x64,0xff,0x18,0x2f,0x65,0xff,0x19,0x30,0x66,0xff,0x19,0x31, + 0x67,0xff,0x1a,0x32,0x68,0xff,0x1b,0x33,0x69,0xff,0x1c,0x34,0x6b,0xff,0x1e, + 0x37,0x6f,0xff,0x1f,0x38,0x70,0xff,0x20,0x39,0x71,0xff,0x20,0x39,0x72,0xff, + 0x21,0x3a,0x73,0xff,0x22,0x3b,0x74,0xff,0x23,0x3c,0x75,0xff,0x23,0x3d,0x76, + 0xff,0x24,0x3d,0x77,0xff,0x25,0x3e,0x78,0xff,0x26,0x3f,0x79,0xff,0x26,0x40, + 0x7a,0xff,0x27,0x41,0x7b,0xff,0x28,0x41,0x7c,0xff,0x28,0x42,0x7d,0xff,0x29, + 0x43,0x7e,0xff,0x2a,0x44,0x7e,0xff,0x2b,0x44,0x7f,0xff,0x2b,0x45,0x80,0xff, + 0x2c,0x47,0x81,0xff,0x2d,0x48,0x82,0xff,0x2c,0x46,0x81,0xff,0x2b,0x45,0x7f, + 0xff,0x2c,0x45,0x80,0xff,0x2d,0x46,0x81,0xff,0x2e,0x47,0x82,0xff,0x2f,0x48, + 0x84,0xff,0x30,0x49,0x85,0xff,0x30,0x4a,0x86,0xff,0x31,0x4b,0x87,0xff,0x32, + 0x4c,0x88,0xff,0x33,0x4c,0x89,0xff,0x33,0x4d,0x89,0xff,0x34,0x4e,0x8a,0xff, + 0x35,0x4f,0x8b,0xff,0x35,0x4f,0x8c,0xff,0x36,0x50,0x8d,0xff,0x37,0x51,0x8e, + 0xff,0x38,0x52,0x8f,0xff,0x38,0x53,0x90,0xff,0x39,0x53,0x91,0xff,0x3a,0x54, + 0x92,0xff,0x3a,0x55,0x93,0xff,0x3b,0x56,0x94,0xff,0x3c,0x57,0x95,0xff,0x3d, + 0x57,0x96,0xff,0x3d,0x58,0x97,0xff,0x3e,0x59,0x98,0xff,0x01,0x02,0x03,0xff, + 0x04,0x04,0x04,0xff,0xb8,0xba,0xc1,0xff,0xc0,0xc3,0xca,0xff,0xbc,0xbf,0xc5, + 0xff,0xba,0xbe,0xc5,0xff,0xca,0xcd,0xd4,0xff,0x96,0xcd,0xd0,0xd6,0xff,0x84, + 0xcd,0xd0,0xd7,0xff,0x85,0xcd,0xd1,0xd8,0xff,0x84,0xce,0xd1,0xd8,0xff,0x01, + 0xcf,0xd2,0xd9,0xff,0x86,0xcf,0xd2,0xda,0xff,0x86,0xcf,0xd3,0xda,0xff,0x83, + 0xd0,0xd3,0xdb,0xff,0x01,0xd0,0xd4,0xdb,0xff,0x83,0xd0,0xd4,0xdc,0xff,0x01, + 0xd1,0xd4,0xdc,0xff,0x83,0xd0,0xd4,0xdc,0xff,0x89,0xd1,0xd4,0xdc,0xff,0x01, + 0xd1,0xd5,0xdc,0xff,0x82,0xd1,0xd5,0xdd,0xff,0x82,0xd2,0xd5,0xdd,0xff,0x11, + 0xd2,0xd6,0xdd,0xff,0xd2,0xd6,0xde,0xff,0x9b,0xa3,0xb4,0xff,0x72,0x7e,0x98, + 0xff,0x99,0x9f,0xac,0xff,0xa4,0xa8,0xb0,0xff,0xa9,0xac,0xb4,0xff,0xa9,0xac, + 0xb5,0xff,0xa5,0xa9,0xb1,0xff,0xa9,0xad,0xb6,0xff,0x04,0x04,0x04,0xff,0x05, + 0x04,0x04,0xff,0xcd,0xcc,0xcb,0xff,0x9c,0xa2,0x9d,0xff,0x97,0xab,0x9c,0xff, + 0xd4,0xd4,0xd4,0xff,0xe1,0xe1,0xe1,0xff,0xb0,0xe5,0xe6,0xe6,0xff,0x9b,0xe6, + 0xe6,0xe6,0xff,0x08,0x8b,0x93,0xa3,0xff,0x46,0x55,0x75,0xff,0x8d,0x91,0x9b, + 0xff,0xa1,0xa1,0xa2,0xff,0xa9,0xa9,0xa9,0xff,0xa9,0xa9,0xaa,0xff,0xa3,0xa3, + 0xa3,0xff,0xa8,0xa8,0xa9,0xff,0x82,0x04,0x04,0x04,0xff,0x05,0xc7,0xc7,0xc7, + 0xff,0xc2,0xc2,0xc0,0xff,0xc0,0xbf,0xbc,0xff,0xcd,0xcd,0xcd,0xff,0xe3,0xe3, + 0xe3,0xff,0xcb,0xe6,0xe6,0xe6,0xff,0x0a,0x99,0xa0,0xad,0xff,0x60,0x6c,0x85, + 0xff,0x97,0x9b,0xa2,0xff,0xa7,0xa7,0xa8,0xff,0xad,0xad,0xad,0xff,0xae,0xae, + 0xae,0xff,0xa9,0xa9,0xa9,0xff,0xaf,0xaf,0xaf,0xff,0x04,0x04,0x04,0xff,0x00, + 0x00,0x00,0xff,0x84,0x03,0x03,0x03,0xff,0xcc,0x04,0x04,0x04,0xff,0x03,0x03, + 0x03,0x03,0xff,0x02,0x02,0x02,0xff,0x02,0x03,0x03,0xff,0x85,0x03,0x03,0x03, + 0xff,0x01,0x00,0x00,0x00,0xff +}; + +static const GdkPixdata rotation_orientation_vert_pixdata = { + 0x47646b50, /* Pixbuf magic: 'GdkP' */ + 24 + 36156, /* header length + pixel_data length */ + 0x2010002, /* pixdata_type */ + 360, /* rowstride */ + 90, /* width */ + 120, /* height */ + rotation_orientation_vert_pixdata_pixel_data /* pixel_data */ +}; diff --git a/src/image_data/sdi_shared_sync_bnc_pixdata.h b/src/image_data/sdi_shared_sync_bnc_pixdata.h index c09abde..a791538 100644 --- a/src/image_data/sdi_shared_sync_bnc_pixdata.h +++ b/src/image_data/sdi_shared_sync_bnc_pixdata.h @@ -1,1080 +1,1384 @@ /* GdkPixbuf RGBA C-Source image dump 1-byte-run-length-encoded */ static guint8 sdi_shared_sync_bnc_pixdata_pixel_data[] = { - "\377\0\0\0\0\377\0\0\0\0\377\0\0\0\0\377\0\0\0\0\377\0\0\0\0\377\0\0" - "\0\0\377\0\0\0\0\377\0\0\0\0\377\0\0\0\0\377\0\0\0\0\377\0\0\0\0\377" - "\0\0\0\0\377\0\0\0\0\377\0\0\0\0\323\0\0\0\0\10\357\357\362#\357\357" - "\363a\357\357\363\223\357\357\363\275\357\357\363\334\360\360\363\361" - "\360\360\363\375\360\360\364\377\204\361\361\364\377\1\361\361\365\377" - "\204\362\362\365\377\1\363\363\365\377\204\363\363\366\377\1\364\364" - "\366\377\202\364\364\367\377\204\365\365\367\377\1\365\365\370\377\204" - "\366\366\370\377\205\367\367\371\377\1\370\370\371\377\202\370\370\372" - "\377\203\371\371\372\377\202\371\371\373\377\203\372\372\373\377\1\373" - "\373\373\377\204\373\373\374\377\1\374\374\374\377\203\374\374\375\377" - "\203\375\375\375\377\202\375\375\376\377\203\376\376\376\377\213\377" - "\377\377\377\202\376\376\377\377\204\376\376\376\377\202\375\375\376" - "\377\210\375\375\375\377\14\375\375\375\375\375\375\375\370\375\375\375" - "\357\375\375\375\343\375\375\375\324\375\375\375\301\375\375\375\252" - "\375\375\375\220\375\375\375s\375\375\375R\375\375\375.\375\375\375\10" - "\272\0\0\0\0\11\315\315\333#\315\315\334a\322\322\337\234\327\327\342" - "\325\317\317\335\334\317\317\335\361\317\317\335\375\320\320\335\377" - "\320\320\336\377\202\321\321\336\377\202\322\322\337\377\2\323\323\337" - "\377\323\323\340\377\202\324\324\340\377\2\325\325\340\377\325\325\341" - "\377\202\326\326\341\377\203\327\327\342\377\202\330\330\343\377\202" - "\331\331\343\377\202\332\332\344\377\2\333\333\344\377\333\333\345\377" - "\202\334\334\345\377\202\335\335\346\377\202\336\336\346\377\203\337" - "\337\347\377\202\340\340\350\377\2\341\341\350\377\341\341\351\377\202" - "\342\342\351\377\2\343\343\351\377\343\343\352\377\202\344\344\352\377" - "\202\345\345\353\377\202\346\346\353\377\203\347\347\354\377\202\350" - "\350\355\377\2\351\351\355\377\351\351\356\377\202\352\352\356\377\202" - "\353\353\357\377\202\354\354\357\377\202\355\355\360\377\2\356\356\360" - "\377\356\356\361\377\203\357\357\361\377\202\360\360\362\377\2\361\361" - "\362\377\361\361\363\377\202\362\362\363\377\202\363\363\364\377\202" - "\364\364\364\377\204\365\365\365\377\205\364\364\364\377\14\364\364\364" - "\375\364\364\364\370\364\364\364\357\364\364\364\343\364\364\364\324" - "\364\364\364\301\364\364\364\252\364\364\364\220\364\364\364s\364\364" - "\364R\364\364\364.\346\346\351\10\272\0\0\0\0\7\357\357\364e\356\356" - "\363\333\354\354\362\375\346\346\356\376\336\336\350\375\324\324\340" - "\370\320\320\336\375\203\321\321\336\377\202\322\322\337\377\202\323" - "\323\337\377\203\324\324\340\377\202\325\325\341\377\202\326\326\341" - "\377\202\327\327\342\377\2\330\330\342\377\330\330\343\377\202\331\331" - "\343\377\202\332\332\344\377\202\333\333\344\377\203\334\334\345\377" - "\202\335\335\346\377\2\336\336\346\377\336\336\347\377\202\337\337\347" - "\377\2\340\340\347\377\340\340\350\377\202\341\341\350\377\202\342\342" - "\351\377\2\343\343\351\377\343\343\352\377\203\344\344\352\377\202\345" - "\345\353\377\2\346\346\353\377\346\346\354\377\202\347\347\354\377\202" - "\350\350\355\377\202\351\351\355\377\202\352\352\356\377\2\353\353\356" - "\377\353\353\357\377\202\354\354\357\377\1\354\354\360\377\202\355\355" - "\360\377\2\356\356\360\377\356\356\361\377\202\357\357\361\377\202\360" - "\360\362\377\2\361\361\362\377\361\361\363\377\202\362\362\363\377\2" - "\363\363\363\377\363\363\364\377\202\364\364\364\377\205\365\365\365" - "\377\205\364\364\364\377\14\364\364\364\375\364\364\364\370\364\364\364" - "\357\364\364\364\343\364\364\364\324\364\364\364\301\364\364\364\252" - "\364\364\364\220\364\364\364s\364\364\364R\364\364\364.\364\364\364\10" - "\267\0\0\0\0\12\377\377\377\16\377\377\377\210\377\377\377\345\373\373" - "\374\373\364\364\367\375\355\355\362\376\347\347\356\376\341\341\352" - "\377\330\330\343\375\321\321\336\375\202\322\322\336\377\202\322\322" - "\337\377\2\323\323\337\377\323\323\340\377\202\324\324\340\377\202\325" - "\325\341\377\202\326\326\341\377\202\327\327\342\377\2\330\330\342\377" - "\330\330\343\377\202\331\331\343\377\203\332\332\344\377\2\333\333\344" - "\377\333\333\345\377\202\334\334\345\377\202\335\335\346\377\2\336\336" - "\346\377\336\336\347\377\202\337\337\347\377\2\340\340\347\377\340\340" - "\350\377\202\341\341\350\377\203\342\342\351\377\202\343\343\352\377" - "\202\344\344\352\377\202\345\345\353\377\2\346\346\353\377\346\346\354" - "\377\202\347\347\354\377\202\350\350\355\377\202\351\351\355\377\203" - "\352\352\356\377\202\353\353\357\377\202\354\354\357\377\206\355\355" - "\360\377\5\356\356\360\377\357\357\361\377\360\360\361\377\360\360\362" - "\377\361\361\362\377\202\362\362\363\377\202\363\363\364\377\2\364\364" - "\364\377\364\364\365\377\206\365\365\365\377\205\364\364\364\377\14\364" - "\364\364\375\364\364\364\370\364\364\364\357\364\364\364\343\364\364" - "\364\324\364\364\364\301\364\364\364\252\364\364\364\220\364\364\364" - "s\364\364\364R\364\364\364.\364\364\364\10\212\0\0\0\0\31\377\377\377" - "\14\302\332\302\207\264\321\264\223\261\317\261\223\255\315\255\223\252" - "\314\252\223\250\312\250\223\244\310\244\223\241\306\241\223\236\304" - "\236\223\233\302\233\223\230\301\230\223\225\277\225\223\222\275\222" - "\223\217\273\217\223\214\271\214\223b\240b\265U\230U\300n\247n\326k\245" - "k\326g\243g\326d\241d\326`\237`\326]\235]\326Z\233Z\262\222\0\0\0\0\14" - "\377\377\377:\377\377\377\264\377\377\377\362\377\377\377\371\377\377" - "\377\372\373\373\374\373\364\364\367\375\355\355\362\376\347\347\356" - "\376\341\341\352\377\331\331\343\375\322\322\337\375\202\322\322\337" - "\377\2\323\323\337\377\323\323\340\377\202\324\324\340\377\2\325\325" - "\340\377\325\325\341\377\202\326\326\341\377\202\327\327\342\377\1\330" - "\330\342\377\202\330\330\343\377\202\331\331\343\377\202\332\332\344" - "\377\2\333\333\344\377\333\333\345\377\202\334\334\345\377\202\335\335" - "\346\377\202\336\336\346\377\202\337\337\347\377\1\340\340\347\377\202" - "\340\340\350\377\2\341\341\350\377\341\341\351\377\202\342\342\351\377" - "\2\343\343\351\377\343\343\352\377\202\344\344\352\377\202\345\345\353" - "\377\2\346\346\353\377\346\346\354\377\202\347\347\354\377\1\350\350" - "\354\377\202\350\350\355\377\2\351\351\355\377\351\351\356\377\202\352" - "\352\356\377\202\353\353\357\377\202\354\354\357\377\202\355\355\360" - "\377\207\356\356\360\377\2\357\357\361\377\360\360\362\377\202\361\361" - "\362\377\202\363\363\364\377\2\364\364\364\377\364\364\365\377\207\365" - "\365\365\377\1\364\364\365\377\205\364\364\364\377\14\364\364\364\375" - "\364\364\364\370\364\364\364\357\364\364\364\343\364\364\364\324\364" - "\364\364\301\364\364\364\252\364\364\364\220\364\364\364s\364\364\364" - "R\364\364\364.\364\364\364\10\212\0\0\0\0\31\377\377\377<\241\306\241" - "\374\225\277\225\377o\250o\377n\253n\377d\241d\377b\245b\377Y\232Y\377" - "Y\237Y\377V\233V\377Z\232Z\377n\247n\377j\244j\377f\242f\377\201\263" - "\201\377q\225q\377o\224o\377m\222m\377j\221j\377h\217h\377f\216f\377" - "=\177=\377@\213@\377<\210<\377v\254v\377\202\377\377\377\357\1\377\377" - "\377\234\214\0\0\0\0\17\377\377\377\12\377\377\377t\377\377\377\325\377" - "\377\377\365\377\377\377\366\377\377\377\370\377\377\377\371\377\377" - "\377\372\373\373\374\373\364\364\367\375\356\356\363\376\347\347\356" - "\376\342\342\352\377\331\331\344\375\323\323\337\375\202\323\323\337" - "\377\3\324\324\340\377\0\0\0\377\252\252\263\377\202\325\325\341\377" - "\6ddi\37799<\377\16\16\17\377\327\327\342\377\330\330\342\377\330\330" - "\343\377\202\331\331\343\377\4\0\0\0\377\332\332\344\377\333\333\344" - "\377\333\333\345\377\202\334\334\345\377\2XX\\\377\0\0\0\377\202\336" - "\336\346\377\1\336\336\347\377\202\337\337\347\377\202\340\340\350\377" - "\10\341\341\350\377\0\0\0\377\265\265\272\377\342\342\351\377\343\343" - "\351\377jjm\377==>\377\17\17\20\377\202\345\345\353\377\202\346\346\353" - "\377\3\346\346\354\377\0\0\0\377\347\347\354\377\202\350\350\355\377" - "\6\351\351\355\377\351\351\356\377mmo\377\0\0\0\377nno\377\353\353\357" - "\377\202\354\354\357\377\202\355\355\360\377\1\356\356\360\377\210\356" - "\356\361\377\4\357\357\361\377\360\360\361\377\360\360\362\377\361\361" - "\362\377\202\362\362\363\377\202\363\363\364\377\2\364\364\364\377\364" - "\364\365\377\203\365\365\365\377\1\364\364\365\377\207\364\364\364\377" - "\14\364\364\364\375\364\364\364\370\364\364\364\357\364\364\364\343\364" - "\364\364\324\364\364\364\301\364\364\364\252\364\364\364\220\364\364" - "\364s\364\364\364R\364\364\364.\364\364\364\10\212\0\0\0\0\17\347\360" - "\347t\230\300\230\377\221\275\221\377L\223L\377N\235N\377\77\212\77\377" - "\77\225\77\3773\2013\3777\2157\3775\2115\377A\211A\377m\246m\377i\244" - "i\377e\241e\377\240\305\240\377\206,/,\377\4\"=\"\377\77\212\77\377:" - "\210:\377i\244i\377\202\377\377\377\377\1\377\377\377\346\212\0\0\0\0" - "\21\377\377\377*\377\377\377\241\377\377\377\347\377\377\377\361\377" - "\377\377\363\377\377\377\365\377\377\377\366\377\377\377\370\377\377" - "\377\371\377\377\377\372\373\373\374\373\364\364\367\375\356\356\363" - "\376\350\350\357\376\343\343\352\377\332\332\344\375\324\324\340\375" - "\203\324\324\340\377\10""99<\377fff\377\336\336\347\377\326\326\341\377" - "\35\35\36\377\235\235\241\377\365\365\367\377\374\374\375\377\202\331" - "\331\343\377\202\332\332\344\377\3\0\0\0\377\377\377\377\377\333\333" - "\345\377\202\334\334\345\377\4vv{\377;;=\377\0\0\0\377\377\377\377\377" - "\202\337\337\347\377\2\340\340\347\377\340\340\350\377\202\341\341\350" - "\377\13\342\342\351\377<<>\377fff\377\351\351\356\377\343\343\352\377" - "\36\36\37\377\241\241\243\377\370\370\372\377\375\375\376\377\346\346" - "\353\377\346\346\354\377\202\347\347\354\377\2\0\0\0\377\377\377\377" - "\377\202\351\351\355\377\202\352\352\356\377\5\0\0\0\377\366\366\370" - "\377\0\0\0\377\366\366\370\377\354\354\360\377\202\355\355\360\377\2" - "\356\356\360\377\356\356\361\377\211\357\357\361\377\2\360\360\361\377" - "\360\360\362\377\202\361\361\362\377\1\362\362\363\377\202\363\363\364" - "\377\2\364\364\364\377\364\364\365\377\202\365\365\365\377\211\364\364" - "\364\377\14\364\364\364\375\364\364\364\370\364\364\364\357\364\364\364" - "\343\364\364\364\324\364\364\364\301\364\364\364\252\364\364\364\220" - "\364\364\364s\364\364\364R\364\364\364.\364\364\364\10\212\0\0\0\0\17" - "\301\331\301\303\227\300\227\377\207\272\207\377J\222J\377L\233L\377" - "=\211=\377=\224=\3772\2012\3776\2146\3774\2104\377G\213G\377l\246l\377" - "h\243h\377c\240c\377\240\305\240\377\206,/,\377\4\40""7\40\377=\211=" - "\3779\2079\3775\2045\377\203\377\377\377\377\210\0\0\0\0\35\377\377\377" - "d\377\377\377\300\377\377\377\353\377\377\377\355\377\377\377\357\377" - "\377\377\361\377\377\377\363\377\377\377\365\377\377\377\366\377\377" - "\377\370\377\377\377\371\377\377\377\372\373\373\374\373\365\365\370" - "\375\356\356\363\376\350\350\357\376\343\343\353\377\334\334\345\376" - "\324\324\340\375\325\325\341\377\325\325\340\377\325\325\341\377\217" - "\217\226\377\0\0\0\377\357\357\363\377\272\272\304\377\0\0\0\377\372" - "\372\373\377\0\0\0\377\202\331\331\343\377\6\221\221\230\377\17\17\17" - "\377,,.\377\0\0\0\377\377\377\377\377\334\334\345\377\202\335\335\346" - "\377\6\336\336\346\377\355\355\362\377\0\0\0\377\377\377\377\377\340" - "\340\347\377\340\340\350\377\202\341\341\350\377\1\341\341\351\377\202" - "\342\342\351\377\17\227\227\233\377\0\0\0\377\364\364\367\377\306\306" - "\313\377\0\0\0\377\374\374\374\377\0\0\0\377\346\346\354\377\347\347" - "\354\377\232\232\235\377\17\17\20\377../\377\0\0\0\377\377\377\377\377" - "\351\351\356\377\202\352\352\356\377\202\353\353\357\377\6\377\377\377" - "\377\0\0\0\377\377\377\377\377\355\355\360\377\356\356\360\377\356\356" - "\361\377\202\357\357\361\377\213\360\360\362\377\203\361\361\362\377" - "\202\362\362\363\377\1\364\364\364\377\202\364\364\365\377\212\364\364" - "\364\377\14\364\364\364\375\364\364\364\370\364\364\364\357\364\364\364" - "\343\364\364\364\324\364\364\364\301\364\364\364\252\364\364\364\220" - "\364\364\364s\364\364\364R\364\364\364.\364\364\364\10\211\0\0\0\0\20" - "\377\377\377\14\261\317\261\355\226\277\226\377z\266z\377H\220H\377J" - "\232J\377;\210;\377;\223;\3772\2002\3776\2136\3774\2064\377M\215M\377" - "k\245k\377f\242f\377b\240b\377\237\304\237\377\205,/,\377\6,.,\377\34" - "%\34\377<\211<\3778\2068\3774\2034\377\234\260\234\377\202\277\277\277" - "\377\1\277\277\277p\204\0\0\0\0\26\377\377\377\35\377\377\377\212\377" - "\377\377\330\377\377\377\346\377\377\377\350\377\377\377\353\377\377" - "\377\355\377\377\377\357\377\377\377\361\377\377\377\363\377\377\377" - "\365\377\377\377\366\377\377\377\370\377\377\377\371\377\377\377\372" - "\373\373\374\373\365\365\370\375\357\357\363\376\351\351\357\376\343" - "\343\353\377\334\334\345\376\325\325\341\375\203\326\326\341\377\17\327" - "\327\342\377\0\0\0\377\335\335\335\377eej\377JJM\377\377\377\377\377" - "\0\0\0\377\377\377\377\377\332\332\344\377\0\0\0\377\271\271\276\377" - "\333\333\333\377\0\0\0\377\377\377\377\377\335\335\346\377\202\336\336" - "\346\377\202\337\337\347\377\5\0\0\0\377\377\377\377\377\340\340\350" - "\377\341\341\350\377\341\341\351\377\202\342\342\351\377\21\343\343\351" - "\377\343\343\352\377\344\344\352\377\0\0\0\377\335\335\335\377kkn\377" - "NNO\377\377\377\377\377\0\0\0\377\377\377\377\377\347\347\354\377\0\0" - "\0\377\300\300\302\377\334\334\334\377\0\0\0\377\377\377\377\377\352" - "\352\356\377\202\353\353\357\377\202\354\354\357\377\4oop\377__`\377" - "\377\377\377\377\356\356\361\377\203\357\357\361\377\203\360\360\362" - "\377\205\361\361\362\377\202\360\360\362\377\205\361\361\362\377\202" - "\362\362\363\377\2\363\363\363\377\363\363\364\377\204\364\364\364\377" - "\2\363\363\364\377\363\363\363\377\205\364\364\364\377\14\364\364\364" - "\375\364\364\364\370\364\364\364\357\364\364\364\343\364\364\364\324" - "\364\364\364\301\364\364\364\252\364\364\364\220\364\364\364s\364\364" - "\364R\364\364\364.\364\364\364\10\211\0\0\0\0\20\377\377\377<\241\306" - "\241\374\224\276\224\377o\263o\377F\217F\377H\231H\3779\2079\377:\222" - ":\3772\1772\3775\2125\3774\2054\377M\215M\377j\244j\377e\242e\377a\237" - "a\377\236\304\236\377\205,/,\377\6,.,\377\40'\40\3772s2\3777\2057\377" - "3\2033\377\244\310\244\377\202\377\377\377\377\1\377\377\377\316\202" - "\0\0\0\0\30\377\377\377O\377\377\377\251\377\377\377\335\377\377\377" - "\340\377\377\377\343\377\377\377\346\377\377\377\350\377\377\377\353" - "\377\377\377\355\377\377\377\357\377\377\377\361\377\377\377\363\377" - "\377\377\365\377\377\377\366\377\377\377\370\377\377\377\371\377\377" - "\377\372\374\374\374\373\365\365\370\375\357\357\363\376\351\351\357" - "\376\344\344\354\377\335\335\346\376\326\326\341\375\202\326\326\342" - "\377\202\327\327\342\377\17::<\377www\377,,.\377\276\276\302\377\363" - "\363\366\377\0\0\0\377\377\377\377\377\333\333\345\377\0\0\0\377\377" - "\377\377\377\344\344\352\377\0\0\0\377\377\377\377\377\336\336\346\377" - "\336\336\347\377\202\337\337\347\377\4\340\340\350\377\0\0\0\377\377" - "\377\377\377\341\341\350\377\202\342\342\351\377\2\343\343\351\377\343" - "\343\352\377\202\344\344\352\377\17\345\345\353\377==\77\377www\377/" - "/0\377\302\302\305\377\367\367\371\377\0\0\0\377\377\377\377\377\350" - "\350\355\377\0\0\0\377\377\377\377\377\356\356\361\377\0\0\0\377\377" - "\377\377\377\353\353\357\377\202\354\354\357\377\5\355\355\360\377\315" - "\315\320\377\20\20\20\377\367\367\370\377\370\370\371\377\202\357\357" - "\361\377\204\360\360\362\377\202\361\361\362\377\205\362\362\363\377" - "\202\361\361\362\377\1\361\361\363\377\205\362\362\363\377\2\363\363" - "\363\377\363\363\364\377\202\364\364\364\377\202\363\363\364\377\202" - "\363\363\363\377\205\362\362\363\377\14\362\362\363\375\362\362\363\370" - "\362\362\363\357\362\362\363\343\362\362\363\324\362\362\363\301\362" - "\362\363\252\362\362\363\220\362\362\363s\362\362\363R\362\362\363.\362" - "\362\363\10\211\0\0\0\0\20\347\360\347t\227\300\227\377\223\276\223\377" - "Z\244Z\377E\216E\377F\231F\3777\2067\3779\2219\3771}1\3775\2115\3773" - "\2033\377L\214L\377h\244h\377d\241d\377`\236`\377\235\304\235\377\205" - ",/,\377\6+.+\377#)#\377.l.\3776\2056\3771\2021\377o\250o\377\202\377" - "\377\377\377\33\377\377\377\360\377\377\377s\377\377\377\301\377\377" - "\377\326\377\377\377\331\377\377\377\335\377\377\377\340\377\377\377" - "\343\377\377\377\346\377\377\377\350\377\377\377\353\377\377\377\355" - "\377\377\377\357\377\377\377\361\377\377\377\363\377\377\377\365\377" - "\377\377\366\377\377\377\370\377\377\377\371\377\377\377\372\374\374" - "\375\373\365\365\370\375\357\357\364\376\351\351\360\376\344\344\354" - "\377\336\336\347\376\327\327\342\375\202\327\327\342\377\17\330\330\342" - "\377\330\330\343\377\221\221\227\377!!!\377\20\20\20\377\370\370\372" - "\377\342\342\351\377\0\0\0\377\377\377\377\377\334\334\345\377\0\0\0" - "\377\377\377\377\377\300\300\307\377\0\0\0\377\377\377\377\377\202\337" - "\337\347\377\7\340\340\347\377\340\340\350\377\341\341\350\377\0\0\0" - "\377\377\377\377\377\342\342\351\377\343\343\351\377\202\343\343\352" - "\377\202\344\344\352\377\202\345\345\353\377\17\231\231\235\377!!!\377" - "\20\20\20\377\372\372\373\377\355\355\361\377\0\0\0\377\377\377\377\377" - "\351\351\355\377\0\0\0\377\377\377\377\377\314\314\316\377\0\0\0\377" - "\377\377\377\377\354\354\357\377\354\354\360\377\202\355\355\360\377" - "\4""000\377\200\200\202\377\376\376\376\377\357\357\361\377\202\360\360" - "\362\377\2\361\361\362\377\360\360\362\377\204\361\361\362\377\202\362" - "\362\362\377\204\363\363\363\377\1\362\362\362\377\202\362\362\363\377" - "\1\361\361\362\377\202\362\362\363\377\202\363\363\363\377\202\363\363" - "\364\377\202\363\363\363\377\210\362\362\363\377\14\362\362\363\375\362" - "\362\363\370\362\362\363\357\362\362\363\343\362\362\363\324\362\362" - "\363\301\362\362\363\252\362\362\363\220\362\362\363s\362\362\363R\362" - "\362\363.\362\362\363\10\211\0\0\0\0\20\304\333\304\310\226\277\226\377" - "\214\273\214\377S\237S\377C\215C\377D\230D\3776\2046\3778\2208\3770|" - "0\3774\2074\3772\2022\377R\216R\377l\250l\377w\263w\377r\261r\377\250" - "\317\250\377\204-0-\377$-/-\377,/,\377*.*\377(_(\377\77\235\77\377:\232" - ":\377.\205.\377W\231W\243\377\377\377\222\377\377\377\307\377\377\377" - "\317\377\377\377\322\377\377\377\326\377\377\377\331\377\377\377\335" - "\377\377\377\340\377\377\377\343\377\377\377\346\377\377\377\350\377" - "\377\377\353\377\377\377\355\377\377\377\357\377\377\377\361\377\377" - "\377\363\377\377\377\365\377\377\377\366\377\377\377\370\377\377\377" - "\371\377\377\377\372\374\374\375\373\365\365\370\375\360\360\364\376" - "\352\352\360\376\345\345\354\377\337\337\347\376\330\330\342\375\202" - "\330\330\343\377\203\331\331\343\377\16\0\0\0\377ddd\377\375\375\375" - "\377\333\333\345\377\0\0\0\377\377\377\377\377\335\335\346\377ggk\377" - "333\377JJM\377\0\0\0\377\377\377\377\377\340\340\347\377\0\0\0\377\202" - "\341\341\350\377\5\341\341\351\377\0\0\0\377\377\377\377\377\343\343" - "\351\377\343\343\352\377\202\344\344\352\377\202\345\345\353\377\27\346" - "\346\353\377\346\346\354\377\347\347\354\377\0\0\0\377eee\377\375\375" - "\376\377\351\351\355\377\0\0\0\377\377\377\377\377\352\352\356\377mm" - "o\377333\377NNP\377\0\0\0\377\377\377\377\377\355\355\360\377\0\0\0\377" - "\356\356\360\377\356\356\361\377\0\0\0\377\21\21\21\377\20\20\21\377" - "\360\360\362\377\202\361\361\362\377\1\360\360\362\377\204\361\361\362" - "\377\3\360\360\362\377\360\360\361\377\361\361\362\377\203\362\362\363" - "\377\202\363\363\364\377\205\362\362\363\377\1\363\363\363\377\202\363" - "\363\364\377\202\363\363\363\377\203\362\362\363\377\202\362\362\362" - "\377\204\362\362\363\377\14\362\362\363\375\362\362\363\370\362\362\363" - "\357\364\364\364\343\362\362\363\324\362\362\363\301\362\362\363\252" - "\362\362\363\220\362\362\363s\362\362\363R\362\362\363.\362\362\363\10" - "\210\0\0\0\0\35\377\377\377\31\261\317\261\355\225\277\225\377\202\270" - "\202\377Q\236Q\377A\213A\377B\227B\3774\2034\3778\2178\3770{0\3774\206" - "4\3772\2012\377W\220W\377p\254p\377\211\306\211\377\214\310\214\377\245" - "\321\245\377\206\245\207\377\200\240\201\377y\233z\377r\226t\377k\220" - "m\377d\213f\377\\\205^\377S\221V\377M\253N\377B\263B\3773\2243\377\362" - "\367\362\377\202\377\377\377\377\32\377\377\377\350\377\377\377\322\377" - "\377\377\326\377\377\377\331\377\377\377\335\377\377\377\340\377\377" - "\377\343\377\377\377\346\377\377\377\350\377\377\377\353\377\377\377" - "\355\377\377\377\357\377\377\377\361\377\377\377\363\377\377\377\365" - "\377\377\377\366\377\377\377\370\377\377\377\371\377\377\377\372\374" - "\374\375\373\366\366\370\375\360\360\364\376\352\352\360\376\345\345" - "\354\377\337\337\350\376\330\330\343\375\203\331\331\343\377\202\332" - "\332\344\377\6\333\333\344\377\377\377\377\377\361\361\365\377\334\334" - "\345\377\335\335\345\377\377\377\377\377\202\336\336\346\377\7\360\360" - "\364\377\371\371\372\377\364\364\367\377\377\377\377\377\340\340\350" - "\377\341\341\350\377\377\377\377\377\202\342\342\351\377\2\343\343\351" - "\377\377\377\377\377\202\344\344\352\377\202\345\345\353\377\202\346" - "\346\353\377\203\347\347\354\377\17\350\350\355\377\377\377\377\377\366" - "\366\370\377\351\351\356\377\352\352\356\377\377\377\377\377\353\353" - "\356\377\353\353\357\377\366\366\370\377\373\373\374\377\371\371\372" - "\377\377\377\377\377\356\356\360\377\356\356\361\377\377\377\377\377" - "\202\357\357\361\377\1\377\377\377\377\202\376\376\376\377\5\361\361" - "\363\377\362\362\363\377\361\361\362\377\360\360\362\377\360\360\361" - "\377\202\361\361\362\377\204\362\362\362\377\2\362\362\363\377\363\363" - "\363\377\206\362\362\363\377\202\363\363\363\377\2\363\363\364\377\363" - "\363\363\377\202\362\362\363\377\203\362\362\362\377\206\361\361\362" - "\377\14\361\361\362\375\361\361\362\370\361\361\362\357\361\361\362\343" - "\361\361\362\324\361\361\362\301\361\361\362\252\361\361\362\220\361" - "\361\362s\361\361\362R\361\361\362.\361\361\362\10\210\0\0\0\0\35\377" - "\377\377F\241\306\241\374\224\276\224\377x\265x\377O\235O\377\77\213" - "\77\377@\226@\3773\2023\3777\2167\377/z/\3774\2044\3771\2001\377W\220" - "W\377o\253o\377\243\317\243\377\275\307\275\377\262\267\263\377\307\307" - "\307\377\344\344\344\377\360\360\360\377\367\367\370\377\321\321\324" - "\377\263\263\266\377\205\205\211\377\\\\a\377TXZ\377ItN\3775\2265\377" - "\214\246\214\377\202\277\277\277\377\32\306\306\306\370\377\377\377\322" - "\377\377\377\326\377\377\377\331\377\377\377\335\377\377\377\340\377" - "\377\377\343\377\377\377\346\377\377\377\350\377\377\377\353\377\377" - "\377\355\377\377\377\357\377\377\377\361\377\377\377\363\377\377\377" - "\365\377\377\377\366\377\377\377\370\377\377\377\371\377\377\377\372" - "\374\374\375\373\366\366\370\375\360\360\364\376\353\353\360\376\346" - "\346\355\377\340\340\350\377\331\331\343\375\203\332\332\344\377\2\333" - "\333\344\377\333\333\345\377\202\334\334\345\377\1\300\300\306\377\203" - "\17\17\17\377\1\300\300\310\377\202\337\337\347\377\202\340\340\350\377" - "\202\341\341\350\377\202\342\342\351\377\2\305\305\312\377\343\343\352" - "\377\202\344\344\352\377\203\345\345\353\377\2\346\346\353\377\346\346" - "\354\377\202\347\347\354\377\202\350\350\355\377\202\351\351\355\377" - "\6>>\77\377\20\20\20\377\0\0\0\377//0\377\315\315\317\377\354\354\357" - "\377\203\355\355\360\377\202\356\356\361\377\202\357\357\361\377\4\320" - "\320\322\377\360\360\362\377\361\361\362\377\361\361\363\377\202\362" - "\362\363\377\2\363\363\363\377\361\361\362\377\202\360\360\361\377\4" - "\0\0\0\377\360\360\361\377\361\361\362\377\362\362\362\377\202\362\362" - "\363\377\2\363\363\364\377\363\363\363\377\207\362\362\363\377\1\363" - "\363\363\377\202\362\362\363\377\202\362\362\362\377\1\320\320\322\377" - "\203\361\361\362\377\1\360\360\361\377\204\361\361\362\377\14\361\361" - "\362\375\361\361\362\370\361\361\362\357\361\361\362\343\361\361\362" - "\324\361\361\362\301\361\361\362\252\361\361\362\220\361\361\362s\361" - "\361\362R\361\361\362.\361\361\362\10\210\0\0\0\0\21\351\362\351}\227" - "\300\227\377\223\275\223\377\\\234\\\377D\215D\377>\211>\377A\213A\377" - "[\232[\377Z\227Z\377X\224X\377B\202B\377,q,\377X\226X\377x\257x\377\271" - "\275\271\377\256\256\257\377\357\357\357\377\202\377\377\377\377\12\367" - "\367\370\377\350\350\352\377\325\325\330\377\300\300\304\377\250\250" - "\256\377\204\204\213\377\\\\a\377QQW\3776H:\377\220\265\220\377\202\377" - "\377\377\377\36\377\377\377\376\377\377\377\322\377\377\377\326\377\377" - "\377\331\377\377\377\335\377\377\377\340\377\377\377\343\377\377\377" - "\346\377\377\377\350\377\377\377\353\377\377\377\355\377\377\377\357" - "\377\377\377\361\377\377\377\363\377\377\377\365\377\377\377\366\377" - "\377\377\370\377\377\377\371\377\377\377\372\374\374\375\373\366\366" - "\370\375\360\360\365\376\353\353\361\376\346\346\355\377\341\341\351" - "\377\332\332\344\375\333\333\344\377\332\332\344\377\333\333\344\377" - "\333\333\345\377\202\334\334\345\377\10\335\335\346\377;;=\377iim\377" - "\375\375\375\377\207\207\207\377333\377\344\344\352\377\340\340\350\377" - "\202\341\341\350\377\202\342\342\351\377\5\343\343\351\377\343\343\352" - "\377\0\0\0\377\350\350\355\377\344\344\352\377\202\345\345\353\377\2" - "\346\346\353\377\346\346\354\377\202\347\347\354\377\202\350\350\355" - "\377\202\351\351\355\377\13\352\352\356\377NNO\377//0\377\372\372\373" - "\377\376\376\376\377fff\377222\377\357\357\362\377\355\355\360\377\356" - "\356\360\377\356\356\361\377\202\357\357\361\377\202\360\360\362\377" - "\2\0\0\0\377\363\363\365\377\202\362\362\363\377\10\363\363\363\377\363" - "\363\364\377\362\362\363\377\361\361\362\377\357\357\361\377\360\360" - "\362\377\0\0\0\377\377\377\377\377\203\361\361\362\377\202\362\362\363" - "\377\1\362\362\362\377\202\361\361\362\377\202\362\362\362\377\204\362" - "\362\363\377\202\362\362\362\377\202\361\361\362\377\3\0\0\0\377\360" - "\360\361\377\361\361\361\377\202\360\360\361\377\204\361\361\362\377" - "\14\361\361\362\375\361\361\362\370\361\361\362\357\361\361\362\343\361" - "\361\362\324\361\361\362\301\361\361\362\252\361\361\362\220\361\361" - "\362s\361\361\362R\361\361\362.\361\361\362\10\210\0\0\0\0\16\303\333" - "\303\310\226\277\226\377\222\275\222\377N\223N\377C\214C\377<\210<\377" - "Y\232Y\377\204\263\204\377\203\260\203\377\202\256\202\377L\210L\377" - "+o+\377[\230[\377\177\252\177\377\202\262\262\262\377)\372\372\372\377" - "\377\377\377\377\367\367\370\377\350\350\352\377\325\325\330\377\300" - "\300\304\377\250\250\256\377\216\216\226\377mmu\377RRV\377\\\\a\377Q" - "QW\377\15-\15\377\273\326\273\331\377\377\377\312\377\377\377\317\377" - "\377\377\322\377\377\377\326\377\377\377\331\377\377\377\335\377\377" - "\377\340\377\377\377\343\377\377\377\346\377\377\377\350\377\377\377" - "\353\377\377\377\355\377\377\377\357\377\377\377\361\377\377\377\363" - "\377\377\377\365\377\377\377\366\377\377\377\370\377\377\377\371\377" - "\377\377\372\374\374\375\373\366\366\371\375\361\361\365\376\353\353" - "\361\376\347\347\356\377\341\341\351\377\333\333\344\375\202\333\333" - "\345\377\202\334\334\345\377\202\335\335\346\377\11\336\336\346\377\0" - "\0\0\377\366\366\371\377\360\360\364\377\340\340\347\377\0\0\0\377\371" - "\371\372\377\341\341\350\377\0\0\0\377\202\342\342\351\377\10\0\0\0\377" - "\343\343\352\377jjm\377\0\0\0\377UUU\377\345\345\353\377\346\346\353" - "\377\346\346\354\377\202\347\347\354\377\1\350\350\354\377\202\350\350" - "\355\377\2\351\351\355\377\351\351\356\377\202\352\352\356\377\21\0\0" - "\0\377\306\306\310\377\373\373\374\377\354\354\357\377\355\355\360\377" - "\0\0\0\377\374\374\374\377\356\356\361\377\0\0\0\377\357\357\361\377" - "\360\360\362\377\0\0\0\377\361\361\362\377ppq\377\0\0\0\377UUU\377\362" - "\362\363\377\202\363\363\364\377\202\363\363\363\377\33\361\361\362\377" - "\360\360\362\377\360\360\361\377\0\0\0\377\377\377\377\377\0\0\0\377" - "QQQ\377\40\40\40\377\0\0\0\377qqq\377\362\362\362\377\0\0\0\377QQQ\377" - "\40\40\40\377\0\0\0\377qqq\377\362\362\362\377\0\0\0\377\357\357\361" - "\377\360\360\362\377\0\0\0\377\361\361\362\377ppq\377\0\0\0\377UUU\377" - "\362\362\363\377\360\360\361\377\205\357\357\360\377\14\357\357\360\375" - "\357\357\360\370\357\357\360\357\357\357\360\343\357\357\360\324\357" - "\357\360\301\357\357\360\252\357\357\360\220\357\357\360s\357\357\360" - "R\357\357\360.\357\357\360\10\207\0\0\0\0\17\377\377\377\31\261\317\261" - "\355\225\277\225\377\204\264\204\377H\220H\377A\213A\377:\207:\377b\237" - "b\377\204\262\204\377\203\260\203\377\202\255\202\377A\201A\377*n*\377" - "f\242f\377t\223t\377\202\262\262\262\377\15""000\377\253\253\253\377" - "\350\350\352\377\325\325\330\377\300\300\304\377\250\250\256\377\216" - "\216\226\377``g\377\32\32\34\377\33\33\34\377ffk\377\\\\a\377\6\27\6" - "\377\203\377\377\377\377\31\377\377\377\361\377\377\377\326\377\377\377" - "\331\377\377\377\335\377\377\377\340\377\377\377\343\377\377\377\346" - "\377\377\377\350\377\377\377\353\377\377\377\355\377\377\377\357\377" - "\377\377\361\377\377\377\363\377\377\377\365\377\377\377\366\377\377" - "\377\370\377\377\377\371\377\377\377\372\374\374\375\373\366\366\371" - "\375\361\361\365\376\354\354\361\376\350\350\356\377\342\342\352\377" - "\334\334\345\375\202\334\334\345\377\2\335\335\345\377\335\335\346\377" - "\202\336\336\346\377\3\336\336\347\377\0\0\0\377\377\377\377\377\202" - "\340\340\350\377\15\0\0\0\377\377\377\377\377\342\342\351\377\0\0\0\377" - "\377\377\377\377\343\343\352\377\0\0\0\377\377\377\377\377\345\345\353" - "\377\0\0\0\377\377\377\377\377\367\367\370\377\346\346\354\377\202\347" - "\347\354\377\202\350\350\355\377\2\351\351\355\377\351\351\356\377\202" - "\352\352\356\377\23\353\353\356\377\353\353\357\377\0\0\0\377\377\377" - "\377\377\361\361\363\377\355\355\360\377\356\356\360\377\0\0\0\377\377" - "\377\377\377\357\357\361\377\0\0\0\377\377\377\377\377\360\360\362\377" - "\0\0\0\377\377\377\377\377\362\362\363\377\0\0\0\377\377\377\377\377" - "\373\373\373\377\202\364\364\364\377\34\363\363\364\377\363\363\363\377" - "\361\361\362\377\360\360\361\377\361\361\362\377\0\0\0\377\377\377\377" - "\377\0\0\0\377\252\252\252\377\373\373\373\377\333\333\333\377\0\0\0" - "\377\370\370\371\377\0\0\0\377\252\252\252\377\373\373\373\377\333\333" - "\333\377\0\0\0\377\370\370\371\377\0\0\0\377\377\377\377\377\360\360" - "\362\377\0\0\0\377\377\377\377\377\362\362\363\377\0\0\0\377\377\377" - "\377\377\373\373\373\377\206\357\357\360\377\14\357\357\360\375\357\357" - "\360\370\357\357\360\357\357\357\360\343\357\357\360\324\357\357\360" - "\301\357\357\360\252\357\357\360\220\357\357\360s\357\357\360R\357\357" - "\360.\357\357\360\10\207\0\0\0\0\22\377\377\377F\240\305\240\374\224" - "\276\224\377v\254v\377F\216F\377\77\212\77\3778\2068\377p\247p\377\203" - "\261\203\377\202\257\202\377\201\254\201\377A\177A\377*m*\377e\241e\377" - "MsM\377\247\247\247\377\262\262\262\377CCC\377\202\0\0\0\377\3""223\377" - ",,.\377&&(\377\203\0\0\0\377\5==\77\377ppu\377``e\377\2\7\2\377\325\345" - "\325\377\202\377\377\377\377\31\377\377\377\372\377\377\377\326\377\377" - "\377\331\377\377\377\335\377\377\377\340\377\377\377\343\377\377\377" - "\346\377\377\377\350\377\377\377\353\377\377\377\355\377\377\377\357" - "\377\377\377\361\377\377\377\363\377\377\377\365\377\377\377\366\377" - "\377\377\370\377\377\377\371\377\377\377\372\374\374\375\373\366\366" - "\371\375\362\362\365\376\355\355\362\376\350\350\356\377\343\343\352" - "\377\335\335\345\375\203\335\335\346\377\2\336\336\346\377\336\336\347" - "\377\202\337\337\347\377\2\0\0\0\377\377\377\377\377\202\341\341\350" - "\377\13\0\0\0\377\377\377\377\377\343\343\351\377\0\0\0\377\377\377\377" - "\377\344\344\352\377\0\0\0\377\377\377\377\377\345\345\353\377\0\0\0" - "\377\377\377\377\377\202\347\347\354\377\202\350\350\355\377\202\351" - "\351\355\377\202\352\352\356\377\2\353\353\356\377\353\353\357\377\202" - "\354\354\357\377\25\20\20\20\377\314\314\314\377\355\355\360\377\356" - "\356\360\377\316\316\321\377\0\0\0\377\377\377\377\377\360\360\362\377" - "\0\0\0\377\377\377\377\377\361\361\363\377\0\0\0\377\377\377\377\377" - "\363\363\363\377\0\0\0\377\377\377\377\377\364\364\364\377\364\364\365" - "\377\365\365\365\377\364\364\364\377\363\363\364\377\202\361\361\362" - "\377\32\363\363\363\377\0\0\0\377\377\377\377\377\0\0\0\377\377\377\377" - "\377\366\366\366\377\361\361\362\377\0\0\0\377\377\377\377\377\0\0\0" - "\377\377\377\377\377\366\366\366\377\361\361\362\377\0\0\0\377\377\377" - "\377\377\0\0\0\377\377\377\377\377\361\361\363\377\0\0\0\377\377\377" - "\377\377\363\363\363\377\0\0\0\377\377\377\377\377\364\364\364\377\355" - "\355\357\377\356\356\357\377\204\357\357\360\377\14\357\357\360\375\357" - "\357\360\370\357\357\360\357\357\357\360\343\357\357\360\324\357\357" - "\360\301\357\357\360\252\357\357\360\220\357\357\360s\357\357\360R\357" - "\357\360.\357\357\360\10\207\0\0\0\0\37\351\362\351}\227\300\227\377" - "\223\275\223\377h\243h\377D\215D\377=\211=\3776\2056\377g\232g\377j\227" - "j\377i\225i\377g\222g\3771t1\377*l*\377d\241d\377j\245j\3779F9\377zz" - "z\377\262\262\262\377\221\221\221\377YYY\377,,,\377+++\377))*\377(((" - "\377KKL\377rrt\377\203\203\206\377[[^\377\25\25\26\377\20=\20\377|\243" - "|\377\202\277\277\277\377\31\275\275\275\377\377\377\377\326\377\377" - "\377\331\377\377\377\335\377\377\377\340\377\377\377\343\377\377\377" - "\346\377\377\377\350\377\377\377\353\377\377\377\355\377\377\377\357" - "\377\377\377\361\377\377\377\363\377\377\377\365\377\377\377\366\377" - "\377\377\370\377\377\377\371\377\377\377\372\374\374\375\373\367\367" - "\371\375\362\362\365\376\355\355\362\376\350\350\356\377\344\344\353" - "\377\335\335\346\375\202\336\336\346\377\1\336\336\347\377\202\337\337" - "\347\377\21\340\340\347\377\340\340\350\377--.\377\210\210\210\377\342" - "\342\351\377yy|\377--/\377\377\377\377\377\343\343\352\377\0\0\0\377" - "\377\377\377\377\267\267\274\377\0\0\0\377\377\377\377\377\346\346\354" - "\377\0\0\0\377\377\377\377\377\202\350\350\355\377\202\351\351\355\377" - "\203\352\352\356\377\202\353\353\357\377\202\354\354\357\377\21\355\355" - "\360\377OOP\377UUU\377\361\361\364\377\357\357\361\377```\377AAA\377" - "\377\377\377\377\361\361\362\377\0\0\0\377\377\377\377\377\302\302\302" - "\377\0\0\0\377\377\377\377\377\363\363\364\377\0\0\0\377\377\377\377" - "\377\203\365\365\365\377\202\364\364\364\377\7\362\362\362\377\363\363" - "\363\377\364\364\364\377\0\0\0\377\377\377\377\377\0\0\0\377\377\377" - "\377\377\202\361\361\362\377\21\0\0\0\377\377\377\377\377\0\0\0\377\252" - "\252\252\377\373\373\373\377\333\333\333\377\0\0\0\377\370\370\371\377" - "\0\0\0\377\377\377\377\377\302\302\302\377\0\0\0\377\377\377\377\377" - "\363\363\364\377\0\0\0\377\377\377\377\377\365\365\365\377\206\355\355" - "\357\377\14\355\355\357\375\355\355\357\370\355\355\357\357\355\355\357" - "\343\355\355\357\324\355\355\357\301\355\355\357\252\355\355\357\220" - "\355\355\357s\355\355\357R\355\355\357.\355\355\357\10\207\0\0\0\0\37" - "\306\334\306\316\226\277\226\377\221\275\221\377Z\233Z\377B\214B\377" - ";\210;\3775\2045\377\204\263\204\377\203\260\203\377\202\256\202\377" - "\201\253\201\377+o+\377-n-\377b\240b\377q\261q\377v\267v\377<a<\377\34" - "0\34\377\33""0\33\377\31/\31\377\30/\30\377\27.\27\377\25.\25\377\24" - ".\24\377\22-\22\377\21-\21\377\17,\17\377\16+\16\377\36j\36\377)\235" - ")\377q\250q\377\203\377\377\377\377\30\377\377\377\350\377\377\377\331" - "\377\377\377\335\377\377\377\340\377\377\377\343\377\377\377\346\377" - "\377\377\350\377\377\377\353\377\377\377\355\377\377\377\357\377\377" - "\377\361\377\377\377\363\377\377\377\365\377\377\377\366\377\377\377" - "\370\377\377\377\371\377\377\377\372\374\374\375\373\367\367\371\375" - "\362\362\365\376\356\356\362\376\351\351\357\377\345\345\353\377\336" - "\336\346\375\203\337\337\347\377\1\340\340\347\377\202\340\340\350\377" - "\23\341\341\350\377\303\303\312\377!!!\377\20\20\20\377\17\17\20\377" - "\320\320\323\377\372\372\373\377\344\344\352\377LLN\377\0\0\0\377==\77" - "\377\0\0\0\377\377\377\377\377\347\347\354\377\0\0\0\377\21\21\21\377" - "\350\350\355\377\351\351\355\377\351\351\356\377\202\352\352\356\377" - "\202\353\353\357\377\202\354\354\357\377\202\355\355\360\377\21\356\356" - "\360\377\316\316\321\377222\377\21\21\21\377\0\0\0\377000\377\330\330" - "\331\377\373\373\374\377\361\361\363\377QQQ\377\0\0\0\377AAA\377\0\0" - "\0\377\377\377\377\377\364\364\365\377!!!\377\0\0\0\377\204\365\365\365" - "\377\2\364\364\364\377\363\363\364\377\202\363\363\363\377\31\0\0\0\377" - "\377\377\377\377\0\0\0\377\377\377\377\377\361\361\361\377\360\360\361" - "\377\0\0\0\377\377\377\377\377\0\0\0\377QQQ\377\40\40\40\377\0\0\0\377" - "qqq\377\362\362\362\377QQQ\377\0\0\0\377AAA\377\0\0\0\377\377\377\377" - "\377\364\364\365\377!!!\377\0\0\0\377\365\365\365\377\355\355\357\377" - "\355\355\356\377\204\355\355\357\377\14\355\355\357\375\355\355\357\370" - "\355\355\357\357\355\355\357\343\355\355\357\324\355\355\357\301\355" - "\355\357\252\355\355\357\220\355\355\357s\355\355\357R\355\355\357.\355" - "\355\357\10\206\0\0\0\0\40\377\377\377%\260\317\260\355\225\276\225\377" - "\220\274\220\377G\217G\377@\213@\377:\207:\377C\214C\377\203\262\203" - "\377\203\257\203\377\202\255\202\377\200\252\200\377*n*\3778x8\377a\237" - "a\377o\260o\377|\302|\377\220\315\220\377\216\277\216\377s\247s\377\207" - "\276\207\377k\245k\377\177\274\177\377|\273|\377x\272x\377t\271t\377" - "q\267q\377U\236U\377i\264i\377/\251/\377)\245)\377E\216E\377\203\377" - "\377\377\377\30\377\377\377\365\377\377\377\331\377\377\377\335\377\377" - "\377\340\377\377\377\343\377\377\377\346\377\377\377\350\377\377\377" - "\353\377\377\377\355\377\377\377\357\377\377\377\361\377\377\377\363" - "\377\377\377\365\377\377\377\366\377\377\377\370\377\377\377\371\377" - "\377\377\372\374\374\375\373\367\367\371\375\362\362\366\376\356\356" - "\362\376\352\352\357\377\346\346\354\377\337\337\347\375\202\337\337" - "\347\377\202\340\340\350\377\202\341\341\350\377\202\342\342\351\377" - "\2\347\347\354\377\373\373\374\377\202\375\375\376\377\7\350\350\356" - "\377\345\345\353\377\346\346\353\377\367\367\370\377\377\377\377\377" - "\371\371\372\377\377\377\377\377\202\350\350\355\377\2\377\377\377\377" - "\376\376\376\377\202\352\352\356\377\2\353\353\356\377\353\353\357\377" - "\202\354\354\357\377\202\355\355\360\377\1\356\356\360\377\202\356\356" - "\361\377\15\357\357\361\377\361\361\363\377\374\374\374\377\376\376\376" - "\377\377\377\377\377\374\374\375\377\364\364\365\377\362\362\363\377" - "\363\363\364\377\373\373\373\377\377\377\377\377\374\374\374\377\377" - "\377\377\377\202\365\365\365\377\2\376\376\376\377\377\377\377\377\202" - "\365\365\365\377\1\364\364\365\377\203\364\364\364\377\5\363\363\364" - "\377\363\363\363\377\377\377\377\377\363\363\363\377\377\377\377\377" - "\202\360\360\361\377\3\357\357\361\377\377\377\377\377\0\0\0\377\202" - "\360\360\361\377\202\361\361\361\377\6\362\362\363\377\363\363\364\377" - "\373\373\373\377\377\377\377\377\374\374\374\377\377\377\377\377\202" - "\365\365\365\377\4\376\376\376\377\377\377\377\377\354\354\355\377\353" - "\353\355\377\204\355\355\357\377\14\355\355\357\375\355\355\357\370\355" - "\355\357\357\355\355\357\343\355\355\357\324\355\355\357\301\355\355" - "\357\252\355\355\357\220\355\355\357s\355\355\357R\355\355\357.\355\355" - "\357\10\206\0\0\0\0!\377\377\377R\240\305\240\374\223\276\223\377\202" - "\263\202\377E\216E\377>\212>\3778\2068\377L\221L\377\203\261\203\377" - "\202\257\202\377\201\254\201\377k\233k\377*m*\3777w7\377`\236`\377n\260" - "n\377{\302{\377\217\314\217\377\215\277\215\377r\246r\377\206\275\206" - "\377j\244j\377\177\273\177\377{\272{\377w\271w\377s\270s\377p\267p\377" - "T\235T\377h\263h\377A\260A\377(\244(\377\33~\33\377\340\354\340\376\202" - "\377\377\377\374\30\377\377\377\367\377\377\377\331\377\377\377\335\377" - "\377\377\340\377\377\377\343\377\377\377\346\377\377\377\350\377\377" - "\377\353\377\377\377\355\377\377\377\357\377\377\377\361\377\377\377" - "\363\377\377\377\365\377\377\377\366\377\377\377\370\377\377\377\371" - "\377\377\377\372\374\374\375\373\367\367\371\375\363\363\366\376\356" - "\356\363\376\352\352\357\377\346\346\354\377\340\340\347\375\202\340" - "\340\350\377\202\341\341\350\377\202\342\342\351\377\1\343\343\351\377" - "\202\343\343\352\377\202\344\344\352\377\202\345\345\353\377\2\346\346" - "\353\377\346\346\354\377\202\347\347\354\377\202\350\350\355\377\202" - "\351\351\355\377\202\352\352\356\377\1\353\353\356\377\202\353\353\357" - "\377\2\354\354\357\377\354\354\360\377\202\355\355\360\377\2\356\356" - "\360\377\356\356\361\377\202\357\357\361\377\202\360\360\362\377\2\361" - "\361\362\377\361\361\363\377\202\362\362\363\377\2\363\363\363\377\363" - "\363\364\377\202\364\364\364\377\1\364\364\365\377\207\365\365\365\377" - "\203\364\364\364\377\202\363\363\364\377\202\363\363\363\377\203\362" - "\362\363\377\6\362\362\362\377\361\361\362\377\361\361\361\377\361\361" - "\362\377\0\0\0\377\360\360\361\377\203\361\361\361\377\6\360\360\361" - "\377\361\361\362\377\360\360\361\377\355\355\356\377\354\354\355\377" - "\352\352\354\377\202\351\351\353\377\210\353\353\355\377\14\353\353\355" - "\375\353\353\355\370\353\353\355\357\353\353\355\343\353\353\355\324" - "\353\353\355\301\353\353\355\252\353\353\355\220\353\353\355s\353\353" - "\355R\353\353\355.\353\353\355\10\206\0\0\0\0;\314\340\314\207\227\300" - "\227\377\222\275\222\377p\250p\377C\215C\377<\211<\3776\2056\377G\215" - "G\377Z\226Z\377X\223X\377W\220W\377K\205K\377)l)\3776v6\377_\236_\377" - "m\257m\377y\302y\377\215\314\215\377\214\277\214\377q\246q\377\205\275" - "\205\377i\244i\377}\273}\377z\272z\377v\271v\377r\270r\377o\267o\377" - "S\235S\377g\262g\377;\237;\377&\243&\377\33\206\33\3777\2067\374\377" - "\377\377\317\377\377\377\322\377\377\377\326\377\377\377\331\377\377" - "\377\335\377\377\377\340\377\377\377\343\377\377\377\346\377\377\377" - "\350\377\377\377\353\377\377\377\355\377\377\377\357\377\377\377\361" - "\377\377\377\363\377\377\377\365\377\377\377\366\377\377\377\370\377" - "\377\377\371\377\377\377\372\374\374\375\373\367\367\371\375\363\363" - "\366\376\357\357\363\376\353\353\357\377\347\347\355\377\341\341\350" - "\375\202\341\341\350\377\1\341\341\351\377\202\342\342\351\377\2\343" - "\343\351\377\343\343\352\377\202\344\344\352\377\202\345\345\353\377" - "\2\346\346\353\377\346\346\354\377\202\347\347\354\377\2\350\350\354" - "\377\350\350\355\377\202\351\351\355\377\1\351\351\356\377\202\352\352" - "\356\377\202\353\353\357\377\202\354\354\357\377\202\355\355\360\377" - "\2\356\356\360\377\356\356\361\377\202\357\357\361\377\202\360\360\362" - "\377\202\361\361\362\377\1\361\361\363\377\202\362\362\363\377\202\363" - "\363\364\377\2\364\364\364\377\364\364\365\377\207\365\365\365\377\1" - "\364\364\365\377\204\364\364\364\377\203\363\363\363\377\202\362\362" - "\363\377\7\362\362\362\377\362\362\363\377\362\362\362\377\361\361\362" - "\377\361\361\361\377\361\361\362\377\363\363\364\377\205\360\360\361" - "\377\5\357\357\360\377\356\356\360\377\355\355\356\377\353\353\355\377" - "\353\353\356\377\202\352\352\354\377\202\351\351\353\377\206\353\353" - "\355\377\14\353\353\355\375\353\353\355\370\353\353\355\357\353\353\355" - "\343\353\353\355\324\353\353\355\301\353\353\355\252\353\353\355\220" - "\353\353\355s\353\353\355R\353\353\355.\353\353\355\10\206\0\0\0\0;\316" - "\341\316\306\225\277\225\377\221\274\221\377j\222j\377c\201c\377PoP\377" - "]}]\377[|[\377ZzZ\377XxX\377GgG\377UuU\377TsT\377<_<\377X\223X\377n\261" - "n\377w\301w\377\203\307\203\377\201\277\201\377m\255m\377x\274x\377d" - "\253d\377o\272o\377k\271k\377f\270f\377b\266b\377]\264]\377I\242I\377" - "`\257`\3779\2319\377$\242$\377\33\216\33\377\21o\21\377\377\377\377\317" - "\377\377\377\322\377\377\377\326\377\377\377\331\377\377\377\335\377" - "\377\377\340\377\377\377\343\377\377\377\346\377\377\377\350\377\377" - "\377\353\377\377\377\355\377\377\377\357\377\377\377\361\377\377\377" - "\363\377\377\377\365\377\377\377\366\377\377\377\370\377\377\377\371" - "\377\377\377\372\374\374\375\373\370\370\371\375\363\363\366\376\357" - "\357\363\376\353\353\360\377\350\350\355\377\341\341\351\375\203\342" - "\342\351\377\2\343\343\351\377\343\343\352\377\202\344\344\352\377\202" - "\345\345\353\377\202\346\346\353\377\11\255\255\261\377HHI\377\16\16" - "\16\377\35\35\35\377---\377<<<\377||}\377\306\306\311\377\352\352\356" - "\377\202\353\353\357\377\202\354\354\357\377\202\355\355\360\377\2\356" - "\356\360\377\356\356\361\377\203\357\357\361\377\202\360\360\362\377" - "\2\361\361\362\377\361\361\363\377\202\362\362\363\377\11\363\363\364" - "\377\266\266\267\377LLL\377\16\16\16\377\35\35\35\377---\377<<<\377\200" - "\200\200\377\316\316\316\377\202\365\365\365\377\1\364\364\365\377\205" - "\364\364\364\377\2\363\363\364\377\363\363\363\377\202\362\362\363\377" - "\204\362\362\362\377\203\361\361\362\377\16\267\267\270\377XXY\377\40" - "\40\40\377,,,\377888\377FFF\377\203\203\204\377\312\312\313\377\356\356" - "\357\377\355\355\357\377\355\355\356\377\353\353\355\377\352\352\354" - "\377\352\352\353\377\204\351\351\353\377\204\353\353\355\377\14\353\353" - "\355\375\353\353\355\370\353\353\355\357\353\353\355\343\353\353\355" - "\324\353\353\355\301\353\353\355\252\353\353\355\220\353\353\355s\353" - "\353\355R\353\353\355.\353\353\355\10\205\0\0\0\0<\377\377\377%\265\322" - "\265\350\224\276\224\377\220\274\220\377\256\267\262\377ccw\377XXl\377" - "MMa\377BBV\37799L\37711C\377)):\377!!0\377\31\31'\377\12\12\20\377Eu" - "E\377s\270s\377v\301v\377\213\313\213\377\212\277\212\377o\246o\377\203" - "\275\203\377g\243g\377{\273{\377x\272x\377t\271t\377p\267p\377l\266l" - "\377Q\234Q\377e\261e\3775\2165\377#\241#\377\33\225\33\377\20n\20\377" - "\271\324\271\337\377\377\377\322\377\377\377\326\377\377\377\331\377" - "\377\377\335\377\377\377\340\377\377\377\343\377\377\377\346\377\377" - "\377\350\377\377\377\353\377\377\377\355\377\377\377\357\377\377\377" - "\361\377\377\377\363\377\377\377\365\377\377\377\366\377\377\377\370" - "\377\377\377\371\377\377\377\372\374\374\375\373\370\370\372\375\363" - "\363\366\376\360\360\363\376\354\354\360\377\350\350\356\377\342\342" - "\351\375\202\343\343\351\377\1\343\343\352\377\202\344\344\352\377\203" - "\345\345\353\377\6\346\346\353\377\346\346\354\377eeg\377\0\0\0\377\5" - "\5\5\377\2\2\2\377\202\0\0\0\377\4\4\4\4\377\"\"\"\377]]]\377\244\244" - "\246\377\202\354\354\357\377\203\355\355\360\377\202\356\356\361\377" - "\202\357\357\361\377\202\360\360\362\377\2\361\361\362\377\361\361\363" - "\377\202\362\362\363\377\202\363\363\364\377\4jjj\377\0\0\0\377\5\5\5" - "\377\2\2\2\377\202\0\0\0\377\4\4\4\4\377\"\"\"\377]]]\377\247\247\250" - "\377\205\364\364\364\377\202\363\363\364\377\202\363\363\363\377\203" - "\362\362\363\377\1\362\362\362\377\203\361\361\362\377\5\360\360\361" - "\377hhi\377\0\0\0\377\5\5\5\377\2\2\2\377\202\0\0\0\377\7\4\4\4\377\"" - "\"\"\377]]]\377\245\245\245\377\355\355\356\377\354\354\356\377\354\354" - "\355\377\202\352\352\354\377\2\351\351\353\377\350\350\353\377\206\351" - "\351\353\377\14\351\351\353\375\351\351\353\370\351\351\353\357\351\351" - "\353\343\351\351\353\324\351\351\353\301\351\351\353\252\351\351\353" - "\220\351\351\353s\351\351\353R\351\351\353.\351\351\353\10\205\0\0\0" - "\0>\377\377\377R\243\307\243\371\223\276\223\377\217\273\217\377\261" - "\261\267\377nn\202\377ccw\377XXl\377MMa\377BBV\37799L\37711C\377)):\377" - "!!0\377\16\16\25\377DuD\377q\270q\377t\300t\377\203\277\203\377\212\276" - "\212\377n\245n\377\202\274\202\377f\243f\377z\272z\377w\271w\377s\270" - "s\377o\267o\377l\265l\377P\233P\377d\260d\377H\226H\377!\240!\377\33" - "\234\33\377\17m\17\377r\251r\360\377\377\377\322\377\377\377\326\377" - "\377\377\331\377\377\377\335\377\377\377\340\377\377\377\343\377\377" - "\377\346\377\377\377\350\377\377\377\353\377\377\377\355\377\377\377" - "\357\377\377\377\361\377\377\377\363\377\377\377\365\377\377\377\366" - "\377\377\377\370\377\377\377\371\377\377\377\372\375\375\375\373\370" - "\370\372\375\364\364\366\376\360\360\364\376\354\354\361\377\351\351" - "\356\377\343\343\352\375\344\344\352\377\343\343\352\377\202\344\344" - "\352\377\202\345\345\353\377\10\346\346\353\377\346\346\354\377\347\347" - "\354\377VVX\377\0\0\0\377\11\11\11\377@@@\377xxx\377\202\177\177\177" - "\377\5xxx\377@@@\377\7\7\7\377ooo\377\275\275\276\377\202\355\355\360" - "\377\2\356\356\360\377\356\356\361\377\202\357\357\361\377\202\360\360" - "\362\377\2\361\361\362\377\361\361\363\377\202\362\362\363\377\1\363" - "\363\363\377\202\363\363\364\377\5[[[\377\0\0\0\377\1\13\1\377\0M\0\377" - "\0\220\0\377\202\0\231\0\377\5\0\220\0\377\0M\0\377\7\7\7\377ooo\377" - "\300\300\300\377\202\364\364\364\377\202\363\363\364\377\203\363\363" - "\363\377\202\362\362\363\377\1\362\362\362\377\203\361\361\362\377\7" - "\361\361\361\377\360\360\361\377YYZ\377\0\0\0\377\16\16\1\377ee\0\377" - "\275\275\0\377\202\311\311\0\377\5\275\275\0\377ee\0\377\7\7\7\377oo" - "o\377\275\275\275\377\203\353\353\355\377\202\351\351\353\377\3\350\350" - "\352\377\351\351\353\377\350\350\353\377\204\351\351\353\377\14\351\351" - "\353\375\351\351\353\370\351\351\353\357\351\351\353\343\351\351\353" - "\324\351\351\353\301\351\351\353\252\351\351\353\220\351\351\353s\351" - "\351\353R\351\351\353.\351\351\353\10\205\0\0\0\0<\377\377\377y\226\277" - "\226\377\222\275\222\377\222\273\222\377\231\266\231\377\245\275\245" - "\377\223\254\223\377\241\273\241\377\237\271\237\377\235\270\235\377" - "\233\267\233\377\211\245\211\377\226\264\226\377\224\263\224\377d\214" - "d\377U\221U\377p\267p\377s\300s\377~\271~\377\211\276\211\377l\245l\377" - "\201\274\201\377e\243e\377y\272y\377v\271v\377r\270r\377n\267n\377j\265" - "j\377O\232O\377c\260c\377G\226G\377.\245.\377\32\233\32\377\20x\20\377" - "H\220H\370\377\377\377\322\377\377\377\326\377\377\377\331\377\377\377" - "\335\377\377\377\340\377\377\377\343\377\377\377\346\377\377\377\350" - "\377\377\377\353\377\377\377\355\377\377\377\357\377\377\377\361\377" - "\377\377\363\377\377\377\365\377\377\377\366\377\377\377\370\377\377" - "\377\371\377\377\377\372\375\375\375\373\370\370\372\375\364\364\367" - "\376\360\360\364\376\355\355\361\377\351\351\357\377\344\344\352\375" - "\202\344\344\352\377\202\345\345\353\377\2\346\346\353\377\346\346\354" - "\377\202\347\347\354\377\17\256\256\261\377\0\0\0\377\11\11\11\377hh" - "h\377\177\177\177\377\262\276\257\377\310\332\305\377\275\314\272\377" - "\252\264\250\377\225\232\224\377hhh\377\11\11\11\377\223\223\223\377" - "\340\340\342\377\356\356\361\377\202\357\357\361\377\202\360\360\362" - "\377\202\361\361\362\377\1\361\361\363\377\202\362\362\363\377\202\363" - "\363\364\377\20\364\364\364\377\267\267\270\377\0\0\0\377\1\13\1\377" - "\0}\0\377\0\231\0\377q\313o\377\244\342\240\377\213\327\210\377`\304" - "^\3771\2570\377\0}\0\377\11\11\11\377\223\223\223\377\345\345\345\377" - "\363\363\364\377\203\363\363\363\377\202\362\362\363\377\202\362\362" - "\362\377\202\361\361\362\377\1\361\361\361\377\202\360\360\361\377\16" - "\264\264\265\377\0\0\0\377\16\16\1\377\244\244\0\377\311\311\0\377\327" - "\344o\377\336\357\240\377\333\352\210\377\325\340^\377\317\3240\377\244" - "\244\0\377\11\11\11\377\223\223\223\377\336\336\337\377\202\352\352\354" - "\377\3\351\351\354\377\351\351\353\377\350\350\353\377\202\350\350\352" - "\377\204\351\351\353\377\14\351\351\353\375\351\351\353\370\351\351\353" - "\357\351\351\353\343\351\351\353\324\351\351\353\301\351\351\353\252" - "\351\351\353\220\351\351\353s\351\351\353R\351\351\353.\351\351\353\10" - "\203\0\0\0\0>\347\347\354\357\351\351\356\357\350\352\353\374\205\220" - "\212\377\276\311\300\377\330\343\332\377\316\320\320\377\346\346\350" - "\377\326\326\330\377\347\347\351\377\350\350\351\377\350\350\352\377" - "\351\351\353\377\332\332\333\377\352\352\353\377\353\353\354\377\327" - "\337\330\377\323\343\324\377\331\353\332\377\332\356\333\377\340\354" - "\340\377\344\357\344\377\333\347\333\377\342\356\342\377\331\346\331" - "\377\340\355\340\377\337\354\337\377\335\353\336\377\334\352\334\377" - "\332\351\333\377\321\340\322\377\327\347\330\377\316\335\317\377\307" - "\343\310\377\275\336\277\377\272\324\274\377\305\327\310\377\362\362" - "\365\374\361\361\364\374\360\360\363\375\360\360\363\374\360\360\364" - "\363\372\372\373\347\377\377\377\346\377\377\377\350\377\377\377\353" - "\377\377\377\355\377\377\377\357\377\377\377\361\377\377\377\363\377" - "\377\377\365\377\377\377\366\377\377\377\370\377\377\377\371\377\377" - "\377\372\375\375\375\373\370\370\372\375\365\365\367\376\361\361\364" - "\376\356\356\361\377\352\352\357\377\345\345\353\375\202\345\345\353" - "\377\202\346\346\353\377\203\347\347\354\377\6\350\350\355\377HHI\377" - "\5\5\5\377@@@\377\177\177\177\377\271\307\266\377\202\346\377\341\377" - "\7\330\356\324\377\302\323\277\377\254\267\252\377\226\233\225\377@@" - "@\377DDD\377\323\323\324\377\202\357\357\361\377\202\360\360\362\377" - "\2\361\361\362\377\361\361\363\377\202\362\362\363\377\202\363\363\364" - "\377\202\364\364\364\377\6\365\365\365\377LLL\377\5\5\5\377\0M\0\377" - "\0\231\0\377\202\323\177\377\202\346\377\341\377\7\307\361\303\377\226" - "\334\223\377d\306b\3772\2571\377\0M\0\377DDD\377\325\325\325\377\202" - "\363\363\363\377\202\362\362\363\377\202\362\362\362\377\203\361\361" - "\362\377\203\360\360\361\377\6\357\357\360\377JJJ\377\5\5\5\377ee\0\377" - "\311\311\0\377\331\347\177\377\202\346\377\341\377\10\342\370\303\377" - "\334\354\223\377\326\341b\377\317\3251\377ee\0\377DDD\377\322\322\322" - "\377\351\351\354\377\202\351\351\353\377\3\350\350\353\377\350\350\352" - "\377\347\347\352\377\205\347\347\351\377\14\347\347\351\375\347\347\351" - "\370\347\347\351\357\347\347\351\343\347\347\351\324\347\347\351\301" - "\347\347\351\252\347\347\351\220\347\347\351s\347\347\351R\347\347\351" - ".\347\347\351\10\203\0\0\0\0>\353\353\357\377\303\303\321\377\313\313" - "\327\377\205\205\212\377\253\253\265\377\270\270\303\377\323\323\336" - "\377\331\331\343\377\333\333\344\377\335\335\345\377\337\337\347\377" - "\341\341\350\377\343\343\351\377\345\345\352\377\347\347\354\377\351" - "\351\355\377\353\353\356\377\355\355\360\377\357\357\361\377\361\361" - "\362\377\363\363\363\377\364\364\365\377\365\365\365\377\364\364\364" - "\377\363\363\364\377\363\363\363\377\361\361\362\377\360\360\361\377" - "\357\357\360\377\355\355\356\377\353\353\355\377\351\351\354\377\347" - "\347\352\377\345\345\350\377\343\343\346\377\341\341\345\377\336\336" - "\343\377\334\334\341\377\331\331\337\377\327\327\334\377\326\326\335" - "\377\340\340\346\377\345\345\353\377\341\341\347\375\342\342\351\366" - "\377\377\377\353\377\377\377\355\377\377\377\357\377\377\377\361\377" - "\377\377\363\377\377\377\365\377\377\377\366\377\377\377\370\377\377" - "\377\371\377\377\377\372\375\375\375\373\371\371\372\375\365\365\367" - "\376\361\361\364\376\356\356\362\377\353\353\357\377\345\345\353\375" - "\202\346\346\353\377\1\346\346\354\377\202\347\347\354\377\202\350\350" - "\355\377\17\351\351\355\377\16\16\16\377\2\2\2\377xxx\377\235\244\233" - "\377\310\332\305\377\342\372\335\377\344\375\337\377\331\357\325\377" - "\310\332\305\377\265\302\262\377\241\251\237\377\204\207\203\377\14\14" - "\14\377\326\326\326\377\202\360\360\362\377\2\361\361\362\377\361\361" - "\363\377\202\362\362\363\377\2\363\363\363\377\363\363\364\377\202\364" - "\364\364\377\203\365\365\365\377\17\16\16\16\377\2\2\2\377\0\220\0\377" - "B\266A\377\244\342\240\377\335\373\330\377\342\375\335\377\311\362\305" - "\377\244\342\240\377y\317v\377K\272I\377\32\233\31\377\14\14\14\377\326" - "\326\326\377\363\363\363\377\202\362\362\363\377\1\362\362\362\377\203" - "\361\361\362\377\1\361\361\361\377\203\360\360\361\377\202\357\357\360" - "\377\23\16\16\16\377\2\2\2\377\275\275\0\377\321\331A\377\336\357\240" - "\377\345\375\330\377\345\376\335\377\342\370\305\377\336\357\240\377" - "\330\345v\377\322\333I\377\301\304\31\377\14\14\14\377\326\326\326\377" - "\351\351\353\377\350\350\353\377\350\350\352\377\347\347\352\377\347" - "\347\351\377\202\346\346\351\377\204\347\347\351\377\14\347\347\351\375" - "\347\347\351\370\347\347\351\357\347\347\351\343\347\347\351\324\347" - "\347\351\301\347\347\351\252\347\347\351\220\347\347\351s\347\347\351" - "R\347\347\351.\347\347\351\10\203\0\0\0\0\24\357\357\363\377\310\310" - "\325\377\322\322\334\377\214\214\217\377\255\255\267\377\265\265\276" - "\377\277\277\307\377\324\324\335\377\200\200\205\377``b\377ffh\377\210" - "\210\213\377\226\226\231\377\227\227\232\377\230\230\233\377\354\354" - "\357\377\211\211\213\377eee\377kkk\377\221\221\221\377\203\237\237\237" - "\377'\363\363\363\377\214\214\214\377eee\377jjj\377\215\215\216\377\231" - "\231\233\377\230\230\232\377\227\227\231\377\346\346\351\377\204\204" - "\206\377aab\377eef\377\204\204\207\377\216\216\221\377\214\214\220\377" - "\212\212\216\377\322\322\330\377\317\317\326\377\314\314\323\377\312" - "\312\322\377\326\326\335\377\302\302\320\377\377\377\377\353\377\377" - "\377\355\377\377\377\357\377\377\377\361\377\377\377\363\377\377\377" - "\365\377\377\377\366\377\377\377\370\377\377\377\371\377\377\377\372" - "\375\375\375\373\371\371\372\375\365\365\367\376\362\362\365\376\356" - "\356\362\377\353\353\357\377\346\346\354\376\203\347\347\354\377\202" - "\350\350\355\377\202\351\351\355\377\21\352\352\356\377\35\35\35\377" - "\0\0\0\377\177\177\177\377\244\255\242\377\302\323\277\377\323\350\317" - "\377\327\354\322\377\321\344\315\377\305\326\301\377\265\302\263\377" - "\244\255\242\377\221\225\220\377\0\0\0\377\345\345\345\377\361\361\362" - "\377\361\361\363\377\202\362\362\363\377\1\363\363\363\377\202\363\363" - "\364\377\2\364\364\364\377\364\364\365\377\204\365\365\365\377\20\35" - "\35\35\377\0\0\0\377\0\231\0\377R\275P\377\226\334\223\377\274\354\270" - "\377\304\360\300\377\266\352\262\377\233\336\230\377y\317v\377R\275P" - "\377(\253'\377\0\0\0\377\345\345\345\377\362\362\363\377\362\362\362" - "\377\203\361\361\362\377\1\361\361\361\377\203\360\360\361\377\203\357" - "\357\360\377\20\356\356\357\377\35\35\35\377\0\0\0\377\311\311\0\377" - "\323\334P\377\334\354\223\377\341\365\270\377\342\367\300\377\340\364" - "\262\377\335\355\230\377\330\345v\377\323\334P\377\316\322'\377\0\0\0" - "\377\345\345\345\377\350\350\352\377\202\347\347\352\377\202\346\346" - "\351\377\202\345\345\350\377\204\347\347\351\377\14\347\347\351\375\347" - "\347\351\370\347\347\351\357\347\347\351\343\347\347\351\324\347\347" - "\351\301\347\347\351\252\347\347\351\220\347\347\351s\347\347\351R\347" - "\347\351.\347\347\351\10\203\0\0\0\0>\363\363\366\377\331\331\341\377" - "\342\342\351\377\222\222\224\377\260\260\270\377\270\270\300\377\300" - "\300\310\377\310\310\317\377]]_\377\256\256\260\377\276\276\300\377u" - "uw\377\254\254\257\377\256\256\261\377\257\257\261\377\357\357\361\377" - "eee\377\263\263\263\377\302\302\303\377yyy\377\264\264\264\377\263\263" - "\264\377\263\263\263\377\361\361\362\377dde\377\261\261\261\377\300\300" - "\300\377vvw\377\253\253\255\377\252\252\254\377\250\250\253\377\342\342" - "\346\377``a\377\254\254\255\377\273\273\274\377qqr\377\235\235\242\377" - "\233\233\240\377\231\231\236\377\314\314\324\377\311\311\321\377\306" - "\306\317\377\303\303\314\377\277\277\311\377\224\224\236\377\377\377" - "\377\353\377\377\377\355\377\377\377\357\377\377\377\361\377\377\377" - "\363\377\377\377\365\377\377\377\366\377\377\377\370\377\377\377\371" - "\377\377\377\372\375\375\375\373\371\371\372\375\365\365\370\376\362" - "\362\365\376\357\357\363\377\354\354\360\377\347\347\354\376\202\350" - "\350\354\377\202\350\350\355\377\2\351\351\355\377\351\351\356\377\202" - "\352\352\356\377\17---\377\0\0\0\377\177\177\177\377\240\250\236\377" - "\267\305\264\377\304\325\301\377\310\332\305\377\305\326\302\377\274" - "\313\271\377\260\274\256\377\241\252\240\377\221\225\220\377\0\0\0\377" - "\365\365\365\377\361\361\363\377\202\362\362\363\377\202\363\363\364" - "\377\2\364\364\364\377\364\364\365\377\206\365\365\365\377\17---\377" - "\0\0\0\377\0\231\0\377I\271G\377}\320z\377\233\336\227\377\244\342\240" - "\377\234\336\231\377\211\326\206\377n\312k\377M\273K\377(\253'\377\0" - "\0\0\377\365\365\365\377\362\362\362\377\202\361\361\362\377\1\361\361" - "\361\377\203\360\360\361\377\203\357\357\360\377\1\356\356\360\377\202" - "\356\356\357\377\22---\377\0\0\0\377\311\311\0\377\322\332G\377\331\346" - "z\377\334\355\227\377\336\357\240\377\335\356\231\377\332\351\206\377" - "\327\343k\377\323\333K\377\316\322'\377\0\0\0\377\365\365\365\377\347" - "\347\352\377\347\347\351\377\346\346\351\377\346\346\350\377\202\345" - "\345\350\377\205\344\344\347\377\14\344\344\347\375\344\344\347\370\344" - "\344\347\357\344\344\347\343\344\344\347\324\344\344\347\301\344\344" - "\347\252\344\344\347\220\344\344\347s\344\344\347R\344\344\347.\344\344" - "\347\10\203\0\0\0\0>\367\367\371\377\352\352\356\377\363\363\366\377" - "\230\230\230\377\263\263\272\377\273\273\302\377\303\303\312\377\313" - "\313\321\377__a\377\235\235\236\377\254\254\255\377xxy\377\304\303\306" - "\377\237\233\235\377\307\307\310\377\363\363\364\377kkk\377\244\244\244" - "\377\260\260\260\377{{{\377\310\310\311\377\241\235\236\377\307\306\307" - "\377\356\356\357\377hhh\377\241\241\242\377\254\254\255\377vvw\377\275" - "\275\300\377\227\224\226\377\272\271\275\377\336\336\342\377bbc\377\233" - "\233\235\377\247\247\250\377oor\377\254\254\262\377\212\206\213\377\250" - "\247\256\377\307\307\320\377\304\304\315\377\300\300\312\377\275\275" - "\307\377\271\271\304\377yy\200\377\377\377\377\353\377\377\377\355\377" - "\377\377\357\377\377\377\361\377\377\377\363\377\377\377\365\377\377" - "\377\366\377\377\377\370\377\377\377\371\377\377\377\372\375\375\375" - "\373\371\371\372\375\366\366\370\376\363\363\365\376\357\357\363\377" - "\354\354\360\377\350\350\355\376\202\350\350\355\377\2\351\351\355\377" - "\351\351\356\377\202\352\352\356\377\21\353\353\356\377\353\353\357\377" - "<<<\377\4\4\4\377xxx\377\227\235\226\377\252\264\250\377\265\302\263" - "\377\272\310\267\377\270\306\265\377\262\276\257\377\250\262\246\377" - "\234\243\232\377\205\210\205\377\16\16\16\377\377\377\377\377\362\362" - "\363\377\202\363\363\364\377\202\364\364\364\377\207\365\365\365\377" - "\17\364\364\365\377<<<\377\4\4\4\377\0\220\0\3775\2614\377`\303^\377" - "y\317v\377\203\323\200\377\177\321|\377q\313o\377\\\302Z\377@\265\77" - "\377\36\235\35\377\16\16\16\377\377\377\377\377\202\361\361\362\377\203" - "\360\360\361\377\203\357\357\360\377\1\356\356\360\377\202\356\356\357" - "\377\20\355\355\357\377\355\355\356\377<<<\377\4\4\4\377\275\275\0\377" - "\320\3254\377\325\337^\377\330\345v\377\331\350\200\377\331\347|\377" - "\327\344o\377\325\336Z\377\321\330\77\377\301\304\35\377\16\16\16\377" - "\377\377\377\377\202\346\346\351\377\202\345\345\350\377\202\344\344" - "\347\377\1\343\343\346\377\204\344\344\347\377\14\344\344\347\375\344" - "\344\347\370\344\344\347\357\344\344\347\343\344\344\347\324\344\344" - "\347\301\344\344\347\252\344\344\347\220\344\344\347s\344\344\347R\344" - "\344\347.\344\344\347\10\203\0\0\0\0@\373\373\374\377\372\372\373\377" - "\375\375\375\377\226\226\227\377\266\266\274\377\276\276\304\377\306" - "\306\313\377\316\316\323\377\273\273\277\377\237\237\241\377\250\250" - "\252\377\322\322\324\377cII\377\246II\377wJJ\377\365\365\365\377\325" - "\325\325\377\254\254\254\377\256\256\256\377\324\324\324\377cHI\377\245" - "HH\377uHH\377\353\353\355\377\313\313\315\377\243\243\245\377\245\245" - "\247\377\307\307\312\377^DE\377\240CE\377pBD\377\331\331\337\377\273" - "\273\300\377\227\227\233\377\230\230\234\377\265\265\273\377X=@\377\231" - "<\77\377i;>\377\301\301\313\377\276\276\310\377\272\272\305\377\267\267" - "\302\377\263\263\277\377{{\202\377\377\377\377\353\377\377\377\355\377" - "\377\377\357\377\377\377\361\377\377\377\363\377\377\377\365\377\377" - "\377\366\377\377\377\370\377\377\377\371\377\377\377\372\375\375\375" - "\373\371\371\373\375\366\366\370\376\363\363\365\376\360\360\363\377" - "\355\355\361\377\351\351\355\376\351\351\356\377\351\351\355\377\202" - "\352\352\356\377\2\353\353\356\377\353\353\357\377\202\354\354\357\377" - "\17}}~\377\"\"\"\377@@@\377\214\217\213\377\234\243\233\377\246\260\244" - "\377\253\265\250\377\252\265\250\377\246\257\244\377\236\245\234\377" - "\224\231\223\377DED\377___\377\373\373\373\377\363\363\364\377\202\364" - "\364\364\377\1\364\364\365\377\206\365\365\365\377\1\364\364\365\377" - "\202\364\364\364\377\17\177\177\177\377\"\"\"\377\0M\0\377\34\245\33" - "\377A\266\77\377W\300U\377a\304_\377`\304^\377V\277T\377E\270D\377.\255" - "-\377\11Q\11\377___\377\373\373\373\377\361\361\361\377\203\360\360\361" - "\377\202\357\357\360\377\1\356\356\360\377\202\356\356\357\377\1\355" - "\355\357\377\202\355\355\356\377\17\354\354\356\377}}}\377\"\"\"\377" - "ee\0\377\315\320\33\377\321\330\77\377\324\336U\377\325\340_\377\325" - "\340^\377\324\335T\377\322\331D\377\317\324-\377fg\11\377___\377\367" - "\367\370\377\202\345\345\350\377\202\344\344\347\377\3\343\343\347\377" - "\343\343\346\377\342\342\346\377\204\344\344\347\377\14\344\344\347\375" - "\344\344\347\370\344\344\347\357\344\344\347\343\344\344\347\324\344" - "\344\347\301\344\344\347\252\344\344\347\220\344\344\347s\344\344\347" - "R\344\344\347.\344\344\347\10\203\0\0\0\0>\377\377\377\377\372\372\373" - "\377\362\362\365\377\220\220\223\377\271\271\276\377\301\301\305\377" - "\311\311\315\377\321\321\325\377\332\332\335\377\343\343\345\377\354" - "\354\355\377\362\362\363\377tTU\377\264JJ\377\212UU\377\364\364\364\377" - "\363\363\363\377\362\362\362\377\360\360\361\377\357\357\360\377rRR\377" - "\262GH\377\207QR\377\350\350\352\377\346\346\351\377\344\344\347\377" - "\342\342\345\377\337\337\343\377lLN\377\254BC\377\200JL\377\325\325\333" - "\377\322\322\330\377\317\317\326\377\314\314\323\377\311\311\321\377" - "dDH\377\245;>\377xBE\377\273\273\306\377\270\270\303\377\264\264\300" - "\377\260\260\275\377\242\242\256\377}}\204\377\377\377\377\353\377\377" - "\377\355\377\377\377\357\377\377\377\361\377\377\377\363\377\377\377" - "\365\377\377\377\366\377\377\377\370\377\377\377\371\377\377\377\372" - "\375\375\376\373\371\371\373\375\366\366\370\376\363\363\366\376\361" - "\361\363\377\356\356\361\377\352\352\356\376\203\352\352\356\377\202" - "\353\353\357\377\202\354\354\357\377\21\355\355\360\377\310\310\313\377" - "]]]\377\7\7\7\377hhh\377\216\221\215\377\227\235\226\377\234\243\232" - "\377\234\243\233\377\231\237\230\377\223\227\222\377qrp\377\17\17\17" - "\377\337\337\337\377\366\366\367\377\364\364\364\377\364\364\365\377" - "\207\365\365\365\377\1\364\364\365\377\203\364\364\364\377\16\316\316" - "\316\377]]]\377\7\7\7\377\0}\0\377!\250\40\3776\2614\377@\265\77\377" - "A\266@\377:\2639\377,\254+\377\24\206\24\377\17\17\17\377\337\337\337" - "\377\364\364\365\377\202\360\360\361\377\203\357\357\360\377\202\356" - "\356\357\377\202\355\355\357\377\1\355\355\356\377\202\354\354\356\377" - "\26\353\353\355\377\307\307\310\377]]]\377\7\7\7\377\244\244\0\377\315" - "\321\40\377\320\3264\377\321\330\77\377\321\330@\377\320\3279\377\317" - "\323+\377\246\251\24\377\17\17\17\377\337\337\337\377\354\354\356\377" - "\344\344\350\377\344\344\347\377\343\343\347\377\343\343\346\377\342" - "\342\346\377\342\342\345\377\341\341\345\377\204\342\342\346\377\14\342" - "\342\346\375\342\342\346\370\342\342\346\357\342\342\346\343\342\342" - "\346\324\342\342\346\301\342\342\346\252\342\342\346\220\342\342\346" - "s\342\342\346R\342\342\346.\342\342\346\10\203\0\0\0\0>\374\374\375\377" - "\353\353\360\377\340\340\347\377\210\210\214\377\274\274\300\377\304" - "\304\307\377\314\314\317\377\325\325\327\377\335\335\337\377\346\346" - "\347\377\357\357\360\377\365\365\365\377\340\337\337\377\321\311\312" - "\377\340\336\336\377\362\362\363\377\361\361\362\377\360\360\361\377" - "\356\356\357\377\354\354\356\377\327\326\330\377\307\300\302\377\324" - "\322\325\377\345\345\350\377\342\342\346\377\340\340\344\377\335\335" - "\342\377\333\333\340\377\306\305\312\377\267\260\265\377\302\300\306" - "\377\320\320\327\377\315\315\324\377\312\312\322\377\306\306\317\377" - "\303\303\314\377\257\257\270\377\242\233\244\377\252\250\263\377\265" - "\265\301\377\261\261\276\377\240\240\252\377\216\216\225\377\207\207" - "\214\377\245\245\251\374\377\377\377\353\377\377\377\355\377\377\377" - "\357\377\377\377\361\377\377\377\363\377\377\377\365\377\377\377\366" - "\377\377\377\370\377\377\377\371\377\377\377\372\375\375\376\373\372" - "\372\373\375\367\367\370\376\364\364\366\376\361\361\364\377\357\357" - "\362\377\352\352\356\376\203\353\353\357\377\202\354\354\357\377\202" - "\355\355\360\377\17\356\356\360\377\356\356\361\377\255\255\256\377o" - "oo\377\11\11\11\377@@@\377\200\202\177\377\215\220\214\377\216\221\215" - "\377\203\206\203\377CDC\377\17\17\17\377\317\317\317\377\372\372\372" - "\377\364\364\365\377\207\365\365\365\377\1\364\364\365\377\205\364\364" - "\364\377\16\363\363\364\377\257\257\257\377ooo\377\11\11\11\377\0M\0" - "\377\23\230\22\377\36\246\36\377!\250\40\377\32\233\31\377\11P\10\377" - "\17\17\17\377\317\317\317\377\370\370\371\377\360\360\361\377\203\357" - "\357\360\377\1\356\356\360\377\202\356\356\357\377\2\355\355\357\377" - "\355\355\356\377\202\354\354\356\377\1\354\354\355\377\202\353\353\355" - "\377\15\352\352\354\377\253\253\254\377ooo\377\11\11\11\377ee\0\377\300" - "\302\22\377\315\320\36\377\315\321\40\377\300\304\31\377fg\10\377\17" - "\17\17\377\317\317\317\377\364\364\365\377\202\344\344\347\377\1\343" - "\343\346\377\202\342\342\346\377\202\341\341\345\377\1\340\340\344\377" - "\204\342\342\346\377\14\342\342\346\375\342\342\346\370\342\342\346\357" - "\342\342\346\343\342\342\346\324\342\342\346\301\342\342\346\252\342" - "\342\346\220\342\342\346s\342\342\346R\342\342\346.\342\342\346\10\203" - "\0\0\0\0\13\370\370\372\377\210\210\214\377\201\201\207\377~~\204\377" - "\212\212\220\377\215\215\223\377\220\220\226\377\223\223\230\377\226" - "\226\233\377\232\232\236\377\235\235\241\377\202\237\237\243\377\3\240" - "\240\244\377\241\241\245\377\242\242\245\377\202\243\243\246\377\202" - "\244\244\247\377\2\245\245\247\377\245\245\250\377\202\246\246\250\377" - "\202\247\247\251\377\203\250\250\251\377!\247\247\251\377\246\246\250" - "\377\244\244\247\377\243\243\246\377\241\241\244\377\240\240\243\377" - "\236\236\241\377\234\234\240\377\232\232\236\377\230\230\235\377\225" - "\225\233\377\223\223\230\377\252\252\254\372\315\315\317\362\377\377" - "\377\346\377\377\377\350\377\377\377\353\377\377\377\355\377\377\377" - "\357\377\377\377\361\377\377\377\363\377\377\377\365\377\377\377\366" - "\377\377\377\370\377\377\377\371\377\377\377\372\375\375\376\373\372" - "\372\373\375\367\367\371\376\364\364\366\376\361\361\364\377\357\357" - "\362\377\353\353\357\376\203\354\354\357\377\203\355\355\360\377\202" - "\356\356\361\377\202\357\357\361\377\4\276\276\277\377\223\223\223\377" - "DDD\377\14\14\14\377\202\0\0\0\377\4\16\16\16\377___\377\337\337\337" - "\377\372\372\372\377\207\365\365\365\377\1\364\364\365\377\205\364\364" - "\364\377\202\363\363\364\377\202\363\363\363\377\4\277\277\300\377\223" - "\223\223\377DDD\377\14\14\14\377\202\0\0\0\377\5\16\16\16\377___\377" - "\337\337\337\377\370\370\371\377\357\357\361\377\202\357\357\360\377" - "\1\356\356\360\377\202\356\356\357\377\1\355\355\357\377\202\355\355" - "\356\377\2\354\354\356\377\354\354\355\377\202\353\353\355\377\203\352" - "\352\354\377\5\351\351\353\377\273\273\274\377\223\223\223\377DDD\377" - "\14\14\14\377\202\0\0\0\377\5\16\16\16\377___\377\337\337\337\377\363" - "\363\365\377\344\344\347\377\202\343\343\346\377\3\342\342\346\377\342" - "\342\345\377\341\341\345\377\202\340\340\344\377\1\337\337\343\377\204" - "\342\342\346\377\14\342\342\346\375\342\342\346\370\342\342\346\357\342" - "\342\346\343\342\342\346\324\342\342\346\301\342\342\346\252\342\342" - "\346\220\342\342\346s\342\342\346R\342\342\346.\342\342\346\10\206\0" - "\0\0\0\1\377\377\377\4\202\377\377\377\6""8\377\377\377\14\377\377\377" - "\22\377\377\377\24\377\377\377\31\377\377\377%\377\377\377*\377\377\377" - ",\377\377\377\77\377\377\377F\377\377\377K\377\377\377Z\377\377\377h" - "\377\377\377n\377\377\377t\377\377\377z\377\377\377\201\377\377\377\207" - "\377\377\377\214\377\377\377\223\377\377\377\230\377\377\377\236\377" - "\377\377\243\377\377\377\251\377\377\377\256\377\377\377\263\377\377" - "\377\271\377\377\377\275\377\377\377\302\377\377\377\306\377\377\377" - "\312\377\377\377\317\377\377\377\322\377\377\377\326\377\377\377\331" - "\377\377\377\335\377\377\377\340\377\377\377\343\377\377\377\346\377" - "\377\377\350\377\377\377\353\377\377\377\355\377\377\377\357\377\377" - "\377\361\377\377\377\363\377\377\377\365\377\377\377\366\377\377\377" - "\370\377\377\377\371\377\377\377\372\375\375\376\373\372\372\373\375" - "\367\367\371\376\365\365\366\376\362\362\365\377\360\360\363\377\354" - "\354\357\376\202\354\354\360\377\202\355\355\360\377\2\356\356\360\377" - "\356\356\361\377\202\357\357\361\377\202\360\360\362\377\11\361\361\362" - "\377\342\342\344\377\324\324\325\377\326\326\326\377\345\345\345\377" - "\365\365\365\377\377\377\377\377\374\374\374\377\367\367\370\377\207" - "\365\365\365\377\205\364\364\364\377\202\363\363\364\377\203\363\363" - "\363\377\202\362\362\363\377\10\343\343\343\377\324\324\324\377\326\326" - "\326\377\345\345\345\377\365\365\365\377\377\377\377\377\372\372\373" - "\377\364\364\365\377\203\357\357\360\377\202\356\356\357\377\202\355" - "\355\357\377\1\355\355\356\377\202\354\354\356\377\202\353\353\355\377" - "\1\353\353\354\377\202\352\352\354\377\202\351\351\353\377\21\350\350" - "\353\377\350\350\352\377\333\333\335\377\321\321\322\377\326\326\326" - "\377\345\345\345\377\365\365\365\377\377\377\377\377\367\367\370\377" - "\353\353\355\377\343\343\347\377\343\343\346\377\342\342\346\377\342" - "\342\345\377\341\341\345\377\341\341\344\377\340\340\344\377\202\337" - "\337\343\377\1\336\336\343\377\204\337\337\343\377\14\337\337\343\375" - "\337\337\343\370\337\337\343\357\337\337\343\343\337\337\343\324\337" - "\337\343\301\337\337\343\252\337\337\343\220\337\337\343s\337\337\343" - "R\337\337\343.\337\337\343\10\226\0\0\0\0+\377\377\377\10\377\377\377" - "\33\377\377\377\35\377\377\377\37\377\377\377\77\377\377\377C\377\377" - "\377E\377\377\377_\377\377\377k\377\377\377p\377\377\377\201\377\377" - "\377\230\377\377\377\235\377\377\377\244\377\377\377\302\377\377\377" - "\306\377\377\377\312\377\377\377\317\377\377\377\322\377\377\377\326" - "\377\377\377\331\377\377\377\335\377\377\377\340\377\377\377\343\377" - "\377\377\346\377\377\377\350\377\377\377\353\377\377\377\355\377\377" - "\377\357\377\377\377\361\377\377\377\363\377\377\377\365\377\377\377" - "\366\377\377\377\370\377\377\377\371\377\377\377\372\375\375\376\373" - "\372\372\373\375\370\370\371\376\365\365\367\376\363\363\365\377\360" - "\360\363\377\355\355\360\376\202\355\355\360\377\2\356\356\360\377\356" - "\356\361\377\202\357\357\361\377\202\360\360\362\377\202\361\361\362" - "\377\1\361\361\363\377\202\362\362\363\377\202\363\363\364\377\2\364" - "\364\364\377\364\364\365\377\207\365\365\365\377\1\364\364\365\377\205" - "\364\364\364\377\1\363\363\364\377\203\363\363\363\377\202\362\362\363" - "\377\202\362\362\362\377\202\361\361\362\377\1\361\361\361\377\203\360" - "\360\361\377\203\357\357\360\377\1\356\356\360\377\202\356\356\357\377" - "\2\355\355\357\377\355\355\356\377\202\354\354\356\377\1\354\354\355" - "\377\202\353\353\355\377\202\352\352\354\377\4\351\351\354\377\351\351" - "\353\377\350\350\353\377\350\350\352\377\202\347\347\352\377\2\347\347" - "\351\377\346\346\351\377\202\345\345\350\377\6\344\344\350\377\344\344" - "\347\377\343\343\347\377\343\343\346\377\342\342\346\377\342\342\345" - "\377\202\341\341\345\377\202\340\340\344\377\4\337\337\343\377\336\336" - "\343\377\336\336\342\377\335\335\342\377\204\337\337\343\377\14\337\337" - "\343\375\337\337\343\370\337\337\343\357\337\337\343\343\337\337\343" - "\324\337\337\343\301\337\337\343\252\337\337\343\220\337\337\343s\337" - "\337\343R\337\337\343.\337\337\343\10\247\0\0\0\0\33\377\377\377.\377" - "\377\3778\377\377\377:\377\377\377W\377\377\377q\377\377\377s\377\377" - "\377\201\377\377\377\247\377\377\377\251\377\377\377\255\377\377\377" - "\322\377\377\377\327\377\377\377\331\377\377\377\354\377\377\377\365" - "\377\377\377\366\377\377\377\370\377\377\377\371\377\377\377\372\375" - "\375\376\373\372\372\373\375\370\370\371\376\365\365\367\376\363\363" - "\365\377\361\361\363\377\357\357\360\376\356\356\361\377\202\357\357" - "\361\377\203\360\360\362\377\2\361\361\362\377\361\361\363\377\202\362" - "\362\363\377\202\363\363\364\377\2\364\364\364\377\364\364\365\377\207" - "\365\365\365\377\1\364\364\365\377\205\364\364\364\377\1\363\363\364" - "\377\203\363\363\363\377\202\362\362\363\377\202\362\362\362\377\203" - "\361\361\362\377\203\360\360\361\377\203\357\357\360\377\1\356\356\360" - "\377\202\356\356\357\377\2\355\355\357\377\355\355\356\377\202\354\354" - "\356\377\1\354\354\355\377\202\353\353\355\377\202\352\352\354\377\1" - "\351\351\354\377\202\351\351\353\377\4\350\350\353\377\350\350\352\377" - "\347\347\352\377\347\347\351\377\202\346\346\351\377\202\345\345\350" - "\377\202\344\344\347\377\202\343\343\346\377\1\342\342\346\377\202\341" - "\341\345\377\202\340\340\344\377\202\337\337\343\377\5\336\336\342\377" - "\335\335\342\377\335\335\341\377\334\334\341\377\334\334\340\377\204" - "\337\337\343\377\14\337\337\343\375\337\337\343\370\337\337\343\357\337" - "\337\343\343\337\337\343\324\337\337\343\301\337\337\343\252\337\337" - "\343\220\337\337\343s\337\337\343R\337\337\343.\337\337\343\10\267\0" - "\0\0\0\12\377\377\377\35\377\377\377O\377\377\377P\327\327\331m\303\303" - "\307\275\236\236\243\276\213\213\222\322\204\204\213\350ww\200\362ww" - "\177\375\202ww\177\377\202xx\200\377\203yy\200\377\202zz\201\377\1zz" - "\202\377\202{{\202\377\1||\202\377\202||\203\377\203}}\203\377\3}}\204" - "\377~~\204\377~~\205\377\203\177\177\205\377\203\200\200\206\377\202" - "\201\201\206\377\202\202\202\207\377\1\202\202\210\377\203\203\203\210" - "\377\2\203\203\211\377\204\204\211\377\203\205\205\211\377\2\205\205" - "\212\377\206\206\212\377\202\206\206\213\377\202\207\207\213\377\203" - "\210\210\214\377\202\211\211\214\377\202\211\211\215\377\1\212\212\216" - "\377\203\213\213\216\377\1\213\213\217\377\203\214\214\217\377\3\215" - "\215\217\377\215\215\220\377\216\216\220\377\202\216\216\221\377\202" - "\217\217\221\377\1\217\217\222\377\202\220\220\222\377\202\221\221\222" - "\377\202\221\221\223\377\203\222\222\224\377\2\223\223\224\377\223\223" - "\225\377\203\224\224\225\377\2\226\226\227\377\225\225\227\377\202\225" - "\225\226\377\14\225\225\226\375\224\224\225\370\224\224\225\357\224\224" - "\225\343\224\224\225\324\223\223\224\301\222\222\224\252\222\222\224" - "\220\222\222\224s\222\222\223R\221\221\223.\221\221\223\10\377\0\0\0" - "\0\377\0\0\0\0\377\0\0\0\0\377\0\0\0\0\377\0\0\0\0\377\0\0\0\0\377\0" - "\0\0\0\377\0\0\0\0\377\0\0\0\0\377\0\0\0\0\377\0\0\0\0\320\0\0\0\0", + 0xff,0x00,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0x00, + 0xff,0x00,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0x00, + 0xff,0x00,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0x00, + 0xff,0x00,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0x00, + 0xff,0x00,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0x00,0xd3,0x00,0x00,0x00,0x00, + 0x08,0xef,0xef,0xf2,0x23,0xef,0xef,0xf3,0x61,0xef,0xef,0xf3,0x93,0xef,0xef, + 0xf3,0xbd,0xef,0xef,0xf3,0xdc,0xf0,0xf0,0xf3,0xf1,0xf0,0xf0,0xf3,0xfd,0xf0, + 0xf0,0xf4,0xff,0x84,0xf1,0xf1,0xf4,0xff,0x01,0xf1,0xf1,0xf5,0xff,0x84,0xf2, + 0xf2,0xf5,0xff,0x01,0xf3,0xf3,0xf5,0xff,0x84,0xf3,0xf3,0xf6,0xff,0x01,0xf4, + 0xf4,0xf6,0xff,0x82,0xf4,0xf4,0xf7,0xff,0x84,0xf5,0xf5,0xf7,0xff,0x01,0xf5, + 0xf5,0xf8,0xff,0x84,0xf6,0xf6,0xf8,0xff,0x85,0xf7,0xf7,0xf9,0xff,0x01,0xf8, + 0xf8,0xf9,0xff,0x82,0xf8,0xf8,0xfa,0xff,0x83,0xf9,0xf9,0xfa,0xff,0x82,0xf9, + 0xf9,0xfb,0xff,0x83,0xfa,0xfa,0xfb,0xff,0x01,0xfb,0xfb,0xfb,0xff,0x84,0xfb, + 0xfb,0xfc,0xff,0x01,0xfc,0xfc,0xfc,0xff,0x83,0xfc,0xfc,0xfd,0xff,0x83,0xfd, + 0xfd,0xfd,0xff,0x82,0xfd,0xfd,0xfe,0xff,0x83,0xfe,0xfe,0xfe,0xff,0x8b,0xff, + 0xff,0xff,0xff,0x82,0xfe,0xfe,0xff,0xff,0x84,0xfe,0xfe,0xfe,0xff,0x82,0xfd, + 0xfd,0xfe,0xff,0x88,0xfd,0xfd,0xfd,0xff,0x0c,0xfd,0xfd,0xfd,0xfd,0xfd,0xfd, + 0xfd,0xf8,0xfd,0xfd,0xfd,0xef,0xfd,0xfd,0xfd,0xe3,0xfd,0xfd,0xfd,0xd4,0xfd, + 0xfd,0xfd,0xc1,0xfd,0xfd,0xfd,0xaa,0xfd,0xfd,0xfd,0x90,0xfd,0xfd,0xfd,0x73, + 0xfd,0xfd,0xfd,0x52,0xfd,0xfd,0xfd,0x2e,0xfd,0xfd,0xfd,0x08,0xba,0x00,0x00, + 0x00,0x00,0x09,0xcd,0xcd,0xdb,0x23,0xcd,0xcd,0xdc,0x61,0xd2,0xd2,0xdf,0x9c, + 0xd7,0xd7,0xe2,0xd5,0xcf,0xcf,0xdd,0xdc,0xcf,0xcf,0xdd,0xf1,0xcf,0xcf,0xdd, + 0xfd,0xd0,0xd0,0xdd,0xff,0xd0,0xd0,0xde,0xff,0x82,0xd1,0xd1,0xde,0xff,0x82, + 0xd2,0xd2,0xdf,0xff,0x02,0xd3,0xd3,0xdf,0xff,0xd3,0xd3,0xe0,0xff,0x82,0xd4, + 0xd4,0xe0,0xff,0x02,0xd5,0xd5,0xe0,0xff,0xd5,0xd5,0xe1,0xff,0x82,0xd6,0xd6, + 0xe1,0xff,0x83,0xd7,0xd7,0xe2,0xff,0x82,0xd8,0xd8,0xe3,0xff,0x82,0xd9,0xd9, + 0xe3,0xff,0x82,0xda,0xda,0xe4,0xff,0x02,0xdb,0xdb,0xe4,0xff,0xdb,0xdb,0xe5, + 0xff,0x82,0xdc,0xdc,0xe5,0xff,0x82,0xdd,0xdd,0xe6,0xff,0x82,0xde,0xde,0xe6, + 0xff,0x83,0xdf,0xdf,0xe7,0xff,0x82,0xe0,0xe0,0xe8,0xff,0x02,0xe1,0xe1,0xe8, + 0xff,0xe1,0xe1,0xe9,0xff,0x82,0xe2,0xe2,0xe9,0xff,0x02,0xe3,0xe3,0xe9,0xff, + 0xe3,0xe3,0xea,0xff,0x82,0xe4,0xe4,0xea,0xff,0x82,0xe5,0xe5,0xeb,0xff,0x82, + 0xe6,0xe6,0xeb,0xff,0x83,0xe7,0xe7,0xec,0xff,0x82,0xe8,0xe8,0xed,0xff,0x02, + 0xe9,0xe9,0xed,0xff,0xe9,0xe9,0xee,0xff,0x82,0xea,0xea,0xee,0xff,0x82,0xeb, + 0xeb,0xef,0xff,0x82,0xec,0xec,0xef,0xff,0x82,0xed,0xed,0xf0,0xff,0x02,0xee, + 0xee,0xf0,0xff,0xee,0xee,0xf1,0xff,0x83,0xef,0xef,0xf1,0xff,0x82,0xf0,0xf0, + 0xf2,0xff,0x02,0xf1,0xf1,0xf2,0xff,0xf1,0xf1,0xf3,0xff,0x82,0xf2,0xf2,0xf3, + 0xff,0x82,0xf3,0xf3,0xf4,0xff,0x82,0xf4,0xf4,0xf4,0xff,0x84,0xf5,0xf5,0xf5, + 0xff,0x85,0xf4,0xf4,0xf4,0xff,0x0c,0xf4,0xf4,0xf4,0xfd,0xf4,0xf4,0xf4,0xf8, + 0xf4,0xf4,0xf4,0xef,0xf4,0xf4,0xf4,0xe3,0xf4,0xf4,0xf4,0xd4,0xf4,0xf4,0xf4, + 0xc1,0xf4,0xf4,0xf4,0xaa,0xf4,0xf4,0xf4,0x90,0xf4,0xf4,0xf4,0x73,0xf4,0xf4, + 0xf4,0x52,0xf4,0xf4,0xf4,0x2e,0xe6,0xe6,0xe9,0x08,0xba,0x00,0x00,0x00,0x00, + 0x07,0xef,0xef,0xf4,0x65,0xee,0xee,0xf3,0xdb,0xec,0xec,0xf2,0xfd,0xe6,0xe6, + 0xee,0xfe,0xde,0xde,0xe8,0xfd,0xd4,0xd4,0xe0,0xf8,0xd0,0xd0,0xde,0xfd,0x83, + 0xd1,0xd1,0xde,0xff,0x82,0xd2,0xd2,0xdf,0xff,0x82,0xd3,0xd3,0xdf,0xff,0x83, + 0xd4,0xd4,0xe0,0xff,0x82,0xd5,0xd5,0xe1,0xff,0x82,0xd6,0xd6,0xe1,0xff,0x82, + 0xd7,0xd7,0xe2,0xff,0x02,0xd8,0xd8,0xe2,0xff,0xd8,0xd8,0xe3,0xff,0x82,0xd9, + 0xd9,0xe3,0xff,0x82,0xda,0xda,0xe4,0xff,0x82,0xdb,0xdb,0xe4,0xff,0x83,0xdc, + 0xdc,0xe5,0xff,0x82,0xdd,0xdd,0xe6,0xff,0x02,0xde,0xde,0xe6,0xff,0xde,0xde, + 0xe7,0xff,0x82,0xdf,0xdf,0xe7,0xff,0x02,0xe0,0xe0,0xe7,0xff,0xe0,0xe0,0xe8, + 0xff,0x82,0xe1,0xe1,0xe8,0xff,0x82,0xe2,0xe2,0xe9,0xff,0x02,0xe3,0xe3,0xe9, + 0xff,0xe3,0xe3,0xea,0xff,0x83,0xe4,0xe4,0xea,0xff,0x82,0xe5,0xe5,0xeb,0xff, + 0x02,0xe6,0xe6,0xeb,0xff,0xe6,0xe6,0xec,0xff,0x82,0xe7,0xe7,0xec,0xff,0x82, + 0xe8,0xe8,0xed,0xff,0x82,0xe9,0xe9,0xed,0xff,0x82,0xea,0xea,0xee,0xff,0x02, + 0xeb,0xeb,0xee,0xff,0xeb,0xeb,0xef,0xff,0x82,0xec,0xec,0xef,0xff,0x01,0xec, + 0xec,0xf0,0xff,0x82,0xed,0xed,0xf0,0xff,0x02,0xee,0xee,0xf0,0xff,0xee,0xee, + 0xf1,0xff,0x82,0xef,0xef,0xf1,0xff,0x82,0xf0,0xf0,0xf2,0xff,0x02,0xf1,0xf1, + 0xf2,0xff,0xf1,0xf1,0xf3,0xff,0x82,0xf2,0xf2,0xf3,0xff,0x02,0xf3,0xf3,0xf3, + 0xff,0xf3,0xf3,0xf4,0xff,0x82,0xf4,0xf4,0xf4,0xff,0x85,0xf5,0xf5,0xf5,0xff, + 0x85,0xf4,0xf4,0xf4,0xff,0x0c,0xf4,0xf4,0xf4,0xfd,0xf4,0xf4,0xf4,0xf8,0xf4, + 0xf4,0xf4,0xef,0xf4,0xf4,0xf4,0xe3,0xf4,0xf4,0xf4,0xd4,0xf4,0xf4,0xf4,0xc1, + 0xf4,0xf4,0xf4,0xaa,0xf4,0xf4,0xf4,0x90,0xf4,0xf4,0xf4,0x73,0xf4,0xf4,0xf4, + 0x52,0xf4,0xf4,0xf4,0x2e,0xf4,0xf4,0xf4,0x08,0xb7,0x00,0x00,0x00,0x00,0x0a, + 0xff,0xff,0xff,0x0e,0xff,0xff,0xff,0x88,0xff,0xff,0xff,0xe5,0xfb,0xfb,0xfc, + 0xfb,0xf4,0xf4,0xf7,0xfd,0xed,0xed,0xf2,0xfe,0xe7,0xe7,0xee,0xfe,0xe1,0xe1, + 0xea,0xff,0xd8,0xd8,0xe3,0xfd,0xd1,0xd1,0xde,0xfd,0x82,0xd2,0xd2,0xde,0xff, + 0x82,0xd2,0xd2,0xdf,0xff,0x02,0xd3,0xd3,0xdf,0xff,0xd3,0xd3,0xe0,0xff,0x82, + 0xd4,0xd4,0xe0,0xff,0x82,0xd5,0xd5,0xe1,0xff,0x82,0xd6,0xd6,0xe1,0xff,0x82, + 0xd7,0xd7,0xe2,0xff,0x02,0xd8,0xd8,0xe2,0xff,0xd8,0xd8,0xe3,0xff,0x82,0xd9, + 0xd9,0xe3,0xff,0x83,0xda,0xda,0xe4,0xff,0x02,0xdb,0xdb,0xe4,0xff,0xdb,0xdb, + 0xe5,0xff,0x82,0xdc,0xdc,0xe5,0xff,0x82,0xdd,0xdd,0xe6,0xff,0x02,0xde,0xde, + 0xe6,0xff,0xde,0xde,0xe7,0xff,0x82,0xdf,0xdf,0xe7,0xff,0x02,0xe0,0xe0,0xe7, + 0xff,0xe0,0xe0,0xe8,0xff,0x82,0xe1,0xe1,0xe8,0xff,0x83,0xe2,0xe2,0xe9,0xff, + 0x82,0xe3,0xe3,0xea,0xff,0x82,0xe4,0xe4,0xea,0xff,0x82,0xe5,0xe5,0xeb,0xff, + 0x02,0xe6,0xe6,0xeb,0xff,0xe6,0xe6,0xec,0xff,0x82,0xe7,0xe7,0xec,0xff,0x82, + 0xe8,0xe8,0xed,0xff,0x82,0xe9,0xe9,0xed,0xff,0x83,0xea,0xea,0xee,0xff,0x82, + 0xeb,0xeb,0xef,0xff,0x82,0xec,0xec,0xef,0xff,0x86,0xed,0xed,0xf0,0xff,0x05, + 0xee,0xee,0xf0,0xff,0xef,0xef,0xf1,0xff,0xf0,0xf0,0xf1,0xff,0xf0,0xf0,0xf2, + 0xff,0xf1,0xf1,0xf2,0xff,0x82,0xf2,0xf2,0xf3,0xff,0x82,0xf3,0xf3,0xf4,0xff, + 0x02,0xf4,0xf4,0xf4,0xff,0xf4,0xf4,0xf5,0xff,0x86,0xf5,0xf5,0xf5,0xff,0x85, + 0xf4,0xf4,0xf4,0xff,0x0c,0xf4,0xf4,0xf4,0xfd,0xf4,0xf4,0xf4,0xf8,0xf4,0xf4, + 0xf4,0xef,0xf4,0xf4,0xf4,0xe3,0xf4,0xf4,0xf4,0xd4,0xf4,0xf4,0xf4,0xc1,0xf4, + 0xf4,0xf4,0xaa,0xf4,0xf4,0xf4,0x90,0xf4,0xf4,0xf4,0x73,0xf4,0xf4,0xf4,0x52, + 0xf4,0xf4,0xf4,0x2e,0xf4,0xf4,0xf4,0x08,0x8a,0x00,0x00,0x00,0x00,0x19,0xff, + 0xff,0xff,0x0c,0xc2,0xda,0xc2,0x87,0xb4,0xd1,0xb4,0x93,0xb1,0xcf,0xb1,0x93, + 0xad,0xcd,0xad,0x93,0xaa,0xcc,0xaa,0x93,0xa8,0xca,0xa8,0x93,0xa4,0xc8,0xa4, + 0x93,0xa1,0xc6,0xa1,0x93,0x9e,0xc4,0x9e,0x93,0x9b,0xc2,0x9b,0x93,0x98,0xc1, + 0x98,0x93,0x95,0xbf,0x95,0x93,0x92,0xbd,0x92,0x93,0x8f,0xbb,0x8f,0x93,0x8c, + 0xb9,0x8c,0x93,0x62,0xa0,0x62,0xb5,0x55,0x98,0x55,0xc0,0x6e,0xa7,0x6e,0xd6, + 0x6b,0xa5,0x6b,0xd6,0x67,0xa3,0x67,0xd6,0x64,0xa1,0x64,0xd6,0x60,0x9f,0x60, + 0xd6,0x5d,0x9d,0x5d,0xd6,0x5a,0x9b,0x5a,0xb2,0x92,0x00,0x00,0x00,0x00,0x0c, + 0xff,0xff,0xff,0x3a,0xff,0xff,0xff,0xb4,0xff,0xff,0xff,0xf2,0xff,0xff,0xff, + 0xf9,0xff,0xff,0xff,0xfa,0xfb,0xfb,0xfc,0xfb,0xf4,0xf4,0xf7,0xfd,0xed,0xed, + 0xf2,0xfe,0xe7,0xe7,0xee,0xfe,0xe1,0xe1,0xea,0xff,0xd9,0xd9,0xe3,0xfd,0xd2, + 0xd2,0xdf,0xfd,0x82,0xd2,0xd2,0xdf,0xff,0x02,0xd3,0xd3,0xdf,0xff,0xd3,0xd3, + 0xe0,0xff,0x82,0xd4,0xd4,0xe0,0xff,0x02,0xd5,0xd5,0xe0,0xff,0xd5,0xd5,0xe1, + 0xff,0x82,0xd6,0xd6,0xe1,0xff,0x82,0xd7,0xd7,0xe2,0xff,0x01,0xd8,0xd8,0xe2, + 0xff,0x82,0xd8,0xd8,0xe3,0xff,0x82,0xd9,0xd9,0xe3,0xff,0x82,0xda,0xda,0xe4, + 0xff,0x02,0xdb,0xdb,0xe4,0xff,0xdb,0xdb,0xe5,0xff,0x82,0xdc,0xdc,0xe5,0xff, + 0x82,0xdd,0xdd,0xe6,0xff,0x82,0xde,0xde,0xe6,0xff,0x82,0xdf,0xdf,0xe7,0xff, + 0x01,0xe0,0xe0,0xe7,0xff,0x82,0xe0,0xe0,0xe8,0xff,0x02,0xe1,0xe1,0xe8,0xff, + 0xe1,0xe1,0xe9,0xff,0x82,0xe2,0xe2,0xe9,0xff,0x02,0xe3,0xe3,0xe9,0xff,0xe3, + 0xe3,0xea,0xff,0x82,0xe4,0xe4,0xea,0xff,0x82,0xe5,0xe5,0xeb,0xff,0x02,0xe6, + 0xe6,0xeb,0xff,0xe6,0xe6,0xec,0xff,0x82,0xe7,0xe7,0xec,0xff,0x01,0xe8,0xe8, + 0xec,0xff,0x82,0xe8,0xe8,0xed,0xff,0x02,0xe9,0xe9,0xed,0xff,0xe9,0xe9,0xee, + 0xff,0x82,0xea,0xea,0xee,0xff,0x82,0xeb,0xeb,0xef,0xff,0x82,0xec,0xec,0xef, + 0xff,0x82,0xed,0xed,0xf0,0xff,0x87,0xee,0xee,0xf0,0xff,0x02,0xef,0xef,0xf1, + 0xff,0xf0,0xf0,0xf2,0xff,0x82,0xf1,0xf1,0xf2,0xff,0x82,0xf3,0xf3,0xf4,0xff, + 0x02,0xf4,0xf4,0xf4,0xff,0xf4,0xf4,0xf5,0xff,0x87,0xf5,0xf5,0xf5,0xff,0x01, + 0xf4,0xf4,0xf5,0xff,0x85,0xf4,0xf4,0xf4,0xff,0x0c,0xf4,0xf4,0xf4,0xfd,0xf4, + 0xf4,0xf4,0xf8,0xf4,0xf4,0xf4,0xef,0xf4,0xf4,0xf4,0xe3,0xf4,0xf4,0xf4,0xd4, + 0xf4,0xf4,0xf4,0xc1,0xf4,0xf4,0xf4,0xaa,0xf4,0xf4,0xf4,0x90,0xf4,0xf4,0xf4, + 0x73,0xf4,0xf4,0xf4,0x52,0xf4,0xf4,0xf4,0x2e,0xf4,0xf4,0xf4,0x08,0x8a,0x00, + 0x00,0x00,0x00,0x19,0xff,0xff,0xff,0x3c,0xa1,0xc6,0xa1,0xfc,0x95,0xbf,0x95, + 0xff,0x6f,0xa8,0x6f,0xff,0x6e,0xab,0x6e,0xff,0x64,0xa1,0x64,0xff,0x62,0xa5, + 0x62,0xff,0x59,0x9a,0x59,0xff,0x59,0x9f,0x59,0xff,0x56,0x9b,0x56,0xff,0x5a, + 0x9a,0x5a,0xff,0x6e,0xa7,0x6e,0xff,0x6a,0xa4,0x6a,0xff,0x66,0xa2,0x66,0xff, + 0x81,0xb3,0x81,0xff,0x71,0x95,0x71,0xff,0x6f,0x94,0x6f,0xff,0x6d,0x92,0x6d, + 0xff,0x6a,0x91,0x6a,0xff,0x68,0x8f,0x68,0xff,0x66,0x8e,0x66,0xff,0x3d,0x7f, + 0x3d,0xff,0x40,0x8b,0x40,0xff,0x3c,0x88,0x3c,0xff,0x76,0xac,0x76,0xff,0x82, + 0xff,0xff,0xff,0xef,0x01,0xff,0xff,0xff,0x9c,0x8c,0x00,0x00,0x00,0x00,0x0f, + 0xff,0xff,0xff,0x0a,0xff,0xff,0xff,0x74,0xff,0xff,0xff,0xd5,0xff,0xff,0xff, + 0xf5,0xff,0xff,0xff,0xf6,0xff,0xff,0xff,0xf8,0xff,0xff,0xff,0xf9,0xff,0xff, + 0xff,0xfa,0xfb,0xfb,0xfc,0xfb,0xf4,0xf4,0xf7,0xfd,0xee,0xee,0xf3,0xfe,0xe7, + 0xe7,0xee,0xfe,0xe2,0xe2,0xea,0xff,0xd9,0xd9,0xe4,0xfd,0xd3,0xd3,0xdf,0xfd, + 0x82,0xd3,0xd3,0xdf,0xff,0x03,0xd4,0xd4,0xe0,0xff,0x00,0x00,0x00,0xff,0xaa, + 0xaa,0xb3,0xff,0x82,0xd5,0xd5,0xe1,0xff,0x06,0x64,0x64,0x69,0xff,0x39,0x39, + 0x3c,0xff,0x0e,0x0e,0x0f,0xff,0xd7,0xd7,0xe2,0xff,0xd8,0xd8,0xe2,0xff,0xd8, + 0xd8,0xe3,0xff,0x82,0xd9,0xd9,0xe3,0xff,0x04,0x00,0x00,0x00,0xff,0xda,0xda, + 0xe4,0xff,0xdb,0xdb,0xe4,0xff,0xdb,0xdb,0xe5,0xff,0x82,0xdc,0xdc,0xe5,0xff, + 0x02,0x58,0x58,0x5c,0xff,0x00,0x00,0x00,0xff,0x82,0xde,0xde,0xe6,0xff,0x01, + 0xde,0xde,0xe7,0xff,0x82,0xdf,0xdf,0xe7,0xff,0x82,0xe0,0xe0,0xe8,0xff,0x08, + 0xe1,0xe1,0xe8,0xff,0x00,0x00,0x00,0xff,0xb5,0xb5,0xba,0xff,0xe2,0xe2,0xe9, + 0xff,0xe3,0xe3,0xe9,0xff,0x6a,0x6a,0x6d,0xff,0x3d,0x3d,0x3e,0xff,0x0f,0x0f, + 0x10,0xff,0x82,0xe5,0xe5,0xeb,0xff,0x82,0xe6,0xe6,0xeb,0xff,0x03,0xe6,0xe6, + 0xec,0xff,0x00,0x00,0x00,0xff,0xe7,0xe7,0xec,0xff,0x82,0xe8,0xe8,0xed,0xff, + 0x06,0xe9,0xe9,0xed,0xff,0xe9,0xe9,0xee,0xff,0x6d,0x6d,0x6f,0xff,0x00,0x00, + 0x00,0xff,0x6e,0x6e,0x6f,0xff,0xeb,0xeb,0xef,0xff,0x82,0xec,0xec,0xef,0xff, + 0x82,0xed,0xed,0xf0,0xff,0x01,0xee,0xee,0xf0,0xff,0x88,0xee,0xee,0xf1,0xff, + 0x04,0xef,0xef,0xf1,0xff,0xf0,0xf0,0xf1,0xff,0xf0,0xf0,0xf2,0xff,0xf1,0xf1, + 0xf2,0xff,0x82,0xf2,0xf2,0xf3,0xff,0x82,0xf3,0xf3,0xf4,0xff,0x02,0xf4,0xf4, + 0xf4,0xff,0xf4,0xf4,0xf5,0xff,0x83,0xf5,0xf5,0xf5,0xff,0x01,0xf4,0xf4,0xf5, + 0xff,0x87,0xf4,0xf4,0xf4,0xff,0x0c,0xf4,0xf4,0xf4,0xfd,0xf4,0xf4,0xf4,0xf8, + 0xf4,0xf4,0xf4,0xef,0xf4,0xf4,0xf4,0xe3,0xf4,0xf4,0xf4,0xd4,0xf4,0xf4,0xf4, + 0xc1,0xf4,0xf4,0xf4,0xaa,0xf4,0xf4,0xf4,0x90,0xf4,0xf4,0xf4,0x73,0xf4,0xf4, + 0xf4,0x52,0xf4,0xf4,0xf4,0x2e,0xf4,0xf4,0xf4,0x08,0x8a,0x00,0x00,0x00,0x00, + 0x0f,0xe7,0xf0,0xe7,0x74,0x98,0xc0,0x98,0xff,0x91,0xbd,0x91,0xff,0x4c,0x93, + 0x4c,0xff,0x4e,0x9d,0x4e,0xff,0x3f,0x8a,0x3f,0xff,0x3f,0x95,0x3f,0xff,0x33, + 0x81,0x33,0xff,0x37,0x8d,0x37,0xff,0x35,0x89,0x35,0xff,0x41,0x89,0x41,0xff, + 0x6d,0xa6,0x6d,0xff,0x69,0xa4,0x69,0xff,0x65,0xa1,0x65,0xff,0xa0,0xc5,0xa0, + 0xff,0x86,0x2c,0x2f,0x2c,0xff,0x04,0x22,0x3d,0x22,0xff,0x3f,0x8a,0x3f,0xff, + 0x3a,0x88,0x3a,0xff,0x69,0xa4,0x69,0xff,0x82,0xff,0xff,0xff,0xff,0x01,0xff, + 0xff,0xff,0xe6,0x8a,0x00,0x00,0x00,0x00,0x11,0xff,0xff,0xff,0x2a,0xff,0xff, + 0xff,0xa1,0xff,0xff,0xff,0xe7,0xff,0xff,0xff,0xf1,0xff,0xff,0xff,0xf3,0xff, + 0xff,0xff,0xf5,0xff,0xff,0xff,0xf6,0xff,0xff,0xff,0xf8,0xff,0xff,0xff,0xf9, + 0xff,0xff,0xff,0xfa,0xfb,0xfb,0xfc,0xfb,0xf4,0xf4,0xf7,0xfd,0xee,0xee,0xf3, + 0xfe,0xe8,0xe8,0xef,0xfe,0xe3,0xe3,0xea,0xff,0xda,0xda,0xe4,0xfd,0xd4,0xd4, + 0xe0,0xfd,0x83,0xd4,0xd4,0xe0,0xff,0x08,0x39,0x39,0x3c,0xff,0x66,0x66,0x66, + 0xff,0xde,0xde,0xe7,0xff,0xd6,0xd6,0xe1,0xff,0x1d,0x1d,0x1e,0xff,0x9d,0x9d, + 0xa1,0xff,0xf5,0xf5,0xf7,0xff,0xfc,0xfc,0xfd,0xff,0x82,0xd9,0xd9,0xe3,0xff, + 0x82,0xda,0xda,0xe4,0xff,0x03,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xdb, + 0xdb,0xe5,0xff,0x82,0xdc,0xdc,0xe5,0xff,0x04,0x76,0x76,0x7b,0xff,0x3b,0x3b, + 0x3d,0xff,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0x82,0xdf,0xdf,0xe7,0xff, + 0x02,0xe0,0xe0,0xe7,0xff,0xe0,0xe0,0xe8,0xff,0x82,0xe1,0xe1,0xe8,0xff,0x0b, + 0xe2,0xe2,0xe9,0xff,0x3c,0x3c,0x3e,0xff,0x66,0x66,0x66,0xff,0xe9,0xe9,0xee, + 0xff,0xe3,0xe3,0xea,0xff,0x1e,0x1e,0x1f,0xff,0xa1,0xa1,0xa3,0xff,0xf8,0xf8, + 0xfa,0xff,0xfd,0xfd,0xfe,0xff,0xe6,0xe6,0xeb,0xff,0xe6,0xe6,0xec,0xff,0x82, + 0xe7,0xe7,0xec,0xff,0x02,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0x82,0xe9, + 0xe9,0xed,0xff,0x82,0xea,0xea,0xee,0xff,0x05,0x00,0x00,0x00,0xff,0xf6,0xf6, + 0xf8,0xff,0x00,0x00,0x00,0xff,0xf6,0xf6,0xf8,0xff,0xec,0xec,0xf0,0xff,0x82, + 0xed,0xed,0xf0,0xff,0x02,0xee,0xee,0xf0,0xff,0xee,0xee,0xf1,0xff,0x89,0xef, + 0xef,0xf1,0xff,0x02,0xf0,0xf0,0xf1,0xff,0xf0,0xf0,0xf2,0xff,0x82,0xf1,0xf1, + 0xf2,0xff,0x01,0xf2,0xf2,0xf3,0xff,0x82,0xf3,0xf3,0xf4,0xff,0x02,0xf4,0xf4, + 0xf4,0xff,0xf4,0xf4,0xf5,0xff,0x82,0xf5,0xf5,0xf5,0xff,0x89,0xf4,0xf4,0xf4, + 0xff,0x0c,0xf4,0xf4,0xf4,0xfd,0xf4,0xf4,0xf4,0xf8,0xf4,0xf4,0xf4,0xef,0xf4, + 0xf4,0xf4,0xe3,0xf4,0xf4,0xf4,0xd4,0xf4,0xf4,0xf4,0xc1,0xf4,0xf4,0xf4,0xaa, + 0xf4,0xf4,0xf4,0x90,0xf4,0xf4,0xf4,0x73,0xf4,0xf4,0xf4,0x52,0xf4,0xf4,0xf4, + 0x2e,0xf4,0xf4,0xf4,0x08,0x8a,0x00,0x00,0x00,0x00,0x0f,0xc1,0xd9,0xc1,0xc3, + 0x97,0xc0,0x97,0xff,0x87,0xba,0x87,0xff,0x4a,0x92,0x4a,0xff,0x4c,0x9b,0x4c, + 0xff,0x3d,0x89,0x3d,0xff,0x3d,0x94,0x3d,0xff,0x32,0x81,0x32,0xff,0x36,0x8c, + 0x36,0xff,0x34,0x88,0x34,0xff,0x47,0x8b,0x47,0xff,0x6c,0xa6,0x6c,0xff,0x68, + 0xa3,0x68,0xff,0x63,0xa0,0x63,0xff,0xa0,0xc5,0xa0,0xff,0x86,0x2c,0x2f,0x2c, + 0xff,0x04,0x20,0x37,0x20,0xff,0x3d,0x89,0x3d,0xff,0x39,0x87,0x39,0xff,0x35, + 0x84,0x35,0xff,0x83,0xff,0xff,0xff,0xff,0x88,0x00,0x00,0x00,0x00,0x1d,0xff, + 0xff,0xff,0x64,0xff,0xff,0xff,0xc0,0xff,0xff,0xff,0xeb,0xff,0xff,0xff,0xed, + 0xff,0xff,0xff,0xef,0xff,0xff,0xff,0xf1,0xff,0xff,0xff,0xf3,0xff,0xff,0xff, + 0xf5,0xff,0xff,0xff,0xf6,0xff,0xff,0xff,0xf8,0xff,0xff,0xff,0xf9,0xff,0xff, + 0xff,0xfa,0xfb,0xfb,0xfc,0xfb,0xf5,0xf5,0xf8,0xfd,0xee,0xee,0xf3,0xfe,0xe8, + 0xe8,0xef,0xfe,0xe3,0xe3,0xeb,0xff,0xdc,0xdc,0xe5,0xfe,0xd4,0xd4,0xe0,0xfd, + 0xd5,0xd5,0xe1,0xff,0xd5,0xd5,0xe0,0xff,0xd5,0xd5,0xe1,0xff,0x8f,0x8f,0x96, + 0xff,0x00,0x00,0x00,0xff,0xef,0xef,0xf3,0xff,0xba,0xba,0xc4,0xff,0x00,0x00, + 0x00,0xff,0xfa,0xfa,0xfb,0xff,0x00,0x00,0x00,0xff,0x82,0xd9,0xd9,0xe3,0xff, + 0x06,0x91,0x91,0x98,0xff,0x0f,0x0f,0x0f,0xff,0x2c,0x2c,0x2e,0xff,0x00,0x00, + 0x00,0xff,0xff,0xff,0xff,0xff,0xdc,0xdc,0xe5,0xff,0x82,0xdd,0xdd,0xe6,0xff, + 0x06,0xde,0xde,0xe6,0xff,0xed,0xed,0xf2,0xff,0x00,0x00,0x00,0xff,0xff,0xff, + 0xff,0xff,0xe0,0xe0,0xe7,0xff,0xe0,0xe0,0xe8,0xff,0x82,0xe1,0xe1,0xe8,0xff, + 0x01,0xe1,0xe1,0xe9,0xff,0x82,0xe2,0xe2,0xe9,0xff,0x0f,0x97,0x97,0x9b,0xff, + 0x00,0x00,0x00,0xff,0xf4,0xf4,0xf7,0xff,0xc6,0xc6,0xcb,0xff,0x00,0x00,0x00, + 0xff,0xfc,0xfc,0xfc,0xff,0x00,0x00,0x00,0xff,0xe6,0xe6,0xec,0xff,0xe7,0xe7, + 0xec,0xff,0x9a,0x9a,0x9d,0xff,0x0f,0x0f,0x10,0xff,0x2e,0x2e,0x2f,0xff,0x00, + 0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xe9,0xe9,0xee,0xff,0x82,0xea,0xea,0xee, + 0xff,0x82,0xeb,0xeb,0xef,0xff,0x06,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0xff, + 0xff,0xff,0xff,0xff,0xed,0xed,0xf0,0xff,0xee,0xee,0xf0,0xff,0xee,0xee,0xf1, + 0xff,0x82,0xef,0xef,0xf1,0xff,0x8b,0xf0,0xf0,0xf2,0xff,0x83,0xf1,0xf1,0xf2, + 0xff,0x82,0xf2,0xf2,0xf3,0xff,0x01,0xf4,0xf4,0xf4,0xff,0x82,0xf4,0xf4,0xf5, + 0xff,0x8a,0xf4,0xf4,0xf4,0xff,0x0c,0xf4,0xf4,0xf4,0xfd,0xf4,0xf4,0xf4,0xf8, + 0xf4,0xf4,0xf4,0xef,0xf4,0xf4,0xf4,0xe3,0xf4,0xf4,0xf4,0xd4,0xf4,0xf4,0xf4, + 0xc1,0xf4,0xf4,0xf4,0xaa,0xf4,0xf4,0xf4,0x90,0xf4,0xf4,0xf4,0x73,0xf4,0xf4, + 0xf4,0x52,0xf4,0xf4,0xf4,0x2e,0xf4,0xf4,0xf4,0x08,0x89,0x00,0x00,0x00,0x00, + 0x10,0xff,0xff,0xff,0x0c,0xb1,0xcf,0xb1,0xed,0x96,0xbf,0x96,0xff,0x7a,0xb6, + 0x7a,0xff,0x48,0x90,0x48,0xff,0x4a,0x9a,0x4a,0xff,0x3b,0x88,0x3b,0xff,0x3b, + 0x93,0x3b,0xff,0x32,0x80,0x32,0xff,0x36,0x8b,0x36,0xff,0x34,0x86,0x34,0xff, + 0x4d,0x8d,0x4d,0xff,0x6b,0xa5,0x6b,0xff,0x66,0xa2,0x66,0xff,0x62,0xa0,0x62, + 0xff,0x9f,0xc4,0x9f,0xff,0x85,0x2c,0x2f,0x2c,0xff,0x06,0x2c,0x2e,0x2c,0xff, + 0x1c,0x25,0x1c,0xff,0x3c,0x89,0x3c,0xff,0x38,0x86,0x38,0xff,0x34,0x83,0x34, + 0xff,0x9c,0xb0,0x9c,0xff,0x82,0xbf,0xbf,0xbf,0xff,0x01,0xbf,0xbf,0xbf,0x70, + 0x84,0x00,0x00,0x00,0x00,0x16,0xff,0xff,0xff,0x1d,0xff,0xff,0xff,0x8a,0xff, + 0xff,0xff,0xd8,0xff,0xff,0xff,0xe6,0xff,0xff,0xff,0xe8,0xff,0xff,0xff,0xeb, + 0xff,0xff,0xff,0xed,0xff,0xff,0xff,0xef,0xff,0xff,0xff,0xf1,0xff,0xff,0xff, + 0xf3,0xff,0xff,0xff,0xf5,0xff,0xff,0xff,0xf6,0xff,0xff,0xff,0xf8,0xff,0xff, + 0xff,0xf9,0xff,0xff,0xff,0xfa,0xfb,0xfb,0xfc,0xfb,0xf5,0xf5,0xf8,0xfd,0xef, + 0xef,0xf3,0xfe,0xe9,0xe9,0xef,0xfe,0xe3,0xe3,0xeb,0xff,0xdc,0xdc,0xe5,0xfe, + 0xd5,0xd5,0xe1,0xfd,0x83,0xd6,0xd6,0xe1,0xff,0x0f,0xd7,0xd7,0xe2,0xff,0x00, + 0x00,0x00,0xff,0xdd,0xdd,0xdd,0xff,0x65,0x65,0x6a,0xff,0x4a,0x4a,0x4d,0xff, + 0xff,0xff,0xff,0xff,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xda,0xda,0xe4, + 0xff,0x00,0x00,0x00,0xff,0xb9,0xb9,0xbe,0xff,0xdb,0xdb,0xdb,0xff,0x00,0x00, + 0x00,0xff,0xff,0xff,0xff,0xff,0xdd,0xdd,0xe6,0xff,0x82,0xde,0xde,0xe6,0xff, + 0x82,0xdf,0xdf,0xe7,0xff,0x05,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xe0, + 0xe0,0xe8,0xff,0xe1,0xe1,0xe8,0xff,0xe1,0xe1,0xe9,0xff,0x82,0xe2,0xe2,0xe9, + 0xff,0x11,0xe3,0xe3,0xe9,0xff,0xe3,0xe3,0xea,0xff,0xe4,0xe4,0xea,0xff,0x00, + 0x00,0x00,0xff,0xdd,0xdd,0xdd,0xff,0x6b,0x6b,0x6e,0xff,0x4e,0x4e,0x4f,0xff, + 0xff,0xff,0xff,0xff,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xe7,0xe7,0xec, + 0xff,0x00,0x00,0x00,0xff,0xc0,0xc0,0xc2,0xff,0xdc,0xdc,0xdc,0xff,0x00,0x00, + 0x00,0xff,0xff,0xff,0xff,0xff,0xea,0xea,0xee,0xff,0x82,0xeb,0xeb,0xef,0xff, + 0x82,0xec,0xec,0xef,0xff,0x04,0x6f,0x6f,0x70,0xff,0x5f,0x5f,0x60,0xff,0xff, + 0xff,0xff,0xff,0xee,0xee,0xf1,0xff,0x83,0xef,0xef,0xf1,0xff,0x83,0xf0,0xf0, + 0xf2,0xff,0x85,0xf1,0xf1,0xf2,0xff,0x82,0xf0,0xf0,0xf2,0xff,0x85,0xf1,0xf1, + 0xf2,0xff,0x82,0xf2,0xf2,0xf3,0xff,0x02,0xf3,0xf3,0xf3,0xff,0xf3,0xf3,0xf4, + 0xff,0x84,0xf4,0xf4,0xf4,0xff,0x02,0xf3,0xf3,0xf4,0xff,0xf3,0xf3,0xf3,0xff, + 0x85,0xf4,0xf4,0xf4,0xff,0x0c,0xf4,0xf4,0xf4,0xfd,0xf4,0xf4,0xf4,0xf8,0xf4, + 0xf4,0xf4,0xef,0xf4,0xf4,0xf4,0xe3,0xf4,0xf4,0xf4,0xd4,0xf4,0xf4,0xf4,0xc1, + 0xf4,0xf4,0xf4,0xaa,0xf4,0xf4,0xf4,0x90,0xf4,0xf4,0xf4,0x73,0xf4,0xf4,0xf4, + 0x52,0xf4,0xf4,0xf4,0x2e,0xf4,0xf4,0xf4,0x08,0x89,0x00,0x00,0x00,0x00,0x10, + 0xff,0xff,0xff,0x3c,0xa1,0xc6,0xa1,0xfc,0x94,0xbe,0x94,0xff,0x6f,0xb3,0x6f, + 0xff,0x46,0x8f,0x46,0xff,0x48,0x99,0x48,0xff,0x39,0x87,0x39,0xff,0x3a,0x92, + 0x3a,0xff,0x32,0x7f,0x32,0xff,0x35,0x8a,0x35,0xff,0x34,0x85,0x34,0xff,0x4d, + 0x8d,0x4d,0xff,0x6a,0xa4,0x6a,0xff,0x65,0xa2,0x65,0xff,0x61,0x9f,0x61,0xff, + 0x9e,0xc4,0x9e,0xff,0x85,0x2c,0x2f,0x2c,0xff,0x06,0x2c,0x2e,0x2c,0xff,0x20, + 0x27,0x20,0xff,0x32,0x73,0x32,0xff,0x37,0x85,0x37,0xff,0x33,0x83,0x33,0xff, + 0xa4,0xc8,0xa4,0xff,0x82,0xff,0xff,0xff,0xff,0x01,0xff,0xff,0xff,0xce,0x82, + 0x00,0x00,0x00,0x00,0x18,0xff,0xff,0xff,0x4f,0xff,0xff,0xff,0xa9,0xff,0xff, + 0xff,0xdd,0xff,0xff,0xff,0xe0,0xff,0xff,0xff,0xe3,0xff,0xff,0xff,0xe6,0xff, + 0xff,0xff,0xe8,0xff,0xff,0xff,0xeb,0xff,0xff,0xff,0xed,0xff,0xff,0xff,0xef, + 0xff,0xff,0xff,0xf1,0xff,0xff,0xff,0xf3,0xff,0xff,0xff,0xf5,0xff,0xff,0xff, + 0xf6,0xff,0xff,0xff,0xf8,0xff,0xff,0xff,0xf9,0xff,0xff,0xff,0xfa,0xfc,0xfc, + 0xfc,0xfb,0xf5,0xf5,0xf8,0xfd,0xef,0xef,0xf3,0xfe,0xe9,0xe9,0xef,0xfe,0xe4, + 0xe4,0xec,0xff,0xdd,0xdd,0xe6,0xfe,0xd6,0xd6,0xe1,0xfd,0x82,0xd6,0xd6,0xe2, + 0xff,0x82,0xd7,0xd7,0xe2,0xff,0x0f,0x3a,0x3a,0x3c,0xff,0x77,0x77,0x77,0xff, + 0x2c,0x2c,0x2e,0xff,0xbe,0xbe,0xc2,0xff,0xf3,0xf3,0xf6,0xff,0x00,0x00,0x00, + 0xff,0xff,0xff,0xff,0xff,0xdb,0xdb,0xe5,0xff,0x00,0x00,0x00,0xff,0xff,0xff, + 0xff,0xff,0xe4,0xe4,0xea,0xff,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xde, + 0xde,0xe6,0xff,0xde,0xde,0xe7,0xff,0x82,0xdf,0xdf,0xe7,0xff,0x04,0xe0,0xe0, + 0xe8,0xff,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xe1,0xe1,0xe8,0xff,0x82, + 0xe2,0xe2,0xe9,0xff,0x02,0xe3,0xe3,0xe9,0xff,0xe3,0xe3,0xea,0xff,0x82,0xe4, + 0xe4,0xea,0xff,0x0f,0xe5,0xe5,0xeb,0xff,0x3d,0x3d,0x3f,0xff,0x77,0x77,0x77, + 0xff,0x2f,0x2f,0x30,0xff,0xc2,0xc2,0xc5,0xff,0xf7,0xf7,0xf9,0xff,0x00,0x00, + 0x00,0xff,0xff,0xff,0xff,0xff,0xe8,0xe8,0xed,0xff,0x00,0x00,0x00,0xff,0xff, + 0xff,0xff,0xff,0xee,0xee,0xf1,0xff,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff, + 0xeb,0xeb,0xef,0xff,0x82,0xec,0xec,0xef,0xff,0x05,0xed,0xed,0xf0,0xff,0xcd, + 0xcd,0xd0,0xff,0x10,0x10,0x10,0xff,0xf7,0xf7,0xf8,0xff,0xf8,0xf8,0xf9,0xff, + 0x82,0xef,0xef,0xf1,0xff,0x84,0xf0,0xf0,0xf2,0xff,0x82,0xf1,0xf1,0xf2,0xff, + 0x85,0xf2,0xf2,0xf3,0xff,0x82,0xf1,0xf1,0xf2,0xff,0x01,0xf1,0xf1,0xf3,0xff, + 0x85,0xf2,0xf2,0xf3,0xff,0x02,0xf3,0xf3,0xf3,0xff,0xf3,0xf3,0xf4,0xff,0x82, + 0xf4,0xf4,0xf4,0xff,0x82,0xf3,0xf3,0xf4,0xff,0x82,0xf3,0xf3,0xf3,0xff,0x85, + 0xf2,0xf2,0xf3,0xff,0x0c,0xf2,0xf2,0xf3,0xfd,0xf2,0xf2,0xf3,0xf8,0xf2,0xf2, + 0xf3,0xef,0xf2,0xf2,0xf3,0xe3,0xf2,0xf2,0xf3,0xd4,0xf2,0xf2,0xf3,0xc1,0xf2, + 0xf2,0xf3,0xaa,0xf2,0xf2,0xf3,0x90,0xf2,0xf2,0xf3,0x73,0xf2,0xf2,0xf3,0x52, + 0xf2,0xf2,0xf3,0x2e,0xf2,0xf2,0xf3,0x08,0x89,0x00,0x00,0x00,0x00,0x10,0xe7, + 0xf0,0xe7,0x74,0x97,0xc0,0x97,0xff,0x93,0xbe,0x93,0xff,0x5a,0xa4,0x5a,0xff, + 0x45,0x8e,0x45,0xff,0x46,0x99,0x46,0xff,0x37,0x86,0x37,0xff,0x39,0x91,0x39, + 0xff,0x31,0x7d,0x31,0xff,0x35,0x89,0x35,0xff,0x33,0x83,0x33,0xff,0x4c,0x8c, + 0x4c,0xff,0x68,0xa4,0x68,0xff,0x64,0xa1,0x64,0xff,0x60,0x9e,0x60,0xff,0x9d, + 0xc4,0x9d,0xff,0x85,0x2c,0x2f,0x2c,0xff,0x06,0x2b,0x2e,0x2b,0xff,0x23,0x29, + 0x23,0xff,0x2e,0x6c,0x2e,0xff,0x36,0x85,0x36,0xff,0x31,0x82,0x31,0xff,0x6f, + 0xa8,0x6f,0xff,0x82,0xff,0xff,0xff,0xff,0x1b,0xff,0xff,0xff,0xf0,0xff,0xff, + 0xff,0x73,0xff,0xff,0xff,0xc1,0xff,0xff,0xff,0xd6,0xff,0xff,0xff,0xd9,0xff, + 0xff,0xff,0xdd,0xff,0xff,0xff,0xe0,0xff,0xff,0xff,0xe3,0xff,0xff,0xff,0xe6, + 0xff,0xff,0xff,0xe8,0xff,0xff,0xff,0xeb,0xff,0xff,0xff,0xed,0xff,0xff,0xff, + 0xef,0xff,0xff,0xff,0xf1,0xff,0xff,0xff,0xf3,0xff,0xff,0xff,0xf5,0xff,0xff, + 0xff,0xf6,0xff,0xff,0xff,0xf8,0xff,0xff,0xff,0xf9,0xff,0xff,0xff,0xfa,0xfc, + 0xfc,0xfd,0xfb,0xf5,0xf5,0xf8,0xfd,0xef,0xef,0xf4,0xfe,0xe9,0xe9,0xf0,0xfe, + 0xe4,0xe4,0xec,0xff,0xde,0xde,0xe7,0xfe,0xd7,0xd7,0xe2,0xfd,0x82,0xd7,0xd7, + 0xe2,0xff,0x0f,0xd8,0xd8,0xe2,0xff,0xd8,0xd8,0xe3,0xff,0x91,0x91,0x97,0xff, + 0x21,0x21,0x21,0xff,0x10,0x10,0x10,0xff,0xf8,0xf8,0xfa,0xff,0xe2,0xe2,0xe9, + 0xff,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xdc,0xdc,0xe5,0xff,0x00,0x00, + 0x00,0xff,0xff,0xff,0xff,0xff,0xc0,0xc0,0xc7,0xff,0x00,0x00,0x00,0xff,0xff, + 0xff,0xff,0xff,0x82,0xdf,0xdf,0xe7,0xff,0x07,0xe0,0xe0,0xe7,0xff,0xe0,0xe0, + 0xe8,0xff,0xe1,0xe1,0xe8,0xff,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xe2, + 0xe2,0xe9,0xff,0xe3,0xe3,0xe9,0xff,0x82,0xe3,0xe3,0xea,0xff,0x82,0xe4,0xe4, + 0xea,0xff,0x82,0xe5,0xe5,0xeb,0xff,0x0f,0x99,0x99,0x9d,0xff,0x21,0x21,0x21, + 0xff,0x10,0x10,0x10,0xff,0xfa,0xfa,0xfb,0xff,0xed,0xed,0xf1,0xff,0x00,0x00, + 0x00,0xff,0xff,0xff,0xff,0xff,0xe9,0xe9,0xed,0xff,0x00,0x00,0x00,0xff,0xff, + 0xff,0xff,0xff,0xcc,0xcc,0xce,0xff,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff, + 0xec,0xec,0xef,0xff,0xec,0xec,0xf0,0xff,0x82,0xed,0xed,0xf0,0xff,0x04,0x30, + 0x30,0x30,0xff,0x80,0x80,0x82,0xff,0xfe,0xfe,0xfe,0xff,0xef,0xef,0xf1,0xff, + 0x82,0xf0,0xf0,0xf2,0xff,0x02,0xf1,0xf1,0xf2,0xff,0xf0,0xf0,0xf2,0xff,0x84, + 0xf1,0xf1,0xf2,0xff,0x82,0xf2,0xf2,0xf2,0xff,0x84,0xf3,0xf3,0xf3,0xff,0x01, + 0xf2,0xf2,0xf2,0xff,0x82,0xf2,0xf2,0xf3,0xff,0x01,0xf1,0xf1,0xf2,0xff,0x82, + 0xf2,0xf2,0xf3,0xff,0x82,0xf3,0xf3,0xf3,0xff,0x82,0xf3,0xf3,0xf4,0xff,0x82, + 0xf3,0xf3,0xf3,0xff,0x88,0xf2,0xf2,0xf3,0xff,0x0c,0xf2,0xf2,0xf3,0xfd,0xf2, + 0xf2,0xf3,0xf8,0xf2,0xf2,0xf3,0xef,0xf2,0xf2,0xf3,0xe3,0xf2,0xf2,0xf3,0xd4, + 0xf2,0xf2,0xf3,0xc1,0xf2,0xf2,0xf3,0xaa,0xf2,0xf2,0xf3,0x90,0xf2,0xf2,0xf3, + 0x73,0xf2,0xf2,0xf3,0x52,0xf2,0xf2,0xf3,0x2e,0xf2,0xf2,0xf3,0x08,0x89,0x00, + 0x00,0x00,0x00,0x10,0xc4,0xdb,0xc4,0xc8,0x96,0xbf,0x96,0xff,0x8c,0xbb,0x8c, + 0xff,0x53,0x9f,0x53,0xff,0x43,0x8d,0x43,0xff,0x44,0x98,0x44,0xff,0x36,0x84, + 0x36,0xff,0x38,0x90,0x38,0xff,0x30,0x7c,0x30,0xff,0x34,0x87,0x34,0xff,0x32, + 0x82,0x32,0xff,0x52,0x8e,0x52,0xff,0x6c,0xa8,0x6c,0xff,0x77,0xb3,0x77,0xff, + 0x72,0xb1,0x72,0xff,0xa8,0xcf,0xa8,0xff,0x84,0x2d,0x30,0x2d,0xff,0x24,0x2d, + 0x2f,0x2d,0xff,0x2c,0x2f,0x2c,0xff,0x2a,0x2e,0x2a,0xff,0x28,0x5f,0x28,0xff, + 0x3f,0x9d,0x3f,0xff,0x3a,0x9a,0x3a,0xff,0x2e,0x85,0x2e,0xff,0x57,0x99,0x57, + 0xa3,0xff,0xff,0xff,0x92,0xff,0xff,0xff,0xc7,0xff,0xff,0xff,0xcf,0xff,0xff, + 0xff,0xd2,0xff,0xff,0xff,0xd6,0xff,0xff,0xff,0xd9,0xff,0xff,0xff,0xdd,0xff, + 0xff,0xff,0xe0,0xff,0xff,0xff,0xe3,0xff,0xff,0xff,0xe6,0xff,0xff,0xff,0xe8, + 0xff,0xff,0xff,0xeb,0xff,0xff,0xff,0xed,0xff,0xff,0xff,0xef,0xff,0xff,0xff, + 0xf1,0xff,0xff,0xff,0xf3,0xff,0xff,0xff,0xf5,0xff,0xff,0xff,0xf6,0xff,0xff, + 0xff,0xf8,0xff,0xff,0xff,0xf9,0xff,0xff,0xff,0xfa,0xfc,0xfc,0xfd,0xfb,0xf5, + 0xf5,0xf8,0xfd,0xf0,0xf0,0xf4,0xfe,0xea,0xea,0xf0,0xfe,0xe5,0xe5,0xec,0xff, + 0xdf,0xdf,0xe7,0xfe,0xd8,0xd8,0xe2,0xfd,0x82,0xd8,0xd8,0xe3,0xff,0x83,0xd9, + 0xd9,0xe3,0xff,0x0e,0x00,0x00,0x00,0xff,0x64,0x64,0x64,0xff,0xfd,0xfd,0xfd, + 0xff,0xdb,0xdb,0xe5,0xff,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xdd,0xdd, + 0xe6,0xff,0x67,0x67,0x6b,0xff,0x33,0x33,0x33,0xff,0x4a,0x4a,0x4d,0xff,0x00, + 0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xe0,0xe0,0xe7,0xff,0x00,0x00,0x00,0xff, + 0x82,0xe1,0xe1,0xe8,0xff,0x05,0xe1,0xe1,0xe9,0xff,0x00,0x00,0x00,0xff,0xff, + 0xff,0xff,0xff,0xe3,0xe3,0xe9,0xff,0xe3,0xe3,0xea,0xff,0x82,0xe4,0xe4,0xea, + 0xff,0x82,0xe5,0xe5,0xeb,0xff,0x17,0xe6,0xe6,0xeb,0xff,0xe6,0xe6,0xec,0xff, + 0xe7,0xe7,0xec,0xff,0x00,0x00,0x00,0xff,0x65,0x65,0x65,0xff,0xfd,0xfd,0xfe, + 0xff,0xe9,0xe9,0xed,0xff,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xea,0xea, + 0xee,0xff,0x6d,0x6d,0x6f,0xff,0x33,0x33,0x33,0xff,0x4e,0x4e,0x50,0xff,0x00, + 0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xed,0xed,0xf0,0xff,0x00,0x00,0x00,0xff, + 0xee,0xee,0xf0,0xff,0xee,0xee,0xf1,0xff,0x00,0x00,0x00,0xff,0x11,0x11,0x11, + 0xff,0x10,0x10,0x11,0xff,0xf0,0xf0,0xf2,0xff,0x82,0xf1,0xf1,0xf2,0xff,0x01, + 0xf0,0xf0,0xf2,0xff,0x84,0xf1,0xf1,0xf2,0xff,0x03,0xf0,0xf0,0xf2,0xff,0xf0, + 0xf0,0xf1,0xff,0xf1,0xf1,0xf2,0xff,0x83,0xf2,0xf2,0xf3,0xff,0x82,0xf3,0xf3, + 0xf4,0xff,0x85,0xf2,0xf2,0xf3,0xff,0x01,0xf3,0xf3,0xf3,0xff,0x82,0xf3,0xf3, + 0xf4,0xff,0x82,0xf3,0xf3,0xf3,0xff,0x83,0xf2,0xf2,0xf3,0xff,0x82,0xf2,0xf2, + 0xf2,0xff,0x84,0xf2,0xf2,0xf3,0xff,0x0c,0xf2,0xf2,0xf3,0xfd,0xf2,0xf2,0xf3, + 0xf8,0xf2,0xf2,0xf3,0xef,0xf4,0xf4,0xf4,0xe3,0xf2,0xf2,0xf3,0xd4,0xf2,0xf2, + 0xf3,0xc1,0xf2,0xf2,0xf3,0xaa,0xf2,0xf2,0xf3,0x90,0xf2,0xf2,0xf3,0x73,0xf2, + 0xf2,0xf3,0x52,0xf2,0xf2,0xf3,0x2e,0xf2,0xf2,0xf3,0x08,0x88,0x00,0x00,0x00, + 0x00,0x1d,0xff,0xff,0xff,0x19,0xb1,0xcf,0xb1,0xed,0x95,0xbf,0x95,0xff,0x82, + 0xb8,0x82,0xff,0x51,0x9e,0x51,0xff,0x41,0x8b,0x41,0xff,0x42,0x97,0x42,0xff, + 0x34,0x83,0x34,0xff,0x38,0x8f,0x38,0xff,0x30,0x7b,0x30,0xff,0x34,0x86,0x34, + 0xff,0x32,0x81,0x32,0xff,0x57,0x90,0x57,0xff,0x70,0xac,0x70,0xff,0x89,0xc6, + 0x89,0xff,0x8c,0xc8,0x8c,0xff,0xa5,0xd1,0xa5,0xff,0x86,0xa5,0x87,0xff,0x80, + 0xa0,0x81,0xff,0x79,0x9b,0x7a,0xff,0x72,0x96,0x74,0xff,0x6b,0x90,0x6d,0xff, + 0x64,0x8b,0x66,0xff,0x5c,0x85,0x5e,0xff,0x53,0x91,0x56,0xff,0x4d,0xab,0x4e, + 0xff,0x42,0xb3,0x42,0xff,0x33,0x94,0x33,0xff,0xf2,0xf7,0xf2,0xff,0x82,0xff, + 0xff,0xff,0xff,0x1a,0xff,0xff,0xff,0xe8,0xff,0xff,0xff,0xd2,0xff,0xff,0xff, + 0xd6,0xff,0xff,0xff,0xd9,0xff,0xff,0xff,0xdd,0xff,0xff,0xff,0xe0,0xff,0xff, + 0xff,0xe3,0xff,0xff,0xff,0xe6,0xff,0xff,0xff,0xe8,0xff,0xff,0xff,0xeb,0xff, + 0xff,0xff,0xed,0xff,0xff,0xff,0xef,0xff,0xff,0xff,0xf1,0xff,0xff,0xff,0xf3, + 0xff,0xff,0xff,0xf5,0xff,0xff,0xff,0xf6,0xff,0xff,0xff,0xf8,0xff,0xff,0xff, + 0xf9,0xff,0xff,0xff,0xfa,0xfc,0xfc,0xfd,0xfb,0xf6,0xf6,0xf8,0xfd,0xf0,0xf0, + 0xf4,0xfe,0xea,0xea,0xf0,0xfe,0xe5,0xe5,0xec,0xff,0xdf,0xdf,0xe8,0xfe,0xd8, + 0xd8,0xe3,0xfd,0x83,0xd9,0xd9,0xe3,0xff,0x82,0xda,0xda,0xe4,0xff,0x06,0xdb, + 0xdb,0xe4,0xff,0xff,0xff,0xff,0xff,0xf1,0xf1,0xf5,0xff,0xdc,0xdc,0xe5,0xff, + 0xdd,0xdd,0xe5,0xff,0xff,0xff,0xff,0xff,0x82,0xde,0xde,0xe6,0xff,0x07,0xf0, + 0xf0,0xf4,0xff,0xf9,0xf9,0xfa,0xff,0xf4,0xf4,0xf7,0xff,0xff,0xff,0xff,0xff, + 0xe0,0xe0,0xe8,0xff,0xe1,0xe1,0xe8,0xff,0xff,0xff,0xff,0xff,0x82,0xe2,0xe2, + 0xe9,0xff,0x02,0xe3,0xe3,0xe9,0xff,0xff,0xff,0xff,0xff,0x82,0xe4,0xe4,0xea, + 0xff,0x82,0xe5,0xe5,0xeb,0xff,0x82,0xe6,0xe6,0xeb,0xff,0x83,0xe7,0xe7,0xec, + 0xff,0x0f,0xe8,0xe8,0xed,0xff,0xff,0xff,0xff,0xff,0xf6,0xf6,0xf8,0xff,0xe9, + 0xe9,0xee,0xff,0xea,0xea,0xee,0xff,0xff,0xff,0xff,0xff,0xeb,0xeb,0xee,0xff, + 0xeb,0xeb,0xef,0xff,0xf6,0xf6,0xf8,0xff,0xfb,0xfb,0xfc,0xff,0xf9,0xf9,0xfa, + 0xff,0xff,0xff,0xff,0xff,0xee,0xee,0xf0,0xff,0xee,0xee,0xf1,0xff,0xff,0xff, + 0xff,0xff,0x82,0xef,0xef,0xf1,0xff,0x01,0xff,0xff,0xff,0xff,0x82,0xfe,0xfe, + 0xfe,0xff,0x05,0xf1,0xf1,0xf3,0xff,0xf2,0xf2,0xf3,0xff,0xf1,0xf1,0xf2,0xff, + 0xf0,0xf0,0xf2,0xff,0xf0,0xf0,0xf1,0xff,0x82,0xf1,0xf1,0xf2,0xff,0x84,0xf2, + 0xf2,0xf2,0xff,0x02,0xf2,0xf2,0xf3,0xff,0xf3,0xf3,0xf3,0xff,0x86,0xf2,0xf2, + 0xf3,0xff,0x82,0xf3,0xf3,0xf3,0xff,0x02,0xf3,0xf3,0xf4,0xff,0xf3,0xf3,0xf3, + 0xff,0x82,0xf2,0xf2,0xf3,0xff,0x83,0xf2,0xf2,0xf2,0xff,0x86,0xf1,0xf1,0xf2, + 0xff,0x0c,0xf1,0xf1,0xf2,0xfd,0xf1,0xf1,0xf2,0xf8,0xf1,0xf1,0xf2,0xef,0xf1, + 0xf1,0xf2,0xe3,0xf1,0xf1,0xf2,0xd4,0xf1,0xf1,0xf2,0xc1,0xf1,0xf1,0xf2,0xaa, + 0xf1,0xf1,0xf2,0x90,0xf1,0xf1,0xf2,0x73,0xf1,0xf1,0xf2,0x52,0xf1,0xf1,0xf2, + 0x2e,0xf1,0xf1,0xf2,0x08,0x88,0x00,0x00,0x00,0x00,0x1d,0xff,0xff,0xff,0x46, + 0xa1,0xc6,0xa1,0xfc,0x94,0xbe,0x94,0xff,0x78,0xb5,0x78,0xff,0x4f,0x9d,0x4f, + 0xff,0x3f,0x8b,0x3f,0xff,0x40,0x96,0x40,0xff,0x33,0x82,0x33,0xff,0x37,0x8e, + 0x37,0xff,0x2f,0x7a,0x2f,0xff,0x34,0x84,0x34,0xff,0x31,0x80,0x31,0xff,0x57, + 0x90,0x57,0xff,0x6f,0xab,0x6f,0xff,0xa3,0xcf,0xa3,0xff,0xbd,0xc7,0xbd,0xff, + 0xb2,0xb7,0xb3,0xff,0xc7,0xc7,0xc7,0xff,0xe4,0xe4,0xe4,0xff,0xf0,0xf0,0xf0, + 0xff,0xf7,0xf7,0xf8,0xff,0xd1,0xd1,0xd4,0xff,0xb3,0xb3,0xb6,0xff,0x85,0x85, + 0x89,0xff,0x5c,0x5c,0x61,0xff,0x54,0x58,0x5a,0xff,0x49,0x74,0x4e,0xff,0x35, + 0x96,0x35,0xff,0x8c,0xa6,0x8c,0xff,0x82,0xbf,0xbf,0xbf,0xff,0x1a,0xc6,0xc6, + 0xc6,0xf8,0xff,0xff,0xff,0xd2,0xff,0xff,0xff,0xd6,0xff,0xff,0xff,0xd9,0xff, + 0xff,0xff,0xdd,0xff,0xff,0xff,0xe0,0xff,0xff,0xff,0xe3,0xff,0xff,0xff,0xe6, + 0xff,0xff,0xff,0xe8,0xff,0xff,0xff,0xeb,0xff,0xff,0xff,0xed,0xff,0xff,0xff, + 0xef,0xff,0xff,0xff,0xf1,0xff,0xff,0xff,0xf3,0xff,0xff,0xff,0xf5,0xff,0xff, + 0xff,0xf6,0xff,0xff,0xff,0xf8,0xff,0xff,0xff,0xf9,0xff,0xff,0xff,0xfa,0xfc, + 0xfc,0xfd,0xfb,0xf6,0xf6,0xf8,0xfd,0xf0,0xf0,0xf4,0xfe,0xeb,0xeb,0xf0,0xfe, + 0xe6,0xe6,0xed,0xff,0xe0,0xe0,0xe8,0xff,0xd9,0xd9,0xe3,0xfd,0x83,0xda,0xda, + 0xe4,0xff,0x02,0xdb,0xdb,0xe4,0xff,0xdb,0xdb,0xe5,0xff,0x82,0xdc,0xdc,0xe5, + 0xff,0x01,0xc0,0xc0,0xc6,0xff,0x83,0x0f,0x0f,0x0f,0xff,0x01,0xc0,0xc0,0xc8, + 0xff,0x82,0xdf,0xdf,0xe7,0xff,0x82,0xe0,0xe0,0xe8,0xff,0x82,0xe1,0xe1,0xe8, + 0xff,0x82,0xe2,0xe2,0xe9,0xff,0x02,0xc5,0xc5,0xca,0xff,0xe3,0xe3,0xea,0xff, + 0x82,0xe4,0xe4,0xea,0xff,0x83,0xe5,0xe5,0xeb,0xff,0x02,0xe6,0xe6,0xeb,0xff, + 0xe6,0xe6,0xec,0xff,0x82,0xe7,0xe7,0xec,0xff,0x82,0xe8,0xe8,0xed,0xff,0x82, + 0xe9,0xe9,0xed,0xff,0x06,0x3e,0x3e,0x3f,0xff,0x10,0x10,0x10,0xff,0x00,0x00, + 0x00,0xff,0x2f,0x2f,0x30,0xff,0xcd,0xcd,0xcf,0xff,0xec,0xec,0xef,0xff,0x83, + 0xed,0xed,0xf0,0xff,0x82,0xee,0xee,0xf1,0xff,0x82,0xef,0xef,0xf1,0xff,0x04, + 0xd0,0xd0,0xd2,0xff,0xf0,0xf0,0xf2,0xff,0xf1,0xf1,0xf2,0xff,0xf1,0xf1,0xf3, + 0xff,0x82,0xf2,0xf2,0xf3,0xff,0x02,0xf3,0xf3,0xf3,0xff,0xf1,0xf1,0xf2,0xff, + 0x82,0xf0,0xf0,0xf1,0xff,0x04,0x00,0x00,0x00,0xff,0xf0,0xf0,0xf1,0xff,0xf1, + 0xf1,0xf2,0xff,0xf2,0xf2,0xf2,0xff,0x82,0xf2,0xf2,0xf3,0xff,0x02,0xf3,0xf3, + 0xf4,0xff,0xf3,0xf3,0xf3,0xff,0x87,0xf2,0xf2,0xf3,0xff,0x01,0xf3,0xf3,0xf3, + 0xff,0x82,0xf2,0xf2,0xf3,0xff,0x82,0xf2,0xf2,0xf2,0xff,0x01,0xd0,0xd0,0xd2, + 0xff,0x83,0xf1,0xf1,0xf2,0xff,0x01,0xf0,0xf0,0xf1,0xff,0x84,0xf1,0xf1,0xf2, + 0xff,0x0c,0xf1,0xf1,0xf2,0xfd,0xf1,0xf1,0xf2,0xf8,0xf1,0xf1,0xf2,0xef,0xf1, + 0xf1,0xf2,0xe3,0xf1,0xf1,0xf2,0xd4,0xf1,0xf1,0xf2,0xc1,0xf1,0xf1,0xf2,0xaa, + 0xf1,0xf1,0xf2,0x90,0xf1,0xf1,0xf2,0x73,0xf1,0xf1,0xf2,0x52,0xf1,0xf1,0xf2, + 0x2e,0xf1,0xf1,0xf2,0x08,0x88,0x00,0x00,0x00,0x00,0x11,0xe9,0xf2,0xe9,0x7d, + 0x97,0xc0,0x97,0xff,0x93,0xbd,0x93,0xff,0x5c,0x9c,0x5c,0xff,0x44,0x8d,0x44, + 0xff,0x3e,0x89,0x3e,0xff,0x41,0x8b,0x41,0xff,0x5b,0x9a,0x5b,0xff,0x5a,0x97, + 0x5a,0xff,0x58,0x94,0x58,0xff,0x42,0x82,0x42,0xff,0x2c,0x71,0x2c,0xff,0x58, + 0x96,0x58,0xff,0x78,0xaf,0x78,0xff,0xb9,0xbd,0xb9,0xff,0xae,0xae,0xaf,0xff, + 0xef,0xef,0xef,0xff,0x82,0xff,0xff,0xff,0xff,0x0a,0xf7,0xf7,0xf8,0xff,0xe8, + 0xe8,0xea,0xff,0xd5,0xd5,0xd8,0xff,0xc0,0xc0,0xc4,0xff,0xa8,0xa8,0xae,0xff, + 0x84,0x84,0x8b,0xff,0x5c,0x5c,0x61,0xff,0x51,0x51,0x57,0xff,0x36,0x48,0x3a, + 0xff,0x90,0xb5,0x90,0xff,0x82,0xff,0xff,0xff,0xff,0x1e,0xff,0xff,0xff,0xfe, + 0xff,0xff,0xff,0xd2,0xff,0xff,0xff,0xd6,0xff,0xff,0xff,0xd9,0xff,0xff,0xff, + 0xdd,0xff,0xff,0xff,0xe0,0xff,0xff,0xff,0xe3,0xff,0xff,0xff,0xe6,0xff,0xff, + 0xff,0xe8,0xff,0xff,0xff,0xeb,0xff,0xff,0xff,0xed,0xff,0xff,0xff,0xef,0xff, + 0xff,0xff,0xf1,0xff,0xff,0xff,0xf3,0xff,0xff,0xff,0xf5,0xff,0xff,0xff,0xf6, + 0xff,0xff,0xff,0xf8,0xff,0xff,0xff,0xf9,0xff,0xff,0xff,0xfa,0xfc,0xfc,0xfd, + 0xfb,0xf6,0xf6,0xf8,0xfd,0xf0,0xf0,0xf5,0xfe,0xeb,0xeb,0xf1,0xfe,0xe6,0xe6, + 0xed,0xff,0xe1,0xe1,0xe9,0xff,0xda,0xda,0xe4,0xfd,0xdb,0xdb,0xe4,0xff,0xda, + 0xda,0xe4,0xff,0xdb,0xdb,0xe4,0xff,0xdb,0xdb,0xe5,0xff,0x82,0xdc,0xdc,0xe5, + 0xff,0x08,0xdd,0xdd,0xe6,0xff,0x3b,0x3b,0x3d,0xff,0x69,0x69,0x6d,0xff,0xfd, + 0xfd,0xfd,0xff,0x87,0x87,0x87,0xff,0x33,0x33,0x33,0xff,0xe4,0xe4,0xea,0xff, + 0xe0,0xe0,0xe8,0xff,0x82,0xe1,0xe1,0xe8,0xff,0x82,0xe2,0xe2,0xe9,0xff,0x05, + 0xe3,0xe3,0xe9,0xff,0xe3,0xe3,0xea,0xff,0x00,0x00,0x00,0xff,0xe8,0xe8,0xed, + 0xff,0xe4,0xe4,0xea,0xff,0x82,0xe5,0xe5,0xeb,0xff,0x02,0xe6,0xe6,0xeb,0xff, + 0xe6,0xe6,0xec,0xff,0x82,0xe7,0xe7,0xec,0xff,0x82,0xe8,0xe8,0xed,0xff,0x82, + 0xe9,0xe9,0xed,0xff,0x0b,0xea,0xea,0xee,0xff,0x4e,0x4e,0x4f,0xff,0x2f,0x2f, + 0x30,0xff,0xfa,0xfa,0xfb,0xff,0xfe,0xfe,0xfe,0xff,0x66,0x66,0x66,0xff,0x32, + 0x32,0x32,0xff,0xef,0xef,0xf2,0xff,0xed,0xed,0xf0,0xff,0xee,0xee,0xf0,0xff, + 0xee,0xee,0xf1,0xff,0x82,0xef,0xef,0xf1,0xff,0x82,0xf0,0xf0,0xf2,0xff,0x02, + 0x00,0x00,0x00,0xff,0xf3,0xf3,0xf5,0xff,0x82,0xf2,0xf2,0xf3,0xff,0x08,0xf3, + 0xf3,0xf3,0xff,0xf3,0xf3,0xf4,0xff,0xf2,0xf2,0xf3,0xff,0xf1,0xf1,0xf2,0xff, + 0xef,0xef,0xf1,0xff,0xf0,0xf0,0xf2,0xff,0x00,0x00,0x00,0xff,0xff,0xff,0xff, + 0xff,0x83,0xf1,0xf1,0xf2,0xff,0x82,0xf2,0xf2,0xf3,0xff,0x01,0xf2,0xf2,0xf2, + 0xff,0x82,0xf1,0xf1,0xf2,0xff,0x82,0xf2,0xf2,0xf2,0xff,0x84,0xf2,0xf2,0xf3, + 0xff,0x82,0xf2,0xf2,0xf2,0xff,0x82,0xf1,0xf1,0xf2,0xff,0x03,0x00,0x00,0x00, + 0xff,0xf0,0xf0,0xf1,0xff,0xf1,0xf1,0xf1,0xff,0x82,0xf0,0xf0,0xf1,0xff,0x84, + 0xf1,0xf1,0xf2,0xff,0x0c,0xf1,0xf1,0xf2,0xfd,0xf1,0xf1,0xf2,0xf8,0xf1,0xf1, + 0xf2,0xef,0xf1,0xf1,0xf2,0xe3,0xf1,0xf1,0xf2,0xd4,0xf1,0xf1,0xf2,0xc1,0xf1, + 0xf1,0xf2,0xaa,0xf1,0xf1,0xf2,0x90,0xf1,0xf1,0xf2,0x73,0xf1,0xf1,0xf2,0x52, + 0xf1,0xf1,0xf2,0x2e,0xf1,0xf1,0xf2,0x08,0x88,0x00,0x00,0x00,0x00,0x0e,0xc3, + 0xdb,0xc3,0xc8,0x96,0xbf,0x96,0xff,0x92,0xbd,0x92,0xff,0x4e,0x93,0x4e,0xff, + 0x43,0x8c,0x43,0xff,0x3c,0x88,0x3c,0xff,0x59,0x9a,0x59,0xff,0x84,0xb3,0x84, + 0xff,0x83,0xb0,0x83,0xff,0x82,0xae,0x82,0xff,0x4c,0x88,0x4c,0xff,0x2b,0x6f, + 0x2b,0xff,0x5b,0x98,0x5b,0xff,0x7f,0xaa,0x7f,0xff,0x82,0xb2,0xb2,0xb2,0xff, + 0x29,0xfa,0xfa,0xfa,0xff,0xff,0xff,0xff,0xff,0xf7,0xf7,0xf8,0xff,0xe8,0xe8, + 0xea,0xff,0xd5,0xd5,0xd8,0xff,0xc0,0xc0,0xc4,0xff,0xa8,0xa8,0xae,0xff,0x8e, + 0x8e,0x96,0xff,0x6d,0x6d,0x75,0xff,0x52,0x52,0x56,0xff,0x5c,0x5c,0x61,0xff, + 0x51,0x51,0x57,0xff,0x0d,0x2d,0x0d,0xff,0xbb,0xd6,0xbb,0xd9,0xff,0xff,0xff, + 0xca,0xff,0xff,0xff,0xcf,0xff,0xff,0xff,0xd2,0xff,0xff,0xff,0xd6,0xff,0xff, + 0xff,0xd9,0xff,0xff,0xff,0xdd,0xff,0xff,0xff,0xe0,0xff,0xff,0xff,0xe3,0xff, + 0xff,0xff,0xe6,0xff,0xff,0xff,0xe8,0xff,0xff,0xff,0xeb,0xff,0xff,0xff,0xed, + 0xff,0xff,0xff,0xef,0xff,0xff,0xff,0xf1,0xff,0xff,0xff,0xf3,0xff,0xff,0xff, + 0xf5,0xff,0xff,0xff,0xf6,0xff,0xff,0xff,0xf8,0xff,0xff,0xff,0xf9,0xff,0xff, + 0xff,0xfa,0xfc,0xfc,0xfd,0xfb,0xf6,0xf6,0xf9,0xfd,0xf1,0xf1,0xf5,0xfe,0xeb, + 0xeb,0xf1,0xfe,0xe7,0xe7,0xee,0xff,0xe1,0xe1,0xe9,0xff,0xdb,0xdb,0xe4,0xfd, + 0x82,0xdb,0xdb,0xe5,0xff,0x82,0xdc,0xdc,0xe5,0xff,0x82,0xdd,0xdd,0xe6,0xff, + 0x09,0xde,0xde,0xe6,0xff,0x00,0x00,0x00,0xff,0xf6,0xf6,0xf9,0xff,0xf0,0xf0, + 0xf4,0xff,0xe0,0xe0,0xe7,0xff,0x00,0x00,0x00,0xff,0xf9,0xf9,0xfa,0xff,0xe1, + 0xe1,0xe8,0xff,0x00,0x00,0x00,0xff,0x82,0xe2,0xe2,0xe9,0xff,0x08,0x00,0x00, + 0x00,0xff,0xe3,0xe3,0xea,0xff,0x6a,0x6a,0x6d,0xff,0x00,0x00,0x00,0xff,0x55, + 0x55,0x55,0xff,0xe5,0xe5,0xeb,0xff,0xe6,0xe6,0xeb,0xff,0xe6,0xe6,0xec,0xff, + 0x82,0xe7,0xe7,0xec,0xff,0x01,0xe8,0xe8,0xec,0xff,0x82,0xe8,0xe8,0xed,0xff, + 0x02,0xe9,0xe9,0xed,0xff,0xe9,0xe9,0xee,0xff,0x82,0xea,0xea,0xee,0xff,0x11, + 0x00,0x00,0x00,0xff,0xc6,0xc6,0xc8,0xff,0xfb,0xfb,0xfc,0xff,0xec,0xec,0xef, + 0xff,0xed,0xed,0xf0,0xff,0x00,0x00,0x00,0xff,0xfc,0xfc,0xfc,0xff,0xee,0xee, + 0xf1,0xff,0x00,0x00,0x00,0xff,0xef,0xef,0xf1,0xff,0xf0,0xf0,0xf2,0xff,0x00, + 0x00,0x00,0xff,0xf1,0xf1,0xf2,0xff,0x70,0x70,0x71,0xff,0x00,0x00,0x00,0xff, + 0x55,0x55,0x55,0xff,0xf2,0xf2,0xf3,0xff,0x82,0xf3,0xf3,0xf4,0xff,0x82,0xf3, + 0xf3,0xf3,0xff,0x1b,0xf1,0xf1,0xf2,0xff,0xf0,0xf0,0xf2,0xff,0xf0,0xf0,0xf1, + 0xff,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0xff,0x51,0x51, + 0x51,0xff,0x20,0x20,0x20,0xff,0x00,0x00,0x00,0xff,0x71,0x71,0x71,0xff,0xf2, + 0xf2,0xf2,0xff,0x00,0x00,0x00,0xff,0x51,0x51,0x51,0xff,0x20,0x20,0x20,0xff, + 0x00,0x00,0x00,0xff,0x71,0x71,0x71,0xff,0xf2,0xf2,0xf2,0xff,0x00,0x00,0x00, + 0xff,0xef,0xef,0xf1,0xff,0xf0,0xf0,0xf2,0xff,0x00,0x00,0x00,0xff,0xf1,0xf1, + 0xf2,0xff,0x70,0x70,0x71,0xff,0x00,0x00,0x00,0xff,0x55,0x55,0x55,0xff,0xf2, + 0xf2,0xf3,0xff,0xf0,0xf0,0xf1,0xff,0x85,0xef,0xef,0xf0,0xff,0x0c,0xef,0xef, + 0xf0,0xfd,0xef,0xef,0xf0,0xf8,0xef,0xef,0xf0,0xef,0xef,0xef,0xf0,0xe3,0xef, + 0xef,0xf0,0xd4,0xef,0xef,0xf0,0xc1,0xef,0xef,0xf0,0xaa,0xef,0xef,0xf0,0x90, + 0xef,0xef,0xf0,0x73,0xef,0xef,0xf0,0x52,0xef,0xef,0xf0,0x2e,0xef,0xef,0xf0, + 0x08,0x87,0x00,0x00,0x00,0x00,0x0f,0xff,0xff,0xff,0x19,0xb1,0xcf,0xb1,0xed, + 0x95,0xbf,0x95,0xff,0x84,0xb4,0x84,0xff,0x48,0x90,0x48,0xff,0x41,0x8b,0x41, + 0xff,0x3a,0x87,0x3a,0xff,0x62,0x9f,0x62,0xff,0x84,0xb2,0x84,0xff,0x83,0xb0, + 0x83,0xff,0x82,0xad,0x82,0xff,0x41,0x81,0x41,0xff,0x2a,0x6e,0x2a,0xff,0x66, + 0xa2,0x66,0xff,0x74,0x93,0x74,0xff,0x82,0xb2,0xb2,0xb2,0xff,0x0d,0x30,0x30, + 0x30,0xff,0xab,0xab,0xab,0xff,0xe8,0xe8,0xea,0xff,0xd5,0xd5,0xd8,0xff,0xc0, + 0xc0,0xc4,0xff,0xa8,0xa8,0xae,0xff,0x8e,0x8e,0x96,0xff,0x60,0x60,0x67,0xff, + 0x1a,0x1a,0x1c,0xff,0x1b,0x1b,0x1c,0xff,0x66,0x66,0x6b,0xff,0x5c,0x5c,0x61, + 0xff,0x06,0x17,0x06,0xff,0x83,0xff,0xff,0xff,0xff,0x19,0xff,0xff,0xff,0xf1, + 0xff,0xff,0xff,0xd6,0xff,0xff,0xff,0xd9,0xff,0xff,0xff,0xdd,0xff,0xff,0xff, + 0xe0,0xff,0xff,0xff,0xe3,0xff,0xff,0xff,0xe6,0xff,0xff,0xff,0xe8,0xff,0xff, + 0xff,0xeb,0xff,0xff,0xff,0xed,0xff,0xff,0xff,0xef,0xff,0xff,0xff,0xf1,0xff, + 0xff,0xff,0xf3,0xff,0xff,0xff,0xf5,0xff,0xff,0xff,0xf6,0xff,0xff,0xff,0xf8, + 0xff,0xff,0xff,0xf9,0xff,0xff,0xff,0xfa,0xfc,0xfc,0xfd,0xfb,0xf6,0xf6,0xf9, + 0xfd,0xf1,0xf1,0xf5,0xfe,0xec,0xec,0xf1,0xfe,0xe8,0xe8,0xee,0xff,0xe2,0xe2, + 0xea,0xff,0xdc,0xdc,0xe5,0xfd,0x82,0xdc,0xdc,0xe5,0xff,0x02,0xdd,0xdd,0xe5, + 0xff,0xdd,0xdd,0xe6,0xff,0x82,0xde,0xde,0xe6,0xff,0x03,0xde,0xde,0xe7,0xff, + 0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0x82,0xe0,0xe0,0xe8,0xff,0x0d,0x00, + 0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xe2,0xe2,0xe9,0xff,0x00,0x00,0x00,0xff, + 0xff,0xff,0xff,0xff,0xe3,0xe3,0xea,0xff,0x00,0x00,0x00,0xff,0xff,0xff,0xff, + 0xff,0xe5,0xe5,0xeb,0xff,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xf7,0xf7, + 0xf8,0xff,0xe6,0xe6,0xec,0xff,0x82,0xe7,0xe7,0xec,0xff,0x82,0xe8,0xe8,0xed, + 0xff,0x02,0xe9,0xe9,0xed,0xff,0xe9,0xe9,0xee,0xff,0x82,0xea,0xea,0xee,0xff, + 0x13,0xeb,0xeb,0xee,0xff,0xeb,0xeb,0xef,0xff,0x00,0x00,0x00,0xff,0xff,0xff, + 0xff,0xff,0xf1,0xf1,0xf3,0xff,0xed,0xed,0xf0,0xff,0xee,0xee,0xf0,0xff,0x00, + 0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xef,0xef,0xf1,0xff,0x00,0x00,0x00,0xff, + 0xff,0xff,0xff,0xff,0xf0,0xf0,0xf2,0xff,0x00,0x00,0x00,0xff,0xff,0xff,0xff, + 0xff,0xf2,0xf2,0xf3,0xff,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xfb,0xfb, + 0xfb,0xff,0x82,0xf4,0xf4,0xf4,0xff,0x1c,0xf3,0xf3,0xf4,0xff,0xf3,0xf3,0xf3, + 0xff,0xf1,0xf1,0xf2,0xff,0xf0,0xf0,0xf1,0xff,0xf1,0xf1,0xf2,0xff,0x00,0x00, + 0x00,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0xff,0xaa,0xaa,0xaa,0xff,0xfb, + 0xfb,0xfb,0xff,0xdb,0xdb,0xdb,0xff,0x00,0x00,0x00,0xff,0xf8,0xf8,0xf9,0xff, + 0x00,0x00,0x00,0xff,0xaa,0xaa,0xaa,0xff,0xfb,0xfb,0xfb,0xff,0xdb,0xdb,0xdb, + 0xff,0x00,0x00,0x00,0xff,0xf8,0xf8,0xf9,0xff,0x00,0x00,0x00,0xff,0xff,0xff, + 0xff,0xff,0xf0,0xf0,0xf2,0xff,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xf2, + 0xf2,0xf3,0xff,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xfb,0xfb,0xfb,0xff, + 0x86,0xef,0xef,0xf0,0xff,0x0c,0xef,0xef,0xf0,0xfd,0xef,0xef,0xf0,0xf8,0xef, + 0xef,0xf0,0xef,0xef,0xef,0xf0,0xe3,0xef,0xef,0xf0,0xd4,0xef,0xef,0xf0,0xc1, + 0xef,0xef,0xf0,0xaa,0xef,0xef,0xf0,0x90,0xef,0xef,0xf0,0x73,0xef,0xef,0xf0, + 0x52,0xef,0xef,0xf0,0x2e,0xef,0xef,0xf0,0x08,0x87,0x00,0x00,0x00,0x00,0x12, + 0xff,0xff,0xff,0x46,0xa0,0xc5,0xa0,0xfc,0x94,0xbe,0x94,0xff,0x76,0xac,0x76, + 0xff,0x46,0x8e,0x46,0xff,0x3f,0x8a,0x3f,0xff,0x38,0x86,0x38,0xff,0x70,0xa7, + 0x70,0xff,0x83,0xb1,0x83,0xff,0x82,0xaf,0x82,0xff,0x81,0xac,0x81,0xff,0x41, + 0x7f,0x41,0xff,0x2a,0x6d,0x2a,0xff,0x65,0xa1,0x65,0xff,0x4d,0x73,0x4d,0xff, + 0xa7,0xa7,0xa7,0xff,0xb2,0xb2,0xb2,0xff,0x43,0x43,0x43,0xff,0x82,0x00,0x00, + 0x00,0xff,0x03,0x32,0x32,0x33,0xff,0x2c,0x2c,0x2e,0xff,0x26,0x26,0x28,0xff, + 0x83,0x00,0x00,0x00,0xff,0x05,0x3d,0x3d,0x3f,0xff,0x70,0x70,0x75,0xff,0x60, + 0x60,0x65,0xff,0x02,0x07,0x02,0xff,0xd5,0xe5,0xd5,0xff,0x82,0xff,0xff,0xff, + 0xff,0x19,0xff,0xff,0xff,0xfa,0xff,0xff,0xff,0xd6,0xff,0xff,0xff,0xd9,0xff, + 0xff,0xff,0xdd,0xff,0xff,0xff,0xe0,0xff,0xff,0xff,0xe3,0xff,0xff,0xff,0xe6, + 0xff,0xff,0xff,0xe8,0xff,0xff,0xff,0xeb,0xff,0xff,0xff,0xed,0xff,0xff,0xff, + 0xef,0xff,0xff,0xff,0xf1,0xff,0xff,0xff,0xf3,0xff,0xff,0xff,0xf5,0xff,0xff, + 0xff,0xf6,0xff,0xff,0xff,0xf8,0xff,0xff,0xff,0xf9,0xff,0xff,0xff,0xfa,0xfc, + 0xfc,0xfd,0xfb,0xf6,0xf6,0xf9,0xfd,0xf2,0xf2,0xf5,0xfe,0xed,0xed,0xf2,0xfe, + 0xe8,0xe8,0xee,0xff,0xe3,0xe3,0xea,0xff,0xdd,0xdd,0xe5,0xfd,0x83,0xdd,0xdd, + 0xe6,0xff,0x02,0xde,0xde,0xe6,0xff,0xde,0xde,0xe7,0xff,0x82,0xdf,0xdf,0xe7, + 0xff,0x02,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0x82,0xe1,0xe1,0xe8,0xff, + 0x0b,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xe3,0xe3,0xe9,0xff,0x00,0x00, + 0x00,0xff,0xff,0xff,0xff,0xff,0xe4,0xe4,0xea,0xff,0x00,0x00,0x00,0xff,0xff, + 0xff,0xff,0xff,0xe5,0xe5,0xeb,0xff,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff, + 0x82,0xe7,0xe7,0xec,0xff,0x82,0xe8,0xe8,0xed,0xff,0x82,0xe9,0xe9,0xed,0xff, + 0x82,0xea,0xea,0xee,0xff,0x02,0xeb,0xeb,0xee,0xff,0xeb,0xeb,0xef,0xff,0x82, + 0xec,0xec,0xef,0xff,0x15,0x10,0x10,0x10,0xff,0xcc,0xcc,0xcc,0xff,0xed,0xed, + 0xf0,0xff,0xee,0xee,0xf0,0xff,0xce,0xce,0xd1,0xff,0x00,0x00,0x00,0xff,0xff, + 0xff,0xff,0xff,0xf0,0xf0,0xf2,0xff,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff, + 0xf1,0xf1,0xf3,0xff,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xf3,0xf3,0xf3, + 0xff,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xf4,0xf4,0xf4,0xff,0xf4,0xf4, + 0xf5,0xff,0xf5,0xf5,0xf5,0xff,0xf4,0xf4,0xf4,0xff,0xf3,0xf3,0xf4,0xff,0x82, + 0xf1,0xf1,0xf2,0xff,0x1a,0xf3,0xf3,0xf3,0xff,0x00,0x00,0x00,0xff,0xff,0xff, + 0xff,0xff,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xf6,0xf6,0xf6,0xff,0xf1, + 0xf1,0xf2,0xff,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0xff, + 0xff,0xff,0xff,0xff,0xf6,0xf6,0xf6,0xff,0xf1,0xf1,0xf2,0xff,0x00,0x00,0x00, + 0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xf1,0xf1, + 0xf3,0xff,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xf3,0xf3,0xf3,0xff,0x00, + 0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xf4,0xf4,0xf4,0xff,0xed,0xed,0xef,0xff, + 0xee,0xee,0xef,0xff,0x84,0xef,0xef,0xf0,0xff,0x0c,0xef,0xef,0xf0,0xfd,0xef, + 0xef,0xf0,0xf8,0xef,0xef,0xf0,0xef,0xef,0xef,0xf0,0xe3,0xef,0xef,0xf0,0xd4, + 0xef,0xef,0xf0,0xc1,0xef,0xef,0xf0,0xaa,0xef,0xef,0xf0,0x90,0xef,0xef,0xf0, + 0x73,0xef,0xef,0xf0,0x52,0xef,0xef,0xf0,0x2e,0xef,0xef,0xf0,0x08,0x87,0x00, + 0x00,0x00,0x00,0x1f,0xe9,0xf2,0xe9,0x7d,0x97,0xc0,0x97,0xff,0x93,0xbd,0x93, + 0xff,0x68,0xa3,0x68,0xff,0x44,0x8d,0x44,0xff,0x3d,0x89,0x3d,0xff,0x36,0x85, + 0x36,0xff,0x67,0x9a,0x67,0xff,0x6a,0x97,0x6a,0xff,0x69,0x95,0x69,0xff,0x67, + 0x92,0x67,0xff,0x31,0x74,0x31,0xff,0x2a,0x6c,0x2a,0xff,0x64,0xa1,0x64,0xff, + 0x6a,0xa5,0x6a,0xff,0x39,0x46,0x39,0xff,0x7a,0x7a,0x7a,0xff,0xb2,0xb2,0xb2, + 0xff,0x91,0x91,0x91,0xff,0x59,0x59,0x59,0xff,0x2c,0x2c,0x2c,0xff,0x2b,0x2b, + 0x2b,0xff,0x29,0x29,0x2a,0xff,0x28,0x28,0x28,0xff,0x4b,0x4b,0x4c,0xff,0x72, + 0x72,0x74,0xff,0x83,0x83,0x86,0xff,0x5b,0x5b,0x5e,0xff,0x15,0x15,0x16,0xff, + 0x10,0x3d,0x10,0xff,0x7c,0xa3,0x7c,0xff,0x82,0xbf,0xbf,0xbf,0xff,0x19,0xbd, + 0xbd,0xbd,0xff,0xff,0xff,0xff,0xd6,0xff,0xff,0xff,0xd9,0xff,0xff,0xff,0xdd, + 0xff,0xff,0xff,0xe0,0xff,0xff,0xff,0xe3,0xff,0xff,0xff,0xe6,0xff,0xff,0xff, + 0xe8,0xff,0xff,0xff,0xeb,0xff,0xff,0xff,0xed,0xff,0xff,0xff,0xef,0xff,0xff, + 0xff,0xf1,0xff,0xff,0xff,0xf3,0xff,0xff,0xff,0xf5,0xff,0xff,0xff,0xf6,0xff, + 0xff,0xff,0xf8,0xff,0xff,0xff,0xf9,0xff,0xff,0xff,0xfa,0xfc,0xfc,0xfd,0xfb, + 0xf7,0xf7,0xf9,0xfd,0xf2,0xf2,0xf5,0xfe,0xed,0xed,0xf2,0xfe,0xe8,0xe8,0xee, + 0xff,0xe4,0xe4,0xeb,0xff,0xdd,0xdd,0xe6,0xfd,0x82,0xde,0xde,0xe6,0xff,0x01, + 0xde,0xde,0xe7,0xff,0x82,0xdf,0xdf,0xe7,0xff,0x11,0xe0,0xe0,0xe7,0xff,0xe0, + 0xe0,0xe8,0xff,0x2d,0x2d,0x2e,0xff,0x88,0x88,0x88,0xff,0xe2,0xe2,0xe9,0xff, + 0x79,0x79,0x7c,0xff,0x2d,0x2d,0x2f,0xff,0xff,0xff,0xff,0xff,0xe3,0xe3,0xea, + 0xff,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xb7,0xb7,0xbc,0xff,0x00,0x00, + 0x00,0xff,0xff,0xff,0xff,0xff,0xe6,0xe6,0xec,0xff,0x00,0x00,0x00,0xff,0xff, + 0xff,0xff,0xff,0x82,0xe8,0xe8,0xed,0xff,0x82,0xe9,0xe9,0xed,0xff,0x83,0xea, + 0xea,0xee,0xff,0x82,0xeb,0xeb,0xef,0xff,0x82,0xec,0xec,0xef,0xff,0x11,0xed, + 0xed,0xf0,0xff,0x4f,0x4f,0x50,0xff,0x55,0x55,0x55,0xff,0xf1,0xf1,0xf4,0xff, + 0xef,0xef,0xf1,0xff,0x60,0x60,0x60,0xff,0x41,0x41,0x41,0xff,0xff,0xff,0xff, + 0xff,0xf1,0xf1,0xf2,0xff,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xc2,0xc2, + 0xc2,0xff,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xf3,0xf3,0xf4,0xff,0x00, + 0x00,0x00,0xff,0xff,0xff,0xff,0xff,0x83,0xf5,0xf5,0xf5,0xff,0x82,0xf4,0xf4, + 0xf4,0xff,0x07,0xf2,0xf2,0xf2,0xff,0xf3,0xf3,0xf3,0xff,0xf4,0xf4,0xf4,0xff, + 0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0xff,0xff,0xff,0xff, + 0xff,0x82,0xf1,0xf1,0xf2,0xff,0x11,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff, + 0x00,0x00,0x00,0xff,0xaa,0xaa,0xaa,0xff,0xfb,0xfb,0xfb,0xff,0xdb,0xdb,0xdb, + 0xff,0x00,0x00,0x00,0xff,0xf8,0xf8,0xf9,0xff,0x00,0x00,0x00,0xff,0xff,0xff, + 0xff,0xff,0xc2,0xc2,0xc2,0xff,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xf3, + 0xf3,0xf4,0xff,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xf5,0xf5,0xf5,0xff, + 0x86,0xed,0xed,0xef,0xff,0x0c,0xed,0xed,0xef,0xfd,0xed,0xed,0xef,0xf8,0xed, + 0xed,0xef,0xef,0xed,0xed,0xef,0xe3,0xed,0xed,0xef,0xd4,0xed,0xed,0xef,0xc1, + 0xed,0xed,0xef,0xaa,0xed,0xed,0xef,0x90,0xed,0xed,0xef,0x73,0xed,0xed,0xef, + 0x52,0xed,0xed,0xef,0x2e,0xed,0xed,0xef,0x08,0x87,0x00,0x00,0x00,0x00,0x1f, + 0xc6,0xdc,0xc6,0xce,0x96,0xbf,0x96,0xff,0x91,0xbd,0x91,0xff,0x5a,0x9b,0x5a, + 0xff,0x42,0x8c,0x42,0xff,0x3b,0x88,0x3b,0xff,0x35,0x84,0x35,0xff,0x84,0xb3, + 0x84,0xff,0x83,0xb0,0x83,0xff,0x82,0xae,0x82,0xff,0x81,0xab,0x81,0xff,0x2b, + 0x6f,0x2b,0xff,0x2d,0x6e,0x2d,0xff,0x62,0xa0,0x62,0xff,0x71,0xb1,0x71,0xff, + 0x76,0xb7,0x76,0xff,0x3c,0x61,0x3c,0xff,0x1c,0x30,0x1c,0xff,0x1b,0x30,0x1b, + 0xff,0x19,0x2f,0x19,0xff,0x18,0x2f,0x18,0xff,0x17,0x2e,0x17,0xff,0x15,0x2e, + 0x15,0xff,0x14,0x2e,0x14,0xff,0x12,0x2d,0x12,0xff,0x11,0x2d,0x11,0xff,0x0f, + 0x2c,0x0f,0xff,0x0e,0x2b,0x0e,0xff,0x1e,0x6a,0x1e,0xff,0x29,0x9d,0x29,0xff, + 0x71,0xa8,0x71,0xff,0x83,0xff,0xff,0xff,0xff,0x18,0xff,0xff,0xff,0xe8,0xff, + 0xff,0xff,0xd9,0xff,0xff,0xff,0xdd,0xff,0xff,0xff,0xe0,0xff,0xff,0xff,0xe3, + 0xff,0xff,0xff,0xe6,0xff,0xff,0xff,0xe8,0xff,0xff,0xff,0xeb,0xff,0xff,0xff, + 0xed,0xff,0xff,0xff,0xef,0xff,0xff,0xff,0xf1,0xff,0xff,0xff,0xf3,0xff,0xff, + 0xff,0xf5,0xff,0xff,0xff,0xf6,0xff,0xff,0xff,0xf8,0xff,0xff,0xff,0xf9,0xff, + 0xff,0xff,0xfa,0xfc,0xfc,0xfd,0xfb,0xf7,0xf7,0xf9,0xfd,0xf2,0xf2,0xf5,0xfe, + 0xee,0xee,0xf2,0xfe,0xe9,0xe9,0xef,0xff,0xe5,0xe5,0xeb,0xff,0xde,0xde,0xe6, + 0xfd,0x83,0xdf,0xdf,0xe7,0xff,0x01,0xe0,0xe0,0xe7,0xff,0x82,0xe0,0xe0,0xe8, + 0xff,0x13,0xe1,0xe1,0xe8,0xff,0xc3,0xc3,0xca,0xff,0x21,0x21,0x21,0xff,0x10, + 0x10,0x10,0xff,0x0f,0x0f,0x10,0xff,0xd0,0xd0,0xd3,0xff,0xfa,0xfa,0xfb,0xff, + 0xe4,0xe4,0xea,0xff,0x4c,0x4c,0x4e,0xff,0x00,0x00,0x00,0xff,0x3d,0x3d,0x3f, + 0xff,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xe7,0xe7,0xec,0xff,0x00,0x00, + 0x00,0xff,0x11,0x11,0x11,0xff,0xe8,0xe8,0xed,0xff,0xe9,0xe9,0xed,0xff,0xe9, + 0xe9,0xee,0xff,0x82,0xea,0xea,0xee,0xff,0x82,0xeb,0xeb,0xef,0xff,0x82,0xec, + 0xec,0xef,0xff,0x82,0xed,0xed,0xf0,0xff,0x11,0xee,0xee,0xf0,0xff,0xce,0xce, + 0xd1,0xff,0x32,0x32,0x32,0xff,0x11,0x11,0x11,0xff,0x00,0x00,0x00,0xff,0x30, + 0x30,0x30,0xff,0xd8,0xd8,0xd9,0xff,0xfb,0xfb,0xfc,0xff,0xf1,0xf1,0xf3,0xff, + 0x51,0x51,0x51,0xff,0x00,0x00,0x00,0xff,0x41,0x41,0x41,0xff,0x00,0x00,0x00, + 0xff,0xff,0xff,0xff,0xff,0xf4,0xf4,0xf5,0xff,0x21,0x21,0x21,0xff,0x00,0x00, + 0x00,0xff,0x84,0xf5,0xf5,0xf5,0xff,0x02,0xf4,0xf4,0xf4,0xff,0xf3,0xf3,0xf4, + 0xff,0x82,0xf3,0xf3,0xf3,0xff,0x19,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff, + 0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xf1,0xf1,0xf1,0xff,0xf0,0xf0,0xf1, + 0xff,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0xff,0x51,0x51, + 0x51,0xff,0x20,0x20,0x20,0xff,0x00,0x00,0x00,0xff,0x71,0x71,0x71,0xff,0xf2, + 0xf2,0xf2,0xff,0x51,0x51,0x51,0xff,0x00,0x00,0x00,0xff,0x41,0x41,0x41,0xff, + 0x00,0x00,0x00,0xff,0xff,0xff,0xff,0xff,0xf4,0xf4,0xf5,0xff,0x21,0x21,0x21, + 0xff,0x00,0x00,0x00,0xff,0xf5,0xf5,0xf5,0xff,0xed,0xed,0xef,0xff,0xed,0xed, + 0xee,0xff,0x84,0xed,0xed,0xef,0xff,0x0c,0xed,0xed,0xef,0xfd,0xed,0xed,0xef, + 0xf8,0xed,0xed,0xef,0xef,0xed,0xed,0xef,0xe3,0xed,0xed,0xef,0xd4,0xed,0xed, + 0xef,0xc1,0xed,0xed,0xef,0xaa,0xed,0xed,0xef,0x90,0xed,0xed,0xef,0x73,0xed, + 0xed,0xef,0x52,0xed,0xed,0xef,0x2e,0xed,0xed,0xef,0x08,0x86,0x00,0x00,0x00, + 0x00,0x20,0xff,0xff,0xff,0x25,0xb0,0xcf,0xb0,0xed,0x95,0xbe,0x95,0xff,0x90, + 0xbc,0x90,0xff,0x47,0x8f,0x47,0xff,0x40,0x8b,0x40,0xff,0x3a,0x87,0x3a,0xff, + 0x43,0x8c,0x43,0xff,0x83,0xb2,0x83,0xff,0x83,0xaf,0x83,0xff,0x82,0xad,0x82, + 0xff,0x80,0xaa,0x80,0xff,0x2a,0x6e,0x2a,0xff,0x38,0x78,0x38,0xff,0x61,0x9f, + 0x61,0xff,0x6f,0xb0,0x6f,0xff,0x7c,0xc2,0x7c,0xff,0x90,0xcd,0x90,0xff,0x8e, + 0xbf,0x8e,0xff,0x73,0xa7,0x73,0xff,0x87,0xbe,0x87,0xff,0x6b,0xa5,0x6b,0xff, + 0x7f,0xbc,0x7f,0xff,0x7c,0xbb,0x7c,0xff,0x78,0xba,0x78,0xff,0x74,0xb9,0x74, + 0xff,0x71,0xb7,0x71,0xff,0x55,0x9e,0x55,0xff,0x69,0xb4,0x69,0xff,0x2f,0xa9, + 0x2f,0xff,0x29,0xa5,0x29,0xff,0x45,0x8e,0x45,0xff,0x83,0xff,0xff,0xff,0xff, + 0x18,0xff,0xff,0xff,0xf5,0xff,0xff,0xff,0xd9,0xff,0xff,0xff,0xdd,0xff,0xff, + 0xff,0xe0,0xff,0xff,0xff,0xe3,0xff,0xff,0xff,0xe6,0xff,0xff,0xff,0xe8,0xff, + 0xff,0xff,0xeb,0xff,0xff,0xff,0xed,0xff,0xff,0xff,0xef,0xff,0xff,0xff,0xf1, + 0xff,0xff,0xff,0xf3,0xff,0xff,0xff,0xf5,0xff,0xff,0xff,0xf6,0xff,0xff,0xff, + 0xf8,0xff,0xff,0xff,0xf9,0xff,0xff,0xff,0xfa,0xfc,0xfc,0xfd,0xfb,0xf7,0xf7, + 0xf9,0xfd,0xf2,0xf2,0xf6,0xfe,0xee,0xee,0xf2,0xfe,0xea,0xea,0xef,0xff,0xe6, + 0xe6,0xec,0xff,0xdf,0xdf,0xe7,0xfd,0x82,0xdf,0xdf,0xe7,0xff,0x82,0xe0,0xe0, + 0xe8,0xff,0x82,0xe1,0xe1,0xe8,0xff,0x82,0xe2,0xe2,0xe9,0xff,0x02,0xe7,0xe7, + 0xec,0xff,0xfb,0xfb,0xfc,0xff,0x82,0xfd,0xfd,0xfe,0xff,0x07,0xe8,0xe8,0xee, + 0xff,0xe5,0xe5,0xeb,0xff,0xe6,0xe6,0xeb,0xff,0xf7,0xf7,0xf8,0xff,0xff,0xff, + 0xff,0xff,0xf9,0xf9,0xfa,0xff,0xff,0xff,0xff,0xff,0x82,0xe8,0xe8,0xed,0xff, + 0x02,0xff,0xff,0xff,0xff,0xfe,0xfe,0xfe,0xff,0x82,0xea,0xea,0xee,0xff,0x02, + 0xeb,0xeb,0xee,0xff,0xeb,0xeb,0xef,0xff,0x82,0xec,0xec,0xef,0xff,0x82,0xed, + 0xed,0xf0,0xff,0x01,0xee,0xee,0xf0,0xff,0x82,0xee,0xee,0xf1,0xff,0x0d,0xef, + 0xef,0xf1,0xff,0xf1,0xf1,0xf3,0xff,0xfc,0xfc,0xfc,0xff,0xfe,0xfe,0xfe,0xff, + 0xff,0xff,0xff,0xff,0xfc,0xfc,0xfd,0xff,0xf4,0xf4,0xf5,0xff,0xf2,0xf2,0xf3, + 0xff,0xf3,0xf3,0xf4,0xff,0xfb,0xfb,0xfb,0xff,0xff,0xff,0xff,0xff,0xfc,0xfc, + 0xfc,0xff,0xff,0xff,0xff,0xff,0x82,0xf5,0xf5,0xf5,0xff,0x02,0xfe,0xfe,0xfe, + 0xff,0xff,0xff,0xff,0xff,0x82,0xf5,0xf5,0xf5,0xff,0x01,0xf4,0xf4,0xf5,0xff, + 0x83,0xf4,0xf4,0xf4,0xff,0x05,0xf3,0xf3,0xf4,0xff,0xf3,0xf3,0xf3,0xff,0xff, + 0xff,0xff,0xff,0xf3,0xf3,0xf3,0xff,0xff,0xff,0xff,0xff,0x82,0xf0,0xf0,0xf1, + 0xff,0x03,0xef,0xef,0xf1,0xff,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0xff,0x82, + 0xf0,0xf0,0xf1,0xff,0x82,0xf1,0xf1,0xf1,0xff,0x06,0xf2,0xf2,0xf3,0xff,0xf3, + 0xf3,0xf4,0xff,0xfb,0xfb,0xfb,0xff,0xff,0xff,0xff,0xff,0xfc,0xfc,0xfc,0xff, + 0xff,0xff,0xff,0xff,0x82,0xf5,0xf5,0xf5,0xff,0x04,0xfe,0xfe,0xfe,0xff,0xff, + 0xff,0xff,0xff,0xec,0xec,0xed,0xff,0xeb,0xeb,0xed,0xff,0x84,0xed,0xed,0xef, + 0xff,0x0c,0xed,0xed,0xef,0xfd,0xed,0xed,0xef,0xf8,0xed,0xed,0xef,0xef,0xed, + 0xed,0xef,0xe3,0xed,0xed,0xef,0xd4,0xed,0xed,0xef,0xc1,0xed,0xed,0xef,0xaa, + 0xed,0xed,0xef,0x90,0xed,0xed,0xef,0x73,0xed,0xed,0xef,0x52,0xed,0xed,0xef, + 0x2e,0xed,0xed,0xef,0x08,0x86,0x00,0x00,0x00,0x00,0x21,0xff,0xff,0xff,0x52, + 0xa0,0xc5,0xa0,0xfc,0x93,0xbe,0x93,0xff,0x82,0xb3,0x82,0xff,0x45,0x8e,0x45, + 0xff,0x3e,0x8a,0x3e,0xff,0x38,0x86,0x38,0xff,0x4c,0x91,0x4c,0xff,0x83,0xb1, + 0x83,0xff,0x82,0xaf,0x82,0xff,0x81,0xac,0x81,0xff,0x6b,0x9b,0x6b,0xff,0x2a, + 0x6d,0x2a,0xff,0x37,0x77,0x37,0xff,0x60,0x9e,0x60,0xff,0x6e,0xb0,0x6e,0xff, + 0x7b,0xc2,0x7b,0xff,0x8f,0xcc,0x8f,0xff,0x8d,0xbf,0x8d,0xff,0x72,0xa6,0x72, + 0xff,0x86,0xbd,0x86,0xff,0x6a,0xa4,0x6a,0xff,0x7f,0xbb,0x7f,0xff,0x7b,0xba, + 0x7b,0xff,0x77,0xb9,0x77,0xff,0x73,0xb8,0x73,0xff,0x70,0xb7,0x70,0xff,0x54, + 0x9d,0x54,0xff,0x68,0xb3,0x68,0xff,0x41,0xb0,0x41,0xff,0x28,0xa4,0x28,0xff, + 0x1b,0x7e,0x1b,0xff,0xe0,0xec,0xe0,0xfe,0x82,0xff,0xff,0xff,0xfc,0x18,0xff, + 0xff,0xff,0xf7,0xff,0xff,0xff,0xd9,0xff,0xff,0xff,0xdd,0xff,0xff,0xff,0xe0, + 0xff,0xff,0xff,0xe3,0xff,0xff,0xff,0xe6,0xff,0xff,0xff,0xe8,0xff,0xff,0xff, + 0xeb,0xff,0xff,0xff,0xed,0xff,0xff,0xff,0xef,0xff,0xff,0xff,0xf1,0xff,0xff, + 0xff,0xf3,0xff,0xff,0xff,0xf5,0xff,0xff,0xff,0xf6,0xff,0xff,0xff,0xf8,0xff, + 0xff,0xff,0xf9,0xff,0xff,0xff,0xfa,0xfc,0xfc,0xfd,0xfb,0xf7,0xf7,0xf9,0xfd, + 0xf3,0xf3,0xf6,0xfe,0xee,0xee,0xf3,0xfe,0xea,0xea,0xef,0xff,0xe6,0xe6,0xec, + 0xff,0xe0,0xe0,0xe7,0xfd,0x82,0xe0,0xe0,0xe8,0xff,0x82,0xe1,0xe1,0xe8,0xff, + 0x82,0xe2,0xe2,0xe9,0xff,0x01,0xe3,0xe3,0xe9,0xff,0x82,0xe3,0xe3,0xea,0xff, + 0x82,0xe4,0xe4,0xea,0xff,0x82,0xe5,0xe5,0xeb,0xff,0x02,0xe6,0xe6,0xeb,0xff, + 0xe6,0xe6,0xec,0xff,0x82,0xe7,0xe7,0xec,0xff,0x82,0xe8,0xe8,0xed,0xff,0x82, + 0xe9,0xe9,0xed,0xff,0x82,0xea,0xea,0xee,0xff,0x01,0xeb,0xeb,0xee,0xff,0x82, + 0xeb,0xeb,0xef,0xff,0x02,0xec,0xec,0xef,0xff,0xec,0xec,0xf0,0xff,0x82,0xed, + 0xed,0xf0,0xff,0x02,0xee,0xee,0xf0,0xff,0xee,0xee,0xf1,0xff,0x82,0xef,0xef, + 0xf1,0xff,0x82,0xf0,0xf0,0xf2,0xff,0x02,0xf1,0xf1,0xf2,0xff,0xf1,0xf1,0xf3, + 0xff,0x82,0xf2,0xf2,0xf3,0xff,0x02,0xf3,0xf3,0xf3,0xff,0xf3,0xf3,0xf4,0xff, + 0x82,0xf4,0xf4,0xf4,0xff,0x01,0xf4,0xf4,0xf5,0xff,0x87,0xf5,0xf5,0xf5,0xff, + 0x83,0xf4,0xf4,0xf4,0xff,0x82,0xf3,0xf3,0xf4,0xff,0x82,0xf3,0xf3,0xf3,0xff, + 0x83,0xf2,0xf2,0xf3,0xff,0x06,0xf2,0xf2,0xf2,0xff,0xf1,0xf1,0xf2,0xff,0xf1, + 0xf1,0xf1,0xff,0xf1,0xf1,0xf2,0xff,0x00,0x00,0x00,0xff,0xf0,0xf0,0xf1,0xff, + 0x83,0xf1,0xf1,0xf1,0xff,0x06,0xf0,0xf0,0xf1,0xff,0xf1,0xf1,0xf2,0xff,0xf0, + 0xf0,0xf1,0xff,0xed,0xed,0xee,0xff,0xec,0xec,0xed,0xff,0xea,0xea,0xec,0xff, + 0x82,0xe9,0xe9,0xeb,0xff,0x88,0xeb,0xeb,0xed,0xff,0x0c,0xeb,0xeb,0xed,0xfd, + 0xeb,0xeb,0xed,0xf8,0xeb,0xeb,0xed,0xef,0xeb,0xeb,0xed,0xe3,0xeb,0xeb,0xed, + 0xd4,0xeb,0xeb,0xed,0xc1,0xeb,0xeb,0xed,0xaa,0xeb,0xeb,0xed,0x90,0xeb,0xeb, + 0xed,0x73,0xeb,0xeb,0xed,0x52,0xeb,0xeb,0xed,0x2e,0xeb,0xeb,0xed,0x08,0x86, + 0x00,0x00,0x00,0x00,0x3b,0xcc,0xe0,0xcc,0x87,0x97,0xc0,0x97,0xff,0x92,0xbd, + 0x92,0xff,0x70,0xa8,0x70,0xff,0x43,0x8d,0x43,0xff,0x3c,0x89,0x3c,0xff,0x36, + 0x85,0x36,0xff,0x47,0x8d,0x47,0xff,0x5a,0x96,0x5a,0xff,0x58,0x93,0x58,0xff, + 0x57,0x90,0x57,0xff,0x4b,0x85,0x4b,0xff,0x29,0x6c,0x29,0xff,0x36,0x76,0x36, + 0xff,0x5f,0x9e,0x5f,0xff,0x6d,0xaf,0x6d,0xff,0x79,0xc2,0x79,0xff,0x8d,0xcc, + 0x8d,0xff,0x8c,0xbf,0x8c,0xff,0x71,0xa6,0x71,0xff,0x85,0xbd,0x85,0xff,0x69, + 0xa4,0x69,0xff,0x7d,0xbb,0x7d,0xff,0x7a,0xba,0x7a,0xff,0x76,0xb9,0x76,0xff, + 0x72,0xb8,0x72,0xff,0x6f,0xb7,0x6f,0xff,0x53,0x9d,0x53,0xff,0x67,0xb2,0x67, + 0xff,0x3b,0x9f,0x3b,0xff,0x26,0xa3,0x26,0xff,0x1b,0x86,0x1b,0xff,0x37,0x86, + 0x37,0xfc,0xff,0xff,0xff,0xcf,0xff,0xff,0xff,0xd2,0xff,0xff,0xff,0xd6,0xff, + 0xff,0xff,0xd9,0xff,0xff,0xff,0xdd,0xff,0xff,0xff,0xe0,0xff,0xff,0xff,0xe3, + 0xff,0xff,0xff,0xe6,0xff,0xff,0xff,0xe8,0xff,0xff,0xff,0xeb,0xff,0xff,0xff, + 0xed,0xff,0xff,0xff,0xef,0xff,0xff,0xff,0xf1,0xff,0xff,0xff,0xf3,0xff,0xff, + 0xff,0xf5,0xff,0xff,0xff,0xf6,0xff,0xff,0xff,0xf8,0xff,0xff,0xff,0xf9,0xff, + 0xff,0xff,0xfa,0xfc,0xfc,0xfd,0xfb,0xf7,0xf7,0xf9,0xfd,0xf3,0xf3,0xf6,0xfe, + 0xef,0xef,0xf3,0xfe,0xeb,0xeb,0xef,0xff,0xe7,0xe7,0xed,0xff,0xe1,0xe1,0xe8, + 0xfd,0x82,0xe1,0xe1,0xe8,0xff,0x01,0xe1,0xe1,0xe9,0xff,0x82,0xe2,0xe2,0xe9, + 0xff,0x02,0xe3,0xe3,0xe9,0xff,0xe3,0xe3,0xea,0xff,0x82,0xe4,0xe4,0xea,0xff, + 0x82,0xe5,0xe5,0xeb,0xff,0x02,0xe6,0xe6,0xeb,0xff,0xe6,0xe6,0xec,0xff,0x82, + 0xe7,0xe7,0xec,0xff,0x02,0xe8,0xe8,0xec,0xff,0xe8,0xe8,0xed,0xff,0x82,0xe9, + 0xe9,0xed,0xff,0x01,0xe9,0xe9,0xee,0xff,0x82,0xea,0xea,0xee,0xff,0x82,0xeb, + 0xeb,0xef,0xff,0x82,0xec,0xec,0xef,0xff,0x82,0xed,0xed,0xf0,0xff,0x02,0xee, + 0xee,0xf0,0xff,0xee,0xee,0xf1,0xff,0x82,0xef,0xef,0xf1,0xff,0x82,0xf0,0xf0, + 0xf2,0xff,0x82,0xf1,0xf1,0xf2,0xff,0x01,0xf1,0xf1,0xf3,0xff,0x82,0xf2,0xf2, + 0xf3,0xff,0x82,0xf3,0xf3,0xf4,0xff,0x02,0xf4,0xf4,0xf4,0xff,0xf4,0xf4,0xf5, + 0xff,0x87,0xf5,0xf5,0xf5,0xff,0x01,0xf4,0xf4,0xf5,0xff,0x84,0xf4,0xf4,0xf4, + 0xff,0x83,0xf3,0xf3,0xf3,0xff,0x82,0xf2,0xf2,0xf3,0xff,0x07,0xf2,0xf2,0xf2, + 0xff,0xf2,0xf2,0xf3,0xff,0xf2,0xf2,0xf2,0xff,0xf1,0xf1,0xf2,0xff,0xf1,0xf1, + 0xf1,0xff,0xf1,0xf1,0xf2,0xff,0xf3,0xf3,0xf4,0xff,0x85,0xf0,0xf0,0xf1,0xff, + 0x05,0xef,0xef,0xf0,0xff,0xee,0xee,0xf0,0xff,0xed,0xed,0xee,0xff,0xeb,0xeb, + 0xed,0xff,0xeb,0xeb,0xee,0xff,0x82,0xea,0xea,0xec,0xff,0x82,0xe9,0xe9,0xeb, + 0xff,0x86,0xeb,0xeb,0xed,0xff,0x0c,0xeb,0xeb,0xed,0xfd,0xeb,0xeb,0xed,0xf8, + 0xeb,0xeb,0xed,0xef,0xeb,0xeb,0xed,0xe3,0xeb,0xeb,0xed,0xd4,0xeb,0xeb,0xed, + 0xc1,0xeb,0xeb,0xed,0xaa,0xeb,0xeb,0xed,0x90,0xeb,0xeb,0xed,0x73,0xeb,0xeb, + 0xed,0x52,0xeb,0xeb,0xed,0x2e,0xeb,0xeb,0xed,0x08,0x86,0x00,0x00,0x00,0x00, + 0x3b,0xce,0xe1,0xce,0xc6,0x95,0xbf,0x95,0xff,0x91,0xbc,0x91,0xff,0x6a,0x92, + 0x6a,0xff,0x63,0x81,0x63,0xff,0x50,0x6f,0x50,0xff,0x5d,0x7d,0x5d,0xff,0x5b, + 0x7c,0x5b,0xff,0x5a,0x7a,0x5a,0xff,0x58,0x78,0x58,0xff,0x47,0x67,0x47,0xff, + 0x55,0x75,0x55,0xff,0x54,0x73,0x54,0xff,0x3c,0x5f,0x3c,0xff,0x58,0x93,0x58, + 0xff,0x6e,0xb1,0x6e,0xff,0x77,0xc1,0x77,0xff,0x83,0xc7,0x83,0xff,0x81,0xbf, + 0x81,0xff,0x6d,0xad,0x6d,0xff,0x78,0xbc,0x78,0xff,0x64,0xab,0x64,0xff,0x6f, + 0xba,0x6f,0xff,0x6b,0xb9,0x6b,0xff,0x66,0xb8,0x66,0xff,0x62,0xb6,0x62,0xff, + 0x5d,0xb4,0x5d,0xff,0x49,0xa2,0x49,0xff,0x60,0xaf,0x60,0xff,0x39,0x99,0x39, + 0xff,0x24,0xa2,0x24,0xff,0x1b,0x8e,0x1b,0xff,0x11,0x6f,0x11,0xff,0xff,0xff, + 0xff,0xcf,0xff,0xff,0xff,0xd2,0xff,0xff,0xff,0xd6,0xff,0xff,0xff,0xd9,0xff, + 0xff,0xff,0xdd,0xff,0xff,0xff,0xe0,0xff,0xff,0xff,0xe3,0xff,0xff,0xff,0xe6, + 0xff,0xff,0xff,0xe8,0xff,0xff,0xff,0xeb,0xff,0xff,0xff,0xed,0xff,0xff,0xff, + 0xef,0xff,0xff,0xff,0xf1,0xff,0xff,0xff,0xf3,0xff,0xff,0xff,0xf5,0xff,0xff, + 0xff,0xf6,0xff,0xff,0xff,0xf8,0xff,0xff,0xff,0xf9,0xff,0xff,0xff,0xfa,0xfc, + 0xfc,0xfd,0xfb,0xf8,0xf8,0xf9,0xfd,0xf3,0xf3,0xf6,0xfe,0xef,0xef,0xf3,0xfe, + 0xeb,0xeb,0xf0,0xff,0xe8,0xe8,0xed,0xff,0xe1,0xe1,0xe9,0xfd,0x83,0xe2,0xe2, + 0xe9,0xff,0x02,0xe3,0xe3,0xe9,0xff,0xe3,0xe3,0xea,0xff,0x82,0xe4,0xe4,0xea, + 0xff,0x82,0xe5,0xe5,0xeb,0xff,0x82,0xe6,0xe6,0xeb,0xff,0x09,0xad,0xad,0xb1, + 0xff,0x48,0x48,0x49,0xff,0x0e,0x0e,0x0e,0xff,0x1d,0x1d,0x1d,0xff,0x2d,0x2d, + 0x2d,0xff,0x3c,0x3c,0x3c,0xff,0x7c,0x7c,0x7d,0xff,0xc6,0xc6,0xc9,0xff,0xea, + 0xea,0xee,0xff,0x82,0xeb,0xeb,0xef,0xff,0x82,0xec,0xec,0xef,0xff,0x82,0xed, + 0xed,0xf0,0xff,0x02,0xee,0xee,0xf0,0xff,0xee,0xee,0xf1,0xff,0x83,0xef,0xef, + 0xf1,0xff,0x82,0xf0,0xf0,0xf2,0xff,0x02,0xf1,0xf1,0xf2,0xff,0xf1,0xf1,0xf3, + 0xff,0x82,0xf2,0xf2,0xf3,0xff,0x09,0xf3,0xf3,0xf4,0xff,0xb6,0xb6,0xb7,0xff, + 0x4c,0x4c,0x4c,0xff,0x0e,0x0e,0x0e,0xff,0x1d,0x1d,0x1d,0xff,0x2d,0x2d,0x2d, + 0xff,0x3c,0x3c,0x3c,0xff,0x80,0x80,0x80,0xff,0xce,0xce,0xce,0xff,0x82,0xf5, + 0xf5,0xf5,0xff,0x01,0xf4,0xf4,0xf5,0xff,0x85,0xf4,0xf4,0xf4,0xff,0x02,0xf3, + 0xf3,0xf4,0xff,0xf3,0xf3,0xf3,0xff,0x82,0xf2,0xf2,0xf3,0xff,0x84,0xf2,0xf2, + 0xf2,0xff,0x83,0xf1,0xf1,0xf2,0xff,0x0e,0xb7,0xb7,0xb8,0xff,0x58,0x58,0x59, + 0xff,0x20,0x20,0x20,0xff,0x2c,0x2c,0x2c,0xff,0x38,0x38,0x38,0xff,0x46,0x46, + 0x46,0xff,0x83,0x83,0x84,0xff,0xca,0xca,0xcb,0xff,0xee,0xee,0xef,0xff,0xed, + 0xed,0xef,0xff,0xed,0xed,0xee,0xff,0xeb,0xeb,0xed,0xff,0xea,0xea,0xec,0xff, + 0xea,0xea,0xeb,0xff,0x84,0xe9,0xe9,0xeb,0xff,0x84,0xeb,0xeb,0xed,0xff,0x0c, + 0xeb,0xeb,0xed,0xfd,0xeb,0xeb,0xed,0xf8,0xeb,0xeb,0xed,0xef,0xeb,0xeb,0xed, + 0xe3,0xeb,0xeb,0xed,0xd4,0xeb,0xeb,0xed,0xc1,0xeb,0xeb,0xed,0xaa,0xeb,0xeb, + 0xed,0x90,0xeb,0xeb,0xed,0x73,0xeb,0xeb,0xed,0x52,0xeb,0xeb,0xed,0x2e,0xeb, + 0xeb,0xed,0x08,0x85,0x00,0x00,0x00,0x00,0x3c,0xff,0xff,0xff,0x25,0xb5,0xd2, + 0xb5,0xe8,0x94,0xbe,0x94,0xff,0x90,0xbc,0x90,0xff,0xae,0xb7,0xb2,0xff,0x63, + 0x63,0x77,0xff,0x58,0x58,0x6c,0xff,0x4d,0x4d,0x61,0xff,0x42,0x42,0x56,0xff, + 0x39,0x39,0x4c,0xff,0x31,0x31,0x43,0xff,0x29,0x29,0x3a,0xff,0x21,0x21,0x30, + 0xff,0x19,0x19,0x27,0xff,0x0a,0x0a,0x10,0xff,0x45,0x75,0x45,0xff,0x73,0xb8, + 0x73,0xff,0x76,0xc1,0x76,0xff,0x8b,0xcb,0x8b,0xff,0x8a,0xbf,0x8a,0xff,0x6f, + 0xa6,0x6f,0xff,0x83,0xbd,0x83,0xff,0x67,0xa3,0x67,0xff,0x7b,0xbb,0x7b,0xff, + 0x78,0xba,0x78,0xff,0x74,0xb9,0x74,0xff,0x70,0xb7,0x70,0xff,0x6c,0xb6,0x6c, + 0xff,0x51,0x9c,0x51,0xff,0x65,0xb1,0x65,0xff,0x35,0x8e,0x35,0xff,0x23,0xa1, + 0x23,0xff,0x1b,0x95,0x1b,0xff,0x10,0x6e,0x10,0xff,0xb9,0xd4,0xb9,0xdf,0xff, + 0xff,0xff,0xd2,0xff,0xff,0xff,0xd6,0xff,0xff,0xff,0xd9,0xff,0xff,0xff,0xdd, + 0xff,0xff,0xff,0xe0,0xff,0xff,0xff,0xe3,0xff,0xff,0xff,0xe6,0xff,0xff,0xff, + 0xe8,0xff,0xff,0xff,0xeb,0xff,0xff,0xff,0xed,0xff,0xff,0xff,0xef,0xff,0xff, + 0xff,0xf1,0xff,0xff,0xff,0xf3,0xff,0xff,0xff,0xf5,0xff,0xff,0xff,0xf6,0xff, + 0xff,0xff,0xf8,0xff,0xff,0xff,0xf9,0xff,0xff,0xff,0xfa,0xfc,0xfc,0xfd,0xfb, + 0xf8,0xf8,0xfa,0xfd,0xf3,0xf3,0xf6,0xfe,0xf0,0xf0,0xf3,0xfe,0xec,0xec,0xf0, + 0xff,0xe8,0xe8,0xee,0xff,0xe2,0xe2,0xe9,0xfd,0x82,0xe3,0xe3,0xe9,0xff,0x01, + 0xe3,0xe3,0xea,0xff,0x82,0xe4,0xe4,0xea,0xff,0x83,0xe5,0xe5,0xeb,0xff,0x06, + 0xe6,0xe6,0xeb,0xff,0xe6,0xe6,0xec,0xff,0x65,0x65,0x67,0xff,0x00,0x00,0x00, + 0xff,0x05,0x05,0x05,0xff,0x02,0x02,0x02,0xff,0x82,0x00,0x00,0x00,0xff,0x04, + 0x04,0x04,0x04,0xff,0x22,0x22,0x22,0xff,0x5d,0x5d,0x5d,0xff,0xa4,0xa4,0xa6, + 0xff,0x82,0xec,0xec,0xef,0xff,0x83,0xed,0xed,0xf0,0xff,0x82,0xee,0xee,0xf1, + 0xff,0x82,0xef,0xef,0xf1,0xff,0x82,0xf0,0xf0,0xf2,0xff,0x02,0xf1,0xf1,0xf2, + 0xff,0xf1,0xf1,0xf3,0xff,0x82,0xf2,0xf2,0xf3,0xff,0x82,0xf3,0xf3,0xf4,0xff, + 0x04,0x6a,0x6a,0x6a,0xff,0x00,0x00,0x00,0xff,0x05,0x05,0x05,0xff,0x02,0x02, + 0x02,0xff,0x82,0x00,0x00,0x00,0xff,0x04,0x04,0x04,0x04,0xff,0x22,0x22,0x22, + 0xff,0x5d,0x5d,0x5d,0xff,0xa7,0xa7,0xa8,0xff,0x85,0xf4,0xf4,0xf4,0xff,0x82, + 0xf3,0xf3,0xf4,0xff,0x82,0xf3,0xf3,0xf3,0xff,0x83,0xf2,0xf2,0xf3,0xff,0x01, + 0xf2,0xf2,0xf2,0xff,0x83,0xf1,0xf1,0xf2,0xff,0x05,0xf0,0xf0,0xf1,0xff,0x68, + 0x68,0x69,0xff,0x00,0x00,0x00,0xff,0x05,0x05,0x05,0xff,0x02,0x02,0x02,0xff, + 0x82,0x00,0x00,0x00,0xff,0x07,0x04,0x04,0x04,0xff,0x22,0x22,0x22,0xff,0x5d, + 0x5d,0x5d,0xff,0xa5,0xa5,0xa5,0xff,0xed,0xed,0xee,0xff,0xec,0xec,0xee,0xff, + 0xec,0xec,0xed,0xff,0x82,0xea,0xea,0xec,0xff,0x02,0xe9,0xe9,0xeb,0xff,0xe8, + 0xe8,0xeb,0xff,0x86,0xe9,0xe9,0xeb,0xff,0x0c,0xe9,0xe9,0xeb,0xfd,0xe9,0xe9, + 0xeb,0xf8,0xe9,0xe9,0xeb,0xef,0xe9,0xe9,0xeb,0xe3,0xe9,0xe9,0xeb,0xd4,0xe9, + 0xe9,0xeb,0xc1,0xe9,0xe9,0xeb,0xaa,0xe9,0xe9,0xeb,0x90,0xe9,0xe9,0xeb,0x73, + 0xe9,0xe9,0xeb,0x52,0xe9,0xe9,0xeb,0x2e,0xe9,0xe9,0xeb,0x08,0x85,0x00,0x00, + 0x00,0x00,0x3e,0xff,0xff,0xff,0x52,0xa3,0xc7,0xa3,0xf9,0x93,0xbe,0x93,0xff, + 0x8f,0xbb,0x8f,0xff,0xb1,0xb1,0xb7,0xff,0x6e,0x6e,0x82,0xff,0x63,0x63,0x77, + 0xff,0x58,0x58,0x6c,0xff,0x4d,0x4d,0x61,0xff,0x42,0x42,0x56,0xff,0x39,0x39, + 0x4c,0xff,0x31,0x31,0x43,0xff,0x29,0x29,0x3a,0xff,0x21,0x21,0x30,0xff,0x0e, + 0x0e,0x15,0xff,0x44,0x75,0x44,0xff,0x71,0xb8,0x71,0xff,0x74,0xc0,0x74,0xff, + 0x83,0xbf,0x83,0xff,0x8a,0xbe,0x8a,0xff,0x6e,0xa5,0x6e,0xff,0x82,0xbc,0x82, + 0xff,0x66,0xa3,0x66,0xff,0x7a,0xba,0x7a,0xff,0x77,0xb9,0x77,0xff,0x73,0xb8, + 0x73,0xff,0x6f,0xb7,0x6f,0xff,0x6c,0xb5,0x6c,0xff,0x50,0x9b,0x50,0xff,0x64, + 0xb0,0x64,0xff,0x48,0x96,0x48,0xff,0x21,0xa0,0x21,0xff,0x1b,0x9c,0x1b,0xff, + 0x0f,0x6d,0x0f,0xff,0x72,0xa9,0x72,0xf0,0xff,0xff,0xff,0xd2,0xff,0xff,0xff, + 0xd6,0xff,0xff,0xff,0xd9,0xff,0xff,0xff,0xdd,0xff,0xff,0xff,0xe0,0xff,0xff, + 0xff,0xe3,0xff,0xff,0xff,0xe6,0xff,0xff,0xff,0xe8,0xff,0xff,0xff,0xeb,0xff, + 0xff,0xff,0xed,0xff,0xff,0xff,0xef,0xff,0xff,0xff,0xf1,0xff,0xff,0xff,0xf3, + 0xff,0xff,0xff,0xf5,0xff,0xff,0xff,0xf6,0xff,0xff,0xff,0xf8,0xff,0xff,0xff, + 0xf9,0xff,0xff,0xff,0xfa,0xfd,0xfd,0xfd,0xfb,0xf8,0xf8,0xfa,0xfd,0xf4,0xf4, + 0xf6,0xfe,0xf0,0xf0,0xf4,0xfe,0xec,0xec,0xf1,0xff,0xe9,0xe9,0xee,0xff,0xe3, + 0xe3,0xea,0xfd,0xe4,0xe4,0xea,0xff,0xe3,0xe3,0xea,0xff,0x82,0xe4,0xe4,0xea, + 0xff,0x82,0xe5,0xe5,0xeb,0xff,0x08,0xe6,0xe6,0xeb,0xff,0xe6,0xe6,0xec,0xff, + 0xe7,0xe7,0xec,0xff,0x56,0x56,0x58,0xff,0x00,0x00,0x00,0xff,0x09,0x09,0x09, + 0xff,0x40,0x40,0x40,0xff,0x78,0x78,0x78,0xff,0x82,0x7f,0x7f,0x7f,0xff,0x05, + 0x78,0x78,0x78,0xff,0x40,0x40,0x40,0xff,0x07,0x07,0x07,0xff,0x6f,0x6f,0x6f, + 0xff,0xbd,0xbd,0xbe,0xff,0x82,0xed,0xed,0xf0,0xff,0x02,0xee,0xee,0xf0,0xff, + 0xee,0xee,0xf1,0xff,0x82,0xef,0xef,0xf1,0xff,0x82,0xf0,0xf0,0xf2,0xff,0x02, + 0xf1,0xf1,0xf2,0xff,0xf1,0xf1,0xf3,0xff,0x82,0xf2,0xf2,0xf3,0xff,0x01,0xf3, + 0xf3,0xf3,0xff,0x82,0xf3,0xf3,0xf4,0xff,0x05,0x5b,0x5b,0x5b,0xff,0x00,0x00, + 0x00,0xff,0x01,0x0b,0x01,0xff,0x00,0x4d,0x00,0xff,0x00,0x90,0x00,0xff,0x82, + 0x00,0x99,0x00,0xff,0x05,0x00,0x90,0x00,0xff,0x00,0x4d,0x00,0xff,0x07,0x07, + 0x07,0xff,0x6f,0x6f,0x6f,0xff,0xc0,0xc0,0xc0,0xff,0x82,0xf4,0xf4,0xf4,0xff, + 0x82,0xf3,0xf3,0xf4,0xff,0x83,0xf3,0xf3,0xf3,0xff,0x82,0xf2,0xf2,0xf3,0xff, + 0x01,0xf2,0xf2,0xf2,0xff,0x83,0xf1,0xf1,0xf2,0xff,0x07,0xf1,0xf1,0xf1,0xff, + 0xf0,0xf0,0xf1,0xff,0x59,0x59,0x5a,0xff,0x00,0x00,0x00,0xff,0x0e,0x0e,0x01, + 0xff,0x65,0x65,0x00,0xff,0xbd,0xbd,0x00,0xff,0x82,0xc9,0xc9,0x00,0xff,0x05, + 0xbd,0xbd,0x00,0xff,0x65,0x65,0x00,0xff,0x07,0x07,0x07,0xff,0x6f,0x6f,0x6f, + 0xff,0xbd,0xbd,0xbd,0xff,0x83,0xeb,0xeb,0xed,0xff,0x82,0xe9,0xe9,0xeb,0xff, + 0x03,0xe8,0xe8,0xea,0xff,0xe9,0xe9,0xeb,0xff,0xe8,0xe8,0xeb,0xff,0x84,0xe9, + 0xe9,0xeb,0xff,0x0c,0xe9,0xe9,0xeb,0xfd,0xe9,0xe9,0xeb,0xf8,0xe9,0xe9,0xeb, + 0xef,0xe9,0xe9,0xeb,0xe3,0xe9,0xe9,0xeb,0xd4,0xe9,0xe9,0xeb,0xc1,0xe9,0xe9, + 0xeb,0xaa,0xe9,0xe9,0xeb,0x90,0xe9,0xe9,0xeb,0x73,0xe9,0xe9,0xeb,0x52,0xe9, + 0xe9,0xeb,0x2e,0xe9,0xe9,0xeb,0x08,0x85,0x00,0x00,0x00,0x00,0x3c,0xff,0xff, + 0xff,0x79,0x96,0xbf,0x96,0xff,0x92,0xbd,0x92,0xff,0x92,0xbb,0x92,0xff,0x99, + 0xb6,0x99,0xff,0xa5,0xbd,0xa5,0xff,0x93,0xac,0x93,0xff,0xa1,0xbb,0xa1,0xff, + 0x9f,0xb9,0x9f,0xff,0x9d,0xb8,0x9d,0xff,0x9b,0xb7,0x9b,0xff,0x89,0xa5,0x89, + 0xff,0x96,0xb4,0x96,0xff,0x94,0xb3,0x94,0xff,0x64,0x8c,0x64,0xff,0x55,0x91, + 0x55,0xff,0x70,0xb7,0x70,0xff,0x73,0xc0,0x73,0xff,0x7e,0xb9,0x7e,0xff,0x89, + 0xbe,0x89,0xff,0x6c,0xa5,0x6c,0xff,0x81,0xbc,0x81,0xff,0x65,0xa3,0x65,0xff, + 0x79,0xba,0x79,0xff,0x76,0xb9,0x76,0xff,0x72,0xb8,0x72,0xff,0x6e,0xb7,0x6e, + 0xff,0x6a,0xb5,0x6a,0xff,0x4f,0x9a,0x4f,0xff,0x63,0xb0,0x63,0xff,0x47,0x96, + 0x47,0xff,0x2e,0xa5,0x2e,0xff,0x1a,0x9b,0x1a,0xff,0x10,0x78,0x10,0xff,0x48, + 0x90,0x48,0xf8,0xff,0xff,0xff,0xd2,0xff,0xff,0xff,0xd6,0xff,0xff,0xff,0xd9, + 0xff,0xff,0xff,0xdd,0xff,0xff,0xff,0xe0,0xff,0xff,0xff,0xe3,0xff,0xff,0xff, + 0xe6,0xff,0xff,0xff,0xe8,0xff,0xff,0xff,0xeb,0xff,0xff,0xff,0xed,0xff,0xff, + 0xff,0xef,0xff,0xff,0xff,0xf1,0xff,0xff,0xff,0xf3,0xff,0xff,0xff,0xf5,0xff, + 0xff,0xff,0xf6,0xff,0xff,0xff,0xf8,0xff,0xff,0xff,0xf9,0xff,0xff,0xff,0xfa, + 0xfd,0xfd,0xfd,0xfb,0xf8,0xf8,0xfa,0xfd,0xf4,0xf4,0xf7,0xfe,0xf0,0xf0,0xf4, + 0xfe,0xed,0xed,0xf1,0xff,0xe9,0xe9,0xef,0xff,0xe4,0xe4,0xea,0xfd,0x82,0xe4, + 0xe4,0xea,0xff,0x82,0xe5,0xe5,0xeb,0xff,0x02,0xe6,0xe6,0xeb,0xff,0xe6,0xe6, + 0xec,0xff,0x82,0xe7,0xe7,0xec,0xff,0x0f,0xae,0xae,0xb1,0xff,0x00,0x00,0x00, + 0xff,0x09,0x09,0x09,0xff,0x68,0x68,0x68,0xff,0x7f,0x7f,0x7f,0xff,0xb2,0xbe, + 0xaf,0xff,0xc8,0xda,0xc5,0xff,0xbd,0xcc,0xba,0xff,0xaa,0xb4,0xa8,0xff,0x95, + 0x9a,0x94,0xff,0x68,0x68,0x68,0xff,0x09,0x09,0x09,0xff,0x93,0x93,0x93,0xff, + 0xe0,0xe0,0xe2,0xff,0xee,0xee,0xf1,0xff,0x82,0xef,0xef,0xf1,0xff,0x82,0xf0, + 0xf0,0xf2,0xff,0x82,0xf1,0xf1,0xf2,0xff,0x01,0xf1,0xf1,0xf3,0xff,0x82,0xf2, + 0xf2,0xf3,0xff,0x82,0xf3,0xf3,0xf4,0xff,0x10,0xf4,0xf4,0xf4,0xff,0xb7,0xb7, + 0xb8,0xff,0x00,0x00,0x00,0xff,0x01,0x0b,0x01,0xff,0x00,0x7d,0x00,0xff,0x00, + 0x99,0x00,0xff,0x71,0xcb,0x6f,0xff,0xa4,0xe2,0xa0,0xff,0x8b,0xd7,0x88,0xff, + 0x60,0xc4,0x5e,0xff,0x31,0xaf,0x30,0xff,0x00,0x7d,0x00,0xff,0x09,0x09,0x09, + 0xff,0x93,0x93,0x93,0xff,0xe5,0xe5,0xe5,0xff,0xf3,0xf3,0xf4,0xff,0x83,0xf3, + 0xf3,0xf3,0xff,0x82,0xf2,0xf2,0xf3,0xff,0x82,0xf2,0xf2,0xf2,0xff,0x82,0xf1, + 0xf1,0xf2,0xff,0x01,0xf1,0xf1,0xf1,0xff,0x82,0xf0,0xf0,0xf1,0xff,0x0e,0xb4, + 0xb4,0xb5,0xff,0x00,0x00,0x00,0xff,0x0e,0x0e,0x01,0xff,0xa4,0xa4,0x00,0xff, + 0xc9,0xc9,0x00,0xff,0xd7,0xe4,0x6f,0xff,0xde,0xef,0xa0,0xff,0xdb,0xea,0x88, + 0xff,0xd5,0xe0,0x5e,0xff,0xcf,0xd4,0x30,0xff,0xa4,0xa4,0x00,0xff,0x09,0x09, + 0x09,0xff,0x93,0x93,0x93,0xff,0xde,0xde,0xdf,0xff,0x82,0xea,0xea,0xec,0xff, + 0x03,0xe9,0xe9,0xec,0xff,0xe9,0xe9,0xeb,0xff,0xe8,0xe8,0xeb,0xff,0x82,0xe8, + 0xe8,0xea,0xff,0x84,0xe9,0xe9,0xeb,0xff,0x0c,0xe9,0xe9,0xeb,0xfd,0xe9,0xe9, + 0xeb,0xf8,0xe9,0xe9,0xeb,0xef,0xe9,0xe9,0xeb,0xe3,0xe9,0xe9,0xeb,0xd4,0xe9, + 0xe9,0xeb,0xc1,0xe9,0xe9,0xeb,0xaa,0xe9,0xe9,0xeb,0x90,0xe9,0xe9,0xeb,0x73, + 0xe9,0xe9,0xeb,0x52,0xe9,0xe9,0xeb,0x2e,0xe9,0xe9,0xeb,0x08,0x83,0x00,0x00, + 0x00,0x00,0x3e,0xe7,0xe7,0xec,0xef,0xe9,0xe9,0xee,0xef,0xe8,0xea,0xeb,0xfc, + 0x85,0x90,0x8a,0xff,0xbe,0xc9,0xc0,0xff,0xd8,0xe3,0xda,0xff,0xce,0xd0,0xd0, + 0xff,0xe6,0xe6,0xe8,0xff,0xd6,0xd6,0xd8,0xff,0xe7,0xe7,0xe9,0xff,0xe8,0xe8, + 0xe9,0xff,0xe8,0xe8,0xea,0xff,0xe9,0xe9,0xeb,0xff,0xda,0xda,0xdb,0xff,0xea, + 0xea,0xeb,0xff,0xeb,0xeb,0xec,0xff,0xd7,0xdf,0xd8,0xff,0xd3,0xe3,0xd4,0xff, + 0xd9,0xeb,0xda,0xff,0xda,0xee,0xdb,0xff,0xe0,0xec,0xe0,0xff,0xe4,0xef,0xe4, + 0xff,0xdb,0xe7,0xdb,0xff,0xe2,0xee,0xe2,0xff,0xd9,0xe6,0xd9,0xff,0xe0,0xed, + 0xe0,0xff,0xdf,0xec,0xdf,0xff,0xdd,0xeb,0xde,0xff,0xdc,0xea,0xdc,0xff,0xda, + 0xe9,0xdb,0xff,0xd1,0xe0,0xd2,0xff,0xd7,0xe7,0xd8,0xff,0xce,0xdd,0xcf,0xff, + 0xc7,0xe3,0xc8,0xff,0xbd,0xde,0xbf,0xff,0xba,0xd4,0xbc,0xff,0xc5,0xd7,0xc8, + 0xff,0xf2,0xf2,0xf5,0xfc,0xf1,0xf1,0xf4,0xfc,0xf0,0xf0,0xf3,0xfd,0xf0,0xf0, + 0xf3,0xfc,0xf0,0xf0,0xf4,0xf3,0xfa,0xfa,0xfb,0xe7,0xff,0xff,0xff,0xe6,0xff, + 0xff,0xff,0xe8,0xff,0xff,0xff,0xeb,0xff,0xff,0xff,0xed,0xff,0xff,0xff,0xef, + 0xff,0xff,0xff,0xf1,0xff,0xff,0xff,0xf3,0xff,0xff,0xff,0xf5,0xff,0xff,0xff, + 0xf6,0xff,0xff,0xff,0xf8,0xff,0xff,0xff,0xf9,0xff,0xff,0xff,0xfa,0xfd,0xfd, + 0xfd,0xfb,0xf8,0xf8,0xfa,0xfd,0xf5,0xf5,0xf7,0xfe,0xf1,0xf1,0xf4,0xfe,0xee, + 0xee,0xf1,0xff,0xea,0xea,0xef,0xff,0xe5,0xe5,0xeb,0xfd,0x82,0xe5,0xe5,0xeb, + 0xff,0x82,0xe6,0xe6,0xeb,0xff,0x83,0xe7,0xe7,0xec,0xff,0x06,0xe8,0xe8,0xed, + 0xff,0x48,0x48,0x49,0xff,0x05,0x05,0x05,0xff,0x40,0x40,0x40,0xff,0x7f,0x7f, + 0x7f,0xff,0xb9,0xc7,0xb6,0xff,0x82,0xe6,0xff,0xe1,0xff,0x07,0xd8,0xee,0xd4, + 0xff,0xc2,0xd3,0xbf,0xff,0xac,0xb7,0xaa,0xff,0x96,0x9b,0x95,0xff,0x40,0x40, + 0x40,0xff,0x44,0x44,0x44,0xff,0xd3,0xd3,0xd4,0xff,0x82,0xef,0xef,0xf1,0xff, + 0x82,0xf0,0xf0,0xf2,0xff,0x02,0xf1,0xf1,0xf2,0xff,0xf1,0xf1,0xf3,0xff,0x82, + 0xf2,0xf2,0xf3,0xff,0x82,0xf3,0xf3,0xf4,0xff,0x82,0xf4,0xf4,0xf4,0xff,0x06, + 0xf5,0xf5,0xf5,0xff,0x4c,0x4c,0x4c,0xff,0x05,0x05,0x05,0xff,0x00,0x4d,0x00, + 0xff,0x00,0x99,0x00,0xff,0x82,0xd3,0x7f,0xff,0x82,0xe6,0xff,0xe1,0xff,0x07, + 0xc7,0xf1,0xc3,0xff,0x96,0xdc,0x93,0xff,0x64,0xc6,0x62,0xff,0x32,0xaf,0x31, + 0xff,0x00,0x4d,0x00,0xff,0x44,0x44,0x44,0xff,0xd5,0xd5,0xd5,0xff,0x82,0xf3, + 0xf3,0xf3,0xff,0x82,0xf2,0xf2,0xf3,0xff,0x82,0xf2,0xf2,0xf2,0xff,0x83,0xf1, + 0xf1,0xf2,0xff,0x83,0xf0,0xf0,0xf1,0xff,0x06,0xef,0xef,0xf0,0xff,0x4a,0x4a, + 0x4a,0xff,0x05,0x05,0x05,0xff,0x65,0x65,0x00,0xff,0xc9,0xc9,0x00,0xff,0xd9, + 0xe7,0x7f,0xff,0x82,0xe6,0xff,0xe1,0xff,0x08,0xe2,0xf8,0xc3,0xff,0xdc,0xec, + 0x93,0xff,0xd6,0xe1,0x62,0xff,0xcf,0xd5,0x31,0xff,0x65,0x65,0x00,0xff,0x44, + 0x44,0x44,0xff,0xd2,0xd2,0xd2,0xff,0xe9,0xe9,0xec,0xff,0x82,0xe9,0xe9,0xeb, + 0xff,0x03,0xe8,0xe8,0xeb,0xff,0xe8,0xe8,0xea,0xff,0xe7,0xe7,0xea,0xff,0x85, + 0xe7,0xe7,0xe9,0xff,0x0c,0xe7,0xe7,0xe9,0xfd,0xe7,0xe7,0xe9,0xf8,0xe7,0xe7, + 0xe9,0xef,0xe7,0xe7,0xe9,0xe3,0xe7,0xe7,0xe9,0xd4,0xe7,0xe7,0xe9,0xc1,0xe7, + 0xe7,0xe9,0xaa,0xe7,0xe7,0xe9,0x90,0xe7,0xe7,0xe9,0x73,0xe7,0xe7,0xe9,0x52, + 0xe7,0xe7,0xe9,0x2e,0xe7,0xe7,0xe9,0x08,0x83,0x00,0x00,0x00,0x00,0x3e,0xeb, + 0xeb,0xef,0xff,0xc3,0xc3,0xd1,0xff,0xcb,0xcb,0xd7,0xff,0x85,0x85,0x8a,0xff, + 0xab,0xab,0xb5,0xff,0xb8,0xb8,0xc3,0xff,0xd3,0xd3,0xde,0xff,0xd9,0xd9,0xe3, + 0xff,0xdb,0xdb,0xe4,0xff,0xdd,0xdd,0xe5,0xff,0xdf,0xdf,0xe7,0xff,0xe1,0xe1, + 0xe8,0xff,0xe3,0xe3,0xe9,0xff,0xe5,0xe5,0xea,0xff,0xe7,0xe7,0xec,0xff,0xe9, + 0xe9,0xed,0xff,0xeb,0xeb,0xee,0xff,0xed,0xed,0xf0,0xff,0xef,0xef,0xf1,0xff, + 0xf1,0xf1,0xf2,0xff,0xf3,0xf3,0xf3,0xff,0xf4,0xf4,0xf5,0xff,0xf5,0xf5,0xf5, + 0xff,0xf4,0xf4,0xf4,0xff,0xf3,0xf3,0xf4,0xff,0xf3,0xf3,0xf3,0xff,0xf1,0xf1, + 0xf2,0xff,0xf0,0xf0,0xf1,0xff,0xef,0xef,0xf0,0xff,0xed,0xed,0xee,0xff,0xeb, + 0xeb,0xed,0xff,0xe9,0xe9,0xec,0xff,0xe7,0xe7,0xea,0xff,0xe5,0xe5,0xe8,0xff, + 0xe3,0xe3,0xe6,0xff,0xe1,0xe1,0xe5,0xff,0xde,0xde,0xe3,0xff,0xdc,0xdc,0xe1, + 0xff,0xd9,0xd9,0xdf,0xff,0xd7,0xd7,0xdc,0xff,0xd6,0xd6,0xdd,0xff,0xe0,0xe0, + 0xe6,0xff,0xe5,0xe5,0xeb,0xff,0xe1,0xe1,0xe7,0xfd,0xe2,0xe2,0xe9,0xf6,0xff, + 0xff,0xff,0xeb,0xff,0xff,0xff,0xed,0xff,0xff,0xff,0xef,0xff,0xff,0xff,0xf1, + 0xff,0xff,0xff,0xf3,0xff,0xff,0xff,0xf5,0xff,0xff,0xff,0xf6,0xff,0xff,0xff, + 0xf8,0xff,0xff,0xff,0xf9,0xff,0xff,0xff,0xfa,0xfd,0xfd,0xfd,0xfb,0xf9,0xf9, + 0xfa,0xfd,0xf5,0xf5,0xf7,0xfe,0xf1,0xf1,0xf4,0xfe,0xee,0xee,0xf2,0xff,0xeb, + 0xeb,0xef,0xff,0xe5,0xe5,0xeb,0xfd,0x82,0xe6,0xe6,0xeb,0xff,0x01,0xe6,0xe6, + 0xec,0xff,0x82,0xe7,0xe7,0xec,0xff,0x82,0xe8,0xe8,0xed,0xff,0x0f,0xe9,0xe9, + 0xed,0xff,0x0e,0x0e,0x0e,0xff,0x02,0x02,0x02,0xff,0x78,0x78,0x78,0xff,0x9d, + 0xa4,0x9b,0xff,0xc8,0xda,0xc5,0xff,0xe2,0xfa,0xdd,0xff,0xe4,0xfd,0xdf,0xff, + 0xd9,0xef,0xd5,0xff,0xc8,0xda,0xc5,0xff,0xb5,0xc2,0xb2,0xff,0xa1,0xa9,0x9f, + 0xff,0x84,0x87,0x83,0xff,0x0c,0x0c,0x0c,0xff,0xd6,0xd6,0xd6,0xff,0x82,0xf0, + 0xf0,0xf2,0xff,0x02,0xf1,0xf1,0xf2,0xff,0xf1,0xf1,0xf3,0xff,0x82,0xf2,0xf2, + 0xf3,0xff,0x02,0xf3,0xf3,0xf3,0xff,0xf3,0xf3,0xf4,0xff,0x82,0xf4,0xf4,0xf4, + 0xff,0x83,0xf5,0xf5,0xf5,0xff,0x0f,0x0e,0x0e,0x0e,0xff,0x02,0x02,0x02,0xff, + 0x00,0x90,0x00,0xff,0x42,0xb6,0x41,0xff,0xa4,0xe2,0xa0,0xff,0xdd,0xfb,0xd8, + 0xff,0xe2,0xfd,0xdd,0xff,0xc9,0xf2,0xc5,0xff,0xa4,0xe2,0xa0,0xff,0x79,0xcf, + 0x76,0xff,0x4b,0xba,0x49,0xff,0x1a,0x9b,0x19,0xff,0x0c,0x0c,0x0c,0xff,0xd6, + 0xd6,0xd6,0xff,0xf3,0xf3,0xf3,0xff,0x82,0xf2,0xf2,0xf3,0xff,0x01,0xf2,0xf2, + 0xf2,0xff,0x83,0xf1,0xf1,0xf2,0xff,0x01,0xf1,0xf1,0xf1,0xff,0x83,0xf0,0xf0, + 0xf1,0xff,0x82,0xef,0xef,0xf0,0xff,0x13,0x0e,0x0e,0x0e,0xff,0x02,0x02,0x02, + 0xff,0xbd,0xbd,0x00,0xff,0xd1,0xd9,0x41,0xff,0xde,0xef,0xa0,0xff,0xe5,0xfd, + 0xd8,0xff,0xe5,0xfe,0xdd,0xff,0xe2,0xf8,0xc5,0xff,0xde,0xef,0xa0,0xff,0xd8, + 0xe5,0x76,0xff,0xd2,0xdb,0x49,0xff,0xc1,0xc4,0x19,0xff,0x0c,0x0c,0x0c,0xff, + 0xd6,0xd6,0xd6,0xff,0xe9,0xe9,0xeb,0xff,0xe8,0xe8,0xeb,0xff,0xe8,0xe8,0xea, + 0xff,0xe7,0xe7,0xea,0xff,0xe7,0xe7,0xe9,0xff,0x82,0xe6,0xe6,0xe9,0xff,0x84, + 0xe7,0xe7,0xe9,0xff,0x0c,0xe7,0xe7,0xe9,0xfd,0xe7,0xe7,0xe9,0xf8,0xe7,0xe7, + 0xe9,0xef,0xe7,0xe7,0xe9,0xe3,0xe7,0xe7,0xe9,0xd4,0xe7,0xe7,0xe9,0xc1,0xe7, + 0xe7,0xe9,0xaa,0xe7,0xe7,0xe9,0x90,0xe7,0xe7,0xe9,0x73,0xe7,0xe7,0xe9,0x52, + 0xe7,0xe7,0xe9,0x2e,0xe7,0xe7,0xe9,0x08,0x83,0x00,0x00,0x00,0x00,0x14,0xef, + 0xef,0xf3,0xff,0xc8,0xc8,0xd5,0xff,0xd2,0xd2,0xdc,0xff,0x8c,0x8c,0x8f,0xff, + 0xad,0xad,0xb7,0xff,0xb5,0xb5,0xbe,0xff,0xbf,0xbf,0xc7,0xff,0xd4,0xd4,0xdd, + 0xff,0x80,0x80,0x85,0xff,0x60,0x60,0x62,0xff,0x66,0x66,0x68,0xff,0x88,0x88, + 0x8b,0xff,0x96,0x96,0x99,0xff,0x97,0x97,0x9a,0xff,0x98,0x98,0x9b,0xff,0xec, + 0xec,0xef,0xff,0x89,0x89,0x8b,0xff,0x65,0x65,0x65,0xff,0x6b,0x6b,0x6b,0xff, + 0x91,0x91,0x91,0xff,0x83,0x9f,0x9f,0x9f,0xff,0x27,0xf3,0xf3,0xf3,0xff,0x8c, + 0x8c,0x8c,0xff,0x65,0x65,0x65,0xff,0x6a,0x6a,0x6a,0xff,0x8d,0x8d,0x8e,0xff, + 0x99,0x99,0x9b,0xff,0x98,0x98,0x9a,0xff,0x97,0x97,0x99,0xff,0xe6,0xe6,0xe9, + 0xff,0x84,0x84,0x86,0xff,0x61,0x61,0x62,0xff,0x65,0x65,0x66,0xff,0x84,0x84, + 0x87,0xff,0x8e,0x8e,0x91,0xff,0x8c,0x8c,0x90,0xff,0x8a,0x8a,0x8e,0xff,0xd2, + 0xd2,0xd8,0xff,0xcf,0xcf,0xd6,0xff,0xcc,0xcc,0xd3,0xff,0xca,0xca,0xd2,0xff, + 0xd6,0xd6,0xdd,0xff,0xc2,0xc2,0xd0,0xff,0xff,0xff,0xff,0xeb,0xff,0xff,0xff, + 0xed,0xff,0xff,0xff,0xef,0xff,0xff,0xff,0xf1,0xff,0xff,0xff,0xf3,0xff,0xff, + 0xff,0xf5,0xff,0xff,0xff,0xf6,0xff,0xff,0xff,0xf8,0xff,0xff,0xff,0xf9,0xff, + 0xff,0xff,0xfa,0xfd,0xfd,0xfd,0xfb,0xf9,0xf9,0xfa,0xfd,0xf5,0xf5,0xf7,0xfe, + 0xf2,0xf2,0xf5,0xfe,0xee,0xee,0xf2,0xff,0xeb,0xeb,0xef,0xff,0xe6,0xe6,0xec, + 0xfe,0x83,0xe7,0xe7,0xec,0xff,0x82,0xe8,0xe8,0xed,0xff,0x82,0xe9,0xe9,0xed, + 0xff,0x11,0xea,0xea,0xee,0xff,0x1d,0x1d,0x1d,0xff,0x00,0x00,0x00,0xff,0x7f, + 0x7f,0x7f,0xff,0xa4,0xad,0xa2,0xff,0xc2,0xd3,0xbf,0xff,0xd3,0xe8,0xcf,0xff, + 0xd7,0xec,0xd2,0xff,0xd1,0xe4,0xcd,0xff,0xc5,0xd6,0xc1,0xff,0xb5,0xc2,0xb3, + 0xff,0xa4,0xad,0xa2,0xff,0x91,0x95,0x90,0xff,0x00,0x00,0x00,0xff,0xe5,0xe5, + 0xe5,0xff,0xf1,0xf1,0xf2,0xff,0xf1,0xf1,0xf3,0xff,0x82,0xf2,0xf2,0xf3,0xff, + 0x01,0xf3,0xf3,0xf3,0xff,0x82,0xf3,0xf3,0xf4,0xff,0x02,0xf4,0xf4,0xf4,0xff, + 0xf4,0xf4,0xf5,0xff,0x84,0xf5,0xf5,0xf5,0xff,0x10,0x1d,0x1d,0x1d,0xff,0x00, + 0x00,0x00,0xff,0x00,0x99,0x00,0xff,0x52,0xbd,0x50,0xff,0x96,0xdc,0x93,0xff, + 0xbc,0xec,0xb8,0xff,0xc4,0xf0,0xc0,0xff,0xb6,0xea,0xb2,0xff,0x9b,0xde,0x98, + 0xff,0x79,0xcf,0x76,0xff,0x52,0xbd,0x50,0xff,0x28,0xab,0x27,0xff,0x00,0x00, + 0x00,0xff,0xe5,0xe5,0xe5,0xff,0xf2,0xf2,0xf3,0xff,0xf2,0xf2,0xf2,0xff,0x83, + 0xf1,0xf1,0xf2,0xff,0x01,0xf1,0xf1,0xf1,0xff,0x83,0xf0,0xf0,0xf1,0xff,0x83, + 0xef,0xef,0xf0,0xff,0x10,0xee,0xee,0xef,0xff,0x1d,0x1d,0x1d,0xff,0x00,0x00, + 0x00,0xff,0xc9,0xc9,0x00,0xff,0xd3,0xdc,0x50,0xff,0xdc,0xec,0x93,0xff,0xe1, + 0xf5,0xb8,0xff,0xe2,0xf7,0xc0,0xff,0xe0,0xf4,0xb2,0xff,0xdd,0xed,0x98,0xff, + 0xd8,0xe5,0x76,0xff,0xd3,0xdc,0x50,0xff,0xce,0xd2,0x27,0xff,0x00,0x00,0x00, + 0xff,0xe5,0xe5,0xe5,0xff,0xe8,0xe8,0xea,0xff,0x82,0xe7,0xe7,0xea,0xff,0x82, + 0xe6,0xe6,0xe9,0xff,0x82,0xe5,0xe5,0xe8,0xff,0x84,0xe7,0xe7,0xe9,0xff,0x0c, + 0xe7,0xe7,0xe9,0xfd,0xe7,0xe7,0xe9,0xf8,0xe7,0xe7,0xe9,0xef,0xe7,0xe7,0xe9, + 0xe3,0xe7,0xe7,0xe9,0xd4,0xe7,0xe7,0xe9,0xc1,0xe7,0xe7,0xe9,0xaa,0xe7,0xe7, + 0xe9,0x90,0xe7,0xe7,0xe9,0x73,0xe7,0xe7,0xe9,0x52,0xe7,0xe7,0xe9,0x2e,0xe7, + 0xe7,0xe9,0x08,0x83,0x00,0x00,0x00,0x00,0x3e,0xf3,0xf3,0xf6,0xff,0xd9,0xd9, + 0xe1,0xff,0xe2,0xe2,0xe9,0xff,0x92,0x92,0x94,0xff,0xb0,0xb0,0xb8,0xff,0xb8, + 0xb8,0xc0,0xff,0xc0,0xc0,0xc8,0xff,0xc8,0xc8,0xcf,0xff,0x5d,0x5d,0x5f,0xff, + 0xae,0xae,0xb0,0xff,0xbe,0xbe,0xc0,0xff,0x75,0x75,0x77,0xff,0xac,0xac,0xaf, + 0xff,0xae,0xae,0xb1,0xff,0xaf,0xaf,0xb1,0xff,0xef,0xef,0xf1,0xff,0x65,0x65, + 0x65,0xff,0xb3,0xb3,0xb3,0xff,0xc2,0xc2,0xc3,0xff,0x79,0x79,0x79,0xff,0xb4, + 0xb4,0xb4,0xff,0xb3,0xb3,0xb4,0xff,0xb3,0xb3,0xb3,0xff,0xf1,0xf1,0xf2,0xff, + 0x64,0x64,0x65,0xff,0xb1,0xb1,0xb1,0xff,0xc0,0xc0,0xc0,0xff,0x76,0x76,0x77, + 0xff,0xab,0xab,0xad,0xff,0xaa,0xaa,0xac,0xff,0xa8,0xa8,0xab,0xff,0xe2,0xe2, + 0xe6,0xff,0x60,0x60,0x61,0xff,0xac,0xac,0xad,0xff,0xbb,0xbb,0xbc,0xff,0x71, + 0x71,0x72,0xff,0x9d,0x9d,0xa2,0xff,0x9b,0x9b,0xa0,0xff,0x99,0x99,0x9e,0xff, + 0xcc,0xcc,0xd4,0xff,0xc9,0xc9,0xd1,0xff,0xc6,0xc6,0xcf,0xff,0xc3,0xc3,0xcc, + 0xff,0xbf,0xbf,0xc9,0xff,0x94,0x94,0x9e,0xff,0xff,0xff,0xff,0xeb,0xff,0xff, + 0xff,0xed,0xff,0xff,0xff,0xef,0xff,0xff,0xff,0xf1,0xff,0xff,0xff,0xf3,0xff, + 0xff,0xff,0xf5,0xff,0xff,0xff,0xf6,0xff,0xff,0xff,0xf8,0xff,0xff,0xff,0xf9, + 0xff,0xff,0xff,0xfa,0xfd,0xfd,0xfd,0xfb,0xf9,0xf9,0xfa,0xfd,0xf5,0xf5,0xf8, + 0xfe,0xf2,0xf2,0xf5,0xfe,0xef,0xef,0xf3,0xff,0xec,0xec,0xf0,0xff,0xe7,0xe7, + 0xec,0xfe,0x82,0xe8,0xe8,0xec,0xff,0x82,0xe8,0xe8,0xed,0xff,0x02,0xe9,0xe9, + 0xed,0xff,0xe9,0xe9,0xee,0xff,0x82,0xea,0xea,0xee,0xff,0x0f,0x2d,0x2d,0x2d, + 0xff,0x00,0x00,0x00,0xff,0x7f,0x7f,0x7f,0xff,0xa0,0xa8,0x9e,0xff,0xb7,0xc5, + 0xb4,0xff,0xc4,0xd5,0xc1,0xff,0xc8,0xda,0xc5,0xff,0xc5,0xd6,0xc2,0xff,0xbc, + 0xcb,0xb9,0xff,0xb0,0xbc,0xae,0xff,0xa1,0xaa,0xa0,0xff,0x91,0x95,0x90,0xff, + 0x00,0x00,0x00,0xff,0xf5,0xf5,0xf5,0xff,0xf1,0xf1,0xf3,0xff,0x82,0xf2,0xf2, + 0xf3,0xff,0x82,0xf3,0xf3,0xf4,0xff,0x02,0xf4,0xf4,0xf4,0xff,0xf4,0xf4,0xf5, + 0xff,0x86,0xf5,0xf5,0xf5,0xff,0x0f,0x2d,0x2d,0x2d,0xff,0x00,0x00,0x00,0xff, + 0x00,0x99,0x00,0xff,0x49,0xb9,0x47,0xff,0x7d,0xd0,0x7a,0xff,0x9b,0xde,0x97, + 0xff,0xa4,0xe2,0xa0,0xff,0x9c,0xde,0x99,0xff,0x89,0xd6,0x86,0xff,0x6e,0xca, + 0x6b,0xff,0x4d,0xbb,0x4b,0xff,0x28,0xab,0x27,0xff,0x00,0x00,0x00,0xff,0xf5, + 0xf5,0xf5,0xff,0xf2,0xf2,0xf2,0xff,0x82,0xf1,0xf1,0xf2,0xff,0x01,0xf1,0xf1, + 0xf1,0xff,0x83,0xf0,0xf0,0xf1,0xff,0x83,0xef,0xef,0xf0,0xff,0x01,0xee,0xee, + 0xf0,0xff,0x82,0xee,0xee,0xef,0xff,0x12,0x2d,0x2d,0x2d,0xff,0x00,0x00,0x00, + 0xff,0xc9,0xc9,0x00,0xff,0xd2,0xda,0x47,0xff,0xd9,0xe6,0x7a,0xff,0xdc,0xed, + 0x97,0xff,0xde,0xef,0xa0,0xff,0xdd,0xee,0x99,0xff,0xda,0xe9,0x86,0xff,0xd7, + 0xe3,0x6b,0xff,0xd3,0xdb,0x4b,0xff,0xce,0xd2,0x27,0xff,0x00,0x00,0x00,0xff, + 0xf5,0xf5,0xf5,0xff,0xe7,0xe7,0xea,0xff,0xe7,0xe7,0xe9,0xff,0xe6,0xe6,0xe9, + 0xff,0xe6,0xe6,0xe8,0xff,0x82,0xe5,0xe5,0xe8,0xff,0x85,0xe4,0xe4,0xe7,0xff, + 0x0c,0xe4,0xe4,0xe7,0xfd,0xe4,0xe4,0xe7,0xf8,0xe4,0xe4,0xe7,0xef,0xe4,0xe4, + 0xe7,0xe3,0xe4,0xe4,0xe7,0xd4,0xe4,0xe4,0xe7,0xc1,0xe4,0xe4,0xe7,0xaa,0xe4, + 0xe4,0xe7,0x90,0xe4,0xe4,0xe7,0x73,0xe4,0xe4,0xe7,0x52,0xe4,0xe4,0xe7,0x2e, + 0xe4,0xe4,0xe7,0x08,0x83,0x00,0x00,0x00,0x00,0x3e,0xf7,0xf7,0xf9,0xff,0xea, + 0xea,0xee,0xff,0xf3,0xf3,0xf6,0xff,0x98,0x98,0x98,0xff,0xb3,0xb3,0xba,0xff, + 0xbb,0xbb,0xc2,0xff,0xc3,0xc3,0xca,0xff,0xcb,0xcb,0xd1,0xff,0x5f,0x5f,0x61, + 0xff,0x9d,0x9d,0x9e,0xff,0xac,0xac,0xad,0xff,0x78,0x78,0x79,0xff,0xc4,0xc3, + 0xc6,0xff,0x9f,0x9b,0x9d,0xff,0xc7,0xc7,0xc8,0xff,0xf3,0xf3,0xf4,0xff,0x6b, + 0x6b,0x6b,0xff,0xa4,0xa4,0xa4,0xff,0xb0,0xb0,0xb0,0xff,0x7b,0x7b,0x7b,0xff, + 0xc8,0xc8,0xc9,0xff,0xa1,0x9d,0x9e,0xff,0xc7,0xc6,0xc7,0xff,0xee,0xee,0xef, + 0xff,0x68,0x68,0x68,0xff,0xa1,0xa1,0xa2,0xff,0xac,0xac,0xad,0xff,0x76,0x76, + 0x77,0xff,0xbd,0xbd,0xc0,0xff,0x97,0x94,0x96,0xff,0xba,0xb9,0xbd,0xff,0xde, + 0xde,0xe2,0xff,0x62,0x62,0x63,0xff,0x9b,0x9b,0x9d,0xff,0xa7,0xa7,0xa8,0xff, + 0x6f,0x6f,0x72,0xff,0xac,0xac,0xb2,0xff,0x8a,0x86,0x8b,0xff,0xa8,0xa7,0xae, + 0xff,0xc7,0xc7,0xd0,0xff,0xc4,0xc4,0xcd,0xff,0xc0,0xc0,0xca,0xff,0xbd,0xbd, + 0xc7,0xff,0xb9,0xb9,0xc4,0xff,0x79,0x79,0x80,0xff,0xff,0xff,0xff,0xeb,0xff, + 0xff,0xff,0xed,0xff,0xff,0xff,0xef,0xff,0xff,0xff,0xf1,0xff,0xff,0xff,0xf3, + 0xff,0xff,0xff,0xf5,0xff,0xff,0xff,0xf6,0xff,0xff,0xff,0xf8,0xff,0xff,0xff, + 0xf9,0xff,0xff,0xff,0xfa,0xfd,0xfd,0xfd,0xfb,0xf9,0xf9,0xfa,0xfd,0xf6,0xf6, + 0xf8,0xfe,0xf3,0xf3,0xf5,0xfe,0xef,0xef,0xf3,0xff,0xec,0xec,0xf0,0xff,0xe8, + 0xe8,0xed,0xfe,0x82,0xe8,0xe8,0xed,0xff,0x02,0xe9,0xe9,0xed,0xff,0xe9,0xe9, + 0xee,0xff,0x82,0xea,0xea,0xee,0xff,0x11,0xeb,0xeb,0xee,0xff,0xeb,0xeb,0xef, + 0xff,0x3c,0x3c,0x3c,0xff,0x04,0x04,0x04,0xff,0x78,0x78,0x78,0xff,0x97,0x9d, + 0x96,0xff,0xaa,0xb4,0xa8,0xff,0xb5,0xc2,0xb3,0xff,0xba,0xc8,0xb7,0xff,0xb8, + 0xc6,0xb5,0xff,0xb2,0xbe,0xaf,0xff,0xa8,0xb2,0xa6,0xff,0x9c,0xa3,0x9a,0xff, + 0x85,0x88,0x85,0xff,0x0e,0x0e,0x0e,0xff,0xff,0xff,0xff,0xff,0xf2,0xf2,0xf3, + 0xff,0x82,0xf3,0xf3,0xf4,0xff,0x82,0xf4,0xf4,0xf4,0xff,0x87,0xf5,0xf5,0xf5, + 0xff,0x0f,0xf4,0xf4,0xf5,0xff,0x3c,0x3c,0x3c,0xff,0x04,0x04,0x04,0xff,0x00, + 0x90,0x00,0xff,0x35,0xb1,0x34,0xff,0x60,0xc3,0x5e,0xff,0x79,0xcf,0x76,0xff, + 0x83,0xd3,0x80,0xff,0x7f,0xd1,0x7c,0xff,0x71,0xcb,0x6f,0xff,0x5c,0xc2,0x5a, + 0xff,0x40,0xb5,0x3f,0xff,0x1e,0x9d,0x1d,0xff,0x0e,0x0e,0x0e,0xff,0xff,0xff, + 0xff,0xff,0x82,0xf1,0xf1,0xf2,0xff,0x83,0xf0,0xf0,0xf1,0xff,0x83,0xef,0xef, + 0xf0,0xff,0x01,0xee,0xee,0xf0,0xff,0x82,0xee,0xee,0xef,0xff,0x10,0xed,0xed, + 0xef,0xff,0xed,0xed,0xee,0xff,0x3c,0x3c,0x3c,0xff,0x04,0x04,0x04,0xff,0xbd, + 0xbd,0x00,0xff,0xd0,0xd5,0x34,0xff,0xd5,0xdf,0x5e,0xff,0xd8,0xe5,0x76,0xff, + 0xd9,0xe8,0x80,0xff,0xd9,0xe7,0x7c,0xff,0xd7,0xe4,0x6f,0xff,0xd5,0xde,0x5a, + 0xff,0xd1,0xd8,0x3f,0xff,0xc1,0xc4,0x1d,0xff,0x0e,0x0e,0x0e,0xff,0xff,0xff, + 0xff,0xff,0x82,0xe6,0xe6,0xe9,0xff,0x82,0xe5,0xe5,0xe8,0xff,0x82,0xe4,0xe4, + 0xe7,0xff,0x01,0xe3,0xe3,0xe6,0xff,0x84,0xe4,0xe4,0xe7,0xff,0x0c,0xe4,0xe4, + 0xe7,0xfd,0xe4,0xe4,0xe7,0xf8,0xe4,0xe4,0xe7,0xef,0xe4,0xe4,0xe7,0xe3,0xe4, + 0xe4,0xe7,0xd4,0xe4,0xe4,0xe7,0xc1,0xe4,0xe4,0xe7,0xaa,0xe4,0xe4,0xe7,0x90, + 0xe4,0xe4,0xe7,0x73,0xe4,0xe4,0xe7,0x52,0xe4,0xe4,0xe7,0x2e,0xe4,0xe4,0xe7, + 0x08,0x83,0x00,0x00,0x00,0x00,0x40,0xfb,0xfb,0xfc,0xff,0xfa,0xfa,0xfb,0xff, + 0xfd,0xfd,0xfd,0xff,0x96,0x96,0x97,0xff,0xb6,0xb6,0xbc,0xff,0xbe,0xbe,0xc4, + 0xff,0xc6,0xc6,0xcb,0xff,0xce,0xce,0xd3,0xff,0xbb,0xbb,0xbf,0xff,0x9f,0x9f, + 0xa1,0xff,0xa8,0xa8,0xaa,0xff,0xd2,0xd2,0xd4,0xff,0x63,0x49,0x49,0xff,0xa6, + 0x49,0x49,0xff,0x77,0x4a,0x4a,0xff,0xf5,0xf5,0xf5,0xff,0xd5,0xd5,0xd5,0xff, + 0xac,0xac,0xac,0xff,0xae,0xae,0xae,0xff,0xd4,0xd4,0xd4,0xff,0x63,0x48,0x49, + 0xff,0xa5,0x48,0x48,0xff,0x75,0x48,0x48,0xff,0xeb,0xeb,0xed,0xff,0xcb,0xcb, + 0xcd,0xff,0xa3,0xa3,0xa5,0xff,0xa5,0xa5,0xa7,0xff,0xc7,0xc7,0xca,0xff,0x5e, + 0x44,0x45,0xff,0xa0,0x43,0x45,0xff,0x70,0x42,0x44,0xff,0xd9,0xd9,0xdf,0xff, + 0xbb,0xbb,0xc0,0xff,0x97,0x97,0x9b,0xff,0x98,0x98,0x9c,0xff,0xb5,0xb5,0xbb, + 0xff,0x58,0x3d,0x40,0xff,0x99,0x3c,0x3f,0xff,0x69,0x3b,0x3e,0xff,0xc1,0xc1, + 0xcb,0xff,0xbe,0xbe,0xc8,0xff,0xba,0xba,0xc5,0xff,0xb7,0xb7,0xc2,0xff,0xb3, + 0xb3,0xbf,0xff,0x7b,0x7b,0x82,0xff,0xff,0xff,0xff,0xeb,0xff,0xff,0xff,0xed, + 0xff,0xff,0xff,0xef,0xff,0xff,0xff,0xf1,0xff,0xff,0xff,0xf3,0xff,0xff,0xff, + 0xf5,0xff,0xff,0xff,0xf6,0xff,0xff,0xff,0xf8,0xff,0xff,0xff,0xf9,0xff,0xff, + 0xff,0xfa,0xfd,0xfd,0xfd,0xfb,0xf9,0xf9,0xfb,0xfd,0xf6,0xf6,0xf8,0xfe,0xf3, + 0xf3,0xf5,0xfe,0xf0,0xf0,0xf3,0xff,0xed,0xed,0xf1,0xff,0xe9,0xe9,0xed,0xfe, + 0xe9,0xe9,0xee,0xff,0xe9,0xe9,0xed,0xff,0x82,0xea,0xea,0xee,0xff,0x02,0xeb, + 0xeb,0xee,0xff,0xeb,0xeb,0xef,0xff,0x82,0xec,0xec,0xef,0xff,0x0f,0x7d,0x7d, + 0x7e,0xff,0x22,0x22,0x22,0xff,0x40,0x40,0x40,0xff,0x8c,0x8f,0x8b,0xff,0x9c, + 0xa3,0x9b,0xff,0xa6,0xb0,0xa4,0xff,0xab,0xb5,0xa8,0xff,0xaa,0xb5,0xa8,0xff, + 0xa6,0xaf,0xa4,0xff,0x9e,0xa5,0x9c,0xff,0x94,0x99,0x93,0xff,0x44,0x45,0x44, + 0xff,0x5f,0x5f,0x5f,0xff,0xfb,0xfb,0xfb,0xff,0xf3,0xf3,0xf4,0xff,0x82,0xf4, + 0xf4,0xf4,0xff,0x01,0xf4,0xf4,0xf5,0xff,0x86,0xf5,0xf5,0xf5,0xff,0x01,0xf4, + 0xf4,0xf5,0xff,0x82,0xf4,0xf4,0xf4,0xff,0x0f,0x7f,0x7f,0x7f,0xff,0x22,0x22, + 0x22,0xff,0x00,0x4d,0x00,0xff,0x1c,0xa5,0x1b,0xff,0x41,0xb6,0x3f,0xff,0x57, + 0xc0,0x55,0xff,0x61,0xc4,0x5f,0xff,0x60,0xc4,0x5e,0xff,0x56,0xbf,0x54,0xff, + 0x45,0xb8,0x44,0xff,0x2e,0xad,0x2d,0xff,0x09,0x51,0x09,0xff,0x5f,0x5f,0x5f, + 0xff,0xfb,0xfb,0xfb,0xff,0xf1,0xf1,0xf1,0xff,0x83,0xf0,0xf0,0xf1,0xff,0x82, + 0xef,0xef,0xf0,0xff,0x01,0xee,0xee,0xf0,0xff,0x82,0xee,0xee,0xef,0xff,0x01, + 0xed,0xed,0xef,0xff,0x82,0xed,0xed,0xee,0xff,0x0f,0xec,0xec,0xee,0xff,0x7d, + 0x7d,0x7d,0xff,0x22,0x22,0x22,0xff,0x65,0x65,0x00,0xff,0xcd,0xd0,0x1b,0xff, + 0xd1,0xd8,0x3f,0xff,0xd4,0xde,0x55,0xff,0xd5,0xe0,0x5f,0xff,0xd5,0xe0,0x5e, + 0xff,0xd4,0xdd,0x54,0xff,0xd2,0xd9,0x44,0xff,0xcf,0xd4,0x2d,0xff,0x66,0x67, + 0x09,0xff,0x5f,0x5f,0x5f,0xff,0xf7,0xf7,0xf8,0xff,0x82,0xe5,0xe5,0xe8,0xff, + 0x82,0xe4,0xe4,0xe7,0xff,0x03,0xe3,0xe3,0xe7,0xff,0xe3,0xe3,0xe6,0xff,0xe2, + 0xe2,0xe6,0xff,0x84,0xe4,0xe4,0xe7,0xff,0x0c,0xe4,0xe4,0xe7,0xfd,0xe4,0xe4, + 0xe7,0xf8,0xe4,0xe4,0xe7,0xef,0xe4,0xe4,0xe7,0xe3,0xe4,0xe4,0xe7,0xd4,0xe4, + 0xe4,0xe7,0xc1,0xe4,0xe4,0xe7,0xaa,0xe4,0xe4,0xe7,0x90,0xe4,0xe4,0xe7,0x73, + 0xe4,0xe4,0xe7,0x52,0xe4,0xe4,0xe7,0x2e,0xe4,0xe4,0xe7,0x08,0x83,0x00,0x00, + 0x00,0x00,0x3e,0xff,0xff,0xff,0xff,0xfa,0xfa,0xfb,0xff,0xf2,0xf2,0xf5,0xff, + 0x90,0x90,0x93,0xff,0xb9,0xb9,0xbe,0xff,0xc1,0xc1,0xc5,0xff,0xc9,0xc9,0xcd, + 0xff,0xd1,0xd1,0xd5,0xff,0xda,0xda,0xdd,0xff,0xe3,0xe3,0xe5,0xff,0xec,0xec, + 0xed,0xff,0xf2,0xf2,0xf3,0xff,0x74,0x54,0x55,0xff,0xb4,0x4a,0x4a,0xff,0x8a, + 0x55,0x55,0xff,0xf4,0xf4,0xf4,0xff,0xf3,0xf3,0xf3,0xff,0xf2,0xf2,0xf2,0xff, + 0xf0,0xf0,0xf1,0xff,0xef,0xef,0xf0,0xff,0x72,0x52,0x52,0xff,0xb2,0x47,0x48, + 0xff,0x87,0x51,0x52,0xff,0xe8,0xe8,0xea,0xff,0xe6,0xe6,0xe9,0xff,0xe4,0xe4, + 0xe7,0xff,0xe2,0xe2,0xe5,0xff,0xdf,0xdf,0xe3,0xff,0x6c,0x4c,0x4e,0xff,0xac, + 0x42,0x43,0xff,0x80,0x4a,0x4c,0xff,0xd5,0xd5,0xdb,0xff,0xd2,0xd2,0xd8,0xff, + 0xcf,0xcf,0xd6,0xff,0xcc,0xcc,0xd3,0xff,0xc9,0xc9,0xd1,0xff,0x64,0x44,0x48, + 0xff,0xa5,0x3b,0x3e,0xff,0x78,0x42,0x45,0xff,0xbb,0xbb,0xc6,0xff,0xb8,0xb8, + 0xc3,0xff,0xb4,0xb4,0xc0,0xff,0xb0,0xb0,0xbd,0xff,0xa2,0xa2,0xae,0xff,0x7d, + 0x7d,0x84,0xff,0xff,0xff,0xff,0xeb,0xff,0xff,0xff,0xed,0xff,0xff,0xff,0xef, + 0xff,0xff,0xff,0xf1,0xff,0xff,0xff,0xf3,0xff,0xff,0xff,0xf5,0xff,0xff,0xff, + 0xf6,0xff,0xff,0xff,0xf8,0xff,0xff,0xff,0xf9,0xff,0xff,0xff,0xfa,0xfd,0xfd, + 0xfe,0xfb,0xf9,0xf9,0xfb,0xfd,0xf6,0xf6,0xf8,0xfe,0xf3,0xf3,0xf6,0xfe,0xf1, + 0xf1,0xf3,0xff,0xee,0xee,0xf1,0xff,0xea,0xea,0xee,0xfe,0x83,0xea,0xea,0xee, + 0xff,0x82,0xeb,0xeb,0xef,0xff,0x82,0xec,0xec,0xef,0xff,0x11,0xed,0xed,0xf0, + 0xff,0xc8,0xc8,0xcb,0xff,0x5d,0x5d,0x5d,0xff,0x07,0x07,0x07,0xff,0x68,0x68, + 0x68,0xff,0x8e,0x91,0x8d,0xff,0x97,0x9d,0x96,0xff,0x9c,0xa3,0x9a,0xff,0x9c, + 0xa3,0x9b,0xff,0x99,0x9f,0x98,0xff,0x93,0x97,0x92,0xff,0x71,0x72,0x70,0xff, + 0x0f,0x0f,0x0f,0xff,0xdf,0xdf,0xdf,0xff,0xf6,0xf6,0xf7,0xff,0xf4,0xf4,0xf4, + 0xff,0xf4,0xf4,0xf5,0xff,0x87,0xf5,0xf5,0xf5,0xff,0x01,0xf4,0xf4,0xf5,0xff, + 0x83,0xf4,0xf4,0xf4,0xff,0x0e,0xce,0xce,0xce,0xff,0x5d,0x5d,0x5d,0xff,0x07, + 0x07,0x07,0xff,0x00,0x7d,0x00,0xff,0x21,0xa8,0x20,0xff,0x36,0xb1,0x34,0xff, + 0x40,0xb5,0x3f,0xff,0x41,0xb6,0x40,0xff,0x3a,0xb3,0x39,0xff,0x2c,0xac,0x2b, + 0xff,0x14,0x86,0x14,0xff,0x0f,0x0f,0x0f,0xff,0xdf,0xdf,0xdf,0xff,0xf4,0xf4, + 0xf5,0xff,0x82,0xf0,0xf0,0xf1,0xff,0x83,0xef,0xef,0xf0,0xff,0x82,0xee,0xee, + 0xef,0xff,0x82,0xed,0xed,0xef,0xff,0x01,0xed,0xed,0xee,0xff,0x82,0xec,0xec, + 0xee,0xff,0x16,0xeb,0xeb,0xed,0xff,0xc7,0xc7,0xc8,0xff,0x5d,0x5d,0x5d,0xff, + 0x07,0x07,0x07,0xff,0xa4,0xa4,0x00,0xff,0xcd,0xd1,0x20,0xff,0xd0,0xd6,0x34, + 0xff,0xd1,0xd8,0x3f,0xff,0xd1,0xd8,0x40,0xff,0xd0,0xd7,0x39,0xff,0xcf,0xd3, + 0x2b,0xff,0xa6,0xa9,0x14,0xff,0x0f,0x0f,0x0f,0xff,0xdf,0xdf,0xdf,0xff,0xec, + 0xec,0xee,0xff,0xe4,0xe4,0xe8,0xff,0xe4,0xe4,0xe7,0xff,0xe3,0xe3,0xe7,0xff, + 0xe3,0xe3,0xe6,0xff,0xe2,0xe2,0xe6,0xff,0xe2,0xe2,0xe5,0xff,0xe1,0xe1,0xe5, + 0xff,0x84,0xe2,0xe2,0xe6,0xff,0x0c,0xe2,0xe2,0xe6,0xfd,0xe2,0xe2,0xe6,0xf8, + 0xe2,0xe2,0xe6,0xef,0xe2,0xe2,0xe6,0xe3,0xe2,0xe2,0xe6,0xd4,0xe2,0xe2,0xe6, + 0xc1,0xe2,0xe2,0xe6,0xaa,0xe2,0xe2,0xe6,0x90,0xe2,0xe2,0xe6,0x73,0xe2,0xe2, + 0xe6,0x52,0xe2,0xe2,0xe6,0x2e,0xe2,0xe2,0xe6,0x08,0x83,0x00,0x00,0x00,0x00, + 0x3e,0xfc,0xfc,0xfd,0xff,0xeb,0xeb,0xf0,0xff,0xe0,0xe0,0xe7,0xff,0x88,0x88, + 0x8c,0xff,0xbc,0xbc,0xc0,0xff,0xc4,0xc4,0xc7,0xff,0xcc,0xcc,0xcf,0xff,0xd5, + 0xd5,0xd7,0xff,0xdd,0xdd,0xdf,0xff,0xe6,0xe6,0xe7,0xff,0xef,0xef,0xf0,0xff, + 0xf5,0xf5,0xf5,0xff,0xe0,0xdf,0xdf,0xff,0xd1,0xc9,0xca,0xff,0xe0,0xde,0xde, + 0xff,0xf2,0xf2,0xf3,0xff,0xf1,0xf1,0xf2,0xff,0xf0,0xf0,0xf1,0xff,0xee,0xee, + 0xef,0xff,0xec,0xec,0xee,0xff,0xd7,0xd6,0xd8,0xff,0xc7,0xc0,0xc2,0xff,0xd4, + 0xd2,0xd5,0xff,0xe5,0xe5,0xe8,0xff,0xe2,0xe2,0xe6,0xff,0xe0,0xe0,0xe4,0xff, + 0xdd,0xdd,0xe2,0xff,0xdb,0xdb,0xe0,0xff,0xc6,0xc5,0xca,0xff,0xb7,0xb0,0xb5, + 0xff,0xc2,0xc0,0xc6,0xff,0xd0,0xd0,0xd7,0xff,0xcd,0xcd,0xd4,0xff,0xca,0xca, + 0xd2,0xff,0xc6,0xc6,0xcf,0xff,0xc3,0xc3,0xcc,0xff,0xaf,0xaf,0xb8,0xff,0xa2, + 0x9b,0xa4,0xff,0xaa,0xa8,0xb3,0xff,0xb5,0xb5,0xc1,0xff,0xb1,0xb1,0xbe,0xff, + 0xa0,0xa0,0xaa,0xff,0x8e,0x8e,0x95,0xff,0x87,0x87,0x8c,0xff,0xa5,0xa5,0xa9, + 0xfc,0xff,0xff,0xff,0xeb,0xff,0xff,0xff,0xed,0xff,0xff,0xff,0xef,0xff,0xff, + 0xff,0xf1,0xff,0xff,0xff,0xf3,0xff,0xff,0xff,0xf5,0xff,0xff,0xff,0xf6,0xff, + 0xff,0xff,0xf8,0xff,0xff,0xff,0xf9,0xff,0xff,0xff,0xfa,0xfd,0xfd,0xfe,0xfb, + 0xfa,0xfa,0xfb,0xfd,0xf7,0xf7,0xf8,0xfe,0xf4,0xf4,0xf6,0xfe,0xf1,0xf1,0xf4, + 0xff,0xef,0xef,0xf2,0xff,0xea,0xea,0xee,0xfe,0x83,0xeb,0xeb,0xef,0xff,0x82, + 0xec,0xec,0xef,0xff,0x82,0xed,0xed,0xf0,0xff,0x0f,0xee,0xee,0xf0,0xff,0xee, + 0xee,0xf1,0xff,0xad,0xad,0xae,0xff,0x6f,0x6f,0x6f,0xff,0x09,0x09,0x09,0xff, + 0x40,0x40,0x40,0xff,0x80,0x82,0x7f,0xff,0x8d,0x90,0x8c,0xff,0x8e,0x91,0x8d, + 0xff,0x83,0x86,0x83,0xff,0x43,0x44,0x43,0xff,0x0f,0x0f,0x0f,0xff,0xcf,0xcf, + 0xcf,0xff,0xfa,0xfa,0xfa,0xff,0xf4,0xf4,0xf5,0xff,0x87,0xf5,0xf5,0xf5,0xff, + 0x01,0xf4,0xf4,0xf5,0xff,0x85,0xf4,0xf4,0xf4,0xff,0x0e,0xf3,0xf3,0xf4,0xff, + 0xaf,0xaf,0xaf,0xff,0x6f,0x6f,0x6f,0xff,0x09,0x09,0x09,0xff,0x00,0x4d,0x00, + 0xff,0x13,0x98,0x12,0xff,0x1e,0xa6,0x1e,0xff,0x21,0xa8,0x20,0xff,0x1a,0x9b, + 0x19,0xff,0x09,0x50,0x08,0xff,0x0f,0x0f,0x0f,0xff,0xcf,0xcf,0xcf,0xff,0xf8, + 0xf8,0xf9,0xff,0xf0,0xf0,0xf1,0xff,0x83,0xef,0xef,0xf0,0xff,0x01,0xee,0xee, + 0xf0,0xff,0x82,0xee,0xee,0xef,0xff,0x02,0xed,0xed,0xef,0xff,0xed,0xed,0xee, + 0xff,0x82,0xec,0xec,0xee,0xff,0x01,0xec,0xec,0xed,0xff,0x82,0xeb,0xeb,0xed, + 0xff,0x0d,0xea,0xea,0xec,0xff,0xab,0xab,0xac,0xff,0x6f,0x6f,0x6f,0xff,0x09, + 0x09,0x09,0xff,0x65,0x65,0x00,0xff,0xc0,0xc2,0x12,0xff,0xcd,0xd0,0x1e,0xff, + 0xcd,0xd1,0x20,0xff,0xc0,0xc4,0x19,0xff,0x66,0x67,0x08,0xff,0x0f,0x0f,0x0f, + 0xff,0xcf,0xcf,0xcf,0xff,0xf4,0xf4,0xf5,0xff,0x82,0xe4,0xe4,0xe7,0xff,0x01, + 0xe3,0xe3,0xe6,0xff,0x82,0xe2,0xe2,0xe6,0xff,0x82,0xe1,0xe1,0xe5,0xff,0x01, + 0xe0,0xe0,0xe4,0xff,0x84,0xe2,0xe2,0xe6,0xff,0x0c,0xe2,0xe2,0xe6,0xfd,0xe2, + 0xe2,0xe6,0xf8,0xe2,0xe2,0xe6,0xef,0xe2,0xe2,0xe6,0xe3,0xe2,0xe2,0xe6,0xd4, + 0xe2,0xe2,0xe6,0xc1,0xe2,0xe2,0xe6,0xaa,0xe2,0xe2,0xe6,0x90,0xe2,0xe2,0xe6, + 0x73,0xe2,0xe2,0xe6,0x52,0xe2,0xe2,0xe6,0x2e,0xe2,0xe2,0xe6,0x08,0x83,0x00, + 0x00,0x00,0x00,0x0b,0xf8,0xf8,0xfa,0xff,0x88,0x88,0x8c,0xff,0x81,0x81,0x87, + 0xff,0x7e,0x7e,0x84,0xff,0x8a,0x8a,0x90,0xff,0x8d,0x8d,0x93,0xff,0x90,0x90, + 0x96,0xff,0x93,0x93,0x98,0xff,0x96,0x96,0x9b,0xff,0x9a,0x9a,0x9e,0xff,0x9d, + 0x9d,0xa1,0xff,0x82,0x9f,0x9f,0xa3,0xff,0x03,0xa0,0xa0,0xa4,0xff,0xa1,0xa1, + 0xa5,0xff,0xa2,0xa2,0xa5,0xff,0x82,0xa3,0xa3,0xa6,0xff,0x82,0xa4,0xa4,0xa7, + 0xff,0x02,0xa5,0xa5,0xa7,0xff,0xa5,0xa5,0xa8,0xff,0x82,0xa6,0xa6,0xa8,0xff, + 0x82,0xa7,0xa7,0xa9,0xff,0x83,0xa8,0xa8,0xa9,0xff,0x21,0xa7,0xa7,0xa9,0xff, + 0xa6,0xa6,0xa8,0xff,0xa4,0xa4,0xa7,0xff,0xa3,0xa3,0xa6,0xff,0xa1,0xa1,0xa4, + 0xff,0xa0,0xa0,0xa3,0xff,0x9e,0x9e,0xa1,0xff,0x9c,0x9c,0xa0,0xff,0x9a,0x9a, + 0x9e,0xff,0x98,0x98,0x9d,0xff,0x95,0x95,0x9b,0xff,0x93,0x93,0x98,0xff,0xaa, + 0xaa,0xac,0xfa,0xcd,0xcd,0xcf,0xf2,0xff,0xff,0xff,0xe6,0xff,0xff,0xff,0xe8, + 0xff,0xff,0xff,0xeb,0xff,0xff,0xff,0xed,0xff,0xff,0xff,0xef,0xff,0xff,0xff, + 0xf1,0xff,0xff,0xff,0xf3,0xff,0xff,0xff,0xf5,0xff,0xff,0xff,0xf6,0xff,0xff, + 0xff,0xf8,0xff,0xff,0xff,0xf9,0xff,0xff,0xff,0xfa,0xfd,0xfd,0xfe,0xfb,0xfa, + 0xfa,0xfb,0xfd,0xf7,0xf7,0xf9,0xfe,0xf4,0xf4,0xf6,0xfe,0xf1,0xf1,0xf4,0xff, + 0xef,0xef,0xf2,0xff,0xeb,0xeb,0xef,0xfe,0x83,0xec,0xec,0xef,0xff,0x83,0xed, + 0xed,0xf0,0xff,0x82,0xee,0xee,0xf1,0xff,0x82,0xef,0xef,0xf1,0xff,0x04,0xbe, + 0xbe,0xbf,0xff,0x93,0x93,0x93,0xff,0x44,0x44,0x44,0xff,0x0c,0x0c,0x0c,0xff, + 0x82,0x00,0x00,0x00,0xff,0x04,0x0e,0x0e,0x0e,0xff,0x5f,0x5f,0x5f,0xff,0xdf, + 0xdf,0xdf,0xff,0xfa,0xfa,0xfa,0xff,0x87,0xf5,0xf5,0xf5,0xff,0x01,0xf4,0xf4, + 0xf5,0xff,0x85,0xf4,0xf4,0xf4,0xff,0x82,0xf3,0xf3,0xf4,0xff,0x82,0xf3,0xf3, + 0xf3,0xff,0x04,0xbf,0xbf,0xc0,0xff,0x93,0x93,0x93,0xff,0x44,0x44,0x44,0xff, + 0x0c,0x0c,0x0c,0xff,0x82,0x00,0x00,0x00,0xff,0x05,0x0e,0x0e,0x0e,0xff,0x5f, + 0x5f,0x5f,0xff,0xdf,0xdf,0xdf,0xff,0xf8,0xf8,0xf9,0xff,0xef,0xef,0xf1,0xff, + 0x82,0xef,0xef,0xf0,0xff,0x01,0xee,0xee,0xf0,0xff,0x82,0xee,0xee,0xef,0xff, + 0x01,0xed,0xed,0xef,0xff,0x82,0xed,0xed,0xee,0xff,0x02,0xec,0xec,0xee,0xff, + 0xec,0xec,0xed,0xff,0x82,0xeb,0xeb,0xed,0xff,0x83,0xea,0xea,0xec,0xff,0x05, + 0xe9,0xe9,0xeb,0xff,0xbb,0xbb,0xbc,0xff,0x93,0x93,0x93,0xff,0x44,0x44,0x44, + 0xff,0x0c,0x0c,0x0c,0xff,0x82,0x00,0x00,0x00,0xff,0x05,0x0e,0x0e,0x0e,0xff, + 0x5f,0x5f,0x5f,0xff,0xdf,0xdf,0xdf,0xff,0xf3,0xf3,0xf5,0xff,0xe4,0xe4,0xe7, + 0xff,0x82,0xe3,0xe3,0xe6,0xff,0x03,0xe2,0xe2,0xe6,0xff,0xe2,0xe2,0xe5,0xff, + 0xe1,0xe1,0xe5,0xff,0x82,0xe0,0xe0,0xe4,0xff,0x01,0xdf,0xdf,0xe3,0xff,0x84, + 0xe2,0xe2,0xe6,0xff,0x0c,0xe2,0xe2,0xe6,0xfd,0xe2,0xe2,0xe6,0xf8,0xe2,0xe2, + 0xe6,0xef,0xe2,0xe2,0xe6,0xe3,0xe2,0xe2,0xe6,0xd4,0xe2,0xe2,0xe6,0xc1,0xe2, + 0xe2,0xe6,0xaa,0xe2,0xe2,0xe6,0x90,0xe2,0xe2,0xe6,0x73,0xe2,0xe2,0xe6,0x52, + 0xe2,0xe2,0xe6,0x2e,0xe2,0xe2,0xe6,0x08,0x86,0x00,0x00,0x00,0x00,0x01,0xff, + 0xff,0xff,0x04,0x82,0xff,0xff,0xff,0x06,0x38,0xff,0xff,0xff,0x0c,0xff,0xff, + 0xff,0x12,0xff,0xff,0xff,0x14,0xff,0xff,0xff,0x19,0xff,0xff,0xff,0x25,0xff, + 0xff,0xff,0x2a,0xff,0xff,0xff,0x2c,0xff,0xff,0xff,0x3f,0xff,0xff,0xff,0x46, + 0xff,0xff,0xff,0x4b,0xff,0xff,0xff,0x5a,0xff,0xff,0xff,0x68,0xff,0xff,0xff, + 0x6e,0xff,0xff,0xff,0x74,0xff,0xff,0xff,0x7a,0xff,0xff,0xff,0x81,0xff,0xff, + 0xff,0x87,0xff,0xff,0xff,0x8c,0xff,0xff,0xff,0x93,0xff,0xff,0xff,0x98,0xff, + 0xff,0xff,0x9e,0xff,0xff,0xff,0xa3,0xff,0xff,0xff,0xa9,0xff,0xff,0xff,0xae, + 0xff,0xff,0xff,0xb3,0xff,0xff,0xff,0xb9,0xff,0xff,0xff,0xbd,0xff,0xff,0xff, + 0xc2,0xff,0xff,0xff,0xc6,0xff,0xff,0xff,0xca,0xff,0xff,0xff,0xcf,0xff,0xff, + 0xff,0xd2,0xff,0xff,0xff,0xd6,0xff,0xff,0xff,0xd9,0xff,0xff,0xff,0xdd,0xff, + 0xff,0xff,0xe0,0xff,0xff,0xff,0xe3,0xff,0xff,0xff,0xe6,0xff,0xff,0xff,0xe8, + 0xff,0xff,0xff,0xeb,0xff,0xff,0xff,0xed,0xff,0xff,0xff,0xef,0xff,0xff,0xff, + 0xf1,0xff,0xff,0xff,0xf3,0xff,0xff,0xff,0xf5,0xff,0xff,0xff,0xf6,0xff,0xff, + 0xff,0xf8,0xff,0xff,0xff,0xf9,0xff,0xff,0xff,0xfa,0xfd,0xfd,0xfe,0xfb,0xfa, + 0xfa,0xfb,0xfd,0xf7,0xf7,0xf9,0xfe,0xf5,0xf5,0xf6,0xfe,0xf2,0xf2,0xf5,0xff, + 0xf0,0xf0,0xf3,0xff,0xec,0xec,0xef,0xfe,0x82,0xec,0xec,0xf0,0xff,0x82,0xed, + 0xed,0xf0,0xff,0x02,0xee,0xee,0xf0,0xff,0xee,0xee,0xf1,0xff,0x82,0xef,0xef, + 0xf1,0xff,0x82,0xf0,0xf0,0xf2,0xff,0x09,0xf1,0xf1,0xf2,0xff,0xe2,0xe2,0xe4, + 0xff,0xd4,0xd4,0xd5,0xff,0xd6,0xd6,0xd6,0xff,0xe5,0xe5,0xe5,0xff,0xf5,0xf5, + 0xf5,0xff,0xff,0xff,0xff,0xff,0xfc,0xfc,0xfc,0xff,0xf7,0xf7,0xf8,0xff,0x87, + 0xf5,0xf5,0xf5,0xff,0x85,0xf4,0xf4,0xf4,0xff,0x82,0xf3,0xf3,0xf4,0xff,0x83, + 0xf3,0xf3,0xf3,0xff,0x82,0xf2,0xf2,0xf3,0xff,0x08,0xe3,0xe3,0xe3,0xff,0xd4, + 0xd4,0xd4,0xff,0xd6,0xd6,0xd6,0xff,0xe5,0xe5,0xe5,0xff,0xf5,0xf5,0xf5,0xff, + 0xff,0xff,0xff,0xff,0xfa,0xfa,0xfb,0xff,0xf4,0xf4,0xf5,0xff,0x83,0xef,0xef, + 0xf0,0xff,0x82,0xee,0xee,0xef,0xff,0x82,0xed,0xed,0xef,0xff,0x01,0xed,0xed, + 0xee,0xff,0x82,0xec,0xec,0xee,0xff,0x82,0xeb,0xeb,0xed,0xff,0x01,0xeb,0xeb, + 0xec,0xff,0x82,0xea,0xea,0xec,0xff,0x82,0xe9,0xe9,0xeb,0xff,0x11,0xe8,0xe8, + 0xeb,0xff,0xe8,0xe8,0xea,0xff,0xdb,0xdb,0xdd,0xff,0xd1,0xd1,0xd2,0xff,0xd6, + 0xd6,0xd6,0xff,0xe5,0xe5,0xe5,0xff,0xf5,0xf5,0xf5,0xff,0xff,0xff,0xff,0xff, + 0xf7,0xf7,0xf8,0xff,0xeb,0xeb,0xed,0xff,0xe3,0xe3,0xe7,0xff,0xe3,0xe3,0xe6, + 0xff,0xe2,0xe2,0xe6,0xff,0xe2,0xe2,0xe5,0xff,0xe1,0xe1,0xe5,0xff,0xe1,0xe1, + 0xe4,0xff,0xe0,0xe0,0xe4,0xff,0x82,0xdf,0xdf,0xe3,0xff,0x01,0xde,0xde,0xe3, + 0xff,0x84,0xdf,0xdf,0xe3,0xff,0x0c,0xdf,0xdf,0xe3,0xfd,0xdf,0xdf,0xe3,0xf8, + 0xdf,0xdf,0xe3,0xef,0xdf,0xdf,0xe3,0xe3,0xdf,0xdf,0xe3,0xd4,0xdf,0xdf,0xe3, + 0xc1,0xdf,0xdf,0xe3,0xaa,0xdf,0xdf,0xe3,0x90,0xdf,0xdf,0xe3,0x73,0xdf,0xdf, + 0xe3,0x52,0xdf,0xdf,0xe3,0x2e,0xdf,0xdf,0xe3,0x08,0x96,0x00,0x00,0x00,0x00, + 0x2b,0xff,0xff,0xff,0x08,0xff,0xff,0xff,0x1b,0xff,0xff,0xff,0x1d,0xff,0xff, + 0xff,0x1f,0xff,0xff,0xff,0x3f,0xff,0xff,0xff,0x43,0xff,0xff,0xff,0x45,0xff, + 0xff,0xff,0x5f,0xff,0xff,0xff,0x6b,0xff,0xff,0xff,0x70,0xff,0xff,0xff,0x81, + 0xff,0xff,0xff,0x98,0xff,0xff,0xff,0x9d,0xff,0xff,0xff,0xa4,0xff,0xff,0xff, + 0xc2,0xff,0xff,0xff,0xc6,0xff,0xff,0xff,0xca,0xff,0xff,0xff,0xcf,0xff,0xff, + 0xff,0xd2,0xff,0xff,0xff,0xd6,0xff,0xff,0xff,0xd9,0xff,0xff,0xff,0xdd,0xff, + 0xff,0xff,0xe0,0xff,0xff,0xff,0xe3,0xff,0xff,0xff,0xe6,0xff,0xff,0xff,0xe8, + 0xff,0xff,0xff,0xeb,0xff,0xff,0xff,0xed,0xff,0xff,0xff,0xef,0xff,0xff,0xff, + 0xf1,0xff,0xff,0xff,0xf3,0xff,0xff,0xff,0xf5,0xff,0xff,0xff,0xf6,0xff,0xff, + 0xff,0xf8,0xff,0xff,0xff,0xf9,0xff,0xff,0xff,0xfa,0xfd,0xfd,0xfe,0xfb,0xfa, + 0xfa,0xfb,0xfd,0xf8,0xf8,0xf9,0xfe,0xf5,0xf5,0xf7,0xfe,0xf3,0xf3,0xf5,0xff, + 0xf0,0xf0,0xf3,0xff,0xed,0xed,0xf0,0xfe,0x82,0xed,0xed,0xf0,0xff,0x02,0xee, + 0xee,0xf0,0xff,0xee,0xee,0xf1,0xff,0x82,0xef,0xef,0xf1,0xff,0x82,0xf0,0xf0, + 0xf2,0xff,0x82,0xf1,0xf1,0xf2,0xff,0x01,0xf1,0xf1,0xf3,0xff,0x82,0xf2,0xf2, + 0xf3,0xff,0x82,0xf3,0xf3,0xf4,0xff,0x02,0xf4,0xf4,0xf4,0xff,0xf4,0xf4,0xf5, + 0xff,0x87,0xf5,0xf5,0xf5,0xff,0x01,0xf4,0xf4,0xf5,0xff,0x85,0xf4,0xf4,0xf4, + 0xff,0x01,0xf3,0xf3,0xf4,0xff,0x83,0xf3,0xf3,0xf3,0xff,0x82,0xf2,0xf2,0xf3, + 0xff,0x82,0xf2,0xf2,0xf2,0xff,0x82,0xf1,0xf1,0xf2,0xff,0x01,0xf1,0xf1,0xf1, + 0xff,0x83,0xf0,0xf0,0xf1,0xff,0x83,0xef,0xef,0xf0,0xff,0x01,0xee,0xee,0xf0, + 0xff,0x82,0xee,0xee,0xef,0xff,0x02,0xed,0xed,0xef,0xff,0xed,0xed,0xee,0xff, + 0x82,0xec,0xec,0xee,0xff,0x01,0xec,0xec,0xed,0xff,0x82,0xeb,0xeb,0xed,0xff, + 0x82,0xea,0xea,0xec,0xff,0x04,0xe9,0xe9,0xec,0xff,0xe9,0xe9,0xeb,0xff,0xe8, + 0xe8,0xeb,0xff,0xe8,0xe8,0xea,0xff,0x82,0xe7,0xe7,0xea,0xff,0x02,0xe7,0xe7, + 0xe9,0xff,0xe6,0xe6,0xe9,0xff,0x82,0xe5,0xe5,0xe8,0xff,0x06,0xe4,0xe4,0xe8, + 0xff,0xe4,0xe4,0xe7,0xff,0xe3,0xe3,0xe7,0xff,0xe3,0xe3,0xe6,0xff,0xe2,0xe2, + 0xe6,0xff,0xe2,0xe2,0xe5,0xff,0x82,0xe1,0xe1,0xe5,0xff,0x82,0xe0,0xe0,0xe4, + 0xff,0x04,0xdf,0xdf,0xe3,0xff,0xde,0xde,0xe3,0xff,0xde,0xde,0xe2,0xff,0xdd, + 0xdd,0xe2,0xff,0x84,0xdf,0xdf,0xe3,0xff,0x0c,0xdf,0xdf,0xe3,0xfd,0xdf,0xdf, + 0xe3,0xf8,0xdf,0xdf,0xe3,0xef,0xdf,0xdf,0xe3,0xe3,0xdf,0xdf,0xe3,0xd4,0xdf, + 0xdf,0xe3,0xc1,0xdf,0xdf,0xe3,0xaa,0xdf,0xdf,0xe3,0x90,0xdf,0xdf,0xe3,0x73, + 0xdf,0xdf,0xe3,0x52,0xdf,0xdf,0xe3,0x2e,0xdf,0xdf,0xe3,0x08,0xa7,0x00,0x00, + 0x00,0x00,0x1b,0xff,0xff,0xff,0x2e,0xff,0xff,0xff,0x38,0xff,0xff,0xff,0x3a, + 0xff,0xff,0xff,0x57,0xff,0xff,0xff,0x71,0xff,0xff,0xff,0x73,0xff,0xff,0xff, + 0x81,0xff,0xff,0xff,0xa7,0xff,0xff,0xff,0xa9,0xff,0xff,0xff,0xad,0xff,0xff, + 0xff,0xd2,0xff,0xff,0xff,0xd7,0xff,0xff,0xff,0xd9,0xff,0xff,0xff,0xec,0xff, + 0xff,0xff,0xf5,0xff,0xff,0xff,0xf6,0xff,0xff,0xff,0xf8,0xff,0xff,0xff,0xf9, + 0xff,0xff,0xff,0xfa,0xfd,0xfd,0xfe,0xfb,0xfa,0xfa,0xfb,0xfd,0xf8,0xf8,0xf9, + 0xfe,0xf5,0xf5,0xf7,0xfe,0xf3,0xf3,0xf5,0xff,0xf1,0xf1,0xf3,0xff,0xef,0xef, + 0xf0,0xfe,0xee,0xee,0xf1,0xff,0x82,0xef,0xef,0xf1,0xff,0x83,0xf0,0xf0,0xf2, + 0xff,0x02,0xf1,0xf1,0xf2,0xff,0xf1,0xf1,0xf3,0xff,0x82,0xf2,0xf2,0xf3,0xff, + 0x82,0xf3,0xf3,0xf4,0xff,0x02,0xf4,0xf4,0xf4,0xff,0xf4,0xf4,0xf5,0xff,0x87, + 0xf5,0xf5,0xf5,0xff,0x01,0xf4,0xf4,0xf5,0xff,0x85,0xf4,0xf4,0xf4,0xff,0x01, + 0xf3,0xf3,0xf4,0xff,0x83,0xf3,0xf3,0xf3,0xff,0x82,0xf2,0xf2,0xf3,0xff,0x82, + 0xf2,0xf2,0xf2,0xff,0x83,0xf1,0xf1,0xf2,0xff,0x83,0xf0,0xf0,0xf1,0xff,0x83, + 0xef,0xef,0xf0,0xff,0x01,0xee,0xee,0xf0,0xff,0x82,0xee,0xee,0xef,0xff,0x02, + 0xed,0xed,0xef,0xff,0xed,0xed,0xee,0xff,0x82,0xec,0xec,0xee,0xff,0x01,0xec, + 0xec,0xed,0xff,0x82,0xeb,0xeb,0xed,0xff,0x82,0xea,0xea,0xec,0xff,0x01,0xe9, + 0xe9,0xec,0xff,0x82,0xe9,0xe9,0xeb,0xff,0x04,0xe8,0xe8,0xeb,0xff,0xe8,0xe8, + 0xea,0xff,0xe7,0xe7,0xea,0xff,0xe7,0xe7,0xe9,0xff,0x82,0xe6,0xe6,0xe9,0xff, + 0x82,0xe5,0xe5,0xe8,0xff,0x82,0xe4,0xe4,0xe7,0xff,0x82,0xe3,0xe3,0xe6,0xff, + 0x01,0xe2,0xe2,0xe6,0xff,0x82,0xe1,0xe1,0xe5,0xff,0x82,0xe0,0xe0,0xe4,0xff, + 0x82,0xdf,0xdf,0xe3,0xff,0x05,0xde,0xde,0xe2,0xff,0xdd,0xdd,0xe2,0xff,0xdd, + 0xdd,0xe1,0xff,0xdc,0xdc,0xe1,0xff,0xdc,0xdc,0xe0,0xff,0x84,0xdf,0xdf,0xe3, + 0xff,0x0c,0xdf,0xdf,0xe3,0xfd,0xdf,0xdf,0xe3,0xf8,0xdf,0xdf,0xe3,0xef,0xdf, + 0xdf,0xe3,0xe3,0xdf,0xdf,0xe3,0xd4,0xdf,0xdf,0xe3,0xc1,0xdf,0xdf,0xe3,0xaa, + 0xdf,0xdf,0xe3,0x90,0xdf,0xdf,0xe3,0x73,0xdf,0xdf,0xe3,0x52,0xdf,0xdf,0xe3, + 0x2e,0xdf,0xdf,0xe3,0x08,0xb7,0x00,0x00,0x00,0x00,0x0a,0xff,0xff,0xff,0x1d, + 0xff,0xff,0xff,0x4f,0xff,0xff,0xff,0x50,0xd7,0xd7,0xd9,0x6d,0xc3,0xc3,0xc7, + 0xbd,0x9e,0x9e,0xa3,0xbe,0x8b,0x8b,0x92,0xd2,0x84,0x84,0x8b,0xe8,0x77,0x77, + 0x80,0xf2,0x77,0x77,0x7f,0xfd,0x82,0x77,0x77,0x7f,0xff,0x82,0x78,0x78,0x80, + 0xff,0x83,0x79,0x79,0x80,0xff,0x82,0x7a,0x7a,0x81,0xff,0x01,0x7a,0x7a,0x82, + 0xff,0x82,0x7b,0x7b,0x82,0xff,0x01,0x7c,0x7c,0x82,0xff,0x82,0x7c,0x7c,0x83, + 0xff,0x83,0x7d,0x7d,0x83,0xff,0x03,0x7d,0x7d,0x84,0xff,0x7e,0x7e,0x84,0xff, + 0x7e,0x7e,0x85,0xff,0x83,0x7f,0x7f,0x85,0xff,0x83,0x80,0x80,0x86,0xff,0x82, + 0x81,0x81,0x86,0xff,0x82,0x82,0x82,0x87,0xff,0x01,0x82,0x82,0x88,0xff,0x83, + 0x83,0x83,0x88,0xff,0x02,0x83,0x83,0x89,0xff,0x84,0x84,0x89,0xff,0x83,0x85, + 0x85,0x89,0xff,0x02,0x85,0x85,0x8a,0xff,0x86,0x86,0x8a,0xff,0x82,0x86,0x86, + 0x8b,0xff,0x82,0x87,0x87,0x8b,0xff,0x83,0x88,0x88,0x8c,0xff,0x82,0x89,0x89, + 0x8c,0xff,0x82,0x89,0x89,0x8d,0xff,0x01,0x8a,0x8a,0x8e,0xff,0x83,0x8b,0x8b, + 0x8e,0xff,0x01,0x8b,0x8b,0x8f,0xff,0x83,0x8c,0x8c,0x8f,0xff,0x03,0x8d,0x8d, + 0x8f,0xff,0x8d,0x8d,0x90,0xff,0x8e,0x8e,0x90,0xff,0x82,0x8e,0x8e,0x91,0xff, + 0x82,0x8f,0x8f,0x91,0xff,0x01,0x8f,0x8f,0x92,0xff,0x82,0x90,0x90,0x92,0xff, + 0x82,0x91,0x91,0x92,0xff,0x82,0x91,0x91,0x93,0xff,0x83,0x92,0x92,0x94,0xff, + 0x02,0x93,0x93,0x94,0xff,0x93,0x93,0x95,0xff,0x83,0x94,0x94,0x95,0xff,0x02, + 0x96,0x96,0x97,0xff,0x95,0x95,0x97,0xff,0x82,0x95,0x95,0x96,0xff,0x0c,0x95, + 0x95,0x96,0xfd,0x94,0x94,0x95,0xf8,0x94,0x94,0x95,0xef,0x94,0x94,0x95,0xe3, + 0x94,0x94,0x95,0xd4,0x93,0x93,0x94,0xc1,0x92,0x92,0x94,0xaa,0x92,0x92,0x94, + 0x90,0x92,0x92,0x94,0x73,0x92,0x92,0x93,0x52,0x91,0x91,0x93,0x2e,0x91,0x91, + 0x93,0x08,0xff,0x00,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0x00,0xff,0x00,0x00, + 0x00,0x00,0xff,0x00,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0x00,0xff,0x00,0x00, + 0x00,0x00,0xff,0x00,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0x00,0xff,0x00,0x00, + 0x00,0x00,0xff,0x00,0x00,0x00,0x00,0xff,0x00,0x00,0x00,0x00,0xd0,0x00,0x00, + 0x00,0x00 }; static const GdkPixdata sdi_shared_sync_bnc_pixdata = { @@ -1084,5 +1388,5 @@ static const GdkPixdata sdi_shared_sync_bnc_pixdata = { 656, /* rowstride */ 164, /* width */ 60, /* height */ - sdi_shared_sync_bnc_pixdata_pixel_data /* pixel_data: */ + sdi_shared_sync_bnc_pixdata_pixel_data /* pixel_data */ }; diff --git a/src/image_data/slimm_pixdata.h b/src/image_data/slimm_pixdata.h new file mode 100644 index 0000000..16c097c --- /dev/null +++ b/src/image_data/slimm_pixdata.h @@ -0,0 +1,670 @@ +/* GdkPixbuf RGBA C-Source image dump 1-byte-run-length-encoded */ + +static guint8 slimm_pixdata_pixel_data[] = { + 0xff,0x00,0x00,0x00,0x00,0xe1,0x00,0x00,0x00,0x00,0x0e,0xc9,0xc9,0xc9,0x0b, + 0xa7,0xa7,0xa7,0x3b,0xd5,0xd5,0xd5,0x7f,0xcb,0xcb,0xcc,0xba,0xd6,0xd7,0xd7, + 0xa6,0xe4,0xe4,0xe4,0x88,0xe5,0xe6,0xe7,0x73,0xd6,0xd7,0xd7,0x5e,0xbc,0xbe, + 0xbe,0x46,0xb0,0xb2,0xb2,0x34,0xbf,0xc0,0xc0,0x20,0xd5,0xd5,0xd5,0x13,0xe2, + 0xe2,0xe2,0x0b,0xf3,0xf3,0xf3,0x03,0xaa,0x00,0x00,0x00,0x00,0x04,0x8e,0x8e, + 0x8f,0x9a,0x9d,0x9e,0x9f,0xe8,0xe3,0xe4,0xe4,0xfb,0xfc,0xfc,0xfc,0xfe,0x82, + 0xfd,0xfd,0xfd,0xff,0x13,0xfa,0xfa,0xfa,0xfe,0xf4,0xf5,0xf5,0xfa,0xf0,0xf1, + 0xf1,0xf2,0xf0,0xf0,0xf0,0xe6,0xf4,0xf4,0xf4,0xd7,0xf2,0xf2,0xf2,0xcd,0xe5, + 0xe6,0xe6,0xc0,0xd3,0xd4,0xd5,0xaa,0xca,0xcb,0xcc,0x89,0xd5,0xd6,0xd6,0x69, + 0xe3,0xe3,0xe3,0x51,0xe3,0xe3,0xe3,0x40,0xd2,0xd3,0xd3,0x2c,0xbb,0xbc,0xbc, + 0x1d,0xbb,0xbb,0xbc,0x16,0xc1,0xc2,0xc2,0x10,0xd0,0xd0,0xd0,0x0a,0xe8,0xe7, + 0xe8,0x04,0xfd,0xfd,0xfd,0x00,0x9f,0x00,0x00,0x00,0x00,0x1e,0x77,0x78,0x79, + 0xd9,0x93,0x94,0x95,0xff,0xe1,0xe1,0xe1,0xff,0xfe,0xfe,0xfe,0xff,0xfb,0xfb, + 0xfb,0xff,0xe5,0xe5,0xe5,0xff,0xe2,0xe2,0xe2,0xff,0xe9,0xe9,0xe9,0xff,0xf0, + 0xf0,0xf0,0xff,0xf5,0xf5,0xf5,0xff,0xfa,0xfa,0xfa,0xff,0xfd,0xfd,0xfd,0xff, + 0xfe,0xfe,0xfe,0xff,0xff,0xff,0xff,0xff,0xfe,0xfe,0xfe,0xff,0xfd,0xfd,0xfd, + 0xff,0xfb,0xfb,0xfb,0xff,0xf4,0xf4,0xf4,0xfb,0xeb,0xec,0xec,0xf0,0xe8,0xe8, + 0xe8,0xde,0xeb,0xeb,0xeb,0xcb,0xeb,0xeb,0xeb,0xbe,0xe8,0xe8,0xe8,0xad,0xd5, + 0xd6,0xd6,0x8f,0xc1,0xc2,0xc2,0x6c,0xbc,0xbd,0xbd,0x50,0xc2,0xc3,0xc3,0x3c, + 0xce,0xce,0xce,0x2a,0xe6,0xe6,0xe6,0x10,0xf6,0xf6,0xf6,0x02,0x9a,0x00,0x00, + 0x00,0x00,0x17,0x79,0x7a,0x7b,0xc7,0x8c,0x8d,0x8e,0xff,0xda,0xda,0xda,0xff, + 0xfe,0xfe,0xfe,0xff,0xe8,0xe8,0xe8,0xff,0x50,0x50,0x50,0xff,0x29,0x29,0x27, + 0xff,0x32,0x33,0x31,0xff,0x42,0x42,0x41,0xff,0x57,0x57,0x57,0xff,0x6d,0x6d, + 0x6d,0xff,0x7e,0x7e,0x7d,0xff,0x8d,0x8c,0x8c,0xff,0x99,0x99,0x99,0xff,0xac, + 0xac,0xac,0xff,0xc2,0xc2,0xc2,0xff,0xd7,0xd7,0xd7,0xff,0xe4,0xe4,0xe4,0xff, + 0xeb,0xeb,0xeb,0xff,0xef,0xef,0xef,0xff,0xf4,0xf4,0xf4,0xff,0xf9,0xf9,0xf9, + 0xff,0xfc,0xfc,0xfc,0xff,0x82,0xfe,0xfe,0xfe,0xff,0x0f,0xfd,0xfd,0xfd,0xff, + 0xfb,0xfb,0xfb,0xff,0xf7,0xf8,0xf8,0xff,0xea,0xea,0xeb,0xf3,0xe1,0xe1,0xe1, + 0xdc,0xe0,0xe0,0xe0,0xc0,0xe5,0xe5,0xe5,0xa9,0xe9,0xe9,0xe9,0x97,0xe4,0xe4, + 0xe4,0x7a,0xcf,0xd0,0xd0,0x5a,0xc3,0xc3,0xc3,0x47,0xbf,0xc0,0xc0,0x3b,0xc1, + 0xc2,0xc2,0x29,0xda,0xda,0xda,0x13,0xf1,0xf1,0xf1,0x04,0x90,0x00,0x00,0x00, + 0x00,0x29,0x7f,0x80,0x81,0xb1,0x87,0x88,0x89,0xff,0xd2,0xd2,0xd2,0xff,0xfe, + 0xfe,0xfe,0xff,0xef,0xef,0xef,0xff,0x5a,0x5a,0x5a,0xff,0x96,0x95,0x94,0xff, + 0x9c,0x9c,0x97,0xff,0x8b,0x8a,0x85,0xff,0x81,0x80,0x7c,0xff,0x71,0x70,0x6d, + 0xff,0x64,0x63,0x60,0xff,0x56,0x55,0x52,0xff,0x4c,0x4b,0x48,0xff,0x47,0x46, + 0x44,0xff,0x46,0x46,0x44,0xff,0x46,0x45,0x44,0xff,0x45,0x45,0x44,0xff,0x4a, + 0x49,0x49,0xff,0x53,0x53,0x52,0xff,0x65,0x65,0x65,0xff,0x81,0x81,0x81,0xff, + 0x97,0x97,0x97,0xff,0xa5,0xa5,0xa5,0xff,0xaf,0xaf,0xb1,0xff,0xbb,0xbb,0xbc, + 0xff,0xc9,0xc9,0xca,0xff,0xdb,0xdb,0xdc,0xff,0xea,0xe9,0xea,0xff,0xf0,0xf0, + 0xf0,0xff,0xf2,0xf2,0xf2,0xff,0xf5,0xf5,0xf5,0xff,0xf7,0xf7,0xf7,0xff,0xf8, + 0xf8,0xf8,0xfd,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf7,0xf1,0xf6,0xf6,0xf6,0xec, + 0xf6,0xf6,0xf6,0xe5,0xf0,0xf0,0xf0,0xd8,0xdf,0xe0,0xe0,0xb6,0xd4,0xd4,0xd4, + 0x34,0x8f,0x00,0x00,0x00,0x00,0x34,0x80,0x80,0x81,0x9c,0x84,0x85,0x85,0xff, + 0xc6,0xc7,0xc7,0xff,0xfd,0xfd,0xfe,0xff,0xf2,0xf3,0xf3,0xff,0x63,0x67,0x6d, + 0xff,0x89,0x9f,0xc0,0xff,0xb4,0xd1,0xfb,0xff,0xbd,0xd5,0xf7,0xff,0xcc,0xde, + 0xf8,0xff,0xd2,0xe0,0xf4,0xff,0xea,0xee,0xf7,0xff,0xe7,0xeb,0xf2,0xff,0xe0, + 0xe4,0xe9,0xff,0xd8,0xda,0xde,0xff,0xd1,0xd2,0xd4,0xff,0xc9,0xca,0xca,0xff, + 0xbd,0xbd,0xbb,0xff,0xa9,0xa7,0xa5,0xff,0x96,0x95,0x92,0xff,0x85,0x83,0x80, + 0xff,0x72,0x71,0x6d,0xff,0x5f,0x5e,0x5b,0xff,0x39,0x3b,0x3f,0xff,0x22,0x25, + 0x3d,0xff,0x29,0x29,0x3a,0xff,0x35,0x35,0x41,0xff,0x44,0x45,0x4d,0xff,0x50, + 0x52,0x58,0xff,0x56,0x59,0x5e,0xff,0x61,0x62,0x68,0xff,0x73,0x73,0x77,0xff, + 0x8e,0x8e,0x91,0xff,0xac,0xac,0xae,0xff,0xc1,0xc1,0xc2,0xff,0xcb,0xcb,0xcb, + 0xff,0xd2,0xd2,0xd2,0xff,0xda,0xda,0xda,0xff,0xe8,0xe8,0xe8,0xff,0xf9,0xf9, + 0xf9,0xff,0xd9,0xd9,0xd9,0x7b,0xf1,0xf2,0xf2,0x02,0xcb,0xcb,0xcc,0x05,0xa7, + 0xa7,0xa7,0x08,0x74,0x76,0x77,0x0f,0x8d,0x8f,0x90,0x10,0xa6,0xa7,0xa7,0x0b, + 0x95,0x97,0x98,0x10,0xa0,0xa1,0xa1,0x0e,0xb0,0xb1,0xb1,0x09,0xd1,0xd1,0xd2, + 0x04,0xef,0xef,0xef,0x01,0x84,0x00,0x00,0x00,0x00,0x52,0x7b,0x7b,0x7c,0x8a, + 0x82,0x83,0x83,0xfe,0xb9,0xba,0xba,0xff,0xfb,0xfc,0xfc,0xff,0xf3,0xf4,0xf5, + 0xff,0x73,0x77,0x7c,0xff,0x94,0x9d,0xac,0xff,0xe2,0xee,0xfe,0xff,0xd0,0xe0, + 0xfe,0xff,0xc1,0xd7,0xfe,0xff,0xb6,0xd0,0xfe,0xff,0xb4,0xcf,0xfe,0xff,0xb1, + 0xcc,0xff,0xff,0xb0,0xcc,0xff,0xff,0xa3,0xc3,0xfd,0xff,0xbd,0xd3,0xfc,0xff, + 0xaf,0xcd,0xff,0xff,0xb7,0xd2,0xff,0xff,0xb3,0xcf,0xff,0xff,0xbe,0xd6,0xff, + 0xff,0xc5,0xda,0xff,0xff,0xd4,0xe4,0xff,0xff,0xe1,0xec,0xfc,0xff,0xb8,0xc1, + 0xd2,0xff,0x8a,0xa8,0xda,0xff,0x8c,0xa3,0xcd,0xff,0x8f,0xa3,0xc8,0xff,0x8c, + 0x9d,0xbc,0xff,0x92,0x9f,0xb5,0xff,0x86,0x90,0xa3,0xff,0x7b,0x7e,0x8e,0xff, + 0x73,0x71,0x7a,0xff,0x63,0x63,0x6b,0xff,0x4f,0x53,0x5d,0xff,0x39,0x40,0x4e, + 0xff,0x21,0x2c,0x3e,0xff,0x1c,0x21,0x35,0xff,0x29,0x29,0x39,0xff,0x5b,0x5b, + 0x62,0xff,0xe2,0xe2,0xe2,0xff,0xbc,0xbd,0xbe,0xc9,0x72,0x76,0x79,0x87,0x8d, + 0x90,0x93,0x9b,0x8b,0x8f,0x93,0xb2,0x75,0x78,0x7b,0xd8,0xbd,0xbf,0xc1,0xdd, + 0xd4,0xd5,0xd6,0xc3,0xa4,0xa5,0xa6,0xde,0xb0,0xb0,0xb1,0xd2,0xc4,0xc4,0xc4, + 0xb4,0xc1,0xc2,0xc2,0x97,0xaf,0xaf,0xaf,0x77,0xa2,0xa1,0xa1,0x4f,0xb9,0xb9, + 0xb9,0x28,0xe2,0xe2,0xe2,0x0c,0x00,0x00,0x00,0x00,0x75,0x75,0x76,0x7c,0x82, + 0x82,0x83,0xfc,0xb0,0xb1,0xb1,0xff,0xfb,0xfb,0xfc,0xff,0xf4,0xf5,0xf6,0xff, + 0x87,0x89,0x8d,0xff,0x70,0x80,0x99,0xff,0xba,0xd6,0xfe,0xff,0xb7,0xd0,0xfe, + 0xff,0xbd,0xd5,0xfe,0xff,0xc4,0xd9,0xfe,0xff,0xce,0xdf,0xfe,0xff,0xd4,0xe3, + 0xfe,0xff,0xd6,0xe4,0xff,0xff,0xd4,0xe3,0xfd,0xff,0xf1,0xf5,0xfd,0xff,0xdc, + 0xe8,0xfc,0xff,0xe4,0xed,0xff,0xff,0xe5,0xef,0xff,0xff,0xea,0xf2,0xff,0xff, + 0xdc,0xe8,0xff,0xff,0xd2,0xe2,0xff,0xff,0xc8,0xdb,0xfd,0xff,0xa1,0xb7,0xdd, + 0xff,0x56,0x8f,0xef,0xff,0x61,0x99,0xfe,0xff,0x82,0x63,0x9b,0xfe,0xff,0x3d, + 0x7d,0xa5,0xed,0xff,0xab,0xbf,0xe2,0xff,0x73,0xa5,0xfb,0xff,0x7a,0xa8,0xfb, + 0xff,0x89,0xb1,0xf9,0xff,0x97,0xba,0xf7,0xff,0xa4,0xc2,0xf4,0xff,0xae,0xc6, + 0xef,0xff,0xb2,0xc4,0xe6,0xff,0xb0,0xbe,0xd9,0xff,0x81,0x89,0x98,0xff,0xdd, + 0xde,0xde,0xff,0xc0,0xc2,0xc3,0xfe,0x71,0x76,0x7b,0xff,0x7b,0x7f,0x83,0xff, + 0x76,0x7b,0x7f,0xff,0x6b,0x70,0x74,0xff,0xd9,0xdb,0xdd,0xff,0xe1,0xe1,0xe2, + 0xff,0xa6,0xa7,0xa7,0xff,0xa8,0xa9,0xa9,0xff,0xbe,0xbf,0xbf,0xff,0xbd,0xbd, + 0xbe,0xff,0xc0,0xc0,0xc0,0xfd,0xb8,0xb9,0xb9,0xf7,0xb1,0xb0,0xb2,0xf0,0xaa, + 0xaa,0xaa,0xeb,0xb6,0xb7,0xb8,0xd2,0x70,0x71,0x71,0x6d,0x82,0x83,0x83,0xf9, + 0xaa,0xab,0xab,0xff,0xfb,0xfc,0xfc,0xff,0xf4,0xf5,0xf6,0xff,0x99,0x9c,0x9f, + 0xff,0x78,0x7e,0x88,0xff,0xea,0xf3,0xfe,0xff,0xe4,0xed,0xfe,0xff,0xe0,0xeb, + 0xfe,0xff,0xde,0xe9,0xfe,0xff,0xda,0xe7,0xfe,0xff,0xdd,0xe9,0xfe,0xff,0xd8, + 0xe6,0xfe,0xff,0xcc,0xdd,0xfc,0xff,0xfe,0xfe,0xff,0xff,0xcf,0xe0,0xfd,0xff, + 0xbc,0xd4,0xfe,0xff,0xbb,0xd3,0xff,0xff,0xbe,0xd6,0xff,0xff,0xbe,0xd5,0xff, + 0xff,0xc6,0xda,0xff,0xff,0xcf,0xe0,0xff,0xff,0xb7,0xc9,0xe6,0xff,0x62,0x95, + 0xeb,0xff,0x68,0x9e,0xfe,0xff,0x6b,0x9f,0xfe,0xff,0x6d,0xa0,0xfe,0xff,0x75, + 0xa2,0xf2,0xff,0xcb,0xd0,0xda,0xff,0x9c,0xbd,0xf6,0xff,0x72,0xa4,0xfe,0xff, + 0x76,0xa7,0xfe,0xff,0x82,0x77,0xa8,0xfe,0xff,0x29,0x78,0xa9,0xfe,0xff,0x7b, + 0xaa,0xfe,0xff,0x7f,0xad,0xfe,0xff,0x70,0x8c,0xbc,0xff,0xd9,0xda,0xdc,0xff, + 0xce,0xcf,0xd0,0xff,0x73,0x78,0x7c,0xff,0x7c,0x80,0x84,0xff,0x78,0x7c,0x80, + 0xff,0x6c,0x72,0x76,0xff,0xd8,0xda,0xdd,0xff,0xde,0xdf,0xdf,0xff,0xa2,0xa3, + 0xa3,0xff,0xa5,0xa5,0xa5,0xff,0xba,0xbb,0xbb,0xff,0xba,0xba,0xbb,0xff,0xbd, + 0xbd,0xbe,0xff,0xb4,0xb5,0xb5,0xff,0xa9,0xaa,0xaa,0xff,0xac,0xac,0xac,0xff, + 0xcd,0xcf,0xcf,0xfd,0x75,0x75,0x75,0x5f,0x84,0x85,0x85,0xf5,0xa4,0xa5,0xa6, + 0xff,0xfc,0xfc,0xfc,0xff,0xf3,0xf5,0xf6,0xff,0xa8,0xaa,0xac,0xff,0x61,0x6a, + 0x78,0xff,0xd9,0xea,0xfe,0xff,0xcc,0xde,0xfe,0xff,0xc7,0xdb,0xfe,0xff,0xc9, + 0xdc,0xfe,0xff,0xc0,0xd6,0xfe,0xff,0xcc,0xdd,0xfe,0xff,0xca,0xdd,0xfd,0xff, + 0xd7,0xe5,0xfb,0xff,0xff,0xff,0xff,0xff,0xec,0xf3,0xfd,0xff,0xe2,0xec,0xfe, + 0xff,0xeb,0xf2,0xff,0xff,0xf5,0xf8,0xff,0xff,0x82,0xf6,0xf9,0xff,0xff,0x1b, + 0xf0,0xf6,0xff,0xff,0xd5,0xde,0xed,0xff,0x6f,0x9b,0xe7,0xff,0x72,0xa5,0xfe, + 0xff,0x74,0xa6,0xfe,0xff,0x76,0xa7,0xfe,0xff,0x75,0xa7,0xfc,0xff,0xae,0xc1, + 0xde,0xff,0xd3,0xdc,0xeb,0xff,0x81,0xae,0xfc,0xff,0x80,0xad,0xfe,0xff,0x82, + 0xaf,0xfe,0xff,0x83,0xb0,0xfe,0xff,0x86,0xb1,0xfe,0xff,0x87,0xb2,0xfe,0xff, + 0x88,0xb3,0xfe,0xff,0x7c,0x9b,0xd1,0xff,0xcb,0xcd,0xd0,0xff,0xde,0xdf,0xe0, + 0xff,0x78,0x7d,0x81,0xff,0x7e,0x83,0x88,0xff,0x7b,0x7f,0x83,0xff,0x6e,0x74, + 0x78,0xff,0xd8,0xda,0xdd,0xff,0xde,0xde,0xdf,0xff,0xa1,0xa1,0xa2,0xff,0xa3, + 0xa4,0xa4,0xff,0x82,0xb9,0xba,0xba,0xff,0x0f,0xbc,0xbd,0xbc,0xff,0xb3,0xb3, + 0xb3,0xff,0xa8,0xa8,0xa9,0xff,0xaa,0xaa,0xab,0xff,0xcb,0xcc,0xcc,0xfe,0x87, + 0x87,0x87,0x4c,0x86,0x87,0x88,0xef,0x9f,0x9f,0xa0,0xff,0xf8,0xf9,0xf9,0xff, + 0xf3,0xf5,0xf6,0xff,0xb4,0xb6,0xb7,0xff,0x62,0x65,0x6a,0xff,0xe3,0xef,0xfe, + 0xff,0xe4,0xed,0xfe,0xff,0xe9,0xf0,0xfe,0xff,0x82,0xf0,0xf5,0xfe,0xff,0x35, + 0xf8,0xfa,0xfe,0xff,0xf3,0xf7,0xfd,0xff,0xe8,0xef,0xfc,0xff,0xff,0xff,0xff, + 0xff,0xf2,0xf6,0xfe,0xff,0xe1,0xeb,0xfe,0xff,0xdb,0xe8,0xff,0xff,0xd7,0xe5, + 0xff,0xff,0xd4,0xe3,0xff,0xff,0xd1,0xe1,0xff,0xff,0xd4,0xe4,0xff,0xff,0xcb, + 0xd9,0xee,0xff,0x7c,0xa1,0xe5,0xff,0x7d,0xab,0xff,0xff,0x7f,0xad,0xfe,0xff, + 0x81,0xae,0xfe,0xff,0x81,0xaf,0xfe,0xff,0x96,0xb5,0xeb,0xff,0xdd,0xdf,0xe3, + 0xff,0xc3,0xd2,0xef,0xff,0x8d,0xb4,0xfb,0xff,0x8b,0xb4,0xfe,0xff,0x8d,0xb6, + 0xfe,0xff,0x8f,0xb7,0xfe,0xff,0x91,0xb8,0xfe,0xff,0x93,0xb9,0xfe,0xff,0x8a, + 0xab,0xe5,0xff,0xab,0xae,0xb4,0xff,0xe8,0xe9,0xe9,0xff,0x7f,0x84,0x88,0xff, + 0x81,0x87,0x8b,0xff,0x7d,0x81,0x86,0xff,0x71,0x76,0x7a,0xff,0xd8,0xda,0xdd, + 0xff,0xdd,0xde,0xdf,0xff,0xa0,0xa1,0xa1,0xff,0xa3,0xa3,0xa4,0xff,0xb8,0xb9, + 0xb9,0xff,0xb8,0xb8,0xb8,0xff,0xbb,0xbb,0xbc,0xff,0xb2,0xb2,0xb2,0xff,0xa7, + 0xa7,0xa8,0xff,0xa9,0xaa,0xaa,0xff,0xc9,0xc9,0xc9,0xfe,0x9d,0x9d,0x9e,0x3a, + 0x86,0x87,0x88,0xe9,0x9c,0x9e,0x9f,0xff,0xf2,0xf2,0xf3,0xff,0xf1,0xf3,0xf5, + 0xff,0xbc,0xbe,0xbf,0xff,0x5e,0x62,0x68,0xff,0xe9,0xf3,0xfe,0xff,0xdb,0xe7, + 0xfe,0xff,0x82,0xd2,0xe1,0xfe,0xff,0x3f,0xc4,0xd9,0xfe,0xff,0xce,0xde,0xfe, + 0xff,0xca,0xdc,0xfd,0xff,0xef,0xf4,0xfc,0xff,0xfe,0xfe,0xfe,0xff,0xf5,0xf9, + 0xfe,0xff,0xd7,0xe5,0xfe,0xff,0xdc,0xe9,0xff,0xff,0xe4,0xed,0xff,0xff,0xe7, + 0xef,0xff,0xff,0xe3,0xed,0xff,0xff,0xe6,0xef,0xff,0xff,0xdf,0xe5,0xef,0xff, + 0x89,0xaa,0xe4,0xff,0x86,0xb1,0xfe,0xff,0x88,0xb2,0xfe,0xff,0x8a,0xb4,0xfe, + 0xff,0x8b,0xb5,0xfd,0xff,0xa5,0xbd,0xe7,0xff,0xd9,0xdb,0xdd,0xff,0xe8,0xea, + 0xea,0xff,0xcb,0xd7,0xea,0xff,0x9f,0xbf,0xf6,0xff,0x95,0xbb,0xfe,0xff,0x97, + 0xbc,0xfe,0xff,0x99,0xbd,0xfe,0xff,0x9a,0xbe,0xfe,0xff,0x91,0xb3,0xf0,0xff, + 0x8e,0x93,0x9b,0xff,0xeb,0xeb,0xeb,0xff,0x86,0x8b,0x8e,0xff,0x83,0x89,0x8f, + 0xff,0x7f,0x84,0x88,0xff,0x74,0x78,0x7c,0xff,0xd8,0xda,0xdc,0xff,0xdd,0xdd, + 0xde,0xff,0xa0,0xa0,0xa1,0xff,0xa2,0xa2,0xa3,0xff,0xb7,0xb8,0xb8,0xff,0xb7, + 0xb7,0xb7,0xff,0xba,0xba,0xbb,0xff,0xb1,0xb1,0xb1,0xff,0xa5,0xa5,0xa6,0xff, + 0xa8,0xa8,0xa8,0xff,0xc5,0xc6,0xc6,0xff,0xb6,0xb6,0xb6,0x2a,0x84,0x84,0x85, + 0xe3,0x9a,0x9b,0x9c,0xff,0xe9,0xe9,0xea,0xff,0xef,0xf2,0xf4,0xff,0xc2,0xc5, + 0xc7,0xff,0x5e,0x63,0x6b,0xff,0xd6,0xe8,0xfe,0xff,0xd5,0xe4,0xfe,0xff,0xd9, + 0xe6,0xfe,0xff,0xe5,0xee,0xfe,0xff,0xe1,0xec,0xfe,0xff,0xf1,0xf5,0xfe,0xff, + 0xea,0xf2,0xfd,0xff,0xed,0xf3,0xfc,0xff,0xfe,0xfe,0xfe,0xff,0xfb,0xfc,0xfe, + 0xff,0xe3,0xec,0xfd,0xff,0x82,0xe4,0xee,0xff,0xff,0x32,0xe5,0xee,0xff,0xff, + 0xe1,0xeb,0xff,0xff,0xe2,0xed,0xff,0xff,0xd9,0xe2,0xf0,0xff,0x98,0xb3,0xe5, + 0xff,0x8f,0xb7,0xfe,0xff,0x91,0xb8,0xfe,0xff,0x92,0xb9,0xfe,0xff,0xa0,0xbf, + 0xf6,0xff,0xd6,0xd9,0xe0,0xff,0xe2,0xe2,0xe3,0xff,0xe6,0xe7,0xe9,0xff,0xea, + 0xeb,0xec,0xff,0xd7,0xde,0xeb,0xff,0xa4,0xc3,0xf7,0xff,0x98,0xbd,0xff,0xff, + 0x90,0xb8,0xff,0xff,0x78,0xa8,0xfe,0xff,0x56,0x8d,0xef,0xff,0x6c,0x76,0x86, + 0xff,0xec,0xec,0xec,0xff,0x8d,0x91,0x95,0xff,0x87,0x8c,0x91,0xff,0x81,0x87, + 0x8c,0xff,0x75,0x7a,0x7e,0xff,0xd7,0xda,0xdc,0xff,0xdc,0xdd,0xde,0xff,0x9f, + 0xa0,0xa0,0xff,0xa1,0xa1,0xa2,0xff,0xb6,0xb7,0xb7,0xff,0xb5,0xb7,0xb7,0xff, + 0xb9,0xb9,0xb9,0xff,0xb0,0xb0,0xb0,0xff,0xa4,0xa4,0xa4,0xff,0xa7,0xa7,0xa7, + 0xff,0xc4,0xc4,0xc4,0xff,0xca,0xca,0xca,0x1d,0x80,0x81,0x82,0xdb,0x98,0x99, + 0x9a,0xff,0xe0,0xe1,0xe1,0xff,0xf0,0xf3,0xf5,0xff,0xca,0xce,0xd0,0xff,0x61, + 0x66,0x70,0xff,0xed,0xf3,0xfb,0xff,0xe3,0xed,0xfe,0xff,0xd8,0xe5,0xfe,0xff, + 0xd9,0xe6,0xfe,0xff,0xd0,0xe0,0xfe,0xff,0xce,0xdf,0xfe,0xff,0xd4,0xe3,0xfd, + 0xff,0x82,0xfe,0xfe,0xfe,0xff,0x21,0xff,0xff,0xff,0xff,0xf1,0xf5,0xfd,0xff, + 0xdd,0xe8,0xfd,0xff,0xd4,0xe3,0xff,0xff,0xd6,0xe4,0xff,0xff,0xd3,0xe2,0xff, + 0xff,0xd9,0xe7,0xff,0xff,0xdc,0xe6,0xf3,0xff,0xa7,0xbe,0xe6,0xff,0x97,0xbd, + 0xfd,0xff,0x99,0xbe,0xfe,0xff,0x9d,0xbf,0xfc,0xff,0xcf,0xd6,0xe2,0xff,0xe1, + 0xe1,0xe2,0xff,0xe8,0xe9,0xeb,0xff,0xec,0xee,0xef,0xff,0xe1,0xe3,0xe5,0xff, + 0xdf,0xe0,0xe2,0xff,0xd8,0xdb,0xe2,0xff,0x62,0x99,0xf7,0xff,0x34,0x7d,0xfe, + 0xff,0x32,0x7b,0xfe,0xff,0x30,0x75,0xf2,0xff,0x64,0x73,0x8d,0xff,0xec,0xed, + 0xed,0xff,0x94,0x98,0x9b,0xff,0x89,0x8f,0x93,0xff,0x84,0x89,0x8d,0xff,0x77, + 0x7c,0x80,0xff,0xd6,0xd8,0xda,0xff,0xdc,0xdd,0xde,0xff,0x9e,0x9e,0x9f,0xff, + 0xa0,0xa0,0xa0,0xff,0x82,0xb5,0xb5,0xb6,0xff,0x13,0xb7,0xb8,0xb8,0xff,0xae, + 0xaf,0xb0,0xff,0xa3,0xa4,0xa4,0xff,0xa6,0xa7,0xa7,0xff,0xc4,0xc4,0xc5,0xff, + 0xd7,0xd7,0xd7,0x15,0x7e,0x7e,0x7f,0xd2,0x99,0x9a,0x9b,0xff,0xdb,0xdb,0xdc, + 0xff,0xf3,0xf5,0xf7,0xff,0xd3,0xd7,0xd9,0xff,0x62,0x69,0x74,0xff,0xe0,0xe8, + 0xf1,0xff,0xe8,0xf0,0xfe,0xff,0xe3,0xed,0xfe,0xff,0xed,0xf3,0xfe,0xff,0xef, + 0xf4,0xfd,0xff,0xea,0xf1,0xfc,0xff,0xfc,0xfd,0xfe,0xff,0x83,0xfe,0xfe,0xfe, + 0xff,0x04,0xff,0xff,0xff,0xff,0xf7,0xfa,0xfe,0xff,0xe6,0xef,0xfe,0xff,0xf6, + 0xf9,0xff,0xff,0x82,0xf3,0xf7,0xff,0xff,0x1a,0xeb,0xef,0xf5,0xff,0xb8,0xc9, + 0xe7,0xff,0x9f,0xc2,0xfd,0xff,0xa1,0xc2,0xfd,0xff,0xbd,0xcc,0xe8,0xff,0xd6, + 0xd7,0xd6,0xff,0xdf,0xe1,0xe3,0xff,0xf4,0xf5,0xf7,0xff,0xde,0xdf,0xe1,0xff, + 0xdb,0xdf,0xe2,0xff,0xcb,0xce,0xd1,0xff,0xb6,0xb9,0xbc,0xff,0x34,0x40,0x54, + 0xff,0x2f,0x6d,0xd9,0xff,0x32,0x7b,0xfe,0xff,0x31,0x79,0xf9,0xff,0x5d,0x73, + 0x98,0xff,0xeb,0xec,0xec,0xff,0xa2,0xa5,0xa7,0xff,0x8a,0x90,0x94,0xff,0x86, + 0x8b,0x90,0xff,0x78,0x7d,0x82,0xff,0xd6,0xd8,0xda,0xff,0xdc,0xdc,0xdd,0xff, + 0x9d,0x9d,0x9e,0xff,0x9e,0x9f,0x9f,0xff,0x82,0xb4,0xb4,0xb5,0xff,0x12,0xb6, + 0xb7,0xb7,0xff,0xae,0xae,0xae,0xff,0xa2,0xa2,0xa3,0xff,0xa5,0xa6,0xa6,0xff, + 0xc4,0xc4,0xc5,0xff,0xe4,0xe4,0xe4,0x0d,0x7d,0x7d,0x7e,0xc6,0x99,0x9a,0x9b, + 0xff,0xd6,0xd6,0xd6,0xff,0xf4,0xf7,0xf8,0xff,0xd9,0xde,0xe1,0xff,0x66,0x6c, + 0x75,0xff,0xdc,0xe2,0xeb,0xff,0xe8,0xf0,0xfe,0xff,0xe2,0xec,0xfe,0xff,0xe5, + 0xee,0xfe,0xff,0xe1,0xeb,0xfd,0xff,0xf4,0xf7,0xfe,0xff,0x84,0xfe,0xfe,0xfe, + 0xff,0x82,0xff,0xff,0xff,0xff,0x1e,0xf7,0xf9,0xfe,0xff,0xde,0xe9,0xfe,0xff, + 0xe5,0xef,0xff,0xff,0xe8,0xf0,0xff,0xff,0xeb,0xf2,0xfe,0xff,0xb6,0xc7,0xe5, + 0xff,0x8a,0xb5,0xfc,0xff,0x82,0xa9,0xec,0xff,0xb0,0xb4,0xba,0xff,0xc3,0xc6, + 0xc9,0xff,0xcf,0xd3,0xda,0xff,0x7e,0x88,0x99,0xff,0x47,0x52,0x63,0xff,0x87, + 0x8a,0x8f,0xff,0xdd,0xdf,0xe2,0xff,0x9d,0xa1,0xa5,0xff,0x31,0x32,0x32,0xff, + 0x32,0x51,0x87,0xff,0x33,0x7a,0xfa,0xff,0x32,0x7b,0xfd,0xff,0x50,0x6c,0x9e, + 0xff,0xe2,0xe3,0xe4,0xff,0xb1,0xb3,0xb5,0xff,0x88,0x8e,0x93,0xff,0x87,0x8d, + 0x91,0xff,0x79,0x7e,0x83,0xff,0xd4,0xd7,0xd9,0xff,0xdc,0xdd,0xdd,0xff,0x9c, + 0x9c,0x9d,0xff,0x9e,0x9e,0x9e,0xff,0x82,0xb3,0xb3,0xb4,0xff,0x36,0xb5,0xb6, + 0xb6,0xff,0xad,0xad,0xad,0xff,0xa1,0xa1,0xa2,0xff,0xa4,0xa5,0xa5,0xff,0xc4, + 0xc4,0xc5,0xff,0xe9,0xe9,0xe9,0x0a,0x80,0x80,0x81,0xb6,0x9a,0x9a,0x9b,0xff, + 0xd0,0xd0,0xd0,0xff,0xf5,0xf7,0xf9,0xff,0xdd,0xe2,0xe5,0xff,0x69,0x6e,0x74, + 0xff,0xc5,0xd1,0xe4,0xff,0xd8,0xe7,0xfe,0xff,0xda,0xe7,0xfe,0xff,0xdf,0xea, + 0xfe,0xff,0xdf,0xea,0xfd,0xff,0xf9,0xfb,0xfe,0xff,0xfd,0xfd,0xff,0xff,0xf5, + 0xf8,0xfe,0xff,0xfd,0xfd,0xff,0xff,0xff,0xff,0xff,0xff,0xfe,0xfe,0xff,0xff, + 0xff,0xff,0xff,0xff,0xfd,0xfe,0xff,0xff,0xec,0xf2,0xfd,0xff,0xf9,0xfb,0xff, + 0xff,0xf6,0xf9,0xff,0xff,0xf3,0xf6,0xfd,0xff,0x94,0xa9,0xcd,0xff,0x2e,0x78, + 0xf9,0xff,0x4d,0x83,0xde,0xff,0xba,0xb8,0xb6,0xff,0xc0,0xcb,0xdd,0xff,0x4f, + 0x83,0xdd,0xff,0x31,0x78,0xf4,0xff,0x31,0x78,0xf3,0xff,0x30,0x5f,0xae,0xff, + 0x7d,0x82,0x88,0xff,0xee,0xef,0xf1,0xff,0x81,0x83,0x87,0xff,0x89,0x91,0x9e, + 0xff,0x48,0x86,0xf5,0xff,0x33,0x7c,0xfe,0xff,0x3e,0x61,0x9d,0xff,0xd3,0xd5, + 0xd6,0xff,0xc0,0xc1,0xc3,0xff,0x85,0x8b,0x90,0xff,0x88,0x8e,0x92,0xff,0x79, + 0x7f,0x83,0xff,0xd4,0xd6,0xd8,0xff,0xde,0xde,0xde,0xff,0x9b,0x9b,0x9c,0xff, + 0x9d,0x9d,0x9e,0xff,0x82,0xb2,0xb2,0xb2,0xff,0x23,0xb4,0xb4,0xb5,0xff,0xab, + 0xab,0xac,0xff,0xa0,0xa0,0xa1,0xff,0xa3,0xa4,0xa5,0xff,0xc4,0xc4,0xc5,0xff, + 0xed,0xed,0xed,0x07,0x8b,0x8b,0x8b,0xa0,0x9c,0x9d,0x9e,0xff,0xcb,0xcb,0xcb, + 0xff,0xf5,0xf6,0xf8,0xff,0xde,0xe2,0xe6,0xff,0x68,0x6c,0x70,0xff,0xd3,0xd5, + 0xd9,0xff,0xf7,0xfa,0xff,0xff,0xf3,0xf7,0xff,0xff,0xee,0xf4,0xff,0xff,0xe9, + 0xf0,0xfe,0xff,0xee,0xf2,0xfc,0xff,0xf9,0xfb,0xff,0xff,0xe5,0xee,0xfd,0xff, + 0xf1,0xf6,0xfd,0xff,0xf3,0xf7,0xfd,0xff,0xe1,0xeb,0xfc,0xff,0xf0,0xf5,0xfe, + 0xff,0xec,0xf2,0xfc,0xff,0xb9,0xd0,0xfa,0xff,0xa5,0xc5,0xfe,0xff,0xa1,0xc1, + 0xfe,0xff,0xa2,0xc5,0xfc,0xff,0x7b,0x97,0xc6,0xff,0x2b,0x73,0xf3,0xff,0x33, + 0x7b,0xfb,0xff,0x5d,0x8f,0xea,0xff,0x32,0x79,0xf5,0xff,0x30,0x7b,0xff,0xff, + 0x83,0x32,0x7b,0xfe,0xff,0x1f,0x31,0x6c,0xd4,0xff,0x69,0x72,0x80,0xff,0xe4, + 0xe5,0xe7,0xff,0xed,0xed,0xeb,0xff,0x78,0xa0,0xe7,0xff,0x32,0x7c,0xff,0xff, + 0x32,0x59,0x9e,0xff,0xc5,0xc7,0xca,0xff,0xd0,0xd1,0xd2,0xff,0x80,0x86,0x8a, + 0xff,0x8b,0x90,0x94,0xff,0x7a,0x80,0x84,0xff,0xd3,0xd6,0xd7,0xff,0xdd,0xde, + 0xde,0xff,0x9a,0x9a,0x9b,0xff,0x9b,0x9c,0x9d,0xff,0xb1,0xb1,0xb2,0xff,0xb0, + 0xb0,0xb2,0xff,0xb3,0xb3,0xb4,0xff,0xaa,0xab,0xab,0xff,0x9e,0x9f,0x9f,0xff, + 0xa2,0xa3,0xa3,0xff,0xc3,0xc5,0xc5,0xff,0xf1,0xf1,0xf1,0x06,0x96,0x96,0x97, + 0x8a,0x9d,0x9e,0x9e,0xff,0xc3,0xc3,0xc4,0xff,0xf3,0xf5,0xf6,0xff,0xdd,0xe2, + 0xe5,0xff,0x6c,0x6e,0x70,0xff,0xb2,0xbd,0xce,0xff,0x83,0xde,0xeb,0xff,0xff, + 0x11,0xdf,0xec,0xff,0xff,0xdf,0xec,0xfe,0xff,0xe1,0xee,0xfe,0xff,0xd8,0xe8, + 0xfe,0xff,0xd3,0xe5,0xfd,0xff,0xb7,0xd1,0xfb,0xff,0xcd,0xe1,0xfe,0xff,0xcf, + 0xe2,0xfe,0xff,0xca,0xdf,0xfd,0xff,0xd1,0xe2,0xfd,0xff,0xd4,0xe4,0xfe,0xff, + 0xce,0xe0,0xfe,0xff,0xcf,0xe1,0xfc,0xff,0x9d,0xb0,0xcb,0xff,0x29,0x70,0xed, + 0xff,0x33,0x7c,0xfe,0xff,0x30,0x7a,0xfe,0xff,0x85,0x32,0x7b,0xfe,0xff,0x7f, + 0x32,0x7b,0xfd,0xff,0x30,0x70,0xdf,0xff,0x54,0x69,0x8c,0xff,0xb9,0xbe,0xc3, + 0xff,0xa2,0xb7,0xdd,0xff,0x30,0x7b,0xff,0xff,0x30,0x5c,0xac,0xff,0xbe,0xc2, + 0xc8,0xff,0xda,0xdb,0xdb,0xff,0x7e,0x84,0x87,0xff,0x8b,0x91,0x95,0xff,0x7a, + 0x80,0x85,0xff,0xd2,0xd4,0xd7,0xff,0xdc,0xdd,0xde,0xff,0x98,0x99,0x99,0xff, + 0x9b,0x9b,0x9b,0xff,0xaf,0xb0,0xb0,0xff,0xaf,0xaf,0xb0,0xff,0xb1,0xb2,0xb3, + 0xff,0xa9,0xaa,0xaa,0xff,0x9e,0x9e,0x9f,0xff,0xa0,0xa1,0xa2,0xff,0xc2,0xc4, + 0xc5,0xff,0xf5,0xf5,0xf5,0x04,0x9f,0x9f,0x9f,0x75,0x9c,0x9d,0x9d,0xff,0xba, + 0xba,0xbb,0xff,0xf2,0xf4,0xf4,0xff,0xdd,0xe2,0xe5,0xff,0x74,0x76,0x78,0xff, + 0x95,0x96,0x97,0xff,0xcc,0xcd,0xcc,0xff,0xca,0xcb,0xcb,0xff,0xbc,0xbe,0xbe, + 0xff,0xa2,0xa6,0xa5,0xff,0x95,0x99,0x98,0xff,0x96,0x9c,0x9c,0xff,0x91,0x9c, + 0xa2,0xff,0x97,0xa1,0xa8,0xff,0x92,0x9e,0xad,0xff,0x9f,0xac,0xb7,0xff,0xa3, + 0xb0,0xc0,0xff,0x9f,0xb0,0xc8,0xff,0xa8,0xb9,0xd1,0xff,0xa9,0xbc,0xd9,0xff, + 0xae,0xc1,0xe2,0xff,0xb3,0xc8,0xe7,0xff,0x99,0xaa,0xc6,0xff,0x2c,0x6d,0xd8, + 0xff,0x32,0x79,0xed,0xff,0x31,0x79,0xed,0xff,0x31,0x79,0xee,0xff,0x30,0x79, + 0xee,0xff,0x30,0x7a,0xee,0xff,0x30,0x7a,0xef,0xff,0x30,0x7a,0xf0,0xff,0x2f, + 0x7a,0xf1,0xff,0x30,0x7a,0xf2,0xff,0x2e,0x75,0xe2,0xff,0x37,0x6b,0xba,0xff, + 0x4a,0x7c,0xd3,0xff,0x2f,0x77,0xf7,0xff,0x2d,0x61,0xbb,0xff,0xb5,0xbb,0xc4, + 0xff,0xe4,0xe5,0xe5,0xff,0x7c,0x82,0x85,0xff,0x8b,0x91,0x95,0xff,0x7b,0x81, + 0x85,0xff,0xd1,0xd3,0xd6,0xff,0xdc,0xdd,0xdd,0xff,0x97,0x97,0x98,0xff,0x9a, + 0x9a,0x9b,0xff,0xae,0xae,0xae,0xff,0xad,0xae,0xae,0xff,0xb0,0xb1,0xb1,0xff, + 0xa8,0xa9,0xa9,0xff,0x9c,0x9d,0x9d,0xff,0x9e,0xa0,0xa1,0xff,0xc2,0xc4,0xc5, + 0xff,0xf9,0xf9,0xf9,0x03,0x9f,0x9f,0xa0,0x63,0x9b,0x9b,0x9c,0xfc,0xb4,0xb5, + 0xb5,0xff,0xf3,0xf4,0xf5,0xff,0xe0,0xe4,0xe7,0xff,0x80,0x82,0x85,0xff,0x99, + 0x9b,0x9d,0xff,0xe1,0xe3,0xe3,0xff,0xcf,0xd0,0xd1,0xff,0xc1,0xc3,0xc4,0xff, + 0xc8,0xc7,0xc6,0xff,0xca,0xca,0xc8,0xff,0xce,0xcd,0xcc,0xff,0xc8,0xc7,0xc5, + 0xff,0xc1,0xc1,0xbf,0xff,0xbb,0xbb,0xb9,0xff,0xb6,0xb5,0xb3,0xff,0xb0,0xaf, + 0xad,0xff,0xac,0xab,0xa9,0xff,0xa6,0xa6,0xa3,0xff,0xa2,0xa1,0x9e,0xff,0x9e, + 0x9d,0x9b,0xff,0x9a,0x9a,0x97,0xff,0x8e,0x8d,0x8b,0xff,0x87,0x83,0x7b,0xff, + 0x90,0x8b,0x82,0xff,0x88,0x85,0x7d,0xff,0x87,0x86,0x81,0xff,0x8b,0x8b,0x8a, + 0xff,0x8c,0x8f,0x90,0xff,0x85,0x8a,0x8e,0xff,0x80,0x86,0x8d,0xff,0x7a,0x82, + 0x8d,0xff,0x76,0x7f,0x8d,0xff,0x70,0x7c,0x8c,0xff,0x6c,0x79,0x8e,0xff,0x67, + 0x77,0x90,0xff,0x5d,0x6c,0x86,0xff,0x5b,0x68,0x7c,0xff,0xb0,0xb3,0xb6,0xff, + 0xf2,0xf2,0xf2,0xff,0x7d,0x82,0x86,0xff,0x8b,0x90,0x95,0xff,0x7b,0x80,0x84, + 0xff,0xd0,0xd3,0xd5,0xff,0xdb,0xdc,0xdd,0xff,0x96,0x97,0x97,0xff,0x4c,0x98, + 0x99,0x99,0xff,0xac,0xad,0xad,0xff,0xad,0xad,0xad,0xff,0xaf,0xaf,0xb0,0xff, + 0xa6,0xa7,0xa7,0xff,0x9a,0x9b,0x9c,0xff,0x9d,0x9e,0x9f,0xff,0xbf,0xc3,0xc4, + 0xff,0xfb,0xfb,0xfb,0x02,0x9a,0x9a,0x9b,0x56,0x99,0x99,0x9a,0xf9,0xb1,0xb1, + 0xb1,0xff,0xf5,0xf5,0xf6,0xff,0xe3,0xe7,0xea,0xff,0x92,0x96,0x99,0xff,0x63, + 0x73,0x8d,0xff,0xaa,0xc9,0xf7,0xff,0xa8,0xc7,0xfc,0xff,0x9f,0xc1,0xfc,0xff, + 0xa2,0xc4,0xfc,0xff,0xab,0xc9,0xfc,0xff,0xad,0xca,0xfc,0xff,0xa9,0xc7,0xfd, + 0xff,0xa9,0xc8,0xfd,0xff,0x9f,0xbd,0xf1,0xff,0xb0,0xcb,0xfb,0xff,0xb2,0xcf, + 0xfd,0xff,0xaa,0xc9,0xfd,0xff,0xb6,0xd0,0xfe,0xff,0xb5,0xd0,0xfe,0xff,0xba, + 0xd4,0xfe,0xff,0xbe,0xd6,0xfe,0xff,0xb3,0xc9,0xeb,0xff,0xa7,0xb8,0xd4,0xff, + 0xd4,0xe5,0xfb,0xff,0xd4,0xe6,0xfa,0xff,0xce,0xe1,0xfb,0xff,0xd3,0xe3,0xfd, + 0xff,0xc9,0xdc,0xfd,0xff,0xc8,0xdc,0xfc,0xff,0xc8,0xd9,0xf5,0xff,0xcb,0xdb, + 0xf6,0xff,0xd0,0xe0,0xf9,0xff,0xd1,0xdf,0xf7,0xff,0xd2,0xdf,0xf6,0xff,0xd1, + 0xde,0xf5,0xff,0xcc,0xda,0xf3,0xff,0xb7,0xc1,0xcc,0xff,0xa0,0xa3,0xa4,0xff, + 0xfa,0xfb,0xfb,0xff,0x83,0x87,0x8b,0xff,0x8a,0x8f,0x94,0xff,0x7a,0x81,0x84, + 0xff,0xcf,0xd1,0xd3,0xff,0xdb,0xdc,0xdd,0xff,0x94,0x95,0x95,0xff,0x97,0x98, + 0x98,0xff,0xab,0xac,0xac,0xff,0xaa,0xac,0xac,0xff,0xad,0xae,0xaf,0xff,0xa4, + 0xa5,0xa6,0xff,0x99,0x9a,0x9a,0xff,0x9b,0x9c,0x9e,0xff,0xbe,0xc1,0xc2,0xff, + 0xfd,0xfd,0xfd,0x01,0x92,0x93,0x93,0x4a,0x98,0x98,0x98,0xf4,0xad,0xad,0xad, + 0xff,0xf4,0xf4,0xf5,0xff,0xe4,0xe9,0xeb,0xff,0xa7,0xab,0xae,0xff,0x67,0x6f, + 0x7c,0xff,0xdd,0xe6,0xf3,0xff,0xe2,0xec,0xfc,0xff,0xdd,0xe8,0xfc,0xff,0xe3, + 0xed,0xfc,0xff,0x82,0xe5,0xee,0xfc,0xff,0x07,0xdd,0xea,0xfc,0xff,0xd6,0xe4, + 0xfc,0xff,0xe0,0xe8,0xf5,0xff,0xdd,0xe7,0xfa,0xff,0xde,0xe9,0xfd,0xff,0xda, + 0xe7,0xfd,0xff,0xdc,0xe8,0xfd,0xff,0x82,0xdb,0xe8,0xfe,0xff,0x35,0xda,0xe7, + 0xfe,0xff,0xd2,0xdd,0xef,0xff,0xad,0xb9,0xcf,0xff,0xd8,0xe5,0xfd,0xff,0xb8, + 0xd0,0xf6,0xff,0xbf,0xd5,0xfa,0xff,0xdb,0xe7,0xfe,0xff,0xd2,0xe2,0xff,0xff, + 0xd3,0xe2,0xff,0xff,0xd4,0xe2,0xfa,0xff,0xd6,0xe3,0xfb,0xff,0xd8,0xe7,0xff, + 0xff,0xd6,0xe4,0xff,0xff,0xd8,0xe6,0xff,0xff,0xd5,0xe4,0xff,0xff,0xce,0xe0, + 0xff,0xff,0xc8,0xd1,0xdd,0xff,0x92,0x95,0x99,0xff,0xfa,0xfa,0xfb,0xff,0x8c, + 0x90,0x93,0xff,0x87,0x8d,0x91,0xff,0x7a,0x80,0x83,0xff,0xce,0xd1,0xd2,0xff, + 0xdb,0xdb,0xdc,0xff,0x93,0x93,0x94,0xff,0x96,0x96,0x96,0xff,0xaa,0xaa,0xab, + 0xff,0xaa,0xab,0xab,0xff,0xac,0xac,0xad,0xff,0xa2,0xa3,0xa4,0xff,0x97,0x98, + 0x99,0xff,0x99,0x9a,0x9b,0xff,0xbd,0xc0,0xc1,0xff,0xfe,0xfe,0xfe,0x00,0x8d, + 0x8e,0x8e,0x3f,0x98,0x98,0x98,0xec,0xa8,0xa9,0xa9,0xff,0xf1,0xf1,0xf2,0xff, + 0xe5,0xe8,0xeb,0xff,0xba,0xbf,0xc2,0xff,0x53,0x5c,0x6c,0xff,0xc7,0xd8,0xef, + 0xff,0xcf,0xe0,0xfc,0xff,0xc8,0xdc,0xfc,0xff,0xc7,0xdc,0xfc,0xff,0xc8,0xdb, + 0xfc,0xff,0xca,0xdd,0xfc,0xff,0xc2,0xd9,0xfc,0xff,0xb6,0xd1,0xfc,0xff,0xe4, + 0xed,0xfc,0xff,0xbe,0xd4,0xfb,0xff,0xc5,0xda,0xfd,0xff,0xc0,0xd7,0xfd,0xff, + 0x82,0xc2,0xd8,0xfd,0xff,0x1b,0xc0,0xd7,0xfe,0xff,0xbe,0xd6,0xfe,0xff,0xb7, + 0xce,0xf1,0xff,0x9d,0xae,0xca,0xff,0xc9,0xdc,0xfb,0xff,0xca,0xdb,0xf8,0xff, + 0xdd,0xe7,0xfa,0xff,0xc6,0xda,0xfc,0xff,0xcc,0xdd,0xff,0xff,0xcf,0xe0,0xff, + 0xff,0xd1,0xe1,0xfd,0xff,0xcd,0xdc,0xfa,0xff,0xcd,0xde,0xff,0xff,0xc6,0xda, + 0xff,0xff,0xce,0xdf,0xff,0xff,0xcf,0xe0,0xff,0xff,0xca,0xdd,0xff,0xff,0xc9, + 0xd6,0xeb,0xff,0x8b,0x90,0x99,0xff,0xf8,0xf8,0xf8,0xff,0x96,0x99,0x9c,0xff, + 0x86,0x8b,0x8f,0xff,0x79,0x7f,0x83,0xff,0xcd,0xcf,0xd1,0xff,0xda,0xdb,0xdb, + 0xff,0x92,0x92,0x92,0xff,0x94,0x95,0x95,0xff,0x82,0xa8,0xa9,0xa9,0xff,0x72, + 0xaa,0xab,0xab,0xff,0xa0,0xa1,0xa2,0xff,0x95,0x96,0x97,0xff,0x96,0x98,0x99, + 0xff,0xb9,0xbe,0xbe,0xff,0x00,0x00,0x00,0x00,0x93,0x93,0x94,0x33,0x9a,0x9a, + 0x9a,0xe0,0xa5,0xa5,0xa5,0xff,0xea,0xea,0xea,0xff,0xe5,0xe8,0xea,0xff,0xc7, + 0xcb,0xcf,0xff,0x4b,0x51,0x5a,0xff,0xce,0xda,0xea,0xff,0xd7,0xe4,0xfc,0xff, + 0xd7,0xe3,0xfc,0xff,0xd3,0xe1,0xfc,0xff,0xd1,0xe1,0xfc,0xff,0xd5,0xe3,0xfc, + 0xff,0xcd,0xde,0xfc,0xff,0xc4,0xd8,0xfb,0xff,0xec,0xf2,0xfb,0xff,0xdf,0xe8, + 0xfb,0xff,0xd7,0xe4,0xfc,0xff,0xdb,0xe7,0xfd,0xff,0xda,0xe6,0xfd,0xff,0xda, + 0xe7,0xfd,0xff,0xd6,0xe5,0xfe,0xff,0xd7,0xe6,0xfe,0xff,0xd1,0xde,0xf0,0xff, + 0xa6,0xb2,0xc7,0xff,0xe0,0xea,0xf9,0xff,0xd1,0xe0,0xfc,0xff,0xfe,0xfe,0xfe, + 0xff,0xf0,0xf4,0xfd,0xff,0xe9,0xf1,0xfd,0xff,0xea,0xf1,0xff,0xff,0xe5,0xee, + 0xff,0xff,0xdc,0xe5,0xf6,0xff,0xe3,0xee,0xff,0xff,0xe1,0xeb,0xff,0xff,0xe7, + 0xef,0xff,0xff,0xe6,0xef,0xff,0xff,0xe4,0xee,0xff,0xff,0xe1,0xec,0xfa,0xff, + 0x90,0x96,0x9f,0xff,0xf3,0xf3,0xf4,0xff,0x9e,0xa1,0xa3,0xff,0x83,0x89,0x8d, + 0xff,0x78,0x7e,0x81,0xff,0xcb,0xce,0xd0,0xff,0xd9,0xda,0xda,0xff,0x90,0x91, + 0x91,0xff,0x92,0x93,0x94,0xff,0xa7,0xa7,0xa8,0xff,0xa6,0xa7,0xa8,0xff,0xa8, + 0xa9,0xaa,0xff,0x9f,0x9f,0xa0,0xff,0x94,0x95,0x95,0xff,0x94,0x96,0x97,0xff, + 0xb7,0xbc,0xbc,0xff,0x00,0x00,0x00,0x00,0xa3,0xa3,0xa4,0x27,0x9a,0x9a,0x9a, + 0xd3,0xa0,0xa1,0xa1,0xff,0xde,0xde,0xde,0xff,0xe3,0xe5,0xe8,0xff,0xcb,0xcf, + 0xd3,0xff,0x44,0x48,0x4d,0xff,0xc7,0xd3,0xe4,0xff,0xd4,0xe2,0xfa,0xff,0xd3, + 0xe1,0xfb,0xff,0xcd,0xde,0xfb,0xff,0xca,0xdb,0xfb,0xff,0xd1,0xe1,0xfb,0xff, + 0xcb,0xdd,0xfb,0xff,0xcd,0xdd,0xfa,0xff,0xe4,0xec,0xf9,0xff,0xe7,0xee,0xfb, + 0xff,0xdd,0xe8,0xfb,0xff,0xd9,0xe6,0xfc,0xff,0xce,0xde,0xfc,0xff,0xd1,0xe0, + 0xfc,0xff,0xcb,0xdd,0xfc,0xff,0xcf,0xe0,0xfd,0xff,0xcc,0xdc,0xf6,0xff,0xa9, + 0xb5,0xca,0xff,0xdb,0xe5,0xf3,0xff,0xcf,0xdd,0xf7,0xff,0xdd,0xe8,0xfb,0xff, + 0xfb,0xfc,0xfe,0xff,0xe2,0xec,0xfb,0xff,0xdf,0xea,0xfc,0xff,0xdb,0xe8,0xff, + 0xff,0xd3,0xdf,0xf5,0xff,0xdf,0xeb,0xff,0xff,0xe0,0xeb,0xff,0xff,0xe4,0xee, + 0xff,0xff,0xe3,0xec,0xff,0xff,0xe0,0xec,0xff,0xff,0xdf,0xec,0xfd,0xff,0x91, + 0x97,0x9d,0xff,0xeb,0xeb,0xec,0xff,0xa9,0xab,0xad,0xff,0x81,0x86,0x8b,0xff, + 0x77,0x7c,0x80,0xff,0xca,0xcd,0xcf,0xff,0xd8,0xd8,0xd9,0xff,0x8e,0x8f,0x8f, + 0xff,0x90,0x92,0x92,0xff,0xa5,0xa6,0xa7,0xff,0xa4,0xa6,0xa6,0xff,0xa6,0xa7, + 0xa8,0xff,0x9d,0x9e,0x9f,0xff,0x82,0x92,0x93,0x94,0xff,0x43,0xb5,0xba,0xba, + 0xff,0x00,0x00,0x00,0x00,0xb9,0xba,0xb9,0x1c,0x94,0x94,0x94,0xc7,0x9b,0x9b, + 0x9b,0xff,0xd2,0xd2,0xd2,0xff,0xe6,0xe8,0xea,0xff,0xcd,0xd2,0xd5,0xff,0x3f, + 0x41,0x44,0xff,0xbd,0xca,0xe0,0xff,0xcb,0xdd,0xfa,0xff,0xcc,0xdd,0xfa,0xff, + 0xc7,0xda,0xfa,0xff,0xc4,0xd8,0xfa,0xff,0xcf,0xdf,0xfa,0xff,0xc8,0xdb,0xfa, + 0xff,0xd0,0xde,0xf7,0xff,0xf5,0xf7,0xfc,0xff,0xfa,0xfb,0xfc,0xff,0xdf,0xe8, + 0xf9,0xff,0xd3,0xe1,0xfa,0xff,0xc8,0xdb,0xfb,0xff,0xcc,0xdd,0xfb,0xff,0xc7, + 0xdb,0xfb,0xff,0xce,0xde,0xfc,0xff,0xce,0xdf,0xfa,0xff,0xb0,0xba,0xcd,0xff, + 0xd7,0xdf,0xed,0xff,0xdb,0xe5,0xf6,0xff,0xdd,0xe7,0xfa,0xff,0xf4,0xf7,0xfd, + 0xff,0xfd,0xfd,0xfe,0xff,0xf3,0xf7,0xfc,0xff,0xc3,0xd6,0xf7,0xff,0xbf,0xd2, + 0xf4,0xff,0xcd,0xde,0xff,0xff,0xd7,0xe5,0xfd,0xff,0xe4,0xed,0xff,0xff,0xdd, + 0xe9,0xff,0xff,0xdc,0xe9,0xff,0xff,0xe1,0xed,0xfe,0xff,0x93,0x97,0x9a,0xff, + 0xe0,0xe0,0xe0,0xff,0xb9,0xbb,0xbc,0xff,0x7e,0x83,0x87,0xff,0x76,0x7a,0x7e, + 0xff,0xc8,0xcb,0xcd,0xff,0xd6,0xd7,0xd8,0xff,0x8d,0x8d,0x8e,0xff,0x90,0x90, + 0x91,0xff,0xa2,0xa4,0xa5,0xff,0xa2,0xa3,0xa4,0xff,0xa4,0xa5,0xa6,0xff,0x9b, + 0x9d,0x9d,0xff,0x91,0x91,0x93,0xff,0x90,0x91,0x92,0xff,0xb3,0xb8,0xb8,0xff, + 0x00,0x00,0x00,0x00,0xcc,0xcc,0xcc,0x13,0x8a,0x8b,0x8b,0xbb,0x96,0x97,0x97, + 0xff,0xc9,0xc9,0xca,0xff,0xec,0xee,0xef,0xff,0xcf,0xd3,0xd7,0xff,0x3d,0x40, + 0x43,0xff,0xb0,0xc0,0xda,0xff,0xc4,0xd8,0xf9,0xff,0x82,0xc5,0xd8,0xfa,0xff, + 0x04,0xc3,0xd7,0xfa,0xff,0xc9,0xdb,0xf9,0xff,0xb9,0xd0,0xf6,0xff,0xf2,0xf5, + 0xfb,0xff,0x82,0xfc,0xfc,0xfc,0xff,0x0c,0xf2,0xf5,0xfb,0xff,0xcb,0xdc,0xf9, + 0xff,0xb7,0xcf,0xf9,0xff,0xce,0xdf,0xfb,0xff,0xca,0xdc,0xfb,0xff,0xcf,0xdf, + 0xfb,0xff,0xcf,0xe0,0xfc,0xff,0xb8,0xc1,0xd1,0xff,0xd2,0xdb,0xe9,0xff,0xdd, + 0xe6,0xf4,0xff,0xd2,0xe0,0xf6,0xff,0xe7,0xee,0xfb,0xff,0x83,0xfe,0xfe,0xfe, + 0xff,0x10,0xff,0xff,0xff,0xff,0xfe,0xff,0xff,0xff,0xd9,0xe6,0xfa,0xff,0xd6, + 0xe4,0xfc,0xff,0xca,0xdc,0xfd,0xff,0xdc,0xea,0xff,0xff,0xe4,0xef,0xfe,0xff, + 0x9b,0xa0,0xa6,0xff,0xd1,0xd2,0xd2,0xff,0xc7,0xc8,0xca,0xff,0x7a,0x7f,0x83, + 0xff,0x75,0x78,0x7c,0xff,0xc6,0xca,0xcb,0xff,0xd2,0xd5,0xd6,0xff,0x8b,0x8c, + 0x8c,0xff,0x8e,0x8f,0x90,0xff,0x82,0xa1,0xa2,0xa2,0xff,0x14,0xa2,0xa3,0xa4, + 0xff,0x9a,0x9a,0x9b,0xff,0x8f,0x90,0x91,0xff,0x8f,0x90,0x90,0xff,0xb2,0xb6, + 0xb6,0xff,0x00,0x00,0x00,0x00,0xd8,0xd8,0xd8,0x0e,0x82,0x82,0x82,0xaf,0x92, + 0x93,0x93,0xff,0xc1,0xc1,0xc1,0xff,0xf0,0xf2,0xf2,0xff,0xcf,0xd3,0xd7,0xff, + 0x46,0x4a,0x4e,0xff,0xaf,0xba,0xcb,0xff,0xc5,0xd4,0xf0,0xff,0xc6,0xd5,0xee, + 0xff,0xc4,0xd3,0xed,0xff,0xbf,0xd1,0xed,0xff,0xc3,0xd4,0xf2,0xff,0xf9,0xfa, + 0xfc,0xff,0x84,0xfc,0xfc,0xfc,0xff,0x0b,0xf8,0xf9,0xfc,0xff,0xd6,0xe4,0xfa, + 0xff,0xba,0xcc,0xed,0xff,0xbc,0xce,0xeb,0xff,0xc2,0xd1,0xec,0xff,0xc4,0xd4, + 0xf0,0xff,0x9f,0xae,0xc7,0xff,0xb7,0xc6,0xde,0xff,0xc3,0xd2,0xed,0xff,0xb6, + 0xcb,0xef,0xff,0xee,0xf3,0xfc,0xff,0x84,0xfe,0xfe,0xfe,0xff,0x82,0xff,0xff, + 0xff,0xff,0x0d,0xfa,0xfc,0xfe,0xff,0xe7,0xf0,0xfc,0xff,0xa1,0xba,0xe8,0xff, + 0xc3,0xd3,0xee,0xff,0x95,0xa1,0xb5,0xff,0xbe,0xbf,0xc1,0xff,0xce,0xcf,0xd0, + 0xff,0x76,0x7a,0x7d,0xff,0x73,0x76,0x7a,0xff,0xc4,0xc7,0xc9,0xff,0xce,0xd1, + 0xd4,0xff,0x8a,0x8b,0x8b,0xff,0x8c,0x8d,0x8e,0xff,0x82,0xa0,0xa0,0xa1,0xff, + 0x13,0xa0,0xa2,0xa2,0xff,0x98,0x99,0x9a,0xff,0x8e,0x8f,0x8f,0xff,0x8c,0x8d, + 0x8e,0xff,0xb0,0xb5,0xb4,0xff,0x00,0x00,0x00,0x00,0xe4,0xe4,0xe4,0x09,0x7b, + 0x7b,0x7b,0xa1,0x8f,0x90,0x90,0xff,0xb9,0xb9,0xb9,0xff,0xf2,0xf3,0xf4,0xff, + 0xce,0xd3,0xd6,0xff,0x57,0x5b,0x60,0xff,0xa2,0xad,0xbf,0xff,0xc6,0xd7,0xf3, + 0xff,0xc9,0xd8,0xf2,0xff,0xcd,0xda,0xf1,0xff,0xbf,0xd2,0xf1,0xff,0xe3,0xeb, + 0xf7,0xff,0x86,0xfc,0xfc,0xfc,0xff,0x0a,0xf8,0xf9,0xfc,0xff,0xd7,0xe2,0xf6, + 0xff,0xd6,0xe2,0xf5,0xff,0xdb,0xe5,0xf7,0xff,0xdb,0xe6,0xf8,0xff,0xb5,0xbe, + 0xcd,0xff,0xc5,0xd0,0xe3,0xff,0xd8,0xe4,0xf9,0xff,0xc8,0xd9,0xf7,0xff,0xf2, + 0xf6,0xfc,0xff,0x85,0xfe,0xfe,0xfe,0xff,0x82,0xff,0xff,0xff,0xff,0x0c,0xfe, + 0xfe,0xff,0xff,0xe6,0xee,0xfc,0xff,0xde,0xeb,0xfe,0xff,0xb1,0xbf,0xd4,0xff, + 0xac,0xaf,0xb1,0xff,0xd4,0xd5,0xd6,0xff,0x73,0x77,0x7a,0xff,0x71,0x75,0x77, + 0xff,0xc3,0xc5,0xc7,0xff,0xcb,0xcd,0xd0,0xff,0x88,0x89,0x89,0xff,0x8b,0x8b, + 0x8c,0xff,0x82,0x9e,0x9f,0x9f,0xff,0x14,0x9f,0xa0,0xa0,0xff,0x97,0x97,0x98, + 0xff,0x8c,0x8d,0x8d,0xff,0x8b,0x8c,0x8c,0xff,0xae,0xb4,0xb3,0xff,0x00,0x00, + 0x00,0x00,0xe9,0xe9,0xe9,0x06,0x7a,0x7b,0x7b,0x92,0x8e,0x8e,0x8e,0xff,0xb1, + 0xb2,0xb2,0xff,0xf1,0xf2,0xf2,0xff,0xcd,0xd3,0xd6,0xff,0x68,0x6d,0x71,0xff, + 0x90,0x9f,0xb2,0xff,0xd2,0xe2,0xfb,0xff,0xd8,0xe4,0xfb,0xff,0xc3,0xd6,0xf7, + 0xff,0xe7,0xee,0xf9,0xff,0xf8,0xf9,0xfb,0xff,0xfb,0xfb,0xfb,0xff,0x85,0xfc, + 0xfc,0xfc,0xff,0x0a,0xfa,0xfb,0xfc,0xff,0xf6,0xf8,0xfc,0xff,0xe3,0xeb,0xfb, + 0xff,0xb3,0xcd,0xfa,0xff,0xc7,0xdc,0xfd,0xff,0xad,0xbb,0xd2,0xff,0xa4,0xba, + 0xdf,0xff,0xbb,0xd3,0xfd,0xff,0xb7,0xce,0xf9,0xff,0xf0,0xf4,0xfc,0xff,0x86, + 0xfe,0xfe,0xfe,0xff,0x82,0xff,0xff,0xff,0xff,0x0b,0xf2,0xf6,0xfe,0xff,0xc1, + 0xd6,0xfb,0xff,0xb7,0xc5,0xda,0xff,0x9b,0x9e,0xa0,0xff,0xdf,0xe0,0xe0,0xff, + 0x74,0x77,0x7a,0xff,0x6f,0x73,0x75,0xff,0xc1,0xc3,0xc5,0xff,0xc6,0xc9,0xcc, + 0xff,0x87,0x87,0x88,0xff,0x89,0x8a,0x8a,0xff,0x82,0x9c,0x9d,0x9d,0xff,0x46, + 0x9d,0x9e,0x9e,0xff,0x95,0x96,0x96,0xff,0x8b,0x8b,0x8c,0xff,0x88,0x8a,0x8a, + 0xff,0xac,0xb3,0xb1,0xff,0x00,0x00,0x00,0x00,0xed,0xed,0xed,0x05,0x83,0x83, + 0x83,0x7b,0x8e,0x8f,0x8f,0xff,0xa8,0xa8,0xa8,0xff,0xec,0xed,0xee,0xff,0xcc, + 0xd0,0xd4,0xff,0x77,0x7a,0x7f,0xff,0x8c,0x94,0x9f,0xff,0xd7,0xe6,0xfc,0xff, + 0xd8,0xe5,0xfb,0xff,0xc7,0xd9,0xf9,0xff,0xcd,0xdc,0xf7,0xff,0xde,0xe9,0xfa, + 0xff,0xea,0xf0,0xfa,0xff,0xc5,0xd6,0xf5,0xff,0xba,0xd0,0xf7,0xff,0xe3,0xec, + 0xf9,0xff,0xbd,0xd2,0xf7,0xff,0xc0,0xd3,0xf4,0xff,0xe3,0xeb,0xfa,0xff,0xe5, + 0xed,0xfb,0xff,0xca,0xdb,0xf8,0xff,0xd2,0xe1,0xf9,0xff,0xdc,0xe8,0xfb,0xff, + 0xcb,0xd1,0xda,0xff,0xb4,0xc2,0xd9,0xff,0xd8,0xe7,0xfd,0xff,0xc7,0xda,0xf9, + 0xff,0xed,0xf2,0xfb,0xff,0xf6,0xf9,0xfd,0xff,0xce,0xde,0xfb,0xff,0xc0,0xd4, + 0xf8,0xff,0xbf,0xd2,0xf6,0xff,0xbe,0xd1,0xf3,0xff,0xc2,0xd5,0xf8,0xff,0xda, + 0xe7,0xfd,0xff,0xd2,0xe1,0xfb,0xff,0xc8,0xdb,0xfe,0xff,0xc1,0xd7,0xfe,0xff, + 0xc6,0xd4,0xde,0xff,0x91,0x93,0x94,0xff,0xe9,0xea,0xeb,0xff,0x78,0x7a,0x7d, + 0xff,0x6b,0x6f,0x73,0xff,0xba,0xbf,0xc1,0xff,0xc2,0xc6,0xc9,0xff,0x86,0x86, + 0x87,0xff,0x88,0x89,0x89,0xff,0x9b,0x9b,0x9b,0xff,0x9b,0x9c,0x9c,0xff,0x9c, + 0x9d,0x9d,0xff,0x93,0x94,0x94,0xff,0x89,0x8a,0x8a,0xff,0x87,0x89,0x88,0xff, + 0xac,0xb2,0xb0,0xff,0x00,0x00,0x00,0x00,0xf1,0xf1,0xf1,0x04,0x90,0x90,0x91, + 0x67,0x90,0x90,0x90,0xff,0xa0,0xa0,0xa0,0xff,0xe7,0xe8,0xe8,0xff,0xcc,0xd0, + 0xd4,0xff,0x7e,0x82,0x85,0xff,0x7e,0x86,0x90,0xff,0x82,0xe0,0xeb,0xfd,0xff, + 0x26,0xdf,0xe9,0xfc,0xff,0xd8,0xe4,0xfa,0xff,0xd1,0xdf,0xfc,0xff,0xd8,0xe4, + 0xf9,0xff,0xd3,0xe2,0xfb,0xff,0xd7,0xe4,0xfa,0xff,0xd6,0xe1,0xf4,0xff,0xe3, + 0xec,0xfc,0xff,0xe1,0xeb,0xfc,0xff,0xde,0xea,0xfd,0xff,0xdd,0xe8,0xfd,0xff, + 0xdd,0xe8,0xfc,0xff,0xc9,0xdb,0xfa,0xff,0xc6,0xda,0xfa,0xff,0xd5,0xdb,0xe6, + 0xff,0xb5,0xc0,0xd4,0xff,0xe0,0xeb,0xfd,0xff,0xd6,0xe3,0xfa,0xff,0xd7,0xe4, + 0xfb,0xff,0xd4,0xe3,0xfc,0xff,0xd6,0xe3,0xfd,0xff,0xdb,0xe7,0xfe,0xff,0xdb, + 0xe7,0xfb,0xff,0xda,0xe5,0xf7,0xff,0xe0,0xeb,0xfe,0xff,0xe4,0xee,0xfe,0xff, + 0xe7,0xf0,0xfe,0xff,0xdf,0xea,0xff,0xff,0xdd,0xea,0xff,0xff,0xd9,0xde,0xe6, + 0xff,0x93,0x95,0x98,0xff,0xef,0xf0,0xf1,0xff,0x7f,0x82,0x84,0xff,0x67,0x6b, + 0x6d,0xff,0xb5,0xb9,0xbd,0xff,0xbf,0xc2,0xc4,0xff,0x85,0x85,0x85,0xff,0x87, + 0x88,0x88,0xff,0x82,0x99,0x9a,0x9a,0xff,0x0e,0x99,0x9b,0x9b,0xff,0x92,0x93, + 0x92,0xff,0x87,0x89,0x88,0xff,0x86,0x87,0x87,0xff,0xaa,0xb0,0xad,0xff,0x00, + 0x00,0x00,0x00,0xf4,0xf4,0xf4,0x03,0x9c,0x9c,0x9c,0x59,0x8f,0x8f,0x8f,0xff, + 0x9d,0x9e,0x9e,0xff,0xe6,0xe6,0xe7,0xff,0xd3,0xd6,0xd9,0xff,0x85,0x89,0x8c, + 0xff,0x75,0x7a,0x81,0xff,0x82,0xe7,0xef,0xfc,0xff,0x7f,0xeb,0xf2,0xfc,0xff, + 0xe4,0xed,0xfc,0xff,0xdb,0xe8,0xfc,0xff,0xdf,0xe9,0xf9,0xff,0xe0,0xeb,0xfc, + 0xff,0xe5,0xee,0xfc,0xff,0xe0,0xe9,0xfa,0xff,0xe8,0xf0,0xfd,0xff,0xe9,0xf1, + 0xfd,0xff,0xdd,0xea,0xfd,0xff,0xdd,0xe9,0xfc,0xff,0xde,0xea,0xfa,0xff,0xdd, + 0xe8,0xf9,0xff,0xe0,0xea,0xf8,0xff,0xd4,0xdd,0xea,0xff,0xb1,0xbb,0xcd,0xff, + 0xe0,0xe7,0xf4,0xff,0xdf,0xe5,0xef,0xff,0xd9,0xe3,0xef,0xff,0xd9,0xe1,0xee, + 0xff,0xd6,0xe1,0xed,0xff,0xd4,0xdf,0xec,0xff,0xd3,0xde,0xeb,0xff,0xd0,0xdb, + 0xea,0xff,0xc6,0xd2,0xe7,0xff,0xbe,0xcb,0xdf,0xff,0xbe,0xc6,0xd6,0xff,0xaf, + 0xb9,0xcc,0xff,0xa4,0xaf,0xc1,0xff,0x98,0xa0,0xa9,0xff,0x80,0x83,0x86,0xff, + 0xef,0xf0,0xf0,0xff,0x88,0x8a,0x8c,0xff,0x61,0x65,0x68,0xff,0xaf,0xb4,0xb8, + 0xff,0xbb,0xbf,0xc1,0xff,0x84,0x85,0x84,0xff,0x85,0x86,0x87,0xff,0x98,0x98, + 0x98,0xff,0x97,0x99,0x98,0xff,0x98,0x9a,0x99,0xff,0x90,0x91,0x90,0xff,0x87, + 0x88,0x87,0xff,0x84,0x86,0x85,0xff,0xa8,0xaf,0xac,0xff,0x00,0x00,0x00,0x00, + 0xf7,0xf7,0xf7,0x02,0xa6,0xa6,0xa6,0x4a,0x8e,0x8e,0x8e,0xff,0x9d,0x9d,0x9d, + 0xff,0xe5,0xe6,0xe6,0xff,0xd9,0xdb,0xde,0xff,0x8d,0x90,0x92,0xff,0x5f,0x63, + 0x68,0xff,0xd0,0xd4,0xdc,0xff,0xc8,0xcd,0xd4,0xff,0xba,0xc3,0xcc,0xff,0xb3, + 0xbc,0xc3,0xff,0xaa,0xb4,0xba,0xff,0xaa,0xae,0xb0,0xff,0xa0,0xa5,0xa7,0xff, + 0x98,0x9d,0x9e,0xff,0x8c,0x92,0x96,0xff,0x86,0x8b,0x8e,0xff,0x7f,0x84,0x88, + 0xff,0x6e,0x75,0x81,0xff,0x67,0x6d,0x76,0xff,0x5e,0x65,0x6f,0xff,0x58,0x5d, + 0x67,0xff,0x51,0x56,0x5e,0xff,0x46,0x4a,0x51,0xff,0x35,0x39,0x3d,0xff,0x40, + 0x42,0x42,0xff,0x35,0x36,0x38,0xff,0x2a,0x2c,0x2e,0xff,0x24,0x24,0x24,0xff, + 0x1c,0x1c,0x1b,0xff,0x14,0x15,0x13,0xff,0x11,0x11,0x0f,0xff,0x0f,0x0e,0x0c, + 0xff,0x10,0x0f,0x0e,0xff,0x19,0x19,0x19,0xff,0x23,0x23,0x23,0xff,0x2e,0x2e, + 0x2e,0xff,0x43,0x44,0x44,0xff,0x55,0x56,0x56,0xff,0x93,0x94,0x95,0xff,0xed, + 0xef,0xf0,0xff,0x8f,0x91,0x93,0xff,0x5c,0x60,0x63,0xff,0xaa,0xaf,0xb1,0xff, + 0xb7,0xbb,0xbc,0xff,0x83,0x83,0x83,0xff,0x85,0x86,0x85,0xff,0x95,0x97,0x96, + 0xff,0x96,0x97,0x96,0xff,0x97,0x98,0x97,0xff,0x8e,0x90,0x8f,0xff,0x86,0x87, + 0x86,0xff,0x83,0x85,0x83,0xff,0xa7,0xae,0xa9,0xff,0x00,0x00,0x00,0x00,0xf9, + 0xf9,0xf9,0x01,0xae,0xae,0xae,0x3b,0x8e,0x8e,0x8e,0xfa,0x9f,0x9f,0x9f,0xff, + 0xe4,0xe4,0xe4,0xff,0xde,0xe0,0xe3,0xff,0x9c,0x9f,0xa3,0xff,0x1f,0x20,0x21, + 0xff,0x15,0x16,0x17,0xff,0x19,0x1a,0x1b,0xff,0x21,0x22,0x24,0xff,0x27,0x29, + 0x2a,0xff,0x2f,0x31,0x32,0xff,0x35,0x36,0x37,0xff,0x3a,0x3b,0x3c,0xff,0x3f, + 0x40,0x41,0xff,0x43,0x45,0x45,0xff,0x48,0x4a,0x4a,0xff,0x4d,0x4e,0x4e,0xff, + 0x53,0x54,0x54,0xff,0x5b,0x5c,0x5b,0xff,0x64,0x64,0x64,0xff,0x75,0x76,0x75, + 0xff,0x85,0x87,0x85,0xff,0x96,0x98,0x96,0xff,0x3b,0xa7,0xaa,0xa7,0xff,0xb6, + 0xb8,0xb6,0xff,0xbf,0xc0,0xbf,0xff,0xc8,0xc9,0xc8,0xff,0xd2,0xd3,0xd2,0xff, + 0xda,0xdb,0xdb,0xff,0xe1,0xe1,0xe1,0xff,0xe3,0xe4,0xe4,0xff,0xe3,0xe4,0xe5, + 0xff,0xe3,0xe3,0xe4,0xff,0xe4,0xe5,0xe5,0xff,0xe5,0xe6,0xe6,0xff,0xe7,0xe8, + 0xe8,0xff,0xea,0xeb,0xeb,0xff,0xeb,0xec,0xed,0xff,0xed,0xee,0xef,0xff,0xef, + 0xf0,0xf1,0xff,0x9b,0x9c,0x9f,0xff,0x59,0x5b,0x5c,0xff,0xa3,0xa9,0xab,0xff, + 0xaf,0xb4,0xb5,0xff,0x86,0x89,0x89,0xff,0x89,0x8b,0x8b,0xff,0x95,0x99,0x97, + 0xff,0x96,0x99,0x98,0xff,0x98,0x9b,0x99,0xff,0x94,0x98,0x95,0xff,0x8f,0x93, + 0x8f,0xff,0x8e,0x95,0x8e,0xff,0xa4,0xae,0xa6,0xfd,0x00,0x00,0x00,0x00,0xfb, + 0xfb,0xfb,0x01,0xb0,0xb0,0xb0,0x2a,0x8f,0x8f,0x8f,0xf1,0xa1,0xa1,0xa1,0xff, + 0xe0,0xe0,0xe0,0xff,0xe3,0xe5,0xe7,0xff,0xbf,0xc2,0xc6,0xff,0x9d,0xa1,0xa3, + 0xff,0x9c,0x9f,0xa2,0xff,0xa6,0xa9,0xac,0xff,0xb1,0xb5,0xb8,0xff,0xba,0xbe, + 0xc1,0xff,0xc3,0xc7,0xca,0xff,0xc9,0xcd,0xd0,0xff,0xce,0xd3,0xd6,0xff,0xd4, + 0xd8,0xdb,0xff,0xd9,0xde,0xe0,0xff,0xde,0xe3,0xe5,0xff,0xe4,0xe7,0xe9,0xff, + 0xe8,0xec,0xed,0xff,0xed,0xee,0xf0,0xff,0xee,0xf0,0xf1,0xff,0xf0,0xf1,0xf2, + 0xff,0xf1,0xf3,0xf3,0xff,0xed,0xf0,0xea,0xff,0xdf,0xf0,0xbe,0xff,0xf5,0xf6, + 0xe6,0xff,0xf6,0xf7,0xf7,0xff,0x82,0xf7,0xf8,0xf8,0xff,0x05,0xf7,0xf8,0xf9, + 0xff,0xf7,0xf8,0xf8,0xff,0xf6,0xf7,0xf7,0xff,0xf5,0xf6,0xf7,0xff,0xf4,0xf5, + 0xf6,0xff,0x82,0xf3,0xf4,0xf5,0xff,0x82,0xf2,0xf3,0xf4,0xff,0x2e,0xf1,0xf2, + 0xf3,0xff,0xf0,0xf1,0xf2,0xff,0xee,0xf0,0xf1,0xff,0xaa,0xab,0xac,0xff,0x56, + 0x58,0x59,0xff,0x9b,0xa0,0xa2,0xff,0xbe,0xc4,0xc6,0xff,0xb8,0xbe,0xbf,0xff, + 0xb6,0xbd,0xbd,0xff,0xb4,0xbb,0xba,0xff,0xb1,0xb9,0xb6,0xff,0xad,0xb6,0xb2, + 0xff,0xa9,0xb3,0xad,0xff,0xa8,0xb7,0xa8,0xff,0xac,0xc8,0x99,0xff,0xa3,0xb9, + 0x9a,0xf7,0x00,0x00,0x00,0x00,0xfd,0xfd,0xfd,0x00,0xad,0xad,0xad,0x20,0x90, + 0x90,0x90,0xe4,0xa2,0xa2,0xa2,0xff,0xda,0xda,0xda,0xff,0xe6,0xe8,0xea,0xff, + 0xc7,0xcb,0xce,0xff,0xca,0xce,0xd2,0xff,0xcc,0xd0,0xd4,0xff,0xcf,0xd3,0xd6, + 0xff,0xd2,0xd6,0xda,0xff,0xd5,0xd8,0xdc,0xff,0xd7,0xdb,0xde,0xff,0xd9,0xdd, + 0xe0,0xff,0xda,0xde,0xe2,0xff,0xdc,0xe0,0xe3,0xff,0xde,0xe2,0xe5,0xff,0xe0, + 0xe4,0xe7,0xff,0xe2,0xe7,0xea,0xff,0xe5,0xeb,0xec,0xff,0xea,0xed,0xef,0xff, + 0xed,0xef,0xf0,0xff,0xef,0xf1,0xf1,0xff,0xf0,0xf2,0xf3,0xff,0xe4,0xe9,0xe1, + 0xff,0xbe,0xec,0xb0,0xff,0xf5,0xf6,0xd8,0xff,0xf6,0xf7,0xf7,0xff,0xf7,0xf7, + 0xf8,0xff,0x83,0xf7,0xf8,0xf8,0xff,0x17,0xf6,0xf6,0xf7,0xff,0xf2,0xf3,0xf3, + 0xff,0xed,0xee,0xef,0xff,0xe7,0xe8,0xe9,0xff,0xdf,0xe0,0xe1,0xff,0xd5,0xd6, + 0xd7,0xff,0xcb,0xcc,0xcd,0xff,0xc1,0xc2,0xc3,0xff,0xb5,0xb7,0xb8,0xff,0xa9, + 0xaa,0xac,0xff,0x76,0x78,0x7a,0xff,0x54,0x57,0x58,0xff,0x96,0x9a,0x9c,0xff, + 0xbb,0xc1,0xc3,0xff,0xb7,0xbd,0xbd,0xff,0xb3,0xba,0xba,0xff,0xb0,0xb7,0xb5, + 0xff,0xaa,0xb2,0xb0,0xff,0xa6,0xb0,0xab,0xff,0xa3,0xad,0xa5,0xff,0xa3,0xb4, + 0xa3,0xff,0xb5,0xe2,0x66,0xff,0xa8,0xc7,0x85,0xf6,0x82,0x00,0x00,0x00,0x00, + 0x0c,0xb0,0xb0,0xb0,0x19,0x97,0x97,0x97,0xd2,0xa2,0xa2,0xa2,0xff,0xcc,0xcd, + 0xcd,0xff,0xe8,0xea,0xeb,0xff,0xc9,0xcd,0xd1,0xff,0xca,0xce,0xd1,0xff,0xcc, + 0xd0,0xd4,0xff,0xcf,0xd4,0xd7,0xff,0xd2,0xd6,0xd9,0xff,0xd4,0xd8,0xdc,0xff, + 0xd6,0xda,0xdd,0xff,0x82,0xd7,0xdb,0xde,0xff,0x82,0xd8,0xdc,0xdf,0xff,0x26, + 0xd7,0xdb,0xdd,0xff,0xd6,0xda,0xdc,0xff,0xd5,0xd9,0xda,0xff,0xd3,0xd7,0xd7, + 0xff,0xcf,0xd3,0xd3,0xff,0xc7,0xca,0xc8,0xff,0xbc,0xc0,0xbd,0xff,0xbb,0xc0, + 0xbc,0xff,0xb7,0xbd,0xb6,0xff,0xb0,0xb6,0xaf,0xff,0xa6,0xac,0xa6,0xff,0x9a, + 0xa0,0x9b,0xff,0x8d,0x93,0x8e,0xff,0x84,0x8a,0x86,0xff,0x7a,0x80,0x7d,0xff, + 0x76,0x7b,0x79,0xff,0x71,0x75,0x74,0xff,0x6a,0x6d,0x6f,0xff,0x66,0x69,0x6b, + 0xff,0x62,0x66,0x67,0xff,0x5d,0x61,0x63,0xff,0x5d,0x61,0x64,0xff,0x59,0x5d, + 0x61,0xff,0x56,0x59,0x5d,0xff,0x58,0x5b,0x5d,0xff,0x5d,0x60,0x62,0xff,0x5c, + 0x5f,0x61,0xff,0x90,0x94,0x96,0xff,0xb4,0xba,0xbb,0xff,0xaf,0xb5,0xb5,0xff, + 0xac,0xb2,0xb2,0xff,0xa6,0xad,0xab,0xff,0xb6,0xbf,0xbc,0xff,0xab,0xb4,0xaf, + 0xff,0x9c,0xa5,0x9e,0xff,0x99,0xa4,0x98,0xff,0x97,0xa8,0x98,0xff,0x93,0xa2, + 0x92,0xf6,0x82,0x00,0x00,0x00,0x00,0x36,0xbc,0xbc,0xbc,0x13,0x95,0x95,0x95, + 0xb9,0x90,0x90,0x90,0xfb,0xa6,0xa6,0xa6,0xf8,0xc2,0xc3,0xc4,0xf7,0xb0,0xb3, + 0xb5,0xf4,0xae,0xb1,0xb3,0xef,0xad,0xb0,0xb3,0xea,0xad,0xaf,0xb2,0xe5,0xa7, + 0xaa,0xac,0xe0,0xa0,0xa2,0xa4,0xd7,0x99,0x9a,0x9b,0xd0,0x8b,0x8c,0x8d,0xc7, + 0x85,0x87,0x87,0xc0,0x82,0x83,0x84,0xb6,0x87,0x89,0x89,0xa9,0x81,0x84,0x83, + 0xdd,0x79,0x7c,0x79,0xff,0x5f,0x61,0x5f,0xff,0x8b,0x8f,0x8b,0xff,0xbd,0xc2, + 0xbe,0xff,0x72,0x7a,0x74,0xff,0x7d,0x89,0x81,0xff,0x80,0x8d,0x83,0xff,0x81, + 0x8f,0x84,0xff,0x82,0x8f,0x85,0xff,0x82,0x8f,0x87,0xff,0x81,0x8d,0x86,0xff, + 0x7f,0x8b,0x85,0xff,0x7e,0x87,0x85,0xff,0x7c,0x84,0x82,0xff,0x7c,0x82,0x81, + 0xff,0x7a,0x80,0x80,0xff,0x78,0x7d,0x7f,0xff,0x77,0x7b,0x7d,0xff,0x75,0x7a, + 0x7c,0xff,0x71,0x76,0x7a,0xff,0x6f,0x73,0x77,0xff,0x6d,0x70,0x73,0xff,0x6a, + 0x6d,0x70,0xff,0x67,0x6a,0x6d,0xff,0x64,0x67,0x69,0xff,0x58,0x5c,0x5e,0xff, + 0x8a,0x8f,0x90,0xff,0xad,0xb3,0xb4,0xff,0xa8,0xae,0xaf,0xff,0xa5,0xab,0xab, + 0xff,0xa4,0xaa,0xa8,0xff,0x7c,0x83,0x80,0xff,0x8c,0x95,0x90,0xff,0x96,0x9e, + 0x98,0xff,0x90,0x9a,0x92,0xff,0x8c,0x97,0x8d,0xff,0x89,0x93,0x8a,0xf6,0x82, + 0x00,0x00,0x00,0x00,0x36,0xe0,0xe0,0xe0,0x0a,0xa1,0xa1,0xa1,0x5a,0x88,0x88, + 0x88,0x92,0x87,0x87,0x87,0x8c,0x87,0x87,0x87,0x86,0x82,0x82,0x82,0x7f,0x86, + 0x86,0x86,0x77,0x8a,0x8a,0x8a,0x6e,0x93,0x93,0x93,0x64,0x9b,0x9b,0x9b,0x59, + 0xa7,0xa7,0xa7,0x51,0xac,0xac,0xac,0x4f,0xac,0xac,0xac,0x5b,0xa0,0xa0,0xa0, + 0x78,0x98,0x99,0x99,0xa3,0xa4,0xa5,0xa5,0xc1,0x9d,0xa0,0x9e,0xfa,0x93,0x95, + 0x93,0xff,0x7f,0x82,0x7f,0xff,0x9a,0x9d,0x9a,0xff,0xb8,0xbc,0xb8,0xff,0x98, + 0x9e,0x98,0xff,0x98,0x9f,0x98,0xff,0x8a,0x92,0x8b,0xff,0x7f,0x88,0x81,0xff, + 0x83,0x8d,0x86,0xff,0x83,0x8e,0x88,0xff,0x81,0x8c,0x86,0xff,0x80,0x8a,0x85, + 0xff,0x7f,0x86,0x85,0xff,0x7c,0x84,0x83,0xff,0x7b,0x81,0x80,0xff,0x79,0x7e, + 0x7e,0xff,0x76,0x7b,0x7d,0xff,0x72,0x79,0x7a,0xff,0x70,0x75,0x78,0xff,0x6d, + 0x71,0x75,0xff,0x6c,0x6f,0x72,0xff,0x69,0x6c,0x6e,0xff,0x67,0x6a,0x6c,0xff, + 0x64,0x67,0x69,0xff,0x61,0x64,0x66,0xff,0x56,0x58,0x5b,0xff,0x85,0x8a,0x8b, + 0xff,0xa6,0xac,0xad,0xff,0xa2,0xa7,0xa7,0xff,0x9f,0xa4,0xa4,0xff,0x9b,0xa2, + 0xa0,0xff,0x96,0x9d,0x9b,0xff,0x93,0x9a,0x97,0xff,0x8e,0x96,0x92,0xff,0x89, + 0x91,0x8b,0xff,0x85,0x8e,0x87,0xff,0x83,0x8c,0x84,0xf6,0x82,0x00,0x00,0x00, + 0x00,0x13,0xf2,0xf2,0xf2,0x02,0xd7,0xd7,0xd7,0x19,0xc4,0xc4,0xc4,0x2e,0xc6, + 0xc6,0xc6,0x2c,0xc8,0xc8,0xc8,0x29,0xcb,0xcb,0xcb,0x25,0xd0,0xd0,0xd0,0x1f, + 0xd3,0xd3,0xd3,0x17,0xe0,0xe0,0xe0,0x13,0xb1,0xb1,0xb2,0x42,0xa6,0xa7,0xa7, + 0x90,0xa5,0xa5,0xa6,0xc7,0xa1,0xa2,0xa3,0xfc,0xa7,0xa8,0xa9,0xff,0xa8,0xa9, + 0xaa,0xff,0xa6,0xa8,0xa7,0xff,0xa6,0xa7,0xa7,0xff,0xa7,0xaa,0xa8,0xff,0xaa, + 0xac,0xaa,0xff,0x82,0xaa,0xae,0xaa,0xff,0x21,0xae,0xb1,0xad,0xff,0xaf,0xb3, + 0xae,0xff,0xb1,0xb5,0xaf,0xff,0xae,0xb2,0xac,0xff,0xa5,0xaa,0xa4,0xff,0x96, + 0x9b,0x96,0xff,0x8a,0x90,0x8c,0xff,0x7e,0x85,0x82,0xff,0x7a,0x81,0x80,0xff, + 0x7d,0x84,0x84,0xff,0x7d,0x83,0x83,0xff,0x79,0x7f,0x80,0xff,0x73,0x7b,0x7d, + 0xff,0x71,0x75,0x79,0xff,0x6f,0x71,0x75,0xff,0x6c,0x6f,0x72,0xff,0x69,0x6c, + 0x6f,0xff,0x67,0x6a,0x6c,0xff,0x64,0x66,0x69,0xff,0x61,0x64,0x66,0xff,0x5e, + 0x62,0x64,0xff,0x53,0x55,0x58,0xff,0x81,0x85,0x86,0xff,0xa0,0xa4,0xa6,0xff, + 0x9b,0xa0,0xa1,0xff,0x98,0x9d,0x9d,0xff,0x94,0x9a,0x99,0xff,0x91,0x97,0x96, + 0xff,0x8d,0x95,0x91,0xff,0x8a,0x91,0x8e,0xff,0x85,0x8c,0x88,0xff,0x81,0x89, + 0x83,0xff,0x81,0x88,0x82,0xfa,0x82,0x00,0x00,0x00,0x00,0x17,0xfa,0xfa,0xfa, + 0x00,0xf2,0xf2,0xf2,0x01,0xea,0xea,0xea,0x02,0xeb,0xeb,0xeb,0x02,0xee,0xee, + 0xee,0x01,0xf1,0xf1,0xf1,0x01,0xad,0xad,0xad,0x0b,0xa1,0xa1,0xa2,0x53,0xa2, + 0xa2,0xa2,0xc1,0xaa,0xab,0xac,0xf3,0xac,0xac,0xad,0xfe,0xaf,0xaf,0xb0,0xff, + 0xb0,0xb2,0xb1,0xff,0xb0,0xb0,0xb0,0xff,0xae,0xae,0xaf,0xff,0xac,0xad,0xad, + 0xff,0xaa,0xab,0xab,0xff,0xaa,0xac,0xaa,0xff,0xab,0xae,0xab,0xff,0xaf,0xb0, + 0xae,0xff,0xb1,0xb4,0xb1,0xff,0xb4,0xb7,0xb4,0xff,0xb7,0xba,0xb7,0xff,0x82, + 0xb9,0xbc,0xb8,0xff,0x1d,0xb6,0xb9,0xb5,0xff,0xb1,0xb4,0xb0,0xff,0xaa,0xad, + 0xaa,0xff,0xa0,0xa3,0xa0,0xff,0x83,0x86,0x83,0xfe,0x5e,0x60,0x5e,0xd8,0x5d, + 0x5f,0x5f,0xbd,0x5c,0x5f,0x5f,0xc6,0x62,0x64,0x66,0xd3,0x61,0x62,0x63,0xdd, + 0x5e,0x60,0x61,0xe5,0x5d,0x5f,0x60,0xec,0x5a,0x5c,0x5e,0xf0,0x58,0x59,0x5b, + 0xf4,0x54,0x57,0x59,0xfa,0x52,0x54,0x57,0xfe,0x50,0x51,0x54,0xff,0x46,0x48, + 0x4a,0xff,0x7a,0x7e,0x81,0xff,0x96,0x9a,0x9d,0xff,0x90,0x94,0x96,0xff,0x8b, + 0x90,0x90,0xfb,0x87,0x8c,0x8c,0xf2,0x81,0x85,0x84,0xef,0x76,0x7b,0x78,0xf1, + 0x6f,0x74,0x70,0xf2,0x6c,0x72,0x6e,0xf2,0x70,0x75,0x71,0xe2,0x71,0x74,0x71, + 0xa2,0x86,0x00,0x00,0x00,0x00,0x32,0x9a,0x9b,0x9a,0x0f,0xa7,0xa8,0xa8,0x42, + 0xa6,0xa7,0xa8,0xb1,0xb9,0xba,0xbb,0xf4,0xc6,0xc7,0xc7,0xff,0xcc,0xcd,0xcd, + 0xff,0xce,0xcf,0xcf,0xff,0xcc,0xcd,0xcd,0xff,0xc6,0xc7,0xc7,0xff,0xbf,0xbf, + 0xc0,0xff,0xb8,0xb8,0xb9,0xff,0xb1,0xb2,0xb2,0xff,0xad,0xae,0xae,0xff,0xa9, + 0xab,0xaa,0xff,0xa9,0xab,0xa9,0xff,0xac,0xae,0xac,0xff,0xb1,0xb2,0xb0,0xff, + 0xb6,0xb8,0xb5,0xff,0xbb,0xbe,0xbb,0xff,0xc0,0xc3,0xc0,0xff,0xc4,0xc6,0xc3, + 0xff,0xc4,0xc7,0xc5,0xff,0xc2,0xc4,0xc1,0xff,0xba,0xbd,0xba,0xff,0xb0,0xb2, + 0xb0,0xff,0xa4,0xa6,0xa5,0xff,0x96,0x98,0x96,0xee,0x86,0x88,0x87,0xb3,0x9f, + 0xa0,0xa0,0x6f,0xa5,0xa5,0xa5,0x51,0x96,0x96,0x96,0x5a,0x8a,0x89,0x89,0x64, + 0x82,0x82,0x82,0x6b,0x7e,0x7e,0x7d,0x70,0x79,0x79,0x7a,0x75,0x74,0x74,0x75, + 0x7d,0x69,0x6b,0x6b,0x9b,0x75,0x76,0x77,0xd5,0x5d,0x5e,0x5f,0xe5,0x6b,0x6d, + 0x6e,0xe7,0x6e,0x70,0x71,0xe1,0x78,0x7a,0x7a,0xac,0x84,0x86,0x85,0x7f,0x83, + 0x85,0x84,0x73,0x82,0x83,0x82,0x70,0x80,0x81,0x80,0x72,0x84,0x85,0x84,0x72, + 0x88,0x89,0x88,0x72,0x96,0x97,0x96,0x62,0xdb,0xdb,0xdb,0x32,0x85,0x00,0x00, + 0x00,0x00,0x2f,0xb2,0xb2,0xb3,0x09,0xcc,0xcc,0xcd,0x93,0xc0,0xc1,0xc2,0xfe, + 0xd9,0xd9,0xda,0xff,0xed,0xee,0xee,0xff,0xf4,0xf4,0xf5,0xff,0xf1,0xf1,0xf1, + 0xff,0xe9,0xe9,0xea,0xff,0xdf,0xe0,0xe0,0xff,0xd4,0xd4,0xd4,0xff,0xca,0xca, + 0xca,0xff,0xc1,0xc1,0xc1,0xff,0xb8,0xb8,0xb8,0xff,0xb2,0xb2,0xb3,0xff,0xae, + 0xaf,0xae,0xff,0xad,0xae,0xad,0xff,0xb0,0xb1,0xb0,0xff,0xb5,0xb7,0xb5,0xff, + 0xbc,0xbf,0xbd,0xff,0xc5,0xc8,0xc5,0xff,0xce,0xd0,0xce,0xff,0xd4,0xd6,0xd4, + 0xff,0xd7,0xd9,0xd7,0xff,0xd5,0xd8,0xd6,0xff,0xce,0xd1,0xcf,0xff,0xc1,0xc3, + 0xc2,0xff,0xac,0xae,0xad,0xff,0x9c,0x9e,0x9d,0xff,0x92,0x94,0x95,0xff,0x91, + 0x94,0x94,0xfb,0x78,0x79,0x79,0x63,0xdd,0xdd,0xdd,0x0f,0xd9,0xd9,0xd9,0x18, + 0xd5,0xd5,0xd5,0x1c,0xd0,0xd0,0xd0,0x1f,0xcd,0xcd,0xcd,0x23,0xca,0xca,0xca, + 0x27,0xc1,0xc1,0xc1,0x35,0xb1,0xb1,0xb1,0x4a,0xa5,0xa5,0xa5,0x57,0xa3,0xa3, + 0xa3,0x59,0xab,0xab,0xab,0x51,0xbd,0xbd,0xbd,0x3b,0xc9,0xc9,0xc9,0x29,0xcf, + 0xcf,0xcf,0x21,0xd0,0xd0,0xd0,0x1f,0xce,0xce,0xce,0x22,0x82,0xcf,0xcf,0xcf, + 0x22,0x02,0xd8,0xd8,0xd8,0x18,0xf6,0xf6,0xf6,0x07,0x85,0x00,0x00,0x00,0x00, + 0x20,0xdc,0xdc,0xdc,0x06,0xb3,0xb3,0xb3,0x76,0x9f,0x9f,0x9f,0xdc,0x91,0x91, + 0x91,0xf8,0xa4,0xa4,0xa4,0xff,0xb3,0xb3,0xb3,0xff,0xb7,0xb7,0xb7,0xff,0xb7, + 0xb6,0xb6,0xff,0xb6,0xb7,0xb7,0xff,0xb6,0xb6,0xb7,0xff,0xb5,0xb5,0xb5,0xff, + 0xb4,0xb5,0xb6,0xff,0xb3,0xb4,0xb4,0xff,0xb1,0xb2,0xb2,0xff,0xb0,0xb1,0xb2, + 0xff,0xaf,0xb1,0xb1,0xff,0xac,0xad,0xad,0xff,0xa9,0xaa,0xaa,0xff,0xaa,0xaa, + 0xaa,0xff,0xb0,0xb1,0xb0,0xff,0xbd,0xbe,0xbd,0xff,0xca,0xcc,0xcb,0xff,0xd2, + 0xd3,0xd2,0xff,0xd2,0xd4,0xd3,0xff,0xce,0xd1,0xd1,0xff,0xcd,0xd0,0xcf,0xff, + 0xcb,0xce,0xce,0xff,0xb8,0xba,0xbb,0xfa,0x95,0x96,0x98,0xe4,0x6f,0x70,0x71, + 0xc6,0xad,0xad,0xad,0x2f,0xf7,0xf7,0xf7,0x01,0x85,0x00,0x00,0x00,0x00,0x02, + 0xf6,0xf6,0xf6,0x02,0xed,0xed,0xed,0x0a,0x82,0xe5,0xe5,0xe5,0x0f,0x02,0xe9, + 0xe9,0xe9,0x0c,0xf4,0xf4,0xf4,0x04,0x87,0x00,0x00,0x00,0x00,0x01,0xfe,0xfe, + 0xfe,0x00,0x85,0x00,0x00,0x00,0x00,0x20,0xec,0xec,0xec,0x04,0xca,0xca,0xca, + 0x28,0x9b,0x9b,0x9b,0x59,0x90,0x90,0x90,0x6f,0x8f,0x8f,0x8f,0x81,0x89,0x89, + 0x89,0x8e,0x7f,0x7f,0x7f,0x9e,0x75,0x75,0x75,0xae,0x6e,0x6e,0x6d,0xbb,0x6a, + 0x6a,0x6a,0xc6,0x70,0x70,0x70,0xcd,0x70,0x6f,0x6f,0xd1,0x77,0x77,0x77,0xd3, + 0x7f,0x7f,0x7f,0xd5,0x81,0x82,0x82,0xd5,0x7f,0x80,0x7f,0xd5,0x7a,0x7a,0x7b, + 0xd5,0x74,0x75,0x74,0xd4,0x75,0x75,0x76,0xd3,0x7c,0x7c,0x7c,0xd0,0x83,0x83, + 0x82,0xcc,0x83,0x84,0x83,0xc3,0x83,0x84,0x83,0xb9,0x85,0x86,0x85,0xab,0x8b, + 0x8c,0x8b,0x9c,0x93,0x94,0x93,0x8d,0x96,0x96,0x96,0x82,0x92,0x92,0x92,0x72, + 0x95,0x95,0x95,0x5e,0xac,0xac,0xac,0x46,0xde,0xde,0xde,0x13,0xf9,0xf9,0xf9, + 0x01,0x98,0x00,0x00,0x00,0x00,0x0d,0xf9,0xf9,0xf9,0x00,0xec,0xec,0xec,0x05, + 0xd8,0xd8,0xd8,0x14,0xcc,0xcc,0xcc,0x21,0xc6,0xc6,0xc6,0x2a,0xc3,0xc3,0xc3, + 0x2f,0xc0,0xc0,0xc0,0x35,0xbd,0xbd,0xbd,0x3b,0xb9,0xb9,0xb9,0x40,0xb5,0xb5, + 0xb5,0x44,0xb4,0xb4,0xb4,0x46,0xb3,0xb3,0xb3,0x48,0xb2,0xb2,0xb2,0x48,0x84, + 0xb1,0xb1,0xb1,0x49,0x0e,0xb2,0xb2,0xb2,0x49,0xb2,0xb2,0xb2,0x48,0xb3,0xb3, + 0xb3,0x47,0xb4,0xb4,0xb4,0x46,0xb7,0xb7,0xb7,0x43,0xba,0xba,0xba,0x3f,0xbd, + 0xbd,0xbd,0x3a,0xc0,0xc0,0xc0,0x35,0xc3,0xc3,0xc3,0x2f,0xc5,0xc5,0xc5,0x2a, + 0xcb,0xcb,0xcb,0x23,0xd5,0xd5,0xd5,0x18,0xe2,0xe2,0xe2,0x0b,0xf7,0xf7,0xf7, + 0x02,0x9d,0x00,0x00,0x00,0x00,0x08,0xfd,0xfd,0xfd,0x00,0xfc,0xfc,0xfc,0x02, + 0xf8,0xf8,0xf8,0x04,0xf5,0xf5,0xf5,0x05,0xf1,0xf1,0xf1,0x07,0xf0,0xf0,0xf0, + 0x08,0xed,0xed,0xed,0x09,0xec,0xec,0xec,0x0a,0x86,0xeb,0xeb,0xeb,0x0a,0x08, + 0xec,0xec,0xec,0x09,0xec,0xec,0xec,0x0a,0xee,0xee,0xee,0x09,0xef,0xef,0xef, + 0x08,0xf1,0xf1,0xf1,0x07,0xf6,0xf6,0xf6,0x05,0xf9,0xf9,0xf9,0x03,0xfc,0xfc, + 0xfc,0x01,0xff,0x00,0x00,0x00,0x00,0xc2,0x00,0x00,0x00,0x00 +}; + +static const GdkPixdata slimm_pixdata = { + 0x47646b50, /* Pixbuf magic: 'GdkP' */ + 24 + 9837, /* header length + pixel_data length */ + 0x2010002, /* pixdata_type */ + 224, /* rowstride */ + 56, /* width */ + 56, /* height */ + slimm_pixdata_pixel_data /* pixel_data */ +}; diff --git a/src/libXNVCtrl/NVCtrl.c b/src/libXNVCtrl/NVCtrl.c index 1697380..17df2e1 100644 --- a/src/libXNVCtrl/NVCtrl.c +++ b/src/libXNVCtrl/NVCtrl.c @@ -1285,6 +1285,7 @@ static Bool wire_to_event (Display *dpy, XEvent *host, xEvent *wire) xnvctrlEventTarget *eventTarget; XNVCtrlEventTargetAvailability *reTargetAvailability; XNVCtrlStringEventTarget *reTargetString; + XNVCtrlBinaryEventTarget *reTargetBinary; XNVCTRLCheckExtension (dpy, info, False); @@ -1371,6 +1372,26 @@ static Bool wire_to_event (Display *dpy, XEvent *host, xEvent *wire) reTargetString->attribute_changed.attribute = eventTarget->u.attribute_changed.attribute; break; + case TARGET_BINARY_ATTRIBUTE_CHANGED_EVENT: + reTargetBinary = (XNVCtrlBinaryEventTarget *) host; + eventTarget = (xnvctrlEventTarget *) wire; + reTargetBinary->attribute_changed.type = eventTarget->u.u.type & 0x7F; + reTargetBinary->attribute_changed.serial = + _XSetLastRequestRead(dpy, (xGenericReply*) eventTarget); + reTargetBinary->attribute_changed.send_event = + ((eventTarget->u.u.type & 0x80) != 0); + reTargetBinary->attribute_changed.display = dpy; + reTargetBinary->attribute_changed.time = + eventTarget->u.attribute_changed.time; + reTargetBinary->attribute_changed.target_type = + eventTarget->u.attribute_changed.target_type; + reTargetBinary->attribute_changed.target_id = + eventTarget->u.attribute_changed.target_id; + reTargetBinary->attribute_changed.display_mask = + eventTarget->u.attribute_changed.display_mask; + reTargetBinary->attribute_changed.attribute = + eventTarget->u.attribute_changed.attribute; + break; default: return False; diff --git a/src/libXNVCtrl/NVCtrl.h b/src/libXNVCtrl/NVCtrl.h index d231372..8082311 100644 --- a/src/libXNVCtrl/NVCtrl.h +++ b/src/libXNVCtrl/NVCtrl.h @@ -2545,24 +2545,26 @@ #define NV_CTRL_FLATPANEL_CHIP_LOCATION_EXTERNAL 1 /* - * NV_CTRL_FLATPANEL_LINK - report whether the specified display - * device is driven by a single link or dual link DVI connection. + * NV_CTRL_FLATPANEL_LINK - report the number of links for a DVI connection, or + * the main link's active lane count for DisplayPort. * This attribute is only available for flat panels. */ #define NV_CTRL_FLATPANEL_LINK 216/* R-DG */ #define NV_CTRL_FLATPANEL_LINK_SINGLE 0 #define NV_CTRL_FLATPANEL_LINK_DUAL 1 +#define NV_CTRL_FLATPANEL_LINK_QUAD 3 /* * NV_CTRL_FLATPANEL_SIGNAL - for the specified display device, report - * whether the flat panel is driven by an LVDS or TMDS signal. This - * attribute is only available for flat panels. + * whether the flat panel is driven by an LVDS, TMDS, or DisplayPort signal. + * This attribute is only available for flat panels. */ #define NV_CTRL_FLATPANEL_SIGNAL 217/* R-DG */ #define NV_CTRL_FLATPANEL_SIGNAL_LVDS 0 #define NV_CTRL_FLATPANEL_SIGNAL_TMDS 1 +#define NV_CTRL_FLATPANEL_SIGNAL_DISPLAYPORT 2 /* @@ -3319,7 +3321,18 @@ #define NV_CTRL_DEPTH_30_ALLOWED 279 /* R--G */ -#define NV_CTRL_LAST_ATTRIBUTE NV_CTRL_DEPTH_30_ALLOWED +/* + * NV_CTRL_DISPLAYPORT_LINK_RATE - returns the negotiated lane bandwidth of the + * DisplayPort main link. + * This attribute is only available for DisplayPort flat panels. + */ + +#define NV_CTRL_DISPLAYPORT_LINK_RATE 291 /* R-DG */ +#define NV_CTRL_DISPLAYPORT_LINK_RATE_DISABLED 0x0 +#define NV_CTRL_DISPLAYPORT_LINK_RATE_1_62GBPS 0x6 +#define NV_CTRL_DISPLAYPORT_LINK_RATE_2_70GBPS 0xA + +#define NV_CTRL_LAST_ATTRIBUTE NV_CTRL_DISPLAYPORT_LINK_RATE /**************************************************************************/ @@ -4206,6 +4219,7 @@ typedef struct _NVCTRLAttributeValidValues { #define TARGET_ATTRIBUTE_CHANGED_EVENT 1 #define TARGET_ATTRIBUTE_AVAILABILITY_CHANGED_EVENT 2 #define TARGET_STRING_ATTRIBUTE_CHANGED_EVENT 3 +#define TARGET_BINARY_ATTRIBUTE_CHANGED_EVENT 4 #endif /* __NVCTRL_H */ diff --git a/src/libXNVCtrl/NVCtrlLib.h b/src/libXNVCtrl/NVCtrlLib.h index 7dda4e8..122668f 100644 --- a/src/libXNVCtrl/NVCtrlLib.h +++ b/src/libXNVCtrl/NVCtrlLib.h @@ -822,6 +822,29 @@ typedef union { } XNVCtrlStringEventTarget; + +/* + * XNVCtrlBinaryEventTarget structure + */ + +typedef struct { + int type; + unsigned long serial; + Bool send_event; /* always FALSE, we don't allow send_events */ + Display *display; + Time time; + int target_type; + int target_id; + unsigned int display_mask; + unsigned int attribute; +} XNVCtrlBinaryAttributeChangedEventTarget; + +typedef union { + int type; + XNVCtrlBinaryAttributeChangedEventTarget attribute_changed; + long pad[24]; +} XNVCtrlBinaryEventTarget; + #if defined __cplusplus } /* extern "C" */ #endif diff --git a/src/libXNVCtrl/nv_control.h b/src/libXNVCtrl/nv_control.h index edd3056..4c5436c 100644 --- a/src/libXNVCtrl/nv_control.h +++ b/src/libXNVCtrl/nv_control.h @@ -2,11 +2,11 @@ #define __NVCONTROL_H #define NV_CONTROL_ERRORS 0 -#define NV_CONTROL_EVENTS 4 +#define NV_CONTROL_EVENTS 5 #define NV_CONTROL_NAME "NV-CONTROL" #define NV_CONTROL_MAJOR 1 -#define NV_CONTROL_MINOR 16 +#define NV_CONTROL_MINOR 17 #define X_nvCtrlQueryExtension 0 #define X_nvCtrlIsNv 1 diff --git a/src/libXNVCtrlAttributes/NvCtrlAttributes.h b/src/libXNVCtrlAttributes/NvCtrlAttributes.h index e4d7469..c3d404c 100644 --- a/src/libXNVCtrlAttributes/NvCtrlAttributes.h +++ b/src/libXNVCtrlAttributes/NvCtrlAttributes.h @@ -208,6 +208,8 @@ typedef struct GLXFBConfigAttrRec { int multi_sample_valid; int multi_samples; int multi_sample_buffers; + int multi_sample_coverage_valid; + int multi_samples_color; } GLXFBConfigAttr; diff --git a/src/libXNVCtrlAttributes/NvCtrlAttributesGlx.c b/src/libXNVCtrlAttributes/NvCtrlAttributesGlx.c index 9d99c39..470ab44 100644 --- a/src/libXNVCtrlAttributes/NvCtrlAttributesGlx.c +++ b/src/libXNVCtrlAttributes/NvCtrlAttributesGlx.c @@ -526,6 +526,18 @@ get_fbconfig_attribs(NvCtrlAttributePrivateHandle *h) fbcas[i].multi_sample_valid = 0; } } +#if defined(GLX_COLOR_SAMPLES_NV) + fbcas[i].multi_sample_coverage_valid = 1; + ret = (* (__libGL->glXGetFBConfigAttrib))(h->dpy, fbconfigs[i], + GLX_COLOR_SAMPLES_NV, + &(fbcas[i].multi_samples_color)); + + if ( ret != Success ) { + fbcas[i].multi_sample_coverage_valid = 0; + } +#else + fbcas[i].multi_sample_coverage_valid = 0; +#endif #else #warning Multisample extension not found, will not print multisample information! fbcas[i].multi_sample_valid = 0; diff --git a/src/libXNVCtrlAttributes/NvCtrlAttributesNvControl.c b/src/libXNVCtrlAttributes/NvCtrlAttributesNvControl.c index ca81d27..727d605 100644 --- a/src/libXNVCtrlAttributes/NvCtrlAttributesNvControl.c +++ b/src/libXNVCtrlAttributes/NvCtrlAttributesNvControl.c @@ -113,6 +113,20 @@ NvCtrlInitNvControlAttributes (NvCtrlAttributePrivateHandle *h) } } + /* + * TARGET_BINARY_ATTRIBUTE_CHANGED_EVENT was added in NV-CONTROL + * 1.17 + */ + if (((major > 1) || ((major == 1) && (minor >= 17)))) { + ret = XNVCtrlSelectTargetNotify(h->dpy, h->target_type, h->target_id, + TARGET_BINARY_ATTRIBUTE_CHANGED_EVENT, + True); + if (ret != True) { + nv_warning_msg("Unable to select attribute changed NV-CONTROL binary" + "events."); + } + } + nv->event_base = event; nv->error_base = error; nv->major_version = major; diff --git a/src/nvidia-settings.c b/src/nvidia-settings.c index 9ab745c..df16753 100644 --- a/src/nvidia-settings.c +++ b/src/nvidia-settings.c @@ -196,7 +196,7 @@ int main(int argc, char **argv) ctk_main(screen_handles, num_screen_handles, gpu_handles, num_gpu_handles, vcs_handles, num_vcs_handles, - p, &conf); + p, &conf, h); /* write the configuration file */ diff --git a/src/parse.c b/src/parse.c index 5bc6f9a..d55b146 100644 --- a/src/parse.c +++ b/src/parse.c @@ -260,7 +260,7 @@ AttributeTableEntry attributeTable[] = { * about. */ -#if NV_CTRL_LAST_ATTRIBUTE != NV_CTRL_DEPTH_30_ALLOWED +#if NV_CTRL_LAST_ATTRIBUTE != NV_CTRL_DISPLAYPORT_LINK_RATE #warning "Have you forgotten to add a new integer attribute to attributeTable?" #endif |