From 9c1115be2e03aac73b12be6fcac46a9e7b44c77d Mon Sep 17 00:00:00 2001 From: Konrad Rosenbaum Date: Fri, 22 Dec 2017 13:59:16 +0100 Subject: [PATCH] update to 2017c Change-Id: I5fbb707e71b22e9b98aea9e94ca541c9cfc07d1c --- .gitignore | 1 + db/CONTRIBUTING | 18 +- db/LICENSE | 9 +- db/Makefile | 264 +- db/NEWS | 418 +- db/Theory | 857 - db/africa | 223 +- db/antarctica | 11 +- db/asctime.c | 14 +- db/asia | 454 +- db/australasia | 226 +- db/backward | 5 +- db/backzone | 154 +- db/calendars | 173 + db/checklinks.awk | 4 +- db/date.1 | 1 + db/date.1.txt | 1 + db/date.c | 10 +- db/difftime.c | 2 +- db/europe | 290 +- db/ialloc.c | 32 - db/iso3166.tab | 4 +- db/leap-seconds.list | 8 +- db/leapseconds | 17 +- db/leapseconds.awk | 13 +- db/localtime.c | 231 +- db/newctime.3 | 54 +- db/newctime.3.txt | 57 +- db/newstrftime.3 | 12 + db/newstrftime.3.txt | 6 +- db/northamerica | 266 +- db/private.h | 288 +- db/scheck.c | 64 - db/southamerica | 584 +- db/strftime.c | 82 +- db/theory.html | 1034 + db/tz-art.htm | 103 +- db/tz-how-to.html | 9 +- db/tz-link.htm | 284 +- db/tzfile.5 | 85 +- db/tzfile.5.txt | 197 +- db/tzfile.h | 52 - db/tzselect.ksh | 8 +- db/usno1988 | 109 - db/usno1989 | 450 - db/usno1989a | 450 - db/usno1995 | 324 - db/usno1997 | 325 - db/usno1998 | 325 - db/version | 2 +- db/version.txt | 2 +- db/zdump.8 | 5 +- db/zdump.8.txt | 20 +- db/zdump.c | 272 +- db/zic.8 | 31 +- db/zic.8.txt | 10 +- db/zic.c | 151 +- db/zishrink.awk | 156 + db/zone.tab | 6 +- db/zone1970.tab | 8 +- genrcc.sh | 2 +- zonefiles.cpp |84441 ++++++++++++++++++++++++++------------------------ 62 files changed, 47663 insertions(+), 46051 deletions(-) delete mode 100644 db/Theory create mode 100644 db/calendars delete mode 100644 db/ialloc.c delete mode 100644 db/scheck.c create mode 100644 db/theory.html delete mode 100644 db/usno1988 delete mode 100644 db/usno1989 delete mode 100644 db/usno1989a delete mode 100644 db/usno1995 delete mode 100644 db/usno1997 delete mode 100644 db/usno1998 create mode 100644 db/zishrink.awk diff --git a/.gitignore b/.gitignore index 8ef4d45..96d0d9b 100644 --- a/.gitignore +++ b/.gitignore @@ -16,6 +16,7 @@ db/version.h db/zic db/tzselect db/zdump +db/tzdata.zi moc_* test/tztest .qmake.stash diff --git a/db/CONTRIBUTING b/db/CONTRIBUTING index 22addd2..716f32b 100644 --- a/db/CONTRIBUTING +++ b/db/CONTRIBUTING @@ -5,20 +5,26 @@ change timekeeping rules erratically and sometimes with little warning, the data entries do not cover all of civil time before 1970, and undoubtedly errors remain in the code and data. Feel free to fill gaps or fix mistakes, and please email improvements -to tz@iana.org for use in the future. +to tz@iana.org for use in the future. In your email, please give +reliable sources that reviewers can check. + +----- + +Developers can contribute technical changes to the source code and +data as follows. To email small changes, please run a POSIX shell command like 'diff -u old/europe new/europe >myfix.patch', and attach myfix.patch to the email. -For more-elaborate changes, please read the Theory file and browse -the mailing list archives for -examples of patches that tend to work well. Ideally, additions to +For more-elaborate changes, please read the theory.html file and browse +the mailing list archives for +examples of patches that tend to work well. Additions to data should contain commentary citing reliable sources as -justification. +justification. Citations should use https: URLs if available. Please submit changes against either the latest release in - or the master branch of the development + or the master branch of the development repository. If you use Git the following workflow may be helpful: * Copy the development repository. diff --git a/db/LICENSE b/db/LICENSE index 148eb23..8ba4399 100644 --- a/db/LICENSE +++ b/db/LICENSE @@ -1,4 +1,5 @@ -With a few exceptions, all files in the tz code and data (including -this one) are in the public domain. The exceptions are date.c, -newstrftime.3, and strftime.c, which contain material derived from BSD -and which use the BSD 3-clause license. +Unless specified below, all files in the tz code and data (including +this LICENSE file) are in the public domain. + +If the files date.c, newstrftime.3, and strftime.c are present, they +contain material derived from BSD and use the BSD 3-clause license. diff --git a/db/Makefile b/db/Makefile index 1b714a8..c92edc0 100644 --- a/db/Makefile +++ b/db/Makefile @@ -49,6 +49,7 @@ TOPDIR= /usr/local # "Compiled" time zone information is placed in the "TZDIR" directory # (and subdirectories). # Use an absolute path name for TZDIR unless you're just testing the software. +# TZDIR_BASENAME should not contain "/" and should not be ".", ".." or empty. TZDIR_BASENAME= zoneinfo TZDIR= $(TOPDIR)/etc/$(TZDIR_BASENAME) @@ -72,11 +73,11 @@ MANDIR= $(TOPDIR)/man LIBDIR= $(TOPDIR)/lib -# If you always want time values interpreted as "seconds since the epoch -# (not counting leap seconds)", use +# If you want only POSIX time, with time values interpreted as +# seconds since the epoch (not counting leap seconds), use # REDO= posix_only -# below. If you always want right time values interpreted as "seconds since -# the epoch" (counting leap seconds)", use +# below. If you want only "right" time, with values interpreted +# as seconds since the epoch (counting leap seconds), use # REDO= right_only # below. If you want both sets of data available, with leap seconds not # counted normally, use @@ -85,10 +86,31 @@ LIBDIR= $(TOPDIR)/lib # normally, use # REDO= right_posix # below. POSIX mandates that leap seconds not be counted; for compatibility -# with it, use "posix_only" or "posix_right". +# with it, use "posix_only" or "posix_right". Use POSIX time on systems with +# leap smearing; this can work better than unsmeared "right" time with +# applications that are not leap second aware, and is closer to unsmeared +# "right" time than unsmeared POSIX time is (e.g., 0.5 vs 1.0 s max error). REDO= posix_right +# To install data in text form that has all the information of the binary data, +# (optionally incorporating leap second information), use +# TZDATA_TEXT= tzdata.zi leapseconds +# To install text data without leap second information (e.g., because +# REDO='posix_only'), use +# TZDATA_TEXT= tzdata.zi +# To avoid installing text data, use +# TZDATA_TEXT= + +TZDATA_TEXT= leapseconds tzdata.zi + +# For backward-compatibility links for old zone names, use +# BACKWARD= backward pacificnew +# To omit these links, use +# BACKWARD= + +BACKWARD= backward pacificnew + # If you want out-of-scope and often-wrong data from the file 'backzone', use # PACKRATDATA= backzone # To omit this data, use @@ -96,6 +118,11 @@ REDO= posix_right PACKRATDATA= +# The name of a locale using the UTF-8 encoding, used during self-tests. +# The tests are skipped if the name does not appear to work on this system. + +UTF8_LOCALE= en_US.utf8 + # Since "." may not be in PATH... YEARISTYPE= ./yearistype @@ -103,50 +130,53 @@ YEARISTYPE= ./yearistype # Non-default libraries needed to link. LDLIBS= -# Add the following to the end of the "CFLAGS=" line as needed. +# Add the following to the end of the "CFLAGS=" line as needed to override +# defaults specified in the source code. "-DFOO" is equivalent to "-DFOO=1". # -DBIG_BANG=-9999999LL if the Big Bang occurred at time -9999999 (see zic.c) +# -DDEPRECATE_TWO_DIGIT_YEARS for optional runtime warnings about strftime +# formats that generate only the last two digits of year numbers +# -DEPOCH_LOCAL if the 'time' function returns local time not UT +# -DEPOCH_OFFSET=N if the 'time' function returns a value N greater +# than what POSIX specifies, assuming local time is UT. +# For example, N is 252460800 on AmigaOS. # -DHAVE_DECL_ASCTIME_R=0 if does not declare asctime_r +# -DHAVE_DECL_ENVIRON if declares 'environ' # -DHAVE_DIRECT_H if mkdir needs (MS-Windows) -# -DHAVE_DOS_FILE_NAMES if file names have drive specifiers etc. (MS-DOS) -# -DHAVE_GETTEXT=1 if 'gettext' works (e.g., GNU/Linux, FreeBSD, Solaris) -# -DHAVE_INCOMPATIBLE_CTIME_R=1 if your system's time.h declares +# -DHAVE_GENERIC=0 if _Generic does not work +# -DHAVE_GETTEXT if 'gettext' works (e.g., GNU/Linux, FreeBSD, Solaris) +# -DHAVE_INCOMPATIBLE_CTIME_R if your system's time.h declares # ctime_r and asctime_r incompatibly with the POSIX standard # (Solaris when _POSIX_PTHREAD_SEMANTICS is not defined). -# -DHAVE_INTTYPES_H=1 if you have a pre-C99 compiler with "inttypes.h" +# -DHAVE_INTTYPES_H if you have a non-C99 compiler with # -DHAVE_LINK=0 if your system lacks a link function # -DHAVE_LOCALTIME_R=0 if your system lacks a localtime_r function # -DHAVE_LOCALTIME_RZ=0 if you do not want zdump to use localtime_rz -# This defaults to 1 if a working localtime_rz seems to be available. # localtime_rz can make zdump significantly faster, but is nonstandard. # -DHAVE_POSIX_DECLS=0 if your system's include files do not declare # functions like 'link' or variables like 'tzname' required by POSIX -# -DHAVE_STDINT_H=1 if you have a pre-C99 compiler with "stdint.h" -# -DHAVE_STRFTIME_L=1 if declares locale_t and strftime_l -# This defaults to 0 if _POSIX_VERSION < 200809, 1 otherwise. +# -DHAVE_SNPRINTF=0 if your system lacks the snprintf function +# -DHAVE_STDBOOL_H if you have a non-C99 compiler with +# -DHAVE_STDINT_H if you have a non-C99 compiler with +# -DHAVE_STRFTIME_L if declares locale_t and strftime_l # -DHAVE_STRDUP=0 if your system lacks the strdup function # -DHAVE_SYMLINK=0 if your system lacks the symlink function -# -DHAVE_SYS_STAT_H=0 if your compiler lacks a "sys/stat.h" -# -DHAVE_SYS_WAIT_H=0 if your compiler lacks a "sys/wait.h" +# -DHAVE_SYS_STAT_H=0 if your compiler lacks a +# -DHAVE_SYS_WAIT_H=0 if your compiler lacks a # -DHAVE_TZSET=0 if your system lacks a tzset function -# -DHAVE_UNISTD_H=0 if your compiler lacks a "unistd.h" (Microsoft C++ 7?) -# -DEPOCH_LOCAL=1 if the 'time' function returns local time not UT -# -DEPOCH_OFFSET=N if the 'time' function returns a value N greater -# than what POSIX specifies, assuming local time is UT. -# For example, N is 252460800 on AmigaOS. -# -DNO_RUN_TIME_WARNINGS_ABOUT_YEAR_2000_PROBLEMS_THANK_YOU=1 -# if you do not want run time warnings about formats that may cause -# year 2000 grief -# -Dssize_t=long on ancient hosts that lack ssize_t -# -DTHREAD_SAFE=1 to make localtime.c thread-safe, as POSIX requires; +# -DHAVE_UNISTD_H=0 if your compiler lacks a +# -Dlocale_t=XXX if your system uses XXX instead of locale_t +# -Dssize_t=long on hosts like MS-Windows that lack ssize_t +# -DTHREAD_SAFE to make localtime.c thread-safe, as POSIX requires; # not needed by the main-program tz code, which is single-threaded. # Append other compiler flags as needed, e.g., -pthread on GNU/Linux. # -Dtime_tz=\"T\" to use T as the time_t type, rather than the system time_t +# This is intended for internal use only; it mangles external names. # -DTZ_DOMAIN=\"foo\" to use "foo" for gettext domain name; default is "tz" # -DTZ_DOMAINDIR=\"/path\" to use "/path" for gettext directory; # the default is system-supplied, typically "/usr/lib/locale" # -DTZDEFRULESTRING=\",date/time,date/time\" to default to the specified # DST transitions if the time zone files cannot be accessed -# -DUNINIT_TRAP=1 if reading uninitialized storage can cause problems +# -DUNINIT_TRAP if reading uninitialized storage can cause problems # other than simply getting garbage data # -DUSE_LTZ=0 to build zdump with the system time zone library # Also set TZDOBJS=zdump.o and CHECK_TIME_T_ALTERNATIVES= below. @@ -154,26 +184,27 @@ LDLIBS= # (or some other number) to set the maximum time zone abbreviation length # that zic will accept without a warning (the default is 6) # $(GCC_DEBUG_FLAGS) if you are using recent GCC and want lots of checking -GCC_DEBUG_FLAGS = -Dlint -g3 -O3 -fno-common -fstrict-aliasing \ - -Wall -Wextra \ - -Wbad-function-cast -Wcast-align -Wdate-time \ - -Wdeclaration-after-statement \ - -Wdouble-promotion \ - -Wformat=2 -Winit-self -Wjump-misses-init \ - -Wlogical-op -Wmissing-prototypes -Wnested-externs \ - -Wold-style-definition -Woverlength-strings -Wpointer-arith \ - -Wshadow -Wstrict-prototypes -Wsuggest-attribute=const \ - -Wsuggest-attribute=format -Wsuggest-attribute=noreturn \ - -Wsuggest-attribute=pure -Wtrampolines \ - -Wunused -Wwrite-strings \ - -Wno-address -Wno-format-nonliteral -Wno-sign-compare \ - -Wno-type-limits -Wno-unused-parameter -# -# If you want to use System V compatibility code, add -# -DUSG_COMPAT -# to the end of the "CFLAGS=" line. This arrange for "timezone" and "daylight" -# variables to be kept up-to-date by the time conversion functions. Neither -# "timezone" nor "daylight" is described in X3J11's work. +# Select instrumentation via "make GCC_INSTRUMENT='whatever'". +GCC_INSTRUMENT = \ + -fsanitize=undefined -fsanitize-address-use-after-scope \ + -fsanitize-undefined-trap-on-error -fstack-protector +GCC_DEBUG_FLAGS = -DGCC_LINT -g3 -O3 -fno-common \ + $(GCC_INSTRUMENT) \ + -Wall -Wextra \ + -Walloc-size-larger-than=100000 -Warray-bounds=2 \ + -Wbad-function-cast -Wcast-align -Wdate-time \ + -Wdeclaration-after-statement -Wdouble-promotion \ + -Wformat=2 -Wformat-overflow=2 -Wformat-signedness -Wformat-truncation \ + -Winit-self -Wjump-misses-init -Wlogical-op \ + -Wmissing-declarations -Wmissing-prototypes -Wnested-externs \ + -Wold-style-definition -Woverlength-strings -Wpointer-arith \ + -Wshadow -Wshift-overflow=2 -Wstrict-prototypes -Wstringop-overflow=5 \ + -Wsuggest-attribute=const -Wsuggest-attribute=format \ + -Wsuggest-attribute=noreturn -Wsuggest-attribute=pure \ + -Wtrampolines -Wundef -Wuninitialized -Wunused \ + -Wvariadic-macros -Wvla -Wwrite-strings \ + -Wno-address -Wno-format-nonliteral -Wno-sign-compare \ + -Wno-type-limits -Wno-unused-parameter # # If your system has a "GMT offset" field in its "struct tm"s # (or if you decide to add such a field in your system's "time.h" file), @@ -186,6 +217,31 @@ GCC_DEBUG_FLAGS = -Dlint -g3 -O3 -fno-common -fstrict-aliasing \ # and define NO_TM_ZONE to suppress any guessing. These two fields are not # required by POSIX, but are widely available on GNU/Linux and BSD systems. # +# The next batch of options control support for external variables +# exported by tzcode. In practice these variables are less useful +# than TM_GMTOFF and TM_ZONE. However, most of them are standardized. +# # +# # To omit or support the external variable "tzname", add one of: +# # -DHAVE_TZNAME=0 +# # -DHAVE_TZNAME=1 +# # to the "CFLAGS=" line. "tzname" is required by POSIX 1988 and later. +# # If not defined, the code attempts to guess HAVE_TZNAME from other macros. +# # Warning: unless time_tz is also defined, HAVE_TZNAME=1 can cause +# # crashes when combined with some platforms' standard libraries, +# # presumably due to memory allocation issues. +# # +# # To omit or support the external variables "timezone" and "daylight", add +# # -DUSG_COMPAT=0 +# # -DUSG_COMPAT=1 +# # to the "CFLAGS=" line; "timezone" and "daylight" are inspired by +# # Unix Systems Group code and are required by POSIX 2008 (with XSI) and later. +# # If not defined, the code attempts to guess USG_COMPAT from other macros. +# # +# # To support the external variable "altzone", add +# # -DALTZONE +# # to the end of the "CFLAGS=" line; although "altzone" appeared in +# # System V Release 3.1 it has not been standardized. +# # If you want functions that were inspired by early versions of X3J11's work, # add # -DSTD_INSPIRED @@ -223,11 +279,6 @@ GCC_DEBUG_FLAGS = -Dlint -g3 -O3 -fno-common -fstrict-aliasing \ # -DALL_STATE # to the end of the "CFLAGS=" line. Storage is obtained by calling malloc. # -# If you want an "altzone" variable (a la System V Release 3.1), add -# -DALTZONE -# to the end of the "CFLAGS=" line. -# This variable is not described in X3J11's work. -# # NIST-PCTS:151-2, Version 1.4, (1993-12-03) is a test suite put # out by the National Institute of Standards and Technology # which claims to test C and Posix conformance. If you want to pass PCTS, add @@ -237,8 +288,8 @@ GCC_DEBUG_FLAGS = -Dlint -g3 -O3 -fno-common -fstrict-aliasing \ # If you want strict compliance with XPG4 as of 1994-04-09, add # -DXPG4_1994_04_09 # to the end of the "CFLAGS=" line. This causes "strftime" to always return -# 53 as a week number (rather than 52 or 53) for those days in January that -# before the first Monday in January when a "%V" format is used and January 1 +# 53 as a week number (rather than 52 or 53) for January days before +# January's first Monday when a "%V" format is used and January 1 # falls on a Friday, Saturday, or Sunday. CFLAGS= @@ -262,7 +313,7 @@ ZFLAGS= # How to use zic to install tz binary files. -ZIC_INSTALL= $(ZIC) -y $(YEARISTYPE) -d $(DESTDIR)$(TZDIR) $(LEAPSECONDS) +ZIC_INSTALL= $(ZIC) -d $(DESTDIR)$(TZDIR) $(LEAPSECONDS) # The name of a Posix-compliant 'awk' on your system. AWK= awk @@ -286,6 +337,7 @@ SGML_CATALOG_FILES= \ # The name, arguments and environment of a program to validate your web pages. # See for a validator, and # for a validation library. +# Set VALIDATE=':' if you do not have such a program. VALIDATE = nsgmls VALIDATE_FLAGS = -s -B -wall -wno-unused-param VALIDATE_ENV = \ @@ -352,7 +404,7 @@ AR= ar RANLIB= : TZCOBJS= zic.o -TZDOBJS= zdump.o localtime.o asctime.o +TZDOBJS= zdump.o localtime.o asctime.o strftime.o DATEOBJS= date.o localtime.o strftime.o asctime.o LIBSRCS= localtime.c asctime.c difftime.c LIBOBJS= localtime.o asctime.o difftime.o @@ -367,33 +419,35 @@ MANTXTS= newctime.3.txt newstrftime.3.txt newtzset.3.txt \ time2posix.3.txt \ tzfile.5.txt tzselect.8.txt zic.8.txt zdump.8.txt \ date.1.txt -COMMON= CONTRIBUTING LICENSE Makefile NEWS README Theory version +COMMON= calendars CONTRIBUTING LICENSE Makefile \ + NEWS README theory.html version WEB_PAGES= tz-art.htm tz-how-to.html tz-link.htm DOCS= $(MANS) date.1 $(MANTXTS) $(WEB_PAGES) PRIMARY_YDATA= africa antarctica asia australasia \ europe northamerica southamerica -YDATA= $(PRIMARY_YDATA) pacificnew etcetera backward +YDATA= $(PRIMARY_YDATA) etcetera $(BACKWARD) NDATA= systemv factory TDATA= $(YDATA) $(NDATA) ZONETABLES= zone1970.tab zone.tab -TABDATA= iso3166.tab leapseconds $(ZONETABLES) +TABDATA= iso3166.tab $(TZDATA_TEXT) $(ZONETABLES) LEAP_DEPS= leapseconds.awk leap-seconds.list -DATA= $(YDATA) $(NDATA) backzone $(TABDATA) \ - leap-seconds.list yearistype.sh -AWK_SCRIPTS= checklinks.awk checktab.awk leapseconds.awk +TZDATA_ZI_DEPS= zishrink.awk $(TDATA) $(PACKRATDATA) +DATA= $(YDATA) $(NDATA) backzone iso3166.tab leap-seconds.list \ + leapseconds yearistype.sh $(ZONETABLES) +AWK_SCRIPTS= checklinks.awk checktab.awk leapseconds.awk zishrink.awk MISC= $(AWK_SCRIPTS) zoneinfo2tdf.pl TZS_YEAR= 2050 TZS= to$(TZS_YEAR).tzs TZS_NEW= to$(TZS_YEAR)new.tzs TZS_DEPS= $(PRIMARY_YDATA) asctime.c localtime.c \ private.h tzfile.h zdump.c zic.c -ENCHILADA= $(COMMON) $(DOCS) $(SOURCES) $(DATA) $(MISC) $(TZS) +ENCHILADA= $(COMMON) $(DOCS) $(SOURCES) $(DATA) $(MISC) $(TZS) tzdata.zi # Consult these files when deciding whether to rebuild the 'version' file. # This list is not the same as the output of 'git ls-files', since # .gitignore is not distributed. VERSION_DEPS= \ - CONTRIBUTING LICENSE Makefile NEWS README Theory \ + calendars CONTRIBUTING LICENSE Makefile NEWS README \ africa antarctica asctime.c asia australasia \ backward backzone \ checklinks.awk checktab.awk \ @@ -402,7 +456,7 @@ VERSION_DEPS= \ leap-seconds.list leapseconds.awk localtime.c \ newctime.3 newstrftime.3 newtzset.3 northamerica \ pacificnew private.h \ - southamerica strftime.c systemv \ + southamerica strftime.c systemv theory.html \ time2posix.3 tz-art.htm tz-how-to.html tz-link.htm \ tzfile.5 tzfile.h tzselect.8 tzselect.ksh \ workman.sh yearistype.sh \ @@ -424,7 +478,7 @@ install: all $(DATA) $(REDO) $(MANS) $(DESTDIR)$(MANDIR)/man3 $(DESTDIR)$(MANDIR)/man5 \ $(DESTDIR)$(MANDIR)/man8 $(ZIC_INSTALL) -l $(LOCALTIME) -p $(POSIXRULES) - cp -f iso3166.tab $(ZONETABLES) $(DESTDIR)$(TZDIR)/. + cp -f $(TABDATA) $(DESTDIR)$(TZDIR)/. cp tzselect zic zdump $(DESTDIR)$(ETCDIR)/. cp libtz.a $(DESTDIR)$(LIBDIR)/. $(RANLIB) $(DESTDIR)$(LIBDIR)/libtz.a @@ -445,6 +499,11 @@ version: $(VERSION_DEPS) printf '%s\n' "$$V" >$@.out mv $@.out $@ +# This file can be tailored by setting BACKWARD, PACKRATDATA, etc. +tzdata.zi: $(TZDATA_ZI_DEPS) + LC_ALL=C $(AWK) -f zishrink.awk $(TDATA) $(PACKRATDATA) >$@.out + mv $@.out $@ + version.h: version VERSION=`cat version` && printf '%s\n' \ 'static char const PKGVERSION[]="($(PACKAGE)) ";' \ @@ -470,6 +529,7 @@ leapseconds: $(LEAP_DEPS) # Arguments to pass to submakes of install_data. # They can be overridden by later submake arguments. INSTALLARGS = \ + BACKWARD=$(BACKWARD) \ DESTDIR=$(DESTDIR) \ LEAPSECONDS='$(LEAPSECONDS)' \ PACKRATDATA='$(PACKRATDATA)' \ @@ -478,10 +538,8 @@ INSTALLARGS = \ ZIC='$(ZIC)' # 'make install_data' installs one set of tz binary files. -# It can be tailored by setting LEAPSECONDS, PACKRATDATA, etc. -install_data: zic leapseconds yearistype $(PACKRATDATA) $(TDATA) - $(ZIC_INSTALL) $(TDATA) - $(AWK) '/^Rule/' $(TDATA) | $(ZIC_INSTALL) - $(PACKRATDATA) +install_data: zic leapseconds yearistype tzdata.zi + $(ZIC_INSTALL) tzdata.zi posix_only: $(MAKE) $(INSTALLARGS) LEAPSECONDS= install_data @@ -518,14 +576,14 @@ posix_packrat: zones: $(REDO) -$(TZS_NEW): $(TDATA) zdump zic +$(TZS_NEW): tzdata.zi zdump zic mkdir -p tzs.dir - $(zic) -d tzs.dir $(TDATA) - $(AWK) '/^Link/{print $$1 "\t" $$2 "\t" $$3}' \ - $(TDATA) | LC_ALL=C sort >$@.out + $(zic) -d tzs.dir tzdata.zi + $(AWK) '/^L/{print "Link\t" $$2 "\t" $$3}' \ + tzdata.zi | LC_ALL=C sort >$@.out wd=`pwd` && \ zones=`$(AWK) -v wd="$$wd" \ - '/^Zone/{print wd "/tzs.dir/" $$2}' $(TDATA) \ + '/^Z/{print wd "/tzs.dir/" $$2}' tzdata.zi \ | LC_ALL=C sort` && \ ./zdump -i -c $(TZS_YEAR) $$zones >>$@.out sed 's,^TZ=".*tzs\.dir/,TZ=",' $@.out >$@.sed.out @@ -561,24 +619,37 @@ tzselect: tzselect.ksh version chmod +x $@.out mv $@.out $@ -check: check_character_set check_white_space check_links check_sorted \ - check_tables check_tzs check_web +check: check_character_set check_white_space check_links \ + check_name_lengths check_sorted \ + check_tables check_web check_zishrink check_tzs check_character_set: $(ENCHILADA) - LC_ALL=en_US.utf8 && export LC_ALL && \ + test ! '$(UTF8_LOCALE)' || \ + ! printf 'A\304\200B\n' | \ + LC_ALL='$(UTF8_LOCALE)' grep -q '^A.B$$' >/dev/null 2>&1 || { \ + LC_ALL='$(UTF8_LOCALE)' && export LC_ALL && \ sharp='#' && \ ! grep -Env $(SAFE_LINE) $(MANS) date.1 $(MANTXTS) \ $(MISC) $(SOURCES) $(WEB_PAGES) \ - CONTRIBUTING LICENSE Makefile README version && \ + CONTRIBUTING LICENSE Makefile README \ + version tzdata.zi && \ ! grep -Env $(SAFE_SHARP_LINE) $(TDATA) backzone \ leapseconds yearistype.sh zone.tab && \ - ! grep -Env $(OK_LINE) $(ENCHILADA) + ! grep -Env $(OK_LINE) $(ENCHILADA); \ + } check_white_space: $(ENCHILADA) patfmt=' \t|[\f\r\v]' && pat=`printf "$$patfmt\\n"` && \ ! grep -En "$$pat" $(ENCHILADA) ! grep -n '[[:space:]]$$' $(ENCHILADA) +PRECEDES_FILE_NAME = ^(Zone|Link[[:space:]]+[^[:space:]]+)[[:space:]]+ +FILE_NAME_COMPONENT_TOO_LONG = \ + $(PRECEDES_FILE_NAME)[^[:space:]]*[^/[:space:]]{15} + +check_name_lengths: $(TDATA) backzone + ! grep -En '$(FILE_NAME_COMPONENT_TOO_LONG)' $(TDATA) backzone + CHECK_CC_LIST = { n = split($$1,a,/,/); for (i=2; i<=n; i++) print a[1], a[i]; } check_sorted: backward backzone iso3166.tab zone.tab zone1970.tab @@ -593,6 +664,7 @@ check_sorted: backward backzone iso3166.tab zone.tab zone1970.tab check_links: checklinks.awk $(TDATA) $(AWK) -f checklinks.awk $(TDATA) + $(AWK) -f checklinks.awk tzdata.zi check_tables: checktab.awk $(PRIMARY_YDATA) $(ZONETABLES) for tab in $(ZONETABLES); do \ @@ -603,14 +675,32 @@ check_tables: checktab.awk $(PRIMARY_YDATA) $(ZONETABLES) check_tzs: $(TZS) $(TZS_NEW) diff -u $(TZS) $(TZS_NEW) -check_web: $(WEB_PAGES) - $(VALIDATE_ENV) $(VALIDATE) $(VALIDATE_FLAGS) $(WEB_PAGES) +# This checks only the HTML 4.01 strict page. +# To check the the other pages, use . +check_web: tz-how-to.html + $(VALIDATE_ENV) $(VALIDATE) $(VALIDATE_FLAGS) tz-how-to.html + +# Check that tzdata.zi generates the same binary data that its sources do. +check_zishrink: tzdata.zi zic leapseconds $(PACKRATDATA) $(TDATA) + for type in posix right; do \ + mkdir -p time_t.dir/$$type time_t.dir/$$type-shrunk && \ + case $$type in \ + right) leap='-L leapseconds';; \ + *) leap=;; \ + esac && \ + $(ZIC) $$leap -d time_t.dir/$$type $(TDATA) && \ + $(AWK) '/^Rule/' $(TDATA) | \ + $(ZIC) $$leap -d time_t.dir/$$type - $(PACKRATDATA) && \ + $(ZIC) $$leap -d time_t.dir/$$type-shrunk tzdata.zi && \ + diff -r time_t.dir/$$type time_t.dir/$$type-shrunk || exit; \ + done + rm -fr time_t.dir clean_misc: rm -f core *.o *.out \ date tzselect version.h zdump zic yearistype libtz.a clean: clean_misc - rm -fr *.dir tzdb-*/ $(TZS_NEW) + rm -fr *.dir tzdata.zi tzdb-*/ $(TZS_NEW) maintainer-clean: clean @echo 'This command is intended for maintainers to use; it' @@ -664,6 +754,7 @@ set-timestamps.out: $(ENCHILADA) touch -cmr `ls -t $$file workman.sh | sed 1q` $$file.txt || \ exit; \ done + touch -cmr `ls -t $(TZDATA_ZI_DEPS) | sed 1q` tzdata.zi touch -cmr `ls -t $(TZS_DEPS) | sed 1q` $(TZS) touch -cmr `ls -t $(VERSION_DEPS) | sed 1q` version touch $@ @@ -675,7 +766,7 @@ check_public: $(MAKE) maintainer-clean $(MAKE) "CFLAGS=$(GCC_DEBUG_FLAGS)" ALL mkdir -p public.dir - for i in $(TDATA) ; do \ + for i in $(TDATA) tzdata.zi; do \ $(zic) -v -d public.dir $$i 2>&1 || exit; \ done $(zic) -v -d public.dir $(TDATA) @@ -769,8 +860,8 @@ typecheck: $(MAKE) clean ; \ done -zonenames: $(TDATA) - @$(AWK) '/^Zone/ { print $$2 } /^Link/ { print $$3 }' $(TDATA) +zonenames: tzdata.zi + @$(AWK) '/^Z/ { print $$2 } /^L/ { print $$3 }' tzdata.zi asctime.o: private.h tzfile.h date.o: private.h @@ -786,6 +877,7 @@ zic.o: private.h tzfile.h version.h .PHONY: check check_character_set check_links .PHONY: check_public check_sorted check_tables .PHONY: check_time_t_alternatives check_tzs check_web check_white_space +.PHONY: check_zishrink .PHONY: clean clean_misc force_tzs .PHONY: install install_data maintainer-clean names .PHONY: posix_only posix_packrat posix_right diff --git a/db/NEWS b/db/NEWS index a3d1583..bd2bec2 100644 --- a/db/NEWS +++ b/db/NEWS @@ -1,5 +1,303 @@ News for the tz database +Release 2017c - 2017-10-20 14:49:34 -0700 + + Briefly: + Northern Cyprus switches from +03 to +02/+03 on 2017-10-29. + Fiji ends DST 2018-01-14, not 2018-01-21. + Namibia switches from +01/+02 to +02 on 2018-04-01. + Sudan switches from +03 to +02 on 2017-11-01. + Tonga likely switches from +13/+14 to +13 on 2017-11-05. + Turks & Caicos switches from -04 to -05/-04 on 2018-11-04. + A new file tzdata.zi now holds a small text copy of all data. + The zic input format has been regularized slightly. + + Changes to future time stamps + + Northern Cyprus has decided to resume EU rules starting + 2017-10-29, thus reinstituting winter time. + + Fiji ends DST 2018-01-14 instead of the 2018-01-21 previously + predicted. (Thanks to Dominic Fok.) Adjust future predictions + accordingly. + + Namibia will switch from +01 with DST to +02 all year on + 2017-09-03 at 02:00. This affects UT offsets starting 2018-04-01 + at 02:00. (Thanks to Steffen Thorsen.) + + Sudan will switch from +03 to +02 on 2017-11-01. (Thanks to Ahmed + Atyya and Yahia Abdalla.) South Sudan is not switching, so + Africa/Juba is no longer a link to Africa/Khartoum. + + Tonga has likely ended its experiment with DST, and will not + adjust its clocks on 2017-11-05. Although Tonga has not announced + whether it will continue to observe DST, the IATA is assuming that + it will not. (Thanks to David Wade.) + + Turks & Caicos will switch from -04 all year to -05 with US DST on + 2018-03-11 at 03:00. This affects UT offsets starting 2018-11-04 + at 02:00. (Thanks to Steffen Thorsen.) + + Changes to past time stamps + + Namibia switched from +02 to +01 on 1994-03-21, not 1994-04-03. + (Thanks to Arthur David Olson.) + + Detroit did not observe DST in 1967. + + Use railway time for Asia/Kolkata before 1941, by switching to + Madras local time (UT +052110) in 1870, then to IST (UT +0530) in + 1906. Also, treat 1941-2's +0630 as DST, like 1942-5. + + Europe/Dublin's 1946 and 1947 fallback transitions occurred at + 02:00 standard time, not 02:00 DST. (Thanks to Michael Deckers.) + + Pacific/Apia and Pacific/Pago_Pago switched from Antipodean to + American time in 1892, not 1879. (Thanks to Michael Deckers.) + + Adjust the 1867 transition in Alaska to better reflect the + historical record, by changing it to occur on 1867-10-18 at 15:30 + Sitka time rather than at the start of 1867-10-17 local time. + Although strictly speaking this is accurate only for Sitka, + the rest of Alaska's blanks need to be filled in somehow. + + Fix off-by-one errors in UT offsets for Adak and Nome before 1867. + (Thanks to Michael Deckers.) + + Add 7 s to the UT offset in Asia/Yangon before 1920. + + Changes to zone names + + Remove Canada/East-Saskatchewan from the 'backward' file, as it + exceeded the 14-character limit and was an unused misnomer anyway. + + Changes to build procedure + + To support applications that prefer to read time zone data in text + form, two zic input files tzdata.zi and leapseconds are now + installed by default. The commands 'zic tzdata.zi' and 'zic -L + leapseconds tzdata.zi' can reproduce the tzdata binary files + without and with leap seconds, respectively. To prevent these two + new files from being installed, use 'make TZDATA_TEXT=', and to + suppress leap seconds from the tzdata text installation, use 'make + TZDATA_TEXT=tzdata.zi'. + + 'make BACKWARD=' now suppresses backward-compatibility names + like 'US/Pacific' that are defined in the 'backward' and + 'pacificnew' files. + + 'make check' now works on systems that lack a UTF-8 locale, + or that lack the nsgmls program. Set UTF8_LOCALE to configure + the name of a UTF-8 locale, if you have one. + + Y2K runtime checks are no longer enabled by default. Add + -DDEPRECATE_TWO_DIGIT_YEARS to CFLAGS to enable them, instead of + adding -DNO_RUN_TIME_WARNINGS_ABOUT_YEAR_2000_PROBLEMS_THANK_YOU + to disable them. (New name suggested by Brian Inglis.) + + The build procedure for zdump now works on AIX 7.1. + (Problem reported by Kees Dekker.) + + Changes to code + + zic and the reference runtime now reject multiple leap seconds + within 28 days of each other, or leap seconds before the Epoch. + As a result, support for double leap seconds, which was + obsolescent and undocumented, has been removed. Double leap + seconds were an error in the C89 standard; they have never existed + in civil timekeeping. (Thanks to Robert Elz and Bradley White for + noticing glitches in the code that uncovered this problem.) + + zic now warns about use of the obsolescent and undocumented -y + option, and about use of the obsolescent TYPE field of Rule lines. + + zic now allows unambiguous abbreviations like "Sa" and "Su" for + weekdays; formerly it rejected them due to a bug. Conversely, zic + no longer considers non-prefixes to be abbreviations; for example, + it no longer accepts "lF" as an abbreviation for "lastFriday". + Also, zic warns about the undocumented usage with a "last-" + prefix, e.g., "last-Fri". + + Similarly, zic now accepts the unambiguous abbreviation "L" for + "Link" in ordinary context and for "Leap" in leap-second context. + Conversely, zic no longer accepts non-prefixes such as "La" as + abbreviations for words like "Leap". + + zic no longer accepts leap second lines in ordinary input, or + ordinary lines in leap second input. Formerly, zic sometimes + warned about this undocumented usage and handled it incorrectly. + + The new macro HAVE_TZNAME governs whether the tzname external + variable is exported, instead of USG_COMPAT. USG_COMPAT now + governs only the external variables "timezone" and "daylight". + This change is needed because the three variables are not in the + same category: although POSIX requires tzname, it specifies the + other two variables as optional. Also, USG_COMPAT is now 1 or 0: + if not defined, the code attempts to guess it from other macros. + + localtime.c and difftime.c no longer require stdio.h, and .c files + other than zic.c no longer require sys/wait.h. + + zdump.c no longer assumes snprintf. (Reported by Jonathan Leffler.) + + Calculation of time_t extrema works around a bug in GCC 4.8.4 + (Reported by Stan Shebs and Joseph Myers.) + + zic.c no longer mistranslates formats of line numbers in non-English + locales. (Problem reported by Benno Schulenberg.) + + Several minor changes have been made to the code to make it a + bit easier to port to MS-Windows and Solaris. (Thanks to Kees + Dekker for reporting the problems.) + + Changes to documentation and commentary + + The two new files 'theory.html' and 'calendars' contain the + contents of the removed file 'Theory'. The goal is to document + tzdb theory more accessibly. + + The zic man page now documents abbreviation rules. + + tz-link.htm now covers how to apply tzdata changes to clients. + (Thanks to Jorge Fábregas for the AIX link.) It also mentions MySQL. + + The leap-seconds.list URL has been updated to something that is + more reliable for tzdb. (Thanks to Tim Parenti and Brian Inglis.) + +Release 2017b - 2017-03-17 07:30:38 -0700 + + Briefly: Haiti has resumed DST. + + Changes to past and future time stamps + + Haiti resumed observance of DST in 2017. (Thanks to Steffen Thorsen.) + + Changes to past time stamps + + Liberia changed from -004430 to +00 on 1972-01-07, not 1972-05-01. + + Use "MMT" to abbreviate Liberia's time zone before 1972, as "-004430" + is one byte over the POSIX limit. (Problem reported by Derick Rethans.) + + Changes to code + + The reference localtime implementation now falls back on the + current US daylight-saving transition rules rather than the + 1987-2006 rules. This fallback occurs only when (1) the TZ + environment variable's value has a name like "AST4ADT" that asks + for daylight saving time but does not specify the rules, (2) there + is no file by that name, and (3) the TZDEFRULES file cannot be + loaded. (Thanks to Tom Lane.) + + +Release 2017a - 2017-02-28 00:05:36 -0800 + + Briefly: Southern Chile moves from -04/-03 to -03, and Mongolia + discontinues DST. + + Changes to future time stamps + + Mongolia no longer observes DST. (Thanks to Ganbold Tsagaankhuu.) + + Chile's Region of Magallanes moves from -04/-03 to -03 year-round. + Its clocks diverge from America/Santiago starting 2017-05-13 at + 23:00, hiving off a new zone America/Punta_Arenas. Although the + Chilean government says this change expires in May 2019, for now + assume it's permanent. (Thanks to Juan Correa and Deborah + Goldsmith.) This also affects Antarctica/Palmer. + + Changes to past time stamps + + Fix many entries for historical time stamps for Europe/Madrid + before 1979, to agree with tables compiled by Pere Planesas of the + National Astronomical Observatory of Spain. As a side effect, + this changes some time stamps for Africa/Ceuta before 1929, which + are probably guesswork anyway. (Thanks to Steve Allen and + Pierpaolo Bernardi for the heads-ups, and to Michael Deckers for + correcting the 1901 transition.) + + Ecuador observed DST from 1992-11-28 to 1993-02-05. + (Thanks to Alois Treindl.) + + Asia/Atyrau and Asia/Oral were at +03 (not +04) before 1930-06-21. + (Thanks to Stepan Golosunov.) + + Changes to past and future time zone abbreviations + + Switch to numeric time zone abbreviations for South America, as + part of the ongoing project of removing invented abbreviations. + This avoids the need to invent an abbreviation for the new Chilean + new zone. Similarly, switch from invented to numeric time zone + abbreviations for Afghanistan, American Samoa, the Azores, + Bangladesh, Bhutan, the British Indian Ocean Territory, Brunei, + Cape Verde, Chatham Is, Christmas I, Cocos (Keeling) Is, Cook Is, + Dubai, East Timor, Eucla, Fiji, French Polynesia, Greenland, + Indochina, Iran, Iraq, Kiribati, Lord Howe, Macquarie, Malaysia, + the Maldives, Marshall Is, Mauritius, Micronesia, Mongolia, + Myanmar, Nauru, Nepal, New Caledonia, Niue, Norfolk I, Palau, + Papua New Guinea, the Philippines, Pitcairn, Qatar, Réunion, St + Pierre & Miquelon, Samoa, Saudi Arabia, Seychelles, Singapore, + Solomon Is, Tokelau, Tuvalu, Wake, Vanuatu, Wallis & Futuna, and + Xinjiang; for 20-minute daylight saving time in Ghana before 1943; + for half-hour daylight saving time in Belize before 1944 and in + the Dominican Republic before 1975; and for Canary Islands before + 1946, for Guinea-Bissau before 1975, for Iceland before 1969, for + Indian Summer Time before 1942, for Indonesia before around 1964, + for Kenya before 1960, for Liberia before 1973, for Madeira before + 1967, for Namibia before 1943, for the Netherlands in 1937-9, for + Pakistan before 1971, for Western Sahara before 1977, and for + Zaporozhye in 1880-1924. + + For Alaska time from 1900 through 1967, instead of "CAT" use the + abbreviation "AST", the abbreviation commonly used at the time + (Atlantic Standard Time had not been standardized yet). Use "AWT" + and "APT" instead of the invented abbreviations "CAWT" and "CAPT". + + Use "CST" and "CDT" instead of invented abbreviations for Macau + before 1999 and Taiwan before 1938, and use "JST" instead of the + invented abbreviation "JCST" for Japan and Korea before 1938. + + Change to database entry category + + Move the Pacific/Johnston link from 'australasia' to 'backward', + since Johnston is now uninhabited. + + Changes to code + + zic no longer mishandles some transitions in January 2038 when it + attempts to work around Qt bug 53071. This fixes a bug affecting + Pacific/Tongatapu that was introduced in zic 2016e. localtime.c + now contains a workaround, useful when loading a file generated by + a buggy zic. (Problem and localtime.c fix reported by Bradley + White.) + + zdump -i now outputs non-hour numeric time zone abbreviations + without a colon, e.g., "+0530" rather than "+05:30". This agrees + with zic %z and with common practice, and simplifies auditing of + zdump output. + + zdump is now buildable again with -DUSE_LTZ=0. + (Problem reported by Joseph Myers.) + + zdump.c now always includes private.h, to avoid code duplication + with private.h. (Problem reported by Kees Dekker.) + + localtime.c no longer mishandles early or late timestamps + when TZ is set to a POSIX-style string that specifies DST. + (Problem reported by Kees Dekker.) + + date and strftime now cause %z to generate "-0000" instead of + "+0000" when the UT offset is zero and the time zone abbreviation + begins with "-". + + Changes to documentation and commentary + + The 'Theory' file now better documents choice of historical time + zone abbreviations. (Problems reported by Michael Deckers.) + + tz-link.htm now covers leap smearing, which is popular in clouds. + + Release 2016j - 2016-11-22 23:17:13 -0800 Briefly: Saratov, Russia moves from +03 to +04 on 2016-12-04. @@ -13,7 +311,7 @@ Release 2016j - 2016-11-22 23:17:13 -0800 Changes to past time stamps The new zone Asia/Atyrau for Atyraū Region, Kazakhstan, is like - Asia/Aqtau except it switched from +04/+05 to +05/+06 in spring + Asia/Aqtau except it switched from +05/+06 to +04/+05 in spring 1999, not fall 1994. (Thanks to Stepan Golosunov.) Changes to past time zone abbreviations @@ -911,16 +1209,16 @@ Release 2014i - 2014-10-21 22:04:57 -0700 been fixed. (Thanks to Christos Zoulas for reporting most of these problems and for suggesting fixes.) - If USG_COMPAT is defined and the requested time stamp is standard time, + If USG_COMPAT is defined and the requested timestamp is standard time, the tz library's localtime and mktime functions now set the extern - variable timezone to a value appropriate for that time stamp; and + variable timezone to a value appropriate for that timestamp; and similarly for ALTZONE, daylight saving time, and the altzone variable. This change is a companion to the tzname change in 2014h, and is designed to make timezone and altzone more compatible with tzname. The tz library's functions now set errno to EOVERFLOW if they fail because the result cannot be represented. ctime and ctime_r now - return NULL and set errno when a time stamp is out of range, rather + return NULL and set errno when a timestamp is out of range, rather than having undefined behavior. Some bugs associated with the new 2014g functions have been fixed. @@ -937,7 +1235,7 @@ Release 2014i - 2014-10-21 22:04:57 -0700 Release 2014h - 2014-09-25 18:59:03 -0700 - Changes affecting past time stamps + Changes affecting past timestamps America/Jamaica's 1974 spring-forward transition was Jan. 6, not Apr. 28. @@ -945,8 +1243,8 @@ Release 2014h - 2014-09-25 18:59:03 -0700 not 1920-01-06. The old entry was based on a misinterpretation of Shanks. Some more zones have been turned into links, when they differed - from existing zones only for older time stamps. As usual, - these changes affect UTC offsets in pre-1970 time stamps only. + from existing zones only for older timestamps. As usual, + these changes affect UTC offsets in pre-1970 timestamps only. Their old contents have been moved to the 'backzone' file. The affected zones are: Africa/Blantyre, Africa/Bujumbura, Africa/Gaborone, Africa/Harare, Africa/Kigali, Africa/Lubumbashi, @@ -958,7 +1256,7 @@ Release 2014h - 2014-09-25 18:59:03 -0700 not merely on platforms defining TM_GMTOFF. The tz library's localtime and mktime functions now set tzname to a value - appropriate for the requested time stamp, and zdump now uses this + appropriate for the requested timestamp, and zdump now uses this on platforms not defining TM_ZONE, fixing a 2014g regression. (Thanks to Tim Parenti for reporting the problem.) @@ -998,13 +1296,13 @@ Release 2014h - 2014-09-25 18:59:03 -0700 Release 2014g - 2014-08-28 12:31:23 -0700 - Changes affecting future time stamps + Changes affecting future timestamps Turks & Caicos is switching from US eastern time to UT -04 year-round, modeled as a switch on 2014-11-02 at 02:00. [As noted in 2014j, this switch was later delayed.] - Changes affecting past time stamps + Changes affecting past timestamps Time in Russia or the USSR before 1926 or so has been corrected by a few seconds in the following zones: Asia/Irkutsk, @@ -1014,7 +1312,7 @@ Release 2014g - 2014-08-28 12:31:23 -0700 Vladimir Karpinsky.) The Portuguese decree of 1911-05-26 took effect on 1912-01-01. - This affects 1911 time stamps in Africa/Bissau, Africa/Luanda, + This affects 1911 timestamps in Africa/Bissau, Africa/Luanda, Atlantic/Azores, and Atlantic/Madeira. Also, Lisbon's pre-1912 GMT offset was -0:36:45 (rounded from -0:36:44.68), not -0:36:32. (Thanks to Stephen Colebourne for pointing to the decree.) @@ -1022,7 +1320,7 @@ Release 2014g - 2014-08-28 12:31:23 -0700 Asia/Dhaka ended DST on 2009-12-31 at 24:00, not 23:59. A new file 'backzone' contains data which may appeal to - connoisseurs of old time stamps, although it is out of scope for + connoisseurs of old timestamps, although it is out of scope for the tz database, is often poorly sourced, and contains some data that is known to be incorrect. The new file is not recommended for ordinary use and its entries are not installed by default. @@ -1030,8 +1328,8 @@ Release 2014g - 2014-08-28 12:31:23 -0700 Isle of Man entries.) Some more zones have been turned into links, when they differed - from existing zones only for older time stamps. As usual, - these changes affect UTC offsets in pre-1970 time stamps only. + from existing zones only for older timestamps. As usual, + these changes affect UTC offsets in pre-1970 timestamps only. Their old contents have been moved to the 'backzone' file. The affected zones are: Africa/Bangui, Africa/Brazzaville, Africa/Douala, Africa/Kinshasa, Africa/Libreville, Africa/Luanda, @@ -1082,7 +1380,7 @@ Release 2014g - 2014-08-28 12:31:23 -0700 but does not cause other problems such as traps. If TM_GMTOFF is defined and UNINIT_TRAP is 0, mktime is now - more likely to guess right for ambiguous time stamps near + more likely to guess right for ambiguous timestamps near transitions where tm_isdst does not change. If HAVE_STRFTIME_L is defined to 1, the tz library now defines @@ -1155,7 +1453,7 @@ Release 2014g - 2014-08-28 12:31:23 -0700 Release 2014f - 2014-08-05 17:42:36 -0700 - Changes affecting future time stamps + Changes affecting future timestamps Russia will subtract an hour from most of its time zones on 2014-10-26 at 02:00 local time. (Thanks to Alexander Krivenyshev.) @@ -1206,20 +1504,20 @@ Release 2014f - 2014-08-05 17:42:36 -0700 These abbreviations are now used for time in Korea, Taiwan, and Sakhalin while controlled by Japan. - Changes affecting past time stamps + Changes affecting past timestamps China's five zones have been simplified to two, since the post-1970 differences in the other three seem to have been imaginary. The zones Asia/Harbin, Asia/Chongqing, and Asia/Kashgar have been removed; backwards-compatibility links still work, albeit with - different behaviors for time stamps before May 1980. Asia/Urumqi's + different behaviors for timestamps before May 1980. Asia/Urumqi's 1980 transition to UT +08 has been removed, so that it is now at +06 and not +08. (Thanks to Luther Ma and to Alois Treindl; Treindl sent helpful translations of two papers by Guo Qingsheng.) Some zones have been turned into links, when they differed from existing zones only for older UTC offsets where data entries were likely invented. - These changes affect UTC offsets in pre-1970 time stamps only. This is + These changes affect UTC offsets in pre-1970 timestamps only. This is similar to the change in release 2013e, except this time for western Africa. The affected zones are: Africa/Bamako, Africa/Banjul, Africa/Conakry, Africa/Dakar, Africa/Freetown, Africa/Lome, @@ -1364,7 +1662,7 @@ Release 2014f - 2014-08-05 17:42:36 -0700 Release 2014e - 2014-06-12 21:53:52 -0700 - Changes affecting near-future time stamps + Changes affecting near-future timestamps Egypt's 2014 Ramadan-based transitions are June 26 and July 31 at 24:00. (Thanks to Imed Chihi.) Guess that from 2015 on Egypt will temporarily @@ -1376,7 +1674,7 @@ Release 2014e - 2014-06-12 21:53:52 -0700 temporarily switch to standard time at 03:00 the last Saturday before Ramadan, and back to DST at 02:00 the first Saturday after Ramadan. - Changes affecting past time stamps + Changes affecting past timestamps The abbreviation "MSM" (Moscow Midsummer Time) is now used instead of "MSD" for Moscow's double daylight time in summer 1921. Also, a typo @@ -1394,7 +1692,7 @@ Release 2014d - 2014-05-27 21:34:40 -0700 Changes affecting code - zic no longer generates files containing time stamps before the Big Bang. + zic no longer generates files containing timestamps before the Big Bang. This works around GNOME bug 730332 . (Thanks to Leonardo Chiquitto for reporting the bug, and to @@ -1407,7 +1705,7 @@ Release 2014d - 2014-05-27 21:34:40 -0700 Release 2014c - 2014-05-13 07:44:13 -0700 - Changes affecting near-future time stamps + Changes affecting near-future timestamps Egypt observes DST starting 2014-05-15 at 24:00. (Thanks to Ahmad El-Dardiry and Gunther Vermier.) @@ -1421,7 +1719,7 @@ Release 2014c - 2014-05-13 07:44:13 -0700 Changes affecting code zic now generates transitions for minimum time values, eliminating guesswork - when handling low-valued time stamps. (Thanks to Arthur David Olson.) + when handling low-valued timestamps. (Thanks to Arthur David Olson.) Port to Cygwin sans glibc. (Thanks to Arthur David Olson.) @@ -1432,7 +1730,7 @@ Release 2014c - 2014-05-13 07:44:13 -0700 Release 2014b - 2014-03-24 21:28:50 -0700 - Changes affecting near-future time stamps + Changes affecting near-future timestamps Crimea switches to Moscow time on 2014-03-30 at 02:00 local time. (Thanks to Alexander Krivenyshev.) Move its zone.tab entry from UA to RU. @@ -1471,12 +1769,12 @@ Release 2014b - 2014-03-24 21:28:50 -0700 Release 2014a - 2014-03-07 23:30:29 -0800 - Changes affecting near-future time stamps + Changes affecting near-future timestamps Turkey begins DST on 2014-03-31, not 03-30. (Thanks to Faruk Pasin for the heads-up, and to Tim Parenti for simplifying the update.) - Changes affecting past time stamps + Changes affecting past timestamps Fiji ended DST on 2014-01-19 at 02:00, not the previously-scheduled 03:00. (Thanks to Steffen Thorsen.) @@ -1540,13 +1838,13 @@ Release 2014a - 2014-03-07 23:30:29 -0800 Release 2013i - 2013-12-17 07:25:23 -0800 - Changes affecting near-future time stamps: + Changes affecting near-future timestamps: Jordan switches back to standard time at 00:00 on December 20, 2013. The 2006-2011 transition schedule is planned to resume in 2014. (Thanks to Steffen Thorsen.) - Changes affecting past time stamps: + Changes affecting past timestamps: In 2004, Cuba began DST on March 28, not April 4. (Thanks to Steffen Thorsen.) @@ -1570,7 +1868,7 @@ Release 2013i - 2013-12-17 07:25:23 -0800 Release 2013h - 2013-10-25 15:32:32 -0700 - Changes affecting current and future time stamps: + Changes affecting current and future timestamps: Libya has switched its UT offset back to +02 without DST, instead of +01 with DST. (Thanks to Even Scharning.) @@ -1578,7 +1876,7 @@ Release 2013h - 2013-10-25 15:32:32 -0700 Western Sahara (Africa/El_Aaiun) uses Morocco's DST rules. (Thanks to Gwillim Law.) - Changes affecting future time stamps: + Changes affecting future timestamps: Acre and (we guess) western Amazonas will switch from UT -04 to -05 on 2013-11-10. This affects America/Rio_Branco and America/Eirunepe. @@ -1629,7 +1927,7 @@ Release 2013h - 2013-10-25 15:32:32 -0700 Release 2013g - 2013-09-30 21:08:26 -0700 - Changes affecting current and near-future time stamps + Changes affecting current and near-future timestamps Morocco now observes DST from the last Sunday in March to the last Sunday in October, not April to September respectively. (Thanks @@ -1662,7 +1960,7 @@ Release 2013g - 2013-09-30 21:08:26 -0700 Release 2013f - 2013-09-24 23:37:36 -0700 - Changes affecting near-future time stamps + Changes affecting near-future timestamps Tocantins will very likely not observe DST starting this spring. (Thanks to Steffen Thorsen.) @@ -1709,7 +2007,7 @@ Release 2013f - 2013-09-24 23:37:36 -0700 Release 2013e - 2013-09-19 23:50:04 -0700 - Changes affecting near-future time stamps + Changes affecting near-future timestamps This year Fiji will start DST on October 27, not October 20. (Thanks to David Wheeler for the heads-up.) For now, guess that @@ -1727,13 +2025,13 @@ Release 2013e - 2013-09-19 23:50:04 -0700 Use ART (UT -03, standard time), rather than WARST (also -03, but daylight saving time) for San Luis, Argentina since 2009. - Changes affecting Godthåb time stamps after 2037 if version mismatch + Changes affecting Godthåb timestamps after 2037 if version mismatch Allow POSIX-like TZ strings where the transition time's hour can range from -167 through 167, instead of the POSIX-required 0 through 24. E.g., TZ='FJT-12FJST,M10.3.1/146,M1.3.4/75' for the new Fiji rules. This is a more-compact way to represent - far-future time stamps for America/Godthab, America/Santiago, + far-future timestamps for America/Godthab, America/Santiago, Antarctica/Palmer, Asia/Gaza, Asia/Hebron, Asia/Jerusalem, Pacific/Easter, and Pacific/Fiji. Other zones are unaffected by this change. (Derived from a suggestion by Arthur David Olson.) @@ -1751,12 +2049,12 @@ Release 2013e - 2013-09-19 23:50:04 -0700 embedded TZ-format string, and the tz file format version number has therefore been increased from 2 to 3 as a precaution. Version-2-based client code should continue to work as before for - all time stamps before 2038. Existing version-2-based client code + all timestamps before 2038. Existing version-2-based client code (tzcode, GNU/Linux, Solaris) has been tested on version-3-format - files, and typically works in practice even for time stamps after + files, and typically works in practice even for timestamps after 2037; the only known exception is America/Godthab. - Changes affecting time stamps before 1970 + Changes affecting timestamps before 1970 Pacific/Johnston is now a link to Pacific/Honolulu. This corrects some errors before 1947. @@ -1764,7 +2062,7 @@ Release 2013e - 2013-09-19 23:50:04 -0700 Some zones have been turned into links, when they differ from existing zones only in older data entries that were likely invented or that differ only in LMT or transitions from LMT. These changes affect - only time stamps before 1943. The affected zones are: + only timestamps before 1943. The affected zones are: Africa/Juba, America/Anguilla, America/Aruba, America/Dominica, America/Grenada, America/Guadeloupe, America/Marigot, America/Montserrat, America/St_Barthelemy, America/St_Kitts, @@ -1774,11 +2072,11 @@ Release 2013e - 2013-09-19 23:50:04 -0700 link is better for WWII-era times.) Change Kingston Mean Time from -5:07:12 to -5:07:11. This affects - America/Cayman, America/Jamaica and America/Grand_Turk time stamps + America/Cayman, America/Jamaica and America/Grand_Turk timestamps from 1890 to 1912. Change the UT offset of Bern Mean Time from 0:29:44 to 0:29:46. - This affects Europe/Zurich time stamps from 1853 to 1894. (Thanks + This affects Europe/Zurich timestamps from 1853 to 1894. (Thanks to Alois Treindl). Change the date of the circa-1850 Zurich transition from 1849-09-12 @@ -1796,7 +2094,7 @@ Release 2013e - 2013-09-19 23:50:04 -0700 data can't be summarized using a TZ string, and uses a 402-year window rather than a 400-year window. For the current data, this affects only the Asia/Tehran file. It does not affect any of the - time stamps that this file represents, so zdump outputs the same + timestamps that this file represents, so zdump outputs the same information as before. (Thanks to Andrew Main (Zefram).) The 'date' command has a new '-r' option, which lets you specify @@ -1828,7 +2126,7 @@ Release 2013e - 2013-09-19 23:50:04 -0700 Changes affecting the zdump utility zdump now outputs "UT" when referring to Universal Time, not "UTC". - "UTC" does not make sense for time stamps that predate the introduction + "UTC" does not make sense for timestamps that predate the introduction of UTC, whereas "UT", a more-generic term, does. (Thanks to Steve Allen for clarifying UT vs UTC.) @@ -1839,7 +2137,7 @@ Release 2013e - 2013-09-19 23:50:04 -0700 Remove from zone.tab the names America/Montreal, America/Shiprock, and Antarctica/South_Pole, as they are equivalent to existing - same-country-code zones for post-1970 time stamps. The data entries for + same-country-code zones for post-1970 timestamps. The data entries for these names are unchanged, so the names continue to work as before. Changes affecting code internals @@ -1857,7 +2155,7 @@ Release 2013e - 2013-09-19 23:50:04 -0700 The 'leapseconds' file is now generated automatically from a new file 'leap-seconds.list', which is a copy of - . + A new source file 'leapseconds.awk' implements this. The goal is simplification of the future maintenance of 'leapseconds'. @@ -1899,7 +2197,7 @@ Release 2013e - 2013-09-19 23:50:04 -0700 There is a new section about the accuracy of the tz database, describing the many ways that errors can creep in, and - explaining why so many of the pre-1970 time stamps are wrong or + explaining why so many of the pre-1970 timestamps are wrong or misleading (thanks to Steve Allen, Lester Caine, and Garrett Wollman for discussions that contributed to this). @@ -1934,7 +2232,7 @@ Release 2013e - 2013-09-19 23:50:04 -0700 Release 2013d - 2013-07-05 07:38:01 -0700 - Changes affecting future time stamps: + Changes affecting future timestamps: Morocco's midsummer transitions this year are July 7 and August 10, not July 9 and August 8. (Thanks to Andrew Paprocki.) @@ -1942,7 +2240,7 @@ Release 2013d - 2013-07-05 07:38:01 -0700 Israel now falls back on the last Sunday of October. (Thanks to Ephraim Silverberg.) - Changes affecting past time stamps: + Changes affecting past timestamps: Specify Jerusalem's location more precisely; this changes the pre-1880 times by 2 s. @@ -1980,7 +2278,7 @@ Release 2013d - 2013-07-05 07:38:01 -0700 Release 2013c - 2013-04-19 16:17:40 -0700 - Changes affecting current and future time stamps: + Changes affecting current and future timestamps: Palestine observed DST starting March 29, 2013. (Thanks to Steffen Thorsen.) From 2013 on, Gaza and Hebron both observe DST, @@ -1991,7 +2289,7 @@ Release 2013c - 2013-04-19 16:17:40 -0700 by moving the end of DST to the 4th Sunday in March every year. (Thanks to Carlos Raúl Perasso.) - Changes affecting past time stamps: + Changes affecting past timestamps: Fix some historical data for Palestine to agree with that of timeanddate.com, as follows: @@ -2025,10 +2323,10 @@ Release 2013c - 2013-04-19 16:17:40 -0700 Release 2013b - 2013-03-10 22:33:40 -0700 - Changes affecting current and future time stamps: + Changes affecting current and future timestamps: Haiti uses US daylight-saving rules this year, and presumably future years. - This changes time stamps starting today. (Thanks to Steffen Thorsen.) + This changes timestamps starting today. (Thanks to Steffen Thorsen.) Paraguay will end DST on March 24 this year. (Thanks to Steffen Thorsen.) For now, assume it's just this year. @@ -2052,7 +2350,7 @@ Release 2013a - 2013-02-27 09:20:35 -0800 The zone offset at the end of version-2-format zone files is now allowed to be 24:00, as per POSIX.1-2008. (Thanks to Arthur David Olson.) - Changes affecting current and future time stamps: + Changes affecting current and future timestamps: Chile's 2013 rules, and we guess rules for 2014 and later, will be the same as 2012, namely Apr Sun>=23 03:00 UTC to Sep Sun>=2 04:00 UTC. @@ -2061,9 +2359,9 @@ Release 2013a - 2013-02-27 09:20:35 -0800 New Zones Asia/Khandyga, Asia/Ust-Nera, Europe/Busingen. (Thanks to Tobias Conradi and Arthur David Olson.) - Many changes affect historical time stamps before 1940. + Many changes affect historical timestamps before 1940. These were deduced from: Milne J. Civil time. Geogr J. 1899 - Feb;13(2):173-94 . + Feb;13(2):173-94 . Changes affecting the code: @@ -2193,7 +2491,7 @@ Release 2012e - 2012-08-02 20:44:55 -0700 Release code2012c-data2012d - 2012-07-19 16:35:33 -0700 - Changes for Morocco's time stamps, which take effect in a couple of + Changes for Morocco's timestamps, which take effect in a couple of hours, along with infrastructure changes to accommodate how the tz code and data are released on IANA. @@ -2337,12 +2635,12 @@ Release 2011e - 2011-03-31 16:04:38 -0400 Release 2011d - 2011-03-14 09:18:01 -0400 - changes that impact present-day time stamps in Cuba, Samoa, and Turkey + changes that impact present-day timestamps in Cuba, Samoa, and Turkey Release 2011c - 2011-03-07 09:30:09 -0500 - These do affect current time stamps in Chile and Annette Island, Canada. + These do affect current timestamps in Chile and Annette Island, Canada. Release 2011b - 2011-02-07 08:44:50 -0500 @@ -3807,7 +4105,7 @@ few (e.g., code2012c-data2012d) have tarballs with mixed version numbers. Recent releases also come in an experimental format consisting of a single tarball tzdb-R.tar.lz with extra data. -Release time stamps are taken from the release's commit (for newer, +Release timestamps are taken from the release's commit (for newer, Git-based releases), from the newest file in the tarball (for older releases, where this info is available) or from the email announcing the release (if all else fails; these are marked with a time zone of diff --git a/db/Theory b/db/Theory deleted file mode 100644 index ea4b35d..0000000 --- a/db/Theory +++ /dev/null @@ -1,857 +0,0 @@ -Theory and pragmatics of the tz code and data - - ------ Outline ----- - - Scope of the tz database - Names of time zone rules - Time zone abbreviations - Accuracy of the tz database - Time and date functions - Interface stability - Calendrical issues - Time and time zones on Mars - - ------ Scope of the tz database ----- - -The tz database attempts to record the history and predicted future of -all computer-based clocks that track civil time. To represent this -data, the world is partitioned into regions whose clocks all agree -about time stamps that occur after the somewhat-arbitrary cutoff point -of the POSIX Epoch (1970-01-01 00:00:00 UTC). For each such region, -the database records all known clock transitions, and labels the region -with a notable location. Although 1970 is a somewhat-arbitrary -cutoff, there are significant challenges to moving the cutoff earlier -even by a decade or two, due to the wide variety of local practices -before computer timekeeping became prevalent. - -Clock transitions before 1970 are recorded for each such location, -because most systems support time stamps before 1970 and could -misbehave if data entries were omitted for pre-1970 transitions. -However, the database is not designed for and does not suffice for -applications requiring accurate handling of all past times everywhere, -as it would take far too much effort and guesswork to record all -details of pre-1970 civil timekeeping. - -As described below, reference source code for using the tz database is -also available. The tz code is upwards compatible with POSIX, an -international standard for UNIX-like systems. As of this writing, the -current edition of POSIX is: - - The Open Group Base Specifications Issue 7 - IEEE Std 1003.1, 2013 Edition - - - - ------ Names of time zone rules ----- - -Each of the database's time zone rules has a unique name. -Inexperienced users are not expected to select these names unaided. -Distributors should provide documentation and/or a simple selection -interface that explains the names; for one example, see the 'tzselect' -program in the tz code. The Unicode Common Locale Data Repository - contains data that may be useful for other -selection interfaces. - -The time zone rule naming conventions attempt to strike a balance -among the following goals: - - * Uniquely identify every region where clocks have agreed since 1970. - This is essential for the intended use: static clocks keeping local - civil time. - - * Indicate to experts where that region is. - - * Be robust in the presence of political changes. For example, names - of countries are ordinarily not used, to avoid incompatibilities - when countries change their name (e.g. Zaire->Congo) or when - locations change countries (e.g. Hong Kong from UK colony to - China). - - * Be portable to a wide variety of implementations. - - * Use a consistent naming conventions over the entire world. - -Names normally have the form AREA/LOCATION, where AREA is the name -of a continent or ocean, and LOCATION is the name of a specific -location within that region. North and South America share the same -area, 'America'. Typical names are 'Africa/Cairo', 'America/New_York', -and 'Pacific/Honolulu'. - -Here are the general rules used for choosing location names, -in decreasing order of importance: - - Use only valid POSIX file name components (i.e., the parts of - names other than '/'). Do not use the file name - components '.' and '..'. Within a file name component, - use only ASCII letters, '.', '-' and '_'. Do not use - digits, as that might create an ambiguity with POSIX - TZ strings. A file name component must not exceed 14 - characters or start with '-'. E.g., prefer 'Brunei' - to 'Bandar_Seri_Begawan'. Exceptions: see the discussion - of legacy names below. - A name must not be empty, or contain '//', or start or end with '/'. - Do not use names that differ only in case. Although the reference - implementation is case-sensitive, some other implementations - are not, and they would mishandle names differing only in case. - If one name A is an initial prefix of another name AB (ignoring case), - then B must not start with '/', as a regular file cannot have - the same name as a directory in POSIX. For example, - 'America/New_York' precludes 'America/New_York/Bronx'. - Uninhabited regions like the North Pole and Bouvet Island - do not need locations, since local time is not defined there. - There should typically be at least one name for each ISO 3166-1 - officially assigned two-letter code for an inhabited country - or territory. - If all the clocks in a region have agreed since 1970, - don't bother to include more than one location - even if subregions' clocks disagreed before 1970. - Otherwise these tables would become annoyingly large. - If a name is ambiguous, use a less ambiguous alternative; - e.g. many cities are named San José and Georgetown, so - prefer 'Costa_Rica' to 'San_Jose' and 'Guyana' to 'Georgetown'. - Keep locations compact. Use cities or small islands, not countries - or regions, so that any future time zone changes do not split - locations into different time zones. E.g. prefer 'Paris' - to 'France', since France has had multiple time zones. - Use mainstream English spelling, e.g. prefer 'Rome' to 'Roma', and - prefer 'Athens' to the Greek 'Αθήνα' or the Romanized 'Athína'. - The POSIX file name restrictions encourage this rule. - Use the most populous among locations in a zone, - e.g. prefer 'Shanghai' to 'Beijing'. Among locations with - similar populations, pick the best-known location, - e.g. prefer 'Rome' to 'Milan'. - Use the singular form, e.g. prefer 'Canary' to 'Canaries'. - Omit common suffixes like '_Islands' and '_City', unless that - would lead to ambiguity. E.g. prefer 'Cayman' to - 'Cayman_Islands' and 'Guatemala' to 'Guatemala_City', - but prefer 'Mexico_City' to 'Mexico' because the country - of Mexico has several time zones. - Use '_' to represent a space. - Omit '.' from abbreviations in names, e.g. prefer 'St_Helena' - to 'St._Helena'. - Do not change established names if they only marginally - violate the above rules. For example, don't change - the existing name 'Rome' to 'Milan' merely because - Milan's population has grown to be somewhat greater - than Rome's. - If a name is changed, put its old spelling in the 'backward' file. - This means old spellings will continue to work. - -The file 'zone1970.tab' lists geographical locations used to name time -zone rules. It is intended to be an exhaustive list of names for -geographic regions as described above; this is a subset of the names -in the data. Although a 'zone1970.tab' location's longitude -corresponds to its LMT offset with one hour for every 15 degrees east -longitude, this relationship is not exact. - -Older versions of this package used a different naming scheme, -and these older names are still supported. -See the file 'backward' for most of these older names -(e.g., 'US/Eastern' instead of 'America/New_York'). -The other old-fashioned names still supported are -'WET', 'CET', 'MET', and 'EET' (see the file 'europe'). - -Older versions of this package defined legacy names that are -incompatible with the first rule of location names, but which are -still supported. These legacy names are mostly defined in the file -'etcetera'. Also, the file 'backward' defines the legacy names -'GMT0', 'GMT-0', 'GMT+0' and 'Canada/East-Saskatchewan', and the file -'northamerica' defines the legacy names 'EST5EDT', 'CST6CDT', -'MST7MDT', and 'PST8PDT'. - -Excluding 'backward' should not affect the other data. If -'backward' is excluded, excluding 'etcetera' should not affect the -remaining data. - - ------ Time zone abbreviations ----- - -When this package is installed, it generates time zone abbreviations -like 'EST' to be compatible with human tradition and POSIX. -Here are the general rules used for choosing time zone abbreviations, -in decreasing order of importance: - - Use three or more characters that are ASCII alphanumerics or '+' or '-'. - Previous editions of this database also used characters like - ' ' and '?', but these characters have a special meaning to - the shell and cause commands like - set `date` - to have unexpected effects. - Previous editions of this rule required upper-case letters, - but the Congressman who introduced Chamorro Standard Time - preferred "ChST", so lower-case letters are now allowed. - Also, POSIX from 2001 on relaxed the rule to allow '-', '+', - and alphanumeric characters from the portable character set - in the current locale. In practice ASCII alphanumerics and - '+' and '-' are safe in all locales. - - In other words, in the C locale the POSIX extended regular - expression [-+[:alnum:]]{3,} should match the abbreviation. - This guarantees that all abbreviations could have been - specified by a POSIX TZ string. - - Use abbreviations that are in common use among English-speakers, - e.g. 'EST' for Eastern Standard Time in North America. - We assume that applications translate them to other languages - as part of the normal localization process; for example, - a French application might translate 'EST' to 'HNE'. - - For zones whose times are taken from a city's longitude, use the - traditional xMT notation, e.g. 'PMT' for Paris Mean Time. - The only name like this in current use is 'GMT'. - - Use 'LMT' for local mean time of locations before the introduction - of standard time; see "Scope of the tz database". - - If there is no common English abbreviation, use numeric offsets like - -05 and +0830 that are generated by zic's %z notation. - - [The remaining guidelines predate the introduction of %z. - They are problematic as they mean tz data entries invent - notation rather than record it. These guidelines are now - deprecated and the plan is to gradually move to %z for - inhabited locations and to "-00" for uninhabited locations.] - - If there is no common English abbreviation, abbreviate the English - translation of the usual phrase used by native speakers. - If this is not available or is a phrase mentioning the country - (e.g. "Cape Verde Time"), then: - - When a country is identified with a single or principal zone, - append 'T' to the country's ISO code, e.g. 'CVT' for - Cape Verde Time. For summer time append 'ST'; - for double summer time append 'DST'; etc. - Otherwise, take the first three letters of an English place - name identifying each zone and append 'T', 'ST', etc. - as before; e.g. 'VLAST' for VLAdivostok Summer Time. - - Use UT (with time zone abbreviation '-00') for locations while - uninhabited. The leading '-' is a flag that the time - zone is in some sense undefined; this notation is - derived from Internet RFC 3339. - -Application writers should note that these abbreviations are ambiguous -in practice: e.g. 'CST' has a different meaning in China than -it does in the United States. In new applications, it's often better -to use numeric UT offsets like '-0600' instead of time zone -abbreviations like 'CST'; this avoids the ambiguity. - - ------ Accuracy of the tz database ----- - -The tz database is not authoritative, and it surely has errors. -Corrections are welcome and encouraged; see the file CONTRIBUTING. -Users requiring authoritative data should consult national standards -bodies and the references cited in the database's comments. - -Errors in the tz database arise from many sources: - - * The tz database predicts future time stamps, and current predictions - will be incorrect after future governments change the rules. - For example, if today someone schedules a meeting for 13:00 next - October 1, Casablanca time, and tomorrow Morocco changes its - daylight saving rules, software can mess up after the rule change - if it blithely relies on conversions made before the change. - - * The pre-1970 entries in this database cover only a tiny sliver of how - clocks actually behaved; the vast majority of the necessary - information was lost or never recorded. Thousands more zones would - be needed if the tz database's scope were extended to cover even - just the known or guessed history of standard time; for example, - the current single entry for France would need to split into dozens - of entries, perhaps hundreds. And in most of the world even this - approach would be misleading due to widespread disagreement or - indifference about what times should be observed. In her 2015 book - "The Global Transformation of Time, 1870-1950", Vanessa Ogle writes - "Outside of Europe and North America there was no system of time - zones at all, often not even a stable landscape of mean times, - prior to the middle decades of the twentieth century". See: - Timothy Shenk, Booked: A Global History of Time. Dissent 2015-12-17 - https://www.dissentmagazine.org/blog/booked-a-global-history-of-time-vanessa-ogle - - * Most of the pre-1970 data entries come from unreliable sources, often - astrology books that lack citations and whose compilers evidently - invented entries when the true facts were unknown, without - reporting which entries were known and which were invented. - These books often contradict each other or give implausible entries, - and on the rare occasions when they are checked they are - typically found to be incorrect. - - * For the UK the tz database relies on years of first-class work done by - Joseph Myers and others; see . - Other countries are not done nearly as well. - - * Sometimes, different people in the same city would maintain clocks - that differed significantly. Railway time was used by railroad - companies (which did not always agree with each other), - church-clock time was used for birth certificates, etc. - Often this was merely common practice, but sometimes it was set by law. - For example, from 1891 to 1911 the UT offset in France was legally - 0:09:21 outside train stations and 0:04:21 inside. - - * Although a named location in the tz database stands for the - containing region, its pre-1970 data entries are often accurate for - only a small subset of that region. For example, Europe/London - stands for the United Kingdom, but its pre-1847 times are valid - only for locations that have London's exact meridian, and its 1847 - transition to GMT is known to be valid only for the L&NW and the - Caledonian railways. - - * The tz database does not record the earliest time for which a zone's - data entries are thereafter valid for every location in the region. - For example, Europe/London is valid for all locations in its - region after GMT was made the standard time, but the date of - standardization (1880-08-02) is not in the tz database, other than - in commentary. For many zones the earliest time of validity is - unknown. - - * The tz database does not record a region's boundaries, and in many - cases the boundaries are not known. For example, the zone - America/Kentucky/Louisville represents a region around the city of - Louisville, the boundaries of which are unclear. - - * Changes that are modeled as instantaneous transitions in the tz - database were often spread out over hours, days, or even decades. - - * Even if the time is specified by law, locations sometimes - deliberately flout the law. - - * Early timekeeping practices, even assuming perfect clocks, were - often not specified to the accuracy that the tz database requires. - - * Sometimes historical timekeeping was specified more precisely - than what the tz database can handle. For example, from 1909 to - 1937 Netherlands clocks were legally UT +00:19:32.13, but the tz - database cannot represent the fractional second. - - * Even when all the timestamp transitions recorded by the tz database - are correct, the tz rules that generate them may not faithfully - reflect the historical rules. For example, from 1922 until World - War II the UK moved clocks forward the day following the third - Saturday in April unless that was Easter, in which case it moved - clocks forward the previous Sunday. Because the tz database has no - way to specify Easter, these exceptional years are entered as - separate tz Rule lines, even though the legal rules did not change. - - * The tz database models pre-standard time using the proleptic Gregorian - calendar and local mean time (LMT), but many people used other - calendars and other timescales. For example, the Roman Empire used - the Julian calendar, and had 12 varying-length daytime hours with a - non-hour-based system at night. - - * Early clocks were less reliable, and data entries do not represent - clock error. - - * The tz database assumes Universal Time (UT) as an origin, even - though UT is not standardized for older time stamps. In the tz - database commentary, UT denotes a family of time standards that - includes Coordinated Universal Time (UTC) along with other variants - such as UT1 and GMT, with days starting at midnight. Although UT - equals UTC for modern time stamps, UTC was not defined until 1960, - so commentary uses the more-general abbreviation UT for time stamps - that might predate 1960. Since UT, UT1, etc. disagree slightly, - and since pre-1972 UTC seconds varied in length, interpretation of - older time stamps can be problematic when subsecond accuracy is - needed. - - * Civil time was not based on atomic time before 1972, and we don't - know the history of earth's rotation accurately enough to map SI - seconds to historical solar time to more than about one-hour - accuracy. See: Morrison LV, Stephenson FR. - Historical values of the Earth's clock error Delta T and the - calculation of eclipses. J Hist Astron. 2004;35:327-36 - ; - Historical values of the Earth's clock error. J Hist Astron. 2005;36:339 - . - - * The relationship between POSIX time (that is, UTC but ignoring leap - seconds) and UTC is not agreed upon after 1972. Although the POSIX - clock officially stops during an inserted leap second, at least one - proposed standard has it jumping back a second instead; and in - practice POSIX clocks more typically either progress glacially during - a leap second, or are slightly slowed while near a leap second. - - * The tz database does not represent how uncertain its information is. - Ideally it would contain information about when data entries are - incomplete or dicey. Partial temporal knowledge is a field of - active research, though, and it's not clear how to apply it here. - -In short, many, perhaps most, of the tz database's pre-1970 and future -time stamps are either wrong or misleading. Any attempt to pass the -tz database off as the definition of time should be unacceptable to -anybody who cares about the facts. In particular, the tz database's -LMT offsets should not be considered meaningful, and should not prompt -creation of zones merely because two locations differ in LMT or -transitioned to standard time at different dates. - - ------ Time and date functions ----- - -The tz code contains time and date functions that are upwards -compatible with those of POSIX. - -POSIX has the following properties and limitations. - -* In POSIX, time display in a process is controlled by the - environment variable TZ. Unfortunately, the POSIX TZ string takes - a form that is hard to describe and is error-prone in practice. - Also, POSIX TZ strings can't deal with other (for example, Israeli) - daylight saving time rules, or situations where more than two - time zone abbreviations are used in an area. - - The POSIX TZ string takes the following form: - - stdoffset[dst[offset][,date[/time],date[/time]]] - - where: - - std and dst - are 3 or more characters specifying the standard - and daylight saving time (DST) zone names. - Starting with POSIX.1-2001, std and dst may also be - in a quoted form like ""; this allows - "+" and "-" in the names. - offset - is of the form '[+-]hh:[mm[:ss]]' and specifies the - offset west of UT. 'hh' may be a single digit; 0<=hh<=24. - The default DST offset is one hour ahead of standard time. - date[/time],date[/time] - specifies the beginning and end of DST. If this is absent, - the system supplies its own rules for DST, and these can - differ from year to year; typically US DST rules are used. - time - takes the form 'hh:[mm[:ss]]' and defaults to 02:00. - This is the same format as the offset, except that a - leading '+' or '-' is not allowed. - date - takes one of the following forms: - Jn (1<=n<=365) - origin-1 day number not counting February 29 - n (0<=n<=365) - origin-0 day number counting February 29 if present - Mm.n.d (0[Sunday]<=d<=6[Saturday], 1<=n<=5, 1<=m<=12) - for the dth day of week n of month m of the year, - where week 1 is the first week in which day d appears, - and '5' stands for the last week in which day d appears - (which may be either the 4th or 5th week). - Typically, this is the only useful form; - the n and Jn forms are rarely used. - - Here is an example POSIX TZ string, for US Pacific time using rules - appropriate from 1987 through 2006: - - TZ='PST8PDT,M4.1.0/02:00,M10.5.0/02:00' - - This POSIX TZ string is hard to remember, and mishandles time stamps - before 1987 and after 2006. With this package you can use this - instead: - - TZ='America/Los_Angeles' - -* POSIX does not define the exact meaning of TZ values like "EST5EDT". - Typically the current US DST rules are used to interpret such values, - but this means that the US DST rules are compiled into each program - that does time conversion. This means that when US time conversion - rules change (as in the United States in 1987), all programs that - do time conversion must be recompiled to ensure proper results. - -* The TZ environment variable is process-global, which makes it hard - to write efficient, thread-safe applications that need access - to multiple time zones. - -* In POSIX, there's no tamper-proof way for a process to learn the - system's best idea of local wall clock. (This is important for - applications that an administrator wants used only at certain times - - without regard to whether the user has fiddled the "TZ" environment - variable. While an administrator can "do everything in UTC" to get - around the problem, doing so is inconvenient and precludes handling - daylight saving time shifts - as might be required to limit phone - calls to off-peak hours.) - -* POSIX provides no convenient and efficient way to determine the UT - offset and time zone abbreviation of arbitrary time stamps, - particularly for time zone settings that do not fit into the - POSIX model. - -* POSIX requires that systems ignore leap seconds. - -* The tz code attempts to support all the time_t implementations - allowed by POSIX. The time_t type represents a nonnegative count of - seconds since 1970-01-01 00:00:00 UTC, ignoring leap seconds. - In practice, time_t is usually a signed 64- or 32-bit integer; 32-bit - signed time_t values stop working after 2038-01-19 03:14:07 UTC, so - new implementations these days typically use a signed 64-bit integer. - Unsigned 32-bit integers are used on one or two platforms, - and 36-bit and 40-bit integers are also used occasionally. - Although earlier POSIX versions allowed time_t to be a - floating-point type, this was not supported by any practical - systems, and POSIX.1-2013 and the tz code both require time_t - to be an integer type. - -These are the extensions that have been made to the POSIX functions: - -* The "TZ" environment variable is used in generating the name of a file - from which time zone information is read (or is interpreted a la - POSIX); "TZ" is no longer constrained to be a three-letter time zone - name followed by a number of hours and an optional three-letter - daylight time zone name. The daylight saving time rules to be used - for a particular time zone are encoded in the time zone file; - the format of the file allows U.S., Australian, and other rules to be - encoded, and allows for situations where more than two time zone - abbreviations are used. - - It was recognized that allowing the "TZ" environment variable to - take on values such as "America/New_York" might cause "old" programs - (that expect "TZ" to have a certain form) to operate incorrectly; - consideration was given to using some other environment variable - (for example, "TIMEZONE") to hold the string used to generate the - time zone information file name. In the end, however, it was decided - to continue using "TZ": it is widely used for time zone purposes; - separately maintaining both "TZ" and "TIMEZONE" seemed a nuisance; - and systems where "new" forms of "TZ" might cause problems can simply - use TZ values such as "EST5EDT" which can be used both by - "new" programs (a la POSIX) and "old" programs (as zone names and - offsets). - -* The code supports platforms with a UT offset member in struct tm, - e.g., tm_gmtoff. - -* The code supports platforms with a time zone abbreviation member in - struct tm, e.g., tm_zone. - -* Since the "TZ" environment variable can now be used to control time - conversion, the "daylight" and "timezone" variables are no longer - needed. (These variables are defined and set by "tzset"; however, their - values will not be used by "localtime.") - -* Functions tzalloc, tzfree, localtime_rz, and mktime_z for - more-efficient thread-safe applications that need to use - multiple time zones. The tzalloc and tzfree functions - allocate and free objects of type timezone_t, and localtime_rz - and mktime_z are like localtime_r and mktime with an extra - timezone_t argument. The functions were inspired by NetBSD. - -* A function "tzsetwall" has been added to arrange for the system's - best approximation to local wall clock time to be delivered by - subsequent calls to "localtime." Source code for portable - applications that "must" run on local wall clock time should call - "tzsetwall();" if such code is moved to "old" systems that don't - provide tzsetwall, you won't be able to generate an executable program. - (These time zone functions also arrange for local wall clock time to be - used if tzset is called - directly or indirectly - and there's no "TZ" - environment variable; portable applications should not, however, rely - on this behavior since it's not the way SVR2 systems behave.) - -* Negative time_t values are supported, on systems where time_t is signed. - -* These functions can account for leap seconds, thanks to Bradley White. - -Points of interest to folks with other systems: - -* Code compatible with this package is already part of many platforms, - including GNU/Linux, Android, the BSDs, Chromium OS, Cygwin, AIX, iOS, - BlackBery 10, macOS, Microsoft Windows, OpenVMS, and Solaris. - On such hosts, the primary use of this package - is to update obsolete time zone rule tables. - To do this, you may need to compile the time zone compiler - 'zic' supplied with this package instead of using the system 'zic', - since the format of zic's input is occasionally extended, - and a platform may still be shipping an older zic. - -* The UNIX Version 7 "timezone" function is not present in this package; - it's impossible to reliably map timezone's arguments (a "minutes west - of GMT" value and a "daylight saving time in effect" flag) to a - time zone abbreviation, and we refuse to guess. - Programs that in the past used the timezone function may now examine - tzname[localtime(&clock)->tm_isdst] to learn the correct time - zone abbreviation to use. Alternatively, use - localtime(&clock)->tm_zone if this has been enabled. - -* The 4.2BSD gettimeofday function is not used in this package. - This formerly let users obtain the current UTC offset and DST flag, - but this functionality was removed in later versions of BSD. - -* In SVR2, time conversion fails for near-minimum or near-maximum - time_t values when doing conversions for places that don't use UT. - This package takes care to do these conversions correctly. - A comment in the source code tells how to get compatibly wrong - results. - -The functions that are conditionally compiled if STD_INSPIRED is defined -should, at this point, be looked on primarily as food for thought. They are -not in any sense "standard compatible" - some are not, in fact, specified in -*any* standard. They do, however, represent responses of various authors to -standardization proposals. - -Other time conversion proposals, in particular the one developed by folks at -Hewlett Packard, offer a wider selection of functions that provide capabilities -beyond those provided here. The absence of such functions from this package -is not meant to discourage the development, standardization, or use of such -functions. Rather, their absence reflects the decision to make this package -contain valid extensions to POSIX, to ensure its broad acceptability. If -more powerful time conversion functions can be standardized, so much the -better. - - ------ Interface stability ----- - -The tz code and data supply the following interfaces: - - * A set of zone names as per "Names of time zone rules" above. - - * Library functions described in "Time and date functions" above. - - * The programs tzselect, zdump, and zic, documented in their man pages. - - * The format of zic input files, documented in the zic man page. - - * The format of zic output files, documented in the tzfile man page. - - * The format of zone table files, documented in zone1970.tab. - - * The format of the country code file, documented in iso3166.tab. - - * The version number of the code and data, as the first line of - the text file 'version' in each release. - -Interface changes in a release attempt to preserve compatibility with -recent releases. For example, tz data files typically do not rely on -recently-added zic features, so that users can run older zic versions -to process newer data files. The tz-link.htm file describes how -releases are tagged and distributed. - -Interfaces not listed above are less stable. For example, users -should not rely on particular UT offsets or abbreviations for time -stamps, as data entries are often based on guesswork and these guesses -may be corrected or improved. - - ------ Calendrical issues ----- - -Calendrical issues are a bit out of scope for a time zone database, -but they indicate the sort of problems that we would run into if we -extended the time zone database further into the past. An excellent -resource in this area is Nachum Dershowitz and Edward M. Reingold, -Calendrical Calculations: Third Edition, Cambridge University Press (2008) -. -Other information and sources are given below. They sometimes disagree. - - -France - -Gregorian calendar adopted 1582-12-20. -French Revolutionary calendar used 1793-11-24 through 1805-12-31, -and (in Paris only) 1871-05-06 through 1871-05-23. - - -Russia - -From Chris Carrier (1996-12-02): -On 1929-10-01 the Soviet Union instituted an "Eternal Calendar" -with 30-day months plus 5 holidays, with a 5-day week. -On 1931-12-01 it changed to a 6-day week; in 1934 it reverted to the -Gregorian calendar while retaining the 6-day week; on 1940-06-27 it -reverted to the 7-day week. With the 6-day week the usual days -off were the 6th, 12th, 18th, 24th and 30th of the month. -(Source: Evitiar Zerubavel, _The Seven Day Circle_) - - -Mark Brader reported a similar story in "The Book of Calendars", edited -by Frank Parise (1982, Facts on File, ISBN 0-8719-6467-8), page 377. But: - -From: Petteri Sulonen (via Usenet) -Date: 14 Jan 1999 00:00:00 GMT -... - -If your source is correct, how come documents between 1929 and 1940 were -still dated using the conventional, Gregorian calendar? - -I can post a scan of a document dated December 1, 1934, signed by -Yenukidze, the secretary, on behalf of Kalinin, the President of the -Executive Committee of the Supreme Soviet, if you like. - - - -Sweden (and Finland) - -From: Mark Brader -Subject: Re: Gregorian reform - a part of locale? - -Date: 1996-07-06 - -In 1700, Denmark made the transition from Julian to Gregorian. Sweden -decided to *start* a transition in 1700 as well, but rather than have one of -those unsightly calendar gaps :-), they simply decreed that the next leap -year after 1696 would be in 1744 - putting the whole country on a calendar -different from both Julian and Gregorian for a period of 40 years. - -However, in 1704 something went wrong and the plan was not carried through; -they did, after all, have a leap year that year. And one in 1708. In 1712 -they gave it up and went back to Julian, putting 30 days in February that -year!... - -Then in 1753, Sweden made the transition to Gregorian in the usual manner, -getting there only 13 years behind the original schedule. - -(A previous posting of this story was challenged, and Swedish readers -produced the following references to support it: "Tideräkning och historia" -by Natanael Beckman (1924) and "Tid, en bok om tideräkning och -kalenderväsen" by Lars-Olof Lodén (1968). - - -Grotefend's data - -From: "Michael Palmer" [with one obvious typo fixed] -Subject: Re: Gregorian Calendar (was Re: Another FHC related question -Newsgroups: soc.genealogy.german -Date: Tue, 9 Feb 1999 02:32:48 -800 -... - -The following is a(n incomplete) listing, arranged chronologically, of -European states, with the date they converted from the Julian to the -Gregorian calendar: - -04/15 Oct 1582 - Italy (with exceptions), Spain, Portugal, Poland (Roman - Catholics and Danzig only) -09/20 Dec 1582 - France, Lorraine - -21 Dec 1582/ - 01 Jan 1583 - Holland, Brabant, Flanders, Hennegau -10/21 Feb 1583 - bishopric of Liege (Lüttich) -13/24 Feb 1583 - bishopric of Augsburg -04/15 Oct 1583 - electorate of Trier -05/16 Oct 1583 - Bavaria, bishoprics of Freising, Eichstedt, Regensburg, - Salzburg, Brixen -13/24 Oct 1583 - Austrian Oberelsaß and Breisgau -20/31 Oct 1583 - bishopric of Basel -02/13 Nov 1583 - duchy of Jülich-Berg -02/13 Nov 1583 - electorate and city of Köln -04/15 Nov 1583 - bishopric of Würzburg -11/22 Nov 1583 - electorate of Mainz -16/27 Nov 1583 - bishopric of Strassburg and the margraviate of Baden -17/28 Nov 1583 - bishopric of Münster and duchy of Cleve -14/25 Dec 1583 - Steiermark - -06/17 Jan 1584 - Austria and Bohemia -11/22 Jan 1584 - Lucerne, Uri, Schwyz, Zug, Freiburg, Solothurn -12/23 Jan 1584 - Silesia and the Lausitz -22 Jan/ - 02 Feb 1584 - Hungary (legally on 21 Oct 1587) - Jun 1584 - Unterwalden -01/12 Jul 1584 - duchy of Westfalen - -16/27 Jun 1585 - bishopric of Paderborn - -14/25 Dec 1590 - Transylvania - -22 Aug/ - 02 Sep 1612 - duchy of Prussia - -13/24 Dec 1614 - Pfalz-Neuburg - - 1617 - duchy of Kurland (reverted to the Julian calendar in - 1796) - - 1624 - bishopric of Osnabrück - - 1630 - bishopric of Minden - -15/26 Mar 1631 - bishopric of Hildesheim - - 1655 - Kanton Wallis - -05/16 Feb 1682 - city of Strassburg - -18 Feb/ - 01 Mar 1700 - Protestant Germany (including Swedish possessions in - Germany), Denmark, Norway -30 Jun/ - 12 Jul 1700 - Gelderland, Zutphen -10 Nov/ - 12 Dec 1700 - Utrecht, Overijssel - -31 Dec 1700/ - 12 Jan 1701 - Friesland, Groningen, Zürich, Bern, Basel, Geneva, - Turgau, and Schaffhausen - - 1724 - Glarus, Appenzell, and the city of St. Gallen - -01 Jan 1750 - Pisa and Florence - -02/14 Sep 1752 - Great Britain - -17 Feb/ - 01 Mar 1753 - Sweden - -1760-1812 - Graubünden - -The Russian empire (including Finland and the Baltic states) did not -convert to the Gregorian calendar until the Soviet revolution of 1917. - -Source: H. Grotefend, _Taschenbuch der Zeitrechnung des deutschen -Mittelalters und der Neuzeit_, herausgegeben von Dr. O. Grotefend -(Hannover: Hahnsche Buchhandlung, 1941), pp. 26-28. - - ------ Time and time zones on Mars ----- - -Some people's work schedules use Mars time. Jet Propulsion Laboratory -(JPL) coordinators have kept Mars time on and off at least since 1997 -for the Mars Pathfinder mission. Some of their family members have -also adapted to Mars time. Dozens of special Mars watches were built -for JPL workers who kept Mars time during the Mars Exploration -Rovers mission (2004). These timepieces look like normal Seikos and -Citizens but use Mars seconds rather than terrestrial seconds. - -A Mars solar day is called a "sol" and has a mean period equal to -about 24 hours 39 minutes 35.244 seconds in terrestrial time. It is -divided into a conventional 24-hour clock, so each Mars second equals -about 1.02749125 terrestrial seconds. - -The prime meridian of Mars goes through the center of the crater -Airy-0, named in honor of the British astronomer who built the -Greenwich telescope that defines Earth's prime meridian. Mean solar -time on the Mars prime meridian is called Mars Coordinated Time (MTC). - -Each landed mission on Mars has adopted a different reference for -solar time keeping, so there is no real standard for Mars time zones. -For example, the Mars Exploration Rover project (2004) defined two -time zones "Local Solar Time A" and "Local Solar Time B" for its two -missions, each zone designed so that its time equals local true solar -time at approximately the middle of the nominal mission. Such a "time -zone" is not particularly suited for any application other than the -mission itself. - -Many calendars have been proposed for Mars, but none have achieved -wide acceptance. Astronomers often use Mars Sol Date (MSD) which is a -sequential count of Mars solar days elapsed since about 1873-12-29 -12:00 GMT. - -The tz database does not currently support Mars time, but it is -documented here in the hopes that support will be added eventually. - -Sources: - -Michael Allison and Robert Schmunk, -"Technical Notes on Mars Solar Time as Adopted by the Mars24 Sunclock" - (2012-08-08). - -Jia-Rui Chong, "Workdays Fit for a Martian", Los Angeles Times - -(2004-01-14), pp A1, A20-A21. - -Tom Chmielewski, "Jet Lag Is Worse on Mars", The Atlantic (2015-02-26) - - ------ - -This file is in the public domain, so clarified as of 2009-05-17 by -Arthur David Olson. - ------ -Local Variables: -coding: utf-8 -End: diff --git a/db/africa b/db/africa index f30c910..3a60bc2 100644 --- a/db/africa +++ b/db/africa @@ -6,15 +6,15 @@ # tz@iana.org for general use in the future). For more, please see # the file CONTRIBUTING in the tz distribution. -# From Paul Eggert (2014-10-31): +# From Paul Eggert (2017-02-20): # # Unless otherwise specified, the source for data through 1990 is: # Thomas G. Shanks and Rique Pottenger, The International Atlas (6th edition), # San Diego: ACS Publications, Inc. (2003). # Unfortunately this book contains many errors and cites no sources. # -# Gwillim Law writes that a good source -# for recent time zone data is the International Air Transport +# Many years ago Gwillim Law wrote that a good source +# for time zone data was the International Air Transport # Association's Standard Schedules Information Manual (IATA SSIM), # published semiannually. Law sent in several helpful summaries # of the IATA's data after 1990. Except where otherwise noted, @@ -26,44 +26,38 @@ # # For data circa 1899, a common source is: # Milne J. Civil time. Geogr J. 1899 Feb;13(2):173-94. -# http://www.jstor.org/stable/1774359 +# https://www.jstor.org/stable/1774359 # # A reliable and entertaining source about time zones is # Derek Howse, Greenwich time and longitude, Philip Wilson Publishers (1997). # +# European-style abbreviations are commonly used along the Mediterranean. +# For sub-Saharan Africa abbreviations were less standardized. # Previous editions of this database used WAT, CAT, SAT, and EAT -# for +0:00 through +3:00, respectively, -# but Mark R V Murray reports that -# 'SAST' is the official abbreviation for +2:00 in the country of South Africa, -# 'CAT' is commonly used for +2:00 in countries north of South Africa, and -# 'WAT' is probably the best name for +1:00, as the common phrase for +# for UT +00 through +03, respectively, +# but in 1997 Mark R V Murray reported that +# 'SAST' is the official abbreviation for +02 in the country of South Africa, +# 'CAT' is commonly used for +02 in countries north of South Africa, and +# 'WAT' is probably the best name for +01, as the common phrase for # the area that includes Nigeria is "West Africa". -# He has heard of "Western Sahara Time" for +0:00 but can find no reference. -# -# To make things confusing, 'WAT' seems to have been used for -1:00 long ago; -# I'd guess that this was because people needed _some_ name for -1:00, -# and at the time, far west Africa was the only major land area in -1:00. -# This usage is now obsolete, as the last use of -1:00 on the African -# mainland seems to have been 1976 in Western Sahara. -# -# To summarize, the following abbreviations seem to have some currency: -# -1:00 WAT West Africa Time (no longer used) -# 0:00 GMT Greenwich Mean Time -# 2:00 CAT Central Africa Time -# 2:00 SAST South Africa Standard Time -# and Murray suggests the following abbreviation: -# 1:00 WAT West Africa Time -# I realize that this leads to 'WAT' being used for both -1:00 and 1:00 -# for times before 1976, but this is the best I can think of -# until we get more information. +# +# To summarize, the following abbreviations seemed to have some currency: +# +00 GMT Greenwich Mean Time +# +02 CAT Central Africa Time +# +02 SAST South Africa Standard Time +# and Murray suggested the following abbreviation: +# +01 WAT West Africa Time +# Murray's suggestion seems to have caught on in news reports and the like. +# I vaguely recall 'WAT' also being used for -01 in the past but +# cannot now come up with solid citations. # # I invented the following abbreviations; corrections are welcome! -# 2:00 WAST West Africa Summer Time -# 2:30 BEAT British East Africa Time (no longer used) -# 2:45 BEAUT British East Africa Unified Time (no longer used) -# 3:00 CAST Central Africa Summer Time (no longer used) -# 3:00 SAST South Africa Summer Time (no longer used) -# 3:00 EAT East Africa Time +# +02 WAST West Africa Summer Time +# +03 CAST Central Africa Summer Time (no longer used) +# +03 SAST South Africa Summer Time (no longer used) +# +03 EAT East Africa Time +# 'EAT' also seems to have caught on; the others are rare but are paired +# with better-attested non-DST abbreviations. # Algeria # Rule NAME FROM TO TYPE IN ON AT SAVE LETTER/S @@ -121,17 +115,17 @@ Zone Africa/Algiers 0:12:12 - LMT 1891 Mar 15 0:01 # Cape Verde / Cabo Verde # -# Shanks gives 1907 for the transition to CVT. +# Shanks gives 1907 for the transition to +02. # Perhaps the 1911-05-26 Portuguese decree -# http://dre.pt/pdf1sdip/1911/05/12500/23132313.pdf +# https://dre.pt/pdf1sdip/1911/05/12500/23132313.pdf # merely made it official? # # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone Atlantic/Cape_Verde -1:34:04 - LMT 1907 # Praia - -2:00 - CVT 1942 Sep - -2:00 1:00 CVST 1945 Oct 15 - -2:00 - CVT 1975 Nov 25 2:00 - -1:00 - CVT + -2:00 - -02 1942 Sep + -2:00 1:00 -01 1945 Oct 15 + -2:00 - -02 1975 Nov 25 2:00 + -1:00 - -01 # Central African Republic # See Africa/Lagos. @@ -224,7 +218,7 @@ Rule Egypt 2006 only - Sep 21 24:00 0 - # saving time in Egypt will end in the night of 2007-09-06 to 2007-09-07. # From Jesper Nørgaard Welen (2007-08-15): [The following agree:] # http://www.nentjes.info/Bill/bill5.htm -# http://www.timeanddate.com/worldclock/city.html?n=53 +# https://www.timeanddate.com/worldclock/city.html?n=53 # From Steffen Thorsen (2007-09-04): The official information...: # http://www.sis.gov.eg/En/EgyptOnline/Miscellaneous/000002/0207000000000000001580.htm Rule Egypt 2007 only - Sep Thu>=1 24:00 0 - @@ -262,8 +256,8 @@ Rule Egypt 2007 only - Sep Thu>=1 24:00 0 - # timeanddate[2] and another site I've found[3] also support that. # # [1] https://bugzilla.redhat.com/show_bug.cgi?id=492263 -# [2] http://www.timeanddate.com/worldclock/clockchange.html?n=53 -# [3] http://wwp.greenwichmeantime.com/time-zone/africa/egypt/ +# [2] https://www.timeanddate.com/worldclock/clockchange.html?n=53 +# [3] https://wwp.greenwichmeantime.com/time-zone/africa/egypt/ # From Arthur David Olson (2009-04-20): # In 2009 (and for the next several years), Ramadan ends before the fourth @@ -273,10 +267,10 @@ Rule Egypt 2007 only - Sep Thu>=1 24:00 0 - # From Steffen Thorsen (2009-08-11): # We have been able to confirm the August change with the Egyptian Cabinet # Information and Decision Support Center: -# http://www.timeanddate.com/news/time/egypt-dst-ends-2009.html +# https://www.timeanddate.com/news/time/egypt-dst-ends-2009.html # # The Middle East News Agency -# http://www.mena.org.eg/index.aspx +# https://www.mena.org.eg/index.aspx # also reports "Egypt starts winter time on August 21" # today in article numbered "71, 11/08/2009 12:25 GMT." # Only the title above is available without a subscription to their service, @@ -326,7 +320,7 @@ Rule Egypt 2007 only - Sep Thu>=1 24:00 0 - # Thursday of April.... Clocks will still be turned back for Ramadan, but # dates not yet announced.... # http://almogaz.com/news/weird-news/2015/04/05/1947105 ... -# http://www.timeanddate.com/news/time/egypt-starts-dst-2015.html +# https://www.timeanddate.com/news/time/egypt-starts-dst-2015.html # From Ahmed Nazmy (2015-04-20): # Egypt's ministers cabinet just announced ... that it will cancel DST at @@ -388,7 +382,7 @@ Rule Ghana 1920 1942 - Sep 1 0:00 0:20 GHST Rule Ghana 1920 1942 - Dec 31 0:00 0 GMT # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone Africa/Accra -0:00:52 - LMT 1918 - 0:00 Ghana %s + 0:00 Ghana GMT/+0020 # Guinea # See Africa/Abidjan. @@ -397,20 +391,20 @@ Zone Africa/Accra -0:00:52 - LMT 1918 # # Shanks gives 1911-05-26 for the transition to WAT, # evidently confusing the date of the Portuguese decree -# http://dre.pt/pdf1sdip/1911/05/12500/23132313.pdf +# https://dre.pt/pdf1sdip/1911/05/12500/23132313.pdf # with the date that it took effect, namely 1912-01-01. # # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone Africa/Bissau -1:02:20 - LMT 1912 Jan 1 - -1:00 - WAT 1975 + -1:00 - -01 1975 0:00 - GMT # Kenya # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone Africa/Nairobi 2:27:16 - LMT 1928 Jul 3:00 - EAT 1930 - 2:30 - BEAT 1940 - 2:45 - BEAUT 1960 + 2:30 - +0230 1940 + 2:45 - +0245 1960 3:00 - EAT Link Africa/Nairobi Africa/Addis_Ababa # Ethiopia Link Africa/Nairobi Africa/Asmara # Eritrea @@ -426,18 +420,25 @@ Link Africa/Nairobi Indian/Mayotte # See Africa/Johannesburg. # Liberia -# From Paul Eggert (2006-03-22): -# In 1972 Liberia was the last country to switch -# from a UTC offset that was not a multiple of 15 or 20 minutes. -# Howse reports that it was in honor of their president's birthday. -# Shank & Pottenger report the date as May 1, whereas Howse reports Jan; -# go with Shanks & Pottenger. -# For Liberia before 1972, Shanks & Pottenger report -0:44, whereas Howse and -# Whitman each report -0:44:30; go with the more precise figure. +# +# From Paul Eggert (2017-03-02): +# +# The Nautical Almanac for the Year 1970, p 264, is the source for -0:44:30. +# +# In 1972 Liberia was the last country to switch from a UTC offset +# that was not a multiple of 15 or 20 minutes. The 1972 change was on +# 1972-01-07, according to an entry dated 1972-01-04 on p 330 of: +# Presidential Papers: First year of the administration of +# President William R. Tolbert, Jr., July 23, 1971-July 31, 1972. +# Monrovia: Executive Mansion. +# +# Use the abbreviation "MMT" before 1972, as the more-accurate numeric +# abbreviation "-004430" would be one byte over the POSIX limit. +# # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone Africa/Monrovia -0:43:08 - LMT 1882 -0:43:08 - MMT 1919 Mar # Monrovia Mean Time - -0:44:30 - LRT 1972 May # Liberia Time + -0:44:30 - MMT 1972 Jan 7 # approximately MMT 0:00 - GMT ############################################################################### @@ -446,11 +447,11 @@ Zone Africa/Monrovia -0:43:08 - LMT 1882 # From Even Scharning (2012-11-10): # Libya set their time one hour back at 02:00 on Saturday November 10. -# http://www.libyaherald.com/2012/11/04/clocks-to-go-back-an-hour-on-saturday/ +# https://www.libyaherald.com/2012/11/04/clocks-to-go-back-an-hour-on-saturday/ # Here is an official source [in Arabic]: http://ls.ly/fb6Yc # # Steffen Thorsen forwarded a translation (2012-11-10) in -# http://mm.icann.org/pipermail/tz/2012-November/018451.html +# https://mm.icann.org/pipermail/tz/2012-November/018451.html # # From Tim Parenti (2012-11-11): # Treat the 2012-11-10 change as a zone change from UTC+2 to UTC+1. @@ -461,7 +462,7 @@ Zone Africa/Monrovia -0:43:08 - LMT 1882 # From Even Scharning (2013-10-25): # The scheduled end of DST in Libya on Friday, October 25, 2013 was # cancelled yesterday.... -# http://www.libyaherald.com/2013/10/24/correction-no-time-change-tomorrow/ +# https://www.libyaherald.com/2013/10/24/correction-no-time-change-tomorrow/ # # From Paul Eggert (2013-10-25): # For now, assume they're reverting to the pre-2012 rules of permanent UT +02. @@ -514,7 +515,7 @@ Zone Africa/Tripoli 0:52:44 - LMT 1920 # basis.... # It seems that Mauritius observed daylight saving time from 1982-10-10 to # 1983-03-20 as well, but that was not successful.... -# http://www.timeanddate.com/news/time/mauritius-daylight-saving-time.html +# https://www.timeanddate.com/news/time/mauritius-daylight-saving-time.html # From Alex Krivenyshev (2008-06-25): # http://economicdevelopment.gov.mu/portal/site/Mainhomepage/menuitem.a42b24128104d9845dabddd154508a0c/?content_id=0a7cee8b5d69a110VgnVCM1000000a04a8c0RCRD @@ -582,7 +583,7 @@ Zone Africa/Tripoli 0:52:44 - LMT 1920 # http://lexpress.mu/Story/3398~Beebeejaun---Les-objectifs-d-%C3%A9conomie-d-%C3%A9nergie-de-l-heure-d-%C3%A9t%C3%A9-ont-%C3%A9t%C3%A9-atteints- # # Our wrap-up: -# http://www.timeanddate.com/news/time/mauritius-dst-will-not-repeat.html +# https://www.timeanddate.com/news/time/mauritius-dst-will-not-repeat.html # From Arthur David Olson (2009-07-11): # The "mauritius-dst-will-not-repeat" wrapup includes this: @@ -596,7 +597,7 @@ Rule Mauritius 2008 only - Oct lastSun 2:00 1:00 S Rule Mauritius 2009 only - Mar lastSun 2:00 0 - # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone Indian/Mauritius 3:50:00 - LMT 1907 # Port Louis - 4:00 Mauritius MU%sT # Mauritius Time + 4:00 Mauritius +04/+05 # Agalega Is, Rodriguez # no information; probably like Indian/Mauritius @@ -614,7 +615,7 @@ Zone Indian/Mauritius 3:50:00 - LMT 1907 # Port Louis # be one hour ahead of GMT between 1 June and 27 September, according to # Communication Minister and Government Spokesman, Khalid Naciri...." # -# http://www.worldtimezone.net/dst_news/dst_news_morocco01.html +# http://www.worldtimezone.com/dst_news/dst_news_morocco01.html # http://en.afrik.com/news11892.html # From Alex Krivenyshev (2008-05-09): @@ -627,7 +628,7 @@ Zone Indian/Mauritius 3:50:00 - LMT 1907 # Port Louis # From Patrice Scattolin (2008-05-09): # According to this article: -# http://www.avmaroc.com/actualite/heure-dete-comment-a127896.html +# https://www.avmaroc.com/actualite/heure-dete-comment-a127896.html # (and republished here: ) # the changes occur at midnight: # @@ -649,7 +650,7 @@ Zone Indian/Mauritius 3:50:00 - LMT 1907 # Port Louis # posted in English). # # The following Google query will generate many relevant hits: -# http://www.google.com/search?hl=en&q=Conseil+de+gouvernement+maroc+heure+avance&btnG=Search +# https://www.google.com/search?hl=en&q=Conseil+de+gouvernement+maroc+heure+avance&btnG=Search # From Steffen Thorsen (2008-08-27): # Morocco will change the clocks back on the midnight between August 31 @@ -660,7 +661,7 @@ Zone Indian/Mauritius 3:50:00 - LMT 1907 # Port Louis # http://www.menara.ma/fr/Actualites/Maroc/Societe/ci.retour_a_l_heure_gmt_a_partir_du_dimanche_31_aout_a_minuit_officiel_.default # # We have some further details posted here: -# http://www.timeanddate.com/news/time/morocco-ends-dst-early-2008.html +# https://www.timeanddate.com/news/time/morocco-ends-dst-early-2008.html # From Steffen Thorsen (2009-03-17): # Morocco will observe DST from 2009-06-01 00:00 to 2009-08-21 00:00 according @@ -670,7 +671,7 @@ Zone Indian/Mauritius 3:50:00 - LMT 1907 # Port Louis # (French) # # Our summary: -# http://www.timeanddate.com/news/time/morocco-starts-dst-2009.html +# https://www.timeanddate.com/news/time/morocco-starts-dst-2009.html # From Alexander Krivenyshev (2009-03-17): # Here is a link to official document from Royaume du Maroc Premier Ministre, @@ -693,7 +694,7 @@ Zone Indian/Mauritius 3:50:00 - LMT 1907 # Port Louis # http://www.lavieeco.com/actualites/4099-le-maroc-passera-a-l-heure-d-ete-gmt1-le-2-mai.html # (French) # Our page: -# http://www.timeanddate.com/news/time/morocco-starts-dst-2010.html +# https://www.timeanddate.com/news/time/morocco-starts-dst-2010.html # From Dan Abitol (2011-03-30): # ...Rules for Africa/Casablanca are the following (24h format) @@ -710,7 +711,7 @@ Zone Indian/Mauritius 3:50:00 - LMT 1907 # Port Louis # They said that the decision was already taken. # # More articles in the press -# http://www.yabiladi.com/articles/details/5058/secret-l-heure-d-ete-maroc-leve.html +# https://www.yabiladi.com/articles/details/5058/secret-l-heure-d-ete-maroc-leve.html # http://www.lematin.ma/Actualite/Express/Article.asp?id=148923 # http://www.lavieeco.com/actualite/Le-Maroc-passe-sur-GMT%2B1-a-partir-de-dim @@ -802,7 +803,7 @@ Zone Indian/Mauritius 3:50:00 - LMT 1907 # Port Louis # 1433 (18 April 2012) and the decision of the Head of Government of # 16 N. 3-29-15 Chaaban 1435 (4 June 2015). # Source (french): -# http://lnt.ma/le-maroc-reculera-dune-heure-le-dimanche-14-juin/ +# https://lnt.ma/le-maroc-reculera-dune-heure-le-dimanche-14-juin/ # # From Milamber (2015-06-09): # http://www.mmsp.gov.ma/fr/actualites.aspx?id=863 @@ -811,7 +812,7 @@ Zone Indian/Mauritius 3:50:00 - LMT 1907 # Port Louis # [The gov.ma announcement] would (probably) make the switch on 2015-07-19 go # from 03:00 to 04:00 rather than from 02:00 to 03:00, as in the patch.... # I think the patch is correct and the quoted text is wrong; the text in -# agrees +# agrees # with the patch. # From Paul Eggert (2015-06-08): @@ -915,14 +916,14 @@ Zone Africa/Casablanca -0:30:20 - LMT 1913 Oct 26 # since most of it was then controlled by Morocco. Zone Africa/El_Aaiun -0:52:48 - LMT 1934 Jan # El Aaiún - -1:00 - WAT 1976 Apr 14 + -1:00 - -01 1976 Apr 14 0:00 Morocco WE%sT # Mozambique # # Shanks gives 1903-03-01 for the transition to CAT. # Perhaps the 1911-05-26 Portuguese decree -# http://dre.pt/pdf1sdip/1911/05/12500/23132313.pdf +# https://dre.pt/pdf1sdip/1911/05/12500/23132313.pdf # merely made it official? # # Zone NAME GMTOFF RULES FORMAT [UNTIL] @@ -936,9 +937,17 @@ Link Africa/Maputo Africa/Kigali # Rwanda Link Africa/Maputo Africa/Lubumbashi # E Dem. Rep. of Congo Link Africa/Maputo Africa/Lusaka # Zambia + # Namibia -# The 1994-04-03 transition is from Shanks & Pottenger. -# Shanks & Pottenger report no DST after 1998-04; go with IATA. + +# From Arthur David Olson (2017-08-09): +# The text of the "Namibia Time Act, 1994" is available online at +# www.lac.org.na/laws/1994/811.pdf +# and includes this nugget: +# Notwithstanding the provisions of subsection (2) of section 1, the +# first winter period after the commencement of this Act shall +# commence at OOhOO on Monday 21 March 1994 and shall end at 02h00 on +# Sunday 4 September 1994. # From Petronella Sibeene (2007-03-30): # http://allafrica.com/stories/200703300178.html @@ -949,21 +958,35 @@ Link Africa/Maputo Africa/Lusaka # Zambia # the country are close to 40 minutes earlier in sunrise than the rest # of the country. # -# From Paul Eggert (2007-03-31): -# Apparently the Caprivi Strip informally observes Botswana time, but -# we have no details. In the meantime people there can use Africa/Gaborone. +# From Paul Eggert (2017-02-22): +# Although the Zambezi Region (formerly known as Caprivi) informally +# observes Botswana time, we have no details about historical practice. +# In the meantime people there can use Africa/Gaborone. +# See: Immanuel S. The Namibian. 2017-02-23. +# https://www.namibian.com.na/51480/read/Time-change-divides-lawmakers + +# From Steffen Thorsen (2017-08-09): +# Namibia is going to change their time zone to what is now their DST: +# https://www.newera.com.na/2017/02/23/namibias-winter-time-might-be-repealed/ +# This video is from the government decision: +# https://www.nbc.na/news/na-passes-namibia-time-bill-repealing-1994-namibia-time-act.8665 +# We have made the assumption so far that they will change their time zone at +# the same time they would normally start DST, the first Sunday in September: +# https://www.timeanddate.com/news/time/namibia-new-time-zone.html # RULE NAME FROM TO TYPE IN ON AT SAVE LETTER/S -Rule Namibia 1994 max - Sep Sun>=1 2:00 1:00 S -Rule Namibia 1995 max - Apr Sun>=1 2:00 0 - +Rule Namibia 1994 only - Mar 21 0:00 0 - +Rule Namibia 1994 2016 - Sep Sun>=1 2:00 1:00 S +Rule Namibia 1995 2017 - Apr Sun>=1 2:00 0 - # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone Africa/Windhoek 1:08:24 - LMT 1892 Feb 8 - 1:30 - SWAT 1903 Mar # SW Africa Time + 1:30 - +0130 1903 Mar 2:00 - SAST 1942 Sep 20 2:00 2:00 1:00 SAST 1943 Mar 21 2:00 2:00 - SAST 1990 Mar 21 # independence - 2:00 - CAT 1994 Apr 3 - 1:00 Namibia WA%sT + 2:00 - CAT 1994 Mar 21 0:00 + 1:00 Namibia WA%sT 2017 Sep 3 2:00 + 2:00 - CAT # Niger # See Africa/Lagos. @@ -985,7 +1008,7 @@ Link Africa/Lagos Africa/Porto-Novo # Benin # Réunion # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone Indian/Reunion 3:41:52 - LMT 1911 Jun # Saint-Denis - 4:00 - RET # Réunion Time + 4:00 - +04 # # Crozet Islands also observes Réunion time; see the 'antarctica' file. # @@ -1020,7 +1043,7 @@ Zone Indian/Reunion 3:41:52 - LMT 1911 Jun # Saint-Denis # Seychelles # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone Indian/Mahe 3:41:48 - LMT 1906 Jun # Victoria - 4:00 - SCT # Seychelles Time + 4:00 - +04 # From Paul Eggert (2001-05-30): # Aldabra, Farquhar, and Desroches, originally dependencies of the # Seychelles, were transferred to the British Indian Ocean Territory @@ -1050,14 +1073,24 @@ Link Africa/Johannesburg Africa/Mbabane # Swaziland # no information # Sudan -# + # From # Sudan News Agency (2000-01-13), # also reported by Michaël De Beukelaer-Dossche via Steffen Thorsen: # Clocks will be moved ahead for 60 minutes all over the Sudan as of noon # Saturday.... This was announced Thursday by Caretaker State Minister for # Manpower Abdul-Rahman Nur-Eddin. + +# From Ahmed Atyya, National Telecommunications Corp. (NTC), Sudan (2017-10-17): +# ... the Republic of Sudan is going to change the time zone from (GMT+3:00) +# to (GMT+ 2:00) starting from Wednesday 1 November 2017. # +# From Paul Eggert (2017-10-18): +# A scanned copy (in Arabic) of Cabinet Resolution No. 352 for the +# year 2017 can be found as an attachment in email today from Yahia +# Abdalla of NTC, archived at: +# https://mm.icann.org/pipermail/tz/2017-October/025333.html + # Rule NAME FROM TO TYPE IN ON AT SAVE LETTER/S Rule Sudan 1970 only - May 1 0:00 1:00 S Rule Sudan 1970 1985 - Oct 15 0:00 0 - @@ -1066,10 +1099,14 @@ Rule Sudan 1972 1985 - Apr lastSun 0:00 1:00 S # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone Africa/Khartoum 2:10:08 - LMT 1931 2:00 Sudan CA%sT 2000 Jan 15 12:00 - 3:00 - EAT + 3:00 - EAT 2017 Nov 1 + 2:00 - CAT # South Sudan -Link Africa/Khartoum Africa/Juba +# Zone NAME GMTOFF RULES FORMAT [UNTIL] +Zone Africa/Juba 2:06:28 - LMT 1931 + 2:00 Sudan CA%sT 2000 Jan 15 12:00 + 3:00 - EAT # Swaziland # See Africa/Johannesburg. @@ -1107,11 +1144,11 @@ Link Africa/Khartoum Africa/Juba # According to several news sources, Tunisia will not observe DST this year. # (Arabic) # http://www.elbashayer.com/?page=viewn&nid=42546 -# http://www.babnet.net/kiwidetail-15295.asp +# https://www.babnet.net/kiwidetail-15295.asp # # We have also confirmed this with the US embassy in Tunisia. # We have a wrap-up about this on the following page: -# http://www.timeanddate.com/news/time/tunisia-cancels-dst-2009.html +# https://www.timeanddate.com/news/time/tunisia-cancels-dst-2009.html # From Alexander Krivenyshev (2009-03-17): # Here is a link to Tunis Afrique Presse News Agency diff --git a/db/antarctica b/db/antarctica index 6da1aef..d9c132a 100644 --- a/db/antarctica +++ b/db/antarctica @@ -26,7 +26,7 @@ # Heard Island, McDonald Islands (uninhabited) # previously sealers and scientific personnel wintered # Margaret Turner reports -# http://web.archive.org/web/20021204222245/http://www.dstc.qut.edu.au/DST/marg/daylight.html +# https://web.archive.org/web/20021204222245/http://www.dstc.qut.edu.au/DST/marg/daylight.html # (1999-09-30) that they're UT +05, with no DST; # presumably this is when they have visitors. # @@ -47,7 +47,7 @@ # http://www.aad.gov.au/default.asp?casid=37079 # # We have more background information here: -# http://www.timeanddate.com/news/time/antarctica-new-times.html +# https://www.timeanddate.com/news/time/antarctica-new-times.html # From Steffen Thorsen (2010-03-10): # We got these changes from the Australian Antarctic Division: ... @@ -62,7 +62,7 @@ # - Mawson station stays on UTC+5. # # Background: -# http://www.timeanddate.com/news/time/antartica-time-changes-2010.html +# https://www.timeanddate.com/news/time/antartica-time-changes-2010.html # From Steffen Thorsen (2016-10-28): # Australian Antarctica Division informed us that Casey changed time @@ -110,7 +110,8 @@ Zone Antarctica/Mawson 0 - -00 1954 Feb 13 # O'Higgins, Antarctic Peninsula, -6319-05704, since 1948-02 # Prat, -6230-05941 # Villa Las Estrellas (a town), around the Frei base, since 1984-04-09 -# These locations have always used Santiago time; use TZ='America/Santiago'. +# These locations employ Region of Magallanes time; use +# TZ='America/Punta_Arenas'. # China - year-round bases # Great Wall, King George Island, -6213-05858, since 1985-02-20 @@ -144,7 +145,7 @@ Zone Indian/Kerguelen 0 - -00 1950 # Port-aux-Français # # year-round base in the main continent # Dumont d'Urville, Île des Pétrels, -6640+14001, since 1956-11 -# (2005-12-05) +# (2005-12-05) # # Another base at Port-Martin, 50km east, began operation in 1947. # It was destroyed by fire on 1952-01-14. diff --git a/db/asctime.c b/db/asctime.c index 1a906b6..a55f785 100644 --- a/db/asctime.c +++ b/db/asctime.c @@ -12,7 +12,7 @@ /*LINTLIBRARY*/ #include "private.h" -#include "tzfile.h" +#include /* ** Some systems only handle "%.2d"; others only handle "%02d"; @@ -33,9 +33,9 @@ ** but many implementations pad anyway; most likely the standards are buggy. */ #ifdef __GNUC__ -#define ASCTIME_FMT "%.3s %.3s%3d %2.2d:%2.2d:%2.2d %-4s\n" +#define ASCTIME_FMT "%s %s%3d %2.2d:%2.2d:%2.2d %-4s\n" #else /* !defined __GNUC__ */ -#define ASCTIME_FMT "%.3s %.3s%3d %02.2d:%02.2d:%02.2d %-4s\n" +#define ASCTIME_FMT "%s %s%3d %02.2d:%02.2d:%02.2d %-4s\n" #endif /* !defined __GNUC__ */ /* ** For years that are more than four digits we put extra spaces before the year @@ -44,9 +44,9 @@ ** that no output is better than wrong output). */ #ifdef __GNUC__ -#define ASCTIME_FMT_B "%.3s %.3s%3d %2.2d:%2.2d:%2.2d %s\n" +#define ASCTIME_FMT_B "%s %s%3d %2.2d:%2.2d:%2.2d %s\n" #else /* !defined __GNUC__ */ -#define ASCTIME_FMT_B "%.3s %.3s%3d %02.2d:%02.2d:%02.2d %s\n" +#define ASCTIME_FMT_B "%s %s%3d %02.2d:%02.2d:%02.2d %s\n" #endif /* !defined __GNUC__ */ #define STD_ASCTIME_BUF_SIZE 26 @@ -71,10 +71,10 @@ static char buf_asctime[MAX_ASCTIME_BUF_SIZE]; char * asctime_r(register const struct tm *timeptr, char *buf) { - static const char wday_name[][3] = { + static const char wday_name[][4] = { "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat" }; - static const char mon_name[][3] = { + static const char mon_name[][4] = { "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" }; diff --git a/db/asia b/db/asia index c6f63b5..ac39af3 100644 --- a/db/asia +++ b/db/asia @@ -6,15 +6,15 @@ # tz@iana.org for general use in the future). For more, please see # the file CONTRIBUTING in the tz distribution. -# From Paul Eggert (2015-08-08): +# From Paul Eggert (2017-01-13): # # Unless otherwise specified, the source for data through 1990 is: # Thomas G. Shanks and Rique Pottenger, The International Atlas (6th edition), # San Diego: ACS Publications, Inc. (2003). # Unfortunately this book contains many errors and cites no sources. # -# Gwillim Law writes that a good source -# for recent time zone data is the International Air Transport +# Many years ago Gwillim Law wrote that a good source +# for time zone data was the International Air Transport # Association's Standard Schedules Information Manual (IATA SSIM), # published semiannually. Law sent in several helpful summaries # of the IATA's data after 1990. Except where otherwise noted, @@ -26,7 +26,7 @@ # # For data circa 1899, a common source is: # Milne J. Civil time. Geogr J. 1899 Feb;13(2):173-94. -# http://www.jstor.org/stable/1774359 +# https://www.jstor.org/stable/1774359 # # For Russian data circa 1919, a source is: # Byalokoz EL. New Counting of Time in Russia since July 1, 1919. @@ -35,29 +35,24 @@ # A reliable and entertaining source about time zones is # Derek Howse, Greenwich time and longitude, Philip Wilson Publishers (1997). # -# I invented the abbreviations marked '*' in the following table; -# the rest are from earlier versions of this file, or from other sources. -# Corrections are welcome! +# The following alphabetic abbreviations appear in these tables: # std dst # LMT Local Mean Time # 2:00 EET EEST Eastern European Time # 2:00 IST IDT Israel -# 3:00 AST ADT Arabia* -# 3:30 IRST IRDT Iran* -# 4:00 GST Gulf* # 5:30 IST India -# 7:00 ICT Indochina, most times and locations* # 7:00 WIB west Indonesia (Waktu Indonesia Barat) # 8:00 WITA central Indonesia (Waktu Indonesia Tengah) # 8:00 CST China -# 8:00 IDT Indochina, 1943-45, 1947-55, 1960-75 (some locations)* -# 8:00 JWST Western Standard Time (Japan, 1896/1937)* -# 8:30 KST KDT Korea when at +0830* -# 9:00 JCST Central Standard Time (Japan, 1896/1937) +# 8:30 KST KDT Korea when at +0830 # 9:00 WIT east Indonesia (Waktu Indonesia Timur) # 9:00 JST JDT Japan # 9:00 KST KDT Korea when at +09 # 9:30 ACST Australian Central Standard Time +# Otherwise, these tables typically use numeric abbreviations like +03 +# and +0330 for integer hour and minute UTC offsets. Although earlier +# editions invented alphabetic time zone abbreviations for every +# offset, this did not reflect common practice. # # See the 'europe' file for Russia and Turkey in Asia. @@ -65,7 +60,7 @@ # Incorporates data for Singapore from Robert Elz' asia 1.1, as well as # additional information from Tom Yap, Sun Microsystems Intercontinental # Technical Support (including a page from the Official Airline Guide - -# Worldwide Edition). The names for time zones are guesses. +# Worldwide Edition). ############################################################################### @@ -80,14 +75,14 @@ Rule E-EurAsia 1996 max - Oct lastSun 0:00 0 - Rule RussiaAsia 1981 1984 - Apr 1 0:00 1:00 S Rule RussiaAsia 1981 1983 - Oct 1 0:00 0 - Rule RussiaAsia 1984 1995 - Sep lastSun 2:00s 0 - -Rule RussiaAsia 1985 2011 - Mar lastSun 2:00s 1:00 S -Rule RussiaAsia 1996 2011 - Oct lastSun 2:00s 0 - +Rule RussiaAsia 1985 2010 - Mar lastSun 2:00s 1:00 S +Rule RussiaAsia 1996 2010 - Oct lastSun 2:00s 0 - # Afghanistan # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone Asia/Kabul 4:36:48 - LMT 1890 - 4:00 - AFT 1945 - 4:30 - AFT + 4:00 - +04 1945 + 4:30 - +0430 # Armenia # From Paul Eggert (2006-03-22): @@ -114,13 +109,17 @@ Zone Asia/Kabul 4:36:48 - LMT 1890 # or # (brief) # http://www.worldtimezone.com/dst_news/dst_news_armenia03.html +# Rule NAME FROM TO TYPE IN ON AT SAVE LETTER/S +Rule Armenia 2011 only - Mar lastSun 2:00s 1:00 S +Rule Armenia 2011 only - Oct lastSun 2:00s 0 - # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone Asia/Yerevan 2:58:00 - LMT 1924 May 2 3:00 - +03 1957 Mar 4:00 RussiaAsia +04/+05 1991 Mar 31 2:00s 3:00 RussiaAsia +03/+04 1995 Sep 24 2:00s 4:00 - +04 1997 - 4:00 RussiaAsia +04/+05 + 4:00 RussiaAsia +04/+05 2011 + 4:00 Armenia +04/+05 # Azerbaijan @@ -132,7 +131,7 @@ Zone Asia/Yerevan 2:58:00 - LMT 1924 May 2 # From Steffen Thorsen (2016-03-17): # ... the Azerbaijani Cabinet of Ministers has cancelled switching to # daylight saving time.... -# http://www.azernews.az/azerbaijan/94137.html +# https://www.azernews.az/azerbaijan/94137.html # http://vestnikkavkaza.net/news/Azerbaijani-Cabinet-of-Ministers-cancels-daylight-saving-time.html # http://en.apa.az/xeber_azerbaijan_abolishes_daylight_savings_ti_240862.html @@ -173,11 +172,11 @@ Zone Asia/Baku 3:19:24 - LMT 1924 May 2 # the 19th and 20th, and they have not set the end date yet. # # Some sources: -# http://in.reuters.com/article/southAsiaNews/idINIndia-40017620090601 +# https://in.reuters.com/article/southAsiaNews/idINIndia-40017620090601 # http://bdnews24.com/details.php?id=85889&cid=2 # # Our wrap-up: -# http://www.timeanddate.com/news/time/bangladesh-daylight-saving-2009.html +# https://www.timeanddate.com/news/time/bangladesh-daylight-saving-2009.html # From A. N. M. Kamrus Saadat (2009-06-15): # Finally we've got the official mail regarding DST start time where DST start @@ -230,18 +229,17 @@ Rule Dhaka 2009 only - Dec 31 24:00 0 - # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone Asia/Dhaka 6:01:40 - LMT 1890 5:53:20 - HMT 1941 Oct # Howrah Mean Time? - 6:30 - BURT 1942 May 15 # Burma Time - 5:30 - IST 1942 Sep - 6:30 - BURT 1951 Sep 30 - 6:00 - DACT 1971 Mar 26 # Dacca Time - 6:00 - BDT 2009 - 6:00 Dhaka BD%sT + 6:30 - +0630 1942 May 15 + 5:30 - +0530 1942 Sep + 6:30 - +0630 1951 Sep 30 + 6:00 - +06 2009 + 6:00 Dhaka +06/+07 # Bhutan # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone Asia/Thimphu 5:58:36 - LMT 1947 Aug 15 # or Thimbu - 5:30 - IST 1987 Oct - 6:00 - BTT # Bhutan Time + 5:30 - +0530 1987 Oct + 6:00 - +06 # British Indian Ocean Territory # Whitman and the 1995 CIA time zone map say 5:00, but the @@ -251,25 +249,31 @@ Zone Asia/Thimphu 5:58:36 - LMT 1947 Aug 15 # or Thimbu # then contained the Chagos Archipelago). # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone Indian/Chagos 4:49:40 - LMT 1907 - 5:00 - IOT 1996 # BIOT Time - 6:00 - IOT + 5:00 - +05 1996 + 6:00 - +06 # Brunei # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone Asia/Brunei 7:39:40 - LMT 1926 Mar # Bandar Seri Begawan - 7:30 - BNT 1933 - 8:00 - BNT + 7:30 - +0730 1933 + 8:00 - +08 # Burma / Myanmar # Milne says 6:24:40 was the meridian of the time ball observatory at Rangoon. +# From Paul Eggert (2017-04-20): +# Page 27 of Reed & Low (cited for Asia/Kolkata) says "Rangoon local time is +# used upon the railways and telegraphs of Burma, and is 6h. 24m. 47s. ahead +# of Greenwich." This refers to the period before Burma's transition to +0630, +# a transition for which Shanks is the only source. + # Zone NAME GMTOFF RULES FORMAT [UNTIL] -Zone Asia/Yangon 6:24:40 - LMT 1880 # or Rangoon - 6:24:40 - RMT 1920 # Rangoon Mean Time? - 6:30 - BURT 1942 May # Burma Time - 9:00 - JST 1945 May 3 - 6:30 - MMT # Myanmar Time +Zone Asia/Yangon 6:24:47 - LMT 1880 # or Rangoon + 6:24:47 - RMT 1920 # Rangoon local time + 6:30 - +0630 1942 May + 9:00 - +09 1945 May 3 + 6:30 - +0630 # Cambodia # See Asia/Bangkok. @@ -323,7 +327,7 @@ Rule PRC 1987 1991 - Apr Sun>=10 0:00 1:00 D # # From Jesper Nørgaard Welen (2006-07-14): # I have investigated the timezones around 1970 on the -# http://www.astro.com/atlas site [with provinces and county +# https://www.astro.com/atlas site [with provinces and county # boundaries summarized below].... A few other exceptions were two # counties on the Sichuan side of the Xizang-Sichuan border, # counties Dege and Baiyu which lies on the Sichuan side and are @@ -332,7 +336,7 @@ Rule PRC 1987 1991 - Apr Sun>=10 0:00 1:00 D # (could be true), for the moment I am assuming that those two # counties are mistakes in the astro.com data. -# From Paul Eggert (2014-06-30): +# From Paul Eggert (2017-01-05): # Alois Treindl kindly sent me translations of the following two sources: # # (1) @@ -390,28 +394,26 @@ Rule PRC 1987 1991 - Apr Sun>=10 0:00 1:00 D # mainly observed in coastal areas), the five zones were: # # Changbai Time ("Long-white Time", Long-white = Heilongjiang area) UT +08:30 -# Asia/Harbin (currently a link to Asia/Shanghai) +# Now part of Asia/Shanghai; its pre-1970 times are not recorded here. # Heilongjiang (except Mohe county), Jilin # # Zhongyuan Time ("Central plain Time") UT +08 -# Asia/Shanghai +# Now part of Asia/Shanghai. # most of China -# This currently represents most other zones as well, -# as apparently these regions have been the same since 1970. # Milne gives 8:05:43.2 for Xujiahui Observatory time; round to nearest. # Guo says Shanghai switched to UT +08 "from the end of the 19th century". # -# Long-shu Time (probably due to Long and Shu being two names of the area) UT +07 -# Asia/Chongqing (currently a link to Asia/Shanghai) +# Long-shu Time (probably as Long and Shu were two names of the area) UT +07 +# Now part of Asia/Shanghai; its pre-1970 times are not recorded here. # Guangxi, Guizhou, Hainan, Ningxia, Sichuan, Shaanxi, and Yunnan; -# most of Gansu; west Inner Mongolia; west Qinghai; and the Guangdong +# most of Gansu; west Inner Mongolia; east Qinghai; and the Guangdong # counties Deqing, Enping, Kaiping, Luoding, Taishan, Xinxing, # Yangchun, Yangjiang, Yu'nan, and Yunfu. # # Xin-zang Time ("Xinjiang-Tibet Time") UT +06 -# Asia/Urumqi -# This currently represents Kunlun Time as well, -# as apparently the two regions have been the same since 1970. +# This region is now part of either Asia/Urumqi or Asia/Shanghai with +# current boundaries uncertain; times before 1970 for areas that +# disagree with Ürümqi or Shanghai are not recorded here. # The Gansu counties Aksay, Anxi, Dunhuang, Subei; west Qinghai; # the Guangdong counties Xuwen, Haikang, Suixi, Lianjiang, # Zhanjiang, Wuchuan, Huazhou, Gaozhou, Maoming, Dianbai, and Xinyi; @@ -422,7 +424,7 @@ Rule PRC 1987 1991 - Apr Sun>=10 0:00 1:00 D # Fukang, Kuitun, Kumukuli, Miquan, Qitai, and Turfan. # # Kunlun Time UT +05:30 -# Asia/Kashgar (currently a link to Asia/Urumqi) +# This region is now in the same status as Xin-zang Time (see above). # West Tibet, including Pulan, Aheqi, Shufu, Shule; # West Xinjiang, including Aksu, Atushi, Yining, Hetian, Cele, Luopu, Nileke, # Zhaosu, Tekesi, Gongliu, Chabuchaer, Huocheng, Bole, Pishan, Suiding, @@ -477,7 +479,7 @@ Rule PRC 1987 1991 - Apr Sun>=10 0:00 1:00 D # From David Cochrane (2014-03-26): # Just a confirmation that Ürümqi time was implemented in Ürümqi on 1 Feb 1986: -# http://content.time.com/time/magazine/article/0,9171,960684,00.html +# https://content.time.com/time/magazine/article/0,9171,960684,00.html # From Luther Ma (2014-04-22): # I have interviewed numerous people of various nationalities and from @@ -523,7 +525,7 @@ Zone Asia/Shanghai 8:05:43 - LMT 1901 # Xinjiang time, used by many in western China; represented by Ürümqi / Ürümchi # / Wulumuqi. (Please use Asia/Shanghai if you prefer Beijing time.) Zone Asia/Urumqi 5:50:20 - LMT 1928 - 6:00 - XJT + 6:00 - +06 # Hong Kong (Xianggang) @@ -634,7 +636,7 @@ Zone Asia/Hong_Kong 7:36:42 - LMT 1904 Oct 30 # (both in Okinawa) adopt the Western Standard Time which is based on # 120E. The adoption began from Jan 1, 1896. The original text can be # found on Wikisource: -# http://ja.wikisource.org/wiki/標準時ニ關スル件_(公布時) +# https://ja.wikisource.org/wiki/標準時ニ關スル件_(公布時) # ... This could be the first adoption of time zone in Taiwan, because # during the Qing Dynasty, it seems that there was no time zone # declared officially. @@ -647,7 +649,7 @@ Zone Asia/Hong_Kong 7:36:42 - LMT 1904 Oct 30 # territory, including later occupations, adopt Japan Central Time # (UTC+9). The adoption began on Oct 1, 1937. The original text can # be found on Wikisource: -# http://ja.wikisource.org/wiki/明治二十八年勅令第百六十七號標準時ニ關スル件中改正ノ件 +# https://ja.wikisource.org/wiki/明治二十八年勅令第百六十七號標準時ニ關スル件中改正ノ件 # # That is, the time zone of Taipei switched to UTC+9 on Oct 1, 1937. @@ -742,30 +744,29 @@ Rule Taiwan 1979 only - Oct 1 0:00 0 S # Zone NAME GMTOFF RULES FORMAT [UNTIL] # Taipei or Taibei or T'ai-pei Zone Asia/Taipei 8:06:00 - LMT 1896 Jan 1 - 8:00 - JWST 1937 Oct 1 + 8:00 - CST 1937 Oct 1 9:00 - JST 1945 Sep 21 1:00 8:00 Taiwan C%sT # Macau (Macao, Aomen) # Rule NAME FROM TO TYPE IN ON AT SAVE LETTER/S -Rule Macau 1961 1962 - Mar Sun>=16 3:30 1:00 S -Rule Macau 1961 1964 - Nov Sun>=1 3:30 0 - -Rule Macau 1963 only - Mar Sun>=16 0:00 1:00 S -Rule Macau 1964 only - Mar Sun>=16 3:30 1:00 S -Rule Macau 1965 only - Mar Sun>=16 0:00 1:00 S -Rule Macau 1965 only - Oct 31 0:00 0 - -Rule Macau 1966 1971 - Apr Sun>=16 3:30 1:00 S -Rule Macau 1966 1971 - Oct Sun>=16 3:30 0 - -Rule Macau 1972 1974 - Apr Sun>=15 0:00 1:00 S -Rule Macau 1972 1973 - Oct Sun>=15 0:00 0 - -Rule Macau 1974 1977 - Oct Sun>=15 3:30 0 - -Rule Macau 1975 1977 - Apr Sun>=15 3:30 1:00 S -Rule Macau 1978 1980 - Apr Sun>=15 0:00 1:00 S -Rule Macau 1978 1980 - Oct Sun>=15 0:00 0 - +Rule Macau 1961 1962 - Mar Sun>=16 3:30 1:00 D +Rule Macau 1961 1964 - Nov Sun>=1 3:30 0 S +Rule Macau 1963 only - Mar Sun>=16 0:00 1:00 D +Rule Macau 1964 only - Mar Sun>=16 3:30 1:00 D +Rule Macau 1965 only - Mar Sun>=16 0:00 1:00 D +Rule Macau 1965 only - Oct 31 0:00 0 S +Rule Macau 1966 1971 - Apr Sun>=16 3:30 1:00 D +Rule Macau 1966 1971 - Oct Sun>=16 3:30 0 S +Rule Macau 1972 1974 - Apr Sun>=15 0:00 1:00 D +Rule Macau 1972 1973 - Oct Sun>=15 0:00 0 S +Rule Macau 1974 1977 - Oct Sun>=15 3:30 0 S +Rule Macau 1975 1977 - Apr Sun>=15 3:30 1:00 D +Rule Macau 1978 1980 - Apr Sun>=15 0:00 1:00 D +Rule Macau 1978 1980 - Oct Sun>=15 0:00 0 S # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone Asia/Macau 7:34:20 - LMT 1912 Jan 1 - 8:00 Macau MO%sT 1999 Dec 20 # return to China - 8:00 PRC C%sT + 8:00 Macau C%sT ############################################################################### @@ -784,6 +785,12 @@ Zone Asia/Macau 7:34:20 - LMT 1912 Jan 1 # Looks like the time zone split in Cyprus went through last night. # http://cyprus-mail.com/2016/10/30/cyprus-new-division-two-time-zones-now-reality/ +# From Paul Eggert (2017-10-18): +# Northern Cyprus will reinstate winter time on October 29, thus +# staying in sync with the rest of Cyprus. See: Anastasiou A. +# Cyprus to remain united in time. Cyprus Mail 2017-10-17. +# https://cyprus-mail.com/2017/10/17/cyprus-remain-united-time/ + # Rule NAME FROM TO TYPE IN ON AT SAVE LETTER/S Rule Cyprus 1975 only - Apr 13 0:00 1:00 S Rule Cyprus 1975 only - Oct 12 0:00 0 - @@ -801,7 +808,8 @@ Zone Asia/Nicosia 2:13:28 - LMT 1921 Nov 14 Zone Asia/Famagusta 2:15:48 - LMT 1921 Nov 14 2:00 Cyprus EE%sT 1998 Sep 2:00 EUAsia EE%sT 2016 Sep 8 - 3:00 - +03 + 3:00 - +03 2017 Oct 29 1:00u + 2:00 EUAsia EE%sT # Classically, Cyprus belongs to Asia; e.g. see Herodotus, Histories, I.72. # However, for various reasons many users expect to find it under Europe. @@ -861,7 +869,7 @@ Zone Asia/Tbilisi 2:59:11 - LMT 1880 # From João Carrascalão, brother of the former governor of East Timor, in # East Timor may be late for its millennium -# (1999-12-26/31): +# (1999-12-26/31): # Portugal tried to change the time forward in 1974 because the sun # rises too early but the suggestion raised a lot of problems with the # Timorese and I still don't think it would work today because it @@ -881,30 +889,70 @@ Zone Asia/Tbilisi 2:59:11 - LMT 1880 # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone Asia/Dili 8:22:20 - LMT 1912 Jan 1 - 8:00 - TLT 1942 Feb 21 23:00 # E Timor Time - 9:00 - JST 1945 Sep 23 - 9:00 - TLT 1976 May 3 - 8:00 - WITA 2000 Sep 17 0:00 - 9:00 - TLT + 8:00 - +08 1942 Feb 21 23:00 + 9:00 - +09 1976 May 3 + 8:00 - +08 2000 Sep 17 0:00 + 9:00 - +09 # India # From Ian P. Beacock, in "A brief history of (modern) time", The Atlantic -# http://www.theatlantic.com/technology/archive/2015/12/the-creation-of-modern-time/421419/ +# https://www.theatlantic.com/technology/archive/2015/12/the-creation-of-modern-time/421419/ # (2015-12-22): # In January 1906, several thousand cotton-mill workers rioted on the # outskirts of Bombay.... They were protesting the proposed abolition of # local time in favor of Indian Standard Time.... Journalists called this # dispute the "Battle of the Clocks." It lasted nearly half a century. +# From Paul Eggert (2017-04-20): +# Good luck trying to nail down old timekeeping records in India. +# "... in the nineteenth century ... Madras Observatory took its magnetic +# measurements on Göttingen time, its meteorological measurements on Madras +# (local) time, dropped its time ball on Greenwich (ocean navigator's) time, +# and distributed civil (local time)." -- Bartky IR. Selling the true time: +# 19th-century timekeeping in america. Stanford U Press (2000), 247 note 19. +# "A more potent cause of resistance to the general adoption of the present +# standard time lies in the fact that it is Madras time. The citizen of +# Bombay, proud of being 'primus in Indis' and of Calcutta, equally proud of +# his city being the Capital of India, and - for a part of the year - the Seat +# of the Supreme Government, alike look down on Madras, and refuse to change +# the time they are using, for that of what they regard as a benighted +# Presidency; while Madras, having for long given the standard time to the +# rest of India, would resist the adoption of any other Indian standard in its +# place." -- Oldham RD. On Time in India: a suggestion for its improvement. +# Proceedings of the Asiatic Society of Bengal (April 1899), 49-55. +# +# "In 1870 ... Madras time - 'now used by the telegraph and regulated from the +# only government observatory' - was suggested as a standard railway time, +# first to be adopted on the Great Indian Peninsular Railway (GIPR).... +# Calcutta, Bombay, and Karachi, were to be allowed to continue with their +# local time for civil purposes." - Prasad R. Tracks of Change: Railways and +# Everyday Life in Colonial India. Cambridge University Press (2016), 145. +# +# Reed S, Low F. The Indian Year Book 1936-37. Bennett, Coleman, pp 27-8. +# https://archive.org/details/in.ernet.dli.2015.282212 +# This lists +052110 as Madras local time used in railways, and says that on +# 1906-01-01 railways and telegraphs in India switched to +0530. Some +# municipalities retained their former time, and the time in Calcutta +# continued to depend on whether you were at the railway station or at +# government offices. Government time was at +055320 (according to Shanks) or +# at +0554 (according to the Indian Year Book). Railway time is more +# appropriate for our purposes, as it was better documented, it is what we do +# elsewhere (e.g., Europe/London before 1880), and after 1906 it was +# consistent in the region now identified by Asia/Kolkata. So, use railway +# time for 1870-1941. Shanks is our only (and dubious) source for the +# 1941-1945 data. + # Zone NAME GMTOFF RULES FORMAT [UNTIL] -Zone Asia/Kolkata 5:53:28 - LMT 1880 # Kolkata - 5:53:20 - HMT 1941 Oct # Howrah Mean Time? - 6:30 - BURT 1942 May 15 # Burma Time +Zone Asia/Kolkata 5:53:28 - LMT 1854 Jun 28 # Kolkata + 5:53:20 - HMT 1870 # Howrah Mean Time? + 5:21:10 - MMT 1906 Jan 1 # Madras local time + 5:30 - IST 1941 Oct + 5:30 1:00 +0630 1942 May 15 5:30 - IST 1942 Sep - 5:30 1:00 IST 1945 Oct 15 + 5:30 1:00 +0630 1945 Oct 15 5:30 - IST -# The following are like Asia/Kolkata: +# Since 1970 the following are like Asia/Kolkata: # Andaman Is # Lakshadweep (Laccadive, Minicoy and Amindivi Is) # Nicobar Is @@ -953,33 +1001,33 @@ Zone Asia/Jakarta 7:07:12 - LMT 1867 Aug 10 # Shanks & Pottenger say the next transition was at 1924 Jan 1 0:13, # but this must be a typo. 7:07:12 - BMT 1923 Dec 31 23:47:12 # Batavia - 7:20 - JAVT 1932 Nov # Java Time - 7:30 - WIB 1942 Mar 23 - 9:00 - JST 1945 Sep 23 - 7:30 - WIB 1948 May - 8:00 - WIB 1950 May - 7:30 - WIB 1964 + 7:20 - +0720 1932 Nov + 7:30 - +0730 1942 Mar 23 + 9:00 - +09 1945 Sep 23 + 7:30 - +0730 1948 May + 8:00 - +08 1950 May + 7:30 - +0730 1964 7:00 - WIB # west and central Borneo Zone Asia/Pontianak 7:17:20 - LMT 1908 May 7:17:20 - PMT 1932 Nov # Pontianak MT - 7:30 - WIB 1942 Jan 29 - 9:00 - JST 1945 Sep 23 - 7:30 - WIB 1948 May - 8:00 - WIB 1950 May - 7:30 - WIB 1964 + 7:30 - +0730 1942 Jan 29 + 9:00 - +09 1945 Sep 23 + 7:30 - +0730 1948 May + 8:00 - +08 1950 May + 7:30 - +0730 1964 8:00 - WITA 1988 Jan 1 7:00 - WIB # Sulawesi, Lesser Sundas, east and south Borneo Zone Asia/Makassar 7:57:36 - LMT 1920 7:57:36 - MMT 1932 Nov # Macassar MT - 8:00 - WITA 1942 Feb 9 - 9:00 - JST 1945 Sep 23 + 8:00 - +08 1942 Feb 9 + 9:00 - +09 1945 Sep 23 8:00 - WITA # Maluku Islands, West Papua, Papua Zone Asia/Jayapura 9:22:48 - LMT 1932 Nov - 9:00 - WIT 1944 Sep 1 - 9:30 - ACST 1964 + 9:00 - +09 1944 Sep 1 + 9:30 - +0930 1964 9:00 - WIT # Iran @@ -1011,8 +1059,6 @@ Zone Asia/Jayapura 9:22:48 - LMT 1932 Nov # for at least the last 5 years. Before that, for a few years, the # date used was the first Thursday night of Farvardin and the last # Thursday night of Shahrivar, but I can't give exact dates.... -# I have also changed the abbreviations to what is considered correct -# here in Iran, IRST for regular time and IRDT for daylight saving time. # # From Roozbeh Pournader (2005-04-05): # The text of the Iranian law, in effect since 1925, clearly mentions @@ -1048,7 +1094,7 @@ Zone Asia/Jayapura 9:22:48 - LMT 1932 Nov # From Reuters (2007-09-16), with a heads-up from Jesper Nørgaard Welen: # ... the Guardian Council ... approved a law on Sunday to re-introduce # daylight saving time ... -# http://uk.reuters.com/article/oilRpt/idUKBLA65048420070916 +# https://uk.reuters.com/article/oilRpt/idUKBLA65048420070916 # # From Roozbeh Pournader (2007-11-05): # This is quoted from Official Gazette of the Islamic Republic of @@ -1119,9 +1165,9 @@ Rule Iran 2036 max - Sep 21 0:00 0 S # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone Asia/Tehran 3:25:44 - LMT 1916 3:25:44 - TMT 1946 # Tehran Mean Time - 3:30 - IRST 1977 Nov - 4:00 Iran IR%sT 1979 - 3:30 Iran IR%sT + 3:30 - +0330 1977 Nov + 4:00 Iran +04/+05 1979 + 3:30 Iran +0330/+0430 # Iraq @@ -1147,7 +1193,7 @@ Zone Asia/Tehran 3:25:44 - LMT 1916 # http://www.aswataliraq.info/look/article.tpl?id=2047&IdLanguage=17&IdPublication=4&NrArticle=71743&NrIssue=1&NrSection=10 # # We have published a short article in English about the change: -# http://www.timeanddate.com/news/time/iraq-dumps-daylight-saving.html +# https://www.timeanddate.com/news/time/iraq-dumps-daylight-saving.html # Rule NAME FROM TO TYPE IN ON AT SAVE LETTER/S Rule Iraq 1982 only - May 1 0:00 1:00 D @@ -1164,8 +1210,8 @@ Rule Iraq 1991 2007 - Oct 1 3:00s 0 S # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone Asia/Baghdad 2:57:40 - LMT 1890 2:57:36 - BMT 1918 # Baghdad Mean Time? - 3:00 - AST 1982 May - 3:00 Iraq A%sT + 3:00 - +03 1982 May + 3:00 Iraq +03/+04 ############################################################################### @@ -1455,17 +1501,15 @@ Rule Japan 1950 1951 - May Sun>=1 2:00 1:00 D # From Yu-Cheng Chuang (2013-07-12): # ...the Meiji Emperor announced Ordinance No. 167 of Meiji Year 28 "The clause # about standard time" ... The adoption began from Jan 1, 1896. -# http://ja.wikisource.org/wiki/標準時ニ關スル件_(公布時) +# https://ja.wikisource.org/wiki/標準時ニ關スル件_(公布時) # # ...the Showa Emperor announced Ordinance No. 529 of Showa Year 12 ... which # means the whole Japan territory, including later occupations, adopt Japan # Central Time (UTC+9). The adoption began on Oct 1, 1937. -# http://ja.wikisource.org/wiki/明治二十八年勅令第百六十七號標準時ニ關スル件中改正ノ件 +# https://ja.wikisource.org/wiki/明治二十八年勅令第百六十七號標準時ニ關スル件中改正ノ件 # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone Asia/Tokyo 9:18:59 - LMT 1887 Dec 31 15:00u - 9:00 - JST 1896 Jan 1 - 9:00 - JCST 1937 Oct 1 9:00 Japan J%sT # Since 1938, all Japanese possessions have been like Asia/Tokyo. @@ -1524,7 +1568,7 @@ Zone Asia/Tokyo 9:18:59 - LMT 1887 Dec 31 15:00u # Official, in Arabic: # http://www.petra.gov.jo/public_news/Nws_NewsDetails.aspx?Menu_ID=&Site_Id=2&lang=1&NewsID=133230&CatID=14 # ... Our background/permalink about it -# http://www.timeanddate.com/news/time/jordan-reverses-dst-decision.html +# https://www.timeanddate.com/news/time/jordan-reverses-dst-decision.html # ... # http://www.petra.gov.jo/Public_News/Nws_NewsDetails.aspx?lang=2&site_id=1&NewsID=133313&Type=P # ... says midnight for the coming one and 1:00 for the ones in the future @@ -1741,7 +1785,23 @@ Zone Asia/Amman 2:23:44 - LMT 1931 # Kazakh 1992-01-13 act appears to provide the same rules and 1992-03-27 # act was to be enacted on the last Sunday of March 1992. -# From Paul Eggert (2016-11-07): +# From Stepan Golosunov (2016-11-08): +# Turgai reorganization should affect only southern part of Qostanay +# oblast. Which should probably be separated into Asia/Arkalyk zone. +# (There were also 1970, 1988 and 1990 Turgai oblast reorganizations +# according to wikipedia.) +# +# [For Qostanay] http://www.ng.kz/gazeta/195/hranit/ +# suggests that clocks were to be moved 40 minutes backwards on +# 1920-01-01 to the fourth time belt. But I do not understand +# how that could happen.... +# +# [For Atyrau and Oral] 1919 decree +# (http://www.worldtimezone.com/dst_news/dst_news_russia-1919-02-08.html +# and in Byalokoz) lists Ural river (plus 10 versts on its left bank) in +# the third time belt (before 1930 this means +03). + +# From Paul Eggert (2016-12-06): # The tables below reflect Golosunov's remarks, with exceptions as noted. # Zone NAME GMTOFF RULES FORMAT [UNTIL] @@ -1771,7 +1831,7 @@ Zone Asia/Qyzylorda 4:21:52 - LMT 1924 May 2 6:00 - +06 # The following zone is like Asia/Qyzylorda except for being one # hour earlier from 1991-09-29 to 1992-03-29. The 1991/2 rules for -# Qostenay are unclear partly because of the 1997 Turgai +# Qostanay are unclear partly because of the 1997 Turgai # reorganization, so this zone is commented out for now. #Zone Asia/Qostanay 4:14:20 - LMT 1924 May 2 # 4:00 - +04 1930 Jun 21 @@ -1808,7 +1868,7 @@ Zone Asia/Aqtau 3:21:04 - LMT 1924 May 2 # Atyraū (KZ-ATY) is like Mangghystaū except it switched from # +04/+05 to +05/+06 in spring 1999, not fall 1994. Zone Asia/Atyrau 3:27:44 - LMT 1924 May 2 - 4:00 - +04 1930 Jun 21 + 3:00 - +03 1930 Jun 21 5:00 - +05 1981 Oct 1 6:00 - +06 1982 Apr 1 5:00 RussiaAsia +05/+06 1991 Mar 31 2:00s @@ -1820,7 +1880,7 @@ Zone Asia/Atyrau 3:27:44 - LMT 1924 May 2 # From Paul Eggert (2016-03-18): # The 1989 transition is from USSR act No. 227 (1989-03-14). Zone Asia/Oral 3:25:24 - LMT 1924 May 2 # or Ural'sk - 4:00 - +04 1930 Jun 21 + 3:00 - +03 1930 Jun 21 5:00 - +05 1981 Apr 1 5:00 1:00 +06 1981 Oct 1 6:00 - +06 1982 Apr 1 @@ -1866,9 +1926,9 @@ Zone Asia/Bishkek 4:58:24 - LMT 1924 May 2 # between 1987 and 1988 ... # From Sanghyuk Jung (2014-10-29): -# http://mm.icann.org/pipermail/tz/2014-October/021830.html +# https://mm.icann.org/pipermail/tz/2014-October/021830.html # According to the Korean Wikipedia -# http://ko.wikipedia.org/wiki/한국_표준시 +# https://ko.wikipedia.org/wiki/한국_표준시 # [oldid=12896437 2014-09-04 08:03 UTC] # DST in Republic of Korea was as follows.... And I checked old # newspapers in Korean, all articles correspond with data in Wikipedia. @@ -1926,14 +1986,12 @@ Rule ROK 1987 1988 - Oct Sun>=8 3:00 0 S # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone Asia/Seoul 8:27:52 - LMT 1908 Apr 1 8:30 - KST 1912 Jan 1 - 9:00 - JCST 1937 Oct 1 9:00 - JST 1945 Sep 8 9:00 - KST 1954 Mar 21 8:30 ROK K%sT 1961 Aug 10 9:00 ROK K%sT Zone Asia/Pyongyang 8:23:00 - LMT 1908 Apr 1 8:30 - KST 1912 Jan 1 - 9:00 - JCST 1937 Oct 1 9:00 - JST 1945 Aug 24 9:00 - KST 2015 Aug 15 00:00 8:30 - KST @@ -1988,30 +2046,29 @@ Rule NBorneo 1935 1941 - Dec 14 0:00 0 - # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone Asia/Kuala_Lumpur 6:46:46 - LMT 1901 Jan 1 6:55:25 - SMT 1905 Jun 1 # Singapore M.T. - 7:00 - MALT 1933 Jan 1 # Malaya Time - 7:00 0:20 MALST 1936 Jan 1 - 7:20 - MALT 1941 Sep 1 - 7:30 - MALT 1942 Feb 16 - 9:00 - JST 1945 Sep 12 - 7:30 - MALT 1982 Jan 1 - 8:00 - MYT # Malaysia Time + 7:00 - +07 1933 Jan 1 + 7:00 0:20 +0720 1936 Jan 1 + 7:20 - +0720 1941 Sep 1 + 7:30 - +0730 1942 Feb 16 + 9:00 - +09 1945 Sep 12 + 7:30 - +0730 1982 Jan 1 + 8:00 - +08 # Sabah & Sarawak # From Paul Eggert (2014-08-12): # The data entries here are mostly from Shanks & Pottenger, but the 1942, 1945 # and 1982 transition dates are from Mok Ly Yng. # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone Asia/Kuching 7:21:20 - LMT 1926 Mar - 7:30 - BORT 1933 # Borneo Time - 8:00 NBorneo BOR%sT 1942 Feb 16 - 9:00 - JST 1945 Sep 12 - 8:00 - BORT 1982 Jan 1 - 8:00 - MYT + 7:30 - +0730 1933 + 8:00 NBorneo +08/+0820 1942 Feb 16 + 9:00 - +09 1945 Sep 12 + 8:00 - +08 # Maldives # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone Indian/Maldives 4:54:00 - LMT 1880 # Male 4:54:00 - MMT 1960 # Male Mean Time - 5:00 - MVT # Maldives Time + 5:00 - +05 # Mongolia @@ -2093,7 +2150,7 @@ Zone Indian/Maldives 4:54:00 - LMT 1880 # Male # +08:00 instead. Different sources appear to disagree with the tz # database on this, e.g.: # -# http://www.timeanddate.com/worldclock/city.html?n=1026 +# https://www.timeanddate.com/worldclock/city.html?n=1026 # http://www.worldtimeserver.com/current_time_in_MN.aspx # # both say GMT+08:00. @@ -2138,37 +2195,41 @@ Rule Mongol 1983 only - Oct 1 0:00 0 - # correction of 02:00 (in the previous edition) not being done correctly # in the latest edition; so ignore it for now. +# From Ganbold Tsagaankhuu (2017-02-09): +# Mongolian Government meeting has concluded today to cancel daylight +# saving time adoption in Mongolia. Source: http://zasag.mn/news/view/16192 + Rule Mongol 1985 1998 - Mar lastSun 0:00 1:00 S Rule Mongol 1984 1998 - Sep lastSun 0:00 0 - # IATA SSIM (1999-09) says Mongolia no longer observes DST. Rule Mongol 2001 only - Apr lastSat 2:00 1:00 S Rule Mongol 2001 2006 - Sep lastSat 2:00 0 - Rule Mongol 2002 2006 - Mar lastSat 2:00 1:00 S -Rule Mongol 2015 max - Mar lastSat 2:00 1:00 S -Rule Mongol 2015 max - Sep lastSat 0:00 0 - +Rule Mongol 2015 2016 - Mar lastSat 2:00 1:00 S +Rule Mongol 2015 2016 - Sep lastSat 0:00 0 - # Zone NAME GMTOFF RULES FORMAT [UNTIL] # Hovd, a.k.a. Chovd, Dund-Us, Dzhargalant, Khovd, Jirgalanta Zone Asia/Hovd 6:06:36 - LMT 1905 Aug - 6:00 - HOVT 1978 # Hovd Time - 7:00 Mongol HOV%sT + 6:00 - +06 1978 + 7:00 Mongol +07/+08 # Ulaanbaatar, a.k.a. Ulan Bataar, Ulan Bator, Urga Zone Asia/Ulaanbaatar 7:07:32 - LMT 1905 Aug - 7:00 - ULAT 1978 # Ulaanbaatar Time - 8:00 Mongol ULA%sT + 7:00 - +07 1978 + 8:00 Mongol +08/+09 # Choibalsan, a.k.a. Bajan Tümen, Bajan Tumen, Chojbalsan, # Choybalsan, Sanbejse, Tchoibalsan Zone Asia/Choibalsan 7:38:00 - LMT 1905 Aug - 7:00 - ULAT 1978 - 8:00 - ULAT 1983 Apr - 9:00 Mongol CHO%sT 2008 Mar 31 # Choibalsan Time - 8:00 Mongol CHO%sT + 7:00 - +07 1978 + 8:00 - +08 1983 Apr + 9:00 Mongol +09/+10 2008 Mar 31 + 8:00 Mongol +08/+09 # Nepal # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone Asia/Kathmandu 5:41:16 - LMT 1920 - 5:30 - IST 1986 - 5:45 - NPT # Nepal Time + 5:30 - +0530 1986 + 5:45 - +0545 # Oman # See Asia/Dubai. @@ -2219,7 +2280,7 @@ Zone Asia/Kathmandu 5:41:16 - LMT 1920 # help reduce load shedding by approving the closure of commercial centres at # 9pm and moving clocks forward by one hour for the next three months. ...." # -# http://www.worldtimezone.net/dst_news/dst_news_pakistan01.html +# http://www.worldtimezone.com/dst_news/dst_news_pakistan01.html # http://www.dailytimes.com.pk/default.asp?page=2008%5C05%5C15%5Cstory_15-5-2008_pg1_4 # From Arthur David Olson (2008-05-19): @@ -2285,7 +2346,7 @@ Zone Asia/Kathmandu 5:41:16 - LMT 1920 # # We have confirmed this year's end date with both with the Ministry of # Water and Power and the Pakistan Electric Power Company: -# http://www.timeanddate.com/news/time/pakistan-ends-dst09.html +# https://www.timeanddate.com/news/time/pakistan-ends-dst09.html # From Christoph Göhre (2009-10-01): # [T]he German Consulate General in Karachi reported me today that Pakistan @@ -2317,10 +2378,10 @@ Rule Pakistan 2009 only - Apr 15 0:00 1:00 S # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone Asia/Karachi 4:28:12 - LMT 1907 - 5:30 - IST 1942 Sep - 5:30 1:00 IST 1945 Oct 15 - 5:30 - IST 1951 Sep 30 - 5:00 - KART 1971 Mar 26 # Karachi Time + 5:30 - +0530 1942 Sep + 5:30 1:00 +0630 1945 Oct 15 + 5:30 - +0530 1951 Sep 30 + 5:00 - +05 1971 Mar 26 5:00 Pakistan PK%sT # Pakistan Time # Palestine @@ -2467,7 +2528,7 @@ Zone Asia/Karachi 4:28:12 - LMT 1907 # # We are not sure if Gaza will do the same, last year they had a different # end date, we will keep this page updated: -# http://www.timeanddate.com/news/time/westbank-gaza-dst-2009.html +# https://www.timeanddate.com/news/time/westbank-gaza-dst-2009.html # From Alexander Krivenyshev (2009-09-02): # Seems that Gaza Strip will go back to Winter Time same date as West Bank. @@ -2505,7 +2566,7 @@ Zone Asia/Karachi 4:28:12 - LMT 1907 # the clocks were set back one hour at 2010-08-11 00:00:00 local time in # Gaza and the West Bank. # Some more background info: -# http://www.timeanddate.com/news/time/westbank-gaza-end-dst-2010.html +# https://www.timeanddate.com/news/time/westbank-gaza-end-dst-2010.html # From Steffen Thorsen (2011-08-26): # Gaza and the West Bank did go back to standard time in the beginning of @@ -2515,7 +2576,7 @@ Zone Asia/Karachi 4:28:12 - LMT 1907 # # http://www.maannews.net/eng/ViewDetails.aspx?ID=416217 # Additional info: -# http://www.timeanddate.com/news/time/palestine-dst-2011.html +# https://www.timeanddate.com/news/time/palestine-dst-2011.html # From Alexander Krivenyshev (2011-08-27): # According to the article in The Jerusalem Post: @@ -2525,7 +2586,7 @@ Zone Asia/Karachi 4:28:12 - LMT 1907 # The Hamas government said on Saturday that it won't observe summertime after # the Muslim feast of Id al-Fitr, which begins on Tuesday..." # ... -# http://www.jpost.com/MiddleEast/Article.aspx?id=235650 +# https://www.jpost.com/MiddleEast/Article.aspx?id=235650 # http://www.worldtimezone.com/dst_news/dst_news_gazastrip05.html # The rules for Egypt are stolen from the 'africa' file. @@ -2546,7 +2607,7 @@ Zone Asia/Karachi 4:28:12 - LMT 1907 # http://safa.ps/details/news/74352/%D8%A8%D8%AF%D8%A1-%D8%A7%D9%84%D8%AA%D9%88%D9%82%D9%8A%D8%AA-%D8%A7%D9%84%D8%B5%D9%8A%D9%81%D9%8A-%D8%A8%D8%A7%D9%84%D8%B6%D9%81%D8%A9-%D9%88%D8%BA%D8%B2%D8%A9-%D9%84%D9%8A%D9%84%D8%A9-%D8%A7%D9%84%D8%AC%D9%85%D8%B9%D8%A9.html # # Our brief summary: -# http://www.timeanddate.com/news/time/gaza-west-bank-dst-2012.html +# https://www.timeanddate.com/news/time/gaza-west-bank-dst-2012.html # From Steffen Thorsen (2013-03-26): # The following news sources tells that Palestine will "start daylight saving @@ -2566,11 +2627,11 @@ Zone Asia/Karachi 4:28:12 - LMT 1907 # From Steffen Thorsen (2015-03-03): # Sources such as http://www.alquds.com/news/article/view/id/548257 -# and http://www.raya.ps/ar/news/890705.html say Palestine areas will +# and https://www.raya.ps/ar/news/890705.html say Palestine areas will # start DST on 2015-03-28 00:00 which is one day later than expected. # # From Paul Eggert (2015-03-03): -# http://www.timeanddate.com/time/change/west-bank/ramallah?year=2014 +# https://www.timeanddate.com/time/change/west-bank/ramallah?year=2014 # says that the fall 2014 transition was Oct 23 at 24:00. # From Hannah Kreitem (2016-03-09): @@ -2594,8 +2655,8 @@ Zone Asia/Karachi 4:28:12 - LMT 1907 # # From Paul Eggert (2016-10-19): # It's also consistent with predictions in the following URLs today: -# http://www.timeanddate.com/time/change/gaza-strip/gaza -# http://www.timeanddate.com/time/change/west-bank/hebron +# https://www.timeanddate.com/time/change/gaza-strip/gaza +# https://www.timeanddate.com/time/change/west-bank/hebron # Rule NAME FROM TO TYPE IN ON AT SAVE LETTER/S Rule EgyptAsia 1957 only - May 10 0:00 1:00 S @@ -2658,7 +2719,7 @@ Zone Asia/Hebron 2:20:23 - LMT 1900 Oct # Philippines, issued a proclamation announcing that 1844-12-30 was to # be immediately followed by 1845-01-01; see R.H. van Gent's # History of the International Date Line -# http://www.staff.science.uu.nl/~gent0113/idl/idl_philippines.htm +# https://www.staff.science.uu.nl/~gent0113/idl/idl_philippines.htm # The rest of the data entries are from Shanks & Pottenger. # From Jesper Nørgaard Welen (2006-04-26): @@ -2685,15 +2746,15 @@ Rule Phil 1978 only - Sep 21 0:00 0 - # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone Asia/Manila -15:56:00 - LMT 1844 Dec 31 8:04:00 - LMT 1899 May 11 - 8:00 Phil PH%sT 1942 May - 9:00 - JST 1944 Nov - 8:00 Phil PH%sT + 8:00 Phil +08/+09 1942 May + 9:00 - +09 1944 Nov + 8:00 Phil +08/+09 # Qatar # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone Asia/Qatar 3:26:08 - LMT 1920 # Al Dawhah / Doha - 4:00 - GST 1972 Jun - 3:00 - AST + 4:00 - +04 1972 Jun + 3:00 - +03 Link Asia/Qatar Asia/Bahrain # Saudi Arabia @@ -2720,7 +2781,7 @@ Link Asia/Qatar Asia/Bahrain # # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone Asia/Riyadh 3:06:52 - LMT 1947 Mar 14 - 3:00 - AST + 3:00 - +03 Link Asia/Riyadh Asia/Aden # Yemen Link Asia/Riyadh Asia/Kuwait @@ -2730,14 +2791,13 @@ Link Asia/Riyadh Asia/Kuwait # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone Asia/Singapore 6:55:25 - LMT 1901 Jan 1 6:55:25 - SMT 1905 Jun 1 # Singapore M.T. - 7:00 - MALT 1933 Jan 1 # Malaya Time - 7:00 0:20 MALST 1936 Jan 1 - 7:20 - MALT 1941 Sep 1 - 7:30 - MALT 1942 Feb 16 - 9:00 - JST 1945 Sep 12 - 7:30 - MALT 1965 Aug 9 # independence - 7:30 - SGT 1982 Jan 1 # Singapore Time - 8:00 - SGT + 7:00 - +07 1933 Jan 1 + 7:00 0:20 +0720 1936 Jan 1 + 7:20 - +0720 1941 Sep 1 + 7:30 - +0730 1942 Feb 16 + 9:00 - +09 1945 Sep 12 + 7:30 - +0730 1982 Jan 1 + 8:00 - +08 # Spratly Is # no information @@ -2796,8 +2856,8 @@ Zone Asia/Singapore 6:55:25 - LMT 1901 Jan 1 Zone Asia/Colombo 5:19:24 - LMT 1880 5:19:32 - MMT 1906 # Moratuwa Mean Time 5:30 - +0530 1942 Jan 5 - 5:30 0:30 +0530/+06 1942 Sep - 5:30 1:00 +0530/+0630 1945 Oct 16 2:00 + 5:30 0:30 +06 1942 Sep + 5:30 1:00 +0630 1945 Oct 16 2:00 5:30 - +0530 1996 May 25 0:00 6:30 - +0630 1996 Oct 26 0:30 6:00 - +06 2006 Apr 15 0:30 @@ -2923,7 +2983,7 @@ Rule Syria 2007 only - Nov Fri>=1 0:00 0 - # We have not found any sources saying anything about when DST ends this year. # # Our summary -# http://www.timeanddate.com/news/time/syria-dst-starts-march-27-2009.html +# https://www.timeanddate.com/news/time/syria-dst-starts-march-27-2009.html # From Steffen Thorsen (2009-10-27): # The Syrian Arab News Network on 2009-09-29 reported that Syria will @@ -2950,7 +3010,7 @@ Rule Syria 2007 only - Nov Fri>=1 0:00 0 - # http://www.sana.sy/ara/2/2012/03/26/408215.htm # # Our brief summary: -# http://www.timeanddate.com/news/time/syria-dst-2012.html +# https://www.timeanddate.com/news/time/syria-dst-2012.html # From Arthur David Olson (2012-03-27): # Assume last Friday in March going forward XXX. @@ -2979,7 +3039,7 @@ Zone Asia/Dushanbe 4:35:12 - LMT 1924 May 2 # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone Asia/Bangkok 6:42:04 - LMT 1880 6:42:04 - BMT 1920 Apr # Bangkok Mean Time - 7:00 - ICT + 7:00 - +07 Link Asia/Bangkok Asia/Phnom_Penh # Cambodia Link Asia/Bangkok Asia/Vientiane # Laos @@ -2995,7 +3055,7 @@ Zone Asia/Ashgabat 3:53:32 - LMT 1924 May 2 # or Ashkhabad # United Arab Emirates # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone Asia/Dubai 3:41:12 - LMT 1920 - 4:00 - GST + 4:00 - +04 Link Asia/Dubai Asia/Muscat # Oman # Uzbekistan @@ -3033,7 +3093,7 @@ Zone Asia/Tashkent 4:37:11 - LMT 1924 May 2 # is quoted verbatim in: # http://www.thoigian.com.vn/?mPage=P80D01 # is translated by Brian Inglis in: -# http://mm.icann.org/pipermail/tz/2014-October/021654.html +# https://mm.icann.org/pipermail/tz/2014-October/021654.html # and is the basis for the information below. # # The 1906 transition was effective July 1 and standardized Indochina to @@ -3068,15 +3128,15 @@ Zone Asia/Tashkent 4:37:11 - LMT 1924 May 2 # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone Asia/Ho_Chi_Minh 7:06:40 - LMT 1906 Jul 1 - 7:06:30 - PLMT 1911 May 1 - 7:00 - ICT 1942 Dec 31 23:00 - 8:00 - IDT 1945 Mar 14 23:00 - 9:00 - JST 1945 Sep 2 - 7:00 - ICT 1947 Apr 1 - 8:00 - IDT 1955 Jul 1 - 7:00 - ICT 1959 Dec 31 23:00 - 8:00 - IDT 1975 Jun 13 - 7:00 - ICT + 7:06:30 - PLMT 1911 May 1 # Phù Liễn MT + 7:00 - +07 1942 Dec 31 23:00 + 8:00 - +08 1945 Mar 14 23:00 + 9:00 - +09 1945 Sep 2 + 7:00 - +07 1947 Apr 1 + 8:00 - +08 1955 Jul 1 + 7:00 - +07 1959 Dec 31 23:00 + 8:00 - +08 1975 Jun 13 + 7:00 - +07 # Yemen # See Asia/Riyadh. diff --git a/db/australasia b/db/australasia index 0bca53e..5f7c86d 100644 --- a/db/australasia +++ b/db/australasia @@ -44,8 +44,8 @@ Zone Australia/Perth 7:43:24 - LMT 1895 Dec 8:00 Aus AW%sT 1943 Jul 8:00 AW AW%sT Zone Australia/Eucla 8:35:28 - LMT 1895 Dec - 8:45 Aus ACW%sT 1943 Jul - 8:45 AW ACW%sT + 8:45 Aus +0845/+0945 1943 Jul + 8:45 AW +0845/+0945 # Queensland # @@ -212,7 +212,8 @@ Rule LH 2008 max - Apr Sun>=1 2:00 0 S Rule LH 2008 max - Oct Sun>=1 2:00 0:30 D Zone Australia/Lord_Howe 10:36:20 - LMT 1895 Feb 10:00 - AEST 1981 Mar - 10:30 LH LH%sT + 10:30 LH +1030/+1130 1985 Jul + 10:30 LH +1030/+11 # Australian miscellany # @@ -250,19 +251,19 @@ Zone Antarctica/Macquarie 0 - -00 1899 Nov 0 - -00 1948 Mar 25 10:00 Aus AE%sT 1967 10:00 AT AE%sT 2010 Apr 4 3:00 - 11:00 - MIST # Macquarie I Standard Time + 11:00 - +11 # Christmas # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone Indian/Christmas 7:02:52 - LMT 1895 Feb - 7:00 - CXT # Christmas Island Time + 7:00 - +07 # Cocos (Keeling) Is # These islands were ruled by the Ross family from about 1830 to 1978. # We don't know when standard time was introduced; for now, we guess 1900. # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone Indian/Cocos 6:27:40 - LMT 1900 - 6:30 - CCT # Cocos Islands Time + 6:30 - +0630 # Fiji @@ -292,7 +293,7 @@ Zone Indian/Cocos 6:27:40 - LMT 1900 # http://www.fiji.gov.fj/index.php?option=com_content&view=article&id=1096:3310-cabinet-approves-change-in-daylight-savings-dates&catid=49:cabinet-releases&Itemid=166 # # A bit more background info here: -# http://www.timeanddate.com/news/time/fiji-dst-ends-march-2010.html +# https://www.timeanddate.com/news/time/fiji-dst-ends-march-2010.html # From Alexander Krivenyshev (2010-10-24): # According to Radio Fiji and Fiji Times online, Fiji will end DST 3 @@ -356,9 +357,12 @@ Zone Indian/Cocos 6:27:40 - LMT 1900 # clocks go forward an hour at 2am to 3am.... Daylight Saving will # end at 3.00am on Sunday 15th January 2017." -# From Paul Eggert (2016-10-03): -# For now, guess DST from 02:00 the first Sunday in November to -# 03:00 the third Sunday in January. Although ad hoc, it matches +# From Paul Eggert (2017-08-21): +# Dominic Fok writes (2017-08-20) that DST ends 2018-01-14, citing +# Extraordinary Government of Fiji Gazette Supplement No. 21 (2017-08-27), +# [Legal Notice No. 41] of an order of the previous day by J Usamate. +# For now, guess DST from 02:00 the first Sunday in November to 03:00 +# the first Sunday on or after January 14. Although ad hoc, it matches # transitions since late 2014 and seems more likely to match future # practice than guessing no DST. @@ -372,19 +376,19 @@ Rule Fiji 2011 only - Mar Sun>=1 3:00 0 - Rule Fiji 2012 2013 - Jan Sun>=18 3:00 0 - Rule Fiji 2014 only - Jan Sun>=18 2:00 0 - Rule Fiji 2014 max - Nov Sun>=1 2:00 1:00 S -Rule Fiji 2015 max - Jan Sun>=15 3:00 0 - +Rule Fiji 2015 max - Jan Sun>=14 3:00 0 - # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone Pacific/Fiji 11:55:44 - LMT 1915 Oct 26 # Suva - 12:00 Fiji FJ%sT # Fiji Time + 12:00 Fiji +12/+13 # French Polynesia # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone Pacific/Gambier -8:59:48 - LMT 1912 Oct # Rikitea - -9:00 - GAMT # Gambier Time + -9:00 - -09 Zone Pacific/Marquesas -9:18:00 - LMT 1912 Oct - -9:30 - MART # Marquesas Time + -9:30 - -0930 Zone Pacific/Tahiti -9:58:16 - LMT 1912 Oct # Papeete - -10:00 - TAHT # Tahiti Time + -10:00 - -10 # Clipperton (near North America) is administered from French Polynesia; # it is uninhabited. @@ -399,15 +403,15 @@ Link Pacific/Guam Pacific/Saipan # N Mariana Is # Kiribati # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone Pacific/Tarawa 11:32:04 - LMT 1901 # Bairiki - 12:00 - GILT # Gilbert Is Time + 12:00 - +12 Zone Pacific/Enderbury -11:24:20 - LMT 1901 - -12:00 - PHOT 1979 Oct # Phoenix Is Time - -11:00 - PHOT 1995 - 13:00 - PHOT + -12:00 - -12 1979 Oct + -11:00 - -11 1995 + 13:00 - +13 Zone Pacific/Kiritimati -10:29:20 - LMT 1901 - -10:40 - LINT 1979 Oct # Line Is Time - -10:00 - LINT 1995 - 14:00 - LINT + -10:40 - -1040 1979 Oct + -10:00 - -10 1995 + 14:00 - +14 # N Mariana Is # See Pacific/Guam. @@ -415,31 +419,31 @@ Zone Pacific/Kiritimati -10:29:20 - LMT 1901 # Marshall Is # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone Pacific/Majuro 11:24:48 - LMT 1901 - 11:00 - MHT 1969 Oct # Marshall Islands Time - 12:00 - MHT + 11:00 - +11 1969 Oct + 12:00 - +12 Zone Pacific/Kwajalein 11:09:20 - LMT 1901 - 11:00 - MHT 1969 Oct - -12:00 - KWAT 1993 Aug 20 # Kwajalein Time - 12:00 - MHT + 11:00 - +11 1969 Oct + -12:00 - -12 1993 Aug 20 + 12:00 - +12 # Micronesia # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone Pacific/Chuuk 10:07:08 - LMT 1901 - 10:00 - CHUT # Chuuk Time + 10:00 - +10 Zone Pacific/Pohnpei 10:32:52 - LMT 1901 # Kolonia - 11:00 - PONT # Pohnpei Time + 11:00 - +11 Zone Pacific/Kosrae 10:51:56 - LMT 1901 - 11:00 - KOST 1969 Oct # Kosrae Time - 12:00 - KOST 1999 - 11:00 - KOST + 11:00 - +11 1969 Oct + 12:00 - +12 1999 + 11:00 - +11 # Nauru # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone Pacific/Nauru 11:07:40 - LMT 1921 Jan 15 # Uaobe - 11:30 - NRT 1942 Mar 15 # Nauru Time - 9:00 - JST 1944 Aug 15 - 11:30 - NRT 1979 May - 12:00 - NRT + 11:30 - +1130 1942 Mar 15 + 9:00 - +09 1944 Aug 15 + 11:30 - +1130 1979 May + 12:00 - +12 # New Caledonia # Rule NAME FROM TO TYPE IN ON AT SAVE LETTER/S @@ -450,7 +454,7 @@ Rule NC 1996 only - Dec 1 2:00s 1:00 S Rule NC 1997 only - Mar 2 2:00s 0 - # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone Pacific/Noumea 11:05:48 - LMT 1912 Jan 13 # Nouméa - 11:00 NC NC%sT + 11:00 NC +11/+12 ############################################################################### @@ -491,8 +495,8 @@ Zone Pacific/Auckland 11:39:04 - LMT 1868 Nov 2 11:30 NZ NZ%sT 1946 Jan 1 12:00 NZ NZ%sT Zone Pacific/Chatham 12:13:48 - LMT 1868 Nov 2 - 12:15 - CHAST 1946 Jan 1 - 12:45 Chatham CHA%sT + 12:15 - +1215 1946 Jan 1 + 12:45 Chatham +1245/+1345 Link Pacific/Auckland Antarctica/McMurdo @@ -514,8 +518,8 @@ Rule Cook 1979 1991 - Mar Sun>=1 0:00 0 - Rule Cook 1979 1990 - Oct lastSun 0:00 0:30 HS # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone Pacific/Rarotonga -10:39:04 - LMT 1901 # Avarua - -10:30 - CKT 1978 Nov 12 # Cook Is Time - -10:00 Cook CK%sT + -10:30 - -1030 1978 Nov 12 + -10:00 Cook -10/-0930 ############################################################################### @@ -523,29 +527,29 @@ Zone Pacific/Rarotonga -10:39:04 - LMT 1901 # Avarua # Niue # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone Pacific/Niue -11:19:40 - LMT 1901 # Alofi - -11:20 - NUT 1951 # Niue Time - -11:30 - NUT 1978 Oct 1 - -11:00 - NUT + -11:20 - -1120 1951 + -11:30 - -1130 1978 Oct 1 + -11:00 - -11 # Norfolk # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone Pacific/Norfolk 11:11:52 - LMT 1901 # Kingston - 11:12 - NMT 1951 # Norfolk Mean Time - 11:30 - NFT 1974 Oct 27 02:00 # Norfolk T. - 11:30 1:00 NFST 1975 Mar 2 02:00 - 11:30 - NFT 2015 Oct 4 02:00 - 11:00 - NFT + 11:12 - +1112 1951 + 11:30 - +1130 1974 Oct 27 02:00 + 11:30 1:00 +1230 1975 Mar 2 02:00 + 11:30 - +1130 2015 Oct 4 02:00 + 11:00 - +11 # Palau (Belau) # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone Pacific/Palau 8:57:56 - LMT 1901 # Koror - 9:00 - PWT # Palau Time + 9:00 - +09 # Papua New Guinea # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone Pacific/Port_Moresby 9:48:40 - LMT 1880 9:48:32 - PMMT 1895 # Port Moresby Mean Time - 10:00 - PGT # Papua New Guinea Time + 10:00 - +10 # # From Paul Eggert (2014-10-13): # Base the Bougainville entry on the Arawa-Kieta region, which appears to have @@ -556,32 +560,30 @@ Zone Pacific/Port_Moresby 9:48:40 - LMT 1880 # The World War II entries below are instead based on Arawa-Kieta. # The Japanese occupied Kieta in July 1942, # according to the Pacific War Online Encyclopedia -# http://pwencycl.kgbudge.com/B/o/Bougainville.htm +# https://pwencycl.kgbudge.com/B/o/Bougainville.htm # and seem to have controlled it until their 1945-08-21 surrender. # # The Autonomous Region of Bougainville switched from UT +10 to +11 -# on 2014-12-28 at 02:00. They call +11 "Bougainville Standard Time"; -# abbreviate this as BST. See: +# on 2014-12-28 at 02:00. They call +11 "Bougainville Standard Time". +# See: # http://www.bougainville24.com/bougainville-issues/bougainville-gets-own-timezone/ # Zone Pacific/Bougainville 10:22:16 - LMT 1880 9:48:32 - PMMT 1895 - 10:00 - PGT 1942 Jul - 9:00 - JST 1945 Aug 21 - 10:00 - PGT 2014 Dec 28 2:00 - 11:00 - BST + 10:00 - +10 1942 Jul + 9:00 - +09 1945 Aug 21 + 10:00 - +10 2014 Dec 28 2:00 + 11:00 - +11 # Pitcairn # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone Pacific/Pitcairn -8:40:20 - LMT 1901 # Adamstown - -8:30 - PNT 1998 Apr 27 0:00 - -8:00 - PST # Pitcairn Standard Time + -8:30 - -0830 1998 Apr 27 0:00 + -8:00 - -08 # American Samoa -Zone Pacific/Pago_Pago 12:37:12 - LMT 1879 Jul 5 +Zone Pacific/Pago_Pago 12:37:12 - LMT 1892 Jul 5 -11:22:48 - LMT 1911 - -11:00 - NST 1967 Apr # N=Nome - -11:00 - BST 1983 Nov 30 # B=Bering -11:00 - SST # S=Samoa Link Pacific/Pago_Pago Pacific/Midway # in US minor outlying islands @@ -596,7 +598,7 @@ Link Pacific/Pago_Pago Pacific/Midway # in US minor outlying islands # Sunday of April 2011." # # Background info: -# http://www.timeanddate.com/news/time/samoa-dst-plan-2009.html +# https://www.timeanddate.com/news/time/samoa-dst-plan-2009.html # # Samoa's Daylight Saving Time Act 2009 is available here, but does not # contain any dates: @@ -660,19 +662,19 @@ Rule WS 2011 only - Sep lastSat 3:00 1 D Rule WS 2012 max - Apr Sun>=1 4:00 0 S Rule WS 2012 max - Sep lastSun 3:00 1 D # Zone NAME GMTOFF RULES FORMAT [UNTIL] -Zone Pacific/Apia 12:33:04 - LMT 1879 Jul 5 +Zone Pacific/Apia 12:33:04 - LMT 1892 Jul 5 -11:26:56 - LMT 1911 - -11:30 - WSST 1950 - -11:00 WS S%sT 2011 Dec 29 24:00 # S=Samoa - 13:00 WS WS%sT + -11:30 - -1130 1950 + -11:00 WS -11/-10 2011 Dec 29 24:00 + 13:00 WS +13/+14 # Solomon Is # excludes Bougainville, for which see Papua New Guinea # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone Pacific/Guadalcanal 10:39:48 - LMT 1912 Oct # Honiara - 11:00 - SBT # Solomon Is Time + 11:00 - +11 -# Tokelau Is +# Tokelau # # From Gwillim Law (2011-12-29) # A correspondent informed me that Tokelau, like Samoa, will be skipping @@ -687,14 +689,14 @@ Zone Pacific/Guadalcanal 10:39:48 - LMT 1912 Oct # Honiara # From Paul Eggert (2012-07-25) # A Google Books snippet of Appendix to the Journals of the House of # Representatives of New Zealand, Session 1948, -# , page 65, says Tokelau +# , page 65, says Tokelau # was "11 hours slow on G.M.T." Go with Thorsen and assume Shanks & Pottenger # are off by an hour starting in 1901. # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone Pacific/Fakaofo -11:24:56 - LMT 1901 - -11:00 - TKT 2011 Dec 30 # Tokelau Time - 13:00 - TKT + -11:00 - -11 2011 Dec 30 + 13:00 - +13 # Tonga # Rule NAME FROM TO TYPE IN ON AT SAVE LETTER/S @@ -702,8 +704,8 @@ Rule Tonga 1999 only - Oct 7 2:00s 1:00 S Rule Tonga 2000 only - Mar 19 2:00s 0 - Rule Tonga 2000 2001 - Nov Sun>=1 2:00 1:00 S Rule Tonga 2001 2002 - Jan lastSun 2:00 0 - -Rule Tonga 2016 max - Nov Sun>=1 2:00 1:00 S -Rule Tonga 2017 max - Jan Sun>=15 3:00 0 - +Rule Tonga 2016 only - Nov Sun>=1 2:00 1:00 S +Rule Tonga 2017 only - Jan Sun>=15 3:00 0 - # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone Pacific/Tongatapu 12:19:20 - LMT 1901 12:20 - +1220 1941 @@ -713,7 +715,7 @@ Zone Pacific/Tongatapu 12:19:20 - LMT 1901 # Tuvalu # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone Pacific/Funafuti 11:56:52 - LMT 1901 - 12:00 - TVT # Tuvalu Time + 12:00 - +12 # US minor outlying islands @@ -737,10 +739,11 @@ Zone Pacific/Funafuti 11:56:52 - LMT 1901 # Johnston # -# From Paul Eggert (2014-03-11): +# From Paul Eggert (2017-02-10): # Sometimes Johnston kept Hawaii time, and sometimes it was an hour behind. # Details are uncertain. We have no data for Johnston after 1970, so -# treat it like Hawaii for now. +# treat it like Hawaii for now. Since Johnston is now uninhabited, +# its link to Pacific/Honolulu is in the 'backward' file. # # In his memoirs of June 6th to October 4, 1945 # (2005), Herbert C. Bach writes, @@ -756,12 +759,10 @@ Zone Pacific/Funafuti 11:56:52 - LMT 1901 # Operation Fishbowl shot (Tightrope, 1962-11-04).... [See] Herman Hoerlin, # "The United States High-Altitude Test Experience: A Review Emphasizing the # Impact on the Environment", Los Alamos LA-6405, Oct 1976. -# http://www.fas.org/sgp/othergov/doe/lanl/docs1/00322994.pdf +# https://www.fas.org/sgp/othergov/doe/lanl/docs1/00322994.pdf # See the table on page 4 where he lists GMT and local times for the tests; a # footnote for the JI tests reads that local time is "JI time = Hawaii Time # Minus One Hour". -# -# See 'northamerica' for Pacific/Johnston. # Kingman # uninhabited @@ -775,7 +776,7 @@ Zone Pacific/Funafuti 11:56:52 - LMT 1901 # Wake # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone Pacific/Wake 11:06:28 - LMT 1901 - 12:00 - WAKT # Wake Time + 12:00 - +12 # Vanuatu @@ -788,12 +789,12 @@ Rule Vanuatu 1992 1993 - Jan Sun>=23 0:00 0 - Rule Vanuatu 1992 only - Oct Sun>=23 0:00 1:00 S # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone Pacific/Efate 11:13:16 - LMT 1912 Jan 13 # Vila - 11:00 Vanuatu VU%sT # Vanuatu Time + 11:00 Vanuatu +11/+12 # Wallis and Futuna # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone Pacific/Wallis 12:15:20 - LMT 1901 - 12:00 - WFT # Wallis & Futuna Time + 12:00 - +12 ############################################################################### @@ -804,15 +805,15 @@ Zone Pacific/Wallis 12:15:20 - LMT 1901 # tz@iana.org for general use in the future). For more, please see # the file CONTRIBUTING in the tz distribution. -# From Paul Eggert (2014-10-31): +# From Paul Eggert (2017-02-10): # # Unless otherwise specified, the source for data through 1990 is: # Thomas G. Shanks and Rique Pottenger, The International Atlas (6th edition), # San Diego: ACS Publications, Inc. (2003). # Unfortunately this book contains many errors and cites no sources. # -# Gwillim Law writes that a good source -# for recent time zone data is the International Air Transport +# Many years ago Gwillim Law wrote that a good source +# for time zone data was the International Air Transport # Association's Standard Schedules Information Manual (IATA SSIM), # published semiannually. Law sent in several helpful summaries # of the IATA's data after 1990. Except where otherwise noted, @@ -824,33 +825,24 @@ Zone Pacific/Wallis 12:15:20 - LMT 1901 # # For data circa 1899, a common source is: # Milne J. Civil time. Geogr J. 1899 Feb;13(2):173-94. -# http://www.jstor.org/stable/1774359 +# https://www.jstor.org/stable/1774359 # # A reliable and entertaining source about time zones is # Derek Howse, Greenwich time and longitude, Philip Wilson Publishers (1997). # -# I invented the abbreviations marked '*' in the following table; -# the rest are from earlier versions of this file, or from other sources. +# The following abbreviations are from other sources. # Corrections are welcome! # std dst # LMT Local Mean Time # 8:00 AWST AWDT Western Australia -# 8:45 ACWST ACWDT Central Western Australia* -# 9:00 JST Japan # 9:30 ACST ACDT Central Australia # 10:00 AEST AEDT Eastern Australia +# 10:00 GST Guam through 2000 # 10:00 ChST Chamorro -# 10:30 LHST LHDT Lord Howe* -# 11:00 BST Bougainville* # 11:30 NZMT NZST New Zealand through 1945 # 12:00 NZST NZDT New Zealand 1946-present -# 12:15 CHAST Chatham through 1945* -# 12:45 CHAST CHADT Chatham 1946-present* -# 13:00 WSST WSDT (western) Samoa 2011-present* -# -11:30 WSST Western Samoa through 1950* # -11:00 SST Samoa # -10:00 HST Hawaii -# - 8:00 PST Pitcairn* # # See the 'northamerica' file for Hawaii. # See the 'southamerica' file for Easter I and the Galápagos Is. @@ -980,7 +972,7 @@ Zone Pacific/Wallis 12:15:20 - LMT 1901 # AEST ACST AWST AEDT ACDT # # Parliamentary Library (2008-11-10) -# http://www.aph.gov.au/binaries/library/pubs/rp/2008-09/09rp14.pdf +# https://www.aph.gov.au/binaries/library/pubs/rp/2008-09/09rp14.pdf # EST CST WST preferred for standard time; AEST AEDT ACST ACDT also used # # The Transport Safety Bureau has an extensive series of accident reports, @@ -1016,13 +1008,13 @@ Zone Pacific/Wallis 12:15:20 - LMT 1901 # # NSW (including LHI and Broken Hill): # Standard Time Act 1987 (updated 1995-04-04) -# http://www.austlii.edu.au/au/legis/nsw/consol_act/sta1987137/index.html +# https://www.austlii.edu.au/au/legis/nsw/consol_act/sta1987137/index.html # ACT # Standard Time and Summer Time Act 1972 -# http://www.austlii.edu.au/au/legis/act/consol_act/stasta1972279/index.html +# https://www.austlii.edu.au/au/legis/act/consol_act/stasta1972279/index.html # SA # Standard Time Act, 1898 -# http://www.austlii.edu.au/au/legis/sa/consol_act/sta1898137/index.html +# https://www.austlii.edu.au/au/legis/sa/consol_act/sta1898137/index.html # From David Grosz (2005-06-13): # It was announced last week that Daylight Saving would be extended by @@ -1317,7 +1309,7 @@ Zone Pacific/Wallis 12:15:20 - LMT 1901 # http://abc.net.au/news/regionals/neweng/monthly/regeng-22jul1999-1.htm # (1999-07-22). For now, we'll wait to see if this really happens. # -# Victoria will following NSW. See: +# Victoria will follow NSW. See: # Vic to extend daylight saving (1999-07-28) # http://abc.net.au/local/news/olympics/1999/07/item19990728112314_1.htm # @@ -1420,7 +1412,7 @@ Zone Pacific/Wallis 12:15:20 - LMT 1901 # the ACT for all 52 weeks of the year... # # We have a wrap-up here: -# http://www.timeanddate.com/news/time/south-australia-extends-dst.html +# https://www.timeanddate.com/news/time/south-australia-extends-dst.html ############################################################################### # New Zealand @@ -1474,7 +1466,7 @@ Zone Pacific/Wallis 12:15:20 - LMT 1901 # From Paul Eggert (2014-07-14): # Chatham Island time was formally standardized on 1957-01-01 by # New Zealand's Standard Time Amendment Act 1956 (1956-10-26). -# http://www.austlii.edu.au/nz/legis/hist_act/staa19561956n100244.pdf +# https://www.austlii.edu.au/nz/legis/hist_act/staa19561956n100244.pdf # According to Google Books snippet view, a speaker in the New Zealand # parliamentary debates in 1956 said "Clause 78 makes provision for standard # time in the Chatham Islands. The time there is 45 minutes in advance of New @@ -1589,7 +1581,7 @@ Zone Pacific/Wallis 12:15:20 - LMT 1901 # the Norfolk Island Museum and the Australian Bureau of Meteorology's # Norfolk Island station, and found no record of Norfolk observing DST # other than in 1974/5. See: -# http://www.timeanddate.com/time/australia/norfolk-island.html +# https://www.timeanddate.com/time/australia/norfolk-island.html # Pitcairn @@ -1617,11 +1609,13 @@ Zone Pacific/Wallis 12:15:20 - LMT 1901 # (Western) Samoa and American Samoa -# Howse writes (p 153, citing p 10 of the 1883-11-18 New York Herald) -# that in 1879 the King of Samoa decided to change +# Howse writes (p 153) that after the 1879 standardization on Antipodean +# time by the British governor of Fiji, the King of Samoa decided to change # "the date in his kingdom from the Antipodean to the American system, # ordaining - by a masterpiece of diplomatic flattery - that # the Fourth of July should be celebrated twice in that year." +# This happened in 1892, according to the Evening News (Sydney) of 1892-07-20. +# https://www.staff.science.uu.nl/~gent0113/idl/idl.htm # Although Shanks & Pottenger says they both switched to UT -11:30 # in 1911, and to -11 in 1950. many earlier sources give -11 @@ -1632,6 +1626,7 @@ Zone Pacific/Wallis 12:15:20 - LMT 1901 # day in 2011. Assume also that the Samoas follow the US and New # Zealand's "ST"/"DT" style of daylight-saving abbreviations. + # Tonga # From Paul Eggert (1996-01-22): @@ -1726,6 +1721,15 @@ Zone Pacific/Wallis 12:15:20 - LMT 1901 # Assume Tonga will observe DST from the first Sunday in November at 02:00 # through the third Sunday in January at 03:00, like Fiji, for now. +# From David Wade (2017-10-18): +# In August government was disolved by the King. The current prime minister +# continued in office in care taker mode. It is easy to see that few +# decisions will be made until elections 16th November. +# +# From Paul Eggert (2017-10-18): +# For now, guess that DST is discontinued. That's what the IATA is guessing. + + # Wake # From Vernice Anderson, Personal Secretary to Philip Jessup, @@ -1738,7 +1742,7 @@ Zone Pacific/Wallis 12:15:20 - LMT 1901 # making calculation of time in Washington difficult if not almost # impossible. # -# http://www.trumanlibrary.org/wake/meeting.htm +# https://www.trumanlibrary.org/oralhist/andrsonv.htm # From Paul Eggert (2003-03-23): # We have no other report of DST in Wake Island, so omit this info for now. @@ -1766,7 +1770,7 @@ Zone Pacific/Wallis 12:15:20 - LMT 1901 # an international standard, there are some places on the high seas where the # correct date is ambiguous. -# From Wikipedia (2005-08-31): +# From Wikipedia (2005-08-31): # Before 1920, all ships kept local apparent time on the high seas by setting # their clocks at night or at the morning sight so that, given the ship's # speed and direction, it would be 12 o'clock when the Sun crossed the ship's diff --git a/db/backward b/db/backward index aa23dd8..2141f0d 100644 --- a/db/backward +++ b/db/backward @@ -61,7 +61,9 @@ Link America/Sao_Paulo Brazil/East Link America/Manaus Brazil/West Link America/Halifax Canada/Atlantic Link America/Winnipeg Canada/Central -Link America/Regina Canada/East-Saskatchewan +# This line is commented out, as the name exceeded the 14-character limit +# and was an unused misnomer. +#Link America/Regina Canada/East-Saskatchewan Link America/Toronto Canada/Eastern Link America/Edmonton Canada/Mountain Link America/St_Johns Canada/Newfoundland @@ -96,6 +98,7 @@ Link Pacific/Auckland NZ Link Pacific/Chatham NZ-CHAT Link America/Denver Navajo Link Asia/Shanghai PRC +Link Pacific/Honolulu Pacific/Johnston Link Pacific/Pohnpei Pacific/Ponape Link Pacific/Pago_Pago Pacific/Samoa Link Pacific/Chuuk Pacific/Truk diff --git a/db/backzone b/db/backzone index 4a5085f..32bd0f1 100644 --- a/db/backzone +++ b/db/backzone @@ -65,7 +65,7 @@ Link Africa/Asmara Africa/Asmera # Mali (southern) Zone Africa/Bamako -0:32:00 - LMT 1912 0:00 - GMT 1934 Feb 26 - -1:00 - WAT 1960 Jun 20 + -1:00 - -01 1960 Jun 20 0:00 - GMT # Central African Republic @@ -75,7 +75,7 @@ Zone Africa/Bangui 1:14:20 - LMT 1912 # Gambia Zone Africa/Banjul -1:06:36 - LMT 1912 -1:06:36 - BMT 1935 # Banjul Mean Time - -1:00 - WAT 1964 + -1:00 - -01 1964 0:00 - GMT # Malawi @@ -93,18 +93,18 @@ Zone Africa/Bujumbura 1:57:28 - LMT 1890 # Guinea Zone Africa/Conakry -0:54:52 - LMT 1912 0:00 - GMT 1934 Feb 26 - -1:00 - WAT 1960 + -1:00 - -01 1960 0:00 - GMT # Senegal Zone Africa/Dakar -1:09:44 - LMT 1912 - -1:00 - WAT 1941 Jun + -1:00 - -01 1941 Jun 0:00 - GMT # Tanzania Zone Africa/Dar_es_Salaam 2:37:08 - LMT 1931 3:00 - EAT 1948 - 2:45 - BEAUT 1961 + 2:45 - +0245 1961 3:00 - EAT # Djibouti @@ -122,14 +122,14 @@ Zone Africa/Douala 0:38:48 - LMT 1912 # The International Hydrographic Bulletin, 1932-33, p 63 says that # Sierra Leone would advance its clocks by 20 minutes on 1933-10-01. # Rule NAME FROM TO TYPE IN ON AT SAVE LETTER/S -Rule SL 1935 1942 - Jun 1 0:00 0:40 SLST -Rule SL 1935 1942 - Oct 1 0:00 0 WAT -Rule SL 1957 1962 - Jun 1 0:00 1:00 SLST +Rule SL 1935 1942 - Jun 1 0:00 0:40 -0020 +Rule SL 1935 1942 - Oct 1 0:00 0 -01 +Rule SL 1957 1962 - Jun 1 0:00 1:00 +01 Rule SL 1957 1962 - Sep 1 0:00 0 GMT Zone Africa/Freetown -0:53:00 - LMT 1882 -0:53:00 - FMT 1913 Jun # Freetown Mean Time -1:00 SL %s 1957 - 0:00 SL %s + 0:00 SL GMT/+01 # Botswana # From Paul Eggert (2013-02-21): @@ -153,8 +153,8 @@ Zone Africa/Juba 2:06:24 - LMT 1931 # Uganda Zone Africa/Kampala 2:09:40 - LMT 1928 Jul 3:00 - EAT 1930 - 2:30 - BEAT 1948 - 2:45 - BEAUT 1957 + 2:30 - +0230 1948 + 2:45 - +0245 1957 3:00 - EAT # Rwanda @@ -177,11 +177,11 @@ Zone Africa/Lome 0:04:52 - LMT 1893 # # Shanks gives 1911-05-26 for the transition to WAT, # evidently confusing the date of the Portuguese decree -# http://dre.pt/pdf1sdip/1911/05/12500/23132313.pdf +# https://dre.pt/pdf1sdip/1911/05/12500/23132313.pdf # with the date that it took effect, namely 1912-01-01. # Zone Africa/Luanda 0:52:56 - LMT 1892 - 0:52:04 - AOT 1912 Jan 1 # Angola Time + 0:52:04 - LMT 1912 Jan 1 # Luanda Mean Time? 1:00 - WAT # Democratic Republic of the Congo (east) @@ -216,19 +216,19 @@ Zone Africa/Mbabane 2:04:24 - LMT 1903 Mar # Somalia Zone Africa/Mogadishu 3:01:28 - LMT 1893 Nov 3:00 - EAT 1931 - 2:30 - BEAT 1957 + 2:30 - +0230 1957 3:00 - EAT # Niger Zone Africa/Niamey 0:08:28 - LMT 1912 - -1:00 - WAT 1934 Feb 26 + -1:00 - -01 1934 Feb 26 0:00 - GMT 1960 1:00 - WAT # Mauritania Zone Africa/Nouakchott -1:03:48 - LMT 1912 0:00 - GMT 1934 Feb 26 - -1:00 - WAT 1960 Nov 28 + -1:00 - -01 1960 Nov 28 0:00 - GMT # Burkina Faso @@ -264,19 +264,19 @@ Zone America/Antigua -4:07:12 - LMT 1912 Mar 2 # The name "Comodoro Rivadavia" exceeds the 14-byte POSIX limit. Zone America/Argentina/ComodRivadavia -4:30:00 - LMT 1894 Oct 31 -4:16:48 - CMT 1920 May - -4:00 - ART 1930 Dec - -4:00 Arg AR%sT 1969 Oct 5 - -3:00 Arg AR%sT 1991 Mar 3 - -4:00 - WART 1991 Oct 20 - -3:00 Arg AR%sT 1999 Oct 3 - -4:00 Arg AR%sT 2000 Mar 3 - -3:00 - ART 2004 Jun 1 - -4:00 - WART 2004 Jun 20 - -3:00 - ART + -4:00 - -04 1930 Dec + -4:00 Arg -04/-03 1969 Oct 5 + -3:00 Arg -03/-02 1991 Mar 3 + -4:00 - -04 1991 Oct 20 + -3:00 Arg -03/-02 1999 Oct 3 + -4:00 Arg -04/-03 2000 Mar 3 + -3:00 - -03 2004 Jun 1 + -4:00 - -04 2004 Jun 20 + -3:00 - -03 # Aruba Zone America/Aruba -4:40:24 - LMT 1912 Feb 12 # Oranjestad - -4:30 - ANT 1965 # Netherlands Antilles Time + -4:30 - -0430 1965 -4:00 - AST # Cayman Is @@ -365,12 +365,12 @@ Zone America/Montserrat -4:08:52 - LMT 1911 Jul 1 0:01 # Cork Hill # Formosa (FM), La Pampa (LP), Chubut (CH) Zone America/Rosario -4:02:40 - LMT 1894 Nov -4:16:44 - CMT 1920 May - -4:00 - ART 1930 Dec - -4:00 Arg AR%sT 1969 Oct 5 - -3:00 Arg AR%sT 1991 Jul - -3:00 - ART 1999 Oct 3 0:00 - -4:00 Arg AR%sT 2000 Mar 3 0:00 - -3:00 - ART + -4:00 - -04 1930 Dec + -4:00 Arg -04/-03 1969 Oct 5 + -3:00 Arg -03/-02 1991 Jul + -3:00 - -03 1999 Oct 3 0:00 + -4:00 Arg -04/-03 2000 Mar 3 0:00 + -3:00 - -03 # St Kitts-Nevis Zone America/St_Kitts -4:10:52 - LMT 1912 Mar 2 # Basseterre @@ -403,12 +403,12 @@ Link Antarctica/McMurdo Antarctica/South_Pole # Milne says 2:59:54 was the meridian of the saluting battery at Aden, # and that Yemen was at 1:55:56, the meridian of the Hagia Sophia. Zone Asia/Aden 2:59:54 - LMT 1950 - 3:00 - AST + 3:00 - +03 # Bahrain Zone Asia/Bahrain 3:22:20 - LMT 1920 # Manamah - 4:00 - GST 1972 Jun - 3:00 - AST + 4:00 - +04 1972 Jun + 3:00 - +03 # India # @@ -431,7 +431,7 @@ Zone Asia/Bahrain 3:22:20 - LMT 1920 # Manamah # counties Deqing, Enping, Kaiping, Luoding, Taishan, Xinxing, # Yangchun, Yangjiang, Yu'nan, and Yunfu. Zone Asia/Chongqing 7:06:20 - LMT 1928 # or Chungking - 7:00 - LONT 1980 May # Long-shu Time + 7:00 - +07 1980 May 8:00 PRC C%sT Link Asia/Chongqing Asia/Chungking @@ -442,43 +442,43 @@ Link Asia/Chongqing Asia/Chungking # October 1954, with exact date and time unspecified. Zone Asia/Hanoi 7:03:24 - LMT 1906 Jul 1 7:06:30 - PLMT 1911 May 1 - 7:00 - ICT 1942 Dec 31 23:00 - 8:00 - IDT 1945 Mar 14 23:00 - 9:00 - JST 1945 Sep 2 - 7:00 - ICT 1947 Apr 1 - 8:00 - IDT 1954 Oct - 7:00 - ICT + 7:00 - +07 1942 Dec 31 23:00 + 8:00 - +08 1945 Mar 14 23:00 + 9:00 - +09 1945 Sep 2 + 7:00 - +07 1947 Apr 1 + 8:00 - +08 1954 Oct + 7:00 - +07 # China # Changbai Time ("Long-white Time", Long-white = Heilongjiang area) # Heilongjiang (except Mohe county), Jilin Zone Asia/Harbin 8:26:44 - LMT 1928 # or Haerbin - 8:30 - CHAT 1932 Mar # Changbai Time + 8:30 - +0830 1932 Mar 8:00 - CST 1940 - 9:00 - CHAT 1966 May - 8:30 - CHAT 1980 May + 9:00 - +09 1966 May + 8:30 - +0830 1980 May 8:00 PRC C%sT # far west China Zone Asia/Kashgar 5:03:56 - LMT 1928 # or Kashi or Kaxgar - 5:30 - KAST 1940 # Kashgar Time - 5:00 - KAST 1980 May + 5:30 - +0530 1940 + 5:00 - +05 1980 May 8:00 PRC C%sT # Kuwait Zone Asia/Kuwait 3:11:56 - LMT 1950 - 3:00 - AST + 3:00 - +03 # Oman # Milne says 3:54:24 was the meridian of the Muscat Tidal Observatory. Zone Asia/Muscat 3:54:24 - LMT 1920 - 4:00 - GST + 4:00 - +04 # India # From Paul Eggert (2014-08-11), after a heads-up from Stephen Colebourne: # According to a Portuguese decree (1911-05-26) -# http://dre.pt/pdf1sdip/1911/05/12500/23132313.pdf +# https://dre.pt/pdf1sdip/1911/05/12500/23132313.pdf # Portuguese India switched to UT +05 on 1912-01-01. #Zone Asia/Panaji [not enough info to complete] @@ -491,12 +491,12 @@ Zone Asia/Muscat 3:54:24 - LMT 1920 # transitions there. Zone Asia/Phnom_Penh 6:59:40 - LMT 1906 Jul 1 7:06:30 - PLMT 1911 May 1 - 7:00 - ICT 1942 Dec 31 23:00 - 8:00 - IDT 1945 Mar 14 23:00 - 9:00 - JST 1945 Sep 2 - 7:00 - ICT 1947 Apr 1 - 8:00 - IDT 1953 Nov 9 - 7:00 - ICT + 7:00 - +07 1942 Dec 31 23:00 + 8:00 - +08 1945 Mar 14 23:00 + 9:00 - +09 1945 Sep 2 + 7:00 - +07 1947 Apr 1 + 8:00 - +08 1953 Nov 9 + 7:00 - +07 # Israel Zone Asia/Tel_Aviv 2:19:04 - LMT 1880 @@ -511,16 +511,16 @@ Zone Asia/Tel_Aviv 2:19:04 - LMT 1880 # this is probably wrong but it's better than guessing no transition. Zone Asia/Vientiane 6:50:24 - LMT 1906 Jul 1 7:06:30 - PLMT 1911 May 1 - 7:00 - ICT 1942 Dec 31 23:00 - 8:00 - IDT 1945 Mar 14 23:00 - 9:00 - JST 1945 Sep 2 - 7:00 - ICT 1947 Apr 1 - 8:00 - IDT 1955 Apr 15 - 7:00 - ICT + 7:00 - +07 1942 Dec 31 23:00 + 8:00 - +08 1945 Mar 14 23:00 + 9:00 - +09 1945 Sep 2 + 7:00 - +07 1947 Apr 1 + 8:00 - +08 1955 Apr 15 + 7:00 - +07 # Jan Mayen # From Whitman: -Zone Atlantic/Jan_Mayen -1:00 - EGT +Zone Atlantic/Jan_Mayen -1:00 - -01 # St Helena Zone Atlantic/St_Helena -0:22:48 - LMT 1890 # Jamestown @@ -540,10 +540,10 @@ Zone Europe/Belfast -0:23:40 - LMT 1880 Aug 2 # Guernsey # Data from Joseph S. Myers -# http://mm.icann.org/pipermail/tz/2013-September/019883.html +# https://mm.icann.org/pipermail/tz/2013-September/019883.html # References to be added -# LMT Location - 49.27N -2.33E - St.Peter Port -Zone Europe/Guernsey -0:09:19 - LMT 1913 Jun 18 +# LMT is for Town Church, St. Peter Port, 49 degrees 27'17"N 2 degrees 32'10"W +Zone Europe/Guernsey -0:10:09 - LMT 1913 Jun 18 0:00 GB-Eire %s 1940 Jul 2 1:00 C-Eur CE%sT 1945 May 8 0:00 GB-Eire %s 1968 Oct 27 @@ -555,11 +555,11 @@ Zone Europe/Guernsey -0:09:19 - LMT 1913 Jun 18 # # From Lester Caine (2013-09-04): # The Isle of Man legislation is now on-line at -# , starting with the original Statutory +# , starting with the original Statutory # Time Act in 1883 and including additional confirmation of some of # the dates of the 'Summer Time' orders originating at # Westminster. There is a little uncertainty as to the starting date -# of the first summer time in 1916 which may have be announced a +# of the first summer time in 1916 which may have been announced a # couple of days late. There is still a substantial number of # documents to work through, but it is thought that every GB change # was also implemented on the island. @@ -574,10 +574,10 @@ Zone Europe/Isle_of_Man -0:17:55 - LMT 1883 Mar 30 0:00s # Jersey # Data from Joseph S. Myers -# http://mm.icann.org/pipermail/tz/2013-September/019883.html +# https://mm.icann.org/pipermail/tz/2013-September/019883.html # References to be added -# LMT Location - 49.187N -2.107E - St. Helier -Zone Europe/Jersey -0:08:25 - LMT 1898 Jun 11 16:00u +# LMT is for Parish Church, St. Helier, 49 degrees 11'0.57"N 2 degrees 6'24.33"W +Zone Europe/Jersey -0:08:26 - LMT 1898 Jun 11 16:00u 0:00 GB-Eire %s 1940 Jul 2 1:00 C-Eur CE%sT 1945 May 8 0:00 GB-Eire %s 1968 Oct 27 @@ -663,15 +663,13 @@ Zone Pacific/Johnston -10:00 - HST # " 3:00P Ar. MIDWAY ISLAND . . . . . . . . . M.L.T. Lv. 6:00A " # Zone Pacific/Midway -11:49:28 - LMT 1901 - -11:00 - NST 1956 Jun 3 - -11:00 1:00 NDT 1956 Sep 2 - -11:00 - NST 1967 Apr # N=Nome - -11:00 - BST 1983 Nov 30 # B=Bering - -11:00 - SST # S=Samoa + -11:00 - -11 1956 Jun 3 + -11:00 1:00 -10 1956 Sep 2 + -11:00 - -11 # N Mariana Is Zone Pacific/Saipan -14:17:00 - LMT 1844 Dec 31 9:43:00 - LMT 1901 - 9:00 - MPT 1969 Oct # N Mariana Is Time - 10:00 - MPT 2000 Dec 23 + 9:00 - +09 1969 Oct + 10:00 - +10 2000 Dec 23 10:00 - ChST # Chamorro Standard Time diff --git a/db/calendars b/db/calendars new file mode 100644 index 0000000..8bc7062 --- /dev/null +++ b/db/calendars @@ -0,0 +1,173 @@ +----- Calendrical issues ----- + +As mentioned in Theory.html, although calendrical issues are out of +scope for tzdb, they indicate the sort of problems that we would run +into if we extended tzdb further into the past. The following +information and sources go beyond Theory.html's brief discussion. +They sometimes disagree. + + +France + +Gregorian calendar adopted 1582-12-20. +French Revolutionary calendar used 1793-11-24 through 1805-12-31, +and (in Paris only) 1871-05-06 through 1871-05-23. + + +Russia + +From Chris Carrier (1996-12-02): +On 1929-10-01 the Soviet Union instituted an "Eternal Calendar" +with 30-day months plus 5 holidays, with a 5-day week. +On 1931-12-01 it changed to a 6-day week; in 1934 it reverted to the +Gregorian calendar while retaining the 6-day week; on 1940-06-27 it +reverted to the 7-day week. With the 6-day week the usual days +off were the 6th, 12th, 18th, 24th and 30th of the month. +(Source: Evitiar Zerubavel, _The Seven Day Circle_) + + +Mark Brader reported a similar story in "The Book of Calendars", edited +by Frank Parise (1982, Facts on File, ISBN 0-8719-6467-8), page 377. But: + +From: Petteri Sulonen (via Usenet) +Date: 14 Jan 1999 00:00:00 GMT +... + +If your source is correct, how come documents between 1929 and 1940 were +still dated using the conventional, Gregorian calendar? + +I can post a scan of a document dated December 1, 1934, signed by +Yenukidze, the secretary, on behalf of Kalinin, the President of the +Executive Committee of the Supreme Soviet, if you like. + + + +Sweden (and Finland) + +From: Mark Brader +Subject: Re: Gregorian reform - a part of locale? + +Date: 1996-07-06 + +In 1700, Denmark made the transition from Julian to Gregorian. Sweden +decided to *start* a transition in 1700 as well, but rather than have one of +those unsightly calendar gaps :-), they simply decreed that the next leap +year after 1696 would be in 1744 - putting the whole country on a calendar +different from both Julian and Gregorian for a period of 40 years. + +However, in 1704 something went wrong and the plan was not carried through; +they did, after all, have a leap year that year. And one in 1708. In 1712 +they gave it up and went back to Julian, putting 30 days in February that +year!... + +Then in 1753, Sweden made the transition to Gregorian in the usual manner, +getting there only 13 years behind the original schedule. + +(A previous posting of this story was challenged, and Swedish readers +produced the following references to support it: "Tideräkning och historia" +by Natanael Beckman (1924) and "Tid, en bok om tideräkning och +kalenderväsen" by Lars-Olof Lodén (1968). + + +Grotefend's data + +From: "Michael Palmer" [with one obvious typo fixed] +Subject: Re: Gregorian Calendar (was Re: Another FHC related question +Newsgroups: soc.genealogy.german +Date: Tue, 9 Feb 1999 02:32:48 -800 +... + +The following is a(n incomplete) listing, arranged chronologically, of +European states, with the date they converted from the Julian to the +Gregorian calendar: + +04/15 Oct 1582 - Italy (with exceptions), Spain, Portugal, Poland (Roman + Catholics and Danzig only) +09/20 Dec 1582 - France, Lorraine + +21 Dec 1582/ + 01 Jan 1583 - Holland, Brabant, Flanders, Hennegau +10/21 Feb 1583 - bishopric of Liege (Lüttich) +13/24 Feb 1583 - bishopric of Augsburg +04/15 Oct 1583 - electorate of Trier +05/16 Oct 1583 - Bavaria, bishoprics of Freising, Eichstedt, Regensburg, + Salzburg, Brixen +13/24 Oct 1583 - Austrian Oberelsaß and Breisgau +20/31 Oct 1583 - bishopric of Basel +02/13 Nov 1583 - duchy of Jülich-Berg +02/13 Nov 1583 - electorate and city of Köln +04/15 Nov 1583 - bishopric of Würzburg +11/22 Nov 1583 - electorate of Mainz +16/27 Nov 1583 - bishopric of Strassburg and the margraviate of Baden +17/28 Nov 1583 - bishopric of Münster and duchy of Cleve +14/25 Dec 1583 - Steiermark + +06/17 Jan 1584 - Austria and Bohemia +11/22 Jan 1584 - Lucerne, Uri, Schwyz, Zug, Freiburg, Solothurn +12/23 Jan 1584 - Silesia and the Lausitz +22 Jan/ + 02 Feb 1584 - Hungary (legally on 21 Oct 1587) + Jun 1584 - Unterwalden +01/12 Jul 1584 - duchy of Westfalen + +16/27 Jun 1585 - bishopric of Paderborn + +14/25 Dec 1590 - Transylvania + +22 Aug/ + 02 Sep 1612 - duchy of Prussia + +13/24 Dec 1614 - Pfalz-Neuburg + + 1617 - duchy of Kurland (reverted to the Julian calendar in + 1796) + + 1624 - bishopric of Osnabrück + + 1630 - bishopric of Minden + +15/26 Mar 1631 - bishopric of Hildesheim + + 1655 - Kanton Wallis + +05/16 Feb 1682 - city of Strassburg + +18 Feb/ + 01 Mar 1700 - Protestant Germany (including Swedish possessions in + Germany), Denmark, Norway +30 Jun/ + 12 Jul 1700 - Gelderland, Zutphen +10 Nov/ + 12 Dec 1700 - Utrecht, Overijssel + +31 Dec 1700/ + 12 Jan 1701 - Friesland, Groningen, Zürich, Bern, Basel, Geneva, + Turgau, and Schaffhausen + + 1724 - Glarus, Appenzell, and the city of St. Gallen + +01 Jan 1750 - Pisa and Florence + +02/14 Sep 1752 - Great Britain + +17 Feb/ + 01 Mar 1753 - Sweden + +1760-1812 - Graubünden + +The Russian empire (including Finland and the Baltic states) did not +convert to the Gregorian calendar until the Soviet revolution of 1917. + +Source: H. Grotefend, _Taschenbuch der Zeitrechnung des deutschen +Mittelalters und der Neuzeit_, herausgegeben von Dr. O. Grotefend +(Hannover: Hahnsche Buchhandlung, 1941), pp. 26-28. + +----- + +This file is in the public domain, so clarified as of 2009-05-17 by +Arthur David Olson. + +----- +Local Variables: +coding: utf-8 +End: diff --git a/db/checklinks.awk b/db/checklinks.awk index 5b3e157..f309010 100644 --- a/db/checklinks.awk +++ b/db/checklinks.awk @@ -9,7 +9,7 @@ BEGIN { Zone = "\n" } -/^Zone/ { +/^Z/ { if (defined[$2]) { if (defined[$2] == Zone) { printf "%s: Zone has duplicate definition\n", $2 @@ -21,7 +21,7 @@ BEGIN { defined[$2] = Zone } -/^Link/ { +/^L/ { if (defined[$3]) { if (defined[$3] == Zone) { printf "%s: Link with same name as Zone\n", $3 diff --git a/db/date.1 b/db/date.1 index 7fd4848..579ab92 100644 --- a/db/date.1 +++ b/db/date.1 @@ -90,6 +90,7 @@ to be output in a particular way %X 14:54:40 Time* %y 89 Last two digits of year %Y 1989 Year in full +%z -0500 Numeric time zone %Z EST Time zone abbreviation %+ Wed Mar 8 14:54:40 EST 1989 Default output format* .if t .in -.5i diff --git a/db/date.1.txt b/db/date.1.txt index 99ac0b7..81ea7c4 100644 --- a/db/date.1.txt +++ b/db/date.1.txt @@ -54,6 +54,7 @@ DESCRIPTION %X 14:54:40 Time* %y 89 Last two digits of year %Y 1989 Year in full + %z -0500 Numeric time zone %Z EST Time zone abbreviation %+ Wed Mar 8 14:54:40 EST 1989 Default output format* * The exact output depends on the locale. diff --git a/db/date.c b/db/date.c index 512d1ef..2cc533f 100644 --- a/db/date.c +++ b/db/date.c @@ -28,7 +28,8 @@ SUCH DAMAGE. */ #include "private.h" -#include "locale.h" +#include +#include /* ** The two things date knows about time are. . . @@ -42,12 +43,9 @@ #define SECSPERMIN 60 #endif /* !defined SECSPERMIN */ -extern char ** environ; - #if !HAVE_POSIX_DECLS extern char * optarg; extern int optind; -extern char * tzname[]; #endif static int retval = EXIT_SUCCESS; @@ -56,7 +54,7 @@ static void display(const char *, time_t); static void dogmt(void); static void errensure(void); static void timeout(FILE *, const char *, const struct tm *); -static void usage(void); +static _Noreturn void usage(void); int main(const int argc, char *argv[]) @@ -99,7 +97,7 @@ main(const int argc, char *argv[]) secs = strtoimax (optarg, &endarg, 0); if (*endarg || optarg == endarg) errno = EINVAL; - else if (! (time_t_min <= secs && secs <= time_t_max)) + else if (! (TIME_T_MIN <= secs && secs <= TIME_T_MAX)) errno = ERANGE; if (errno) { perror(optarg); diff --git a/db/difftime.c b/db/difftime.c index ba2fd03..856234a 100644 --- a/db/difftime.c +++ b/db/difftime.c @@ -14,7 +14,7 @@ dminus(double x) return -x; } -double ATTRIBUTE_CONST +double difftime(time_t time1, time_t time0) { /* diff --git a/db/europe b/db/europe index bf3bf06..5b3b4e5 100644 --- a/db/europe +++ b/db/europe @@ -6,15 +6,15 @@ # tz@iana.org for general use in the future). For more, please see # the file CONTRIBUTING in the tz distribution. -# From Paul Eggert (2014-10-31): +# From Paul Eggert (2017-02-10): # # Unless otherwise specified, the source for data through 1990 is: # Thomas G. Shanks and Rique Pottenger, The International Atlas (6th edition), # San Diego: ACS Publications, Inc. (2003). # Unfortunately this book contains many errors and cites no sources. # -# Gwillim Law writes that a good source -# for recent time zone data is the International Air Transport +# Many years ago Gwillim Law wrote that a good source +# for time zone data was the International Air Transport # Association's Standard Schedules Information Manual (IATA SSIM), # published semiannually. Law sent in several helpful summaries # of the IATA's data after 1990. Except where otherwise noted, @@ -37,14 +37,14 @@ # [PDF] (1914-03) # # Milne J. Civil time. Geogr J. 1899 Feb;13(2):173-94 -# . He writes: +# . He writes: # "It is requested that corrections and additions to these tables # may be sent to Mr. John Milne, Royal Geographical Society, # Savile Row, London." Nowadays please email them to tz@iana.org. # # Byalokoz EL. New Counting of Time in Russia since July 1, 1919. # This Russian-language source was consulted by Vladimir Karpinsky; see -# http://mm.icann.org/pipermail/tz/2014-August/021320.html +# https://mm.icann.org/pipermail/tz/2014-August/021320.html # The full Russian citation is: # Бялокоз, Евгений Людвигович. Новый счет времени в течении суток # введенный декретом Совета народных комиссаров для всей России с 1-го @@ -56,26 +56,23 @@ # History of Summer Time # # (1998-09-21, in Portuguese) - # # I invented the abbreviations marked '*' in the following table; -# the rest are from earlier versions of this file, or from other sources. -# Corrections are welcome! -# std dst 2dst -# LMT Local Mean Time -# -4:00 AST ADT Atlantic -# -3:00 WGT WGST Western Greenland* -# -1:00 EGT EGST Eastern Greenland* -# 0:00 GMT BST BDST Greenwich, British Summer -# 0:00 GMT IST Greenwich, Irish Summer -# 0:00 WET WEST WEMT Western Europe -# 0:19:32.13 AMT NST Amsterdam, Netherlands Summer (1835-1937)* -# 0:20 NET NEST Netherlands (1937-1940)* -# 1:00 BST British Standard (1968-1971) -# 1:00 CET CEST CEMT Central Europe -# 1:00:14 SET Swedish (1879-1899)* -# 2:00 EET EEST Eastern Europe -# 3:00 MSK MSD Moscow +# the rest are variants of the "xMT" pattern for a city's mean time, +# or are from other sources. Corrections are welcome! +# std dst 2dst +# LMT Local Mean Time +# -4:00 AST ADT Atlantic +# 0:00 GMT BST BDST Greenwich, British Summer +# 0:00 GMT IST Greenwich, Irish Summer +# 0:00 WET WEST WEMT Western Europe +# 0:19:32.13 AMT* NST* Amsterdam, Netherlands Summer (1835-1937) +# 1:00 BST British Standard (1968-1971) +# 1:00 CET CEST CEMT Central Europe +# 1:00:14 SET Swedish (1879-1899) +# 1:36:34 RMT* LST* Riga, Latvian Summer (1880-1926)* +# 2:00 EET EEST Eastern Europe +# 3:00 MSK MSD MDST* Moscow # From Peter Ilieve (1994-12-04), # The original six [EU members]: Belgium, France, (West) Germany, Italy, @@ -190,7 +187,7 @@ # foundations of civilization throughout the world. # -- "A Silent Toast to William Willett", Pictorial Weekly; # republished in Finest Hour (Spring 2002) 1(114):26 -# http://www.winstonchurchill.org/images/finesthour/Vol.01%20No.114.pdf +# https://www.winstonchurchill.org/publications/finest-hour/finest-hour-114/a-silent-toast-to-william-willett-by-winston-s-churchill # From Paul Eggert (2015-08-08): # The OED Supplement says that the English originally said "Daylight Saving" @@ -228,8 +225,8 @@ # official designation; the reply of the 21st was that there wasn't # but he couldn't think of anything better than the "Double British # Summer Time" that the BBC had been using informally. -# http://www.polyomino.org.uk/british-time/bbc-19410418.png -# http://www.polyomino.org.uk/british-time/ho-19410421.png +# https://www.polyomino.org.uk/british-time/bbc-19410418.png +# https://www.polyomino.org.uk/british-time/ho-19410421.png # From Sir Alexander Maxwell in the above-mentioned letter (1941-04-21): # [N]o official designation has as far as I know been adopted for the time @@ -246,13 +243,13 @@ # the history of summer time legislation in the United Kingdom. # Since 1998 Joseph S. Myers has been updating # and extending this list, which can be found in -# http://www.polyomino.org.uk/british-time/ +# https://www.polyomino.org.uk/british-time/ # From Joseph S. Myers (1998-01-06): # # The legal time in the UK outside of summer time is definitely GMT, not UTC; # see Lord Tanlaw's speech -# http://www.publications.parliament.uk/pa/ld199798/ldhansrd/vo970611/text/70611-10.htm#70611-10_head0 +# https://www.publications.parliament.uk/pa/ld199798/ldhansrd/vo970611/text/70611-10.htm#70611-10_head0 # (Lords Hansard 11 June 1997 columns 964 to 976). # From Paul Eggert (2006-03-22): @@ -298,7 +295,7 @@ # Irish 'public feeling (was) outraged by forcing of English time on us'." # -- Parsons M. Dublin lost its time zone - and 25 minutes - after 1916 Rising. # Irish Times 2014-10-27. -# http://www.irishtimes.com/news/politics/dublin-lost-its-time-zone-and-25-minutes-after-1916-rising-1.1977411 +# https://www.irishtimes.com/news/politics/dublin-lost-its-time-zone-and-25-minutes-after-1916-rising-1.1977411 # From Joseph S. Myers (2005-01-26): # Irish laws are available online at . @@ -351,6 +348,12 @@ # Justice (tel +353 1 678 9711) who confirmed to me that the correct name is # "Irish Summer Time", abbreviated to "IST". +# Michael Deckers (2017-06-01) gave the following URLs for Ireland's +# Summer Time Act, 1925 and Summer Time Orders, 1926 and 1947: +# http://www.irishstatutebook.ie/eli/1925/act/8/enacted/en/print.html +# http://www.irishstatutebook.ie/eli/1926/sro/919/made/en/print.html +# http://www.irishstatutebook.ie/eli/1947/sro/71/made/en/print.html + # Rule NAME FROM TO TYPE IN ON AT SAVE LETTER/S # Summer Time Act, 1916 Rule GB-Eire 1916 only - May 21 2:00s 1:00 BST @@ -475,14 +478,14 @@ Link Europe/London Europe/Isle_of_Man # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone Europe/Dublin -0:25:00 - LMT 1880 Aug 2 - -0:25:21 - DMT 1916 May 21 2:00 + -0:25:21 - DMT 1916 May 21 2:00s # Dublin MT -0:25:21 1:00 IST 1916 Oct 1 2:00s 0:00 GB-Eire %s 1921 Dec 6 # independence - 0:00 GB-Eire GMT/IST 1940 Feb 25 2:00 - 0:00 1:00 IST 1946 Oct 6 2:00 - 0:00 - GMT 1947 Mar 16 2:00 - 0:00 1:00 IST 1947 Nov 2 2:00 - 0:00 - GMT 1948 Apr 18 2:00 + 0:00 GB-Eire GMT/IST 1940 Feb 25 2:00s + 0:00 1:00 IST 1946 Oct 6 2:00s + 0:00 - GMT 1947 Mar 16 2:00s + 0:00 1:00 IST 1947 Nov 2 2:00s + 0:00 - GMT 1948 Apr 18 2:00s 0:00 GB-Eire GMT/IST 1968 Oct 27 1:00 - IST 1971 Oct 31 2:00u 0:00 GB-Eire GMT/IST 1996 @@ -628,7 +631,7 @@ Rule Russia 1996 2010 - Oct lastSun 2:00s 0 - # Council of Ministers of the USSR from 1989-03-14 No. 227. # # I did not find full texts of these acts. For the 1989 one we have -# title at http://base.garant.ru/70754136/ : +# title at https://base.garant.ru/70754136/ : # "About change in calculation of time on the territories of # Lithuanian SSR, Latvian SSR and Estonian SSR, Astrakhan, # Kaliningrad, Kirov, Kuybyshev, Ulyanovsk and Uralsk oblasts". @@ -659,7 +662,7 @@ Rule Russia 1996 2010 - Oct lastSun 2:00s 0 - # http://bmockbe.ru/events/?ID=7583 # # Medvedev signed a law on the calculation of the time (in russian): -# http://www.regnum.ru/news/polit/1413906.html +# https://www.regnum.ru/news/polit/1413906.html # From Arthur David Olson (2011-06-15): # Take "abolishing daylight saving time" to mean that time is now considered @@ -786,7 +789,7 @@ Zone Europe/Vienna 1:05:21 - LMT 1893 Apr # Sources (Russian language): # http://www.belta.by/ru/all_news/society/V-Belarusi-otmenjaetsja-perexod-na-sezonnoe-vremja_i_572952.html # http://naviny.by/rubrics/society/2011/09/16/ic_articles_116_175144/ -# http://news.tut.by/society/250578.html +# https://news.tut.by/society/250578.html # # From Alexander Bokovoy (2014-10-09): # Belarussian government decided against changing to winter time.... @@ -1064,16 +1067,16 @@ Rule Thule 2007 max - Nov Sun>=1 2:00 0 S # # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone America/Danmarkshavn -1:14:40 - LMT 1916 Jul 28 - -3:00 - WGT 1980 Apr 6 2:00 - -3:00 EU WG%sT 1996 + -3:00 - -03 1980 Apr 6 2:00 + -3:00 EU -03/-02 1996 0:00 - GMT Zone America/Scoresbysund -1:27:52 - LMT 1916 Jul 28 # Ittoqqortoormiit - -2:00 - CGT 1980 Apr 6 2:00 - -2:00 C-Eur CG%sT 1981 Mar 29 - -1:00 EU EG%sT + -2:00 - -02 1980 Apr 6 2:00 + -2:00 C-Eur -02/-01 1981 Mar 29 + -1:00 EU -01/+00 Zone America/Godthab -3:26:56 - LMT 1916 Jul 28 # Nuuk - -3:00 - WGT 1980 Apr 6 2:00 - -3:00 EU WG%sT + -3:00 - -03 1980 Apr 6 2:00 + -3:00 EU -03/-02 Zone America/Thule -4:35:08 - LMT 1916 Jul 28 # Pituffik air base -4:00 Thule A%sT @@ -1107,7 +1110,7 @@ Zone America/Thule -4:35:08 - LMT 1916 Jul 28 # Pituffik air base # for their standard and summer times. He says no, they use "suveaeg" # (summer time) and "talveaeg" (winter time). -# From The Baltic Times (1999-09-09) +# From The Baltic Times (1999-09-09) # via Steffen Thorsen: # This year will mark the last time Estonia shifts to summer time, # a council of the ruling coalition announced Sept. 6.... @@ -1159,7 +1162,7 @@ Zone Europe/Tallinn 1:39:00 - LMT 1880 # This is documented in Heikki Oja: Aikakirja 2007, published by The Almanac # Office of University of Helsinki, ISBN 952-10-3221-9, available online (in # Finnish) at -# http://almanakka.helsinki.fi/aikakirja/Aikakirja2007kokonaan.pdf +# https://almanakka.helsinki.fi/aikakirja/Aikakirja2007kokonaan.pdf # # Page 105 (56 in PDF version) has a handy table of all past daylight savings # transitions. It is easy enough to interpret without Finnish skills. @@ -1172,7 +1175,7 @@ Zone Europe/Tallinn 1:39:00 - LMT 1880 # From Konstantin Hyppönen (2014-06-13): # [Heikki Oja's book Aikakirja 2013] -# http://almanakka.helsinki.fi/images/aikakirja/Aikakirja2013kokonaan.pdf +# https://almanakka.helsinki.fi/images/aikakirja/Aikakirja2013kokonaan.pdf # pages 104-105, including a scan from a newspaper published on Apr 2 1942 # say that ... [o]n Apr 2 1942, 24 o'clock (which means Apr 3 1942, # 00:00), clocks were moved one hour forward. The newspaper @@ -1302,7 +1305,7 @@ Zone Europe/Paris 0:09:21 - LMT 1891 Mar 15 0:01 # From Jörg Schilling (2002-10-23): # In 1945, Berlin was switched to Moscow Summer time (GMT+4) by -# http://www.dhm.de/lemo/html/biografien/BersarinNikolai/ +# https://www.dhm.de/lemo/html/biografien/BersarinNikolai/ # General [Nikolai] Bersarin. # From Paul Eggert (2003-03-08): @@ -1488,7 +1491,7 @@ Rule Iceland 1950 1966 - Oct Sun>=22 1:00s 0 - Rule Iceland 1967 only - Oct 29 1:00s 0 - # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone Atlantic/Reykjavik -1:28 - LMT 1908 - -1:00 Iceland IS%sT 1968 Apr 7 1:00s + -1:00 Iceland -01/+00 1968 Apr 7 1:00s 0:00 - GMT # Italy @@ -1527,7 +1530,7 @@ Zone Atlantic/Reykjavik -1:28 - LMT 1908 # From Paul Eggert (2016-10-27): # Go with INRiM for DST rules, except as corrected by Inglis for 1944 # for the Kingdom of Italy. This is consistent with Renzo Baldini. -# Model Rome's occupation by using using C-Eur rules from 1943-09-10 +# Model Rome's occupation by using C-Eur rules from 1943-09-10 # to 1944-06-04; although Rome was an open city during this period, it # was effectively controlled by Germany. # @@ -1842,14 +1845,14 @@ Zone Europe/Malta 0:58:04 - LMT 1893 Nov 2 0:00s # Valletta # Following Moldova and neighboring Ukraine- Transnistria (Pridnestrovie)- # Tiraspol will go back to winter time on October 30, 2011. # News from Moldova (in russian): -# http://ru.publika.md/link_317061.html +# https://ru.publika.md/link_317061.html # From Roman Tudos (2015-07-02): # http://lex.justice.md/index.php?action=view&view=doc&lang=1&id=355077 # From Paul Eggert (2015-07-01): # The abovementioned official link to IGO1445-868/2014 states that # 2014-10-26's fallback transition occurred at 03:00 local time. Also, -# http://www.trm.md/en/social/la-30-martie-vom-trece-la-ora-de-vara +# https://www.trm.md/en/social/la-30-martie-vom-trece-la-ora-de-vara # says the 2014-03-30 spring-forward transition was at 02:00 local time. # Guess that since 1997 Moldova has switched one hour before the EU. @@ -1921,7 +1924,7 @@ Zone Europe/Monaco 0:29:32 - LMT 1891 Mar 15 # Amsterdam mean time. # The data entries before 1945 are taken from -# http://www.staff.science.uu.nl/~gent0113/wettijd/wettijd.htm +# https://www.staff.science.uu.nl/~gent0113/wettijd/wettijd.htm # Rule NAME FROM TO TYPE IN ON AT SAVE LETTER/S Rule Neth 1916 only - May 1 0:00 1:00 NST # Netherlands Summer Time @@ -1952,7 +1955,7 @@ Rule Neth 1945 only - Sep 16 2:00s 0 - # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone Europe/Amsterdam 0:19:32 - LMT 1835 0:19:32 Neth %s 1937 Jul 1 - 0:20 Neth NE%sT 1940 May 16 0:00 # Dutch Time + 0:20 Neth +0020/+0120 1940 May 16 0:00 1:00 C-Eur CE%sT 1945 Apr 2 2:00 1:00 Neth CE%sT 1977 1:00 EU CE%sT @@ -2002,7 +2005,7 @@ Zone Europe/Oslo 0:43:00 - LMT 1895 Jan 1 # so it must have diverged from Oslo time during the war, as Oslo was # keeping Berlin time. # -# says that the meteorologists +# says that the meteorologists # burned down their station in 1940 and left the island, but returned in # 1941 with a small Norwegian garrison and continued operations despite # frequent air attacks from Germans. In 1943 the Americans established a @@ -2040,7 +2043,7 @@ Rule Poland 1945 only - Apr 29 0:00 1:00 S Rule Poland 1945 only - Nov 1 0:00 0 - # For 1946 on the source is Kazimierz Borkowski, # Toruń Center for Astronomy, Dept. of Radio Astronomy, Nicolaus Copernicus U., -# http://www.astro.uni.torun.pl/~kb/Artykuly/U-PA/Czas2.htm#tth_tAb1 +# https://www.astro.uni.torun.pl/~kb/Artykuly/U-PA/Czas2.htm#tth_tAb1 # Thanks to Przemysław Augustyniak (2005-05-28) for this reference. # He also gives these further references: # Mon Pol nr 13, poz 162 (1995) @@ -2074,7 +2077,7 @@ Zone Europe/Warsaw 1:24:00 - LMT 1880 # # From Paul Eggert (2014-08-11), after a heads-up from Stephen Colebourne: # According to a Portuguese decree (1911-05-26) -# http://dre.pt/pdf1sdip/1911/05/12500/23132313.pdf +# https://dre.pt/application/dir/pdf1sdip/1911/05/12500/23132313.pdf # Lisbon was at -0:36:44.68, but switched to GMT on 1912-01-01 at 00:00. # Round the old offset to -0:36:45. This agrees with Willett but disagrees # with Shanks, who says the transition occurred on 1911-05-24 at 00:00 for @@ -2169,16 +2172,34 @@ Zone Europe/Lisbon -0:36:45 - LMT 1884 0:00 W-Eur WE%sT 1992 Sep 27 1:00s 1:00 EU CE%sT 1996 Mar 31 1:00u 0:00 EU WE%sT +# This Zone can be simplified once we assume zic %z. Zone Atlantic/Azores -1:42:40 - LMT 1884 # Ponta Delgada -1:54:32 - HMT 1912 Jan 1 # Horta Mean Time - -2:00 Port AZO%sT 1966 Apr 3 2:00 # Azores Time - -1:00 Port AZO%sT 1983 Sep 25 1:00s - -1:00 W-Eur AZO%sT 1992 Sep 27 1:00s + -2:00 Port -02/-01 1942 Apr 25 22:00s + -2:00 Port +00 1942 Aug 15 22:00s + -2:00 Port -02/-01 1943 Apr 17 22:00s + -2:00 Port +00 1943 Aug 28 22:00s + -2:00 Port -02/-01 1944 Apr 22 22:00s + -2:00 Port +00 1944 Aug 26 22:00s + -2:00 Port -02/-01 1945 Apr 21 22:00s + -2:00 Port +00 1945 Aug 25 22:00s + -2:00 Port -02/-01 1966 Apr 3 2:00 + -1:00 Port -01/+00 1983 Sep 25 1:00s + -1:00 W-Eur -01/+00 1992 Sep 27 1:00s 0:00 EU WE%sT 1993 Mar 28 1:00u - -1:00 EU AZO%sT + -1:00 EU -01/+00 +# This Zone can be simplified once we assume zic %z. Zone Atlantic/Madeira -1:07:36 - LMT 1884 # Funchal -1:07:36 - FMT 1912 Jan 1 # Funchal Mean Time - -1:00 Port MAD%sT 1966 Apr 3 2:00 # Madeira Time + -1:00 Port -01/+00 1942 Apr 25 22:00s + -1:00 Port +01 1942 Aug 15 22:00s + -1:00 Port -01/+00 1943 Apr 17 22:00s + -1:00 Port +01 1943 Aug 28 22:00s + -1:00 Port -01/+00 1944 Apr 22 22:00s + -1:00 Port +01 1944 Aug 26 22:00s + -1:00 Port -01/+00 1945 Apr 21 22:00s + -1:00 Port +01 1945 Aug 25 22:00s + -1:00 Port -01/+00 1966 Apr 3 2:00 0:00 Port WE%sT 1983 Sep 25 1:00s 0:00 EU WE%sT @@ -2238,7 +2259,7 @@ Zone Europe/Bucharest 1:44:24 - LMT 1891 Oct # 2011 No. 725" and contains no other dates or "effective date" information. # # Another source is -# http://www.rg.ru/2011/09/06/chas-zona-dok.html +# https://rg.ru/2011/09/06/chas-zona-dok.html # which, according to translate.google.com, begins "Resolution of the # Government of the Russian Federation on August 31, 2011 N 725" and also # contains "Date first official publication: September 6, 2011 Posted on: @@ -2246,7 +2267,7 @@ Zone Europe/Bucharest 1:44:24 - LMT 1891 Oct # does not contain any "effective date" information. # # Another source is -# http://en.wikipedia.org/wiki/Oymyakonsky_District#cite_note-RuTime-7 +# https://en.wikipedia.org/wiki/Oymyakonsky_District#cite_note-RuTime-7 # which, in note 8, contains "Resolution No. 725 of August 31, 2011... # Effective as of after 7 days following the day of the official publication" # but which does not contain any reference to September 6, 2011. @@ -2282,7 +2303,7 @@ Zone Europe/Bucharest 1:44:24 - LMT 1891 Oct # http://itar-tass.com/obschestvo/1333711 # http://www.pravo.gov.ru:8080/page.aspx?111660 # http://www.kremlin.ru/acts/46279 -# From October 26, 2014 the new Russian time zone map will looks like this: +# From October 26, 2014 the new Russian time zone map will look like this: # http://www.worldtimezone.com/dst_news/dst_news_russia-map-2014-07.html # From Paul Eggert (2006-03-22): @@ -2329,7 +2350,7 @@ Zone Europe/Bucharest 1:44:24 - LMT 1891 Oct # with maintenance only and represent our best guesses as to which regions # are covered by each zone. They are not meant to be taken as an authoritative # listing. The region codes listed come from -# http://en.wikipedia.org/w/?title=Federal_subjects_of_Russia&oldid=611810498 +# https://en.wikipedia.org/w/?title=Federal_subjects_of_Russia&oldid=611810498 # and are used for convenience only; no guarantees are made regarding their # future stability. ISO 3166-2:RU codes are also listed for first-level # divisions where available. @@ -2494,7 +2515,7 @@ Zone Europe/Kaliningrad 1:22:00 - LMT 1893 Apr # http://www.kaliningradka.ru/site_pc/cherez/index.php?ELEMENT_ID=40091 # says that Kaliningrad decided not to be an exception 2 days before the # 1991-03-31 switch and one person at -# http://izhevsk.ru/forum_light_message/50/682597-m8369040.html +# https://izhevsk.ru/forum_light_message/50/682597-m8369040.html # says he remembers that Samara opted out of the 1992-01-19 exception # 2 days before the switch. # @@ -2536,10 +2557,8 @@ Zone Europe/Moscow 2:30:17 - LMT 1880 3:00 - MSK -# From Tim Parenti (2014-07-03): -# Europe/Simferopol covers... -# ** **** Crimea, Republic of -# ** **** Sevastopol +# From Paul Eggert (2016-12-06): +# Europe/Simferopol covers Crimea. Zone Europe/Simferopol 2:16:24 - LMT 1880 2:16 - SMT 1924 May 2 # Simferopol Mean T @@ -2568,7 +2587,7 @@ Zone Europe/Simferopol 2:16:24 - LMT 1880 3:00 - MSK 1997 Mar lastSun 1:00u # From Alexander Krivenyshev (2014-03-17): # time change at 2:00 (2am) on March 30, 2014 -# http://vz.ru/news/2014/3/17/677464.html +# https://vz.ru/news/2014/3/17/677464.html # From Paul Eggert (2014-03-30): # Simferopol and Sevastopol reportedly changed their central town clocks # late the previous day, but this appears to have been ceremonial @@ -2751,7 +2770,7 @@ Zone Asia/Omsk 4:53:30 - LMT 1919 Nov 14 # suggests that Altai Republic transitioned to Moscow+3 on # 1995-05-28. # -# http://regnum.ru/news/society/1957270.html +# https://regnum.ru/news/society/1957270.html # has some historical data for Altai Krai: # before 1957: west part on UTC+6, east on UTC+7 # after 1957: UTC+7 @@ -3125,8 +3144,8 @@ Zone Asia/Magadan 10:03:12 - LMT 1924 May 2 # districts, but have very similar populations. In fact, Wikipedia currently # lists them both as having 3528 people, exactly 1668 males and 1860 females # each! (Yikes!) -# http://en.wikipedia.org/w/?title=Srednekolymsky_District&oldid=603435276 -# http://en.wikipedia.org/w/?title=Verkhnekolymsky_District&oldid=594378493 +# https://en.wikipedia.org/w/?title=Srednekolymsky_District&oldid=603435276 +# https://en.wikipedia.org/w/?title=Verkhnekolymsky_District&oldid=594378493 # Assume this is a mistake, albeit an amusing one. # # Looking at censuses, the populations of the two municipalities seem to have @@ -3232,46 +3251,77 @@ Link Europe/Prague Europe/Bratislava # See Europe/Belgrade. # Spain +# +# From Paul Eggert (2016-12-14): +# +# The source for Europe/Madrid before 2013 is: +# Planesas P. La hora oficial en España y sus cambios. +# Anuario del Observatorio Astronómico de Madrid (2013, in Spanish). +# http://astronomia.ign.es/rknowsys-theme/images/webAstro/paginas/documentos/Anuario/lahoraoficialenespana.pdf +# As this source says that historical time in the Canaries is obscure, +# and it does not discuss Ceuta, stick with Shanks for now for that data. +# +# In the 1918 and 1919 fallback transitions in Spain, the clock for +# the hour-longer day officially kept going after midnight, so that +# the repeated instances of that day's 00:00 hour were 24 hours apart, +# with a fallback transition from the second occurrence of 00:59... to +# the next day's 00:00. Our data format cannot represent this +# directly, and instead repeats the first hour of the next day, with a +# fallback transition from the next day's 00:59... to 00:00. + +# From Michael Deckers (2016-12-15): +# The Royal Decree of 1900-06-26 quoted by Planesas, online at +# https://www.boe.es/datos/pdfs/BOE//1900/209/A00383-00384.pdf +# says in its article 5 (my translation): +# These dispositions will enter into force beginning with the +# instant at which, according to the time indicated in article 1, +# the 1st day of January of 1901 will begin. + # Rule NAME FROM TO TYPE IN ON AT SAVE LETTER/S -# For 1917-1919 Whitman gives Apr Sat>=1 - Oct Sat>=1; -# go with Shanks & Pottenger. -Rule Spain 1917 only - May 5 23:00s 1:00 S -Rule Spain 1917 1919 - Oct 6 23:00s 0 - -Rule Spain 1918 only - Apr 15 23:00s 1:00 S -Rule Spain 1919 only - Apr 5 23:00s 1:00 S -# Whitman gives 1921 Feb 28 - Oct 14; go with Shanks & Pottenger. -Rule Spain 1924 only - Apr 16 23:00s 1:00 S -# Whitman gives 1924 Oct 14; go with Shanks & Pottenger. -Rule Spain 1924 only - Oct 4 23:00s 0 - -Rule Spain 1926 only - Apr 17 23:00s 1:00 S -# Whitman says no DST in 1929; go with Shanks & Pottenger. -Rule Spain 1926 1929 - Oct Sat>=1 23:00s 0 - -Rule Spain 1927 only - Apr 9 23:00s 1:00 S -Rule Spain 1928 only - Apr 14 23:00s 1:00 S -Rule Spain 1929 only - Apr 20 23:00s 1:00 S -# Whitman gives 1937 Jun 16, 1938 Apr 16, 1940 Apr 13; -# go with Shanks & Pottenger. -Rule Spain 1937 only - May 22 23:00s 1:00 S -Rule Spain 1937 1939 - Oct Sat>=1 23:00s 0 - -Rule Spain 1938 only - Mar 22 23:00s 1:00 S -Rule Spain 1939 only - Apr 15 23:00s 1:00 S -Rule Spain 1940 only - Mar 16 23:00s 1:00 S -# Whitman says no DST 1942-1945; go with Shanks & Pottenger. -Rule Spain 1942 only - May 2 22:00s 2:00 M # Midsummer -Rule Spain 1942 only - Sep 1 22:00s 1:00 S -Rule Spain 1943 1946 - Apr Sat>=13 22:00s 2:00 M -Rule Spain 1943 only - Oct 3 22:00s 1:00 S -Rule Spain 1944 only - Oct 10 22:00s 1:00 S -Rule Spain 1945 only - Sep 30 1:00 1:00 S -Rule Spain 1946 only - Sep 30 0:00 0 - +Rule Spain 1918 only - Apr 15 23:00 1:00 S +Rule Spain 1918 1919 - Oct 6 24:00s 0 - +Rule Spain 1919 only - Apr 6 23:00 1:00 S +Rule Spain 1924 only - Apr 16 23:00 1:00 S +Rule Spain 1924 only - Oct 4 24:00s 0 - +Rule Spain 1926 only - Apr 17 23:00 1:00 S +Rule Spain 1926 1929 - Oct Sat>=1 24:00s 0 - +Rule Spain 1927 only - Apr 9 23:00 1:00 S +Rule Spain 1928 only - Apr 15 0:00 1:00 S +Rule Spain 1929 only - Apr 20 23:00 1:00 S +# Republican Spain during the civil war; it controlled Madrid until 1939-03-28. +Rule Spain 1937 only - Jun 16 23:00 1:00 S +Rule Spain 1937 only - Oct 2 24:00s 0 - +Rule Spain 1938 only - Apr 2 23:00 1:00 S +Rule Spain 1938 only - Apr 30 23:00 2:00 M +Rule Spain 1938 only - Oct 2 24:00 1:00 S +# The following rules are for unified Spain again. +# +# Planesas does not say what happened in Madrid between its fall on +# 1939-03-28 and the Nationalist spring-forward transition on +# 1939-04-15. For lack of better info, assume Madrid's clocks did not +# change during that period. +# +# The first rule is commented out, as it is redundant for Republican Spain. +#Rule Spain 1939 only - Apr 15 23:00 1:00 S +Rule Spain 1939 only - Oct 7 24:00s 0 - +Rule Spain 1942 only - May 2 23:00 1:00 S +Rule Spain 1942 only - Sep 1 1:00 0 - +Rule Spain 1943 1946 - Apr Sat>=13 23:00 1:00 S +Rule Spain 1943 1944 - Oct Sun>=1 1:00 0 - +Rule Spain 1945 1946 - Sep lastSun 1:00 0 - Rule Spain 1949 only - Apr 30 23:00 1:00 S -Rule Spain 1949 only - Sep 30 1:00 0 - -Rule Spain 1974 1975 - Apr Sat>=13 23:00 1:00 S +Rule Spain 1949 only - Oct 2 1:00 0 - +Rule Spain 1974 1975 - Apr Sat>=12 23:00 1:00 S Rule Spain 1974 1975 - Oct Sun>=1 1:00 0 - Rule Spain 1976 only - Mar 27 23:00 1:00 S Rule Spain 1976 1977 - Sep lastSun 1:00 0 - -Rule Spain 1977 1978 - Apr 2 23:00 1:00 S -Rule Spain 1978 only - Oct 1 1:00 0 - +Rule Spain 1977 only - Apr 2 23:00 1:00 S +Rule Spain 1978 only - Apr 2 2:00s 1:00 S +Rule Spain 1978 only - Oct 1 2:00s 0 - +# Nationalist Spain during the civil war +#Rule NatSpain 1937 only - May 22 23:00 1:00 S +#Rule NatSpain 1937 1938 - Oct Sat>=1 24:00s 0 - +#Rule NatSpain 1938 only - Mar 26 23:00 1:00 S # The following rules are copied from Morocco from 1967 through 1978. Rule SpainAfrica 1967 only - Jun 3 12:00 1:00 S Rule SpainAfrica 1967 only - Oct 1 0:00 0 - @@ -3283,11 +3333,11 @@ Rule SpainAfrica 1977 only - Sep 28 0:00 0 - Rule SpainAfrica 1978 only - Jun 1 0:00 1:00 S Rule SpainAfrica 1978 only - Aug 4 0:00 0 - # Zone NAME GMTOFF RULES FORMAT [UNTIL] -Zone Europe/Madrid -0:14:44 - LMT 1901 Jan 1 0:00s - 0:00 Spain WE%sT 1946 Sep 30 +Zone Europe/Madrid -0:14:44 - LMT 1900 Dec 31 23:45:16 + 0:00 Spain WE%sT 1940 Mar 16 23:00 1:00 Spain CE%sT 1979 1:00 EU CE%sT -Zone Africa/Ceuta -0:21:16 - LMT 1901 +Zone Africa/Ceuta -0:21:16 - LMT 1900 Dec 31 23:38:44 0:00 - WET 1918 May 6 23:00 0:00 1:00 WEST 1918 Oct 7 23:00 0:00 - WET 1924 @@ -3296,7 +3346,7 @@ Zone Africa/Ceuta -0:21:16 - LMT 1901 1:00 - CET 1986 1:00 EU CE%sT Zone Atlantic/Canary -1:01:36 - LMT 1922 Mar # Las Palmas de Gran C. - -1:00 - CANT 1946 Sep 30 1:00 # Canaries T + -1:00 - -01 1946 Sep 30 1:00 0:00 - WET 1980 Apr 6 0:00s 0:00 1:00 WEST 1980 Sep 28 1:00u 0:00 EU WE%sT @@ -3416,7 +3466,7 @@ Zone Europe/Stockholm 1:12:12 - LMT 1879 Jan 1 # # From Alois Treindl (2013-09-11): # The Federal regulations say -# http://www.admin.ch/opc/de/classified-compilation/20071096/index.html +# https://www.admin.ch/opc/de/classified-compilation/20071096/index.html # ... the meridian for Bern mean time ... is 7 degrees 26' 22.50". # Expressed in time, it is 0h29m45.5s. @@ -3493,9 +3543,9 @@ Zone Europe/Zurich 0:34:08 - LMT 1853 Jul 16 # See above comment. # According to the articles linked below, Turkey will change into summer # time zone (GMT+3) on March 28, 2011 at 3:00 a.m. instead of March 27. # This change is due to a nationwide exam on 27th. -# http://www.worldbulletin.net/?aType=haber&ArticleID=70872 +# https://www.worldbulletin.net/?aType=haber&ArticleID=70872 # Turkish: -# http://www.hurriyet.com.tr/ekonomi/17230464.asp?gid=373 +# https://www.hurriyet.com.tr/yaz-saati-uygulamasi-bir-gun-ileri-alindi-17230464 # From Faruk Pasin (2014-02-14): # The DST for Turkey has been changed for this year because of the @@ -3631,7 +3681,7 @@ Link Europe/Istanbul Asia/Istanbul # Istanbul is in both continents. # http://www.segodnya.ua/news/14290482.html # # Deputies cancelled the winter time (in Russian) -# http://www.pravda.com.ua/rus/news/2011/09/20/6600616/ +# https://www.pravda.com.ua/rus/news/2011/09/20/6600616/ # # From Philip Pizzey (2011-10-18): # Today my Ukrainian colleagues have informed me that the @@ -3709,7 +3759,7 @@ Zone Europe/Uzhgorod 1:29:12 - LMT 1890 Oct # spelling, except omit the apostrophe as it is not allowed in # portable Posix file names. Zone Europe/Zaporozhye 2:20:40 - LMT 1880 - 2:20 - CUT 1924 May 2 # Central Ukraine T + 2:20 - +0220 1924 May 2 2:00 - EET 1930 Jun 21 3:00 - MSK 1941 Aug 25 1:00 C-Eur CE%sT 1943 Oct 25 diff --git a/db/ialloc.c b/db/ialloc.c deleted file mode 100644 index e228db5..0000000 --- a/db/ialloc.c +++ /dev/null @@ -1,32 +0,0 @@ -/* -** This file is in the public domain, so clarified as of -** 2006-07-17 by Arthur David Olson. -*/ - -/*LINTLIBRARY*/ - -#include "private.h" - -char * -icatalloc(char *const old, const char *const new) -{ - register char * result; - register int oldsize, newsize; - - newsize = (new == NULL) ? 0 : strlen(new); - if (old == NULL) - oldsize = 0; - else if (newsize == 0) - return old; - else oldsize = strlen(old); - if ((result = realloc(old, oldsize + newsize + 1)) != NULL) - if (new != NULL) - strcpy(result + oldsize, new); - return result; -} - -char * -icpyalloc(const char *const string) -{ - return icatalloc(NULL, string); -} diff --git a/db/iso3166.tab b/db/iso3166.tab index 0c79cab..c2e0f8e 100644 --- a/db/iso3166.tab +++ b/db/iso3166.tab @@ -9,8 +9,8 @@ # All text uses UTF-8 encoding. The columns of the table are as follows: # # 1. ISO 3166-1 alpha-2 country code, current as of -# ISO 3166-1 Newsletter VI-16 (2013-07-11). See: Updates on ISO 3166 -# http://www.iso.org/iso/home/standards/country_codes/updates_on_iso_3166.htm +# ISO 3166-1 N905 (2016-11-15). See: Updates on ISO 3166-1 +# http://isotc.iso.org/livelink/livelink/Open/16944257 # 2. The usual English name for the coded region, # chosen so that alphabetic sorting of subsets produces helpful lists. # This is not the same as the English name in the ISO 3166 tables. diff --git a/db/leap-seconds.list b/db/leap-seconds.list index 22fa785..5d50010 100644 --- a/db/leap-seconds.list +++ b/db/leap-seconds.list @@ -199,10 +199,10 @@ # current -- the update time stamp, the data and the name of the file # will not change. # -# Updated through IERS Bulletin C52 -# File expires on: 28 June 2017 +# Updated through IERS Bulletin C54 +# File expires on: 28 June 2018 # -#@ 3707596800 +#@ 3739132800 # 2272060800 10 # 1 Jan 1972 2287785600 11 # 1 Jul 1972 @@ -247,4 +247,4 @@ # the hash line is also ignored in the # computation. # -#h dacf2c42 2c4765d6 3c797af8 2cf630eb 699c8c67 +#h 5101445a 69948b51 9153e2b 2086e3d8 d54561a3 diff --git a/db/leapseconds b/db/leapseconds index b4411f9..a191d5f 100644 --- a/db/leapseconds +++ b/db/leapseconds @@ -3,19 +3,18 @@ # This file is in the public domain. # This file is generated automatically from the data in the public-domain -# leap-seconds.list file available from most NIST time servers. -# If the URL does not work, -# you should be able to pick up leap-seconds.list from a secondary NIST server. -# See for a list of secondary servers. +# leap-seconds.list file, which is copied from: +# ftp://ftp.nist.gov/pub/time/leap-seconds.list # For more about leap-seconds.list, please see # The NTP Timescale and Leap Seconds -# http://www.eecis.udel.edu/~mills/leap.html +# https://www.eecis.udel.edu/~mills/leap.html # The International Earth Rotation and Reference Systems Service # periodically uses leap seconds to keep UTC to within 0.9 s of UT1 # (which measures the true angular orientation of the earth in space); see -# Terry J Quinn, The BIPM and the accurate measure of time, -# Proc IEEE 79, 7 (July 1991), 894-905 . +# Levine J. Coordinated Universal Time and the leap second. +# URSI Radio Sci Bull. 2016;89(4):30-6. doi:10.23919/URSIRSB.2016.7909995 +# http://ieeexplore.ieee.org/document/7909995/ # There were no leap seconds before 1972, because the official mechanism # accounting for the discrepancy between atomic time and the earth's rotation # did not exist until the early 1970s. @@ -58,5 +57,5 @@ Leap 2012 Jun 30 23:59:60 + S Leap 2015 Jun 30 23:59:60 + S Leap 2016 Dec 31 23:59:60 + S -# Updated through IERS Bulletin C52 -# File expires on: 28 June 2017 +# Updated through IERS Bulletin C54 +# File expires on: 28 June 2018 diff --git a/db/leapseconds.awk b/db/leapseconds.awk index 21fe540..66eb64d 100644 --- a/db/leapseconds.awk +++ b/db/leapseconds.awk @@ -8,19 +8,18 @@ BEGIN { print "# This file is in the public domain." print "" print "# This file is generated automatically from the data in the public-domain" - print "# leap-seconds.list file available from most NIST time servers." - print "# If the URL does not work," - print "# you should be able to pick up leap-seconds.list from a secondary NIST server." - print "# See for a list of secondary servers." + print "# leap-seconds.list file, which is copied from:" + print "# ftp://ftp.nist.gov/pub/time/leap-seconds.list" print "# For more about leap-seconds.list, please see" print "# The NTP Timescale and Leap Seconds" - print "# http://www.eecis.udel.edu/~mills/leap.html" + print "# https://www.eecis.udel.edu/~mills/leap.html" print "" print "# The International Earth Rotation and Reference Systems Service" print "# periodically uses leap seconds to keep UTC to within 0.9 s of UT1" print "# (which measures the true angular orientation of the earth in space); see" - print "# Terry J Quinn, The BIPM and the accurate measure of time," - print "# Proc IEEE 79, 7 (July 1991), 894-905 ." + print "# Levine J. Coordinated Universal Time and the leap second." + print "# URSI Radio Sci Bull. 2016;89(4):30-6. doi:10.23919/URSIRSB.2016.7909995" + print "# http://ieeexplore.ieee.org/document/7909995/" print "# There were no leap seconds before 1972, because the official mechanism" print "# accounting for the discrepancy between atomic time and the earth's rotation" print "# did not exist until the early 1970s." diff --git a/db/localtime.c b/db/localtime.c index 385b6bb..2e1d621 100644 --- a/db/localtime.c +++ b/db/localtime.c @@ -14,9 +14,9 @@ #include "private.h" #include "tzfile.h" -#include "fcntl.h" +#include -#if THREAD_SAFE +#if defined THREAD_SAFE && THREAD_SAFE # include static pthread_mutex_t locallock = PTHREAD_MUTEX_INITIALIZER; static int lock(void) { return pthread_mutex_lock(&locallock); } @@ -87,14 +87,14 @@ static const char gmt[] = "GMT"; /* ** The DST rules to use if TZ has no rules and we can't load TZDEFRULES. -** We default to US rules as of 1999-08-17. +** Default to US rules as of 2017-05-07. ** POSIX 1003.1 section 8.1.1 says that the default DST rules are ** implementation dependent; for historical reasons, US rules are a ** common default. */ #ifndef TZDEFRULESTRING -#define TZDEFRULESTRING ",M4.1.0,M10.5.0" -#endif /* !defined TZDEFDST */ +#define TZDEFRULESTRING ",M3.2.0,M11.1.0" +#endif struct ttinfo { /* time type information */ int_fast32_t tt_gmtoff; /* UT offset in seconds */ @@ -188,20 +188,21 @@ static int lcl_is_set; static struct tm tm; -#if !HAVE_POSIX_DECLS +#if !HAVE_POSIX_DECLS || TZ_TIME_T +# if HAVE_TZNAME char * tzname[2] = { (char *) wildabbr, (char *) wildabbr }; -# ifdef USG_COMPAT +# endif +# if USG_COMPAT long timezone; int daylight; # endif -#endif - -#ifdef ALTZONE +# ifdef ALTZONE long altzone; -#endif /* defined ALTZONE */ +# endif +#endif /* Initialize *S to a value based on GMTOFF, ISDST, and ABBRIND. */ static void @@ -263,8 +264,10 @@ detzcode64(const char *const codep) static void update_tzname_etc(struct state const *sp, struct ttinfo const *ttisp) { +#if HAVE_TZNAME tzname[ttisp->tt_isdst] = (char *) &sp->chars[ttisp->tt_abbrind]; -#ifdef USG_COMPAT +#endif +#if USG_COMPAT if (!ttisp->tt_isdst) timezone = - ttisp->tt_gmtoff; #endif @@ -280,16 +283,17 @@ settzname(void) register struct state * const sp = lclptr; register int i; - tzname[0] = tzname[1] = (char *) wildabbr; -#ifdef USG_COMPAT +#if HAVE_TZNAME + tzname[0] = tzname[1] = (char *) (sp ? wildabbr : gmt); +#endif +#if USG_COMPAT daylight = 0; timezone = 0; -#endif /* defined USG_COMPAT */ +#endif #ifdef ALTZONE altzone = 0; #endif /* defined ALTZONE */ if (sp == NULL) { - tzname[0] = tzname[1] = (char *) gmt; return; } /* @@ -304,10 +308,10 @@ settzname(void) &sp->ttis[ sp->types[i]]; update_tzname_etc(sp, ttisp); -#ifdef USG_COMPAT +#if USG_COMPAT if (ttisp->tt_isdst) daylight = 1; -#endif /* defined USG_COMPAT */ +#endif } } @@ -352,19 +356,23 @@ union input_buffer { + 4 * TZ_MAX_TIMES]; }; +/* TZDIR with a trailing '/' rather than a trailing '\0'. */ +static char const tzdirslash[sizeof TZDIR] = TZDIR "/"; + /* Local storage needed for 'tzloadbody'. */ union local_storage { - /* The file name to be opened. */ - char fullname[FILENAME_MAX + 1]; - /* The results of analyzing the file's contents after it is opened. */ - struct { + struct file_analysis { /* The input buffer. */ union input_buffer u; /* A temporary state used for parsing a TZ string in the file. */ struct state st; } u; + + /* The file name to be opened. */ + char fullname[BIGGEST(sizeof (struct file_analysis), + sizeof tzdirslash + 1024)]; }; /* Load tz data from the file named NAME into *SP. Read extended @@ -379,7 +387,6 @@ tzloadbody(char const *name, struct state *sp, bool doextend, register int stored; register ssize_t nread; register bool doaccess; - register char *fullname = lsp->fullname; register union input_buffer *up = &lsp->u.u; register int tzheadsize = sizeof (struct tzhead); @@ -395,18 +402,20 @@ tzloadbody(char const *name, struct state *sp, bool doextend, ++name; doaccess = name[0] == '/'; if (!doaccess) { - char const *p = TZDIR; - if (! p) - return EINVAL; - if (sizeof lsp->fullname - 1 <= strlen(p) + strlen(name)) + size_t namelen = strlen(name); + if (sizeof lsp->fullname - sizeof tzdirslash <= namelen) return ENAMETOOLONG; - strcpy(fullname, p); - strcat(fullname, "/"); - strcat(fullname, name); + + /* Create a string "TZDIR/NAME". Using sprintf here + would pull in stdio (and would fail if the + resulting string length exceeded INT_MAX!). */ + memcpy(lsp->fullname, tzdirslash, sizeof tzdirslash); + strcpy(lsp->fullname + sizeof tzdirslash, name); + /* Set doaccess if '.' (as in "../") shows up in name. */ if (strchr(name, '.')) doaccess = true; - name = fullname; + name = lsp->fullname; } if (doaccess && access(name, R_OK) != 0) return errno; @@ -425,6 +434,8 @@ tzloadbody(char const *name, struct state *sp, bool doextend, for (stored = 4; stored <= 8; stored *= 2) { int_fast32_t ttisstdcnt = detzcode(up->tzhead.tzh_ttisstdcnt); int_fast32_t ttisgmtcnt = detzcode(up->tzhead.tzh_ttisgmtcnt); + int_fast64_t prevtr = 0; + int_fast32_t prevcorr = 0; int_fast32_t leapcnt = detzcode(up->tzhead.tzh_leapcnt); int_fast32_t timecnt = detzcode(up->tzhead.tzh_timecnt); int_fast32_t typecnt = detzcode(up->tzhead.tzh_typecnt); @@ -453,17 +464,17 @@ tzloadbody(char const *name, struct state *sp, bool doextend, sp->charcnt = charcnt; /* Read transitions, discarding those out of time_t range. - But pretend the last transition before time_t_min - occurred at time_t_min. */ + But pretend the last transition before TIME_T_MIN + occurred at TIME_T_MIN. */ timecnt = 0; for (i = 0; i < sp->timecnt; ++i) { int_fast64_t at = stored == 4 ? detzcode(p) : detzcode64(p); - sp->types[i] = at <= time_t_max; + sp->types[i] = at <= TIME_T_MAX; if (sp->types[i]) { time_t attime - = ((TYPE_SIGNED(time_t) ? at < time_t_min : at < 0) - ? time_t_min : at); + = ((TYPE_SIGNED(time_t) ? at < TIME_T_MIN : at < 0) + ? TIME_T_MIN : at); if (timecnt && attime <= sp->ats[timecnt - 1]) { if (attime < sp->ats[timecnt - 1]) return EINVAL; @@ -510,17 +521,20 @@ tzloadbody(char const *name, struct state *sp, bool doextend, int_fast64_t tr = stored == 4 ? detzcode(p) : detzcode64(p); int_fast32_t corr = detzcode(p + stored); p += stored + 4; - if (tr <= time_t_max) { - time_t trans - = ((TYPE_SIGNED(time_t) ? tr < time_t_min : tr < 0) - ? time_t_min : tr); - if (leapcnt && trans <= sp->lsis[leapcnt - 1].ls_trans) { - if (trans < sp->lsis[leapcnt - 1].ls_trans) - return EINVAL; - leapcnt--; - } - sp->lsis[leapcnt].ls_trans = trans; - sp->lsis[leapcnt].ls_corr = corr; + /* Leap seconds cannot occur before the Epoch. */ + if (tr < 0) + return EINVAL; + if (tr <= TIME_T_MAX) { + /* Leap seconds cannot occur more than once per UTC month, + and UTC months are at least 28 days long (minus 1 + second for a negative leap second). Each leap second's + correction must differ from the previous one's by 1 + second. */ + if (tr - prevtr < 28 * SECSPERDAY - 1 + || (corr != prevcorr - 1 && corr != prevcorr + 1)) + return EINVAL; + sp->lsis[leapcnt].ls_trans = prevtr = tr; + sp->lsis[leapcnt].ls_corr = prevcorr = corr; leapcnt++; } } @@ -568,12 +582,12 @@ tzloadbody(char const *name, struct state *sp, bool doextend, && ts->typecnt == 2) { /* Attempt to reuse existing abbreviations. - Without this, America/Anchorage would stop - working after 2037 when TZ_MAX_CHARS is 50, as - sp->charcnt equals 42 (for LMT CAT CAWT CAPT AHST + Without this, America/Anchorage would be right on + the edge after 2037 when TZ_MAX_CHARS is 50, as + sp->charcnt equals 40 (for LMT AST AWT APT AHST AHDT YST AKDT AKST) and ts->charcnt equals 10 (for AKST AKDT). Reusing means sp->charcnt can - stay 42 in this example. */ + stay 40 in this example. */ int gotabbr = 0; int charcnt = sp->charcnt; for (i = 0; i < 2; i++) { @@ -597,6 +611,15 @@ tzloadbody(char const *name, struct state *sp, bool doextend, } if (gotabbr == 2) { sp->charcnt = charcnt; + + /* Ignore any trailing, no-op transitions generated + by zic as they don't help here and can run afoul + of bugs in zic 2016j or earlier. */ + while (1 < sp->timecnt + && (sp->types[sp->timecnt - 1] + == sp->types[sp->timecnt - 2])) + sp->timecnt--; + for (i = 0; i < ts->timecnt; i++) if (sp->ats[sp->timecnt - 1] < ts->ats[i]) break; @@ -630,7 +653,7 @@ tzloadbody(char const *name, struct state *sp, bool doextend, } } /* - ** If type 0 is is unused in transitions, + ** If type 0 is unused in transitions, ** it's the type to use for early times. */ for (i = 0; i < sp->timecnt; ++i) @@ -723,7 +746,7 @@ static const int year_lengths[2] = { ** character. */ -static const char * ATTRIBUTE_PURE +static const char * getzname(register const char *strp) { register char c; @@ -743,7 +766,7 @@ getzname(register const char *strp) ** We don't do any checking here; checking is done later in common-case code. */ -static const char * ATTRIBUTE_PURE +static const char * getqzname(register const char *strp, const int delim) { register int c; @@ -905,7 +928,7 @@ getrule(const char *strp, register struct rule *const rulep) ** effect, calculate the year-relative time that rule takes effect. */ -static int_fast32_t ATTRIBUTE_PURE +static int_fast32_t transtime(const int year, register const struct rule *const rulep, const int_fast32_t offset) { @@ -1071,6 +1094,8 @@ tzparse(const char *name, struct state *sp, bool lastditch) register int yearlim; register int timecnt; time_t janfirst; + int_fast32_t janoffset = 0; + int yearbeg; ++name; if ((name = getrule(name, &start)) == NULL) @@ -1090,8 +1115,20 @@ tzparse(const char *name, struct state *sp, bool lastditch) sp->defaulttype = 0; timecnt = 0; janfirst = 0; - yearlim = EPOCH_YEAR + YEARSPERREPEAT; - for (year = EPOCH_YEAR; year < yearlim; year++) { + yearbeg = EPOCH_YEAR; + + do { + int_fast32_t yearsecs + = year_lengths[isleap(yearbeg - 1)] * SECSPERDAY; + yearbeg--; + if (increment_overflow_time(&janfirst, -yearsecs)) { + janoffset = -yearsecs; + break; + } + } while (EPOCH_YEAR - YEARSPERREPEAT / 2 < yearbeg); + + yearlim = yearbeg + YEARSPERREPEAT + 1; + for (year = yearbeg; year < yearlim; year++) { int_fast32_t starttime = transtime(year, &start, stdoffset), endtime = transtime(year, &end, dstoffset); @@ -1111,24 +1148,32 @@ tzparse(const char *name, struct state *sp, bool lastditch) + (stdoffset - dstoffset))))) { if (TZ_MAX_TIMES - 2 < timecnt) break; - yearlim = year + YEARSPERREPEAT + 1; sp->ats[timecnt] = janfirst; - if (increment_overflow_time - (&sp->ats[timecnt], starttime)) - break; - sp->types[timecnt++] = reversed; + if (! increment_overflow_time + (&sp->ats[timecnt], + janoffset + starttime)) + sp->types[timecnt++] = reversed; + else if (janoffset) + sp->defaulttype = reversed; sp->ats[timecnt] = janfirst; - if (increment_overflow_time - (&sp->ats[timecnt], endtime)) - break; - sp->types[timecnt++] = !reversed; + if (! increment_overflow_time + (&sp->ats[timecnt], + janoffset + endtime)) { + sp->types[timecnt++] = !reversed; + yearlim = year + YEARSPERREPEAT + 1; + } else if (janoffset) + sp->defaulttype = !reversed; } - if (increment_overflow_time(&janfirst, yearsecs)) + if (increment_overflow_time + (&janfirst, janoffset + yearsecs)) break; + janoffset = 0; } sp->timecnt = timecnt; - if (!timecnt) + if (! timecnt) sp->typecnt = 1; /* Perpetual DST. */ + else if (YEARSPERREPEAT < year - yearbeg) + sp->goback = sp->goahead = true; } else { register int_fast32_t theirstdoffset; register int_fast32_t theirdstoffset; @@ -1552,11 +1597,18 @@ offtime(const time_t *timep, long offset) ** where, to make the math easy, the answer for year zero is defined as zero. */ -static int ATTRIBUTE_PURE +static int +leaps_thru_end_of_nonneg(int y) +{ + return y / 4 - y / 100 + y / 400; +} + +static int leaps_thru_end_of(register const int y) { - return (y >= 0) ? (y / 4 - y / 100 + y / 400) : - -(leaps_thru_end_of(-(y + 1)) + 1); + return (y < 0 + ? -1 - leaps_thru_end_of_nonneg(-1 - y) + : leaps_thru_end_of_nonneg(y)); } static struct tm * @@ -1579,20 +1631,9 @@ timesub(const time_t *timep, int_fast32_t offset, while (--i >= 0) { lp = &sp->lsis[i]; if (*timep >= lp->ls_trans) { - if (*timep == lp->ls_trans) { - hit = ((i == 0 && lp->ls_corr > 0) || - lp->ls_corr > sp->lsis[i - 1].ls_corr); - if (hit) - while (i > 0 && - sp->lsis[i].ls_trans == - sp->lsis[i - 1].ls_trans + 1 && - sp->lsis[i].ls_corr == - sp->lsis[i - 1].ls_corr + 1) { - ++hit; - --i; - } - } corr = lp->ls_corr; + hit = (*timep == lp->ls_trans + && (i == 0 ? 0 : lp[-1].ls_corr) < corr); break; } } @@ -1754,12 +1795,12 @@ increment_overflow_time(time_t *tp, int_fast32_t j) { /* ** This is like - ** 'if (! (time_t_min <= *tp + j && *tp + j <= time_t_max)) ...', + ** 'if (! (TIME_T_MIN <= *tp + j && *tp + j <= TIME_T_MAX)) ...', ** except that it does the right thing even if *tp + j would overflow. */ if (! (j < 0 - ? (TYPE_SIGNED(time_t) ? time_t_min - j <= *tp : -1 - j < *tp) - : *tp <= time_t_max - j)) + ? (TYPE_SIGNED(time_t) ? TIME_T_MIN - j <= *tp : -1 - j < *tp) + : *tp <= TIME_T_MAX - j)) return true; *tp += j; return false; @@ -1895,8 +1936,8 @@ time2sub(struct tm *const tmp, /* ** Do a binary search (this works whatever time_t's type is). */ - lo = time_t_min; - hi = time_t_max; + lo = TIME_T_MIN; + hi = TIME_T_MAX; for ( ; ; ) { t = lo / 2 + hi / 2; if (t < lo) @@ -1913,12 +1954,12 @@ time2sub(struct tm *const tmp, } else dir = tmcomp(&mytm, &yourtm); if (dir != 0) { if (t == lo) { - if (t == time_t_max) + if (t == TIME_T_MAX) return WRONG; ++t; ++lo; } else if (t == hi) { - if (t == time_t_min) + if (t == TIME_T_MIN) return WRONG; --t; --hi; @@ -2185,7 +2226,7 @@ leapcorr(struct state const *sp, time_t t) return 0; } -NETBSD_INSPIRED_EXTERN time_t ATTRIBUTE_PURE +NETBSD_INSPIRED_EXTERN time_t time2posix_z(struct state *sp, time_t t) { return t - leapcorr(sp, t); @@ -2207,7 +2248,7 @@ time2posix(time_t t) return t; } -NETBSD_INSPIRED_EXTERN time_t ATTRIBUTE_PURE +NETBSD_INSPIRED_EXTERN time_t posix2time_z(struct state *sp, time_t t) { time_t x; @@ -2254,9 +2295,9 @@ posix2time(time_t t) #endif /* defined STD_INSPIRED */ -#if defined time_tz || EPOCH_LOCAL || EPOCH_OFFSET != 0 +#if TZ_TIME_T -# ifndef USG_COMPAT +# if !USG_COMPAT # define daylight 0 # define timezone 0 # endif diff --git a/db/newctime.3 b/db/newctime.3 index 6667e0d..8b89935 100644 --- a/db/newctime.3 +++ b/db/newctime.3 @@ -7,7 +7,7 @@ asctime, ctime, difftime, gmtime, localtime, mktime \- convert date and time .el ds - \- .B #include .PP -.B extern char *tzname[2]; +.BR "extern char *tzname[];" " /\(** (optional) \(**/" .PP .B char *ctime(time_t const *clock); .PP @@ -77,12 +77,12 @@ misleading values for out-of-range years. .PP The .BI * clock -time stamp represents the time in seconds since 1970-01-01 00:00:00 +timestamp represents the time in seconds since 1970-01-01 00:00:00 Coordinated Universal Time (UTC). -The POSIX standard says that time stamps must be nonnegative +The POSIX standard says that timestamps must be nonnegative and must ignore leap seconds. -Many implementations extend POSIX by allowing negative time stamps, -and can therefore represent time stamps that predate the +Many implementations extend POSIX by allowing negative timestamps, +and can therefore represent timestamps that predate the introduction of UTC and are some other flavor of Universal Time (UT). Some implementations support leap seconds, in contradiction to POSIX. .PP @@ -213,7 +213,7 @@ includes the following fields: .RS .PP .nf -.ta .5i +\w'long tm_gmtoff;\0\0'u +.ta 2n +\w'long tm_gmtoff;nn'u int tm_sec; /\(** seconds (0\*(en60) \(**/ int tm_min; /\(** minutes (0\*(en59) \(**/ int tm_hour; /\(** hours (0\*(en23) \(**/ @@ -223,21 +223,11 @@ includes the following fields: int tm_wday; /\(** day of week (Sunday = 0) \(**/ int tm_yday; /\(** day of year (0\*(en365) \(**/ int tm_isdst; /\(** is summer time in effect? \(**/ - char \(**tm_zone; /\(** abbreviation of time zone name \(**/ - long tm_gmtoff; /\(** offset from UT in seconds \(**/ + char \(**tm_zone; /\(** time zone abbreviation (optional) \(**/ + long tm_gmtoff; /\(** offset from UT in seconds (optional) \(**/ .fi .RE .PP -The -.I tm_zone -and -.I tm_gmtoff -fields exist, and are filled in, only if arrangements to do -so were made when the library containing these functions was -created. -There is no guarantee that these fields will continue to exist -in this form in future releases of this code. -.PP .I Tm_isdst is non-zero if summer time is in effect. .PP @@ -246,6 +236,21 @@ is the offset (in seconds) of the time represented from UT, with positive values indicating east of the Prime Meridian. The field's name is derived from Greenwich Mean Time, a precursor of UT. +.PP +In +.B struct tm +the +.I tm_zone +and +.I tm_gmtoff +fields exist, and are filled in, only if arrangements to do +so were made when the library containing these functions was +created. +Similarly, the +.B tzname +variable is optional. +There is no guarantee that these fields and this variable will +continue to exist in this form in future releases of this code. .SH FILES .ta \w'/usr/local/etc/zoneinfo/posixrules\0\0'u /usr/local/etc/zoneinfo time zone information directory @@ -277,12 +282,19 @@ and point to static data overwritten by each call. The +.B tzname +variable (once set) and the .B tm_zone field of a returned .B "struct tm" -points to a static array of characters, which -can be overwritten by later calls to -.IR tzset . +both point to an array of characters that +can be freed or overwritten by later calls to the functions +.IR localtime , +.IR tzfree , +and +.IR tzset , +if these functions affect the time zone information that specifies the +abbreviation in question. The remaining functions and data are thread-safe. .PP .IR Asctime , diff --git a/db/newctime.3.txt b/db/newctime.3.txt index e274d34..a3a5455 100644 --- a/db/newctime.3.txt +++ b/db/newctime.3.txt @@ -7,7 +7,7 @@ NAME SYNOPSIS #include - extern char *tzname[2]; + extern char *tzname[]; /* (optional) */ char *ctime(time_t const *clock); @@ -54,13 +54,13 @@ DESCRIPTION bytes of output will mistakenly output misleading values for out-of- range years. - The *clock time stamp represents the time in seconds since 1970-01-01 + The *clock timestamp represents the time in seconds since 1970-01-01 00:00:00 Coordinated Universal Time (UTC). The POSIX standard says - that time stamps must be nonnegative and must ignore leap seconds. - Many implementations extend POSIX by allowing negative time stamps, and - can therefore represent time stamps that predate the introduction of - UTC and are some other flavor of Universal Time (UT). Some - implementations support leap seconds, in contradiction to POSIX. + that timestamps must be nonnegative and must ignore leap seconds. Many + implementations extend POSIX by allowing negative timestamps, and can + therefore represent timestamps that predate the introduction of UTC and + are some other flavor of Universal Time (UT). Some implementations + support leap seconds, in contradiction to POSIX. Localtime and gmtime return pointers to "tm" structures, described below. Localtime corrects for the time zone and any time zone @@ -113,22 +113,17 @@ DESCRIPTION structure, are in the header file. The structure (of type) struct tm includes the following fields: - int tm_sec; /* seconds (0-60) */ - int tm_min; /* minutes (0-59) */ - int tm_hour; /* hours (0-23) */ - int tm_mday; /* day of month (1-31) */ - int tm_mon; /* month of year (0-11) */ - int tm_year; /* year - 1900 */ - int tm_wday; /* day of week (Sunday = 0) */ - int tm_yday; /* day of year (0-365) */ - int tm_isdst; /* is summer time in effect? */ - char *tm_zone; /* abbreviation of time zone name */ - long tm_gmtoff; /* offset from UT in seconds */ - - The tm_zone and tm_gmtoff fields exist, and are filled in, only if - arrangements to do so were made when the library containing these - functions was created. There is no guarantee that these fields will - continue to exist in this form in future releases of this code. + int tm_sec; /* seconds (0-60) */ + int tm_min; /* minutes (0-59) */ + int tm_hour; /* hours (0-23) */ + int tm_mday; /* day of month (1-31) */ + int tm_mon; /* month of year (0-11) */ + int tm_year; /* year - 1900 */ + int tm_wday; /* day of week (Sunday = 0) */ + int tm_yday; /* day of year (0-365) */ + int tm_isdst; /* is summer time in effect? */ + char *tm_zone; /* time zone abbreviation (optional) */ + long tm_gmtoff; /* offset from UT in seconds (optional) */ Tm_isdst is non-zero if summer time is in effect. @@ -136,6 +131,12 @@ DESCRIPTION with positive values indicating east of the Prime Meridian. The field's name is derived from Greenwich Mean Time, a precursor of UT. + In struct tm the tm_zone and tm_gmtoff fields exist, and are filled in, + only if arrangements to do so were made when the library containing + these functions was created. Similarly, the tzname variable is + optional. There is no guarantee that these fields and this variable + will continue to exist in this form in future releases of this code. + FILES /usr/local/etc/zoneinfo time zone information directory /usr/local/etc/zoneinfo/localtime local time zone file @@ -150,10 +151,12 @@ SEE ALSO NOTES The return values of asctime, ctime, gmtime, and localtime point to - static data overwritten by each call. The tm_zone field of a returned - struct tm points to a static array of characters, which can be - overwritten by later calls to tzset. The remaining functions and data - are thread-safe. + static data overwritten by each call. The tzname variable (once set) + and the tm_zone field of a returned struct tm both point to an array of + characters that can be freed or overwritten by later calls to the + functions localtime, tzfree, and tzset, if these functions affect the + time zone information that specifies the abbreviation in question. The + remaining functions and data are thread-safe. Asctime, asctime_r, ctime, and ctime_r behave strangely for years before 1000 or after 9999. The 1989 and 1999 editions of the C diff --git a/db/newstrftime.3 b/db/newstrftime.3 index 9a60ee3..8f1be34 100644 --- a/db/newstrftime.3 +++ b/db/newstrftime.3 @@ -50,6 +50,13 @@ strftime \- format date and time .SH DESCRIPTION .ie '\(en'' .ds en \- .el .ds en \(en +.ie '\(lq'' .ds lq \&"\" +.el .ds lq \(lq\" +.ie '\(rq'' .ds rq \&"\" +.el .ds rq \(rq\" +.de q +\\$3\*(lq\\$1\*(rq\\$2 +.. The .I strftime function formats the information from @@ -211,6 +218,11 @@ is replaced by the offset from the Prime Meridian in the format +HHMM or \*-HHMM as appropriate, with positive values representing locations east of Greenwich, or by the empty string if this is not determinable. +The numeric time zone \*-0000 is used when the time is Universal Time +but local time is indeterminate; by convention this is used for +locations while uninhabited, and corresponds to a zero offset when the +time zone abbreviation begins with +.q "\*-" . .TP %% is replaced by a single %. diff --git a/db/newstrftime.3.txt b/db/newstrftime.3.txt index ab8eeca..52daff1 100644 --- a/db/newstrftime.3.txt +++ b/db/newstrftime.3.txt @@ -129,7 +129,11 @@ DESCRIPTION %z is replaced by the offset from the Prime Meridian in the format +HHMM or -HHMM as appropriate, with positive values representing locations east of Greenwich, or by the empty string if this is - not determinable. + not determinable. The numeric time zone -0000 is used when the + time is Universal Time but local time is indeterminate; by + convention this is used for locations while uninhabited, and + corresponds to a zero offset when the time zone abbreviation + begins with "-". %% is replaced by a single %. diff --git a/db/northamerica b/db/northamerica index e1ed9e4..e5d3eca 100644 --- a/db/northamerica +++ b/db/northamerica @@ -105,10 +105,13 @@ # Last night I heard part of a rebroadcast of a 1945 Arch Oboler radio drama. # In the introduction, Oboler spoke of "Eastern Peace Time." # An AltaVista search turned up: -# http://rowayton.org/rhs/hstaug45.html +# https://web.archive.org/web/20000926032210/http://rowayton.org/rhs/hstaug45.html # "When the time is announced over the radio now, it is 'Eastern Peace # Time' instead of the old familiar 'Eastern War Time.' Peace is wonderful." # (August 1945) by way of confirmation. +# +# From Paul Eggert (2017-09-23): +# This was the V-J Day issue of the Clamdigger, a Rowayton, CT newsletter. # From Joseph Gallant citing # George H. Douglas, _The Early Days of Radio Broadcasting_ (1987): @@ -178,22 +181,6 @@ Zone CST6CDT -6:00 US C%sT Zone MST7MDT -7:00 US M%sT Zone PST8PDT -8:00 US P%sT -# From Bob Devine (1988-01-28): -# ...Alaska (and Hawaii) had the timezone names changed in 1967. -# old new -# Pacific Standard Time(PST) -same- -# Yukon Standard Time(YST) -same- -# Central Alaska S.T. (CAT) Alaska-Hawaii St[an]dard Time (AHST) -# Nome Standard Time (NT) Bering Standard Time (BST) -# -# ...Alaska's timezone lines were redrawn in 1983 to give only 2 tz. -# The YST zone now covers nearly all of the state, AHST just part -# of the Aleutian islands. No DST. - -# From Paul Eggert (1995-12-19): -# The tables below use 'NST', not 'NT', for Nome Standard Time. -# I invented 'CAWT' for Central Alaska War Time. - # From U. S. Naval Observatory (1989-01-19): # USA EASTERN 5 H BEHIND UTC NEW YORK, WASHINGTON # USA EASTERN 4 H BEHIND UTC APR 3 - OCT 30 @@ -250,6 +237,21 @@ Zone PST8PDT -8:00 US P%sT # Samoa standard time # The law doesn't give abbreviations. # +# From Paul Eggert (2016-12-19): +# Here are URLs for the 1918 and 1966 legislation: +# http://uscode.house.gov/statviewer.htm?volume=40&page=451 +# http://uscode.house.gov/statviewer.htm?volume=80&page=108 +# Although the 1918 names were officially "United States Standard +# Eastern Time" and similarly for "Central", "Mountain", "Pacific", +# and "Alaska", in practice "Standard" was placed just before "Time", +# as codified in 1966. In practice, Alaska time was abbreviated "AST" +# before 1968. Summarizing the 1967 name changes: +# 1918 names 1967 names +# -08 Standard Pacific Time (PST) Pacific standard time (PST) +# -09 (unofficial) Yukon (YST) Yukon standard time (YST) +# -10 Standard Alaska Time (AST) Alaska-Hawaii standard time (AHST) +# -11 (unofficial) Nome (NST) Bering standard time (BST) +# # From Paul Eggert (2000-01-08), following a heads-up from Rives McDow: # Public law 106-564 (2000-12-23) introduced ... "Chamorro Standard Time" # for time in Guam and the Northern Marianas. See the file "australasia". @@ -258,7 +260,7 @@ Zone PST8PDT -8:00 US P%sT # HST and HDT are standardized abbreviations for Hawaii-Aleutian # standard and daylight times. See section 9.47 (p 234) of the # U.S. Government Printing Office Style Manual (2008) -# http://www.gpo.gov/fdsys/pkg/GPO-STYLEMANUAL-2008/pdf/GPO-STYLEMANUAL-2008.pdf +# https://www.gpo.gov/fdsys/pkg/GPO-STYLEMANUAL-2008/pdf/GPO-STYLEMANUAL-2008.pdf # From Arthur David Olson, 2005-08-09 # The following was signed into law on 2005-08-08. @@ -305,6 +307,15 @@ Zone PST8PDT -8:00 US P%sT # Roberts, city administrator in Phenix City. as saying "We are in the Central # time zone, but we do go by the Eastern time zone because so many people work # in Columbus." +# +# From Paul Eggert (2017-02-22): +# Four cities are involved. The two not mentioned above are Smiths Station +# and Valley. Barbara Brooks, Valley's assistant treasurer, heard it started +# because West Point Pepperell textile mills were in Alabama while the +# corporate office was in Georgia, and residents voted to keep Eastern +# time even after the mills closed. See: Kazek K. Did you know which +# Alabama towns are in a different time zone? al.com 2017-02-06. +# http://www.al.com/living/index.ssf/2017/02/do_you_know_which_alabama_town.html # From Paul Eggert (2014-09-06): # Monthly Notices of the Royal Astronomical Society 44, 4 (1884-02-08), 208 @@ -338,7 +349,7 @@ Zone America/New_York -4:56:02 - LMT 1883 Nov 18 12:03:58 # western Tennessee, most of Texas, Wisconsin # From Larry M. Smith (2006-04-26) re Wisconsin: -# http://www.legis.state.wi.us/statutes/Stat0175.pdf ... +# https://docs.legis.wisconsin.gov/statutes/statutes/175.pdf # is currently enforced at the 01:00 time of change. Because the local # "bar time" in the state corresponds to 02:00, a number of citations # are issued for the "sale of class 'B' alcohol after prohibited @@ -347,7 +358,7 @@ Zone America/New_York -4:56:02 - LMT 1883 Nov 18 12:03:58 # From Douglas R. Bomberg (2007-03-12): # Wisconsin has enacted (nearly eleventh-hour) legislation to get WI # Statue 175 closer in synch with the US Congress' intent.... -# http://www.legis.state.wi.us/2007/data/acts/07Act3.pdf +# https://docs.legis.wisconsin.gov/2007/related/acts/3 # From an email administrator of the City of Fort Pierre, SD (2015-12-21): # Fort Pierre is technically located in the Mountain time zone as is @@ -394,7 +405,7 @@ Zone America/North_Dakota/New_Salem -6:45:39 - LMT 1883 Nov 18 12:14:21 # ...it appears that Mercer County, North Dakota, changed from the # mountain time zone to the central time zone at the last transition from # daylight-saving to standard time (on Nov. 7, 2010): -# http://www.gpo.gov/fdsys/pkg/FR-2010-09-29/html/2010-24376.htm +# https://www.gpo.gov/fdsys/pkg/FR-2010-09-29/html/2010-24376.htm # http://www.bismarcktribune.com/news/local/article_1eb1b588-c758-11df-b472-001cc4c03286.html # From Andy Lipscomb (2011-01-24): @@ -445,7 +456,7 @@ Zone America/Denver -6:59:56 - LMT 1883 Nov 18 12:00:04 # legal time, and is not part of the data here.) See: # Ross SA. An energy crisis from the past: Northern California in 1948. # Working Paper No. 8, Institute of Governmental Studies, UC Berkeley, -# 1973-11. http://escholarship.org/uc/item/8x22k30c +# 1973-11. https://escholarship.org/uc/item/8x22k30c # # In another measure to save electricity, DST was instituted from 1948-03-14 # at 02:01 to 1949-01-16 at 02:00, with the governor having the option to move @@ -466,8 +477,8 @@ Zone America/Denver -6:59:56 - LMT 1883 Nov 18 12:00:04 # which established DST from April's last Sunday at 01:00 until September's # last Sunday at 02:00. This was amended by 1962's Proposition 6, which changed # the fall-back date to October's last Sunday. See: -# http://repository.uchastings.edu/cgi/viewcontent.cgi?article=1501&context=ca_ballot_props -# http://repository.uchastings.edu/cgi/viewcontent.cgi?article=1636&context=ca_ballot_props +# https://repository.uchastings.edu/cgi/viewcontent.cgi?article=1501&context=ca_ballot_props +# https://repository.uchastings.edu/cgi/viewcontent.cgi?article=1636&context=ca_ballot_props # # Rule NAME FROM TO TYPE IN ON AT SAVE LETTER Rule CA 1948 only - Mar 14 2:01 1:00 D @@ -482,22 +493,33 @@ Zone America/Los_Angeles -7:52:58 - LMT 1883 Nov 18 12:07:02 -8:00 US P%sT # Alaska -# AK%sT is the modern abbreviation for -9:00 per USNO. +# AK%sT is the modern abbreviation for -09 per USNO. # -# From Paul Eggert (2001-05-30): +# From Paul Eggert (2017-06-15): # Howse writes that Alaska switched from the Julian to the Gregorian calendar, # and from east-of-GMT to west-of-GMT days, when the US bought it from Russia. -# This was on 1867-10-18, a Friday; the previous day was 1867-10-06 Julian, -# also a Friday. Include only the time zone part of this transition, -# ignoring the switch from Julian to Gregorian, since we can't represent -# the Julian calendar. -# -# As far as we know, none of the exact locations mentioned below were +# On Friday, 1867-10-18 (Gregorian), at precisely 15:30 local time, the +# Russian forts and fleet at Sitka fired salutes to mark the ceremony of +# formal transfer. See the Sacramento Daily Union (1867-11-14), p 3, col 2. +# https://cdnc.ucr.edu/cgi-bin/cdnc?a=d&d=SDU18671114.2.12.1 +# Sitka workers did not change their calendars until Sunday, 1867-10-20, +# and so celebrated two Sundays that week. See: Ahllund T (tr Hallamaa P). +# From the memoirs of a Finnish workman. Alaska History. 2006 Fall;21(2):1-25. +# http://alaskahistoricalsociety.org/wp-content/uploads/2016/12/Ahllund-2006-Memoirs-of-a-Finnish-Workman.pdf +# Include only the time zone part of this transition, ignoring the switch +# from Julian to Gregorian, since we can't represent the Julian calendar. +# +# As far as we know, of the locations mentioned below only Sitka was # permanently inhabited in 1867 by anyone using either calendar. -# (Yakutat was colonized by the Russians in 1799, but the settlement -# was destroyed in 1805 by a Yakutat-kon war party.) However, there -# were nearby inhabitants in some cases and for our purposes perhaps -# it's best to simply use the official transition. +# (Yakutat was colonized by the Russians in 1799, but the settlement was +# destroyed in 1805 by a Yakutat-kon war party.) Many of Alaska's inhabitants +# were unaware of the US acquisition of Alaska, much less of any calendar or +# time change. However, the Russian-influenced part of Alaska did observe +# Russian time, and it is more accurate to model this than to ignore it. +# The database format requires an exact transition time; use the Russian +# salute as a somewhat-arbitrary time for the formal transfer of control for +# all of Alaska. Sitka's UTC offset is -9:01:13; adjust its 15:30 to the +# local times of other Alaskan locations so that they change simultaneously. # From Paul Eggert (2014-07-18): # One opinion of the early-1980s turmoil in Alaska over time zones and @@ -550,10 +572,10 @@ Zone America/Los_Angeles -7:52:58 - LMT 1883 Nov 18 12:07:02 # It seems Metlakatla did go off PST on Sunday, November 1, changing # their time to AKST and are going to follow Alaska's DST, switching # between AKST and AKDT from now on.... -# http://www.krbd.org/2015/10/30/annette-island-times-they-are-a-changing/ +# https://www.krbd.org/2015/10/30/annette-island-times-they-are-a-changing/ # Zone NAME GMTOFF RULES FORMAT [UNTIL] -Zone America/Juneau 15:02:19 - LMT 1867 Oct 18 +Zone America/Juneau 15:02:19 - LMT 1867 Oct 19 15:33:32 -8:57:41 - LMT 1900 Aug 20 12:00 -8:00 - PST 1942 -8:00 US P%sT 1946 @@ -563,7 +585,7 @@ Zone America/Juneau 15:02:19 - LMT 1867 Oct 18 -8:00 US P%sT 1983 Oct 30 2:00 -9:00 US Y%sT 1983 Nov 30 -9:00 US AK%sT -Zone America/Sitka 14:58:47 - LMT 1867 Oct 18 +Zone America/Sitka 14:58:47 - LMT 1867 Oct 19 15:30 -9:01:13 - LMT 1900 Aug 20 12:00 -8:00 - PST 1942 -8:00 US P%sT 1946 @@ -571,7 +593,7 @@ Zone America/Sitka 14:58:47 - LMT 1867 Oct 18 -8:00 US P%sT 1983 Oct 30 2:00 -9:00 US Y%sT 1983 Nov 30 -9:00 US AK%sT -Zone America/Metlakatla 15:13:42 - LMT 1867 Oct 18 +Zone America/Metlakatla 15:13:42 - LMT 1867 Oct 19 15:44:55 -8:46:18 - LMT 1900 Aug 20 12:00 -8:00 - PST 1942 -8:00 US P%sT 1946 @@ -579,24 +601,22 @@ Zone America/Metlakatla 15:13:42 - LMT 1867 Oct 18 -8:00 US P%sT 1983 Oct 30 2:00 -8:00 - PST 2015 Nov 1 2:00 -9:00 US AK%sT -Zone America/Yakutat 14:41:05 - LMT 1867 Oct 18 +Zone America/Yakutat 14:41:05 - LMT 1867 Oct 19 15:12:18 -9:18:55 - LMT 1900 Aug 20 12:00 -9:00 - YST 1942 -9:00 US Y%sT 1946 -9:00 - YST 1969 -9:00 US Y%sT 1983 Nov 30 -9:00 US AK%sT -Zone America/Anchorage 14:00:24 - LMT 1867 Oct 18 +Zone America/Anchorage 14:00:24 - LMT 1867 Oct 19 14:31:37 -9:59:36 - LMT 1900 Aug 20 12:00 - -10:00 - CAT 1942 - -10:00 US CAT/CAWT 1945 Aug 14 23:00u - -10:00 US CAT/CAPT 1946 # Peace - -10:00 - CAT 1967 Apr + -10:00 - AST 1942 + -10:00 US A%sT 1967 Apr -10:00 - AHST 1969 -10:00 US AH%sT 1983 Oct 30 2:00 -9:00 US Y%sT 1983 Nov 30 -9:00 US AK%sT -Zone America/Nome 12:58:21 - LMT 1867 Oct 18 +Zone America/Nome 12:58:22 - LMT 1867 Oct 19 13:29:35 -11:01:38 - LMT 1900 Aug 20 12:00 -11:00 - NST 1942 -11:00 US N%sT 1946 @@ -605,7 +625,7 @@ Zone America/Nome 12:58:21 - LMT 1867 Oct 18 -11:00 US B%sT 1983 Oct 30 2:00 -9:00 US Y%sT 1983 Nov 30 -9:00 US AK%sT -Zone America/Adak 12:13:21 - LMT 1867 Oct 18 +Zone America/Adak 12:13:22 - LMT 1867 Oct 19 12:44:35 -11:46:38 - LMT 1900 Aug 20 12:00 -11:00 - NST 1942 -11:00 US N%sT 1946 @@ -641,7 +661,7 @@ Zone America/Adak 12:13:21 - LMT 1867 Oct 18 # "Hawaiian Time" by Robert C. Schmitt and Doak C. Cox appears on pages 207-225 # of volume 26 of The Hawaiian Journal of History (1992). As of 2010-12-09, # the article is available at -# http://evols.library.manoa.hawaii.edu/bitstream/10524/239/2/JL26215.pdf +# https://evols.library.manoa.hawaii.edu/bitstream/10524/239/2/JL26215.pdf # and indicates that standard time was adopted effective noon, January # 13, 1896 (page 218), that in "1933, the Legislature decreed daylight # saving for the period between the last Sunday of each April and the @@ -680,7 +700,6 @@ Zone Pacific/Honolulu -10:31:26 - LMT 1896 Jan 13 12:00 -10:30 1:00 HDT 1945 Sep 30 2:00 -10:30 - HST 1947 Jun 8 2:00 -10:00 - HST -Link Pacific/Honolulu Pacific/Johnston # Now we turn to US areas that have diverged from the consensus since 1970. @@ -741,7 +760,7 @@ Zone America/Boise -7:44:49 - LMT 1883 Nov 18 12:15:11 # Indiana # # For a map of Indiana's time zone regions, see: -# http://en.wikipedia.org/wiki/Time_in_Indiana +# https://en.wikipedia.org/wiki/Time_in_Indiana # # From Paul Eggert (2007-08-17): # Since 1970, most of Indiana has been like America/Indiana/Indianapolis, @@ -968,7 +987,7 @@ Zone America/Kentucky/Louisville -5:43:02 - LMT 1883 Nov 18 12:16:58 # From Paul Eggert (2001-07-16): # The final rule was published in the # Federal Register 65, 160 (2000-08-17), pp 50154-50158. -# http://frwebgate.access.gpo.gov/cgi-bin/getdoc.cgi?dbname=2000_register&docid=fr17au00-22 +# https://www.gpo.gov/fdsys/pkg/FR-2000-08-17/html/00-20854.htm # Zone America/Kentucky/Monticello -5:39:24 - LMT 1883 Nov 18 12:20:36 -6:00 US C%sT 1946 @@ -994,7 +1013,7 @@ Zone America/Kentucky/Monticello -5:39:24 - LMT 1883 Nov 18 12:20:36 # West Wendover, NV officially switched from Pacific to mountain time on # 1999-10-31. See the # Federal Register 64, 203 (1999-10-21), pp 56705-56707. -# http://frwebgate.access.gpo.gov/cgi-bin/getdoc.cgi?dbname=1999_register&docid=fr21oc99-15 +# https://www.gpo.gov/fdsys/pkg/FR-1999-10-21/html/99-27240.htm # However, the Federal Register says that West Wendover already operated # on mountain time, and the rule merely made this official; # hence a separate tz entry is not needed. @@ -1024,12 +1043,23 @@ Zone America/Kentucky/Monticello -5:39:24 - LMT 1883 Nov 18 12:20:36 # one hour in 1914." This change is not in Shanks. We have no more # info, so omit this for now. # +# From Paul Eggert (2017-07-26): +# Although Shanks says Detroit observed DST in 1967 from 06-14 00:01 +# until 10-29 00:01, I now see multiple reports that this is incorrect. +# For example, according to a 50-year anniversary report about the 1967 +# Detroit riots and a major-league doubleheader on 1967-07-23, "By the time +# the last fly ball of the doubleheader settled into the glove of leftfielder +# Lenny Green, it was after 7 p.m. Detroit did not observe daylight saving +# time, so light was already starting to fail. Twilight was made even deeper +# by billowing columns of smoke that ascended in an unbroken wall north of the +# ballpark." See: Dow B. Detroit '67: As violence unfolded, Tigers played two +# at home vs. Yankees. Detroit Free Press 2017-07-23. +# https://www.freep.com/story/sports/mlb/tigers/2017/07/23/detroit-tigers-1967-riot-new-york-yankees/499951001/ +# # Most of Michigan observed DST from 1973 on, but was a bit late in 1975. # Rule NAME FROM TO TYPE IN ON AT SAVE LETTER Rule Detroit 1948 only - Apr lastSun 2:00 1:00 D Rule Detroit 1948 only - Sep lastSun 2:00 0 S -Rule Detroit 1967 only - Jun 14 2:00 1:00 D -Rule Detroit 1967 only - Oct lastSun 2:00 0 S # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone America/Detroit -5:32:11 - LMT 1905 -6:00 - CST 1915 May 15 2:00 @@ -1068,15 +1098,15 @@ Zone America/Menominee -5:50:27 - LMT 1885 Sep 18 12:00 ################################################################################ -# From Paul Eggert (2014-10-31): +# From Paul Eggert (2017-02-10): # # Unless otherwise specified, the source for data through 1990 is: # Thomas G. Shanks and Rique Pottenger, The International Atlas (6th edition), # San Diego: ACS Publications, Inc. (2003). # Unfortunately this book contains many errors and cites no sources. # -# Gwillim Law writes that a good source -# for recent time zone data is the International Air Transport +# Many years ago Gwillim Law wrote that a good source +# for time zone data was the International Air Transport # Association's Standard Schedules Information Manual (IATA SSIM), # published semiannually. Law sent in several helpful summaries # of the IATA's data after 1990. Except where otherwise noted, @@ -1093,7 +1123,7 @@ Zone America/Menominee -5:50:27 - LMT 1885 Sep 18 12:00 # [PDF] (1914-03) # # Milne J. Civil time. Geogr J. 1899 Feb;13(2):173-94 -# . +# . # # See the 'europe' file for Greenland. @@ -1139,19 +1169,19 @@ Zone America/Menominee -5:50:27 - LMT 1885 Sep 18 12:00 # The British Columbia government announced yesterday that it will # adjust daylight savings next year to align with changes in the # U.S. and the rest of Canada.... -# http://www2.news.gov.bc.ca/news_releases_2005-2009/2006AG0014-000330.htm +# https://archive.news.gov.bc.ca/releases/news_releases_2005-2009/2006AG0014-000330.htm # ... # Nova Scotia # Daylight saving time will be extended by four weeks starting in 2007.... -# http://www.gov.ns.ca/just/regulations/rg2/2006/ma1206.pdf +# https://www.novascotia.ca/just/regulations/rg2/2006/ma1206.pdf # # [For New Brunswick] the new legislation dictates that the time change is to # be done at 02:00 instead of 00:01. -# http://www.gnb.ca/0062/acts/BBA-2006/Chap-19.pdf +# https://www.gnb.ca/0062/acts/BBA-2006/Chap-19.pdf # ... # Manitoba has traditionally changed the clock every fall at 03:00. # As of 2006, the transition is to take place one hour earlier at 02:00. -# http://web2.gov.mb.ca/laws/statutes/ccsm/o030e.php +# https://web2.gov.mb.ca/laws/statutes/ccsm/o030e.php # ... # [Alberta, Ontario, Quebec] will follow US rules. # http://www.qp.gov.ab.ca/documents/spring/CH03_06.CFM @@ -1165,7 +1195,7 @@ Zone America/Menominee -5:50:27 - LMT 1885 Sep 18 12:00 # http://www.hoa.gov.nl.ca/hoa/bills/Bill0634.htm # ... # Yukon -# http://www.gov.yk.ca/legislation/regs/oic2006_127.pdf +# https://www.gov.yk.ca/legislation/regs/oic2006_127.pdf # ... # N.W.T. will follow US rules. Whoever maintains the government web site # does not seem to believe in bookmarks. To see the news release, click the @@ -1186,8 +1216,8 @@ Zone America/Menominee -5:50:27 - LMT 1885 Sep 18 12:00 # time and daylight saving time arrangements in Canada circa 1998. # # National Research Council Canada maintains info about time zones and DST. -# http://www.nrc-cnrc.gc.ca/eng/services/time/time_zones.html -# http://www.nrc-cnrc.gc.ca/eng/services/time/faq/index.html#Q5 +# https://www.nrc-cnrc.gc.ca/eng/services/time/time_zones.html +# https://www.nrc-cnrc.gc.ca/eng/services/time/faq/index.html#Q5 # Its unofficial information is often taken from Matthews and Vincent. # From Paul Eggert (2006-06-27): @@ -1224,11 +1254,13 @@ Rule Canada 2007 max - Nov Sun>=1 2:00 0 S # Newfoundland and Labrador -# From Paul Eggert (2000-10-02): -# Matthews and Vincent (1998) write that Labrador should use NST/NDT, -# but the only part of Labrador that follows the rules is the -# southeast corner, including Port Hope Simpson and Mary's Harbour, -# but excluding, say, Black Tickle. +# From Paul Eggert (2017-10-14): +# Legally Labrador should observe Newfoundland time; see: +# McLeod J. Labrador time - legal or not? St. John's Telegram, 2017-10-07 +# http://www.thetelegram.com/news/local/labrador-time--legal-or-not-154860/ +# Matthews and Vincent (1998) write that the only part of Labrador +# that follows the rules is the southeast corner, including Port Hope +# Simpson and Mary's Harbour, but excluding, say, Black Tickle. # Rule NAME FROM TO TYPE IN ON AT SAVE LETTER/S Rule StJohns 1917 only - Apr 8 2:00 1:00 D @@ -1428,7 +1460,7 @@ Zone America/Moncton -4:19:08 - LMT 1883 Dec 9 # http://www.justice.gouv.qc.ca/english/publications/generale/temps-minganie-a.htm # that the coastal strip from just east of Natashquan to Blanc-Sablon # observes Atlantic standard time all year round. -# http://www.assnat.qc.ca/Media/Process.aspx?MediaId=ANQ.Vigie.Bll.DocumentGenerique_8845en +# https://www.assnat.qc.ca/Media/Process.aspx?MediaId=ANQ.Vigie.Bll.DocumentGenerique_8845en # says this common practice was codified into law as of 2007. # For lack of better info, guess this practice began around 1970, contra to # Shanks & Pottenger who have this region observing AST/ADT. @@ -1460,6 +1492,11 @@ Zone America/Blanc-Sablon -3:48:28 - LMT 1884 # earlier in June). # # Kenora, Ontario, was to abandon DST on 1914-06-01 (-05-21). +# +# From Paul Eggert (2017-07-08): +# For more on Orillia, see: Daubs K. Bold attempt at daylight saving +# time became a comic failure in Orillia. Toronto Star 2017-07-08. +# https://www.thestar.com/news/insight/2017/07/08/bold-attempt-at-daylight-saving-time-became-a-comic-failure-in-orillia.html # From Paul Eggert (1997-10-17): # Mark Brader writes that an article in the 1997-10-14 Toronto Star @@ -1951,7 +1988,7 @@ Zone America/Creston -7:46:04 - LMT 1884 # * 1967. Paragraph 28(34)(g) of the Interpretation Act, S.C. 1967-68, # c. 7 defines Yukon standard time as UTC-9.... # see Interpretation Act, R.S.C. 1985, c. I-21, s. 35(1). -# [http://canlii.ca/t/7vhg] +# [https://www.canlii.org/en/ca/laws/stat/rsc-1985-c-i-21/latest/rsc-1985-c-i-21.html] # * C.O. 1973/214 switched Yukon to PST on 1973-10-28 00:00. # * O.I.C. 1980/02 established DST. # * O.I.C. 1987/056 changed DST to Apr firstSun 2:00 to Oct lastSun 2:00. @@ -2016,7 +2053,7 @@ Zone America/Creston -7:46:04 - LMT 1884 # hours behind Greenwich Time. # # * Yukon Standard Time defined as Pacific Standard Time, YCO 1973/214 -# http://www.canlii.org/en/yk/laws/regu/yco-1973-214/latest/yco-1973-214.html +# https://www.canlii.org/en/yk/laws/regu/yco-1973-214/latest/yco-1973-214.html # C.O. 1973/214 INTERPRETATION ACT ... # # 1. Effective October 28, 1973 Commissioner's Order 1967/59 is hereby @@ -2031,7 +2068,7 @@ Zone America/Creston -7:46:04 - LMT 1884 # http://? - no online source found # # * Yukon Daylight Saving Time, YOIC 1987/56 -# http://www.canlii.org/en/yk/laws/regu/yoic-1987-56/latest/yoic-1987-56.html +# https://www.canlii.org/en/yk/laws/regu/yoic-1987-56/latest/yoic-1987-56.html # O.I.C. 1987/056 INTERPRETATION ACT ... # # In every year between @@ -2043,7 +2080,7 @@ Zone America/Creston -7:46:04 - LMT 1884 # Dated ... 9th day of March, A.D., 1987. # # * Yukon Daylight Saving Time 2006, YOIC 2006/127 -# http://www.canlii.org/en/yk/laws/regu/yoic-2006-127/latest/yoic-2006-127.html +# https://www.canlii.org/en/yk/laws/regu/yoic-2006-127/latest/yoic-2006-127.html # O.I.C. 2006/127 INTERPRETATION ACT ... # # 1. In Yukon each year the time for general purposes shall be 7 hours @@ -2057,7 +2094,7 @@ Zone America/Creston -7:46:04 - LMT 1884 # 3. This order comes into force January 1, 2007. # # * Interpretation Act, RSY 2002, c 125 -# http://www.canlii.org/en/yk/laws/stat/rsy-2002-c-125/latest/rsy-2002-c-125.html +# https://www.canlii.org/en/yk/laws/stat/rsy-2002-c-125/latest/rsy-2002-c-125.html # From Rives McDow (1999-09-04): # Nunavut ... moved ... to incorporate the whole territory into one time zone. @@ -2100,7 +2137,7 @@ Zone America/Creston -7:46:04 - LMT 1884 # From Michaela Rodrigue, writing in the # Nunatsiaq News (1999-11-19): -# http://www.nunatsiaq.com/archives/nunavut991130/nvt91119_17.html +# http://www.nunatsiaqonline.ca/archives/nunavut991130/nvt91119_17.html # Clyde River, Pangnirtung and Sanikiluaq now operate with two time zones, # central - or Nunavut time - for government offices, and eastern time # for municipal offices and schools.... Igloolik [was similar but then] @@ -2118,7 +2155,7 @@ Zone America/Creston -7:46:04 - LMT 1884 # Central Time and Southampton Island [in the Central zone] is not # required to use daylight savings. -# From +# From # Nunavut now has two time zones (2000-11-10): # The Nunavut government would allow its employees in Kugluktuk and # Cambridge Bay to operate on central time year-round, putting them @@ -2449,7 +2486,7 @@ Zone America/Dawson -9:17:40 - LMT 1900 Aug 20 # http://gaceta.diputados.gob.mx/Gaceta/61/2009/dic/V2-101209.html # # Our page: -# http://www.timeanddate.com/news/time/north-mexico-dst-change.html +# https://www.timeanddate.com/news/time/north-mexico-dst-change.html # From Arthur David Olson (2010-01-20): # The page @@ -2734,15 +2771,15 @@ Zone America/Barbados -3:58:29 - LMT 1924 # Bridgetown # Belize # Whitman entirely disagrees with Shanks; go with Shanks & Pottenger. # Rule NAME FROM TO TYPE IN ON AT SAVE LETTER/S -Rule Belize 1918 1942 - Oct Sun>=2 0:00 0:30 HD -Rule Belize 1919 1943 - Feb Sun>=9 0:00 0 S -Rule Belize 1973 only - Dec 5 0:00 1:00 D -Rule Belize 1974 only - Feb 9 0:00 0 S -Rule Belize 1982 only - Dec 18 0:00 1:00 D -Rule Belize 1983 only - Feb 12 0:00 0 S +Rule Belize 1918 1942 - Oct Sun>=2 0:00 0:30 -0530 +Rule Belize 1919 1943 - Feb Sun>=9 0:00 0 CST +Rule Belize 1973 only - Dec 5 0:00 1:00 CDT +Rule Belize 1974 only - Feb 9 0:00 0 CST +Rule Belize 1982 only - Dec 18 0:00 1:00 CDT +Rule Belize 1983 only - Feb 12 0:00 0 CST # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone America/Belize -5:52:48 - LMT 1912 Apr - -6:00 Belize C%sT + -6:00 Belize %s # Bermuda @@ -2868,7 +2905,7 @@ Zone America/Costa_Rica -5:36:13 - LMT 1890 # San José # http://www.nnc.cubaweb.cu/marzo-2008/cien-1-11-3-08.htm # # Some more background information is posted here: -# http://www.timeanddate.com/news/time/cuba-starts-dst-march-16.html +# https://www.timeanddate.com/news/time/cuba-starts-dst-march-16.html # # The article also says that Cuba has been observing DST since 1963, # while Shanks (and tzdata) has 1965 as the first date (except in the @@ -2915,7 +2952,7 @@ Zone America/Costa_Rica -5:36:13 - LMT 1890 # San José # http://granma.co.cu/2011/03/08/nacional/artic01.html # # Our info: -# http://www.timeanddate.com/news/time/cuba-starts-dst-2011.html +# https://www.timeanddate.com/news/time/cuba-starts-dst-2011.html # # From Steffen Thorsen (2011-10-30) # Cuba will end DST two weeks later this year. Instead of going back @@ -2925,7 +2962,7 @@ Zone America/Costa_Rica -5:36:13 - LMT 1890 # San José # http://www.radioangulo.cu/noticias/cuba/17105-cuba-restablecera-el-horario-del-meridiano-de-greenwich.html # # Our page: -# http://www.timeanddate.com/news/time/cuba-time-changes-2011.html +# https://www.timeanddate.com/news/time/cuba-time-changes-2011.html # # From Steffen Thorsen (2012-03-01) # According to Radio Reloj, Cuba will start DST on Midnight between March @@ -2935,7 +2972,7 @@ Zone America/Costa_Rica -5:36:13 - LMT 1890 # San José # http://www.radioreloj.cu/index.php/noticias-radio-reloj/71-miscelaneas/7529-cuba-aplicara-el-horario-de-verano-desde-el-1-de-abril # # Our info on it: -# http://www.timeanddate.com/news/time/cuba-starts-dst-2012.html +# https://www.timeanddate.com/news/time/cuba-starts-dst-2012.html # From Steffen Thorsen (2012-11-03): # Radio Reloj and many other sources report that Cuba is changing back @@ -3014,16 +3051,16 @@ Zone America/Havana -5:29:28 - LMT 1890 # Rule NAME FROM TO TYPE IN ON AT SAVE LETTER/S -Rule DR 1966 only - Oct 30 0:00 1:00 D -Rule DR 1967 only - Feb 28 0:00 0 S -Rule DR 1969 1973 - Oct lastSun 0:00 0:30 HD -Rule DR 1970 only - Feb 21 0:00 0 S -Rule DR 1971 only - Jan 20 0:00 0 S -Rule DR 1972 1974 - Jan 21 0:00 0 S +Rule DR 1966 only - Oct 30 0:00 1:00 EDT +Rule DR 1967 only - Feb 28 0:00 0 EST +Rule DR 1969 1973 - Oct lastSun 0:00 0:30 -0430 +Rule DR 1970 only - Feb 21 0:00 0 EST +Rule DR 1971 only - Jan 20 0:00 0 EST +Rule DR 1972 1974 - Jan 21 0:00 0 EST # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone America/Santo_Domingo -4:39:36 - LMT 1890 -4:40 - SDMT 1933 Apr 1 12:00 # S. Dom. MT - -5:00 DR E%sT 1974 Oct 27 + -5:00 DR %s 1974 Oct 27 -4:00 - AST 2000 Oct 29 2:00 -5:00 US E%sT 2000 Dec 3 1:00 -4:00 - AST @@ -3130,10 +3167,16 @@ Zone America/Guatemala -6:02:04 - LMT 1918 Oct 5 # From Steffen Thorsen (2016-03-12): # Jean Antoine, editor of www.haiti-reference.com informed us that Haiti # are not going on DST this year. Several other resources confirm this: ... -# http://www.radiotelevisioncaraibes.com/presse/heure_d_t_pas_de_changement_d_heure_pr_vu_pour_cet_ann_e.html -# http://www.vantbefinfo.com/changement-dheure-pas-pour-haiti/ +# https://www.radiotelevisioncaraibes.com/presse/heure_d_t_pas_de_changement_d_heure_pr_vu_pour_cet_ann_e.html +# https://www.vantbefinfo.com/changement-dheure-pas-pour-haiti/ # http://news.anmwe.com/haiti-lheure-nationale-ne-sera-ni-avancee-ni-reculee-cette-annee/ +# From Steffen Thorsen (2017-03-12): +# We have received 4 mails from different people telling that Haiti +# has started DST again today, and this source seems to confirm that, +# I have not been able to find a more authoritative source: +# https://www.haitilibre.com/en/news-20319-haiti-notices-time-change-in-haiti.html + # Rule NAME FROM TO TYPE IN ON AT SAVE LETTER/S Rule Haiti 1983 only - May 8 0:00 1:00 D Rule Haiti 1984 1987 - Apr lastSun 0:00 1:00 D @@ -3146,6 +3189,8 @@ Rule Haiti 2005 2006 - Apr Sun>=1 0:00 1:00 D Rule Haiti 2005 2006 - Oct lastSun 0:00 0 S Rule Haiti 2012 2015 - Mar Sun>=8 2:00 1:00 D Rule Haiti 2012 2015 - Nov Sun>=1 2:00 0 S +Rule Haiti 2017 max - Mar Sun>=8 2:00 1:00 D +Rule Haiti 2017 max - Nov Sun>=1 2:00 0 S # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone America/Port-au-Prince -4:49:20 - LMT 1890 -4:49 - PPMT 1917 Jan 24 12:00 # P-a-P MT @@ -3313,8 +3358,8 @@ Zone America/Puerto_Rico -4:24:25 - LMT 1899 Mar 28 12:00 # San Juan # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone America/Miquelon -3:44:40 - LMT 1911 May 15 # St Pierre -4:00 - AST 1980 May - -3:00 - PMST 1987 # Pierre & Miquelon Time - -3:00 Canada PM%sT + -3:00 - -03 1987 + -3:00 Canada -03/-02 # St Vincent and the Grenadines # See America/Port_of_Spain. @@ -3322,7 +3367,7 @@ Zone America/Miquelon -3:44:40 - LMT 1911 May 15 # St Pierre # Turks and Caicos # # From Chris Dunn in -# http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=415007 +# https://bugs.debian.org/415007 # (2007-03-15): In the Turks & Caicos Islands (America/Grand_Turk) the # daylight saving dates for time changes have been adjusted to match # the recent U.S. change of dates. @@ -3344,12 +3389,25 @@ Zone America/Miquelon -3:44:40 - LMT 1911 May 15 # St Pierre # "permanent daylight saving time" by one year.... # http://tcweeklynews.com/time-change-to-go-ahead-this-november-p5437-127.htm # +# From the Turks & Caicos Cabinet (2017-07-20), heads-up from Steffen Thorsen: +# ... agreed to the reintroduction in TCI of Daylight Saving Time (DST) +# during the summer months and Standard Time, also known as Local +# Time, during the winter months with effect from April 2018 ... +# https://www.gov.uk/government/news/turks-and-caicos-post-cabinet-meeting-statement--3 +# +# From Paul Eggert (2017-08-26): +# The date of effect of the spring 2018 change appears to be March 11, +# which makes more sense. See: Hamilton D. Time change back +# by March 2018 for TCI. Magnetic Media. 2017-08-25. +# http://magneticmediatv.com/2017/08/time-change-back-by-march-2018-for-tci/ +# # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone America/Grand_Turk -4:44:32 - LMT 1890 -5:07:11 - KMT 1912 Feb # Kingston Mean Time -5:00 - EST 1979 -5:00 US E%sT 2015 Nov Sun>=1 2:00 - -4:00 - AST + -4:00 - AST 2018 Mar 11 3:00 + -5:00 US E%sT # British Virgin Is # Virgin Is diff --git a/db/private.h b/db/private.h index 0bd1d00..2e8415e 100644 --- a/db/private.h +++ b/db/private.h @@ -27,13 +27,28 @@ #define HAVE_DECL_ASCTIME_R 1 #endif +#if !defined HAVE_GENERIC && defined __has_extension +# if __has_extension(c_generic_selections) +# define HAVE_GENERIC 1 +# else +# define HAVE_GENERIC 0 +# endif +#endif +/* _Generic is buggy in pre-4.9 GCC. */ +#if !defined HAVE_GENERIC && defined __GNUC__ +# define HAVE_GENERIC (4 < __GNUC__ + (9 <= __GNUC_MINOR__)) +#endif +#ifndef HAVE_GENERIC +# define HAVE_GENERIC (201112 <= __STDC_VERSION__) +#endif + #ifndef HAVE_GETTEXT #define HAVE_GETTEXT 0 #endif /* !defined HAVE_GETTEXT */ #ifndef HAVE_INCOMPATIBLE_CTIME_R #define HAVE_INCOMPATIBLE_CTIME_R 0 -#endif /* !defined INCOMPATIBLE_CTIME_R */ +#endif #ifndef HAVE_LINK #define HAVE_LINK 1 @@ -43,6 +58,10 @@ #define HAVE_POSIX_DECLS 1 #endif +#ifndef HAVE_STDBOOL_H +#define HAVE_STDBOOL_H (199901 <= __STDC_VERSION__) +#endif + #ifndef HAVE_STRDUP #define HAVE_STRDUP 1 #endif @@ -76,13 +95,23 @@ #define ctime_r _incompatible_ctime_r #endif /* HAVE_INCOMPATIBLE_CTIME_R */ -/* Enable tm_gmtoff and tm_zone on GNUish systems. */ +/* Enable tm_gmtoff, tm_zone, and environ on GNUish systems. */ #define _GNU_SOURCE 1 /* Fix asctime_r on Solaris 11. */ #define _POSIX_PTHREAD_SEMANTICS 1 /* Enable strtoimax on pre-C99 Solaris 11. */ #define __EXTENSIONS__ 1 +/* To avoid having 'stat' fail unnecessarily with errno == EOVERFLOW, + enable large files on GNUish systems ... */ +#ifndef _FILE_OFFSET_BITS +# define _FILE_OFFSET_BITS 64 +#endif +/* ... and on AIX ... */ +#define _LARGE_FILES 1 +/* ... and enable large inode numbers on Mac OS X 10.5 and later. */ +#define _DARWIN_USE_64_BIT_INODE 1 + /* ** Nested includes */ @@ -104,13 +133,12 @@ #undef tzalloc #undef tzfree -#include "sys/types.h" /* for time_t */ -#include "stdio.h" -#include "string.h" -#include "limits.h" /* for CHAR_BIT et al. */ -#include "stdlib.h" +#include /* for time_t */ +#include +#include /* for CHAR_BIT et al. */ +#include -#include "errno.h" +#include #ifndef ENAMETOOLONG # define ENAMETOOLONG EINVAL @@ -123,22 +151,11 @@ #endif #if HAVE_GETTEXT -#include "libintl.h" +#include #endif /* HAVE_GETTEXT */ -#if HAVE_SYS_WAIT_H -#include /* for WIFEXITED and WEXITSTATUS */ -#endif /* HAVE_SYS_WAIT_H */ - -#ifndef WIFEXITED -#define WIFEXITED(status) (((status) & 0xff) == 0) -#endif /* !defined WIFEXITED */ -#ifndef WEXITSTATUS -#define WEXITSTATUS(status) (((status) >> 8) & 0xff) -#endif /* !defined WEXITSTATUS */ - #if HAVE_UNISTD_H -#include "unistd.h" /* for F_OK, R_OK, and other POSIX goodness */ +#include /* for R_OK, and other POSIX goodness */ #endif /* HAVE_UNISTD_H */ #ifndef HAVE_STRFTIME_L @@ -149,9 +166,22 @@ # endif #endif -#ifndef F_OK -#define F_OK 0 -#endif /* !defined F_OK */ +#ifndef USG_COMPAT +# ifndef _XOPEN_VERSION +# define USG_COMPAT 0 +# else +# define USG_COMPAT 1 +# endif +#endif + +#ifndef HAVE_TZNAME +# if _POSIX_VERSION < 198808 && !USG_COMPAT +# define HAVE_TZNAME 0 +# else +# define HAVE_TZNAME 1 +# endif +#endif + #ifndef R_OK #define R_OK 4 #endif /* !defined R_OK */ @@ -173,7 +203,7 @@ #endif /* !defined HAVE_STDINT_H */ #if HAVE_STDINT_H -#include "stdint.h" +#include #endif /* !HAVE_STDINT_H */ #ifndef HAVE_INTTYPES_H @@ -335,6 +365,12 @@ typedef unsigned long uintmax_t; ** typical platforms. */ #if defined time_tz || EPOCH_LOCAL || EPOCH_OFFSET != 0 +# define TZ_TIME_T 1 +#else +# define TZ_TIME_T 0 +#endif + +#if TZ_TIME_T # ifdef LOCALTIME_IMPLEMENTATION static time_t sys_time(time_t *x) { return time(x); } # endif @@ -367,6 +403,8 @@ typedef time_tz tz_time_t; # define posix2time tz_posix2time # undef posix2time_z # define posix2time_z tz_posix2time_z +# undef strftime +# define strftime tz_strftime # undef time # define time tz_time # undef time2posix @@ -389,10 +427,34 @@ typedef time_tz tz_time_t; # define tzset tz_tzset # undef tzsetwall # define tzsetwall tz_tzsetwall +# if HAVE_STRFTIME_L +# undef strftime_l +# define strftime_l tz_strftime_l +# endif +# if HAVE_TZNAME +# undef tzname +# define tzname tz_tzname +# endif +# if USG_COMPAT +# undef daylight +# define daylight tz_daylight +# undef timezone +# define timezone tz_timezone +# endif +# ifdef ALTZONE +# undef altzone +# define altzone tz_altzone +# endif char *ctime(time_t const *); char *ctime_r(time_t const *, char *); -double difftime(time_t, time_t); +double difftime(time_t, time_t) ATTRIBUTE_CONST; +size_t strftime(char *restrict, size_t, char const *restrict, + struct tm const *restrict); +# if HAVE_STRFTIME_L +size_t strftime_l(char *restrict, size_t, char const *restrict, + struct tm const *restrict, locale_t); +# endif struct tm *gmtime(time_t const *); struct tm *gmtime_r(time_t const *restrict, struct tm *restrict); struct tm *localtime(time_t const *); @@ -406,18 +468,29 @@ void tzset(void); extern char *asctime_r(struct tm const *restrict, char *restrict); #endif -#if !HAVE_POSIX_DECLS -# ifdef USG_COMPAT -# ifndef timezone +#ifndef HAVE_DECL_ENVIRON +# if defined environ || defined __USE_GNU +# define HAVE_DECL_ENVIRON 1 +# else +# define HAVE_DECL_ENVIRON 0 +# endif +#endif + +#if !HAVE_DECL_ENVIRON +extern char **environ; +#endif + +#if TZ_TIME_T || !HAVE_POSIX_DECLS +# if HAVE_TZNAME +extern char *tzname[]; +# endif +# if USG_COMPAT extern long timezone; -# endif -# ifndef daylight extern int daylight; -# endif # endif #endif -#if defined ALTZONE && !defined altzone +#ifdef ALTZONE extern long altzone; #endif @@ -427,25 +500,25 @@ extern long altzone; */ #ifdef STD_INSPIRED -# if !defined tzsetwall || defined time_tz +# if TZ_TIME_T || !defined tzsetwall void tzsetwall(void); # endif -# if !defined offtime || defined time_tz +# if TZ_TIME_T || !defined offtime struct tm *offtime(time_t const *, long); # endif -# if !defined timegm || defined time_tz +# if TZ_TIME_T || !defined timegm time_t timegm(struct tm *); # endif -# if !defined timelocal || defined time_tz +# if TZ_TIME_T || !defined timelocal time_t timelocal(struct tm *); # endif -# if !defined timeoff || defined time_tz +# if TZ_TIME_T || !defined timeoff time_t timeoff(struct tm *, long); # endif -# if !defined time2posix || defined time_tz +# if TZ_TIME_T || !defined time2posix time_t time2posix(time_t); # endif -# if !defined posix2time || defined time_tz +# if TZ_TIME_T || !defined posix2time time_t posix2time(time_t); # endif #endif @@ -479,10 +552,10 @@ time_t mktime_z(timezone_t restrict, struct tm *restrict); timezone_t tzalloc(char const *); void tzfree(timezone_t); # ifdef STD_INSPIRED -# if !defined posix2time_z || defined time_tz +# if TZ_TIME_T || !defined posix2time_z time_t posix2time_z(timezone_t, time_t) ATTRIBUTE_PURE; # endif -# if !defined time2posix_z || defined time_tz +# if TZ_TIME_T || !defined time2posix_z time_t time2posix_z(timezone_t, time_t) ATTRIBUTE_PURE; # endif # endif @@ -492,22 +565,16 @@ time_t time2posix_z(timezone_t, time_t) ATTRIBUTE_PURE; ** Finally, some convenience items. */ -#if __STDC_VERSION__ < 199901 +#if HAVE_STDBOOL_H +# include +#else # define true 1 # define false 0 # define bool int -#else -# include #endif -#ifndef TYPE_BIT #define TYPE_BIT(type) (sizeof (type) * CHAR_BIT) -#endif /* !defined TYPE_BIT */ - -#ifndef TYPE_SIGNED #define TYPE_SIGNED(type) (((type) -1) < 0) -#endif /* !defined TYPE_SIGNED */ - #define TWOS_COMPLEMENT(t) ((t) ~ (t) 0 < 0) /* Max and min values of the integer type T, of which only the bottom @@ -519,30 +586,34 @@ time_t time2posix_z(timezone_t, time_t) ATTRIBUTE_PURE; #define MINVAL(t, b) \ ((t) (TYPE_SIGNED(t) ? - TWOS_COMPLEMENT(t) - MAXVAL(t, b) : 0)) -/* The minimum and maximum finite time values. This implementation - assumes no padding if time_t is signed and either the compiler is - pre-C11 or time_t is not one of the standard signed integer types. */ -#if 201112 <= __STDC_VERSION__ -static time_t const time_t_min - = (TYPE_SIGNED(time_t) - ? _Generic((time_t) 0, - signed char: SCHAR_MIN, short: SHRT_MIN, - int: INT_MIN, long: LONG_MIN, long long: LLONG_MIN, - default: MINVAL(time_t, TYPE_BIT(time_t))) - : 0); -static time_t const time_t_max - = (TYPE_SIGNED(time_t) - ? _Generic((time_t) 0, - signed char: SCHAR_MAX, short: SHRT_MAX, - int: INT_MAX, long: LONG_MAX, long long: LLONG_MAX, - default: MAXVAL(time_t, TYPE_BIT(time_t))) - : -1); +/* The extreme time values, assuming no padding. */ +#define TIME_T_MIN_NO_PADDING MINVAL(time_t, TYPE_BIT(time_t)) +#define TIME_T_MAX_NO_PADDING MAXVAL(time_t, TYPE_BIT(time_t)) + +/* The extreme time values. These are macros, not constants, so that + any portability problem occur only when compiling .c files that use + the macros, which is safer for applications that need only zdump and zic. + This implementation assumes no padding if time_t is signed and + either the compiler lacks support for _Generic or time_t is not one + of the standard signed integer types. */ +#if HAVE_GENERIC +# define TIME_T_MIN \ + _Generic((time_t) 0, \ + signed char: SCHAR_MIN, short: SHRT_MIN, \ + int: INT_MIN, long: LONG_MIN, long long: LLONG_MIN, \ + default: TIME_T_MIN_NO_PADDING) +# define TIME_T_MAX \ + (TYPE_SIGNED(time_t) \ + ? _Generic((time_t) 0, \ + signed char: SCHAR_MAX, short: SHRT_MAX, \ + int: INT_MAX, long: LONG_MAX, long long: LLONG_MAX, \ + default: TIME_T_MAX_NO_PADDING) \ + : (time_t) -1) #else -static time_t const time_t_min = MINVAL(time_t, TYPE_BIT(time_t)); -static time_t const time_t_max = MAXVAL(time_t, TYPE_BIT(time_t)); +# define TIME_T_MIN TIME_T_MIN_NO_PADDING +# define TIME_T_MAX TIME_T_MAX_NO_PADDING #endif -#ifndef INT_STRLEN_MAXIMUM /* ** 302 / 1000 is log10(2.0) rounded up. ** Subtract one for the sign bit if the type is signed; @@ -552,13 +623,12 @@ static time_t const time_t_max = MAXVAL(time_t, TYPE_BIT(time_t)); #define INT_STRLEN_MAXIMUM(type) \ ((TYPE_BIT(type) - TYPE_SIGNED(type)) * 302 / 1000 + \ 1 + TYPE_SIGNED(type)) -#endif /* !defined INT_STRLEN_MAXIMUM */ /* ** INITIALIZE(x) */ -#ifdef lint +#ifdef GCC_LINT # define INITIALIZE(x) ((x) = 0) #else # define INITIALIZE(x) @@ -574,13 +644,11 @@ static time_t const time_t_max = MAXVAL(time_t, TYPE_BIT(time_t)); ** The default is to use gettext if available, and use MSGID otherwise. */ -#ifndef _ #if HAVE_GETTEXT #define _(msgid) gettext(msgid) #else /* !HAVE_GETTEXT */ #define _(msgid) msgid #endif /* !HAVE_GETTEXT */ -#endif /* !defined _ */ #if !defined TZ_DOMAIN && defined HAVE_GETTEXT # define TZ_DOMAIN "tz" @@ -593,24 +661,70 @@ char *asctime_r(struct tm const *, char *); char *ctime_r(time_t const *, char *); #endif /* HAVE_INCOMPATIBLE_CTIME_R */ -#ifndef YEARSPERREPEAT +/* Handy macros that are independent of tzfile implementation. */ + #define YEARSPERREPEAT 400 /* years before a Gregorian repeat */ -#endif /* !defined YEARSPERREPEAT */ + +#define SECSPERMIN 60 +#define MINSPERHOUR 60 +#define HOURSPERDAY 24 +#define DAYSPERWEEK 7 +#define DAYSPERNYEAR 365 +#define DAYSPERLYEAR 366 +#define SECSPERHOUR (SECSPERMIN * MINSPERHOUR) +#define SECSPERDAY ((int_fast32_t) SECSPERHOUR * HOURSPERDAY) +#define MONSPERYEAR 12 + +#define TM_SUNDAY 0 +#define TM_MONDAY 1 +#define TM_TUESDAY 2 +#define TM_WEDNESDAY 3 +#define TM_THURSDAY 4 +#define TM_FRIDAY 5 +#define TM_SATURDAY 6 + +#define TM_JANUARY 0 +#define TM_FEBRUARY 1 +#define TM_MARCH 2 +#define TM_APRIL 3 +#define TM_MAY 4 +#define TM_JUNE 5 +#define TM_JULY 6 +#define TM_AUGUST 7 +#define TM_SEPTEMBER 8 +#define TM_OCTOBER 9 +#define TM_NOVEMBER 10 +#define TM_DECEMBER 11 + +#define TM_YEAR_BASE 1900 + +#define EPOCH_YEAR 1970 +#define EPOCH_WDAY TM_THURSDAY + +#define isleap(y) (((y) % 4) == 0 && (((y) % 100) != 0 || ((y) % 400) == 0)) /* -** The Gregorian year averages 365.2425 days, which is 31556952 seconds. +** Since everything in isleap is modulo 400 (or a factor of 400), we know that +** isleap(y) == isleap(y % 400) +** and so +** isleap(a + b) == isleap((a + b) % 400) +** or +** isleap(a + b) == isleap(a % 400 + b % 400) +** This is true even if % means modulo rather than Fortran remainder +** (which is allowed by C89 but not by C99 or later). +** We use this to avoid addition overflow problems. */ -#ifndef AVGSECSPERYEAR -#define AVGSECSPERYEAR 31556952L -#endif /* !defined AVGSECSPERYEAR */ +#define isleap_sum(a, b) isleap((a) % 400 + (b) % 400) + -#ifndef SECSPERREPEAT -#define SECSPERREPEAT ((int_fast64_t) YEARSPERREPEAT * (int_fast64_t) AVGSECSPERYEAR) -#endif /* !defined SECSPERREPEAT */ +/* +** The Gregorian year averages 365.2425 days, which is 31556952 seconds. +*/ -#ifndef SECSPERREPEAT_BITS +#define AVGSECSPERYEAR 31556952L +#define SECSPERREPEAT \ + ((int_fast64_t) YEARSPERREPEAT * (int_fast64_t) AVGSECSPERYEAR) #define SECSPERREPEAT_BITS 34 /* ceil(log2(SECSPERREPEAT)) */ -#endif /* !defined SECSPERREPEAT_BITS */ #endif /* !defined PRIVATE_H */ diff --git a/db/scheck.c b/db/scheck.c deleted file mode 100644 index 8bd01a8..0000000 --- a/db/scheck.c +++ /dev/null @@ -1,64 +0,0 @@ -/* -** This file is in the public domain, so clarified as of -** 2006-07-17 by Arthur David Olson. -*/ - -/*LINTLIBRARY*/ - -#include "private.h" - -const char * -scheck(const char *const string, const char *const format) -{ - register char * fbuf; - register const char * fp; - register char * tp; - register int c; - register const char * result; - char dummy; - - result = ""; - if (string == NULL || format == NULL) - return result; - fbuf = malloc(2 * strlen(format) + 4); - if (fbuf == NULL) - return result; - fp = format; - tp = fbuf; - - /* - ** Copy directives, suppressing each conversion that is not - ** already suppressed. Scansets containing '%' are not - ** supported; e.g., the conversion specification "%[%]" is not - ** supported. Also, multibyte characters containing a - ** non-leading '%' byte are not supported. - */ - while ((*tp++ = c = *fp++) != '\0') { - if (c != '%') - continue; - if (is_digit(*fp)) { - char const *f = fp; - char *t = tp; - do { - *t++ = c = *f++; - } while (is_digit(c)); - if (c == '$') { - fp = f; - tp = t; - } - } - *tp++ = '*'; - if (*fp == '*') - ++fp; - if ((*tp++ = *fp++) == '\0') - break; - } - - *(tp - 1) = '%'; - *tp++ = 'c'; - *tp = '\0'; - if (sscanf(string, fbuf, &dummy) != 1) - result = format; - free(fbuf); - return result; -} diff --git a/db/southamerica b/db/southamerica index 5321451..bbae226 100644 --- a/db/southamerica +++ b/db/southamerica @@ -6,15 +6,15 @@ # tz@iana.org for general use in the future). For more, please see # the file CONTRIBUTING in the tz distribution. -# From Paul Eggert (2014-10-31): +# From Paul Eggert (2016-12-05): # # Unless otherwise specified, the source for data through 1990 is: # Thomas G. Shanks and Rique Pottenger, The International Atlas (6th edition), # San Diego: ACS Publications, Inc. (2003). # Unfortunately this book contains many errors and cites no sources. # -# Gwillim Law writes that a good source -# for recent time zone data is the International Air Transport +# Many years ago Gwillim Law wrote that a good source +# for time zone data was the International Air Transport # Association's Standard Schedules Information Manual (IATA SSIM), # published semiannually. Law sent in several helpful summaries # of the IATA's data after 1990. Except where otherwise noted, @@ -22,34 +22,12 @@ # # For data circa 1899, a common source is: # Milne J. Civil time. Geogr J. 1899 Feb;13(2):173-94. -# http://www.jstor.org/stable/1774359 -# -# Earlier editions of these tables used the North American style (e.g. ARST and -# ARDT for Argentine Standard and Daylight Time), but the following quote -# suggests that it's better to use European style (e.g. ART and ARST). -# I suggest the use of _Summer time_ instead of the more cumbersome -# _daylight-saving time_. _Summer time_ seems to be in general use -# in Europe and South America. -# -- E O Cutler, _New York Times_ (1937-02-14), quoted in -# H L Mencken, _The American Language: Supplement I_ (1960), p 466 -# -# Earlier editions of these tables also used the North American style -# for time zones in Brazil, but this was incorrect, as Brazilians say -# "summer time". Reinaldo Goulart, a São Paulo businessman active in -# the railroad sector, writes (1999-07-06): -# The subject of time zones is currently a matter of discussion/debate in -# Brazil. Let's say that "the Brasília time" is considered the -# "official time" because Brasília is the capital city. -# The other three time zones are called "Brasília time "minus one" or -# "plus one" or "plus two". As far as I know there is no such -# name/designation as "Eastern Time" or "Central Time". -# So I invented the following (English-language) abbreviations for now. -# Corrections are welcome! -# std dst -# -2:00 FNT FNST Fernando de Noronha -# -3:00 BRT BRST Brasília -# -4:00 AMT AMST Amazon -# -5:00 ACT ACST Acre +# https://www.jstor.org/stable/1774359 +# +# These tables use numeric abbreviations like -03 and -0330 for +# integer hour and minute UTC offsets. Although earlier editions used +# alphabetic time zone abbreviations, these abbreviations were +# invented and did not reflect common practice. ############################################################################### @@ -287,8 +265,8 @@ Rule Arg 2008 only - Oct Sun>=15 0:00 1:00 S # # Es inminente que en San Luis atrasen una hora los relojes # (It is imminent in San Luis clocks one hour delay) -# http://www.lagaceta.com.ar/nota/253414/Economia/Es-inminente-que-en-San-Luis-atrasen-una-hora-los-relojes.html -# http://www.worldtimezone.net/dst_news/dst_news_argentina02.html +# https://www.lagaceta.com.ar/nota/253414/Economia/Es-inminente-que-en-San-Luis-atrasen-una-hora-los-relojes.html +# http://www.worldtimezone.com/dst_news/dst_news_argentina02.html # From Jesper Nørgaard Welen (2008-01-18): # The page of the San Luis provincial government @@ -384,12 +362,6 @@ Rule Arg 2008 only - Oct Sun>=15 0:00 1:00 S # # So I guess a new set of rules, besides "Arg", must be made and the last # America/Argentina/San_Luis entries should change to use these... -# -# I'm enclosing a patch that does what I say... regretfully, the San Luis -# timezone must be called "WART/WARST" even when most of the time (like, -# right now) WARST == ART... that is, since last Sunday, all the country -# is using UTC-3, but in my patch, San Luis calls it "WARST" and the rest -# of the country calls it "ART". # ... # From Alexander Krivenyshev (2010-04-09): @@ -413,7 +385,7 @@ Rule Arg 2008 only - Oct Sun>=15 0:00 1:00 S # Perhaps San Luis operates on the legal fiction that it is at -04 # with perpetual summer time, but ordinary usage typically seems to # just say it's at -03; see, for example, -# http://es.wikipedia.org/wiki/Hora_oficial_argentina +# https://es.wikipedia.org/wiki/Hora_oficial_argentina # We've documented similar situations as being plain changes to # standard time, so let's do that here too. This does not change UTC # offsets, only tm_isdst and the time zone abbreviations. One minor @@ -428,11 +400,11 @@ Rule Arg 2008 only - Oct Sun>=15 0:00 1:00 S # Buenos Aires (BA), Capital Federal (CF), Zone America/Argentina/Buenos_Aires -3:53:48 - LMT 1894 Oct 31 -4:16:48 - CMT 1920 May # Córdoba Mean Time - -4:00 - ART 1930 Dec - -4:00 Arg AR%sT 1969 Oct 5 - -3:00 Arg AR%sT 1999 Oct 3 - -4:00 Arg AR%sT 2000 Mar 3 - -3:00 Arg AR%sT + -4:00 - -04 1930 Dec + -4:00 Arg -04/-03 1969 Oct 5 + -3:00 Arg -03/-02 1999 Oct 3 + -4:00 Arg -04/-03 2000 Mar 3 + -3:00 Arg -03/-02 # # Córdoba (CB), Santa Fe (SF), Entre Ríos (ER), Corrientes (CN), Misiones (MN), # Chaco (CC), Formosa (FM), Santiago del Estero (SE) @@ -446,113 +418,113 @@ Zone America/Argentina/Buenos_Aires -3:53:48 - LMT 1894 Oct 31 # Zone America/Argentina/Cordoba -4:16:48 - LMT 1894 Oct 31 -4:16:48 - CMT 1920 May - -4:00 - ART 1930 Dec - -4:00 Arg AR%sT 1969 Oct 5 - -3:00 Arg AR%sT 1991 Mar 3 - -4:00 - WART 1991 Oct 20 - -3:00 Arg AR%sT 1999 Oct 3 - -4:00 Arg AR%sT 2000 Mar 3 - -3:00 Arg AR%sT + -4:00 - -04 1930 Dec + -4:00 Arg -04/-03 1969 Oct 5 + -3:00 Arg -03/-02 1991 Mar 3 + -4:00 - -04 1991 Oct 20 + -3:00 Arg -03/-02 1999 Oct 3 + -4:00 Arg -04/-03 2000 Mar 3 + -3:00 Arg -03/-02 # # Salta (SA), La Pampa (LP), Neuquén (NQ), Rio Negro (RN) Zone America/Argentina/Salta -4:21:40 - LMT 1894 Oct 31 -4:16:48 - CMT 1920 May - -4:00 - ART 1930 Dec - -4:00 Arg AR%sT 1969 Oct 5 - -3:00 Arg AR%sT 1991 Mar 3 - -4:00 - WART 1991 Oct 20 - -3:00 Arg AR%sT 1999 Oct 3 - -4:00 Arg AR%sT 2000 Mar 3 - -3:00 Arg AR%sT 2008 Oct 18 - -3:00 - ART + -4:00 - -04 1930 Dec + -4:00 Arg -04/-03 1969 Oct 5 + -3:00 Arg -03/-02 1991 Mar 3 + -4:00 - -04 1991 Oct 20 + -3:00 Arg -03/-02 1999 Oct 3 + -4:00 Arg -04/-03 2000 Mar 3 + -3:00 Arg -03/-02 2008 Oct 18 + -3:00 - -03 # # Tucumán (TM) Zone America/Argentina/Tucuman -4:20:52 - LMT 1894 Oct 31 -4:16:48 - CMT 1920 May - -4:00 - ART 1930 Dec - -4:00 Arg AR%sT 1969 Oct 5 - -3:00 Arg AR%sT 1991 Mar 3 - -4:00 - WART 1991 Oct 20 - -3:00 Arg AR%sT 1999 Oct 3 - -4:00 Arg AR%sT 2000 Mar 3 - -3:00 - ART 2004 Jun 1 - -4:00 - WART 2004 Jun 13 - -3:00 Arg AR%sT + -4:00 - -04 1930 Dec + -4:00 Arg -04/-03 1969 Oct 5 + -3:00 Arg -03/-02 1991 Mar 3 + -4:00 - -04 1991 Oct 20 + -3:00 Arg -03/-02 1999 Oct 3 + -4:00 Arg -04/-03 2000 Mar 3 + -3:00 - -03 2004 Jun 1 + -4:00 - -04 2004 Jun 13 + -3:00 Arg -03/-02 # # La Rioja (LR) Zone America/Argentina/La_Rioja -4:27:24 - LMT 1894 Oct 31 -4:16:48 - CMT 1920 May - -4:00 - ART 1930 Dec - -4:00 Arg AR%sT 1969 Oct 5 - -3:00 Arg AR%sT 1991 Mar 1 - -4:00 - WART 1991 May 7 - -3:00 Arg AR%sT 1999 Oct 3 - -4:00 Arg AR%sT 2000 Mar 3 - -3:00 - ART 2004 Jun 1 - -4:00 - WART 2004 Jun 20 - -3:00 Arg AR%sT 2008 Oct 18 - -3:00 - ART + -4:00 - -04 1930 Dec + -4:00 Arg -04/-03 1969 Oct 5 + -3:00 Arg -03/-02 1991 Mar 1 + -4:00 - -04 1991 May 7 + -3:00 Arg -03/-02 1999 Oct 3 + -4:00 Arg -04/-03 2000 Mar 3 + -3:00 - -03 2004 Jun 1 + -4:00 - -04 2004 Jun 20 + -3:00 Arg -03/-02 2008 Oct 18 + -3:00 - -03 # # San Juan (SJ) Zone America/Argentina/San_Juan -4:34:04 - LMT 1894 Oct 31 -4:16:48 - CMT 1920 May - -4:00 - ART 1930 Dec - -4:00 Arg AR%sT 1969 Oct 5 - -3:00 Arg AR%sT 1991 Mar 1 - -4:00 - WART 1991 May 7 - -3:00 Arg AR%sT 1999 Oct 3 - -4:00 Arg AR%sT 2000 Mar 3 - -3:00 - ART 2004 May 31 - -4:00 - WART 2004 Jul 25 - -3:00 Arg AR%sT 2008 Oct 18 - -3:00 - ART + -4:00 - -04 1930 Dec + -4:00 Arg -04/-03 1969 Oct 5 + -3:00 Arg -03/-02 1991 Mar 1 + -4:00 - -04 1991 May 7 + -3:00 Arg -03/-02 1999 Oct 3 + -4:00 Arg -04/-03 2000 Mar 3 + -3:00 - -03 2004 May 31 + -4:00 - -04 2004 Jul 25 + -3:00 Arg -03/-02 2008 Oct 18 + -3:00 - -03 # # Jujuy (JY) Zone America/Argentina/Jujuy -4:21:12 - LMT 1894 Oct 31 -4:16:48 - CMT 1920 May - -4:00 - ART 1930 Dec - -4:00 Arg AR%sT 1969 Oct 5 - -3:00 Arg AR%sT 1990 Mar 4 - -4:00 - WART 1990 Oct 28 - -4:00 1:00 WARST 1991 Mar 17 - -4:00 - WART 1991 Oct 6 - -3:00 1:00 ARST 1992 - -3:00 Arg AR%sT 1999 Oct 3 - -4:00 Arg AR%sT 2000 Mar 3 - -3:00 Arg AR%sT 2008 Oct 18 - -3:00 - ART + -4:00 - -04 1930 Dec + -4:00 Arg -04/-03 1969 Oct 5 + -3:00 Arg -03/-02 1990 Mar 4 + -4:00 - -04 1990 Oct 28 + -4:00 1:00 -03 1991 Mar 17 + -4:00 - -04 1991 Oct 6 + -3:00 1:00 -02 1992 + -3:00 Arg -03/-02 1999 Oct 3 + -4:00 Arg -04/-03 2000 Mar 3 + -3:00 Arg -03/-02 2008 Oct 18 + -3:00 - -03 # # Catamarca (CT), Chubut (CH) Zone America/Argentina/Catamarca -4:23:08 - LMT 1894 Oct 31 -4:16:48 - CMT 1920 May - -4:00 - ART 1930 Dec - -4:00 Arg AR%sT 1969 Oct 5 - -3:00 Arg AR%sT 1991 Mar 3 - -4:00 - WART 1991 Oct 20 - -3:00 Arg AR%sT 1999 Oct 3 - -4:00 Arg AR%sT 2000 Mar 3 - -3:00 - ART 2004 Jun 1 - -4:00 - WART 2004 Jun 20 - -3:00 Arg AR%sT 2008 Oct 18 - -3:00 - ART + -4:00 - -04 1930 Dec + -4:00 Arg -04/-03 1969 Oct 5 + -3:00 Arg -03/-02 1991 Mar 3 + -4:00 - -04 1991 Oct 20 + -3:00 Arg -03/-02 1999 Oct 3 + -4:00 Arg -04/-03 2000 Mar 3 + -3:00 - -03 2004 Jun 1 + -4:00 - -04 2004 Jun 20 + -3:00 Arg -03/-02 2008 Oct 18 + -3:00 - -03 # # Mendoza (MZ) Zone America/Argentina/Mendoza -4:35:16 - LMT 1894 Oct 31 -4:16:48 - CMT 1920 May - -4:00 - ART 1930 Dec - -4:00 Arg AR%sT 1969 Oct 5 - -3:00 Arg AR%sT 1990 Mar 4 - -4:00 - WART 1990 Oct 15 - -4:00 1:00 WARST 1991 Mar 1 - -4:00 - WART 1991 Oct 15 - -4:00 1:00 WARST 1992 Mar 1 - -4:00 - WART 1992 Oct 18 - -3:00 Arg AR%sT 1999 Oct 3 - -4:00 Arg AR%sT 2000 Mar 3 - -3:00 - ART 2004 May 23 - -4:00 - WART 2004 Sep 26 - -3:00 Arg AR%sT 2008 Oct 18 - -3:00 - ART + -4:00 - -04 1930 Dec + -4:00 Arg -04/-03 1969 Oct 5 + -3:00 Arg -03/-02 1990 Mar 4 + -4:00 - -04 1990 Oct 15 + -4:00 1:00 -03 1991 Mar 1 + -4:00 - -04 1991 Oct 15 + -4:00 1:00 -03 1992 Mar 1 + -4:00 - -04 1992 Oct 18 + -3:00 Arg -03/-02 1999 Oct 3 + -4:00 Arg -04/-03 2000 Mar 3 + -3:00 - -03 2004 May 23 + -4:00 - -04 2004 Sep 26 + -3:00 Arg -03/-02 2008 Oct 18 + -3:00 - -03 # # San Luis (SL) @@ -561,44 +533,44 @@ Rule SanLuis 2007 2008 - Oct Sun>=8 0:00 1:00 S Zone America/Argentina/San_Luis -4:25:24 - LMT 1894 Oct 31 -4:16:48 - CMT 1920 May - -4:00 - ART 1930 Dec - -4:00 Arg AR%sT 1969 Oct 5 - -3:00 Arg AR%sT 1990 - -3:00 1:00 ARST 1990 Mar 14 - -4:00 - WART 1990 Oct 15 - -4:00 1:00 WARST 1991 Mar 1 - -4:00 - WART 1991 Jun 1 - -3:00 - ART 1999 Oct 3 - -4:00 1:00 WARST 2000 Mar 3 - -3:00 - ART 2004 May 31 - -4:00 - WART 2004 Jul 25 - -3:00 Arg AR%sT 2008 Jan 21 - -4:00 SanLuis WAR%sT 2009 Oct 11 - -3:00 - ART + -4:00 - -04 1930 Dec + -4:00 Arg -04/-03 1969 Oct 5 + -3:00 Arg -03/-02 1990 + -3:00 1:00 -02 1990 Mar 14 + -4:00 - -04 1990 Oct 15 + -4:00 1:00 -03 1991 Mar 1 + -4:00 - -04 1991 Jun 1 + -3:00 - -03 1999 Oct 3 + -4:00 1:00 -03 2000 Mar 3 + -3:00 - -03 2004 May 31 + -4:00 - -04 2004 Jul 25 + -3:00 Arg -03/-02 2008 Jan 21 + -4:00 SanLuis -04/-03 2009 Oct 11 + -3:00 - -03 # # Santa Cruz (SC) Zone America/Argentina/Rio_Gallegos -4:36:52 - LMT 1894 Oct 31 - -4:16:48 - CMT 1920 May # Córdoba Mean Time - -4:00 - ART 1930 Dec - -4:00 Arg AR%sT 1969 Oct 5 - -3:00 Arg AR%sT 1999 Oct 3 - -4:00 Arg AR%sT 2000 Mar 3 - -3:00 - ART 2004 Jun 1 - -4:00 - WART 2004 Jun 20 - -3:00 Arg AR%sT 2008 Oct 18 - -3:00 - ART + -4:16:48 - CMT 1920 May + -4:00 - -04 1930 Dec + -4:00 Arg -04/-03 1969 Oct 5 + -3:00 Arg -03/-02 1999 Oct 3 + -4:00 Arg -04/-03 2000 Mar 3 + -3:00 - -03 2004 Jun 1 + -4:00 - -04 2004 Jun 20 + -3:00 Arg -03/-02 2008 Oct 18 + -3:00 - -03 # # Tierra del Fuego, Antártida e Islas del Atlántico Sur (TF) Zone America/Argentina/Ushuaia -4:33:12 - LMT 1894 Oct 31 - -4:16:48 - CMT 1920 May # Córdoba Mean Time - -4:00 - ART 1930 Dec - -4:00 Arg AR%sT 1969 Oct 5 - -3:00 Arg AR%sT 1999 Oct 3 - -4:00 Arg AR%sT 2000 Mar 3 - -3:00 - ART 2004 May 30 - -4:00 - WART 2004 Jun 20 - -3:00 Arg AR%sT 2008 Oct 18 - -3:00 - ART + -4:16:48 - CMT 1920 May + -4:00 - -04 1930 Dec + -4:00 Arg -04/-03 1969 Oct 5 + -3:00 Arg -03/-02 1999 Oct 3 + -4:00 Arg -04/-03 2000 Mar 3 + -3:00 - -03 2004 May 30 + -4:00 - -04 2004 Jun 20 + -3:00 Arg -03/-02 2008 Oct 18 + -3:00 - -03 # Aruba Link America/Curacao America/Aruba @@ -608,7 +580,7 @@ Link America/Curacao America/Aruba Zone America/La_Paz -4:32:36 - LMT 1890 -4:32:36 - CMT 1931 Oct 15 # Calamarca MT -4:32:36 1:00 BOST 1932 Mar 21 # Bolivia ST - -4:00 - BOT # Bolivia Time + -4:00 - -04 # Brazil @@ -744,7 +716,7 @@ Zone America/La_Paz -4:32:36 - LMT 1890 # (Portuguese) # # We have a written a short article about it as well: -# http://www.timeanddate.com/news/time/brazil-dst-2008-2009.html +# https://www.timeanddate.com/news/time/brazil-dst-2008-2009.html # # From Alexander Krivenyshev (2011-10-04): # State Bahia will return to Daylight savings time this year after 8 years off. @@ -753,7 +725,7 @@ Zone America/La_Paz -4:32:36 - LMT 1890 # In Portuguese: # http://g1.globo.com/bahia/noticia/2011/10/governador-jaques-wagner-confirma-horario-de-verao-na-bahia.html -# http://noticias.terra.com.br/brasil/noticias/0,,OI5390887-EI8139,00-Bahia+volta+a+ter+horario+de+verao+apos+oito+anos.html +# https://noticias.terra.com.br/brasil/noticias/0,,OI5390887-EI8139,00-Bahia+volta+a+ter+horario+de+verao+apos+oito+anos.html # From Guilherme Bernardes Rodrigues (2011-10-07): # There is news in the media, however there is still no decree about it. @@ -779,16 +751,16 @@ Zone America/La_Paz -4:32:36 - LMT 1890 # From Rodrigo Severo (2012-10-16): # Tocantins state will have DST. -# http://noticias.terra.com.br/brasil/noticias/0,,OI6232536-EI306.html +# https://noticias.terra.com.br/brasil/noticias/0,,OI6232536-EI306.html # From Steffen Thorsen (2013-09-20): # Tocantins in Brazil is very likely not to observe DST from October.... # http://conexaoto.com.br/2013/09/18/ministerio-confirma-que-tocantins-esta-fora-do-horario-de-verao-em-2013-mas-falta-publicacao-de-decreto # We will keep this article updated when this is confirmed: -# http://www.timeanddate.com/news/time/brazil-starts-dst-2013.html +# https://www.timeanddate.com/news/time/brazil-starts-dst-2013.html # From Steffen Thorsen (2013-10-17): -# http://www.timeanddate.com/news/time/acre-amazonas-change-time-zone.html +# https://www.timeanddate.com/news/time/acre-amazonas-change-time-zone.html # Senator Jorge Viana announced that Acre will change time zone on November 10. # He did not specify the time of the change, nor if western parts of Amazonas # will change as well. @@ -960,12 +932,12 @@ Rule Brazil 2038 max - Feb Sun>=15 0:00 0 - # # Fernando de Noronha (administratively part of PE) Zone America/Noronha -2:09:40 - LMT 1914 - -2:00 Brazil FN%sT 1990 Sep 17 - -2:00 - FNT 1999 Sep 30 - -2:00 Brazil FN%sT 2000 Oct 15 - -2:00 - FNT 2001 Sep 13 - -2:00 Brazil FN%sT 2002 Oct 1 - -2:00 - FNT + -2:00 Brazil -02/-01 1990 Sep 17 + -2:00 - -02 1999 Sep 30 + -2:00 Brazil -02/-01 2000 Oct 15 + -2:00 - -02 2001 Sep 13 + -2:00 Brazil -02/-01 2002 Oct 1 + -2:00 - -02 # Other Atlantic islands have no permanent settlement. # These include Trindade and Martim Vaz (administratively part of ES), # Rocas Atoll (RN), and the St Peter and St Paul Archipelago (PE). @@ -978,119 +950,119 @@ Zone America/Noronha -2:09:40 - LMT 1914 # In the north a very small part from the river Javary (now Jari I guess, # the border with Amapá) to the Amazon, then to the Xingu. Zone America/Belem -3:13:56 - LMT 1914 - -3:00 Brazil BR%sT 1988 Sep 12 - -3:00 - BRT + -3:00 Brazil -03/-02 1988 Sep 12 + -3:00 - -03 # # west Pará (PA) # West Pará includes Altamira, Óbidos, Prainha, Oriximiná, and Santarém. Zone America/Santarem -3:38:48 - LMT 1914 - -4:00 Brazil AM%sT 1988 Sep 12 - -4:00 - AMT 2008 Jun 24 0:00 - -3:00 - BRT + -4:00 Brazil -04/-03 1988 Sep 12 + -4:00 - -04 2008 Jun 24 0:00 + -3:00 - -03 # # Maranhão (MA), Piauí (PI), Ceará (CE), Rio Grande do Norte (RN), # Paraíba (PB) Zone America/Fortaleza -2:34:00 - LMT 1914 - -3:00 Brazil BR%sT 1990 Sep 17 - -3:00 - BRT 1999 Sep 30 - -3:00 Brazil BR%sT 2000 Oct 22 - -3:00 - BRT 2001 Sep 13 - -3:00 Brazil BR%sT 2002 Oct 1 - -3:00 - BRT + -3:00 Brazil -03/-02 1990 Sep 17 + -3:00 - -03 1999 Sep 30 + -3:00 Brazil -03/-02 2000 Oct 22 + -3:00 - -03 2001 Sep 13 + -3:00 Brazil -03/-02 2002 Oct 1 + -3:00 - -03 # # Pernambuco (PE) (except Atlantic islands) Zone America/Recife -2:19:36 - LMT 1914 - -3:00 Brazil BR%sT 1990 Sep 17 - -3:00 - BRT 1999 Sep 30 - -3:00 Brazil BR%sT 2000 Oct 15 - -3:00 - BRT 2001 Sep 13 - -3:00 Brazil BR%sT 2002 Oct 1 - -3:00 - BRT + -3:00 Brazil -03/-02 1990 Sep 17 + -3:00 - -03 1999 Sep 30 + -3:00 Brazil -03/-02 2000 Oct 15 + -3:00 - -03 2001 Sep 13 + -3:00 Brazil -03/-02 2002 Oct 1 + -3:00 - -03 # # Tocantins (TO) Zone America/Araguaina -3:12:48 - LMT 1914 - -3:00 Brazil BR%sT 1990 Sep 17 - -3:00 - BRT 1995 Sep 14 - -3:00 Brazil BR%sT 2003 Sep 24 - -3:00 - BRT 2012 Oct 21 - -3:00 Brazil BR%sT 2013 Sep - -3:00 - BRT + -3:00 Brazil -03/-02 1990 Sep 17 + -3:00 - -03 1995 Sep 14 + -3:00 Brazil -03/-02 2003 Sep 24 + -3:00 - -03 2012 Oct 21 + -3:00 Brazil -03/-02 2013 Sep + -3:00 - -03 # # Alagoas (AL), Sergipe (SE) Zone America/Maceio -2:22:52 - LMT 1914 - -3:00 Brazil BR%sT 1990 Sep 17 - -3:00 - BRT 1995 Oct 13 - -3:00 Brazil BR%sT 1996 Sep 4 - -3:00 - BRT 1999 Sep 30 - -3:00 Brazil BR%sT 2000 Oct 22 - -3:00 - BRT 2001 Sep 13 - -3:00 Brazil BR%sT 2002 Oct 1 - -3:00 - BRT + -3:00 Brazil -03/-02 1990 Sep 17 + -3:00 - -03 1995 Oct 13 + -3:00 Brazil -03/-02 1996 Sep 4 + -3:00 - -03 1999 Sep 30 + -3:00 Brazil -03/-02 2000 Oct 22 + -3:00 - -03 2001 Sep 13 + -3:00 Brazil -03/-02 2002 Oct 1 + -3:00 - -03 # # Bahia (BA) # There are too many Salvadors elsewhere, so use America/Bahia instead # of America/Salvador. Zone America/Bahia -2:34:04 - LMT 1914 - -3:00 Brazil BR%sT 2003 Sep 24 - -3:00 - BRT 2011 Oct 16 - -3:00 Brazil BR%sT 2012 Oct 21 - -3:00 - BRT + -3:00 Brazil -03/-02 2003 Sep 24 + -3:00 - -03 2011 Oct 16 + -3:00 Brazil -03/-02 2012 Oct 21 + -3:00 - -03 # # Goiás (GO), Distrito Federal (DF), Minas Gerais (MG), # Espírito Santo (ES), Rio de Janeiro (RJ), São Paulo (SP), Paraná (PR), # Santa Catarina (SC), Rio Grande do Sul (RS) Zone America/Sao_Paulo -3:06:28 - LMT 1914 - -3:00 Brazil BR%sT 1963 Oct 23 0:00 - -3:00 1:00 BRST 1964 - -3:00 Brazil BR%sT + -3:00 Brazil -03/-02 1963 Oct 23 0:00 + -3:00 1:00 -02 1964 + -3:00 Brazil -03/-02 # # Mato Grosso do Sul (MS) Zone America/Campo_Grande -3:38:28 - LMT 1914 - -4:00 Brazil AM%sT + -4:00 Brazil -04/-03 # # Mato Grosso (MT) Zone America/Cuiaba -3:44:20 - LMT 1914 - -4:00 Brazil AM%sT 2003 Sep 24 - -4:00 - AMT 2004 Oct 1 - -4:00 Brazil AM%sT + -4:00 Brazil -04/-03 2003 Sep 24 + -4:00 - -04 2004 Oct 1 + -4:00 Brazil -04/-03 # # Rondônia (RO) Zone America/Porto_Velho -4:15:36 - LMT 1914 - -4:00 Brazil AM%sT 1988 Sep 12 - -4:00 - AMT + -4:00 Brazil -04/-03 1988 Sep 12 + -4:00 - -04 # # Roraima (RR) Zone America/Boa_Vista -4:02:40 - LMT 1914 - -4:00 Brazil AM%sT 1988 Sep 12 - -4:00 - AMT 1999 Sep 30 - -4:00 Brazil AM%sT 2000 Oct 15 - -4:00 - AMT + -4:00 Brazil -04/-03 1988 Sep 12 + -4:00 - -04 1999 Sep 30 + -4:00 Brazil -04/-03 2000 Oct 15 + -4:00 - -04 # # east Amazonas (AM): Boca do Acre, Jutaí, Manaus, Floriano Peixoto # The great circle line from Tabatinga to Porto Acre divides # east from west Amazonas. Zone America/Manaus -4:00:04 - LMT 1914 - -4:00 Brazil AM%sT 1988 Sep 12 - -4:00 - AMT 1993 Sep 28 - -4:00 Brazil AM%sT 1994 Sep 22 - -4:00 - AMT + -4:00 Brazil -04/-03 1988 Sep 12 + -4:00 - -04 1993 Sep 28 + -4:00 Brazil -04/-03 1994 Sep 22 + -4:00 - -04 # # west Amazonas (AM): Atalaia do Norte, Boca do Maoco, Benjamin Constant, # Eirunepé, Envira, Ipixuna Zone America/Eirunepe -4:39:28 - LMT 1914 - -5:00 Brazil AC%sT 1988 Sep 12 - -5:00 - ACT 1993 Sep 28 - -5:00 Brazil AC%sT 1994 Sep 22 - -5:00 - ACT 2008 Jun 24 0:00 - -4:00 - AMT 2013 Nov 10 - -5:00 - ACT + -5:00 Brazil -05/-04 1988 Sep 12 + -5:00 - -05 1993 Sep 28 + -5:00 Brazil -05/-04 1994 Sep 22 + -5:00 - -05 2008 Jun 24 0:00 + -4:00 - -04 2013 Nov 10 + -5:00 - -05 # # Acre (AC) Zone America/Rio_Branco -4:31:12 - LMT 1914 - -5:00 Brazil AC%sT 1988 Sep 12 - -5:00 - ACT 2008 Jun 24 0:00 - -4:00 - AMT 2013 Nov 10 - -5:00 - ACT + -5:00 Brazil -05/-04 1988 Sep 12 + -5:00 - -05 2008 Jun 24 0:00 + -4:00 - -04 2013 Nov 10 + -5:00 - -05 # Chile @@ -1104,18 +1076,18 @@ Zone America/Rio_Branco -4:31:12 - LMT 1914 # the following source, cited by Oscar van Vlijmen (2006-10-08): # [1] Chile Law # http://www.webexhibits.org/daylightsaving/chile.html -# This contains a copy of a this official table: +# This contains a copy of this official table: # Cambios en la hora oficial de Chile desde 1900 (retrieved 2008-03-30) -# http://web.archive.org/web/20080330200901/http://www.horaoficial.cl/cambio.htm +# https://web.archive.org/web/20080330200901/http://www.horaoficial.cl/cambio.htm # [1] needs several corrections, though. # # The first set of corrections is from: # [2] History of the Official Time of Chile # http://www.horaoficial.cl/ing/horaof_ing.html (retrieved 2012-03-06). See: -# http://web.archive.org/web/20120306042032/http://www.horaoficial.cl/ing/horaof_ing.html +# https://web.archive.org/web/20120306042032/http://www.horaoficial.cl/ing/horaof_ing.html # This is an English translation of: # Historia de la hora oficial de Chile (retrieved 2012-10-24). See: -# http://web.archive.org/web/20121024234627/http://www.horaoficial.cl/horaof.htm +# https://web.archive.org/web/20121024234627/http://www.horaoficial.cl/horaof.htm # A fancier Spanish version (requiring mouse-clicking) is at: # http://www.horaoficial.cl/historia_hora.html # Conflicts between [1] and [2] were resolved as follows: @@ -1235,6 +1207,18 @@ Zone America/Rio_Branco -4:31:12 - LMT 1914 # to mean 24:00 mainland time, not 24:00 local time, so that Easter # Island is always two hours behind the mainland. +# From Juan Correa (2016-12-04): +# Magallanes region ... will keep DST (UTC -3) all year round.... +# http://www.soychile.cl/Santiago/Sociedad/2016/12/04/433428/Bachelet-firmo-el-decreto-para-establecer-un-horario-unico-para-la-Region-de-Magallanes.aspx +# +# From Deborah Goldsmith (2017-01-19): +# http://www.diariooficial.interior.gob.cl/publicaciones/2017/01/17/41660/01/1169626.pdf +# From Paul Eggert (2017-01-19): +# The above says the Magallanes change expires 2019-05-11 at 24:00, +# so in theory, they will revert to -04/-03 after that, which means +# they will switch from -03 to -04 one hour after Santiago does that day. +# For now, assume that they will not revert. + # Rule NAME FROM TO TYPE IN ON AT SAVE LETTER/S Rule Chile 1927 1931 - Sep 1 0:00 1:00 S Rule Chile 1928 1932 - Apr 1 0:00 0 - @@ -1275,22 +1259,35 @@ Rule Chile 2016 max - Aug Sun>=9 4:00u 1:00 S # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone America/Santiago -4:42:46 - LMT 1890 -4:42:46 - SMT 1910 Jan 10 # Santiago Mean Time - -5:00 - CLT 1916 Jul 1 # Chile Time + -5:00 - -05 1916 Jul 1 + -4:42:46 - SMT 1918 Sep 10 + -4:00 - -04 1919 Jul 1 + -4:42:46 - SMT 1927 Sep 1 + -5:00 Chile -05/-04 1932 Sep 1 + -4:00 - -04 1942 Jun 1 + -5:00 - -05 1942 Aug 1 + -4:00 - -04 1946 Jul 15 + -4:00 1:00 -03 1946 Sep 1 # central Chile + -4:00 - -04 1947 Apr 1 + -5:00 - -05 1947 May 21 23:00 + -4:00 Chile -04/-03 +Zone America/Punta_Arenas -4:43:40 - LMT 1890 + -4:42:46 - SMT 1910 Jan 10 + -5:00 - -05 1916 Jul 1 -4:42:46 - SMT 1918 Sep 10 - -4:00 - CLT 1919 Jul 1 + -4:00 - -04 1919 Jul 1 -4:42:46 - SMT 1927 Sep 1 - -5:00 Chile CL%sT 1932 Sep 1 - -4:00 - CLT 1942 Jun 1 - -5:00 - CLT 1942 Aug 1 - -4:00 - CLT 1946 Jul 15 - -4:00 1:00 CLST 1946 Sep 1 # central Chile - -4:00 - CLT 1947 Apr 1 - -5:00 - CLT 1947 May 21 23:00 - -4:00 Chile CL%sT + -5:00 Chile -05/-04 1932 Sep 1 + -4:00 - -04 1942 Jun 1 + -5:00 - -05 1942 Aug 1 + -4:00 - -04 1947 Apr 1 + -5:00 - -05 1947 May 21 23:00 + -4:00 Chile -04/-03 2016 Dec 4 + -3:00 - -03 Zone Pacific/Easter -7:17:28 - LMT 1890 -7:17:28 - EMT 1932 Sep # Easter Mean Time - -7:00 Chile EAS%sT 1982 Mar 14 3:00u # Easter Time - -6:00 Chile EAS%sT + -7:00 Chile -07/-06 1982 Mar 14 3:00u # Easter Time + -6:00 Chile -06/-05 # # Salas y Gómez Island is uninhabited. # Other Chilean locations, including Juan Fernández Is, Desventuradas Is, @@ -1310,9 +1307,10 @@ Zone Pacific/Easter -7:17:28 - LMT 1890 # # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone Antarctica/Palmer 0 - -00 1965 - -4:00 Arg AR%sT 1969 Oct 5 - -3:00 Arg AR%sT 1982 May - -4:00 Chile CL%sT + -4:00 Arg -04/-03 1969 Oct 5 + -3:00 Arg -03/-02 1982 May + -4:00 Chile -04/-03 2016 Dec 4 + -3:00 - -03 # Colombia @@ -1325,7 +1323,7 @@ Rule CO 1993 only - Apr 4 0:00 0 - # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone America/Bogota -4:56:16 - LMT 1884 Mar 13 -4:56:16 - BMT 1914 Nov 23 # Bogotá Mean Time - -5:00 CO CO%sT # Colombia Time + -5:00 CO -05/-04 # Malpelo, Providencia, San Andres # no information; probably like America/Bogota @@ -1349,7 +1347,7 @@ Zone America/Bogota -4:56:16 - LMT 1884 Mar 13 # # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone America/Curacao -4:35:47 - LMT 1912 Feb 12 # Willemstad - -4:30 - ANT 1965 # Netherlands Antilles Time + -4:30 - -0430 1965 -4:00 - AST # From Arthur David Olson (2011-06-15): @@ -1364,19 +1362,32 @@ Link America/Curacao America/Kralendijk # Caribbean Netherlands # # Milne says the Central and South American Telegraph Company used -5:24:15. # -# From Paul Eggert (2007-03-04): -# Apparently Ecuador had a failed experiment with DST in 1992. -# (2007-02-27) and -# (2006-11-06) both -# talk about "hora Sixto". Leave this alone for now, as we have no data. +# From Alois Treindl (2016-12-15): +# https://www.elcomercio.com/actualidad/hora-sixto-1993.html +# ... Whether the law applied also to Galápagos, I do not know. +# From Paul Eggert (2016-12-15): +# https://www.elcomercio.com/afull/modificacion-husohorario-ecuador-presidentes-decreto.html +# This says President Sixto Durán Ballén signed decree No. 285, which +# established DST from 1992-11-28 to 1993-02-05; it does not give transition +# times. The people called it "hora de Sixto" ("Sixto hour"). The change did +# not go over well; a popular song "Qué hora es" by Jaime Guevara had lyrics +# that included "Amanecía en mitad de la noche, los guaguas iban a clase sin +# sol" ("It was dawning in the middle of the night, the buses went to class +# without sun"). Although Ballén's campaign slogan was "Ni un paso atrás" +# (Not one step back), the clocks went back in 1993 and the experiment was not +# repeated. For now, assume transitions were at 00:00 local time country-wide. +# +# Rule NAME FROM TO TYPE IN ON AT SAVE LETTER/S +Rule Ecuador 1992 only - Nov 28 0:00 1:00 S +Rule Ecuador 1993 only - Feb 5 0:00 0 - # # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone America/Guayaquil -5:19:20 - LMT 1890 -5:14:00 - QMT 1931 # Quito Mean Time - -5:00 - ECT # Ecuador Time + -5:00 Ecuador -05/-04 Zone Pacific/Galapagos -5:58:24 - LMT 1931 # Puerto Baquerizo Moreno - -5:00 - ECT 1986 - -6:00 - GALT # Galápagos Time + -5:00 - -05 1986 + -6:00 Ecuador -06/-05 # Falklands @@ -1476,25 +1487,24 @@ Rule Falk 2001 2010 - Sep Sun>=1 2:00 1:00 S # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone Atlantic/Stanley -3:51:24 - LMT 1890 -3:51:24 - SMT 1912 Mar 12 # Stanley Mean Time - -4:00 Falk FK%sT 1983 May # Falkland Is Time - -3:00 Falk FK%sT 1985 Sep 15 - -4:00 Falk FK%sT 2010 Sep 5 2:00 - -3:00 - FKST + -4:00 Falk -04/-03 1983 May + -3:00 Falk -03/-02 1985 Sep 15 + -4:00 Falk -04/-03 2010 Sep 5 2:00 + -3:00 - -03 # French Guiana # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone America/Cayenne -3:29:20 - LMT 1911 Jul - -4:00 - GFT 1967 Oct # French Guiana Time - -3:00 - GFT + -4:00 - -04 1967 Oct + -3:00 - -03 # Guyana # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone America/Guyana -3:52:40 - LMT 1915 Mar # Georgetown - -3:45 - GBGT 1966 May 26 # Br Guiana Time - -3:45 - GYT 1975 Jul 31 # Guyana Time - -3:00 - GYT 1991 + -3:45 - -0345 1975 Jul 31 + -3:00 - -03 1991 # IATA SSIM (1996-06) says -4:00. Assume a 1991 switch. - -4:00 - GYT + -4:00 - -04 # Paraguay # @@ -1586,9 +1596,9 @@ Rule Para 2013 max - Mar Sun>=22 0:00 0 - # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone America/Asuncion -3:50:40 - LMT 1890 -3:50:40 - AMT 1931 Oct 10 # Asunción Mean Time - -4:00 - PYT 1972 Oct # Paraguay Time - -3:00 - PYT 1974 Apr - -4:00 Para PY%sT + -4:00 - -04 1972 Oct + -3:00 - -03 1974 Apr + -4:00 Para -04/-03 # Peru # @@ -1615,12 +1625,12 @@ Rule Peru 1994 only - Apr 1 0:00 0 - # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone America/Lima -5:08:12 - LMT 1890 -5:08:36 - LMT 1908 Jul 28 # Lima Mean Time? - -5:00 Peru PE%sT # Peru Time + -5:00 Peru -05/-04 # South Georgia # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone Atlantic/South_Georgia -2:26:08 - LMT 1890 # Grytviken - -2:00 - GST # South Georgia Time + -2:00 - -02 # South Sandwich Is # uninhabited; scientific personnel have wintered @@ -1630,9 +1640,8 @@ Zone Atlantic/South_Georgia -2:26:08 - LMT 1890 # Grytviken Zone America/Paramaribo -3:40:40 - LMT 1911 -3:40:52 - PMT 1935 # Paramaribo Mean Time -3:40:36 - PMT 1945 Oct # The capital moved? - -3:30 - NEGT 1975 Nov 20 # Dutch Guiana Time - -3:30 - SRT 1984 Oct # Suriname Time - -3:00 - SRT + -3:30 - -0330 1984 Oct + -3:00 - -03 # Trinidad and Tobago # Zone NAME GMTOFF RULES FORMAT [UNTIL] @@ -1735,11 +1744,16 @@ Rule Uruguay 2006 only - Mar 12 2:00 0 - # [dated 2015-06-29; repeals Decree 311/006 dated 2006-09-04] Rule Uruguay 2006 2014 - Oct Sun>=1 2:00 1:00 S Rule Uruguay 2007 2015 - Mar Sun>=8 2:00 0 - -# Zone NAME GMTOFF RULES FORMAT [UNTIL] + +# This Zone can be simplified once we assume zic %z. Zone America/Montevideo -3:44:44 - LMT 1898 Jun 28 -3:44:44 - MMT 1920 May 1 # Montevideo MT - -3:30 Uruguay UY%sT 1942 Dec 14 # Uruguay Time - -3:00 Uruguay UY%sT + -3:30 Uruguay -0330/-03 1942 Dec 14 + -3:00 Uruguay -03/-02 1968 + -3:00 Uruguay -03/-0230 1971 + -3:00 Uruguay -03/-02 1974 + -3:00 Uruguay -03/-0230 1974 Dec 22 + -3:00 Uruguay -03/-02 # Venezuela # @@ -1764,7 +1778,7 @@ Zone America/Montevideo -3:44:44 - LMT 1898 Jun 28 # hours of presidential broadcasts, hours of lines,' quipped comedian # Jean Mary Curró ...". See: Cawthorne A, Kai D. Venezuela scraps # half-hour time difference set by Chavez. Reuters 2016-04-15 14:50 -0400 -# http://www.reuters.com/article/us-venezuela-timezone-idUSKCN0XC2BE +# https://www.reuters.com/article/us-venezuela-timezone-idUSKCN0XC2BE # # From Matt Johnson (2016-04-20): # ... published in the official Gazette [2016-04-18], here: @@ -1773,7 +1787,7 @@ Zone America/Montevideo -3:44:44 - LMT 1898 Jun 28 # Zone NAME GMTOFF RULES FORMAT [UNTIL] Zone America/Caracas -4:27:44 - LMT 1890 -4:27:40 - CMT 1912 Feb 12 # Caracas Mean Time? - -4:30 - VET 1965 Jan 1 0:00 # Venezuela T. - -4:00 - VET 2007 Dec 9 3:00 - -4:30 - VET 2016 May 1 2:30 - -4:00 - VET + -4:30 - -0430 1965 Jan 1 0:00 + -4:00 - -04 2007 Dec 9 3:00 + -4:30 - -0430 2016 May 1 2:30 + -4:00 - -04 diff --git a/db/strftime.c b/db/strftime.c index 984ead5..6da3fb9 100644 --- a/db/strftime.c +++ b/db/strftime.c @@ -1,4 +1,4 @@ -/* Convert a broken-down time stamp to a string. */ +/* Convert a broken-down timestamp to a string. */ /* Copyright 1989 The Regents of the University of California. All rights reserved. @@ -35,9 +35,13 @@ #include "private.h" -#include "tzfile.h" -#include "fcntl.h" -#include "locale.h" +#include +#include +#include + +#ifndef DEPRECATE_TWO_DIGIT_YEARS +# define DEPRECATE_TWO_DIGIT_YEARS false +#endif struct lc_time_T { const char * mon[MONSPERYEAR]; @@ -74,7 +78,7 @@ static const struct lc_time_T C_time_locale = { /* ** x_fmt - ** C99 requires this format. + ** C99 and later require this format. ** Using just numbers (as here) makes Quakers happier; ** it's also compatible with SVR4. */ @@ -82,7 +86,7 @@ static const struct lc_time_T C_time_locale = { /* ** c_fmt - ** C99 requires this format. + ** C99 and later require this format. ** Previously this code used "%D %X", but we now conform to C99. ** Note that ** "%a %b %d %H:%M:%S %Y" @@ -100,25 +104,18 @@ static const struct lc_time_T C_time_locale = { "%a %b %e %H:%M:%S %Z %Y" }; +enum warn { IN_NONE, IN_SOME, IN_THIS, IN_ALL }; + static char * _add(const char *, char *, const char *); static char * _conv(int, const char *, char *, const char *); static char * _fmt(const char *, const struct tm *, char *, const char *, - int *); + enum warn *); static char * _yconv(int, int, bool, bool, char *, char const *); -#if !HAVE_POSIX_DECLS -extern char * tzname[]; -#endif - #ifndef YEAR_2000_NAME #define YEAR_2000_NAME "CHECK_STRFTIME_FORMATS_FOR_TWO_DIGIT_YEARS" #endif /* !defined YEAR_2000_NAME */ -#define IN_NONE 0 -#define IN_SOME 1 -#define IN_THIS 2 -#define IN_ALL 3 - #if HAVE_STRFTIME_L size_t strftime_l(char *s, size_t maxsize, char const *format, struct tm const *t, @@ -133,13 +130,12 @@ size_t strftime(char *s, size_t maxsize, const char *format, const struct tm *t) { char * p; - int warn; + enum warn warn = IN_NONE; tzset(); - warn = IN_NONE; p = _fmt(format, t, s, s + maxsize, &warn); -#ifndef NO_RUN_TIME_WARNINGS_ABOUT_YEAR_2000_PROBLEMS_THANK_YOU - if (warn != IN_NONE && getenv(YEAR_2000_NAME) != NULL) { + if (DEPRECATE_TWO_DIGIT_YEARS + && warn != IN_NONE && getenv(YEAR_2000_NAME)) { fprintf(stderr, "\n"); fprintf(stderr, "strftime format \"%s\" ", format); fprintf(stderr, "yields only two digits of years in "); @@ -150,7 +146,6 @@ strftime(char *s, size_t maxsize, const char *format, const struct tm *t) else fprintf(stderr, "all locales"); fprintf(stderr, "\n"); } -#endif /* !defined NO_RUN_TIME_WARNINGS_ABOUT_YEAR_2000_PROBLEMS_THANK_YOU */ if (p == s + maxsize) return 0; *p = '\0'; @@ -159,7 +154,7 @@ strftime(char *s, size_t maxsize, const char *format, const struct tm *t) static char * _fmt(const char *format, const struct tm *t, char *pt, - const char *ptlim, int *warnp) + const char *ptlim, enum warn *warnp) { for ( ; *format; ++format) { if (*format == '%') { @@ -206,7 +201,7 @@ label: continue; case 'c': { - int warn2 = IN_SOME; + enum warn warn2 = IN_SOME; pt = _fmt(Locale->c_fmt, t, pt, ptlim, &warn2); if (warn2 == IN_ALL) @@ -224,7 +219,7 @@ label: case 'E': case 'O': /* - ** C99 locale modifiers. + ** Locale modifiers of C99 and later. ** The sequences ** %Ec %EC %Ex %EX %Ey %EY ** %Od %oe %OH %OI %Om %OM @@ -357,7 +352,7 @@ label: ** (01-53)." ** (ado, 1993-05-24) ** -** From by Markus Kuhn: +** From by Markus Kuhn: ** "Week 01 of a year is per definition the first week which has the ** Thursday in this year, which is equivalent to the week which contains ** the fourth day of January. In other words, the first week of a new year @@ -461,7 +456,7 @@ label: continue; case 'x': { - int warn2 = IN_SOME; + enum warn warn2 = IN_SOME; pt = _fmt(Locale->x_fmt, t, pt, ptlim, &warn2); if (warn2 == IN_ALL) @@ -484,28 +479,29 @@ label: case 'Z': #ifdef TM_ZONE pt = _add(t->TM_ZONE, pt, ptlim); -#else +#elif HAVE_TZNAME if (t->tm_isdst >= 0) pt = _add(tzname[t->tm_isdst != 0], pt, ptlim); #endif /* - ** C99 says that %Z must be replaced by the - ** empty string if the time zone is not - ** determinable. + ** C99 and later say that %Z must be + ** replaced by the empty string if the + ** time zone is not determinable. */ continue; case 'z': -#if defined TM_GMTOFF || defined USG_COMPAT || defined ALTZONE +#if defined TM_GMTOFF || USG_COMPAT || defined ALTZONE { long diff; char const * sign; + bool negative; # ifdef TM_GMTOFF diff = t->TM_GMTOFF; # else /* - ** C99 says that the UT offset must + ** C99 and later say that the UT offset must ** be computed by looking only at ** tm_isdst. This requirement is ** incorrect, since it means the code @@ -513,20 +509,20 @@ label: ** altzone and timezone), and the ** magic might not have the correct ** offset. Doing things correctly is - ** tricky and requires disobeying C99; + ** tricky and requires disobeying the standard; ** see GNU C strftime for details. ** For now, punt and conform to the ** standard, even though it's incorrect. ** - ** C99 says that %z must be replaced by the - ** empty string if the time zone is not + ** C99 and later say that %z must be replaced by + ** the empty string if the time zone is not ** determinable, so output nothing if the ** appropriate variables are not available. */ if (t->tm_isdst < 0) continue; if (t->tm_isdst == 0) -# ifdef USG_COMPAT +# if USG_COMPAT diff = -timezone; # else continue; @@ -538,7 +534,19 @@ label: continue; # endif # endif - if (diff < 0) { + negative = diff < 0; + if (diff == 0) { +#ifdef TM_ZONE + negative = t->TM_ZONE[0] == '-'; +#else + negative = t->tm_isdst < 0; +# if HAVE_TZNAME + if (tzname[t->tm_isdst != 0][0] == '-') + negative = true; +# endif +#endif + } + if (negative) { sign = "-"; diff = -diff; } else sign = "+"; diff --git a/db/theory.html b/db/theory.html new file mode 100644 index 0000000..965135d --- /dev/null +++ b/db/theory.html @@ -0,0 +1,1034 @@ + + + + Theory and pragmatics of the tz code and data + + + + + + +

Theory and pragmatics of the tz code and data

+

Outline

+ + + +
+

Scope of the tz database

+

+The tz database attempts to record the history and predicted future of +all computer-based clocks that track civil time. To represent this +data, the world is partitioned into regions whose clocks all agree +about timestamps that occur after the somewhat-arbitrary cutoff point +of the POSIX Epoch (1970-01-01 00:00:00 UTC). For each such region, +the database records all known clock transitions, and labels the region +with a notable location. Although 1970 is a somewhat-arbitrary +cutoff, there are significant challenges to moving the cutoff earlier +even by a decade or two, due to the wide variety of local practices +before computer timekeeping became prevalent. +

+ +

+Clock transitions before 1970 are recorded for each such location, +because most systems support timestamps before 1970 and could +misbehave if data entries were omitted for pre-1970 transitions. +However, the database is not designed for and does not suffice for +applications requiring accurate handling of all past times everywhere, +as it would take far too much effort and guesswork to record all +details of pre-1970 civil timekeeping. +

+ +

+As described below, reference source code for using the tz database is +also available. The tz code is upwards compatible with POSIX, an +international standard for UNIX-like systems. As of this writing, the +current edition of POSIX is: + + The Open Group Base Specifications Issue 7, + IEEE Std 1003.1-2008, 2016 Edition. +

+
+ + + +
+

Names of time zone rules

+

+Each of the database's time zone rules has a unique name. +Inexperienced users are not expected to select these names unaided. +Distributors should provide documentation and/or a simple selection +interface that explains the names; for one example, see the 'tzselect' +program in the tz code. The +Unicode Common Locale Data +Repository contains data that may be useful for other +selection interfaces. +

+ +

+The time zone rule naming conventions attempt to strike a balance +among the following goals: +

+
    +
  • + Uniquely identify every region where clocks have agreed since 1970. + This is essential for the intended use: static clocks keeping local + civil time. +
  • +
  • + Indicate to experts where that region is. +
  • +
  • + Be robust in the presence of political changes. For example, names + of countries are ordinarily not used, to avoid incompatibilities + when countries change their name (e.g. Zaire→Congo) or when + locations change countries (e.g. Hong Kong from UK colony to + China). +
  • +
  • + Be portable to a wide variety of implementations. +
  • +
  • + Use a consistent naming conventions over the entire world. +
  • +
+

+Names normally have the +form AREA/LOCATION, +where AREA is the name of a continent or ocean, +and LOCATION is the name of a specific +location within that region. North and South America share the same +area, 'America'. Typical names are +'Africa/Cairo', 'America/New_York', and +'Pacific/Honolulu'. +

+ +

+Here are the general rules used for choosing location names, +in decreasing order of importance: +

+
    +
  • + Use only valid POSIX file name components (i.e., the parts of + names other than '/'). Do not use the file name + components '.' and '..'. + Within a file name component, + use only ASCII letters, '.', + '-' and '_'. Do not use + digits, as that might create an ambiguity with POSIX + TZ strings. A file name component must not exceed 14 + characters or start with '-'. E.g., + prefer 'Brunei' to + 'Bandar_Seri_Begawan'. Exceptions: see + the discussion + of legacy names below. +
  • +
  • + A name must not be empty, or contain '//', or + start or end with '/'. +
  • +
  • + Do not use names that differ only in case. Although the reference + implementation is case-sensitive, some other implementations + are not, and they would mishandle names differing only in case. +
  • +
  • + If one name A is an initial prefix of another + name AB (ignoring case), then B + must not start with '/', as a + regular file cannot have + the same name as a directory in POSIX. For example, + 'America/New_York' precludes + 'America/New_York/Bronx'. +
  • +
  • + Uninhabited regions like the North Pole and Bouvet Island + do not need locations, since local time is not defined there. +
  • +
  • + There should typically be at least one name for each ISO 3166-1 + officially assigned two-letter code for an inhabited country + or territory. +
  • +
  • + If all the clocks in a region have agreed since 1970, + don't bother to include more than one location + even if subregions' clocks disagreed before 1970. + Otherwise these tables would become annoyingly large. +
  • +
  • + If a name is ambiguous, use a less ambiguous alternative; + e.g. many cities are named San José and Georgetown, so + prefer 'Costa_Rica' to 'San_Jose' and 'Guyana' to 'Georgetown'. +
  • +
  • + Keep locations compact. Use cities or small islands, not countries + or regions, so that any future time zone changes do not split + locations into different time zones. E.g. prefer + 'Paris' to 'France', since + France has had multiple time zones. +
  • +
  • + Use mainstream English spelling, e.g. prefer + 'Rome' to 'Roma', and prefer + 'Athens' to the Greek + 'Αθήνα' or the Romanized + 'Athína'. + The POSIX file name restrictions encourage this rule. +
  • +
  • + Use the most populous among locations in a zone, + e.g. prefer 'Shanghai' to + 'Beijing'. Among locations with + similar populations, pick the best-known location, + e.g. prefer 'Rome' to 'Milan'. +
  • +
  • + Use the singular form, e.g. prefer 'Canary' to 'Canaries'. +
  • +
  • + Omit common suffixes like '_Islands' and + '_City', unless that would lead to + ambiguity. E.g. prefer 'Cayman' to + 'Cayman_Islands' and + 'Guatemala' to + 'Guatemala_City', but prefer + 'Mexico_City' to 'Mexico' + because the country + of Mexico has several time zones. +
  • +
  • + Use '_' to represent a space. +
  • +
  • + Omit '.' from abbreviations in names, e.g. prefer + 'St_Helena' to 'St._Helena'. +
  • +
  • + Do not change established names if they only marginally + violate the above rules. For example, don't change + the existing name 'Rome' to + 'Milan' merely because + Milan's population has grown to be somewhat greater + than Rome's. +
  • +
  • + If a name is changed, put its old spelling in the + 'backward' file. + This means old spellings will continue to work. +
  • +
+ +

+The file 'zone1970.tab' lists geographical locations used +to name time +zone rules. It is intended to be an exhaustive list of names for +geographic regions as described above; this is a subset of the names +in the data. Although a 'zone1970.tab' location's longitude +corresponds to its LMT offset with one hour for every 15 degrees east +longitude, this relationship is not exact. +

+ +

+Older versions of this package used a different naming scheme, +and these older names are still supported. +See the file 'backward' for most of these older names +(e.g., 'US/Eastern' instead of 'America/New_York'). +The other old-fashioned names still supported are +'WET', 'CET', 'MET', and 'EET' (see the file 'europe'). +

+ +

+Older versions of this package defined legacy names that are +incompatible with the first rule of location names, but which are +still supported. These legacy names are mostly defined in the file +'etcetera'. Also, the file 'backward' defines the legacy names +'GMT0', 'GMT-0' and 'GMT+0', and the file 'northamerica' defines the +legacy names 'EST5EDT', 'CST6CDT', 'MST7MDT', and 'PST8PDT'. +

+ +

+Excluding 'backward' should not affect the other data. If +'backward' is excluded, excluding 'etcetera' should not affect the +remaining data. +

+ + +
+
+

Time zone abbreviations

+

+When this package is installed, it generates time zone abbreviations +like 'EST' to be compatible with human tradition and POSIX. +Here are the general rules used for choosing time zone abbreviations, +in decreasing order of importance: +

    +
  • + Use three or more characters that are ASCII alphanumerics or + '+' or '-'. + Previous editions of this database also used characters like + ' ' and '?', but these + characters have a special meaning to + the shell and cause commands like + 'set `date`' + to have unexpected effects. + Previous editions of this rule required upper-case letters, + but the Congressman who introduced Chamorro Standard Time + preferred "ChST", so lower-case letters are now allowed. + Also, POSIX from 2001 on relaxed the rule to allow + '-', '+', + and alphanumeric characters from the portable character set + in the current locale. In practice ASCII alphanumerics and + '+' and '-' are safe in all locales. + + In other words, in the C locale the POSIX extended regular + expression [-+[:alnum:]]{3,} should match + the abbreviation. + This guarantees that all abbreviations could have been + specified by a POSIX TZ string. +
  • +
  • + Use abbreviations that are in common use among English-speakers, + e.g. 'EST' for Eastern Standard Time in North America. + We assume that applications translate them to other languages + as part of the normal localization process; for example, + a French application might translate 'EST' to 'HNE'. +
  • +
  • + For zones whose times are taken from a city's longitude, use the + traditional xMT notation, e.g. 'PMT' for + Paris Mean Time. + The only name like this in current use is 'GMT'. +
  • +
  • + Use 'LMT' for local mean time of locations before the introduction + of standard time; see "Scope of the + tz database". +
  • +
  • + If there is no common English abbreviation, use numeric offsets like + -05 and +0830 that are + generated by zic's %z notation. +
  • +
  • + Use current abbreviations for older timestamps to avoid confusion. + For example, in 1910 a common English abbreviation for UT +01 + in central Europe was 'MEZ' (short for both "Middle European + Zone" and for "Mitteleuropäische Zeit" in German). Nowadays + 'CET' ("Central European Time") is more common in English, and + the database uses 'CET' even for circa-1910 timestamps as this + is less confusing for modern users and avoids the need for + determining when 'CET' supplanted 'MEZ' in common usage. +
  • +
  • + Use a consistent style in a zone's history. For example, if a zone's + history tends to use numeric abbreviations and a particular + entry could go either way, use a numeric abbreviation. +
  • +
+ [The remaining guidelines predate the introduction of %z. + They are problematic as they mean tz data entries invent + notation rather than record it. These guidelines are now + deprecated and the plan is to gradually move to %z for + inhabited locations and to "-00" for uninhabited locations.] +
    +
  • + If there is no common English abbreviation, abbreviate the English + translation of the usual phrase used by native speakers. + If this is not available or is a phrase mentioning the country + (e.g. "Cape Verde Time"), then: +
      +
    • + When a country is identified with a single or principal zone, + append 'T' to the country's ISO code, e.g. 'CVT' for + Cape Verde Time. For summer time append 'ST'; + for double summer time append 'DST'; etc. +
    • +
    • + Otherwise, take the first three letters of an English place + name identifying each zone and append 'T', 'ST', etc. + as before; e.g. 'CHAST' for CHAtham Summer Time. +
    • +
    +
  • +
  • + Use UT (with time zone abbreviation '-00') for + locations while uninhabited. The leading + '-' is a flag that the time + zone is in some sense undefined; this notation is + derived from Internet RFC 3339. +
  • +
+

+Application writers should note that these abbreviations are ambiguous +in practice: e.g. 'CST' has a different meaning in China than +it does in the United States. In new applications, it's often better +to use numeric UT offsets like '-0600' instead of time zone +abbreviations like 'CST'; this avoids the ambiguity. +

+
+ + +
+

Accuracy of the tz database

+

+The tz database is not authoritative, and it surely has errors. +Corrections are welcome and encouraged; see the file CONTRIBUTING. +Users requiring authoritative data should consult national standards +bodies and the references cited in the database's comments. +

+ +

+Errors in the tz database arise from many sources: +

+
    +
  • + The tz database predicts future timestamps, and current predictions + will be incorrect after future governments change the rules. + For example, if today someone schedules a meeting for 13:00 next + October 1, Casablanca time, and tomorrow Morocco changes its + daylight saving rules, software can mess up after the rule change + if it blithely relies on conversions made before the change. +
  • +
  • + The pre-1970 entries in this database cover only a tiny sliver of how + clocks actually behaved; the vast majority of the necessary + information was lost or never recorded. Thousands more zones would + be needed if the tz database's scope were extended to cover even + just the known or guessed history of standard time; for example, + the current single entry for France would need to split into dozens + of entries, perhaps hundreds. And in most of the world even this + approach would be misleading due to widespread disagreement or + indifference about what times should be observed. In her 2015 book + The Global Transformation of Time, 1870-1950, Vanessa Ogle writes + "Outside of Europe and North America there was no system of time + zones at all, often not even a stable landscape of mean times, + prior to the middle decades of the twentieth century". See: + Timothy Shenk, Booked: + A Global History of Time. Dissent 2015-12-17. +
  • +
  • + Most of the pre-1970 data entries come from unreliable sources, often + astrology books that lack citations and whose compilers evidently + invented entries when the true facts were unknown, without + reporting which entries were known and which were invented. + These books often contradict each other or give implausible entries, + and on the rare occasions when they are checked they are + typically found to be incorrect. +
  • +
  • + For the UK the tz database relies on years of first-class work done by + Joseph Myers and others; see + "History of + legal time in Britain". + Other countries are not done nearly as well. +
  • +
  • + Sometimes, different people in the same city would maintain clocks + that differed significantly. Railway time was used by railroad + companies (which did not always agree with each other), + church-clock time was used for birth certificates, etc. + Often this was merely common practice, but sometimes it was set by law. + For example, from 1891 to 1911 the UT offset in France was legally + 0:09:21 outside train stations and 0:04:21 inside. +
  • +
  • + Although a named location in the tz database stands for the + containing region, its pre-1970 data entries are often accurate for + only a small subset of that region. For example, Europe/London + stands for the United Kingdom, but its pre-1847 times are valid + only for locations that have London's exact meridian, and its 1847 + transition to GMT is known to be valid only for the L&NW and the + Caledonian railways. +
  • +
  • + The tz database does not record the earliest time for which a zone's + data entries are thereafter valid for every location in the region. + For example, Europe/London is valid for all locations in its + region after GMT was made the standard time, but the date of + standardization (1880-08-02) is not in the tz database, other than + in commentary. For many zones the earliest time of validity is + unknown. +
  • +
  • + The tz database does not record a region's boundaries, and in many + cases the boundaries are not known. For example, the zone + America/Kentucky/Louisville represents a region around + the city of + Louisville, the boundaries of which are unclear. +
  • +
  • + Changes that are modeled as instantaneous transitions in the tz + database were often spread out over hours, days, or even decades. +
  • +
  • + Even if the time is specified by law, locations sometimes + deliberately flout the law. +
  • +
  • + Early timekeeping practices, even assuming perfect clocks, were + often not specified to the accuracy that the tz database requires. +
  • +
  • + Sometimes historical timekeeping was specified more precisely + than what the tz database can handle. For example, from 1909 to + 1937 Netherlands clocks were legally UT +00:19:32.13, but the tz + database cannot represent the fractional second. +
  • +
  • + Even when all the timestamp transitions recorded by the tz database + are correct, the tz rules that generate them may not faithfully + reflect the historical rules. For example, from 1922 until World + War II the UK moved clocks forward the day following the third + Saturday in April unless that was Easter, in which case it moved + clocks forward the previous Sunday. Because the tz database has no + way to specify Easter, these exceptional years are entered as + separate tz Rule lines, even though the legal rules did not change. +
  • +
  • + The tz database models pre-standard time using the proleptic Gregorian + calendar and local mean time (LMT), but many people used other + calendars and other timescales. For example, the Roman Empire used + the Julian calendar, and had 12 varying-length daytime hours with a + non-hour-based system at night. +
  • +
  • + Early clocks were less reliable, and data entries do not represent + clock error. +
  • +
  • + The tz database assumes Universal Time (UT) as an origin, even + though UT is not standardized for older timestamps. In the tz + database commentary, UT denotes a family of time standards that + includes Coordinated Universal Time (UTC) along with other variants + such as UT1 and GMT, with days starting at midnight. Although UT + equals UTC for modern timestamps, UTC was not defined until 1960, + so commentary uses the more-general abbreviation UT for timestamps + that might predate 1960. Since UT, UT1, etc. disagree slightly, + and since pre-1972 UTC seconds varied in length, interpretation of + older timestamps can be problematic when subsecond accuracy is + needed. +
  • +
  • + Civil time was not based on atomic time before 1972, and we don't + know the history of earth's rotation accurately enough to map SI + seconds to historical solar time to more than about one-hour + accuracy. See: Stephenson FR, Morrison LV, Hohenkerk CY. + Measurement + of the Earth's rotation: 720 BC to AD 2015. + Proc Royal Soc A. 2016 Dec 7;472:20160404. + Also see: Espenak F. Uncertainty + in Delta T (ΔT). +
  • +
  • + The relationship between POSIX time (that is, UTC but ignoring leap + seconds) and UTC is not agreed upon after 1972. Although the POSIX + clock officially stops during an inserted leap second, at least one + proposed standard has it jumping back a second instead; and in + practice POSIX clocks more typically either progress glacially during + a leap second, or are slightly slowed while near a leap second. +
  • +
  • + The tz database does not represent how uncertain its information is. + Ideally it would contain information about when data entries are + incomplete or dicey. Partial temporal knowledge is a field of + active research, though, and it's not clear how to apply it here. +
  • +
+

+In short, many, perhaps most, of the tz database's pre-1970 and future +timestamps are either wrong or misleading. Any attempt to pass the +tz database off as the definition of time should be unacceptable to +anybody who cares about the facts. In particular, the tz database's +LMT offsets should not be considered meaningful, and should not prompt +creation of zones merely because two locations differ in LMT or +transitioned to standard time at different dates. +

+
+ + +
+

Time and date functions

+

+The tz code contains time and date functions that are upwards +compatible with those of POSIX. +

+ +

+POSIX has the following properties and limitations. +

+
    +
  • +

    + In POSIX, time display in a process is controlled by the + environment variable TZ. Unfortunately, the POSIX TZ string takes + a form that is hard to describe and is error-prone in practice. + Also, POSIX TZ strings can't deal with other (for example, Israeli) + daylight saving time rules, or situations where more than two + time zone abbreviations are used in an area. +

    +

    + The POSIX TZ string takes the following form: +

    +

    + stdoffset[dst[offset][,date[/time],date[/time]]] +

    +

    + where: +

    +
    std and dst
    + are 3 or more characters specifying the standard + and daylight saving time (DST) zone names. + Starting with POSIX.1-2001, std + and dst may also be + in a quoted form like '<UTC+10>'; this allows + "+" and "-" in the names. +
    +
    offset
    + is of the form + '[±]hh:[mm[:ss]]' + and specifies the offset west of UT. 'hh' + may be a single digit; 0≤hh≤24. + The default DST offset is one hour ahead of standard time. +
    +
    date[/time],date[/time]
    + specifies the beginning and end of DST. If this is absent, + the system supplies its own rules for DST, and these can + differ from year to year; typically US DST rules are used. +
    +
    time
    + takes the form + 'hh:[mm[:ss]]' + and defaults to 02:00. + This is the same format as the offset, except that a + leading '+' or '-' is not allowed. +
    +
    date
    + takes one of the following forms: +
    +
    Jn (1≤n≤365)
    + origin-1 day number not counting February 29 +
    +
    n (0≤n≤365)
    + origin-0 day number counting February 29 if present +
    +
    Mm.n.d (0[Sunday]≤d≤6[Saturday], 1≤n≤5, 1≤m≤12)
    + for the dth day of + week n of month m of the + year, where week 1 is the first week in which + day d appears, and '5' + stands for the last week in which + day d appears + (which may be either the 4th or 5th week). + Typically, this is the only useful form; + the n + and Jn forms are + rarely used. +
    +
    +
    +
    + Here is an example POSIX TZ string for New Zealand after 2007. + It says that standard time (NZST) is 12 hours ahead of UTC, + and that daylight saving time (NZDT) is observed from September's + last Sunday at 02:00 until April's first Sunday at 03:00: + +
    TZ='NZST-12NZDT,M9.5.0,M4.1.0/3'
    + + This POSIX TZ string is hard to remember, and mishandles some + timestamps before 2008. With this package you can use this + instead: + +
    TZ='Pacific/Auckland'
    +
  • +
  • + POSIX does not define the exact meaning of TZ values like + "EST5EDT". + Typically the current US DST rules are used to interpret such values, + but this means that the US DST rules are compiled into each program + that does time conversion. This means that when US time conversion + rules change (as in the United States in 1987), all programs that + do time conversion must be recompiled to ensure proper results. +
  • +
  • + The TZ environment variable is process-global, which makes it hard + to write efficient, thread-safe applications that need access + to multiple time zones. +
  • +
  • + In POSIX, there's no tamper-proof way for a process to learn the + system's best idea of local wall clock. (This is important for + applications that an administrator wants used only at certain + times – + without regard to whether the user has fiddled the TZ environment + variable. While an administrator can "do everything in UTC" to get + around the problem, doing so is inconvenient and precludes handling + daylight saving time shifts - as might be required to limit phone + calls to off-peak hours.) +
  • +
  • + POSIX provides no convenient and efficient way to determine the UT + offset and time zone abbreviation of arbitrary timestamps, + particularly for time zone settings that do not fit into the + POSIX model. +
  • +
  • + POSIX requires that systems ignore leap seconds. +
  • +
  • + The tz code attempts to support all the time_t + implementations allowed by POSIX. The time_t + type represents a nonnegative count of + seconds since 1970-01-01 00:00:00 UTC, ignoring leap seconds. + In practice, time_t is usually a signed 64- or + 32-bit integer; 32-bit signed time_t values stop + working after 2038-01-19 03:14:07 UTC, so + new implementations these days typically use a signed 64-bit integer. + Unsigned 32-bit integers are used on one or two platforms, + and 36-bit and 40-bit integers are also used occasionally. + Although earlier POSIX versions allowed time_t to be a + floating-point type, this was not supported by any practical + systems, and POSIX.1-2013 and the tz code both + require time_t + to be an integer type. +
  • +
+

+These are the extensions that have been made to the POSIX functions: +

+
    +
  • +

    + The TZ environment variable is used in generating the name of a file + from which time zone information is read (or is interpreted a la + POSIX); TZ is no longer constrained to be a three-letter time zone + name followed by a number of hours and an optional three-letter + daylight time zone name. The daylight saving time rules to be used + for a particular time zone are encoded in the time zone file; + the format of the file allows U.S., Australian, and other rules to be + encoded, and allows for situations where more than two time zone + abbreviations are used. +

    +

    + It was recognized that allowing the TZ environment variable to + take on values such as 'America/New_York' might + cause "old" programs + (that expect TZ to have a certain form) to operate incorrectly; + consideration was given to using some other environment variable + (for example, TIMEZONE) to hold the string used to generate the + time zone information file name. In the end, however, it was decided + to continue using TZ: it is widely used for time zone purposes; + separately maintaining both TZ and TIMEZONE seemed a nuisance; + and systems where "new" forms of TZ might cause problems can simply + use TZ values such as "EST5EDT" which can be used both by + "new" programs (a la POSIX) and "old" programs (as zone names and + offsets). +

    +
  • +
  • + The code supports platforms with a UT offset member + in struct tm, + e.g., tm_gmtoff. +
  • +
  • + The code supports platforms with a time zone abbreviation member in + struct tm, e.g., tm_zone. +
  • +
  • + Since the TZ environment variable can now be used to control time + conversion, the daylight + and timezone variables are no longer needed. + (These variables are defined and set by tzset; + however, their values will not be used + by localtime.) +
  • +
  • + Functions tzalloc, tzfree, + localtime_rz, and mktime_z for + more-efficient thread-safe applications that need to use + multiple time zones. The tzalloc + and tzfree functions allocate and free objects of + type timezone_t, and localtime_rz + and mktime_z are like localtime_r + and mktime with an extra + timezone_t argument. The functions were inspired + by NetBSD. +
  • +
  • + A function tzsetwall has been added to arrange + for the system's + best approximation to local wall clock time to be delivered by + subsequent calls to localtime. Source code for portable + applications that "must" run on local wall clock time should call + tzsetwall; if such code is moved to "old" systems that don't + provide tzsetwall, you won't be able to generate an executable program. + (These time zone functions also arrange for local wall clock time to be + used if tzset is called – directly or indirectly – + and there's no TZ + environment variable; portable applications should not, however, rely + on this behavior since it's not the way SVR2 systems behave.) +
  • +
  • + Negative time_t values are supported, on systems + where time_t is signed. +
  • +
  • + These functions can account for leap seconds, thanks to Bradley White. +
  • +
+

+Points of interest to folks with other systems: +

+
    +
  • + Code compatible with this package is already part of many platforms, + including GNU/Linux, Android, the BSDs, Chromium OS, Cygwin, AIX, iOS, + BlackBery 10, macOS, Microsoft Windows, OpenVMS, and Solaris. + On such hosts, the primary use of this package + is to update obsolete time zone rule tables. + To do this, you may need to compile the time zone compiler + 'zic' supplied with this package instead of using + the system 'zic', since the format + of zic's input is occasionally extended, and a + platform may still be shipping an older zic. +
  • +
  • + The UNIX Version 7 timezone function is not + present in this package; + it's impossible to reliably map timezone's arguments (a "minutes west + of GMT" value and a "daylight saving time in effect" flag) to a + time zone abbreviation, and we refuse to guess. + Programs that in the past used the timezone function may now examine + localtime(&clock)->tm_zone + (if TM_ZONE is defined) or + tzname[localtime(&clock)->tm_isdst] + (if HAVE_TZNAME is defined) + to learn the correct time zone abbreviation to use. +
  • +
  • + The 4.2BSD gettimeofday function is not used in + this package. + This formerly let users obtain the current UTC offset and DST flag, + but this functionality was removed in later versions of BSD. +
  • +
  • + In SVR2, time conversion fails for near-minimum or near-maximum + time_t values when doing conversions for places + that don't use UT. + This package takes care to do these conversions correctly. + A comment in the source code tells how to get compatibly wrong + results. +
  • +
+

+The functions that are conditionally compiled +if STD_INSPIRED is defined +should, at this point, be looked on primarily as food for thought. They are +not in any sense "standard compatible" – some are not, in fact, +specified in any standard. They do, however, represent responses of +various authors to +standardization proposals. +

+ +

+Other time conversion proposals, in particular the one developed by folks at +Hewlett Packard, offer a wider selection of functions that provide capabilities +beyond those provided here. The absence of such functions from this package +is not meant to discourage the development, standardization, or use of such +functions. Rather, their absence reflects the decision to make this package +contain valid extensions to POSIX, to ensure its broad acceptability. If +more powerful time conversion functions can be standardized, so much the +better. +

+
+ + +
+

Interface stability

+

+The tz code and data supply the following interfaces: +

+
    +
  • + A set of zone names as per "Names of time zone + rules" above. +
  • +
  • + Library functions described in "Time and date + functions" above. +
  • +
  • + The programs tzselect, zdump, + and zic, documented in their man pages. +
  • +
  • + The format of zic input files, documented in + the zic man page. +
  • +
  • + The format of zic output files, documented in + the tzfile man page. +
  • +
  • + The format of zone table files, documented in zone1970.tab. +
  • +
  • + The format of the country code file, documented in iso3166.tab. +
  • +
  • + The version number of the code and data, as the first line of + the text file 'version' in each release. +
  • +
+

+Interface changes in a release attempt to preserve compatibility with +recent releases. For example, tz data files typically do not rely on +recently-added zic features, so that users can run +older zic versions to process newer data +files. Sources for time zone and daylight +saving time data describes how +releases are tagged and distributed. +

+ +

+Interfaces not listed above are less stable. For example, users +should not rely on particular UT offsets or abbreviations for +timestamps, as data entries are often based on guesswork and these +guesses may be corrected or improved. +

+
+ + +
+

Calendrical issues

+

+Calendrical issues are a bit out of scope for a time zone database, +but they indicate the sort of problems that we would run into if we +extended the time zone database further into the past. An excellent +resource in this area is Nachum Dershowitz and Edward M. Reingold, +Calendrical +Calculations: Third Edition, Cambridge University Press (2008). +Other information and sources are given in the file 'calendars' +in the tz distribution. They sometimes disagree. +

+
+ + +
+

Time and time zones on other planets

+

+Some people's work schedules use Mars time. Jet Propulsion Laboratory +(JPL) coordinators have kept Mars time on and off at least since 1997 +for the Mars Pathfinder mission. Some of their family members have +also adapted to Mars time. Dozens of special Mars watches were built +for JPL workers who kept Mars time during the Mars Exploration +Rovers mission (2004). These timepieces look like normal Seikos and +Citizens but use Mars seconds rather than terrestrial seconds. +

+ +

+A Mars solar day is called a "sol" and has a mean period equal to +about 24 hours 39 minutes 35.244 seconds in terrestrial time. It is +divided into a conventional 24-hour clock, so each Mars second equals +about 1.02749125 terrestrial seconds. +

+ +

+The prime meridian of Mars goes through the center of the crater +Airy-0, named in honor of the British astronomer who built the +Greenwich telescope that defines Earth's prime meridian. Mean solar +time on the Mars prime meridian is called Mars Coordinated Time (MTC). +

+ +

+Each landed mission on Mars has adopted a different reference for +solar time keeping, so there is no real standard for Mars time zones. +For example, the Mars Exploration Rover project (2004) defined two +time zones "Local Solar Time A" and "Local Solar Time B" for its two +missions, each zone designed so that its time equals local true solar +time at approximately the middle of the nominal mission. Such a "time +zone" is not particularly suited for any application other than the +mission itself. +

+ +

+Many calendars have been proposed for Mars, but none have achieved +wide acceptance. Astronomers often use Mars Sol Date (MSD) which is a +sequential count of Mars solar days elapsed since about 1873-12-29 +12:00 GMT. +

+ +

+In our solar system, Mars is the planet with time and calendar most +like Earth's. On other planets, Sun-based time and calendars would +work quite differently. For example, although Mercury's sidereal +rotation period is 58.646 Earth days, Mercury revolves around the Sun +so rapidly that an observer on Mercury's equator would see a sunrise +only every 175.97 Earth days, i.e., a Mercury year is 0.5 of a Mercury +day. Venus is more complicated, partly because its rotation is +slightly retrograde: its year is 1.92 of its days. Gas giants like +Jupiter are trickier still, as their polar and equatorial regions +rotate at different rates, so that the length of a day depends on +latitude. This effect is most pronounced on Neptune, where the day is +about 12 hours at the poles and 18 hours at the equator. +

+ +

+Although the tz database does not support time on other planets, it is +documented here in the hopes that support will be added eventually. +

+ +

+Sources: +

+ +
+ +
+
+This file is in the public domain, so clarified as of 2009-05-17 by +Arthur David Olson. +
+ + diff --git a/db/tz-art.htm b/db/tz-art.htm index f310919..920d6e7 100644 --- a/db/tz-art.htm +++ b/db/tz-art.htm @@ -1,9 +1,7 @@ - - + + - + Time and the Arts @@ -20,8 +18,13 @@ Arizona's daylight-saving enclaves quite well. with Time & Timezones – Computerphile" (2013; 10:12) delves into problems that programmers have with timekeeping.
  • -"About Time" (1962; 53 minutes) is part of the the +All The Time In The World: +Explaining The Mysteries Of Time Zones" (2017; 2:15) +briefly says why France has more time zones than Russia. +
  • +"About Time" (1962; 53 minutes) is part of the Bell Science extravaganza, with Frank Baxter, Richard Deacon, and Les Tremayne. +Its advisor was Richard Feynman, and it was voiced by Mel Blanc. (IMDb entry.)
  • Movies

    @@ -157,14 +160,14 @@ savings days. Lousy farmers." "Tracks", The Good Wife, season 7, episode 12, CBS, 2016-01-17. The applicability of a contract hinges on the -time zone associated with a video time stamp. +time zone associated with a video timestamp.

    Books, plays, and magazines

    • Jules Verne, Around the World in Eighty Days -(Le tour du monde en quatre-vingts jours). +(Le tour du monde en quatre-vingts jours), 1873. Wall-clock time plays a central role in the plot. European readers of the 1870s clearly held the U.S. press in deep contempt; the protagonists cross the U.S. without once @@ -172,7 +175,7 @@ reading a paper. Available versions include an English translation, and -the original French +the original French "with illustrations from the original 1873 French-language edition".
    • @@ -221,7 +224,7 @@ arranged by Russ Long and Karrin Allyson" ADO Rating1 star AMG Rating4 stars Penguin Rating3.5 stars -  +  ArtistKevin Mahogany CDDouble Rainbow Copyright Date1993 @@ -236,7 +239,7 @@ Lewis Nash, drums ADO Rating1.5 stars AMG Rating3 stars Penguin Rating3 stars -  +  ArtistJoe Williams CDHere's to Life Copyright Date1994 @@ -250,7 +253,7 @@ Telarc, "Triple Play" (CD-83461) ADO Ratingblack dot AMG Rating2 stars Penguin Rating3 stars -  +  ArtistCharles Fambrough CDKeeper of the Spirit Copyright Date1995 @@ -283,7 +286,7 @@ Tom Waits' "Purple Avenue" ADO Rating2.5 stars AMG Rating3 stars Penguin Ratingunrated -  +  ArtistMilt Hinton CDOld Man Time Copyright Date1990 @@ -314,7 +317,7 @@ is available. ADO Rating3 stars AMG Rating4.5 stars Penguin Rating3 stars -  +  ArtistAlan Broadbent CDPacific Standard Time Copyright Date1995 @@ -328,7 +331,7 @@ Frank Gibson, Jr., drums ADO Rating1 star AMG Rating4 stars Penguin Rating3.5 stars -  +  ArtistAnthony Braxton/Richard Teitelbaum CDSilence/Time Zones Copyright Date1996 @@ -342,7 +345,7 @@ Leroy Jenkins, violin and miscellaneous instruments; Richard Teitelbaum, modular moog and micromoog synthesizer ADO Ratingblack dot AMG Rating4 stars -  +  ArtistCharles Gayle CDTime Zones Copyright Date2006 @@ -352,7 +355,7 @@ Richard Teitelbaum, modular moog and micromoog synthesizer PersonnelCharles Gayle, piano ADO Rating1 star AMG Rating4.5 stars -  +  ArtistThe Get Up Kids CDEudora Copyright Date2001 @@ -361,7 +364,7 @@ Richard Teitelbaum, modular moog and micromoog synthesizer Total Time65:12 NotesIncludes the song "Central Standard Time." Thanks to Colin Bowern for this information. AMG Rating2.5 stars -  +  ArtistColdplay SongClocks @@ -373,7 +376,19 @@ Richard Teitelbaum, modular moog and micromoog synthesizer Grammy Awards. Co-written and performed by Chris Martin, great-great-grandson of DST inventor William Willett. The song's first line is "Lights go out and I can't be saved". -  +  + +ArtistJaime Guevara +SongQué +hora es +Date1993 +Total Time3:04 +NotesThe song protested "Sixto Hour" in Ecuador +(1992–3). Its lyrics include "Amanecía en mitad de la noche, los +guaguas iban a clase sin sol" ("It was dawning in the middle of the +night, the buses went to class without sun"). +  ArtistIrving Kahal and Harry Richman SongThere Ought to be a Moonlight Saving Time @@ -384,7 +399,7 @@ and many others. The phrase "Moonlight saving time" also appears in the 1995 country song "Not Enough Hours in the Night" written by Aaron Barker, Kim Williams and Rob Harbin and performed by Doug Supernaw. -  +  ArtistThe Microscopic Septet CDLobster Leaps In @@ -396,7 +411,7 @@ Supernaw. AMG Rating3.5 stars ADO Rating2 stars -  +  ArtistBob Dylan CDThe Times They Are a-Changin' @@ -407,7 +422,7 @@ Supernaw. AMG Rating4.5 stars ADO Rating1.5 stars NotesThe title song is also available on "Bob Dylan's Greatest Hits" and "The Essential Bob Dylan." -  +  ArtistLuciana Souza CDTide @@ -420,7 +435,7 @@ Supernaw. NotesIncludes the song "Fire and Wood" with the lyric "The clocks were turned back you remember/Think it's still November." -  +  ArtistKen Nordine CDYou're Getting Better: The Word Jazz Dot Masters Copyright Date2005 @@ -436,14 +451,17 @@ Supernaw.
      • The webcomic xkcd has the strip -"The Sun" (2009-12-09) and the panels -"Backward in Time" (2012-02-14), -"EST" (2012-05-28), -"ISO 8601" (2013-02-27), -"Now" (2014-02-26), and -"Doomsday Clock" (2016-03-14). +"The Sun" (2009-12-09) and the panels +"Backward in Time" (2012-02-14), +"EST" (2012-05-28), +"ISO 8601" (2013-02-27), +"Now" (2014-02-26), +"Doomsday Clock" (2016-03-14), +"Bad Map Projection: Time Zones" +(2017-02-15), and +"Supervillain Plan" (2017-08-30). The related book What If? has an entry -"Leap Seconds" (2012-12-31). +"Leap Seconds" (2012-12-31).
      • Pig kills time in Pearls Before Swine (2016-11-06).
      • -The syndicated comic strip Dilbert featured an -example of -time zone humor on 1998-03-14. +Stonehenge is abandoned in Non Sequitur +(2017-03-12). +
      • +The boss freaks out in Dilbert (1998-03-14).
      • Peppermint Patty: "What if the world comes to an end tonight, Marcie?" @@ -527,6 +548,22 @@ yesterday daylight [saving] time ended. Right now it's basically midnight." (Conan O'Brien on the 2010-11-08 premiere of Conan.)
      • +"The best method, I told folks, was to hang a large clock high on a +barn wall where all the cows could see it. If you have Holsteins, you +will need to use an analog clock." (Jerry Nelson, How +to adjust dairy cows to daylight saving time", Successful Farming, +2017-10-09.) +
      • +
      • +"And now, driving to California, I find that I must enter a password +in order to change the time zone on my laptop clock. Evidently, +someone is out to mess up my schedule and my clock must be secured." +(Garrison Keillor, +"We've +never been here before", 2017-08-22) +
      • +
      • "Well, in my time zone that's all the time I have, but maybe in your time zone I haven't finished yet. So stay tuned!" (Goldie Hawn, Rowan & Martin's Laugh-In No. 65, 1970-03-09) diff --git a/db/tz-how-to.html b/db/tz-how-to.html index a94759e..6007c5e 100644 --- a/db/tz-how-to.html +++ b/db/tz-how-to.html @@ -2,7 +2,10 @@ PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> -How to Read the tz Database + +How to Read the tz Database + +

        How to Read the tz Database Source Files

        @@ -519,7 +522,7 @@ usage, which is not necessarily “correct” by law. For example, the last line in Zone Pacific/Honolulu (shown below) gives “HST” for “Hawaii standard time” even though the -legal +legal name for that time zone is “Hawaii-Aleutian standard time.” This author has read that there are also some places in Australia where popular time zone names differ from the legal ones. @@ -531,7 +534,7 @@ the abbreviations. They are intended to be the values returned through the C’s strftime function in the -“C” locale. +“C” locale.
      • If there is no generally-accepted abbreviation for a time zone, a numeric offset is used instead, e.g., +07 for 7 hours diff --git a/db/tz-link.htm b/db/tz-link.htm index 49fde11..e7a7c8f 100644 --- a/db/tz-link.htm +++ b/db/tz-link.htm @@ -1,22 +1,8 @@ - - - + + + Sources for time zone and daylight saving time data - - - - - - - - - +

        Sources for time zone and daylight saving time data

        @@ -51,24 +37,24 @@ C Library (used in OS, FreeBSD, -NetBSD, -OpenBSD, -Chromium OS, +NetBSD, +OpenBSD, +Chromium OS, Cygwin, DJGPP, MINIX, +MySQL, webOS, -AIX, BlackBerry 10, -iOS, -macOS, +macOS, Microsoft Windows, -OpenOpenVMS, Oracle Database, and Oracle Solaris.

        @@ -105,6 +91,7 @@ Universal Time (UTC). The database also records when daylight saving time was in use, along with some time zone abbreviations such as EST for Eastern Standard Time in the US.

        +

        Downloading the tz database

        The following shell commands download @@ -113,20 +100,22 @@ the latest release's two to a GNU/Linux or similar host.

        mkdir tzdb
         cd tzdb
        -wget --retr-symlinks 'ftp://ftp.iana.org/tz/tz*-latest.tar.gz'
        +wget https://www.iana.org/time-zones/repository/tzcode-latest.tar.gz
        +wget https://www.iana.org/time-zones/repository/tzdata-latest.tar.gz
         gzip -dc tzcode-latest.tar.gz | tar -xf -
         gzip -dc tzdata-latest.tar.gz | tar -xf -
         

        Alternatively, the following shell commands download the same release in a single-tarball format containing extra data useful for regression testing:

        -
        wget ftp://ftp.iana.org/tz/tzdb-latest.tar.lz
        +
        wget https://www.iana.org/time-zones/repository/tzdb-latest.tar.lz
         lzip -dc tzdb-latest.tar.lz | tar -xf -
         
        -

        These commands use convenience links to the latest of the -FTP releases -of the tz database. +

        These commands use convenience links to the latest release +of the tz database hosted by the +Time Zone Database website +of the Internet Assigned Numbers +Authority (IANA). Older releases are in files named tzcodeV.tar.gz, tzdataV.tar.gz, and @@ -138,10 +127,10 @@ then za through zz, then zza through zzz, and so on). Since version 2016h, each release has contained a text file named "version" whose first (and currently only) line is the version. -The releases can also be obtained from the -Time Zone Database website -of the Internet Assigned Numbers -Authority (IANA).

        +The releases are also available in an +FTP directory via a +less-secure protocol .

        Alternatively, a development repository of code and data can be retrieved from GitHub via the shell command:

        @@ -162,19 +151,46 @@ location.

        The tz code and data are by no means authoritative. If you find errors, please -send changes to the time zone -mailing list. You can also tz@iana.org, +the time zone mailing list. You can also subscribe to it and browse the archive of old +href="https://mm.icann.org/pipermail/tz/">archive of old messages.

        If your government plans to change its time zone boundaries or -daylight saving rules, let the mailing list know well in advance. With +daylight saving rules, inform tz@iana.org well in +advance, as this will coordinate updates to many cell phones, +computers, and other devices around the world. With less than a year's notice there is a good chance that some computer-based clocks will operate incorrectly after the change, due to delays in propagating updates to software and data. The shorter -the notice, the more likely clock problems will arise. +the notice, the more likely clock problems will arise; see "On +the Timing of Time Zone Changes" for examples. +

        +

        +Changes to the tz code and data are often +propagated to clients via operating system updates, so +client tz data can often be corrected by +applying these updates. With GNU/Linux and similar systems, if your +maintenance provider has not yet adopted the +latest tz data, you can often short-circuit +the process by tailoring the generic instructions in +the tz README file and installing the latest +data yourself. System-specific instructions for installing the +latest tz data have also been published +for AIX, +ICU, +IBM +and Oracle +Java, Joda-Time, MySQL, +and Noda Time (see below).

        Sources for the tz database are LF, which can be modified by common text editors such as GNU Emacs, gedit, and -vim. One -editor has a package to simplify editing further:

        - +vim. +Specialized source-file editing can be done via the +Sublime +zoneinfo package for Sublime Text and the VSCode +zoneinfo extension for Visual +Studio Code. +

        For further information about updates, please see Procedures for Maintaining the Time Zone Database (Internet RFC 6557).

        +title="Request For Comments">RFC 6557). More detail can be +found in Theory and pragmatics of the tz code and data. +

        Commentary on the tz database

        • The article @@ -207,11 +226,6 @@ an encyclopedic summary.
        • tz Database Source Files explains the tz database format.
        • On -the Timing of Time Zone Changes gives examples of problems caused -by inadequate notice by governments of time zone and daylight saving -rule changes.
        • -
        • A literary appreciation of the Olson/Zoneinfo/tz database comments on the database's style.
        • @@ -222,7 +236,7 @@ database's style. These are listed roughly in ascending order of complexity and fanciness.

          Network protocols for tz data

          Other time zone databases

          Civil time concepts and history

            -
          • A +
          • A Walk through Time surveys the evolution of timekeeping.
          • About Daylight @@ -667,7 +673,7 @@ deal with civil time.
          • A Brief History of Daylight Saving Time summarizes some of the contentious history of DST.
          • -
          • A History of +
          • A History of the International Date Line tells the story of the most important time zone boundary.
          • Basic Time @@ -677,7 +683,7 @@ Zone Concepts discusses terminological issues behind time zones.
          • Australia
            The Parliamentary Library has commissioned a research +href="https://www.aph.gov.au/binaries/library/pubs/rp/2009-10/10rp10.pdf">research paper on daylight saving time in Australia. The Bureau of Meteorology publishes a list of Implementation @@ -694,7 +700,7 @@ Portuguese).
            Canada
            National Research Council Canada publishes current and some older information about time +href="https://www.nrc-cnrc.gc.ca/eng/services/time/time_zones.html">time zones & daylight saving time.
            Chile
            The Hydrographic and Oceanographic Service of the Chilean Navy publishes a @@ -702,7 +708,7 @@ zones & daylight saving time.
            Chile's official time (in Spanish).
            Germany
            The National Institute for Science and Technology maintains the Realisation +href="https://www.ptb.de/cms/en/fachabteilungen/abt4/fb-44/ag-441/realisation-of-legal-time-in-germany.html">Realisation of Legal Time in Germany.
            Israel
            The Interior Ministry periodically issues announcements (in Hebrew).
            Italy
            The National Institute of Metrological Research maintains a -table of civil time +table of civil time (in Italian).
            Mexico
            The Investigation and Analysis Service of the Mexican Library of @@ -720,7 +726,7 @@ hreflang="es">history of Mexican local time (in Spanish).
            Malaysia
            See Singapore below.
            Netherlands
            -
            Legal time in the Netherlands (in Dutch) covers the history of local time in the Netherlands from ancient times.
            New Zealand
            @@ -730,7 +736,7 @@ Daylight Saving. The privately-maintained History of New Zealand time has more details.
            Singapore
            -
            Why is Singapore in the "Wrong" Time Zone? details the history of legal time in Singapore and Malaysia.
            @@ -750,7 +756,7 @@ Time Zone Proceedings lists changes to time zone boundaries.

            Precision timekeeping

            Time notation

            See also


            diff --git a/db/tzfile.5 b/db/tzfile.5 index 0c907bc..3a4dd2b 100644 --- a/db/tzfile.5 +++ b/db/tzfile.5 @@ -10,17 +10,29 @@ tzfile \- time zone information \\$3\*(lq\\$1\*(rq\\$2 .. The time zone information files used by -.IR tzset (3) -begin with the magic characters "TZif" to identify them as -time zone information files, -followed by a character identifying the version of the file's format -(as of 2013, either an ASCII NUL, or '2', or '3') -followed by fifteen bytes containing zeroes reserved for future use, -followed by six four-byte integer values +.BR tzset (3) +are typically found under a directory with a name like +.IR /usr/share/zoneinfo . +These files begin with a 44-byte header containing the following fields: +.IP * 2 +The magic four-byte ASCII sequence +.q "TZif" +identifies the file as a time zone information file. +.IP * +A byte identifying the version of the file's format +(as of 2017, either an ASCII NUL, or +.q "2", +or +.q "3" ). +.IP * +Fifteen bytes containing zeros reserved for future use. +.IP * +Six four-byte integer values written in a standard byte order (the high-order byte of the value is written first). These values are, in order: +.RS .TP .I tzh_ttisgmtcnt The number of UT/local indicators stored in the file. @@ -40,28 +52,30 @@ The number of local time types for which data entries are stored in the file (must not be zero). .TP .I tzh_charcnt -The number of characters of time zone abbreviation strings +The number of bytes of time zone abbreviation strings stored in the file. +.RE .PP -The above header is followed by +The above header is followed by the following fields, whose lengths +depend on the contents of the header: +.IP * 2 .I tzh_timecnt four-byte signed integer values sorted in ascending order. These values are written in standard byte order. Each is used as a transition time (as returned by -.IR time (2)) +.BR time (2)) at which the rules for computing local time change. -Next come +.IP * .I tzh_timecnt one-byte unsigned integer values; each one tells which of the different types of local time types described in the file is associated with the time period starting with the same-indexed transition time. -These values serve as indices into an array of -.I ttinfo -structures (with +These values serve as indices into the next field. +.IP * .I tzh_typecnt -entries) that appears next in the file; -these structures are defined as follows: +.I ttinfo +entries, each defined as follows: .in +.5i .sp .nf @@ -87,36 +101,35 @@ gives the number of seconds to be added to UT, tells whether .I tm_isdst should be set by -.I localtime (3) +.BR localtime (3) and .I tt_abbrind -serves as an index into the array of time zone abbreviation characters +serves as an index into the array of time zone abbreviation bytes that follow the .I ttinfo structure(s) in the file. -.PP -Then there are +.IP * .I tzh_leapcnt pairs of four-byte values, written in standard byte order; -the first value of each pair gives the time +the first value of each pair gives the nonnegative time (as returned by -.IR time(2)) +.BR time (2)) at which a leap second occurs; the second gives the .I total number of leap seconds to be applied during the time period starting at the given time. The pairs of values are sorted in ascending order by time. -.PP -Then there are +Each transition is for one leap second, either positive or negative; +transitions always separated by at least 28 days minus 1 second. +.IP * .I tzh_ttisstdcnt standard/wall indicators, each stored as a one-byte value; they tell whether the transition times associated with local time types were specified as standard time or wall clock time, and are used when a time zone file is used in handling POSIX-style time zone environment variables. -.PP -Finally there are +.IP * .I tzh_ttisgmtcnt UT/local indicators, each stored as a one-byte value; they tell whether the transition times associated with local time types @@ -124,7 +137,9 @@ were specified as UT or local time, and are used when a time zone file is used in handling POSIX-style time zone environment variables. .PP -.I Localtime +The +.BR localtime (3) +function uses the first standard-time .I ttinfo structure in the file @@ -135,27 +150,28 @@ if either .I tzh_timecnt is zero or the time argument is less than the first transition time recorded in the file. -.PP +.SS Version 2 format For version-2-format time zone files, the above header and data are followed by a second header and data, identical in format except that eight bytes are used for each transition time or leap second time. +(Leap second counts remain four bytes.) After the second header and data comes a newline-enclosed, POSIX-TZ-environment-variable-style string for use in handling instants after the last transition time stored in the file (with nothing between the newlines if there is no POSIX representation for such instants). -The POSIX-style string must must agree with the local time type after +The POSIX-style string must agree with the local time type after both data's last transition times; for example, given the string .q "WET0WEST,M3.5.0,M10.5.0/3" then if a last transition time is in July, the transition's local time type must specify a daylight-saving time abbreviated .q "WEST" that is one hour east of UT. -.PP +.SS Version 3 format For version-3-format time zone files, the POSIX-TZ-style string may use two minor extensions to the POSIX TZ format, as described in -.IR newtzset (3). +.BR newtzset (3). First, the hours part of its transition times may be signed and range from \-167 through 167 instead of the POSIX-required unsigned values from 0 through 24. Second, DST is in effect all year if it starts @@ -164,6 +180,11 @@ between daylight saving and standard time. .PP Future changes to the format may append more data. .SH SEE ALSO -newctime(3), newtzset(3), zdump(8), zic(8) +.BR time (2), +.BR localtime (3), +.BR tzset (3), +.BR tzselect (8), +.BR zdump (8), +.BR zic (8) .\" This file is in the public domain, so clarified as of .\" 1996-06-05 by Arthur David Olson. diff --git a/db/tzfile.5.txt b/db/tzfile.5.txt index ca632ea..e6eb68e 100644 --- a/db/tzfile.5.txt +++ b/db/tzfile.5.txt @@ -4,98 +4,115 @@ NAME tzfile - time zone information DESCRIPTION - The time zone information files used by tzset(3) begin with the magic - characters "TZif" to identify them as time zone information files, - followed by a character identifying the version of the file's format - (as of 2013, either an ASCII NUL, or '2', or '3') followed by fifteen - bytes containing zeroes reserved for future use, followed by six four- - byte integer values written in a standard byte order (the high-order - byte of the value is written first). These values are, in order: - - tzh_ttisgmtcnt - The number of UT/local indicators stored in the file. - - tzh_ttisstdcnt - The number of standard/wall indicators stored in the file. - - tzh_leapcnt - The number of leap seconds for which data entries are stored in - the file. - - tzh_timecnt - The number of transition times for which data entries are stored - in the file. - - tzh_typecnt - The number of local time types for which data entries are stored - in the file (must not be zero). - - tzh_charcnt - The number of characters of time zone abbreviation strings - stored in the file. - - The above header is followed by tzh_timecnt four-byte signed integer - values sorted in ascending order. These values are written in standard - byte order. Each is used as a transition time (as returned by time(2)) - at which the rules for computing local time change. Next come - tzh_timecnt one-byte unsigned integer values; each one tells which of - the different types of local time types described in the file is - associated with the time period starting with the same-indexed - transition time. These values serve as indices into an array of ttinfo - structures (with tzh_typecnt entries) that appears next in the file; - these structures are defined as follows: - - struct ttinfo { - int32_t tt_gmtoff; - unsigned char tt_isdst; - unsigned char tt_abbrind; - }; - - Each structure is written as a four-byte signed integer value for - tt_gmtoff, in a standard byte order, followed by a one-byte value for - tt_isdst and a one-byte value for tt_abbrind. In each structure, - tt_gmtoff gives the number of seconds to be added to UT, tt_isdst tells - whether tm_isdst should be set by localtime (3) and tt_abbrind serves - as an index into the array of time zone abbreviation characters that - follow the ttinfo structure(s) in the file. - - Then there are tzh_leapcnt pairs of four-byte values, written in - standard byte order; the first value of each pair gives the time (as - returned by time(2)) at which a leap second occurs; the second gives - the total number of leap seconds to be applied during the time period - starting at the given time. The pairs of values are sorted in - ascending order by time. - - Then there are tzh_ttisstdcnt standard/wall indicators, each stored as - a one-byte value; they tell whether the transition times associated - with local time types were specified as standard time or wall clock - time, and are used when a time zone file is used in handling POSIX- - style time zone environment variables. - - Finally there are tzh_ttisgmtcnt UT/local indicators, each stored as a - one-byte value; they tell whether the transition times associated with - local time types were specified as UT or local time, and are used when - a time zone file is used in handling POSIX-style time zone environment - variables. - - Localtime uses the first standard-time ttinfo structure in the file (or - simply the first ttinfo structure in the absence of a standard-time - structure) if either tzh_timecnt is zero or the time argument is less - than the first transition time recorded in the file. - + The time zone information files used by tzset(3) are typically found + under a directory with a name like /usr/share/zoneinfo. These files + begin with a 44-byte header containing the following fields: + + * The magic four-byte ASCII sequence "TZif" identifies the file as a + time zone information file. + + * A byte identifying the version of the file's format (as of 2017, + either an ASCII NUL, or "2", or "3"). + + * Fifteen bytes containing zeros reserved for future use. + + * Six four-byte integer values written in a standard byte order (the + high-order byte of the value is written first). These values are, in + order: + + tzh_ttisgmtcnt + The number of UT/local indicators stored in the file. + + tzh_ttisstdcnt + The number of standard/wall indicators stored in the file. + + tzh_leapcnt + The number of leap seconds for which data entries are stored + in the file. + + tzh_timecnt + The number of transition times for which data entries are + stored in the file. + + tzh_typecnt + The number of local time types for which data entries are + stored in the file (must not be zero). + + tzh_charcnt + The number of bytes of time zone abbreviation strings stored + in the file. + + The above header is followed by the following fields, whose lengths + depend on the contents of the header: + + * tzh_timecnt four-byte signed integer values sorted in ascending + order. These values are written in standard byte order. Each is + used as a transition time (as returned by time(2)) at which the rules + for computing local time change. + + * tzh_timecnt one-byte unsigned integer values; each one tells which of + the different types of local time types described in the file is + associated with the time period starting with the same-indexed + transition time. These values serve as indices into the next field. + + * tzh_typecnt ttinfo entries, each defined as follows: + + struct ttinfo { + int32_t tt_gmtoff; + unsigned char tt_isdst; + unsigned char tt_abbrind; + }; + + Each structure is written as a four-byte signed integer value for + tt_gmtoff, in a standard byte order, followed by a one-byte value for + tt_isdst and a one-byte value for tt_abbrind. In each structure, + tt_gmtoff gives the number of seconds to be added to UT, tt_isdst + tells whether tm_isdst should be set by localtime(3) and tt_abbrind + serves as an index into the array of time zone abbreviation bytes + that follow the ttinfo structure(s) in the file. + + * tzh_leapcnt pairs of four-byte values, written in standard byte + order; the first value of each pair gives the nonnegative time (as + returned by time(2)) at which a leap second occurs; the second gives + the total number of leap seconds to be applied during the time period + starting at the given time. The pairs of values are sorted in + ascending order by time. Each transition is for one leap second, + either positive or negative; transitions always separated by at least + 28 days minus 1 second. + + * tzh_ttisstdcnt standard/wall indicators, each stored as a one-byte + value; they tell whether the transition times associated with local + time types were specified as standard time or wall clock time, and + are used when a time zone file is used in handling POSIX-style time + zone environment variables. + + * tzh_ttisgmtcnt UT/local indicators, each stored as a one-byte value; + they tell whether the transition times associated with local time + types were specified as UT or local time, and are used when a time + zone file is used in handling POSIX-style time zone environment + variables. + + The localtime(3) function uses the first standard-time ttinfo structure + in the file (or simply the first ttinfo structure in the absence of a + standard-time structure) if either tzh_timecnt is zero or the time + argument is less than the first transition time recorded in the file. + + Version 2 format For version-2-format time zone files, the above header and data are followed by a second header and data, identical in format except that eight bytes are used for each transition time or leap second time. - After the second header and data comes a newline-enclosed, POSIX-TZ- - environment-variable-style string for use in handling instants after - the last transition time stored in the file (with nothing between the - newlines if there is no POSIX representation for such instants). The - POSIX-style string must must agree with the local time type after both - data's last transition times; for example, given the string - "WET0WEST,M3.5.0,M10.5.0/3" then if a last transition time is in July, - the transition's local time type must specify a daylight-saving time - abbreviated "WEST" that is one hour east of UT. - + (Leap second counts remain four bytes.) After the second header and + data comes a newline-enclosed, POSIX-TZ-environment-variable-style + string for use in handling instants after the last transition time + stored in the file (with nothing between the newlines if there is no + POSIX representation for such instants). The POSIX-style string must + agree with the local time type after both data's last transition times; + for example, given the string "WET0WEST,M3.5.0,M10.5.0/3" then if a + last transition time is in July, the transition's local time type must + specify a daylight-saving time abbreviated "WEST" that is one hour east + of UT. + + Version 3 format For version-3-format time zone files, the POSIX-TZ-style string may use two minor extensions to the POSIX TZ format, as described in newtzset(3). First, the hours part of its transition times may be @@ -107,6 +124,6 @@ DESCRIPTION Future changes to the format may append more data. SEE ALSO - newctime(3), newtzset(3), zdump(8), zic(8) + time(2), localtime(3), tzset(3), tzselect(8), zdump(8), zic(8) TZFILE(5) diff --git a/db/tzfile.h b/db/tzfile.h index ebecd68..0e51dce 100644 --- a/db/tzfile.h +++ b/db/tzfile.h @@ -114,56 +114,4 @@ struct tzhead { #define TZ_MAX_LEAPS 50 /* Maximum number of leap second corrections */ #endif /* !defined TZ_MAX_LEAPS */ -#define SECSPERMIN 60 -#define MINSPERHOUR 60 -#define HOURSPERDAY 24 -#define DAYSPERWEEK 7 -#define DAYSPERNYEAR 365 -#define DAYSPERLYEAR 366 -#define SECSPERHOUR (SECSPERMIN * MINSPERHOUR) -#define SECSPERDAY ((int_fast32_t) SECSPERHOUR * HOURSPERDAY) -#define MONSPERYEAR 12 - -#define TM_SUNDAY 0 -#define TM_MONDAY 1 -#define TM_TUESDAY 2 -#define TM_WEDNESDAY 3 -#define TM_THURSDAY 4 -#define TM_FRIDAY 5 -#define TM_SATURDAY 6 - -#define TM_JANUARY 0 -#define TM_FEBRUARY 1 -#define TM_MARCH 2 -#define TM_APRIL 3 -#define TM_MAY 4 -#define TM_JUNE 5 -#define TM_JULY 6 -#define TM_AUGUST 7 -#define TM_SEPTEMBER 8 -#define TM_OCTOBER 9 -#define TM_NOVEMBER 10 -#define TM_DECEMBER 11 - -#define TM_YEAR_BASE 1900 - -#define EPOCH_YEAR 1970 -#define EPOCH_WDAY TM_THURSDAY - -#define isleap(y) (((y) % 4) == 0 && (((y) % 100) != 0 || ((y) % 400) == 0)) - -/* -** Since everything in isleap is modulo 400 (or a factor of 400), we know that -** isleap(y) == isleap(y % 400) -** and so -** isleap(a + b) == isleap((a + b) % 400) -** or -** isleap(a + b) == isleap(a % 400 + b % 400) -** This is true even if % means modulo rather than Fortran remainder -** (which is allowed by C89 but not C99). -** We use this to avoid addition overflow problems. -*/ - -#define isleap_sum(a, b) isleap((a) % 400 + (b) % 400) - #endif /* !defined TZFILE_H */ diff --git a/db/tzselect.ksh b/db/tzselect.ksh index d2c3a6d..759ba5f 100644 --- a/db/tzselect.ksh +++ b/db/tzselect.ksh @@ -17,9 +17,9 @@ REPORT_BUGS_TO=tz@iana.org # If your host lacks both Bash and the Korn shell, you can get their # source from one of these locations: # -# Bash +# Bash # Korn Shell -# Public Domain Korn Shell +# MirBSD Korn Shell # # For portability to Solaris 9 /bin/sh this script avoids some POSIX # features and common extensions, such as $(...) (which works sometimes @@ -29,8 +29,8 @@ REPORT_BUGS_TO=tz@iana.org # If your host lacks awk, or has an old awk that does not conform to Posix, # you can use either of the following free programs instead: # -# Gawk (GNU awk) -# mawk +# Gawk (GNU awk) +# mawk # Specify default values for environment variables if they are unset. diff --git a/db/usno1988 b/db/usno1988 deleted file mode 100644 index d2e6845..0000000 --- a/db/usno1988 +++ /dev/null @@ -1,109 +0,0 @@ -# From Arthur David Olson (1989-01-19): -# -# Here's some United States Naval Observatory time zone data from -# February 1988. It's here mostly to convince you that the USNO has indeed -# been updating its files (see its 1989 data elsewhere). -# -ANDORRA 1 H AHEAD OF UTC -ARGENTINA 3 H BEHIND UTC -BRASIL WEST 5 H BEHIND UTC (CRUZEIRO DO SUL) -BRASIL CENTRAL 4 H BEHIND UTC (MANAUS) -BRASIL EAST 3 H BEHIND UTC COASTAL STATES, RIO, SP, BRASILIA -BRASIL 2 H BEHIND UTC ATLANTIC ISLANDS -BRAZIL 5 H BEHIND UTC WEST (CRUZEIRO DO SUL) -BRAZIL 4 H BEHIND UTC CENTRAL (MANAUS) -BRAZIL 3 H BEHIND UTC COASTAL STATES, RIO, SP, BRASILIA -BRAZIL 3 H BEHIND UTC FOR MOST MAJOR AIRPORTS. -BRAZIL 2 H BEHIND UTC ATLANTIC ISLANDS -BULGARIA 2 H AHEAD OF UTC WINTER -BULGARIA 3 H AHEAD OF UTC SUMMER MAR31 - SEP 85, 0100 LOCAL -CHINA 8 H AHEAD OF UTC; ALL OF CHINA, INCL TAIWAN -CUBA 5 H BEHIND UTC IN WINTER -CUBA 4 H BEHIND UTC MAY 8 - OCT 8 -CYPRUS 2 H AHEAD UTC IN WINTER -CYPRUS 3 H AHEAD UTC MAR 25 - SEP 30 -DENMARK 1 H AHEAD UTC IN WINTER -DENMARK 2 H AHEAD UTC MAR 31 - SEP 30 , 0200 LOCAL -DENMK. FAEROE IS 1 H AHEAD UTC MAR 31 - SEP 30 , 0200 LOCAL -EGYPT 2 H AHEAD UTC -EGYPT 3 H AHEAD UTC SUMMER (AFTER RAMADAN) -ENGLAND ON UTC IN WINTER; WALES, SCOTLAND, N.I., CH.IS. -ENGLAND 1 H AHEAD OF UTC; SUMMER TIL 28 OCT 0200 LOCAL -FINLAND 2 H AHEAD OF UTC IN WINTER -FINLAND 3 H AHEAD OF UTC MAR 25 - SEP 30 -FRANCE 1 H AHEAD OF UTC IN WINTER -FRANCE 2 H AHEAD OF UTC MAR 31 - SEP 30 , 0100 LOCAL -GREECE 2 H AHEAD OF UTC IN WINTER -GREECE 3 H AHEAD OF UTC IN SUMMER EFF. 31MAR85 02/03 LOCAL -GREECE 3 H AHEAD OF UTC MAR 25 - SEP 30 -GREENLAND 4 H BEHIND UTC IN THULE AIRBASE YEAR ROUND -GREENLAND 3 H BEHIND UTC IN WINTER AT SONDRESTROM -GREENLAND 2 H BEHIND UTC 30 MAR - 30 SEP 2200 LOCAL AT -"- -GREENLAND 2 H BEHIND UTC AROUND SCORESBY SUND -ICELAND ON UTC -IRAN 3.5H AHEAD OF UTC -IRELAND ON UTC IN WINTER -IRELAND 1 H AHEAD OF UTC MAR 31 - OCT 23 0200 LOCAL -ITALY 1 H AHEAD OF UTC IN WINTER -ITALY 2 H AHEAD OF UTC MAR 31 - SEP 30, 0030 LOCAL -JAMAICA 5 H BEHIND UTC IN WINTER -JAMAICA 4 H BEHIND UTC APR 29 - OCT 29 -LIBYA 2 H AHEAD OF UTC -MEXICO BAJA CAL N 8 H BEHIND UTC IN WINTER; NORTH BAJA CAL, TIJUANA -MEXICO BAJA CAL N 7 H BEHIND UTC APR 29 - OCT 29 -MEXICO BAJA CAL S 7 H BEHIND UTC ALL YEAR; MAZATLAN -MEXICO CENTRAL 6 H BEHIND UTC ALL YEAR; MEXICO CITY -MONACO 1 H AHEAD UTC IN WINTER -MONACO 2 H AHEAD UTC MAR 25 - SEP30 -PARAGUAY 4 H BEHIND UTC IN WINTER -PARAGUAY 3 H BEHIND UTC SEP 30 - MAR 30 -POLAND 1 H AHEAD OF UTC IN WINTER -POLAND 2 H AHEAD OF UTC MAR 24 - SEP 0200 LOCAL -PORTUGAL ON UTC IN WINTER -PORTUGAL 1 H AHEAD OF UTC IN SUMMER MAR 31 - SEP 29 0100 LOCAL -PORTUGAL AZORES 1 H BEHIND UTC IN WINTER -PORTUGAL AZORES ON UTC IN SUMMER MAR 31 - SEP 29 -PORTUGAL MADEIRA ON UTC ALL YEAR; -ROMANIA 2 H AHEAD OF UTC IN WINTER -ROMANIA 3 H AHEAD OF UTC APR 3 - SEP 24 -SCOTLAND SEE ENGLAND -SWITZERLAND 1 H AHEAD OF UTC IN WINTER -SWITZERLAND 2 H AHEAD OF UTC MAR 31 - SEP 30 0200 LOCAL -TURKEY 3 H AHEAD OF UTC -USA EASTERN 5 H BEHIND UTC IN WINTER; NEW YORK, WASHINGTON -USA EASTERN 4 H BEHIND UTC APR 29 - OCT 29 -USA CENTRAL 6 H BEHIND UTC IN WINTER; CHICAGO, HOUSTON -USA CENTRAL 5 H BEHIND UTC APR 29 - OCT 29 -USA MOUNTAIN 7 H BEHIND UTC IN WINTER; DENVER -USA MOUNTAIN 6 H BEHIND UTC APR 29 - OCT 29 -USA PACIFIC 8 H BEHIND UTC IN WINTER; L.A., SAN FRANCISCO -USA PACIFIC 7 H BEHIND UTC APR 29 - OCT 29 -USA ALASKA STD 9 H BEHIND UTC IN WINTER; MOST OF ALASKA (AKST) -USA ALASKA STD 8 H BEHIND UTC APR 29 - OCT 29 (AKDT) -USA ALEUTIAN 10 H BEHIND UTC IN WINTER; ISLANDS WEST OF 170W -USA - " - 9 H BEHIND UTC APR 29 - OCT 29 -USA HAWAII 10 H BEHIND UTC ALL YEAR; -USA BERING 11 H BEHIND UTC ALL YEAR; SAMOA, MIDWAY -USSR WEST EUROP 3 H AHEAD OF UTC IN WINTER; LENINGRAD, MOSCOW -USSR WEST EUROP 4 H AHEAD OF UTC APR 1 - SEP 30 -USSR CENTRAL EUR 4 H AHEAD OF UTC IN WINTER; ROSTOV, BAKU -USSR CENTRAL EUR 5 H AHEAD OF UTC APR 1 - SEP 30 -USSR EAST EUROP 5 H AHEAD OF UTC IN WINTER; SVERDLOVSK -USSR EAST EUROP 6 H AHEAD OF UTC APR 1 - SEP 30 -USSR WEST SIBERIAN 6 H AHEAD OF UTC IN WINTER; TASHKENT, ALMA ATA -USSR WEST SIBERIAN 7 H AHEAD OF UTC APR 1 - SEP 30 -USSR WEST-CENTRAL 7 H AHEAD OF UTC IN WINTER; NOVOSIBIRSK -USSR WEST-CENTRAL 8 H AHEAD OF UTC APR 1 - SEP 30 -USSR WEST-CENTRAL 8 H AHEAD OF UTC IN WINTER; IRKUTSK -USSR WEST-CENTRAL 9 H AHEAD OF UTC APR 1 - SEP 30 -USSR CENTRAL SIB 9 H AHEAD OF UTC IN WINTER; YAKUTSK -USSR CENTRAL SIB 10 H AHEAD OF UTC APR 1 - SEP 30 -USSR CENTRAL SIB 10 H AHEAD OF UTC IN WINTER; VLADIVOSTOK -USSR CENTRAL SIB 11 H AHEAD OF UTC APR 1 - SEP 30 -USSR EAST SIBERIA 11 H AHEAD OF UTC IN WINTER; MAGADAN -USSR EAST SIBERIA 12 H AHEAD OF UTC APR 1 - SEP 30 -USSR EAST SIBERIA 12 H AHEAD OF UTC IN WINTER; PETROPAVLOVSK -USSR EAST SIBERIA 13 H AHEAD OF UTC APR 1 - SEP 30 -USSR EAST SIBERIA 13 H AHEAD OF UTC IN WINTER; UELEN -USSR EAST SIBERIA 14 H AHEAD OF UTC APR 1 - SEP 30 -WALES SEE ENGLAND diff --git a/db/usno1989 b/db/usno1989 deleted file mode 100644 index 76f51fd..0000000 --- a/db/usno1989 +++ /dev/null @@ -1,450 +0,0 @@ -# From Arthur David Olson (1989-01-19): -# -# Here's time zone information from the United States Naval Observatory; -# no corrections have been made, and there are some obvious challenges. -# The USNO warns: -# DUE TO FREQUENT CHANGES IN THE LOCAL LAWS GOVERNING DAYLIGHT -# SAVING TIME, WE CANNOT GUARANTEE THE ACCURACY OF THIS -# INFORMATION. PLEASE ALERT US TO ANY DISCREPANCY YOU MAY -# DISCOVER. -# -AFGHANISTAN 4.5H AHEAD OF UTC -ALBANIA 1 H AHEAD OF UTC -ALBANIA 2 H AHEAD OF UTC MAR 27 - SEP 24 -ALBANIA (ESTIMATED) -ALGERIA 1 H AHEAD OF UTC -AMERICAN SAMOA 11 H BEHIND UTC -ANDORRA 1 H AHEAD OF UTC -ANDORRA 2 H AHEAD OF UTC MAR 27 - SEP 24 -ANDORRA (ESTIMATED) -ANGOLA 1 H AHEAD OF UTC -ARGENTINA 3 H BEHIND UTC -ARUBA 4 H BEHIND UTC ALSO BONAIRE, CURACAO, -ARUBA ST.MAARTEN -AUSTRALIA WEST 8 H AHEAD OF UTC PERTH, EXMOUTH -AUSTRALIA N.T. 9.5H AHEAD OF UTC DARWIN NO ADVANCED TIME -AUSTRALIA N.T. IN SUMMER -AUSTRALIA SOUTH 9.5H AHEAD OF UTC ADELAIDE -AUSTRALIA INCLUDING BROKEN HILL, NSW -AUSTRALIA SOUTH 10.5H AHEAD OF UTC ADELAIDE OCT 30, '88-MAR -AUSTRALIA SOUTH 18, '89 INCLUDING BROKEN -AUSTRIALIA SOUTH HILL, NSW -AUSTRALIA QUEENL 10 H AHEAD OF UTC -AUSTRALIA NSW 10 H AHEAD OF UTC SYDNEY -AUSTRALIA NSW 11 H AHEAD OF UTC SYDNEY OCT 30, '88-MAR 18, -AUSTRALIA NSW '89 -AUSTRALIA TASM. 10 H AHEAD OF UTC HOBART -AUSTRALIA TASM. 11 H AHEAD OF UTC HOBART OCT 30, '88-MAR 18, -AUSTRALIA TASM. '89 -AUSTRIA 1 H AHEAD OF UTC -AUSTRIA 2 H AHEAD OF UTC MAR 27 - SEPT 24 -AZORES SEE PORTUGAL -BAHAMAS 5 H BEHIND UTC EXCLUDING TURKS AND CAICOS -BAHAMAS ISLANDS) -BAHAMAS 4 H BEHIND UTC APR 3 - OCT 29 (SAME -BAHAMAS EXCLUSION) -BAHRAIN 3 H AHEAD OF UTC -BANGLADESH 6 H AHEAD OF UTC -BARBADOS 4 H BEHIND UTC -BELGIUM 1 H AHEAD OF UTC -BELGIUM 2 H AHEAD OF UTC MAR 27 - SEP 24 -BELIZE 6 H BEHIND UTC -BENIN PEOPLES REP 1 H AHEAD OF UTC DAHOMEY -BERMUDA 4 H BEHIND UTC -BERMUDA 3 H BEHIND UTC APR 3 - OCT 29 -BHUTAN 6 H AHEAD OF UTC -BOLIVIA 4 H BEHIND UTC -BONAIRE 4 H BEHIND UTC ALSO ARUBA,CURACAO, -BONAIRE ST.MAARTEN, SABA -BOTSWANA 2 H AHEAD OF UTC -BRAZIL WEST 5 H BEHIND UTC TERRITORY OF ACRE -BRAZIL WEST 4 H BEHIND UTC ACRE OCT 23, '88-FEB 11, -BRAZIL '89 (ESTIMATED) -BRAZIL CENTRAL 4 H BEHIND UTC MANAUS -BRAZIL CENTRAL 3 H BEHIND UTC MANAUS OCT 23, '88-FEB 11, -BRAZIL CENTRAL '89 (ESTIMATED) -BRAZIL EAST 3 H BEHIND UTC COASTAL STATES, RIO, SAO -BRAZIL EAST PAULO, BRASILIA -BRAZIL EAST 2 H BEHIND UTC COASTAL STATES, RIO, SAO -BRAZIL PAULO, BRASILIA OCT 23, -BRAZIL '88-FEB 11, '89 -BRAZIL (ESTIMATED) -BRAZIL 2 H BEHIND UTC ATLANTIC ISLANDS, FERNANDO -BRAZIL DE NORONHA -BRAZIL 1 H BEHIND UTC OCT 23, '88-FEB 11, '89 -BRAZIL (ESTIMATED) -BRAZIL 3 H BEHIND UTC FOR MOST MAJOR AIRPORTS. -BRITISH VIRGIN I. 4 H BEHIND UTC -BRUNEI 8 H AHEAD OF UTC -BULGARIA 2 H AHEAD OF UTC -BULGARIA 3 H AHEAD OF UTC MAR 27 - SEP 24 -BURKINA FASO ON UTC -BURMA 6.5H AHEAD OF UTC -BURUNDI 2 H AHEAD OF UTC -CAMBODIA SEE KAMPUCHEA -CAMEROON 1 H AHEAD OF UTC -CANADA NEW FDL 3.5H BEHIND UTC ST.JOHN'S -CANADA NEW FDL 1.5H BEHIND UTC APR 3 - OCT 29 -CANADA ATLANTIC 4 H BEHIND UTC HALIFAX -CANADA ATLANTIC 3 H BEHIND UTC APR 3 - OCT 29 -CANADA EASTERN 5 H BEHIND UTC TORONTO, MONTREAL, OTTAWA -CANADA EASTERN 4 H BEHIND UTC APR 3 - OCT 29 -CANADA CENTRAL 6 H BEHIND UTC REGINA, WINNIPEG -CANADA CENTRAL 5 H BEHIND UTC APR 3 - OCT 29 -CANADA MOUNTAIN 7 H BEHIND UTC CALGARY, EDMONTON -CANADA MOUNTAIN 6 H BEHIND UTC APR 3 - OCT 29 -CANADA PACIFIC 8 H BEHIND UTC VANCOUVER -CANADA PACIFIC 7 H BEHIND UTC APR 3 - OCT 29 -CANADA YUKON SAME AS PACIFIC DAWSON -CAPE VERDE 1 H BEHIND UTC -CAYMAN ISLANDS 5 H BEHIND UTC -CAROLINE ISLAND 10 H AHEAD OF UTC EXCLUDING PONAPE IS., -CAROLINE ISLAND KUSAIE, AND PINGELAP -CENTRAL AFRICA 1 H AHEAD OF UTC -CEYLON 5.5H AHEAD OF UTC, SEE SRI LANKA -CHAD 1 H AHEAD OF UTC -CHANNEL ISLANDS SEE ENGLAND -CHILE 4 H BEHIND UTC CONTINENTAL -CHILE 3 H BEHIND UTC OCT 9, '88-MAR 11, '89 -CHILE 6 H BEHIND UTC EASTER ISLAND -CHILE 5 H BEHIND UTC OCT 9, '88-MAR 11, '89 -CHINA 8 H AHEAD OF UTC ALL OF CHINA, INCL TAIWAN -CHINA 9 H AHEAD OF UTC APR 17 - SEP 10 -COCOS (Keeling) I. 6.5H AHEAD OF UTC -COLOMBIA 5 H BEHIND UTC -COMOROS 3 H AHEAD OF UTC -CONGO 1 H AHEAD OF UTC -COOK ISLANDS 10 H BEHIND UTC -COOK ISLANDS 9.5H BEHIND UTC OCT 30, '88-MAR 24, '89 -COOK ISLANDS (ESTIMATED) -COSTA RICA 6 H BEHIND UTC -COTE D'IVOIRE ON UTC -CUBA 5 H BEHIND UTC -CUBA 4 H BEHIND UTC MAR 20 - OCT 8 -CURACAO 4 H BEHIND UTC ALSO BONAIRE, ARUBA, -CURACAO ST.MAARTEN -CYPRUS 2 H AHEAD OF UTC -CYPRUS 3 H AHEAD OF UTC MAR 27 - SEP 24 -CZECHOSLOVAKIA 1 H AHEAD OF UTC -CZECHOSLOVAKIA 2 H AHEAD OF UTC MAR 27 - SEP 24 -DENMARK 1 H AHEAD OF UTC -DENMARK 2 H AHEAD OF UTC MAR 27 - SEP 24 -DENMK. FAEROE IS 1 H AHEAD OF UTC MAR 27 - SEP 24 -DJIBOUTI 3 H AHEAD OF UTC -DOMINICA 4 H BEHIND UTC -DOMINICAN REP 4 H BEHIND UTC -ECUADOR 5 H BEHIND UTC CONTINENTAL -ECUADOR 6 H BEHIND UTC GALAPAGOS ISLANDS -EGYPT 2 H AHEAD OF UTC -EGYPT 3 H AHEAD OF UTC MAY 17 - SEP 30 (AFTER -EGYPT RAMADAN) -EL SALVADOR 6 H BEHIND UTC -ENGLAND ON UTC (WALES, SCOTLAND, N.I., -ENGLAND CH. IS.) -ENGLAND 1 H AHEAD OF UTC MAR 27 - OCT 22 -ENEZUELA 4 H BEHIND UTC -EQUITORIAL GUINEA 1 H AHEAD OF UTC -ETHIOPIA 3 H AHEAD OF UTC -FALKLAND ISLANDS 4 H BEHIND UTC -FALKLAND ISLANDS 3 H BEHIND UTC SEP 11, '88-APR 15, '89 -FALKLAND ISLANDS (ESTIMATED) -FAROE ISLAND ON UTC -FAROE ISLAND 1 H AHEAD OF UTC MAR 27 - SEP 24 -FIJI 12 H AHEAD OF UTC -FINLAND 2 H AHEAD OF UTC -FINLAND 3 H AHEAD OF UTC MAR 27 - SEP 24 -FRANCE 1 H AHEAD OF UTC -FRANCE 2 H AHEAD OF UTC MAR 27 - SEP 24 -FRENCH GUIANA 3 H BEHIND UTC -FRENCH POLYNESIA 9 H BEHIND UTC GAMBIER ISLAND -FRENCH POLYNESIA 9.5H BEHIND UTC MARQUESAS ISLANDS -FRENCH POLYNESIA 10 H BEHIND UTC SOCIETY ISLANDS, TUBUAI -FRENCH POLYNESIA ISLANDS, TUAMOTU ISLAND, -FRENCH POLYNESIA TAHITI -GABON 1 H AHEAD OF UTC -GAMBIA ON UTC -GERMANY ALL 1 H AHEAD OF UTC -GERMANY ALL 2 H AHEAD OF UTC MAR 27 - SEP 24 -GHANA ON UTC -GIBRALTAR 1 H AHEAD OF UTC -GIBRALTAR 2 H AHEAD OF UTC MAR 27 - SEP 24 -GREECE 2 H AHEAD OF UTC -GREECE 3 H AHEAD OF UTC MAR 27 - SEP 24 -GREENLAND 4 H BEHIND UTC THULE AIRBASE YEAR ROUND -GREENLAND 3 H BEHIND UTC ANGMAGSSALIK AND W. COAST -GREENLAND 2 H BEHIND UTC MAR 27 - SEP 24 -GREENLAND 1 H BEHIND UTC SCORESBYSUND -GREENLAND ON UTC MAR 27 - SEP 24 -GRENADA 4 H BEHIND UTC -GUADELOUPE 4 H BEHIND UTC ST. BARTHELEMY, NORTHERN -GUADELOUPE ST. MARTIN MARTINIQUE -GUAM 10 H AHEAD OF UTC -GUATEMALA 6 H BEHIND UTC -GUINEA ON UTC -GUINEA BISSAU ON UTC -GUINEA REPUBLIC ON UTC -GUINEA EQUATORIAL 1 H AHEAD OF UTC -GUYANA 3 H BEHIND UTC -HAITI 5 H BEHIND UTC -HAITI 4 H BEHIND UTC APR 3 - OCT 29 -HOLLAND SEE NETHERLANDS -HONDURAS 6 H BEHIND UTC -HONG KONG 8 H AHEAD OF UTC -HUNGARY 1 H AHEAD OF UTC -HUNGARY 2 H AHEAD OF UTC MAR 27 - SEP 24 -ICELAND ON UTC -INDIA 5.5H AHEAD OF UTC INCLUDING ANDAMAN ISLANDS -INDONESIA WEST 7 H AHEAD OF UTC SUMATRA, JAVA, BALI, -INDONESIA WEST JAKARTA -INDONESIA CENTRAL 8 H AHEAD OF UTC KALIMANTAN, SULAWESI -INDONESIA EAST 9 H AHEAD OF UTC IRIAN, BARAT -IRAN 3.5H AHEAD OF UTC -IRAQ 3 H AHEAD OF UTC -IRAQ 4 H AHEAD OF UTC APR 1 - SEP 30 -IRELAND ON UTC -IRELAND 1 H AHEAD OF UTC MAR 27 - OCT 22 -ISRAEL 2 H AHEAD OF UTC -ISRAEL 3 H AHEAD OF UTC APR 10 - SEP 3 -ITALY 1 H AHEAD OF UTC -ITALY 2 H AHEAD OF UTC MAR 27 - SEP 24 -IVORY COAST ON UTC -IWAN 8 H AHEAD OF UTC -JAMAICA 5 H BEHIND UTC -JAPAN 9 H AHEAD OF UTC -JOHNSTON ISLAND 10 H BEHIND UTC -JORDAN 2 H AHEAD OF UTC -JORDAN 3 H AHEAD OF UTC APR 1 - OCT 6 -KAMPUCHEA 7 H AHEAD OF UTC -KENYA 3 H AHEAD OF UTC -KIRIBATI, REP OF 12 H AHEAD OF UTC CANTON, ENDERBURY ISLANDS -KIRIBATI, REP OF 11 H AHEAD OF UTC CHRISTMAS ISLAND -KOREA 9 H AHEAD OF UTC -KOREA, REP OF 9 H AHEAD OF UTC -KOREA, REP OF 10 H AHEAD OF UTC MAY 8 - OCT 8 -KUWAIT 3 H AHEAD OF UTC -KUSAIE, PINGELAP 12 H AHEAD OF UTC INCLUDING MARSHALL IS., -KUSAIE, PINGELAP EXCLUDING KWAJALEIN) -KWAJALEIN 12 H BEHIND UTC -LAOS 7 H AHEAD OF UTC -LEBANON 2 H AHEAD OF UTC -LEBANON 3 H AHEAD OF UTC JUN 1 - OCT 31 -LEEWARD ISLANDS 4 H BEHIND UTC ANTIGUA, DOMINICA, -LEEWARD ISLANDS MONTSERRAT, ST. -LEEWARD ISLAANDS CHRISTOPHER, ST. KITTS, -LEEWARD ISLANDS NEVIS, ANGUILLA -LESOTHO 2 H AHEAD OF UTC -LIBERIA ON UTC -LIBYAN ARAB 1 H AHEAD OF UTC JAMAHIRIYA/LIBYA -LIBYAN ARAB 2 H AHEAD OF UTC APR 1 - SEP 30 JAMAHIRIYA/LIBYA -LIECHTENSTEIN 1 H AHEAD OF UTC -LIECHTENSTEIN 2 H AHEAD OF UTC MAR 27 - SEP 24 -LUXEMBOURG 1 H AHEAD OF UTC -LUXEMBOURG 2 H AHEAD OF UTC MAR 27 - SEP 24 -MACAO 8 H AHEAD OF UTC -MADAGASCAR 3 H AHEAD OF UTC -MADEIRA SEE PORTUGAL -MALAWI 2 H AHEAD OF UTC -MALAYSIA 8 H AHEAD OF UTC -MALDIVES 5 H AHEAD OF UTC -MALI ON UTC -MALTA 1 H AHEAD OF UTC -MALTA 2 H AHEAD OF UTC MAR 27 - SEP 24 -MARTINIQUE 4 H BEHIND UTC -MAURITANIA ON UTC -MAURITIUS 4 H AHEAD OF UTC -MARIANA ISLAND 10 H AHEAD OF UTC EXCLUDING GUAM -MEXICO BAJA CAL N 7 H BEHIND UTC BAJA CALIFORNIA SUR AND -MEXICO BAJA CAL N N. PACIFIC COAST (STATES -MEXICO BAJA CAL N OF SINALOA AND SONORA) -MEXICO BAJA CAL N 8 H BEHIND UTC ABOVE 28TH PARALLAL APR 3 -MEXICO BAJA CAL N - OCT 29 -MEXICO BAJA CAL N 7 H BEHIND UTC ABOVE 28TH PARALLAL APR 3 -MEXICO BAJA CAL N - 0CT 29 -MEXICO 6 H BEHIND UTC STATES OF DURANGO, -MEXICO COAHUILA, NUEVO LEON, -MEXICO TAMAULIPAS -MEXICO 5 H BEHIND UTC STATES OF DURANGO, -MEXICO COAHUILA, NUEVO LEON, -MEXICO TAMAULIPAS APR 3 - OCT 29 -MEXICO 6 H BEHIND UTC GENERAL MEXICO, STATES OF -MEXICO CAMPECHE, QUINTANA ROO AND -MEXICO YUCATAN -MIDWAY ISLAND 11 H BEHIND UTC -MONACO 1 H AHEAD OF UTC -MONACO 2 H AHEAD OF UTC MAR 27 - SEP 24 -MONGOLIA 8 H AHEAD OF UTC -MONGOLIA 9 H AHEAD OF UTC MAR 27 - SEP 24 -MONTSERRAT 4 H BEHIND UTC -MOROCCO ON UTC -MOZAMBIQUE 2 H AHEAD OF UTC -NAMIBIA 2 H AHEAD OF UTC -NAURU, REP OF 12 H AHEAD OF UTC -NEPAL 5H45M AHEAD OF UTC -NETHERLANDS 1 H AHEAD OF UTC -NETHERLANDS 2 H AHEAD OF UTC MAR 27 - SEP 24 -NETHERLANDS 4 H BEHIND UTC ANTILLES AND SOUTHERN ST. -NETHERLANDS MAARTEN -NEW CALEDONIA 11 H AHEAD OF UTC -NEW HEBRIDES SEE VANUATU -NEW ZEALAND 12 H AHEAD OF UTC (EXCLUDING CHATHAM ISLAND) -NEW ZEALAND 13 H AHEAD OF UTC OCT 30, '88-MAR 4, '89 -NEW ZEALAND 12H45M AHEAD OF UTC CHATHAM ISLAND -NICARAGUA 6 H BEHIND UTC -NIGER 1 H AHEAD OF UTC -NIGERIA 1 H AHEAD OF UTC -NIUE ISLAND 11 H BEHIND UTC -NORFOLK ISLAND 11H30M AHEAD OF UTC -NORTHERN IRELAND ON UTC WALES, SCOTLAND, N.I., -NORTHERN IRELAND CH.IS. -NORTHERN IRELAND 1 H AHEAD OF UTC MAR 27 - OCT 22 -NORWAY 1 H AHEAD OF UTC -NORWAY 2 H AHEAD OF UTC MAR 27 - SEP 24 -OGO ON UTC -OMAN 4 H AHEAD OF UTC -PACIFIC ISLAND T.T. -PALAU ISLAND 9 H AHEAD OF UTC -PAKISTAN 5 H AHEAD OF UTC -PANAMA 5 H BEHIND UTC -PAPUA NEW GUINEA 10 H AHEAD OF UTC INCLUDING BOUGAINVILLE -PAPUA NEW GUINEA ISLAND -PARAGUAY 4 H BEHIND UTC -PARAGUAY 3 H BEHIND UTC OCT 1, '88-MAR 31, '89 -PERU 5 H BEHIND UTC -PHILIPPINES 8 H AHEAD OF UTC -PONAPE ISLAND 11 H AHEAD OF UTC -POLAND 1 H AHEAD OF UTC -POLAND 2 H AHEAD OF UTC MAR 27 - SEP 24 -PORTUGAL MAINLAND ON UTC -PORTUGAL MAINLAND 1 H AHEAD OF UTC MAR 27 - SEP 24 -PORTUGAL AZORES 1 H BEHIND UTC -PORTUGAL AZORES ON UTC MAR 27 - SEP 24 -PORTUGAL MADEIRA ON UTC -PORTUGAL MADEIRA 1 H AHEAD OF UTC MAR 27 - SEP 24 -PUERTO RICO 4 H BEHIND UTC -QATAR 3 H AHEAD OF UTC -ROMANIA 2 H AHEAD OF UTC -ROMANIA 3 H AHEAD OF UTC MAR 27 - SEP 24 -RUSSIA SEE USSR -RWANDA 2 H AHEAD OF UTC -SABA 4 H BEHIND UTC ALSO BONAIRE, CURACAO, -SAMOA 11 H BEHIND UTC -SAN MARINO 1 H AHEAD OF UTC -SAN MARINO 2 H AHEAD OF UTC MAR 27 - SEP 24 -SAN SALVADOR 6 H BEHIND UTC -SAO TOME ISLAND ON UTC AND PRINCIPE ISLAND -SAUDI ARABIA 3 H AHEAD OF UTC -SCOTLAND SEE ENGLAND -SENEGAL ON UTC -SEYCHELLES 4 H AHEAD OF UTC -SIERRA LEONE ON UTC -SINGAPORE 8 H AHEAD OF UTC -SOLOMON ISLANDS 11 H AHEAD OF UTC EXCLUDING BOUGAINVILLE -SOLOMON ISLANDS ISLAND -SOMALI 3 H AHEAD OF UTC -SOUTH AFRICA 2 H AHEAD OF UTC -SPAIN CANARY IS ON UTC -SPAIN CANARY IS 1 H AHEAD OF UTC MAR 27 - SEP 24 -SPAIN 1 H AHEAD OF UTC CONTINENTAL, BALEARIC AND -SPAIN MALLORCA ISLANDS -SPAIN 2 H AHEAD OF UTC CONTINENTAL, BALEARIC AND -SPAIN MALLORCA ISLANDS MAR 27 - -SPAIN SEP 24 -SPAIN MAINLAND 1 H AHEAD OF UTC MELILLA -SPAIN MAINLAND 2 H AHEAD OF UTC MAR 27 - SEP 24 -SRI LANKA 5H30M AHEAD OF UTC -ST.MAARTEN -ST.KITTS-NEVIS 4 H BEHIND UTC -ST.LUCIA 4 H BEHIND UTC -ST.PIERRE 3 H BEHIND UTC INCLUDING MIQUELON -ST.PIERRE 2 H BEHIND UTC INLCUDING MIQUELON APR 3 -ST.PIERRE - OCT 29 -ST.VINCENT 4 H BEHIND UTC INCLUDING THE GRENADINES -ST. HELENA ON UTC -SURINAME 3 H BEHIND UTC -SWAZILAND 2 H AHEAD OF UTC -SWEDEN 1 H AHEAD OF UTC -SWEDEN 2 H AHEAD OF UTC MAR 27 - SEP 24 -SWITZERLAND 1 H AHEAD OF UTC -SWITZERLAND 2 H AHEAD OF UTC MAR 27 - SEP 24 -SYRIA 2 H AHEAD OF UTC -SYRIA 3 H AHEAD OF UTC MAR 15 - OCT 30 -TAHITI 10 H BEHIND UTC -TANZANIA 3 H AHEAD OF UTC -THAILAND 7 H AHEAD OF UTC -TRINIDAD / TOBAGO 4 H BEHIND UTC -TUNISIA 1 H AHEAD OF UTC -TUNISIA 2 H AHEAD OF UTC APR 10 - SEP 24 -TURKEY 2 H AHEAD OF UTC -TURKEY 3 H AHEAD OF UTC MAR 27 - SEP 24 -TURKS AND CAICOS 5 H BEHIND UTC -TURKS AND CAICOS 4 H BEHIND UTC APR 3 - OCT 29 -TUVALU 12 H AHEAD OF UTC -UDAN 2 H AHEAD OF UTC -UGANDA 3 H AHEAD OF UTC -UNITED ARAB EMIR. 4 H AHEAD OF UTC ABU DHABI, DUBAI, SHARJAH, -UNITED ARAB EMIR RAS AL KHAIMAH -UNITED KINGDOM ON UTC WALES, SCOTLAND, N.I., CH. -UNITED KINGDOM IS. -UNITED KINGDOM 1 H AHEAD OF UTC MAR 27 - OCT 22 -UNITED STATES SEE USA -UPPER VOLTA ON UTC -URUGUAY 3 H BEHIND UTC -URUGUAY 2 H BEHIND UTC DEC 11, '88-FEB 25, '89 -URAGUAY (ESTIMATED) -USA EASTERN 5 H BEHIND UTC NEW YORK, WASHINGTON -USA EASTERN 4 H BEHIND UTC APR 3 - OCT 30 -USA CENTRAL 6 H BEHIND UTC CHICAGO, HOUSTON -USA CENTRAL 5 H BEHIND UTC APR 3 - OCT 30 -USA MOUNTAIN 7 H BEHIND UTC DENVER -USA MOUNTAIN 6 H BEHIND UTC APR 3 - OCT 30 -USA PACIFIC 8 H BEHIND UTC L.A., SAN FRANCISCO -USA PACIFIC 7 H BEHIND UTC APR 3 - OCT 30 -USA ALASKA STD 9 H BEHIND UTC MOST OF ALASKA (AKST) -USA ALASKA STD 8 H BEHIND UTC APR 3 - OCT 30 (AKDT) -USA ALEUTIAN 10 H BEHIND UTC ISLANDS WEST OF 170W -USA - " - 9 H BEHIND UTC APR 3 - OCT 30 -USA HAWAII 10 H BEHIND UTC -USA BERING 11 H BEHIND UTC SAMOA, MIDWAY -USA FOR SPECIFIC INFO ON USA ZONES/TIMES CALL DOT 202-426-4520 -USSR WEST EUROP 3 H AHEAD OF UTC LENINGRAD, MOSCOW -USSR WEST EUROP 4 H AHEAD OF UTC APR 1 - SEP 30 -USSR CENTRAL EUR 4 H AHEAD OF UTC ROSTOV, BAKU -USSR CENTRAL EUR 5 H AHEAD OF UTC APR 1 - SEP 30 -USSR EAST EUROP 5 H AHEAD OF UTC SVERDLOVSK -USSR EAST EUROP 6 H AHEAD OF UTC APR 1 - SEP 30 -USSR WEST SIBERIAN 6 H AHEAD OF UTC TASHKENT, ALMA ATA -USSR WEST SIBERIAN 7 H AHEAD OF UTC APR 1 - SEP 30 -USSR WEST-CENTRAL 7 H AHEAD OF UTC NOVOSIBIRSK -USSR WEST-CENTRAL 8 H AHEAD OF UTC APR 1 - SEP 30 -USSR WEST-CENTRAL 8 H AHEAD OF UTC IRKUTSK -USSR WEST-CENTRAL 9 H AHEAD OF UTC APR 1 - SEP 30 -USSR CENTRAL SIB 9 H AHEAD OF UTC YAKUTSK -USSR CENTRAL SIB 10 H AHEAD OF UTC APR 1 - SEP 30 -USSR CENTRAL SIB 10 H AHEAD OF UTC VLADIVOSTOK -USSR CENTRAL SIB 11 H AHEAD OF UTC APR 1 - SEP 30 -USSR EAST SIBERIA 11 H AHEAD OF UTC MAGADAN -USSR EAST SIBERIA 12 H AHEAD OF UTC APR 1 - SEP 30 -USSR EAST SIBERIA 12 H AHEAD OF UTC PETROPAVLOVSK -USSR EAST SIBERIA 13 H AHEAD OF UTC APR 1 - SEP 30 -USSR EAST SIBERIA 13 H AHEAD OF UTC UELEN -USSR EAST SIBERIA 14 H AHEAD OF UTC APR 1 - SEP 30 -VANUATU 11 H AHEAD OF UTC (NEW HEBRIDES) -VANUATU 12 H AHEAD OF UTC SEP 25, '88-MAR 25, '89 -VANUATU (ESTIMATED) -VATICAN 1 H AHEAD OF UTC -VATICAN 2 H AHEAD OF UTC MAR 27 - SEP 24 -VIETNAM 7 H AHEAD OF UTC -VIRGIN ISLANDS 4 H BEHIND UTC ST.CROIX, ST.THOMAS, -VIRGIN ISLANDS ST.JOHN -WAKE ISLAND 12 H AHEAD OF UTC -WALES SEE ENGLAND -WALLIS/FUTUNA IS. 12 H AHEAD OF UTC -WINDWARD ISLANDS 4 H BEHIND UTC GRENADA, ST. LUCIA -YEMEN 3 H AHEAD OF UTC BOTH REPUBLICS -YUGOSLAVIA 1 H AHEAD OF UTC -YUGOSLAVIA 2 H AHEAD OF UTC MAR 27 - SEP 24 -ZAIRE EAST 1 H AHEAD OF UTC KINSHASA MBANDAKA -ZAIRE WEST 2 H AHEAD OF UTC LUBUMBASHI, KASAI, KIVU, -ZAIRE WEST HAUT-ZAIRE, SHABA -ZAMBIA 2 H AHEAD OF UTC -ZIMBABWE 2 H AHEAD OF UTC diff --git a/db/usno1989a b/db/usno1989a deleted file mode 100644 index b26a9d5..0000000 --- a/db/usno1989a +++ /dev/null @@ -1,450 +0,0 @@ -# From Arthur David Olson (1994-02-07): -# -# Here's time zone information from the United States Naval Observatory, -# with corrections from Paul Eggert. -# The USNO warns: -# DUE TO FREQUENT CHANGES IN THE LOCAL LAWS GOVERNING DAYLIGHT -# SAVING TIME, WE CANNOT GUARANTEE THE ACCURACY OF THIS -# INFORMATION. PLEASE ALERT US TO ANY DISCREPANCY YOU MAY -# DISCOVER. -# -AFGHANISTAN 4.5H AHEAD OF UTC -ALBANIA 1 H AHEAD OF UTC -ALBANIA 2 H AHEAD OF UTC MAR 27 - SEP 24 -ALBANIA (ESTIMATED) -ALGERIA 1 H AHEAD OF UTC -AMERICAN SAMOA 11 H BEHIND UTC -ANDORRA 1 H AHEAD OF UTC -ANDORRA 2 H AHEAD OF UTC MAR 27 - SEP 24 -ANDORRA (ESTIMATED) -ANGOLA 1 H AHEAD OF UTC -ARGENTINA 3 H BEHIND UTC -ARUBA 4 H BEHIND UTC ALSO BONAIRE, CURACAO, -ARUBA ST.MAARTEN -AUSTRALIA WEST 8 H AHEAD OF UTC PERTH, EXMOUTH -AUSTRALIA N.T. 9.5H AHEAD OF UTC DARWIN NO ADVANCED TIME -AUSTRALIA N.T. IN SUMMER -AUSTRALIA SOUTH 9.5H AHEAD OF UTC ADELAIDE -AUSTRALIA INCLUDING BROKEN HILL, NSW -AUSTRALIA SOUTH 10.5H AHEAD OF UTC ADELAIDE OCT 30, '88-MAR -AUSTRALIA SOUTH 18, '89 INCLUDING BROKEN -AUSTRIALIA SOUTH HILL, NSW -AUSTRALIA QUEENL 10 H AHEAD OF UTC -AUSTRALIA NSW 10 H AHEAD OF UTC SYDNEY -AUSTRALIA NSW 11 H AHEAD OF UTC SYDNEY OCT 30, '88-MAR 18, -AUSTRALIA NSW '89 -AUSTRALIA TASM. 10 H AHEAD OF UTC HOBART -AUSTRALIA TASM. 11 H AHEAD OF UTC HOBART OCT 30, '88-MAR 18, -AUSTRALIA TASM. '89 -AUSTRIA 1 H AHEAD OF UTC -AUSTRIA 2 H AHEAD OF UTC MAR 27 - SEPT 24 -AZORES SEE PORTUGAL -BAHAMAS 5 H BEHIND UTC EXCLUDING TURKS AND CAICOS -BAHAMAS ISLANDS) -BAHAMAS 4 H BEHIND UTC APR 3 - OCT 29 (SAME -BAHAMAS EXCLUSION) -BAHRAIN 3 H AHEAD OF UTC -BANGLADESH 6 H AHEAD OF UTC -BARBADOS 4 H BEHIND UTC -BELGIUM 1 H AHEAD OF UTC -BELGIUM 2 H AHEAD OF UTC MAR 27 - SEP 24 -BELIZE 6 H BEHIND UTC -BENIN PEOPLES REP 1 H AHEAD OF UTC DAHOMEY -BERMUDA 4 H BEHIND UTC -BERMUDA 3 H BEHIND UTC APR 3 - OCT 29 -BHUTAN 6 H AHEAD OF UTC -BOLIVIA 4 H BEHIND UTC -BONAIRE 4 H BEHIND UTC ALSO ARUBA,CURACAO, -BONAIRE ST.MAARTEN, SABA -BOTSWANA 2 H AHEAD OF UTC -BRAZIL WEST 5 H BEHIND UTC TERRITORY OF ACRE -BRAZIL WEST 4 H BEHIND UTC ACRE OCT 23, '88-FEB 11, -BRAZIL '89 (ESTIMATED) -BRAZIL CENTRAL 4 H BEHIND UTC MANAUS -BRAZIL CENTRAL 3 H BEHIND UTC MANAUS OCT 23, '88-FEB 11, -BRAZIL CENTRAL '89 (ESTIMATED) -BRAZIL EAST 3 H BEHIND UTC COASTAL STATES, RIO, SAO -BRAZIL EAST PAULO, BRASILIA -BRAZIL EAST 2 H BEHIND UTC COASTAL STATES, RIO, SAO -BRAZIL PAULO, BRASILIA OCT 23, -BRAZIL '88-FEB 11, '89 -BRAZIL (ESTIMATED) -BRAZIL 2 H BEHIND UTC ATLANTIC ISLANDS, FERNANDO -BRAZIL DE NORONHA -BRAZIL 1 H BEHIND UTC OCT 23, '88-FEB 11, '89 -BRAZIL (ESTIMATED) -BRAZIL 3 H BEHIND UTC FOR MOST MAJOR AIRPORTS. -BRITISH VIRGIN I. 4 H BEHIND UTC -BRUNEI 8 H AHEAD OF UTC -BULGARIA 2 H AHEAD OF UTC -BULGARIA 3 H AHEAD OF UTC MAR 27 - SEP 24 -BURKINA FASO ON UTC -BURMA 6.5H AHEAD OF UTC -BURUNDI 2 H AHEAD OF UTC -CAMBODIA SEE KAMPUCHEA -CAMEROON 1 H AHEAD OF UTC -CANADA NEW FDL 3.5H BEHIND UTC ST.JOHN'S -CANADA NEW FDL 1.5H BEHIND UTC APR 3 - OCT 29 -CANADA ATLANTIC 4 H BEHIND UTC HALIFAX -CANADA ATLANTIC 3 H BEHIND UTC APR 3 - OCT 29 -CANADA EASTERN 5 H BEHIND UTC TORONTO, MONTREAL, OTTAWA -CANADA EASTERN 4 H BEHIND UTC APR 3 - OCT 29 -CANADA CENTRAL 6 H BEHIND UTC REGINA, WINNIPEG -CANADA CENTRAL 5 H BEHIND UTC APR 3 - OCT 29 -CANADA MOUNTAIN 7 H BEHIND UTC CALGARY, EDMONTON -CANADA MOUNTAIN 6 H BEHIND UTC APR 3 - OCT 29 -CANADA PACIFIC 8 H BEHIND UTC VANCOUVER -CANADA PACIFIC 7 H BEHIND UTC APR 3 - OCT 29 -CANADA YUKON SAME AS PACIFIC DAWSON -CAPE VERDE 1 H BEHIND UTC -CAYMAN ISLANDS 5 H BEHIND UTC -CAROLINE ISLAND 10 H AHEAD OF UTC EXCLUDING PONAPE IS., -CAROLINE ISLAND KUSAIE, AND PINGELAP -CENTRAL AFRICA 1 H AHEAD OF UTC -CEYLON 5.5H AHEAD OF UTC, SEE SRI LANKA -CHAD 1 H AHEAD OF UTC -CHANNEL ISLANDS SEE ENGLAND -CHILE 4 H BEHIND UTC CONTINENTAL -CHILE 3 H BEHIND UTC OCT 9, '88-MAR 11, '89 -CHILE 6 H BEHIND UTC EASTER ISLAND -CHILE 5 H BEHIND UTC OCT 9, '88-MAR 11, '89 -CHINA 8 H AHEAD OF UTC ALL OF CHINA, INCL TAIWAN -CHINA 9 H AHEAD OF UTC APR 17 - SEP 10 -COCOS (Keeling) I. 6.5H AHEAD OF UTC -COLOMBIA 5 H BEHIND UTC -COMOROS 3 H AHEAD OF UTC -CONGO 1 H AHEAD OF UTC -COOK ISLANDS 10 H BEHIND UTC -COOK ISLANDS 9.5H BEHIND UTC OCT 30, '88-MAR 24, '89 -COOK ISLANDS (ESTIMATED) -COSTA RICA 6 H BEHIND UTC -COTE D'IVOIRE ON UTC -CUBA 5 H BEHIND UTC -CUBA 4 H BEHIND UTC MAR 20 - OCT 8 -CURACAO 4 H BEHIND UTC ALSO BONAIRE, ARUBA, -CURACAO ST.MAARTEN -CYPRUS 2 H AHEAD OF UTC -CYPRUS 3 H AHEAD OF UTC MAR 27 - SEP 24 -CZECHOSLOVAKIA 1 H AHEAD OF UTC -CZECHOSLOVAKIA 2 H AHEAD OF UTC MAR 27 - SEP 24 -DENMARK 1 H AHEAD OF UTC -DENMARK 2 H AHEAD OF UTC MAR 27 - SEP 24 -DENMK. FAEROE IS 1 H AHEAD OF UTC MAR 27 - SEP 24 -DJIBOUTI 3 H AHEAD OF UTC -DOMINICA 4 H BEHIND UTC -DOMINICAN REP 4 H BEHIND UTC -ECUADOR 5 H BEHIND UTC CONTINENTAL -ECUADOR 6 H BEHIND UTC GALAPAGOS ISLANDS -EGYPT 2 H AHEAD OF UTC -EGYPT 3 H AHEAD OF UTC MAY 17 - SEP 30 (AFTER -EGYPT RAMADAN) -EL SALVADOR 6 H BEHIND UTC -ENGLAND ON UTC (WALES, SCOTLAND, N.I., -ENGLAND CH. IS.) -ENGLAND 1 H AHEAD OF UTC MAR 27 - OCT 22 -EQUATORIAL GUINEA 1 H AHEAD OF UTC -ETHIOPIA 3 H AHEAD OF UTC -FALKLAND ISLANDS 4 H BEHIND UTC -FALKLAND ISLANDS 3 H BEHIND UTC SEP 11, '88-APR 15, '89 -FALKLAND ISLANDS (ESTIMATED) -FAROE ISLAND ON UTC -FAROE ISLAND 1 H AHEAD OF UTC MAR 27 - SEP 24 -FIJI 12 H AHEAD OF UTC -FINLAND 2 H AHEAD OF UTC -FINLAND 3 H AHEAD OF UTC MAR 27 - SEP 24 -FRANCE 1 H AHEAD OF UTC -FRANCE 2 H AHEAD OF UTC MAR 27 - SEP 24 -FRENCH GUIANA 3 H BEHIND UTC -FRENCH POLYNESIA 9 H BEHIND UTC GAMBIER ISLAND -FRENCH POLYNESIA 9.5H BEHIND UTC MARQUESAS ISLANDS -FRENCH POLYNESIA 10 H BEHIND UTC SOCIETY ISLANDS, TUBUAI -FRENCH POLYNESIA ISLANDS, TUAMOTU ISLAND, -FRENCH POLYNESIA TAHITI -GABON 1 H AHEAD OF UTC -GAMBIA ON UTC -GERMANY ALL 1 H AHEAD OF UTC -GERMANY ALL 2 H AHEAD OF UTC MAR 27 - SEP 24 -GHANA ON UTC -GIBRALTAR 1 H AHEAD OF UTC -GIBRALTAR 2 H AHEAD OF UTC MAR 27 - SEP 24 -GREECE 2 H AHEAD OF UTC -GREECE 3 H AHEAD OF UTC MAR 27 - SEP 24 -GREENLAND 4 H BEHIND UTC THULE AIRBASE YEAR ROUND -GREENLAND 3 H BEHIND UTC ANGMAGSSALIK AND W. COAST -GREENLAND 2 H BEHIND UTC MAR 27 - SEP 24 -GREENLAND 1 H BEHIND UTC SCORESBYSUND -GREENLAND ON UTC MAR 27 - SEP 24 -GRENADA 4 H BEHIND UTC -GUADELOUPE 4 H BEHIND UTC ST. BARTHELEMY, NORTHERN -GUADELOUPE ST. MARTIN MARTINIQUE -GUAM 10 H AHEAD OF UTC -GUATEMALA 6 H BEHIND UTC -GUINEA ON UTC -GUINEA BISSAU ON UTC -GUINEA REPUBLIC ON UTC -GUINEA EQUATORIAL 1 H AHEAD OF UTC -GUYANA 3 H BEHIND UTC -HAITI 5 H BEHIND UTC -HAITI 4 H BEHIND UTC APR 3 - OCT 29 -HOLLAND SEE NETHERLANDS -HONDURAS 6 H BEHIND UTC -HONG KONG 8 H AHEAD OF UTC -HUNGARY 1 H AHEAD OF UTC -HUNGARY 2 H AHEAD OF UTC MAR 27 - SEP 24 -ICELAND ON UTC -INDIA 5.5H AHEAD OF UTC INCLUDING ANDAMAN ISLANDS -INDONESIA WEST 7 H AHEAD OF UTC SUMATRA, JAVA, BALI, -INDONESIA WEST JAKARTA -INDONESIA CENTRAL 8 H AHEAD OF UTC KALIMANTAN, SULAWESI -INDONESIA EAST 9 H AHEAD OF UTC IRIAN, BARAT -IRAN 3.5H AHEAD OF UTC -IRAQ 3 H AHEAD OF UTC -IRAQ 4 H AHEAD OF UTC APR 1 - SEP 30 -IRELAND ON UTC -IRELAND 1 H AHEAD OF UTC MAR 27 - OCT 22 -ISRAEL 2 H AHEAD OF UTC -ISRAEL 3 H AHEAD OF UTC APR 10 - SEP 3 -ITALY 1 H AHEAD OF UTC -ITALY 2 H AHEAD OF UTC MAR 27 - SEP 24 -IVORY COAST ON UTC -JAMAICA 5 H BEHIND UTC -JAPAN 9 H AHEAD OF UTC -JOHNSTON ISLAND 10 H BEHIND UTC -JORDAN 2 H AHEAD OF UTC -JORDAN 3 H AHEAD OF UTC APR 1 - OCT 6 -KAMPUCHEA 7 H AHEAD OF UTC -KENYA 3 H AHEAD OF UTC -KIRIBATI, REP OF 12 H AHEAD OF UTC CANTON, ENDERBURY ISLANDS -KIRIBATI, REP OF 11 H AHEAD OF UTC CHRISTMAS ISLAND -KOREA 9 H AHEAD OF UTC -KOREA, REP OF 9 H AHEAD OF UTC -KOREA, REP OF 10 H AHEAD OF UTC MAY 8 - OCT 8 -KUWAIT 3 H AHEAD OF UTC -KUSAIE, PINGELAP 12 H AHEAD OF UTC INCLUDING MARSHALL IS., -KUSAIE, PINGELAP EXCLUDING KWAJALEIN) -KWAJALEIN 12 H BEHIND UTC -LAOS 7 H AHEAD OF UTC -LEBANON 2 H AHEAD OF UTC -LEBANON 3 H AHEAD OF UTC JUN 1 - OCT 31 -LEEWARD ISLANDS 4 H BEHIND UTC ANTIGUA, DOMINICA, -LEEWARD ISLANDS MONTSERRAT, ST. -LEEWARD ISLAANDS CHRISTOPHER, ST. KITTS, -LEEWARD ISLANDS NEVIS, ANGUILLA -LESOTHO 2 H AHEAD OF UTC -LIBERIA ON UTC -LIBYAN ARAB 1 H AHEAD OF UTC JAMAHIRIYA/LIBYA -LIBYAN ARAB 2 H AHEAD OF UTC APR 1 - SEP 30 JAMAHIRIYA/LIBYA -LIECHTENSTEIN 1 H AHEAD OF UTC -LIECHTENSTEIN 2 H AHEAD OF UTC MAR 27 - SEP 24 -LUXEMBOURG 1 H AHEAD OF UTC -LUXEMBOURG 2 H AHEAD OF UTC MAR 27 - SEP 24 -MACAO 8 H AHEAD OF UTC -MADAGASCAR 3 H AHEAD OF UTC -MADEIRA SEE PORTUGAL -MALAWI 2 H AHEAD OF UTC -MALAYSIA 8 H AHEAD OF UTC -MALDIVES 5 H AHEAD OF UTC -MALI ON UTC -MALTA 1 H AHEAD OF UTC -MALTA 2 H AHEAD OF UTC MAR 27 - SEP 24 -MARTINIQUE 4 H BEHIND UTC -MAURITANIA ON UTC -MAURITIUS 4 H AHEAD OF UTC -MARIANA ISLANDS 10 H AHEAD OF UTC EXCLUDING GUAM -MEXICO BAJA CAL N 7 H BEHIND UTC BAJA CALIFORNIA SUR AND -MEXICO BAJA CAL N N. PACIFIC COAST (STATES -MEXICO BAJA CAL N OF SINALOA AND SONORA) -MEXICO BAJA CAL N 8 H BEHIND UTC ABOVE 28TH PARALLAL APR 3 -MEXICO BAJA CAL N - OCT 29 -MEXICO BAJA CAL N 7 H BEHIND UTC ABOVE 28TH PARALLAL APR 3 -MEXICO BAJA CAL N - 0CT 29 -MEXICO 6 H BEHIND UTC STATES OF DURANGO, -MEXICO COAHUILA, NUEVO LEON, -MEXICO TAMAULIPAS -MEXICO 5 H BEHIND UTC STATES OF DURANGO, -MEXICO COAHUILA, NUEVO LEON, -MEXICO TAMAULIPAS APR 3 - OCT 29 -MEXICO 6 H BEHIND UTC GENERAL MEXICO, STATES OF -MEXICO CAMPECHE, QUINTANA ROO AND -MEXICO YUCATAN -MIDWAY ISLAND 11 H BEHIND UTC -MONACO 1 H AHEAD OF UTC -MONACO 2 H AHEAD OF UTC MAR 27 - SEP 24 -MONGOLIA 8 H AHEAD OF UTC -MONGOLIA 9 H AHEAD OF UTC MAR 27 - SEP 24 -MONTSERRAT 4 H BEHIND UTC -MOROCCO ON UTC -MOZAMBIQUE 2 H AHEAD OF UTC -NAMIBIA 2 H AHEAD OF UTC -NAURU, REP OF 12 H AHEAD OF UTC -NEPAL 5H45M AHEAD OF UTC -NETHERLANDS 1 H AHEAD OF UTC -NETHERLANDS 2 H AHEAD OF UTC MAR 27 - SEP 24 -NETHERLANDS 4 H BEHIND UTC ANTILLES AND SOUTHERN ST. -NETHERLANDS MAARTEN -NEW CALEDONIA 11 H AHEAD OF UTC -NEW HEBRIDES SEE VANUATU -NEW ZEALAND 12 H AHEAD OF UTC (EXCLUDING CHATHAM ISLAND) -NEW ZEALAND 13 H AHEAD OF UTC OCT 30, '88-MAR 4, '89 -NEW ZEALAND 12H45M AHEAD OF UTC CHATHAM ISLAND -NICARAGUA 6 H BEHIND UTC -NIGER 1 H AHEAD OF UTC -NIGERIA 1 H AHEAD OF UTC -NIUE ISLAND 11 H BEHIND UTC -NORFOLK ISLAND 11H30M AHEAD OF UTC -NORTHERN IRELAND ON UTC WALES, SCOTLAND, N.I., -NORTHERN IRELAND CH.IS. -NORTHERN IRELAND 1 H AHEAD OF UTC MAR 27 - OCT 22 -NORWAY 1 H AHEAD OF UTC -NORWAY 2 H AHEAD OF UTC MAR 27 - SEP 24 -OMAN 4 H AHEAD OF UTC -PACIFIC ISLAND T.T. -PALAU ISLANDS 9 H AHEAD OF UTC -PAKISTAN 5 H AHEAD OF UTC -PANAMA 5 H BEHIND UTC -PAPUA NEW GUINEA 10 H AHEAD OF UTC INCLUDING BOUGAINVILLE -PAPUA NEW GUINEA ISLAND -PARAGUAY 4 H BEHIND UTC -PARAGUAY 3 H BEHIND UTC OCT 1, '88-MAR 31, '89 -PERU 5 H BEHIND UTC -PHILIPPINES 8 H AHEAD OF UTC -PONAPE ISLAND 11 H AHEAD OF UTC -POLAND 1 H AHEAD OF UTC -POLAND 2 H AHEAD OF UTC MAR 27 - SEP 24 -PORTUGAL MAINLAND ON UTC -PORTUGAL MAINLAND 1 H AHEAD OF UTC MAR 27 - SEP 24 -PORTUGAL AZORES 1 H BEHIND UTC -PORTUGAL AZORES ON UTC MAR 27 - SEP 24 -PORTUGAL MADEIRA ON UTC -PORTUGAL MADEIRA 1 H AHEAD OF UTC MAR 27 - SEP 24 -PUERTO RICO 4 H BEHIND UTC -QATAR 3 H AHEAD OF UTC -ROMANIA 2 H AHEAD OF UTC -ROMANIA 3 H AHEAD OF UTC MAR 27 - SEP 24 -RUSSIA SEE USSR -RWANDA 2 H AHEAD OF UTC -SABA 4 H BEHIND UTC ALSO BONAIRE, CURACAO, -SAMOA 11 H BEHIND UTC -SAN MARINO 1 H AHEAD OF UTC -SAN MARINO 2 H AHEAD OF UTC MAR 27 - SEP 24 -SAN SALVADOR 6 H BEHIND UTC -SAO TOME ISLAND ON UTC AND PRINCIPE ISLAND -SAUDI ARABIA 3 H AHEAD OF UTC -SCOTLAND SEE ENGLAND -SENEGAL ON UTC -SEYCHELLES 4 H AHEAD OF UTC -SIERRA LEONE ON UTC -SINGAPORE 8 H AHEAD OF UTC -SOLOMON ISLANDS 11 H AHEAD OF UTC EXCLUDING BOUGAINVILLE -SOLOMON ISLANDS ISLAND -SOMALI 3 H AHEAD OF UTC -SOUTH AFRICA 2 H AHEAD OF UTC -SPAIN CANARY IS ON UTC -SPAIN CANARY IS 1 H AHEAD OF UTC MAR 27 - SEP 24 -SPAIN 1 H AHEAD OF UTC CONTINENTAL, BALEARIC AND -SPAIN MALLORCA ISLANDS -SPAIN 2 H AHEAD OF UTC CONTINENTAL, BALEARIC AND -SPAIN MALLORCA ISLANDS MAR 27 - -SPAIN SEP 24 -SPAIN MAINLAND 1 H AHEAD OF UTC MELILLA -SPAIN MAINLAND 2 H AHEAD OF UTC MAR 27 - SEP 24 -SRI LANKA 5H30M AHEAD OF UTC -ST. MAARTEN -ST. KITTS-NEVIS 4 H BEHIND UTC -ST. LUCIA 4 H BEHIND UTC -ST. PIERRE 3 H BEHIND UTC INCLUDING MIQUELON -ST. PIERRE 2 H BEHIND UTC INLCUDING MIQUELON APR 3 -ST. PIERRE - OCT 29 -ST. VINCENT 4 H BEHIND UTC INCLUDING THE GRENADINES -ST. HELENA ON UTC -SUDAN 2 H AHEAD OF UTC -SURINAME 3 H BEHIND UTC -SWAZILAND 2 H AHEAD OF UTC -SWEDEN 1 H AHEAD OF UTC -SWEDEN 2 H AHEAD OF UTC MAR 27 - SEP 24 -SWITZERLAND 1 H AHEAD OF UTC -SWITZERLAND 2 H AHEAD OF UTC MAR 27 - SEP 24 -SYRIA 2 H AHEAD OF UTC -SYRIA 3 H AHEAD OF UTC MAR 15 - OCT 30 -TAHITI 10 H BEHIND UTC -TAIWAN 8 H AHEAD OF UTC -TANZANIA 3 H AHEAD OF UTC -THAILAND 7 H AHEAD OF UTC -TOGO ON UTC -TRINIDAD / TOBAGO 4 H BEHIND UTC -TUNISIA 1 H AHEAD OF UTC -TUNISIA 2 H AHEAD OF UTC APR 10 - SEP 24 -TURKEY 2 H AHEAD OF UTC -TURKEY 3 H AHEAD OF UTC MAR 27 - SEP 24 -TURKS AND CAICOS 5 H BEHIND UTC -TURKS AND CAICOS 4 H BEHIND UTC APR 3 - OCT 29 -TUVALU 12 H AHEAD OF UTC -UGANDA 3 H AHEAD OF UTC -UNITED ARAB EMIR. 4 H AHEAD OF UTC ABU DHABI, DUBAI, SHARJAH, -UNITED ARAB EMIR RAS AL KHAIMAH -UNITED KINGDOM ON UTC WALES, SCOTLAND, N.I., CH. -UNITED KINGDOM IS. -UNITED KINGDOM 1 H AHEAD OF UTC MAR 27 - OCT 22 -UNITED STATES SEE USA -UPPER VOLTA ON UTC -URUGUAY 3 H BEHIND UTC -URUGUAY 2 H BEHIND UTC DEC 11, '88-FEB 25, '89 -URAGUAY (ESTIMATED) -USA EASTERN 5 H BEHIND UTC NEW YORK, WASHINGTON -USA EASTERN 4 H BEHIND UTC APR 3 - OCT 30 -USA CENTRAL 6 H BEHIND UTC CHICAGO, HOUSTON -USA CENTRAL 5 H BEHIND UTC APR 3 - OCT 30 -USA MOUNTAIN 7 H BEHIND UTC DENVER -USA MOUNTAIN 6 H BEHIND UTC APR 3 - OCT 30 -USA PACIFIC 8 H BEHIND UTC L.A., SAN FRANCISCO -USA PACIFIC 7 H BEHIND UTC APR 3 - OCT 30 -USA ALASKA STD 9 H BEHIND UTC MOST OF ALASKA (AKST) -USA ALASKA STD 8 H BEHIND UTC APR 3 - OCT 30 (AKDT) -USA ALEUTIAN 10 H BEHIND UTC ISLANDS WEST OF 170W -USA - " - 9 H BEHIND UTC APR 3 - OCT 30 -USA HAWAII 10 H BEHIND UTC -USA BERING 11 H BEHIND UTC SAMOA, MIDWAY -USA FOR SPECIFIC INFO ON USA ZONES/TIMES CALL DOT 202-426-4520 -USSR WEST EUROP 3 H AHEAD OF UTC LENINGRAD, MOSCOW -USSR WEST EUROP 4 H AHEAD OF UTC APR 1 - SEP 30 -USSR CENTRAL EUR 4 H AHEAD OF UTC ROSTOV, BAKU -USSR CENTRAL EUR 5 H AHEAD OF UTC APR 1 - SEP 30 -USSR EAST EUROP 5 H AHEAD OF UTC SVERDLOVSK -USSR EAST EUROP 6 H AHEAD OF UTC APR 1 - SEP 30 -USSR WEST SIBERIAN 6 H AHEAD OF UTC TASHKENT, ALMA ATA -USSR WEST SIBERIAN 7 H AHEAD OF UTC APR 1 - SEP 30 -USSR WEST-CENTRAL 7 H AHEAD OF UTC NOVOSIBIRSK -USSR WEST-CENTRAL 8 H AHEAD OF UTC APR 1 - SEP 30 -USSR WEST-CENTRAL 8 H AHEAD OF UTC IRKUTSK -USSR WEST-CENTRAL 9 H AHEAD OF UTC APR 1 - SEP 30 -USSR CENTRAL SIB 9 H AHEAD OF UTC YAKUTSK -USSR CENTRAL SIB 10 H AHEAD OF UTC APR 1 - SEP 30 -USSR CENTRAL SIB 10 H AHEAD OF UTC VLADIVOSTOK -USSR CENTRAL SIB 11 H AHEAD OF UTC APR 1 - SEP 30 -USSR EAST SIBERIA 11 H AHEAD OF UTC MAGADAN -USSR EAST SIBERIA 12 H AHEAD OF UTC APR 1 - SEP 30 -USSR EAST SIBERIA 12 H AHEAD OF UTC PETROPAVLOVSK -USSR EAST SIBERIA 13 H AHEAD OF UTC APR 1 - SEP 30 -USSR EAST SIBERIA 13 H AHEAD OF UTC UELEN -USSR EAST SIBERIA 14 H AHEAD OF UTC APR 1 - SEP 30 -VANUATU 11 H AHEAD OF UTC (NEW HEBRIDES) -VANUATU 12 H AHEAD OF UTC SEP 25, '88-MAR 25, '89 -VANUATU (ESTIMATED) -VATICAN 1 H AHEAD OF UTC -VATICAN 2 H AHEAD OF UTC MAR 27 - SEP 24 -VENEZUELA 4 H BEHIND UTC -VIETNAM 7 H AHEAD OF UTC -VIRGIN ISLANDS 4 H BEHIND UTC ST.CROIX, ST.THOMAS, -VIRGIN ISLANDS ST.JOHN -WAKE ISLAND 12 H AHEAD OF UTC -WALES SEE ENGLAND -WALLIS/FUTUNA IS. 12 H AHEAD OF UTC -WINDWARD ISLANDS 4 H BEHIND UTC GRENADA, ST. LUCIA -YEMEN 3 H AHEAD OF UTC BOTH REPUBLICS -YUGOSLAVIA 1 H AHEAD OF UTC -YUGOSLAVIA 2 H AHEAD OF UTC MAR 27 - SEP 24 -ZAIRE EAST 1 H AHEAD OF UTC KINSHASA MBANDAKA -ZAIRE WEST 2 H AHEAD OF UTC LUBUMBASHI, KASAI, KIVU, -ZAIRE WEST HAUT-ZAIRE, SHABA -ZAMBIA 2 H AHEAD OF UTC -ZIMBABWE 2 H AHEAD OF UTC diff --git a/db/usno1995 b/db/usno1995 deleted file mode 100644 index a5ee0ae..0000000 --- a/db/usno1995 +++ /dev/null @@ -1,324 +0,0 @@ -# From Arthur David Olson (1995-12-21): -# -# Here's time zone information from the United States Naval Observatory -# via http://tycho.usno.navy.mil/tzones.html. See USNO's note at the end. -World Time Zones -For selected countries, the local standard time offset from UTC is given, -with daylight savings time where observed. -Time: Thu Dec 21 17:43:00 utc 1995 -Afghanistan: +4.5 hours -Albania: +1 hours (Local summer +2 hours) -Algeria: +1 hours (Local summer +2 hours) -American Samoa: -11 hours -Andorra: +1 hours (Local summer +2 hours) -Angola: +1 hours -Anguilla: -4 hours -Antarctica: -2 hours (Local summer -3 hours) -Antigua: -4 hours -Argentina: -3 hours -Argentina western prov: -4 hours -Armenia: +4 hours (Local summer +5 hours) -Aruba: -4 hours -Ascension: 0 hours -Australia Northern Territory: +9.5 hours -Australia Lord Howe Island: +10.5 hours (Local summer +11 hours) -Australia New South Wales: +10 hours (Local summer +11 hours) -Australia Queensland: +10 hours -Australia Victoria: +10 hours (Local summer +11 hours) -Australia Australian Capital Territory: +10 hours (Local summer +11 hours) -Australia South: +9.5 hours (Local summer +10.5 hours) -Australia Tasmania: +10 hours (Local summer +11 hours) -Australia Western: +8 hours -Austria: +1 hours (Local summer +2 hours) -Azerbajian: +3 hours -Azores: -1 hours (Local summer 0 hours) -Bahamas: -5 hours (Local summer -4 hours) -Bahrain: +3 hours -Balearic Islands: +1 hours (Local summer +2 hours) -Bangladesh: +6 hours -Barbados: -4 hours -Belarus: +2 hours (Local summer +3 hours) -Belgium: +1 hours (Local summer +2 hours) -Belize: -6 hours -Benin: +1 hours -Bermuda: -4 hours (Local summer -3 hours) -Bhutan: +6 hours -Bolivia: -4 hours -Bonaire: -4 hours -Bosnia Hercegovina: +1 hours (Local summer +2 hours) -Botswana: +2 hours -Brazil Acre: -4 hours (Local summer -5 hours) -Brazil Atlantic Islands: -1 hours (Local summer -2 hours) -Brazil East: -3 hours (Local summer -1 hours) -Brazil West: -4 hours (Local summer -3 hours) -British Virgin Islands: -4 hours -Brunei: +8 hours -Bulgaria: +2 hours (Local summer +3 hours) -Burkina Faso: 0 hours -Burundi: +2 hours -Cambodia: +7 hours -Cameroon: +1 hours -Canada Central: -6 hours (Local summer -5 hours) -Canada Eastern: -5 hours (Local summer -4 hours) -Canada Mountain: -7 hours (Local summer -6 hours) -Canada Yukon & Pacific: -8 hours (Local summer -7 hours) -Canada Atlantic: -4 hours (Local summer -3 hours) -Canada Newfoundland: -3.5 hours (Local summer -2.5 hours) -Canary Islands: 0 hours (Local summer +1 hours) -Canton Enderbury Islands: -11 hours -Cape Verde: -1 hours -Caroline Island: +11 hours -Cayman Islands: -5 hours -Central African Rep: +1 hours -Chad: +1 hours -Channel Islands: 0 hours (Local summer +1 hours) -Chatham Island: +12.75 hours (Local summer +13.75 hours) -Chile: -4 hours (Local summer -3 hours) -China People's Rep: +8 hours -Christmas Islands: -10 hours -Cocos (Keeling) Islands: ( hours (Local summer ) hours) -Colombia: -5 hours -Congo: +1 hours -Cook Islands: -10 hours -Costa Rica: -6 hours -Cote d'Ivoire: 0 hours -Croatia: +1 hours (Local summer +2 hours) -Cuba: -5 hours (Local summer -4 hours) -Curacao: -4 hours -Cyprus: +2 hours (Local summer +3 hours) -Czech Republic: +1 hours (Local summer +2 hours) -Dahomey: +1 hours -Denmark: +1 hours (Local summer +2 hours) -Djibouti: +3 hours -Dominica: -4 hours -Dominican Republic: -4 hours -Easter Island: -6 hours (Local summer -5 hours) -Ecuador: -5 hours -Egypt: +2 hours (Local summer +3 hours) -El Salvador: -6 hours -England: 0 hours (Local summer +1 hours) -Equatorial Guinea: +1 hours -Eritrea: +3 hours -Estonia: +2 hours (Local summer +3 hours) -Ethiopia: +3 hours -Falkland Islands: -4 hours (Local summer -3 hours) -Faroe Island: 0 hours (Local summer +1 hours) -Fiji: +12 hours -Finland: +2 hours (Local summer +3 hours) -France: +1 hours (Local summer +2 hours) -French Guiana: -3 hours -French Polynesia: -10 hours -Gabon: +1 hours -Galapagos Islands: -6 hours -Gambia: 0 hours -Gambier Island: -9 hours -Georgia: +4 hours -Germany: +1 hours (Local summer +2 hours) -Ghana: 0 hours -Gibraltar: +1 hours (Local summer +2 hours) -Greece: +2 hours (Local summer +3 hours) -Greenland: -3 hours (Local summer -2 hours) -Greenland Thule: -4 hours (Local summer -3 hours) -Greenland Scoresbysun: -1 hours (Local summer 0 hours) -Grenada: -4 hours -Grenadines: -4 hours -Guadeloupe: -4 hours -Guam: +10 hours -Guatemala: -6 hours -Guinea: 0 hours -Guinea Bissau: - hours (Local summer 0 hours) -Guyana: -3 hours -Haiti: -5 hours (Local summer -4 hours) -Honduras: -6 hours -Hong kong: +8 hours -Hungary: +1 hours (Local summer +2 hours) -Iceland: 0 hours -India: +5.5 hours -Indonesia Central: +8 hours -Indonesia East: +9 hours -Indonesia West: +7 hours -Iran: +3.5 hours -Iraq: +3 hours (Local summer +4 hours) -Ireland Republic of: 0 hours (Local summer +1 hours) -Israel: +2 hours (Local summer +3 hours) -Italy: +1 hours (Local summer +2 hours) -Jamaica: -5 hours -Japan: +9 hours -Johnston Island: -10 hours -Jordan: +2 hours (Local summer +3 hours) -Kazakhstan: +6 hours (Local summer +7 hours) -Kenya: +3 hours -Kiribati: +12 hours -Korea Dem Republic of: +9 hours -Korea Republic of: +9 hours -Kusaie: +12 hours -Kuwait: +3 hours -Kwajalein: -12 hours -Kyrgyzstan: +5 hours (Local summer +6 hours) -Laos: +7 hours -Latvia: +2 hours (Local summer +3 hours) -Lebanon: +2 hours (Local summer +3 hours) -Leeward Islands: -4 hours -Lesotho: +2 hours -Liberia: 0 hours -Libya: +2 hours -Lithuania: +2 hours (Local summer +3 hours) -Luxembourg: +1 hours (Local summer +2 hours) -Macedonia: +1 hours (Local summer +2 hours) -Madagascar: +3 hours -Madeira: 0 hours (Local summer +1 hours) -Malawi: +2 hours -Malaysia: +8 hours -Maldives: +5 hours -Mali: 0 hours -Mallorca Islands: +1 hours (Local summer +2 hours) -Malta: +1 hours (Local summer +2 hours) -Mariana Island: +10 hours -Marquesas Islands: -9.5 hours -Marshall Islands: +12 hours -Martinique: -4 hours -Mauritania: 0 hours -Mauritius: +4 hours -Mayotte: +3 hours -Melilla: +1 hours (Local summer +2 hours) -Mexico: -6 hours -Mexico Baja Calif Norte: -8 hours (Local summer -7 hours) -Mexico Nayarit: -7 hours -Mexico Sinaloa: -7 hours -Mexico Sonora: -7 hours -Midway Island: -11 hours -Moldova: +2 hours (Local summer +3 hours) -Moldovian Rep Pridnestrovye: +2 hours (Local summer +3 hours) -Monaco: +1 hours (Local summer +2 hours) -Mongolia: +8 hours -Morocco: 0 hours -Mozambique: +2 hours -Myanmar: +6.5 hours -Namibia: +1 hours (Local summer +2 hours) -Nauru Republic of: +12 hours -Nepal: +5.75 hours -Netherlands: +1 hours (Local summer +2 hours) -Netherlands Antilles: -4 hours -Nevis Montserrat: -4 hours -New Caledonia: +11 hours -New Hebrides: +11 hours -New Zealand: +12 hours (Local summer +13 hours) -Nicaragua: -6 hours (Local summer -5 hours) -Niger: +1 hours -Nigeria: +1 hours -Niue Island: -11 hours -Norfolk Island: +11.5 hours -Northern Ireland: 0 hours (Local summer +1 hours) -Northern Mariana Islands: +10 hours -Norway: +1 hours (Local summer +2 hours) -Oman: +4 hours -Pakistan: +5 hours -Palau: +9 hours -Panama: -5 hours -Papua New Guinea: +10 hours -Paraguay: -4 hours (Local summer -3 hours) -Peru: -5 hours -Philippines: +8 hours -Pingelap: +12 hours -Poland: +1 hours (Local summer +2 hours) -Ponape Island: +11 hours -Portugal: +1 hours (Local summer +2 hours) -Principe Island: 0 hours -Puerto Rico: -4 hours -Qatar: +3 hours -Reunion: +4 hours -Romania: +2 hours (Local summer +3 hours) -Russian Federation zone eight: +9 hours (Local summer +10 hours) -Russian Federation zone eleven: +12 hours (Local summer +13 hours) -Russian Federation zone five: +6 hours (Local summer +7 hours) -Russian Federation zone four: +5 hours (Local summer +6 hours) -Russian Federation zone nine: +10 hours (Local summer +11 hours) -Russian Federation zone one: +2 hours (Local summer +3 hours) -Russian Federation zone seven: +8 hours (Local summer +9 hours) -Russian Federation zone six: +7 hours (Local summer +8 hours) -Russian Federation zone ten: +11 hours (Local summer +12 hours) -Russian Federation zone three: +4 hours (Local summer +5 hours) -Russian Federation zone two: +4 hours (Local summer +5 hours) -Rwanda: +2 hours -Saba: -4 hours -Samoa: -11 hours -San Marino: +1 hours (Local summer +2 hours) -Sao Tome e Principe: 0 hours -Saudi Arabia: +3 hours -Scotland: 0 hours -Senegal: 0 hours -Seychelles: +4 hours -Sierra Leone: 0 hours -Singapore: +8 hours -Slovakia: +1 hours (Local summer +2 hours) -Slovenia: +1 hours (Local summer +2 hours) -Society Island: -10 hours -Solomon Islands: +11 hours -Somalia: +3 hours -South Africa: +2 hours -Spain: +1 hours (Local summer +2 hours) -Sri Lanka: +5.5 hours -St Christopher: -4 hours -St Croix: -4 hours -St Helena: 0 hours -St John: -4 hours -St Kitts Nevis: -4 hours -St Lucia: -4 hours -St Maarten: -4 hours -St Pierre & Miquelon: -3 hours (Local summer -2 hours) -St Thomas: -4 hours -St Vincent: -4 hours -Sudan: +2 hours -Suriname: -3 hours -Swaziland: +2 hours -Sweden: +1 hours (Local summer +2 hours) -Switzerland: +1 hours (Local summer +2 hours) -Syria: +2 hours (Local summer +3 hours) -Tahiti: -10 hours -Taiwan: +8 hours -Tajikistan: +6 hours -Tanzania: +3 hours -Thailand: +7 hours -Togo: 0 hours -Tonga: +13 hours -Trinidad and Tobago: -4 hours -Tuamotu Island: -10 hours -Tubuai Island: -10 hours -Tunisia: +1 hours -Turkey: +2 hours (Local summer +3 hours) -Turkmenistan: +5 hours -Turks and Caicos Islands: -5 hours (Local summer -4 hours) -Tuvalu: +12 hours -Uganda: +3 hours -Ukraine: +2 hours (Local summer +3 hours) -United Arab Emirates: +4 hours -United Kingdom: 0 hours (Local summer +1 hours) -USA Central: -6 hours (Local summer -5 hours) -USA Eastern: -5 hours (Local summer -4 hours) -USA Mountain: -7 hours (Local summer -6 hours) -USA Arizona: -7 hours -USA Indiana East: -5 hours -USA Pacific: -8 hours (Local summer -7 hours) -USA Alaska: -9 hours (Local summer -8 hours) -USA Hawaii Aleutian: - hours (Local summer -10 hours) -Uruguay: -3 hours -Uzbekistan: +5 hours -Vanuatu: +11 hours (Local summer +12 hours) -Vatican City: +1 hours (Local summer +2 hours) -Venezuela: -4 hours -Vietnam: +7 hours -Virgin Islands: -4 hours -Wake Island: +12 hours -Wales: 0 hours (Local summer +1 hours) -Wallis and Futuna Islands: +12 hours -Windward Islands: -4 hours -Yemen: +3 hours -Yugoslavia: +1 hours (Local summer +2 hours) -Zaire Kasai: +2 hours -Zaire Kinshasa Mbandaka: +1 hours -Zaire Haut Zaire: +2 hours -Zaire Kivu: +2 hours -Zaire Shaba: +2 hours -Zambia: +2 hours -Zimbabwe: +2 hours -All timezone information is non-authoritative... diff --git a/db/usno1997 b/db/usno1997 deleted file mode 100644 index b90be86..0000000 --- a/db/usno1997 +++ /dev/null @@ -1,325 +0,0 @@ -# From Arthur David Olson (1997-03-07): -# -# Here's time zone information from the United States Naval Observatory -# via http://tycho.usno.navy.mil/tzones.html. See USNO's note at the end. -Unofficial Time Zone Information -World Time Zones -For selected countries, the local standard time offset from UTC is given, with daylight savings time where observed. -Time: Fri Mar 7 22:38:58 UTC 1997 -Afghanistan: +4.5 hours -Albania: +1 hours (Local summer +2 hours) -Algeria: +1 hours (Local summer +2 hours) -American Samoa: -11 hours -Andorra: +1 hours (Local summer +2 hours) -Angola: +1 hours -Anguilla: -4 hours -Antarctica: -2 hours (Local summer -3 hours) -Antigua: -4 hours -Argentina: -3 hours -Argentina western prov: -4 hours -Armenia: +4 hours (Local summer +5 hours) -Aruba: -4 hours -Ascension: 0 hours -Australia Northern Territory: +9.5 hours -Australia Lord Howe Island: +10.5 hours (Local summer +11 hours) -Australia New South Wales: +10 hours (Local summer +11 hours) -Australia Queensland: +10 hours -Australia Victoria: +10 hours (Local summer +11 hours) -Australia Australian Capital Territory: +10 hours (Local summer +11 hours) -Australia South: +9.5 hours (Local summer +10.5 hours) -Australia Tasmania: +10 hours (Local summer +11 hours) -Australia Western: +8 hours -Austria: +1 hours (Local summer +2 hours) -Azerbajian: +3 hours -Azores: -1 hours (Local summer 0 hours) -Bahamas: -5 hours (Local summer -4 hours) -Bahrain: +3 hours -Balearic Islands: +1 hours (Local summer +2 hours) -Bangladesh: +6 hours -Barbados: -4 hours -Belarus: +2 hours (Local summer +3 hours) -Belgium: +1 hours (Local summer +2 hours) -Belize: -6 hours -Benin: +1 hours -Bermuda: -4 hours (Local summer -3 hours) -Bhutan: +6 hours -Bolivia: -4 hours -Bonaire: -4 hours -Bosnia Hercegovina: +1 hours (Local summer +2 hours) -Botswana: +2 hours -Brazil Acre: -4 hours (Local summer -5 hours) -Brazil Atlantic Islands: -1 hours (Local summer -2 hours) -Brazil East: -3 hours (Local summer -1 hours) -Brazil West: -4 hours (Local summer -3 hours) -British Virgin Islands: -4 hours -Brunei: +8 hours -Bulgaria: +2 hours (Local summer +3 hours) -Burkina Faso: 0 hours -Burundi: +2 hours -Cambodia: +7 hours -Cameroon: +1 hours -Canada Central: -6 hours (Local summer -5 hours) -Canada Eastern: -5 hours (Local summer -4 hours) -Canada Mountain: -7 hours (Local summer -6 hours) -Canada Yukon & Pacific: -8 hours (Local summer -7 hours) -Canada Atlantic: -4 hours (Local summer -3 hours) -Canada Newfoundland: -3.5 hours (Local summer -2.5 hours) -Canary Islands: 0 hours (Local summer +1 hours) -Canton Enderbury Islands: -11 hours -Cape Verde: -1 hours -Caroline Island: +11 hours -Cayman Islands: -5 hours -Central African Rep: +1 hours -Chad: +1 hours -Channel Islands: 0 hours (Local summer +1 hours) -Chatham Island: +12.75 hours (Local summer +13.75 hours) -Chile: -4 hours (Local summer -3 hours) -China People's Rep: +8 hours -Christmas Islands: -10 hours -Cocos (Keeling) Islands: ( hours (Local summer ) hours) -Colombia: -5 hours -Congo: +1 hours -Cook Islands: -10 hours -Costa Rica: -6 hours -Cote d'Ivoire: 0 hours -Croatia: +1 hours (Local summer +2 hours) -Cuba: -5 hours (Local summer -4 hours) -Curacao: -4 hours -Cyprus: +2 hours (Local summer +3 hours) -Czech Republic: +1 hours (Local summer +2 hours) -Dahomey: +1 hours -Denmark: +1 hours (Local summer +2 hours) -Djibouti: +3 hours -Dominica: -4 hours -Dominican Republic: -4 hours -Easter Island: -6 hours (Local summer -5 hours) -Ecuador: -5 hours -Egypt: +2 hours (Local summer +3 hours) -El Salvador: -6 hours -England: 0 hours (Local summer +1 hours) -Equatorial Guinea: +1 hours -Eritrea: +3 hours -Estonia: +2 hours (Local summer +3 hours) -Ethiopia: +3 hours -Falkland Islands: -4 hours (Local summer -3 hours) -Faroe Island: 0 hours (Local summer +1 hours) -Fiji: +12 hours -Finland: +2 hours (Local summer +3 hours) -France: +1 hours (Local summer +2 hours) -French Guiana: -3 hours -French Polynesia: -10 hours -Gabon: +1 hours -Galapagos Islands: -5 hours -Gambia: 0 hours -Gambier Island: -9 hours -Georgia: +4 hours -Germany: +1 hours (Local summer +2 hours) -Ghana: 0 hours -Gibraltar: +1 hours (Local summer +2 hours) -Greece: +2 hours (Local summer +3 hours) -Greenland: -3 hours (Local summer -2 hours) -Greenland Thule: -4 hours (Local summer -3 hours) -Greenland Scoresbysun: -1 hours (Local summer 0 hours) -Grenada: -4 hours -Grenadines: -4 hours -Guadeloupe: -4 hours -Guam: +10 hours -Guatemala: -6 hours -Guinea: 0 hours -Guinea Bissau: - hours (Local summer 0 hours) -Guyana: -3 hours -Haiti: -5 hours (Local summer -4 hours) -Honduras: -6 hours -Hong kong: +8 hours -Hungary: +1 hours (Local summer +2 hours) -Iceland: 0 hours -India: +5.5 hours -Indonesia Central: +8 hours -Indonesia East: +9 hours -Indonesia West: +7 hours -Iran: +3.5 hours -Iraq: +3 hours (Local summer +4 hours) -Ireland Republic of: 0 hours (Local summer +1 hours) -Israel: +2 hours (Local summer +3 hours) -Italy: +1 hours (Local summer +2 hours) -Jamaica: -5 hours -Japan: +9 hours -Johnston Island: -10 hours -Jordan: +2 hours (Local summer +3 hours) -Kazakhstan: +6 hours (Local summer +7 hours) -Kenya: +3 hours -Kiribati: +12 hours -Korea Dem Republic of: +9 hours -Korea Republic of: +9 hours -Kusaie: +12 hours -Kuwait: +3 hours -Kwajalein: -12 hours -Kyrgyzstan: +5 hours (Local summer +6 hours) -Laos: +7 hours -Latvia: +2 hours (Local summer +3 hours) -Lebanon: +2 hours (Local summer +3 hours) -Leeward Islands: -4 hours -Lesotho: +2 hours -Liberia: 0 hours -Libya: +2 hours -Lithuania: +2 hours (Local summer +3 hours) -Luxembourg: +1 hours (Local summer +2 hours) -Macedonia: +1 hours (Local summer +2 hours) -Madagascar: +3 hours -Madeira: 0 hours (Local summer +1 hours) -Malawi: +2 hours -Malaysia: +8 hours -Maldives: +5 hours -Mali: 0 hours -Mallorca Islands: +1 hours (Local summer +2 hours) -Malta: +1 hours (Local summer +2 hours) -Mariana Island: +10 hours -Marquesas Islands: -9.5 hours -Marshall Islands: +12 hours -Martinique: -4 hours -Mauritania: 0 hours -Mauritius: +4 hours -Mayotte: +3 hours -Melilla: +1 hours (Local summer +2 hours) -Mexico: -6 hours -Mexico Baja Calif Norte: -8 hours (Local summer -7 hours) -Mexico Nayarit: -7 hours -Mexico Sinaloa: -7 hours -Mexico Sonora: -7 hours -Midway Island: -11 hours -Moldova: +2 hours (Local summer +3 hours) -Moldovian Rep Pridnestrovye: +2 hours (Local summer +3 hours) -Monaco: +1 hours (Local summer +2 hours) -Mongolia: +8 hours -Morocco: 0 hours -Mozambique: +2 hours -Myanmar: +6.5 hours -Namibia: +1 hours (Local summer +2 hours) -Nauru Republic of: +12 hours -Nepal: +5.75 hours -Netherlands: +1 hours (Local summer +2 hours) -Netherlands Antilles: -4 hours -Nevis Montserrat: -4 hours -New Caledonia: +11 hours -New Hebrides: +11 hours -New Zealand: +12 hours (Local summer +13 hours) -Nicaragua: -6 hours (Local summer -5 hours) -Niger: +1 hours -Nigeria: +1 hours -Niue Island: -11 hours -Norfolk Island: +11.5 hours -Northern Ireland: 0 hours (Local summer +1 hours) -Northern Mariana Islands: +10 hours -Norway: +1 hours (Local summer +2 hours) -Oman: +4 hours -Pakistan: +5 hours -Palau: +9 hours -Panama: -5 hours -Papua New Guinea: +10 hours -Paraguay: -4 hours (Local summer -3 hours) -Peru: -5 hours -Philippines: +8 hours -Pingelap: +12 hours -Poland: +1 hours (Local summer +2 hours) -Ponape Island: +11 hours -Portugal: +1 hours (Local summer +2 hours) -Principe Island: 0 hours -Puerto Rico: -4 hours -Qatar: +3 hours -Reunion: +4 hours -Romania: +2 hours (Local summer +3 hours) -Russian Federation zone eight: +9 hours (Local summer +10 hours) -Russian Federation zone eleven: +12 hours (Local summer +13 hours) -Russian Federation zone five: +6 hours (Local summer +7 hours) -Russian Federation zone four: +5 hours (Local summer +6 hours) -Russian Federation zone nine: +10 hours (Local summer +11 hours) -Russian Federation zone one: +2 hours (Local summer +3 hours) -Russian Federation zone seven: +8 hours (Local summer +9 hours) -Russian Federation zone six: +7 hours (Local summer +8 hours) -Russian Federation zone ten: +11 hours (Local summer +12 hours) -Russian Federation zone three: +4 hours (Local summer +5 hours) -Russian Federation zone two: +4 hours (Local summer +5 hours) -Rwanda: +2 hours -Saba: -4 hours -Samoa: -11 hours -San Marino: +1 hours (Local summer +2 hours) -Sao Tome e Principe: 0 hours -Saudi Arabia: +3 hours -Scotland: 0 hours (Local summer +1 hours) -Senegal: 0 hours -Seychelles: +4 hours -Sierra Leone: 0 hours -Singapore: +8 hours -Slovakia: +1 hours (Local summer +2 hours) -Slovenia: +1 hours (Local summer +2 hours) -Society Island: -10 hours -Solomon Islands: +11 hours -Somalia: +3 hours -South Africa: +2 hours -Spain: +1 hours (Local summer +2 hours) -Sri Lanka: +5.5 hours -St Christopher: -4 hours -St Croix: -4 hours -St Helena: 0 hours -St John: -4 hours -St Kitts Nevis: -4 hours -St Lucia: -4 hours -St Maarten: -4 hours -St Pierre & Miquelon: -3 hours (Local summer -2 hours) -St Thomas: -4 hours -St Vincent: -4 hours -Sudan: +2 hours -Suriname: -3 hours -Swaziland: +2 hours -Sweden: +1 hours (Local summer +2 hours) -Switzerland: +1 hours (Local summer +2 hours) -Syria: +2 hours (Local summer +3 hours) -Tahiti: -10 hours -Taiwan: +8 hours -Tajikistan: +6 hours -Tanzania: +3 hours -Thailand: +7 hours -Togo: 0 hours -Tonga: +13 hours -Trinidad and Tobago: -4 hours -Tuamotu Island: -10 hours -Tubuai Island: -10 hours -Tunisia: +1 hours -Turkey: +2 hours (Local summer +3 hours) -Turkmenistan: +5 hours -Turks and Caicos Islands: -5 hours (Local summer -4 hours) -Tuvalu: +12 hours -Uganda: +3 hours -Ukraine: +2 hours (Local summer +3 hours) -United Arab Emirates: +4 hours -United Kingdom: 0 hours (Local summer +1 hours) -USA Central: -6 hours (Local summer -5 hours) -USA Eastern: -5 hours (Local summer -4 hours) -USA Mountain: -7 hours (Local summer -6 hours) -USA Arizona: -7 hours -USA Indiana East: -5 hours -USA Pacific: -8 hours (Local summer -7 hours) -USA Alaska: -9 hours (Local summer -8 hours) -USA Aleutian: -10 hours -USA Hawaii: -10 hours -Uruguay: -3 hours -Uzbekistan: +5 hours -Vanuatu: +11 hours (Local summer +12 hours) -Vatican City: +1 hours (Local summer +2 hours) -Venezuela: -4 hours -Vietnam: +7 hours -Virgin Islands: -4 hours -Wake Island: +12 hours -Wales: 0 hours (Local summer +1 hours) -Wallis and Futuna Islands: +12 hours -Windward Islands: -4 hours -Yemen: +3 hours -Yugoslavia: +1 hours (Local summer +2 hours) -Zaire Kasai: +2 hours -Zaire Kinshasa Mbandaka: +1 hours -Zaire Haut Zaire: +2 hours -Zaire Kivu: +2 hours -Zaire Shaba: +2 hours -Zambia: +2 hours -Zimbabwe: +2 hours -All timezone information is non-authoritative... diff --git a/db/usno1998 b/db/usno1998 deleted file mode 100644 index d77d255..0000000 --- a/db/usno1998 +++ /dev/null @@ -1,325 +0,0 @@ -# From Arthur David Olson (1998-05-26): -# -# Here's time zone information from the United States Naval Observatory -# via http://tycho.usno.navy.mil/tzones.html. See USNO's note at the end. -Unofficial Time Zone Information -World Time Zones -For selected countries, the local standard time offset from UTC is given, with daylight savings time where observed. -Time: Mon May 25 21:14:24 UTC 1998 -Afghanistan: +4.5 hours -Albania: +1 hours (Local summer +2 hours) -Algeria: +1 hours (Local summer +2 hours) -American Samoa: -11 hours -Andorra: +1 hours (Local summer +2 hours) -Angola: +1 hours -Anguilla: -4 hours -Antarctica: -2 hours (Local summer -3 hours) -Antigua: -4 hours -Argentina: -3 hours -Argentina western prov: -4 hours -Armenia: +4 hours (Local summer +5 hours) -Aruba: -4 hours -Ascension: 0 hours -Australia Northern Territory: +9.5 hours -Australia Lord Howe Island: +10.5 hours (Local summer +11 hours) -Australia New South Wales: +10 hours (Local summer +11 hours) -Australia Queensland: +10 hours -Australia Victoria: +10 hours (Local summer +11 hours) -Australia Australian Capital Territory: +10 hours (Local summer +11 hours) -Australia South: +9.5 hours (Local summer +10.5 hours) -Australia Tasmania: +10 hours (Local summer +11 hours) -Australia Western: +8 hours -Austria: +1 hours (Local summer +2 hours) -Azerbajian: +3 hours -Azores: -1 hours (Local summer 0 hours) -Bahamas: -5 hours (Local summer -4 hours) -Bahrain: +3 hours -Balearic Islands: +1 hours (Local summer +2 hours) -Bangladesh: +6 hours -Barbados: -4 hours -Belarus: +2 hours (Local summer +3 hours) -Belgium: +1 hours (Local summer +2 hours) -Belize: -6 hours -Benin: +1 hours -Bermuda: -4 hours (Local summer -3 hours) -Bhutan: +6 hours -Bolivia: -4 hours -Bonaire: -4 hours -Bosnia Hercegovina: +1 hours (Local summer +2 hours) -Botswana: +2 hours -Brazil Acre: -4 hours (Local summer -5 hours) -Brazil Atlantic Islands: -1 hours (Local summer -2 hours) -Brazil East: -3 hours (Local summer -1 hours) -Brazil West: -4 hours (Local summer -3 hours) -British Virgin Islands: -4 hours -Brunei: +8 hours -Bulgaria: +2 hours (Local summer +3 hours) -Burkina Faso: 0 hours -Burundi: +2 hours -Cambodia: +7 hours -Cameroon: +1 hours -Canada Central: -6 hours (Local summer -5 hours) -Canada Eastern: -5 hours (Local summer -4 hours) -Canada Mountain: -7 hours (Local summer -6 hours) -Canada Yukon & Pacific: -8 hours (Local summer -7 hours) -Canada Atlantic: -4 hours (Local summer -3 hours) -Canada Newfoundland: -3.5 hours (Local summer -2.5 hours) -Canary Islands: 0 hours (Local summer +1 hours) -Canton Enderbury Islands: -11 hours -Cape Verde: -1 hours -Caroline Island: +11 hours -Cayman Islands: -5 hours -Central African Rep: +1 hours -Chad: +1 hours -Channel Islands: 0 hours (Local summer +1 hours) -Chatham Island: +12.75 hours (Local summer +13.75 hours) -Chile: -4 hours (Local summer -3 hours) -China People's Rep: +8 hours -Christmas Islands: -10 hours -Cocos (Keeling) Islands: ( hours (Local summer ) hours) -Colombia: -5 hours -Congo: +1 hours -Cook Islands: -10 hours -Costa Rica: -6 hours -Cote d'Ivoire: 0 hours -Croatia: +1 hours (Local summer +2 hours) -Cuba: -5 hours (Local summer -4 hours) -Curacao: -4 hours -Cyprus: +2 hours (Local summer +3 hours) -Czech Republic: +1 hours (Local summer +2 hours) -Dahomey: +1 hours -Denmark: +1 hours (Local summer +2 hours) -Djibouti: +3 hours -Dominica: -4 hours -Dominican Republic: -4 hours -Easter Island: -6 hours (Local summer -5 hours) -Ecuador: -5 hours -Egypt: +2 hours (Local summer +3 hours) -El Salvador: -6 hours -England: 0 hours (Local summer +1 hours) -Equatorial Guinea: +1 hours -Eritrea: +3 hours -Estonia: +2 hours (Local summer +3 hours) -Ethiopia: +3 hours -Falkland Islands: -4 hours (Local summer -3 hours) -Faroe Island: 0 hours (Local summer +1 hours) -Fiji: +12 hours -Finland: +2 hours (Local summer +3 hours) -France: +1 hours (Local summer +2 hours) -French Guiana: -3 hours -French Polynesia: -10 hours -Gabon: +1 hours -Galapagos Islands: -5 hours -Gambia: 0 hours -Gambier Island: -9 hours -Georgia: +4 hours -Germany: +1 hours (Local summer +2 hours) -Ghana: 0 hours -Gibraltar: +1 hours (Local summer +2 hours) -Greece: +2 hours (Local summer +3 hours) -Greenland: -3 hours (Local summer -2 hours) -Greenland Thule: -4 hours (Local summer -3 hours) -Greenland Scoresbysun: -1 hours (Local summer 0 hours) -Grenada: -4 hours -Grenadines: -4 hours -Guadeloupe: -4 hours -Guam: +10 hours -Guatemala: -6 hours -Guinea: 0 hours -Guinea Bissau: - hours (Local summer 0 hours) -Guyana: -3 hours -Haiti: -5 hours (Local summer -4 hours) -Honduras: -6 hours -Hong kong: +8 hours -Hungary: +1 hours (Local summer +2 hours) -Iceland: 0 hours -India: +5.5 hours -Indonesia Central: +8 hours -Indonesia East: +9 hours -Indonesia West: +7 hours -Iran: +3.5 hours -Iraq: +3 hours (Local summer +4 hours) -Ireland Republic of: 0 hours (Local summer +1 hours) -Israel: +2 hours (Local summer +3 hours) -Italy: +1 hours (Local summer +2 hours) -Jamaica: -5 hours -Japan: +9 hours -Johnston Island: -10 hours -Jordan: +2 hours (Local summer +3 hours) -Kazakhstan: +6 hours (Local summer +7 hours) -Kenya: +3 hours -Kiribati: +12 hours -Korea Dem Republic of: +9 hours -Korea Republic of: +9 hours -Kusaie: +12 hours -Kuwait: +3 hours -Kwajalein: -12 hours -Kyrgyzstan: +5 hours (Local summer +6 hours) -Laos: +7 hours -Latvia: +2 hours (Local summer +3 hours) -Lebanon: +2 hours (Local summer +3 hours) -Leeward Islands: -4 hours -Lesotho: +2 hours -Liberia: 0 hours -Libya: +2 hours -Lithuania: +2 hours (Local summer +3 hours) -Luxembourg: +1 hours (Local summer +2 hours) -Macedonia: +1 hours (Local summer +2 hours) -Madagascar: +3 hours -Madeira: 0 hours (Local summer +1 hours) -Malawi: +2 hours -Malaysia: +8 hours -Maldives: +5 hours -Mali: 0 hours -Mallorca Islands: +1 hours (Local summer +2 hours) -Malta: +1 hours (Local summer +2 hours) -Mariana Island: +10 hours -Marquesas Islands: -9.5 hours -Marshall Islands: +12 hours -Martinique: -4 hours -Mauritania: 0 hours -Mauritius: +4 hours -Mayotte: +3 hours -Melilla: +1 hours (Local summer +2 hours) -Mexico: -6 hours -Mexico Baja Calif Norte: -8 hours (Local summer -7 hours) -Mexico Nayarit: -7 hours -Mexico Sinaloa: -7 hours -Mexico Sonora: -7 hours -Midway Island: -11 hours -Moldova: +2 hours (Local summer +3 hours) -Moldovian Rep Pridnestrovye: +2 hours (Local summer +3 hours) -Monaco: +1 hours (Local summer +2 hours) -Mongolia: +8 hours -Morocco: 0 hours -Mozambique: +2 hours -Myanmar: +6.5 hours -Namibia: +1 hours (Local summer +2 hours) -Nauru Republic of: +12 hours -Nepal: +5.75 hours -Netherlands: +1 hours (Local summer +2 hours) -Netherlands Antilles: -4 hours -Nevis Montserrat: -4 hours -New Caledonia: +11 hours -New Hebrides: +11 hours -New Zealand: +12 hours (Local summer +13 hours) -Nicaragua: -6 hours (Local summer -5 hours) -Niger: +1 hours -Nigeria: +1 hours -Niue Island: -11 hours -Norfolk Island: +11.5 hours -Northern Ireland: 0 hours (Local summer +1 hours) -Northern Mariana Islands: +10 hours -Norway: +1 hours (Local summer +2 hours) -Oman: +4 hours -Pakistan: +5 hours -Palau: +9 hours -Panama: -5 hours -Papua New Guinea: +10 hours -Paraguay: -4 hours (Local summer -3 hours) -Peru: -5 hours -Philippines: +8 hours -Pingelap: +12 hours -Poland: +1 hours (Local summer +2 hours) -Ponape Island: +11 hours -Portugal: +1 hours (Local summer +2 hours) -Principe Island: 0 hours -Puerto Rico: -4 hours -Qatar: +3 hours -Reunion: +4 hours -Romania: +2 hours (Local summer +3 hours) -Russian Federation zone eight: +9 hours (Local summer +10 hours) -Russian Federation zone eleven: +12 hours (Local summer +13 hours) -Russian Federation zone five: +6 hours (Local summer +7 hours) -Russian Federation zone four: +5 hours (Local summer +6 hours) -Russian Federation zone nine: +10 hours (Local summer +11 hours) -Russian Federation zone one: +2 hours (Local summer +3 hours) -Russian Federation zone seven: +8 hours (Local summer +9 hours) -Russian Federation zone six: +7 hours (Local summer +8 hours) -Russian Federation zone ten: +11 hours (Local summer +12 hours) -Russian Federation zone three: +4 hours (Local summer +5 hours) -Russian Federation zone two: +4 hours (Local summer +5 hours) -Rwanda: +2 hours -Saba: -4 hours -Samoa: -11 hours -San Marino: +1 hours (Local summer +2 hours) -Sao Tome e Principe: 0 hours -Saudi Arabia: +3 hours -Scotland: 0 hours (Local summer +1 hours) -Senegal: 0 hours -Seychelles: +4 hours -Sierra Leone: 0 hours -Singapore: +8 hours -Slovakia: +1 hours (Local summer +2 hours) -Slovenia: +1 hours (Local summer +2 hours) -Society Island: -10 hours -Solomon Islands: +11 hours -Somalia: +3 hours -South Africa: +2 hours -Spain: +1 hours (Local summer +2 hours) -Sri Lanka: +5.5 hours -St Christopher: -4 hours -St Croix: -4 hours -St Helena: 0 hours -St John: -4 hours -St Kitts Nevis: -4 hours -St Lucia: -4 hours -St Maarten: -4 hours -St Pierre & Miquelon: -3 hours (Local summer -2 hours) -St Thomas: -4 hours -St Vincent: -4 hours -Sudan: +2 hours -Suriname: -3 hours -Swaziland: +2 hours -Sweden: +1 hours (Local summer +2 hours) -Switzerland: +1 hours (Local summer +2 hours) -Syria: +2 hours (Local summer +3 hours) -Tahiti: -10 hours -Taiwan: +8 hours -Tajikistan: +6 hours -Tanzania: +3 hours -Thailand: +7 hours -Togo: 0 hours -Tonga: +13 hours -Trinidad and Tobago: -4 hours -Tuamotu Island: -10 hours -Tubuai Island: -10 hours -Tunisia: +1 hours -Turkey: +2 hours (Local summer +3 hours) -Turkmenistan: +5 hours -Turks and Caicos Islands: -5 hours (Local summer -4 hours) -Tuvalu: +12 hours -Uganda: +3 hours -Ukraine: +2 hours (Local summer +3 hours) -United Arab Emirates: +4 hours -United Kingdom: 0 hours (Local summer +1 hours) -USA Central: -6 hours (Local summer -5 hours) -USA Eastern: -5 hours (Local summer -4 hours) -USA Mountain: -7 hours (Local summer -6 hours) -USA Arizona: -7 hours -USA Indiana East: -5 hours -USA Pacific: -8 hours (Local summer -7 hours) -USA Alaska: -9 hours (Local summer -8 hours) -USA Aleutian: -10 hours -USA Hawaii: -10 hours -Uruguay: -3 hours -Uzbekistan: +5 hours -Vanuatu: +11 hours (Local summer +12 hours) -Vatican City: +1 hours (Local summer +2 hours) -Venezuela: -4 hours -Vietnam: +7 hours -Virgin Islands: -4 hours -Wake Island: +12 hours -Wales: 0 hours (Local summer +1 hours) -Wallis and Futuna Islands: +12 hours -Windward Islands: -4 hours -Yemen: +3 hours -Yugoslavia: +1 hours (Local summer +2 hours) -Zaire Kasai: +2 hours -Zaire Kinshasa Mbandaka: +1 hours -Zaire Haut Zaire: +2 hours -Zaire Kivu: +2 hours -Zaire Shaba: +2 hours -Zambia: +2 hours -Zimbabwe: +2 hours -All timezone information is non-authoritative... diff --git a/db/version b/db/version index 72ca0d0..198e36d 100644 --- a/db/version +++ b/db/version @@ -1 +1 @@ -2016j +2017c diff --git a/db/version.txt b/db/version.txt index 72ca0d0..198e36d 100644 --- a/db/version.txt +++ b/db/version.txt @@ -1 +1 @@ -2016j +2017c diff --git a/db/zdump.8 b/db/zdump.8 index 14ca60b..ef611db 100644 --- a/db/zdump.8 +++ b/db/zdump.8 @@ -115,7 +115,7 @@ format where .IR hh <24. Times are in local time immediately after the transition. A time interval description consists of a UT offset in signed -.RI \(+- hh : mm : ss +.RI \(+- hhmmss format, a time zone abbreviation, and an isdst flag. An abbreviation that equals the UT offset is omitted; other abbreviations are double-quoted strings unless they consist of one or more alphabetic @@ -123,7 +123,8 @@ characters. An isdst flag is omitted for standard time, and otherwise is a decimal integer that is unsigned and positive (typically 1) for daylight saving time and negative for unknown. .PP -In times and UT offsets, the seconds are omitted if they are zero, and +In times and in UT offsets with absolute value less than 100 hours, +the seconds are omitted if they are zero, and the minutes are also omitted if they are also zero. Positive UT offsets are east of Greenwich. The UT offset \*-00 denotes a UT placeholder in areas where the actual offset is unspecified; by diff --git a/db/zdump.8.txt b/db/zdump.8.txt index bae93d8..a24d652 100644 --- a/db/zdump.8.txt +++ b/db/zdump.8.txt @@ -65,20 +65,20 @@ INTERVAL FORMAT Dates are in yyyy-mm-dd format and times are in 24-hour hh:mm:ss format where hh<24. Times are in local time immediately after the transition. - A time interval description consists of a UT offset in signed - +-hh:mm:ss format, a time zone abbreviation, and an isdst flag. An - abbreviation that equals the UT offset is omitted; other abbreviations - are double-quoted strings unless they consist of one or more alphabetic + A time interval description consists of a UT offset in signed +-hhmmss + format, a time zone abbreviation, and an isdst flag. An abbreviation + that equals the UT offset is omitted; other abbreviations are double- + quoted strings unless they consist of one or more alphabetic characters. An isdst flag is omitted for standard time, and otherwise is a decimal integer that is unsigned and positive (typically 1) for daylight saving time and negative for unknown. - In times and UT offsets, the seconds are omitted if they are zero, and - the minutes are also omitted if they are also zero. Positive UT - offsets are east of Greenwich. The UT offset -00 denotes a UT - placeholder in areas where the actual offset is unspecified; by - convention, this occurs when the UT offset is zero and the time zone - abbreviation begins with "-" or is "zzz". + In times and in UT offsets with absolute value less than 100 hours, the + seconds are omitted if they are zero, and the minutes are also omitted + if they are also zero. Positive UT offsets are east of Greenwich. The + UT offset -00 denotes a UT placeholder in areas where the actual offset + is unspecified; by convention, this occurs when the UT offset is zero + and the time zone abbreviation begins with "-" or is "zzz". In double-quoted strings, escape sequences represent unusual characters. The escape sequences are \s for space, and \", \\, \f, \n, diff --git a/db/zdump.c b/db/zdump.c index 2206aa0..8e3bf3e 100644 --- a/db/zdump.c +++ b/db/zdump.c @@ -19,88 +19,11 @@ # define USE_LTZ 1 #endif -#if USE_LTZ -# include "private.h" -#endif - -/* Enable tm_gmtoff and tm_zone on GNUish systems. */ -#define _GNU_SOURCE 1 -/* Enable strtoimax on Solaris 10. */ -#define __EXTENSIONS__ 1 - -#include "stdio.h" /* for stdout, stderr, perror */ -#include "string.h" /* for strcpy */ -#include "sys/types.h" /* for time_t */ -#include "time.h" /* for struct tm */ -#include "stdlib.h" /* for exit, malloc, atoi */ -#include "limits.h" /* for CHAR_BIT, LLONG_MAX */ -#include - -/* -** Substitutes for pre-C99 compilers. -** Much of this section of code is stolen from private.h. -*/ +#include "private.h" +#include -#ifndef HAVE_STDINT_H -# define HAVE_STDINT_H \ - (199901 <= __STDC_VERSION__ \ - || 2 < __GLIBC__ + (1 <= __GLIBC_MINOR__) \ - || __CYGWIN__ || INTMAX_MAX) -#endif -#if HAVE_STDINT_H -# include "stdint.h" -#endif -#ifndef HAVE_INTTYPES_H -# define HAVE_INTTYPES_H HAVE_STDINT_H -#endif -#if HAVE_INTTYPES_H -# include -#endif - -#ifndef INT_FAST32_MAX -# if INT_MAX >> 31 == 0 -typedef long int_fast32_t; -# else -typedef int int_fast32_t; -# endif -#endif - -/* Pre-C99 GCC compilers define __LONG_LONG_MAX__ instead of LLONG_MAX. */ -#if !defined LLONG_MAX && defined __LONG_LONG_MAX__ -# define LLONG_MAX __LONG_LONG_MAX__ -#endif - -#ifndef INTMAX_MAX -# ifdef LLONG_MAX -typedef long long intmax_t; -# define strtoimax strtoll -# define INTMAX_MAX LLONG_MAX -# else -typedef long intmax_t; -# define strtoimax strtol -# define INTMAX_MAX LONG_MAX -# endif -#endif - -#ifndef PRIdMAX -# if INTMAX_MAX == LLONG_MAX -# define PRIdMAX "lld" -# else -# define PRIdMAX "ld" -# endif -#endif - -/* Infer TM_ZONE on systems where this information is known, but suppress - guessing if NO_TM_ZONE is defined. Similarly for TM_GMTOFF. */ -#if (defined __GLIBC__ \ - || defined __FreeBSD__ || defined __NetBSD__ || defined __OpenBSD__ \ - || (defined __APPLE__ && defined __MACH__)) -# if !defined TM_GMTOFF && !defined NO_TM_GMTOFF -# define TM_GMTOFF tm_gmtoff -# endif -# if !defined TM_ZONE && !defined NO_TM_ZONE -# define TM_ZONE tm_zone -# endif +#ifndef HAVE_SNPRINTF +# define HAVE_SNPRINTF (199901 <= __STDC_VERSION__) #endif #ifndef HAVE_LOCALTIME_R @@ -131,82 +54,6 @@ typedef long intmax_t; #define MAX_STRING_LENGTH 1024 #endif /* !defined MAX_STRING_LENGTH */ -#if __STDC_VERSION__ < 199901 -# define true 1 -# define false 0 -# define bool int -#else -# include -#endif - -#ifndef TYPE_BIT -#define TYPE_BIT(type) (sizeof (type) * CHAR_BIT) -#endif /* !defined TYPE_BIT */ - -#ifndef TYPE_SIGNED -#define TYPE_SIGNED(type) (((type) -1) < 0) -#endif /* !defined TYPE_SIGNED */ - -#ifndef INT_STRLEN_MAXIMUM -/* -** 302 / 1000 is log10(2.0) rounded up. -** Subtract one for the sign bit if the type is signed; -** add one for integer division truncation; -** add one more for a minus sign if the type is signed. -*/ -#define INT_STRLEN_MAXIMUM(type) \ - ((TYPE_BIT(type) - TYPE_SIGNED(type)) * 302 / 1000 + \ - 1 + TYPE_SIGNED(type)) -#endif /* !defined INT_STRLEN_MAXIMUM */ - -#ifndef EXIT_SUCCESS -#define EXIT_SUCCESS 0 -#endif /* !defined EXIT_SUCCESS */ - -#ifndef EXIT_FAILURE -#define EXIT_FAILURE 1 -#endif /* !defined EXIT_FAILURE */ - -#ifndef SECSPERMIN -#define SECSPERMIN 60 -#endif /* !defined SECSPERMIN */ - -#ifndef MINSPERHOUR -#define MINSPERHOUR 60 -#endif /* !defined MINSPERHOUR */ - -#ifndef SECSPERHOUR -#define SECSPERHOUR (SECSPERMIN * MINSPERHOUR) -#endif /* !defined SECSPERHOUR */ - -#ifndef HOURSPERDAY -#define HOURSPERDAY 24 -#endif /* !defined HOURSPERDAY */ - -#ifndef EPOCH_YEAR -#define EPOCH_YEAR 1970 -#endif /* !defined EPOCH_YEAR */ - -#ifndef TM_YEAR_BASE -#define TM_YEAR_BASE 1900 -#endif /* !defined TM_YEAR_BASE */ - -#ifndef DAYSPERNYEAR -#define DAYSPERNYEAR 365 -#endif /* !defined DAYSPERNYEAR */ - -#ifndef isleap -#define isleap(y) (((y) % 4) == 0 && (((y) % 100) != 0 || ((y) % 400) == 0)) -#endif /* !defined isleap */ - -#ifndef isleap_sum -/* -** See tzfile.h for details on isleap_sum. -*/ -#define isleap_sum(a, b) isleap((a) % 400 + (b) % 400) -#endif /* !defined isleap_sum */ - -#define SECSPERDAY ((int_fast32_t) SECSPERHOUR * HOURSPERDAY) #define SECSPERNYEAR (SECSPERDAY * DAYSPERNYEAR) #define SECSPERLYEAR (SECSPERNYEAR + SECSPERDAY) #define SECSPER400YEARS (SECSPERNYEAR * (intmax_t) (300 + 3) \ @@ -221,51 +68,20 @@ typedef long intmax_t; */ enum { SECSPER400YEARS_FITS = SECSPERLYEAR <= INTMAX_MAX / 400 }; -#ifndef HAVE_GETTEXT -#define HAVE_GETTEXT 0 -#endif #if HAVE_GETTEXT -#include "locale.h" /* for setlocale */ -#include "libintl.h" +#include /* for setlocale */ #endif /* HAVE_GETTEXT */ -#if 2 < __GNUC__ || (__GNUC__ == 2 && 96 <= __GNUC_MINOR__) -# define ATTRIBUTE_PURE __attribute__ ((__pure__)) -#else -# define ATTRIBUTE_PURE /* empty */ -#endif - -/* -** For the benefit of GNU folk... -** '_(MSGID)' uses the current locale's message library string for MSGID. -** The default is to use gettext if available, and use MSGID otherwise. -*/ - -#ifndef _ -#if HAVE_GETTEXT -#define _(msgid) gettext(msgid) -#else /* !HAVE_GETTEXT */ -#define _(msgid) msgid -#endif /* !HAVE_GETTEXT */ -#endif /* !defined _ */ - -#if !defined TZ_DOMAIN && defined HAVE_GETTEXT -# define TZ_DOMAIN "tz" -#endif - #if ! HAVE_LOCALTIME_RZ # undef timezone_t # define timezone_t char ** #endif -extern char ** environ; - #if !HAVE_POSIX_DECLS extern int getopt(int argc, char * const argv[], const char * options); extern char * optarg; extern int optind; -extern char * tzname[]; #endif /* The minimum and maximum finite time values. */ @@ -871,17 +687,15 @@ hunt(timezone_t tz, char *name, time_t lot, time_t hit) } /* -** Thanks to Paul Eggert for logic used in delta. +** Thanks to Paul Eggert for logic used in delta_nonneg. */ static intmax_t -delta(struct tm * newp, struct tm *oldp) +delta_nonneg(struct tm *newp, struct tm *oldp) { register intmax_t result; register int tmy; - if (newp->tm_year < oldp->tm_year) - return -delta(oldp, newp); result = 0; for (tmy = oldp->tm_year; tmy < newp->tm_year; ++tmy) result += DAYSPERNYEAR + isleap_sum(tmy, TM_YEAR_BASE); @@ -895,6 +709,14 @@ delta(struct tm * newp, struct tm *oldp) return result; } +static intmax_t +delta(struct tm *newp, struct tm *oldp) +{ + return (newp->tm_year < oldp->tm_year + ? -delta_nonneg(oldp, newp) + : delta_nonneg(newp, oldp)); +} + #ifndef TM_GMTOFF /* Return A->tm_yday, adjusted to compare it fairly to B->tm_yday. Assume A and B differ by at most one year. */ @@ -912,7 +734,7 @@ adjusted_yday(struct tm const *a, struct tm const *b) the same instant, return A's UTC offset in seconds, where positive offsets are east of Greenwich. On failure, return LONG_MIN. - If T is nonnull, *T is the time stamp that corresponds to A; call + If T is nonnull, *T is the timestamp that corresponds to A; call my_gmtime_r and use its result instead of B. Otherwise, B is the possibly nonnull result of an earlier call to my_gmtime_r. */ static long @@ -973,6 +795,38 @@ show(timezone_t tz, char *zone, time_t t, bool v) abbrok(abbr(tmp), zone); } +#if !HAVE_SNPRINTF +# include + +/* A substitute for snprintf that is good enough for zdump. */ +static int +snprintf(char *s, size_t size, char const *format, ...) +{ + int n; + va_list args; + char const *arg; + size_t arglen, slen; + char buf[1024]; + va_start(args, format); + if (strcmp(format, "%s") == 0) { + arg = va_arg(args, char const *); + arglen = strlen(arg); + } else { + n = vsprintf(buf, format, args); + if (n < 0) + return n; + arg = buf; + arglen = n; + } + slen = arglen < size ? arglen : size - 1; + memcpy(s, arg, slen); + s[slen] = '\0'; + n = arglen <= INT_MAX ? arglen : -1; + va_end(args); + return n; +} +#endif + /* Store into BUF, of size SIZE, a formatted local time taken from *TM. Use ISO 8601 format +HH:MM:SS. Omit :SS if SS is zero, and omit :MM too if MM is also zero. @@ -993,9 +847,11 @@ format_local_time(char *buf, size_t size, struct tm const *tm) /* Store into BUF, of size SIZE, a formatted UTC offset for the localtime *TM corresponding to time T. Use ISO 8601 format - +HH:MM:SS, or -HH:MM:SS for time stamps west of Greenwich. Omit - :SS if :SS is zero, and omit :MM too if :MM is also zero. If the - time stamp represents an unknown UTC offset, use the format -00. + +HHMMSS, or -HHMMSS for timestamps west of Greenwich; use the + format -00 for unknown UTC offsets. If the hour needs more than + two digits to represent, extend the length of HH as needed. + Otherwise, omit SS if SS is zero, and omit MM too if MM is also + zero. Return the length of the resulting string, or -1 if the result is not representable as a string. If the string does not fit, return @@ -1020,10 +876,10 @@ format_utc_offset(char *buf, size_t size, struct tm const *tm, time_t t) ss = off % 60; mm = off / 60 % 60; hh = off / 60 / 60; - return (ss - ? snprintf(buf, size, "%c%02ld:%02d:%02d", sign, hh, mm, ss) + return (ss || 100 <= hh + ? snprintf(buf, size, "%c%02ld%02d%02d", sign, hh, mm, ss) : mm - ? snprintf(buf, size, "%c%02ld:%02d", sign, hh, mm) + ? snprintf(buf, size, "%c%02ld%02d", sign, hh, mm) : snprintf(buf, size, "%c%02ld", sign, hh)); } @@ -1058,7 +914,7 @@ format_quoted_string(char *buf, size_t size, char const *p) } } -/* Store into BUF (of size SIZE) a time stamp formatted by TIME_FMT. +/* Store into BUF (of size SIZE) a timestamp formatted by TIME_FMT. TM is the broken-down time, T the seconds count, AB the time zone abbreviation, and ZONE_NAME the zone name. Return true if successful, false if the output would require more than SIZE bytes. @@ -1177,9 +1033,11 @@ abbr(struct tm const *tmp) #ifdef TM_ZONE return tmp->TM_ZONE; #else - return (0 <= tmp->tm_isdst && tzname[0 < tmp->tm_isdst] - ? tzname[0 < tmp->tm_isdst] - : ""); +# if HAVE_TZNAME + if (0 <= tmp->tm_isdst && tzname[0 < tmp->tm_isdst]) + return tzname[0 < tmp->tm_isdst]; +# endif + return ""; #endif } @@ -1214,10 +1072,10 @@ tformat(void) static void dumptime(register const struct tm *timeptr) { - static const char wday_name[][3] = { + static const char wday_name[][4] = { "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat" }; - static const char mon_name[][3] = { + static const char mon_name[][4] = { "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" }; @@ -1243,7 +1101,7 @@ dumptime(register const struct tm *timeptr) (int) (sizeof mon_name / sizeof mon_name[0])) mn = "???"; else mn = mon_name[timeptr->tm_mon]; - printf("%.3s %.3s%3d %.2d:%.2d:%.2d ", + printf("%s %s%3d %.2d:%.2d:%.2d ", wn, mn, timeptr->tm_mday, timeptr->tm_hour, timeptr->tm_min, timeptr->tm_sec); diff --git a/db/zic.8 b/db/zic.8 index e5e71f5..ab95b08 100644 --- a/db/zic.8 +++ b/db/zic.8 @@ -147,8 +147,16 @@ Any line that is blank (after comment stripping) is ignored. Non-blank lines are expected to be of one of three types: rule lines, zone lines, and link lines. .PP -Names (such as month names) must be in English and are case insensitive. -Abbreviations, if used, must be unambiguous in context. +Names must be in English and are case insensitive. +They appear in several contexts, and include month and weekday names +and keywords such as +.BR "maximum" , +.BR "only" , +.BR "Rolling" , +and +.BR "Zone" . +A name can be abbreviated by omitting all but an initial prefix; any +abbreviation must be unambiguous in context. .PP A rule line has the form .nf @@ -221,7 +229,13 @@ Sun<=25 last Sunday on or before the 25th .fi .in -.5i .sp -Names of days of the week may be abbreviated or spelled out in full. +A weekday name (e.g., +.BR "Sunday" ) +or a weekday name preceded by +.q "last" +(e.g., +.BR "lastSunday" ) +may be abbreviated or spelled out in full. Note that there must be no spaces within the .B ON field. @@ -459,17 +473,6 @@ if a second was added or .q "\*-" if a second was skipped. -.\" There's no need to document the following, since it's impossible for more -.\" than one leap second to be inserted or deleted at a time. -.\" The C Standard is in error in suggesting the possibility. -.\" See Terry J Quinn, The BIPM and the accurate measure of time, -.\" Proc IEEE 79, 7 (July 1991), 894-905. -.\" or -.\" .q ++ -.\" if two seconds were added -.\" or -.\" .q -- -.\" if two seconds were skipped. The .B R/S field diff --git a/db/zic.8.txt b/db/zic.8.txt index a0e185a..ab498b0 100644 --- a/db/zic.8.txt +++ b/db/zic.8.txt @@ -99,8 +99,11 @@ DESCRIPTION lines are expected to be of one of three types: rule lines, zone lines, and link lines. - Names (such as month names) must be in English and are case - insensitive. Abbreviations, if used, must be unambiguous in context. + Names must be in English and are case insensitive. They appear in + several contexts, and include month and weekday names and keywords such + as maximum, only, Rolling, and Zone. A name can be abbreviated by + omitting all but an initial prefix; any abbreviation must be + unambiguous in context. A rule line has the form @@ -145,7 +148,8 @@ DESCRIPTION Sun>=8 first Sunday on or after the eighth Sun<=25 last Sunday on or before the 25th - Names of days of the week may be abbreviated or spelled out in + A weekday name (e.g., Sunday) or a weekday name preceded by + "last" (e.g., lastSunday) may be abbreviated or spelled out in full. Note that there must be no spaces within the ON field. AT Gives the time of day at which the rule takes effect. diff --git a/db/zic.c b/db/zic.c index 47c68f9..a3d7383 100644 --- a/db/zic.c +++ b/db/zic.c @@ -5,12 +5,13 @@ #include "version.h" #include "private.h" -#include "locale.h" #include "tzfile.h" #include +#include #include #include +#include #define ZIC_VERSION_PRE_2013 '2' #define ZIC_VERSION '3' @@ -41,14 +42,26 @@ typedef int_fast64_t zic_t; #define MKDIR_UMASK 0755 #endif +#if HAVE_SYS_WAIT_H +#include /* for WIFEXITED and WEXITSTATUS */ +#endif /* HAVE_SYS_WAIT_H */ + +#ifndef WIFEXITED +#define WIFEXITED(status) (((status) & 0xff) == 0) +#endif /* !defined WIFEXITED */ +#ifndef WEXITSTATUS +#define WEXITSTATUS(status) (((status) >> 8) & 0xff) +#endif /* !defined WEXITSTATUS */ + /* The maximum ptrdiff_t value, for pre-C99 platforms. */ #ifndef PTRDIFF_MAX static ptrdiff_t const PTRDIFF_MAX = MAXVAL(ptrdiff_t, TYPE_BIT(ptrdiff_t)); #endif -/* The type and printf format for line numbers. */ +/* The type for line numbers. Use PRIdMAX to format them; formerly + there was also "#define PRIdLINENO PRIdMAX" and formats used + PRIdLINENO, but xgettext cannot grok that. */ typedef intmax_t lineno; -#define PRIdLINENO PRIdMAX struct rule { const char * r_filename; @@ -298,10 +311,13 @@ struct lookup { static struct lookup const * byword(const char * string, const struct lookup * lp); -static struct lookup const line_codes[] = { +static struct lookup const zi_line_codes[] = { { "Rule", LC_RULE }, { "Zone", LC_ZONE }, { "Link", LC_LINK }, + { NULL, 0 } +}; +static struct lookup const leap_line_codes[] = { { "Leap", LC_LEAP }, { NULL, 0} }; @@ -415,7 +431,7 @@ strdup(char const *str) } #endif -static ATTRIBUTE_PURE void * +static void * memcheck(void *ptr) { if (ptr == NULL) @@ -484,10 +500,10 @@ verror(const char *const string, va_list args) ** on BSD systems. */ if (filename) - fprintf(stderr, _("\"%s\", line %"PRIdLINENO": "), filename, linenum); + fprintf(stderr, _("\"%s\", line %"PRIdMAX": "), filename, linenum); vfprintf(stderr, string, args); if (rfilename != NULL) - fprintf(stderr, _(" (rule from \"%s\", line %"PRIdLINENO")"), + fprintf(stderr, _(" (rule from \"%s\", line %"PRIdMAX")"), rfilename, rlinenum); fprintf(stderr, "\n"); } @@ -632,9 +648,10 @@ _("%s: More than one -p option specified\n"), } break; case 'y': - if (yitcommand == NULL) + if (yitcommand == NULL) { + warning(_("-y is obsolescent")); yitcommand = optarg; - else { + } else { fprintf(stderr, _("%s: More than one -y option specified\n"), progname); @@ -917,7 +934,7 @@ static zic_t const max_time = MAXVAL(zic_t, TIME_T_BITS_IN_FILE); Ade PAR, Aghanim N, Armitage-Caplan C et al. Planck 2013 results. I. Overview of products and scientific results. arXiv:1303.5062 2013-03-20 20:10:01 UTC - [PDF] + [PDF] Page 36, Table 9, row Age/Gyr, column Planck+WP+highL+BAO 68% limits gives the value 13.798 plus-or-minus 0.037 billion years. @@ -1113,6 +1130,8 @@ infile(const char *name) } else if (wantcont) { wantcont = inzcont(fields, nfields); } else { + struct lookup const *line_codes + = name == leapsec ? leap_line_codes : zi_line_codes; lp = byword(fields[0], line_codes); if (lp == NULL) error(_("input line of unknown type")); @@ -1129,11 +1148,7 @@ infile(const char *name) wantcont = false; break; case LC_LEAP: - if (name != leapsec) - warning(_("%s: Leap line in non leap" - " seconds file %s"), - progname, name); - else inleap(fields, nfields); + inleap(fields, nfields); wantcont = false; break; default: /* "cannot happen" */ @@ -1250,7 +1265,7 @@ _("\"Zone %s\" line and -p option are mutually exclusive"), if (zones[i].z_name != NULL && strcmp(zones[i].z_name, fields[ZF_NAME]) == 0) { error(_("duplicate zone name %s" - " (file \"%s\", line %"PRIdLINENO")"), + " (file \"%s\", line %"PRIdMAX")"), fields[ZF_NAME], zones[i].z_filename, zones[i].z_linenum); @@ -1434,15 +1449,9 @@ inleap(char **fields, int nfields) if (strcmp(cp, "") == 0) { /* infile() turns "-" into "" */ positive = false; count = 1; - } else if (strcmp(cp, "--") == 0) { - positive = false; - count = 2; } else if (strcmp(cp, "+") == 0) { positive = true; count = 1; - } else if (strcmp(cp, "++") == 0) { - positive = true; - count = 2; } else { error(_("illegal CORRECTION field on Leap line")); return; @@ -1454,8 +1463,8 @@ inleap(char **fields, int nfields) return; } t = tadd(t, tod); - if (t < early_time) { - error(_("leap second precedes Big Bang")); + if (t < 0) { + error(_("leap second precedes Epoch")); return; } leapadd(t, positive, lp->l_value, count); @@ -1583,13 +1592,16 @@ rulesub(struct rule *rp, const char *loyearp, const char *hiyearp, error(_("typed single year")); return; } + warning(_("year type \"%s\" is obsolete; use \"-\" instead"), + typep); rp->r_yrtype = ecpyalloc(typep); } /* ** Day work. ** Accept things such as: ** 1 - ** last-Sunday + ** lastSunday + ** last-Sunday (undocumented; warn about this) ** Sun<=20 ** Sun>=7 */ @@ -2368,6 +2380,9 @@ outzone(const struct zone *zpfirst, ptrdiff_t zonecount) register bool do_extend; register char version; ptrdiff_t lastatmax = -1; + zic_t one = 1; + zic_t y2038_boundary = one << 31; + zic_t max_year0; max_abbr_len = 2 + max_format_len + max_abbrvar_len; max_envvar_len = 2 * max_abbr_len + 5 * 9; @@ -2463,12 +2478,13 @@ outzone(const struct zone *zpfirst, ptrdiff_t zonecount) } /* ** For the benefit of older systems, - ** generate data from 1900 through 2037. + ** generate data from 1900 through 2038. */ if (min_year > 1900) min_year = 1900; - if (max_year < 2037) - max_year = 2037; + max_year0 = max_year; + if (max_year < 2038) + max_year = 2038; for (i = 0; i < zonecount; ++i) { /* ** A guess that may well be corrected later. @@ -2507,8 +2523,12 @@ outzone(const struct zone *zpfirst, ptrdiff_t zonecount) rp->r_todo = year >= rp->r_loyear && year <= rp->r_hiyear && yearistype(year, rp->r_yrtype); - if (rp->r_todo) + if (rp->r_todo) { rp->r_temp = rpytime(rp, year); + rp->r_todo + = (rp->r_temp < y2038_boundary + || year <= max_year0); + } } for ( ; ; ) { register ptrdiff_t k; @@ -2745,13 +2765,8 @@ leapadd(zic_t t, bool positive, int rolling, int count) exit(EXIT_FAILURE); } for (i = 0; i < leapcnt; ++i) - if (t <= trans[i]) { - if (t == trans[i]) { - error(_("repeated leap second moment")); - exit(EXIT_FAILURE); - } + if (t <= trans[i]) break; - } do { for (j = leapcnt; j > i; --j) { trans[j] = trans[j - 1]; @@ -2770,11 +2785,17 @@ adjleap(void) { register int i; register zic_t last = 0; + register zic_t prevtrans = 0; /* ** propagate leap seconds forward */ for (i = 0; i < leapcnt; ++i) { + if (trans[i] - prevtrans < 28 * SECSPERDAY) { + error(_("Leap seconds too close together")); + exit(EXIT_FAILURE); + } + prevtrans = trans[i]; trans[i] = tadd(trans[i], last); last = corr[i] += last; } @@ -2875,7 +2896,7 @@ lowerit(char a) } /* case-insensitive equality */ -static ATTRIBUTE_PURE bool +static bool ciequal(register const char *ap, register const char *bp) { while (lowerit(*ap) == lowerit(*bp++)) @@ -2884,7 +2905,7 @@ ciequal(register const char *ap, register const char *bp) return false; } -static ATTRIBUTE_PURE bool +static bool itsabbr(register const char *abbr, register const char *word) { if (lowerit(*abbr) != lowerit(*word)) @@ -2898,7 +2919,20 @@ itsabbr(register const char *abbr, register const char *word) return true; } -static ATTRIBUTE_PURE const struct lookup * +/* Return true if ABBR is an initial prefix of WORD, ignoring ASCII case. */ + +static bool +ciprefix(char const *abbr, char const *word) +{ + do + if (!*abbr) + return true; + while (lowerit(*abbr++) == lowerit(*word++)); + + return false; +} + +static const struct lookup * byword(const char *word, const struct lookup *table) { register const struct lookup * foundlp; @@ -2906,6 +2940,20 @@ byword(const char *word, const struct lookup *table) if (word == NULL || table == NULL) return NULL; + + /* If TABLE is LASTS and the word starts with "last" followed + by a non-'-', skip the "last" and look in WDAY_NAMES instead. + Warn about any usage of the undocumented prefix "last-". */ + if (table == lasts && ciprefix("last", word) && word[4]) { + if (word[4] == '-') + warning(_("\"%s\" is undocumented; use \"last%s\" instead"), + word, word + 5); + else { + word += 4; + table = wday_names; + } + } + /* ** Look for exact match. */ @@ -2917,11 +2965,25 @@ byword(const char *word, const struct lookup *table) */ foundlp = NULL; for (lp = table; lp->l_word != NULL; ++lp) - if (itsabbr(word, lp->l_word)) { + if (ciprefix(word, lp->l_word)) { if (foundlp == NULL) foundlp = lp; else return NULL; /* multiple inexact matches */ } + + /* Warn about any backward-compatibility issue with pre-2017c zic. */ + if (foundlp) { + bool pre_2017c_match = false; + for (lp = table; lp->l_word; lp++) + if (itsabbr(word, lp->l_word)) { + if (pre_2017c_match) { + warning(_("\"%s\" is ambiguous in pre-2017c zic"), word); + break; + } + pre_2017c_match = true; + } + } + return foundlp; } @@ -3125,11 +3187,14 @@ mkdirs(char const *argname, bool ancestors) cp = name = ecpyalloc(argname); + /* On MS-Windows systems, do not worry about drive letters or + backslashes, as this should suffice in practice. Time zone + names do not use drive letters and backslashes. If the -d + option of zic does not name an already-existing directory, + it can use slashes to separate the already-existing + ancestor prefix from the to-be-created subdirectories. */ + /* Do not mkdir a root directory, as it must exist. */ -#ifdef HAVE_DOS_FILE_NAMES - if (is_alpha(name[0]) && name[1] == ':') - cp += 2; -#endif while (*cp == '/') cp++; diff --git a/db/zishrink.awk b/db/zishrink.awk new file mode 100644 index 0000000..02c883a --- /dev/null +++ b/db/zishrink.awk @@ -0,0 +1,156 @@ +# Convert tzdata source into a smaller version of itself. + +# Contributed by Paul Eggert. This file is in the public domain. + +# This is not a general-purpose converter; it is designed for current tzdata. +# 'zic' should treat this script's output as if it were identical to +# this script's input. + + +# Return a new rule name. +# N_RULE_NAMES keeps track of how many rule names have been generated. + +function gen_rule_name(alphabet, base, rule_name, n, digit) +{ + alphabet = "" + alphabet = alphabet "ABCDEFGHIJKLMNOPQRSTUVWXYZ" + alphabet = alphabet "abcdefghijklmnopqrstuvwxyz" + alphabet = alphabet "!$%&'()*+,./:;<=>?@[\\]^_`{|}~" + base = length(alphabet) + rule_name = "" + n = n_rule_names++ + + do { + n -= rule_name && n <= base + digit = n % base + rule_name = substr(alphabet, digit + 1, 1) rule_name + n = (n - digit) / base + } while (n); + + return rule_name +} + +# Process an input line and save it for later output. + +function process_input_line(line, field, end, i, n, startdef) +{ + # Remove comments, normalize spaces, and append a space to each line. + sub(/#.*/, "", line) + line = line " " + gsub(/[[:space:]]+/, " ", line) + + # Abbreviate keywords. Do not abbreviate "Link" to just "L", + # as pre-2017c zic erroneously diagnoses "Li" as ambiguous. + sub(/^Link /, "Li ", line) + sub(/^Rule /, "R ", line) + sub(/^Zone /, "Z ", line) + + # SystemV rules are not needed. + if (line ~ /^R SystemV /) return + + # Replace FooAsia rules with the same rules without "Asia", as they + # are duplicates. + if (match(line, /[^ ]Asia /)) { + if (line ~ /^R /) return + line = substr(line, 1, RSTART) substr(line, RSTART + 5) + } + + # Abbreviate times. + while (match(line, /[: ]0+[0-9]/)) + line = substr(line, 1, RSTART) substr(line, RSTART + RLENGTH - 1) + while (match(line, /:0[^:]/)) + line = substr(line, 1, RSTART - 1) substr(line, RSTART + 2) + + # Abbreviate weekday names. Do not abbreviate "Sun" and "Sat", as + # pre-2017c zic erroneously diagnoses "Su" and "Sa" as ambiguous. + while (match(line, / (last)?(Mon|Wed|Fri)[ <>]/)) { + end = RSTART + RLENGTH + line = substr(line, 1, end - 4) substr(line, end - 1) + } + while (match(line, / (last)?(Tue|Thu)[ <>]/)) { + end = RSTART + RLENGTH + line = substr(line, 1, end - 3) substr(line, end - 1) + } + + # Abbreviate "max", "only" and month names. + # Do not abbreviate "min", as pre-2017c zic erroneously diagnoses "mi" + # as ambiguous. + gsub(/ max /, " ma ", line) + gsub(/ only /, " o ", line) + gsub(/ Jan /, " Ja ", line) + gsub(/ Feb /, " F ", line) + gsub(/ Apr /, " Ap ", line) + gsub(/ Aug /, " Au ", line) + gsub(/ Sep /, " S ", line) + gsub(/ Oct /, " O ", line) + gsub(/ Nov /, " N ", line) + gsub(/ Dec /, " D ", line) + + # Strip leading and trailing space. + sub(/^ /, "", line) + sub(/ $/, "", line) + + # Remove unnecessary trailing zero fields. + sub(/ 0+$/, "", line) + + # Remove unnecessary trailing days-of-month "1". + if (match(line, /[[:alpha:]] 1$/)) + line = substr(line, 1, RSTART) + + # Remove unnecessary trailing " Ja" (for January). + sub(/ Ja$/, "", line) + + n = split(line, field) + + # Abbreviate rule names. + i = field[1] == "Z" ? 4 : field[1] == "Li" ? 0 : 2 + if (i && field[i] ~ /^[^-+0-9]/) { + if (!rule[field[i]]) + rule[field[i]] = gen_rule_name() + field[i] = rule[field[i]] + } + + # If this zone supersedes an earlier one, delete the earlier one + # from the saved output lines. + startdef = "" + if (field[1] == "Z") + zonename = startdef = field[2] + else if (field[1] == "Li") + zonename = startdef = field[3] + else if (field[1] == "R") + zonename = "" + if (startdef) { + i = zonedef[startdef] + if (i) { + do + output_line[i - 1] = "" + while (output_line[i++] ~ /^[-+0-9]/); + } + } + zonedef[zonename] = nout + 1 + + # Save the line for later output. + line = field[1] + for (i = 2; i <= n; i++) + line = line " " field[i] + output_line[nout++] = line +} + +function output_saved_lines(i) +{ + for (i = 0; i < nout; i++) + if (output_line[i]) + print output_line[i] +} + +BEGIN { + print "# This zic input file is in the public domain." +} + +/^[[:space:]]*[^#[:space:]]/ { + process_input_line($0) +} + +END { + output_saved_lines() +} diff --git a/db/zone.tab b/db/zone.tab index f3ff0b6..2d0b26b 100644 --- a/db/zone.tab +++ b/db/zone.tab @@ -142,6 +142,7 @@ CH +4723+00832 Europe/Zurich CI +0519-00402 Africa/Abidjan CK -2114-15946 Pacific/Rarotonga CL -3327-07040 America/Santiago Chile (most areas) +CL -5309-07055 America/Punta_Arenas Region of Magallanes CL -2709-10926 Pacific/Easter Easter Island CM +0403+00942 Africa/Douala CN +3114+12128 Asia/Shanghai Beijing Time @@ -185,7 +186,7 @@ GB +513030-0000731 Europe/London GD +1203-06145 America/Grenada GE +4143+04449 Asia/Tbilisi GF +0456-05220 America/Cayenne -GG +4927-00232 Europe/Guernsey +GG +492717-0023210 Europe/Guernsey GH +0533-00013 Africa/Accra GI +3608-00521 Europe/Gibraltar GL +6411-05144 America/Godthab Greenland (most areas) @@ -220,7 +221,7 @@ IQ +3321+04425 Asia/Baghdad IR +3540+05126 Asia/Tehran IS +6409-02151 Atlantic/Reykjavik IT +4154+01229 Europe/Rome -JE +4912-00207 Europe/Jersey +JE +491101-0020624 Europe/Jersey JM +175805-0764736 America/Jamaica JO +3157+03556 Asia/Amman JP +353916+1394441 Asia/Tokyo @@ -397,7 +398,6 @@ UA +5026+03031 Europe/Kiev Ukraine (most areas) UA +4837+02218 Europe/Uzhgorod Ruthenia UA +4750+03510 Europe/Zaporozhye Zaporozh'ye/Zaporizhia; Lugansk/Luhansk (east) UG +0019+03225 Africa/Kampala -UM +1645-16931 Pacific/Johnston Johnston Atoll UM +2813-17722 Pacific/Midway Midway Islands UM +1917+16637 Pacific/Wake Wake Island US +404251-0740023 America/New_York Eastern (most areas) diff --git a/db/zone1970.tab b/db/zone1970.tab index dc50f6d..455e797 100644 --- a/db/zone1970.tab +++ b/db/zone1970.tab @@ -2,7 +2,7 @@ # # This file is in the public domain. # -# From Paul Eggert (2014-07-31): +# From Paul Eggert (2017-10-01): # This file contains a table where each row stands for a zone where # civil time stamps have agreed since 1970. Columns are separated by # a single tab. Lines beginning with '#' are comments. All text uses @@ -15,7 +15,7 @@ # either +-DDMM+-DDDMM or +-DDMMSS+-DDDMMSS, # first latitude (+ is north), then longitude (+ is east). # 3. Zone name used in value of TZ environment variable. -# Please see the 'Theory' file for how zone names are chosen. +# Please see the theory.html file for how zone names are chosen. # If multiple zones overlap a country, each has a row in the # table, with each column 1 containing the country code. # 4. Comments; present if and only if a country has multiple zones. @@ -135,6 +135,7 @@ CH,DE,LI +4723+00832 Europe/Zurich Swiss time CI,BF,GM,GN,ML,MR,SH,SL,SN,ST,TG +0519-00402 Africa/Abidjan CK -2114-15946 Pacific/Rarotonga CL -3327-07040 America/Santiago Chile (most areas) +CL -5309-07055 America/Punta_Arenas Region of Magallanes CL -2709-10926 Pacific/Easter Easter Island CN +3114+12128 Asia/Shanghai Beijing Time CN +4348+08735 Asia/Urumqi Xinjiang Time @@ -315,10 +316,11 @@ RU +6445+17729 Asia/Anadyr MSK+09 - Bering Sea SA,KW,YE +2438+04643 Asia/Riyadh SB -0932+16012 Pacific/Guadalcanal SC -0440+05528 Indian/Mahe -SD,SS +1536+03232 Africa/Khartoum +SD +1536+03232 Africa/Khartoum SE +5920+01803 Europe/Stockholm SG +0117+10351 Asia/Singapore SR +0550-05510 America/Paramaribo +SS +0451+03137 Africa/Juba SV +1342-08912 America/El_Salvador SY +3330+03618 Asia/Damascus TC +2128-07108 America/Grand_Turk diff --git a/genrcc.sh b/genrcc.sh index 3e70c09..dd11709 100755 --- a/genrcc.sh +++ b/genrcc.sh @@ -5,7 +5,7 @@ rm -rf zoneinfo* tztmp echo regenerating zone info mkdir tztmp -make -C db TOPDIR=`pwd`/tztmp install +make -C db TOPDIR=`pwd`/tztmp CFLAGS+=-std=c99 install mv tztmp/etc/zoneinfo . rm -rf tztmp diff --git a/zonefiles.cpp b/zonefiles.cpp index 8f5ec18..0d30170 100644 --- a/zonefiles.cpp +++ b/zonefiles.cpp @@ -1,116 +1,363 @@ /**************************************************************************** ** Resource object code ** -** Created by: The Resource Compiler for Qt version 5.7.1 +** Created by: The Resource Compiler for Qt version 5.10.0 ** ** WARNING! All changes made in this file will be lost! *****************************************************************************/ static const unsigned char qt_resource_data[] = { - // /home/konrad/src/smoke/tzone/zoneinfo/Iceland - 0x0,0x0,0x4,0xa6, + // /home/konrad/src/smoke/tzone/zoneinfo/Japan + 0x0,0x0,0x1,0x3e, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x45,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x80,0x0,0x0,0x0,0x8b, - 0x60,0x83,0xa0,0x9c,0x91,0x1e,0x0,0x9d,0xd1,0x88,0x90,0x9e,0x72,0x51,0x80,0x9f, - 0xd5,0x3,0x10,0xa0,0x53,0x85,0x0,0xa1,0xb6,0x36,0x90,0xa4,0x3c,0x27,0x80,0xa4, - 0xb9,0x74,0x10,0xc6,0x4d,0x1a,0x0,0xc7,0x3d,0x27,0x20,0xc7,0xda,0x17,0xb0,0xc9, - 0x26,0x43,0xa0,0xc9,0xc3,0x26,0x20,0xcb,0x6,0x25,0xa0,0xcb,0xac,0x42,0xa0,0xcc, - 0xdc,0xcd,0x20,0xcd,0x8c,0x24,0xa0,0xce,0xbc,0xaf,0x20,0xcf,0x6c,0x6,0xa0,0xd0, - 0x9c,0x91,0x20,0xd1,0x4b,0xe8,0xa0,0xd2,0x85,0xad,0xa0,0xd3,0x2b,0xca,0xa0,0xd4, - 0x65,0x8f,0xa0,0xd5,0x39,0xd1,0x20,0xd6,0x45,0x71,0xa0,0xd7,0x19,0xb3,0x20,0xd8, - 0x25,0x53,0xa0,0xd8,0xf9,0x95,0x20,0xda,0xe,0x70,0x20,0xda,0xd9,0x77,0x20,0xdb, - 0xe5,0x17,0xa0,0xdc,0xb9,0x59,0x20,0xdd,0xce,0x34,0x20,0xde,0xa2,0x75,0xa0,0xdf, - 0xae,0x16,0x20,0xe0,0x82,0x57,0xa0,0xe1,0x8d,0xf8,0x20,0xe2,0x62,0x39,0xa0,0xe3, - 0x6d,0xda,0x20,0xe4,0x42,0x1b,0xa0,0xe5,0x4d,0xbc,0x20,0xe6,0x21,0xfd,0xa0,0xe7, - 0x36,0xd8,0xa0,0xe8,0xb,0x1a,0x20,0xe9,0x16,0xba,0xa0,0xe9,0xea,0xfc,0x20,0xea, - 0xf6,0x9c,0xa0,0xeb,0xca,0xde,0x20,0xec,0xd6,0x7e,0xa0,0xed,0xaa,0xc0,0x20,0xee, - 0xb6,0x60,0xa0,0xef,0x8a,0xa2,0x20,0xf0,0x96,0x42,0xa0,0xf1,0x6a,0x84,0x20,0xf2, - 0x7f,0x5f,0x20,0xf3,0x53,0xa0,0xa0,0xf4,0x5f,0x41,0x20,0xf5,0x33,0x82,0xa0,0xf6, - 0x3f,0x23,0x20,0xf7,0x13,0x64,0xa0,0xf8,0x1f,0x5,0x20,0xf8,0xf3,0x46,0xa0,0xf9, - 0xfe,0xe7,0x20,0xfa,0xd3,0x28,0xa0,0xfb,0xe8,0x3,0xa0,0xfc,0xbc,0x45,0x20,0x0, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x5,0xff,0xff,0xeb,0x60,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x4, - 0xff,0xff,0xf1,0xf0,0x0,0x9,0xff,0xff,0xf1,0xf0,0x0,0x9,0x0,0x0,0x0,0x0, - 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0xd,0x4c,0x4d,0x54,0x0,0x49,0x53,0x53,0x54, - 0x0,0x49,0x53,0x54,0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x0, - 0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, - 0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0x0,0x0,0x0,0x6,0x0,0x0,0x0, - 0x11,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x8b,0x60,0x83, - 0xa0,0xff,0xff,0xff,0xff,0x9c,0x91,0x1e,0x0,0xff,0xff,0xff,0xff,0x9d,0xd1,0x88, - 0x90,0xff,0xff,0xff,0xff,0x9e,0x72,0x51,0x80,0xff,0xff,0xff,0xff,0x9f,0xd5,0x3, - 0x10,0xff,0xff,0xff,0xff,0xa0,0x53,0x85,0x0,0xff,0xff,0xff,0xff,0xa1,0xb6,0x36, - 0x90,0xff,0xff,0xff,0xff,0xa4,0x3c,0x27,0x80,0xff,0xff,0xff,0xff,0xa4,0xb9,0x74, - 0x10,0xff,0xff,0xff,0xff,0xc6,0x4d,0x1a,0x0,0xff,0xff,0xff,0xff,0xc7,0x3d,0x27, - 0x20,0xff,0xff,0xff,0xff,0xc7,0xda,0x17,0xb0,0xff,0xff,0xff,0xff,0xc9,0x26,0x43, - 0xa0,0xff,0xff,0xff,0xff,0xc9,0xc3,0x26,0x20,0xff,0xff,0xff,0xff,0xcb,0x6,0x25, - 0xa0,0xff,0xff,0xff,0xff,0xcb,0xac,0x42,0xa0,0xff,0xff,0xff,0xff,0xcc,0xdc,0xcd, - 0x20,0xff,0xff,0xff,0xff,0xcd,0x8c,0x24,0xa0,0xff,0xff,0xff,0xff,0xce,0xbc,0xaf, - 0x20,0xff,0xff,0xff,0xff,0xcf,0x6c,0x6,0xa0,0xff,0xff,0xff,0xff,0xd0,0x9c,0x91, - 0x20,0xff,0xff,0xff,0xff,0xd1,0x4b,0xe8,0xa0,0xff,0xff,0xff,0xff,0xd2,0x85,0xad, - 0xa0,0xff,0xff,0xff,0xff,0xd3,0x2b,0xca,0xa0,0xff,0xff,0xff,0xff,0xd4,0x65,0x8f, - 0xa0,0xff,0xff,0xff,0xff,0xd5,0x39,0xd1,0x20,0xff,0xff,0xff,0xff,0xd6,0x45,0x71, - 0xa0,0xff,0xff,0xff,0xff,0xd7,0x19,0xb3,0x20,0xff,0xff,0xff,0xff,0xd8,0x25,0x53, - 0xa0,0xff,0xff,0xff,0xff,0xd8,0xf9,0x95,0x20,0xff,0xff,0xff,0xff,0xda,0xe,0x70, - 0x20,0xff,0xff,0xff,0xff,0xda,0xd9,0x77,0x20,0xff,0xff,0xff,0xff,0xdb,0xe5,0x17, - 0xa0,0xff,0xff,0xff,0xff,0xdc,0xb9,0x59,0x20,0xff,0xff,0xff,0xff,0xdd,0xce,0x34, - 0x20,0xff,0xff,0xff,0xff,0xde,0xa2,0x75,0xa0,0xff,0xff,0xff,0xff,0xdf,0xae,0x16, - 0x20,0xff,0xff,0xff,0xff,0xe0,0x82,0x57,0xa0,0xff,0xff,0xff,0xff,0xe1,0x8d,0xf8, - 0x20,0xff,0xff,0xff,0xff,0xe2,0x62,0x39,0xa0,0xff,0xff,0xff,0xff,0xe3,0x6d,0xda, - 0x20,0xff,0xff,0xff,0xff,0xe4,0x42,0x1b,0xa0,0xff,0xff,0xff,0xff,0xe5,0x4d,0xbc, - 0x20,0xff,0xff,0xff,0xff,0xe6,0x21,0xfd,0xa0,0xff,0xff,0xff,0xff,0xe7,0x36,0xd8, - 0xa0,0xff,0xff,0xff,0xff,0xe8,0xb,0x1a,0x20,0xff,0xff,0xff,0xff,0xe9,0x16,0xba, - 0xa0,0xff,0xff,0xff,0xff,0xe9,0xea,0xfc,0x20,0xff,0xff,0xff,0xff,0xea,0xf6,0x9c, - 0xa0,0xff,0xff,0xff,0xff,0xeb,0xca,0xde,0x20,0xff,0xff,0xff,0xff,0xec,0xd6,0x7e, - 0xa0,0xff,0xff,0xff,0xff,0xed,0xaa,0xc0,0x20,0xff,0xff,0xff,0xff,0xee,0xb6,0x60, - 0xa0,0xff,0xff,0xff,0xff,0xef,0x8a,0xa2,0x20,0xff,0xff,0xff,0xff,0xf0,0x96,0x42, - 0xa0,0xff,0xff,0xff,0xff,0xf1,0x6a,0x84,0x20,0xff,0xff,0xff,0xff,0xf2,0x7f,0x5f, - 0x20,0xff,0xff,0xff,0xff,0xf3,0x53,0xa0,0xa0,0xff,0xff,0xff,0xff,0xf4,0x5f,0x41, - 0x20,0xff,0xff,0xff,0xff,0xf5,0x33,0x82,0xa0,0xff,0xff,0xff,0xff,0xf6,0x3f,0x23, - 0x20,0xff,0xff,0xff,0xff,0xf7,0x13,0x64,0xa0,0xff,0xff,0xff,0xff,0xf8,0x1f,0x5, - 0x20,0xff,0xff,0xff,0xff,0xf8,0xf3,0x46,0xa0,0xff,0xff,0xff,0xff,0xf9,0xfe,0xe7, - 0x20,0xff,0xff,0xff,0xff,0xfa,0xd3,0x28,0xa0,0xff,0xff,0xff,0xff,0xfb,0xe8,0x3, - 0xa0,0xff,0xff,0xff,0xff,0xfc,0xbc,0x45,0x20,0x0,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x5,0xff,0xff, - 0xeb,0x60,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x4,0xff,0xff,0xf1,0xf0,0x0,0x9, - 0xff,0xff,0xf1,0xf0,0x0,0x9,0x0,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, - 0x0,0xd,0x4c,0x4d,0x54,0x0,0x49,0x53,0x53,0x54,0x0,0x49,0x53,0x54,0x0,0x47, - 0x4d,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xa, - 0x47,0x4d,0x54,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Factory - 0x0,0x0,0x0,0x94, + 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x9,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0xd7, + 0x3e,0x1e,0x90,0xd7,0xec,0x16,0x80,0xd8,0xf9,0x16,0x90,0xd9,0xcb,0xf8,0x80,0xdb, + 0x7,0x1d,0x10,0xdb,0xab,0xda,0x80,0xdc,0xe6,0xff,0x10,0xdd,0x8b,0xbc,0x80,0x3, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x0,0x0,0x83,0x3,0x0,0x0,0x0,0x0, + 0x8c,0xa0,0x1,0x4,0x0,0x0,0x7e,0x90,0x0,0x8,0x0,0x0,0x7e,0x90,0x0,0x8, + 0x4c,0x4d,0x54,0x0,0x4a,0x44,0x54,0x0,0x4a,0x53,0x54,0x0,0x0,0x0,0x0,0x1, + 0x0,0x0,0x0,0x1,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0xc, + 0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x65,0xc2,0xa4,0x70, + 0xff,0xff,0xff,0xff,0xd7,0x3e,0x1e,0x90,0xff,0xff,0xff,0xff,0xd7,0xec,0x16,0x80, + 0xff,0xff,0xff,0xff,0xd8,0xf9,0x16,0x90,0xff,0xff,0xff,0xff,0xd9,0xcb,0xf8,0x80, + 0xff,0xff,0xff,0xff,0xdb,0x7,0x1d,0x10,0xff,0xff,0xff,0xff,0xdb,0xab,0xda,0x80, + 0xff,0xff,0xff,0xff,0xdc,0xe6,0xff,0x10,0xff,0xff,0xff,0xff,0xdd,0x8b,0xbc,0x80, + 0x0,0x3,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x0,0x0,0x83,0x3,0x0,0x0, + 0x0,0x0,0x8c,0xa0,0x1,0x4,0x0,0x0,0x7e,0x90,0x0,0x8,0x0,0x0,0x7e,0x90, + 0x0,0x8,0x4c,0x4d,0x54,0x0,0x4a,0x44,0x54,0x0,0x4a,0x53,0x54,0x0,0x0,0x0, + 0x0,0x1,0x0,0x0,0x0,0x1,0xa,0x4a,0x53,0x54,0x2d,0x39,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/UCT + 0x0,0x0,0x0,0x7f, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x80,0x0,0x0,0x0,0x7f, - 0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2d,0x30,0x30,0x0,0x0, - 0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0xf8,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x2d,0x30,0x30,0x0,0x0,0x0,0xa,0x3c,0x2d,0x30,0x30, - 0x3e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/UTC + 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, + 0x0,0x55,0x43,0x54,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0, + 0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0, + 0x0,0x0,0x4,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x55,0x43,0x54,0x0,0x0,0x0,0xa,0x55,0x43,0x54,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/PST8PDT + 0x0,0x0,0x8,0xf6, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x95,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x10,0x9e,0xa6,0x48,0xa0,0x9f, + 0xbb,0x15,0x90,0xa0,0x86,0x2a,0xa0,0xa1,0x9a,0xf7,0x90,0xcb,0x89,0x1a,0xa0,0xd2, + 0x23,0xf4,0x70,0xd2,0x61,0x26,0x10,0xfa,0xf8,0x83,0x20,0xfb,0xe8,0x66,0x10,0xfc, + 0xd8,0x65,0x20,0xfd,0xc8,0x48,0x10,0xfe,0xb8,0x47,0x20,0xff,0xa8,0x2a,0x10,0x0, + 0x98,0x29,0x20,0x1,0x88,0xc,0x10,0x2,0x78,0xb,0x20,0x3,0x71,0x28,0x90,0x4, + 0x61,0x27,0xa0,0x5,0x51,0xa,0x90,0x6,0x41,0x9,0xa0,0x7,0x30,0xec,0x90,0x7, + 0x8d,0x43,0xa0,0x9,0x10,0xce,0x90,0x9,0xad,0xbf,0x20,0xa,0xf0,0xb0,0x90,0xb, + 0xe0,0xaf,0xa0,0xc,0xd9,0xcd,0x10,0xd,0xc0,0x91,0xa0,0xe,0xb9,0xaf,0x10,0xf, + 0xa9,0xae,0x20,0x10,0x99,0x91,0x10,0x11,0x89,0x90,0x20,0x12,0x79,0x73,0x10,0x13, + 0x69,0x72,0x20,0x14,0x59,0x55,0x10,0x15,0x49,0x54,0x20,0x16,0x39,0x37,0x10,0x17, + 0x29,0x36,0x20,0x18,0x22,0x53,0x90,0x19,0x9,0x18,0x20,0x1a,0x2,0x35,0x90,0x1a, + 0xf2,0x34,0xa0,0x1b,0xe2,0x17,0x90,0x1c,0xd2,0x16,0xa0,0x1d,0xc1,0xf9,0x90,0x1e, + 0xb1,0xf8,0xa0,0x1f,0xa1,0xdb,0x90,0x20,0x76,0x2b,0x20,0x21,0x81,0xbd,0x90,0x22, + 0x56,0xd,0x20,0x23,0x6a,0xda,0x10,0x24,0x35,0xef,0x20,0x25,0x4a,0xbc,0x10,0x26, + 0x15,0xd1,0x20,0x27,0x2a,0x9e,0x10,0x27,0xfe,0xed,0xa0,0x29,0xa,0x80,0x10,0x29, + 0xde,0xcf,0xa0,0x2a,0xea,0x62,0x10,0x2b,0xbe,0xb1,0xa0,0x2c,0xd3,0x7e,0x90,0x2d, + 0x9e,0x93,0xa0,0x2e,0xb3,0x60,0x90,0x2f,0x7e,0x75,0xa0,0x30,0x93,0x42,0x90,0x31, + 0x67,0x92,0x20,0x32,0x73,0x24,0x90,0x33,0x47,0x74,0x20,0x34,0x53,0x6,0x90,0x35, + 0x27,0x56,0x20,0x36,0x32,0xe8,0x90,0x37,0x7,0x38,0x20,0x38,0x1c,0x5,0x10,0x38, + 0xe7,0x1a,0x20,0x39,0xfb,0xe7,0x10,0x3a,0xc6,0xfc,0x20,0x3b,0xdb,0xc9,0x10,0x3c, + 0xb0,0x18,0xa0,0x3d,0xbb,0xab,0x10,0x3e,0x8f,0xfa,0xa0,0x3f,0x9b,0x8d,0x10,0x40, + 0x6f,0xdc,0xa0,0x41,0x84,0xa9,0x90,0x42,0x4f,0xbe,0xa0,0x43,0x64,0x8b,0x90,0x44, + 0x2f,0xa0,0xa0,0x45,0x44,0x6d,0x90,0x45,0xf3,0xd3,0x20,0x47,0x2d,0x8a,0x10,0x47, + 0xd3,0xb5,0x20,0x49,0xd,0x6c,0x10,0x49,0xb3,0x97,0x20,0x4a,0xed,0x4e,0x10,0x4b, + 0x9c,0xb3,0xa0,0x4c,0xd6,0x6a,0x90,0x4d,0x7c,0x95,0xa0,0x4e,0xb6,0x4c,0x90,0x4f, + 0x5c,0x77,0xa0,0x50,0x96,0x2e,0x90,0x51,0x3c,0x59,0xa0,0x52,0x76,0x10,0x90,0x53, + 0x1c,0x3b,0xa0,0x54,0x55,0xf2,0x90,0x54,0xfc,0x1d,0xa0,0x56,0x35,0xd4,0x90,0x56, + 0xe5,0x3a,0x20,0x58,0x1e,0xf1,0x10,0x58,0xc5,0x1c,0x20,0x59,0xfe,0xd3,0x10,0x5a, + 0xa4,0xfe,0x20,0x5b,0xde,0xb5,0x10,0x5c,0x84,0xe0,0x20,0x5d,0xbe,0x97,0x10,0x5e, + 0x64,0xc2,0x20,0x5f,0x9e,0x79,0x10,0x60,0x4d,0xde,0xa0,0x61,0x87,0x95,0x90,0x62, + 0x2d,0xc0,0xa0,0x63,0x67,0x77,0x90,0x64,0xd,0xa2,0xa0,0x65,0x47,0x59,0x90,0x65, + 0xed,0x84,0xa0,0x67,0x27,0x3b,0x90,0x67,0xcd,0x66,0xa0,0x69,0x7,0x1d,0x90,0x69, + 0xad,0x48,0xa0,0x6a,0xe6,0xff,0x90,0x6b,0x96,0x65,0x20,0x6c,0xd0,0x1c,0x10,0x6d, + 0x76,0x47,0x20,0x6e,0xaf,0xfe,0x10,0x6f,0x56,0x29,0x20,0x70,0x8f,0xe0,0x10,0x71, + 0x36,0xb,0x20,0x72,0x6f,0xc2,0x10,0x73,0x15,0xed,0x20,0x74,0x4f,0xa4,0x10,0x74, + 0xff,0x9,0xa0,0x76,0x38,0xc0,0x90,0x76,0xde,0xeb,0xa0,0x78,0x18,0xa2,0x90,0x78, + 0xbe,0xcd,0xa0,0x79,0xf8,0x84,0x90,0x7a,0x9e,0xaf,0xa0,0x7b,0xd8,0x66,0x90,0x7c, + 0x7e,0x91,0xa0,0x7d,0xb8,0x48,0x90,0x7e,0x5e,0x73,0xa0,0x7f,0x98,0x2a,0x90,0x0, + 0x1,0x0,0x1,0x2,0x3,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1, + 0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1, + 0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1, + 0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1, + 0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1, + 0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1, + 0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1, + 0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1, + 0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1, + 0x0,0x1,0x0,0x1,0xff,0xff,0x9d,0x90,0x1,0x0,0xff,0xff,0x8f,0x80,0x0,0x4, + 0xff,0xff,0x9d,0x90,0x1,0x8,0xff,0xff,0x9d,0x90,0x1,0xc,0x50,0x44,0x54,0x0, + 0x50,0x53,0x54,0x0,0x50,0x57,0x54,0x0,0x50,0x50,0x54,0x0,0x0,0x0,0x0,0x1, + 0x0,0x0,0x0,0x1,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x95,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x10, + 0xff,0xff,0xff,0xff,0x9e,0xa6,0x48,0xa0,0xff,0xff,0xff,0xff,0x9f,0xbb,0x15,0x90, + 0xff,0xff,0xff,0xff,0xa0,0x86,0x2a,0xa0,0xff,0xff,0xff,0xff,0xa1,0x9a,0xf7,0x90, + 0xff,0xff,0xff,0xff,0xcb,0x89,0x1a,0xa0,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70, + 0xff,0xff,0xff,0xff,0xd2,0x61,0x26,0x10,0xff,0xff,0xff,0xff,0xfa,0xf8,0x83,0x20, + 0xff,0xff,0xff,0xff,0xfb,0xe8,0x66,0x10,0xff,0xff,0xff,0xff,0xfc,0xd8,0x65,0x20, + 0xff,0xff,0xff,0xff,0xfd,0xc8,0x48,0x10,0xff,0xff,0xff,0xff,0xfe,0xb8,0x47,0x20, + 0xff,0xff,0xff,0xff,0xff,0xa8,0x2a,0x10,0x0,0x0,0x0,0x0,0x0,0x98,0x29,0x20, + 0x0,0x0,0x0,0x0,0x1,0x88,0xc,0x10,0x0,0x0,0x0,0x0,0x2,0x78,0xb,0x20, + 0x0,0x0,0x0,0x0,0x3,0x71,0x28,0x90,0x0,0x0,0x0,0x0,0x4,0x61,0x27,0xa0, + 0x0,0x0,0x0,0x0,0x5,0x51,0xa,0x90,0x0,0x0,0x0,0x0,0x6,0x41,0x9,0xa0, + 0x0,0x0,0x0,0x0,0x7,0x30,0xec,0x90,0x0,0x0,0x0,0x0,0x7,0x8d,0x43,0xa0, + 0x0,0x0,0x0,0x0,0x9,0x10,0xce,0x90,0x0,0x0,0x0,0x0,0x9,0xad,0xbf,0x20, + 0x0,0x0,0x0,0x0,0xa,0xf0,0xb0,0x90,0x0,0x0,0x0,0x0,0xb,0xe0,0xaf,0xa0, + 0x0,0x0,0x0,0x0,0xc,0xd9,0xcd,0x10,0x0,0x0,0x0,0x0,0xd,0xc0,0x91,0xa0, + 0x0,0x0,0x0,0x0,0xe,0xb9,0xaf,0x10,0x0,0x0,0x0,0x0,0xf,0xa9,0xae,0x20, + 0x0,0x0,0x0,0x0,0x10,0x99,0x91,0x10,0x0,0x0,0x0,0x0,0x11,0x89,0x90,0x20, + 0x0,0x0,0x0,0x0,0x12,0x79,0x73,0x10,0x0,0x0,0x0,0x0,0x13,0x69,0x72,0x20, + 0x0,0x0,0x0,0x0,0x14,0x59,0x55,0x10,0x0,0x0,0x0,0x0,0x15,0x49,0x54,0x20, + 0x0,0x0,0x0,0x0,0x16,0x39,0x37,0x10,0x0,0x0,0x0,0x0,0x17,0x29,0x36,0x20, + 0x0,0x0,0x0,0x0,0x18,0x22,0x53,0x90,0x0,0x0,0x0,0x0,0x19,0x9,0x18,0x20, + 0x0,0x0,0x0,0x0,0x1a,0x2,0x35,0x90,0x0,0x0,0x0,0x0,0x1a,0xf2,0x34,0xa0, + 0x0,0x0,0x0,0x0,0x1b,0xe2,0x17,0x90,0x0,0x0,0x0,0x0,0x1c,0xd2,0x16,0xa0, + 0x0,0x0,0x0,0x0,0x1d,0xc1,0xf9,0x90,0x0,0x0,0x0,0x0,0x1e,0xb1,0xf8,0xa0, + 0x0,0x0,0x0,0x0,0x1f,0xa1,0xdb,0x90,0x0,0x0,0x0,0x0,0x20,0x76,0x2b,0x20, + 0x0,0x0,0x0,0x0,0x21,0x81,0xbd,0x90,0x0,0x0,0x0,0x0,0x22,0x56,0xd,0x20, + 0x0,0x0,0x0,0x0,0x23,0x6a,0xda,0x10,0x0,0x0,0x0,0x0,0x24,0x35,0xef,0x20, + 0x0,0x0,0x0,0x0,0x25,0x4a,0xbc,0x10,0x0,0x0,0x0,0x0,0x26,0x15,0xd1,0x20, + 0x0,0x0,0x0,0x0,0x27,0x2a,0x9e,0x10,0x0,0x0,0x0,0x0,0x27,0xfe,0xed,0xa0, + 0x0,0x0,0x0,0x0,0x29,0xa,0x80,0x10,0x0,0x0,0x0,0x0,0x29,0xde,0xcf,0xa0, + 0x0,0x0,0x0,0x0,0x2a,0xea,0x62,0x10,0x0,0x0,0x0,0x0,0x2b,0xbe,0xb1,0xa0, + 0x0,0x0,0x0,0x0,0x2c,0xd3,0x7e,0x90,0x0,0x0,0x0,0x0,0x2d,0x9e,0x93,0xa0, + 0x0,0x0,0x0,0x0,0x2e,0xb3,0x60,0x90,0x0,0x0,0x0,0x0,0x2f,0x7e,0x75,0xa0, + 0x0,0x0,0x0,0x0,0x30,0x93,0x42,0x90,0x0,0x0,0x0,0x0,0x31,0x67,0x92,0x20, + 0x0,0x0,0x0,0x0,0x32,0x73,0x24,0x90,0x0,0x0,0x0,0x0,0x33,0x47,0x74,0x20, + 0x0,0x0,0x0,0x0,0x34,0x53,0x6,0x90,0x0,0x0,0x0,0x0,0x35,0x27,0x56,0x20, + 0x0,0x0,0x0,0x0,0x36,0x32,0xe8,0x90,0x0,0x0,0x0,0x0,0x37,0x7,0x38,0x20, + 0x0,0x0,0x0,0x0,0x38,0x1c,0x5,0x10,0x0,0x0,0x0,0x0,0x38,0xe7,0x1a,0x20, + 0x0,0x0,0x0,0x0,0x39,0xfb,0xe7,0x10,0x0,0x0,0x0,0x0,0x3a,0xc6,0xfc,0x20, + 0x0,0x0,0x0,0x0,0x3b,0xdb,0xc9,0x10,0x0,0x0,0x0,0x0,0x3c,0xb0,0x18,0xa0, + 0x0,0x0,0x0,0x0,0x3d,0xbb,0xab,0x10,0x0,0x0,0x0,0x0,0x3e,0x8f,0xfa,0xa0, + 0x0,0x0,0x0,0x0,0x3f,0x9b,0x8d,0x10,0x0,0x0,0x0,0x0,0x40,0x6f,0xdc,0xa0, + 0x0,0x0,0x0,0x0,0x41,0x84,0xa9,0x90,0x0,0x0,0x0,0x0,0x42,0x4f,0xbe,0xa0, + 0x0,0x0,0x0,0x0,0x43,0x64,0x8b,0x90,0x0,0x0,0x0,0x0,0x44,0x2f,0xa0,0xa0, + 0x0,0x0,0x0,0x0,0x45,0x44,0x6d,0x90,0x0,0x0,0x0,0x0,0x45,0xf3,0xd3,0x20, + 0x0,0x0,0x0,0x0,0x47,0x2d,0x8a,0x10,0x0,0x0,0x0,0x0,0x47,0xd3,0xb5,0x20, + 0x0,0x0,0x0,0x0,0x49,0xd,0x6c,0x10,0x0,0x0,0x0,0x0,0x49,0xb3,0x97,0x20, + 0x0,0x0,0x0,0x0,0x4a,0xed,0x4e,0x10,0x0,0x0,0x0,0x0,0x4b,0x9c,0xb3,0xa0, + 0x0,0x0,0x0,0x0,0x4c,0xd6,0x6a,0x90,0x0,0x0,0x0,0x0,0x4d,0x7c,0x95,0xa0, + 0x0,0x0,0x0,0x0,0x4e,0xb6,0x4c,0x90,0x0,0x0,0x0,0x0,0x4f,0x5c,0x77,0xa0, + 0x0,0x0,0x0,0x0,0x50,0x96,0x2e,0x90,0x0,0x0,0x0,0x0,0x51,0x3c,0x59,0xa0, + 0x0,0x0,0x0,0x0,0x52,0x76,0x10,0x90,0x0,0x0,0x0,0x0,0x53,0x1c,0x3b,0xa0, + 0x0,0x0,0x0,0x0,0x54,0x55,0xf2,0x90,0x0,0x0,0x0,0x0,0x54,0xfc,0x1d,0xa0, + 0x0,0x0,0x0,0x0,0x56,0x35,0xd4,0x90,0x0,0x0,0x0,0x0,0x56,0xe5,0x3a,0x20, + 0x0,0x0,0x0,0x0,0x58,0x1e,0xf1,0x10,0x0,0x0,0x0,0x0,0x58,0xc5,0x1c,0x20, + 0x0,0x0,0x0,0x0,0x59,0xfe,0xd3,0x10,0x0,0x0,0x0,0x0,0x5a,0xa4,0xfe,0x20, + 0x0,0x0,0x0,0x0,0x5b,0xde,0xb5,0x10,0x0,0x0,0x0,0x0,0x5c,0x84,0xe0,0x20, + 0x0,0x0,0x0,0x0,0x5d,0xbe,0x97,0x10,0x0,0x0,0x0,0x0,0x5e,0x64,0xc2,0x20, + 0x0,0x0,0x0,0x0,0x5f,0x9e,0x79,0x10,0x0,0x0,0x0,0x0,0x60,0x4d,0xde,0xa0, + 0x0,0x0,0x0,0x0,0x61,0x87,0x95,0x90,0x0,0x0,0x0,0x0,0x62,0x2d,0xc0,0xa0, + 0x0,0x0,0x0,0x0,0x63,0x67,0x77,0x90,0x0,0x0,0x0,0x0,0x64,0xd,0xa2,0xa0, + 0x0,0x0,0x0,0x0,0x65,0x47,0x59,0x90,0x0,0x0,0x0,0x0,0x65,0xed,0x84,0xa0, + 0x0,0x0,0x0,0x0,0x67,0x27,0x3b,0x90,0x0,0x0,0x0,0x0,0x67,0xcd,0x66,0xa0, + 0x0,0x0,0x0,0x0,0x69,0x7,0x1d,0x90,0x0,0x0,0x0,0x0,0x69,0xad,0x48,0xa0, + 0x0,0x0,0x0,0x0,0x6a,0xe6,0xff,0x90,0x0,0x0,0x0,0x0,0x6b,0x96,0x65,0x20, + 0x0,0x0,0x0,0x0,0x6c,0xd0,0x1c,0x10,0x0,0x0,0x0,0x0,0x6d,0x76,0x47,0x20, + 0x0,0x0,0x0,0x0,0x6e,0xaf,0xfe,0x10,0x0,0x0,0x0,0x0,0x6f,0x56,0x29,0x20, + 0x0,0x0,0x0,0x0,0x70,0x8f,0xe0,0x10,0x0,0x0,0x0,0x0,0x71,0x36,0xb,0x20, + 0x0,0x0,0x0,0x0,0x72,0x6f,0xc2,0x10,0x0,0x0,0x0,0x0,0x73,0x15,0xed,0x20, + 0x0,0x0,0x0,0x0,0x74,0x4f,0xa4,0x10,0x0,0x0,0x0,0x0,0x74,0xff,0x9,0xa0, + 0x0,0x0,0x0,0x0,0x76,0x38,0xc0,0x90,0x0,0x0,0x0,0x0,0x76,0xde,0xeb,0xa0, + 0x0,0x0,0x0,0x0,0x78,0x18,0xa2,0x90,0x0,0x0,0x0,0x0,0x78,0xbe,0xcd,0xa0, + 0x0,0x0,0x0,0x0,0x79,0xf8,0x84,0x90,0x0,0x0,0x0,0x0,0x7a,0x9e,0xaf,0xa0, + 0x0,0x0,0x0,0x0,0x7b,0xd8,0x66,0x90,0x0,0x0,0x0,0x0,0x7c,0x7e,0x91,0xa0, + 0x0,0x0,0x0,0x0,0x7d,0xb8,0x48,0x90,0x0,0x0,0x0,0x0,0x7e,0x5e,0x73,0xa0, + 0x0,0x0,0x0,0x0,0x7f,0x98,0x2a,0x90,0x0,0x1,0x0,0x1,0x2,0x3,0x1,0x0, + 0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0, + 0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0, + 0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0, + 0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0, + 0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0, + 0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0, + 0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0, + 0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0, + 0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0xff,0xff,0x9d, + 0x90,0x1,0x0,0xff,0xff,0x8f,0x80,0x0,0x4,0xff,0xff,0x9d,0x90,0x1,0x8,0xff, + 0xff,0x9d,0x90,0x1,0xc,0x50,0x44,0x54,0x0,0x50,0x53,0x54,0x0,0x50,0x57,0x54, + 0x0,0x50,0x50,0x54,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0xa,0x50,0x53, + 0x54,0x38,0x50,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31, + 0x2e,0x31,0x2e,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/MST 0x0,0x0,0x0,0x7f, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, - 0x0,0x55,0x54,0x43,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0xff,0xff,0x9d,0x90,0x0, + 0x0,0x4d,0x53,0x54,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0, - 0x0,0x0,0x4,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x55,0x54,0x43,0x0,0x0,0x0,0xa,0x55,0x54,0x43,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/WET - 0x0,0x0,0x7,0x51, + 0x0,0x0,0x4,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0x9d,0x90, + 0x0,0x0,0x4d,0x53,0x54,0x0,0x0,0x0,0xa,0x4d,0x53,0x54,0x37,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/NZ + 0x0,0x0,0x9,0x9c, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x9c,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x13,0x80,0x0,0x0,0x0,0xb0, + 0xb4,0xb2,0xe8,0xb1,0x51,0x87,0x58,0xb2,0x78,0xe5,0x68,0xb3,0x43,0xe5,0x60,0xb4, + 0x58,0xc7,0x68,0xb5,0x23,0xc7,0x60,0xb6,0x38,0xa9,0x68,0xb7,0x3,0xa9,0x60,0xb8, + 0x18,0x8b,0x68,0xb8,0xec,0xc5,0xe0,0xb9,0xf8,0x6d,0x68,0xba,0xcc,0xa7,0xe0,0xbb, + 0xd8,0x4f,0x68,0xbc,0xe3,0xe8,0xe0,0xbd,0xae,0xf6,0xe8,0xbe,0xc3,0xca,0xe0,0xbf, + 0x8e,0xd8,0xe8,0xc0,0xa3,0xac,0xe0,0xc1,0x6e,0xba,0xe8,0xc2,0x83,0x8e,0xe0,0xc3, + 0x4e,0x9c,0xe8,0xc4,0x63,0x70,0xe0,0xc5,0x2e,0x7e,0xe8,0xc6,0x4c,0x8d,0x60,0xc7, + 0xe,0x60,0xe8,0xc8,0x2c,0x6f,0x60,0xc8,0xf7,0x7d,0x68,0xd2,0xda,0x9a,0x40,0x9, + 0x18,0xfd,0xe0,0x9,0xac,0xa5,0xe0,0xa,0xef,0xa5,0x60,0xb,0x9e,0xfc,0xe0,0xc, + 0xd8,0xc1,0xe0,0xd,0x7e,0xde,0xe0,0xe,0xb8,0xa3,0xe0,0xf,0x5e,0xc0,0xe0,0x10, + 0x98,0x85,0xe0,0x11,0x3e,0xa2,0xe0,0x12,0x78,0x67,0xe0,0x13,0x1e,0x84,0xe0,0x14, + 0x58,0x49,0xe0,0x14,0xfe,0x66,0xe0,0x16,0x38,0x2b,0xe0,0x16,0xe7,0x83,0x60,0x18, + 0x21,0x48,0x60,0x18,0xc7,0x65,0x60,0x1a,0x1,0x2a,0x60,0x1a,0xa7,0x47,0x60,0x1b, + 0xe1,0xc,0x60,0x1c,0x87,0x29,0x60,0x1d,0xc0,0xee,0x60,0x1e,0x67,0xb,0x60,0x1f, + 0xa0,0xd0,0x60,0x20,0x46,0xed,0x60,0x21,0x80,0xb2,0x60,0x22,0x30,0x9,0xe0,0x23, + 0x69,0xce,0xe0,0x24,0xf,0xeb,0xe0,0x25,0x2e,0x1,0x60,0x26,0x2,0x42,0xe0,0x27, + 0xd,0xe3,0x60,0x27,0xe2,0x24,0xe0,0x28,0xed,0xc5,0x60,0x29,0xc2,0x6,0xe0,0x2a, + 0xcd,0xa7,0x60,0x2b,0xab,0x23,0x60,0x2c,0xad,0x89,0x60,0x2d,0x8b,0x5,0x60,0x2e, + 0x8d,0x6b,0x60,0x2f,0x6a,0xe7,0x60,0x30,0x6d,0x4d,0x60,0x31,0x4a,0xc9,0x60,0x32, + 0x56,0x69,0xe0,0x33,0x2a,0xab,0x60,0x34,0x36,0x4b,0xe0,0x35,0xa,0x8d,0x60,0x36, + 0x16,0x2d,0xe0,0x36,0xf3,0xa9,0xe0,0x37,0xf6,0xf,0xe0,0x38,0xd3,0x8b,0xe0,0x39, + 0xd5,0xf1,0xe0,0x3a,0xb3,0x6d,0xe0,0x3b,0xbf,0xe,0x60,0x3c,0x93,0x4f,0xe0,0x3d, + 0x9e,0xf0,0x60,0x3e,0x73,0x31,0xe0,0x3f,0x7e,0xd2,0x60,0x40,0x5c,0x4e,0x60,0x41, + 0x5e,0xb4,0x60,0x42,0x3c,0x30,0x60,0x43,0x3e,0x96,0x60,0x44,0x1c,0x12,0x60,0x45, + 0x1e,0x78,0x60,0x45,0xfb,0xf4,0x60,0x46,0xfe,0x5a,0x60,0x47,0xf7,0x85,0xe0,0x48, + 0xde,0x3c,0x60,0x49,0xd7,0x67,0xe0,0x4a,0xbe,0x1e,0x60,0x4b,0xb7,0x49,0xe0,0x4c, + 0x9e,0x0,0x60,0x4d,0x97,0x2b,0xe0,0x4e,0x7d,0xe2,0x60,0x4f,0x77,0xd,0xe0,0x50, + 0x66,0xfe,0xe0,0x51,0x60,0x2a,0x60,0x52,0x46,0xe0,0xe0,0x53,0x40,0xc,0x60,0x54, + 0x26,0xc2,0xe0,0x55,0x1f,0xee,0x60,0x56,0x6,0xa4,0xe0,0x56,0xff,0xd0,0x60,0x57, + 0xe6,0x86,0xe0,0x58,0xdf,0xb2,0x60,0x59,0xc6,0x68,0xe0,0x5a,0xbf,0x94,0x60,0x5b, + 0xaf,0x85,0x60,0x5c,0xa8,0xb0,0xe0,0x5d,0x8f,0x67,0x60,0x5e,0x88,0x92,0xe0,0x5f, + 0x6f,0x49,0x60,0x60,0x68,0x74,0xe0,0x61,0x4f,0x2b,0x60,0x62,0x48,0x56,0xe0,0x63, + 0x2f,0xd,0x60,0x64,0x28,0x38,0xe0,0x65,0xe,0xef,0x60,0x66,0x11,0x55,0x60,0x66, + 0xf8,0xb,0xe0,0x67,0xf1,0x37,0x60,0x68,0xd7,0xed,0xe0,0x69,0xd1,0x19,0x60,0x6a, + 0xb7,0xcf,0xe0,0x6b,0xb0,0xfb,0x60,0x6c,0x97,0xb1,0xe0,0x6d,0x90,0xdd,0x60,0x6e, + 0x77,0x93,0xe0,0x6f,0x70,0xbf,0x60,0x70,0x60,0xb0,0x60,0x71,0x59,0xdb,0xe0,0x72, + 0x40,0x92,0x60,0x73,0x39,0xbd,0xe0,0x74,0x20,0x74,0x60,0x75,0x19,0x9f,0xe0,0x76, + 0x0,0x56,0x60,0x76,0xf9,0x81,0xe0,0x77,0xe0,0x38,0x60,0x78,0xd9,0x63,0xe0,0x79, + 0xc0,0x1a,0x60,0x7a,0xb9,0x45,0xe0,0x7b,0xa9,0x36,0xe0,0x7c,0xa2,0x62,0x60,0x7d, + 0x89,0x18,0xe0,0x7e,0x82,0x44,0x60,0x7f,0x68,0xfa,0xe0,0x2,0x1,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x6,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x0,0x0,0xa3,0xd8,0x0,0x0,0x0,0x0,0xaf, + 0xc8,0x1,0x4,0x0,0x0,0xa1,0xb8,0x0,0x9,0x0,0x0,0xa8,0xc0,0x1,0x4,0x0, + 0x0,0xb6,0xd0,0x1,0xe,0x0,0x0,0xa8,0xc0,0x0,0x4,0x0,0x0,0xa8,0xc0,0x0, + 0x4,0x4c,0x4d,0x54,0x0,0x4e,0x5a,0x53,0x54,0x0,0x4e,0x5a,0x4d,0x54,0x0,0x4e, + 0x5a,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x9d,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x13,0xf8,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x41,0xb7,0x4c,0xa8,0xff,0xff, + 0xff,0xff,0xb0,0xb4,0xb2,0xe8,0xff,0xff,0xff,0xff,0xb1,0x51,0x87,0x58,0xff,0xff, + 0xff,0xff,0xb2,0x78,0xe5,0x68,0xff,0xff,0xff,0xff,0xb3,0x43,0xe5,0x60,0xff,0xff, + 0xff,0xff,0xb4,0x58,0xc7,0x68,0xff,0xff,0xff,0xff,0xb5,0x23,0xc7,0x60,0xff,0xff, + 0xff,0xff,0xb6,0x38,0xa9,0x68,0xff,0xff,0xff,0xff,0xb7,0x3,0xa9,0x60,0xff,0xff, + 0xff,0xff,0xb8,0x18,0x8b,0x68,0xff,0xff,0xff,0xff,0xb8,0xec,0xc5,0xe0,0xff,0xff, + 0xff,0xff,0xb9,0xf8,0x6d,0x68,0xff,0xff,0xff,0xff,0xba,0xcc,0xa7,0xe0,0xff,0xff, + 0xff,0xff,0xbb,0xd8,0x4f,0x68,0xff,0xff,0xff,0xff,0xbc,0xe3,0xe8,0xe0,0xff,0xff, + 0xff,0xff,0xbd,0xae,0xf6,0xe8,0xff,0xff,0xff,0xff,0xbe,0xc3,0xca,0xe0,0xff,0xff, + 0xff,0xff,0xbf,0x8e,0xd8,0xe8,0xff,0xff,0xff,0xff,0xc0,0xa3,0xac,0xe0,0xff,0xff, + 0xff,0xff,0xc1,0x6e,0xba,0xe8,0xff,0xff,0xff,0xff,0xc2,0x83,0x8e,0xe0,0xff,0xff, + 0xff,0xff,0xc3,0x4e,0x9c,0xe8,0xff,0xff,0xff,0xff,0xc4,0x63,0x70,0xe0,0xff,0xff, + 0xff,0xff,0xc5,0x2e,0x7e,0xe8,0xff,0xff,0xff,0xff,0xc6,0x4c,0x8d,0x60,0xff,0xff, + 0xff,0xff,0xc7,0xe,0x60,0xe8,0xff,0xff,0xff,0xff,0xc8,0x2c,0x6f,0x60,0xff,0xff, + 0xff,0xff,0xc8,0xf7,0x7d,0x68,0xff,0xff,0xff,0xff,0xd2,0xda,0x9a,0x40,0x0,0x0, + 0x0,0x0,0x9,0x18,0xfd,0xe0,0x0,0x0,0x0,0x0,0x9,0xac,0xa5,0xe0,0x0,0x0, + 0x0,0x0,0xa,0xef,0xa5,0x60,0x0,0x0,0x0,0x0,0xb,0x9e,0xfc,0xe0,0x0,0x0, + 0x0,0x0,0xc,0xd8,0xc1,0xe0,0x0,0x0,0x0,0x0,0xd,0x7e,0xde,0xe0,0x0,0x0, + 0x0,0x0,0xe,0xb8,0xa3,0xe0,0x0,0x0,0x0,0x0,0xf,0x5e,0xc0,0xe0,0x0,0x0, + 0x0,0x0,0x10,0x98,0x85,0xe0,0x0,0x0,0x0,0x0,0x11,0x3e,0xa2,0xe0,0x0,0x0, + 0x0,0x0,0x12,0x78,0x67,0xe0,0x0,0x0,0x0,0x0,0x13,0x1e,0x84,0xe0,0x0,0x0, + 0x0,0x0,0x14,0x58,0x49,0xe0,0x0,0x0,0x0,0x0,0x14,0xfe,0x66,0xe0,0x0,0x0, + 0x0,0x0,0x16,0x38,0x2b,0xe0,0x0,0x0,0x0,0x0,0x16,0xe7,0x83,0x60,0x0,0x0, + 0x0,0x0,0x18,0x21,0x48,0x60,0x0,0x0,0x0,0x0,0x18,0xc7,0x65,0x60,0x0,0x0, + 0x0,0x0,0x1a,0x1,0x2a,0x60,0x0,0x0,0x0,0x0,0x1a,0xa7,0x47,0x60,0x0,0x0, + 0x0,0x0,0x1b,0xe1,0xc,0x60,0x0,0x0,0x0,0x0,0x1c,0x87,0x29,0x60,0x0,0x0, + 0x0,0x0,0x1d,0xc0,0xee,0x60,0x0,0x0,0x0,0x0,0x1e,0x67,0xb,0x60,0x0,0x0, + 0x0,0x0,0x1f,0xa0,0xd0,0x60,0x0,0x0,0x0,0x0,0x20,0x46,0xed,0x60,0x0,0x0, + 0x0,0x0,0x21,0x80,0xb2,0x60,0x0,0x0,0x0,0x0,0x22,0x30,0x9,0xe0,0x0,0x0, + 0x0,0x0,0x23,0x69,0xce,0xe0,0x0,0x0,0x0,0x0,0x24,0xf,0xeb,0xe0,0x0,0x0, + 0x0,0x0,0x25,0x2e,0x1,0x60,0x0,0x0,0x0,0x0,0x26,0x2,0x42,0xe0,0x0,0x0, + 0x0,0x0,0x27,0xd,0xe3,0x60,0x0,0x0,0x0,0x0,0x27,0xe2,0x24,0xe0,0x0,0x0, + 0x0,0x0,0x28,0xed,0xc5,0x60,0x0,0x0,0x0,0x0,0x29,0xc2,0x6,0xe0,0x0,0x0, + 0x0,0x0,0x2a,0xcd,0xa7,0x60,0x0,0x0,0x0,0x0,0x2b,0xab,0x23,0x60,0x0,0x0, + 0x0,0x0,0x2c,0xad,0x89,0x60,0x0,0x0,0x0,0x0,0x2d,0x8b,0x5,0x60,0x0,0x0, + 0x0,0x0,0x2e,0x8d,0x6b,0x60,0x0,0x0,0x0,0x0,0x2f,0x6a,0xe7,0x60,0x0,0x0, + 0x0,0x0,0x30,0x6d,0x4d,0x60,0x0,0x0,0x0,0x0,0x31,0x4a,0xc9,0x60,0x0,0x0, + 0x0,0x0,0x32,0x56,0x69,0xe0,0x0,0x0,0x0,0x0,0x33,0x2a,0xab,0x60,0x0,0x0, + 0x0,0x0,0x34,0x36,0x4b,0xe0,0x0,0x0,0x0,0x0,0x35,0xa,0x8d,0x60,0x0,0x0, + 0x0,0x0,0x36,0x16,0x2d,0xe0,0x0,0x0,0x0,0x0,0x36,0xf3,0xa9,0xe0,0x0,0x0, + 0x0,0x0,0x37,0xf6,0xf,0xe0,0x0,0x0,0x0,0x0,0x38,0xd3,0x8b,0xe0,0x0,0x0, + 0x0,0x0,0x39,0xd5,0xf1,0xe0,0x0,0x0,0x0,0x0,0x3a,0xb3,0x6d,0xe0,0x0,0x0, + 0x0,0x0,0x3b,0xbf,0xe,0x60,0x0,0x0,0x0,0x0,0x3c,0x93,0x4f,0xe0,0x0,0x0, + 0x0,0x0,0x3d,0x9e,0xf0,0x60,0x0,0x0,0x0,0x0,0x3e,0x73,0x31,0xe0,0x0,0x0, + 0x0,0x0,0x3f,0x7e,0xd2,0x60,0x0,0x0,0x0,0x0,0x40,0x5c,0x4e,0x60,0x0,0x0, + 0x0,0x0,0x41,0x5e,0xb4,0x60,0x0,0x0,0x0,0x0,0x42,0x3c,0x30,0x60,0x0,0x0, + 0x0,0x0,0x43,0x3e,0x96,0x60,0x0,0x0,0x0,0x0,0x44,0x1c,0x12,0x60,0x0,0x0, + 0x0,0x0,0x45,0x1e,0x78,0x60,0x0,0x0,0x0,0x0,0x45,0xfb,0xf4,0x60,0x0,0x0, + 0x0,0x0,0x46,0xfe,0x5a,0x60,0x0,0x0,0x0,0x0,0x47,0xf7,0x85,0xe0,0x0,0x0, + 0x0,0x0,0x48,0xde,0x3c,0x60,0x0,0x0,0x0,0x0,0x49,0xd7,0x67,0xe0,0x0,0x0, + 0x0,0x0,0x4a,0xbe,0x1e,0x60,0x0,0x0,0x0,0x0,0x4b,0xb7,0x49,0xe0,0x0,0x0, + 0x0,0x0,0x4c,0x9e,0x0,0x60,0x0,0x0,0x0,0x0,0x4d,0x97,0x2b,0xe0,0x0,0x0, + 0x0,0x0,0x4e,0x7d,0xe2,0x60,0x0,0x0,0x0,0x0,0x4f,0x77,0xd,0xe0,0x0,0x0, + 0x0,0x0,0x50,0x66,0xfe,0xe0,0x0,0x0,0x0,0x0,0x51,0x60,0x2a,0x60,0x0,0x0, + 0x0,0x0,0x52,0x46,0xe0,0xe0,0x0,0x0,0x0,0x0,0x53,0x40,0xc,0x60,0x0,0x0, + 0x0,0x0,0x54,0x26,0xc2,0xe0,0x0,0x0,0x0,0x0,0x55,0x1f,0xee,0x60,0x0,0x0, + 0x0,0x0,0x56,0x6,0xa4,0xe0,0x0,0x0,0x0,0x0,0x56,0xff,0xd0,0x60,0x0,0x0, + 0x0,0x0,0x57,0xe6,0x86,0xe0,0x0,0x0,0x0,0x0,0x58,0xdf,0xb2,0x60,0x0,0x0, + 0x0,0x0,0x59,0xc6,0x68,0xe0,0x0,0x0,0x0,0x0,0x5a,0xbf,0x94,0x60,0x0,0x0, + 0x0,0x0,0x5b,0xaf,0x85,0x60,0x0,0x0,0x0,0x0,0x5c,0xa8,0xb0,0xe0,0x0,0x0, + 0x0,0x0,0x5d,0x8f,0x67,0x60,0x0,0x0,0x0,0x0,0x5e,0x88,0x92,0xe0,0x0,0x0, + 0x0,0x0,0x5f,0x6f,0x49,0x60,0x0,0x0,0x0,0x0,0x60,0x68,0x74,0xe0,0x0,0x0, + 0x0,0x0,0x61,0x4f,0x2b,0x60,0x0,0x0,0x0,0x0,0x62,0x48,0x56,0xe0,0x0,0x0, + 0x0,0x0,0x63,0x2f,0xd,0x60,0x0,0x0,0x0,0x0,0x64,0x28,0x38,0xe0,0x0,0x0, + 0x0,0x0,0x65,0xe,0xef,0x60,0x0,0x0,0x0,0x0,0x66,0x11,0x55,0x60,0x0,0x0, + 0x0,0x0,0x66,0xf8,0xb,0xe0,0x0,0x0,0x0,0x0,0x67,0xf1,0x37,0x60,0x0,0x0, + 0x0,0x0,0x68,0xd7,0xed,0xe0,0x0,0x0,0x0,0x0,0x69,0xd1,0x19,0x60,0x0,0x0, + 0x0,0x0,0x6a,0xb7,0xcf,0xe0,0x0,0x0,0x0,0x0,0x6b,0xb0,0xfb,0x60,0x0,0x0, + 0x0,0x0,0x6c,0x97,0xb1,0xe0,0x0,0x0,0x0,0x0,0x6d,0x90,0xdd,0x60,0x0,0x0, + 0x0,0x0,0x6e,0x77,0x93,0xe0,0x0,0x0,0x0,0x0,0x6f,0x70,0xbf,0x60,0x0,0x0, + 0x0,0x0,0x70,0x60,0xb0,0x60,0x0,0x0,0x0,0x0,0x71,0x59,0xdb,0xe0,0x0,0x0, + 0x0,0x0,0x72,0x40,0x92,0x60,0x0,0x0,0x0,0x0,0x73,0x39,0xbd,0xe0,0x0,0x0, + 0x0,0x0,0x74,0x20,0x74,0x60,0x0,0x0,0x0,0x0,0x75,0x19,0x9f,0xe0,0x0,0x0, + 0x0,0x0,0x76,0x0,0x56,0x60,0x0,0x0,0x0,0x0,0x76,0xf9,0x81,0xe0,0x0,0x0, + 0x0,0x0,0x77,0xe0,0x38,0x60,0x0,0x0,0x0,0x0,0x78,0xd9,0x63,0xe0,0x0,0x0, + 0x0,0x0,0x79,0xc0,0x1a,0x60,0x0,0x0,0x0,0x0,0x7a,0xb9,0x45,0xe0,0x0,0x0, + 0x0,0x0,0x7b,0xa9,0x36,0xe0,0x0,0x0,0x0,0x0,0x7c,0xa2,0x62,0x60,0x0,0x0, + 0x0,0x0,0x7d,0x89,0x18,0xe0,0x0,0x0,0x0,0x0,0x7e,0x82,0x44,0x60,0x0,0x0, + 0x0,0x0,0x7f,0x68,0xfa,0xe0,0x0,0x2,0x1,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x6,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x0,0x0,0xa3,0xd8,0x0,0x0,0x0,0x0,0xaf,0xc8,0x1,0x4,0x0, + 0x0,0xa1,0xb8,0x0,0x9,0x0,0x0,0xa8,0xc0,0x1,0x4,0x0,0x0,0xb6,0xd0,0x1, + 0xe,0x0,0x0,0xa8,0xc0,0x0,0x4,0x0,0x0,0xa8,0xc0,0x0,0x4,0x4c,0x4d,0x54, + 0x0,0x4e,0x5a,0x53,0x54,0x0,0x4e,0x5a,0x4d,0x54,0x0,0x4e,0x5a,0x44,0x54,0x0, + 0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x4e, + 0x5a,0x53,0x54,0x2d,0x31,0x32,0x4e,0x5a,0x44,0x54,0x2c,0x4d,0x39,0x2e,0x35,0x2e, + 0x30,0x2c,0x4d,0x34,0x2e,0x31,0x2e,0x30,0x2f,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/EET + 0x0,0x0,0x7,0x54, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, @@ -152,8 +399,8 @@ static const unsigned char qt_resource_data[] = { 0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0, 0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0, 0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0, - 0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x0,0xe, - 0x10,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x57,0x45,0x53,0x54,0x0,0x57,0x45, + 0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x0,0x2a, + 0x30,0x1,0x0,0x0,0x0,0x1c,0x20,0x0,0x5,0x45,0x45,0x53,0x54,0x0,0x45,0x45, 0x54,0x0,0x1,0x1,0x1,0x1,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0, 0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7a,0x0,0x0,0x0,0x2,0x0,0x0, @@ -225,359 +472,433 @@ static const unsigned char qt_resource_data[] = { 0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1, 0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1, 0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1, - 0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x0,0xe,0x10, - 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x57,0x45,0x53,0x54,0x0,0x57,0x45,0x54, - 0x0,0x1,0x1,0x1,0x1,0xa,0x57,0x45,0x54,0x30,0x57,0x45,0x53,0x54,0x2c,0x4d, - 0x33,0x2e,0x35,0x2e,0x30,0x2f,0x31,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30,0xa, - - // /home/konrad/src/smoke/tzone/zoneinfo/Greenwich - 0x0,0x0,0x0,0x7f, + 0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x0,0x2a,0x30, + 0x1,0x0,0x0,0x0,0x1c,0x20,0x0,0x5,0x45,0x45,0x53,0x54,0x0,0x45,0x45,0x54, + 0x0,0x1,0x1,0x1,0x1,0xa,0x45,0x45,0x54,0x2d,0x32,0x45,0x45,0x53,0x54,0x2c, + 0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2f,0x33,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30, + 0x2f,0x34,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Iran + 0x0,0x0,0x6,0xb6, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, - 0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0, - 0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0, - 0x0,0x0,0x4,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0xa,0x47,0x4d,0x54,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/iso3166.tab - 0x0,0x0,0x11,0x7c, - 0x23, - 0x20,0x49,0x53,0x4f,0x20,0x33,0x31,0x36,0x36,0x20,0x61,0x6c,0x70,0x68,0x61,0x2d, - 0x32,0x20,0x63,0x6f,0x75,0x6e,0x74,0x72,0x79,0x20,0x63,0x6f,0x64,0x65,0x73,0xa, - 0x23,0xa,0x23,0x20,0x54,0x68,0x69,0x73,0x20,0x66,0x69,0x6c,0x65,0x20,0x69,0x73, - 0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x70,0x75,0x62,0x6c,0x69,0x63,0x20,0x64, - 0x6f,0x6d,0x61,0x69,0x6e,0x2c,0x20,0x73,0x6f,0x20,0x63,0x6c,0x61,0x72,0x69,0x66, - 0x69,0x65,0x64,0x20,0x61,0x73,0x20,0x6f,0x66,0xa,0x23,0x20,0x32,0x30,0x30,0x39, - 0x2d,0x30,0x35,0x2d,0x31,0x37,0x20,0x62,0x79,0x20,0x41,0x72,0x74,0x68,0x75,0x72, - 0x20,0x44,0x61,0x76,0x69,0x64,0x20,0x4f,0x6c,0x73,0x6f,0x6e,0x2e,0xa,0x23,0xa, - 0x23,0x20,0x46,0x72,0x6f,0x6d,0x20,0x50,0x61,0x75,0x6c,0x20,0x45,0x67,0x67,0x65, - 0x72,0x74,0x20,0x28,0x32,0x30,0x31,0x35,0x2d,0x30,0x35,0x2d,0x30,0x32,0x29,0x3a, - 0xa,0x23,0x20,0x54,0x68,0x69,0x73,0x20,0x66,0x69,0x6c,0x65,0x20,0x63,0x6f,0x6e, - 0x74,0x61,0x69,0x6e,0x73,0x20,0x61,0x20,0x74,0x61,0x62,0x6c,0x65,0x20,0x6f,0x66, - 0x20,0x74,0x77,0x6f,0x2d,0x6c,0x65,0x74,0x74,0x65,0x72,0x20,0x63,0x6f,0x75,0x6e, - 0x74,0x72,0x79,0x20,0x63,0x6f,0x64,0x65,0x73,0x2e,0x20,0x20,0x43,0x6f,0x6c,0x75, - 0x6d,0x6e,0x73,0x20,0x61,0x72,0x65,0xa,0x23,0x20,0x73,0x65,0x70,0x61,0x72,0x61, - 0x74,0x65,0x64,0x20,0x62,0x79,0x20,0x61,0x20,0x73,0x69,0x6e,0x67,0x6c,0x65,0x20, - 0x74,0x61,0x62,0x2e,0x20,0x20,0x4c,0x69,0x6e,0x65,0x73,0x20,0x62,0x65,0x67,0x69, - 0x6e,0x6e,0x69,0x6e,0x67,0x20,0x77,0x69,0x74,0x68,0x20,0x27,0x23,0x27,0x20,0x61, - 0x72,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x65,0x6e,0x74,0x73,0x2e,0xa,0x23,0x20,0x41, - 0x6c,0x6c,0x20,0x74,0x65,0x78,0x74,0x20,0x75,0x73,0x65,0x73,0x20,0x55,0x54,0x46, - 0x2d,0x38,0x20,0x65,0x6e,0x63,0x6f,0x64,0x69,0x6e,0x67,0x2e,0x20,0x20,0x54,0x68, - 0x65,0x20,0x63,0x6f,0x6c,0x75,0x6d,0x6e,0x73,0x20,0x6f,0x66,0x20,0x74,0x68,0x65, - 0x20,0x74,0x61,0x62,0x6c,0x65,0x20,0x61,0x72,0x65,0x20,0x61,0x73,0x20,0x66,0x6f, - 0x6c,0x6c,0x6f,0x77,0x73,0x3a,0xa,0x23,0xa,0x23,0x20,0x31,0x2e,0x20,0x20,0x49, - 0x53,0x4f,0x20,0x33,0x31,0x36,0x36,0x2d,0x31,0x20,0x61,0x6c,0x70,0x68,0x61,0x2d, - 0x32,0x20,0x63,0x6f,0x75,0x6e,0x74,0x72,0x79,0x20,0x63,0x6f,0x64,0x65,0x2c,0x20, - 0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x20,0x61,0x73,0x20,0x6f,0x66,0xa,0x23,0x20, - 0x20,0x20,0x20,0x20,0x49,0x53,0x4f,0x20,0x33,0x31,0x36,0x36,0x2d,0x31,0x20,0x4e, - 0x65,0x77,0x73,0x6c,0x65,0x74,0x74,0x65,0x72,0x20,0x56,0x49,0x2d,0x31,0x36,0x20, - 0x28,0x32,0x30,0x31,0x33,0x2d,0x30,0x37,0x2d,0x31,0x31,0x29,0x2e,0x20,0x20,0x53, - 0x65,0x65,0x3a,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x73,0x20,0x6f,0x6e,0x20,0x49, - 0x53,0x4f,0x20,0x33,0x31,0x36,0x36,0xa,0x23,0x20,0x20,0x20,0x68,0x74,0x74,0x70, - 0x3a,0x2f,0x2f,0x77,0x77,0x77,0x2e,0x69,0x73,0x6f,0x2e,0x6f,0x72,0x67,0x2f,0x69, - 0x73,0x6f,0x2f,0x68,0x6f,0x6d,0x65,0x2f,0x73,0x74,0x61,0x6e,0x64,0x61,0x72,0x64, - 0x73,0x2f,0x63,0x6f,0x75,0x6e,0x74,0x72,0x79,0x5f,0x63,0x6f,0x64,0x65,0x73,0x2f, - 0x75,0x70,0x64,0x61,0x74,0x65,0x73,0x5f,0x6f,0x6e,0x5f,0x69,0x73,0x6f,0x5f,0x33, - 0x31,0x36,0x36,0x2e,0x68,0x74,0x6d,0xa,0x23,0x20,0x32,0x2e,0x20,0x20,0x54,0x68, - 0x65,0x20,0x75,0x73,0x75,0x61,0x6c,0x20,0x45,0x6e,0x67,0x6c,0x69,0x73,0x68,0x20, - 0x6e,0x61,0x6d,0x65,0x20,0x66,0x6f,0x72,0x20,0x74,0x68,0x65,0x20,0x63,0x6f,0x64, - 0x65,0x64,0x20,0x72,0x65,0x67,0x69,0x6f,0x6e,0x2c,0xa,0x23,0x20,0x20,0x20,0x20, - 0x20,0x63,0x68,0x6f,0x73,0x65,0x6e,0x20,0x73,0x6f,0x20,0x74,0x68,0x61,0x74,0x20, - 0x61,0x6c,0x70,0x68,0x61,0x62,0x65,0x74,0x69,0x63,0x20,0x73,0x6f,0x72,0x74,0x69, - 0x6e,0x67,0x20,0x6f,0x66,0x20,0x73,0x75,0x62,0x73,0x65,0x74,0x73,0x20,0x70,0x72, - 0x6f,0x64,0x75,0x63,0x65,0x73,0x20,0x68,0x65,0x6c,0x70,0x66,0x75,0x6c,0x20,0x6c, - 0x69,0x73,0x74,0x73,0x2e,0xa,0x23,0x20,0x20,0x20,0x20,0x20,0x54,0x68,0x69,0x73, - 0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x74,0x68,0x65,0x20,0x73,0x61,0x6d,0x65, - 0x20,0x61,0x73,0x20,0x74,0x68,0x65,0x20,0x45,0x6e,0x67,0x6c,0x69,0x73,0x68,0x20, - 0x6e,0x61,0x6d,0x65,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x49,0x53,0x4f,0x20, - 0x33,0x31,0x36,0x36,0x20,0x74,0x61,0x62,0x6c,0x65,0x73,0x2e,0xa,0x23,0xa,0x23, - 0x20,0x54,0x68,0x65,0x20,0x74,0x61,0x62,0x6c,0x65,0x20,0x69,0x73,0x20,0x73,0x6f, - 0x72,0x74,0x65,0x64,0x20,0x62,0x79,0x20,0x63,0x6f,0x75,0x6e,0x74,0x72,0x79,0x20, - 0x63,0x6f,0x64,0x65,0x2e,0xa,0x23,0xa,0x23,0x20,0x54,0x68,0x69,0x73,0x20,0x74, - 0x61,0x62,0x6c,0x65,0x20,0x69,0x73,0x20,0x69,0x6e,0x74,0x65,0x6e,0x64,0x65,0x64, - 0x20,0x61,0x73,0x20,0x61,0x6e,0x20,0x61,0x69,0x64,0x20,0x66,0x6f,0x72,0x20,0x75, - 0x73,0x65,0x72,0x73,0x2c,0x20,0x74,0x6f,0x20,0x68,0x65,0x6c,0x70,0x20,0x74,0x68, - 0x65,0x6d,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x20,0x74,0x69,0x6d,0x65,0xa,0x23, - 0x20,0x7a,0x6f,0x6e,0x65,0x20,0x64,0x61,0x74,0x61,0x20,0x61,0x70,0x70,0x72,0x6f, - 0x70,0x72,0x69,0x61,0x74,0x65,0x20,0x66,0x6f,0x72,0x20,0x74,0x68,0x65,0x69,0x72, - 0x20,0x70,0x72,0x61,0x63,0x74,0x69,0x63,0x61,0x6c,0x20,0x6e,0x65,0x65,0x64,0x73, - 0x2e,0x20,0x20,0x49,0x74,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x69,0x6e,0x74, - 0x65,0x6e,0x64,0x65,0x64,0xa,0x23,0x20,0x74,0x6f,0x20,0x74,0x61,0x6b,0x65,0x20, - 0x6f,0x72,0x20,0x65,0x6e,0x64,0x6f,0x72,0x73,0x65,0x20,0x61,0x6e,0x79,0x20,0x70, - 0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x20,0x6f,0x6e,0x20,0x6c,0x65,0x67,0x61,0x6c, - 0x20,0x6f,0x72,0x20,0x74,0x65,0x72,0x72,0x69,0x74,0x6f,0x72,0x69,0x61,0x6c,0x20, - 0x63,0x6c,0x61,0x69,0x6d,0x73,0x2e,0xa,0x23,0xa,0x23,0x63,0x6f,0x75,0x6e,0x74, - 0x72,0x79,0x2d,0xa,0x23,0x63,0x6f,0x64,0x65,0x9,0x6e,0x61,0x6d,0x65,0x20,0x6f, - 0x66,0x20,0x63,0x6f,0x75,0x6e,0x74,0x72,0x79,0x2c,0x20,0x74,0x65,0x72,0x72,0x69, - 0x74,0x6f,0x72,0x79,0x2c,0x20,0x61,0x72,0x65,0x61,0x2c,0x20,0x6f,0x72,0x20,0x73, - 0x75,0x62,0x64,0x69,0x76,0x69,0x73,0x69,0x6f,0x6e,0xa,0x41,0x44,0x9,0x41,0x6e, - 0x64,0x6f,0x72,0x72,0x61,0xa,0x41,0x45,0x9,0x55,0x6e,0x69,0x74,0x65,0x64,0x20, - 0x41,0x72,0x61,0x62,0x20,0x45,0x6d,0x69,0x72,0x61,0x74,0x65,0x73,0xa,0x41,0x46, - 0x9,0x41,0x66,0x67,0x68,0x61,0x6e,0x69,0x73,0x74,0x61,0x6e,0xa,0x41,0x47,0x9, - 0x41,0x6e,0x74,0x69,0x67,0x75,0x61,0x20,0x26,0x20,0x42,0x61,0x72,0x62,0x75,0x64, - 0x61,0xa,0x41,0x49,0x9,0x41,0x6e,0x67,0x75,0x69,0x6c,0x6c,0x61,0xa,0x41,0x4c, - 0x9,0x41,0x6c,0x62,0x61,0x6e,0x69,0x61,0xa,0x41,0x4d,0x9,0x41,0x72,0x6d,0x65, - 0x6e,0x69,0x61,0xa,0x41,0x4f,0x9,0x41,0x6e,0x67,0x6f,0x6c,0x61,0xa,0x41,0x51, - 0x9,0x41,0x6e,0x74,0x61,0x72,0x63,0x74,0x69,0x63,0x61,0xa,0x41,0x52,0x9,0x41, - 0x72,0x67,0x65,0x6e,0x74,0x69,0x6e,0x61,0xa,0x41,0x53,0x9,0x53,0x61,0x6d,0x6f, - 0x61,0x20,0x28,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x6e,0x29,0xa,0x41,0x54,0x9, - 0x41,0x75,0x73,0x74,0x72,0x69,0x61,0xa,0x41,0x55,0x9,0x41,0x75,0x73,0x74,0x72, - 0x61,0x6c,0x69,0x61,0xa,0x41,0x57,0x9,0x41,0x72,0x75,0x62,0x61,0xa,0x41,0x58, - 0x9,0xc3,0x85,0x6c,0x61,0x6e,0x64,0x20,0x49,0x73,0x6c,0x61,0x6e,0x64,0x73,0xa, - 0x41,0x5a,0x9,0x41,0x7a,0x65,0x72,0x62,0x61,0x69,0x6a,0x61,0x6e,0xa,0x42,0x41, - 0x9,0x42,0x6f,0x73,0x6e,0x69,0x61,0x20,0x26,0x20,0x48,0x65,0x72,0x7a,0x65,0x67, - 0x6f,0x76,0x69,0x6e,0x61,0xa,0x42,0x42,0x9,0x42,0x61,0x72,0x62,0x61,0x64,0x6f, - 0x73,0xa,0x42,0x44,0x9,0x42,0x61,0x6e,0x67,0x6c,0x61,0x64,0x65,0x73,0x68,0xa, - 0x42,0x45,0x9,0x42,0x65,0x6c,0x67,0x69,0x75,0x6d,0xa,0x42,0x46,0x9,0x42,0x75, - 0x72,0x6b,0x69,0x6e,0x61,0x20,0x46,0x61,0x73,0x6f,0xa,0x42,0x47,0x9,0x42,0x75, - 0x6c,0x67,0x61,0x72,0x69,0x61,0xa,0x42,0x48,0x9,0x42,0x61,0x68,0x72,0x61,0x69, - 0x6e,0xa,0x42,0x49,0x9,0x42,0x75,0x72,0x75,0x6e,0x64,0x69,0xa,0x42,0x4a,0x9, - 0x42,0x65,0x6e,0x69,0x6e,0xa,0x42,0x4c,0x9,0x53,0x74,0x20,0x42,0x61,0x72,0x74, - 0x68,0x65,0x6c,0x65,0x6d,0x79,0xa,0x42,0x4d,0x9,0x42,0x65,0x72,0x6d,0x75,0x64, - 0x61,0xa,0x42,0x4e,0x9,0x42,0x72,0x75,0x6e,0x65,0x69,0xa,0x42,0x4f,0x9,0x42, - 0x6f,0x6c,0x69,0x76,0x69,0x61,0xa,0x42,0x51,0x9,0x43,0x61,0x72,0x69,0x62,0x62, - 0x65,0x61,0x6e,0x20,0x4e,0x4c,0xa,0x42,0x52,0x9,0x42,0x72,0x61,0x7a,0x69,0x6c, - 0xa,0x42,0x53,0x9,0x42,0x61,0x68,0x61,0x6d,0x61,0x73,0xa,0x42,0x54,0x9,0x42, - 0x68,0x75,0x74,0x61,0x6e,0xa,0x42,0x56,0x9,0x42,0x6f,0x75,0x76,0x65,0x74,0x20, - 0x49,0x73,0x6c,0x61,0x6e,0x64,0xa,0x42,0x57,0x9,0x42,0x6f,0x74,0x73,0x77,0x61, - 0x6e,0x61,0xa,0x42,0x59,0x9,0x42,0x65,0x6c,0x61,0x72,0x75,0x73,0xa,0x42,0x5a, - 0x9,0x42,0x65,0x6c,0x69,0x7a,0x65,0xa,0x43,0x41,0x9,0x43,0x61,0x6e,0x61,0x64, - 0x61,0xa,0x43,0x43,0x9,0x43,0x6f,0x63,0x6f,0x73,0x20,0x28,0x4b,0x65,0x65,0x6c, - 0x69,0x6e,0x67,0x29,0x20,0x49,0x73,0x6c,0x61,0x6e,0x64,0x73,0xa,0x43,0x44,0x9, - 0x43,0x6f,0x6e,0x67,0x6f,0x20,0x28,0x44,0x65,0x6d,0x2e,0x20,0x52,0x65,0x70,0x2e, - 0x29,0xa,0x43,0x46,0x9,0x43,0x65,0x6e,0x74,0x72,0x61,0x6c,0x20,0x41,0x66,0x72, - 0x69,0x63,0x61,0x6e,0x20,0x52,0x65,0x70,0x2e,0xa,0x43,0x47,0x9,0x43,0x6f,0x6e, - 0x67,0x6f,0x20,0x28,0x52,0x65,0x70,0x2e,0x29,0xa,0x43,0x48,0x9,0x53,0x77,0x69, - 0x74,0x7a,0x65,0x72,0x6c,0x61,0x6e,0x64,0xa,0x43,0x49,0x9,0x43,0xc3,0xb4,0x74, - 0x65,0x20,0x64,0x27,0x49,0x76,0x6f,0x69,0x72,0x65,0xa,0x43,0x4b,0x9,0x43,0x6f, - 0x6f,0x6b,0x20,0x49,0x73,0x6c,0x61,0x6e,0x64,0x73,0xa,0x43,0x4c,0x9,0x43,0x68, - 0x69,0x6c,0x65,0xa,0x43,0x4d,0x9,0x43,0x61,0x6d,0x65,0x72,0x6f,0x6f,0x6e,0xa, - 0x43,0x4e,0x9,0x43,0x68,0x69,0x6e,0x61,0xa,0x43,0x4f,0x9,0x43,0x6f,0x6c,0x6f, - 0x6d,0x62,0x69,0x61,0xa,0x43,0x52,0x9,0x43,0x6f,0x73,0x74,0x61,0x20,0x52,0x69, - 0x63,0x61,0xa,0x43,0x55,0x9,0x43,0x75,0x62,0x61,0xa,0x43,0x56,0x9,0x43,0x61, - 0x70,0x65,0x20,0x56,0x65,0x72,0x64,0x65,0xa,0x43,0x57,0x9,0x43,0x75,0x72,0x61, - 0xc3,0xa7,0x61,0x6f,0xa,0x43,0x58,0x9,0x43,0x68,0x72,0x69,0x73,0x74,0x6d,0x61, - 0x73,0x20,0x49,0x73,0x6c,0x61,0x6e,0x64,0xa,0x43,0x59,0x9,0x43,0x79,0x70,0x72, - 0x75,0x73,0xa,0x43,0x5a,0x9,0x43,0x7a,0x65,0x63,0x68,0x20,0x52,0x65,0x70,0x75, - 0x62,0x6c,0x69,0x63,0xa,0x44,0x45,0x9,0x47,0x65,0x72,0x6d,0x61,0x6e,0x79,0xa, - 0x44,0x4a,0x9,0x44,0x6a,0x69,0x62,0x6f,0x75,0x74,0x69,0xa,0x44,0x4b,0x9,0x44, - 0x65,0x6e,0x6d,0x61,0x72,0x6b,0xa,0x44,0x4d,0x9,0x44,0x6f,0x6d,0x69,0x6e,0x69, - 0x63,0x61,0xa,0x44,0x4f,0x9,0x44,0x6f,0x6d,0x69,0x6e,0x69,0x63,0x61,0x6e,0x20, - 0x52,0x65,0x70,0x75,0x62,0x6c,0x69,0x63,0xa,0x44,0x5a,0x9,0x41,0x6c,0x67,0x65, - 0x72,0x69,0x61,0xa,0x45,0x43,0x9,0x45,0x63,0x75,0x61,0x64,0x6f,0x72,0xa,0x45, - 0x45,0x9,0x45,0x73,0x74,0x6f,0x6e,0x69,0x61,0xa,0x45,0x47,0x9,0x45,0x67,0x79, - 0x70,0x74,0xa,0x45,0x48,0x9,0x57,0x65,0x73,0x74,0x65,0x72,0x6e,0x20,0x53,0x61, - 0x68,0x61,0x72,0x61,0xa,0x45,0x52,0x9,0x45,0x72,0x69,0x74,0x72,0x65,0x61,0xa, - 0x45,0x53,0x9,0x53,0x70,0x61,0x69,0x6e,0xa,0x45,0x54,0x9,0x45,0x74,0x68,0x69, - 0x6f,0x70,0x69,0x61,0xa,0x46,0x49,0x9,0x46,0x69,0x6e,0x6c,0x61,0x6e,0x64,0xa, - 0x46,0x4a,0x9,0x46,0x69,0x6a,0x69,0xa,0x46,0x4b,0x9,0x46,0x61,0x6c,0x6b,0x6c, - 0x61,0x6e,0x64,0x20,0x49,0x73,0x6c,0x61,0x6e,0x64,0x73,0xa,0x46,0x4d,0x9,0x4d, - 0x69,0x63,0x72,0x6f,0x6e,0x65,0x73,0x69,0x61,0xa,0x46,0x4f,0x9,0x46,0x61,0x72, - 0x6f,0x65,0x20,0x49,0x73,0x6c,0x61,0x6e,0x64,0x73,0xa,0x46,0x52,0x9,0x46,0x72, - 0x61,0x6e,0x63,0x65,0xa,0x47,0x41,0x9,0x47,0x61,0x62,0x6f,0x6e,0xa,0x47,0x42, - 0x9,0x42,0x72,0x69,0x74,0x61,0x69,0x6e,0x20,0x28,0x55,0x4b,0x29,0xa,0x47,0x44, - 0x9,0x47,0x72,0x65,0x6e,0x61,0x64,0x61,0xa,0x47,0x45,0x9,0x47,0x65,0x6f,0x72, - 0x67,0x69,0x61,0xa,0x47,0x46,0x9,0x46,0x72,0x65,0x6e,0x63,0x68,0x20,0x47,0x75, - 0x69,0x61,0x6e,0x61,0xa,0x47,0x47,0x9,0x47,0x75,0x65,0x72,0x6e,0x73,0x65,0x79, - 0xa,0x47,0x48,0x9,0x47,0x68,0x61,0x6e,0x61,0xa,0x47,0x49,0x9,0x47,0x69,0x62, - 0x72,0x61,0x6c,0x74,0x61,0x72,0xa,0x47,0x4c,0x9,0x47,0x72,0x65,0x65,0x6e,0x6c, - 0x61,0x6e,0x64,0xa,0x47,0x4d,0x9,0x47,0x61,0x6d,0x62,0x69,0x61,0xa,0x47,0x4e, - 0x9,0x47,0x75,0x69,0x6e,0x65,0x61,0xa,0x47,0x50,0x9,0x47,0x75,0x61,0x64,0x65, - 0x6c,0x6f,0x75,0x70,0x65,0xa,0x47,0x51,0x9,0x45,0x71,0x75,0x61,0x74,0x6f,0x72, - 0x69,0x61,0x6c,0x20,0x47,0x75,0x69,0x6e,0x65,0x61,0xa,0x47,0x52,0x9,0x47,0x72, - 0x65,0x65,0x63,0x65,0xa,0x47,0x53,0x9,0x53,0x6f,0x75,0x74,0x68,0x20,0x47,0x65, - 0x6f,0x72,0x67,0x69,0x61,0x20,0x26,0x20,0x74,0x68,0x65,0x20,0x53,0x6f,0x75,0x74, - 0x68,0x20,0x53,0x61,0x6e,0x64,0x77,0x69,0x63,0x68,0x20,0x49,0x73,0x6c,0x61,0x6e, - 0x64,0x73,0xa,0x47,0x54,0x9,0x47,0x75,0x61,0x74,0x65,0x6d,0x61,0x6c,0x61,0xa, - 0x47,0x55,0x9,0x47,0x75,0x61,0x6d,0xa,0x47,0x57,0x9,0x47,0x75,0x69,0x6e,0x65, - 0x61,0x2d,0x42,0x69,0x73,0x73,0x61,0x75,0xa,0x47,0x59,0x9,0x47,0x75,0x79,0x61, - 0x6e,0x61,0xa,0x48,0x4b,0x9,0x48,0x6f,0x6e,0x67,0x20,0x4b,0x6f,0x6e,0x67,0xa, - 0x48,0x4d,0x9,0x48,0x65,0x61,0x72,0x64,0x20,0x49,0x73,0x6c,0x61,0x6e,0x64,0x20, - 0x26,0x20,0x4d,0x63,0x44,0x6f,0x6e,0x61,0x6c,0x64,0x20,0x49,0x73,0x6c,0x61,0x6e, - 0x64,0x73,0xa,0x48,0x4e,0x9,0x48,0x6f,0x6e,0x64,0x75,0x72,0x61,0x73,0xa,0x48, - 0x52,0x9,0x43,0x72,0x6f,0x61,0x74,0x69,0x61,0xa,0x48,0x54,0x9,0x48,0x61,0x69, - 0x74,0x69,0xa,0x48,0x55,0x9,0x48,0x75,0x6e,0x67,0x61,0x72,0x79,0xa,0x49,0x44, - 0x9,0x49,0x6e,0x64,0x6f,0x6e,0x65,0x73,0x69,0x61,0xa,0x49,0x45,0x9,0x49,0x72, - 0x65,0x6c,0x61,0x6e,0x64,0xa,0x49,0x4c,0x9,0x49,0x73,0x72,0x61,0x65,0x6c,0xa, - 0x49,0x4d,0x9,0x49,0x73,0x6c,0x65,0x20,0x6f,0x66,0x20,0x4d,0x61,0x6e,0xa,0x49, - 0x4e,0x9,0x49,0x6e,0x64,0x69,0x61,0xa,0x49,0x4f,0x9,0x42,0x72,0x69,0x74,0x69, - 0x73,0x68,0x20,0x49,0x6e,0x64,0x69,0x61,0x6e,0x20,0x4f,0x63,0x65,0x61,0x6e,0x20, - 0x54,0x65,0x72,0x72,0x69,0x74,0x6f,0x72,0x79,0xa,0x49,0x51,0x9,0x49,0x72,0x61, - 0x71,0xa,0x49,0x52,0x9,0x49,0x72,0x61,0x6e,0xa,0x49,0x53,0x9,0x49,0x63,0x65, - 0x6c,0x61,0x6e,0x64,0xa,0x49,0x54,0x9,0x49,0x74,0x61,0x6c,0x79,0xa,0x4a,0x45, - 0x9,0x4a,0x65,0x72,0x73,0x65,0x79,0xa,0x4a,0x4d,0x9,0x4a,0x61,0x6d,0x61,0x69, - 0x63,0x61,0xa,0x4a,0x4f,0x9,0x4a,0x6f,0x72,0x64,0x61,0x6e,0xa,0x4a,0x50,0x9, - 0x4a,0x61,0x70,0x61,0x6e,0xa,0x4b,0x45,0x9,0x4b,0x65,0x6e,0x79,0x61,0xa,0x4b, - 0x47,0x9,0x4b,0x79,0x72,0x67,0x79,0x7a,0x73,0x74,0x61,0x6e,0xa,0x4b,0x48,0x9, - 0x43,0x61,0x6d,0x62,0x6f,0x64,0x69,0x61,0xa,0x4b,0x49,0x9,0x4b,0x69,0x72,0x69, - 0x62,0x61,0x74,0x69,0xa,0x4b,0x4d,0x9,0x43,0x6f,0x6d,0x6f,0x72,0x6f,0x73,0xa, - 0x4b,0x4e,0x9,0x53,0x74,0x20,0x4b,0x69,0x74,0x74,0x73,0x20,0x26,0x20,0x4e,0x65, - 0x76,0x69,0x73,0xa,0x4b,0x50,0x9,0x4b,0x6f,0x72,0x65,0x61,0x20,0x28,0x4e,0x6f, - 0x72,0x74,0x68,0x29,0xa,0x4b,0x52,0x9,0x4b,0x6f,0x72,0x65,0x61,0x20,0x28,0x53, - 0x6f,0x75,0x74,0x68,0x29,0xa,0x4b,0x57,0x9,0x4b,0x75,0x77,0x61,0x69,0x74,0xa, - 0x4b,0x59,0x9,0x43,0x61,0x79,0x6d,0x61,0x6e,0x20,0x49,0x73,0x6c,0x61,0x6e,0x64, - 0x73,0xa,0x4b,0x5a,0x9,0x4b,0x61,0x7a,0x61,0x6b,0x68,0x73,0x74,0x61,0x6e,0xa, - 0x4c,0x41,0x9,0x4c,0x61,0x6f,0x73,0xa,0x4c,0x42,0x9,0x4c,0x65,0x62,0x61,0x6e, - 0x6f,0x6e,0xa,0x4c,0x43,0x9,0x53,0x74,0x20,0x4c,0x75,0x63,0x69,0x61,0xa,0x4c, - 0x49,0x9,0x4c,0x69,0x65,0x63,0x68,0x74,0x65,0x6e,0x73,0x74,0x65,0x69,0x6e,0xa, - 0x4c,0x4b,0x9,0x53,0x72,0x69,0x20,0x4c,0x61,0x6e,0x6b,0x61,0xa,0x4c,0x52,0x9, - 0x4c,0x69,0x62,0x65,0x72,0x69,0x61,0xa,0x4c,0x53,0x9,0x4c,0x65,0x73,0x6f,0x74, - 0x68,0x6f,0xa,0x4c,0x54,0x9,0x4c,0x69,0x74,0x68,0x75,0x61,0x6e,0x69,0x61,0xa, - 0x4c,0x55,0x9,0x4c,0x75,0x78,0x65,0x6d,0x62,0x6f,0x75,0x72,0x67,0xa,0x4c,0x56, - 0x9,0x4c,0x61,0x74,0x76,0x69,0x61,0xa,0x4c,0x59,0x9,0x4c,0x69,0x62,0x79,0x61, - 0xa,0x4d,0x41,0x9,0x4d,0x6f,0x72,0x6f,0x63,0x63,0x6f,0xa,0x4d,0x43,0x9,0x4d, - 0x6f,0x6e,0x61,0x63,0x6f,0xa,0x4d,0x44,0x9,0x4d,0x6f,0x6c,0x64,0x6f,0x76,0x61, - 0xa,0x4d,0x45,0x9,0x4d,0x6f,0x6e,0x74,0x65,0x6e,0x65,0x67,0x72,0x6f,0xa,0x4d, - 0x46,0x9,0x53,0x74,0x20,0x4d,0x61,0x72,0x74,0x69,0x6e,0x20,0x28,0x46,0x72,0x65, - 0x6e,0x63,0x68,0x29,0xa,0x4d,0x47,0x9,0x4d,0x61,0x64,0x61,0x67,0x61,0x73,0x63, - 0x61,0x72,0xa,0x4d,0x48,0x9,0x4d,0x61,0x72,0x73,0x68,0x61,0x6c,0x6c,0x20,0x49, - 0x73,0x6c,0x61,0x6e,0x64,0x73,0xa,0x4d,0x4b,0x9,0x4d,0x61,0x63,0x65,0x64,0x6f, - 0x6e,0x69,0x61,0xa,0x4d,0x4c,0x9,0x4d,0x61,0x6c,0x69,0xa,0x4d,0x4d,0x9,0x4d, - 0x79,0x61,0x6e,0x6d,0x61,0x72,0x20,0x28,0x42,0x75,0x72,0x6d,0x61,0x29,0xa,0x4d, - 0x4e,0x9,0x4d,0x6f,0x6e,0x67,0x6f,0x6c,0x69,0x61,0xa,0x4d,0x4f,0x9,0x4d,0x61, - 0x63,0x61,0x75,0xa,0x4d,0x50,0x9,0x4e,0x6f,0x72,0x74,0x68,0x65,0x72,0x6e,0x20, - 0x4d,0x61,0x72,0x69,0x61,0x6e,0x61,0x20,0x49,0x73,0x6c,0x61,0x6e,0x64,0x73,0xa, - 0x4d,0x51,0x9,0x4d,0x61,0x72,0x74,0x69,0x6e,0x69,0x71,0x75,0x65,0xa,0x4d,0x52, - 0x9,0x4d,0x61,0x75,0x72,0x69,0x74,0x61,0x6e,0x69,0x61,0xa,0x4d,0x53,0x9,0x4d, - 0x6f,0x6e,0x74,0x73,0x65,0x72,0x72,0x61,0x74,0xa,0x4d,0x54,0x9,0x4d,0x61,0x6c, - 0x74,0x61,0xa,0x4d,0x55,0x9,0x4d,0x61,0x75,0x72,0x69,0x74,0x69,0x75,0x73,0xa, - 0x4d,0x56,0x9,0x4d,0x61,0x6c,0x64,0x69,0x76,0x65,0x73,0xa,0x4d,0x57,0x9,0x4d, - 0x61,0x6c,0x61,0x77,0x69,0xa,0x4d,0x58,0x9,0x4d,0x65,0x78,0x69,0x63,0x6f,0xa, - 0x4d,0x59,0x9,0x4d,0x61,0x6c,0x61,0x79,0x73,0x69,0x61,0xa,0x4d,0x5a,0x9,0x4d, - 0x6f,0x7a,0x61,0x6d,0x62,0x69,0x71,0x75,0x65,0xa,0x4e,0x41,0x9,0x4e,0x61,0x6d, - 0x69,0x62,0x69,0x61,0xa,0x4e,0x43,0x9,0x4e,0x65,0x77,0x20,0x43,0x61,0x6c,0x65, - 0x64,0x6f,0x6e,0x69,0x61,0xa,0x4e,0x45,0x9,0x4e,0x69,0x67,0x65,0x72,0xa,0x4e, - 0x46,0x9,0x4e,0x6f,0x72,0x66,0x6f,0x6c,0x6b,0x20,0x49,0x73,0x6c,0x61,0x6e,0x64, - 0xa,0x4e,0x47,0x9,0x4e,0x69,0x67,0x65,0x72,0x69,0x61,0xa,0x4e,0x49,0x9,0x4e, - 0x69,0x63,0x61,0x72,0x61,0x67,0x75,0x61,0xa,0x4e,0x4c,0x9,0x4e,0x65,0x74,0x68, - 0x65,0x72,0x6c,0x61,0x6e,0x64,0x73,0xa,0x4e,0x4f,0x9,0x4e,0x6f,0x72,0x77,0x61, - 0x79,0xa,0x4e,0x50,0x9,0x4e,0x65,0x70,0x61,0x6c,0xa,0x4e,0x52,0x9,0x4e,0x61, - 0x75,0x72,0x75,0xa,0x4e,0x55,0x9,0x4e,0x69,0x75,0x65,0xa,0x4e,0x5a,0x9,0x4e, - 0x65,0x77,0x20,0x5a,0x65,0x61,0x6c,0x61,0x6e,0x64,0xa,0x4f,0x4d,0x9,0x4f,0x6d, - 0x61,0x6e,0xa,0x50,0x41,0x9,0x50,0x61,0x6e,0x61,0x6d,0x61,0xa,0x50,0x45,0x9, - 0x50,0x65,0x72,0x75,0xa,0x50,0x46,0x9,0x46,0x72,0x65,0x6e,0x63,0x68,0x20,0x50, - 0x6f,0x6c,0x79,0x6e,0x65,0x73,0x69,0x61,0xa,0x50,0x47,0x9,0x50,0x61,0x70,0x75, - 0x61,0x20,0x4e,0x65,0x77,0x20,0x47,0x75,0x69,0x6e,0x65,0x61,0xa,0x50,0x48,0x9, - 0x50,0x68,0x69,0x6c,0x69,0x70,0x70,0x69,0x6e,0x65,0x73,0xa,0x50,0x4b,0x9,0x50, - 0x61,0x6b,0x69,0x73,0x74,0x61,0x6e,0xa,0x50,0x4c,0x9,0x50,0x6f,0x6c,0x61,0x6e, - 0x64,0xa,0x50,0x4d,0x9,0x53,0x74,0x20,0x50,0x69,0x65,0x72,0x72,0x65,0x20,0x26, - 0x20,0x4d,0x69,0x71,0x75,0x65,0x6c,0x6f,0x6e,0xa,0x50,0x4e,0x9,0x50,0x69,0x74, - 0x63,0x61,0x69,0x72,0x6e,0xa,0x50,0x52,0x9,0x50,0x75,0x65,0x72,0x74,0x6f,0x20, - 0x52,0x69,0x63,0x6f,0xa,0x50,0x53,0x9,0x50,0x61,0x6c,0x65,0x73,0x74,0x69,0x6e, - 0x65,0xa,0x50,0x54,0x9,0x50,0x6f,0x72,0x74,0x75,0x67,0x61,0x6c,0xa,0x50,0x57, - 0x9,0x50,0x61,0x6c,0x61,0x75,0xa,0x50,0x59,0x9,0x50,0x61,0x72,0x61,0x67,0x75, - 0x61,0x79,0xa,0x51,0x41,0x9,0x51,0x61,0x74,0x61,0x72,0xa,0x52,0x45,0x9,0x52, - 0xc3,0xa9,0x75,0x6e,0x69,0x6f,0x6e,0xa,0x52,0x4f,0x9,0x52,0x6f,0x6d,0x61,0x6e, - 0x69,0x61,0xa,0x52,0x53,0x9,0x53,0x65,0x72,0x62,0x69,0x61,0xa,0x52,0x55,0x9, - 0x52,0x75,0x73,0x73,0x69,0x61,0xa,0x52,0x57,0x9,0x52,0x77,0x61,0x6e,0x64,0x61, - 0xa,0x53,0x41,0x9,0x53,0x61,0x75,0x64,0x69,0x20,0x41,0x72,0x61,0x62,0x69,0x61, - 0xa,0x53,0x42,0x9,0x53,0x6f,0x6c,0x6f,0x6d,0x6f,0x6e,0x20,0x49,0x73,0x6c,0x61, - 0x6e,0x64,0x73,0xa,0x53,0x43,0x9,0x53,0x65,0x79,0x63,0x68,0x65,0x6c,0x6c,0x65, - 0x73,0xa,0x53,0x44,0x9,0x53,0x75,0x64,0x61,0x6e,0xa,0x53,0x45,0x9,0x53,0x77, - 0x65,0x64,0x65,0x6e,0xa,0x53,0x47,0x9,0x53,0x69,0x6e,0x67,0x61,0x70,0x6f,0x72, - 0x65,0xa,0x53,0x48,0x9,0x53,0x74,0x20,0x48,0x65,0x6c,0x65,0x6e,0x61,0xa,0x53, - 0x49,0x9,0x53,0x6c,0x6f,0x76,0x65,0x6e,0x69,0x61,0xa,0x53,0x4a,0x9,0x53,0x76, - 0x61,0x6c,0x62,0x61,0x72,0x64,0x20,0x26,0x20,0x4a,0x61,0x6e,0x20,0x4d,0x61,0x79, - 0x65,0x6e,0xa,0x53,0x4b,0x9,0x53,0x6c,0x6f,0x76,0x61,0x6b,0x69,0x61,0xa,0x53, - 0x4c,0x9,0x53,0x69,0x65,0x72,0x72,0x61,0x20,0x4c,0x65,0x6f,0x6e,0x65,0xa,0x53, - 0x4d,0x9,0x53,0x61,0x6e,0x20,0x4d,0x61,0x72,0x69,0x6e,0x6f,0xa,0x53,0x4e,0x9, - 0x53,0x65,0x6e,0x65,0x67,0x61,0x6c,0xa,0x53,0x4f,0x9,0x53,0x6f,0x6d,0x61,0x6c, - 0x69,0x61,0xa,0x53,0x52,0x9,0x53,0x75,0x72,0x69,0x6e,0x61,0x6d,0x65,0xa,0x53, - 0x53,0x9,0x53,0x6f,0x75,0x74,0x68,0x20,0x53,0x75,0x64,0x61,0x6e,0xa,0x53,0x54, - 0x9,0x53,0x61,0x6f,0x20,0x54,0x6f,0x6d,0x65,0x20,0x26,0x20,0x50,0x72,0x69,0x6e, - 0x63,0x69,0x70,0x65,0xa,0x53,0x56,0x9,0x45,0x6c,0x20,0x53,0x61,0x6c,0x76,0x61, - 0x64,0x6f,0x72,0xa,0x53,0x58,0x9,0x53,0x74,0x20,0x4d,0x61,0x61,0x72,0x74,0x65, - 0x6e,0x20,0x28,0x44,0x75,0x74,0x63,0x68,0x29,0xa,0x53,0x59,0x9,0x53,0x79,0x72, - 0x69,0x61,0xa,0x53,0x5a,0x9,0x53,0x77,0x61,0x7a,0x69,0x6c,0x61,0x6e,0x64,0xa, - 0x54,0x43,0x9,0x54,0x75,0x72,0x6b,0x73,0x20,0x26,0x20,0x43,0x61,0x69,0x63,0x6f, - 0x73,0x20,0x49,0x73,0xa,0x54,0x44,0x9,0x43,0x68,0x61,0x64,0xa,0x54,0x46,0x9, - 0x46,0x72,0x65,0x6e,0x63,0x68,0x20,0x53,0x6f,0x75,0x74,0x68,0x65,0x72,0x6e,0x20, - 0x26,0x20,0x41,0x6e,0x74,0x61,0x72,0x63,0x74,0x69,0x63,0x20,0x4c,0x61,0x6e,0x64, - 0x73,0xa,0x54,0x47,0x9,0x54,0x6f,0x67,0x6f,0xa,0x54,0x48,0x9,0x54,0x68,0x61, - 0x69,0x6c,0x61,0x6e,0x64,0xa,0x54,0x4a,0x9,0x54,0x61,0x6a,0x69,0x6b,0x69,0x73, - 0x74,0x61,0x6e,0xa,0x54,0x4b,0x9,0x54,0x6f,0x6b,0x65,0x6c,0x61,0x75,0xa,0x54, - 0x4c,0x9,0x45,0x61,0x73,0x74,0x20,0x54,0x69,0x6d,0x6f,0x72,0xa,0x54,0x4d,0x9, - 0x54,0x75,0x72,0x6b,0x6d,0x65,0x6e,0x69,0x73,0x74,0x61,0x6e,0xa,0x54,0x4e,0x9, - 0x54,0x75,0x6e,0x69,0x73,0x69,0x61,0xa,0x54,0x4f,0x9,0x54,0x6f,0x6e,0x67,0x61, - 0xa,0x54,0x52,0x9,0x54,0x75,0x72,0x6b,0x65,0x79,0xa,0x54,0x54,0x9,0x54,0x72, - 0x69,0x6e,0x69,0x64,0x61,0x64,0x20,0x26,0x20,0x54,0x6f,0x62,0x61,0x67,0x6f,0xa, - 0x54,0x56,0x9,0x54,0x75,0x76,0x61,0x6c,0x75,0xa,0x54,0x57,0x9,0x54,0x61,0x69, - 0x77,0x61,0x6e,0xa,0x54,0x5a,0x9,0x54,0x61,0x6e,0x7a,0x61,0x6e,0x69,0x61,0xa, - 0x55,0x41,0x9,0x55,0x6b,0x72,0x61,0x69,0x6e,0x65,0xa,0x55,0x47,0x9,0x55,0x67, - 0x61,0x6e,0x64,0x61,0xa,0x55,0x4d,0x9,0x55,0x53,0x20,0x6d,0x69,0x6e,0x6f,0x72, - 0x20,0x6f,0x75,0x74,0x6c,0x79,0x69,0x6e,0x67,0x20,0x69,0x73,0x6c,0x61,0x6e,0x64, - 0x73,0xa,0x55,0x53,0x9,0x55,0x6e,0x69,0x74,0x65,0x64,0x20,0x53,0x74,0x61,0x74, - 0x65,0x73,0xa,0x55,0x59,0x9,0x55,0x72,0x75,0x67,0x75,0x61,0x79,0xa,0x55,0x5a, - 0x9,0x55,0x7a,0x62,0x65,0x6b,0x69,0x73,0x74,0x61,0x6e,0xa,0x56,0x41,0x9,0x56, - 0x61,0x74,0x69,0x63,0x61,0x6e,0x20,0x43,0x69,0x74,0x79,0xa,0x56,0x43,0x9,0x53, - 0x74,0x20,0x56,0x69,0x6e,0x63,0x65,0x6e,0x74,0xa,0x56,0x45,0x9,0x56,0x65,0x6e, - 0x65,0x7a,0x75,0x65,0x6c,0x61,0xa,0x56,0x47,0x9,0x56,0x69,0x72,0x67,0x69,0x6e, - 0x20,0x49,0x73,0x6c,0x61,0x6e,0x64,0x73,0x20,0x28,0x55,0x4b,0x29,0xa,0x56,0x49, - 0x9,0x56,0x69,0x72,0x67,0x69,0x6e,0x20,0x49,0x73,0x6c,0x61,0x6e,0x64,0x73,0x20, - 0x28,0x55,0x53,0x29,0xa,0x56,0x4e,0x9,0x56,0x69,0x65,0x74,0x6e,0x61,0x6d,0xa, - 0x56,0x55,0x9,0x56,0x61,0x6e,0x75,0x61,0x74,0x75,0xa,0x57,0x46,0x9,0x57,0x61, - 0x6c,0x6c,0x69,0x73,0x20,0x26,0x20,0x46,0x75,0x74,0x75,0x6e,0x61,0xa,0x57,0x53, - 0x9,0x53,0x61,0x6d,0x6f,0x61,0x20,0x28,0x77,0x65,0x73,0x74,0x65,0x72,0x6e,0x29, - 0xa,0x59,0x45,0x9,0x59,0x65,0x6d,0x65,0x6e,0xa,0x59,0x54,0x9,0x4d,0x61,0x79, - 0x6f,0x74,0x74,0x65,0xa,0x5a,0x41,0x9,0x53,0x6f,0x75,0x74,0x68,0x20,0x41,0x66, - 0x72,0x69,0x63,0x61,0xa,0x5a,0x4d,0x9,0x5a,0x61,0x6d,0x62,0x69,0x61,0xa,0x5a, - 0x57,0x9,0x5a,0x69,0x6d,0x62,0x61,0x62,0x77,0x65,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/MST - 0x0,0x0,0x0,0x7f, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x66,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x1c,0x80,0x0,0x0,0x0,0x9a, + 0x6c,0x7d,0xc8,0xd2,0xdb,0x12,0xc8,0xe,0xbb,0xa2,0x48,0xf,0x74,0x2d,0x40,0x10, + 0x8e,0x40,0x30,0x10,0xed,0x3a,0x40,0x11,0x55,0x67,0xc8,0x12,0x45,0x4a,0xb8,0x13, + 0x37,0xec,0xc8,0x14,0x2d,0x15,0xb8,0x28,0x20,0x76,0xc8,0x28,0xdb,0x9d,0xb8,0x29, + 0xcb,0x9c,0xc8,0x2a,0xbe,0x22,0xb8,0x2b,0xac,0xd0,0x48,0x2c,0x9f,0x56,0x38,0x2d, + 0x8e,0x3,0xc8,0x2e,0x80,0x89,0xb8,0x2f,0x6f,0x37,0x48,0x30,0x61,0xbd,0x38,0x31, + 0x50,0x6a,0xc8,0x32,0x42,0xf0,0xb8,0x33,0x32,0xef,0xc8,0x34,0x25,0x75,0xb8,0x35, + 0x14,0x23,0x48,0x36,0x6,0xa9,0x38,0x36,0xf5,0x56,0xc8,0x37,0xe7,0xdc,0xb8,0x38, + 0xd6,0x8a,0x48,0x39,0xc9,0x10,0x38,0x3a,0xb9,0xf,0x48,0x3b,0xab,0x95,0x38,0x3c, + 0x9a,0x42,0xc8,0x3d,0x8c,0xc8,0xb8,0x3e,0x7b,0x76,0x48,0x3f,0x6d,0xfc,0x38,0x40, + 0x5c,0xa9,0xc8,0x41,0x4f,0x2f,0xb8,0x42,0x3f,0x2e,0xc8,0x43,0x31,0xb4,0xb8,0x47, + 0xe2,0xc9,0x48,0x48,0xd5,0x4f,0x38,0x49,0xc5,0x4e,0x48,0x4a,0xb7,0xd4,0x38,0x4b, + 0xa6,0x81,0xc8,0x4c,0x99,0x7,0xb8,0x4d,0x87,0xb5,0x48,0x4e,0x7a,0x3b,0x38,0x4f, + 0x68,0xe8,0xc8,0x50,0x5b,0x6e,0xb8,0x51,0x4b,0x6d,0xc8,0x52,0x3d,0xf3,0xb8,0x53, + 0x2c,0xa1,0x48,0x54,0x1f,0x27,0x38,0x55,0xd,0xd4,0xc8,0x56,0x0,0x5a,0xb8,0x56, + 0xef,0x8,0x48,0x57,0xe1,0x8e,0x38,0x58,0xd1,0x8d,0x48,0x59,0xc4,0x13,0x38,0x5a, + 0xb2,0xc0,0xc8,0x5b,0xa5,0x46,0xb8,0x5c,0x93,0xf4,0x48,0x5d,0x86,0x7a,0x38,0x5e, + 0x75,0x27,0xc8,0x5f,0x67,0xad,0xb8,0x60,0x57,0xac,0xc8,0x61,0x4a,0x32,0xb8,0x62, + 0x38,0xe0,0x48,0x63,0x2b,0x66,0x38,0x64,0x1a,0x13,0xc8,0x65,0xc,0x99,0xb8,0x65, + 0xfb,0x47,0x48,0x66,0xed,0xcd,0x38,0x67,0xdd,0xcc,0x48,0x68,0xd0,0x52,0x38,0x69, + 0xbe,0xff,0xc8,0x6a,0xb1,0x85,0xb8,0x6b,0xa0,0x33,0x48,0x6c,0x92,0xb9,0x38,0x6d, + 0x81,0x66,0xc8,0x6e,0x73,0xec,0xb8,0x6f,0x62,0x9a,0x48,0x70,0x55,0x20,0x38,0x71, + 0x45,0x1f,0x48,0x72,0x37,0xa5,0x38,0x73,0x26,0x52,0xc8,0x74,0x18,0xd8,0xb8,0x75, + 0x7,0x86,0x48,0x75,0xfa,0xc,0x38,0x76,0xe8,0xb9,0xc8,0x77,0xdb,0x3f,0xb8,0x78, + 0xcb,0x3e,0xc8,0x79,0xbd,0xc4,0xb8,0x7a,0xac,0x72,0x48,0x7b,0x9e,0xf8,0x38,0x7c, + 0x8d,0xa5,0xc8,0x7d,0x80,0x2b,0xb8,0x7e,0x6e,0xd9,0x48,0x7f,0x61,0x5f,0x38,0x7f, + 0xff,0xff,0xff,0x0,0x1,0x2,0x4,0x3,0x4,0x2,0x5,0x2,0x5,0x2,0x5,0x2, + 0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2, + 0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2, + 0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2, + 0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2, + 0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2, + 0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x2,0x0,0x0,0x30,0x38,0x0,0x0,0x0, + 0x0,0x30,0x38,0x0,0x4,0x0,0x0,0x31,0x38,0x0,0x8,0x0,0x0,0x46,0x50,0x1, + 0xe,0x0,0x0,0x38,0x40,0x0,0x12,0x0,0x0,0x3f,0x48,0x1,0x16,0x0,0x0,0x31, + 0x38,0x0,0x8,0x4c,0x4d,0x54,0x0,0x54,0x4d,0x54,0x0,0x2b,0x30,0x33,0x33,0x30, + 0x0,0x2b,0x30,0x35,0x0,0x2b,0x30,0x34,0x0,0x2b,0x30,0x34,0x33,0x30,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, + 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x66,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x1c,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0x9a,0x6c,0x7d,0xc8,0xff,0xff,0xff,0xff,0xd2,0xdb,0x12, + 0xc8,0x0,0x0,0x0,0x0,0xe,0xbb,0xa2,0x48,0x0,0x0,0x0,0x0,0xf,0x74,0x2d, + 0x40,0x0,0x0,0x0,0x0,0x10,0x8e,0x40,0x30,0x0,0x0,0x0,0x0,0x10,0xed,0x3a, + 0x40,0x0,0x0,0x0,0x0,0x11,0x55,0x67,0xc8,0x0,0x0,0x0,0x0,0x12,0x45,0x4a, + 0xb8,0x0,0x0,0x0,0x0,0x13,0x37,0xec,0xc8,0x0,0x0,0x0,0x0,0x14,0x2d,0x15, + 0xb8,0x0,0x0,0x0,0x0,0x28,0x20,0x76,0xc8,0x0,0x0,0x0,0x0,0x28,0xdb,0x9d, + 0xb8,0x0,0x0,0x0,0x0,0x29,0xcb,0x9c,0xc8,0x0,0x0,0x0,0x0,0x2a,0xbe,0x22, + 0xb8,0x0,0x0,0x0,0x0,0x2b,0xac,0xd0,0x48,0x0,0x0,0x0,0x0,0x2c,0x9f,0x56, + 0x38,0x0,0x0,0x0,0x0,0x2d,0x8e,0x3,0xc8,0x0,0x0,0x0,0x0,0x2e,0x80,0x89, + 0xb8,0x0,0x0,0x0,0x0,0x2f,0x6f,0x37,0x48,0x0,0x0,0x0,0x0,0x30,0x61,0xbd, + 0x38,0x0,0x0,0x0,0x0,0x31,0x50,0x6a,0xc8,0x0,0x0,0x0,0x0,0x32,0x42,0xf0, + 0xb8,0x0,0x0,0x0,0x0,0x33,0x32,0xef,0xc8,0x0,0x0,0x0,0x0,0x34,0x25,0x75, + 0xb8,0x0,0x0,0x0,0x0,0x35,0x14,0x23,0x48,0x0,0x0,0x0,0x0,0x36,0x6,0xa9, + 0x38,0x0,0x0,0x0,0x0,0x36,0xf5,0x56,0xc8,0x0,0x0,0x0,0x0,0x37,0xe7,0xdc, + 0xb8,0x0,0x0,0x0,0x0,0x38,0xd6,0x8a,0x48,0x0,0x0,0x0,0x0,0x39,0xc9,0x10, + 0x38,0x0,0x0,0x0,0x0,0x3a,0xb9,0xf,0x48,0x0,0x0,0x0,0x0,0x3b,0xab,0x95, + 0x38,0x0,0x0,0x0,0x0,0x3c,0x9a,0x42,0xc8,0x0,0x0,0x0,0x0,0x3d,0x8c,0xc8, + 0xb8,0x0,0x0,0x0,0x0,0x3e,0x7b,0x76,0x48,0x0,0x0,0x0,0x0,0x3f,0x6d,0xfc, + 0x38,0x0,0x0,0x0,0x0,0x40,0x5c,0xa9,0xc8,0x0,0x0,0x0,0x0,0x41,0x4f,0x2f, + 0xb8,0x0,0x0,0x0,0x0,0x42,0x3f,0x2e,0xc8,0x0,0x0,0x0,0x0,0x43,0x31,0xb4, + 0xb8,0x0,0x0,0x0,0x0,0x47,0xe2,0xc9,0x48,0x0,0x0,0x0,0x0,0x48,0xd5,0x4f, + 0x38,0x0,0x0,0x0,0x0,0x49,0xc5,0x4e,0x48,0x0,0x0,0x0,0x0,0x4a,0xb7,0xd4, + 0x38,0x0,0x0,0x0,0x0,0x4b,0xa6,0x81,0xc8,0x0,0x0,0x0,0x0,0x4c,0x99,0x7, + 0xb8,0x0,0x0,0x0,0x0,0x4d,0x87,0xb5,0x48,0x0,0x0,0x0,0x0,0x4e,0x7a,0x3b, + 0x38,0x0,0x0,0x0,0x0,0x4f,0x68,0xe8,0xc8,0x0,0x0,0x0,0x0,0x50,0x5b,0x6e, + 0xb8,0x0,0x0,0x0,0x0,0x51,0x4b,0x6d,0xc8,0x0,0x0,0x0,0x0,0x52,0x3d,0xf3, + 0xb8,0x0,0x0,0x0,0x0,0x53,0x2c,0xa1,0x48,0x0,0x0,0x0,0x0,0x54,0x1f,0x27, + 0x38,0x0,0x0,0x0,0x0,0x55,0xd,0xd4,0xc8,0x0,0x0,0x0,0x0,0x56,0x0,0x5a, + 0xb8,0x0,0x0,0x0,0x0,0x56,0xef,0x8,0x48,0x0,0x0,0x0,0x0,0x57,0xe1,0x8e, + 0x38,0x0,0x0,0x0,0x0,0x58,0xd1,0x8d,0x48,0x0,0x0,0x0,0x0,0x59,0xc4,0x13, + 0x38,0x0,0x0,0x0,0x0,0x5a,0xb2,0xc0,0xc8,0x0,0x0,0x0,0x0,0x5b,0xa5,0x46, + 0xb8,0x0,0x0,0x0,0x0,0x5c,0x93,0xf4,0x48,0x0,0x0,0x0,0x0,0x5d,0x86,0x7a, + 0x38,0x0,0x0,0x0,0x0,0x5e,0x75,0x27,0xc8,0x0,0x0,0x0,0x0,0x5f,0x67,0xad, + 0xb8,0x0,0x0,0x0,0x0,0x60,0x57,0xac,0xc8,0x0,0x0,0x0,0x0,0x61,0x4a,0x32, + 0xb8,0x0,0x0,0x0,0x0,0x62,0x38,0xe0,0x48,0x0,0x0,0x0,0x0,0x63,0x2b,0x66, + 0x38,0x0,0x0,0x0,0x0,0x64,0x1a,0x13,0xc8,0x0,0x0,0x0,0x0,0x65,0xc,0x99, + 0xb8,0x0,0x0,0x0,0x0,0x65,0xfb,0x47,0x48,0x0,0x0,0x0,0x0,0x66,0xed,0xcd, + 0x38,0x0,0x0,0x0,0x0,0x67,0xdd,0xcc,0x48,0x0,0x0,0x0,0x0,0x68,0xd0,0x52, + 0x38,0x0,0x0,0x0,0x0,0x69,0xbe,0xff,0xc8,0x0,0x0,0x0,0x0,0x6a,0xb1,0x85, + 0xb8,0x0,0x0,0x0,0x0,0x6b,0xa0,0x33,0x48,0x0,0x0,0x0,0x0,0x6c,0x92,0xb9, + 0x38,0x0,0x0,0x0,0x0,0x6d,0x81,0x66,0xc8,0x0,0x0,0x0,0x0,0x6e,0x73,0xec, + 0xb8,0x0,0x0,0x0,0x0,0x6f,0x62,0x9a,0x48,0x0,0x0,0x0,0x0,0x70,0x55,0x20, + 0x38,0x0,0x0,0x0,0x0,0x71,0x45,0x1f,0x48,0x0,0x0,0x0,0x0,0x72,0x37,0xa5, + 0x38,0x0,0x0,0x0,0x0,0x73,0x26,0x52,0xc8,0x0,0x0,0x0,0x0,0x74,0x18,0xd8, + 0xb8,0x0,0x0,0x0,0x0,0x75,0x7,0x86,0x48,0x0,0x0,0x0,0x0,0x75,0xfa,0xc, + 0x38,0x0,0x0,0x0,0x0,0x76,0xe8,0xb9,0xc8,0x0,0x0,0x0,0x0,0x77,0xdb,0x3f, + 0xb8,0x0,0x0,0x0,0x0,0x78,0xcb,0x3e,0xc8,0x0,0x0,0x0,0x0,0x79,0xbd,0xc4, + 0xb8,0x0,0x0,0x0,0x0,0x7a,0xac,0x72,0x48,0x0,0x0,0x0,0x0,0x7b,0x9e,0xf8, + 0x38,0x0,0x0,0x0,0x0,0x7c,0x8d,0xa5,0xc8,0x0,0x0,0x0,0x0,0x7d,0x80,0x2b, + 0xb8,0x0,0x0,0x0,0x0,0x7e,0x6e,0xd9,0x48,0x0,0x0,0x0,0x0,0x7f,0x61,0x5f, + 0x38,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x2,0x4,0x3,0x4,0x2, + 0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2, + 0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2, + 0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2, + 0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2, + 0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2, + 0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x2,0x0, + 0x0,0x30,0x38,0x0,0x0,0x0,0x0,0x30,0x38,0x0,0x4,0x0,0x0,0x31,0x38,0x0, + 0x8,0x0,0x0,0x46,0x50,0x1,0xe,0x0,0x0,0x38,0x40,0x0,0x12,0x0,0x0,0x3f, + 0x48,0x1,0x16,0x0,0x0,0x31,0x38,0x0,0x8,0x4c,0x4d,0x54,0x0,0x54,0x4d,0x54, + 0x0,0x2b,0x30,0x33,0x33,0x30,0x0,0x2b,0x30,0x35,0x0,0x2b,0x30,0x34,0x0,0x2b, + 0x30,0x34,0x33,0x30,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0xa,0x3c,0x2b,0x30,0x33,0x33,0x30,0x3e,0x2d,0x33,0x3a,0x33,0x30, + 0x3c,0x2b,0x30,0x34,0x33,0x30,0x3e,0x2c,0x4a,0x38,0x30,0x2f,0x30,0x2c,0x4a,0x32, + 0x36,0x34,0x2f,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Factory + 0x0,0x0,0x0,0x94, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0xff,0xff,0x9d,0x90,0x0, - 0x0,0x4d,0x53,0x54,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0, - 0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0, - 0x0,0x0,0x4,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0x9d,0x90, - 0x0,0x0,0x4d,0x53,0x54,0x0,0x0,0x0,0xa,0x4d,0x53,0x54,0x37,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/EST5EDT - 0x0,0x0,0x8,0xf6, + 0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x80,0x0,0x0,0x0,0x7f, + 0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2d,0x30,0x30,0x0,0x0, + 0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0xf8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x2d,0x30,0x30,0x0,0x0,0x0,0xa,0x3c,0x2d,0x30,0x30, + 0x3e,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/NZ-CHAT + 0x0,0x0,0x8,0x27, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x95,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x10,0x9e,0xa6,0x1e,0x70,0x9f, - 0xba,0xeb,0x60,0xa0,0x86,0x0,0x70,0xa1,0x9a,0xcd,0x60,0xcb,0x88,0xf0,0x70,0xd2, - 0x23,0xf4,0x70,0xd2,0x60,0xfb,0xe0,0xfa,0xf8,0x58,0xf0,0xfb,0xe8,0x3b,0xe0,0xfc, - 0xd8,0x3a,0xf0,0xfd,0xc8,0x1d,0xe0,0xfe,0xb8,0x1c,0xf0,0xff,0xa7,0xff,0xe0,0x0, - 0x97,0xfe,0xf0,0x1,0x87,0xe1,0xe0,0x2,0x77,0xe0,0xf0,0x3,0x70,0xfe,0x60,0x4, - 0x60,0xfd,0x70,0x5,0x50,0xe0,0x60,0x6,0x40,0xdf,0x70,0x7,0x30,0xc2,0x60,0x7, - 0x8d,0x19,0x70,0x9,0x10,0xa4,0x60,0x9,0xad,0x94,0xf0,0xa,0xf0,0x86,0x60,0xb, - 0xe0,0x85,0x70,0xc,0xd9,0xa2,0xe0,0xd,0xc0,0x67,0x70,0xe,0xb9,0x84,0xe0,0xf, - 0xa9,0x83,0xf0,0x10,0x99,0x66,0xe0,0x11,0x89,0x65,0xf0,0x12,0x79,0x48,0xe0,0x13, - 0x69,0x47,0xf0,0x14,0x59,0x2a,0xe0,0x15,0x49,0x29,0xf0,0x16,0x39,0xc,0xe0,0x17, - 0x29,0xb,0xf0,0x18,0x22,0x29,0x60,0x19,0x8,0xed,0xf0,0x1a,0x2,0xb,0x60,0x1a, - 0xf2,0xa,0x70,0x1b,0xe1,0xed,0x60,0x1c,0xd1,0xec,0x70,0x1d,0xc1,0xcf,0x60,0x1e, - 0xb1,0xce,0x70,0x1f,0xa1,0xb1,0x60,0x20,0x76,0x0,0xf0,0x21,0x81,0x93,0x60,0x22, - 0x55,0xe2,0xf0,0x23,0x6a,0xaf,0xe0,0x24,0x35,0xc4,0xf0,0x25,0x4a,0x91,0xe0,0x26, - 0x15,0xa6,0xf0,0x27,0x2a,0x73,0xe0,0x27,0xfe,0xc3,0x70,0x29,0xa,0x55,0xe0,0x29, - 0xde,0xa5,0x70,0x2a,0xea,0x37,0xe0,0x2b,0xbe,0x87,0x70,0x2c,0xd3,0x54,0x60,0x2d, - 0x9e,0x69,0x70,0x2e,0xb3,0x36,0x60,0x2f,0x7e,0x4b,0x70,0x30,0x93,0x18,0x60,0x31, - 0x67,0x67,0xf0,0x32,0x72,0xfa,0x60,0x33,0x47,0x49,0xf0,0x34,0x52,0xdc,0x60,0x35, - 0x27,0x2b,0xf0,0x36,0x32,0xbe,0x60,0x37,0x7,0xd,0xf0,0x38,0x1b,0xda,0xe0,0x38, - 0xe6,0xef,0xf0,0x39,0xfb,0xbc,0xe0,0x3a,0xc6,0xd1,0xf0,0x3b,0xdb,0x9e,0xe0,0x3c, - 0xaf,0xee,0x70,0x3d,0xbb,0x80,0xe0,0x3e,0x8f,0xd0,0x70,0x3f,0x9b,0x62,0xe0,0x40, - 0x6f,0xb2,0x70,0x41,0x84,0x7f,0x60,0x42,0x4f,0x94,0x70,0x43,0x64,0x61,0x60,0x44, - 0x2f,0x76,0x70,0x45,0x44,0x43,0x60,0x45,0xf3,0xa8,0xf0,0x47,0x2d,0x5f,0xe0,0x47, - 0xd3,0x8a,0xf0,0x49,0xd,0x41,0xe0,0x49,0xb3,0x6c,0xf0,0x4a,0xed,0x23,0xe0,0x4b, - 0x9c,0x89,0x70,0x4c,0xd6,0x40,0x60,0x4d,0x7c,0x6b,0x70,0x4e,0xb6,0x22,0x60,0x4f, - 0x5c,0x4d,0x70,0x50,0x96,0x4,0x60,0x51,0x3c,0x2f,0x70,0x52,0x75,0xe6,0x60,0x53, - 0x1c,0x11,0x70,0x54,0x55,0xc8,0x60,0x54,0xfb,0xf3,0x70,0x56,0x35,0xaa,0x60,0x56, - 0xe5,0xf,0xf0,0x58,0x1e,0xc6,0xe0,0x58,0xc4,0xf1,0xf0,0x59,0xfe,0xa8,0xe0,0x5a, - 0xa4,0xd3,0xf0,0x5b,0xde,0x8a,0xe0,0x5c,0x84,0xb5,0xf0,0x5d,0xbe,0x6c,0xe0,0x5e, - 0x64,0x97,0xf0,0x5f,0x9e,0x4e,0xe0,0x60,0x4d,0xb4,0x70,0x61,0x87,0x6b,0x60,0x62, - 0x2d,0x96,0x70,0x63,0x67,0x4d,0x60,0x64,0xd,0x78,0x70,0x65,0x47,0x2f,0x60,0x65, - 0xed,0x5a,0x70,0x67,0x27,0x11,0x60,0x67,0xcd,0x3c,0x70,0x69,0x6,0xf3,0x60,0x69, - 0xad,0x1e,0x70,0x6a,0xe6,0xd5,0x60,0x6b,0x96,0x3a,0xf0,0x6c,0xcf,0xf1,0xe0,0x6d, - 0x76,0x1c,0xf0,0x6e,0xaf,0xd3,0xe0,0x6f,0x55,0xfe,0xf0,0x70,0x8f,0xb5,0xe0,0x71, - 0x35,0xe0,0xf0,0x72,0x6f,0x97,0xe0,0x73,0x15,0xc2,0xf0,0x74,0x4f,0x79,0xe0,0x74, - 0xfe,0xdf,0x70,0x76,0x38,0x96,0x60,0x76,0xde,0xc1,0x70,0x78,0x18,0x78,0x60,0x78, - 0xbe,0xa3,0x70,0x79,0xf8,0x5a,0x60,0x7a,0x9e,0x85,0x70,0x7b,0xd8,0x3c,0x60,0x7c, - 0x7e,0x67,0x70,0x7d,0xb8,0x1e,0x60,0x7e,0x5e,0x49,0x70,0x7f,0x98,0x0,0x60,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x82,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x16,0x80,0x0,0x0,0x0,0xd2, + 0xda,0x96,0xbc,0x9,0x18,0xfd,0xe0,0x9,0xac,0xa5,0xe0,0xa,0xef,0xa5,0x60,0xb, + 0x9e,0xfc,0xe0,0xc,0xd8,0xc1,0xe0,0xd,0x7e,0xde,0xe0,0xe,0xb8,0xa3,0xe0,0xf, + 0x5e,0xc0,0xe0,0x10,0x98,0x85,0xe0,0x11,0x3e,0xa2,0xe0,0x12,0x78,0x67,0xe0,0x13, + 0x1e,0x84,0xe0,0x14,0x58,0x49,0xe0,0x14,0xfe,0x66,0xe0,0x16,0x38,0x2b,0xe0,0x16, + 0xe7,0x83,0x60,0x18,0x21,0x48,0x60,0x18,0xc7,0x65,0x60,0x1a,0x1,0x2a,0x60,0x1a, + 0xa7,0x47,0x60,0x1b,0xe1,0xc,0x60,0x1c,0x87,0x29,0x60,0x1d,0xc0,0xee,0x60,0x1e, + 0x67,0xb,0x60,0x1f,0xa0,0xd0,0x60,0x20,0x46,0xed,0x60,0x21,0x80,0xb2,0x60,0x22, + 0x30,0x9,0xe0,0x23,0x69,0xce,0xe0,0x24,0xf,0xeb,0xe0,0x25,0x2e,0x1,0x60,0x26, + 0x2,0x42,0xe0,0x27,0xd,0xe3,0x60,0x27,0xe2,0x24,0xe0,0x28,0xed,0xc5,0x60,0x29, + 0xc2,0x6,0xe0,0x2a,0xcd,0xa7,0x60,0x2b,0xab,0x23,0x60,0x2c,0xad,0x89,0x60,0x2d, + 0x8b,0x5,0x60,0x2e,0x8d,0x6b,0x60,0x2f,0x6a,0xe7,0x60,0x30,0x6d,0x4d,0x60,0x31, + 0x4a,0xc9,0x60,0x32,0x56,0x69,0xe0,0x33,0x2a,0xab,0x60,0x34,0x36,0x4b,0xe0,0x35, + 0xa,0x8d,0x60,0x36,0x16,0x2d,0xe0,0x36,0xf3,0xa9,0xe0,0x37,0xf6,0xf,0xe0,0x38, + 0xd3,0x8b,0xe0,0x39,0xd5,0xf1,0xe0,0x3a,0xb3,0x6d,0xe0,0x3b,0xbf,0xe,0x60,0x3c, + 0x93,0x4f,0xe0,0x3d,0x9e,0xf0,0x60,0x3e,0x73,0x31,0xe0,0x3f,0x7e,0xd2,0x60,0x40, + 0x5c,0x4e,0x60,0x41,0x5e,0xb4,0x60,0x42,0x3c,0x30,0x60,0x43,0x3e,0x96,0x60,0x44, + 0x1c,0x12,0x60,0x45,0x1e,0x78,0x60,0x45,0xfb,0xf4,0x60,0x46,0xfe,0x5a,0x60,0x47, + 0xf7,0x85,0xe0,0x48,0xde,0x3c,0x60,0x49,0xd7,0x67,0xe0,0x4a,0xbe,0x1e,0x60,0x4b, + 0xb7,0x49,0xe0,0x4c,0x9e,0x0,0x60,0x4d,0x97,0x2b,0xe0,0x4e,0x7d,0xe2,0x60,0x4f, + 0x77,0xd,0xe0,0x50,0x66,0xfe,0xe0,0x51,0x60,0x2a,0x60,0x52,0x46,0xe0,0xe0,0x53, + 0x40,0xc,0x60,0x54,0x26,0xc2,0xe0,0x55,0x1f,0xee,0x60,0x56,0x6,0xa4,0xe0,0x56, + 0xff,0xd0,0x60,0x57,0xe6,0x86,0xe0,0x58,0xdf,0xb2,0x60,0x59,0xc6,0x68,0xe0,0x5a, + 0xbf,0x94,0x60,0x5b,0xaf,0x85,0x60,0x5c,0xa8,0xb0,0xe0,0x5d,0x8f,0x67,0x60,0x5e, + 0x88,0x92,0xe0,0x5f,0x6f,0x49,0x60,0x60,0x68,0x74,0xe0,0x61,0x4f,0x2b,0x60,0x62, + 0x48,0x56,0xe0,0x63,0x2f,0xd,0x60,0x64,0x28,0x38,0xe0,0x65,0xe,0xef,0x60,0x66, + 0x11,0x55,0x60,0x66,0xf8,0xb,0xe0,0x67,0xf1,0x37,0x60,0x68,0xd7,0xed,0xe0,0x69, + 0xd1,0x19,0x60,0x6a,0xb7,0xcf,0xe0,0x6b,0xb0,0xfb,0x60,0x6c,0x97,0xb1,0xe0,0x6d, + 0x90,0xdd,0x60,0x6e,0x77,0x93,0xe0,0x6f,0x70,0xbf,0x60,0x70,0x60,0xb0,0x60,0x71, + 0x59,0xdb,0xe0,0x72,0x40,0x92,0x60,0x73,0x39,0xbd,0xe0,0x74,0x20,0x74,0x60,0x75, + 0x19,0x9f,0xe0,0x76,0x0,0x56,0x60,0x76,0xf9,0x81,0xe0,0x77,0xe0,0x38,0x60,0x78, + 0xd9,0x63,0xe0,0x79,0xc0,0x1a,0x60,0x7a,0xb9,0x45,0xe0,0x7b,0xa9,0x36,0xe0,0x7c, + 0xa2,0x62,0x60,0x7d,0x89,0x18,0xe0,0x7e,0x82,0x44,0x60,0x7f,0x68,0xfa,0xe0,0x7f, + 0xff,0xff,0xff,0x1,0x4,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x2,0x0,0x0,0xab,0xfc,0x0,0x0,0x0,0x0,0xac,0x44,0x0, + 0x4,0x0,0x0,0xc1,0x5c,0x1,0xa,0x0,0x0,0xb3,0x4c,0x0,0x10,0x0,0x0,0xb3, + 0x4c,0x0,0x10,0x4c,0x4d,0x54,0x0,0x2b,0x31,0x32,0x31,0x35,0x0,0x2b,0x31,0x33, + 0x34,0x35,0x0,0x2b,0x31,0x32,0x34,0x35,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0, + 0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x83,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x16,0xf8, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x41,0xb7,0x44,0x84,0xff, + 0xff,0xff,0xff,0xd2,0xda,0x96,0xbc,0x0,0x0,0x0,0x0,0x9,0x18,0xfd,0xe0,0x0, + 0x0,0x0,0x0,0x9,0xac,0xa5,0xe0,0x0,0x0,0x0,0x0,0xa,0xef,0xa5,0x60,0x0, + 0x0,0x0,0x0,0xb,0x9e,0xfc,0xe0,0x0,0x0,0x0,0x0,0xc,0xd8,0xc1,0xe0,0x0, + 0x0,0x0,0x0,0xd,0x7e,0xde,0xe0,0x0,0x0,0x0,0x0,0xe,0xb8,0xa3,0xe0,0x0, + 0x0,0x0,0x0,0xf,0x5e,0xc0,0xe0,0x0,0x0,0x0,0x0,0x10,0x98,0x85,0xe0,0x0, + 0x0,0x0,0x0,0x11,0x3e,0xa2,0xe0,0x0,0x0,0x0,0x0,0x12,0x78,0x67,0xe0,0x0, + 0x0,0x0,0x0,0x13,0x1e,0x84,0xe0,0x0,0x0,0x0,0x0,0x14,0x58,0x49,0xe0,0x0, + 0x0,0x0,0x0,0x14,0xfe,0x66,0xe0,0x0,0x0,0x0,0x0,0x16,0x38,0x2b,0xe0,0x0, + 0x0,0x0,0x0,0x16,0xe7,0x83,0x60,0x0,0x0,0x0,0x0,0x18,0x21,0x48,0x60,0x0, + 0x0,0x0,0x0,0x18,0xc7,0x65,0x60,0x0,0x0,0x0,0x0,0x1a,0x1,0x2a,0x60,0x0, + 0x0,0x0,0x0,0x1a,0xa7,0x47,0x60,0x0,0x0,0x0,0x0,0x1b,0xe1,0xc,0x60,0x0, + 0x0,0x0,0x0,0x1c,0x87,0x29,0x60,0x0,0x0,0x0,0x0,0x1d,0xc0,0xee,0x60,0x0, + 0x0,0x0,0x0,0x1e,0x67,0xb,0x60,0x0,0x0,0x0,0x0,0x1f,0xa0,0xd0,0x60,0x0, + 0x0,0x0,0x0,0x20,0x46,0xed,0x60,0x0,0x0,0x0,0x0,0x21,0x80,0xb2,0x60,0x0, + 0x0,0x0,0x0,0x22,0x30,0x9,0xe0,0x0,0x0,0x0,0x0,0x23,0x69,0xce,0xe0,0x0, + 0x0,0x0,0x0,0x24,0xf,0xeb,0xe0,0x0,0x0,0x0,0x0,0x25,0x2e,0x1,0x60,0x0, + 0x0,0x0,0x0,0x26,0x2,0x42,0xe0,0x0,0x0,0x0,0x0,0x27,0xd,0xe3,0x60,0x0, + 0x0,0x0,0x0,0x27,0xe2,0x24,0xe0,0x0,0x0,0x0,0x0,0x28,0xed,0xc5,0x60,0x0, + 0x0,0x0,0x0,0x29,0xc2,0x6,0xe0,0x0,0x0,0x0,0x0,0x2a,0xcd,0xa7,0x60,0x0, + 0x0,0x0,0x0,0x2b,0xab,0x23,0x60,0x0,0x0,0x0,0x0,0x2c,0xad,0x89,0x60,0x0, + 0x0,0x0,0x0,0x2d,0x8b,0x5,0x60,0x0,0x0,0x0,0x0,0x2e,0x8d,0x6b,0x60,0x0, + 0x0,0x0,0x0,0x2f,0x6a,0xe7,0x60,0x0,0x0,0x0,0x0,0x30,0x6d,0x4d,0x60,0x0, + 0x0,0x0,0x0,0x31,0x4a,0xc9,0x60,0x0,0x0,0x0,0x0,0x32,0x56,0x69,0xe0,0x0, + 0x0,0x0,0x0,0x33,0x2a,0xab,0x60,0x0,0x0,0x0,0x0,0x34,0x36,0x4b,0xe0,0x0, + 0x0,0x0,0x0,0x35,0xa,0x8d,0x60,0x0,0x0,0x0,0x0,0x36,0x16,0x2d,0xe0,0x0, + 0x0,0x0,0x0,0x36,0xf3,0xa9,0xe0,0x0,0x0,0x0,0x0,0x37,0xf6,0xf,0xe0,0x0, + 0x0,0x0,0x0,0x38,0xd3,0x8b,0xe0,0x0,0x0,0x0,0x0,0x39,0xd5,0xf1,0xe0,0x0, + 0x0,0x0,0x0,0x3a,0xb3,0x6d,0xe0,0x0,0x0,0x0,0x0,0x3b,0xbf,0xe,0x60,0x0, + 0x0,0x0,0x0,0x3c,0x93,0x4f,0xe0,0x0,0x0,0x0,0x0,0x3d,0x9e,0xf0,0x60,0x0, + 0x0,0x0,0x0,0x3e,0x73,0x31,0xe0,0x0,0x0,0x0,0x0,0x3f,0x7e,0xd2,0x60,0x0, + 0x0,0x0,0x0,0x40,0x5c,0x4e,0x60,0x0,0x0,0x0,0x0,0x41,0x5e,0xb4,0x60,0x0, + 0x0,0x0,0x0,0x42,0x3c,0x30,0x60,0x0,0x0,0x0,0x0,0x43,0x3e,0x96,0x60,0x0, + 0x0,0x0,0x0,0x44,0x1c,0x12,0x60,0x0,0x0,0x0,0x0,0x45,0x1e,0x78,0x60,0x0, + 0x0,0x0,0x0,0x45,0xfb,0xf4,0x60,0x0,0x0,0x0,0x0,0x46,0xfe,0x5a,0x60,0x0, + 0x0,0x0,0x0,0x47,0xf7,0x85,0xe0,0x0,0x0,0x0,0x0,0x48,0xde,0x3c,0x60,0x0, + 0x0,0x0,0x0,0x49,0xd7,0x67,0xe0,0x0,0x0,0x0,0x0,0x4a,0xbe,0x1e,0x60,0x0, + 0x0,0x0,0x0,0x4b,0xb7,0x49,0xe0,0x0,0x0,0x0,0x0,0x4c,0x9e,0x0,0x60,0x0, + 0x0,0x0,0x0,0x4d,0x97,0x2b,0xe0,0x0,0x0,0x0,0x0,0x4e,0x7d,0xe2,0x60,0x0, + 0x0,0x0,0x0,0x4f,0x77,0xd,0xe0,0x0,0x0,0x0,0x0,0x50,0x66,0xfe,0xe0,0x0, + 0x0,0x0,0x0,0x51,0x60,0x2a,0x60,0x0,0x0,0x0,0x0,0x52,0x46,0xe0,0xe0,0x0, + 0x0,0x0,0x0,0x53,0x40,0xc,0x60,0x0,0x0,0x0,0x0,0x54,0x26,0xc2,0xe0,0x0, + 0x0,0x0,0x0,0x55,0x1f,0xee,0x60,0x0,0x0,0x0,0x0,0x56,0x6,0xa4,0xe0,0x0, + 0x0,0x0,0x0,0x56,0xff,0xd0,0x60,0x0,0x0,0x0,0x0,0x57,0xe6,0x86,0xe0,0x0, + 0x0,0x0,0x0,0x58,0xdf,0xb2,0x60,0x0,0x0,0x0,0x0,0x59,0xc6,0x68,0xe0,0x0, + 0x0,0x0,0x0,0x5a,0xbf,0x94,0x60,0x0,0x0,0x0,0x0,0x5b,0xaf,0x85,0x60,0x0, + 0x0,0x0,0x0,0x5c,0xa8,0xb0,0xe0,0x0,0x0,0x0,0x0,0x5d,0x8f,0x67,0x60,0x0, + 0x0,0x0,0x0,0x5e,0x88,0x92,0xe0,0x0,0x0,0x0,0x0,0x5f,0x6f,0x49,0x60,0x0, + 0x0,0x0,0x0,0x60,0x68,0x74,0xe0,0x0,0x0,0x0,0x0,0x61,0x4f,0x2b,0x60,0x0, + 0x0,0x0,0x0,0x62,0x48,0x56,0xe0,0x0,0x0,0x0,0x0,0x63,0x2f,0xd,0x60,0x0, + 0x0,0x0,0x0,0x64,0x28,0x38,0xe0,0x0,0x0,0x0,0x0,0x65,0xe,0xef,0x60,0x0, + 0x0,0x0,0x0,0x66,0x11,0x55,0x60,0x0,0x0,0x0,0x0,0x66,0xf8,0xb,0xe0,0x0, + 0x0,0x0,0x0,0x67,0xf1,0x37,0x60,0x0,0x0,0x0,0x0,0x68,0xd7,0xed,0xe0,0x0, + 0x0,0x0,0x0,0x69,0xd1,0x19,0x60,0x0,0x0,0x0,0x0,0x6a,0xb7,0xcf,0xe0,0x0, + 0x0,0x0,0x0,0x6b,0xb0,0xfb,0x60,0x0,0x0,0x0,0x0,0x6c,0x97,0xb1,0xe0,0x0, + 0x0,0x0,0x0,0x6d,0x90,0xdd,0x60,0x0,0x0,0x0,0x0,0x6e,0x77,0x93,0xe0,0x0, + 0x0,0x0,0x0,0x6f,0x70,0xbf,0x60,0x0,0x0,0x0,0x0,0x70,0x60,0xb0,0x60,0x0, + 0x0,0x0,0x0,0x71,0x59,0xdb,0xe0,0x0,0x0,0x0,0x0,0x72,0x40,0x92,0x60,0x0, + 0x0,0x0,0x0,0x73,0x39,0xbd,0xe0,0x0,0x0,0x0,0x0,0x74,0x20,0x74,0x60,0x0, + 0x0,0x0,0x0,0x75,0x19,0x9f,0xe0,0x0,0x0,0x0,0x0,0x76,0x0,0x56,0x60,0x0, + 0x0,0x0,0x0,0x76,0xf9,0x81,0xe0,0x0,0x0,0x0,0x0,0x77,0xe0,0x38,0x60,0x0, + 0x0,0x0,0x0,0x78,0xd9,0x63,0xe0,0x0,0x0,0x0,0x0,0x79,0xc0,0x1a,0x60,0x0, + 0x0,0x0,0x0,0x7a,0xb9,0x45,0xe0,0x0,0x0,0x0,0x0,0x7b,0xa9,0x36,0xe0,0x0, + 0x0,0x0,0x0,0x7c,0xa2,0x62,0x60,0x0,0x0,0x0,0x0,0x7d,0x89,0x18,0xe0,0x0, + 0x0,0x0,0x0,0x7e,0x82,0x44,0x60,0x0,0x0,0x0,0x0,0x7f,0x68,0xfa,0xe0,0x0, + 0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x4,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x2,0x0,0x0,0xab,0xfc,0x0,0x0, + 0x0,0x0,0xac,0x44,0x0,0x4,0x0,0x0,0xc1,0x5c,0x1,0xa,0x0,0x0,0xb3,0x4c, + 0x0,0x10,0x0,0x0,0xb3,0x4c,0x0,0x10,0x4c,0x4d,0x54,0x0,0x2b,0x31,0x32,0x31, + 0x35,0x0,0x2b,0x31,0x33,0x34,0x35,0x0,0x2b,0x31,0x32,0x34,0x35,0x0,0x0,0x0, + 0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2b,0x31,0x32,0x34,0x35,0x3e, + 0x2d,0x31,0x32,0x3a,0x34,0x35,0x3c,0x2b,0x31,0x33,0x34,0x35,0x3e,0x2c,0x4d,0x39, + 0x2e,0x35,0x2e,0x30,0x2f,0x32,0x3a,0x34,0x35,0x2c,0x4d,0x34,0x2e,0x31,0x2e,0x30, + 0x2f,0x33,0x3a,0x34,0x35,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/WET + 0x0,0x0,0x7,0x51, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x7a,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x9,0xd,0xa4,0x63,0x90,0xe, + 0x8b,0x1a,0x10,0xf,0x84,0x45,0x90,0x10,0x74,0x36,0x90,0x11,0x64,0x27,0x90,0x12, + 0x54,0x18,0x90,0x13,0x4d,0x44,0x10,0x14,0x33,0xfa,0x90,0x15,0x23,0xeb,0x90,0x16, + 0x13,0xdc,0x90,0x17,0x3,0xcd,0x90,0x17,0xf3,0xbe,0x90,0x18,0xe3,0xaf,0x90,0x19, + 0xd3,0xa0,0x90,0x1a,0xc3,0x91,0x90,0x1b,0xbc,0xbd,0x10,0x1c,0xac,0xae,0x10,0x1d, + 0x9c,0x9f,0x10,0x1e,0x8c,0x90,0x10,0x1f,0x7c,0x81,0x10,0x20,0x6c,0x72,0x10,0x21, + 0x5c,0x63,0x10,0x22,0x4c,0x54,0x10,0x23,0x3c,0x45,0x10,0x24,0x2c,0x36,0x10,0x25, + 0x1c,0x27,0x10,0x26,0xc,0x18,0x10,0x27,0x5,0x43,0x90,0x27,0xf5,0x34,0x90,0x28, + 0xe5,0x25,0x90,0x29,0xd5,0x16,0x90,0x2a,0xc5,0x7,0x90,0x2b,0xb4,0xf8,0x90,0x2c, + 0xa4,0xe9,0x90,0x2d,0x94,0xda,0x90,0x2e,0x84,0xcb,0x90,0x2f,0x74,0xbc,0x90,0x30, + 0x64,0xad,0x90,0x31,0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34, + 0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38, + 0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b, + 0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f, + 0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43, + 0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47, + 0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a, + 0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e, + 0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52, + 0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56, + 0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59, + 0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d, + 0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61, + 0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65, + 0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68, + 0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c, + 0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70, + 0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74, + 0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78, + 0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b, + 0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f, + 0x8e,0x7f,0x90,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0, + 0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0, + 0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0, + 0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0, + 0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0, + 0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0, + 0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0, + 0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x0,0xe, + 0x10,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x57,0x45,0x53,0x54,0x0,0x57,0x45, + 0x54,0x0,0x1,0x1,0x1,0x1,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0, + 0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7a,0x0,0x0,0x0,0x2,0x0,0x0, + 0x0,0x9,0x0,0x0,0x0,0x0,0xd,0xa4,0x63,0x90,0x0,0x0,0x0,0x0,0xe,0x8b, + 0x1a,0x10,0x0,0x0,0x0,0x0,0xf,0x84,0x45,0x90,0x0,0x0,0x0,0x0,0x10,0x74, + 0x36,0x90,0x0,0x0,0x0,0x0,0x11,0x64,0x27,0x90,0x0,0x0,0x0,0x0,0x12,0x54, + 0x18,0x90,0x0,0x0,0x0,0x0,0x13,0x4d,0x44,0x10,0x0,0x0,0x0,0x0,0x14,0x33, + 0xfa,0x90,0x0,0x0,0x0,0x0,0x15,0x23,0xeb,0x90,0x0,0x0,0x0,0x0,0x16,0x13, + 0xdc,0x90,0x0,0x0,0x0,0x0,0x17,0x3,0xcd,0x90,0x0,0x0,0x0,0x0,0x17,0xf3, + 0xbe,0x90,0x0,0x0,0x0,0x0,0x18,0xe3,0xaf,0x90,0x0,0x0,0x0,0x0,0x19,0xd3, + 0xa0,0x90,0x0,0x0,0x0,0x0,0x1a,0xc3,0x91,0x90,0x0,0x0,0x0,0x0,0x1b,0xbc, + 0xbd,0x10,0x0,0x0,0x0,0x0,0x1c,0xac,0xae,0x10,0x0,0x0,0x0,0x0,0x1d,0x9c, + 0x9f,0x10,0x0,0x0,0x0,0x0,0x1e,0x8c,0x90,0x10,0x0,0x0,0x0,0x0,0x1f,0x7c, + 0x81,0x10,0x0,0x0,0x0,0x0,0x20,0x6c,0x72,0x10,0x0,0x0,0x0,0x0,0x21,0x5c, + 0x63,0x10,0x0,0x0,0x0,0x0,0x22,0x4c,0x54,0x10,0x0,0x0,0x0,0x0,0x23,0x3c, + 0x45,0x10,0x0,0x0,0x0,0x0,0x24,0x2c,0x36,0x10,0x0,0x0,0x0,0x0,0x25,0x1c, + 0x27,0x10,0x0,0x0,0x0,0x0,0x26,0xc,0x18,0x10,0x0,0x0,0x0,0x0,0x27,0x5, + 0x43,0x90,0x0,0x0,0x0,0x0,0x27,0xf5,0x34,0x90,0x0,0x0,0x0,0x0,0x28,0xe5, + 0x25,0x90,0x0,0x0,0x0,0x0,0x29,0xd5,0x16,0x90,0x0,0x0,0x0,0x0,0x2a,0xc5, + 0x7,0x90,0x0,0x0,0x0,0x0,0x2b,0xb4,0xf8,0x90,0x0,0x0,0x0,0x0,0x2c,0xa4, + 0xe9,0x90,0x0,0x0,0x0,0x0,0x2d,0x94,0xda,0x90,0x0,0x0,0x0,0x0,0x2e,0x84, + 0xcb,0x90,0x0,0x0,0x0,0x0,0x2f,0x74,0xbc,0x90,0x0,0x0,0x0,0x0,0x30,0x64, + 0xad,0x90,0x0,0x0,0x0,0x0,0x31,0x5d,0xd9,0x10,0x0,0x0,0x0,0x0,0x32,0x72, + 0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d,0xbb,0x10,0x0,0x0,0x0,0x0,0x34,0x52, + 0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d,0x9d,0x10,0x0,0x0,0x0,0x0,0x36,0x32, + 0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd,0x7f,0x10,0x0,0x0,0x0,0x0,0x38,0x1b, + 0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd,0x61,0x10,0x0,0x0,0x0,0x0,0x39,0xfb, + 0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd,0x43,0x10,0x0,0x0,0x0,0x0,0x3b,0xdb, + 0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb, + 0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86,0x41,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b, + 0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66,0x23,0x90,0x0,0x0,0x0,0x0,0x41,0x84, + 0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46,0x5,0x90,0x0,0x0,0x0,0x0,0x43,0x64, + 0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25,0xe7,0x90,0x0,0x0,0x0,0x0,0x45,0x43, + 0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5,0xc9,0x90,0x0,0x0,0x0,0x0,0x47,0x23, + 0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee,0xe6,0x10,0x0,0x0,0x0,0x0,0x49,0x3, + 0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce,0xc8,0x10,0x0,0x0,0x0,0x0,0x4a,0xe3, + 0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae,0xaa,0x10,0x0,0x0,0x0,0x0,0x4c,0xcc, + 0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c,0x10,0x0,0x0,0x0,0x0,0x4e,0xac, + 0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e,0x10,0x0,0x0,0x0,0x0,0x50,0x8c, + 0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57,0x8a,0x90,0x0,0x0,0x0,0x0,0x52,0x6c, + 0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37,0x6c,0x90,0x0,0x0,0x0,0x0,0x54,0x4c, + 0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17,0x4e,0x90,0x0,0x0,0x0,0x0,0x56,0x2c, + 0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7,0x30,0x90,0x0,0x0,0x0,0x0,0x58,0x15, + 0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7,0x12,0x90,0x0,0x0,0x0,0x0,0x59,0xf5, + 0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4,0x90,0x0,0x0,0x0,0x0,0x5b,0xd5, + 0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0,0x11,0x10,0x0,0x0,0x0,0x0,0x5d,0xb4, + 0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3,0x10,0x0,0x0,0x0,0x0,0x5f,0x94, + 0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f,0xd5,0x10,0x0,0x0,0x0,0x0,0x61,0x7d, + 0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f,0xb7,0x10,0x0,0x0,0x0,0x0,0x63,0x5d, + 0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f,0x99,0x10,0x0,0x0,0x0,0x0,0x65,0x3d, + 0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8,0xb5,0x90,0x0,0x0,0x0,0x0,0x67,0x1d, + 0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8,0x97,0x90,0x0,0x0,0x0,0x0,0x68,0xfd, + 0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8,0x79,0x90,0x0,0x0,0x0,0x0,0x6a,0xdd, + 0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b,0x90,0x0,0x0,0x0,0x0,0x6c,0xc6, + 0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88,0x3d,0x90,0x0,0x0,0x0,0x0,0x6e,0xa6, + 0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68,0x1f,0x90,0x0,0x0,0x0,0x0,0x70,0x86, + 0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51,0x3c,0x10,0x0,0x0,0x0,0x0,0x72,0x66, + 0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31,0x1e,0x10,0x0,0x0,0x0,0x0,0x74,0x45, + 0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11,0x0,0x10,0x0,0x0,0x0,0x0,0x76,0x2f, + 0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0,0xe2,0x10,0x0,0x0,0x0,0x0,0x78,0xe, + 0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0,0xc4,0x10,0x0,0x0,0x0,0x0,0x79,0xee, + 0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6,0x10,0x0,0x0,0x0,0x0,0x7b,0xce, + 0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99,0xc2,0x90,0x0,0x0,0x0,0x0,0x7d,0xae, + 0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79,0xa4,0x90,0x0,0x0,0x0,0x0,0x7f,0x8e, + 0x7f,0x90,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1, + 0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1, + 0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1, + 0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1, + 0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1, + 0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1, + 0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1, + 0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x0,0xe,0x10, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x57,0x45,0x53,0x54,0x0,0x57,0x45,0x54, + 0x0,0x1,0x1,0x1,0x1,0xa,0x57,0x45,0x54,0x30,0x57,0x45,0x53,0x54,0x2c,0x4d, + 0x33,0x2e,0x35,0x2e,0x30,0x2f,0x31,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30,0xa, + + // /home/konrad/src/smoke/tzone/zoneinfo/CST6CDT + 0x0,0x0,0x8,0xf6, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x95,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x10,0x9e,0xa6,0x2c,0x80,0x9f, + 0xba,0xf9,0x70,0xa0,0x86,0xe,0x80,0xa1,0x9a,0xdb,0x70,0xcb,0x88,0xfe,0x80,0xd2, + 0x23,0xf4,0x70,0xd2,0x61,0x9,0xf0,0xfa,0xf8,0x67,0x0,0xfb,0xe8,0x49,0xf0,0xfc, + 0xd8,0x49,0x0,0xfd,0xc8,0x2b,0xf0,0xfe,0xb8,0x2b,0x0,0xff,0xa8,0xd,0xf0,0x0, + 0x98,0xd,0x0,0x1,0x87,0xef,0xf0,0x2,0x77,0xef,0x0,0x3,0x71,0xc,0x70,0x4, + 0x61,0xb,0x80,0x5,0x50,0xee,0x70,0x6,0x40,0xed,0x80,0x7,0x30,0xd0,0x70,0x7, + 0x8d,0x27,0x80,0x9,0x10,0xb2,0x70,0x9,0xad,0xa3,0x0,0xa,0xf0,0x94,0x70,0xb, + 0xe0,0x93,0x80,0xc,0xd9,0xb0,0xf0,0xd,0xc0,0x75,0x80,0xe,0xb9,0x92,0xf0,0xf, + 0xa9,0x92,0x0,0x10,0x99,0x74,0xf0,0x11,0x89,0x74,0x0,0x12,0x79,0x56,0xf0,0x13, + 0x69,0x56,0x0,0x14,0x59,0x38,0xf0,0x15,0x49,0x38,0x0,0x16,0x39,0x1a,0xf0,0x17, + 0x29,0x1a,0x0,0x18,0x22,0x37,0x70,0x19,0x8,0xfc,0x0,0x1a,0x2,0x19,0x70,0x1a, + 0xf2,0x18,0x80,0x1b,0xe1,0xfb,0x70,0x1c,0xd1,0xfa,0x80,0x1d,0xc1,0xdd,0x70,0x1e, + 0xb1,0xdc,0x80,0x1f,0xa1,0xbf,0x70,0x20,0x76,0xf,0x0,0x21,0x81,0xa1,0x70,0x22, + 0x55,0xf1,0x0,0x23,0x6a,0xbd,0xf0,0x24,0x35,0xd3,0x0,0x25,0x4a,0x9f,0xf0,0x26, + 0x15,0xb5,0x0,0x27,0x2a,0x81,0xf0,0x27,0xfe,0xd1,0x80,0x29,0xa,0x63,0xf0,0x29, + 0xde,0xb3,0x80,0x2a,0xea,0x45,0xf0,0x2b,0xbe,0x95,0x80,0x2c,0xd3,0x62,0x70,0x2d, + 0x9e,0x77,0x80,0x2e,0xb3,0x44,0x70,0x2f,0x7e,0x59,0x80,0x30,0x93,0x26,0x70,0x31, + 0x67,0x76,0x0,0x32,0x73,0x8,0x70,0x33,0x47,0x58,0x0,0x34,0x52,0xea,0x70,0x35, + 0x27,0x3a,0x0,0x36,0x32,0xcc,0x70,0x37,0x7,0x1c,0x0,0x38,0x1b,0xe8,0xf0,0x38, + 0xe6,0xfe,0x0,0x39,0xfb,0xca,0xf0,0x3a,0xc6,0xe0,0x0,0x3b,0xdb,0xac,0xf0,0x3c, + 0xaf,0xfc,0x80,0x3d,0xbb,0x8e,0xf0,0x3e,0x8f,0xde,0x80,0x3f,0x9b,0x70,0xf0,0x40, + 0x6f,0xc0,0x80,0x41,0x84,0x8d,0x70,0x42,0x4f,0xa2,0x80,0x43,0x64,0x6f,0x70,0x44, + 0x2f,0x84,0x80,0x45,0x44,0x51,0x70,0x45,0xf3,0xb7,0x0,0x47,0x2d,0x6d,0xf0,0x47, + 0xd3,0x99,0x0,0x49,0xd,0x4f,0xf0,0x49,0xb3,0x7b,0x0,0x4a,0xed,0x31,0xf0,0x4b, + 0x9c,0x97,0x80,0x4c,0xd6,0x4e,0x70,0x4d,0x7c,0x79,0x80,0x4e,0xb6,0x30,0x70,0x4f, + 0x5c,0x5b,0x80,0x50,0x96,0x12,0x70,0x51,0x3c,0x3d,0x80,0x52,0x75,0xf4,0x70,0x53, + 0x1c,0x1f,0x80,0x54,0x55,0xd6,0x70,0x54,0xfc,0x1,0x80,0x56,0x35,0xb8,0x70,0x56, + 0xe5,0x1e,0x0,0x58,0x1e,0xd4,0xf0,0x58,0xc5,0x0,0x0,0x59,0xfe,0xb6,0xf0,0x5a, + 0xa4,0xe2,0x0,0x5b,0xde,0x98,0xf0,0x5c,0x84,0xc4,0x0,0x5d,0xbe,0x7a,0xf0,0x5e, + 0x64,0xa6,0x0,0x5f,0x9e,0x5c,0xf0,0x60,0x4d,0xc2,0x80,0x61,0x87,0x79,0x70,0x62, + 0x2d,0xa4,0x80,0x63,0x67,0x5b,0x70,0x64,0xd,0x86,0x80,0x65,0x47,0x3d,0x70,0x65, + 0xed,0x68,0x80,0x67,0x27,0x1f,0x70,0x67,0xcd,0x4a,0x80,0x69,0x7,0x1,0x70,0x69, + 0xad,0x2c,0x80,0x6a,0xe6,0xe3,0x70,0x6b,0x96,0x49,0x0,0x6c,0xcf,0xff,0xf0,0x6d, + 0x76,0x2b,0x0,0x6e,0xaf,0xe1,0xf0,0x6f,0x56,0xd,0x0,0x70,0x8f,0xc3,0xf0,0x71, + 0x35,0xef,0x0,0x72,0x6f,0xa5,0xf0,0x73,0x15,0xd1,0x0,0x74,0x4f,0x87,0xf0,0x74, + 0xfe,0xed,0x80,0x76,0x38,0xa4,0x70,0x76,0xde,0xcf,0x80,0x78,0x18,0x86,0x70,0x78, + 0xbe,0xb1,0x80,0x79,0xf8,0x68,0x70,0x7a,0x9e,0x93,0x80,0x7b,0xd8,0x4a,0x70,0x7c, + 0x7e,0x75,0x80,0x7d,0xb8,0x2c,0x70,0x7e,0x5e,0x57,0x80,0x7f,0x98,0xe,0x70,0x0, 0x1,0x0,0x1,0x2,0x3,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1, 0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1, 0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1, @@ -587,87 +908,87 @@ static const unsigned char qt_resource_data[] = { 0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1, 0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1, 0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1, - 0x0,0x1,0x0,0x1,0xff,0xff,0xc7,0xc0,0x1,0x0,0xff,0xff,0xb9,0xb0,0x0,0x4, - 0xff,0xff,0xc7,0xc0,0x1,0x8,0xff,0xff,0xc7,0xc0,0x1,0xc,0x45,0x44,0x54,0x0, - 0x45,0x53,0x54,0x0,0x45,0x57,0x54,0x0,0x45,0x50,0x54,0x0,0x0,0x0,0x0,0x1, + 0x0,0x1,0x0,0x1,0xff,0xff,0xb9,0xb0,0x1,0x0,0xff,0xff,0xab,0xa0,0x0,0x4, + 0xff,0xff,0xb9,0xb0,0x1,0x8,0xff,0xff,0xb9,0xb0,0x1,0xc,0x43,0x44,0x54,0x0, + 0x43,0x53,0x54,0x0,0x43,0x57,0x54,0x0,0x43,0x50,0x54,0x0,0x0,0x0,0x0,0x1, 0x0,0x0,0x0,0x1,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x95,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x10, - 0xff,0xff,0xff,0xff,0x9e,0xa6,0x1e,0x70,0xff,0xff,0xff,0xff,0x9f,0xba,0xeb,0x60, - 0xff,0xff,0xff,0xff,0xa0,0x86,0x0,0x70,0xff,0xff,0xff,0xff,0xa1,0x9a,0xcd,0x60, - 0xff,0xff,0xff,0xff,0xcb,0x88,0xf0,0x70,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70, - 0xff,0xff,0xff,0xff,0xd2,0x60,0xfb,0xe0,0xff,0xff,0xff,0xff,0xfa,0xf8,0x58,0xf0, - 0xff,0xff,0xff,0xff,0xfb,0xe8,0x3b,0xe0,0xff,0xff,0xff,0xff,0xfc,0xd8,0x3a,0xf0, - 0xff,0xff,0xff,0xff,0xfd,0xc8,0x1d,0xe0,0xff,0xff,0xff,0xff,0xfe,0xb8,0x1c,0xf0, - 0xff,0xff,0xff,0xff,0xff,0xa7,0xff,0xe0,0x0,0x0,0x0,0x0,0x0,0x97,0xfe,0xf0, - 0x0,0x0,0x0,0x0,0x1,0x87,0xe1,0xe0,0x0,0x0,0x0,0x0,0x2,0x77,0xe0,0xf0, - 0x0,0x0,0x0,0x0,0x3,0x70,0xfe,0x60,0x0,0x0,0x0,0x0,0x4,0x60,0xfd,0x70, - 0x0,0x0,0x0,0x0,0x5,0x50,0xe0,0x60,0x0,0x0,0x0,0x0,0x6,0x40,0xdf,0x70, - 0x0,0x0,0x0,0x0,0x7,0x30,0xc2,0x60,0x0,0x0,0x0,0x0,0x7,0x8d,0x19,0x70, - 0x0,0x0,0x0,0x0,0x9,0x10,0xa4,0x60,0x0,0x0,0x0,0x0,0x9,0xad,0x94,0xf0, - 0x0,0x0,0x0,0x0,0xa,0xf0,0x86,0x60,0x0,0x0,0x0,0x0,0xb,0xe0,0x85,0x70, - 0x0,0x0,0x0,0x0,0xc,0xd9,0xa2,0xe0,0x0,0x0,0x0,0x0,0xd,0xc0,0x67,0x70, - 0x0,0x0,0x0,0x0,0xe,0xb9,0x84,0xe0,0x0,0x0,0x0,0x0,0xf,0xa9,0x83,0xf0, - 0x0,0x0,0x0,0x0,0x10,0x99,0x66,0xe0,0x0,0x0,0x0,0x0,0x11,0x89,0x65,0xf0, - 0x0,0x0,0x0,0x0,0x12,0x79,0x48,0xe0,0x0,0x0,0x0,0x0,0x13,0x69,0x47,0xf0, - 0x0,0x0,0x0,0x0,0x14,0x59,0x2a,0xe0,0x0,0x0,0x0,0x0,0x15,0x49,0x29,0xf0, - 0x0,0x0,0x0,0x0,0x16,0x39,0xc,0xe0,0x0,0x0,0x0,0x0,0x17,0x29,0xb,0xf0, - 0x0,0x0,0x0,0x0,0x18,0x22,0x29,0x60,0x0,0x0,0x0,0x0,0x19,0x8,0xed,0xf0, - 0x0,0x0,0x0,0x0,0x1a,0x2,0xb,0x60,0x0,0x0,0x0,0x0,0x1a,0xf2,0xa,0x70, - 0x0,0x0,0x0,0x0,0x1b,0xe1,0xed,0x60,0x0,0x0,0x0,0x0,0x1c,0xd1,0xec,0x70, - 0x0,0x0,0x0,0x0,0x1d,0xc1,0xcf,0x60,0x0,0x0,0x0,0x0,0x1e,0xb1,0xce,0x70, - 0x0,0x0,0x0,0x0,0x1f,0xa1,0xb1,0x60,0x0,0x0,0x0,0x0,0x20,0x76,0x0,0xf0, - 0x0,0x0,0x0,0x0,0x21,0x81,0x93,0x60,0x0,0x0,0x0,0x0,0x22,0x55,0xe2,0xf0, - 0x0,0x0,0x0,0x0,0x23,0x6a,0xaf,0xe0,0x0,0x0,0x0,0x0,0x24,0x35,0xc4,0xf0, - 0x0,0x0,0x0,0x0,0x25,0x4a,0x91,0xe0,0x0,0x0,0x0,0x0,0x26,0x15,0xa6,0xf0, - 0x0,0x0,0x0,0x0,0x27,0x2a,0x73,0xe0,0x0,0x0,0x0,0x0,0x27,0xfe,0xc3,0x70, - 0x0,0x0,0x0,0x0,0x29,0xa,0x55,0xe0,0x0,0x0,0x0,0x0,0x29,0xde,0xa5,0x70, - 0x0,0x0,0x0,0x0,0x2a,0xea,0x37,0xe0,0x0,0x0,0x0,0x0,0x2b,0xbe,0x87,0x70, - 0x0,0x0,0x0,0x0,0x2c,0xd3,0x54,0x60,0x0,0x0,0x0,0x0,0x2d,0x9e,0x69,0x70, - 0x0,0x0,0x0,0x0,0x2e,0xb3,0x36,0x60,0x0,0x0,0x0,0x0,0x2f,0x7e,0x4b,0x70, - 0x0,0x0,0x0,0x0,0x30,0x93,0x18,0x60,0x0,0x0,0x0,0x0,0x31,0x67,0x67,0xf0, - 0x0,0x0,0x0,0x0,0x32,0x72,0xfa,0x60,0x0,0x0,0x0,0x0,0x33,0x47,0x49,0xf0, - 0x0,0x0,0x0,0x0,0x34,0x52,0xdc,0x60,0x0,0x0,0x0,0x0,0x35,0x27,0x2b,0xf0, - 0x0,0x0,0x0,0x0,0x36,0x32,0xbe,0x60,0x0,0x0,0x0,0x0,0x37,0x7,0xd,0xf0, - 0x0,0x0,0x0,0x0,0x38,0x1b,0xda,0xe0,0x0,0x0,0x0,0x0,0x38,0xe6,0xef,0xf0, - 0x0,0x0,0x0,0x0,0x39,0xfb,0xbc,0xe0,0x0,0x0,0x0,0x0,0x3a,0xc6,0xd1,0xf0, - 0x0,0x0,0x0,0x0,0x3b,0xdb,0x9e,0xe0,0x0,0x0,0x0,0x0,0x3c,0xaf,0xee,0x70, - 0x0,0x0,0x0,0x0,0x3d,0xbb,0x80,0xe0,0x0,0x0,0x0,0x0,0x3e,0x8f,0xd0,0x70, - 0x0,0x0,0x0,0x0,0x3f,0x9b,0x62,0xe0,0x0,0x0,0x0,0x0,0x40,0x6f,0xb2,0x70, - 0x0,0x0,0x0,0x0,0x41,0x84,0x7f,0x60,0x0,0x0,0x0,0x0,0x42,0x4f,0x94,0x70, - 0x0,0x0,0x0,0x0,0x43,0x64,0x61,0x60,0x0,0x0,0x0,0x0,0x44,0x2f,0x76,0x70, - 0x0,0x0,0x0,0x0,0x45,0x44,0x43,0x60,0x0,0x0,0x0,0x0,0x45,0xf3,0xa8,0xf0, - 0x0,0x0,0x0,0x0,0x47,0x2d,0x5f,0xe0,0x0,0x0,0x0,0x0,0x47,0xd3,0x8a,0xf0, - 0x0,0x0,0x0,0x0,0x49,0xd,0x41,0xe0,0x0,0x0,0x0,0x0,0x49,0xb3,0x6c,0xf0, - 0x0,0x0,0x0,0x0,0x4a,0xed,0x23,0xe0,0x0,0x0,0x0,0x0,0x4b,0x9c,0x89,0x70, - 0x0,0x0,0x0,0x0,0x4c,0xd6,0x40,0x60,0x0,0x0,0x0,0x0,0x4d,0x7c,0x6b,0x70, - 0x0,0x0,0x0,0x0,0x4e,0xb6,0x22,0x60,0x0,0x0,0x0,0x0,0x4f,0x5c,0x4d,0x70, - 0x0,0x0,0x0,0x0,0x50,0x96,0x4,0x60,0x0,0x0,0x0,0x0,0x51,0x3c,0x2f,0x70, - 0x0,0x0,0x0,0x0,0x52,0x75,0xe6,0x60,0x0,0x0,0x0,0x0,0x53,0x1c,0x11,0x70, - 0x0,0x0,0x0,0x0,0x54,0x55,0xc8,0x60,0x0,0x0,0x0,0x0,0x54,0xfb,0xf3,0x70, - 0x0,0x0,0x0,0x0,0x56,0x35,0xaa,0x60,0x0,0x0,0x0,0x0,0x56,0xe5,0xf,0xf0, - 0x0,0x0,0x0,0x0,0x58,0x1e,0xc6,0xe0,0x0,0x0,0x0,0x0,0x58,0xc4,0xf1,0xf0, - 0x0,0x0,0x0,0x0,0x59,0xfe,0xa8,0xe0,0x0,0x0,0x0,0x0,0x5a,0xa4,0xd3,0xf0, - 0x0,0x0,0x0,0x0,0x5b,0xde,0x8a,0xe0,0x0,0x0,0x0,0x0,0x5c,0x84,0xb5,0xf0, - 0x0,0x0,0x0,0x0,0x5d,0xbe,0x6c,0xe0,0x0,0x0,0x0,0x0,0x5e,0x64,0x97,0xf0, - 0x0,0x0,0x0,0x0,0x5f,0x9e,0x4e,0xe0,0x0,0x0,0x0,0x0,0x60,0x4d,0xb4,0x70, - 0x0,0x0,0x0,0x0,0x61,0x87,0x6b,0x60,0x0,0x0,0x0,0x0,0x62,0x2d,0x96,0x70, - 0x0,0x0,0x0,0x0,0x63,0x67,0x4d,0x60,0x0,0x0,0x0,0x0,0x64,0xd,0x78,0x70, - 0x0,0x0,0x0,0x0,0x65,0x47,0x2f,0x60,0x0,0x0,0x0,0x0,0x65,0xed,0x5a,0x70, - 0x0,0x0,0x0,0x0,0x67,0x27,0x11,0x60,0x0,0x0,0x0,0x0,0x67,0xcd,0x3c,0x70, - 0x0,0x0,0x0,0x0,0x69,0x6,0xf3,0x60,0x0,0x0,0x0,0x0,0x69,0xad,0x1e,0x70, - 0x0,0x0,0x0,0x0,0x6a,0xe6,0xd5,0x60,0x0,0x0,0x0,0x0,0x6b,0x96,0x3a,0xf0, - 0x0,0x0,0x0,0x0,0x6c,0xcf,0xf1,0xe0,0x0,0x0,0x0,0x0,0x6d,0x76,0x1c,0xf0, - 0x0,0x0,0x0,0x0,0x6e,0xaf,0xd3,0xe0,0x0,0x0,0x0,0x0,0x6f,0x55,0xfe,0xf0, - 0x0,0x0,0x0,0x0,0x70,0x8f,0xb5,0xe0,0x0,0x0,0x0,0x0,0x71,0x35,0xe0,0xf0, - 0x0,0x0,0x0,0x0,0x72,0x6f,0x97,0xe0,0x0,0x0,0x0,0x0,0x73,0x15,0xc2,0xf0, - 0x0,0x0,0x0,0x0,0x74,0x4f,0x79,0xe0,0x0,0x0,0x0,0x0,0x74,0xfe,0xdf,0x70, - 0x0,0x0,0x0,0x0,0x76,0x38,0x96,0x60,0x0,0x0,0x0,0x0,0x76,0xde,0xc1,0x70, - 0x0,0x0,0x0,0x0,0x78,0x18,0x78,0x60,0x0,0x0,0x0,0x0,0x78,0xbe,0xa3,0x70, - 0x0,0x0,0x0,0x0,0x79,0xf8,0x5a,0x60,0x0,0x0,0x0,0x0,0x7a,0x9e,0x85,0x70, - 0x0,0x0,0x0,0x0,0x7b,0xd8,0x3c,0x60,0x0,0x0,0x0,0x0,0x7c,0x7e,0x67,0x70, - 0x0,0x0,0x0,0x0,0x7d,0xb8,0x1e,0x60,0x0,0x0,0x0,0x0,0x7e,0x5e,0x49,0x70, - 0x0,0x0,0x0,0x0,0x7f,0x98,0x0,0x60,0x0,0x1,0x0,0x1,0x2,0x3,0x1,0x0, + 0xff,0xff,0xff,0xff,0x9e,0xa6,0x2c,0x80,0xff,0xff,0xff,0xff,0x9f,0xba,0xf9,0x70, + 0xff,0xff,0xff,0xff,0xa0,0x86,0xe,0x80,0xff,0xff,0xff,0xff,0xa1,0x9a,0xdb,0x70, + 0xff,0xff,0xff,0xff,0xcb,0x88,0xfe,0x80,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70, + 0xff,0xff,0xff,0xff,0xd2,0x61,0x9,0xf0,0xff,0xff,0xff,0xff,0xfa,0xf8,0x67,0x0, + 0xff,0xff,0xff,0xff,0xfb,0xe8,0x49,0xf0,0xff,0xff,0xff,0xff,0xfc,0xd8,0x49,0x0, + 0xff,0xff,0xff,0xff,0xfd,0xc8,0x2b,0xf0,0xff,0xff,0xff,0xff,0xfe,0xb8,0x2b,0x0, + 0xff,0xff,0xff,0xff,0xff,0xa8,0xd,0xf0,0x0,0x0,0x0,0x0,0x0,0x98,0xd,0x0, + 0x0,0x0,0x0,0x0,0x1,0x87,0xef,0xf0,0x0,0x0,0x0,0x0,0x2,0x77,0xef,0x0, + 0x0,0x0,0x0,0x0,0x3,0x71,0xc,0x70,0x0,0x0,0x0,0x0,0x4,0x61,0xb,0x80, + 0x0,0x0,0x0,0x0,0x5,0x50,0xee,0x70,0x0,0x0,0x0,0x0,0x6,0x40,0xed,0x80, + 0x0,0x0,0x0,0x0,0x7,0x30,0xd0,0x70,0x0,0x0,0x0,0x0,0x7,0x8d,0x27,0x80, + 0x0,0x0,0x0,0x0,0x9,0x10,0xb2,0x70,0x0,0x0,0x0,0x0,0x9,0xad,0xa3,0x0, + 0x0,0x0,0x0,0x0,0xa,0xf0,0x94,0x70,0x0,0x0,0x0,0x0,0xb,0xe0,0x93,0x80, + 0x0,0x0,0x0,0x0,0xc,0xd9,0xb0,0xf0,0x0,0x0,0x0,0x0,0xd,0xc0,0x75,0x80, + 0x0,0x0,0x0,0x0,0xe,0xb9,0x92,0xf0,0x0,0x0,0x0,0x0,0xf,0xa9,0x92,0x0, + 0x0,0x0,0x0,0x0,0x10,0x99,0x74,0xf0,0x0,0x0,0x0,0x0,0x11,0x89,0x74,0x0, + 0x0,0x0,0x0,0x0,0x12,0x79,0x56,0xf0,0x0,0x0,0x0,0x0,0x13,0x69,0x56,0x0, + 0x0,0x0,0x0,0x0,0x14,0x59,0x38,0xf0,0x0,0x0,0x0,0x0,0x15,0x49,0x38,0x0, + 0x0,0x0,0x0,0x0,0x16,0x39,0x1a,0xf0,0x0,0x0,0x0,0x0,0x17,0x29,0x1a,0x0, + 0x0,0x0,0x0,0x0,0x18,0x22,0x37,0x70,0x0,0x0,0x0,0x0,0x19,0x8,0xfc,0x0, + 0x0,0x0,0x0,0x0,0x1a,0x2,0x19,0x70,0x0,0x0,0x0,0x0,0x1a,0xf2,0x18,0x80, + 0x0,0x0,0x0,0x0,0x1b,0xe1,0xfb,0x70,0x0,0x0,0x0,0x0,0x1c,0xd1,0xfa,0x80, + 0x0,0x0,0x0,0x0,0x1d,0xc1,0xdd,0x70,0x0,0x0,0x0,0x0,0x1e,0xb1,0xdc,0x80, + 0x0,0x0,0x0,0x0,0x1f,0xa1,0xbf,0x70,0x0,0x0,0x0,0x0,0x20,0x76,0xf,0x0, + 0x0,0x0,0x0,0x0,0x21,0x81,0xa1,0x70,0x0,0x0,0x0,0x0,0x22,0x55,0xf1,0x0, + 0x0,0x0,0x0,0x0,0x23,0x6a,0xbd,0xf0,0x0,0x0,0x0,0x0,0x24,0x35,0xd3,0x0, + 0x0,0x0,0x0,0x0,0x25,0x4a,0x9f,0xf0,0x0,0x0,0x0,0x0,0x26,0x15,0xb5,0x0, + 0x0,0x0,0x0,0x0,0x27,0x2a,0x81,0xf0,0x0,0x0,0x0,0x0,0x27,0xfe,0xd1,0x80, + 0x0,0x0,0x0,0x0,0x29,0xa,0x63,0xf0,0x0,0x0,0x0,0x0,0x29,0xde,0xb3,0x80, + 0x0,0x0,0x0,0x0,0x2a,0xea,0x45,0xf0,0x0,0x0,0x0,0x0,0x2b,0xbe,0x95,0x80, + 0x0,0x0,0x0,0x0,0x2c,0xd3,0x62,0x70,0x0,0x0,0x0,0x0,0x2d,0x9e,0x77,0x80, + 0x0,0x0,0x0,0x0,0x2e,0xb3,0x44,0x70,0x0,0x0,0x0,0x0,0x2f,0x7e,0x59,0x80, + 0x0,0x0,0x0,0x0,0x30,0x93,0x26,0x70,0x0,0x0,0x0,0x0,0x31,0x67,0x76,0x0, + 0x0,0x0,0x0,0x0,0x32,0x73,0x8,0x70,0x0,0x0,0x0,0x0,0x33,0x47,0x58,0x0, + 0x0,0x0,0x0,0x0,0x34,0x52,0xea,0x70,0x0,0x0,0x0,0x0,0x35,0x27,0x3a,0x0, + 0x0,0x0,0x0,0x0,0x36,0x32,0xcc,0x70,0x0,0x0,0x0,0x0,0x37,0x7,0x1c,0x0, + 0x0,0x0,0x0,0x0,0x38,0x1b,0xe8,0xf0,0x0,0x0,0x0,0x0,0x38,0xe6,0xfe,0x0, + 0x0,0x0,0x0,0x0,0x39,0xfb,0xca,0xf0,0x0,0x0,0x0,0x0,0x3a,0xc6,0xe0,0x0, + 0x0,0x0,0x0,0x0,0x3b,0xdb,0xac,0xf0,0x0,0x0,0x0,0x0,0x3c,0xaf,0xfc,0x80, + 0x0,0x0,0x0,0x0,0x3d,0xbb,0x8e,0xf0,0x0,0x0,0x0,0x0,0x3e,0x8f,0xde,0x80, + 0x0,0x0,0x0,0x0,0x3f,0x9b,0x70,0xf0,0x0,0x0,0x0,0x0,0x40,0x6f,0xc0,0x80, + 0x0,0x0,0x0,0x0,0x41,0x84,0x8d,0x70,0x0,0x0,0x0,0x0,0x42,0x4f,0xa2,0x80, + 0x0,0x0,0x0,0x0,0x43,0x64,0x6f,0x70,0x0,0x0,0x0,0x0,0x44,0x2f,0x84,0x80, + 0x0,0x0,0x0,0x0,0x45,0x44,0x51,0x70,0x0,0x0,0x0,0x0,0x45,0xf3,0xb7,0x0, + 0x0,0x0,0x0,0x0,0x47,0x2d,0x6d,0xf0,0x0,0x0,0x0,0x0,0x47,0xd3,0x99,0x0, + 0x0,0x0,0x0,0x0,0x49,0xd,0x4f,0xf0,0x0,0x0,0x0,0x0,0x49,0xb3,0x7b,0x0, + 0x0,0x0,0x0,0x0,0x4a,0xed,0x31,0xf0,0x0,0x0,0x0,0x0,0x4b,0x9c,0x97,0x80, + 0x0,0x0,0x0,0x0,0x4c,0xd6,0x4e,0x70,0x0,0x0,0x0,0x0,0x4d,0x7c,0x79,0x80, + 0x0,0x0,0x0,0x0,0x4e,0xb6,0x30,0x70,0x0,0x0,0x0,0x0,0x4f,0x5c,0x5b,0x80, + 0x0,0x0,0x0,0x0,0x50,0x96,0x12,0x70,0x0,0x0,0x0,0x0,0x51,0x3c,0x3d,0x80, + 0x0,0x0,0x0,0x0,0x52,0x75,0xf4,0x70,0x0,0x0,0x0,0x0,0x53,0x1c,0x1f,0x80, + 0x0,0x0,0x0,0x0,0x54,0x55,0xd6,0x70,0x0,0x0,0x0,0x0,0x54,0xfc,0x1,0x80, + 0x0,0x0,0x0,0x0,0x56,0x35,0xb8,0x70,0x0,0x0,0x0,0x0,0x56,0xe5,0x1e,0x0, + 0x0,0x0,0x0,0x0,0x58,0x1e,0xd4,0xf0,0x0,0x0,0x0,0x0,0x58,0xc5,0x0,0x0, + 0x0,0x0,0x0,0x0,0x59,0xfe,0xb6,0xf0,0x0,0x0,0x0,0x0,0x5a,0xa4,0xe2,0x0, + 0x0,0x0,0x0,0x0,0x5b,0xde,0x98,0xf0,0x0,0x0,0x0,0x0,0x5c,0x84,0xc4,0x0, + 0x0,0x0,0x0,0x0,0x5d,0xbe,0x7a,0xf0,0x0,0x0,0x0,0x0,0x5e,0x64,0xa6,0x0, + 0x0,0x0,0x0,0x0,0x5f,0x9e,0x5c,0xf0,0x0,0x0,0x0,0x0,0x60,0x4d,0xc2,0x80, + 0x0,0x0,0x0,0x0,0x61,0x87,0x79,0x70,0x0,0x0,0x0,0x0,0x62,0x2d,0xa4,0x80, + 0x0,0x0,0x0,0x0,0x63,0x67,0x5b,0x70,0x0,0x0,0x0,0x0,0x64,0xd,0x86,0x80, + 0x0,0x0,0x0,0x0,0x65,0x47,0x3d,0x70,0x0,0x0,0x0,0x0,0x65,0xed,0x68,0x80, + 0x0,0x0,0x0,0x0,0x67,0x27,0x1f,0x70,0x0,0x0,0x0,0x0,0x67,0xcd,0x4a,0x80, + 0x0,0x0,0x0,0x0,0x69,0x7,0x1,0x70,0x0,0x0,0x0,0x0,0x69,0xad,0x2c,0x80, + 0x0,0x0,0x0,0x0,0x6a,0xe6,0xe3,0x70,0x0,0x0,0x0,0x0,0x6b,0x96,0x49,0x0, + 0x0,0x0,0x0,0x0,0x6c,0xcf,0xff,0xf0,0x0,0x0,0x0,0x0,0x6d,0x76,0x2b,0x0, + 0x0,0x0,0x0,0x0,0x6e,0xaf,0xe1,0xf0,0x0,0x0,0x0,0x0,0x6f,0x56,0xd,0x0, + 0x0,0x0,0x0,0x0,0x70,0x8f,0xc3,0xf0,0x0,0x0,0x0,0x0,0x71,0x35,0xef,0x0, + 0x0,0x0,0x0,0x0,0x72,0x6f,0xa5,0xf0,0x0,0x0,0x0,0x0,0x73,0x15,0xd1,0x0, + 0x0,0x0,0x0,0x0,0x74,0x4f,0x87,0xf0,0x0,0x0,0x0,0x0,0x74,0xfe,0xed,0x80, + 0x0,0x0,0x0,0x0,0x76,0x38,0xa4,0x70,0x0,0x0,0x0,0x0,0x76,0xde,0xcf,0x80, + 0x0,0x0,0x0,0x0,0x78,0x18,0x86,0x70,0x0,0x0,0x0,0x0,0x78,0xbe,0xb1,0x80, + 0x0,0x0,0x0,0x0,0x79,0xf8,0x68,0x70,0x0,0x0,0x0,0x0,0x7a,0x9e,0x93,0x80, + 0x0,0x0,0x0,0x0,0x7b,0xd8,0x4a,0x70,0x0,0x0,0x0,0x0,0x7c,0x7e,0x75,0x80, + 0x0,0x0,0x0,0x0,0x7d,0xb8,0x2c,0x70,0x0,0x0,0x0,0x0,0x7e,0x5e,0x57,0x80, + 0x0,0x0,0x0,0x0,0x7f,0x98,0xe,0x70,0x0,0x1,0x0,0x1,0x2,0x3,0x1,0x0, 0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0, 0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0, 0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0, @@ -676,117 +997,636 @@ static const unsigned char qt_resource_data[] = { 0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0, 0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0, 0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0, - 0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0xff,0xff,0xc7, - 0xc0,0x1,0x0,0xff,0xff,0xb9,0xb0,0x0,0x4,0xff,0xff,0xc7,0xc0,0x1,0x8,0xff, - 0xff,0xc7,0xc0,0x1,0xc,0x45,0x44,0x54,0x0,0x45,0x53,0x54,0x0,0x45,0x57,0x54, - 0x0,0x45,0x50,0x54,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0xa,0x45,0x53, - 0x54,0x35,0x45,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31, + 0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0xff,0xff,0xb9, + 0xb0,0x1,0x0,0xff,0xff,0xab,0xa0,0x0,0x4,0xff,0xff,0xb9,0xb0,0x1,0x8,0xff, + 0xff,0xb9,0xb0,0x1,0xc,0x43,0x44,0x54,0x0,0x43,0x53,0x54,0x0,0x43,0x57,0x54, + 0x0,0x43,0x50,0x54,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0xa,0x43,0x53, + 0x54,0x36,0x43,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31, 0x2e,0x31,0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/GB-Eire - 0x0,0x0,0xe,0x67, + // /home/konrad/src/smoke/tzone/zoneinfo/Egypt + 0x0,0x0,0x7,0xb4, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xf3,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x11,0x80,0x0,0x0,0x0,0x9b, - 0x26,0xad,0xa0,0x9b,0xd6,0x5,0x20,0x9c,0xcf,0x30,0xa0,0x9d,0xa4,0xc3,0xa0,0x9e, - 0x9c,0x9d,0xa0,0x9f,0x97,0x1a,0xa0,0xa0,0x85,0xba,0x20,0xa1,0x76,0xfc,0xa0,0xa2, - 0x65,0x9c,0x20,0xa3,0x7b,0xc8,0xa0,0xa4,0x4e,0xb8,0xa0,0xa5,0x3f,0xfb,0x20,0xa6, - 0x25,0x60,0x20,0xa7,0x27,0xc6,0x20,0xa8,0x2a,0x2c,0x20,0xa8,0xeb,0xf8,0xa0,0xaa, - 0x0,0xd3,0xa0,0xaa,0xd5,0x15,0x20,0xab,0xe9,0xf0,0x20,0xac,0xc7,0x6c,0x20,0xad, - 0xc9,0xd2,0x20,0xae,0xa7,0x4e,0x20,0xaf,0xa0,0x79,0xa0,0xb0,0x87,0x30,0x20,0xb1, - 0x92,0xd0,0xa0,0xb2,0x70,0x4c,0xa0,0xb3,0x72,0xb2,0xa0,0xb4,0x50,0x2e,0xa0,0xb5, - 0x49,0x5a,0x20,0xb6,0x30,0x10,0xa0,0xb7,0x32,0x76,0xa0,0xb8,0xf,0xf2,0xa0,0xb9, - 0x12,0x58,0xa0,0xb9,0xef,0xd4,0xa0,0xba,0xe9,0x0,0x20,0xbb,0xd8,0xf1,0x20,0xbc, - 0xdb,0x57,0x20,0xbd,0xb8,0xd3,0x20,0xbe,0xb1,0xfe,0xa0,0xbf,0x98,0xb5,0x20,0xc0, - 0x9b,0x1b,0x20,0xc1,0x78,0x97,0x20,0xc2,0x7a,0xfd,0x20,0xc3,0x58,0x79,0x20,0xc4, - 0x51,0xa4,0xa0,0xc5,0x38,0x5b,0x20,0xc6,0x3a,0xc1,0x20,0xc7,0x58,0xd6,0xa0,0xc7, - 0xda,0x9,0xa0,0xca,0x16,0x26,0x90,0xca,0x97,0x59,0x90,0xcb,0xd1,0x1e,0x90,0xcc, - 0x77,0x3b,0x90,0xcd,0xb1,0x0,0x90,0xce,0x60,0x58,0x10,0xcf,0x90,0xe2,0x90,0xd0, - 0x6e,0x5e,0x90,0xd1,0x72,0x16,0x10,0xd1,0xfb,0x32,0x10,0xd2,0x69,0xfe,0x20,0xd3, - 0x63,0x29,0xa0,0xd4,0x49,0xe0,0x20,0xd5,0x1e,0x21,0xa0,0xd5,0x42,0xfd,0x90,0xd5, - 0xdf,0xe0,0x10,0xd6,0x4e,0xac,0x20,0xd6,0xfe,0x3,0xa0,0xd8,0x2e,0x8e,0x20,0xd8, - 0xf9,0x95,0x20,0xda,0xe,0x70,0x20,0xda,0xeb,0xec,0x20,0xdb,0xe5,0x17,0xa0,0xdc, - 0xcb,0xce,0x20,0xdd,0xc4,0xf9,0xa0,0xde,0xb4,0xea,0xa0,0xdf,0xae,0x16,0x20,0xe0, - 0x94,0xcc,0xa0,0xe1,0x72,0x48,0xa0,0xe2,0x6b,0x74,0x20,0xe3,0x52,0x2a,0xa0,0xe4, - 0x54,0x90,0xa0,0xe5,0x32,0xc,0xa0,0xe6,0x3d,0xad,0x20,0xe7,0x1b,0x29,0x20,0xe8, - 0x14,0x54,0xa0,0xe8,0xfb,0xb,0x20,0xe9,0xfd,0x71,0x20,0xea,0xda,0xed,0x20,0xeb, - 0xdd,0x53,0x20,0xec,0xba,0xcf,0x20,0xed,0xb3,0xfa,0xa0,0xee,0x9a,0xb1,0x20,0xef, - 0x81,0x67,0xa0,0xf0,0x9f,0x7d,0x20,0xf1,0x61,0x49,0xa0,0xf2,0x7f,0x5f,0x20,0xf3, - 0x4a,0x66,0x20,0xf4,0x5f,0x41,0x20,0xf5,0x21,0xd,0xa0,0xf6,0x3f,0x23,0x20,0xf7, - 0x0,0xef,0xa0,0xf8,0x1f,0x5,0x20,0xf8,0xe0,0xd1,0xa0,0xf9,0xfe,0xe7,0x20,0xfa, - 0xc0,0xb3,0xa0,0xfb,0xe8,0x3,0xa0,0xfc,0x7b,0xab,0xa0,0xfd,0xc7,0xbb,0x70,0x3, - 0x70,0xc6,0x20,0x4,0x29,0x58,0x20,0x5,0x50,0xa8,0x20,0x6,0x9,0x3a,0x20,0x7, - 0x30,0x8a,0x20,0x7,0xe9,0x1c,0x20,0x9,0x10,0x6c,0x20,0x9,0xc8,0xfe,0x20,0xa, - 0xf0,0x4e,0x20,0xb,0xb2,0x1a,0xa0,0xc,0xd0,0x30,0x20,0xd,0x91,0xfc,0xa0,0xe, - 0xb0,0x12,0x20,0xf,0x71,0xde,0xa0,0x10,0x99,0x2e,0xa0,0x11,0x51,0xc0,0xa0,0x12, - 0x79,0x10,0xa0,0x13,0x31,0xa2,0xa0,0x14,0x58,0xf2,0xa0,0x15,0x23,0xeb,0x90,0x16, - 0x38,0xc6,0x90,0x17,0x3,0xcd,0x90,0x18,0x18,0xa8,0x90,0x18,0xe3,0xaf,0x90,0x19, - 0xf8,0x8a,0x90,0x1a,0xc3,0x91,0x90,0x1b,0xe1,0xa7,0x10,0x1c,0xac,0xae,0x10,0x1d, - 0xc1,0x89,0x10,0x1e,0x8c,0x90,0x10,0x1f,0xa1,0x6b,0x10,0x20,0x6c,0x72,0x10,0x21, - 0x81,0x4d,0x10,0x22,0x4c,0x54,0x10,0x23,0x61,0x2f,0x10,0x24,0x2c,0x36,0x10,0x25, - 0x4a,0x4b,0x90,0x26,0xc,0x18,0x10,0x27,0x2a,0x2d,0x90,0x27,0xf5,0x34,0x90,0x29, - 0xa,0xf,0x90,0x29,0xd5,0x16,0x90,0x2a,0xe9,0xf1,0x90,0x2b,0xb4,0xf8,0x90,0x2c, - 0xc9,0xd3,0x90,0x2d,0x94,0xda,0x90,0x2e,0xa9,0xb5,0x90,0x2f,0x74,0xbc,0x90,0x30, - 0x89,0x97,0x90,0x30,0xe7,0x24,0x0,0x31,0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33, - 0x3d,0xbb,0x10,0x34,0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36, - 0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a, - 0xbd,0x43,0x10,0x3b,0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e, - 0x86,0x41,0x90,0x3f,0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42, - 0x46,0x5,0x90,0x43,0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46, - 0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49, - 0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d, - 0x8e,0x8c,0x10,0x4e,0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51, - 0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55, - 0x17,0x4e,0x90,0x56,0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58, - 0xd7,0x12,0x90,0x59,0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c, - 0xa0,0x11,0x10,0x5d,0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60, - 0x5f,0xd5,0x10,0x61,0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64, - 0x1f,0x99,0x10,0x65,0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67, - 0xe8,0x97,0x90,0x68,0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b, - 0xa8,0x5b,0x90,0x6c,0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f, - 0x68,0x1f,0x90,0x70,0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73, - 0x31,0x1e,0x10,0x74,0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76, - 0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a, - 0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e, - 0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x7f,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0xc8, + 0x93,0xb4,0xe0,0xc8,0xfa,0x7b,0xd0,0xc9,0xfc,0xef,0xe0,0xca,0xc7,0xe8,0xd0,0xcb, + 0xcb,0xae,0x60,0xcc,0xdf,0x29,0xd0,0xcd,0xac,0xe1,0xe0,0xce,0xc6,0xf4,0xd0,0xcf, + 0x8f,0x66,0xe0,0xd0,0xa9,0x79,0xd0,0xd1,0x84,0x60,0xe0,0xd2,0x8a,0xad,0x50,0xe8, + 0x36,0x63,0x60,0xe8,0xf4,0x2d,0x50,0xea,0xb,0xb9,0x60,0xea,0xd5,0x60,0xd0,0xeb, + 0xec,0xfa,0xf0,0xec,0xb5,0x6d,0x0,0xed,0xcf,0x7f,0xf0,0xee,0x97,0xf2,0x0,0xef, + 0xb0,0xb3,0x70,0xf0,0x79,0x25,0x80,0xf1,0x91,0xe6,0xf0,0xf2,0x5a,0x59,0x0,0xf3, + 0x73,0x1a,0x70,0xf4,0x3b,0x8c,0x80,0xf5,0x55,0x9f,0x70,0xf6,0x1e,0x11,0x80,0xf7, + 0x36,0xd2,0xf0,0xf7,0xff,0x45,0x0,0xf9,0x18,0x6,0x70,0xf9,0xe1,0xca,0x0,0xfa, + 0xf9,0x39,0xf0,0xfb,0xc2,0xfd,0x80,0xfc,0xdb,0xbe,0xf0,0xfd,0xa5,0x82,0x80,0xfe, + 0xbc,0xf2,0x70,0xff,0x86,0xb6,0x0,0x0,0x9e,0x25,0xf0,0x1,0x67,0xe9,0x80,0x2, + 0x7f,0x59,0x70,0x3,0x49,0x1d,0x0,0x4,0x61,0xde,0x70,0x5,0x2b,0xa2,0x0,0x6, + 0x43,0x11,0xf0,0x7,0xc,0xd5,0x80,0x8,0x24,0x45,0x70,0x8,0xee,0x9,0x0,0xa, + 0x5,0x78,0xf0,0xa,0xcf,0x3c,0x80,0xb,0xe7,0xfd,0xf0,0xc,0xb1,0xc1,0x80,0xd, + 0xc9,0x31,0x70,0xe,0x92,0xf5,0x0,0xf,0xaa,0x64,0xf0,0x10,0x74,0x28,0x80,0x11, + 0x8b,0x98,0x70,0x12,0x55,0x5c,0x0,0x13,0x6e,0x1d,0x70,0x14,0x37,0xe1,0x0,0x15, + 0x4f,0x50,0xf0,0x16,0x19,0x14,0x80,0x17,0xa0,0x93,0xf0,0x17,0xfa,0x48,0x0,0x19, + 0x70,0xa3,0xf0,0x19,0xdb,0x7b,0x80,0x1a,0xf4,0x3c,0xf0,0x1b,0xbe,0x0,0x80,0x1c, + 0xd5,0x70,0x70,0x1d,0x9f,0x34,0x0,0x1e,0xb6,0xa3,0xf0,0x1f,0x80,0x67,0x80,0x20, + 0x97,0xd7,0x70,0x21,0x61,0x9b,0x0,0x22,0x7a,0x5c,0x70,0x23,0x44,0x20,0x0,0x24, + 0x62,0x27,0x70,0x25,0x25,0x53,0x80,0x26,0x3c,0xc3,0x70,0x27,0x6,0x87,0x0,0x28, + 0x1d,0xf6,0xf0,0x28,0xe7,0xba,0x80,0x2a,0x0,0x7b,0xf0,0x2a,0xca,0x3f,0x80,0x2b, + 0xe1,0xaf,0x70,0x2c,0xab,0x73,0x0,0x2d,0xc2,0xe2,0xf0,0x2e,0x8c,0xa6,0x80,0x2f, + 0xa0,0x13,0xe0,0x30,0x6b,0xc,0xd0,0x31,0x7f,0xf5,0xe0,0x32,0x4a,0xee,0xd0,0x33, + 0x5f,0xd7,0xe0,0x34,0x2a,0xd0,0xd0,0x35,0x3f,0xb9,0xe0,0x36,0xa,0xb2,0xd0,0x37, + 0x28,0xd6,0x60,0x37,0xf3,0xcf,0x50,0x39,0x8,0xb8,0x60,0x39,0xd3,0xb1,0x50,0x3a, + 0xe8,0x9a,0x60,0x3b,0xb3,0x93,0x50,0x3c,0xc8,0x7c,0x60,0x3d,0x93,0x75,0x50,0x3e, + 0xa8,0x5e,0x60,0x3f,0x73,0x57,0x50,0x40,0x91,0x7a,0xe0,0x41,0x5c,0x73,0xd0,0x42, + 0x71,0x5c,0xe0,0x43,0x3c,0x55,0xd0,0x44,0x51,0x3e,0xe0,0x45,0x12,0xfd,0x50,0x46, + 0x31,0x20,0xe0,0x46,0xe0,0x6a,0x50,0x48,0x11,0x2,0xe0,0x48,0xb7,0x11,0xd0,0x49, + 0xf0,0xe4,0xe0,0x4a,0x8d,0xb9,0x50,0x4b,0xda,0x1,0x60,0x4c,0x61,0xbd,0xd0,0x4c, + 0x89,0x58,0xe0,0x4c,0xa4,0xfa,0x50,0x53,0x75,0x38,0xe0,0x53,0xac,0x89,0xd0,0x53, + 0xda,0xbc,0x60,0x54,0x24,0x82,0x50,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3, - 0x1,0x3,0x1,0x2,0x1,0x2,0x1,0x3,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x4,0x6,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x7,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0xff,0xff,0xff,0xb5,0x0,0x0, - 0x0,0x0,0xe,0x10,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x1c,0x20, - 0x1,0xc,0x0,0x0,0xe,0x10,0x0,0x4,0x0,0x0,0xe,0x10,0x1,0x4,0x0,0x0, - 0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x42,0x53, - 0x54,0x0,0x47,0x4d,0x54,0x0,0x42,0x44,0x53,0x54,0x0,0x0,0x1,0x1,0x1,0x0, - 0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x54,0x5a,0x69,0x66,0x32, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf4,0x0, - 0x0,0x0,0x8,0x0,0x0,0x0,0x11,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff, - 0xff,0xff,0xff,0x1a,0x5d,0x9,0xcb,0xff,0xff,0xff,0xff,0x9b,0x26,0xad,0xa0,0xff, - 0xff,0xff,0xff,0x9b,0xd6,0x5,0x20,0xff,0xff,0xff,0xff,0x9c,0xcf,0x30,0xa0,0xff, - 0xff,0xff,0xff,0x9d,0xa4,0xc3,0xa0,0xff,0xff,0xff,0xff,0x9e,0x9c,0x9d,0xa0,0xff, - 0xff,0xff,0xff,0x9f,0x97,0x1a,0xa0,0xff,0xff,0xff,0xff,0xa0,0x85,0xba,0x20,0xff, - 0xff,0xff,0xff,0xa1,0x76,0xfc,0xa0,0xff,0xff,0xff,0xff,0xa2,0x65,0x9c,0x20,0xff, - 0xff,0xff,0xff,0xa3,0x7b,0xc8,0xa0,0xff,0xff,0xff,0xff,0xa4,0x4e,0xb8,0xa0,0xff, - 0xff,0xff,0xff,0xa5,0x3f,0xfb,0x20,0xff,0xff,0xff,0xff,0xa6,0x25,0x60,0x20,0xff, - 0xff,0xff,0xff,0xa7,0x27,0xc6,0x20,0xff,0xff,0xff,0xff,0xa8,0x2a,0x2c,0x20,0xff, - 0xff,0xff,0xff,0xa8,0xeb,0xf8,0xa0,0xff,0xff,0xff,0xff,0xaa,0x0,0xd3,0xa0,0xff, - 0xff,0xff,0xff,0xaa,0xd5,0x15,0x20,0xff,0xff,0xff,0xff,0xab,0xe9,0xf0,0x20,0xff, - 0xff,0xff,0xff,0xac,0xc7,0x6c,0x20,0xff,0xff,0xff,0xff,0xad,0xc9,0xd2,0x20,0xff, - 0xff,0xff,0xff,0xae,0xa7,0x4e,0x20,0xff,0xff,0xff,0xff,0xaf,0xa0,0x79,0xa0,0xff, - 0xff,0xff,0xff,0xb0,0x87,0x30,0x20,0xff,0xff,0xff,0xff,0xb1,0x92,0xd0,0xa0,0xff, - 0xff,0xff,0xff,0xb2,0x70,0x4c,0xa0,0xff,0xff,0xff,0xff,0xb3,0x72,0xb2,0xa0,0xff, - 0xff,0xff,0xff,0xb4,0x50,0x2e,0xa0,0xff,0xff,0xff,0xff,0xb5,0x49,0x5a,0x20,0xff, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x0,0x0,0x1d,0x55,0x0,0x0,0x0,0x0,0x2a,0x30, + 0x1,0x4,0x0,0x0,0x1c,0x20,0x0,0x9,0x0,0x0,0x2a,0x30,0x1,0x4,0x4c,0x4d, + 0x54,0x0,0x45,0x45,0x53,0x54,0x0,0x45,0x45,0x54,0x0,0x0,0x0,0x0,0x1,0x0, + 0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0xd,0xf8, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x7d,0xbd,0x4d,0xab,0xff, + 0xff,0xff,0xff,0xc8,0x93,0xb4,0xe0,0xff,0xff,0xff,0xff,0xc8,0xfa,0x7b,0xd0,0xff, + 0xff,0xff,0xff,0xc9,0xfc,0xef,0xe0,0xff,0xff,0xff,0xff,0xca,0xc7,0xe8,0xd0,0xff, + 0xff,0xff,0xff,0xcb,0xcb,0xae,0x60,0xff,0xff,0xff,0xff,0xcc,0xdf,0x29,0xd0,0xff, + 0xff,0xff,0xff,0xcd,0xac,0xe1,0xe0,0xff,0xff,0xff,0xff,0xce,0xc6,0xf4,0xd0,0xff, + 0xff,0xff,0xff,0xcf,0x8f,0x66,0xe0,0xff,0xff,0xff,0xff,0xd0,0xa9,0x79,0xd0,0xff, + 0xff,0xff,0xff,0xd1,0x84,0x60,0xe0,0xff,0xff,0xff,0xff,0xd2,0x8a,0xad,0x50,0xff, + 0xff,0xff,0xff,0xe8,0x36,0x63,0x60,0xff,0xff,0xff,0xff,0xe8,0xf4,0x2d,0x50,0xff, + 0xff,0xff,0xff,0xea,0xb,0xb9,0x60,0xff,0xff,0xff,0xff,0xea,0xd5,0x60,0xd0,0xff, + 0xff,0xff,0xff,0xeb,0xec,0xfa,0xf0,0xff,0xff,0xff,0xff,0xec,0xb5,0x6d,0x0,0xff, + 0xff,0xff,0xff,0xed,0xcf,0x7f,0xf0,0xff,0xff,0xff,0xff,0xee,0x97,0xf2,0x0,0xff, + 0xff,0xff,0xff,0xef,0xb0,0xb3,0x70,0xff,0xff,0xff,0xff,0xf0,0x79,0x25,0x80,0xff, + 0xff,0xff,0xff,0xf1,0x91,0xe6,0xf0,0xff,0xff,0xff,0xff,0xf2,0x5a,0x59,0x0,0xff, + 0xff,0xff,0xff,0xf3,0x73,0x1a,0x70,0xff,0xff,0xff,0xff,0xf4,0x3b,0x8c,0x80,0xff, + 0xff,0xff,0xff,0xf5,0x55,0x9f,0x70,0xff,0xff,0xff,0xff,0xf6,0x1e,0x11,0x80,0xff, + 0xff,0xff,0xff,0xf7,0x36,0xd2,0xf0,0xff,0xff,0xff,0xff,0xf7,0xff,0x45,0x0,0xff, + 0xff,0xff,0xff,0xf9,0x18,0x6,0x70,0xff,0xff,0xff,0xff,0xf9,0xe1,0xca,0x0,0xff, + 0xff,0xff,0xff,0xfa,0xf9,0x39,0xf0,0xff,0xff,0xff,0xff,0xfb,0xc2,0xfd,0x80,0xff, + 0xff,0xff,0xff,0xfc,0xdb,0xbe,0xf0,0xff,0xff,0xff,0xff,0xfd,0xa5,0x82,0x80,0xff, + 0xff,0xff,0xff,0xfe,0xbc,0xf2,0x70,0xff,0xff,0xff,0xff,0xff,0x86,0xb6,0x0,0x0, + 0x0,0x0,0x0,0x0,0x9e,0x25,0xf0,0x0,0x0,0x0,0x0,0x1,0x67,0xe9,0x80,0x0, + 0x0,0x0,0x0,0x2,0x7f,0x59,0x70,0x0,0x0,0x0,0x0,0x3,0x49,0x1d,0x0,0x0, + 0x0,0x0,0x0,0x4,0x61,0xde,0x70,0x0,0x0,0x0,0x0,0x5,0x2b,0xa2,0x0,0x0, + 0x0,0x0,0x0,0x6,0x43,0x11,0xf0,0x0,0x0,0x0,0x0,0x7,0xc,0xd5,0x80,0x0, + 0x0,0x0,0x0,0x8,0x24,0x45,0x70,0x0,0x0,0x0,0x0,0x8,0xee,0x9,0x0,0x0, + 0x0,0x0,0x0,0xa,0x5,0x78,0xf0,0x0,0x0,0x0,0x0,0xa,0xcf,0x3c,0x80,0x0, + 0x0,0x0,0x0,0xb,0xe7,0xfd,0xf0,0x0,0x0,0x0,0x0,0xc,0xb1,0xc1,0x80,0x0, + 0x0,0x0,0x0,0xd,0xc9,0x31,0x70,0x0,0x0,0x0,0x0,0xe,0x92,0xf5,0x0,0x0, + 0x0,0x0,0x0,0xf,0xaa,0x64,0xf0,0x0,0x0,0x0,0x0,0x10,0x74,0x28,0x80,0x0, + 0x0,0x0,0x0,0x11,0x8b,0x98,0x70,0x0,0x0,0x0,0x0,0x12,0x55,0x5c,0x0,0x0, + 0x0,0x0,0x0,0x13,0x6e,0x1d,0x70,0x0,0x0,0x0,0x0,0x14,0x37,0xe1,0x0,0x0, + 0x0,0x0,0x0,0x15,0x4f,0x50,0xf0,0x0,0x0,0x0,0x0,0x16,0x19,0x14,0x80,0x0, + 0x0,0x0,0x0,0x17,0xa0,0x93,0xf0,0x0,0x0,0x0,0x0,0x17,0xfa,0x48,0x0,0x0, + 0x0,0x0,0x0,0x19,0x70,0xa3,0xf0,0x0,0x0,0x0,0x0,0x19,0xdb,0x7b,0x80,0x0, + 0x0,0x0,0x0,0x1a,0xf4,0x3c,0xf0,0x0,0x0,0x0,0x0,0x1b,0xbe,0x0,0x80,0x0, + 0x0,0x0,0x0,0x1c,0xd5,0x70,0x70,0x0,0x0,0x0,0x0,0x1d,0x9f,0x34,0x0,0x0, + 0x0,0x0,0x0,0x1e,0xb6,0xa3,0xf0,0x0,0x0,0x0,0x0,0x1f,0x80,0x67,0x80,0x0, + 0x0,0x0,0x0,0x20,0x97,0xd7,0x70,0x0,0x0,0x0,0x0,0x21,0x61,0x9b,0x0,0x0, + 0x0,0x0,0x0,0x22,0x7a,0x5c,0x70,0x0,0x0,0x0,0x0,0x23,0x44,0x20,0x0,0x0, + 0x0,0x0,0x0,0x24,0x62,0x27,0x70,0x0,0x0,0x0,0x0,0x25,0x25,0x53,0x80,0x0, + 0x0,0x0,0x0,0x26,0x3c,0xc3,0x70,0x0,0x0,0x0,0x0,0x27,0x6,0x87,0x0,0x0, + 0x0,0x0,0x0,0x28,0x1d,0xf6,0xf0,0x0,0x0,0x0,0x0,0x28,0xe7,0xba,0x80,0x0, + 0x0,0x0,0x0,0x2a,0x0,0x7b,0xf0,0x0,0x0,0x0,0x0,0x2a,0xca,0x3f,0x80,0x0, + 0x0,0x0,0x0,0x2b,0xe1,0xaf,0x70,0x0,0x0,0x0,0x0,0x2c,0xab,0x73,0x0,0x0, + 0x0,0x0,0x0,0x2d,0xc2,0xe2,0xf0,0x0,0x0,0x0,0x0,0x2e,0x8c,0xa6,0x80,0x0, + 0x0,0x0,0x0,0x2f,0xa0,0x13,0xe0,0x0,0x0,0x0,0x0,0x30,0x6b,0xc,0xd0,0x0, + 0x0,0x0,0x0,0x31,0x7f,0xf5,0xe0,0x0,0x0,0x0,0x0,0x32,0x4a,0xee,0xd0,0x0, + 0x0,0x0,0x0,0x33,0x5f,0xd7,0xe0,0x0,0x0,0x0,0x0,0x34,0x2a,0xd0,0xd0,0x0, + 0x0,0x0,0x0,0x35,0x3f,0xb9,0xe0,0x0,0x0,0x0,0x0,0x36,0xa,0xb2,0xd0,0x0, + 0x0,0x0,0x0,0x37,0x28,0xd6,0x60,0x0,0x0,0x0,0x0,0x37,0xf3,0xcf,0x50,0x0, + 0x0,0x0,0x0,0x39,0x8,0xb8,0x60,0x0,0x0,0x0,0x0,0x39,0xd3,0xb1,0x50,0x0, + 0x0,0x0,0x0,0x3a,0xe8,0x9a,0x60,0x0,0x0,0x0,0x0,0x3b,0xb3,0x93,0x50,0x0, + 0x0,0x0,0x0,0x3c,0xc8,0x7c,0x60,0x0,0x0,0x0,0x0,0x3d,0x93,0x75,0x50,0x0, + 0x0,0x0,0x0,0x3e,0xa8,0x5e,0x60,0x0,0x0,0x0,0x0,0x3f,0x73,0x57,0x50,0x0, + 0x0,0x0,0x0,0x40,0x91,0x7a,0xe0,0x0,0x0,0x0,0x0,0x41,0x5c,0x73,0xd0,0x0, + 0x0,0x0,0x0,0x42,0x71,0x5c,0xe0,0x0,0x0,0x0,0x0,0x43,0x3c,0x55,0xd0,0x0, + 0x0,0x0,0x0,0x44,0x51,0x3e,0xe0,0x0,0x0,0x0,0x0,0x45,0x12,0xfd,0x50,0x0, + 0x0,0x0,0x0,0x46,0x31,0x20,0xe0,0x0,0x0,0x0,0x0,0x46,0xe0,0x6a,0x50,0x0, + 0x0,0x0,0x0,0x48,0x11,0x2,0xe0,0x0,0x0,0x0,0x0,0x48,0xb7,0x11,0xd0,0x0, + 0x0,0x0,0x0,0x49,0xf0,0xe4,0xe0,0x0,0x0,0x0,0x0,0x4a,0x8d,0xb9,0x50,0x0, + 0x0,0x0,0x0,0x4b,0xda,0x1,0x60,0x0,0x0,0x0,0x0,0x4c,0x61,0xbd,0xd0,0x0, + 0x0,0x0,0x0,0x4c,0x89,0x58,0xe0,0x0,0x0,0x0,0x0,0x4c,0xa4,0xfa,0x50,0x0, + 0x0,0x0,0x0,0x53,0x75,0x38,0xe0,0x0,0x0,0x0,0x0,0x53,0xac,0x89,0xd0,0x0, + 0x0,0x0,0x0,0x53,0xda,0xbc,0x60,0x0,0x0,0x0,0x0,0x54,0x24,0x82,0x50,0x0, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x0, + 0x0,0x1d,0x55,0x0,0x0,0x0,0x0,0x2a,0x30,0x1,0x4,0x0,0x0,0x1c,0x20,0x0, + 0x9,0x0,0x0,0x2a,0x30,0x1,0x4,0x4c,0x4d,0x54,0x0,0x45,0x45,0x53,0x54,0x0, + 0x45,0x45,0x54,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0xa,0x45,0x45,0x54, + 0x2d,0x32,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/iso3166.tab + 0x0,0x0,0x11,0x5d, + 0x23, + 0x20,0x49,0x53,0x4f,0x20,0x33,0x31,0x36,0x36,0x20,0x61,0x6c,0x70,0x68,0x61,0x2d, + 0x32,0x20,0x63,0x6f,0x75,0x6e,0x74,0x72,0x79,0x20,0x63,0x6f,0x64,0x65,0x73,0xa, + 0x23,0xa,0x23,0x20,0x54,0x68,0x69,0x73,0x20,0x66,0x69,0x6c,0x65,0x20,0x69,0x73, + 0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x70,0x75,0x62,0x6c,0x69,0x63,0x20,0x64, + 0x6f,0x6d,0x61,0x69,0x6e,0x2c,0x20,0x73,0x6f,0x20,0x63,0x6c,0x61,0x72,0x69,0x66, + 0x69,0x65,0x64,0x20,0x61,0x73,0x20,0x6f,0x66,0xa,0x23,0x20,0x32,0x30,0x30,0x39, + 0x2d,0x30,0x35,0x2d,0x31,0x37,0x20,0x62,0x79,0x20,0x41,0x72,0x74,0x68,0x75,0x72, + 0x20,0x44,0x61,0x76,0x69,0x64,0x20,0x4f,0x6c,0x73,0x6f,0x6e,0x2e,0xa,0x23,0xa, + 0x23,0x20,0x46,0x72,0x6f,0x6d,0x20,0x50,0x61,0x75,0x6c,0x20,0x45,0x67,0x67,0x65, + 0x72,0x74,0x20,0x28,0x32,0x30,0x31,0x35,0x2d,0x30,0x35,0x2d,0x30,0x32,0x29,0x3a, + 0xa,0x23,0x20,0x54,0x68,0x69,0x73,0x20,0x66,0x69,0x6c,0x65,0x20,0x63,0x6f,0x6e, + 0x74,0x61,0x69,0x6e,0x73,0x20,0x61,0x20,0x74,0x61,0x62,0x6c,0x65,0x20,0x6f,0x66, + 0x20,0x74,0x77,0x6f,0x2d,0x6c,0x65,0x74,0x74,0x65,0x72,0x20,0x63,0x6f,0x75,0x6e, + 0x74,0x72,0x79,0x20,0x63,0x6f,0x64,0x65,0x73,0x2e,0x20,0x20,0x43,0x6f,0x6c,0x75, + 0x6d,0x6e,0x73,0x20,0x61,0x72,0x65,0xa,0x23,0x20,0x73,0x65,0x70,0x61,0x72,0x61, + 0x74,0x65,0x64,0x20,0x62,0x79,0x20,0x61,0x20,0x73,0x69,0x6e,0x67,0x6c,0x65,0x20, + 0x74,0x61,0x62,0x2e,0x20,0x20,0x4c,0x69,0x6e,0x65,0x73,0x20,0x62,0x65,0x67,0x69, + 0x6e,0x6e,0x69,0x6e,0x67,0x20,0x77,0x69,0x74,0x68,0x20,0x27,0x23,0x27,0x20,0x61, + 0x72,0x65,0x20,0x63,0x6f,0x6d,0x6d,0x65,0x6e,0x74,0x73,0x2e,0xa,0x23,0x20,0x41, + 0x6c,0x6c,0x20,0x74,0x65,0x78,0x74,0x20,0x75,0x73,0x65,0x73,0x20,0x55,0x54,0x46, + 0x2d,0x38,0x20,0x65,0x6e,0x63,0x6f,0x64,0x69,0x6e,0x67,0x2e,0x20,0x20,0x54,0x68, + 0x65,0x20,0x63,0x6f,0x6c,0x75,0x6d,0x6e,0x73,0x20,0x6f,0x66,0x20,0x74,0x68,0x65, + 0x20,0x74,0x61,0x62,0x6c,0x65,0x20,0x61,0x72,0x65,0x20,0x61,0x73,0x20,0x66,0x6f, + 0x6c,0x6c,0x6f,0x77,0x73,0x3a,0xa,0x23,0xa,0x23,0x20,0x31,0x2e,0x20,0x20,0x49, + 0x53,0x4f,0x20,0x33,0x31,0x36,0x36,0x2d,0x31,0x20,0x61,0x6c,0x70,0x68,0x61,0x2d, + 0x32,0x20,0x63,0x6f,0x75,0x6e,0x74,0x72,0x79,0x20,0x63,0x6f,0x64,0x65,0x2c,0x20, + 0x63,0x75,0x72,0x72,0x65,0x6e,0x74,0x20,0x61,0x73,0x20,0x6f,0x66,0xa,0x23,0x20, + 0x20,0x20,0x20,0x20,0x49,0x53,0x4f,0x20,0x33,0x31,0x36,0x36,0x2d,0x31,0x20,0x4e, + 0x39,0x30,0x35,0x20,0x28,0x32,0x30,0x31,0x36,0x2d,0x31,0x31,0x2d,0x31,0x35,0x29, + 0x2e,0x20,0x20,0x53,0x65,0x65,0x3a,0x20,0x55,0x70,0x64,0x61,0x74,0x65,0x73,0x20, + 0x6f,0x6e,0x20,0x49,0x53,0x4f,0x20,0x33,0x31,0x36,0x36,0x2d,0x31,0xa,0x23,0x20, + 0x20,0x20,0x20,0x20,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x69,0x73,0x6f,0x74,0x63, + 0x2e,0x69,0x73,0x6f,0x2e,0x6f,0x72,0x67,0x2f,0x6c,0x69,0x76,0x65,0x6c,0x69,0x6e, + 0x6b,0x2f,0x6c,0x69,0x76,0x65,0x6c,0x69,0x6e,0x6b,0x2f,0x4f,0x70,0x65,0x6e,0x2f, + 0x31,0x36,0x39,0x34,0x34,0x32,0x35,0x37,0xa,0x23,0x20,0x32,0x2e,0x20,0x20,0x54, + 0x68,0x65,0x20,0x75,0x73,0x75,0x61,0x6c,0x20,0x45,0x6e,0x67,0x6c,0x69,0x73,0x68, + 0x20,0x6e,0x61,0x6d,0x65,0x20,0x66,0x6f,0x72,0x20,0x74,0x68,0x65,0x20,0x63,0x6f, + 0x64,0x65,0x64,0x20,0x72,0x65,0x67,0x69,0x6f,0x6e,0x2c,0xa,0x23,0x20,0x20,0x20, + 0x20,0x20,0x63,0x68,0x6f,0x73,0x65,0x6e,0x20,0x73,0x6f,0x20,0x74,0x68,0x61,0x74, + 0x20,0x61,0x6c,0x70,0x68,0x61,0x62,0x65,0x74,0x69,0x63,0x20,0x73,0x6f,0x72,0x74, + 0x69,0x6e,0x67,0x20,0x6f,0x66,0x20,0x73,0x75,0x62,0x73,0x65,0x74,0x73,0x20,0x70, + 0x72,0x6f,0x64,0x75,0x63,0x65,0x73,0x20,0x68,0x65,0x6c,0x70,0x66,0x75,0x6c,0x20, + 0x6c,0x69,0x73,0x74,0x73,0x2e,0xa,0x23,0x20,0x20,0x20,0x20,0x20,0x54,0x68,0x69, + 0x73,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x74,0x68,0x65,0x20,0x73,0x61,0x6d, + 0x65,0x20,0x61,0x73,0x20,0x74,0x68,0x65,0x20,0x45,0x6e,0x67,0x6c,0x69,0x73,0x68, + 0x20,0x6e,0x61,0x6d,0x65,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x49,0x53,0x4f, + 0x20,0x33,0x31,0x36,0x36,0x20,0x74,0x61,0x62,0x6c,0x65,0x73,0x2e,0xa,0x23,0xa, + 0x23,0x20,0x54,0x68,0x65,0x20,0x74,0x61,0x62,0x6c,0x65,0x20,0x69,0x73,0x20,0x73, + 0x6f,0x72,0x74,0x65,0x64,0x20,0x62,0x79,0x20,0x63,0x6f,0x75,0x6e,0x74,0x72,0x79, + 0x20,0x63,0x6f,0x64,0x65,0x2e,0xa,0x23,0xa,0x23,0x20,0x54,0x68,0x69,0x73,0x20, + 0x74,0x61,0x62,0x6c,0x65,0x20,0x69,0x73,0x20,0x69,0x6e,0x74,0x65,0x6e,0x64,0x65, + 0x64,0x20,0x61,0x73,0x20,0x61,0x6e,0x20,0x61,0x69,0x64,0x20,0x66,0x6f,0x72,0x20, + 0x75,0x73,0x65,0x72,0x73,0x2c,0x20,0x74,0x6f,0x20,0x68,0x65,0x6c,0x70,0x20,0x74, + 0x68,0x65,0x6d,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x20,0x74,0x69,0x6d,0x65,0xa, + 0x23,0x20,0x7a,0x6f,0x6e,0x65,0x20,0x64,0x61,0x74,0x61,0x20,0x61,0x70,0x70,0x72, + 0x6f,0x70,0x72,0x69,0x61,0x74,0x65,0x20,0x66,0x6f,0x72,0x20,0x74,0x68,0x65,0x69, + 0x72,0x20,0x70,0x72,0x61,0x63,0x74,0x69,0x63,0x61,0x6c,0x20,0x6e,0x65,0x65,0x64, + 0x73,0x2e,0x20,0x20,0x49,0x74,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0x20,0x69,0x6e, + 0x74,0x65,0x6e,0x64,0x65,0x64,0xa,0x23,0x20,0x74,0x6f,0x20,0x74,0x61,0x6b,0x65, + 0x20,0x6f,0x72,0x20,0x65,0x6e,0x64,0x6f,0x72,0x73,0x65,0x20,0x61,0x6e,0x79,0x20, + 0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x20,0x6f,0x6e,0x20,0x6c,0x65,0x67,0x61, + 0x6c,0x20,0x6f,0x72,0x20,0x74,0x65,0x72,0x72,0x69,0x74,0x6f,0x72,0x69,0x61,0x6c, + 0x20,0x63,0x6c,0x61,0x69,0x6d,0x73,0x2e,0xa,0x23,0xa,0x23,0x63,0x6f,0x75,0x6e, + 0x74,0x72,0x79,0x2d,0xa,0x23,0x63,0x6f,0x64,0x65,0x9,0x6e,0x61,0x6d,0x65,0x20, + 0x6f,0x66,0x20,0x63,0x6f,0x75,0x6e,0x74,0x72,0x79,0x2c,0x20,0x74,0x65,0x72,0x72, + 0x69,0x74,0x6f,0x72,0x79,0x2c,0x20,0x61,0x72,0x65,0x61,0x2c,0x20,0x6f,0x72,0x20, + 0x73,0x75,0x62,0x64,0x69,0x76,0x69,0x73,0x69,0x6f,0x6e,0xa,0x41,0x44,0x9,0x41, + 0x6e,0x64,0x6f,0x72,0x72,0x61,0xa,0x41,0x45,0x9,0x55,0x6e,0x69,0x74,0x65,0x64, + 0x20,0x41,0x72,0x61,0x62,0x20,0x45,0x6d,0x69,0x72,0x61,0x74,0x65,0x73,0xa,0x41, + 0x46,0x9,0x41,0x66,0x67,0x68,0x61,0x6e,0x69,0x73,0x74,0x61,0x6e,0xa,0x41,0x47, + 0x9,0x41,0x6e,0x74,0x69,0x67,0x75,0x61,0x20,0x26,0x20,0x42,0x61,0x72,0x62,0x75, + 0x64,0x61,0xa,0x41,0x49,0x9,0x41,0x6e,0x67,0x75,0x69,0x6c,0x6c,0x61,0xa,0x41, + 0x4c,0x9,0x41,0x6c,0x62,0x61,0x6e,0x69,0x61,0xa,0x41,0x4d,0x9,0x41,0x72,0x6d, + 0x65,0x6e,0x69,0x61,0xa,0x41,0x4f,0x9,0x41,0x6e,0x67,0x6f,0x6c,0x61,0xa,0x41, + 0x51,0x9,0x41,0x6e,0x74,0x61,0x72,0x63,0x74,0x69,0x63,0x61,0xa,0x41,0x52,0x9, + 0x41,0x72,0x67,0x65,0x6e,0x74,0x69,0x6e,0x61,0xa,0x41,0x53,0x9,0x53,0x61,0x6d, + 0x6f,0x61,0x20,0x28,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x6e,0x29,0xa,0x41,0x54, + 0x9,0x41,0x75,0x73,0x74,0x72,0x69,0x61,0xa,0x41,0x55,0x9,0x41,0x75,0x73,0x74, + 0x72,0x61,0x6c,0x69,0x61,0xa,0x41,0x57,0x9,0x41,0x72,0x75,0x62,0x61,0xa,0x41, + 0x58,0x9,0xc3,0x85,0x6c,0x61,0x6e,0x64,0x20,0x49,0x73,0x6c,0x61,0x6e,0x64,0x73, + 0xa,0x41,0x5a,0x9,0x41,0x7a,0x65,0x72,0x62,0x61,0x69,0x6a,0x61,0x6e,0xa,0x42, + 0x41,0x9,0x42,0x6f,0x73,0x6e,0x69,0x61,0x20,0x26,0x20,0x48,0x65,0x72,0x7a,0x65, + 0x67,0x6f,0x76,0x69,0x6e,0x61,0xa,0x42,0x42,0x9,0x42,0x61,0x72,0x62,0x61,0x64, + 0x6f,0x73,0xa,0x42,0x44,0x9,0x42,0x61,0x6e,0x67,0x6c,0x61,0x64,0x65,0x73,0x68, + 0xa,0x42,0x45,0x9,0x42,0x65,0x6c,0x67,0x69,0x75,0x6d,0xa,0x42,0x46,0x9,0x42, + 0x75,0x72,0x6b,0x69,0x6e,0x61,0x20,0x46,0x61,0x73,0x6f,0xa,0x42,0x47,0x9,0x42, + 0x75,0x6c,0x67,0x61,0x72,0x69,0x61,0xa,0x42,0x48,0x9,0x42,0x61,0x68,0x72,0x61, + 0x69,0x6e,0xa,0x42,0x49,0x9,0x42,0x75,0x72,0x75,0x6e,0x64,0x69,0xa,0x42,0x4a, + 0x9,0x42,0x65,0x6e,0x69,0x6e,0xa,0x42,0x4c,0x9,0x53,0x74,0x20,0x42,0x61,0x72, + 0x74,0x68,0x65,0x6c,0x65,0x6d,0x79,0xa,0x42,0x4d,0x9,0x42,0x65,0x72,0x6d,0x75, + 0x64,0x61,0xa,0x42,0x4e,0x9,0x42,0x72,0x75,0x6e,0x65,0x69,0xa,0x42,0x4f,0x9, + 0x42,0x6f,0x6c,0x69,0x76,0x69,0x61,0xa,0x42,0x51,0x9,0x43,0x61,0x72,0x69,0x62, + 0x62,0x65,0x61,0x6e,0x20,0x4e,0x4c,0xa,0x42,0x52,0x9,0x42,0x72,0x61,0x7a,0x69, + 0x6c,0xa,0x42,0x53,0x9,0x42,0x61,0x68,0x61,0x6d,0x61,0x73,0xa,0x42,0x54,0x9, + 0x42,0x68,0x75,0x74,0x61,0x6e,0xa,0x42,0x56,0x9,0x42,0x6f,0x75,0x76,0x65,0x74, + 0x20,0x49,0x73,0x6c,0x61,0x6e,0x64,0xa,0x42,0x57,0x9,0x42,0x6f,0x74,0x73,0x77, + 0x61,0x6e,0x61,0xa,0x42,0x59,0x9,0x42,0x65,0x6c,0x61,0x72,0x75,0x73,0xa,0x42, + 0x5a,0x9,0x42,0x65,0x6c,0x69,0x7a,0x65,0xa,0x43,0x41,0x9,0x43,0x61,0x6e,0x61, + 0x64,0x61,0xa,0x43,0x43,0x9,0x43,0x6f,0x63,0x6f,0x73,0x20,0x28,0x4b,0x65,0x65, + 0x6c,0x69,0x6e,0x67,0x29,0x20,0x49,0x73,0x6c,0x61,0x6e,0x64,0x73,0xa,0x43,0x44, + 0x9,0x43,0x6f,0x6e,0x67,0x6f,0x20,0x28,0x44,0x65,0x6d,0x2e,0x20,0x52,0x65,0x70, + 0x2e,0x29,0xa,0x43,0x46,0x9,0x43,0x65,0x6e,0x74,0x72,0x61,0x6c,0x20,0x41,0x66, + 0x72,0x69,0x63,0x61,0x6e,0x20,0x52,0x65,0x70,0x2e,0xa,0x43,0x47,0x9,0x43,0x6f, + 0x6e,0x67,0x6f,0x20,0x28,0x52,0x65,0x70,0x2e,0x29,0xa,0x43,0x48,0x9,0x53,0x77, + 0x69,0x74,0x7a,0x65,0x72,0x6c,0x61,0x6e,0x64,0xa,0x43,0x49,0x9,0x43,0xc3,0xb4, + 0x74,0x65,0x20,0x64,0x27,0x49,0x76,0x6f,0x69,0x72,0x65,0xa,0x43,0x4b,0x9,0x43, + 0x6f,0x6f,0x6b,0x20,0x49,0x73,0x6c,0x61,0x6e,0x64,0x73,0xa,0x43,0x4c,0x9,0x43, + 0x68,0x69,0x6c,0x65,0xa,0x43,0x4d,0x9,0x43,0x61,0x6d,0x65,0x72,0x6f,0x6f,0x6e, + 0xa,0x43,0x4e,0x9,0x43,0x68,0x69,0x6e,0x61,0xa,0x43,0x4f,0x9,0x43,0x6f,0x6c, + 0x6f,0x6d,0x62,0x69,0x61,0xa,0x43,0x52,0x9,0x43,0x6f,0x73,0x74,0x61,0x20,0x52, + 0x69,0x63,0x61,0xa,0x43,0x55,0x9,0x43,0x75,0x62,0x61,0xa,0x43,0x56,0x9,0x43, + 0x61,0x70,0x65,0x20,0x56,0x65,0x72,0x64,0x65,0xa,0x43,0x57,0x9,0x43,0x75,0x72, + 0x61,0xc3,0xa7,0x61,0x6f,0xa,0x43,0x58,0x9,0x43,0x68,0x72,0x69,0x73,0x74,0x6d, + 0x61,0x73,0x20,0x49,0x73,0x6c,0x61,0x6e,0x64,0xa,0x43,0x59,0x9,0x43,0x79,0x70, + 0x72,0x75,0x73,0xa,0x43,0x5a,0x9,0x43,0x7a,0x65,0x63,0x68,0x20,0x52,0x65,0x70, + 0x75,0x62,0x6c,0x69,0x63,0xa,0x44,0x45,0x9,0x47,0x65,0x72,0x6d,0x61,0x6e,0x79, + 0xa,0x44,0x4a,0x9,0x44,0x6a,0x69,0x62,0x6f,0x75,0x74,0x69,0xa,0x44,0x4b,0x9, + 0x44,0x65,0x6e,0x6d,0x61,0x72,0x6b,0xa,0x44,0x4d,0x9,0x44,0x6f,0x6d,0x69,0x6e, + 0x69,0x63,0x61,0xa,0x44,0x4f,0x9,0x44,0x6f,0x6d,0x69,0x6e,0x69,0x63,0x61,0x6e, + 0x20,0x52,0x65,0x70,0x75,0x62,0x6c,0x69,0x63,0xa,0x44,0x5a,0x9,0x41,0x6c,0x67, + 0x65,0x72,0x69,0x61,0xa,0x45,0x43,0x9,0x45,0x63,0x75,0x61,0x64,0x6f,0x72,0xa, + 0x45,0x45,0x9,0x45,0x73,0x74,0x6f,0x6e,0x69,0x61,0xa,0x45,0x47,0x9,0x45,0x67, + 0x79,0x70,0x74,0xa,0x45,0x48,0x9,0x57,0x65,0x73,0x74,0x65,0x72,0x6e,0x20,0x53, + 0x61,0x68,0x61,0x72,0x61,0xa,0x45,0x52,0x9,0x45,0x72,0x69,0x74,0x72,0x65,0x61, + 0xa,0x45,0x53,0x9,0x53,0x70,0x61,0x69,0x6e,0xa,0x45,0x54,0x9,0x45,0x74,0x68, + 0x69,0x6f,0x70,0x69,0x61,0xa,0x46,0x49,0x9,0x46,0x69,0x6e,0x6c,0x61,0x6e,0x64, + 0xa,0x46,0x4a,0x9,0x46,0x69,0x6a,0x69,0xa,0x46,0x4b,0x9,0x46,0x61,0x6c,0x6b, + 0x6c,0x61,0x6e,0x64,0x20,0x49,0x73,0x6c,0x61,0x6e,0x64,0x73,0xa,0x46,0x4d,0x9, + 0x4d,0x69,0x63,0x72,0x6f,0x6e,0x65,0x73,0x69,0x61,0xa,0x46,0x4f,0x9,0x46,0x61, + 0x72,0x6f,0x65,0x20,0x49,0x73,0x6c,0x61,0x6e,0x64,0x73,0xa,0x46,0x52,0x9,0x46, + 0x72,0x61,0x6e,0x63,0x65,0xa,0x47,0x41,0x9,0x47,0x61,0x62,0x6f,0x6e,0xa,0x47, + 0x42,0x9,0x42,0x72,0x69,0x74,0x61,0x69,0x6e,0x20,0x28,0x55,0x4b,0x29,0xa,0x47, + 0x44,0x9,0x47,0x72,0x65,0x6e,0x61,0x64,0x61,0xa,0x47,0x45,0x9,0x47,0x65,0x6f, + 0x72,0x67,0x69,0x61,0xa,0x47,0x46,0x9,0x46,0x72,0x65,0x6e,0x63,0x68,0x20,0x47, + 0x75,0x69,0x61,0x6e,0x61,0xa,0x47,0x47,0x9,0x47,0x75,0x65,0x72,0x6e,0x73,0x65, + 0x79,0xa,0x47,0x48,0x9,0x47,0x68,0x61,0x6e,0x61,0xa,0x47,0x49,0x9,0x47,0x69, + 0x62,0x72,0x61,0x6c,0x74,0x61,0x72,0xa,0x47,0x4c,0x9,0x47,0x72,0x65,0x65,0x6e, + 0x6c,0x61,0x6e,0x64,0xa,0x47,0x4d,0x9,0x47,0x61,0x6d,0x62,0x69,0x61,0xa,0x47, + 0x4e,0x9,0x47,0x75,0x69,0x6e,0x65,0x61,0xa,0x47,0x50,0x9,0x47,0x75,0x61,0x64, + 0x65,0x6c,0x6f,0x75,0x70,0x65,0xa,0x47,0x51,0x9,0x45,0x71,0x75,0x61,0x74,0x6f, + 0x72,0x69,0x61,0x6c,0x20,0x47,0x75,0x69,0x6e,0x65,0x61,0xa,0x47,0x52,0x9,0x47, + 0x72,0x65,0x65,0x63,0x65,0xa,0x47,0x53,0x9,0x53,0x6f,0x75,0x74,0x68,0x20,0x47, + 0x65,0x6f,0x72,0x67,0x69,0x61,0x20,0x26,0x20,0x74,0x68,0x65,0x20,0x53,0x6f,0x75, + 0x74,0x68,0x20,0x53,0x61,0x6e,0x64,0x77,0x69,0x63,0x68,0x20,0x49,0x73,0x6c,0x61, + 0x6e,0x64,0x73,0xa,0x47,0x54,0x9,0x47,0x75,0x61,0x74,0x65,0x6d,0x61,0x6c,0x61, + 0xa,0x47,0x55,0x9,0x47,0x75,0x61,0x6d,0xa,0x47,0x57,0x9,0x47,0x75,0x69,0x6e, + 0x65,0x61,0x2d,0x42,0x69,0x73,0x73,0x61,0x75,0xa,0x47,0x59,0x9,0x47,0x75,0x79, + 0x61,0x6e,0x61,0xa,0x48,0x4b,0x9,0x48,0x6f,0x6e,0x67,0x20,0x4b,0x6f,0x6e,0x67, + 0xa,0x48,0x4d,0x9,0x48,0x65,0x61,0x72,0x64,0x20,0x49,0x73,0x6c,0x61,0x6e,0x64, + 0x20,0x26,0x20,0x4d,0x63,0x44,0x6f,0x6e,0x61,0x6c,0x64,0x20,0x49,0x73,0x6c,0x61, + 0x6e,0x64,0x73,0xa,0x48,0x4e,0x9,0x48,0x6f,0x6e,0x64,0x75,0x72,0x61,0x73,0xa, + 0x48,0x52,0x9,0x43,0x72,0x6f,0x61,0x74,0x69,0x61,0xa,0x48,0x54,0x9,0x48,0x61, + 0x69,0x74,0x69,0xa,0x48,0x55,0x9,0x48,0x75,0x6e,0x67,0x61,0x72,0x79,0xa,0x49, + 0x44,0x9,0x49,0x6e,0x64,0x6f,0x6e,0x65,0x73,0x69,0x61,0xa,0x49,0x45,0x9,0x49, + 0x72,0x65,0x6c,0x61,0x6e,0x64,0xa,0x49,0x4c,0x9,0x49,0x73,0x72,0x61,0x65,0x6c, + 0xa,0x49,0x4d,0x9,0x49,0x73,0x6c,0x65,0x20,0x6f,0x66,0x20,0x4d,0x61,0x6e,0xa, + 0x49,0x4e,0x9,0x49,0x6e,0x64,0x69,0x61,0xa,0x49,0x4f,0x9,0x42,0x72,0x69,0x74, + 0x69,0x73,0x68,0x20,0x49,0x6e,0x64,0x69,0x61,0x6e,0x20,0x4f,0x63,0x65,0x61,0x6e, + 0x20,0x54,0x65,0x72,0x72,0x69,0x74,0x6f,0x72,0x79,0xa,0x49,0x51,0x9,0x49,0x72, + 0x61,0x71,0xa,0x49,0x52,0x9,0x49,0x72,0x61,0x6e,0xa,0x49,0x53,0x9,0x49,0x63, + 0x65,0x6c,0x61,0x6e,0x64,0xa,0x49,0x54,0x9,0x49,0x74,0x61,0x6c,0x79,0xa,0x4a, + 0x45,0x9,0x4a,0x65,0x72,0x73,0x65,0x79,0xa,0x4a,0x4d,0x9,0x4a,0x61,0x6d,0x61, + 0x69,0x63,0x61,0xa,0x4a,0x4f,0x9,0x4a,0x6f,0x72,0x64,0x61,0x6e,0xa,0x4a,0x50, + 0x9,0x4a,0x61,0x70,0x61,0x6e,0xa,0x4b,0x45,0x9,0x4b,0x65,0x6e,0x79,0x61,0xa, + 0x4b,0x47,0x9,0x4b,0x79,0x72,0x67,0x79,0x7a,0x73,0x74,0x61,0x6e,0xa,0x4b,0x48, + 0x9,0x43,0x61,0x6d,0x62,0x6f,0x64,0x69,0x61,0xa,0x4b,0x49,0x9,0x4b,0x69,0x72, + 0x69,0x62,0x61,0x74,0x69,0xa,0x4b,0x4d,0x9,0x43,0x6f,0x6d,0x6f,0x72,0x6f,0x73, + 0xa,0x4b,0x4e,0x9,0x53,0x74,0x20,0x4b,0x69,0x74,0x74,0x73,0x20,0x26,0x20,0x4e, + 0x65,0x76,0x69,0x73,0xa,0x4b,0x50,0x9,0x4b,0x6f,0x72,0x65,0x61,0x20,0x28,0x4e, + 0x6f,0x72,0x74,0x68,0x29,0xa,0x4b,0x52,0x9,0x4b,0x6f,0x72,0x65,0x61,0x20,0x28, + 0x53,0x6f,0x75,0x74,0x68,0x29,0xa,0x4b,0x57,0x9,0x4b,0x75,0x77,0x61,0x69,0x74, + 0xa,0x4b,0x59,0x9,0x43,0x61,0x79,0x6d,0x61,0x6e,0x20,0x49,0x73,0x6c,0x61,0x6e, + 0x64,0x73,0xa,0x4b,0x5a,0x9,0x4b,0x61,0x7a,0x61,0x6b,0x68,0x73,0x74,0x61,0x6e, + 0xa,0x4c,0x41,0x9,0x4c,0x61,0x6f,0x73,0xa,0x4c,0x42,0x9,0x4c,0x65,0x62,0x61, + 0x6e,0x6f,0x6e,0xa,0x4c,0x43,0x9,0x53,0x74,0x20,0x4c,0x75,0x63,0x69,0x61,0xa, + 0x4c,0x49,0x9,0x4c,0x69,0x65,0x63,0x68,0x74,0x65,0x6e,0x73,0x74,0x65,0x69,0x6e, + 0xa,0x4c,0x4b,0x9,0x53,0x72,0x69,0x20,0x4c,0x61,0x6e,0x6b,0x61,0xa,0x4c,0x52, + 0x9,0x4c,0x69,0x62,0x65,0x72,0x69,0x61,0xa,0x4c,0x53,0x9,0x4c,0x65,0x73,0x6f, + 0x74,0x68,0x6f,0xa,0x4c,0x54,0x9,0x4c,0x69,0x74,0x68,0x75,0x61,0x6e,0x69,0x61, + 0xa,0x4c,0x55,0x9,0x4c,0x75,0x78,0x65,0x6d,0x62,0x6f,0x75,0x72,0x67,0xa,0x4c, + 0x56,0x9,0x4c,0x61,0x74,0x76,0x69,0x61,0xa,0x4c,0x59,0x9,0x4c,0x69,0x62,0x79, + 0x61,0xa,0x4d,0x41,0x9,0x4d,0x6f,0x72,0x6f,0x63,0x63,0x6f,0xa,0x4d,0x43,0x9, + 0x4d,0x6f,0x6e,0x61,0x63,0x6f,0xa,0x4d,0x44,0x9,0x4d,0x6f,0x6c,0x64,0x6f,0x76, + 0x61,0xa,0x4d,0x45,0x9,0x4d,0x6f,0x6e,0x74,0x65,0x6e,0x65,0x67,0x72,0x6f,0xa, + 0x4d,0x46,0x9,0x53,0x74,0x20,0x4d,0x61,0x72,0x74,0x69,0x6e,0x20,0x28,0x46,0x72, + 0x65,0x6e,0x63,0x68,0x29,0xa,0x4d,0x47,0x9,0x4d,0x61,0x64,0x61,0x67,0x61,0x73, + 0x63,0x61,0x72,0xa,0x4d,0x48,0x9,0x4d,0x61,0x72,0x73,0x68,0x61,0x6c,0x6c,0x20, + 0x49,0x73,0x6c,0x61,0x6e,0x64,0x73,0xa,0x4d,0x4b,0x9,0x4d,0x61,0x63,0x65,0x64, + 0x6f,0x6e,0x69,0x61,0xa,0x4d,0x4c,0x9,0x4d,0x61,0x6c,0x69,0xa,0x4d,0x4d,0x9, + 0x4d,0x79,0x61,0x6e,0x6d,0x61,0x72,0x20,0x28,0x42,0x75,0x72,0x6d,0x61,0x29,0xa, + 0x4d,0x4e,0x9,0x4d,0x6f,0x6e,0x67,0x6f,0x6c,0x69,0x61,0xa,0x4d,0x4f,0x9,0x4d, + 0x61,0x63,0x61,0x75,0xa,0x4d,0x50,0x9,0x4e,0x6f,0x72,0x74,0x68,0x65,0x72,0x6e, + 0x20,0x4d,0x61,0x72,0x69,0x61,0x6e,0x61,0x20,0x49,0x73,0x6c,0x61,0x6e,0x64,0x73, + 0xa,0x4d,0x51,0x9,0x4d,0x61,0x72,0x74,0x69,0x6e,0x69,0x71,0x75,0x65,0xa,0x4d, + 0x52,0x9,0x4d,0x61,0x75,0x72,0x69,0x74,0x61,0x6e,0x69,0x61,0xa,0x4d,0x53,0x9, + 0x4d,0x6f,0x6e,0x74,0x73,0x65,0x72,0x72,0x61,0x74,0xa,0x4d,0x54,0x9,0x4d,0x61, + 0x6c,0x74,0x61,0xa,0x4d,0x55,0x9,0x4d,0x61,0x75,0x72,0x69,0x74,0x69,0x75,0x73, + 0xa,0x4d,0x56,0x9,0x4d,0x61,0x6c,0x64,0x69,0x76,0x65,0x73,0xa,0x4d,0x57,0x9, + 0x4d,0x61,0x6c,0x61,0x77,0x69,0xa,0x4d,0x58,0x9,0x4d,0x65,0x78,0x69,0x63,0x6f, + 0xa,0x4d,0x59,0x9,0x4d,0x61,0x6c,0x61,0x79,0x73,0x69,0x61,0xa,0x4d,0x5a,0x9, + 0x4d,0x6f,0x7a,0x61,0x6d,0x62,0x69,0x71,0x75,0x65,0xa,0x4e,0x41,0x9,0x4e,0x61, + 0x6d,0x69,0x62,0x69,0x61,0xa,0x4e,0x43,0x9,0x4e,0x65,0x77,0x20,0x43,0x61,0x6c, + 0x65,0x64,0x6f,0x6e,0x69,0x61,0xa,0x4e,0x45,0x9,0x4e,0x69,0x67,0x65,0x72,0xa, + 0x4e,0x46,0x9,0x4e,0x6f,0x72,0x66,0x6f,0x6c,0x6b,0x20,0x49,0x73,0x6c,0x61,0x6e, + 0x64,0xa,0x4e,0x47,0x9,0x4e,0x69,0x67,0x65,0x72,0x69,0x61,0xa,0x4e,0x49,0x9, + 0x4e,0x69,0x63,0x61,0x72,0x61,0x67,0x75,0x61,0xa,0x4e,0x4c,0x9,0x4e,0x65,0x74, + 0x68,0x65,0x72,0x6c,0x61,0x6e,0x64,0x73,0xa,0x4e,0x4f,0x9,0x4e,0x6f,0x72,0x77, + 0x61,0x79,0xa,0x4e,0x50,0x9,0x4e,0x65,0x70,0x61,0x6c,0xa,0x4e,0x52,0x9,0x4e, + 0x61,0x75,0x72,0x75,0xa,0x4e,0x55,0x9,0x4e,0x69,0x75,0x65,0xa,0x4e,0x5a,0x9, + 0x4e,0x65,0x77,0x20,0x5a,0x65,0x61,0x6c,0x61,0x6e,0x64,0xa,0x4f,0x4d,0x9,0x4f, + 0x6d,0x61,0x6e,0xa,0x50,0x41,0x9,0x50,0x61,0x6e,0x61,0x6d,0x61,0xa,0x50,0x45, + 0x9,0x50,0x65,0x72,0x75,0xa,0x50,0x46,0x9,0x46,0x72,0x65,0x6e,0x63,0x68,0x20, + 0x50,0x6f,0x6c,0x79,0x6e,0x65,0x73,0x69,0x61,0xa,0x50,0x47,0x9,0x50,0x61,0x70, + 0x75,0x61,0x20,0x4e,0x65,0x77,0x20,0x47,0x75,0x69,0x6e,0x65,0x61,0xa,0x50,0x48, + 0x9,0x50,0x68,0x69,0x6c,0x69,0x70,0x70,0x69,0x6e,0x65,0x73,0xa,0x50,0x4b,0x9, + 0x50,0x61,0x6b,0x69,0x73,0x74,0x61,0x6e,0xa,0x50,0x4c,0x9,0x50,0x6f,0x6c,0x61, + 0x6e,0x64,0xa,0x50,0x4d,0x9,0x53,0x74,0x20,0x50,0x69,0x65,0x72,0x72,0x65,0x20, + 0x26,0x20,0x4d,0x69,0x71,0x75,0x65,0x6c,0x6f,0x6e,0xa,0x50,0x4e,0x9,0x50,0x69, + 0x74,0x63,0x61,0x69,0x72,0x6e,0xa,0x50,0x52,0x9,0x50,0x75,0x65,0x72,0x74,0x6f, + 0x20,0x52,0x69,0x63,0x6f,0xa,0x50,0x53,0x9,0x50,0x61,0x6c,0x65,0x73,0x74,0x69, + 0x6e,0x65,0xa,0x50,0x54,0x9,0x50,0x6f,0x72,0x74,0x75,0x67,0x61,0x6c,0xa,0x50, + 0x57,0x9,0x50,0x61,0x6c,0x61,0x75,0xa,0x50,0x59,0x9,0x50,0x61,0x72,0x61,0x67, + 0x75,0x61,0x79,0xa,0x51,0x41,0x9,0x51,0x61,0x74,0x61,0x72,0xa,0x52,0x45,0x9, + 0x52,0xc3,0xa9,0x75,0x6e,0x69,0x6f,0x6e,0xa,0x52,0x4f,0x9,0x52,0x6f,0x6d,0x61, + 0x6e,0x69,0x61,0xa,0x52,0x53,0x9,0x53,0x65,0x72,0x62,0x69,0x61,0xa,0x52,0x55, + 0x9,0x52,0x75,0x73,0x73,0x69,0x61,0xa,0x52,0x57,0x9,0x52,0x77,0x61,0x6e,0x64, + 0x61,0xa,0x53,0x41,0x9,0x53,0x61,0x75,0x64,0x69,0x20,0x41,0x72,0x61,0x62,0x69, + 0x61,0xa,0x53,0x42,0x9,0x53,0x6f,0x6c,0x6f,0x6d,0x6f,0x6e,0x20,0x49,0x73,0x6c, + 0x61,0x6e,0x64,0x73,0xa,0x53,0x43,0x9,0x53,0x65,0x79,0x63,0x68,0x65,0x6c,0x6c, + 0x65,0x73,0xa,0x53,0x44,0x9,0x53,0x75,0x64,0x61,0x6e,0xa,0x53,0x45,0x9,0x53, + 0x77,0x65,0x64,0x65,0x6e,0xa,0x53,0x47,0x9,0x53,0x69,0x6e,0x67,0x61,0x70,0x6f, + 0x72,0x65,0xa,0x53,0x48,0x9,0x53,0x74,0x20,0x48,0x65,0x6c,0x65,0x6e,0x61,0xa, + 0x53,0x49,0x9,0x53,0x6c,0x6f,0x76,0x65,0x6e,0x69,0x61,0xa,0x53,0x4a,0x9,0x53, + 0x76,0x61,0x6c,0x62,0x61,0x72,0x64,0x20,0x26,0x20,0x4a,0x61,0x6e,0x20,0x4d,0x61, + 0x79,0x65,0x6e,0xa,0x53,0x4b,0x9,0x53,0x6c,0x6f,0x76,0x61,0x6b,0x69,0x61,0xa, + 0x53,0x4c,0x9,0x53,0x69,0x65,0x72,0x72,0x61,0x20,0x4c,0x65,0x6f,0x6e,0x65,0xa, + 0x53,0x4d,0x9,0x53,0x61,0x6e,0x20,0x4d,0x61,0x72,0x69,0x6e,0x6f,0xa,0x53,0x4e, + 0x9,0x53,0x65,0x6e,0x65,0x67,0x61,0x6c,0xa,0x53,0x4f,0x9,0x53,0x6f,0x6d,0x61, + 0x6c,0x69,0x61,0xa,0x53,0x52,0x9,0x53,0x75,0x72,0x69,0x6e,0x61,0x6d,0x65,0xa, + 0x53,0x53,0x9,0x53,0x6f,0x75,0x74,0x68,0x20,0x53,0x75,0x64,0x61,0x6e,0xa,0x53, + 0x54,0x9,0x53,0x61,0x6f,0x20,0x54,0x6f,0x6d,0x65,0x20,0x26,0x20,0x50,0x72,0x69, + 0x6e,0x63,0x69,0x70,0x65,0xa,0x53,0x56,0x9,0x45,0x6c,0x20,0x53,0x61,0x6c,0x76, + 0x61,0x64,0x6f,0x72,0xa,0x53,0x58,0x9,0x53,0x74,0x20,0x4d,0x61,0x61,0x72,0x74, + 0x65,0x6e,0x20,0x28,0x44,0x75,0x74,0x63,0x68,0x29,0xa,0x53,0x59,0x9,0x53,0x79, + 0x72,0x69,0x61,0xa,0x53,0x5a,0x9,0x53,0x77,0x61,0x7a,0x69,0x6c,0x61,0x6e,0x64, + 0xa,0x54,0x43,0x9,0x54,0x75,0x72,0x6b,0x73,0x20,0x26,0x20,0x43,0x61,0x69,0x63, + 0x6f,0x73,0x20,0x49,0x73,0xa,0x54,0x44,0x9,0x43,0x68,0x61,0x64,0xa,0x54,0x46, + 0x9,0x46,0x72,0x65,0x6e,0x63,0x68,0x20,0x53,0x6f,0x75,0x74,0x68,0x65,0x72,0x6e, + 0x20,0x26,0x20,0x41,0x6e,0x74,0x61,0x72,0x63,0x74,0x69,0x63,0x20,0x4c,0x61,0x6e, + 0x64,0x73,0xa,0x54,0x47,0x9,0x54,0x6f,0x67,0x6f,0xa,0x54,0x48,0x9,0x54,0x68, + 0x61,0x69,0x6c,0x61,0x6e,0x64,0xa,0x54,0x4a,0x9,0x54,0x61,0x6a,0x69,0x6b,0x69, + 0x73,0x74,0x61,0x6e,0xa,0x54,0x4b,0x9,0x54,0x6f,0x6b,0x65,0x6c,0x61,0x75,0xa, + 0x54,0x4c,0x9,0x45,0x61,0x73,0x74,0x20,0x54,0x69,0x6d,0x6f,0x72,0xa,0x54,0x4d, + 0x9,0x54,0x75,0x72,0x6b,0x6d,0x65,0x6e,0x69,0x73,0x74,0x61,0x6e,0xa,0x54,0x4e, + 0x9,0x54,0x75,0x6e,0x69,0x73,0x69,0x61,0xa,0x54,0x4f,0x9,0x54,0x6f,0x6e,0x67, + 0x61,0xa,0x54,0x52,0x9,0x54,0x75,0x72,0x6b,0x65,0x79,0xa,0x54,0x54,0x9,0x54, + 0x72,0x69,0x6e,0x69,0x64,0x61,0x64,0x20,0x26,0x20,0x54,0x6f,0x62,0x61,0x67,0x6f, + 0xa,0x54,0x56,0x9,0x54,0x75,0x76,0x61,0x6c,0x75,0xa,0x54,0x57,0x9,0x54,0x61, + 0x69,0x77,0x61,0x6e,0xa,0x54,0x5a,0x9,0x54,0x61,0x6e,0x7a,0x61,0x6e,0x69,0x61, + 0xa,0x55,0x41,0x9,0x55,0x6b,0x72,0x61,0x69,0x6e,0x65,0xa,0x55,0x47,0x9,0x55, + 0x67,0x61,0x6e,0x64,0x61,0xa,0x55,0x4d,0x9,0x55,0x53,0x20,0x6d,0x69,0x6e,0x6f, + 0x72,0x20,0x6f,0x75,0x74,0x6c,0x79,0x69,0x6e,0x67,0x20,0x69,0x73,0x6c,0x61,0x6e, + 0x64,0x73,0xa,0x55,0x53,0x9,0x55,0x6e,0x69,0x74,0x65,0x64,0x20,0x53,0x74,0x61, + 0x74,0x65,0x73,0xa,0x55,0x59,0x9,0x55,0x72,0x75,0x67,0x75,0x61,0x79,0xa,0x55, + 0x5a,0x9,0x55,0x7a,0x62,0x65,0x6b,0x69,0x73,0x74,0x61,0x6e,0xa,0x56,0x41,0x9, + 0x56,0x61,0x74,0x69,0x63,0x61,0x6e,0x20,0x43,0x69,0x74,0x79,0xa,0x56,0x43,0x9, + 0x53,0x74,0x20,0x56,0x69,0x6e,0x63,0x65,0x6e,0x74,0xa,0x56,0x45,0x9,0x56,0x65, + 0x6e,0x65,0x7a,0x75,0x65,0x6c,0x61,0xa,0x56,0x47,0x9,0x56,0x69,0x72,0x67,0x69, + 0x6e,0x20,0x49,0x73,0x6c,0x61,0x6e,0x64,0x73,0x20,0x28,0x55,0x4b,0x29,0xa,0x56, + 0x49,0x9,0x56,0x69,0x72,0x67,0x69,0x6e,0x20,0x49,0x73,0x6c,0x61,0x6e,0x64,0x73, + 0x20,0x28,0x55,0x53,0x29,0xa,0x56,0x4e,0x9,0x56,0x69,0x65,0x74,0x6e,0x61,0x6d, + 0xa,0x56,0x55,0x9,0x56,0x61,0x6e,0x75,0x61,0x74,0x75,0xa,0x57,0x46,0x9,0x57, + 0x61,0x6c,0x6c,0x69,0x73,0x20,0x26,0x20,0x46,0x75,0x74,0x75,0x6e,0x61,0xa,0x57, + 0x53,0x9,0x53,0x61,0x6d,0x6f,0x61,0x20,0x28,0x77,0x65,0x73,0x74,0x65,0x72,0x6e, + 0x29,0xa,0x59,0x45,0x9,0x59,0x65,0x6d,0x65,0x6e,0xa,0x59,0x54,0x9,0x4d,0x61, + 0x79,0x6f,0x74,0x74,0x65,0xa,0x5a,0x41,0x9,0x53,0x6f,0x75,0x74,0x68,0x20,0x41, + 0x66,0x72,0x69,0x63,0x61,0xa,0x5a,0x4d,0x9,0x5a,0x61,0x6d,0x62,0x69,0x61,0xa, + 0x5a,0x57,0x9,0x5a,0x69,0x6d,0x62,0x61,0x62,0x77,0x65,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/GMT-0 + 0x0,0x0,0x0,0x7f, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, + 0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0, + 0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0, + 0x0,0x0,0x4,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0xa,0x47,0x4d,0x54,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/W-SU + 0x0,0x0,0x6,0x8, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x4e,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x26,0x80,0x0,0x0,0x0,0x9b, + 0x5f,0x1e,0xc7,0x9d,0x3e,0xf2,0x79,0x9e,0x2a,0xee,0xf9,0x9e,0xf7,0x39,0x69,0x9f, + 0x84,0x57,0xf9,0xa0,0xd8,0x6c,0xe9,0xa1,0x0,0x39,0x80,0xa1,0x3c,0xa6,0x40,0xa4, + 0x10,0x6d,0xc0,0xa4,0x3d,0x32,0xb0,0xa5,0x15,0x68,0xb0,0xa5,0x3d,0x3,0xc0,0xa7, + 0x1e,0x45,0x50,0xb5,0xa4,0x19,0x60,0x15,0x27,0xa7,0xd0,0x16,0x18,0xdc,0x40,0x17, + 0x8,0xdb,0x50,0x17,0xfa,0xf,0xc0,0x18,0xea,0xe,0xd0,0x19,0xdb,0x43,0x40,0x1a, + 0xcc,0x93,0xd0,0x1b,0xbc,0xa0,0xf0,0x1c,0xac,0x91,0xf0,0x1d,0x9c,0x82,0xf0,0x1e, + 0x8c,0x73,0xf0,0x1f,0x7c,0x64,0xf0,0x20,0x6c,0x55,0xf0,0x21,0x5c,0x46,0xf0,0x22, + 0x4c,0x37,0xf0,0x23,0x3c,0x28,0xf0,0x24,0x2c,0x19,0xf0,0x25,0x1c,0xa,0xf0,0x26, + 0xb,0xfb,0xf0,0x27,0x5,0x27,0x70,0x27,0xf5,0x18,0x70,0x28,0xe5,0x17,0x80,0x29, + 0x78,0xbf,0x80,0x29,0xd4,0xfa,0x70,0x2a,0xc4,0xeb,0x70,0x2b,0xb4,0xdc,0x70,0x2c, + 0xa4,0xcd,0x70,0x2d,0x94,0xbe,0x70,0x2e,0x84,0xaf,0x70,0x2f,0x74,0xa0,0x70,0x30, + 0x64,0x91,0x70,0x31,0x5d,0xbc,0xf0,0x32,0x72,0x97,0xf0,0x33,0x3d,0x9e,0xf0,0x34, + 0x52,0x79,0xf0,0x35,0x1d,0x80,0xf0,0x36,0x32,0x5b,0xf0,0x36,0xfd,0x62,0xf0,0x38, + 0x1b,0x78,0x70,0x38,0xdd,0x44,0xf0,0x39,0xfb,0x5a,0x70,0x3a,0xbd,0x26,0xf0,0x3b, + 0xdb,0x3c,0x70,0x3c,0xa6,0x43,0x70,0x3d,0xbb,0x1e,0x70,0x3e,0x86,0x25,0x70,0x3f, + 0x9b,0x0,0x70,0x40,0x66,0x7,0x70,0x41,0x84,0x1c,0xf0,0x42,0x45,0xe9,0x70,0x43, + 0x63,0xfe,0xf0,0x44,0x25,0xcb,0x70,0x45,0x43,0xe0,0xf0,0x46,0x5,0xad,0x70,0x47, + 0x23,0xc2,0xf0,0x47,0xee,0xc9,0xf0,0x49,0x3,0xa4,0xf0,0x49,0xce,0xab,0xf0,0x4a, + 0xe3,0x86,0xf0,0x4b,0xae,0x8d,0xf0,0x4c,0xcc,0xa3,0x70,0x4d,0x8e,0x6f,0xf0,0x54, + 0x4c,0x1d,0x60,0x1,0x3,0x2,0x3,0x4,0x2,0x4,0x5,0x6,0x7,0x8,0x7,0x6, + 0x9,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0xa,0xb,0xa,0xb,0xa,0xb,0xa, + 0xb,0xa,0xb,0xa,0xb,0xa,0xc,0xd,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb, + 0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb, + 0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xe, + 0xa,0x0,0x0,0x23,0x39,0x0,0x0,0x0,0x0,0x23,0x39,0x0,0x4,0x0,0x0,0x31, + 0x87,0x1,0x8,0x0,0x0,0x23,0x77,0x0,0x4,0x0,0x0,0x3f,0x97,0x1,0xc,0x0, + 0x0,0x38,0x40,0x1,0x11,0x0,0x0,0x2a,0x30,0x0,0x15,0x0,0x0,0x38,0x40,0x1, + 0x11,0x0,0x0,0x46,0x50,0x1,0x19,0x0,0x0,0x1c,0x20,0x0,0x1d,0x0,0x0,0x2a, + 0x30,0x0,0x15,0x0,0x0,0x38,0x40,0x1,0x11,0x0,0x0,0x2a,0x30,0x1,0x21,0x0, + 0x0,0x1c,0x20,0x0,0x1d,0x0,0x0,0x38,0x40,0x0,0x15,0x0,0x0,0x38,0x40,0x1, + 0x11,0x0,0x0,0x2a,0x30,0x0,0x15,0x4c,0x4d,0x54,0x0,0x4d,0x4d,0x54,0x0,0x4d, + 0x53,0x54,0x0,0x4d,0x44,0x53,0x54,0x0,0x4d,0x53,0x44,0x0,0x4d,0x53,0x4b,0x0, + 0x2b,0x30,0x35,0x0,0x45,0x45,0x54,0x0,0x45,0x45,0x53,0x54,0x0,0x0,0x0,0x0, + 0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x0,0x0, + 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x4f,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x26,0xf8,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x56,0xb6,0xc0,0xc7,0xff,0xff,0xff,0xff,0x9b, + 0x5f,0x1e,0xc7,0xff,0xff,0xff,0xff,0x9d,0x3e,0xf2,0x79,0xff,0xff,0xff,0xff,0x9e, + 0x2a,0xee,0xf9,0xff,0xff,0xff,0xff,0x9e,0xf7,0x39,0x69,0xff,0xff,0xff,0xff,0x9f, + 0x84,0x57,0xf9,0xff,0xff,0xff,0xff,0xa0,0xd8,0x6c,0xe9,0xff,0xff,0xff,0xff,0xa1, + 0x0,0x39,0x80,0xff,0xff,0xff,0xff,0xa1,0x3c,0xa6,0x40,0xff,0xff,0xff,0xff,0xa4, + 0x10,0x6d,0xc0,0xff,0xff,0xff,0xff,0xa4,0x3d,0x32,0xb0,0xff,0xff,0xff,0xff,0xa5, + 0x15,0x68,0xb0,0xff,0xff,0xff,0xff,0xa5,0x3d,0x3,0xc0,0xff,0xff,0xff,0xff,0xa7, + 0x1e,0x45,0x50,0xff,0xff,0xff,0xff,0xb5,0xa4,0x19,0x60,0x0,0x0,0x0,0x0,0x15, + 0x27,0xa7,0xd0,0x0,0x0,0x0,0x0,0x16,0x18,0xdc,0x40,0x0,0x0,0x0,0x0,0x17, + 0x8,0xdb,0x50,0x0,0x0,0x0,0x0,0x17,0xfa,0xf,0xc0,0x0,0x0,0x0,0x0,0x18, + 0xea,0xe,0xd0,0x0,0x0,0x0,0x0,0x19,0xdb,0x43,0x40,0x0,0x0,0x0,0x0,0x1a, + 0xcc,0x93,0xd0,0x0,0x0,0x0,0x0,0x1b,0xbc,0xa0,0xf0,0x0,0x0,0x0,0x0,0x1c, + 0xac,0x91,0xf0,0x0,0x0,0x0,0x0,0x1d,0x9c,0x82,0xf0,0x0,0x0,0x0,0x0,0x1e, + 0x8c,0x73,0xf0,0x0,0x0,0x0,0x0,0x1f,0x7c,0x64,0xf0,0x0,0x0,0x0,0x0,0x20, + 0x6c,0x55,0xf0,0x0,0x0,0x0,0x0,0x21,0x5c,0x46,0xf0,0x0,0x0,0x0,0x0,0x22, + 0x4c,0x37,0xf0,0x0,0x0,0x0,0x0,0x23,0x3c,0x28,0xf0,0x0,0x0,0x0,0x0,0x24, + 0x2c,0x19,0xf0,0x0,0x0,0x0,0x0,0x25,0x1c,0xa,0xf0,0x0,0x0,0x0,0x0,0x26, + 0xb,0xfb,0xf0,0x0,0x0,0x0,0x0,0x27,0x5,0x27,0x70,0x0,0x0,0x0,0x0,0x27, + 0xf5,0x18,0x70,0x0,0x0,0x0,0x0,0x28,0xe5,0x17,0x80,0x0,0x0,0x0,0x0,0x29, + 0x78,0xbf,0x80,0x0,0x0,0x0,0x0,0x29,0xd4,0xfa,0x70,0x0,0x0,0x0,0x0,0x2a, + 0xc4,0xeb,0x70,0x0,0x0,0x0,0x0,0x2b,0xb4,0xdc,0x70,0x0,0x0,0x0,0x0,0x2c, + 0xa4,0xcd,0x70,0x0,0x0,0x0,0x0,0x2d,0x94,0xbe,0x70,0x0,0x0,0x0,0x0,0x2e, + 0x84,0xaf,0x70,0x0,0x0,0x0,0x0,0x2f,0x74,0xa0,0x70,0x0,0x0,0x0,0x0,0x30, + 0x64,0x91,0x70,0x0,0x0,0x0,0x0,0x31,0x5d,0xbc,0xf0,0x0,0x0,0x0,0x0,0x32, + 0x72,0x97,0xf0,0x0,0x0,0x0,0x0,0x33,0x3d,0x9e,0xf0,0x0,0x0,0x0,0x0,0x34, + 0x52,0x79,0xf0,0x0,0x0,0x0,0x0,0x35,0x1d,0x80,0xf0,0x0,0x0,0x0,0x0,0x36, + 0x32,0x5b,0xf0,0x0,0x0,0x0,0x0,0x36,0xfd,0x62,0xf0,0x0,0x0,0x0,0x0,0x38, + 0x1b,0x78,0x70,0x0,0x0,0x0,0x0,0x38,0xdd,0x44,0xf0,0x0,0x0,0x0,0x0,0x39, + 0xfb,0x5a,0x70,0x0,0x0,0x0,0x0,0x3a,0xbd,0x26,0xf0,0x0,0x0,0x0,0x0,0x3b, + 0xdb,0x3c,0x70,0x0,0x0,0x0,0x0,0x3c,0xa6,0x43,0x70,0x0,0x0,0x0,0x0,0x3d, + 0xbb,0x1e,0x70,0x0,0x0,0x0,0x0,0x3e,0x86,0x25,0x70,0x0,0x0,0x0,0x0,0x3f, + 0x9b,0x0,0x70,0x0,0x0,0x0,0x0,0x40,0x66,0x7,0x70,0x0,0x0,0x0,0x0,0x41, + 0x84,0x1c,0xf0,0x0,0x0,0x0,0x0,0x42,0x45,0xe9,0x70,0x0,0x0,0x0,0x0,0x43, + 0x63,0xfe,0xf0,0x0,0x0,0x0,0x0,0x44,0x25,0xcb,0x70,0x0,0x0,0x0,0x0,0x45, + 0x43,0xe0,0xf0,0x0,0x0,0x0,0x0,0x46,0x5,0xad,0x70,0x0,0x0,0x0,0x0,0x47, + 0x23,0xc2,0xf0,0x0,0x0,0x0,0x0,0x47,0xee,0xc9,0xf0,0x0,0x0,0x0,0x0,0x49, + 0x3,0xa4,0xf0,0x0,0x0,0x0,0x0,0x49,0xce,0xab,0xf0,0x0,0x0,0x0,0x0,0x4a, + 0xe3,0x86,0xf0,0x0,0x0,0x0,0x0,0x4b,0xae,0x8d,0xf0,0x0,0x0,0x0,0x0,0x4c, + 0xcc,0xa3,0x70,0x0,0x0,0x0,0x0,0x4d,0x8e,0x6f,0xf0,0x0,0x0,0x0,0x0,0x54, + 0x4c,0x1d,0x60,0x0,0x1,0x3,0x2,0x3,0x4,0x2,0x4,0x5,0x6,0x7,0x8,0x7, + 0x6,0x9,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0xa,0xb,0xa,0xb,0xa,0xb, + 0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xc,0xd,0xa,0xb,0xa,0xb,0xa,0xb,0xa, + 0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa, + 0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa, + 0xe,0xa,0x0,0x0,0x23,0x39,0x0,0x0,0x0,0x0,0x23,0x39,0x0,0x4,0x0,0x0, + 0x31,0x87,0x1,0x8,0x0,0x0,0x23,0x77,0x0,0x4,0x0,0x0,0x3f,0x97,0x1,0xc, + 0x0,0x0,0x38,0x40,0x1,0x11,0x0,0x0,0x2a,0x30,0x0,0x15,0x0,0x0,0x38,0x40, + 0x1,0x11,0x0,0x0,0x46,0x50,0x1,0x19,0x0,0x0,0x1c,0x20,0x0,0x1d,0x0,0x0, + 0x2a,0x30,0x0,0x15,0x0,0x0,0x38,0x40,0x1,0x11,0x0,0x0,0x2a,0x30,0x1,0x21, + 0x0,0x0,0x1c,0x20,0x0,0x1d,0x0,0x0,0x38,0x40,0x0,0x15,0x0,0x0,0x38,0x40, + 0x1,0x11,0x0,0x0,0x2a,0x30,0x0,0x15,0x4c,0x4d,0x54,0x0,0x4d,0x4d,0x54,0x0, + 0x4d,0x53,0x54,0x0,0x4d,0x44,0x53,0x54,0x0,0x4d,0x53,0x44,0x0,0x4d,0x53,0x4b, + 0x0,0x2b,0x30,0x35,0x0,0x45,0x45,0x54,0x0,0x45,0x45,0x53,0x54,0x0,0x0,0x0, + 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x0, + 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xa,0x4d,0x53,0x4b,0x2d,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/GB + 0x0,0x0,0xe,0x67, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xf3,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x11,0x80,0x0,0x0,0x0,0x9b, + 0x26,0xad,0xa0,0x9b,0xd6,0x5,0x20,0x9c,0xcf,0x30,0xa0,0x9d,0xa4,0xc3,0xa0,0x9e, + 0x9c,0x9d,0xa0,0x9f,0x97,0x1a,0xa0,0xa0,0x85,0xba,0x20,0xa1,0x76,0xfc,0xa0,0xa2, + 0x65,0x9c,0x20,0xa3,0x7b,0xc8,0xa0,0xa4,0x4e,0xb8,0xa0,0xa5,0x3f,0xfb,0x20,0xa6, + 0x25,0x60,0x20,0xa7,0x27,0xc6,0x20,0xa8,0x2a,0x2c,0x20,0xa8,0xeb,0xf8,0xa0,0xaa, + 0x0,0xd3,0xa0,0xaa,0xd5,0x15,0x20,0xab,0xe9,0xf0,0x20,0xac,0xc7,0x6c,0x20,0xad, + 0xc9,0xd2,0x20,0xae,0xa7,0x4e,0x20,0xaf,0xa0,0x79,0xa0,0xb0,0x87,0x30,0x20,0xb1, + 0x92,0xd0,0xa0,0xb2,0x70,0x4c,0xa0,0xb3,0x72,0xb2,0xa0,0xb4,0x50,0x2e,0xa0,0xb5, + 0x49,0x5a,0x20,0xb6,0x30,0x10,0xa0,0xb7,0x32,0x76,0xa0,0xb8,0xf,0xf2,0xa0,0xb9, + 0x12,0x58,0xa0,0xb9,0xef,0xd4,0xa0,0xba,0xe9,0x0,0x20,0xbb,0xd8,0xf1,0x20,0xbc, + 0xdb,0x57,0x20,0xbd,0xb8,0xd3,0x20,0xbe,0xb1,0xfe,0xa0,0xbf,0x98,0xb5,0x20,0xc0, + 0x9b,0x1b,0x20,0xc1,0x78,0x97,0x20,0xc2,0x7a,0xfd,0x20,0xc3,0x58,0x79,0x20,0xc4, + 0x51,0xa4,0xa0,0xc5,0x38,0x5b,0x20,0xc6,0x3a,0xc1,0x20,0xc7,0x58,0xd6,0xa0,0xc7, + 0xda,0x9,0xa0,0xca,0x16,0x26,0x90,0xca,0x97,0x59,0x90,0xcb,0xd1,0x1e,0x90,0xcc, + 0x77,0x3b,0x90,0xcd,0xb1,0x0,0x90,0xce,0x60,0x58,0x10,0xcf,0x90,0xe2,0x90,0xd0, + 0x6e,0x5e,0x90,0xd1,0x72,0x16,0x10,0xd1,0xfb,0x32,0x10,0xd2,0x69,0xfe,0x20,0xd3, + 0x63,0x29,0xa0,0xd4,0x49,0xe0,0x20,0xd5,0x1e,0x21,0xa0,0xd5,0x42,0xfd,0x90,0xd5, + 0xdf,0xe0,0x10,0xd6,0x4e,0xac,0x20,0xd6,0xfe,0x3,0xa0,0xd8,0x2e,0x8e,0x20,0xd8, + 0xf9,0x95,0x20,0xda,0xe,0x70,0x20,0xda,0xeb,0xec,0x20,0xdb,0xe5,0x17,0xa0,0xdc, + 0xcb,0xce,0x20,0xdd,0xc4,0xf9,0xa0,0xde,0xb4,0xea,0xa0,0xdf,0xae,0x16,0x20,0xe0, + 0x94,0xcc,0xa0,0xe1,0x72,0x48,0xa0,0xe2,0x6b,0x74,0x20,0xe3,0x52,0x2a,0xa0,0xe4, + 0x54,0x90,0xa0,0xe5,0x32,0xc,0xa0,0xe6,0x3d,0xad,0x20,0xe7,0x1b,0x29,0x20,0xe8, + 0x14,0x54,0xa0,0xe8,0xfb,0xb,0x20,0xe9,0xfd,0x71,0x20,0xea,0xda,0xed,0x20,0xeb, + 0xdd,0x53,0x20,0xec,0xba,0xcf,0x20,0xed,0xb3,0xfa,0xa0,0xee,0x9a,0xb1,0x20,0xef, + 0x81,0x67,0xa0,0xf0,0x9f,0x7d,0x20,0xf1,0x61,0x49,0xa0,0xf2,0x7f,0x5f,0x20,0xf3, + 0x4a,0x66,0x20,0xf4,0x5f,0x41,0x20,0xf5,0x21,0xd,0xa0,0xf6,0x3f,0x23,0x20,0xf7, + 0x0,0xef,0xa0,0xf8,0x1f,0x5,0x20,0xf8,0xe0,0xd1,0xa0,0xf9,0xfe,0xe7,0x20,0xfa, + 0xc0,0xb3,0xa0,0xfb,0xe8,0x3,0xa0,0xfc,0x7b,0xab,0xa0,0xfd,0xc7,0xbb,0x70,0x3, + 0x70,0xc6,0x20,0x4,0x29,0x58,0x20,0x5,0x50,0xa8,0x20,0x6,0x9,0x3a,0x20,0x7, + 0x30,0x8a,0x20,0x7,0xe9,0x1c,0x20,0x9,0x10,0x6c,0x20,0x9,0xc8,0xfe,0x20,0xa, + 0xf0,0x4e,0x20,0xb,0xb2,0x1a,0xa0,0xc,0xd0,0x30,0x20,0xd,0x91,0xfc,0xa0,0xe, + 0xb0,0x12,0x20,0xf,0x71,0xde,0xa0,0x10,0x99,0x2e,0xa0,0x11,0x51,0xc0,0xa0,0x12, + 0x79,0x10,0xa0,0x13,0x31,0xa2,0xa0,0x14,0x58,0xf2,0xa0,0x15,0x23,0xeb,0x90,0x16, + 0x38,0xc6,0x90,0x17,0x3,0xcd,0x90,0x18,0x18,0xa8,0x90,0x18,0xe3,0xaf,0x90,0x19, + 0xf8,0x8a,0x90,0x1a,0xc3,0x91,0x90,0x1b,0xe1,0xa7,0x10,0x1c,0xac,0xae,0x10,0x1d, + 0xc1,0x89,0x10,0x1e,0x8c,0x90,0x10,0x1f,0xa1,0x6b,0x10,0x20,0x6c,0x72,0x10,0x21, + 0x81,0x4d,0x10,0x22,0x4c,0x54,0x10,0x23,0x61,0x2f,0x10,0x24,0x2c,0x36,0x10,0x25, + 0x4a,0x4b,0x90,0x26,0xc,0x18,0x10,0x27,0x2a,0x2d,0x90,0x27,0xf5,0x34,0x90,0x29, + 0xa,0xf,0x90,0x29,0xd5,0x16,0x90,0x2a,0xe9,0xf1,0x90,0x2b,0xb4,0xf8,0x90,0x2c, + 0xc9,0xd3,0x90,0x2d,0x94,0xda,0x90,0x2e,0xa9,0xb5,0x90,0x2f,0x74,0xbc,0x90,0x30, + 0x89,0x97,0x90,0x30,0xe7,0x24,0x0,0x31,0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33, + 0x3d,0xbb,0x10,0x34,0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36, + 0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a, + 0xbd,0x43,0x10,0x3b,0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e, + 0x86,0x41,0x90,0x3f,0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42, + 0x46,0x5,0x90,0x43,0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46, + 0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49, + 0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d, + 0x8e,0x8c,0x10,0x4e,0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51, + 0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55, + 0x17,0x4e,0x90,0x56,0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58, + 0xd7,0x12,0x90,0x59,0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c, + 0xa0,0x11,0x10,0x5d,0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60, + 0x5f,0xd5,0x10,0x61,0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64, + 0x1f,0x99,0x10,0x65,0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67, + 0xe8,0x97,0x90,0x68,0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b, + 0xa8,0x5b,0x90,0x6c,0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f, + 0x68,0x1f,0x90,0x70,0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73, + 0x31,0x1e,0x10,0x74,0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76, + 0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a, + 0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e, + 0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3, + 0x1,0x3,0x1,0x2,0x1,0x2,0x1,0x3,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x4,0x6,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x7,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0xff,0xff,0xff,0xb5,0x0,0x0, + 0x0,0x0,0xe,0x10,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x1c,0x20, + 0x1,0xc,0x0,0x0,0xe,0x10,0x0,0x4,0x0,0x0,0xe,0x10,0x1,0x4,0x0,0x0, + 0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x42,0x53, + 0x54,0x0,0x47,0x4d,0x54,0x0,0x42,0x44,0x53,0x54,0x0,0x0,0x1,0x1,0x1,0x0, + 0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x54,0x5a,0x69,0x66,0x32, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf4,0x0, + 0x0,0x0,0x8,0x0,0x0,0x0,0x11,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff, + 0xff,0xff,0xff,0x1a,0x5d,0x9,0xcb,0xff,0xff,0xff,0xff,0x9b,0x26,0xad,0xa0,0xff, + 0xff,0xff,0xff,0x9b,0xd6,0x5,0x20,0xff,0xff,0xff,0xff,0x9c,0xcf,0x30,0xa0,0xff, + 0xff,0xff,0xff,0x9d,0xa4,0xc3,0xa0,0xff,0xff,0xff,0xff,0x9e,0x9c,0x9d,0xa0,0xff, + 0xff,0xff,0xff,0x9f,0x97,0x1a,0xa0,0xff,0xff,0xff,0xff,0xa0,0x85,0xba,0x20,0xff, + 0xff,0xff,0xff,0xa1,0x76,0xfc,0xa0,0xff,0xff,0xff,0xff,0xa2,0x65,0x9c,0x20,0xff, + 0xff,0xff,0xff,0xa3,0x7b,0xc8,0xa0,0xff,0xff,0xff,0xff,0xa4,0x4e,0xb8,0xa0,0xff, + 0xff,0xff,0xff,0xa5,0x3f,0xfb,0x20,0xff,0xff,0xff,0xff,0xa6,0x25,0x60,0x20,0xff, + 0xff,0xff,0xff,0xa7,0x27,0xc6,0x20,0xff,0xff,0xff,0xff,0xa8,0x2a,0x2c,0x20,0xff, + 0xff,0xff,0xff,0xa8,0xeb,0xf8,0xa0,0xff,0xff,0xff,0xff,0xaa,0x0,0xd3,0xa0,0xff, + 0xff,0xff,0xff,0xaa,0xd5,0x15,0x20,0xff,0xff,0xff,0xff,0xab,0xe9,0xf0,0x20,0xff, + 0xff,0xff,0xff,0xac,0xc7,0x6c,0x20,0xff,0xff,0xff,0xff,0xad,0xc9,0xd2,0x20,0xff, + 0xff,0xff,0xff,0xae,0xa7,0x4e,0x20,0xff,0xff,0xff,0xff,0xaf,0xa0,0x79,0xa0,0xff, + 0xff,0xff,0xff,0xb0,0x87,0x30,0x20,0xff,0xff,0xff,0xff,0xb1,0x92,0xd0,0xa0,0xff, + 0xff,0xff,0xff,0xb2,0x70,0x4c,0xa0,0xff,0xff,0xff,0xff,0xb3,0x72,0xb2,0xa0,0xff, + 0xff,0xff,0xff,0xb4,0x50,0x2e,0xa0,0xff,0xff,0xff,0xff,0xb5,0x49,0x5a,0x20,0xff, 0xff,0xff,0xff,0xb6,0x30,0x10,0xa0,0xff,0xff,0xff,0xff,0xb7,0x32,0x76,0xa0,0xff, 0xff,0xff,0xff,0xb8,0xf,0xf2,0xa0,0xff,0xff,0xff,0xff,0xb9,0x12,0x58,0xa0,0xff, 0xff,0xff,0xff,0xb9,0xef,0xd4,0xa0,0xff,0xff,0xff,0xff,0xba,0xe9,0x0,0x20,0xff, @@ -916,314 +1756,29 @@ static const unsigned char qt_resource_data[] = { 0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0xa,0x47,0x4d,0x54, 0x30,0x42,0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2f,0x31,0x2c,0x4d,0x31, 0x30,0x2e,0x35,0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Turkey - 0x0,0x0,0x8,0x76, + // /home/konrad/src/smoke/tzone/zoneinfo/Poland + 0x0,0x0,0xa,0x91, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x83,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x19,0x80,0x0,0x0,0x0,0x90, - 0x8b,0xf5,0x98,0x9b,0xc,0x17,0x60,0x9b,0xd5,0xbe,0xd0,0xa2,0x65,0x63,0xe0,0xa3, - 0x7b,0x82,0x50,0xa4,0x4e,0x80,0x60,0xa5,0x3f,0xb4,0xd0,0xa6,0x25,0x27,0xe0,0xa7, - 0x27,0x7f,0xd0,0xaa,0x28,0x28,0x60,0xaa,0xe1,0xfd,0xd0,0xab,0xf9,0x89,0xe0,0xac, - 0xc3,0x31,0x50,0xc8,0x7f,0xee,0x60,0xc8,0xff,0xc1,0xd0,0xc9,0x4a,0xf5,0x60,0xca, - 0xce,0x80,0x50,0xcb,0xcb,0xae,0x60,0xcc,0xe5,0xc1,0x50,0xd1,0x71,0xeb,0xe0,0xd2, - 0x6b,0x9,0x50,0xd3,0xa2,0x39,0x60,0xd4,0x43,0x2,0x50,0xd5,0x4c,0xd,0xe0,0xd6, - 0x29,0x7b,0xd0,0xd7,0x2b,0xef,0xe0,0xd8,0x9,0x5d,0xd0,0xd9,0x2,0x97,0x60,0xd9, - 0xe9,0x3f,0xd0,0xda,0xef,0xa8,0x60,0xdb,0xd2,0x5c,0x50,0xdc,0xd4,0xd0,0x60,0xdd, - 0xb3,0x8f,0xd0,0xf1,0xf4,0xb9,0x60,0xf2,0x64,0xba,0xd0,0xf5,0x68,0x6,0x60,0xf6, - 0x1f,0x38,0xd0,0x0,0xa0,0xba,0xe0,0x1,0x6b,0xb3,0xd0,0x2,0x80,0x9c,0xe0,0x3, - 0x4b,0x95,0xd0,0x4,0x69,0xb9,0x60,0x5,0x34,0xb2,0x50,0x6,0x6e,0x93,0x70,0x7, - 0x39,0xa8,0x80,0x7,0xfb,0x75,0x0,0x9,0x19,0xa6,0xa0,0x9,0xdb,0x3a,0xe0,0xa, - 0xf0,0x7,0xd0,0xc,0x10,0xce,0x60,0xc,0xd9,0x24,0x50,0xd,0xa4,0x39,0x60,0xe, - 0xa6,0x91,0x50,0xf,0x84,0x1b,0x60,0x10,0x86,0x73,0x50,0x12,0x67,0x98,0xc0,0x13, - 0x4d,0x36,0x0,0x14,0x47,0x7a,0xc0,0x15,0x23,0xdd,0x80,0x16,0x27,0x5c,0xc0,0x17, - 0x3,0xbf,0x80,0x18,0x7,0x3e,0xc0,0x19,0x89,0x94,0x50,0x19,0xdc,0x94,0xc0,0x1c, - 0xc6,0xd3,0xd0,0x1d,0x9b,0x15,0x50,0x1e,0x8c,0x73,0xf0,0x1f,0x7c,0x64,0xf0,0x20, - 0x6c,0x55,0xf0,0x21,0x5c,0x46,0xf0,0x22,0x4c,0x37,0xf0,0x23,0x3c,0x28,0xf0,0x24, - 0x2c,0x19,0xf0,0x25,0x1c,0xa,0xf0,0x26,0xb,0xfb,0xf0,0x27,0x5,0x27,0x70,0x27, - 0xf5,0x18,0x70,0x28,0xe5,0x9,0x70,0x29,0xd4,0xfa,0x70,0x2a,0xc4,0xeb,0x70,0x2b, - 0xb4,0xdc,0x70,0x2c,0xa4,0xcd,0x70,0x2d,0x8b,0x83,0xf0,0x2e,0x84,0xaf,0x70,0x2f, - 0x74,0xa0,0x70,0x30,0x64,0x91,0x70,0x31,0x5d,0xbc,0xf0,0x32,0x72,0x97,0xf0,0x33, - 0x3d,0x9e,0xf0,0x34,0x52,0x79,0xf0,0x35,0x1d,0x80,0xf0,0x36,0x32,0x5b,0xf0,0x36, - 0xfd,0x62,0xf0,0x38,0x1b,0x78,0x70,0x38,0xdd,0x44,0xf0,0x39,0xfb,0x5a,0x70,0x3a, - 0xbd,0x26,0xf0,0x3b,0xdb,0x3c,0x70,0x3c,0xa6,0x43,0x70,0x3d,0xbb,0x1e,0x70,0x3e, - 0x86,0x25,0x70,0x3f,0x9b,0x0,0x70,0x40,0x66,0x7,0x70,0x41,0x84,0x1c,0xf0,0x42, - 0x45,0xe9,0x70,0x43,0x63,0xfe,0xf0,0x44,0x25,0xcb,0x70,0x45,0x43,0xe0,0xf0,0x45, - 0x98,0x32,0xe0,0x46,0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49, - 0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c, - 0xcc,0xbf,0x90,0x4d,0x8f,0xdd,0x90,0x4e,0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50, - 0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53,0x38,0xbe,0x10,0x54, - 0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56,0x3e,0x9e,0x90,0x56,0xf7,0x30,0x90,0x57, - 0xcf,0x2e,0x50,0x7f,0xff,0xff,0xff,0x1,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x2,0x3,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x3,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, - 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x5,0x5,0x0,0x0,0x1b,0x28,0x0,0x0, - 0x0,0x0,0x1b,0x68,0x0,0x4,0x0,0x0,0x2a,0x30,0x1,0x8,0x0,0x0,0x1c,0x20, - 0x0,0xd,0x0,0x0,0x38,0x40,0x1,0x11,0x0,0x0,0x2a,0x30,0x0,0x15,0x0,0x0, - 0x2a,0x30,0x1,0x8,0x0,0x0,0x1c,0x20,0x0,0xd,0x0,0x0,0x2a,0x30,0x1,0x8, - 0x0,0x0,0x1c,0x20,0x0,0xd,0x0,0x0,0x2a,0x30,0x0,0x15,0x4c,0x4d,0x54,0x0, - 0x49,0x4d,0x54,0x0,0x45,0x45,0x53,0x54,0x0,0x45,0x45,0x54,0x0,0x2b,0x30,0x34, - 0x0,0x2b,0x30,0x33,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x54,0x5a,0x69,0x66,0x32, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xb,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x84,0x0, - 0x0,0x0,0xb,0x0,0x0,0x0,0x19,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff, - 0xff,0xff,0xff,0x56,0xb6,0xc8,0xd8,0xff,0xff,0xff,0xff,0x90,0x8b,0xf5,0x98,0xff, - 0xff,0xff,0xff,0x9b,0xc,0x17,0x60,0xff,0xff,0xff,0xff,0x9b,0xd5,0xbe,0xd0,0xff, - 0xff,0xff,0xff,0xa2,0x65,0x63,0xe0,0xff,0xff,0xff,0xff,0xa3,0x7b,0x82,0x50,0xff, - 0xff,0xff,0xff,0xa4,0x4e,0x80,0x60,0xff,0xff,0xff,0xff,0xa5,0x3f,0xb4,0xd0,0xff, - 0xff,0xff,0xff,0xa6,0x25,0x27,0xe0,0xff,0xff,0xff,0xff,0xa7,0x27,0x7f,0xd0,0xff, - 0xff,0xff,0xff,0xaa,0x28,0x28,0x60,0xff,0xff,0xff,0xff,0xaa,0xe1,0xfd,0xd0,0xff, - 0xff,0xff,0xff,0xab,0xf9,0x89,0xe0,0xff,0xff,0xff,0xff,0xac,0xc3,0x31,0x50,0xff, - 0xff,0xff,0xff,0xc8,0x7f,0xee,0x60,0xff,0xff,0xff,0xff,0xc8,0xff,0xc1,0xd0,0xff, - 0xff,0xff,0xff,0xc9,0x4a,0xf5,0x60,0xff,0xff,0xff,0xff,0xca,0xce,0x80,0x50,0xff, - 0xff,0xff,0xff,0xcb,0xcb,0xae,0x60,0xff,0xff,0xff,0xff,0xcc,0xe5,0xc1,0x50,0xff, - 0xff,0xff,0xff,0xd1,0x71,0xeb,0xe0,0xff,0xff,0xff,0xff,0xd2,0x6b,0x9,0x50,0xff, - 0xff,0xff,0xff,0xd3,0xa2,0x39,0x60,0xff,0xff,0xff,0xff,0xd4,0x43,0x2,0x50,0xff, - 0xff,0xff,0xff,0xd5,0x4c,0xd,0xe0,0xff,0xff,0xff,0xff,0xd6,0x29,0x7b,0xd0,0xff, - 0xff,0xff,0xff,0xd7,0x2b,0xef,0xe0,0xff,0xff,0xff,0xff,0xd8,0x9,0x5d,0xd0,0xff, - 0xff,0xff,0xff,0xd9,0x2,0x97,0x60,0xff,0xff,0xff,0xff,0xd9,0xe9,0x3f,0xd0,0xff, - 0xff,0xff,0xff,0xda,0xef,0xa8,0x60,0xff,0xff,0xff,0xff,0xdb,0xd2,0x5c,0x50,0xff, - 0xff,0xff,0xff,0xdc,0xd4,0xd0,0x60,0xff,0xff,0xff,0xff,0xdd,0xb3,0x8f,0xd0,0xff, - 0xff,0xff,0xff,0xf1,0xf4,0xb9,0x60,0xff,0xff,0xff,0xff,0xf2,0x64,0xba,0xd0,0xff, - 0xff,0xff,0xff,0xf5,0x68,0x6,0x60,0xff,0xff,0xff,0xff,0xf6,0x1f,0x38,0xd0,0x0, - 0x0,0x0,0x0,0x0,0xa0,0xba,0xe0,0x0,0x0,0x0,0x0,0x1,0x6b,0xb3,0xd0,0x0, - 0x0,0x0,0x0,0x2,0x80,0x9c,0xe0,0x0,0x0,0x0,0x0,0x3,0x4b,0x95,0xd0,0x0, - 0x0,0x0,0x0,0x4,0x69,0xb9,0x60,0x0,0x0,0x0,0x0,0x5,0x34,0xb2,0x50,0x0, - 0x0,0x0,0x0,0x6,0x6e,0x93,0x70,0x0,0x0,0x0,0x0,0x7,0x39,0xa8,0x80,0x0, - 0x0,0x0,0x0,0x7,0xfb,0x75,0x0,0x0,0x0,0x0,0x0,0x9,0x19,0xa6,0xa0,0x0, - 0x0,0x0,0x0,0x9,0xdb,0x3a,0xe0,0x0,0x0,0x0,0x0,0xa,0xf0,0x7,0xd0,0x0, - 0x0,0x0,0x0,0xc,0x10,0xce,0x60,0x0,0x0,0x0,0x0,0xc,0xd9,0x24,0x50,0x0, - 0x0,0x0,0x0,0xd,0xa4,0x39,0x60,0x0,0x0,0x0,0x0,0xe,0xa6,0x91,0x50,0x0, - 0x0,0x0,0x0,0xf,0x84,0x1b,0x60,0x0,0x0,0x0,0x0,0x10,0x86,0x73,0x50,0x0, - 0x0,0x0,0x0,0x12,0x67,0x98,0xc0,0x0,0x0,0x0,0x0,0x13,0x4d,0x36,0x0,0x0, - 0x0,0x0,0x0,0x14,0x47,0x7a,0xc0,0x0,0x0,0x0,0x0,0x15,0x23,0xdd,0x80,0x0, - 0x0,0x0,0x0,0x16,0x27,0x5c,0xc0,0x0,0x0,0x0,0x0,0x17,0x3,0xbf,0x80,0x0, - 0x0,0x0,0x0,0x18,0x7,0x3e,0xc0,0x0,0x0,0x0,0x0,0x19,0x89,0x94,0x50,0x0, - 0x0,0x0,0x0,0x19,0xdc,0x94,0xc0,0x0,0x0,0x0,0x0,0x1c,0xc6,0xd3,0xd0,0x0, - 0x0,0x0,0x0,0x1d,0x9b,0x15,0x50,0x0,0x0,0x0,0x0,0x1e,0x8c,0x73,0xf0,0x0, - 0x0,0x0,0x0,0x1f,0x7c,0x64,0xf0,0x0,0x0,0x0,0x0,0x20,0x6c,0x55,0xf0,0x0, - 0x0,0x0,0x0,0x21,0x5c,0x46,0xf0,0x0,0x0,0x0,0x0,0x22,0x4c,0x37,0xf0,0x0, - 0x0,0x0,0x0,0x23,0x3c,0x28,0xf0,0x0,0x0,0x0,0x0,0x24,0x2c,0x19,0xf0,0x0, - 0x0,0x0,0x0,0x25,0x1c,0xa,0xf0,0x0,0x0,0x0,0x0,0x26,0xb,0xfb,0xf0,0x0, - 0x0,0x0,0x0,0x27,0x5,0x27,0x70,0x0,0x0,0x0,0x0,0x27,0xf5,0x18,0x70,0x0, - 0x0,0x0,0x0,0x28,0xe5,0x9,0x70,0x0,0x0,0x0,0x0,0x29,0xd4,0xfa,0x70,0x0, - 0x0,0x0,0x0,0x2a,0xc4,0xeb,0x70,0x0,0x0,0x0,0x0,0x2b,0xb4,0xdc,0x70,0x0, - 0x0,0x0,0x0,0x2c,0xa4,0xcd,0x70,0x0,0x0,0x0,0x0,0x2d,0x8b,0x83,0xf0,0x0, - 0x0,0x0,0x0,0x2e,0x84,0xaf,0x70,0x0,0x0,0x0,0x0,0x2f,0x74,0xa0,0x70,0x0, - 0x0,0x0,0x0,0x30,0x64,0x91,0x70,0x0,0x0,0x0,0x0,0x31,0x5d,0xbc,0xf0,0x0, - 0x0,0x0,0x0,0x32,0x72,0x97,0xf0,0x0,0x0,0x0,0x0,0x33,0x3d,0x9e,0xf0,0x0, - 0x0,0x0,0x0,0x34,0x52,0x79,0xf0,0x0,0x0,0x0,0x0,0x35,0x1d,0x80,0xf0,0x0, - 0x0,0x0,0x0,0x36,0x32,0x5b,0xf0,0x0,0x0,0x0,0x0,0x36,0xfd,0x62,0xf0,0x0, - 0x0,0x0,0x0,0x38,0x1b,0x78,0x70,0x0,0x0,0x0,0x0,0x38,0xdd,0x44,0xf0,0x0, - 0x0,0x0,0x0,0x39,0xfb,0x5a,0x70,0x0,0x0,0x0,0x0,0x3a,0xbd,0x26,0xf0,0x0, - 0x0,0x0,0x0,0x3b,0xdb,0x3c,0x70,0x0,0x0,0x0,0x0,0x3c,0xa6,0x43,0x70,0x0, - 0x0,0x0,0x0,0x3d,0xbb,0x1e,0x70,0x0,0x0,0x0,0x0,0x3e,0x86,0x25,0x70,0x0, - 0x0,0x0,0x0,0x3f,0x9b,0x0,0x70,0x0,0x0,0x0,0x0,0x40,0x66,0x7,0x70,0x0, - 0x0,0x0,0x0,0x41,0x84,0x1c,0xf0,0x0,0x0,0x0,0x0,0x42,0x45,0xe9,0x70,0x0, - 0x0,0x0,0x0,0x43,0x63,0xfe,0xf0,0x0,0x0,0x0,0x0,0x44,0x25,0xcb,0x70,0x0, - 0x0,0x0,0x0,0x45,0x43,0xe0,0xf0,0x0,0x0,0x0,0x0,0x45,0x98,0x32,0xe0,0x0, - 0x0,0x0,0x0,0x46,0x5,0xc9,0x90,0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0, - 0x0,0x0,0x0,0x47,0xee,0xe6,0x10,0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0, - 0x0,0x0,0x0,0x49,0xce,0xc8,0x10,0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0, - 0x0,0x0,0x0,0x4b,0xae,0xaa,0x10,0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0, - 0x0,0x0,0x0,0x4d,0x8f,0xdd,0x90,0x0,0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0, - 0x0,0x0,0x0,0x4f,0x6e,0x6e,0x10,0x0,0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0, - 0x0,0x0,0x0,0x51,0x57,0x8a,0x90,0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0, - 0x0,0x0,0x0,0x53,0x38,0xbe,0x10,0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0, - 0x0,0x0,0x0,0x55,0x17,0x4e,0x90,0x0,0x0,0x0,0x0,0x56,0x3e,0x9e,0x90,0x0, - 0x0,0x0,0x0,0x56,0xf7,0x30,0x90,0x0,0x0,0x0,0x0,0x57,0xcf,0x2e,0x50,0x0, - 0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x2,0x3,0x6,0x7,0x6,0x7,0x6, - 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, - 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, - 0x7,0x6,0x7,0x6,0x7,0x3,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, - 0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x5,0x5,0x0,0x0,0x1b,0x28,0x0, - 0x0,0x0,0x0,0x1b,0x68,0x0,0x4,0x0,0x0,0x2a,0x30,0x1,0x8,0x0,0x0,0x1c, - 0x20,0x0,0xd,0x0,0x0,0x38,0x40,0x1,0x11,0x0,0x0,0x2a,0x30,0x0,0x15,0x0, - 0x0,0x2a,0x30,0x1,0x8,0x0,0x0,0x1c,0x20,0x0,0xd,0x0,0x0,0x2a,0x30,0x1, - 0x8,0x0,0x0,0x1c,0x20,0x0,0xd,0x0,0x0,0x2a,0x30,0x0,0x15,0x4c,0x4d,0x54, - 0x0,0x49,0x4d,0x54,0x0,0x45,0x45,0x53,0x54,0x0,0x45,0x45,0x54,0x0,0x2b,0x30, - 0x34,0x0,0x2b,0x30,0x33,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0xa,0x3c,0x2b,0x30, - 0x33,0x3e,0x2d,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/CET - 0x0,0x0,0x8,0x36, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x88,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x9,0x9b,0xc,0x17,0x60,0x9b, - 0xd5,0xda,0xf0,0x9c,0xd9,0xae,0x90,0x9d,0xa4,0xb5,0x90,0x9e,0xb9,0x90,0x90,0x9f, - 0x84,0x97,0x90,0xc8,0x9,0x71,0x90,0xcc,0xe7,0x4b,0x10,0xcd,0xa9,0x17,0x90,0xce, - 0xa2,0x43,0x10,0xcf,0x92,0x34,0x10,0xd0,0x82,0x25,0x10,0xd1,0x72,0x16,0x10,0xd2, - 0x4e,0x40,0x90,0xd,0xa4,0x63,0x90,0xe,0x8b,0x1a,0x10,0xf,0x84,0x45,0x90,0x10, - 0x74,0x36,0x90,0x11,0x64,0x27,0x90,0x12,0x54,0x18,0x90,0x13,0x4d,0x44,0x10,0x14, - 0x33,0xfa,0x90,0x15,0x23,0xeb,0x90,0x16,0x13,0xdc,0x90,0x17,0x3,0xcd,0x90,0x17, - 0xf3,0xbe,0x90,0x18,0xe3,0xaf,0x90,0x19,0xd3,0xa0,0x90,0x1a,0xc3,0x91,0x90,0x1b, - 0xbc,0xbd,0x10,0x1c,0xac,0xae,0x10,0x1d,0x9c,0x9f,0x10,0x1e,0x8c,0x90,0x10,0x1f, - 0x7c,0x81,0x10,0x20,0x6c,0x72,0x10,0x21,0x5c,0x63,0x10,0x22,0x4c,0x54,0x10,0x23, - 0x3c,0x45,0x10,0x24,0x2c,0x36,0x10,0x25,0x1c,0x27,0x10,0x26,0xc,0x18,0x10,0x27, - 0x5,0x43,0x90,0x27,0xf5,0x34,0x90,0x28,0xe5,0x25,0x90,0x29,0xd5,0x16,0x90,0x2a, - 0xc5,0x7,0x90,0x2b,0xb4,0xf8,0x90,0x2c,0xa4,0xe9,0x90,0x2d,0x94,0xda,0x90,0x2e, - 0x84,0xcb,0x90,0x2f,0x74,0xbc,0x90,0x30,0x64,0xad,0x90,0x31,0x5d,0xd9,0x10,0x32, - 0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34,0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36, - 0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39, - 0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b,0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d, - 0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f,0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41, - 0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43,0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45, - 0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49, - 0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c, - 0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e,0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50, - 0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54, - 0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56,0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58, - 0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59,0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b, - 0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d,0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f, - 0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61,0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63, - 0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65,0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67, - 0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68,0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a, - 0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c,0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e, - 0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70,0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72, - 0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74,0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76, - 0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79, - 0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d, - 0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x0,0x1,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x0,0x0,0x1c,0x20,0x1,0x0,0x0,0x0,0xe,0x10,0x0,0x5,0x0, - 0x0,0x1c,0x20,0x1,0x0,0x0,0x0,0xe,0x10,0x0,0x5,0x43,0x45,0x53,0x54,0x0, - 0x43,0x45,0x54,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66, - 0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x88, - 0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x9,0xff,0xff,0xff,0xff,0x9b,0xc,0x17,0x60, - 0xff,0xff,0xff,0xff,0x9b,0xd5,0xda,0xf0,0xff,0xff,0xff,0xff,0x9c,0xd9,0xae,0x90, - 0xff,0xff,0xff,0xff,0x9d,0xa4,0xb5,0x90,0xff,0xff,0xff,0xff,0x9e,0xb9,0x90,0x90, - 0xff,0xff,0xff,0xff,0x9f,0x84,0x97,0x90,0xff,0xff,0xff,0xff,0xc8,0x9,0x71,0x90, - 0xff,0xff,0xff,0xff,0xcc,0xe7,0x4b,0x10,0xff,0xff,0xff,0xff,0xcd,0xa9,0x17,0x90, - 0xff,0xff,0xff,0xff,0xce,0xa2,0x43,0x10,0xff,0xff,0xff,0xff,0xcf,0x92,0x34,0x10, - 0xff,0xff,0xff,0xff,0xd0,0x82,0x25,0x10,0xff,0xff,0xff,0xff,0xd1,0x72,0x16,0x10, - 0xff,0xff,0xff,0xff,0xd2,0x4e,0x40,0x90,0x0,0x0,0x0,0x0,0xd,0xa4,0x63,0x90, - 0x0,0x0,0x0,0x0,0xe,0x8b,0x1a,0x10,0x0,0x0,0x0,0x0,0xf,0x84,0x45,0x90, - 0x0,0x0,0x0,0x0,0x10,0x74,0x36,0x90,0x0,0x0,0x0,0x0,0x11,0x64,0x27,0x90, - 0x0,0x0,0x0,0x0,0x12,0x54,0x18,0x90,0x0,0x0,0x0,0x0,0x13,0x4d,0x44,0x10, - 0x0,0x0,0x0,0x0,0x14,0x33,0xfa,0x90,0x0,0x0,0x0,0x0,0x15,0x23,0xeb,0x90, - 0x0,0x0,0x0,0x0,0x16,0x13,0xdc,0x90,0x0,0x0,0x0,0x0,0x17,0x3,0xcd,0x90, - 0x0,0x0,0x0,0x0,0x17,0xf3,0xbe,0x90,0x0,0x0,0x0,0x0,0x18,0xe3,0xaf,0x90, - 0x0,0x0,0x0,0x0,0x19,0xd3,0xa0,0x90,0x0,0x0,0x0,0x0,0x1a,0xc3,0x91,0x90, - 0x0,0x0,0x0,0x0,0x1b,0xbc,0xbd,0x10,0x0,0x0,0x0,0x0,0x1c,0xac,0xae,0x10, - 0x0,0x0,0x0,0x0,0x1d,0x9c,0x9f,0x10,0x0,0x0,0x0,0x0,0x1e,0x8c,0x90,0x10, - 0x0,0x0,0x0,0x0,0x1f,0x7c,0x81,0x10,0x0,0x0,0x0,0x0,0x20,0x6c,0x72,0x10, - 0x0,0x0,0x0,0x0,0x21,0x5c,0x63,0x10,0x0,0x0,0x0,0x0,0x22,0x4c,0x54,0x10, - 0x0,0x0,0x0,0x0,0x23,0x3c,0x45,0x10,0x0,0x0,0x0,0x0,0x24,0x2c,0x36,0x10, - 0x0,0x0,0x0,0x0,0x25,0x1c,0x27,0x10,0x0,0x0,0x0,0x0,0x26,0xc,0x18,0x10, - 0x0,0x0,0x0,0x0,0x27,0x5,0x43,0x90,0x0,0x0,0x0,0x0,0x27,0xf5,0x34,0x90, - 0x0,0x0,0x0,0x0,0x28,0xe5,0x25,0x90,0x0,0x0,0x0,0x0,0x29,0xd5,0x16,0x90, - 0x0,0x0,0x0,0x0,0x2a,0xc5,0x7,0x90,0x0,0x0,0x0,0x0,0x2b,0xb4,0xf8,0x90, - 0x0,0x0,0x0,0x0,0x2c,0xa4,0xe9,0x90,0x0,0x0,0x0,0x0,0x2d,0x94,0xda,0x90, - 0x0,0x0,0x0,0x0,0x2e,0x84,0xcb,0x90,0x0,0x0,0x0,0x0,0x2f,0x74,0xbc,0x90, - 0x0,0x0,0x0,0x0,0x30,0x64,0xad,0x90,0x0,0x0,0x0,0x0,0x31,0x5d,0xd9,0x10, - 0x0,0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d,0xbb,0x10, - 0x0,0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d,0x9d,0x10, - 0x0,0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd,0x7f,0x10, - 0x0,0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd,0x61,0x10, - 0x0,0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd,0x43,0x10, - 0x0,0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f,0x90, - 0x0,0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86,0x41,0x90, - 0x0,0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66,0x23,0x90, - 0x0,0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46,0x5,0x90, - 0x0,0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25,0xe7,0x90, - 0x0,0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5,0xc9,0x90, - 0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee,0xe6,0x10, - 0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce,0xc8,0x10, - 0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae,0xaa,0x10, - 0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c,0x10, - 0x0,0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e,0x10, - 0x0,0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57,0x8a,0x90, - 0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37,0x6c,0x90, - 0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17,0x4e,0x90, - 0x0,0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7,0x30,0x90, - 0x0,0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7,0x12,0x90, - 0x0,0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4,0x90, - 0x0,0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0,0x11,0x10, - 0x0,0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3,0x10, - 0x0,0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f,0xd5,0x10, - 0x0,0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f,0xb7,0x10, - 0x0,0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f,0x99,0x10, - 0x0,0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8,0xb5,0x90, - 0x0,0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8,0x97,0x90, - 0x0,0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8,0x79,0x90, - 0x0,0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b,0x90, - 0x0,0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88,0x3d,0x90, - 0x0,0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68,0x1f,0x90, - 0x0,0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51,0x3c,0x10, - 0x0,0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31,0x1e,0x10, - 0x0,0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11,0x0,0x10, - 0x0,0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0,0xe2,0x10, - 0x0,0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0,0xc4,0x10, - 0x0,0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6,0x10, - 0x0,0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99,0xc2,0x90, - 0x0,0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79,0xa4,0x90, - 0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x1,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x0,0x0,0x1c,0x20,0x1,0x0,0x0,0x0,0xe,0x10,0x0,0x5,0x0,0x0,0x1c,0x20, - 0x1,0x0,0x0,0x0,0xe,0x10,0x0,0x5,0x43,0x45,0x53,0x54,0x0,0x43,0x45,0x54, - 0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0xa,0x43,0x45,0x54,0x2d,0x31,0x43, - 0x45,0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2c,0x4d,0x31,0x30,0x2e,0x35, - 0x2e,0x30,0x2f,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/GMT - 0x0,0x0,0x0,0x7f, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, - 0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0, - 0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0, - 0x0,0x0,0x4,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0xa,0x47,0x4d,0x54,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Poland - 0x0,0x0,0xa,0x91, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xa8,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x1a,0x80,0x0,0x0,0x0,0x99, - 0xa8,0x2a,0xd0,0x9b,0xc,0x17,0x60,0x9b,0xd5,0xda,0xf0,0x9c,0xd9,0xae,0x90,0x9d, - 0xa4,0xb5,0x90,0x9e,0xb9,0x90,0x90,0x9f,0x84,0x97,0x90,0xa0,0x9a,0xb6,0x0,0xa1, - 0x65,0xbd,0x0,0xa6,0x7d,0x7c,0x60,0xc8,0x76,0xde,0x10,0xcc,0xe7,0x4b,0x10,0xcd, - 0xa9,0x17,0x90,0xce,0xa2,0x43,0x10,0xcf,0x92,0x34,0x10,0xd0,0x80,0xa9,0x60,0xd0, - 0x84,0xba,0x0,0xd1,0x95,0x92,0x70,0xd2,0x8a,0xbb,0x60,0xd3,0x62,0xff,0x70,0xd4, - 0x4b,0x23,0x90,0xd5,0x5e,0xad,0x10,0xd6,0x29,0xb4,0x10,0xd7,0x2c,0x1a,0x10,0xd8, - 0x9,0x96,0x10,0xd9,0x2,0xc1,0x90,0xd9,0xe9,0x78,0x10,0xe8,0x54,0xd2,0x0,0xe8, - 0xf1,0xb4,0x80,0xe9,0xe1,0xa5,0x80,0xea,0xd1,0x96,0x80,0xec,0x14,0x96,0x0,0xec, - 0xba,0xb3,0x0,0xed,0xaa,0xa4,0x0,0xee,0x9a,0x95,0x0,0xef,0xd4,0x5a,0x0,0xf0, - 0x7a,0x77,0x0,0xf1,0xb4,0x3c,0x0,0xf2,0x5a,0x59,0x0,0xf3,0x94,0x1e,0x0,0xf4, - 0x3a,0x3b,0x0,0xf5,0x7d,0x3a,0x80,0xf6,0x1a,0x1d,0x0,0xd,0x2a,0xfd,0x70,0xd, - 0xa4,0x55,0x80,0xe,0x8b,0xc,0x0,0xf,0x84,0x37,0x80,0x10,0x74,0x28,0x80,0x11, - 0x64,0x19,0x80,0x12,0x54,0xa,0x80,0x13,0x4d,0x36,0x0,0x14,0x33,0xec,0x80,0x15, - 0x23,0xdd,0x80,0x16,0x13,0xce,0x80,0x17,0x3,0xbf,0x80,0x17,0xf3,0xb0,0x80,0x18, - 0xe3,0xa1,0x80,0x19,0xd3,0x92,0x80,0x1a,0xc3,0x83,0x80,0x1b,0xbc,0xaf,0x0,0x1c, - 0xac,0xa0,0x0,0x1d,0x9c,0x91,0x0,0x1e,0x8c,0x82,0x0,0x1f,0x7c,0x73,0x0,0x20, - 0x6c,0x64,0x0,0x21,0x5c,0x55,0x0,0x21,0xda,0xd6,0xf0,0x22,0x4c,0x54,0x10,0x23, + 0x0,0x0,0xa8,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x1a,0x80,0x0,0x0,0x0,0x99, + 0xa8,0x2a,0xd0,0x9b,0xc,0x17,0x60,0x9b,0xd5,0xda,0xf0,0x9c,0xd9,0xae,0x90,0x9d, + 0xa4,0xb5,0x90,0x9e,0xb9,0x90,0x90,0x9f,0x84,0x97,0x90,0xa0,0x9a,0xb6,0x0,0xa1, + 0x65,0xbd,0x0,0xa6,0x7d,0x7c,0x60,0xc8,0x76,0xde,0x10,0xcc,0xe7,0x4b,0x10,0xcd, + 0xa9,0x17,0x90,0xce,0xa2,0x43,0x10,0xcf,0x92,0x34,0x10,0xd0,0x80,0xa9,0x60,0xd0, + 0x84,0xba,0x0,0xd1,0x95,0x92,0x70,0xd2,0x8a,0xbb,0x60,0xd3,0x62,0xff,0x70,0xd4, + 0x4b,0x23,0x90,0xd5,0x5e,0xad,0x10,0xd6,0x29,0xb4,0x10,0xd7,0x2c,0x1a,0x10,0xd8, + 0x9,0x96,0x10,0xd9,0x2,0xc1,0x90,0xd9,0xe9,0x78,0x10,0xe8,0x54,0xd2,0x0,0xe8, + 0xf1,0xb4,0x80,0xe9,0xe1,0xa5,0x80,0xea,0xd1,0x96,0x80,0xec,0x14,0x96,0x0,0xec, + 0xba,0xb3,0x0,0xed,0xaa,0xa4,0x0,0xee,0x9a,0x95,0x0,0xef,0xd4,0x5a,0x0,0xf0, + 0x7a,0x77,0x0,0xf1,0xb4,0x3c,0x0,0xf2,0x5a,0x59,0x0,0xf3,0x94,0x1e,0x0,0xf4, + 0x3a,0x3b,0x0,0xf5,0x7d,0x3a,0x80,0xf6,0x1a,0x1d,0x0,0xd,0x2a,0xfd,0x70,0xd, + 0xa4,0x55,0x80,0xe,0x8b,0xc,0x0,0xf,0x84,0x37,0x80,0x10,0x74,0x28,0x80,0x11, + 0x64,0x19,0x80,0x12,0x54,0xa,0x80,0x13,0x4d,0x36,0x0,0x14,0x33,0xec,0x80,0x15, + 0x23,0xdd,0x80,0x16,0x13,0xce,0x80,0x17,0x3,0xbf,0x80,0x17,0xf3,0xb0,0x80,0x18, + 0xe3,0xa1,0x80,0x19,0xd3,0x92,0x80,0x1a,0xc3,0x83,0x80,0x1b,0xbc,0xaf,0x0,0x1c, + 0xac,0xa0,0x0,0x1d,0x9c,0x91,0x0,0x1e,0x8c,0x82,0x0,0x1f,0x7c,0x73,0x0,0x20, + 0x6c,0x64,0x0,0x21,0x5c,0x55,0x0,0x21,0xda,0xd6,0xf0,0x22,0x4c,0x54,0x10,0x23, 0x3c,0x45,0x10,0x24,0x2c,0x36,0x10,0x25,0x1c,0x27,0x10,0x26,0xc,0x18,0x10,0x27, 0x5,0x43,0x90,0x27,0xf5,0x34,0x90,0x28,0xe5,0x25,0x90,0x29,0xd5,0x16,0x90,0x2a, 0xc5,0x7,0x90,0x2b,0xb4,0xf8,0x90,0x2c,0xa4,0xe9,0x90,0x2d,0x94,0xda,0x90,0x2e, @@ -1374,193 +1929,7 @@ static const unsigned char qt_resource_data[] = { 0x0,0x0,0x1,0x1,0xa,0x43,0x45,0x54,0x2d,0x31,0x43,0x45,0x53,0x54,0x2c,0x4d, 0x33,0x2e,0x35,0x2e,0x30,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30,0x2f,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/EST - 0x0,0x0,0x0,0x7f, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0xff,0xff,0xb9,0xb0,0x0, - 0x0,0x45,0x53,0x54,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0, - 0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0, - 0x0,0x0,0x4,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xb9,0xb0, - 0x0,0x0,0x45,0x53,0x54,0x0,0x0,0x0,0xa,0x45,0x53,0x54,0x35,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Israel - 0x0,0x0,0x8,0xd9, - 0x54, - 0x5a,0x69,0x66,0x33,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x8f,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x80,0x0,0x0,0x0,0x9e, - 0x30,0x45,0x88,0xc8,0x59,0xb2,0xe0,0xcc,0xe5,0xc1,0x50,0xcd,0xac,0xfe,0x0,0xce, - 0xc6,0xf4,0xd0,0xcf,0x8f,0x66,0xe0,0xd0,0xa9,0x79,0xd0,0xd1,0x84,0x60,0xe0,0xd2, - 0x8a,0xc9,0x70,0xd3,0x65,0xb0,0x80,0xd4,0x6b,0xe0,0xd0,0xd7,0x5a,0x14,0x60,0xd7, - 0xdf,0x1f,0xc0,0xd8,0x2f,0xb5,0x70,0xd9,0x1e,0x46,0xe0,0xda,0x10,0xe8,0xf0,0xda, - 0xeb,0xb3,0xe0,0xdb,0xb4,0x34,0x0,0xdc,0xb9,0x20,0xe0,0xdd,0xe0,0x8d,0x0,0xde, - 0xb4,0xce,0x80,0xdf,0xa4,0xbf,0x80,0xe0,0x8b,0x76,0x0,0xe1,0x56,0x7d,0x0,0xe2, - 0xbe,0x4a,0x60,0xe3,0x36,0x34,0xd0,0xe4,0x9c,0xf7,0x0,0xe5,0x16,0x16,0xd0,0xe6, - 0x74,0xd3,0xe0,0xe7,0x11,0xd2,0x80,0xe8,0x27,0xff,0x0,0xe8,0xe8,0x4f,0xd0,0x8, - 0x7c,0x8b,0xe0,0x8,0xfd,0xb0,0xd0,0x9,0xf6,0xea,0x60,0xa,0xa6,0x33,0xd0,0x1c, - 0xbe,0xf8,0xe0,0x1d,0x89,0xf1,0xd0,0x1e,0xcc,0xff,0x60,0x1f,0x60,0x99,0x50,0x20, - 0x82,0xb1,0x60,0x21,0x49,0xb5,0xd0,0x22,0x5e,0x9e,0xe0,0x23,0x20,0x5d,0x50,0x24, - 0x5a,0x30,0x60,0x25,0x0,0x3f,0x50,0x26,0xb,0xed,0xe0,0x26,0xd6,0xe6,0xd0,0x27, - 0xeb,0xcf,0xe0,0x28,0xc0,0x3,0x50,0x29,0xd4,0xec,0x60,0x2a,0xa9,0x1f,0xd0,0x2b, - 0xbb,0x65,0xe0,0x2c,0x89,0x1,0xd0,0x2d,0x9b,0x47,0xe0,0x2e,0x5f,0xa9,0x50,0x2f, - 0x7b,0x29,0xe0,0x30,0x48,0xc5,0xd0,0x31,0x48,0x96,0xe0,0x32,0x3c,0x6e,0x50,0x33, - 0x31,0xb3,0x60,0x34,0x1a,0xfe,0xd0,0x35,0x11,0x95,0x60,0x35,0xf1,0xa6,0x50,0x37, - 0x4,0x8,0x80,0x37,0xcf,0x1,0x70,0x38,0xf6,0x5f,0x80,0x39,0xdc,0xf9,0xe0,0x3a, - 0xd0,0xed,0x70,0x3b,0xae,0x5b,0x60,0x3c,0xa3,0xa0,0x70,0x3d,0xa0,0xb2,0x60,0x3e, - 0x83,0x82,0x70,0x3f,0x7c,0x9f,0xe0,0x40,0x73,0x36,0x70,0x41,0x50,0xa4,0x60,0x42, - 0x4c,0x8f,0x0,0x43,0x48,0x4f,0x70,0x44,0x2c,0x71,0x0,0x45,0x1e,0xf6,0xf0,0x46, - 0xc,0x53,0x0,0x46,0xec,0x63,0xf0,0x47,0xec,0x35,0x0,0x48,0xe7,0xf5,0x70,0x49, - 0xcc,0x17,0x0,0x4a,0xbe,0x9c,0xf0,0x4b,0xab,0xf9,0x0,0x4c,0x8c,0x9,0xf0,0x4d, - 0x95,0x15,0x80,0x4e,0x87,0x9b,0x70,0x4f,0x74,0xf7,0x80,0x50,0x5e,0x42,0xf0,0x51, - 0x54,0xd9,0x80,0x52,0x6c,0x49,0x70,0x53,0x34,0xbb,0x80,0x54,0x4c,0x2b,0x70,0x55, - 0x14,0x9d,0x80,0x56,0x2c,0xd,0x70,0x56,0xf4,0x7f,0x80,0x58,0x15,0x29,0xf0,0x58, - 0xd4,0x61,0x80,0x59,0xf5,0xb,0xf0,0x5a,0xb4,0x43,0x80,0x5b,0xd4,0xed,0xf0,0x5c, - 0x9d,0x60,0x0,0x5d,0xb4,0xcf,0xf0,0x5e,0x7d,0x42,0x0,0x5f,0x94,0xb1,0xf0,0x60, - 0x5d,0x24,0x0,0x61,0x7d,0xce,0x70,0x62,0x3d,0x6,0x0,0x63,0x5d,0xb0,0x70,0x64, - 0x1c,0xe8,0x0,0x65,0x3d,0x92,0x70,0x66,0x6,0x4,0x80,0x67,0x1d,0x74,0x70,0x67, - 0xe5,0xe6,0x80,0x68,0xfd,0x56,0x70,0x69,0xc5,0xc8,0x80,0x6a,0xdd,0x38,0x70,0x6b, - 0xa5,0xaa,0x80,0x6c,0xc6,0x54,0xf0,0x6d,0x85,0x8c,0x80,0x6e,0xa6,0x36,0xf0,0x6f, - 0x65,0x6e,0x80,0x70,0x86,0x18,0xf0,0x71,0x4e,0x8b,0x0,0x72,0x65,0xfa,0xf0,0x73, - 0x2e,0x6d,0x0,0x74,0x45,0xdc,0xf0,0x75,0xe,0x4f,0x0,0x76,0x2e,0xf9,0x70,0x76, - 0xee,0x31,0x0,0x78,0xe,0xdb,0x70,0x78,0xce,0x13,0x0,0x79,0xee,0xbd,0x70,0x7a, - 0xad,0xf5,0x0,0x7b,0xce,0x9f,0x70,0x7c,0x97,0x11,0x80,0x7d,0xae,0x81,0x70,0x7e, - 0x76,0xf3,0x80,0x7f,0x8e,0x63,0x70,0x1,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x4,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x0,0x0,0x21,0x6,0x0,0x0,0x0,0x0,0x20,0xf8, - 0x0,0x4,0x0,0x0,0x2a,0x30,0x1,0x8,0x0,0x0,0x1c,0x20,0x0,0xc,0x0,0x0, - 0x38,0x40,0x1,0x10,0x0,0x0,0x2a,0x30,0x1,0x8,0x4c,0x4d,0x54,0x0,0x4a,0x4d, - 0x54,0x0,0x49,0x44,0x54,0x0,0x49,0x53,0x54,0x0,0x49,0x44,0x44,0x54,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x33, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x90,0x0, - 0x0,0x0,0x6,0x0,0x0,0x0,0x15,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff, - 0xff,0xff,0xff,0x56,0xb6,0xc2,0xfa,0xff,0xff,0xff,0xff,0x9e,0x30,0x45,0x88,0xff, - 0xff,0xff,0xff,0xc8,0x59,0xb2,0xe0,0xff,0xff,0xff,0xff,0xcc,0xe5,0xc1,0x50,0xff, - 0xff,0xff,0xff,0xcd,0xac,0xfe,0x0,0xff,0xff,0xff,0xff,0xce,0xc6,0xf4,0xd0,0xff, - 0xff,0xff,0xff,0xcf,0x8f,0x66,0xe0,0xff,0xff,0xff,0xff,0xd0,0xa9,0x79,0xd0,0xff, - 0xff,0xff,0xff,0xd1,0x84,0x60,0xe0,0xff,0xff,0xff,0xff,0xd2,0x8a,0xc9,0x70,0xff, - 0xff,0xff,0xff,0xd3,0x65,0xb0,0x80,0xff,0xff,0xff,0xff,0xd4,0x6b,0xe0,0xd0,0xff, - 0xff,0xff,0xff,0xd7,0x5a,0x14,0x60,0xff,0xff,0xff,0xff,0xd7,0xdf,0x1f,0xc0,0xff, - 0xff,0xff,0xff,0xd8,0x2f,0xb5,0x70,0xff,0xff,0xff,0xff,0xd9,0x1e,0x46,0xe0,0xff, - 0xff,0xff,0xff,0xda,0x10,0xe8,0xf0,0xff,0xff,0xff,0xff,0xda,0xeb,0xb3,0xe0,0xff, - 0xff,0xff,0xff,0xdb,0xb4,0x34,0x0,0xff,0xff,0xff,0xff,0xdc,0xb9,0x20,0xe0,0xff, - 0xff,0xff,0xff,0xdd,0xe0,0x8d,0x0,0xff,0xff,0xff,0xff,0xde,0xb4,0xce,0x80,0xff, - 0xff,0xff,0xff,0xdf,0xa4,0xbf,0x80,0xff,0xff,0xff,0xff,0xe0,0x8b,0x76,0x0,0xff, - 0xff,0xff,0xff,0xe1,0x56,0x7d,0x0,0xff,0xff,0xff,0xff,0xe2,0xbe,0x4a,0x60,0xff, - 0xff,0xff,0xff,0xe3,0x36,0x34,0xd0,0xff,0xff,0xff,0xff,0xe4,0x9c,0xf7,0x0,0xff, - 0xff,0xff,0xff,0xe5,0x16,0x16,0xd0,0xff,0xff,0xff,0xff,0xe6,0x74,0xd3,0xe0,0xff, - 0xff,0xff,0xff,0xe7,0x11,0xd2,0x80,0xff,0xff,0xff,0xff,0xe8,0x27,0xff,0x0,0xff, - 0xff,0xff,0xff,0xe8,0xe8,0x4f,0xd0,0x0,0x0,0x0,0x0,0x8,0x7c,0x8b,0xe0,0x0, - 0x0,0x0,0x0,0x8,0xfd,0xb0,0xd0,0x0,0x0,0x0,0x0,0x9,0xf6,0xea,0x60,0x0, - 0x0,0x0,0x0,0xa,0xa6,0x33,0xd0,0x0,0x0,0x0,0x0,0x1c,0xbe,0xf8,0xe0,0x0, - 0x0,0x0,0x0,0x1d,0x89,0xf1,0xd0,0x0,0x0,0x0,0x0,0x1e,0xcc,0xff,0x60,0x0, - 0x0,0x0,0x0,0x1f,0x60,0x99,0x50,0x0,0x0,0x0,0x0,0x20,0x82,0xb1,0x60,0x0, - 0x0,0x0,0x0,0x21,0x49,0xb5,0xd0,0x0,0x0,0x0,0x0,0x22,0x5e,0x9e,0xe0,0x0, - 0x0,0x0,0x0,0x23,0x20,0x5d,0x50,0x0,0x0,0x0,0x0,0x24,0x5a,0x30,0x60,0x0, - 0x0,0x0,0x0,0x25,0x0,0x3f,0x50,0x0,0x0,0x0,0x0,0x26,0xb,0xed,0xe0,0x0, - 0x0,0x0,0x0,0x26,0xd6,0xe6,0xd0,0x0,0x0,0x0,0x0,0x27,0xeb,0xcf,0xe0,0x0, - 0x0,0x0,0x0,0x28,0xc0,0x3,0x50,0x0,0x0,0x0,0x0,0x29,0xd4,0xec,0x60,0x0, - 0x0,0x0,0x0,0x2a,0xa9,0x1f,0xd0,0x0,0x0,0x0,0x0,0x2b,0xbb,0x65,0xe0,0x0, - 0x0,0x0,0x0,0x2c,0x89,0x1,0xd0,0x0,0x0,0x0,0x0,0x2d,0x9b,0x47,0xe0,0x0, - 0x0,0x0,0x0,0x2e,0x5f,0xa9,0x50,0x0,0x0,0x0,0x0,0x2f,0x7b,0x29,0xe0,0x0, - 0x0,0x0,0x0,0x30,0x48,0xc5,0xd0,0x0,0x0,0x0,0x0,0x31,0x48,0x96,0xe0,0x0, - 0x0,0x0,0x0,0x32,0x3c,0x6e,0x50,0x0,0x0,0x0,0x0,0x33,0x31,0xb3,0x60,0x0, - 0x0,0x0,0x0,0x34,0x1a,0xfe,0xd0,0x0,0x0,0x0,0x0,0x35,0x11,0x95,0x60,0x0, - 0x0,0x0,0x0,0x35,0xf1,0xa6,0x50,0x0,0x0,0x0,0x0,0x37,0x4,0x8,0x80,0x0, - 0x0,0x0,0x0,0x37,0xcf,0x1,0x70,0x0,0x0,0x0,0x0,0x38,0xf6,0x5f,0x80,0x0, - 0x0,0x0,0x0,0x39,0xdc,0xf9,0xe0,0x0,0x0,0x0,0x0,0x3a,0xd0,0xed,0x70,0x0, - 0x0,0x0,0x0,0x3b,0xae,0x5b,0x60,0x0,0x0,0x0,0x0,0x3c,0xa3,0xa0,0x70,0x0, - 0x0,0x0,0x0,0x3d,0xa0,0xb2,0x60,0x0,0x0,0x0,0x0,0x3e,0x83,0x82,0x70,0x0, - 0x0,0x0,0x0,0x3f,0x7c,0x9f,0xe0,0x0,0x0,0x0,0x0,0x40,0x73,0x36,0x70,0x0, - 0x0,0x0,0x0,0x41,0x50,0xa4,0x60,0x0,0x0,0x0,0x0,0x42,0x4c,0x8f,0x0,0x0, - 0x0,0x0,0x0,0x43,0x48,0x4f,0x70,0x0,0x0,0x0,0x0,0x44,0x2c,0x71,0x0,0x0, - 0x0,0x0,0x0,0x45,0x1e,0xf6,0xf0,0x0,0x0,0x0,0x0,0x46,0xc,0x53,0x0,0x0, - 0x0,0x0,0x0,0x46,0xec,0x63,0xf0,0x0,0x0,0x0,0x0,0x47,0xec,0x35,0x0,0x0, - 0x0,0x0,0x0,0x48,0xe7,0xf5,0x70,0x0,0x0,0x0,0x0,0x49,0xcc,0x17,0x0,0x0, - 0x0,0x0,0x0,0x4a,0xbe,0x9c,0xf0,0x0,0x0,0x0,0x0,0x4b,0xab,0xf9,0x0,0x0, - 0x0,0x0,0x0,0x4c,0x8c,0x9,0xf0,0x0,0x0,0x0,0x0,0x4d,0x95,0x15,0x80,0x0, - 0x0,0x0,0x0,0x4e,0x87,0x9b,0x70,0x0,0x0,0x0,0x0,0x4f,0x74,0xf7,0x80,0x0, - 0x0,0x0,0x0,0x50,0x5e,0x42,0xf0,0x0,0x0,0x0,0x0,0x51,0x54,0xd9,0x80,0x0, - 0x0,0x0,0x0,0x52,0x6c,0x49,0x70,0x0,0x0,0x0,0x0,0x53,0x34,0xbb,0x80,0x0, - 0x0,0x0,0x0,0x54,0x4c,0x2b,0x70,0x0,0x0,0x0,0x0,0x55,0x14,0x9d,0x80,0x0, - 0x0,0x0,0x0,0x56,0x2c,0xd,0x70,0x0,0x0,0x0,0x0,0x56,0xf4,0x7f,0x80,0x0, - 0x0,0x0,0x0,0x58,0x15,0x29,0xf0,0x0,0x0,0x0,0x0,0x58,0xd4,0x61,0x80,0x0, - 0x0,0x0,0x0,0x59,0xf5,0xb,0xf0,0x0,0x0,0x0,0x0,0x5a,0xb4,0x43,0x80,0x0, - 0x0,0x0,0x0,0x5b,0xd4,0xed,0xf0,0x0,0x0,0x0,0x0,0x5c,0x9d,0x60,0x0,0x0, - 0x0,0x0,0x0,0x5d,0xb4,0xcf,0xf0,0x0,0x0,0x0,0x0,0x5e,0x7d,0x42,0x0,0x0, - 0x0,0x0,0x0,0x5f,0x94,0xb1,0xf0,0x0,0x0,0x0,0x0,0x60,0x5d,0x24,0x0,0x0, - 0x0,0x0,0x0,0x61,0x7d,0xce,0x70,0x0,0x0,0x0,0x0,0x62,0x3d,0x6,0x0,0x0, - 0x0,0x0,0x0,0x63,0x5d,0xb0,0x70,0x0,0x0,0x0,0x0,0x64,0x1c,0xe8,0x0,0x0, - 0x0,0x0,0x0,0x65,0x3d,0x92,0x70,0x0,0x0,0x0,0x0,0x66,0x6,0x4,0x80,0x0, - 0x0,0x0,0x0,0x67,0x1d,0x74,0x70,0x0,0x0,0x0,0x0,0x67,0xe5,0xe6,0x80,0x0, - 0x0,0x0,0x0,0x68,0xfd,0x56,0x70,0x0,0x0,0x0,0x0,0x69,0xc5,0xc8,0x80,0x0, - 0x0,0x0,0x0,0x6a,0xdd,0x38,0x70,0x0,0x0,0x0,0x0,0x6b,0xa5,0xaa,0x80,0x0, - 0x0,0x0,0x0,0x6c,0xc6,0x54,0xf0,0x0,0x0,0x0,0x0,0x6d,0x85,0x8c,0x80,0x0, - 0x0,0x0,0x0,0x6e,0xa6,0x36,0xf0,0x0,0x0,0x0,0x0,0x6f,0x65,0x6e,0x80,0x0, - 0x0,0x0,0x0,0x70,0x86,0x18,0xf0,0x0,0x0,0x0,0x0,0x71,0x4e,0x8b,0x0,0x0, - 0x0,0x0,0x0,0x72,0x65,0xfa,0xf0,0x0,0x0,0x0,0x0,0x73,0x2e,0x6d,0x0,0x0, - 0x0,0x0,0x0,0x74,0x45,0xdc,0xf0,0x0,0x0,0x0,0x0,0x75,0xe,0x4f,0x0,0x0, - 0x0,0x0,0x0,0x76,0x2e,0xf9,0x70,0x0,0x0,0x0,0x0,0x76,0xee,0x31,0x0,0x0, - 0x0,0x0,0x0,0x78,0xe,0xdb,0x70,0x0,0x0,0x0,0x0,0x78,0xce,0x13,0x0,0x0, - 0x0,0x0,0x0,0x79,0xee,0xbd,0x70,0x0,0x0,0x0,0x0,0x7a,0xad,0xf5,0x0,0x0, - 0x0,0x0,0x0,0x7b,0xce,0x9f,0x70,0x0,0x0,0x0,0x0,0x7c,0x97,0x11,0x80,0x0, - 0x0,0x0,0x0,0x7d,0xae,0x81,0x70,0x0,0x0,0x0,0x0,0x7e,0x76,0xf3,0x80,0x0, - 0x0,0x0,0x0,0x7f,0x8e,0x63,0x70,0x0,0x1,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x4,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x0,0x0,0x21,0x6,0x0,0x0,0x0,0x0,0x20, - 0xf8,0x0,0x4,0x0,0x0,0x2a,0x30,0x1,0x8,0x0,0x0,0x1c,0x20,0x0,0xc,0x0, - 0x0,0x38,0x40,0x1,0x10,0x0,0x0,0x2a,0x30,0x1,0x8,0x4c,0x4d,0x54,0x0,0x4a, - 0x4d,0x54,0x0,0x49,0x44,0x54,0x0,0x49,0x53,0x54,0x0,0x49,0x44,0x44,0x54,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x49,0x53,0x54, - 0x2d,0x32,0x49,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x34,0x2e,0x34,0x2f,0x32,0x36,0x2c, - 0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Singapore - 0x0,0x0,0x1,0xac, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x9,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x1b,0x80,0x0,0x0,0x0,0x86, - 0x83,0x85,0xa3,0xba,0x67,0x4e,0x90,0xc0,0xa,0xe4,0x60,0xca,0xb3,0xe5,0x60,0xcb, - 0x91,0x5f,0x8,0xd2,0x48,0x6d,0xf0,0xf7,0xba,0x4d,0x88,0x16,0x91,0xf5,0x8,0x1, - 0x2,0x3,0x4,0x5,0x6,0x5,0x7,0x8,0x0,0x0,0x61,0x5d,0x0,0x0,0x0,0x0, - 0x61,0x5d,0x0,0x4,0x0,0x0,0x62,0x70,0x0,0x8,0x0,0x0,0x67,0x20,0x1,0xd, - 0x0,0x0,0x67,0x20,0x0,0x8,0x0,0x0,0x69,0x78,0x0,0x8,0x0,0x0,0x7e,0x90, - 0x0,0x13,0x0,0x0,0x69,0x78,0x0,0x17,0x0,0x0,0x70,0x80,0x0,0x17,0x4c,0x4d, - 0x54,0x0,0x53,0x4d,0x54,0x0,0x4d,0x41,0x4c,0x54,0x0,0x4d,0x41,0x4c,0x53,0x54, - 0x0,0x4a,0x53,0x54,0x0,0x53,0x47,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x9,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x0, - 0x0,0x0,0x9,0x0,0x0,0x0,0x1b,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff, - 0xff,0xff,0xff,0x7e,0x36,0x53,0xa3,0xff,0xff,0xff,0xff,0x86,0x83,0x85,0xa3,0xff, - 0xff,0xff,0xff,0xba,0x67,0x4e,0x90,0xff,0xff,0xff,0xff,0xc0,0xa,0xe4,0x60,0xff, - 0xff,0xff,0xff,0xca,0xb3,0xe5,0x60,0xff,0xff,0xff,0xff,0xcb,0x91,0x5f,0x8,0xff, - 0xff,0xff,0xff,0xd2,0x48,0x6d,0xf0,0xff,0xff,0xff,0xff,0xf7,0xba,0x4d,0x88,0x0, - 0x0,0x0,0x0,0x16,0x91,0xf5,0x8,0x0,0x1,0x2,0x3,0x4,0x5,0x6,0x5,0x7, - 0x8,0x0,0x0,0x61,0x5d,0x0,0x0,0x0,0x0,0x61,0x5d,0x0,0x4,0x0,0x0,0x62, - 0x70,0x0,0x8,0x0,0x0,0x67,0x20,0x1,0xd,0x0,0x0,0x67,0x20,0x0,0x8,0x0, - 0x0,0x69,0x78,0x0,0x8,0x0,0x0,0x7e,0x90,0x0,0x13,0x0,0x0,0x69,0x78,0x0, - 0x17,0x0,0x0,0x70,0x80,0x0,0x17,0x4c,0x4d,0x54,0x0,0x53,0x4d,0x54,0x0,0x4d, - 0x41,0x4c,0x54,0x0,0x4d,0x41,0x4c,0x53,0x54,0x0,0x4a,0x53,0x54,0x0,0x53,0x47, - 0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0xa,0x53,0x47,0x54,0x2d,0x38,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/GMT-0 + // /home/konrad/src/smoke/tzone/zoneinfo/Greenwich 0x0,0x0,0x0,0x7f, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, @@ -1571,227 +1940,8 @@ static const unsigned char qt_resource_data[] = { 0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x4,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0xa,0x47,0x4d,0x54,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/HST - 0x0,0x0,0x0,0x80, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0xff,0xff,0x73,0x60,0x0, - 0x0,0x48,0x53,0x54,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0, - 0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0, - 0x0,0x0,0x4,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0x73,0x60, - 0x0,0x0,0x48,0x53,0x54,0x0,0x0,0x0,0xa,0x48,0x53,0x54,0x31,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/PRC - 0x0,0x0,0x1,0x9e, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x11,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0xc8, - 0x5c,0x1,0x80,0xc8,0xfa,0x27,0x70,0xc9,0xd5,0xe,0x80,0xca,0xdb,0x5a,0xf0,0x1e, - 0xba,0x36,0x0,0x1f,0x69,0x7f,0x70,0x20,0x7e,0x68,0x80,0x21,0x49,0x61,0x70,0x22, - 0x5e,0x4a,0x80,0x23,0x29,0x43,0x70,0x24,0x47,0x67,0x0,0x25,0x12,0x5f,0xf0,0x26, - 0x27,0x49,0x0,0x26,0xf2,0x41,0xf0,0x28,0x7,0x2b,0x0,0x28,0xd2,0x23,0xf0,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x0,0x0,0x71,0xd7,0x0,0x0,0x0,0x0,0x7e,0x90,0x1,0x4,0x0,0x0,0x70,0x80, - 0x0,0x8,0x4c,0x4d,0x54,0x0,0x43,0x44,0x54,0x0,0x43,0x53,0x54,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc, - 0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x7e,0x36,0x43,0x29, - 0xff,0xff,0xff,0xff,0xc8,0x5c,0x1,0x80,0xff,0xff,0xff,0xff,0xc8,0xfa,0x27,0x70, - 0xff,0xff,0xff,0xff,0xc9,0xd5,0xe,0x80,0xff,0xff,0xff,0xff,0xca,0xdb,0x5a,0xf0, - 0x0,0x0,0x0,0x0,0x1e,0xba,0x36,0x0,0x0,0x0,0x0,0x0,0x1f,0x69,0x7f,0x70, - 0x0,0x0,0x0,0x0,0x20,0x7e,0x68,0x80,0x0,0x0,0x0,0x0,0x21,0x49,0x61,0x70, - 0x0,0x0,0x0,0x0,0x22,0x5e,0x4a,0x80,0x0,0x0,0x0,0x0,0x23,0x29,0x43,0x70, - 0x0,0x0,0x0,0x0,0x24,0x47,0x67,0x0,0x0,0x0,0x0,0x0,0x25,0x12,0x5f,0xf0, - 0x0,0x0,0x0,0x0,0x26,0x27,0x49,0x0,0x0,0x0,0x0,0x0,0x26,0xf2,0x41,0xf0, - 0x0,0x0,0x0,0x0,0x28,0x7,0x2b,0x0,0x0,0x0,0x0,0x0,0x28,0xd2,0x23,0xf0, - 0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x0,0x0,0x71,0xd7,0x0,0x0,0x0,0x0,0x7e,0x90,0x1,0x4,0x0,0x0, - 0x70,0x80,0x0,0x8,0x4c,0x4d,0x54,0x0,0x43,0x44,0x54,0x0,0x43,0x53,0x54,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x43,0x53,0x54,0x2d,0x38,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/NZ - 0x0,0x0,0x9,0x9c, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x9c,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x13,0x80,0x0,0x0,0x0,0xb0, - 0xb4,0xb2,0xe8,0xb1,0x51,0x87,0x58,0xb2,0x78,0xe5,0x68,0xb3,0x43,0xe5,0x60,0xb4, - 0x58,0xc7,0x68,0xb5,0x23,0xc7,0x60,0xb6,0x38,0xa9,0x68,0xb7,0x3,0xa9,0x60,0xb8, - 0x18,0x8b,0x68,0xb8,0xec,0xc5,0xe0,0xb9,0xf8,0x6d,0x68,0xba,0xcc,0xa7,0xe0,0xbb, - 0xd8,0x4f,0x68,0xbc,0xe3,0xe8,0xe0,0xbd,0xae,0xf6,0xe8,0xbe,0xc3,0xca,0xe0,0xbf, - 0x8e,0xd8,0xe8,0xc0,0xa3,0xac,0xe0,0xc1,0x6e,0xba,0xe8,0xc2,0x83,0x8e,0xe0,0xc3, - 0x4e,0x9c,0xe8,0xc4,0x63,0x70,0xe0,0xc5,0x2e,0x7e,0xe8,0xc6,0x4c,0x8d,0x60,0xc7, - 0xe,0x60,0xe8,0xc8,0x2c,0x6f,0x60,0xc8,0xf7,0x7d,0x68,0xd2,0xda,0x9a,0x40,0x9, - 0x18,0xfd,0xe0,0x9,0xac,0xa5,0xe0,0xa,0xef,0xa5,0x60,0xb,0x9e,0xfc,0xe0,0xc, - 0xd8,0xc1,0xe0,0xd,0x7e,0xde,0xe0,0xe,0xb8,0xa3,0xe0,0xf,0x5e,0xc0,0xe0,0x10, - 0x98,0x85,0xe0,0x11,0x3e,0xa2,0xe0,0x12,0x78,0x67,0xe0,0x13,0x1e,0x84,0xe0,0x14, - 0x58,0x49,0xe0,0x14,0xfe,0x66,0xe0,0x16,0x38,0x2b,0xe0,0x16,0xe7,0x83,0x60,0x18, - 0x21,0x48,0x60,0x18,0xc7,0x65,0x60,0x1a,0x1,0x2a,0x60,0x1a,0xa7,0x47,0x60,0x1b, - 0xe1,0xc,0x60,0x1c,0x87,0x29,0x60,0x1d,0xc0,0xee,0x60,0x1e,0x67,0xb,0x60,0x1f, - 0xa0,0xd0,0x60,0x20,0x46,0xed,0x60,0x21,0x80,0xb2,0x60,0x22,0x30,0x9,0xe0,0x23, - 0x69,0xce,0xe0,0x24,0xf,0xeb,0xe0,0x25,0x2e,0x1,0x60,0x26,0x2,0x42,0xe0,0x27, - 0xd,0xe3,0x60,0x27,0xe2,0x24,0xe0,0x28,0xed,0xc5,0x60,0x29,0xc2,0x6,0xe0,0x2a, - 0xcd,0xa7,0x60,0x2b,0xab,0x23,0x60,0x2c,0xad,0x89,0x60,0x2d,0x8b,0x5,0x60,0x2e, - 0x8d,0x6b,0x60,0x2f,0x6a,0xe7,0x60,0x30,0x6d,0x4d,0x60,0x31,0x4a,0xc9,0x60,0x32, - 0x56,0x69,0xe0,0x33,0x2a,0xab,0x60,0x34,0x36,0x4b,0xe0,0x35,0xa,0x8d,0x60,0x36, - 0x16,0x2d,0xe0,0x36,0xf3,0xa9,0xe0,0x37,0xf6,0xf,0xe0,0x38,0xd3,0x8b,0xe0,0x39, - 0xd5,0xf1,0xe0,0x3a,0xb3,0x6d,0xe0,0x3b,0xbf,0xe,0x60,0x3c,0x93,0x4f,0xe0,0x3d, - 0x9e,0xf0,0x60,0x3e,0x73,0x31,0xe0,0x3f,0x7e,0xd2,0x60,0x40,0x5c,0x4e,0x60,0x41, - 0x5e,0xb4,0x60,0x42,0x3c,0x30,0x60,0x43,0x3e,0x96,0x60,0x44,0x1c,0x12,0x60,0x45, - 0x1e,0x78,0x60,0x45,0xfb,0xf4,0x60,0x46,0xfe,0x5a,0x60,0x47,0xf7,0x85,0xe0,0x48, - 0xde,0x3c,0x60,0x49,0xd7,0x67,0xe0,0x4a,0xbe,0x1e,0x60,0x4b,0xb7,0x49,0xe0,0x4c, - 0x9e,0x0,0x60,0x4d,0x97,0x2b,0xe0,0x4e,0x7d,0xe2,0x60,0x4f,0x77,0xd,0xe0,0x50, - 0x66,0xfe,0xe0,0x51,0x60,0x2a,0x60,0x52,0x46,0xe0,0xe0,0x53,0x40,0xc,0x60,0x54, - 0x26,0xc2,0xe0,0x55,0x1f,0xee,0x60,0x56,0x6,0xa4,0xe0,0x56,0xff,0xd0,0x60,0x57, - 0xe6,0x86,0xe0,0x58,0xdf,0xb2,0x60,0x59,0xc6,0x68,0xe0,0x5a,0xbf,0x94,0x60,0x5b, - 0xaf,0x85,0x60,0x5c,0xa8,0xb0,0xe0,0x5d,0x8f,0x67,0x60,0x5e,0x88,0x92,0xe0,0x5f, - 0x6f,0x49,0x60,0x60,0x68,0x74,0xe0,0x61,0x4f,0x2b,0x60,0x62,0x48,0x56,0xe0,0x63, - 0x2f,0xd,0x60,0x64,0x28,0x38,0xe0,0x65,0xe,0xef,0x60,0x66,0x11,0x55,0x60,0x66, - 0xf8,0xb,0xe0,0x67,0xf1,0x37,0x60,0x68,0xd7,0xed,0xe0,0x69,0xd1,0x19,0x60,0x6a, - 0xb7,0xcf,0xe0,0x6b,0xb0,0xfb,0x60,0x6c,0x97,0xb1,0xe0,0x6d,0x90,0xdd,0x60,0x6e, - 0x77,0x93,0xe0,0x6f,0x70,0xbf,0x60,0x70,0x60,0xb0,0x60,0x71,0x59,0xdb,0xe0,0x72, - 0x40,0x92,0x60,0x73,0x39,0xbd,0xe0,0x74,0x20,0x74,0x60,0x75,0x19,0x9f,0xe0,0x76, - 0x0,0x56,0x60,0x76,0xf9,0x81,0xe0,0x77,0xe0,0x38,0x60,0x78,0xd9,0x63,0xe0,0x79, - 0xc0,0x1a,0x60,0x7a,0xb9,0x45,0xe0,0x7b,0xa9,0x36,0xe0,0x7c,0xa2,0x62,0x60,0x7d, - 0x89,0x18,0xe0,0x7e,0x82,0x44,0x60,0x7f,0x68,0xfa,0xe0,0x2,0x1,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x6,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x0,0x0,0xa3,0xd8,0x0,0x0,0x0,0x0,0xaf, - 0xc8,0x1,0x4,0x0,0x0,0xa1,0xb8,0x0,0x9,0x0,0x0,0xa8,0xc0,0x1,0x4,0x0, - 0x0,0xb6,0xd0,0x1,0xe,0x0,0x0,0xa8,0xc0,0x0,0x4,0x0,0x0,0xa8,0xc0,0x0, - 0x4,0x4c,0x4d,0x54,0x0,0x4e,0x5a,0x53,0x54,0x0,0x4e,0x5a,0x4d,0x54,0x0,0x4e, - 0x5a,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x9d,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x13,0xf8,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x41,0xb7,0x4c,0xa8,0xff,0xff, - 0xff,0xff,0xb0,0xb4,0xb2,0xe8,0xff,0xff,0xff,0xff,0xb1,0x51,0x87,0x58,0xff,0xff, - 0xff,0xff,0xb2,0x78,0xe5,0x68,0xff,0xff,0xff,0xff,0xb3,0x43,0xe5,0x60,0xff,0xff, - 0xff,0xff,0xb4,0x58,0xc7,0x68,0xff,0xff,0xff,0xff,0xb5,0x23,0xc7,0x60,0xff,0xff, - 0xff,0xff,0xb6,0x38,0xa9,0x68,0xff,0xff,0xff,0xff,0xb7,0x3,0xa9,0x60,0xff,0xff, - 0xff,0xff,0xb8,0x18,0x8b,0x68,0xff,0xff,0xff,0xff,0xb8,0xec,0xc5,0xe0,0xff,0xff, - 0xff,0xff,0xb9,0xf8,0x6d,0x68,0xff,0xff,0xff,0xff,0xba,0xcc,0xa7,0xe0,0xff,0xff, - 0xff,0xff,0xbb,0xd8,0x4f,0x68,0xff,0xff,0xff,0xff,0xbc,0xe3,0xe8,0xe0,0xff,0xff, - 0xff,0xff,0xbd,0xae,0xf6,0xe8,0xff,0xff,0xff,0xff,0xbe,0xc3,0xca,0xe0,0xff,0xff, - 0xff,0xff,0xbf,0x8e,0xd8,0xe8,0xff,0xff,0xff,0xff,0xc0,0xa3,0xac,0xe0,0xff,0xff, - 0xff,0xff,0xc1,0x6e,0xba,0xe8,0xff,0xff,0xff,0xff,0xc2,0x83,0x8e,0xe0,0xff,0xff, - 0xff,0xff,0xc3,0x4e,0x9c,0xe8,0xff,0xff,0xff,0xff,0xc4,0x63,0x70,0xe0,0xff,0xff, - 0xff,0xff,0xc5,0x2e,0x7e,0xe8,0xff,0xff,0xff,0xff,0xc6,0x4c,0x8d,0x60,0xff,0xff, - 0xff,0xff,0xc7,0xe,0x60,0xe8,0xff,0xff,0xff,0xff,0xc8,0x2c,0x6f,0x60,0xff,0xff, - 0xff,0xff,0xc8,0xf7,0x7d,0x68,0xff,0xff,0xff,0xff,0xd2,0xda,0x9a,0x40,0x0,0x0, - 0x0,0x0,0x9,0x18,0xfd,0xe0,0x0,0x0,0x0,0x0,0x9,0xac,0xa5,0xe0,0x0,0x0, - 0x0,0x0,0xa,0xef,0xa5,0x60,0x0,0x0,0x0,0x0,0xb,0x9e,0xfc,0xe0,0x0,0x0, - 0x0,0x0,0xc,0xd8,0xc1,0xe0,0x0,0x0,0x0,0x0,0xd,0x7e,0xde,0xe0,0x0,0x0, - 0x0,0x0,0xe,0xb8,0xa3,0xe0,0x0,0x0,0x0,0x0,0xf,0x5e,0xc0,0xe0,0x0,0x0, - 0x0,0x0,0x10,0x98,0x85,0xe0,0x0,0x0,0x0,0x0,0x11,0x3e,0xa2,0xe0,0x0,0x0, - 0x0,0x0,0x12,0x78,0x67,0xe0,0x0,0x0,0x0,0x0,0x13,0x1e,0x84,0xe0,0x0,0x0, - 0x0,0x0,0x14,0x58,0x49,0xe0,0x0,0x0,0x0,0x0,0x14,0xfe,0x66,0xe0,0x0,0x0, - 0x0,0x0,0x16,0x38,0x2b,0xe0,0x0,0x0,0x0,0x0,0x16,0xe7,0x83,0x60,0x0,0x0, - 0x0,0x0,0x18,0x21,0x48,0x60,0x0,0x0,0x0,0x0,0x18,0xc7,0x65,0x60,0x0,0x0, - 0x0,0x0,0x1a,0x1,0x2a,0x60,0x0,0x0,0x0,0x0,0x1a,0xa7,0x47,0x60,0x0,0x0, - 0x0,0x0,0x1b,0xe1,0xc,0x60,0x0,0x0,0x0,0x0,0x1c,0x87,0x29,0x60,0x0,0x0, - 0x0,0x0,0x1d,0xc0,0xee,0x60,0x0,0x0,0x0,0x0,0x1e,0x67,0xb,0x60,0x0,0x0, - 0x0,0x0,0x1f,0xa0,0xd0,0x60,0x0,0x0,0x0,0x0,0x20,0x46,0xed,0x60,0x0,0x0, - 0x0,0x0,0x21,0x80,0xb2,0x60,0x0,0x0,0x0,0x0,0x22,0x30,0x9,0xe0,0x0,0x0, - 0x0,0x0,0x23,0x69,0xce,0xe0,0x0,0x0,0x0,0x0,0x24,0xf,0xeb,0xe0,0x0,0x0, - 0x0,0x0,0x25,0x2e,0x1,0x60,0x0,0x0,0x0,0x0,0x26,0x2,0x42,0xe0,0x0,0x0, - 0x0,0x0,0x27,0xd,0xe3,0x60,0x0,0x0,0x0,0x0,0x27,0xe2,0x24,0xe0,0x0,0x0, - 0x0,0x0,0x28,0xed,0xc5,0x60,0x0,0x0,0x0,0x0,0x29,0xc2,0x6,0xe0,0x0,0x0, - 0x0,0x0,0x2a,0xcd,0xa7,0x60,0x0,0x0,0x0,0x0,0x2b,0xab,0x23,0x60,0x0,0x0, - 0x0,0x0,0x2c,0xad,0x89,0x60,0x0,0x0,0x0,0x0,0x2d,0x8b,0x5,0x60,0x0,0x0, - 0x0,0x0,0x2e,0x8d,0x6b,0x60,0x0,0x0,0x0,0x0,0x2f,0x6a,0xe7,0x60,0x0,0x0, - 0x0,0x0,0x30,0x6d,0x4d,0x60,0x0,0x0,0x0,0x0,0x31,0x4a,0xc9,0x60,0x0,0x0, - 0x0,0x0,0x32,0x56,0x69,0xe0,0x0,0x0,0x0,0x0,0x33,0x2a,0xab,0x60,0x0,0x0, - 0x0,0x0,0x34,0x36,0x4b,0xe0,0x0,0x0,0x0,0x0,0x35,0xa,0x8d,0x60,0x0,0x0, - 0x0,0x0,0x36,0x16,0x2d,0xe0,0x0,0x0,0x0,0x0,0x36,0xf3,0xa9,0xe0,0x0,0x0, - 0x0,0x0,0x37,0xf6,0xf,0xe0,0x0,0x0,0x0,0x0,0x38,0xd3,0x8b,0xe0,0x0,0x0, - 0x0,0x0,0x39,0xd5,0xf1,0xe0,0x0,0x0,0x0,0x0,0x3a,0xb3,0x6d,0xe0,0x0,0x0, - 0x0,0x0,0x3b,0xbf,0xe,0x60,0x0,0x0,0x0,0x0,0x3c,0x93,0x4f,0xe0,0x0,0x0, - 0x0,0x0,0x3d,0x9e,0xf0,0x60,0x0,0x0,0x0,0x0,0x3e,0x73,0x31,0xe0,0x0,0x0, - 0x0,0x0,0x3f,0x7e,0xd2,0x60,0x0,0x0,0x0,0x0,0x40,0x5c,0x4e,0x60,0x0,0x0, - 0x0,0x0,0x41,0x5e,0xb4,0x60,0x0,0x0,0x0,0x0,0x42,0x3c,0x30,0x60,0x0,0x0, - 0x0,0x0,0x43,0x3e,0x96,0x60,0x0,0x0,0x0,0x0,0x44,0x1c,0x12,0x60,0x0,0x0, - 0x0,0x0,0x45,0x1e,0x78,0x60,0x0,0x0,0x0,0x0,0x45,0xfb,0xf4,0x60,0x0,0x0, - 0x0,0x0,0x46,0xfe,0x5a,0x60,0x0,0x0,0x0,0x0,0x47,0xf7,0x85,0xe0,0x0,0x0, - 0x0,0x0,0x48,0xde,0x3c,0x60,0x0,0x0,0x0,0x0,0x49,0xd7,0x67,0xe0,0x0,0x0, - 0x0,0x0,0x4a,0xbe,0x1e,0x60,0x0,0x0,0x0,0x0,0x4b,0xb7,0x49,0xe0,0x0,0x0, - 0x0,0x0,0x4c,0x9e,0x0,0x60,0x0,0x0,0x0,0x0,0x4d,0x97,0x2b,0xe0,0x0,0x0, - 0x0,0x0,0x4e,0x7d,0xe2,0x60,0x0,0x0,0x0,0x0,0x4f,0x77,0xd,0xe0,0x0,0x0, - 0x0,0x0,0x50,0x66,0xfe,0xe0,0x0,0x0,0x0,0x0,0x51,0x60,0x2a,0x60,0x0,0x0, - 0x0,0x0,0x52,0x46,0xe0,0xe0,0x0,0x0,0x0,0x0,0x53,0x40,0xc,0x60,0x0,0x0, - 0x0,0x0,0x54,0x26,0xc2,0xe0,0x0,0x0,0x0,0x0,0x55,0x1f,0xee,0x60,0x0,0x0, - 0x0,0x0,0x56,0x6,0xa4,0xe0,0x0,0x0,0x0,0x0,0x56,0xff,0xd0,0x60,0x0,0x0, - 0x0,0x0,0x57,0xe6,0x86,0xe0,0x0,0x0,0x0,0x0,0x58,0xdf,0xb2,0x60,0x0,0x0, - 0x0,0x0,0x59,0xc6,0x68,0xe0,0x0,0x0,0x0,0x0,0x5a,0xbf,0x94,0x60,0x0,0x0, - 0x0,0x0,0x5b,0xaf,0x85,0x60,0x0,0x0,0x0,0x0,0x5c,0xa8,0xb0,0xe0,0x0,0x0, - 0x0,0x0,0x5d,0x8f,0x67,0x60,0x0,0x0,0x0,0x0,0x5e,0x88,0x92,0xe0,0x0,0x0, - 0x0,0x0,0x5f,0x6f,0x49,0x60,0x0,0x0,0x0,0x0,0x60,0x68,0x74,0xe0,0x0,0x0, - 0x0,0x0,0x61,0x4f,0x2b,0x60,0x0,0x0,0x0,0x0,0x62,0x48,0x56,0xe0,0x0,0x0, - 0x0,0x0,0x63,0x2f,0xd,0x60,0x0,0x0,0x0,0x0,0x64,0x28,0x38,0xe0,0x0,0x0, - 0x0,0x0,0x65,0xe,0xef,0x60,0x0,0x0,0x0,0x0,0x66,0x11,0x55,0x60,0x0,0x0, - 0x0,0x0,0x66,0xf8,0xb,0xe0,0x0,0x0,0x0,0x0,0x67,0xf1,0x37,0x60,0x0,0x0, - 0x0,0x0,0x68,0xd7,0xed,0xe0,0x0,0x0,0x0,0x0,0x69,0xd1,0x19,0x60,0x0,0x0, - 0x0,0x0,0x6a,0xb7,0xcf,0xe0,0x0,0x0,0x0,0x0,0x6b,0xb0,0xfb,0x60,0x0,0x0, - 0x0,0x0,0x6c,0x97,0xb1,0xe0,0x0,0x0,0x0,0x0,0x6d,0x90,0xdd,0x60,0x0,0x0, - 0x0,0x0,0x6e,0x77,0x93,0xe0,0x0,0x0,0x0,0x0,0x6f,0x70,0xbf,0x60,0x0,0x0, - 0x0,0x0,0x70,0x60,0xb0,0x60,0x0,0x0,0x0,0x0,0x71,0x59,0xdb,0xe0,0x0,0x0, - 0x0,0x0,0x72,0x40,0x92,0x60,0x0,0x0,0x0,0x0,0x73,0x39,0xbd,0xe0,0x0,0x0, - 0x0,0x0,0x74,0x20,0x74,0x60,0x0,0x0,0x0,0x0,0x75,0x19,0x9f,0xe0,0x0,0x0, - 0x0,0x0,0x76,0x0,0x56,0x60,0x0,0x0,0x0,0x0,0x76,0xf9,0x81,0xe0,0x0,0x0, - 0x0,0x0,0x77,0xe0,0x38,0x60,0x0,0x0,0x0,0x0,0x78,0xd9,0x63,0xe0,0x0,0x0, - 0x0,0x0,0x79,0xc0,0x1a,0x60,0x0,0x0,0x0,0x0,0x7a,0xb9,0x45,0xe0,0x0,0x0, - 0x0,0x0,0x7b,0xa9,0x36,0xe0,0x0,0x0,0x0,0x0,0x7c,0xa2,0x62,0x60,0x0,0x0, - 0x0,0x0,0x7d,0x89,0x18,0xe0,0x0,0x0,0x0,0x0,0x7e,0x82,0x44,0x60,0x0,0x0, - 0x0,0x0,0x7f,0x68,0xfa,0xe0,0x0,0x2,0x1,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x6,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x0,0x0,0xa3,0xd8,0x0,0x0,0x0,0x0,0xaf,0xc8,0x1,0x4,0x0, - 0x0,0xa1,0xb8,0x0,0x9,0x0,0x0,0xa8,0xc0,0x1,0x4,0x0,0x0,0xb6,0xd0,0x1, - 0xe,0x0,0x0,0xa8,0xc0,0x0,0x4,0x0,0x0,0xa8,0xc0,0x0,0x4,0x4c,0x4d,0x54, - 0x0,0x4e,0x5a,0x53,0x54,0x0,0x4e,0x5a,0x4d,0x54,0x0,0x4e,0x5a,0x44,0x54,0x0, - 0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x4e, - 0x5a,0x53,0x54,0x2d,0x31,0x32,0x4e,0x5a,0x44,0x54,0x2c,0x4d,0x39,0x2e,0x35,0x2e, - 0x30,0x2c,0x4d,0x34,0x2e,0x31,0x2e,0x30,0x2f,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/UCT - 0x0,0x0,0x0,0x7f, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, - 0x0,0x55,0x43,0x54,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0, - 0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0, - 0x0,0x0,0x4,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x55,0x43,0x54,0x0,0x0,0x0,0xa,0x55,0x43,0x54,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/GMT+0 - 0x0,0x0,0x0,0x7f, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, - 0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0, - 0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0, - 0x0,0x0,0x4,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0xa,0x47,0x4d,0x54,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Portugal - 0x0,0x0,0xd,0x7d, + // /home/konrad/src/smoke/tzone/zoneinfo/Portugal + 0x0,0x0,0xd,0x7d, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0, @@ -2009,1544 +2159,454 @@ static const unsigned char qt_resource_data[] = { 0x1,0x0,0x1,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, 0x1,0xa,0x57,0x45,0x54,0x30,0x57,0x45,0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e, 0x30,0x2f,0x31,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Universal + // /home/konrad/src/smoke/tzone/zoneinfo/Hongkong + 0x0,0x0,0x4,0xa5, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x46,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x11,0x80,0x0,0x0,0x0,0x85, + 0x69,0x5a,0xf6,0xc9,0xea,0x57,0xb8,0xca,0xda,0x3a,0xa8,0xcb,0x4b,0x78,0x80,0xd2, + 0x4c,0x62,0x70,0xd3,0x6a,0xb7,0x38,0xd4,0x93,0x4a,0xa8,0xd5,0x42,0xb0,0x38,0xd6, + 0x9a,0xb9,0xa8,0xd7,0x3e,0x41,0xb8,0xd8,0x2e,0x24,0xa8,0xd8,0xf9,0x39,0xb8,0xda, + 0xe,0x6,0xa8,0xda,0xd9,0x1b,0xb8,0xdb,0xed,0xe8,0xa8,0xdc,0xb8,0xfd,0xb8,0xdd, + 0xcd,0xca,0xa8,0xde,0xa2,0x1a,0x38,0xdf,0xac,0x5b,0x28,0xe0,0x81,0xfc,0x38,0xe1, + 0x96,0xc9,0x28,0xe2,0x4f,0x69,0x38,0xe3,0x76,0xab,0x28,0xe4,0x2f,0x4b,0x38,0xe5, + 0x5f,0xc7,0xa8,0xe6,0xf,0x2d,0x38,0xe7,0x3f,0xa9,0xa8,0xe7,0xf8,0x49,0xb8,0xe9, + 0x1f,0x8b,0xa8,0xe9,0xd8,0x2b,0xb8,0xea,0xff,0x6d,0xa8,0xeb,0xb8,0xd,0xb8,0xec, + 0xdf,0x4f,0xa8,0xed,0x97,0xef,0xb8,0xee,0xc8,0x6c,0x28,0xef,0x77,0xd1,0xb8,0xf0, + 0xa8,0x4e,0x28,0xf1,0x57,0xb3,0xb8,0xf2,0x88,0x30,0x28,0xf3,0x40,0xd0,0x38,0xf4, + 0x68,0x12,0x28,0xf5,0x20,0xb2,0x38,0xf6,0x47,0xf4,0x28,0xf7,0x25,0x7e,0x38,0xf8, + 0x15,0x61,0x28,0xf9,0x5,0x60,0x38,0xf9,0xf5,0x43,0x28,0xfa,0xe5,0x42,0x38,0xfb, + 0xde,0x5f,0xa8,0xfc,0xce,0x5e,0xb8,0xfd,0xbe,0x41,0xa8,0xfe,0xae,0x40,0xb8,0xff, + 0x9e,0x23,0xa8,0x0,0x8e,0x22,0xb8,0x1,0x7e,0x5,0xa8,0x2,0x6e,0x4,0xb8,0x3, + 0x5d,0xe7,0xa8,0x4,0x4d,0xe6,0xb8,0x5,0x47,0x4,0x28,0x6,0x37,0x3,0x38,0x7, + 0x26,0xe6,0x28,0x7,0x83,0x3d,0x38,0x9,0x6,0xc8,0x28,0x9,0xf6,0xc7,0x38,0xa, + 0xe6,0xaa,0x28,0xb,0xd6,0xa9,0x38,0xc,0xc6,0x8c,0x28,0x11,0x9b,0x39,0x38,0x12, + 0x6f,0x6c,0xa8,0x0,0x2,0x1,0x2,0x3,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x0,0x0,0x6b,0xa,0x0,0x0,0x0, + 0x0,0x7e,0x90,0x1,0x4,0x0,0x0,0x70,0x80,0x0,0x9,0x0,0x0,0x7e,0x90,0x0, + 0xd,0x0,0x0,0x70,0x80,0x0,0x9,0x4c,0x4d,0x54,0x0,0x48,0x4b,0x53,0x54,0x0, + 0x48,0x4b,0x54,0x0,0x4a,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x46,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x11,0xf8,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x85,0x69,0x5a,0xf6,0xff,0xff, + 0xff,0xff,0xc9,0xea,0x57,0xb8,0xff,0xff,0xff,0xff,0xca,0xda,0x3a,0xa8,0xff,0xff, + 0xff,0xff,0xcb,0x4b,0x78,0x80,0xff,0xff,0xff,0xff,0xd2,0x4c,0x62,0x70,0xff,0xff, + 0xff,0xff,0xd3,0x6a,0xb7,0x38,0xff,0xff,0xff,0xff,0xd4,0x93,0x4a,0xa8,0xff,0xff, + 0xff,0xff,0xd5,0x42,0xb0,0x38,0xff,0xff,0xff,0xff,0xd6,0x9a,0xb9,0xa8,0xff,0xff, + 0xff,0xff,0xd7,0x3e,0x41,0xb8,0xff,0xff,0xff,0xff,0xd8,0x2e,0x24,0xa8,0xff,0xff, + 0xff,0xff,0xd8,0xf9,0x39,0xb8,0xff,0xff,0xff,0xff,0xda,0xe,0x6,0xa8,0xff,0xff, + 0xff,0xff,0xda,0xd9,0x1b,0xb8,0xff,0xff,0xff,0xff,0xdb,0xed,0xe8,0xa8,0xff,0xff, + 0xff,0xff,0xdc,0xb8,0xfd,0xb8,0xff,0xff,0xff,0xff,0xdd,0xcd,0xca,0xa8,0xff,0xff, + 0xff,0xff,0xde,0xa2,0x1a,0x38,0xff,0xff,0xff,0xff,0xdf,0xac,0x5b,0x28,0xff,0xff, + 0xff,0xff,0xe0,0x81,0xfc,0x38,0xff,0xff,0xff,0xff,0xe1,0x96,0xc9,0x28,0xff,0xff, + 0xff,0xff,0xe2,0x4f,0x69,0x38,0xff,0xff,0xff,0xff,0xe3,0x76,0xab,0x28,0xff,0xff, + 0xff,0xff,0xe4,0x2f,0x4b,0x38,0xff,0xff,0xff,0xff,0xe5,0x5f,0xc7,0xa8,0xff,0xff, + 0xff,0xff,0xe6,0xf,0x2d,0x38,0xff,0xff,0xff,0xff,0xe7,0x3f,0xa9,0xa8,0xff,0xff, + 0xff,0xff,0xe7,0xf8,0x49,0xb8,0xff,0xff,0xff,0xff,0xe9,0x1f,0x8b,0xa8,0xff,0xff, + 0xff,0xff,0xe9,0xd8,0x2b,0xb8,0xff,0xff,0xff,0xff,0xea,0xff,0x6d,0xa8,0xff,0xff, + 0xff,0xff,0xeb,0xb8,0xd,0xb8,0xff,0xff,0xff,0xff,0xec,0xdf,0x4f,0xa8,0xff,0xff, + 0xff,0xff,0xed,0x97,0xef,0xb8,0xff,0xff,0xff,0xff,0xee,0xc8,0x6c,0x28,0xff,0xff, + 0xff,0xff,0xef,0x77,0xd1,0xb8,0xff,0xff,0xff,0xff,0xf0,0xa8,0x4e,0x28,0xff,0xff, + 0xff,0xff,0xf1,0x57,0xb3,0xb8,0xff,0xff,0xff,0xff,0xf2,0x88,0x30,0x28,0xff,0xff, + 0xff,0xff,0xf3,0x40,0xd0,0x38,0xff,0xff,0xff,0xff,0xf4,0x68,0x12,0x28,0xff,0xff, + 0xff,0xff,0xf5,0x20,0xb2,0x38,0xff,0xff,0xff,0xff,0xf6,0x47,0xf4,0x28,0xff,0xff, + 0xff,0xff,0xf7,0x25,0x7e,0x38,0xff,0xff,0xff,0xff,0xf8,0x15,0x61,0x28,0xff,0xff, + 0xff,0xff,0xf9,0x5,0x60,0x38,0xff,0xff,0xff,0xff,0xf9,0xf5,0x43,0x28,0xff,0xff, + 0xff,0xff,0xfa,0xe5,0x42,0x38,0xff,0xff,0xff,0xff,0xfb,0xde,0x5f,0xa8,0xff,0xff, + 0xff,0xff,0xfc,0xce,0x5e,0xb8,0xff,0xff,0xff,0xff,0xfd,0xbe,0x41,0xa8,0xff,0xff, + 0xff,0xff,0xfe,0xae,0x40,0xb8,0xff,0xff,0xff,0xff,0xff,0x9e,0x23,0xa8,0x0,0x0, + 0x0,0x0,0x0,0x8e,0x22,0xb8,0x0,0x0,0x0,0x0,0x1,0x7e,0x5,0xa8,0x0,0x0, + 0x0,0x0,0x2,0x6e,0x4,0xb8,0x0,0x0,0x0,0x0,0x3,0x5d,0xe7,0xa8,0x0,0x0, + 0x0,0x0,0x4,0x4d,0xe6,0xb8,0x0,0x0,0x0,0x0,0x5,0x47,0x4,0x28,0x0,0x0, + 0x0,0x0,0x6,0x37,0x3,0x38,0x0,0x0,0x0,0x0,0x7,0x26,0xe6,0x28,0x0,0x0, + 0x0,0x0,0x7,0x83,0x3d,0x38,0x0,0x0,0x0,0x0,0x9,0x6,0xc8,0x28,0x0,0x0, + 0x0,0x0,0x9,0xf6,0xc7,0x38,0x0,0x0,0x0,0x0,0xa,0xe6,0xaa,0x28,0x0,0x0, + 0x0,0x0,0xb,0xd6,0xa9,0x38,0x0,0x0,0x0,0x0,0xc,0xc6,0x8c,0x28,0x0,0x0, + 0x0,0x0,0x11,0x9b,0x39,0x38,0x0,0x0,0x0,0x0,0x12,0x6f,0x6c,0xa8,0x0,0x2, + 0x1,0x2,0x3,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x0,0x0,0x6b,0xa,0x0,0x0,0x0,0x0,0x7e,0x90,0x1,0x4, + 0x0,0x0,0x70,0x80,0x0,0x9,0x0,0x0,0x7e,0x90,0x0,0xd,0x0,0x0,0x70,0x80, + 0x0,0x9,0x4c,0x4d,0x54,0x0,0x48,0x4b,0x53,0x54,0x0,0x48,0x4b,0x54,0x0,0x4a, + 0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x48,0x4b, + 0x54,0x2d,0x38,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/localtime 0x0,0x0,0x0,0x7f, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, - 0x0,0x55,0x54,0x43,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, + 0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x4,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x55,0x54,0x43,0x0,0x0,0x0,0xa,0x55,0x54,0x43,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Japan - 0x0,0x0,0x1,0x63, + 0x0,0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0xa,0x47,0x4d,0x54,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/GMT0 + 0x0,0x0,0x0,0x7f, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xa,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0xc3, - 0x55,0x3b,0x70,0xd7,0x3e,0x1e,0x90,0xd7,0xec,0x16,0x80,0xd8,0xf9,0x16,0x90,0xd9, - 0xcb,0xf8,0x80,0xdb,0x7,0x1d,0x10,0xdb,0xab,0xda,0x80,0xdc,0xe6,0xff,0x10,0xdd, - 0x8b,0xbc,0x80,0x1,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x0,0x0,0x7e, - 0x90,0x0,0x0,0x0,0x0,0x7e,0x90,0x0,0x4,0x0,0x0,0x8c,0xa0,0x1,0x9,0x0, - 0x0,0x7e,0x90,0x0,0x0,0x4a,0x53,0x54,0x0,0x4a,0x43,0x53,0x54,0x0,0x4a,0x44, - 0x54,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc,0x0,0x0, - 0x0,0x5,0x0,0x0,0x0,0x11,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff, - 0xff,0xff,0x65,0xc2,0xa4,0x70,0xff,0xff,0xff,0xff,0x74,0xce,0xe3,0x70,0xff,0xff, - 0xff,0xff,0xc3,0x55,0x3b,0x70,0xff,0xff,0xff,0xff,0xd7,0x3e,0x1e,0x90,0xff,0xff, - 0xff,0xff,0xd7,0xec,0x16,0x80,0xff,0xff,0xff,0xff,0xd8,0xf9,0x16,0x90,0xff,0xff, - 0xff,0xff,0xd9,0xcb,0xf8,0x80,0xff,0xff,0xff,0xff,0xdb,0x7,0x1d,0x10,0xff,0xff, - 0xff,0xff,0xdb,0xab,0xda,0x80,0xff,0xff,0xff,0xff,0xdc,0xe6,0xff,0x10,0xff,0xff, - 0xff,0xff,0xdd,0x8b,0xbc,0x80,0x0,0x1,0x2,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x0,0x0,0x83,0x3,0x0,0x0,0x0,0x0,0x7e,0x90,0x0,0x4,0x0,0x0, - 0x7e,0x90,0x0,0x8,0x0,0x0,0x8c,0xa0,0x1,0xd,0x0,0x0,0x7e,0x90,0x0,0x4, - 0x4c,0x4d,0x54,0x0,0x4a,0x53,0x54,0x0,0x4a,0x43,0x53,0x54,0x0,0x4a,0x44,0x54, - 0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa,0x4a,0x53,0x54,0x2d, - 0x39,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Iran - 0x0,0x0,0x6,0x8e, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, + 0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0, + 0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0, + 0x0,0x0,0x4,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0xa,0x47,0x4d,0x54,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Turkey + 0x0,0x0,0x8,0x76, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x65,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x12,0x80,0x0,0x0,0x0,0x9a, - 0x6c,0x7d,0xc8,0xd2,0xdb,0x12,0xc8,0xe,0xbb,0xa2,0x48,0xf,0x74,0x2d,0x40,0x10, - 0x8e,0x40,0x30,0x10,0xed,0x3a,0x40,0x11,0x55,0x67,0xc8,0x12,0x45,0x4a,0xb8,0x13, - 0x37,0xec,0xc8,0x14,0x2d,0x15,0xb8,0x28,0x20,0x76,0xc8,0x28,0xdb,0x9d,0xb8,0x29, - 0xcb,0x9c,0xc8,0x2a,0xbe,0x22,0xb8,0x2b,0xac,0xd0,0x48,0x2c,0x9f,0x56,0x38,0x2d, - 0x8e,0x3,0xc8,0x2e,0x80,0x89,0xb8,0x2f,0x6f,0x37,0x48,0x30,0x61,0xbd,0x38,0x31, - 0x50,0x6a,0xc8,0x32,0x42,0xf0,0xb8,0x33,0x32,0xef,0xc8,0x34,0x25,0x75,0xb8,0x35, - 0x14,0x23,0x48,0x36,0x6,0xa9,0x38,0x36,0xf5,0x56,0xc8,0x37,0xe7,0xdc,0xb8,0x38, - 0xd6,0x8a,0x48,0x39,0xc9,0x10,0x38,0x3a,0xb9,0xf,0x48,0x3b,0xab,0x95,0x38,0x3c, - 0x9a,0x42,0xc8,0x3d,0x8c,0xc8,0xb8,0x3e,0x7b,0x76,0x48,0x3f,0x6d,0xfc,0x38,0x40, - 0x5c,0xa9,0xc8,0x41,0x4f,0x2f,0xb8,0x42,0x3f,0x2e,0xc8,0x43,0x31,0xb4,0xb8,0x47, - 0xe2,0xc9,0x48,0x48,0xd5,0x4f,0x38,0x49,0xc5,0x4e,0x48,0x4a,0xb7,0xd4,0x38,0x4b, - 0xa6,0x81,0xc8,0x4c,0x99,0x7,0xb8,0x4d,0x87,0xb5,0x48,0x4e,0x7a,0x3b,0x38,0x4f, - 0x68,0xe8,0xc8,0x50,0x5b,0x6e,0xb8,0x51,0x4b,0x6d,0xc8,0x52,0x3d,0xf3,0xb8,0x53, - 0x2c,0xa1,0x48,0x54,0x1f,0x27,0x38,0x55,0xd,0xd4,0xc8,0x56,0x0,0x5a,0xb8,0x56, - 0xef,0x8,0x48,0x57,0xe1,0x8e,0x38,0x58,0xd1,0x8d,0x48,0x59,0xc4,0x13,0x38,0x5a, - 0xb2,0xc0,0xc8,0x5b,0xa5,0x46,0xb8,0x5c,0x93,0xf4,0x48,0x5d,0x86,0x7a,0x38,0x5e, - 0x75,0x27,0xc8,0x5f,0x67,0xad,0xb8,0x60,0x57,0xac,0xc8,0x61,0x4a,0x32,0xb8,0x62, - 0x38,0xe0,0x48,0x63,0x2b,0x66,0x38,0x64,0x1a,0x13,0xc8,0x65,0xc,0x99,0xb8,0x65, - 0xfb,0x47,0x48,0x66,0xed,0xcd,0x38,0x67,0xdd,0xcc,0x48,0x68,0xd0,0x52,0x38,0x69, - 0xbe,0xff,0xc8,0x6a,0xb1,0x85,0xb8,0x6b,0xa0,0x33,0x48,0x6c,0x92,0xb9,0x38,0x6d, - 0x81,0x66,0xc8,0x6e,0x73,0xec,0xb8,0x6f,0x62,0x9a,0x48,0x70,0x55,0x20,0x38,0x71, - 0x45,0x1f,0x48,0x72,0x37,0xa5,0x38,0x73,0x26,0x52,0xc8,0x74,0x18,0xd8,0xb8,0x75, - 0x7,0x86,0x48,0x75,0xfa,0xc,0x38,0x76,0xe8,0xb9,0xc8,0x77,0xdb,0x3f,0xb8,0x78, - 0xcb,0x3e,0xc8,0x79,0xbd,0xc4,0xb8,0x7a,0xac,0x72,0x48,0x7b,0x9e,0xf8,0x38,0x7c, - 0x8d,0xa5,0xc8,0x7d,0x80,0x2b,0xb8,0x7e,0x6e,0xd9,0x48,0x7f,0x61,0x5f,0x38,0x0, - 0x1,0x2,0x4,0x3,0x4,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2, - 0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2, - 0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2, - 0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2, - 0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2, - 0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2, - 0x5,0x2,0x5,0x2,0x0,0x0,0x30,0x38,0x0,0x0,0x0,0x0,0x30,0x38,0x0,0x4, - 0x0,0x0,0x31,0x38,0x0,0x8,0x0,0x0,0x46,0x50,0x1,0xd,0x0,0x0,0x38,0x40, - 0x0,0x8,0x0,0x0,0x3f,0x48,0x1,0xd,0x0,0x0,0x31,0x38,0x0,0x8,0x4c,0x4d, - 0x54,0x0,0x54,0x4d,0x54,0x0,0x49,0x52,0x53,0x54,0x0,0x49,0x52,0x44,0x54,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a, - 0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x65,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x12,0xf8,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xff,0xff,0xff,0xff,0x9a,0x6c,0x7d,0xc8,0xff,0xff,0xff,0xff,0xd2,0xdb, - 0x12,0xc8,0x0,0x0,0x0,0x0,0xe,0xbb,0xa2,0x48,0x0,0x0,0x0,0x0,0xf,0x74, - 0x2d,0x40,0x0,0x0,0x0,0x0,0x10,0x8e,0x40,0x30,0x0,0x0,0x0,0x0,0x10,0xed, - 0x3a,0x40,0x0,0x0,0x0,0x0,0x11,0x55,0x67,0xc8,0x0,0x0,0x0,0x0,0x12,0x45, - 0x4a,0xb8,0x0,0x0,0x0,0x0,0x13,0x37,0xec,0xc8,0x0,0x0,0x0,0x0,0x14,0x2d, - 0x15,0xb8,0x0,0x0,0x0,0x0,0x28,0x20,0x76,0xc8,0x0,0x0,0x0,0x0,0x28,0xdb, - 0x9d,0xb8,0x0,0x0,0x0,0x0,0x29,0xcb,0x9c,0xc8,0x0,0x0,0x0,0x0,0x2a,0xbe, - 0x22,0xb8,0x0,0x0,0x0,0x0,0x2b,0xac,0xd0,0x48,0x0,0x0,0x0,0x0,0x2c,0x9f, - 0x56,0x38,0x0,0x0,0x0,0x0,0x2d,0x8e,0x3,0xc8,0x0,0x0,0x0,0x0,0x2e,0x80, - 0x89,0xb8,0x0,0x0,0x0,0x0,0x2f,0x6f,0x37,0x48,0x0,0x0,0x0,0x0,0x30,0x61, - 0xbd,0x38,0x0,0x0,0x0,0x0,0x31,0x50,0x6a,0xc8,0x0,0x0,0x0,0x0,0x32,0x42, - 0xf0,0xb8,0x0,0x0,0x0,0x0,0x33,0x32,0xef,0xc8,0x0,0x0,0x0,0x0,0x34,0x25, - 0x75,0xb8,0x0,0x0,0x0,0x0,0x35,0x14,0x23,0x48,0x0,0x0,0x0,0x0,0x36,0x6, - 0xa9,0x38,0x0,0x0,0x0,0x0,0x36,0xf5,0x56,0xc8,0x0,0x0,0x0,0x0,0x37,0xe7, - 0xdc,0xb8,0x0,0x0,0x0,0x0,0x38,0xd6,0x8a,0x48,0x0,0x0,0x0,0x0,0x39,0xc9, - 0x10,0x38,0x0,0x0,0x0,0x0,0x3a,0xb9,0xf,0x48,0x0,0x0,0x0,0x0,0x3b,0xab, - 0x95,0x38,0x0,0x0,0x0,0x0,0x3c,0x9a,0x42,0xc8,0x0,0x0,0x0,0x0,0x3d,0x8c, - 0xc8,0xb8,0x0,0x0,0x0,0x0,0x3e,0x7b,0x76,0x48,0x0,0x0,0x0,0x0,0x3f,0x6d, - 0xfc,0x38,0x0,0x0,0x0,0x0,0x40,0x5c,0xa9,0xc8,0x0,0x0,0x0,0x0,0x41,0x4f, - 0x2f,0xb8,0x0,0x0,0x0,0x0,0x42,0x3f,0x2e,0xc8,0x0,0x0,0x0,0x0,0x43,0x31, - 0xb4,0xb8,0x0,0x0,0x0,0x0,0x47,0xe2,0xc9,0x48,0x0,0x0,0x0,0x0,0x48,0xd5, - 0x4f,0x38,0x0,0x0,0x0,0x0,0x49,0xc5,0x4e,0x48,0x0,0x0,0x0,0x0,0x4a,0xb7, - 0xd4,0x38,0x0,0x0,0x0,0x0,0x4b,0xa6,0x81,0xc8,0x0,0x0,0x0,0x0,0x4c,0x99, - 0x7,0xb8,0x0,0x0,0x0,0x0,0x4d,0x87,0xb5,0x48,0x0,0x0,0x0,0x0,0x4e,0x7a, - 0x3b,0x38,0x0,0x0,0x0,0x0,0x4f,0x68,0xe8,0xc8,0x0,0x0,0x0,0x0,0x50,0x5b, - 0x6e,0xb8,0x0,0x0,0x0,0x0,0x51,0x4b,0x6d,0xc8,0x0,0x0,0x0,0x0,0x52,0x3d, - 0xf3,0xb8,0x0,0x0,0x0,0x0,0x53,0x2c,0xa1,0x48,0x0,0x0,0x0,0x0,0x54,0x1f, - 0x27,0x38,0x0,0x0,0x0,0x0,0x55,0xd,0xd4,0xc8,0x0,0x0,0x0,0x0,0x56,0x0, - 0x5a,0xb8,0x0,0x0,0x0,0x0,0x56,0xef,0x8,0x48,0x0,0x0,0x0,0x0,0x57,0xe1, - 0x8e,0x38,0x0,0x0,0x0,0x0,0x58,0xd1,0x8d,0x48,0x0,0x0,0x0,0x0,0x59,0xc4, - 0x13,0x38,0x0,0x0,0x0,0x0,0x5a,0xb2,0xc0,0xc8,0x0,0x0,0x0,0x0,0x5b,0xa5, - 0x46,0xb8,0x0,0x0,0x0,0x0,0x5c,0x93,0xf4,0x48,0x0,0x0,0x0,0x0,0x5d,0x86, - 0x7a,0x38,0x0,0x0,0x0,0x0,0x5e,0x75,0x27,0xc8,0x0,0x0,0x0,0x0,0x5f,0x67, - 0xad,0xb8,0x0,0x0,0x0,0x0,0x60,0x57,0xac,0xc8,0x0,0x0,0x0,0x0,0x61,0x4a, - 0x32,0xb8,0x0,0x0,0x0,0x0,0x62,0x38,0xe0,0x48,0x0,0x0,0x0,0x0,0x63,0x2b, - 0x66,0x38,0x0,0x0,0x0,0x0,0x64,0x1a,0x13,0xc8,0x0,0x0,0x0,0x0,0x65,0xc, - 0x99,0xb8,0x0,0x0,0x0,0x0,0x65,0xfb,0x47,0x48,0x0,0x0,0x0,0x0,0x66,0xed, - 0xcd,0x38,0x0,0x0,0x0,0x0,0x67,0xdd,0xcc,0x48,0x0,0x0,0x0,0x0,0x68,0xd0, - 0x52,0x38,0x0,0x0,0x0,0x0,0x69,0xbe,0xff,0xc8,0x0,0x0,0x0,0x0,0x6a,0xb1, - 0x85,0xb8,0x0,0x0,0x0,0x0,0x6b,0xa0,0x33,0x48,0x0,0x0,0x0,0x0,0x6c,0x92, - 0xb9,0x38,0x0,0x0,0x0,0x0,0x6d,0x81,0x66,0xc8,0x0,0x0,0x0,0x0,0x6e,0x73, - 0xec,0xb8,0x0,0x0,0x0,0x0,0x6f,0x62,0x9a,0x48,0x0,0x0,0x0,0x0,0x70,0x55, - 0x20,0x38,0x0,0x0,0x0,0x0,0x71,0x45,0x1f,0x48,0x0,0x0,0x0,0x0,0x72,0x37, - 0xa5,0x38,0x0,0x0,0x0,0x0,0x73,0x26,0x52,0xc8,0x0,0x0,0x0,0x0,0x74,0x18, - 0xd8,0xb8,0x0,0x0,0x0,0x0,0x75,0x7,0x86,0x48,0x0,0x0,0x0,0x0,0x75,0xfa, - 0xc,0x38,0x0,0x0,0x0,0x0,0x76,0xe8,0xb9,0xc8,0x0,0x0,0x0,0x0,0x77,0xdb, - 0x3f,0xb8,0x0,0x0,0x0,0x0,0x78,0xcb,0x3e,0xc8,0x0,0x0,0x0,0x0,0x79,0xbd, - 0xc4,0xb8,0x0,0x0,0x0,0x0,0x7a,0xac,0x72,0x48,0x0,0x0,0x0,0x0,0x7b,0x9e, - 0xf8,0x38,0x0,0x0,0x0,0x0,0x7c,0x8d,0xa5,0xc8,0x0,0x0,0x0,0x0,0x7d,0x80, - 0x2b,0xb8,0x0,0x0,0x0,0x0,0x7e,0x6e,0xd9,0x48,0x0,0x0,0x0,0x0,0x7f,0x61, - 0x5f,0x38,0x0,0x1,0x2,0x4,0x3,0x4,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, - 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, - 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, - 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, - 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, - 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, - 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x0,0x0,0x30,0x38,0x0,0x0,0x0,0x0,0x30, - 0x38,0x0,0x4,0x0,0x0,0x31,0x38,0x0,0x8,0x0,0x0,0x46,0x50,0x1,0xd,0x0, - 0x0,0x38,0x40,0x0,0x8,0x0,0x0,0x3f,0x48,0x1,0xd,0x0,0x0,0x31,0x38,0x0, - 0x8,0x4c,0x4d,0x54,0x0,0x54,0x4d,0x54,0x0,0x49,0x52,0x53,0x54,0x0,0x49,0x52, - 0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xa,0x49,0x52,0x53,0x54,0x2d,0x33,0x3a,0x33,0x30,0x49,0x52,0x44,0x54,0x2c, - 0x4a,0x38,0x30,0x2f,0x30,0x2c,0x4a,0x32,0x36,0x34,0x2f,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Libya - 0x0,0x0,0x2,0x8f, + 0x0,0x0,0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x83,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x19,0x80,0x0,0x0,0x0,0x90, + 0x8b,0xf5,0x98,0x9b,0xc,0x17,0x60,0x9b,0xd5,0xbe,0xd0,0xa2,0x65,0x63,0xe0,0xa3, + 0x7b,0x82,0x50,0xa4,0x4e,0x80,0x60,0xa5,0x3f,0xb4,0xd0,0xa6,0x25,0x27,0xe0,0xa7, + 0x27,0x7f,0xd0,0xaa,0x28,0x28,0x60,0xaa,0xe1,0xfd,0xd0,0xab,0xf9,0x89,0xe0,0xac, + 0xc3,0x31,0x50,0xc8,0x7f,0xee,0x60,0xc8,0xff,0xc1,0xd0,0xc9,0x4a,0xf5,0x60,0xca, + 0xce,0x80,0x50,0xcb,0xcb,0xae,0x60,0xcc,0xe5,0xc1,0x50,0xd1,0x71,0xeb,0xe0,0xd2, + 0x6b,0x9,0x50,0xd3,0xa2,0x39,0x60,0xd4,0x43,0x2,0x50,0xd5,0x4c,0xd,0xe0,0xd6, + 0x29,0x7b,0xd0,0xd7,0x2b,0xef,0xe0,0xd8,0x9,0x5d,0xd0,0xd9,0x2,0x97,0x60,0xd9, + 0xe9,0x3f,0xd0,0xda,0xef,0xa8,0x60,0xdb,0xd2,0x5c,0x50,0xdc,0xd4,0xd0,0x60,0xdd, + 0xb3,0x8f,0xd0,0xf1,0xf4,0xb9,0x60,0xf2,0x64,0xba,0xd0,0xf5,0x68,0x6,0x60,0xf6, + 0x1f,0x38,0xd0,0x0,0xa0,0xba,0xe0,0x1,0x6b,0xb3,0xd0,0x2,0x80,0x9c,0xe0,0x3, + 0x4b,0x95,0xd0,0x4,0x69,0xb9,0x60,0x5,0x34,0xb2,0x50,0x6,0x6e,0x93,0x70,0x7, + 0x39,0xa8,0x80,0x7,0xfb,0x75,0x0,0x9,0x19,0xa6,0xa0,0x9,0xdb,0x3a,0xe0,0xa, + 0xf0,0x7,0xd0,0xc,0x10,0xce,0x60,0xc,0xd9,0x24,0x50,0xd,0xa4,0x39,0x60,0xe, + 0xa6,0x91,0x50,0xf,0x84,0x1b,0x60,0x10,0x86,0x73,0x50,0x12,0x67,0x98,0xc0,0x13, + 0x4d,0x36,0x0,0x14,0x47,0x7a,0xc0,0x15,0x23,0xdd,0x80,0x16,0x27,0x5c,0xc0,0x17, + 0x3,0xbf,0x80,0x18,0x7,0x3e,0xc0,0x19,0x89,0x94,0x50,0x19,0xdc,0x94,0xc0,0x1c, + 0xc6,0xd3,0xd0,0x1d,0x9b,0x15,0x50,0x1e,0x8c,0x73,0xf0,0x1f,0x7c,0x64,0xf0,0x20, + 0x6c,0x55,0xf0,0x21,0x5c,0x46,0xf0,0x22,0x4c,0x37,0xf0,0x23,0x3c,0x28,0xf0,0x24, + 0x2c,0x19,0xf0,0x25,0x1c,0xa,0xf0,0x26,0xb,0xfb,0xf0,0x27,0x5,0x27,0x70,0x27, + 0xf5,0x18,0x70,0x28,0xe5,0x9,0x70,0x29,0xd4,0xfa,0x70,0x2a,0xc4,0xeb,0x70,0x2b, + 0xb4,0xdc,0x70,0x2c,0xa4,0xcd,0x70,0x2d,0x8b,0x83,0xf0,0x2e,0x84,0xaf,0x70,0x2f, + 0x74,0xa0,0x70,0x30,0x64,0x91,0x70,0x31,0x5d,0xbc,0xf0,0x32,0x72,0x97,0xf0,0x33, + 0x3d,0x9e,0xf0,0x34,0x52,0x79,0xf0,0x35,0x1d,0x80,0xf0,0x36,0x32,0x5b,0xf0,0x36, + 0xfd,0x62,0xf0,0x38,0x1b,0x78,0x70,0x38,0xdd,0x44,0xf0,0x39,0xfb,0x5a,0x70,0x3a, + 0xbd,0x26,0xf0,0x3b,0xdb,0x3c,0x70,0x3c,0xa6,0x43,0x70,0x3d,0xbb,0x1e,0x70,0x3e, + 0x86,0x25,0x70,0x3f,0x9b,0x0,0x70,0x40,0x66,0x7,0x70,0x41,0x84,0x1c,0xf0,0x42, + 0x45,0xe9,0x70,0x43,0x63,0xfe,0xf0,0x44,0x25,0xcb,0x70,0x45,0x43,0xe0,0xf0,0x45, + 0x98,0x32,0xe0,0x46,0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49, + 0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c, + 0xcc,0xbf,0x90,0x4d,0x8f,0xdd,0x90,0x4e,0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50, + 0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53,0x38,0xbe,0x10,0x54, + 0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56,0x3e,0x9e,0x90,0x56,0xf7,0x30,0x90,0x57, + 0xcf,0x2e,0x50,0x7f,0xff,0xff,0xff,0x1,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x2,0x3,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x3,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, + 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x5,0x5,0x0,0x0,0x1b,0x28,0x0,0x0, + 0x0,0x0,0x1b,0x68,0x0,0x4,0x0,0x0,0x2a,0x30,0x1,0x8,0x0,0x0,0x1c,0x20, + 0x0,0xd,0x0,0x0,0x38,0x40,0x1,0x11,0x0,0x0,0x2a,0x30,0x0,0x15,0x0,0x0, + 0x2a,0x30,0x1,0x8,0x0,0x0,0x1c,0x20,0x0,0xd,0x0,0x0,0x2a,0x30,0x1,0x8, + 0x0,0x0,0x1c,0x20,0x0,0xd,0x0,0x0,0x2a,0x30,0x0,0x15,0x4c,0x4d,0x54,0x0, + 0x49,0x4d,0x54,0x0,0x45,0x45,0x53,0x54,0x0,0x45,0x45,0x54,0x0,0x2b,0x30,0x34, + 0x0,0x2b,0x30,0x33,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x54,0x5a,0x69,0x66,0x32, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xb,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x84,0x0, + 0x0,0x0,0xb,0x0,0x0,0x0,0x19,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff, + 0xff,0xff,0xff,0x56,0xb6,0xc8,0xd8,0xff,0xff,0xff,0xff,0x90,0x8b,0xf5,0x98,0xff, + 0xff,0xff,0xff,0x9b,0xc,0x17,0x60,0xff,0xff,0xff,0xff,0x9b,0xd5,0xbe,0xd0,0xff, + 0xff,0xff,0xff,0xa2,0x65,0x63,0xe0,0xff,0xff,0xff,0xff,0xa3,0x7b,0x82,0x50,0xff, + 0xff,0xff,0xff,0xa4,0x4e,0x80,0x60,0xff,0xff,0xff,0xff,0xa5,0x3f,0xb4,0xd0,0xff, + 0xff,0xff,0xff,0xa6,0x25,0x27,0xe0,0xff,0xff,0xff,0xff,0xa7,0x27,0x7f,0xd0,0xff, + 0xff,0xff,0xff,0xaa,0x28,0x28,0x60,0xff,0xff,0xff,0xff,0xaa,0xe1,0xfd,0xd0,0xff, + 0xff,0xff,0xff,0xab,0xf9,0x89,0xe0,0xff,0xff,0xff,0xff,0xac,0xc3,0x31,0x50,0xff, + 0xff,0xff,0xff,0xc8,0x7f,0xee,0x60,0xff,0xff,0xff,0xff,0xc8,0xff,0xc1,0xd0,0xff, + 0xff,0xff,0xff,0xc9,0x4a,0xf5,0x60,0xff,0xff,0xff,0xff,0xca,0xce,0x80,0x50,0xff, + 0xff,0xff,0xff,0xcb,0xcb,0xae,0x60,0xff,0xff,0xff,0xff,0xcc,0xe5,0xc1,0x50,0xff, + 0xff,0xff,0xff,0xd1,0x71,0xeb,0xe0,0xff,0xff,0xff,0xff,0xd2,0x6b,0x9,0x50,0xff, + 0xff,0xff,0xff,0xd3,0xa2,0x39,0x60,0xff,0xff,0xff,0xff,0xd4,0x43,0x2,0x50,0xff, + 0xff,0xff,0xff,0xd5,0x4c,0xd,0xe0,0xff,0xff,0xff,0xff,0xd6,0x29,0x7b,0xd0,0xff, + 0xff,0xff,0xff,0xd7,0x2b,0xef,0xe0,0xff,0xff,0xff,0xff,0xd8,0x9,0x5d,0xd0,0xff, + 0xff,0xff,0xff,0xd9,0x2,0x97,0x60,0xff,0xff,0xff,0xff,0xd9,0xe9,0x3f,0xd0,0xff, + 0xff,0xff,0xff,0xda,0xef,0xa8,0x60,0xff,0xff,0xff,0xff,0xdb,0xd2,0x5c,0x50,0xff, + 0xff,0xff,0xff,0xdc,0xd4,0xd0,0x60,0xff,0xff,0xff,0xff,0xdd,0xb3,0x8f,0xd0,0xff, + 0xff,0xff,0xff,0xf1,0xf4,0xb9,0x60,0xff,0xff,0xff,0xff,0xf2,0x64,0xba,0xd0,0xff, + 0xff,0xff,0xff,0xf5,0x68,0x6,0x60,0xff,0xff,0xff,0xff,0xf6,0x1f,0x38,0xd0,0x0, + 0x0,0x0,0x0,0x0,0xa0,0xba,0xe0,0x0,0x0,0x0,0x0,0x1,0x6b,0xb3,0xd0,0x0, + 0x0,0x0,0x0,0x2,0x80,0x9c,0xe0,0x0,0x0,0x0,0x0,0x3,0x4b,0x95,0xd0,0x0, + 0x0,0x0,0x0,0x4,0x69,0xb9,0x60,0x0,0x0,0x0,0x0,0x5,0x34,0xb2,0x50,0x0, + 0x0,0x0,0x0,0x6,0x6e,0x93,0x70,0x0,0x0,0x0,0x0,0x7,0x39,0xa8,0x80,0x0, + 0x0,0x0,0x0,0x7,0xfb,0x75,0x0,0x0,0x0,0x0,0x0,0x9,0x19,0xa6,0xa0,0x0, + 0x0,0x0,0x0,0x9,0xdb,0x3a,0xe0,0x0,0x0,0x0,0x0,0xa,0xf0,0x7,0xd0,0x0, + 0x0,0x0,0x0,0xc,0x10,0xce,0x60,0x0,0x0,0x0,0x0,0xc,0xd9,0x24,0x50,0x0, + 0x0,0x0,0x0,0xd,0xa4,0x39,0x60,0x0,0x0,0x0,0x0,0xe,0xa6,0x91,0x50,0x0, + 0x0,0x0,0x0,0xf,0x84,0x1b,0x60,0x0,0x0,0x0,0x0,0x10,0x86,0x73,0x50,0x0, + 0x0,0x0,0x0,0x12,0x67,0x98,0xc0,0x0,0x0,0x0,0x0,0x13,0x4d,0x36,0x0,0x0, + 0x0,0x0,0x0,0x14,0x47,0x7a,0xc0,0x0,0x0,0x0,0x0,0x15,0x23,0xdd,0x80,0x0, + 0x0,0x0,0x0,0x16,0x27,0x5c,0xc0,0x0,0x0,0x0,0x0,0x17,0x3,0xbf,0x80,0x0, + 0x0,0x0,0x0,0x18,0x7,0x3e,0xc0,0x0,0x0,0x0,0x0,0x19,0x89,0x94,0x50,0x0, + 0x0,0x0,0x0,0x19,0xdc,0x94,0xc0,0x0,0x0,0x0,0x0,0x1c,0xc6,0xd3,0xd0,0x0, + 0x0,0x0,0x0,0x1d,0x9b,0x15,0x50,0x0,0x0,0x0,0x0,0x1e,0x8c,0x73,0xf0,0x0, + 0x0,0x0,0x0,0x1f,0x7c,0x64,0xf0,0x0,0x0,0x0,0x0,0x20,0x6c,0x55,0xf0,0x0, + 0x0,0x0,0x0,0x21,0x5c,0x46,0xf0,0x0,0x0,0x0,0x0,0x22,0x4c,0x37,0xf0,0x0, + 0x0,0x0,0x0,0x23,0x3c,0x28,0xf0,0x0,0x0,0x0,0x0,0x24,0x2c,0x19,0xf0,0x0, + 0x0,0x0,0x0,0x25,0x1c,0xa,0xf0,0x0,0x0,0x0,0x0,0x26,0xb,0xfb,0xf0,0x0, + 0x0,0x0,0x0,0x27,0x5,0x27,0x70,0x0,0x0,0x0,0x0,0x27,0xf5,0x18,0x70,0x0, + 0x0,0x0,0x0,0x28,0xe5,0x9,0x70,0x0,0x0,0x0,0x0,0x29,0xd4,0xfa,0x70,0x0, + 0x0,0x0,0x0,0x2a,0xc4,0xeb,0x70,0x0,0x0,0x0,0x0,0x2b,0xb4,0xdc,0x70,0x0, + 0x0,0x0,0x0,0x2c,0xa4,0xcd,0x70,0x0,0x0,0x0,0x0,0x2d,0x8b,0x83,0xf0,0x0, + 0x0,0x0,0x0,0x2e,0x84,0xaf,0x70,0x0,0x0,0x0,0x0,0x2f,0x74,0xa0,0x70,0x0, + 0x0,0x0,0x0,0x30,0x64,0x91,0x70,0x0,0x0,0x0,0x0,0x31,0x5d,0xbc,0xf0,0x0, + 0x0,0x0,0x0,0x32,0x72,0x97,0xf0,0x0,0x0,0x0,0x0,0x33,0x3d,0x9e,0xf0,0x0, + 0x0,0x0,0x0,0x34,0x52,0x79,0xf0,0x0,0x0,0x0,0x0,0x35,0x1d,0x80,0xf0,0x0, + 0x0,0x0,0x0,0x36,0x32,0x5b,0xf0,0x0,0x0,0x0,0x0,0x36,0xfd,0x62,0xf0,0x0, + 0x0,0x0,0x0,0x38,0x1b,0x78,0x70,0x0,0x0,0x0,0x0,0x38,0xdd,0x44,0xf0,0x0, + 0x0,0x0,0x0,0x39,0xfb,0x5a,0x70,0x0,0x0,0x0,0x0,0x3a,0xbd,0x26,0xf0,0x0, + 0x0,0x0,0x0,0x3b,0xdb,0x3c,0x70,0x0,0x0,0x0,0x0,0x3c,0xa6,0x43,0x70,0x0, + 0x0,0x0,0x0,0x3d,0xbb,0x1e,0x70,0x0,0x0,0x0,0x0,0x3e,0x86,0x25,0x70,0x0, + 0x0,0x0,0x0,0x3f,0x9b,0x0,0x70,0x0,0x0,0x0,0x0,0x40,0x66,0x7,0x70,0x0, + 0x0,0x0,0x0,0x41,0x84,0x1c,0xf0,0x0,0x0,0x0,0x0,0x42,0x45,0xe9,0x70,0x0, + 0x0,0x0,0x0,0x43,0x63,0xfe,0xf0,0x0,0x0,0x0,0x0,0x44,0x25,0xcb,0x70,0x0, + 0x0,0x0,0x0,0x45,0x43,0xe0,0xf0,0x0,0x0,0x0,0x0,0x45,0x98,0x32,0xe0,0x0, + 0x0,0x0,0x0,0x46,0x5,0xc9,0x90,0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0, + 0x0,0x0,0x0,0x47,0xee,0xe6,0x10,0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0, + 0x0,0x0,0x0,0x49,0xce,0xc8,0x10,0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0, + 0x0,0x0,0x0,0x4b,0xae,0xaa,0x10,0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0, + 0x0,0x0,0x0,0x4d,0x8f,0xdd,0x90,0x0,0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0, + 0x0,0x0,0x0,0x4f,0x6e,0x6e,0x10,0x0,0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0, + 0x0,0x0,0x0,0x51,0x57,0x8a,0x90,0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0, + 0x0,0x0,0x0,0x53,0x38,0xbe,0x10,0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0, + 0x0,0x0,0x0,0x55,0x17,0x4e,0x90,0x0,0x0,0x0,0x0,0x56,0x3e,0x9e,0x90,0x0, + 0x0,0x0,0x0,0x56,0xf7,0x30,0x90,0x0,0x0,0x0,0x0,0x57,0xcf,0x2e,0x50,0x0, + 0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x2,0x3,0x6,0x7,0x6,0x7,0x6, + 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, + 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, + 0x7,0x6,0x7,0x6,0x7,0x3,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, + 0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x5,0x5,0x0,0x0,0x1b,0x28,0x0, + 0x0,0x0,0x0,0x1b,0x68,0x0,0x4,0x0,0x0,0x2a,0x30,0x1,0x8,0x0,0x0,0x1c, + 0x20,0x0,0xd,0x0,0x0,0x38,0x40,0x1,0x11,0x0,0x0,0x2a,0x30,0x0,0x15,0x0, + 0x0,0x2a,0x30,0x1,0x8,0x0,0x0,0x1c,0x20,0x0,0xd,0x0,0x0,0x2a,0x30,0x1, + 0x8,0x0,0x0,0x1c,0x20,0x0,0xd,0x0,0x0,0x2a,0x30,0x0,0x15,0x4c,0x4d,0x54, + 0x0,0x49,0x4d,0x54,0x0,0x45,0x45,0x53,0x54,0x0,0x45,0x45,0x54,0x0,0x2b,0x30, + 0x34,0x0,0x2b,0x30,0x33,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0xa,0x3c,0x2b,0x30, + 0x33,0x3e,0x2d,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Navajo + 0x0,0x0,0x9,0x95, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x21,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x11,0x80,0x0,0x0,0x0,0xa1, - 0xf2,0xc1,0x24,0xdd,0xbb,0xb1,0x10,0xde,0x23,0xad,0x60,0xe1,0x78,0xd2,0x10,0xe1, - 0xe7,0x65,0xe0,0xe5,0x2f,0x3f,0x70,0xe5,0xa9,0xcc,0xe0,0xeb,0x4e,0xc6,0xf0,0x16, - 0x92,0x42,0x60,0x17,0x8,0xf7,0x70,0x17,0xfa,0x2b,0xe0,0x18,0xea,0x2a,0xf0,0x19, - 0xdb,0x5f,0x60,0x1a,0xcc,0xaf,0xf0,0x1b,0xbd,0xe4,0x60,0x1c,0xb4,0x7a,0xf0,0x1d, - 0x9f,0x17,0xe0,0x1e,0x93,0xb,0x70,0x1f,0x82,0xee,0x60,0x20,0x70,0x4a,0x70,0x21, - 0x61,0x7e,0xe0,0x22,0x52,0xcf,0x70,0x23,0x44,0x3,0xe0,0x24,0x34,0x2,0xf0,0x25, - 0x25,0x37,0x60,0x26,0x40,0xb7,0xf0,0x32,0x4e,0xf1,0x60,0x33,0x44,0x36,0x70,0x34, - 0x35,0x6a,0xe0,0x50,0x9d,0x99,0x0,0x51,0x54,0xd9,0x80,0x52,0x69,0xb4,0x80,0x0, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x2,0x1,0x3,0x2,0x1,0x3, - 0x0,0x0,0xc,0x5c,0x0,0x0,0x0,0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe,0x10, - 0x0,0x9,0x0,0x0,0x1c,0x20,0x0,0xd,0x4c,0x4d,0x54,0x0,0x43,0x45,0x53,0x54, - 0x0,0x43,0x45,0x54,0x0,0x45,0x45,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x11,0xf8,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xa1,0xf2,0xc1,0x24,0xff,0xff,0xff, - 0xff,0xdd,0xbb,0xb1,0x10,0xff,0xff,0xff,0xff,0xde,0x23,0xad,0x60,0xff,0xff,0xff, - 0xff,0xe1,0x78,0xd2,0x10,0xff,0xff,0xff,0xff,0xe1,0xe7,0x65,0xe0,0xff,0xff,0xff, - 0xff,0xe5,0x2f,0x3f,0x70,0xff,0xff,0xff,0xff,0xe5,0xa9,0xcc,0xe0,0xff,0xff,0xff, - 0xff,0xeb,0x4e,0xc6,0xf0,0x0,0x0,0x0,0x0,0x16,0x92,0x42,0x60,0x0,0x0,0x0, - 0x0,0x17,0x8,0xf7,0x70,0x0,0x0,0x0,0x0,0x17,0xfa,0x2b,0xe0,0x0,0x0,0x0, - 0x0,0x18,0xea,0x2a,0xf0,0x0,0x0,0x0,0x0,0x19,0xdb,0x5f,0x60,0x0,0x0,0x0, - 0x0,0x1a,0xcc,0xaf,0xf0,0x0,0x0,0x0,0x0,0x1b,0xbd,0xe4,0x60,0x0,0x0,0x0, - 0x0,0x1c,0xb4,0x7a,0xf0,0x0,0x0,0x0,0x0,0x1d,0x9f,0x17,0xe0,0x0,0x0,0x0, - 0x0,0x1e,0x93,0xb,0x70,0x0,0x0,0x0,0x0,0x1f,0x82,0xee,0x60,0x0,0x0,0x0, - 0x0,0x20,0x70,0x4a,0x70,0x0,0x0,0x0,0x0,0x21,0x61,0x7e,0xe0,0x0,0x0,0x0, - 0x0,0x22,0x52,0xcf,0x70,0x0,0x0,0x0,0x0,0x23,0x44,0x3,0xe0,0x0,0x0,0x0, - 0x0,0x24,0x34,0x2,0xf0,0x0,0x0,0x0,0x0,0x25,0x25,0x37,0x60,0x0,0x0,0x0, - 0x0,0x26,0x40,0xb7,0xf0,0x0,0x0,0x0,0x0,0x32,0x4e,0xf1,0x60,0x0,0x0,0x0, - 0x0,0x33,0x44,0x36,0x70,0x0,0x0,0x0,0x0,0x34,0x35,0x6a,0xe0,0x0,0x0,0x0, - 0x0,0x50,0x9d,0x99,0x0,0x0,0x0,0x0,0x0,0x51,0x54,0xd9,0x80,0x0,0x0,0x0, - 0x0,0x52,0x69,0xb4,0x80,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3, - 0x2,0x1,0x3,0x2,0x1,0x3,0x0,0x0,0xc,0x5c,0x0,0x0,0x0,0x0,0x1c,0x20, - 0x1,0x4,0x0,0x0,0xe,0x10,0x0,0x9,0x0,0x0,0x1c,0x20,0x0,0xd,0x4c,0x4d, - 0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x43,0x45,0x54,0x0,0x45,0x45,0x54,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x45,0x45,0x54,0x2d,0x32,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/NZ-CHAT - 0x0,0x0,0x8,0x9, + 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x9e,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0x9e, + 0xa6,0x3a,0x90,0x9f,0xbb,0x7,0x80,0xa0,0x86,0x1c,0x90,0xa1,0x9a,0xe9,0x80,0xa2, + 0x65,0xfe,0x90,0xa3,0x84,0x6,0x0,0xa4,0x45,0xe0,0x90,0xa4,0x8f,0xa6,0x80,0xcb, + 0x89,0xc,0x90,0xd2,0x23,0xf4,0x70,0xd2,0x61,0x18,0x0,0xf7,0x2f,0x76,0x90,0xf8, + 0x28,0x94,0x0,0xf9,0xf,0x58,0x90,0xfa,0x8,0x76,0x0,0xfa,0xf8,0x75,0x10,0xfb, + 0xe8,0x58,0x0,0xfc,0xd8,0x57,0x10,0xfd,0xc8,0x3a,0x0,0xfe,0xb8,0x39,0x10,0xff, + 0xa8,0x1c,0x0,0x0,0x98,0x1b,0x10,0x1,0x87,0xfe,0x0,0x2,0x77,0xfd,0x10,0x3, + 0x71,0x1a,0x80,0x4,0x61,0x19,0x90,0x5,0x50,0xfc,0x80,0x6,0x40,0xfb,0x90,0x7, + 0x30,0xde,0x80,0x7,0x8d,0x35,0x90,0x9,0x10,0xc0,0x80,0x9,0xad,0xb1,0x10,0xa, + 0xf0,0xa2,0x80,0xb,0xe0,0xa1,0x90,0xc,0xd9,0xbf,0x0,0xd,0xc0,0x83,0x90,0xe, + 0xb9,0xa1,0x0,0xf,0xa9,0xa0,0x10,0x10,0x99,0x83,0x0,0x11,0x89,0x82,0x10,0x12, + 0x79,0x65,0x0,0x13,0x69,0x64,0x10,0x14,0x59,0x47,0x0,0x15,0x49,0x46,0x10,0x16, + 0x39,0x29,0x0,0x17,0x29,0x28,0x10,0x18,0x22,0x45,0x80,0x19,0x9,0xa,0x10,0x1a, + 0x2,0x27,0x80,0x1a,0xf2,0x26,0x90,0x1b,0xe2,0x9,0x80,0x1c,0xd2,0x8,0x90,0x1d, + 0xc1,0xeb,0x80,0x1e,0xb1,0xea,0x90,0x1f,0xa1,0xcd,0x80,0x20,0x76,0x1d,0x10,0x21, + 0x81,0xaf,0x80,0x22,0x55,0xff,0x10,0x23,0x6a,0xcc,0x0,0x24,0x35,0xe1,0x10,0x25, + 0x4a,0xae,0x0,0x26,0x15,0xc3,0x10,0x27,0x2a,0x90,0x0,0x27,0xfe,0xdf,0x90,0x29, + 0xa,0x72,0x0,0x29,0xde,0xc1,0x90,0x2a,0xea,0x54,0x0,0x2b,0xbe,0xa3,0x90,0x2c, + 0xd3,0x70,0x80,0x2d,0x9e,0x85,0x90,0x2e,0xb3,0x52,0x80,0x2f,0x7e,0x67,0x90,0x30, + 0x93,0x34,0x80,0x31,0x67,0x84,0x10,0x32,0x73,0x16,0x80,0x33,0x47,0x66,0x10,0x34, + 0x52,0xf8,0x80,0x35,0x27,0x48,0x10,0x36,0x32,0xda,0x80,0x37,0x7,0x2a,0x10,0x38, + 0x1b,0xf7,0x0,0x38,0xe7,0xc,0x10,0x39,0xfb,0xd9,0x0,0x3a,0xc6,0xee,0x10,0x3b, + 0xdb,0xbb,0x0,0x3c,0xb0,0xa,0x90,0x3d,0xbb,0x9d,0x0,0x3e,0x8f,0xec,0x90,0x3f, + 0x9b,0x7f,0x0,0x40,0x6f,0xce,0x90,0x41,0x84,0x9b,0x80,0x42,0x4f,0xb0,0x90,0x43, + 0x64,0x7d,0x80,0x44,0x2f,0x92,0x90,0x45,0x44,0x5f,0x80,0x45,0xf3,0xc5,0x10,0x47, + 0x2d,0x7c,0x0,0x47,0xd3,0xa7,0x10,0x49,0xd,0x5e,0x0,0x49,0xb3,0x89,0x10,0x4a, + 0xed,0x40,0x0,0x4b,0x9c,0xa5,0x90,0x4c,0xd6,0x5c,0x80,0x4d,0x7c,0x87,0x90,0x4e, + 0xb6,0x3e,0x80,0x4f,0x5c,0x69,0x90,0x50,0x96,0x20,0x80,0x51,0x3c,0x4b,0x90,0x52, + 0x76,0x2,0x80,0x53,0x1c,0x2d,0x90,0x54,0x55,0xe4,0x80,0x54,0xfc,0xf,0x90,0x56, + 0x35,0xc6,0x80,0x56,0xe5,0x2c,0x10,0x58,0x1e,0xe3,0x0,0x58,0xc5,0xe,0x10,0x59, + 0xfe,0xc5,0x0,0x5a,0xa4,0xf0,0x10,0x5b,0xde,0xa7,0x0,0x5c,0x84,0xd2,0x10,0x5d, + 0xbe,0x89,0x0,0x5e,0x64,0xb4,0x10,0x5f,0x9e,0x6b,0x0,0x60,0x4d,0xd0,0x90,0x61, + 0x87,0x87,0x80,0x62,0x2d,0xb2,0x90,0x63,0x67,0x69,0x80,0x64,0xd,0x94,0x90,0x65, + 0x47,0x4b,0x80,0x65,0xed,0x76,0x90,0x67,0x27,0x2d,0x80,0x67,0xcd,0x58,0x90,0x69, + 0x7,0xf,0x80,0x69,0xad,0x3a,0x90,0x6a,0xe6,0xf1,0x80,0x6b,0x96,0x57,0x10,0x6c, + 0xd0,0xe,0x0,0x6d,0x76,0x39,0x10,0x6e,0xaf,0xf0,0x0,0x6f,0x56,0x1b,0x10,0x70, + 0x8f,0xd2,0x0,0x71,0x35,0xfd,0x10,0x72,0x6f,0xb4,0x0,0x73,0x15,0xdf,0x10,0x74, + 0x4f,0x96,0x0,0x74,0xfe,0xfb,0x90,0x76,0x38,0xb2,0x80,0x76,0xde,0xdd,0x90,0x78, + 0x18,0x94,0x80,0x78,0xbe,0xbf,0x90,0x79,0xf8,0x76,0x80,0x7a,0x9e,0xa1,0x90,0x7b, + 0xd8,0x58,0x80,0x7c,0x7e,0x83,0x90,0x7d,0xb8,0x3a,0x80,0x7e,0x5e,0x65,0x90,0x7f, + 0x98,0x1c,0x80,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0xff,0xff,0x9d,0x94,0x0,0x0,0xff,0xff,0xab,0xa0,0x1,0x4,0xff,0xff,0x9d, + 0x90,0x0,0x8,0xff,0xff,0xab,0xa0,0x1,0xc,0xff,0xff,0xab,0xa0,0x1,0x10,0x4c, + 0x4d,0x54,0x0,0x4d,0x44,0x54,0x0,0x4d,0x53,0x54,0x0,0x4d,0x57,0x54,0x0,0x4d, + 0x50,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x1,0x54,0x5a,0x69, + 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x9f,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0x5e,0x4,0xc,0xb0,0xff,0xff,0xff,0xff,0x9e,0xa6,0x3a, + 0x90,0xff,0xff,0xff,0xff,0x9f,0xbb,0x7,0x80,0xff,0xff,0xff,0xff,0xa0,0x86,0x1c, + 0x90,0xff,0xff,0xff,0xff,0xa1,0x9a,0xe9,0x80,0xff,0xff,0xff,0xff,0xa2,0x65,0xfe, + 0x90,0xff,0xff,0xff,0xff,0xa3,0x84,0x6,0x0,0xff,0xff,0xff,0xff,0xa4,0x45,0xe0, + 0x90,0xff,0xff,0xff,0xff,0xa4,0x8f,0xa6,0x80,0xff,0xff,0xff,0xff,0xcb,0x89,0xc, + 0x90,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x61,0x18, + 0x0,0xff,0xff,0xff,0xff,0xf7,0x2f,0x76,0x90,0xff,0xff,0xff,0xff,0xf8,0x28,0x94, + 0x0,0xff,0xff,0xff,0xff,0xf9,0xf,0x58,0x90,0xff,0xff,0xff,0xff,0xfa,0x8,0x76, + 0x0,0xff,0xff,0xff,0xff,0xfa,0xf8,0x75,0x10,0xff,0xff,0xff,0xff,0xfb,0xe8,0x58, + 0x0,0xff,0xff,0xff,0xff,0xfc,0xd8,0x57,0x10,0xff,0xff,0xff,0xff,0xfd,0xc8,0x3a, + 0x0,0xff,0xff,0xff,0xff,0xfe,0xb8,0x39,0x10,0xff,0xff,0xff,0xff,0xff,0xa8,0x1c, + 0x0,0x0,0x0,0x0,0x0,0x0,0x98,0x1b,0x10,0x0,0x0,0x0,0x0,0x1,0x87,0xfe, + 0x0,0x0,0x0,0x0,0x0,0x2,0x77,0xfd,0x10,0x0,0x0,0x0,0x0,0x3,0x71,0x1a, + 0x80,0x0,0x0,0x0,0x0,0x4,0x61,0x19,0x90,0x0,0x0,0x0,0x0,0x5,0x50,0xfc, + 0x80,0x0,0x0,0x0,0x0,0x6,0x40,0xfb,0x90,0x0,0x0,0x0,0x0,0x7,0x30,0xde, + 0x80,0x0,0x0,0x0,0x0,0x7,0x8d,0x35,0x90,0x0,0x0,0x0,0x0,0x9,0x10,0xc0, + 0x80,0x0,0x0,0x0,0x0,0x9,0xad,0xb1,0x10,0x0,0x0,0x0,0x0,0xa,0xf0,0xa2, + 0x80,0x0,0x0,0x0,0x0,0xb,0xe0,0xa1,0x90,0x0,0x0,0x0,0x0,0xc,0xd9,0xbf, + 0x0,0x0,0x0,0x0,0x0,0xd,0xc0,0x83,0x90,0x0,0x0,0x0,0x0,0xe,0xb9,0xa1, + 0x0,0x0,0x0,0x0,0x0,0xf,0xa9,0xa0,0x10,0x0,0x0,0x0,0x0,0x10,0x99,0x83, + 0x0,0x0,0x0,0x0,0x0,0x11,0x89,0x82,0x10,0x0,0x0,0x0,0x0,0x12,0x79,0x65, + 0x0,0x0,0x0,0x0,0x0,0x13,0x69,0x64,0x10,0x0,0x0,0x0,0x0,0x14,0x59,0x47, + 0x0,0x0,0x0,0x0,0x0,0x15,0x49,0x46,0x10,0x0,0x0,0x0,0x0,0x16,0x39,0x29, + 0x0,0x0,0x0,0x0,0x0,0x17,0x29,0x28,0x10,0x0,0x0,0x0,0x0,0x18,0x22,0x45, + 0x80,0x0,0x0,0x0,0x0,0x19,0x9,0xa,0x10,0x0,0x0,0x0,0x0,0x1a,0x2,0x27, + 0x80,0x0,0x0,0x0,0x0,0x1a,0xf2,0x26,0x90,0x0,0x0,0x0,0x0,0x1b,0xe2,0x9, + 0x80,0x0,0x0,0x0,0x0,0x1c,0xd2,0x8,0x90,0x0,0x0,0x0,0x0,0x1d,0xc1,0xeb, + 0x80,0x0,0x0,0x0,0x0,0x1e,0xb1,0xea,0x90,0x0,0x0,0x0,0x0,0x1f,0xa1,0xcd, + 0x80,0x0,0x0,0x0,0x0,0x20,0x76,0x1d,0x10,0x0,0x0,0x0,0x0,0x21,0x81,0xaf, + 0x80,0x0,0x0,0x0,0x0,0x22,0x55,0xff,0x10,0x0,0x0,0x0,0x0,0x23,0x6a,0xcc, + 0x0,0x0,0x0,0x0,0x0,0x24,0x35,0xe1,0x10,0x0,0x0,0x0,0x0,0x25,0x4a,0xae, + 0x0,0x0,0x0,0x0,0x0,0x26,0x15,0xc3,0x10,0x0,0x0,0x0,0x0,0x27,0x2a,0x90, + 0x0,0x0,0x0,0x0,0x0,0x27,0xfe,0xdf,0x90,0x0,0x0,0x0,0x0,0x29,0xa,0x72, + 0x0,0x0,0x0,0x0,0x0,0x29,0xde,0xc1,0x90,0x0,0x0,0x0,0x0,0x2a,0xea,0x54, + 0x0,0x0,0x0,0x0,0x0,0x2b,0xbe,0xa3,0x90,0x0,0x0,0x0,0x0,0x2c,0xd3,0x70, + 0x80,0x0,0x0,0x0,0x0,0x2d,0x9e,0x85,0x90,0x0,0x0,0x0,0x0,0x2e,0xb3,0x52, + 0x80,0x0,0x0,0x0,0x0,0x2f,0x7e,0x67,0x90,0x0,0x0,0x0,0x0,0x30,0x93,0x34, + 0x80,0x0,0x0,0x0,0x0,0x31,0x67,0x84,0x10,0x0,0x0,0x0,0x0,0x32,0x73,0x16, + 0x80,0x0,0x0,0x0,0x0,0x33,0x47,0x66,0x10,0x0,0x0,0x0,0x0,0x34,0x52,0xf8, + 0x80,0x0,0x0,0x0,0x0,0x35,0x27,0x48,0x10,0x0,0x0,0x0,0x0,0x36,0x32,0xda, + 0x80,0x0,0x0,0x0,0x0,0x37,0x7,0x2a,0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0xf7, + 0x0,0x0,0x0,0x0,0x0,0x38,0xe7,0xc,0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0xd9, + 0x0,0x0,0x0,0x0,0x0,0x3a,0xc6,0xee,0x10,0x0,0x0,0x0,0x0,0x3b,0xdb,0xbb, + 0x0,0x0,0x0,0x0,0x0,0x3c,0xb0,0xa,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x9d, + 0x0,0x0,0x0,0x0,0x0,0x3e,0x8f,0xec,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x7f, + 0x0,0x0,0x0,0x0,0x0,0x40,0x6f,0xce,0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x9b, + 0x80,0x0,0x0,0x0,0x0,0x42,0x4f,0xb0,0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x7d, + 0x80,0x0,0x0,0x0,0x0,0x44,0x2f,0x92,0x90,0x0,0x0,0x0,0x0,0x45,0x44,0x5f, + 0x80,0x0,0x0,0x0,0x0,0x45,0xf3,0xc5,0x10,0x0,0x0,0x0,0x0,0x47,0x2d,0x7c, + 0x0,0x0,0x0,0x0,0x0,0x47,0xd3,0xa7,0x10,0x0,0x0,0x0,0x0,0x49,0xd,0x5e, + 0x0,0x0,0x0,0x0,0x0,0x49,0xb3,0x89,0x10,0x0,0x0,0x0,0x0,0x4a,0xed,0x40, + 0x0,0x0,0x0,0x0,0x0,0x4b,0x9c,0xa5,0x90,0x0,0x0,0x0,0x0,0x4c,0xd6,0x5c, + 0x80,0x0,0x0,0x0,0x0,0x4d,0x7c,0x87,0x90,0x0,0x0,0x0,0x0,0x4e,0xb6,0x3e, + 0x80,0x0,0x0,0x0,0x0,0x4f,0x5c,0x69,0x90,0x0,0x0,0x0,0x0,0x50,0x96,0x20, + 0x80,0x0,0x0,0x0,0x0,0x51,0x3c,0x4b,0x90,0x0,0x0,0x0,0x0,0x52,0x76,0x2, + 0x80,0x0,0x0,0x0,0x0,0x53,0x1c,0x2d,0x90,0x0,0x0,0x0,0x0,0x54,0x55,0xe4, + 0x80,0x0,0x0,0x0,0x0,0x54,0xfc,0xf,0x90,0x0,0x0,0x0,0x0,0x56,0x35,0xc6, + 0x80,0x0,0x0,0x0,0x0,0x56,0xe5,0x2c,0x10,0x0,0x0,0x0,0x0,0x58,0x1e,0xe3, + 0x0,0x0,0x0,0x0,0x0,0x58,0xc5,0xe,0x10,0x0,0x0,0x0,0x0,0x59,0xfe,0xc5, + 0x0,0x0,0x0,0x0,0x0,0x5a,0xa4,0xf0,0x10,0x0,0x0,0x0,0x0,0x5b,0xde,0xa7, + 0x0,0x0,0x0,0x0,0x0,0x5c,0x84,0xd2,0x10,0x0,0x0,0x0,0x0,0x5d,0xbe,0x89, + 0x0,0x0,0x0,0x0,0x0,0x5e,0x64,0xb4,0x10,0x0,0x0,0x0,0x0,0x5f,0x9e,0x6b, + 0x0,0x0,0x0,0x0,0x0,0x60,0x4d,0xd0,0x90,0x0,0x0,0x0,0x0,0x61,0x87,0x87, + 0x80,0x0,0x0,0x0,0x0,0x62,0x2d,0xb2,0x90,0x0,0x0,0x0,0x0,0x63,0x67,0x69, + 0x80,0x0,0x0,0x0,0x0,0x64,0xd,0x94,0x90,0x0,0x0,0x0,0x0,0x65,0x47,0x4b, + 0x80,0x0,0x0,0x0,0x0,0x65,0xed,0x76,0x90,0x0,0x0,0x0,0x0,0x67,0x27,0x2d, + 0x80,0x0,0x0,0x0,0x0,0x67,0xcd,0x58,0x90,0x0,0x0,0x0,0x0,0x69,0x7,0xf, + 0x80,0x0,0x0,0x0,0x0,0x69,0xad,0x3a,0x90,0x0,0x0,0x0,0x0,0x6a,0xe6,0xf1, + 0x80,0x0,0x0,0x0,0x0,0x6b,0x96,0x57,0x10,0x0,0x0,0x0,0x0,0x6c,0xd0,0xe, + 0x0,0x0,0x0,0x0,0x0,0x6d,0x76,0x39,0x10,0x0,0x0,0x0,0x0,0x6e,0xaf,0xf0, + 0x0,0x0,0x0,0x0,0x0,0x6f,0x56,0x1b,0x10,0x0,0x0,0x0,0x0,0x70,0x8f,0xd2, + 0x0,0x0,0x0,0x0,0x0,0x71,0x35,0xfd,0x10,0x0,0x0,0x0,0x0,0x72,0x6f,0xb4, + 0x0,0x0,0x0,0x0,0x0,0x73,0x15,0xdf,0x10,0x0,0x0,0x0,0x0,0x74,0x4f,0x96, + 0x0,0x0,0x0,0x0,0x0,0x74,0xfe,0xfb,0x90,0x0,0x0,0x0,0x0,0x76,0x38,0xb2, + 0x80,0x0,0x0,0x0,0x0,0x76,0xde,0xdd,0x90,0x0,0x0,0x0,0x0,0x78,0x18,0x94, + 0x80,0x0,0x0,0x0,0x0,0x78,0xbe,0xbf,0x90,0x0,0x0,0x0,0x0,0x79,0xf8,0x76, + 0x80,0x0,0x0,0x0,0x0,0x7a,0x9e,0xa1,0x90,0x0,0x0,0x0,0x0,0x7b,0xd8,0x58, + 0x80,0x0,0x0,0x0,0x0,0x7c,0x7e,0x83,0x90,0x0,0x0,0x0,0x0,0x7d,0xb8,0x3a, + 0x80,0x0,0x0,0x0,0x0,0x7e,0x5e,0x65,0x90,0x0,0x0,0x0,0x0,0x7f,0x98,0x1c, + 0x80,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0xff,0xff,0x9d,0x94,0x0,0x0,0xff,0xff,0xab,0xa0,0x1,0x4,0xff,0xff,0x9d,0x90, + 0x0,0x8,0xff,0xff,0xab,0xa0,0x1,0xc,0xff,0xff,0xab,0xa0,0x1,0x10,0x4c,0x4d, + 0x54,0x0,0x4d,0x44,0x54,0x0,0x4d,0x53,0x54,0x0,0x4d,0x57,0x54,0x0,0x4d,0x50, + 0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x1,0xa,0x4d,0x53,0x54, + 0x37,0x4d,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e, + 0x31,0x2e,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Jamaica + 0x0,0x0,0x1,0xfb, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x81,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x10,0x80,0x0,0x0,0x0,0xd2, - 0xda,0x96,0xbc,0x9,0x18,0xfd,0xe0,0x9,0xac,0xa5,0xe0,0xa,0xef,0xa5,0x60,0xb, - 0x9e,0xfc,0xe0,0xc,0xd8,0xc1,0xe0,0xd,0x7e,0xde,0xe0,0xe,0xb8,0xa3,0xe0,0xf, - 0x5e,0xc0,0xe0,0x10,0x98,0x85,0xe0,0x11,0x3e,0xa2,0xe0,0x12,0x78,0x67,0xe0,0x13, - 0x1e,0x84,0xe0,0x14,0x58,0x49,0xe0,0x14,0xfe,0x66,0xe0,0x16,0x38,0x2b,0xe0,0x16, - 0xe7,0x83,0x60,0x18,0x21,0x48,0x60,0x18,0xc7,0x65,0x60,0x1a,0x1,0x2a,0x60,0x1a, - 0xa7,0x47,0x60,0x1b,0xe1,0xc,0x60,0x1c,0x87,0x29,0x60,0x1d,0xc0,0xee,0x60,0x1e, - 0x67,0xb,0x60,0x1f,0xa0,0xd0,0x60,0x20,0x46,0xed,0x60,0x21,0x80,0xb2,0x60,0x22, - 0x30,0x9,0xe0,0x23,0x69,0xce,0xe0,0x24,0xf,0xeb,0xe0,0x25,0x2e,0x1,0x60,0x26, - 0x2,0x42,0xe0,0x27,0xd,0xe3,0x60,0x27,0xe2,0x24,0xe0,0x28,0xed,0xc5,0x60,0x29, - 0xc2,0x6,0xe0,0x2a,0xcd,0xa7,0x60,0x2b,0xab,0x23,0x60,0x2c,0xad,0x89,0x60,0x2d, - 0x8b,0x5,0x60,0x2e,0x8d,0x6b,0x60,0x2f,0x6a,0xe7,0x60,0x30,0x6d,0x4d,0x60,0x31, - 0x4a,0xc9,0x60,0x32,0x56,0x69,0xe0,0x33,0x2a,0xab,0x60,0x34,0x36,0x4b,0xe0,0x35, - 0xa,0x8d,0x60,0x36,0x16,0x2d,0xe0,0x36,0xf3,0xa9,0xe0,0x37,0xf6,0xf,0xe0,0x38, - 0xd3,0x8b,0xe0,0x39,0xd5,0xf1,0xe0,0x3a,0xb3,0x6d,0xe0,0x3b,0xbf,0xe,0x60,0x3c, - 0x93,0x4f,0xe0,0x3d,0x9e,0xf0,0x60,0x3e,0x73,0x31,0xe0,0x3f,0x7e,0xd2,0x60,0x40, - 0x5c,0x4e,0x60,0x41,0x5e,0xb4,0x60,0x42,0x3c,0x30,0x60,0x43,0x3e,0x96,0x60,0x44, - 0x1c,0x12,0x60,0x45,0x1e,0x78,0x60,0x45,0xfb,0xf4,0x60,0x46,0xfe,0x5a,0x60,0x47, - 0xf7,0x85,0xe0,0x48,0xde,0x3c,0x60,0x49,0xd7,0x67,0xe0,0x4a,0xbe,0x1e,0x60,0x4b, - 0xb7,0x49,0xe0,0x4c,0x9e,0x0,0x60,0x4d,0x97,0x2b,0xe0,0x4e,0x7d,0xe2,0x60,0x4f, - 0x77,0xd,0xe0,0x50,0x66,0xfe,0xe0,0x51,0x60,0x2a,0x60,0x52,0x46,0xe0,0xe0,0x53, - 0x40,0xc,0x60,0x54,0x26,0xc2,0xe0,0x55,0x1f,0xee,0x60,0x56,0x6,0xa4,0xe0,0x56, - 0xff,0xd0,0x60,0x57,0xe6,0x86,0xe0,0x58,0xdf,0xb2,0x60,0x59,0xc6,0x68,0xe0,0x5a, - 0xbf,0x94,0x60,0x5b,0xaf,0x85,0x60,0x5c,0xa8,0xb0,0xe0,0x5d,0x8f,0x67,0x60,0x5e, - 0x88,0x92,0xe0,0x5f,0x6f,0x49,0x60,0x60,0x68,0x74,0xe0,0x61,0x4f,0x2b,0x60,0x62, - 0x48,0x56,0xe0,0x63,0x2f,0xd,0x60,0x64,0x28,0x38,0xe0,0x65,0xe,0xef,0x60,0x66, - 0x11,0x55,0x60,0x66,0xf8,0xb,0xe0,0x67,0xf1,0x37,0x60,0x68,0xd7,0xed,0xe0,0x69, - 0xd1,0x19,0x60,0x6a,0xb7,0xcf,0xe0,0x6b,0xb0,0xfb,0x60,0x6c,0x97,0xb1,0xe0,0x6d, - 0x90,0xdd,0x60,0x6e,0x77,0x93,0xe0,0x6f,0x70,0xbf,0x60,0x70,0x60,0xb0,0x60,0x71, - 0x59,0xdb,0xe0,0x72,0x40,0x92,0x60,0x73,0x39,0xbd,0xe0,0x74,0x20,0x74,0x60,0x75, - 0x19,0x9f,0xe0,0x76,0x0,0x56,0x60,0x76,0xf9,0x81,0xe0,0x77,0xe0,0x38,0x60,0x78, - 0xd9,0x63,0xe0,0x79,0xc0,0x1a,0x60,0x7a,0xb9,0x45,0xe0,0x7b,0xa9,0x36,0xe0,0x7c, - 0xa2,0x62,0x60,0x7d,0x89,0x18,0xe0,0x7e,0x82,0x44,0x60,0x7f,0x68,0xfa,0xe0,0x1, - 0x4,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x0,0x0,0xab,0xfc,0x0,0x0,0x0,0x0,0xac,0x44,0x0,0x4,0x0,0x0,0xc1,0x5c, - 0x1,0xa,0x0,0x0,0xb3,0x4c,0x0,0x4,0x0,0x0,0xb3,0x4c,0x0,0x4,0x4c,0x4d, - 0x54,0x0,0x43,0x48,0x41,0x53,0x54,0x0,0x43,0x48,0x41,0x44,0x54,0x0,0x0,0x0, - 0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5, - 0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x82,0x0,0x0,0x0,0x5, - 0x0,0x0,0x0,0x10,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff, - 0x41,0xb7,0x44,0x84,0xff,0xff,0xff,0xff,0xd2,0xda,0x96,0xbc,0x0,0x0,0x0,0x0, - 0x9,0x18,0xfd,0xe0,0x0,0x0,0x0,0x0,0x9,0xac,0xa5,0xe0,0x0,0x0,0x0,0x0, - 0xa,0xef,0xa5,0x60,0x0,0x0,0x0,0x0,0xb,0x9e,0xfc,0xe0,0x0,0x0,0x0,0x0, - 0xc,0xd8,0xc1,0xe0,0x0,0x0,0x0,0x0,0xd,0x7e,0xde,0xe0,0x0,0x0,0x0,0x0, - 0xe,0xb8,0xa3,0xe0,0x0,0x0,0x0,0x0,0xf,0x5e,0xc0,0xe0,0x0,0x0,0x0,0x0, - 0x10,0x98,0x85,0xe0,0x0,0x0,0x0,0x0,0x11,0x3e,0xa2,0xe0,0x0,0x0,0x0,0x0, - 0x12,0x78,0x67,0xe0,0x0,0x0,0x0,0x0,0x13,0x1e,0x84,0xe0,0x0,0x0,0x0,0x0, - 0x14,0x58,0x49,0xe0,0x0,0x0,0x0,0x0,0x14,0xfe,0x66,0xe0,0x0,0x0,0x0,0x0, - 0x16,0x38,0x2b,0xe0,0x0,0x0,0x0,0x0,0x16,0xe7,0x83,0x60,0x0,0x0,0x0,0x0, - 0x18,0x21,0x48,0x60,0x0,0x0,0x0,0x0,0x18,0xc7,0x65,0x60,0x0,0x0,0x0,0x0, - 0x1a,0x1,0x2a,0x60,0x0,0x0,0x0,0x0,0x1a,0xa7,0x47,0x60,0x0,0x0,0x0,0x0, - 0x1b,0xe1,0xc,0x60,0x0,0x0,0x0,0x0,0x1c,0x87,0x29,0x60,0x0,0x0,0x0,0x0, - 0x1d,0xc0,0xee,0x60,0x0,0x0,0x0,0x0,0x1e,0x67,0xb,0x60,0x0,0x0,0x0,0x0, - 0x1f,0xa0,0xd0,0x60,0x0,0x0,0x0,0x0,0x20,0x46,0xed,0x60,0x0,0x0,0x0,0x0, - 0x21,0x80,0xb2,0x60,0x0,0x0,0x0,0x0,0x22,0x30,0x9,0xe0,0x0,0x0,0x0,0x0, - 0x23,0x69,0xce,0xe0,0x0,0x0,0x0,0x0,0x24,0xf,0xeb,0xe0,0x0,0x0,0x0,0x0, - 0x25,0x2e,0x1,0x60,0x0,0x0,0x0,0x0,0x26,0x2,0x42,0xe0,0x0,0x0,0x0,0x0, - 0x27,0xd,0xe3,0x60,0x0,0x0,0x0,0x0,0x27,0xe2,0x24,0xe0,0x0,0x0,0x0,0x0, - 0x28,0xed,0xc5,0x60,0x0,0x0,0x0,0x0,0x29,0xc2,0x6,0xe0,0x0,0x0,0x0,0x0, - 0x2a,0xcd,0xa7,0x60,0x0,0x0,0x0,0x0,0x2b,0xab,0x23,0x60,0x0,0x0,0x0,0x0, - 0x2c,0xad,0x89,0x60,0x0,0x0,0x0,0x0,0x2d,0x8b,0x5,0x60,0x0,0x0,0x0,0x0, - 0x2e,0x8d,0x6b,0x60,0x0,0x0,0x0,0x0,0x2f,0x6a,0xe7,0x60,0x0,0x0,0x0,0x0, - 0x30,0x6d,0x4d,0x60,0x0,0x0,0x0,0x0,0x31,0x4a,0xc9,0x60,0x0,0x0,0x0,0x0, - 0x32,0x56,0x69,0xe0,0x0,0x0,0x0,0x0,0x33,0x2a,0xab,0x60,0x0,0x0,0x0,0x0, - 0x34,0x36,0x4b,0xe0,0x0,0x0,0x0,0x0,0x35,0xa,0x8d,0x60,0x0,0x0,0x0,0x0, - 0x36,0x16,0x2d,0xe0,0x0,0x0,0x0,0x0,0x36,0xf3,0xa9,0xe0,0x0,0x0,0x0,0x0, - 0x37,0xf6,0xf,0xe0,0x0,0x0,0x0,0x0,0x38,0xd3,0x8b,0xe0,0x0,0x0,0x0,0x0, - 0x39,0xd5,0xf1,0xe0,0x0,0x0,0x0,0x0,0x3a,0xb3,0x6d,0xe0,0x0,0x0,0x0,0x0, - 0x3b,0xbf,0xe,0x60,0x0,0x0,0x0,0x0,0x3c,0x93,0x4f,0xe0,0x0,0x0,0x0,0x0, - 0x3d,0x9e,0xf0,0x60,0x0,0x0,0x0,0x0,0x3e,0x73,0x31,0xe0,0x0,0x0,0x0,0x0, - 0x3f,0x7e,0xd2,0x60,0x0,0x0,0x0,0x0,0x40,0x5c,0x4e,0x60,0x0,0x0,0x0,0x0, - 0x41,0x5e,0xb4,0x60,0x0,0x0,0x0,0x0,0x42,0x3c,0x30,0x60,0x0,0x0,0x0,0x0, - 0x43,0x3e,0x96,0x60,0x0,0x0,0x0,0x0,0x44,0x1c,0x12,0x60,0x0,0x0,0x0,0x0, - 0x45,0x1e,0x78,0x60,0x0,0x0,0x0,0x0,0x45,0xfb,0xf4,0x60,0x0,0x0,0x0,0x0, - 0x46,0xfe,0x5a,0x60,0x0,0x0,0x0,0x0,0x47,0xf7,0x85,0xe0,0x0,0x0,0x0,0x0, - 0x48,0xde,0x3c,0x60,0x0,0x0,0x0,0x0,0x49,0xd7,0x67,0xe0,0x0,0x0,0x0,0x0, - 0x4a,0xbe,0x1e,0x60,0x0,0x0,0x0,0x0,0x4b,0xb7,0x49,0xe0,0x0,0x0,0x0,0x0, - 0x4c,0x9e,0x0,0x60,0x0,0x0,0x0,0x0,0x4d,0x97,0x2b,0xe0,0x0,0x0,0x0,0x0, - 0x4e,0x7d,0xe2,0x60,0x0,0x0,0x0,0x0,0x4f,0x77,0xd,0xe0,0x0,0x0,0x0,0x0, - 0x50,0x66,0xfe,0xe0,0x0,0x0,0x0,0x0,0x51,0x60,0x2a,0x60,0x0,0x0,0x0,0x0, - 0x52,0x46,0xe0,0xe0,0x0,0x0,0x0,0x0,0x53,0x40,0xc,0x60,0x0,0x0,0x0,0x0, - 0x54,0x26,0xc2,0xe0,0x0,0x0,0x0,0x0,0x55,0x1f,0xee,0x60,0x0,0x0,0x0,0x0, - 0x56,0x6,0xa4,0xe0,0x0,0x0,0x0,0x0,0x56,0xff,0xd0,0x60,0x0,0x0,0x0,0x0, - 0x57,0xe6,0x86,0xe0,0x0,0x0,0x0,0x0,0x58,0xdf,0xb2,0x60,0x0,0x0,0x0,0x0, - 0x59,0xc6,0x68,0xe0,0x0,0x0,0x0,0x0,0x5a,0xbf,0x94,0x60,0x0,0x0,0x0,0x0, - 0x5b,0xaf,0x85,0x60,0x0,0x0,0x0,0x0,0x5c,0xa8,0xb0,0xe0,0x0,0x0,0x0,0x0, - 0x5d,0x8f,0x67,0x60,0x0,0x0,0x0,0x0,0x5e,0x88,0x92,0xe0,0x0,0x0,0x0,0x0, - 0x5f,0x6f,0x49,0x60,0x0,0x0,0x0,0x0,0x60,0x68,0x74,0xe0,0x0,0x0,0x0,0x0, - 0x61,0x4f,0x2b,0x60,0x0,0x0,0x0,0x0,0x62,0x48,0x56,0xe0,0x0,0x0,0x0,0x0, - 0x63,0x2f,0xd,0x60,0x0,0x0,0x0,0x0,0x64,0x28,0x38,0xe0,0x0,0x0,0x0,0x0, - 0x65,0xe,0xef,0x60,0x0,0x0,0x0,0x0,0x66,0x11,0x55,0x60,0x0,0x0,0x0,0x0, - 0x66,0xf8,0xb,0xe0,0x0,0x0,0x0,0x0,0x67,0xf1,0x37,0x60,0x0,0x0,0x0,0x0, - 0x68,0xd7,0xed,0xe0,0x0,0x0,0x0,0x0,0x69,0xd1,0x19,0x60,0x0,0x0,0x0,0x0, - 0x6a,0xb7,0xcf,0xe0,0x0,0x0,0x0,0x0,0x6b,0xb0,0xfb,0x60,0x0,0x0,0x0,0x0, - 0x6c,0x97,0xb1,0xe0,0x0,0x0,0x0,0x0,0x6d,0x90,0xdd,0x60,0x0,0x0,0x0,0x0, - 0x6e,0x77,0x93,0xe0,0x0,0x0,0x0,0x0,0x6f,0x70,0xbf,0x60,0x0,0x0,0x0,0x0, - 0x70,0x60,0xb0,0x60,0x0,0x0,0x0,0x0,0x71,0x59,0xdb,0xe0,0x0,0x0,0x0,0x0, - 0x72,0x40,0x92,0x60,0x0,0x0,0x0,0x0,0x73,0x39,0xbd,0xe0,0x0,0x0,0x0,0x0, - 0x74,0x20,0x74,0x60,0x0,0x0,0x0,0x0,0x75,0x19,0x9f,0xe0,0x0,0x0,0x0,0x0, - 0x76,0x0,0x56,0x60,0x0,0x0,0x0,0x0,0x76,0xf9,0x81,0xe0,0x0,0x0,0x0,0x0, - 0x77,0xe0,0x38,0x60,0x0,0x0,0x0,0x0,0x78,0xd9,0x63,0xe0,0x0,0x0,0x0,0x0, - 0x79,0xc0,0x1a,0x60,0x0,0x0,0x0,0x0,0x7a,0xb9,0x45,0xe0,0x0,0x0,0x0,0x0, - 0x7b,0xa9,0x36,0xe0,0x0,0x0,0x0,0x0,0x7c,0xa2,0x62,0x60,0x0,0x0,0x0,0x0, - 0x7d,0x89,0x18,0xe0,0x0,0x0,0x0,0x0,0x7e,0x82,0x44,0x60,0x0,0x0,0x0,0x0, - 0x7f,0x68,0xfa,0xe0,0x0,0x1,0x4,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x16,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x10,0x80,0x0,0x0,0x0,0x93, + 0xf,0xb4,0xff,0x7,0x8d,0x19,0x70,0x9,0x10,0xa4,0x60,0x9,0xad,0x94,0xf0,0xa, + 0xf0,0x86,0x60,0xb,0xe0,0x85,0x70,0xc,0xd9,0xa2,0xe0,0xd,0xc0,0x67,0x70,0xe, + 0xb9,0x84,0xe0,0xf,0xa9,0x83,0xf0,0x10,0x99,0x66,0xe0,0x11,0x89,0x65,0xf0,0x12, + 0x79,0x48,0xe0,0x13,0x69,0x47,0xf0,0x14,0x59,0x2a,0xe0,0x15,0x49,0x29,0xf0,0x16, + 0x39,0xc,0xe0,0x17,0x29,0xb,0xf0,0x18,0x22,0x29,0x60,0x19,0x8,0xed,0xf0,0x1a, + 0x2,0xb,0x60,0x1,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0xff,0xff,0xb8,0x1,0x0,0x0,0xff, + 0xff,0xb8,0x1,0x0,0x4,0xff,0xff,0xb9,0xb0,0x0,0x8,0xff,0xff,0xc7,0xc0,0x1, + 0xc,0x4c,0x4d,0x54,0x0,0x4b,0x4d,0x54,0x0,0x45,0x53,0x54,0x0,0x45,0x44,0x54, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x17,0x0,0x0,0x0, + 0x4,0x0,0x0,0x0,0x10,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff, + 0xff,0x69,0x87,0x23,0x7f,0xff,0xff,0xff,0xff,0x93,0xf,0xb4,0xff,0x0,0x0,0x0, + 0x0,0x7,0x8d,0x19,0x70,0x0,0x0,0x0,0x0,0x9,0x10,0xa4,0x60,0x0,0x0,0x0, + 0x0,0x9,0xad,0x94,0xf0,0x0,0x0,0x0,0x0,0xa,0xf0,0x86,0x60,0x0,0x0,0x0, + 0x0,0xb,0xe0,0x85,0x70,0x0,0x0,0x0,0x0,0xc,0xd9,0xa2,0xe0,0x0,0x0,0x0, + 0x0,0xd,0xc0,0x67,0x70,0x0,0x0,0x0,0x0,0xe,0xb9,0x84,0xe0,0x0,0x0,0x0, + 0x0,0xf,0xa9,0x83,0xf0,0x0,0x0,0x0,0x0,0x10,0x99,0x66,0xe0,0x0,0x0,0x0, + 0x0,0x11,0x89,0x65,0xf0,0x0,0x0,0x0,0x0,0x12,0x79,0x48,0xe0,0x0,0x0,0x0, + 0x0,0x13,0x69,0x47,0xf0,0x0,0x0,0x0,0x0,0x14,0x59,0x2a,0xe0,0x0,0x0,0x0, + 0x0,0x15,0x49,0x29,0xf0,0x0,0x0,0x0,0x0,0x16,0x39,0xc,0xe0,0x0,0x0,0x0, + 0x0,0x17,0x29,0xb,0xf0,0x0,0x0,0x0,0x0,0x18,0x22,0x29,0x60,0x0,0x0,0x0, + 0x0,0x19,0x8,0xed,0xf0,0x0,0x0,0x0,0x0,0x1a,0x2,0xb,0x60,0x0,0x1,0x2, 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x0,0x0,0xab,0xfc,0x0,0x0,0x0,0x0,0xac,0x44, - 0x0,0x4,0x0,0x0,0xc1,0x5c,0x1,0xa,0x0,0x0,0xb3,0x4c,0x0,0x4,0x0,0x0, - 0xb3,0x4c,0x0,0x4,0x4c,0x4d,0x54,0x0,0x43,0x48,0x41,0x53,0x54,0x0,0x43,0x48, - 0x41,0x44,0x54,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x43, - 0x48,0x41,0x53,0x54,0x2d,0x31,0x32,0x3a,0x34,0x35,0x43,0x48,0x41,0x44,0x54,0x2c, - 0x4d,0x39,0x2e,0x35,0x2e,0x30,0x2f,0x32,0x3a,0x34,0x35,0x2c,0x4d,0x34,0x2e,0x31, - 0x2e,0x30,0x2f,0x33,0x3a,0x34,0x35,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/zone.tab - 0x0,0x0,0x4a,0xc7, - 0x23, - 0x20,0x74,0x7a,0x20,0x7a,0x6f,0x6e,0x65,0x20,0x64,0x65,0x73,0x63,0x72,0x69,0x70, - 0x74,0x69,0x6f,0x6e,0x73,0x20,0x28,0x64,0x65,0x70,0x72,0x65,0x63,0x61,0x74,0x65, - 0x64,0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x29,0xa,0x23,0xa,0x23,0x20,0x54, - 0x68,0x69,0x73,0x20,0x66,0x69,0x6c,0x65,0x20,0x69,0x73,0x20,0x69,0x6e,0x20,0x74, - 0x68,0x65,0x20,0x70,0x75,0x62,0x6c,0x69,0x63,0x20,0x64,0x6f,0x6d,0x61,0x69,0x6e, - 0x2c,0x20,0x73,0x6f,0x20,0x63,0x6c,0x61,0x72,0x69,0x66,0x69,0x65,0x64,0x20,0x61, - 0x73,0x20,0x6f,0x66,0xa,0x23,0x20,0x32,0x30,0x30,0x39,0x2d,0x30,0x35,0x2d,0x31, - 0x37,0x20,0x62,0x79,0x20,0x41,0x72,0x74,0x68,0x75,0x72,0x20,0x44,0x61,0x76,0x69, - 0x64,0x20,0x4f,0x6c,0x73,0x6f,0x6e,0x2e,0xa,0x23,0xa,0x23,0x20,0x46,0x72,0x6f, - 0x6d,0x20,0x50,0x61,0x75,0x6c,0x20,0x45,0x67,0x67,0x65,0x72,0x74,0x20,0x28,0x32, - 0x30,0x31,0x34,0x2d,0x30,0x37,0x2d,0x33,0x31,0x29,0x3a,0xa,0x23,0x20,0x54,0x68, - 0x69,0x73,0x20,0x66,0x69,0x6c,0x65,0x20,0x69,0x73,0x20,0x69,0x6e,0x74,0x65,0x6e, - 0x64,0x65,0x64,0x20,0x61,0x73,0x20,0x61,0x20,0x62,0x61,0x63,0x6b,0x77,0x61,0x72, - 0x64,0x2d,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x20, - 0x61,0x69,0x64,0x20,0x66,0x6f,0x72,0x20,0x6f,0x6c,0x64,0x65,0x72,0x20,0x70,0x72, - 0x6f,0x67,0x72,0x61,0x6d,0x73,0x2e,0xa,0x23,0x20,0x4e,0x65,0x77,0x20,0x70,0x72, - 0x6f,0x67,0x72,0x61,0x6d,0x73,0x20,0x73,0x68,0x6f,0x75,0x6c,0x64,0x20,0x75,0x73, - 0x65,0x20,0x7a,0x6f,0x6e,0x65,0x31,0x39,0x37,0x30,0x2e,0x74,0x61,0x62,0x2e,0x20, - 0x20,0x54,0x68,0x69,0x73,0x20,0x66,0x69,0x6c,0x65,0x20,0x69,0x73,0x20,0x6c,0x69, - 0x6b,0x65,0x20,0x7a,0x6f,0x6e,0x65,0x31,0x39,0x37,0x30,0x2e,0x74,0x61,0x62,0x20, - 0x28,0x73,0x65,0x65,0xa,0x23,0x20,0x7a,0x6f,0x6e,0x65,0x31,0x39,0x37,0x30,0x2e, - 0x74,0x61,0x62,0x27,0x73,0x20,0x63,0x6f,0x6d,0x6d,0x65,0x6e,0x74,0x73,0x29,0x2c, - 0x20,0x62,0x75,0x74,0x20,0x77,0x69,0x74,0x68,0x20,0x74,0x68,0x65,0x20,0x66,0x6f, - 0x6c,0x6c,0x6f,0x77,0x69,0x6e,0x67,0x20,0x61,0x64,0x64,0x69,0x74,0x69,0x6f,0x6e, - 0x61,0x6c,0x20,0x72,0x65,0x73,0x74,0x72,0x69,0x63,0x74,0x69,0x6f,0x6e,0x73,0x3a, - 0xa,0x23,0xa,0x23,0x20,0x31,0x2e,0x20,0x20,0x54,0x68,0x69,0x73,0x20,0x66,0x69, - 0x6c,0x65,0x20,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x73,0x20,0x6f,0x6e,0x6c,0x79, - 0x20,0x41,0x53,0x43,0x49,0x49,0x20,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72, - 0x73,0x2e,0xa,0x23,0x20,0x32,0x2e,0x20,0x20,0x54,0x68,0x65,0x20,0x66,0x69,0x72, - 0x73,0x74,0x20,0x64,0x61,0x74,0x61,0x20,0x63,0x6f,0x6c,0x75,0x6d,0x6e,0x20,0x63, - 0x6f,0x6e,0x74,0x61,0x69,0x6e,0x73,0x20,0x65,0x78,0x61,0x63,0x74,0x6c,0x79,0x20, - 0x6f,0x6e,0x65,0x20,0x63,0x6f,0x75,0x6e,0x74,0x72,0x79,0x20,0x63,0x6f,0x64,0x65, - 0x2e,0xa,0x23,0xa,0x23,0x20,0x42,0x65,0x63,0x61,0x75,0x73,0x65,0x20,0x6f,0x66, - 0x20,0x28,0x32,0x29,0x2c,0x20,0x65,0x61,0x63,0x68,0x20,0x72,0x6f,0x77,0x20,0x73, - 0x74,0x61,0x6e,0x64,0x73,0x20,0x66,0x6f,0x72,0x20,0x61,0x6e,0x20,0x61,0x72,0x65, - 0x61,0x20,0x74,0x68,0x61,0x74,0x20,0x69,0x73,0x20,0x74,0x68,0x65,0x20,0x69,0x6e, - 0x74,0x65,0x72,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0xa,0x23,0x20,0x6f,0x66,0x20, - 0x61,0x20,0x72,0x65,0x67,0x69,0x6f,0x6e,0x20,0x69,0x64,0x65,0x6e,0x74,0x69,0x66, - 0x69,0x65,0x64,0x20,0x62,0x79,0x20,0x61,0x20,0x63,0x6f,0x75,0x6e,0x74,0x72,0x79, - 0x20,0x63,0x6f,0x64,0x65,0x20,0x61,0x6e,0x64,0x20,0x6f,0x66,0x20,0x61,0x20,0x7a, - 0x6f,0x6e,0x65,0x20,0x77,0x68,0x65,0x72,0x65,0x20,0x63,0x69,0x76,0x69,0x6c,0xa, - 0x23,0x20,0x63,0x6c,0x6f,0x63,0x6b,0x73,0x20,0x68,0x61,0x76,0x65,0x20,0x61,0x67, - 0x72,0x65,0x65,0x64,0x20,0x73,0x69,0x6e,0x63,0x65,0x20,0x31,0x39,0x37,0x30,0x3b, - 0x20,0x74,0x68,0x69,0x73,0x20,0x69,0x73,0x20,0x61,0x20,0x6e,0x61,0x72,0x72,0x6f, - 0x77,0x65,0x72,0x20,0x64,0x65,0x66,0x69,0x6e,0x69,0x74,0x69,0x6f,0x6e,0x20,0x74, - 0x68,0x61,0x6e,0xa,0x23,0x20,0x74,0x68,0x61,0x74,0x20,0x6f,0x66,0x20,0x7a,0x6f, - 0x6e,0x65,0x31,0x39,0x37,0x30,0x2e,0x74,0x61,0x62,0x2e,0xa,0x23,0xa,0x23,0x20, - 0x54,0x68,0x69,0x73,0x20,0x74,0x61,0x62,0x6c,0x65,0x20,0x69,0x73,0x20,0x69,0x6e, - 0x74,0x65,0x6e,0x64,0x65,0x64,0x20,0x61,0x73,0x20,0x61,0x6e,0x20,0x61,0x69,0x64, - 0x20,0x66,0x6f,0x72,0x20,0x75,0x73,0x65,0x72,0x73,0x2c,0x20,0x74,0x6f,0x20,0x68, - 0x65,0x6c,0x70,0x20,0x74,0x68,0x65,0x6d,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x20, - 0x74,0x69,0x6d,0x65,0xa,0x23,0x20,0x7a,0x6f,0x6e,0x65,0x20,0x64,0x61,0x74,0x61, - 0x20,0x65,0x6e,0x74,0x72,0x69,0x65,0x73,0x20,0x61,0x70,0x70,0x72,0x6f,0x70,0x72, - 0x69,0x61,0x74,0x65,0x20,0x66,0x6f,0x72,0x20,0x74,0x68,0x65,0x69,0x72,0x20,0x70, - 0x72,0x61,0x63,0x74,0x69,0x63,0x61,0x6c,0x20,0x6e,0x65,0x65,0x64,0x73,0x2e,0x20, - 0x20,0x49,0x74,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0xa,0x23,0x20,0x69,0x6e,0x74, - 0x65,0x6e,0x64,0x65,0x64,0x20,0x74,0x6f,0x20,0x74,0x61,0x6b,0x65,0x20,0x6f,0x72, - 0x20,0x65,0x6e,0x64,0x6f,0x72,0x73,0x65,0x20,0x61,0x6e,0x79,0x20,0x70,0x6f,0x73, - 0x69,0x74,0x69,0x6f,0x6e,0x20,0x6f,0x6e,0x20,0x6c,0x65,0x67,0x61,0x6c,0x20,0x6f, - 0x72,0x20,0x74,0x65,0x72,0x72,0x69,0x74,0x6f,0x72,0x69,0x61,0x6c,0x20,0x63,0x6c, - 0x61,0x69,0x6d,0x73,0x2e,0xa,0x23,0xa,0x23,0x63,0x6f,0x75,0x6e,0x74,0x72,0x79, - 0x2d,0xa,0x23,0x63,0x6f,0x64,0x65,0x9,0x63,0x6f,0x6f,0x72,0x64,0x69,0x6e,0x61, - 0x74,0x65,0x73,0x9,0x54,0x5a,0x9,0x9,0x9,0x63,0x6f,0x6d,0x6d,0x65,0x6e,0x74, - 0x73,0xa,0x41,0x44,0x9,0x2b,0x34,0x32,0x33,0x30,0x2b,0x30,0x30,0x31,0x33,0x31, - 0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x41,0x6e,0x64,0x6f,0x72,0x72,0x61,0xa, - 0x41,0x45,0x9,0x2b,0x32,0x35,0x31,0x38,0x2b,0x30,0x35,0x35,0x31,0x38,0x9,0x41, - 0x73,0x69,0x61,0x2f,0x44,0x75,0x62,0x61,0x69,0xa,0x41,0x46,0x9,0x2b,0x33,0x34, - 0x33,0x31,0x2b,0x30,0x36,0x39,0x31,0x32,0x9,0x41,0x73,0x69,0x61,0x2f,0x4b,0x61, - 0x62,0x75,0x6c,0xa,0x41,0x47,0x9,0x2b,0x31,0x37,0x30,0x33,0x2d,0x30,0x36,0x31, - 0x34,0x38,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x41,0x6e,0x74,0x69,0x67, - 0x75,0x61,0xa,0x41,0x49,0x9,0x2b,0x31,0x38,0x31,0x32,0x2d,0x30,0x36,0x33,0x30, - 0x34,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x41,0x6e,0x67,0x75,0x69,0x6c, - 0x6c,0x61,0xa,0x41,0x4c,0x9,0x2b,0x34,0x31,0x32,0x30,0x2b,0x30,0x31,0x39,0x35, - 0x30,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x54,0x69,0x72,0x61,0x6e,0x65,0xa, - 0x41,0x4d,0x9,0x2b,0x34,0x30,0x31,0x31,0x2b,0x30,0x34,0x34,0x33,0x30,0x9,0x41, - 0x73,0x69,0x61,0x2f,0x59,0x65,0x72,0x65,0x76,0x61,0x6e,0xa,0x41,0x4f,0x9,0x2d, - 0x30,0x38,0x34,0x38,0x2b,0x30,0x31,0x33,0x31,0x34,0x9,0x41,0x66,0x72,0x69,0x63, - 0x61,0x2f,0x4c,0x75,0x61,0x6e,0x64,0x61,0xa,0x41,0x51,0x9,0x2d,0x37,0x37,0x35, - 0x30,0x2b,0x31,0x36,0x36,0x33,0x36,0x9,0x41,0x6e,0x74,0x61,0x72,0x63,0x74,0x69, - 0x63,0x61,0x2f,0x4d,0x63,0x4d,0x75,0x72,0x64,0x6f,0x9,0x4e,0x65,0x77,0x20,0x5a, - 0x65,0x61,0x6c,0x61,0x6e,0x64,0x20,0x74,0x69,0x6d,0x65,0x20,0x2d,0x20,0x4d,0x63, - 0x4d,0x75,0x72,0x64,0x6f,0x2c,0x20,0x53,0x6f,0x75,0x74,0x68,0x20,0x50,0x6f,0x6c, - 0x65,0xa,0x41,0x51,0x9,0x2d,0x36,0x36,0x31,0x37,0x2b,0x31,0x31,0x30,0x33,0x31, - 0x9,0x41,0x6e,0x74,0x61,0x72,0x63,0x74,0x69,0x63,0x61,0x2f,0x43,0x61,0x73,0x65, - 0x79,0x9,0x43,0x61,0x73,0x65,0x79,0xa,0x41,0x51,0x9,0x2d,0x36,0x38,0x33,0x35, - 0x2b,0x30,0x37,0x37,0x35,0x38,0x9,0x41,0x6e,0x74,0x61,0x72,0x63,0x74,0x69,0x63, - 0x61,0x2f,0x44,0x61,0x76,0x69,0x73,0x9,0x44,0x61,0x76,0x69,0x73,0xa,0x41,0x51, - 0x9,0x2d,0x36,0x36,0x34,0x30,0x2b,0x31,0x34,0x30,0x30,0x31,0x9,0x41,0x6e,0x74, - 0x61,0x72,0x63,0x74,0x69,0x63,0x61,0x2f,0x44,0x75,0x6d,0x6f,0x6e,0x74,0x44,0x55, - 0x72,0x76,0x69,0x6c,0x6c,0x65,0x9,0x44,0x75,0x6d,0x6f,0x6e,0x74,0x2d,0x64,0x27, - 0x55,0x72,0x76,0x69,0x6c,0x6c,0x65,0xa,0x41,0x51,0x9,0x2d,0x36,0x37,0x33,0x36, - 0x2b,0x30,0x36,0x32,0x35,0x33,0x9,0x41,0x6e,0x74,0x61,0x72,0x63,0x74,0x69,0x63, - 0x61,0x2f,0x4d,0x61,0x77,0x73,0x6f,0x6e,0x9,0x4d,0x61,0x77,0x73,0x6f,0x6e,0xa, - 0x41,0x51,0x9,0x2d,0x36,0x34,0x34,0x38,0x2d,0x30,0x36,0x34,0x30,0x36,0x9,0x41, - 0x6e,0x74,0x61,0x72,0x63,0x74,0x69,0x63,0x61,0x2f,0x50,0x61,0x6c,0x6d,0x65,0x72, - 0x9,0x50,0x61,0x6c,0x6d,0x65,0x72,0xa,0x41,0x51,0x9,0x2d,0x36,0x37,0x33,0x34, - 0x2d,0x30,0x36,0x38,0x30,0x38,0x9,0x41,0x6e,0x74,0x61,0x72,0x63,0x74,0x69,0x63, - 0x61,0x2f,0x52,0x6f,0x74,0x68,0x65,0x72,0x61,0x9,0x52,0x6f,0x74,0x68,0x65,0x72, - 0x61,0xa,0x41,0x51,0x9,0x2d,0x36,0x39,0x30,0x30,0x32,0x32,0x2b,0x30,0x33,0x39, - 0x33,0x35,0x32,0x34,0x9,0x41,0x6e,0x74,0x61,0x72,0x63,0x74,0x69,0x63,0x61,0x2f, - 0x53,0x79,0x6f,0x77,0x61,0x9,0x53,0x79,0x6f,0x77,0x61,0xa,0x41,0x51,0x9,0x2d, - 0x37,0x32,0x30,0x30,0x34,0x31,0x2b,0x30,0x30,0x32,0x33,0x32,0x30,0x36,0x9,0x41, - 0x6e,0x74,0x61,0x72,0x63,0x74,0x69,0x63,0x61,0x2f,0x54,0x72,0x6f,0x6c,0x6c,0x9, - 0x54,0x72,0x6f,0x6c,0x6c,0xa,0x41,0x51,0x9,0x2d,0x37,0x38,0x32,0x34,0x2b,0x31, - 0x30,0x36,0x35,0x34,0x9,0x41,0x6e,0x74,0x61,0x72,0x63,0x74,0x69,0x63,0x61,0x2f, - 0x56,0x6f,0x73,0x74,0x6f,0x6b,0x9,0x56,0x6f,0x73,0x74,0x6f,0x6b,0xa,0x41,0x52, - 0x9,0x2d,0x33,0x34,0x33,0x36,0x2d,0x30,0x35,0x38,0x32,0x37,0x9,0x41,0x6d,0x65, - 0x72,0x69,0x63,0x61,0x2f,0x41,0x72,0x67,0x65,0x6e,0x74,0x69,0x6e,0x61,0x2f,0x42, - 0x75,0x65,0x6e,0x6f,0x73,0x5f,0x41,0x69,0x72,0x65,0x73,0x9,0x42,0x75,0x65,0x6e, - 0x6f,0x73,0x20,0x41,0x69,0x72,0x65,0x73,0x20,0x28,0x42,0x41,0x2c,0x20,0x43,0x46, - 0x29,0xa,0x41,0x52,0x9,0x2d,0x33,0x31,0x32,0x34,0x2d,0x30,0x36,0x34,0x31,0x31, - 0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x41,0x72,0x67,0x65,0x6e,0x74,0x69, - 0x6e,0x61,0x2f,0x43,0x6f,0x72,0x64,0x6f,0x62,0x61,0x9,0x41,0x72,0x67,0x65,0x6e, - 0x74,0x69,0x6e,0x61,0x20,0x28,0x6d,0x6f,0x73,0x74,0x20,0x61,0x72,0x65,0x61,0x73, - 0x3a,0x20,0x43,0x42,0x2c,0x20,0x43,0x43,0x2c,0x20,0x43,0x4e,0x2c,0x20,0x45,0x52, - 0x2c,0x20,0x46,0x4d,0x2c,0x20,0x4d,0x4e,0x2c,0x20,0x53,0x45,0x2c,0x20,0x53,0x46, - 0x29,0xa,0x41,0x52,0x9,0x2d,0x32,0x34,0x34,0x37,0x2d,0x30,0x36,0x35,0x32,0x35, - 0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x41,0x72,0x67,0x65,0x6e,0x74,0x69, - 0x6e,0x61,0x2f,0x53,0x61,0x6c,0x74,0x61,0x9,0x53,0x61,0x6c,0x74,0x61,0x20,0x28, - 0x53,0x41,0x2c,0x20,0x4c,0x50,0x2c,0x20,0x4e,0x51,0x2c,0x20,0x52,0x4e,0x29,0xa, - 0x41,0x52,0x9,0x2d,0x32,0x34,0x31,0x31,0x2d,0x30,0x36,0x35,0x31,0x38,0x9,0x41, - 0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x41,0x72,0x67,0x65,0x6e,0x74,0x69,0x6e,0x61, - 0x2f,0x4a,0x75,0x6a,0x75,0x79,0x9,0x4a,0x75,0x6a,0x75,0x79,0x20,0x28,0x4a,0x59, - 0x29,0xa,0x41,0x52,0x9,0x2d,0x32,0x36,0x34,0x39,0x2d,0x30,0x36,0x35,0x31,0x33, - 0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x41,0x72,0x67,0x65,0x6e,0x74,0x69, - 0x6e,0x61,0x2f,0x54,0x75,0x63,0x75,0x6d,0x61,0x6e,0x9,0x54,0x75,0x63,0x75,0x6d, - 0x61,0x6e,0x20,0x28,0x54,0x4d,0x29,0xa,0x41,0x52,0x9,0x2d,0x32,0x38,0x32,0x38, - 0x2d,0x30,0x36,0x35,0x34,0x37,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x41, - 0x72,0x67,0x65,0x6e,0x74,0x69,0x6e,0x61,0x2f,0x43,0x61,0x74,0x61,0x6d,0x61,0x72, - 0x63,0x61,0x9,0x43,0x61,0x74,0x61,0x6d,0x61,0x72,0x63,0x61,0x20,0x28,0x43,0x54, - 0x29,0x3b,0x20,0x43,0x68,0x75,0x62,0x75,0x74,0x20,0x28,0x43,0x48,0x29,0xa,0x41, - 0x52,0x9,0x2d,0x32,0x39,0x32,0x36,0x2d,0x30,0x36,0x36,0x35,0x31,0x9,0x41,0x6d, - 0x65,0x72,0x69,0x63,0x61,0x2f,0x41,0x72,0x67,0x65,0x6e,0x74,0x69,0x6e,0x61,0x2f, - 0x4c,0x61,0x5f,0x52,0x69,0x6f,0x6a,0x61,0x9,0x4c,0x61,0x20,0x52,0x69,0x6f,0x6a, - 0x61,0x20,0x28,0x4c,0x52,0x29,0xa,0x41,0x52,0x9,0x2d,0x33,0x31,0x33,0x32,0x2d, - 0x30,0x36,0x38,0x33,0x31,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x41,0x72, - 0x67,0x65,0x6e,0x74,0x69,0x6e,0x61,0x2f,0x53,0x61,0x6e,0x5f,0x4a,0x75,0x61,0x6e, - 0x9,0x53,0x61,0x6e,0x20,0x4a,0x75,0x61,0x6e,0x20,0x28,0x53,0x4a,0x29,0xa,0x41, - 0x52,0x9,0x2d,0x33,0x32,0x35,0x33,0x2d,0x30,0x36,0x38,0x34,0x39,0x9,0x41,0x6d, - 0x65,0x72,0x69,0x63,0x61,0x2f,0x41,0x72,0x67,0x65,0x6e,0x74,0x69,0x6e,0x61,0x2f, - 0x4d,0x65,0x6e,0x64,0x6f,0x7a,0x61,0x9,0x4d,0x65,0x6e,0x64,0x6f,0x7a,0x61,0x20, - 0x28,0x4d,0x5a,0x29,0xa,0x41,0x52,0x9,0x2d,0x33,0x33,0x31,0x39,0x2d,0x30,0x36, - 0x36,0x32,0x31,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x41,0x72,0x67,0x65, - 0x6e,0x74,0x69,0x6e,0x61,0x2f,0x53,0x61,0x6e,0x5f,0x4c,0x75,0x69,0x73,0x9,0x53, - 0x61,0x6e,0x20,0x4c,0x75,0x69,0x73,0x20,0x28,0x53,0x4c,0x29,0xa,0x41,0x52,0x9, - 0x2d,0x35,0x31,0x33,0x38,0x2d,0x30,0x36,0x39,0x31,0x33,0x9,0x41,0x6d,0x65,0x72, - 0x69,0x63,0x61,0x2f,0x41,0x72,0x67,0x65,0x6e,0x74,0x69,0x6e,0x61,0x2f,0x52,0x69, - 0x6f,0x5f,0x47,0x61,0x6c,0x6c,0x65,0x67,0x6f,0x73,0x9,0x53,0x61,0x6e,0x74,0x61, - 0x20,0x43,0x72,0x75,0x7a,0x20,0x28,0x53,0x43,0x29,0xa,0x41,0x52,0x9,0x2d,0x35, - 0x34,0x34,0x38,0x2d,0x30,0x36,0x38,0x31,0x38,0x9,0x41,0x6d,0x65,0x72,0x69,0x63, - 0x61,0x2f,0x41,0x72,0x67,0x65,0x6e,0x74,0x69,0x6e,0x61,0x2f,0x55,0x73,0x68,0x75, - 0x61,0x69,0x61,0x9,0x54,0x69,0x65,0x72,0x72,0x61,0x20,0x64,0x65,0x6c,0x20,0x46, - 0x75,0x65,0x67,0x6f,0x20,0x28,0x54,0x46,0x29,0xa,0x41,0x53,0x9,0x2d,0x31,0x34, - 0x31,0x36,0x2d,0x31,0x37,0x30,0x34,0x32,0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63, - 0x2f,0x50,0x61,0x67,0x6f,0x5f,0x50,0x61,0x67,0x6f,0xa,0x41,0x54,0x9,0x2b,0x34, - 0x38,0x31,0x33,0x2b,0x30,0x31,0x36,0x32,0x30,0x9,0x45,0x75,0x72,0x6f,0x70,0x65, - 0x2f,0x56,0x69,0x65,0x6e,0x6e,0x61,0xa,0x41,0x55,0x9,0x2d,0x33,0x31,0x33,0x33, - 0x2b,0x31,0x35,0x39,0x30,0x35,0x9,0x41,0x75,0x73,0x74,0x72,0x61,0x6c,0x69,0x61, - 0x2f,0x4c,0x6f,0x72,0x64,0x5f,0x48,0x6f,0x77,0x65,0x9,0x4c,0x6f,0x72,0x64,0x20, - 0x48,0x6f,0x77,0x65,0x20,0x49,0x73,0x6c,0x61,0x6e,0x64,0xa,0x41,0x55,0x9,0x2d, - 0x35,0x34,0x33,0x30,0x2b,0x31,0x35,0x38,0x35,0x37,0x9,0x41,0x6e,0x74,0x61,0x72, - 0x63,0x74,0x69,0x63,0x61,0x2f,0x4d,0x61,0x63,0x71,0x75,0x61,0x72,0x69,0x65,0x9, - 0x4d,0x61,0x63,0x71,0x75,0x61,0x72,0x69,0x65,0x20,0x49,0x73,0x6c,0x61,0x6e,0x64, - 0xa,0x41,0x55,0x9,0x2d,0x34,0x32,0x35,0x33,0x2b,0x31,0x34,0x37,0x31,0x39,0x9, - 0x41,0x75,0x73,0x74,0x72,0x61,0x6c,0x69,0x61,0x2f,0x48,0x6f,0x62,0x61,0x72,0x74, - 0x9,0x54,0x61,0x73,0x6d,0x61,0x6e,0x69,0x61,0x20,0x28,0x6d,0x6f,0x73,0x74,0x20, - 0x61,0x72,0x65,0x61,0x73,0x29,0xa,0x41,0x55,0x9,0x2d,0x33,0x39,0x35,0x36,0x2b, - 0x31,0x34,0x33,0x35,0x32,0x9,0x41,0x75,0x73,0x74,0x72,0x61,0x6c,0x69,0x61,0x2f, - 0x43,0x75,0x72,0x72,0x69,0x65,0x9,0x54,0x61,0x73,0x6d,0x61,0x6e,0x69,0x61,0x20, - 0x28,0x4b,0x69,0x6e,0x67,0x20,0x49,0x73,0x6c,0x61,0x6e,0x64,0x29,0xa,0x41,0x55, - 0x9,0x2d,0x33,0x37,0x34,0x39,0x2b,0x31,0x34,0x34,0x35,0x38,0x9,0x41,0x75,0x73, - 0x74,0x72,0x61,0x6c,0x69,0x61,0x2f,0x4d,0x65,0x6c,0x62,0x6f,0x75,0x72,0x6e,0x65, - 0x9,0x56,0x69,0x63,0x74,0x6f,0x72,0x69,0x61,0xa,0x41,0x55,0x9,0x2d,0x33,0x33, - 0x35,0x32,0x2b,0x31,0x35,0x31,0x31,0x33,0x9,0x41,0x75,0x73,0x74,0x72,0x61,0x6c, - 0x69,0x61,0x2f,0x53,0x79,0x64,0x6e,0x65,0x79,0x9,0x4e,0x65,0x77,0x20,0x53,0x6f, - 0x75,0x74,0x68,0x20,0x57,0x61,0x6c,0x65,0x73,0x20,0x28,0x6d,0x6f,0x73,0x74,0x20, - 0x61,0x72,0x65,0x61,0x73,0x29,0xa,0x41,0x55,0x9,0x2d,0x33,0x31,0x35,0x37,0x2b, - 0x31,0x34,0x31,0x32,0x37,0x9,0x41,0x75,0x73,0x74,0x72,0x61,0x6c,0x69,0x61,0x2f, - 0x42,0x72,0x6f,0x6b,0x65,0x6e,0x5f,0x48,0x69,0x6c,0x6c,0x9,0x4e,0x65,0x77,0x20, - 0x53,0x6f,0x75,0x74,0x68,0x20,0x57,0x61,0x6c,0x65,0x73,0x20,0x28,0x59,0x61,0x6e, - 0x63,0x6f,0x77,0x69,0x6e,0x6e,0x61,0x29,0xa,0x41,0x55,0x9,0x2d,0x32,0x37,0x32, - 0x38,0x2b,0x31,0x35,0x33,0x30,0x32,0x9,0x41,0x75,0x73,0x74,0x72,0x61,0x6c,0x69, - 0x61,0x2f,0x42,0x72,0x69,0x73,0x62,0x61,0x6e,0x65,0x9,0x51,0x75,0x65,0x65,0x6e, - 0x73,0x6c,0x61,0x6e,0x64,0x20,0x28,0x6d,0x6f,0x73,0x74,0x20,0x61,0x72,0x65,0x61, - 0x73,0x29,0xa,0x41,0x55,0x9,0x2d,0x32,0x30,0x31,0x36,0x2b,0x31,0x34,0x39,0x30, - 0x30,0x9,0x41,0x75,0x73,0x74,0x72,0x61,0x6c,0x69,0x61,0x2f,0x4c,0x69,0x6e,0x64, - 0x65,0x6d,0x61,0x6e,0x9,0x51,0x75,0x65,0x65,0x6e,0x73,0x6c,0x61,0x6e,0x64,0x20, - 0x28,0x57,0x68,0x69,0x74,0x73,0x75,0x6e,0x64,0x61,0x79,0x20,0x49,0x73,0x6c,0x61, - 0x6e,0x64,0x73,0x29,0xa,0x41,0x55,0x9,0x2d,0x33,0x34,0x35,0x35,0x2b,0x31,0x33, - 0x38,0x33,0x35,0x9,0x41,0x75,0x73,0x74,0x72,0x61,0x6c,0x69,0x61,0x2f,0x41,0x64, - 0x65,0x6c,0x61,0x69,0x64,0x65,0x9,0x53,0x6f,0x75,0x74,0x68,0x20,0x41,0x75,0x73, - 0x74,0x72,0x61,0x6c,0x69,0x61,0xa,0x41,0x55,0x9,0x2d,0x31,0x32,0x32,0x38,0x2b, - 0x31,0x33,0x30,0x35,0x30,0x9,0x41,0x75,0x73,0x74,0x72,0x61,0x6c,0x69,0x61,0x2f, - 0x44,0x61,0x72,0x77,0x69,0x6e,0x9,0x4e,0x6f,0x72,0x74,0x68,0x65,0x72,0x6e,0x20, - 0x54,0x65,0x72,0x72,0x69,0x74,0x6f,0x72,0x79,0xa,0x41,0x55,0x9,0x2d,0x33,0x31, - 0x35,0x37,0x2b,0x31,0x31,0x35,0x35,0x31,0x9,0x41,0x75,0x73,0x74,0x72,0x61,0x6c, - 0x69,0x61,0x2f,0x50,0x65,0x72,0x74,0x68,0x9,0x57,0x65,0x73,0x74,0x65,0x72,0x6e, - 0x20,0x41,0x75,0x73,0x74,0x72,0x61,0x6c,0x69,0x61,0x20,0x28,0x6d,0x6f,0x73,0x74, - 0x20,0x61,0x72,0x65,0x61,0x73,0x29,0xa,0x41,0x55,0x9,0x2d,0x33,0x31,0x34,0x33, - 0x2b,0x31,0x32,0x38,0x35,0x32,0x9,0x41,0x75,0x73,0x74,0x72,0x61,0x6c,0x69,0x61, - 0x2f,0x45,0x75,0x63,0x6c,0x61,0x9,0x57,0x65,0x73,0x74,0x65,0x72,0x6e,0x20,0x41, - 0x75,0x73,0x74,0x72,0x61,0x6c,0x69,0x61,0x20,0x28,0x45,0x75,0x63,0x6c,0x61,0x29, - 0xa,0x41,0x57,0x9,0x2b,0x31,0x32,0x33,0x30,0x2d,0x30,0x36,0x39,0x35,0x38,0x9, - 0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x41,0x72,0x75,0x62,0x61,0xa,0x41,0x58, - 0x9,0x2b,0x36,0x30,0x30,0x36,0x2b,0x30,0x31,0x39,0x35,0x37,0x9,0x45,0x75,0x72, - 0x6f,0x70,0x65,0x2f,0x4d,0x61,0x72,0x69,0x65,0x68,0x61,0x6d,0x6e,0xa,0x41,0x5a, - 0x9,0x2b,0x34,0x30,0x32,0x33,0x2b,0x30,0x34,0x39,0x35,0x31,0x9,0x41,0x73,0x69, - 0x61,0x2f,0x42,0x61,0x6b,0x75,0xa,0x42,0x41,0x9,0x2b,0x34,0x33,0x35,0x32,0x2b, - 0x30,0x31,0x38,0x32,0x35,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x53,0x61,0x72, - 0x61,0x6a,0x65,0x76,0x6f,0xa,0x42,0x42,0x9,0x2b,0x31,0x33,0x30,0x36,0x2d,0x30, - 0x35,0x39,0x33,0x37,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x42,0x61,0x72, - 0x62,0x61,0x64,0x6f,0x73,0xa,0x42,0x44,0x9,0x2b,0x32,0x33,0x34,0x33,0x2b,0x30, - 0x39,0x30,0x32,0x35,0x9,0x41,0x73,0x69,0x61,0x2f,0x44,0x68,0x61,0x6b,0x61,0xa, - 0x42,0x45,0x9,0x2b,0x35,0x30,0x35,0x30,0x2b,0x30,0x30,0x34,0x32,0x30,0x9,0x45, - 0x75,0x72,0x6f,0x70,0x65,0x2f,0x42,0x72,0x75,0x73,0x73,0x65,0x6c,0x73,0xa,0x42, - 0x46,0x9,0x2b,0x31,0x32,0x32,0x32,0x2d,0x30,0x30,0x31,0x33,0x31,0x9,0x41,0x66, - 0x72,0x69,0x63,0x61,0x2f,0x4f,0x75,0x61,0x67,0x61,0x64,0x6f,0x75,0x67,0x6f,0x75, - 0xa,0x42,0x47,0x9,0x2b,0x34,0x32,0x34,0x31,0x2b,0x30,0x32,0x33,0x31,0x39,0x9, - 0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x53,0x6f,0x66,0x69,0x61,0xa,0x42,0x48,0x9, - 0x2b,0x32,0x36,0x32,0x33,0x2b,0x30,0x35,0x30,0x33,0x35,0x9,0x41,0x73,0x69,0x61, - 0x2f,0x42,0x61,0x68,0x72,0x61,0x69,0x6e,0xa,0x42,0x49,0x9,0x2d,0x30,0x33,0x32, - 0x33,0x2b,0x30,0x32,0x39,0x32,0x32,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f,0x42, - 0x75,0x6a,0x75,0x6d,0x62,0x75,0x72,0x61,0xa,0x42,0x4a,0x9,0x2b,0x30,0x36,0x32, - 0x39,0x2b,0x30,0x30,0x32,0x33,0x37,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f,0x50, - 0x6f,0x72,0x74,0x6f,0x2d,0x4e,0x6f,0x76,0x6f,0xa,0x42,0x4c,0x9,0x2b,0x31,0x37, - 0x35,0x33,0x2d,0x30,0x36,0x32,0x35,0x31,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61, - 0x2f,0x53,0x74,0x5f,0x42,0x61,0x72,0x74,0x68,0x65,0x6c,0x65,0x6d,0x79,0xa,0x42, - 0x4d,0x9,0x2b,0x33,0x32,0x31,0x37,0x2d,0x30,0x36,0x34,0x34,0x36,0x9,0x41,0x74, - 0x6c,0x61,0x6e,0x74,0x69,0x63,0x2f,0x42,0x65,0x72,0x6d,0x75,0x64,0x61,0xa,0x42, - 0x4e,0x9,0x2b,0x30,0x34,0x35,0x36,0x2b,0x31,0x31,0x34,0x35,0x35,0x9,0x41,0x73, - 0x69,0x61,0x2f,0x42,0x72,0x75,0x6e,0x65,0x69,0xa,0x42,0x4f,0x9,0x2d,0x31,0x36, - 0x33,0x30,0x2d,0x30,0x36,0x38,0x30,0x39,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61, - 0x2f,0x4c,0x61,0x5f,0x50,0x61,0x7a,0xa,0x42,0x51,0x9,0x2b,0x31,0x32,0x30,0x39, - 0x30,0x33,0x2d,0x30,0x36,0x38,0x31,0x36,0x33,0x36,0x9,0x41,0x6d,0x65,0x72,0x69, - 0x63,0x61,0x2f,0x4b,0x72,0x61,0x6c,0x65,0x6e,0x64,0x69,0x6a,0x6b,0xa,0x42,0x52, - 0x9,0x2d,0x30,0x33,0x35,0x31,0x2d,0x30,0x33,0x32,0x32,0x35,0x9,0x41,0x6d,0x65, - 0x72,0x69,0x63,0x61,0x2f,0x4e,0x6f,0x72,0x6f,0x6e,0x68,0x61,0x9,0x41,0x74,0x6c, - 0x61,0x6e,0x74,0x69,0x63,0x20,0x69,0x73,0x6c,0x61,0x6e,0x64,0x73,0xa,0x42,0x52, - 0x9,0x2d,0x30,0x31,0x32,0x37,0x2d,0x30,0x34,0x38,0x32,0x39,0x9,0x41,0x6d,0x65, - 0x72,0x69,0x63,0x61,0x2f,0x42,0x65,0x6c,0x65,0x6d,0x9,0x50,0x61,0x72,0x61,0x20, - 0x28,0x65,0x61,0x73,0x74,0x29,0x3b,0x20,0x41,0x6d,0x61,0x70,0x61,0xa,0x42,0x52, - 0x9,0x2d,0x30,0x33,0x34,0x33,0x2d,0x30,0x33,0x38,0x33,0x30,0x9,0x41,0x6d,0x65, - 0x72,0x69,0x63,0x61,0x2f,0x46,0x6f,0x72,0x74,0x61,0x6c,0x65,0x7a,0x61,0x9,0x42, - 0x72,0x61,0x7a,0x69,0x6c,0x20,0x28,0x6e,0x6f,0x72,0x74,0x68,0x65,0x61,0x73,0x74, - 0x3a,0x20,0x4d,0x41,0x2c,0x20,0x50,0x49,0x2c,0x20,0x43,0x45,0x2c,0x20,0x52,0x4e, - 0x2c,0x20,0x50,0x42,0x29,0xa,0x42,0x52,0x9,0x2d,0x30,0x38,0x30,0x33,0x2d,0x30, - 0x33,0x34,0x35,0x34,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x52,0x65,0x63, - 0x69,0x66,0x65,0x9,0x50,0x65,0x72,0x6e,0x61,0x6d,0x62,0x75,0x63,0x6f,0xa,0x42, - 0x52,0x9,0x2d,0x30,0x37,0x31,0x32,0x2d,0x30,0x34,0x38,0x31,0x32,0x9,0x41,0x6d, - 0x65,0x72,0x69,0x63,0x61,0x2f,0x41,0x72,0x61,0x67,0x75,0x61,0x69,0x6e,0x61,0x9, - 0x54,0x6f,0x63,0x61,0x6e,0x74,0x69,0x6e,0x73,0xa,0x42,0x52,0x9,0x2d,0x30,0x39, - 0x34,0x30,0x2d,0x30,0x33,0x35,0x34,0x33,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61, - 0x2f,0x4d,0x61,0x63,0x65,0x69,0x6f,0x9,0x41,0x6c,0x61,0x67,0x6f,0x61,0x73,0x2c, - 0x20,0x53,0x65,0x72,0x67,0x69,0x70,0x65,0xa,0x42,0x52,0x9,0x2d,0x31,0x32,0x35, - 0x39,0x2d,0x30,0x33,0x38,0x33,0x31,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f, - 0x42,0x61,0x68,0x69,0x61,0x9,0x42,0x61,0x68,0x69,0x61,0xa,0x42,0x52,0x9,0x2d, - 0x32,0x33,0x33,0x32,0x2d,0x30,0x34,0x36,0x33,0x37,0x9,0x41,0x6d,0x65,0x72,0x69, - 0x63,0x61,0x2f,0x53,0x61,0x6f,0x5f,0x50,0x61,0x75,0x6c,0x6f,0x9,0x42,0x72,0x61, - 0x7a,0x69,0x6c,0x20,0x28,0x73,0x6f,0x75,0x74,0x68,0x65,0x61,0x73,0x74,0x3a,0x20, - 0x47,0x4f,0x2c,0x20,0x44,0x46,0x2c,0x20,0x4d,0x47,0x2c,0x20,0x45,0x53,0x2c,0x20, - 0x52,0x4a,0x2c,0x20,0x53,0x50,0x2c,0x20,0x50,0x52,0x2c,0x20,0x53,0x43,0x2c,0x20, - 0x52,0x53,0x29,0xa,0x42,0x52,0x9,0x2d,0x32,0x30,0x32,0x37,0x2d,0x30,0x35,0x34, - 0x33,0x37,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x43,0x61,0x6d,0x70,0x6f, - 0x5f,0x47,0x72,0x61,0x6e,0x64,0x65,0x9,0x4d,0x61,0x74,0x6f,0x20,0x47,0x72,0x6f, - 0x73,0x73,0x6f,0x20,0x64,0x6f,0x20,0x53,0x75,0x6c,0xa,0x42,0x52,0x9,0x2d,0x31, - 0x35,0x33,0x35,0x2d,0x30,0x35,0x36,0x30,0x35,0x9,0x41,0x6d,0x65,0x72,0x69,0x63, - 0x61,0x2f,0x43,0x75,0x69,0x61,0x62,0x61,0x9,0x4d,0x61,0x74,0x6f,0x20,0x47,0x72, - 0x6f,0x73,0x73,0x6f,0xa,0x42,0x52,0x9,0x2d,0x30,0x32,0x32,0x36,0x2d,0x30,0x35, - 0x34,0x35,0x32,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x53,0x61,0x6e,0x74, - 0x61,0x72,0x65,0x6d,0x9,0x50,0x61,0x72,0x61,0x20,0x28,0x77,0x65,0x73,0x74,0x29, - 0xa,0x42,0x52,0x9,0x2d,0x30,0x38,0x34,0x36,0x2d,0x30,0x36,0x33,0x35,0x34,0x9, - 0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x50,0x6f,0x72,0x74,0x6f,0x5f,0x56,0x65, - 0x6c,0x68,0x6f,0x9,0x52,0x6f,0x6e,0x64,0x6f,0x6e,0x69,0x61,0xa,0x42,0x52,0x9, - 0x2b,0x30,0x32,0x34,0x39,0x2d,0x30,0x36,0x30,0x34,0x30,0x9,0x41,0x6d,0x65,0x72, - 0x69,0x63,0x61,0x2f,0x42,0x6f,0x61,0x5f,0x56,0x69,0x73,0x74,0x61,0x9,0x52,0x6f, - 0x72,0x61,0x69,0x6d,0x61,0xa,0x42,0x52,0x9,0x2d,0x30,0x33,0x30,0x38,0x2d,0x30, - 0x36,0x30,0x30,0x31,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x4d,0x61,0x6e, - 0x61,0x75,0x73,0x9,0x41,0x6d,0x61,0x7a,0x6f,0x6e,0x61,0x73,0x20,0x28,0x65,0x61, - 0x73,0x74,0x29,0xa,0x42,0x52,0x9,0x2d,0x30,0x36,0x34,0x30,0x2d,0x30,0x36,0x39, - 0x35,0x32,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x45,0x69,0x72,0x75,0x6e, - 0x65,0x70,0x65,0x9,0x41,0x6d,0x61,0x7a,0x6f,0x6e,0x61,0x73,0x20,0x28,0x77,0x65, - 0x73,0x74,0x29,0xa,0x42,0x52,0x9,0x2d,0x30,0x39,0x35,0x38,0x2d,0x30,0x36,0x37, - 0x34,0x38,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x52,0x69,0x6f,0x5f,0x42, - 0x72,0x61,0x6e,0x63,0x6f,0x9,0x41,0x63,0x72,0x65,0xa,0x42,0x53,0x9,0x2b,0x32, - 0x35,0x30,0x35,0x2d,0x30,0x37,0x37,0x32,0x31,0x9,0x41,0x6d,0x65,0x72,0x69,0x63, - 0x61,0x2f,0x4e,0x61,0x73,0x73,0x61,0x75,0xa,0x42,0x54,0x9,0x2b,0x32,0x37,0x32, - 0x38,0x2b,0x30,0x38,0x39,0x33,0x39,0x9,0x41,0x73,0x69,0x61,0x2f,0x54,0x68,0x69, - 0x6d,0x70,0x68,0x75,0xa,0x42,0x57,0x9,0x2d,0x32,0x34,0x33,0x39,0x2b,0x30,0x32, - 0x35,0x35,0x35,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f,0x47,0x61,0x62,0x6f,0x72, - 0x6f,0x6e,0x65,0xa,0x42,0x59,0x9,0x2b,0x35,0x33,0x35,0x34,0x2b,0x30,0x32,0x37, - 0x33,0x34,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x4d,0x69,0x6e,0x73,0x6b,0xa, - 0x42,0x5a,0x9,0x2b,0x31,0x37,0x33,0x30,0x2d,0x30,0x38,0x38,0x31,0x32,0x9,0x41, - 0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x42,0x65,0x6c,0x69,0x7a,0x65,0xa,0x43,0x41, - 0x9,0x2b,0x34,0x37,0x33,0x34,0x2d,0x30,0x35,0x32,0x34,0x33,0x9,0x41,0x6d,0x65, - 0x72,0x69,0x63,0x61,0x2f,0x53,0x74,0x5f,0x4a,0x6f,0x68,0x6e,0x73,0x9,0x4e,0x65, - 0x77,0x66,0x6f,0x75,0x6e,0x64,0x6c,0x61,0x6e,0x64,0x3b,0x20,0x4c,0x61,0x62,0x72, - 0x61,0x64,0x6f,0x72,0x20,0x28,0x73,0x6f,0x75,0x74,0x68,0x65,0x61,0x73,0x74,0x29, - 0xa,0x43,0x41,0x9,0x2b,0x34,0x34,0x33,0x39,0x2d,0x30,0x36,0x33,0x33,0x36,0x9, - 0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x48,0x61,0x6c,0x69,0x66,0x61,0x78,0x9, - 0x41,0x74,0x6c,0x61,0x6e,0x74,0x69,0x63,0x20,0x2d,0x20,0x4e,0x53,0x20,0x28,0x6d, - 0x6f,0x73,0x74,0x20,0x61,0x72,0x65,0x61,0x73,0x29,0x3b,0x20,0x50,0x45,0xa,0x43, - 0x41,0x9,0x2b,0x34,0x36,0x31,0x32,0x2d,0x30,0x35,0x39,0x35,0x37,0x9,0x41,0x6d, - 0x65,0x72,0x69,0x63,0x61,0x2f,0x47,0x6c,0x61,0x63,0x65,0x5f,0x42,0x61,0x79,0x9, - 0x41,0x74,0x6c,0x61,0x6e,0x74,0x69,0x63,0x20,0x2d,0x20,0x4e,0x53,0x20,0x28,0x43, - 0x61,0x70,0x65,0x20,0x42,0x72,0x65,0x74,0x6f,0x6e,0x29,0xa,0x43,0x41,0x9,0x2b, - 0x34,0x36,0x30,0x36,0x2d,0x30,0x36,0x34,0x34,0x37,0x9,0x41,0x6d,0x65,0x72,0x69, - 0x63,0x61,0x2f,0x4d,0x6f,0x6e,0x63,0x74,0x6f,0x6e,0x9,0x41,0x74,0x6c,0x61,0x6e, - 0x74,0x69,0x63,0x20,0x2d,0x20,0x4e,0x65,0x77,0x20,0x42,0x72,0x75,0x6e,0x73,0x77, - 0x69,0x63,0x6b,0xa,0x43,0x41,0x9,0x2b,0x35,0x33,0x32,0x30,0x2d,0x30,0x36,0x30, - 0x32,0x35,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x47,0x6f,0x6f,0x73,0x65, - 0x5f,0x42,0x61,0x79,0x9,0x41,0x74,0x6c,0x61,0x6e,0x74,0x69,0x63,0x20,0x2d,0x20, - 0x4c,0x61,0x62,0x72,0x61,0x64,0x6f,0x72,0x20,0x28,0x6d,0x6f,0x73,0x74,0x20,0x61, - 0x72,0x65,0x61,0x73,0x29,0xa,0x43,0x41,0x9,0x2b,0x35,0x31,0x32,0x35,0x2d,0x30, - 0x35,0x37,0x30,0x37,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x42,0x6c,0x61, - 0x6e,0x63,0x2d,0x53,0x61,0x62,0x6c,0x6f,0x6e,0x9,0x41,0x53,0x54,0x20,0x2d,0x20, - 0x51,0x43,0x20,0x28,0x4c,0x6f,0x77,0x65,0x72,0x20,0x4e,0x6f,0x72,0x74,0x68,0x20, - 0x53,0x68,0x6f,0x72,0x65,0x29,0xa,0x43,0x41,0x9,0x2b,0x34,0x33,0x33,0x39,0x2d, - 0x30,0x37,0x39,0x32,0x33,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x54,0x6f, - 0x72,0x6f,0x6e,0x74,0x6f,0x9,0x45,0x61,0x73,0x74,0x65,0x72,0x6e,0x20,0x2d,0x20, - 0x4f,0x4e,0x2c,0x20,0x51,0x43,0x20,0x28,0x6d,0x6f,0x73,0x74,0x20,0x61,0x72,0x65, - 0x61,0x73,0x29,0xa,0x43,0x41,0x9,0x2b,0x34,0x39,0x30,0x31,0x2d,0x30,0x38,0x38, - 0x31,0x36,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x4e,0x69,0x70,0x69,0x67, - 0x6f,0x6e,0x9,0x45,0x61,0x73,0x74,0x65,0x72,0x6e,0x20,0x2d,0x20,0x4f,0x4e,0x2c, - 0x20,0x51,0x43,0x20,0x28,0x6e,0x6f,0x20,0x44,0x53,0x54,0x20,0x31,0x39,0x36,0x37, - 0x2d,0x37,0x33,0x29,0xa,0x43,0x41,0x9,0x2b,0x34,0x38,0x32,0x33,0x2d,0x30,0x38, - 0x39,0x31,0x35,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x54,0x68,0x75,0x6e, - 0x64,0x65,0x72,0x5f,0x42,0x61,0x79,0x9,0x45,0x61,0x73,0x74,0x65,0x72,0x6e,0x20, - 0x2d,0x20,0x4f,0x4e,0x20,0x28,0x54,0x68,0x75,0x6e,0x64,0x65,0x72,0x20,0x42,0x61, - 0x79,0x29,0xa,0x43,0x41,0x9,0x2b,0x36,0x33,0x34,0x34,0x2d,0x30,0x36,0x38,0x32, - 0x38,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x49,0x71,0x61,0x6c,0x75,0x69, - 0x74,0x9,0x45,0x61,0x73,0x74,0x65,0x72,0x6e,0x20,0x2d,0x20,0x4e,0x55,0x20,0x28, - 0x6d,0x6f,0x73,0x74,0x20,0x65,0x61,0x73,0x74,0x20,0x61,0x72,0x65,0x61,0x73,0x29, - 0xa,0x43,0x41,0x9,0x2b,0x36,0x36,0x30,0x38,0x2d,0x30,0x36,0x35,0x34,0x34,0x9, - 0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x50,0x61,0x6e,0x67,0x6e,0x69,0x72,0x74, - 0x75,0x6e,0x67,0x9,0x45,0x61,0x73,0x74,0x65,0x72,0x6e,0x20,0x2d,0x20,0x4e,0x55, - 0x20,0x28,0x50,0x61,0x6e,0x67,0x6e,0x69,0x72,0x74,0x75,0x6e,0x67,0x29,0xa,0x43, - 0x41,0x9,0x2b,0x34,0x38,0x34,0x35,0x33,0x31,0x2d,0x30,0x39,0x31,0x33,0x37,0x31, - 0x38,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x41,0x74,0x69,0x6b,0x6f,0x6b, - 0x61,0x6e,0x9,0x45,0x53,0x54,0x20,0x2d,0x20,0x4f,0x4e,0x20,0x28,0x41,0x74,0x69, - 0x6b,0x6f,0x6b,0x61,0x6e,0x29,0x3b,0x20,0x4e,0x55,0x20,0x28,0x43,0x6f,0x72,0x61, - 0x6c,0x20,0x48,0x29,0xa,0x43,0x41,0x9,0x2b,0x34,0x39,0x35,0x33,0x2d,0x30,0x39, - 0x37,0x30,0x39,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x57,0x69,0x6e,0x6e, - 0x69,0x70,0x65,0x67,0x9,0x43,0x65,0x6e,0x74,0x72,0x61,0x6c,0x20,0x2d,0x20,0x4f, - 0x4e,0x20,0x28,0x77,0x65,0x73,0x74,0x29,0x3b,0x20,0x4d,0x61,0x6e,0x69,0x74,0x6f, - 0x62,0x61,0xa,0x43,0x41,0x9,0x2b,0x34,0x38,0x34,0x33,0x2d,0x30,0x39,0x34,0x33, - 0x34,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x52,0x61,0x69,0x6e,0x79,0x5f, - 0x52,0x69,0x76,0x65,0x72,0x9,0x43,0x65,0x6e,0x74,0x72,0x61,0x6c,0x20,0x2d,0x20, - 0x4f,0x4e,0x20,0x28,0x52,0x61,0x69,0x6e,0x79,0x20,0x52,0x2c,0x20,0x46,0x74,0x20, - 0x46,0x72,0x61,0x6e,0x63,0x65,0x73,0x29,0xa,0x43,0x41,0x9,0x2b,0x37,0x34,0x34, - 0x31,0x34,0x34,0x2d,0x30,0x39,0x34,0x34,0x39,0x34,0x35,0x9,0x41,0x6d,0x65,0x72, - 0x69,0x63,0x61,0x2f,0x52,0x65,0x73,0x6f,0x6c,0x75,0x74,0x65,0x9,0x43,0x65,0x6e, - 0x74,0x72,0x61,0x6c,0x20,0x2d,0x20,0x4e,0x55,0x20,0x28,0x52,0x65,0x73,0x6f,0x6c, - 0x75,0x74,0x65,0x29,0xa,0x43,0x41,0x9,0x2b,0x36,0x32,0x34,0x39,0x30,0x30,0x2d, - 0x30,0x39,0x32,0x30,0x34,0x35,0x39,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f, - 0x52,0x61,0x6e,0x6b,0x69,0x6e,0x5f,0x49,0x6e,0x6c,0x65,0x74,0x9,0x43,0x65,0x6e, - 0x74,0x72,0x61,0x6c,0x20,0x2d,0x20,0x4e,0x55,0x20,0x28,0x63,0x65,0x6e,0x74,0x72, - 0x61,0x6c,0x29,0xa,0x43,0x41,0x9,0x2b,0x35,0x30,0x32,0x34,0x2d,0x31,0x30,0x34, - 0x33,0x39,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x52,0x65,0x67,0x69,0x6e, - 0x61,0x9,0x43,0x53,0x54,0x20,0x2d,0x20,0x53,0x4b,0x20,0x28,0x6d,0x6f,0x73,0x74, - 0x20,0x61,0x72,0x65,0x61,0x73,0x29,0xa,0x43,0x41,0x9,0x2b,0x35,0x30,0x31,0x37, - 0x2d,0x31,0x30,0x37,0x35,0x30,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x53, - 0x77,0x69,0x66,0x74,0x5f,0x43,0x75,0x72,0x72,0x65,0x6e,0x74,0x9,0x43,0x53,0x54, - 0x20,0x2d,0x20,0x53,0x4b,0x20,0x28,0x6d,0x69,0x64,0x77,0x65,0x73,0x74,0x29,0xa, - 0x43,0x41,0x9,0x2b,0x35,0x33,0x33,0x33,0x2d,0x31,0x31,0x33,0x32,0x38,0x9,0x41, - 0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x45,0x64,0x6d,0x6f,0x6e,0x74,0x6f,0x6e,0x9, - 0x4d,0x6f,0x75,0x6e,0x74,0x61,0x69,0x6e,0x20,0x2d,0x20,0x41,0x42,0x3b,0x20,0x42, - 0x43,0x20,0x28,0x45,0x29,0x3b,0x20,0x53,0x4b,0x20,0x28,0x57,0x29,0xa,0x43,0x41, - 0x9,0x2b,0x36,0x39,0x30,0x36,0x35,0x30,0x2d,0x31,0x30,0x35,0x30,0x33,0x31,0x30, - 0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x43,0x61,0x6d,0x62,0x72,0x69,0x64, - 0x67,0x65,0x5f,0x42,0x61,0x79,0x9,0x4d,0x6f,0x75,0x6e,0x74,0x61,0x69,0x6e,0x20, - 0x2d,0x20,0x4e,0x55,0x20,0x28,0x77,0x65,0x73,0x74,0x29,0xa,0x43,0x41,0x9,0x2b, - 0x36,0x32,0x32,0x37,0x2d,0x31,0x31,0x34,0x32,0x31,0x9,0x41,0x6d,0x65,0x72,0x69, - 0x63,0x61,0x2f,0x59,0x65,0x6c,0x6c,0x6f,0x77,0x6b,0x6e,0x69,0x66,0x65,0x9,0x4d, - 0x6f,0x75,0x6e,0x74,0x61,0x69,0x6e,0x20,0x2d,0x20,0x4e,0x54,0x20,0x28,0x63,0x65, - 0x6e,0x74,0x72,0x61,0x6c,0x29,0xa,0x43,0x41,0x9,0x2b,0x36,0x38,0x32,0x30,0x35, - 0x39,0x2d,0x31,0x33,0x33,0x34,0x33,0x30,0x30,0x9,0x41,0x6d,0x65,0x72,0x69,0x63, - 0x61,0x2f,0x49,0x6e,0x75,0x76,0x69,0x6b,0x9,0x4d,0x6f,0x75,0x6e,0x74,0x61,0x69, - 0x6e,0x20,0x2d,0x20,0x4e,0x54,0x20,0x28,0x77,0x65,0x73,0x74,0x29,0xa,0x43,0x41, - 0x9,0x2b,0x34,0x39,0x30,0x36,0x2d,0x31,0x31,0x36,0x33,0x31,0x9,0x41,0x6d,0x65, - 0x72,0x69,0x63,0x61,0x2f,0x43,0x72,0x65,0x73,0x74,0x6f,0x6e,0x9,0x4d,0x53,0x54, - 0x20,0x2d,0x20,0x42,0x43,0x20,0x28,0x43,0x72,0x65,0x73,0x74,0x6f,0x6e,0x29,0xa, - 0x43,0x41,0x9,0x2b,0x35,0x39,0x34,0x36,0x2d,0x31,0x32,0x30,0x31,0x34,0x9,0x41, - 0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x44,0x61,0x77,0x73,0x6f,0x6e,0x5f,0x43,0x72, - 0x65,0x65,0x6b,0x9,0x4d,0x53,0x54,0x20,0x2d,0x20,0x42,0x43,0x20,0x28,0x44,0x61, - 0x77,0x73,0x6f,0x6e,0x20,0x43,0x72,0x2c,0x20,0x46,0x74,0x20,0x53,0x74,0x20,0x4a, - 0x6f,0x68,0x6e,0x29,0xa,0x43,0x41,0x9,0x2b,0x35,0x38,0x34,0x38,0x2d,0x31,0x32, - 0x32,0x34,0x32,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x46,0x6f,0x72,0x74, - 0x5f,0x4e,0x65,0x6c,0x73,0x6f,0x6e,0x9,0x4d,0x53,0x54,0x20,0x2d,0x20,0x42,0x43, - 0x20,0x28,0x46,0x74,0x20,0x4e,0x65,0x6c,0x73,0x6f,0x6e,0x29,0xa,0x43,0x41,0x9, - 0x2b,0x34,0x39,0x31,0x36,0x2d,0x31,0x32,0x33,0x30,0x37,0x9,0x41,0x6d,0x65,0x72, - 0x69,0x63,0x61,0x2f,0x56,0x61,0x6e,0x63,0x6f,0x75,0x76,0x65,0x72,0x9,0x50,0x61, - 0x63,0x69,0x66,0x69,0x63,0x20,0x2d,0x20,0x42,0x43,0x20,0x28,0x6d,0x6f,0x73,0x74, - 0x20,0x61,0x72,0x65,0x61,0x73,0x29,0xa,0x43,0x41,0x9,0x2b,0x36,0x30,0x34,0x33, - 0x2d,0x31,0x33,0x35,0x30,0x33,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x57, - 0x68,0x69,0x74,0x65,0x68,0x6f,0x72,0x73,0x65,0x9,0x50,0x61,0x63,0x69,0x66,0x69, - 0x63,0x20,0x2d,0x20,0x59,0x75,0x6b,0x6f,0x6e,0x20,0x28,0x73,0x6f,0x75,0x74,0x68, - 0x29,0xa,0x43,0x41,0x9,0x2b,0x36,0x34,0x30,0x34,0x2d,0x31,0x33,0x39,0x32,0x35, - 0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x44,0x61,0x77,0x73,0x6f,0x6e,0x9, - 0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x20,0x2d,0x20,0x59,0x75,0x6b,0x6f,0x6e,0x20, - 0x28,0x6e,0x6f,0x72,0x74,0x68,0x29,0xa,0x43,0x43,0x9,0x2d,0x31,0x32,0x31,0x30, - 0x2b,0x30,0x39,0x36,0x35,0x35,0x9,0x49,0x6e,0x64,0x69,0x61,0x6e,0x2f,0x43,0x6f, - 0x63,0x6f,0x73,0xa,0x43,0x44,0x9,0x2d,0x30,0x34,0x31,0x38,0x2b,0x30,0x31,0x35, - 0x31,0x38,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f,0x4b,0x69,0x6e,0x73,0x68,0x61, - 0x73,0x61,0x9,0x44,0x65,0x6d,0x2e,0x20,0x52,0x65,0x70,0x2e,0x20,0x6f,0x66,0x20, - 0x43,0x6f,0x6e,0x67,0x6f,0x20,0x28,0x77,0x65,0x73,0x74,0x29,0xa,0x43,0x44,0x9, - 0x2d,0x31,0x31,0x34,0x30,0x2b,0x30,0x32,0x37,0x32,0x38,0x9,0x41,0x66,0x72,0x69, - 0x63,0x61,0x2f,0x4c,0x75,0x62,0x75,0x6d,0x62,0x61,0x73,0x68,0x69,0x9,0x44,0x65, - 0x6d,0x2e,0x20,0x52,0x65,0x70,0x2e,0x20,0x6f,0x66,0x20,0x43,0x6f,0x6e,0x67,0x6f, - 0x20,0x28,0x65,0x61,0x73,0x74,0x29,0xa,0x43,0x46,0x9,0x2b,0x30,0x34,0x32,0x32, - 0x2b,0x30,0x31,0x38,0x33,0x35,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f,0x42,0x61, - 0x6e,0x67,0x75,0x69,0xa,0x43,0x47,0x9,0x2d,0x30,0x34,0x31,0x36,0x2b,0x30,0x31, - 0x35,0x31,0x37,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f,0x42,0x72,0x61,0x7a,0x7a, - 0x61,0x76,0x69,0x6c,0x6c,0x65,0xa,0x43,0x48,0x9,0x2b,0x34,0x37,0x32,0x33,0x2b, - 0x30,0x30,0x38,0x33,0x32,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x5a,0x75,0x72, - 0x69,0x63,0x68,0xa,0x43,0x49,0x9,0x2b,0x30,0x35,0x31,0x39,0x2d,0x30,0x30,0x34, - 0x30,0x32,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f,0x41,0x62,0x69,0x64,0x6a,0x61, - 0x6e,0xa,0x43,0x4b,0x9,0x2d,0x32,0x31,0x31,0x34,0x2d,0x31,0x35,0x39,0x34,0x36, - 0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x2f,0x52,0x61,0x72,0x6f,0x74,0x6f,0x6e, - 0x67,0x61,0xa,0x43,0x4c,0x9,0x2d,0x33,0x33,0x32,0x37,0x2d,0x30,0x37,0x30,0x34, - 0x30,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x53,0x61,0x6e,0x74,0x69,0x61, - 0x67,0x6f,0x9,0x43,0x68,0x69,0x6c,0x65,0x20,0x28,0x6d,0x6f,0x73,0x74,0x20,0x61, - 0x72,0x65,0x61,0x73,0x29,0xa,0x43,0x4c,0x9,0x2d,0x32,0x37,0x30,0x39,0x2d,0x31, - 0x30,0x39,0x32,0x36,0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x2f,0x45,0x61,0x73, - 0x74,0x65,0x72,0x9,0x45,0x61,0x73,0x74,0x65,0x72,0x20,0x49,0x73,0x6c,0x61,0x6e, - 0x64,0xa,0x43,0x4d,0x9,0x2b,0x30,0x34,0x30,0x33,0x2b,0x30,0x30,0x39,0x34,0x32, - 0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f,0x44,0x6f,0x75,0x61,0x6c,0x61,0xa,0x43, - 0x4e,0x9,0x2b,0x33,0x31,0x31,0x34,0x2b,0x31,0x32,0x31,0x32,0x38,0x9,0x41,0x73, - 0x69,0x61,0x2f,0x53,0x68,0x61,0x6e,0x67,0x68,0x61,0x69,0x9,0x42,0x65,0x69,0x6a, - 0x69,0x6e,0x67,0x20,0x54,0x69,0x6d,0x65,0xa,0x43,0x4e,0x9,0x2b,0x34,0x33,0x34, - 0x38,0x2b,0x30,0x38,0x37,0x33,0x35,0x9,0x41,0x73,0x69,0x61,0x2f,0x55,0x72,0x75, - 0x6d,0x71,0x69,0x9,0x58,0x69,0x6e,0x6a,0x69,0x61,0x6e,0x67,0x20,0x54,0x69,0x6d, - 0x65,0xa,0x43,0x4f,0x9,0x2b,0x30,0x34,0x33,0x36,0x2d,0x30,0x37,0x34,0x30,0x35, - 0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x42,0x6f,0x67,0x6f,0x74,0x61,0xa, - 0x43,0x52,0x9,0x2b,0x30,0x39,0x35,0x36,0x2d,0x30,0x38,0x34,0x30,0x35,0x9,0x41, - 0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x43,0x6f,0x73,0x74,0x61,0x5f,0x52,0x69,0x63, - 0x61,0xa,0x43,0x55,0x9,0x2b,0x32,0x33,0x30,0x38,0x2d,0x30,0x38,0x32,0x32,0x32, - 0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x48,0x61,0x76,0x61,0x6e,0x61,0xa, - 0x43,0x56,0x9,0x2b,0x31,0x34,0x35,0x35,0x2d,0x30,0x32,0x33,0x33,0x31,0x9,0x41, - 0x74,0x6c,0x61,0x6e,0x74,0x69,0x63,0x2f,0x43,0x61,0x70,0x65,0x5f,0x56,0x65,0x72, - 0x64,0x65,0xa,0x43,0x57,0x9,0x2b,0x31,0x32,0x31,0x31,0x2d,0x30,0x36,0x39,0x30, - 0x30,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x43,0x75,0x72,0x61,0x63,0x61, - 0x6f,0xa,0x43,0x58,0x9,0x2d,0x31,0x30,0x32,0x35,0x2b,0x31,0x30,0x35,0x34,0x33, - 0x9,0x49,0x6e,0x64,0x69,0x61,0x6e,0x2f,0x43,0x68,0x72,0x69,0x73,0x74,0x6d,0x61, - 0x73,0xa,0x43,0x59,0x9,0x2b,0x33,0x35,0x31,0x30,0x2b,0x30,0x33,0x33,0x32,0x32, - 0x9,0x41,0x73,0x69,0x61,0x2f,0x4e,0x69,0x63,0x6f,0x73,0x69,0x61,0x9,0x43,0x79, - 0x70,0x72,0x75,0x73,0x20,0x28,0x6d,0x6f,0x73,0x74,0x20,0x61,0x72,0x65,0x61,0x73, - 0x29,0xa,0x43,0x59,0x9,0x2b,0x33,0x35,0x30,0x37,0x2b,0x30,0x33,0x33,0x35,0x37, - 0x9,0x41,0x73,0x69,0x61,0x2f,0x46,0x61,0x6d,0x61,0x67,0x75,0x73,0x74,0x61,0x9, - 0x4e,0x6f,0x72,0x74,0x68,0x65,0x72,0x6e,0x20,0x43,0x79,0x70,0x72,0x75,0x73,0xa, - 0x43,0x5a,0x9,0x2b,0x35,0x30,0x30,0x35,0x2b,0x30,0x31,0x34,0x32,0x36,0x9,0x45, - 0x75,0x72,0x6f,0x70,0x65,0x2f,0x50,0x72,0x61,0x67,0x75,0x65,0xa,0x44,0x45,0x9, - 0x2b,0x35,0x32,0x33,0x30,0x2b,0x30,0x31,0x33,0x32,0x32,0x9,0x45,0x75,0x72,0x6f, - 0x70,0x65,0x2f,0x42,0x65,0x72,0x6c,0x69,0x6e,0x9,0x47,0x65,0x72,0x6d,0x61,0x6e, - 0x79,0x20,0x28,0x6d,0x6f,0x73,0x74,0x20,0x61,0x72,0x65,0x61,0x73,0x29,0xa,0x44, - 0x45,0x9,0x2b,0x34,0x37,0x34,0x32,0x2b,0x30,0x30,0x38,0x34,0x31,0x9,0x45,0x75, - 0x72,0x6f,0x70,0x65,0x2f,0x42,0x75,0x73,0x69,0x6e,0x67,0x65,0x6e,0x9,0x42,0x75, - 0x73,0x69,0x6e,0x67,0x65,0x6e,0xa,0x44,0x4a,0x9,0x2b,0x31,0x31,0x33,0x36,0x2b, - 0x30,0x34,0x33,0x30,0x39,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f,0x44,0x6a,0x69, - 0x62,0x6f,0x75,0x74,0x69,0xa,0x44,0x4b,0x9,0x2b,0x35,0x35,0x34,0x30,0x2b,0x30, - 0x31,0x32,0x33,0x35,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x43,0x6f,0x70,0x65, - 0x6e,0x68,0x61,0x67,0x65,0x6e,0xa,0x44,0x4d,0x9,0x2b,0x31,0x35,0x31,0x38,0x2d, - 0x30,0x36,0x31,0x32,0x34,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x44,0x6f, - 0x6d,0x69,0x6e,0x69,0x63,0x61,0xa,0x44,0x4f,0x9,0x2b,0x31,0x38,0x32,0x38,0x2d, - 0x30,0x36,0x39,0x35,0x34,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x53,0x61, - 0x6e,0x74,0x6f,0x5f,0x44,0x6f,0x6d,0x69,0x6e,0x67,0x6f,0xa,0x44,0x5a,0x9,0x2b, - 0x33,0x36,0x34,0x37,0x2b,0x30,0x30,0x33,0x30,0x33,0x9,0x41,0x66,0x72,0x69,0x63, - 0x61,0x2f,0x41,0x6c,0x67,0x69,0x65,0x72,0x73,0xa,0x45,0x43,0x9,0x2d,0x30,0x32, - 0x31,0x30,0x2d,0x30,0x37,0x39,0x35,0x30,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61, - 0x2f,0x47,0x75,0x61,0x79,0x61,0x71,0x75,0x69,0x6c,0x9,0x45,0x63,0x75,0x61,0x64, - 0x6f,0x72,0x20,0x28,0x6d,0x61,0x69,0x6e,0x6c,0x61,0x6e,0x64,0x29,0xa,0x45,0x43, - 0x9,0x2d,0x30,0x30,0x35,0x34,0x2d,0x30,0x38,0x39,0x33,0x36,0x9,0x50,0x61,0x63, - 0x69,0x66,0x69,0x63,0x2f,0x47,0x61,0x6c,0x61,0x70,0x61,0x67,0x6f,0x73,0x9,0x47, - 0x61,0x6c,0x61,0x70,0x61,0x67,0x6f,0x73,0x20,0x49,0x73,0x6c,0x61,0x6e,0x64,0x73, - 0xa,0x45,0x45,0x9,0x2b,0x35,0x39,0x32,0x35,0x2b,0x30,0x32,0x34,0x34,0x35,0x9, - 0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x54,0x61,0x6c,0x6c,0x69,0x6e,0x6e,0xa,0x45, - 0x47,0x9,0x2b,0x33,0x30,0x30,0x33,0x2b,0x30,0x33,0x31,0x31,0x35,0x9,0x41,0x66, - 0x72,0x69,0x63,0x61,0x2f,0x43,0x61,0x69,0x72,0x6f,0xa,0x45,0x48,0x9,0x2b,0x32, - 0x37,0x30,0x39,0x2d,0x30,0x31,0x33,0x31,0x32,0x9,0x41,0x66,0x72,0x69,0x63,0x61, - 0x2f,0x45,0x6c,0x5f,0x41,0x61,0x69,0x75,0x6e,0xa,0x45,0x52,0x9,0x2b,0x31,0x35, - 0x32,0x30,0x2b,0x30,0x33,0x38,0x35,0x33,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f, - 0x41,0x73,0x6d,0x61,0x72,0x61,0xa,0x45,0x53,0x9,0x2b,0x34,0x30,0x32,0x34,0x2d, - 0x30,0x30,0x33,0x34,0x31,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x4d,0x61,0x64, - 0x72,0x69,0x64,0x9,0x53,0x70,0x61,0x69,0x6e,0x20,0x28,0x6d,0x61,0x69,0x6e,0x6c, - 0x61,0x6e,0x64,0x29,0xa,0x45,0x53,0x9,0x2b,0x33,0x35,0x35,0x33,0x2d,0x30,0x30, - 0x35,0x31,0x39,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f,0x43,0x65,0x75,0x74,0x61, - 0x9,0x43,0x65,0x75,0x74,0x61,0x2c,0x20,0x4d,0x65,0x6c,0x69,0x6c,0x6c,0x61,0xa, - 0x45,0x53,0x9,0x2b,0x32,0x38,0x30,0x36,0x2d,0x30,0x31,0x35,0x32,0x34,0x9,0x41, - 0x74,0x6c,0x61,0x6e,0x74,0x69,0x63,0x2f,0x43,0x61,0x6e,0x61,0x72,0x79,0x9,0x43, - 0x61,0x6e,0x61,0x72,0x79,0x20,0x49,0x73,0x6c,0x61,0x6e,0x64,0x73,0xa,0x45,0x54, - 0x9,0x2b,0x30,0x39,0x30,0x32,0x2b,0x30,0x33,0x38,0x34,0x32,0x9,0x41,0x66,0x72, - 0x69,0x63,0x61,0x2f,0x41,0x64,0x64,0x69,0x73,0x5f,0x41,0x62,0x61,0x62,0x61,0xa, - 0x46,0x49,0x9,0x2b,0x36,0x30,0x31,0x30,0x2b,0x30,0x32,0x34,0x35,0x38,0x9,0x45, - 0x75,0x72,0x6f,0x70,0x65,0x2f,0x48,0x65,0x6c,0x73,0x69,0x6e,0x6b,0x69,0xa,0x46, - 0x4a,0x9,0x2d,0x31,0x38,0x30,0x38,0x2b,0x31,0x37,0x38,0x32,0x35,0x9,0x50,0x61, - 0x63,0x69,0x66,0x69,0x63,0x2f,0x46,0x69,0x6a,0x69,0xa,0x46,0x4b,0x9,0x2d,0x35, - 0x31,0x34,0x32,0x2d,0x30,0x35,0x37,0x35,0x31,0x9,0x41,0x74,0x6c,0x61,0x6e,0x74, - 0x69,0x63,0x2f,0x53,0x74,0x61,0x6e,0x6c,0x65,0x79,0xa,0x46,0x4d,0x9,0x2b,0x30, - 0x37,0x32,0x35,0x2b,0x31,0x35,0x31,0x34,0x37,0x9,0x50,0x61,0x63,0x69,0x66,0x69, - 0x63,0x2f,0x43,0x68,0x75,0x75,0x6b,0x9,0x43,0x68,0x75,0x75,0x6b,0x2f,0x54,0x72, - 0x75,0x6b,0x2c,0x20,0x59,0x61,0x70,0xa,0x46,0x4d,0x9,0x2b,0x30,0x36,0x35,0x38, - 0x2b,0x31,0x35,0x38,0x31,0x33,0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x2f,0x50, - 0x6f,0x68,0x6e,0x70,0x65,0x69,0x9,0x50,0x6f,0x68,0x6e,0x70,0x65,0x69,0x2f,0x50, - 0x6f,0x6e,0x61,0x70,0x65,0xa,0x46,0x4d,0x9,0x2b,0x30,0x35,0x31,0x39,0x2b,0x31, - 0x36,0x32,0x35,0x39,0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x2f,0x4b,0x6f,0x73, - 0x72,0x61,0x65,0x9,0x4b,0x6f,0x73,0x72,0x61,0x65,0xa,0x46,0x4f,0x9,0x2b,0x36, - 0x32,0x30,0x31,0x2d,0x30,0x30,0x36,0x34,0x36,0x9,0x41,0x74,0x6c,0x61,0x6e,0x74, - 0x69,0x63,0x2f,0x46,0x61,0x72,0x6f,0x65,0xa,0x46,0x52,0x9,0x2b,0x34,0x38,0x35, - 0x32,0x2b,0x30,0x30,0x32,0x32,0x30,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x50, - 0x61,0x72,0x69,0x73,0xa,0x47,0x41,0x9,0x2b,0x30,0x30,0x32,0x33,0x2b,0x30,0x30, - 0x39,0x32,0x37,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f,0x4c,0x69,0x62,0x72,0x65, - 0x76,0x69,0x6c,0x6c,0x65,0xa,0x47,0x42,0x9,0x2b,0x35,0x31,0x33,0x30,0x33,0x30, - 0x2d,0x30,0x30,0x30,0x30,0x37,0x33,0x31,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f, - 0x4c,0x6f,0x6e,0x64,0x6f,0x6e,0xa,0x47,0x44,0x9,0x2b,0x31,0x32,0x30,0x33,0x2d, - 0x30,0x36,0x31,0x34,0x35,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x47,0x72, - 0x65,0x6e,0x61,0x64,0x61,0xa,0x47,0x45,0x9,0x2b,0x34,0x31,0x34,0x33,0x2b,0x30, - 0x34,0x34,0x34,0x39,0x9,0x41,0x73,0x69,0x61,0x2f,0x54,0x62,0x69,0x6c,0x69,0x73, - 0x69,0xa,0x47,0x46,0x9,0x2b,0x30,0x34,0x35,0x36,0x2d,0x30,0x35,0x32,0x32,0x30, - 0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x43,0x61,0x79,0x65,0x6e,0x6e,0x65, - 0xa,0x47,0x47,0x9,0x2b,0x34,0x39,0x32,0x37,0x2d,0x30,0x30,0x32,0x33,0x32,0x9, - 0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x47,0x75,0x65,0x72,0x6e,0x73,0x65,0x79,0xa, - 0x47,0x48,0x9,0x2b,0x30,0x35,0x33,0x33,0x2d,0x30,0x30,0x30,0x31,0x33,0x9,0x41, - 0x66,0x72,0x69,0x63,0x61,0x2f,0x41,0x63,0x63,0x72,0x61,0xa,0x47,0x49,0x9,0x2b, - 0x33,0x36,0x30,0x38,0x2d,0x30,0x30,0x35,0x32,0x31,0x9,0x45,0x75,0x72,0x6f,0x70, - 0x65,0x2f,0x47,0x69,0x62,0x72,0x61,0x6c,0x74,0x61,0x72,0xa,0x47,0x4c,0x9,0x2b, - 0x36,0x34,0x31,0x31,0x2d,0x30,0x35,0x31,0x34,0x34,0x9,0x41,0x6d,0x65,0x72,0x69, - 0x63,0x61,0x2f,0x47,0x6f,0x64,0x74,0x68,0x61,0x62,0x9,0x47,0x72,0x65,0x65,0x6e, - 0x6c,0x61,0x6e,0x64,0x20,0x28,0x6d,0x6f,0x73,0x74,0x20,0x61,0x72,0x65,0x61,0x73, - 0x29,0xa,0x47,0x4c,0x9,0x2b,0x37,0x36,0x34,0x36,0x2d,0x30,0x31,0x38,0x34,0x30, - 0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x44,0x61,0x6e,0x6d,0x61,0x72,0x6b, - 0x73,0x68,0x61,0x76,0x6e,0x9,0x4e,0x61,0x74,0x69,0x6f,0x6e,0x61,0x6c,0x20,0x50, - 0x61,0x72,0x6b,0x20,0x28,0x65,0x61,0x73,0x74,0x20,0x63,0x6f,0x61,0x73,0x74,0x29, - 0xa,0x47,0x4c,0x9,0x2b,0x37,0x30,0x32,0x39,0x2d,0x30,0x32,0x31,0x35,0x38,0x9, - 0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x53,0x63,0x6f,0x72,0x65,0x73,0x62,0x79, - 0x73,0x75,0x6e,0x64,0x9,0x53,0x63,0x6f,0x72,0x65,0x73,0x62,0x79,0x73,0x75,0x6e, - 0x64,0x2f,0x49,0x74,0x74,0x6f,0x71,0x71,0x6f,0x72,0x74,0x6f,0x6f,0x72,0x6d,0x69, - 0x69,0x74,0xa,0x47,0x4c,0x9,0x2b,0x37,0x36,0x33,0x34,0x2d,0x30,0x36,0x38,0x34, - 0x37,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x54,0x68,0x75,0x6c,0x65,0x9, - 0x54,0x68,0x75,0x6c,0x65,0x2f,0x50,0x69,0x74,0x75,0x66,0x66,0x69,0x6b,0xa,0x47, - 0x4d,0x9,0x2b,0x31,0x33,0x32,0x38,0x2d,0x30,0x31,0x36,0x33,0x39,0x9,0x41,0x66, - 0x72,0x69,0x63,0x61,0x2f,0x42,0x61,0x6e,0x6a,0x75,0x6c,0xa,0x47,0x4e,0x9,0x2b, - 0x30,0x39,0x33,0x31,0x2d,0x30,0x31,0x33,0x34,0x33,0x9,0x41,0x66,0x72,0x69,0x63, - 0x61,0x2f,0x43,0x6f,0x6e,0x61,0x6b,0x72,0x79,0xa,0x47,0x50,0x9,0x2b,0x31,0x36, - 0x31,0x34,0x2d,0x30,0x36,0x31,0x33,0x32,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61, - 0x2f,0x47,0x75,0x61,0x64,0x65,0x6c,0x6f,0x75,0x70,0x65,0xa,0x47,0x51,0x9,0x2b, - 0x30,0x33,0x34,0x35,0x2b,0x30,0x30,0x38,0x34,0x37,0x9,0x41,0x66,0x72,0x69,0x63, - 0x61,0x2f,0x4d,0x61,0x6c,0x61,0x62,0x6f,0xa,0x47,0x52,0x9,0x2b,0x33,0x37,0x35, - 0x38,0x2b,0x30,0x32,0x33,0x34,0x33,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x41, - 0x74,0x68,0x65,0x6e,0x73,0xa,0x47,0x53,0x9,0x2d,0x35,0x34,0x31,0x36,0x2d,0x30, - 0x33,0x36,0x33,0x32,0x9,0x41,0x74,0x6c,0x61,0x6e,0x74,0x69,0x63,0x2f,0x53,0x6f, - 0x75,0x74,0x68,0x5f,0x47,0x65,0x6f,0x72,0x67,0x69,0x61,0xa,0x47,0x54,0x9,0x2b, - 0x31,0x34,0x33,0x38,0x2d,0x30,0x39,0x30,0x33,0x31,0x9,0x41,0x6d,0x65,0x72,0x69, - 0x63,0x61,0x2f,0x47,0x75,0x61,0x74,0x65,0x6d,0x61,0x6c,0x61,0xa,0x47,0x55,0x9, - 0x2b,0x31,0x33,0x32,0x38,0x2b,0x31,0x34,0x34,0x34,0x35,0x9,0x50,0x61,0x63,0x69, - 0x66,0x69,0x63,0x2f,0x47,0x75,0x61,0x6d,0xa,0x47,0x57,0x9,0x2b,0x31,0x31,0x35, - 0x31,0x2d,0x30,0x31,0x35,0x33,0x35,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f,0x42, - 0x69,0x73,0x73,0x61,0x75,0xa,0x47,0x59,0x9,0x2b,0x30,0x36,0x34,0x38,0x2d,0x30, - 0x35,0x38,0x31,0x30,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x47,0x75,0x79, - 0x61,0x6e,0x61,0xa,0x48,0x4b,0x9,0x2b,0x32,0x32,0x31,0x37,0x2b,0x31,0x31,0x34, - 0x30,0x39,0x9,0x41,0x73,0x69,0x61,0x2f,0x48,0x6f,0x6e,0x67,0x5f,0x4b,0x6f,0x6e, - 0x67,0xa,0x48,0x4e,0x9,0x2b,0x31,0x34,0x30,0x36,0x2d,0x30,0x38,0x37,0x31,0x33, - 0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x54,0x65,0x67,0x75,0x63,0x69,0x67, - 0x61,0x6c,0x70,0x61,0xa,0x48,0x52,0x9,0x2b,0x34,0x35,0x34,0x38,0x2b,0x30,0x31, - 0x35,0x35,0x38,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x5a,0x61,0x67,0x72,0x65, - 0x62,0xa,0x48,0x54,0x9,0x2b,0x31,0x38,0x33,0x32,0x2d,0x30,0x37,0x32,0x32,0x30, - 0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x50,0x6f,0x72,0x74,0x2d,0x61,0x75, - 0x2d,0x50,0x72,0x69,0x6e,0x63,0x65,0xa,0x48,0x55,0x9,0x2b,0x34,0x37,0x33,0x30, - 0x2b,0x30,0x31,0x39,0x30,0x35,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x42,0x75, - 0x64,0x61,0x70,0x65,0x73,0x74,0xa,0x49,0x44,0x9,0x2d,0x30,0x36,0x31,0x30,0x2b, - 0x31,0x30,0x36,0x34,0x38,0x9,0x41,0x73,0x69,0x61,0x2f,0x4a,0x61,0x6b,0x61,0x72, - 0x74,0x61,0x9,0x4a,0x61,0x76,0x61,0x2c,0x20,0x53,0x75,0x6d,0x61,0x74,0x72,0x61, - 0xa,0x49,0x44,0x9,0x2d,0x30,0x30,0x30,0x32,0x2b,0x31,0x30,0x39,0x32,0x30,0x9, - 0x41,0x73,0x69,0x61,0x2f,0x50,0x6f,0x6e,0x74,0x69,0x61,0x6e,0x61,0x6b,0x9,0x42, - 0x6f,0x72,0x6e,0x65,0x6f,0x20,0x28,0x77,0x65,0x73,0x74,0x2c,0x20,0x63,0x65,0x6e, - 0x74,0x72,0x61,0x6c,0x29,0xa,0x49,0x44,0x9,0x2d,0x30,0x35,0x30,0x37,0x2b,0x31, - 0x31,0x39,0x32,0x34,0x9,0x41,0x73,0x69,0x61,0x2f,0x4d,0x61,0x6b,0x61,0x73,0x73, - 0x61,0x72,0x9,0x42,0x6f,0x72,0x6e,0x65,0x6f,0x20,0x28,0x65,0x61,0x73,0x74,0x2c, - 0x20,0x73,0x6f,0x75,0x74,0x68,0x29,0x3b,0x20,0x53,0x75,0x6c,0x61,0x77,0x65,0x73, - 0x69,0x2f,0x43,0x65,0x6c,0x65,0x62,0x65,0x73,0x2c,0x20,0x42,0x61,0x6c,0x69,0x2c, - 0x20,0x4e,0x75,0x73,0x61,0x20,0x54,0x65,0x6e,0x67,0x61,0x72,0x72,0x61,0x3b,0x20, - 0x54,0x69,0x6d,0x6f,0x72,0x20,0x28,0x77,0x65,0x73,0x74,0x29,0xa,0x49,0x44,0x9, - 0x2d,0x30,0x32,0x33,0x32,0x2b,0x31,0x34,0x30,0x34,0x32,0x9,0x41,0x73,0x69,0x61, - 0x2f,0x4a,0x61,0x79,0x61,0x70,0x75,0x72,0x61,0x9,0x4e,0x65,0x77,0x20,0x47,0x75, - 0x69,0x6e,0x65,0x61,0x20,0x28,0x57,0x65,0x73,0x74,0x20,0x50,0x61,0x70,0x75,0x61, - 0x20,0x2f,0x20,0x49,0x72,0x69,0x61,0x6e,0x20,0x4a,0x61,0x79,0x61,0x29,0x3b,0x20, - 0x4d,0x61,0x6c,0x75,0x6b,0x75,0x73,0x2f,0x4d,0x6f,0x6c,0x75,0x63,0x63,0x61,0x73, - 0xa,0x49,0x45,0x9,0x2b,0x35,0x33,0x32,0x30,0x2d,0x30,0x30,0x36,0x31,0x35,0x9, - 0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x44,0x75,0x62,0x6c,0x69,0x6e,0xa,0x49,0x4c, - 0x9,0x2b,0x33,0x31,0x34,0x36,0x35,0x30,0x2b,0x30,0x33,0x35,0x31,0x33,0x32,0x36, - 0x9,0x41,0x73,0x69,0x61,0x2f,0x4a,0x65,0x72,0x75,0x73,0x61,0x6c,0x65,0x6d,0xa, - 0x49,0x4d,0x9,0x2b,0x35,0x34,0x30,0x39,0x2d,0x30,0x30,0x34,0x32,0x38,0x9,0x45, - 0x75,0x72,0x6f,0x70,0x65,0x2f,0x49,0x73,0x6c,0x65,0x5f,0x6f,0x66,0x5f,0x4d,0x61, - 0x6e,0xa,0x49,0x4e,0x9,0x2b,0x32,0x32,0x33,0x32,0x2b,0x30,0x38,0x38,0x32,0x32, - 0x9,0x41,0x73,0x69,0x61,0x2f,0x4b,0x6f,0x6c,0x6b,0x61,0x74,0x61,0xa,0x49,0x4f, - 0x9,0x2d,0x30,0x37,0x32,0x30,0x2b,0x30,0x37,0x32,0x32,0x35,0x9,0x49,0x6e,0x64, - 0x69,0x61,0x6e,0x2f,0x43,0x68,0x61,0x67,0x6f,0x73,0xa,0x49,0x51,0x9,0x2b,0x33, - 0x33,0x32,0x31,0x2b,0x30,0x34,0x34,0x32,0x35,0x9,0x41,0x73,0x69,0x61,0x2f,0x42, - 0x61,0x67,0x68,0x64,0x61,0x64,0xa,0x49,0x52,0x9,0x2b,0x33,0x35,0x34,0x30,0x2b, - 0x30,0x35,0x31,0x32,0x36,0x9,0x41,0x73,0x69,0x61,0x2f,0x54,0x65,0x68,0x72,0x61, - 0x6e,0xa,0x49,0x53,0x9,0x2b,0x36,0x34,0x30,0x39,0x2d,0x30,0x32,0x31,0x35,0x31, - 0x9,0x41,0x74,0x6c,0x61,0x6e,0x74,0x69,0x63,0x2f,0x52,0x65,0x79,0x6b,0x6a,0x61, - 0x76,0x69,0x6b,0xa,0x49,0x54,0x9,0x2b,0x34,0x31,0x35,0x34,0x2b,0x30,0x31,0x32, - 0x32,0x39,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x52,0x6f,0x6d,0x65,0xa,0x4a, - 0x45,0x9,0x2b,0x34,0x39,0x31,0x32,0x2d,0x30,0x30,0x32,0x30,0x37,0x9,0x45,0x75, - 0x72,0x6f,0x70,0x65,0x2f,0x4a,0x65,0x72,0x73,0x65,0x79,0xa,0x4a,0x4d,0x9,0x2b, - 0x31,0x37,0x35,0x38,0x30,0x35,0x2d,0x30,0x37,0x36,0x34,0x37,0x33,0x36,0x9,0x41, - 0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x4a,0x61,0x6d,0x61,0x69,0x63,0x61,0xa,0x4a, - 0x4f,0x9,0x2b,0x33,0x31,0x35,0x37,0x2b,0x30,0x33,0x35,0x35,0x36,0x9,0x41,0x73, - 0x69,0x61,0x2f,0x41,0x6d,0x6d,0x61,0x6e,0xa,0x4a,0x50,0x9,0x2b,0x33,0x35,0x33, - 0x39,0x31,0x36,0x2b,0x31,0x33,0x39,0x34,0x34,0x34,0x31,0x9,0x41,0x73,0x69,0x61, - 0x2f,0x54,0x6f,0x6b,0x79,0x6f,0xa,0x4b,0x45,0x9,0x2d,0x30,0x31,0x31,0x37,0x2b, - 0x30,0x33,0x36,0x34,0x39,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f,0x4e,0x61,0x69, - 0x72,0x6f,0x62,0x69,0xa,0x4b,0x47,0x9,0x2b,0x34,0x32,0x35,0x34,0x2b,0x30,0x37, - 0x34,0x33,0x36,0x9,0x41,0x73,0x69,0x61,0x2f,0x42,0x69,0x73,0x68,0x6b,0x65,0x6b, - 0xa,0x4b,0x48,0x9,0x2b,0x31,0x31,0x33,0x33,0x2b,0x31,0x30,0x34,0x35,0x35,0x9, - 0x41,0x73,0x69,0x61,0x2f,0x50,0x68,0x6e,0x6f,0x6d,0x5f,0x50,0x65,0x6e,0x68,0xa, - 0x4b,0x49,0x9,0x2b,0x30,0x31,0x32,0x35,0x2b,0x31,0x37,0x33,0x30,0x30,0x9,0x50, - 0x61,0x63,0x69,0x66,0x69,0x63,0x2f,0x54,0x61,0x72,0x61,0x77,0x61,0x9,0x47,0x69, - 0x6c,0x62,0x65,0x72,0x74,0x20,0x49,0x73,0x6c,0x61,0x6e,0x64,0x73,0xa,0x4b,0x49, - 0x9,0x2d,0x30,0x33,0x30,0x38,0x2d,0x31,0x37,0x31,0x30,0x35,0x9,0x50,0x61,0x63, - 0x69,0x66,0x69,0x63,0x2f,0x45,0x6e,0x64,0x65,0x72,0x62,0x75,0x72,0x79,0x9,0x50, - 0x68,0x6f,0x65,0x6e,0x69,0x78,0x20,0x49,0x73,0x6c,0x61,0x6e,0x64,0x73,0xa,0x4b, - 0x49,0x9,0x2b,0x30,0x31,0x35,0x32,0x2d,0x31,0x35,0x37,0x32,0x30,0x9,0x50,0x61, - 0x63,0x69,0x66,0x69,0x63,0x2f,0x4b,0x69,0x72,0x69,0x74,0x69,0x6d,0x61,0x74,0x69, - 0x9,0x4c,0x69,0x6e,0x65,0x20,0x49,0x73,0x6c,0x61,0x6e,0x64,0x73,0xa,0x4b,0x4d, - 0x9,0x2d,0x31,0x31,0x34,0x31,0x2b,0x30,0x34,0x33,0x31,0x36,0x9,0x49,0x6e,0x64, - 0x69,0x61,0x6e,0x2f,0x43,0x6f,0x6d,0x6f,0x72,0x6f,0xa,0x4b,0x4e,0x9,0x2b,0x31, - 0x37,0x31,0x38,0x2d,0x30,0x36,0x32,0x34,0x33,0x9,0x41,0x6d,0x65,0x72,0x69,0x63, - 0x61,0x2f,0x53,0x74,0x5f,0x4b,0x69,0x74,0x74,0x73,0xa,0x4b,0x50,0x9,0x2b,0x33, - 0x39,0x30,0x31,0x2b,0x31,0x32,0x35,0x34,0x35,0x9,0x41,0x73,0x69,0x61,0x2f,0x50, - 0x79,0x6f,0x6e,0x67,0x79,0x61,0x6e,0x67,0xa,0x4b,0x52,0x9,0x2b,0x33,0x37,0x33, - 0x33,0x2b,0x31,0x32,0x36,0x35,0x38,0x9,0x41,0x73,0x69,0x61,0x2f,0x53,0x65,0x6f, - 0x75,0x6c,0xa,0x4b,0x57,0x9,0x2b,0x32,0x39,0x32,0x30,0x2b,0x30,0x34,0x37,0x35, - 0x39,0x9,0x41,0x73,0x69,0x61,0x2f,0x4b,0x75,0x77,0x61,0x69,0x74,0xa,0x4b,0x59, - 0x9,0x2b,0x31,0x39,0x31,0x38,0x2d,0x30,0x38,0x31,0x32,0x33,0x9,0x41,0x6d,0x65, - 0x72,0x69,0x63,0x61,0x2f,0x43,0x61,0x79,0x6d,0x61,0x6e,0xa,0x4b,0x5a,0x9,0x2b, - 0x34,0x33,0x31,0x35,0x2b,0x30,0x37,0x36,0x35,0x37,0x9,0x41,0x73,0x69,0x61,0x2f, - 0x41,0x6c,0x6d,0x61,0x74,0x79,0x9,0x4b,0x61,0x7a,0x61,0x6b,0x68,0x73,0x74,0x61, - 0x6e,0x20,0x28,0x6d,0x6f,0x73,0x74,0x20,0x61,0x72,0x65,0x61,0x73,0x29,0xa,0x4b, - 0x5a,0x9,0x2b,0x34,0x34,0x34,0x38,0x2b,0x30,0x36,0x35,0x32,0x38,0x9,0x41,0x73, - 0x69,0x61,0x2f,0x51,0x79,0x7a,0x79,0x6c,0x6f,0x72,0x64,0x61,0x9,0x51,0x79,0x7a, - 0x79,0x6c,0x6f,0x72,0x64,0x61,0x2f,0x4b,0x79,0x7a,0x79,0x6c,0x6f,0x72,0x64,0x61, - 0x2f,0x4b,0x7a,0x79,0x6c,0x2d,0x4f,0x72,0x64,0x61,0xa,0x4b,0x5a,0x9,0x2b,0x35, - 0x30,0x31,0x37,0x2b,0x30,0x35,0x37,0x31,0x30,0x9,0x41,0x73,0x69,0x61,0x2f,0x41, - 0x71,0x74,0x6f,0x62,0x65,0x9,0x41,0x71,0x74,0x6f,0x62,0x65,0x2f,0x41,0x6b,0x74, - 0x6f,0x62,0x65,0xa,0x4b,0x5a,0x9,0x2b,0x34,0x34,0x33,0x31,0x2b,0x30,0x35,0x30, - 0x31,0x36,0x9,0x41,0x73,0x69,0x61,0x2f,0x41,0x71,0x74,0x61,0x75,0x9,0x4d,0x61, - 0x6e,0x67,0x67,0x68,0x79,0x73,0x74,0x61,0x75,0x2f,0x4d,0x61,0x6e,0x6b,0x69,0x73, - 0x74,0x61,0x75,0xa,0x4b,0x5a,0x9,0x2b,0x34,0x37,0x30,0x37,0x2b,0x30,0x35,0x31, - 0x35,0x36,0x9,0x41,0x73,0x69,0x61,0x2f,0x41,0x74,0x79,0x72,0x61,0x75,0x9,0x41, - 0x74,0x79,0x72,0x61,0x75,0x2f,0x41,0x74,0x69,0x72,0x61,0x75,0x2f,0x47,0x75,0x72, - 0x27,0x79,0x65,0x76,0xa,0x4b,0x5a,0x9,0x2b,0x35,0x31,0x31,0x33,0x2b,0x30,0x35, - 0x31,0x32,0x31,0x9,0x41,0x73,0x69,0x61,0x2f,0x4f,0x72,0x61,0x6c,0x9,0x57,0x65, - 0x73,0x74,0x20,0x4b,0x61,0x7a,0x61,0x6b,0x68,0x73,0x74,0x61,0x6e,0xa,0x4c,0x41, - 0x9,0x2b,0x31,0x37,0x35,0x38,0x2b,0x31,0x30,0x32,0x33,0x36,0x9,0x41,0x73,0x69, - 0x61,0x2f,0x56,0x69,0x65,0x6e,0x74,0x69,0x61,0x6e,0x65,0xa,0x4c,0x42,0x9,0x2b, - 0x33,0x33,0x35,0x33,0x2b,0x30,0x33,0x35,0x33,0x30,0x9,0x41,0x73,0x69,0x61,0x2f, - 0x42,0x65,0x69,0x72,0x75,0x74,0xa,0x4c,0x43,0x9,0x2b,0x31,0x34,0x30,0x31,0x2d, - 0x30,0x36,0x31,0x30,0x30,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x53,0x74, - 0x5f,0x4c,0x75,0x63,0x69,0x61,0xa,0x4c,0x49,0x9,0x2b,0x34,0x37,0x30,0x39,0x2b, - 0x30,0x30,0x39,0x33,0x31,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x56,0x61,0x64, - 0x75,0x7a,0xa,0x4c,0x4b,0x9,0x2b,0x30,0x36,0x35,0x36,0x2b,0x30,0x37,0x39,0x35, - 0x31,0x9,0x41,0x73,0x69,0x61,0x2f,0x43,0x6f,0x6c,0x6f,0x6d,0x62,0x6f,0xa,0x4c, - 0x52,0x9,0x2b,0x30,0x36,0x31,0x38,0x2d,0x30,0x31,0x30,0x34,0x37,0x9,0x41,0x66, - 0x72,0x69,0x63,0x61,0x2f,0x4d,0x6f,0x6e,0x72,0x6f,0x76,0x69,0x61,0xa,0x4c,0x53, - 0x9,0x2d,0x32,0x39,0x32,0x38,0x2b,0x30,0x32,0x37,0x33,0x30,0x9,0x41,0x66,0x72, - 0x69,0x63,0x61,0x2f,0x4d,0x61,0x73,0x65,0x72,0x75,0xa,0x4c,0x54,0x9,0x2b,0x35, - 0x34,0x34,0x31,0x2b,0x30,0x32,0x35,0x31,0x39,0x9,0x45,0x75,0x72,0x6f,0x70,0x65, - 0x2f,0x56,0x69,0x6c,0x6e,0x69,0x75,0x73,0xa,0x4c,0x55,0x9,0x2b,0x34,0x39,0x33, - 0x36,0x2b,0x30,0x30,0x36,0x30,0x39,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x4c, - 0x75,0x78,0x65,0x6d,0x62,0x6f,0x75,0x72,0x67,0xa,0x4c,0x56,0x9,0x2b,0x35,0x36, - 0x35,0x37,0x2b,0x30,0x32,0x34,0x30,0x36,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f, - 0x52,0x69,0x67,0x61,0xa,0x4c,0x59,0x9,0x2b,0x33,0x32,0x35,0x34,0x2b,0x30,0x31, - 0x33,0x31,0x31,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f,0x54,0x72,0x69,0x70,0x6f, - 0x6c,0x69,0xa,0x4d,0x41,0x9,0x2b,0x33,0x33,0x33,0x39,0x2d,0x30,0x30,0x37,0x33, - 0x35,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f,0x43,0x61,0x73,0x61,0x62,0x6c,0x61, - 0x6e,0x63,0x61,0xa,0x4d,0x43,0x9,0x2b,0x34,0x33,0x34,0x32,0x2b,0x30,0x30,0x37, - 0x32,0x33,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x4d,0x6f,0x6e,0x61,0x63,0x6f, - 0xa,0x4d,0x44,0x9,0x2b,0x34,0x37,0x30,0x30,0x2b,0x30,0x32,0x38,0x35,0x30,0x9, - 0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x43,0x68,0x69,0x73,0x69,0x6e,0x61,0x75,0xa, - 0x4d,0x45,0x9,0x2b,0x34,0x32,0x32,0x36,0x2b,0x30,0x31,0x39,0x31,0x36,0x9,0x45, - 0x75,0x72,0x6f,0x70,0x65,0x2f,0x50,0x6f,0x64,0x67,0x6f,0x72,0x69,0x63,0x61,0xa, - 0x4d,0x46,0x9,0x2b,0x31,0x38,0x30,0x34,0x2d,0x30,0x36,0x33,0x30,0x35,0x9,0x41, - 0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x4d,0x61,0x72,0x69,0x67,0x6f,0x74,0xa,0x4d, - 0x47,0x9,0x2d,0x31,0x38,0x35,0x35,0x2b,0x30,0x34,0x37,0x33,0x31,0x9,0x49,0x6e, - 0x64,0x69,0x61,0x6e,0x2f,0x41,0x6e,0x74,0x61,0x6e,0x61,0x6e,0x61,0x72,0x69,0x76, - 0x6f,0xa,0x4d,0x48,0x9,0x2b,0x30,0x37,0x30,0x39,0x2b,0x31,0x37,0x31,0x31,0x32, - 0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x2f,0x4d,0x61,0x6a,0x75,0x72,0x6f,0x9, - 0x4d,0x61,0x72,0x73,0x68,0x61,0x6c,0x6c,0x20,0x49,0x73,0x6c,0x61,0x6e,0x64,0x73, - 0x20,0x28,0x6d,0x6f,0x73,0x74,0x20,0x61,0x72,0x65,0x61,0x73,0x29,0xa,0x4d,0x48, - 0x9,0x2b,0x30,0x39,0x30,0x35,0x2b,0x31,0x36,0x37,0x32,0x30,0x9,0x50,0x61,0x63, - 0x69,0x66,0x69,0x63,0x2f,0x4b,0x77,0x61,0x6a,0x61,0x6c,0x65,0x69,0x6e,0x9,0x4b, - 0x77,0x61,0x6a,0x61,0x6c,0x65,0x69,0x6e,0xa,0x4d,0x4b,0x9,0x2b,0x34,0x31,0x35, - 0x39,0x2b,0x30,0x32,0x31,0x32,0x36,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x53, - 0x6b,0x6f,0x70,0x6a,0x65,0xa,0x4d,0x4c,0x9,0x2b,0x31,0x32,0x33,0x39,0x2d,0x30, - 0x30,0x38,0x30,0x30,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f,0x42,0x61,0x6d,0x61, - 0x6b,0x6f,0xa,0x4d,0x4d,0x9,0x2b,0x31,0x36,0x34,0x37,0x2b,0x30,0x39,0x36,0x31, - 0x30,0x9,0x41,0x73,0x69,0x61,0x2f,0x59,0x61,0x6e,0x67,0x6f,0x6e,0xa,0x4d,0x4e, - 0x9,0x2b,0x34,0x37,0x35,0x35,0x2b,0x31,0x30,0x36,0x35,0x33,0x9,0x41,0x73,0x69, - 0x61,0x2f,0x55,0x6c,0x61,0x61,0x6e,0x62,0x61,0x61,0x74,0x61,0x72,0x9,0x4d,0x6f, - 0x6e,0x67,0x6f,0x6c,0x69,0x61,0x20,0x28,0x6d,0x6f,0x73,0x74,0x20,0x61,0x72,0x65, - 0x61,0x73,0x29,0xa,0x4d,0x4e,0x9,0x2b,0x34,0x38,0x30,0x31,0x2b,0x30,0x39,0x31, - 0x33,0x39,0x9,0x41,0x73,0x69,0x61,0x2f,0x48,0x6f,0x76,0x64,0x9,0x42,0x61,0x79, - 0x61,0x6e,0x2d,0x4f,0x6c,0x67,0x69,0x79,0x2c,0x20,0x47,0x6f,0x76,0x69,0x2d,0x41, - 0x6c,0x74,0x61,0x69,0x2c,0x20,0x48,0x6f,0x76,0x64,0x2c,0x20,0x55,0x76,0x73,0x2c, - 0x20,0x5a,0x61,0x76,0x6b,0x68,0x61,0x6e,0xa,0x4d,0x4e,0x9,0x2b,0x34,0x38,0x30, - 0x34,0x2b,0x31,0x31,0x34,0x33,0x30,0x9,0x41,0x73,0x69,0x61,0x2f,0x43,0x68,0x6f, - 0x69,0x62,0x61,0x6c,0x73,0x61,0x6e,0x9,0x44,0x6f,0x72,0x6e,0x6f,0x64,0x2c,0x20, - 0x53,0x75,0x6b,0x68,0x62,0x61,0x61,0x74,0x61,0x72,0xa,0x4d,0x4f,0x9,0x2b,0x32, - 0x32,0x31,0x34,0x2b,0x31,0x31,0x33,0x33,0x35,0x9,0x41,0x73,0x69,0x61,0x2f,0x4d, - 0x61,0x63,0x61,0x75,0xa,0x4d,0x50,0x9,0x2b,0x31,0x35,0x31,0x32,0x2b,0x31,0x34, - 0x35,0x34,0x35,0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x2f,0x53,0x61,0x69,0x70, - 0x61,0x6e,0xa,0x4d,0x51,0x9,0x2b,0x31,0x34,0x33,0x36,0x2d,0x30,0x36,0x31,0x30, - 0x35,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x4d,0x61,0x72,0x74,0x69,0x6e, - 0x69,0x71,0x75,0x65,0xa,0x4d,0x52,0x9,0x2b,0x31,0x38,0x30,0x36,0x2d,0x30,0x31, - 0x35,0x35,0x37,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f,0x4e,0x6f,0x75,0x61,0x6b, - 0x63,0x68,0x6f,0x74,0x74,0xa,0x4d,0x53,0x9,0x2b,0x31,0x36,0x34,0x33,0x2d,0x30, - 0x36,0x32,0x31,0x33,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x4d,0x6f,0x6e, - 0x74,0x73,0x65,0x72,0x72,0x61,0x74,0xa,0x4d,0x54,0x9,0x2b,0x33,0x35,0x35,0x34, - 0x2b,0x30,0x31,0x34,0x33,0x31,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x4d,0x61, - 0x6c,0x74,0x61,0xa,0x4d,0x55,0x9,0x2d,0x32,0x30,0x31,0x30,0x2b,0x30,0x35,0x37, - 0x33,0x30,0x9,0x49,0x6e,0x64,0x69,0x61,0x6e,0x2f,0x4d,0x61,0x75,0x72,0x69,0x74, - 0x69,0x75,0x73,0xa,0x4d,0x56,0x9,0x2b,0x30,0x34,0x31,0x30,0x2b,0x30,0x37,0x33, - 0x33,0x30,0x9,0x49,0x6e,0x64,0x69,0x61,0x6e,0x2f,0x4d,0x61,0x6c,0x64,0x69,0x76, - 0x65,0x73,0xa,0x4d,0x57,0x9,0x2d,0x31,0x35,0x34,0x37,0x2b,0x30,0x33,0x35,0x30, - 0x30,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f,0x42,0x6c,0x61,0x6e,0x74,0x79,0x72, - 0x65,0xa,0x4d,0x58,0x9,0x2b,0x31,0x39,0x32,0x34,0x2d,0x30,0x39,0x39,0x30,0x39, - 0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x4d,0x65,0x78,0x69,0x63,0x6f,0x5f, - 0x43,0x69,0x74,0x79,0x9,0x43,0x65,0x6e,0x74,0x72,0x61,0x6c,0x20,0x54,0x69,0x6d, - 0x65,0xa,0x4d,0x58,0x9,0x2b,0x32,0x31,0x30,0x35,0x2d,0x30,0x38,0x36,0x34,0x36, - 0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x43,0x61,0x6e,0x63,0x75,0x6e,0x9, - 0x45,0x61,0x73,0x74,0x65,0x72,0x6e,0x20,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64, - 0x20,0x54,0x69,0x6d,0x65,0x20,0x2d,0x20,0x51,0x75,0x69,0x6e,0x74,0x61,0x6e,0x61, - 0x20,0x52,0x6f,0x6f,0xa,0x4d,0x58,0x9,0x2b,0x32,0x30,0x35,0x38,0x2d,0x30,0x38, - 0x39,0x33,0x37,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x4d,0x65,0x72,0x69, - 0x64,0x61,0x9,0x43,0x65,0x6e,0x74,0x72,0x61,0x6c,0x20,0x54,0x69,0x6d,0x65,0x20, - 0x2d,0x20,0x43,0x61,0x6d,0x70,0x65,0x63,0x68,0x65,0x2c,0x20,0x59,0x75,0x63,0x61, - 0x74,0x61,0x6e,0xa,0x4d,0x58,0x9,0x2b,0x32,0x35,0x34,0x30,0x2d,0x31,0x30,0x30, - 0x31,0x39,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x4d,0x6f,0x6e,0x74,0x65, - 0x72,0x72,0x65,0x79,0x9,0x43,0x65,0x6e,0x74,0x72,0x61,0x6c,0x20,0x54,0x69,0x6d, - 0x65,0x20,0x2d,0x20,0x44,0x75,0x72,0x61,0x6e,0x67,0x6f,0x3b,0x20,0x43,0x6f,0x61, - 0x68,0x75,0x69,0x6c,0x61,0x2c,0x20,0x4e,0x75,0x65,0x76,0x6f,0x20,0x4c,0x65,0x6f, - 0x6e,0x2c,0x20,0x54,0x61,0x6d,0x61,0x75,0x6c,0x69,0x70,0x61,0x73,0x20,0x28,0x6d, - 0x6f,0x73,0x74,0x20,0x61,0x72,0x65,0x61,0x73,0x29,0xa,0x4d,0x58,0x9,0x2b,0x32, - 0x35,0x35,0x30,0x2d,0x30,0x39,0x37,0x33,0x30,0x9,0x41,0x6d,0x65,0x72,0x69,0x63, - 0x61,0x2f,0x4d,0x61,0x74,0x61,0x6d,0x6f,0x72,0x6f,0x73,0x9,0x43,0x65,0x6e,0x74, - 0x72,0x61,0x6c,0x20,0x54,0x69,0x6d,0x65,0x20,0x55,0x53,0x20,0x2d,0x20,0x43,0x6f, - 0x61,0x68,0x75,0x69,0x6c,0x61,0x2c,0x20,0x4e,0x75,0x65,0x76,0x6f,0x20,0x4c,0x65, - 0x6f,0x6e,0x2c,0x20,0x54,0x61,0x6d,0x61,0x75,0x6c,0x69,0x70,0x61,0x73,0x20,0x28, - 0x55,0x53,0x20,0x62,0x6f,0x72,0x64,0x65,0x72,0x29,0xa,0x4d,0x58,0x9,0x2b,0x32, - 0x33,0x31,0x33,0x2d,0x31,0x30,0x36,0x32,0x35,0x9,0x41,0x6d,0x65,0x72,0x69,0x63, - 0x61,0x2f,0x4d,0x61,0x7a,0x61,0x74,0x6c,0x61,0x6e,0x9,0x4d,0x6f,0x75,0x6e,0x74, - 0x61,0x69,0x6e,0x20,0x54,0x69,0x6d,0x65,0x20,0x2d,0x20,0x42,0x61,0x6a,0x61,0x20, - 0x43,0x61,0x6c,0x69,0x66,0x6f,0x72,0x6e,0x69,0x61,0x20,0x53,0x75,0x72,0x2c,0x20, - 0x4e,0x61,0x79,0x61,0x72,0x69,0x74,0x2c,0x20,0x53,0x69,0x6e,0x61,0x6c,0x6f,0x61, - 0xa,0x4d,0x58,0x9,0x2b,0x32,0x38,0x33,0x38,0x2d,0x31,0x30,0x36,0x30,0x35,0x9, - 0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x43,0x68,0x69,0x68,0x75,0x61,0x68,0x75, - 0x61,0x9,0x4d,0x6f,0x75,0x6e,0x74,0x61,0x69,0x6e,0x20,0x54,0x69,0x6d,0x65,0x20, - 0x2d,0x20,0x43,0x68,0x69,0x68,0x75,0x61,0x68,0x75,0x61,0x20,0x28,0x6d,0x6f,0x73, - 0x74,0x20,0x61,0x72,0x65,0x61,0x73,0x29,0xa,0x4d,0x58,0x9,0x2b,0x32,0x39,0x33, - 0x34,0x2d,0x31,0x30,0x34,0x32,0x35,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f, - 0x4f,0x6a,0x69,0x6e,0x61,0x67,0x61,0x9,0x4d,0x6f,0x75,0x6e,0x74,0x61,0x69,0x6e, - 0x20,0x54,0x69,0x6d,0x65,0x20,0x55,0x53,0x20,0x2d,0x20,0x43,0x68,0x69,0x68,0x75, - 0x61,0x68,0x75,0x61,0x20,0x28,0x55,0x53,0x20,0x62,0x6f,0x72,0x64,0x65,0x72,0x29, - 0xa,0x4d,0x58,0x9,0x2b,0x32,0x39,0x30,0x34,0x2d,0x31,0x31,0x30,0x35,0x38,0x9, - 0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x48,0x65,0x72,0x6d,0x6f,0x73,0x69,0x6c, - 0x6c,0x6f,0x9,0x4d,0x6f,0x75,0x6e,0x74,0x61,0x69,0x6e,0x20,0x53,0x74,0x61,0x6e, - 0x64,0x61,0x72,0x64,0x20,0x54,0x69,0x6d,0x65,0x20,0x2d,0x20,0x53,0x6f,0x6e,0x6f, - 0x72,0x61,0xa,0x4d,0x58,0x9,0x2b,0x33,0x32,0x33,0x32,0x2d,0x31,0x31,0x37,0x30, - 0x31,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x54,0x69,0x6a,0x75,0x61,0x6e, - 0x61,0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x20,0x54,0x69,0x6d,0x65,0x20,0x55, - 0x53,0x20,0x2d,0x20,0x42,0x61,0x6a,0x61,0x20,0x43,0x61,0x6c,0x69,0x66,0x6f,0x72, - 0x6e,0x69,0x61,0xa,0x4d,0x58,0x9,0x2b,0x32,0x30,0x34,0x38,0x2d,0x31,0x30,0x35, - 0x31,0x35,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x42,0x61,0x68,0x69,0x61, - 0x5f,0x42,0x61,0x6e,0x64,0x65,0x72,0x61,0x73,0x9,0x43,0x65,0x6e,0x74,0x72,0x61, - 0x6c,0x20,0x54,0x69,0x6d,0x65,0x20,0x2d,0x20,0x42,0x61,0x68,0x69,0x61,0x20,0x64, - 0x65,0x20,0x42,0x61,0x6e,0x64,0x65,0x72,0x61,0x73,0xa,0x4d,0x59,0x9,0x2b,0x30, - 0x33,0x31,0x30,0x2b,0x31,0x30,0x31,0x34,0x32,0x9,0x41,0x73,0x69,0x61,0x2f,0x4b, - 0x75,0x61,0x6c,0x61,0x5f,0x4c,0x75,0x6d,0x70,0x75,0x72,0x9,0x4d,0x61,0x6c,0x61, - 0x79,0x73,0x69,0x61,0x20,0x28,0x70,0x65,0x6e,0x69,0x6e,0x73,0x75,0x6c,0x61,0x29, - 0xa,0x4d,0x59,0x9,0x2b,0x30,0x31,0x33,0x33,0x2b,0x31,0x31,0x30,0x32,0x30,0x9, - 0x41,0x73,0x69,0x61,0x2f,0x4b,0x75,0x63,0x68,0x69,0x6e,0x67,0x9,0x53,0x61,0x62, - 0x61,0x68,0x2c,0x20,0x53,0x61,0x72,0x61,0x77,0x61,0x6b,0xa,0x4d,0x5a,0x9,0x2d, - 0x32,0x35,0x35,0x38,0x2b,0x30,0x33,0x32,0x33,0x35,0x9,0x41,0x66,0x72,0x69,0x63, - 0x61,0x2f,0x4d,0x61,0x70,0x75,0x74,0x6f,0xa,0x4e,0x41,0x9,0x2d,0x32,0x32,0x33, - 0x34,0x2b,0x30,0x31,0x37,0x30,0x36,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f,0x57, - 0x69,0x6e,0x64,0x68,0x6f,0x65,0x6b,0xa,0x4e,0x43,0x9,0x2d,0x32,0x32,0x31,0x36, - 0x2b,0x31,0x36,0x36,0x32,0x37,0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x2f,0x4e, - 0x6f,0x75,0x6d,0x65,0x61,0xa,0x4e,0x45,0x9,0x2b,0x31,0x33,0x33,0x31,0x2b,0x30, - 0x30,0x32,0x30,0x37,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f,0x4e,0x69,0x61,0x6d, - 0x65,0x79,0xa,0x4e,0x46,0x9,0x2d,0x32,0x39,0x30,0x33,0x2b,0x31,0x36,0x37,0x35, - 0x38,0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x2f,0x4e,0x6f,0x72,0x66,0x6f,0x6c, - 0x6b,0xa,0x4e,0x47,0x9,0x2b,0x30,0x36,0x32,0x37,0x2b,0x30,0x30,0x33,0x32,0x34, - 0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f,0x4c,0x61,0x67,0x6f,0x73,0xa,0x4e,0x49, - 0x9,0x2b,0x31,0x32,0x30,0x39,0x2d,0x30,0x38,0x36,0x31,0x37,0x9,0x41,0x6d,0x65, - 0x72,0x69,0x63,0x61,0x2f,0x4d,0x61,0x6e,0x61,0x67,0x75,0x61,0xa,0x4e,0x4c,0x9, - 0x2b,0x35,0x32,0x32,0x32,0x2b,0x30,0x30,0x34,0x35,0x34,0x9,0x45,0x75,0x72,0x6f, - 0x70,0x65,0x2f,0x41,0x6d,0x73,0x74,0x65,0x72,0x64,0x61,0x6d,0xa,0x4e,0x4f,0x9, - 0x2b,0x35,0x39,0x35,0x35,0x2b,0x30,0x31,0x30,0x34,0x35,0x9,0x45,0x75,0x72,0x6f, - 0x70,0x65,0x2f,0x4f,0x73,0x6c,0x6f,0xa,0x4e,0x50,0x9,0x2b,0x32,0x37,0x34,0x33, - 0x2b,0x30,0x38,0x35,0x31,0x39,0x9,0x41,0x73,0x69,0x61,0x2f,0x4b,0x61,0x74,0x68, - 0x6d,0x61,0x6e,0x64,0x75,0xa,0x4e,0x52,0x9,0x2d,0x30,0x30,0x33,0x31,0x2b,0x31, - 0x36,0x36,0x35,0x35,0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x2f,0x4e,0x61,0x75, - 0x72,0x75,0xa,0x4e,0x55,0x9,0x2d,0x31,0x39,0x30,0x31,0x2d,0x31,0x36,0x39,0x35, - 0x35,0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x2f,0x4e,0x69,0x75,0x65,0xa,0x4e, - 0x5a,0x9,0x2d,0x33,0x36,0x35,0x32,0x2b,0x31,0x37,0x34,0x34,0x36,0x9,0x50,0x61, - 0x63,0x69,0x66,0x69,0x63,0x2f,0x41,0x75,0x63,0x6b,0x6c,0x61,0x6e,0x64,0x9,0x4e, - 0x65,0x77,0x20,0x5a,0x65,0x61,0x6c,0x61,0x6e,0x64,0x20,0x28,0x6d,0x6f,0x73,0x74, - 0x20,0x61,0x72,0x65,0x61,0x73,0x29,0xa,0x4e,0x5a,0x9,0x2d,0x34,0x33,0x35,0x37, - 0x2d,0x31,0x37,0x36,0x33,0x33,0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x2f,0x43, - 0x68,0x61,0x74,0x68,0x61,0x6d,0x9,0x43,0x68,0x61,0x74,0x68,0x61,0x6d,0x20,0x49, - 0x73,0x6c,0x61,0x6e,0x64,0x73,0xa,0x4f,0x4d,0x9,0x2b,0x32,0x33,0x33,0x36,0x2b, - 0x30,0x35,0x38,0x33,0x35,0x9,0x41,0x73,0x69,0x61,0x2f,0x4d,0x75,0x73,0x63,0x61, - 0x74,0xa,0x50,0x41,0x9,0x2b,0x30,0x38,0x35,0x38,0x2d,0x30,0x37,0x39,0x33,0x32, - 0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x50,0x61,0x6e,0x61,0x6d,0x61,0xa, - 0x50,0x45,0x9,0x2d,0x31,0x32,0x30,0x33,0x2d,0x30,0x37,0x37,0x30,0x33,0x9,0x41, - 0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x4c,0x69,0x6d,0x61,0xa,0x50,0x46,0x9,0x2d, - 0x31,0x37,0x33,0x32,0x2d,0x31,0x34,0x39,0x33,0x34,0x9,0x50,0x61,0x63,0x69,0x66, - 0x69,0x63,0x2f,0x54,0x61,0x68,0x69,0x74,0x69,0x9,0x53,0x6f,0x63,0x69,0x65,0x74, - 0x79,0x20,0x49,0x73,0x6c,0x61,0x6e,0x64,0x73,0xa,0x50,0x46,0x9,0x2d,0x30,0x39, - 0x30,0x30,0x2d,0x31,0x33,0x39,0x33,0x30,0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63, - 0x2f,0x4d,0x61,0x72,0x71,0x75,0x65,0x73,0x61,0x73,0x9,0x4d,0x61,0x72,0x71,0x75, - 0x65,0x73,0x61,0x73,0x20,0x49,0x73,0x6c,0x61,0x6e,0x64,0x73,0xa,0x50,0x46,0x9, - 0x2d,0x32,0x33,0x30,0x38,0x2d,0x31,0x33,0x34,0x35,0x37,0x9,0x50,0x61,0x63,0x69, - 0x66,0x69,0x63,0x2f,0x47,0x61,0x6d,0x62,0x69,0x65,0x72,0x9,0x47,0x61,0x6d,0x62, - 0x69,0x65,0x72,0x20,0x49,0x73,0x6c,0x61,0x6e,0x64,0x73,0xa,0x50,0x47,0x9,0x2d, - 0x30,0x39,0x33,0x30,0x2b,0x31,0x34,0x37,0x31,0x30,0x9,0x50,0x61,0x63,0x69,0x66, - 0x69,0x63,0x2f,0x50,0x6f,0x72,0x74,0x5f,0x4d,0x6f,0x72,0x65,0x73,0x62,0x79,0x9, - 0x50,0x61,0x70,0x75,0x61,0x20,0x4e,0x65,0x77,0x20,0x47,0x75,0x69,0x6e,0x65,0x61, - 0x20,0x28,0x6d,0x6f,0x73,0x74,0x20,0x61,0x72,0x65,0x61,0x73,0x29,0xa,0x50,0x47, - 0x9,0x2d,0x30,0x36,0x31,0x33,0x2b,0x31,0x35,0x35,0x33,0x34,0x9,0x50,0x61,0x63, - 0x69,0x66,0x69,0x63,0x2f,0x42,0x6f,0x75,0x67,0x61,0x69,0x6e,0x76,0x69,0x6c,0x6c, - 0x65,0x9,0x42,0x6f,0x75,0x67,0x61,0x69,0x6e,0x76,0x69,0x6c,0x6c,0x65,0xa,0x50, - 0x48,0x9,0x2b,0x31,0x34,0x33,0x35,0x2b,0x31,0x32,0x31,0x30,0x30,0x9,0x41,0x73, - 0x69,0x61,0x2f,0x4d,0x61,0x6e,0x69,0x6c,0x61,0xa,0x50,0x4b,0x9,0x2b,0x32,0x34, - 0x35,0x32,0x2b,0x30,0x36,0x37,0x30,0x33,0x9,0x41,0x73,0x69,0x61,0x2f,0x4b,0x61, - 0x72,0x61,0x63,0x68,0x69,0xa,0x50,0x4c,0x9,0x2b,0x35,0x32,0x31,0x35,0x2b,0x30, - 0x32,0x31,0x30,0x30,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x57,0x61,0x72,0x73, - 0x61,0x77,0xa,0x50,0x4d,0x9,0x2b,0x34,0x37,0x30,0x33,0x2d,0x30,0x35,0x36,0x32, - 0x30,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x4d,0x69,0x71,0x75,0x65,0x6c, - 0x6f,0x6e,0xa,0x50,0x4e,0x9,0x2d,0x32,0x35,0x30,0x34,0x2d,0x31,0x33,0x30,0x30, - 0x35,0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x2f,0x50,0x69,0x74,0x63,0x61,0x69, - 0x72,0x6e,0xa,0x50,0x52,0x9,0x2b,0x31,0x38,0x32,0x38,0x30,0x36,0x2d,0x30,0x36, - 0x36,0x30,0x36,0x32,0x32,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x50,0x75, - 0x65,0x72,0x74,0x6f,0x5f,0x52,0x69,0x63,0x6f,0xa,0x50,0x53,0x9,0x2b,0x33,0x31, - 0x33,0x30,0x2b,0x30,0x33,0x34,0x32,0x38,0x9,0x41,0x73,0x69,0x61,0x2f,0x47,0x61, - 0x7a,0x61,0x9,0x47,0x61,0x7a,0x61,0x20,0x53,0x74,0x72,0x69,0x70,0xa,0x50,0x53, - 0x9,0x2b,0x33,0x31,0x33,0x32,0x30,0x30,0x2b,0x30,0x33,0x35,0x30,0x35,0x34,0x32, - 0x9,0x41,0x73,0x69,0x61,0x2f,0x48,0x65,0x62,0x72,0x6f,0x6e,0x9,0x57,0x65,0x73, - 0x74,0x20,0x42,0x61,0x6e,0x6b,0xa,0x50,0x54,0x9,0x2b,0x33,0x38,0x34,0x33,0x2d, - 0x30,0x30,0x39,0x30,0x38,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x4c,0x69,0x73, - 0x62,0x6f,0x6e,0x9,0x50,0x6f,0x72,0x74,0x75,0x67,0x61,0x6c,0x20,0x28,0x6d,0x61, - 0x69,0x6e,0x6c,0x61,0x6e,0x64,0x29,0xa,0x50,0x54,0x9,0x2b,0x33,0x32,0x33,0x38, - 0x2d,0x30,0x31,0x36,0x35,0x34,0x9,0x41,0x74,0x6c,0x61,0x6e,0x74,0x69,0x63,0x2f, - 0x4d,0x61,0x64,0x65,0x69,0x72,0x61,0x9,0x4d,0x61,0x64,0x65,0x69,0x72,0x61,0x20, - 0x49,0x73,0x6c,0x61,0x6e,0x64,0x73,0xa,0x50,0x54,0x9,0x2b,0x33,0x37,0x34,0x34, - 0x2d,0x30,0x32,0x35,0x34,0x30,0x9,0x41,0x74,0x6c,0x61,0x6e,0x74,0x69,0x63,0x2f, - 0x41,0x7a,0x6f,0x72,0x65,0x73,0x9,0x41,0x7a,0x6f,0x72,0x65,0x73,0xa,0x50,0x57, - 0x9,0x2b,0x30,0x37,0x32,0x30,0x2b,0x31,0x33,0x34,0x32,0x39,0x9,0x50,0x61,0x63, - 0x69,0x66,0x69,0x63,0x2f,0x50,0x61,0x6c,0x61,0x75,0xa,0x50,0x59,0x9,0x2d,0x32, - 0x35,0x31,0x36,0x2d,0x30,0x35,0x37,0x34,0x30,0x9,0x41,0x6d,0x65,0x72,0x69,0x63, - 0x61,0x2f,0x41,0x73,0x75,0x6e,0x63,0x69,0x6f,0x6e,0xa,0x51,0x41,0x9,0x2b,0x32, - 0x35,0x31,0x37,0x2b,0x30,0x35,0x31,0x33,0x32,0x9,0x41,0x73,0x69,0x61,0x2f,0x51, - 0x61,0x74,0x61,0x72,0xa,0x52,0x45,0x9,0x2d,0x32,0x30,0x35,0x32,0x2b,0x30,0x35, - 0x35,0x32,0x38,0x9,0x49,0x6e,0x64,0x69,0x61,0x6e,0x2f,0x52,0x65,0x75,0x6e,0x69, - 0x6f,0x6e,0xa,0x52,0x4f,0x9,0x2b,0x34,0x34,0x32,0x36,0x2b,0x30,0x32,0x36,0x30, - 0x36,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x42,0x75,0x63,0x68,0x61,0x72,0x65, - 0x73,0x74,0xa,0x52,0x53,0x9,0x2b,0x34,0x34,0x35,0x30,0x2b,0x30,0x32,0x30,0x33, - 0x30,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x42,0x65,0x6c,0x67,0x72,0x61,0x64, - 0x65,0xa,0x52,0x55,0x9,0x2b,0x35,0x34,0x34,0x33,0x2b,0x30,0x32,0x30,0x33,0x30, - 0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x4b,0x61,0x6c,0x69,0x6e,0x69,0x6e,0x67, - 0x72,0x61,0x64,0x9,0x4d,0x53,0x4b,0x2d,0x30,0x31,0x20,0x2d,0x20,0x4b,0x61,0x6c, - 0x69,0x6e,0x69,0x6e,0x67,0x72,0x61,0x64,0xa,0x52,0x55,0x9,0x2b,0x35,0x35,0x34, - 0x35,0x32,0x31,0x2b,0x30,0x33,0x37,0x33,0x37,0x30,0x34,0x9,0x45,0x75,0x72,0x6f, - 0x70,0x65,0x2f,0x4d,0x6f,0x73,0x63,0x6f,0x77,0x9,0x4d,0x53,0x4b,0x2b,0x30,0x30, - 0x20,0x2d,0x20,0x4d,0x6f,0x73,0x63,0x6f,0x77,0x20,0x61,0x72,0x65,0x61,0xa,0x52, - 0x55,0x9,0x2b,0x34,0x34,0x35,0x37,0x2b,0x30,0x33,0x34,0x30,0x36,0x9,0x45,0x75, - 0x72,0x6f,0x70,0x65,0x2f,0x53,0x69,0x6d,0x66,0x65,0x72,0x6f,0x70,0x6f,0x6c,0x9, - 0x4d,0x53,0x4b,0x2b,0x30,0x30,0x20,0x2d,0x20,0x43,0x72,0x69,0x6d,0x65,0x61,0xa, - 0x52,0x55,0x9,0x2b,0x34,0x38,0x34,0x34,0x2b,0x30,0x34,0x34,0x32,0x35,0x9,0x45, - 0x75,0x72,0x6f,0x70,0x65,0x2f,0x56,0x6f,0x6c,0x67,0x6f,0x67,0x72,0x61,0x64,0x9, - 0x4d,0x53,0x4b,0x2b,0x30,0x30,0x20,0x2d,0x20,0x56,0x6f,0x6c,0x67,0x6f,0x67,0x72, - 0x61,0x64,0xa,0x52,0x55,0x9,0x2b,0x35,0x38,0x33,0x36,0x2b,0x30,0x34,0x39,0x33, - 0x39,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x4b,0x69,0x72,0x6f,0x76,0x9,0x4d, - 0x53,0x4b,0x2b,0x30,0x30,0x20,0x2d,0x20,0x4b,0x69,0x72,0x6f,0x76,0xa,0x52,0x55, - 0x9,0x2b,0x34,0x36,0x32,0x31,0x2b,0x30,0x34,0x38,0x30,0x33,0x9,0x45,0x75,0x72, - 0x6f,0x70,0x65,0x2f,0x41,0x73,0x74,0x72,0x61,0x6b,0x68,0x61,0x6e,0x9,0x4d,0x53, - 0x4b,0x2b,0x30,0x31,0x20,0x2d,0x20,0x41,0x73,0x74,0x72,0x61,0x6b,0x68,0x61,0x6e, - 0xa,0x52,0x55,0x9,0x2b,0x35,0x31,0x33,0x34,0x2b,0x30,0x34,0x36,0x30,0x32,0x9, - 0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x53,0x61,0x72,0x61,0x74,0x6f,0x76,0x9,0x4d, - 0x53,0x4b,0x2b,0x30,0x31,0x20,0x2d,0x20,0x53,0x61,0x72,0x61,0x74,0x6f,0x76,0xa, - 0x52,0x55,0x9,0x2b,0x35,0x34,0x32,0x30,0x2b,0x30,0x34,0x38,0x32,0x34,0x9,0x45, - 0x75,0x72,0x6f,0x70,0x65,0x2f,0x55,0x6c,0x79,0x61,0x6e,0x6f,0x76,0x73,0x6b,0x9, - 0x4d,0x53,0x4b,0x2b,0x30,0x31,0x20,0x2d,0x20,0x55,0x6c,0x79,0x61,0x6e,0x6f,0x76, - 0x73,0x6b,0xa,0x52,0x55,0x9,0x2b,0x35,0x33,0x31,0x32,0x2b,0x30,0x35,0x30,0x30, - 0x39,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x53,0x61,0x6d,0x61,0x72,0x61,0x9, - 0x4d,0x53,0x4b,0x2b,0x30,0x31,0x20,0x2d,0x20,0x53,0x61,0x6d,0x61,0x72,0x61,0x2c, - 0x20,0x55,0x64,0x6d,0x75,0x72,0x74,0x69,0x61,0xa,0x52,0x55,0x9,0x2b,0x35,0x36, - 0x35,0x31,0x2b,0x30,0x36,0x30,0x33,0x36,0x9,0x41,0x73,0x69,0x61,0x2f,0x59,0x65, - 0x6b,0x61,0x74,0x65,0x72,0x69,0x6e,0x62,0x75,0x72,0x67,0x9,0x4d,0x53,0x4b,0x2b, - 0x30,0x32,0x20,0x2d,0x20,0x55,0x72,0x61,0x6c,0x73,0xa,0x52,0x55,0x9,0x2b,0x35, - 0x35,0x30,0x30,0x2b,0x30,0x37,0x33,0x32,0x34,0x9,0x41,0x73,0x69,0x61,0x2f,0x4f, - 0x6d,0x73,0x6b,0x9,0x4d,0x53,0x4b,0x2b,0x30,0x33,0x20,0x2d,0x20,0x4f,0x6d,0x73, - 0x6b,0xa,0x52,0x55,0x9,0x2b,0x35,0x35,0x30,0x32,0x2b,0x30,0x38,0x32,0x35,0x35, - 0x9,0x41,0x73,0x69,0x61,0x2f,0x4e,0x6f,0x76,0x6f,0x73,0x69,0x62,0x69,0x72,0x73, - 0x6b,0x9,0x4d,0x53,0x4b,0x2b,0x30,0x34,0x20,0x2d,0x20,0x4e,0x6f,0x76,0x6f,0x73, - 0x69,0x62,0x69,0x72,0x73,0x6b,0xa,0x52,0x55,0x9,0x2b,0x35,0x33,0x32,0x32,0x2b, - 0x30,0x38,0x33,0x34,0x35,0x9,0x41,0x73,0x69,0x61,0x2f,0x42,0x61,0x72,0x6e,0x61, - 0x75,0x6c,0x9,0x4d,0x53,0x4b,0x2b,0x30,0x34,0x20,0x2d,0x20,0x41,0x6c,0x74,0x61, - 0x69,0xa,0x52,0x55,0x9,0x2b,0x35,0x36,0x33,0x30,0x2b,0x30,0x38,0x34,0x35,0x38, - 0x9,0x41,0x73,0x69,0x61,0x2f,0x54,0x6f,0x6d,0x73,0x6b,0x9,0x4d,0x53,0x4b,0x2b, - 0x30,0x34,0x20,0x2d,0x20,0x54,0x6f,0x6d,0x73,0x6b,0xa,0x52,0x55,0x9,0x2b,0x35, - 0x33,0x34,0x35,0x2b,0x30,0x38,0x37,0x30,0x37,0x9,0x41,0x73,0x69,0x61,0x2f,0x4e, - 0x6f,0x76,0x6f,0x6b,0x75,0x7a,0x6e,0x65,0x74,0x73,0x6b,0x9,0x4d,0x53,0x4b,0x2b, - 0x30,0x34,0x20,0x2d,0x20,0x4b,0x65,0x6d,0x65,0x72,0x6f,0x76,0x6f,0xa,0x52,0x55, - 0x9,0x2b,0x35,0x36,0x30,0x31,0x2b,0x30,0x39,0x32,0x35,0x30,0x9,0x41,0x73,0x69, - 0x61,0x2f,0x4b,0x72,0x61,0x73,0x6e,0x6f,0x79,0x61,0x72,0x73,0x6b,0x9,0x4d,0x53, - 0x4b,0x2b,0x30,0x34,0x20,0x2d,0x20,0x4b,0x72,0x61,0x73,0x6e,0x6f,0x79,0x61,0x72, - 0x73,0x6b,0x20,0x61,0x72,0x65,0x61,0xa,0x52,0x55,0x9,0x2b,0x35,0x32,0x31,0x36, - 0x2b,0x31,0x30,0x34,0x32,0x30,0x9,0x41,0x73,0x69,0x61,0x2f,0x49,0x72,0x6b,0x75, - 0x74,0x73,0x6b,0x9,0x4d,0x53,0x4b,0x2b,0x30,0x35,0x20,0x2d,0x20,0x49,0x72,0x6b, - 0x75,0x74,0x73,0x6b,0x2c,0x20,0x42,0x75,0x72,0x79,0x61,0x74,0x69,0x61,0xa,0x52, - 0x55,0x9,0x2b,0x35,0x32,0x30,0x33,0x2b,0x31,0x31,0x33,0x32,0x38,0x9,0x41,0x73, - 0x69,0x61,0x2f,0x43,0x68,0x69,0x74,0x61,0x9,0x4d,0x53,0x4b,0x2b,0x30,0x36,0x20, - 0x2d,0x20,0x5a,0x61,0x62,0x61,0x79,0x6b,0x61,0x6c,0x73,0x6b,0x79,0xa,0x52,0x55, - 0x9,0x2b,0x36,0x32,0x30,0x30,0x2b,0x31,0x32,0x39,0x34,0x30,0x9,0x41,0x73,0x69, - 0x61,0x2f,0x59,0x61,0x6b,0x75,0x74,0x73,0x6b,0x9,0x4d,0x53,0x4b,0x2b,0x30,0x36, - 0x20,0x2d,0x20,0x4c,0x65,0x6e,0x61,0x20,0x52,0x69,0x76,0x65,0x72,0xa,0x52,0x55, - 0x9,0x2b,0x36,0x32,0x33,0x39,0x32,0x33,0x2b,0x31,0x33,0x35,0x33,0x33,0x31,0x34, - 0x9,0x41,0x73,0x69,0x61,0x2f,0x4b,0x68,0x61,0x6e,0x64,0x79,0x67,0x61,0x9,0x4d, - 0x53,0x4b,0x2b,0x30,0x36,0x20,0x2d,0x20,0x54,0x6f,0x6d,0x70,0x6f,0x6e,0x73,0x6b, - 0x79,0x2c,0x20,0x55,0x73,0x74,0x2d,0x4d,0x61,0x79,0x73,0x6b,0x79,0xa,0x52,0x55, - 0x9,0x2b,0x34,0x33,0x31,0x30,0x2b,0x31,0x33,0x31,0x35,0x36,0x9,0x41,0x73,0x69, - 0x61,0x2f,0x56,0x6c,0x61,0x64,0x69,0x76,0x6f,0x73,0x74,0x6f,0x6b,0x9,0x4d,0x53, - 0x4b,0x2b,0x30,0x37,0x20,0x2d,0x20,0x41,0x6d,0x75,0x72,0x20,0x52,0x69,0x76,0x65, - 0x72,0xa,0x52,0x55,0x9,0x2b,0x36,0x34,0x33,0x33,0x33,0x37,0x2b,0x31,0x34,0x33, - 0x31,0x33,0x33,0x36,0x9,0x41,0x73,0x69,0x61,0x2f,0x55,0x73,0x74,0x2d,0x4e,0x65, - 0x72,0x61,0x9,0x4d,0x53,0x4b,0x2b,0x30,0x37,0x20,0x2d,0x20,0x4f,0x79,0x6d,0x79, - 0x61,0x6b,0x6f,0x6e,0x73,0x6b,0x79,0xa,0x52,0x55,0x9,0x2b,0x35,0x39,0x33,0x34, - 0x2b,0x31,0x35,0x30,0x34,0x38,0x9,0x41,0x73,0x69,0x61,0x2f,0x4d,0x61,0x67,0x61, - 0x64,0x61,0x6e,0x9,0x4d,0x53,0x4b,0x2b,0x30,0x38,0x20,0x2d,0x20,0x4d,0x61,0x67, - 0x61,0x64,0x61,0x6e,0xa,0x52,0x55,0x9,0x2b,0x34,0x36,0x35,0x38,0x2b,0x31,0x34, - 0x32,0x34,0x32,0x9,0x41,0x73,0x69,0x61,0x2f,0x53,0x61,0x6b,0x68,0x61,0x6c,0x69, - 0x6e,0x9,0x4d,0x53,0x4b,0x2b,0x30,0x38,0x20,0x2d,0x20,0x53,0x61,0x6b,0x68,0x61, - 0x6c,0x69,0x6e,0x20,0x49,0x73,0x6c,0x61,0x6e,0x64,0xa,0x52,0x55,0x9,0x2b,0x36, - 0x37,0x32,0x38,0x2b,0x31,0x35,0x33,0x34,0x33,0x9,0x41,0x73,0x69,0x61,0x2f,0x53, - 0x72,0x65,0x64,0x6e,0x65,0x6b,0x6f,0x6c,0x79,0x6d,0x73,0x6b,0x9,0x4d,0x53,0x4b, - 0x2b,0x30,0x38,0x20,0x2d,0x20,0x53,0x61,0x6b,0x68,0x61,0x20,0x28,0x45,0x29,0x3b, - 0x20,0x4e,0x6f,0x72,0x74,0x68,0x20,0x4b,0x75,0x72,0x69,0x6c,0x20,0x49,0x73,0xa, - 0x52,0x55,0x9,0x2b,0x35,0x33,0x30,0x31,0x2b,0x31,0x35,0x38,0x33,0x39,0x9,0x41, - 0x73,0x69,0x61,0x2f,0x4b,0x61,0x6d,0x63,0x68,0x61,0x74,0x6b,0x61,0x9,0x4d,0x53, - 0x4b,0x2b,0x30,0x39,0x20,0x2d,0x20,0x4b,0x61,0x6d,0x63,0x68,0x61,0x74,0x6b,0x61, - 0xa,0x52,0x55,0x9,0x2b,0x36,0x34,0x34,0x35,0x2b,0x31,0x37,0x37,0x32,0x39,0x9, - 0x41,0x73,0x69,0x61,0x2f,0x41,0x6e,0x61,0x64,0x79,0x72,0x9,0x4d,0x53,0x4b,0x2b, - 0x30,0x39,0x20,0x2d,0x20,0x42,0x65,0x72,0x69,0x6e,0x67,0x20,0x53,0x65,0x61,0xa, - 0x52,0x57,0x9,0x2d,0x30,0x31,0x35,0x37,0x2b,0x30,0x33,0x30,0x30,0x34,0x9,0x41, - 0x66,0x72,0x69,0x63,0x61,0x2f,0x4b,0x69,0x67,0x61,0x6c,0x69,0xa,0x53,0x41,0x9, - 0x2b,0x32,0x34,0x33,0x38,0x2b,0x30,0x34,0x36,0x34,0x33,0x9,0x41,0x73,0x69,0x61, - 0x2f,0x52,0x69,0x79,0x61,0x64,0x68,0xa,0x53,0x42,0x9,0x2d,0x30,0x39,0x33,0x32, - 0x2b,0x31,0x36,0x30,0x31,0x32,0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x2f,0x47, - 0x75,0x61,0x64,0x61,0x6c,0x63,0x61,0x6e,0x61,0x6c,0xa,0x53,0x43,0x9,0x2d,0x30, - 0x34,0x34,0x30,0x2b,0x30,0x35,0x35,0x32,0x38,0x9,0x49,0x6e,0x64,0x69,0x61,0x6e, - 0x2f,0x4d,0x61,0x68,0x65,0xa,0x53,0x44,0x9,0x2b,0x31,0x35,0x33,0x36,0x2b,0x30, - 0x33,0x32,0x33,0x32,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f,0x4b,0x68,0x61,0x72, - 0x74,0x6f,0x75,0x6d,0xa,0x53,0x45,0x9,0x2b,0x35,0x39,0x32,0x30,0x2b,0x30,0x31, - 0x38,0x30,0x33,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x53,0x74,0x6f,0x63,0x6b, - 0x68,0x6f,0x6c,0x6d,0xa,0x53,0x47,0x9,0x2b,0x30,0x31,0x31,0x37,0x2b,0x31,0x30, - 0x33,0x35,0x31,0x9,0x41,0x73,0x69,0x61,0x2f,0x53,0x69,0x6e,0x67,0x61,0x70,0x6f, - 0x72,0x65,0xa,0x53,0x48,0x9,0x2d,0x31,0x35,0x35,0x35,0x2d,0x30,0x30,0x35,0x34, - 0x32,0x9,0x41,0x74,0x6c,0x61,0x6e,0x74,0x69,0x63,0x2f,0x53,0x74,0x5f,0x48,0x65, - 0x6c,0x65,0x6e,0x61,0xa,0x53,0x49,0x9,0x2b,0x34,0x36,0x30,0x33,0x2b,0x30,0x31, - 0x34,0x33,0x31,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x4c,0x6a,0x75,0x62,0x6c, - 0x6a,0x61,0x6e,0x61,0xa,0x53,0x4a,0x9,0x2b,0x37,0x38,0x30,0x30,0x2b,0x30,0x31, - 0x36,0x30,0x30,0x9,0x41,0x72,0x63,0x74,0x69,0x63,0x2f,0x4c,0x6f,0x6e,0x67,0x79, - 0x65,0x61,0x72,0x62,0x79,0x65,0x6e,0xa,0x53,0x4b,0x9,0x2b,0x34,0x38,0x30,0x39, - 0x2b,0x30,0x31,0x37,0x30,0x37,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x42,0x72, - 0x61,0x74,0x69,0x73,0x6c,0x61,0x76,0x61,0xa,0x53,0x4c,0x9,0x2b,0x30,0x38,0x33, - 0x30,0x2d,0x30,0x31,0x33,0x31,0x35,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f,0x46, - 0x72,0x65,0x65,0x74,0x6f,0x77,0x6e,0xa,0x53,0x4d,0x9,0x2b,0x34,0x33,0x35,0x35, - 0x2b,0x30,0x31,0x32,0x32,0x38,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x53,0x61, - 0x6e,0x5f,0x4d,0x61,0x72,0x69,0x6e,0x6f,0xa,0x53,0x4e,0x9,0x2b,0x31,0x34,0x34, - 0x30,0x2d,0x30,0x31,0x37,0x32,0x36,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f,0x44, - 0x61,0x6b,0x61,0x72,0xa,0x53,0x4f,0x9,0x2b,0x30,0x32,0x30,0x34,0x2b,0x30,0x34, - 0x35,0x32,0x32,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f,0x4d,0x6f,0x67,0x61,0x64, - 0x69,0x73,0x68,0x75,0xa,0x53,0x52,0x9,0x2b,0x30,0x35,0x35,0x30,0x2d,0x30,0x35, - 0x35,0x31,0x30,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x50,0x61,0x72,0x61, - 0x6d,0x61,0x72,0x69,0x62,0x6f,0xa,0x53,0x53,0x9,0x2b,0x30,0x34,0x35,0x31,0x2b, - 0x30,0x33,0x31,0x33,0x36,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f,0x4a,0x75,0x62, - 0x61,0xa,0x53,0x54,0x9,0x2b,0x30,0x30,0x32,0x30,0x2b,0x30,0x30,0x36,0x34,0x34, - 0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f,0x53,0x61,0x6f,0x5f,0x54,0x6f,0x6d,0x65, - 0xa,0x53,0x56,0x9,0x2b,0x31,0x33,0x34,0x32,0x2d,0x30,0x38,0x39,0x31,0x32,0x9, - 0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x45,0x6c,0x5f,0x53,0x61,0x6c,0x76,0x61, - 0x64,0x6f,0x72,0xa,0x53,0x58,0x9,0x2b,0x31,0x38,0x30,0x33,0x30,0x35,0x2d,0x30, - 0x36,0x33,0x30,0x32,0x35,0x30,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x4c, - 0x6f,0x77,0x65,0x72,0x5f,0x50,0x72,0x69,0x6e,0x63,0x65,0x73,0xa,0x53,0x59,0x9, - 0x2b,0x33,0x33,0x33,0x30,0x2b,0x30,0x33,0x36,0x31,0x38,0x9,0x41,0x73,0x69,0x61, - 0x2f,0x44,0x61,0x6d,0x61,0x73,0x63,0x75,0x73,0xa,0x53,0x5a,0x9,0x2d,0x32,0x36, - 0x31,0x38,0x2b,0x30,0x33,0x31,0x30,0x36,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f, - 0x4d,0x62,0x61,0x62,0x61,0x6e,0x65,0xa,0x54,0x43,0x9,0x2b,0x32,0x31,0x32,0x38, - 0x2d,0x30,0x37,0x31,0x30,0x38,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x47, - 0x72,0x61,0x6e,0x64,0x5f,0x54,0x75,0x72,0x6b,0xa,0x54,0x44,0x9,0x2b,0x31,0x32, - 0x30,0x37,0x2b,0x30,0x31,0x35,0x30,0x33,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f, - 0x4e,0x64,0x6a,0x61,0x6d,0x65,0x6e,0x61,0xa,0x54,0x46,0x9,0x2d,0x34,0x39,0x32, - 0x31,0x31,0x30,0x2b,0x30,0x37,0x30,0x31,0x33,0x30,0x33,0x9,0x49,0x6e,0x64,0x69, - 0x61,0x6e,0x2f,0x4b,0x65,0x72,0x67,0x75,0x65,0x6c,0x65,0x6e,0xa,0x54,0x47,0x9, - 0x2b,0x30,0x36,0x30,0x38,0x2b,0x30,0x30,0x31,0x31,0x33,0x9,0x41,0x66,0x72,0x69, - 0x63,0x61,0x2f,0x4c,0x6f,0x6d,0x65,0xa,0x54,0x48,0x9,0x2b,0x31,0x33,0x34,0x35, - 0x2b,0x31,0x30,0x30,0x33,0x31,0x9,0x41,0x73,0x69,0x61,0x2f,0x42,0x61,0x6e,0x67, - 0x6b,0x6f,0x6b,0xa,0x54,0x4a,0x9,0x2b,0x33,0x38,0x33,0x35,0x2b,0x30,0x36,0x38, - 0x34,0x38,0x9,0x41,0x73,0x69,0x61,0x2f,0x44,0x75,0x73,0x68,0x61,0x6e,0x62,0x65, - 0xa,0x54,0x4b,0x9,0x2d,0x30,0x39,0x32,0x32,0x2d,0x31,0x37,0x31,0x31,0x34,0x9, - 0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x2f,0x46,0x61,0x6b,0x61,0x6f,0x66,0x6f,0xa, - 0x54,0x4c,0x9,0x2d,0x30,0x38,0x33,0x33,0x2b,0x31,0x32,0x35,0x33,0x35,0x9,0x41, - 0x73,0x69,0x61,0x2f,0x44,0x69,0x6c,0x69,0xa,0x54,0x4d,0x9,0x2b,0x33,0x37,0x35, - 0x37,0x2b,0x30,0x35,0x38,0x32,0x33,0x9,0x41,0x73,0x69,0x61,0x2f,0x41,0x73,0x68, - 0x67,0x61,0x62,0x61,0x74,0xa,0x54,0x4e,0x9,0x2b,0x33,0x36,0x34,0x38,0x2b,0x30, - 0x31,0x30,0x31,0x31,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f,0x54,0x75,0x6e,0x69, - 0x73,0xa,0x54,0x4f,0x9,0x2d,0x32,0x31,0x31,0x30,0x2d,0x31,0x37,0x35,0x31,0x30, - 0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x2f,0x54,0x6f,0x6e,0x67,0x61,0x74,0x61, - 0x70,0x75,0xa,0x54,0x52,0x9,0x2b,0x34,0x31,0x30,0x31,0x2b,0x30,0x32,0x38,0x35, - 0x38,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x49,0x73,0x74,0x61,0x6e,0x62,0x75, - 0x6c,0xa,0x54,0x54,0x9,0x2b,0x31,0x30,0x33,0x39,0x2d,0x30,0x36,0x31,0x33,0x31, - 0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x50,0x6f,0x72,0x74,0x5f,0x6f,0x66, - 0x5f,0x53,0x70,0x61,0x69,0x6e,0xa,0x54,0x56,0x9,0x2d,0x30,0x38,0x33,0x31,0x2b, - 0x31,0x37,0x39,0x31,0x33,0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x2f,0x46,0x75, - 0x6e,0x61,0x66,0x75,0x74,0x69,0xa,0x54,0x57,0x9,0x2b,0x32,0x35,0x30,0x33,0x2b, - 0x31,0x32,0x31,0x33,0x30,0x9,0x41,0x73,0x69,0x61,0x2f,0x54,0x61,0x69,0x70,0x65, - 0x69,0xa,0x54,0x5a,0x9,0x2d,0x30,0x36,0x34,0x38,0x2b,0x30,0x33,0x39,0x31,0x37, - 0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f,0x44,0x61,0x72,0x5f,0x65,0x73,0x5f,0x53, - 0x61,0x6c,0x61,0x61,0x6d,0xa,0x55,0x41,0x9,0x2b,0x35,0x30,0x32,0x36,0x2b,0x30, - 0x33,0x30,0x33,0x31,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x4b,0x69,0x65,0x76, - 0x9,0x55,0x6b,0x72,0x61,0x69,0x6e,0x65,0x20,0x28,0x6d,0x6f,0x73,0x74,0x20,0x61, - 0x72,0x65,0x61,0x73,0x29,0xa,0x55,0x41,0x9,0x2b,0x34,0x38,0x33,0x37,0x2b,0x30, - 0x32,0x32,0x31,0x38,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x55,0x7a,0x68,0x67, - 0x6f,0x72,0x6f,0x64,0x9,0x52,0x75,0x74,0x68,0x65,0x6e,0x69,0x61,0xa,0x55,0x41, - 0x9,0x2b,0x34,0x37,0x35,0x30,0x2b,0x30,0x33,0x35,0x31,0x30,0x9,0x45,0x75,0x72, - 0x6f,0x70,0x65,0x2f,0x5a,0x61,0x70,0x6f,0x72,0x6f,0x7a,0x68,0x79,0x65,0x9,0x5a, - 0x61,0x70,0x6f,0x72,0x6f,0x7a,0x68,0x27,0x79,0x65,0x2f,0x5a,0x61,0x70,0x6f,0x72, - 0x69,0x7a,0x68,0x69,0x61,0x3b,0x20,0x4c,0x75,0x67,0x61,0x6e,0x73,0x6b,0x2f,0x4c, - 0x75,0x68,0x61,0x6e,0x73,0x6b,0x20,0x28,0x65,0x61,0x73,0x74,0x29,0xa,0x55,0x47, - 0x9,0x2b,0x30,0x30,0x31,0x39,0x2b,0x30,0x33,0x32,0x32,0x35,0x9,0x41,0x66,0x72, - 0x69,0x63,0x61,0x2f,0x4b,0x61,0x6d,0x70,0x61,0x6c,0x61,0xa,0x55,0x4d,0x9,0x2b, - 0x31,0x36,0x34,0x35,0x2d,0x31,0x36,0x39,0x33,0x31,0x9,0x50,0x61,0x63,0x69,0x66, - 0x69,0x63,0x2f,0x4a,0x6f,0x68,0x6e,0x73,0x74,0x6f,0x6e,0x9,0x4a,0x6f,0x68,0x6e, - 0x73,0x74,0x6f,0x6e,0x20,0x41,0x74,0x6f,0x6c,0x6c,0xa,0x55,0x4d,0x9,0x2b,0x32, - 0x38,0x31,0x33,0x2d,0x31,0x37,0x37,0x32,0x32,0x9,0x50,0x61,0x63,0x69,0x66,0x69, - 0x63,0x2f,0x4d,0x69,0x64,0x77,0x61,0x79,0x9,0x4d,0x69,0x64,0x77,0x61,0x79,0x20, - 0x49,0x73,0x6c,0x61,0x6e,0x64,0x73,0xa,0x55,0x4d,0x9,0x2b,0x31,0x39,0x31,0x37, - 0x2b,0x31,0x36,0x36,0x33,0x37,0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x2f,0x57, - 0x61,0x6b,0x65,0x9,0x57,0x61,0x6b,0x65,0x20,0x49,0x73,0x6c,0x61,0x6e,0x64,0xa, - 0x55,0x53,0x9,0x2b,0x34,0x30,0x34,0x32,0x35,0x31,0x2d,0x30,0x37,0x34,0x30,0x30, - 0x32,0x33,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x4e,0x65,0x77,0x5f,0x59, - 0x6f,0x72,0x6b,0x9,0x45,0x61,0x73,0x74,0x65,0x72,0x6e,0x20,0x28,0x6d,0x6f,0x73, - 0x74,0x20,0x61,0x72,0x65,0x61,0x73,0x29,0xa,0x55,0x53,0x9,0x2b,0x34,0x32,0x31, - 0x39,0x35,0x33,0x2d,0x30,0x38,0x33,0x30,0x32,0x34,0x35,0x9,0x41,0x6d,0x65,0x72, - 0x69,0x63,0x61,0x2f,0x44,0x65,0x74,0x72,0x6f,0x69,0x74,0x9,0x45,0x61,0x73,0x74, - 0x65,0x72,0x6e,0x20,0x2d,0x20,0x4d,0x49,0x20,0x28,0x6d,0x6f,0x73,0x74,0x20,0x61, - 0x72,0x65,0x61,0x73,0x29,0xa,0x55,0x53,0x9,0x2b,0x33,0x38,0x31,0x35,0x31,0x35, - 0x2d,0x30,0x38,0x35,0x34,0x35,0x33,0x34,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61, - 0x2f,0x4b,0x65,0x6e,0x74,0x75,0x63,0x6b,0x79,0x2f,0x4c,0x6f,0x75,0x69,0x73,0x76, - 0x69,0x6c,0x6c,0x65,0x9,0x45,0x61,0x73,0x74,0x65,0x72,0x6e,0x20,0x2d,0x20,0x4b, - 0x59,0x20,0x28,0x4c,0x6f,0x75,0x69,0x73,0x76,0x69,0x6c,0x6c,0x65,0x20,0x61,0x72, - 0x65,0x61,0x29,0xa,0x55,0x53,0x9,0x2b,0x33,0x36,0x34,0x39,0x34,0x37,0x2d,0x30, - 0x38,0x34,0x35,0x30,0x35,0x37,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x4b, - 0x65,0x6e,0x74,0x75,0x63,0x6b,0x79,0x2f,0x4d,0x6f,0x6e,0x74,0x69,0x63,0x65,0x6c, - 0x6c,0x6f,0x9,0x45,0x61,0x73,0x74,0x65,0x72,0x6e,0x20,0x2d,0x20,0x4b,0x59,0x20, - 0x28,0x57,0x61,0x79,0x6e,0x65,0x29,0xa,0x55,0x53,0x9,0x2b,0x33,0x39,0x34,0x36, - 0x30,0x36,0x2d,0x30,0x38,0x36,0x30,0x39,0x32,0x39,0x9,0x41,0x6d,0x65,0x72,0x69, - 0x63,0x61,0x2f,0x49,0x6e,0x64,0x69,0x61,0x6e,0x61,0x2f,0x49,0x6e,0x64,0x69,0x61, - 0x6e,0x61,0x70,0x6f,0x6c,0x69,0x73,0x9,0x45,0x61,0x73,0x74,0x65,0x72,0x6e,0x20, - 0x2d,0x20,0x49,0x4e,0x20,0x28,0x6d,0x6f,0x73,0x74,0x20,0x61,0x72,0x65,0x61,0x73, - 0x29,0xa,0x55,0x53,0x9,0x2b,0x33,0x38,0x34,0x30,0x33,0x38,0x2d,0x30,0x38,0x37, - 0x33,0x31,0x34,0x33,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x49,0x6e,0x64, - 0x69,0x61,0x6e,0x61,0x2f,0x56,0x69,0x6e,0x63,0x65,0x6e,0x6e,0x65,0x73,0x9,0x45, - 0x61,0x73,0x74,0x65,0x72,0x6e,0x20,0x2d,0x20,0x49,0x4e,0x20,0x28,0x44,0x61,0x2c, - 0x20,0x44,0x75,0x2c,0x20,0x4b,0x2c,0x20,0x4d,0x6e,0x29,0xa,0x55,0x53,0x9,0x2b, - 0x34,0x31,0x30,0x33,0x30,0x35,0x2d,0x30,0x38,0x36,0x33,0x36,0x31,0x31,0x9,0x41, - 0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x49,0x6e,0x64,0x69,0x61,0x6e,0x61,0x2f,0x57, - 0x69,0x6e,0x61,0x6d,0x61,0x63,0x9,0x45,0x61,0x73,0x74,0x65,0x72,0x6e,0x20,0x2d, - 0x20,0x49,0x4e,0x20,0x28,0x50,0x75,0x6c,0x61,0x73,0x6b,0x69,0x29,0xa,0x55,0x53, - 0x9,0x2b,0x33,0x38,0x32,0x32,0x33,0x32,0x2d,0x30,0x38,0x36,0x32,0x30,0x34,0x31, - 0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x49,0x6e,0x64,0x69,0x61,0x6e,0x61, - 0x2f,0x4d,0x61,0x72,0x65,0x6e,0x67,0x6f,0x9,0x45,0x61,0x73,0x74,0x65,0x72,0x6e, - 0x20,0x2d,0x20,0x49,0x4e,0x20,0x28,0x43,0x72,0x61,0x77,0x66,0x6f,0x72,0x64,0x29, - 0xa,0x55,0x53,0x9,0x2b,0x33,0x38,0x32,0x39,0x33,0x31,0x2d,0x30,0x38,0x37,0x31, - 0x36,0x34,0x33,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x49,0x6e,0x64,0x69, - 0x61,0x6e,0x61,0x2f,0x50,0x65,0x74,0x65,0x72,0x73,0x62,0x75,0x72,0x67,0x9,0x45, - 0x61,0x73,0x74,0x65,0x72,0x6e,0x20,0x2d,0x20,0x49,0x4e,0x20,0x28,0x50,0x69,0x6b, - 0x65,0x29,0xa,0x55,0x53,0x9,0x2b,0x33,0x38,0x34,0x34,0x35,0x32,0x2d,0x30,0x38, - 0x35,0x30,0x34,0x30,0x32,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x49,0x6e, - 0x64,0x69,0x61,0x6e,0x61,0x2f,0x56,0x65,0x76,0x61,0x79,0x9,0x45,0x61,0x73,0x74, - 0x65,0x72,0x6e,0x20,0x2d,0x20,0x49,0x4e,0x20,0x28,0x53,0x77,0x69,0x74,0x7a,0x65, - 0x72,0x6c,0x61,0x6e,0x64,0x29,0xa,0x55,0x53,0x9,0x2b,0x34,0x31,0x35,0x31,0x30, - 0x30,0x2d,0x30,0x38,0x37,0x33,0x39,0x30,0x30,0x9,0x41,0x6d,0x65,0x72,0x69,0x63, - 0x61,0x2f,0x43,0x68,0x69,0x63,0x61,0x67,0x6f,0x9,0x43,0x65,0x6e,0x74,0x72,0x61, - 0x6c,0x20,0x28,0x6d,0x6f,0x73,0x74,0x20,0x61,0x72,0x65,0x61,0x73,0x29,0xa,0x55, - 0x53,0x9,0x2b,0x33,0x37,0x35,0x37,0x31,0x31,0x2d,0x30,0x38,0x36,0x34,0x35,0x34, - 0x31,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x49,0x6e,0x64,0x69,0x61,0x6e, - 0x61,0x2f,0x54,0x65,0x6c,0x6c,0x5f,0x43,0x69,0x74,0x79,0x9,0x43,0x65,0x6e,0x74, - 0x72,0x61,0x6c,0x20,0x2d,0x20,0x49,0x4e,0x20,0x28,0x50,0x65,0x72,0x72,0x79,0x29, - 0xa,0x55,0x53,0x9,0x2b,0x34,0x31,0x31,0x37,0x34,0x35,0x2d,0x30,0x38,0x36,0x33, - 0x37,0x33,0x30,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x49,0x6e,0x64,0x69, - 0x61,0x6e,0x61,0x2f,0x4b,0x6e,0x6f,0x78,0x9,0x43,0x65,0x6e,0x74,0x72,0x61,0x6c, - 0x20,0x2d,0x20,0x49,0x4e,0x20,0x28,0x53,0x74,0x61,0x72,0x6b,0x65,0x29,0xa,0x55, - 0x53,0x9,0x2b,0x34,0x35,0x30,0x36,0x32,0x38,0x2d,0x30,0x38,0x37,0x33,0x36,0x35, - 0x31,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x4d,0x65,0x6e,0x6f,0x6d,0x69, - 0x6e,0x65,0x65,0x9,0x43,0x65,0x6e,0x74,0x72,0x61,0x6c,0x20,0x2d,0x20,0x4d,0x49, - 0x20,0x28,0x57,0x69,0x73,0x63,0x6f,0x6e,0x73,0x69,0x6e,0x20,0x62,0x6f,0x72,0x64, - 0x65,0x72,0x29,0xa,0x55,0x53,0x9,0x2b,0x34,0x37,0x30,0x36,0x35,0x39,0x2d,0x31, - 0x30,0x31,0x31,0x37,0x35,0x37,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x4e, - 0x6f,0x72,0x74,0x68,0x5f,0x44,0x61,0x6b,0x6f,0x74,0x61,0x2f,0x43,0x65,0x6e,0x74, - 0x65,0x72,0x9,0x43,0x65,0x6e,0x74,0x72,0x61,0x6c,0x20,0x2d,0x20,0x4e,0x44,0x20, - 0x28,0x4f,0x6c,0x69,0x76,0x65,0x72,0x29,0xa,0x55,0x53,0x9,0x2b,0x34,0x36,0x35, - 0x30,0x34,0x32,0x2d,0x31,0x30,0x31,0x32,0x34,0x33,0x39,0x9,0x41,0x6d,0x65,0x72, - 0x69,0x63,0x61,0x2f,0x4e,0x6f,0x72,0x74,0x68,0x5f,0x44,0x61,0x6b,0x6f,0x74,0x61, - 0x2f,0x4e,0x65,0x77,0x5f,0x53,0x61,0x6c,0x65,0x6d,0x9,0x43,0x65,0x6e,0x74,0x72, - 0x61,0x6c,0x20,0x2d,0x20,0x4e,0x44,0x20,0x28,0x4d,0x6f,0x72,0x74,0x6f,0x6e,0x20, - 0x72,0x75,0x72,0x61,0x6c,0x29,0xa,0x55,0x53,0x9,0x2b,0x34,0x37,0x31,0x35,0x35, - 0x31,0x2d,0x31,0x30,0x31,0x34,0x36,0x34,0x30,0x9,0x41,0x6d,0x65,0x72,0x69,0x63, - 0x61,0x2f,0x4e,0x6f,0x72,0x74,0x68,0x5f,0x44,0x61,0x6b,0x6f,0x74,0x61,0x2f,0x42, - 0x65,0x75,0x6c,0x61,0x68,0x9,0x43,0x65,0x6e,0x74,0x72,0x61,0x6c,0x20,0x2d,0x20, - 0x4e,0x44,0x20,0x28,0x4d,0x65,0x72,0x63,0x65,0x72,0x29,0xa,0x55,0x53,0x9,0x2b, - 0x33,0x39,0x34,0x34,0x32,0x31,0x2d,0x31,0x30,0x34,0x35,0x39,0x30,0x33,0x9,0x41, - 0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x44,0x65,0x6e,0x76,0x65,0x72,0x9,0x4d,0x6f, - 0x75,0x6e,0x74,0x61,0x69,0x6e,0x20,0x28,0x6d,0x6f,0x73,0x74,0x20,0x61,0x72,0x65, - 0x61,0x73,0x29,0xa,0x55,0x53,0x9,0x2b,0x34,0x33,0x33,0x36,0x34,0x39,0x2d,0x31, - 0x31,0x36,0x31,0x32,0x30,0x39,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x42, - 0x6f,0x69,0x73,0x65,0x9,0x4d,0x6f,0x75,0x6e,0x74,0x61,0x69,0x6e,0x20,0x2d,0x20, - 0x49,0x44,0x20,0x28,0x73,0x6f,0x75,0x74,0x68,0x29,0x3b,0x20,0x4f,0x52,0x20,0x28, - 0x65,0x61,0x73,0x74,0x29,0xa,0x55,0x53,0x9,0x2b,0x33,0x33,0x32,0x36,0x35,0x34, - 0x2d,0x31,0x31,0x32,0x30,0x34,0x32,0x34,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61, - 0x2f,0x50,0x68,0x6f,0x65,0x6e,0x69,0x78,0x9,0x4d,0x53,0x54,0x20,0x2d,0x20,0x41, - 0x72,0x69,0x7a,0x6f,0x6e,0x61,0x20,0x28,0x65,0x78,0x63,0x65,0x70,0x74,0x20,0x4e, - 0x61,0x76,0x61,0x6a,0x6f,0x29,0xa,0x55,0x53,0x9,0x2b,0x33,0x34,0x30,0x33,0x30, - 0x38,0x2d,0x31,0x31,0x38,0x31,0x34,0x33,0x34,0x9,0x41,0x6d,0x65,0x72,0x69,0x63, - 0x61,0x2f,0x4c,0x6f,0x73,0x5f,0x41,0x6e,0x67,0x65,0x6c,0x65,0x73,0x9,0x50,0x61, - 0x63,0x69,0x66,0x69,0x63,0xa,0x55,0x53,0x9,0x2b,0x36,0x31,0x31,0x33,0x30,0x35, - 0x2d,0x31,0x34,0x39,0x35,0x34,0x30,0x31,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61, - 0x2f,0x41,0x6e,0x63,0x68,0x6f,0x72,0x61,0x67,0x65,0x9,0x41,0x6c,0x61,0x73,0x6b, - 0x61,0x20,0x28,0x6d,0x6f,0x73,0x74,0x20,0x61,0x72,0x65,0x61,0x73,0x29,0xa,0x55, - 0x53,0x9,0x2b,0x35,0x38,0x31,0x38,0x30,0x37,0x2d,0x31,0x33,0x34,0x32,0x35,0x31, - 0x31,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x4a,0x75,0x6e,0x65,0x61,0x75, - 0x9,0x41,0x6c,0x61,0x73,0x6b,0x61,0x20,0x2d,0x20,0x4a,0x75,0x6e,0x65,0x61,0x75, - 0x20,0x61,0x72,0x65,0x61,0xa,0x55,0x53,0x9,0x2b,0x35,0x37,0x31,0x30,0x33,0x35, - 0x2d,0x31,0x33,0x35,0x31,0x38,0x30,0x37,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61, - 0x2f,0x53,0x69,0x74,0x6b,0x61,0x9,0x41,0x6c,0x61,0x73,0x6b,0x61,0x20,0x2d,0x20, - 0x53,0x69,0x74,0x6b,0x61,0x20,0x61,0x72,0x65,0x61,0xa,0x55,0x53,0x9,0x2b,0x35, - 0x35,0x30,0x37,0x33,0x37,0x2d,0x31,0x33,0x31,0x33,0x34,0x33,0x35,0x9,0x41,0x6d, - 0x65,0x72,0x69,0x63,0x61,0x2f,0x4d,0x65,0x74,0x6c,0x61,0x6b,0x61,0x74,0x6c,0x61, - 0x9,0x41,0x6c,0x61,0x73,0x6b,0x61,0x20,0x2d,0x20,0x41,0x6e,0x6e,0x65,0x74,0x74, - 0x65,0x20,0x49,0x73,0x6c,0x61,0x6e,0x64,0xa,0x55,0x53,0x9,0x2b,0x35,0x39,0x33, - 0x32,0x34,0x39,0x2d,0x31,0x33,0x39,0x34,0x33,0x33,0x38,0x9,0x41,0x6d,0x65,0x72, - 0x69,0x63,0x61,0x2f,0x59,0x61,0x6b,0x75,0x74,0x61,0x74,0x9,0x41,0x6c,0x61,0x73, - 0x6b,0x61,0x20,0x2d,0x20,0x59,0x61,0x6b,0x75,0x74,0x61,0x74,0xa,0x55,0x53,0x9, - 0x2b,0x36,0x34,0x33,0x30,0x30,0x34,0x2d,0x31,0x36,0x35,0x32,0x34,0x32,0x33,0x9, - 0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x4e,0x6f,0x6d,0x65,0x9,0x41,0x6c,0x61, - 0x73,0x6b,0x61,0x20,0x28,0x77,0x65,0x73,0x74,0x29,0xa,0x55,0x53,0x9,0x2b,0x35, - 0x31,0x35,0x32,0x34,0x38,0x2d,0x31,0x37,0x36,0x33,0x39,0x32,0x39,0x9,0x41,0x6d, - 0x65,0x72,0x69,0x63,0x61,0x2f,0x41,0x64,0x61,0x6b,0x9,0x41,0x6c,0x65,0x75,0x74, - 0x69,0x61,0x6e,0x20,0x49,0x73,0x6c,0x61,0x6e,0x64,0x73,0xa,0x55,0x53,0x9,0x2b, - 0x32,0x31,0x31,0x38,0x32,0x35,0x2d,0x31,0x35,0x37,0x35,0x31,0x33,0x30,0x9,0x50, - 0x61,0x63,0x69,0x66,0x69,0x63,0x2f,0x48,0x6f,0x6e,0x6f,0x6c,0x75,0x6c,0x75,0x9, - 0x48,0x61,0x77,0x61,0x69,0x69,0xa,0x55,0x59,0x9,0x2d,0x33,0x34,0x35,0x33,0x2d, - 0x30,0x35,0x36,0x31,0x31,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x4d,0x6f, - 0x6e,0x74,0x65,0x76,0x69,0x64,0x65,0x6f,0xa,0x55,0x5a,0x9,0x2b,0x33,0x39,0x34, - 0x30,0x2b,0x30,0x36,0x36,0x34,0x38,0x9,0x41,0x73,0x69,0x61,0x2f,0x53,0x61,0x6d, - 0x61,0x72,0x6b,0x61,0x6e,0x64,0x9,0x55,0x7a,0x62,0x65,0x6b,0x69,0x73,0x74,0x61, - 0x6e,0x20,0x28,0x77,0x65,0x73,0x74,0x29,0xa,0x55,0x5a,0x9,0x2b,0x34,0x31,0x32, - 0x30,0x2b,0x30,0x36,0x39,0x31,0x38,0x9,0x41,0x73,0x69,0x61,0x2f,0x54,0x61,0x73, - 0x68,0x6b,0x65,0x6e,0x74,0x9,0x55,0x7a,0x62,0x65,0x6b,0x69,0x73,0x74,0x61,0x6e, - 0x20,0x28,0x65,0x61,0x73,0x74,0x29,0xa,0x56,0x41,0x9,0x2b,0x34,0x31,0x35,0x34, - 0x30,0x38,0x2b,0x30,0x31,0x32,0x32,0x37,0x31,0x31,0x9,0x45,0x75,0x72,0x6f,0x70, - 0x65,0x2f,0x56,0x61,0x74,0x69,0x63,0x61,0x6e,0xa,0x56,0x43,0x9,0x2b,0x31,0x33, - 0x30,0x39,0x2d,0x30,0x36,0x31,0x31,0x34,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61, - 0x2f,0x53,0x74,0x5f,0x56,0x69,0x6e,0x63,0x65,0x6e,0x74,0xa,0x56,0x45,0x9,0x2b, - 0x31,0x30,0x33,0x30,0x2d,0x30,0x36,0x36,0x35,0x36,0x9,0x41,0x6d,0x65,0x72,0x69, - 0x63,0x61,0x2f,0x43,0x61,0x72,0x61,0x63,0x61,0x73,0xa,0x56,0x47,0x9,0x2b,0x31, - 0x38,0x32,0x37,0x2d,0x30,0x36,0x34,0x33,0x37,0x9,0x41,0x6d,0x65,0x72,0x69,0x63, - 0x61,0x2f,0x54,0x6f,0x72,0x74,0x6f,0x6c,0x61,0xa,0x56,0x49,0x9,0x2b,0x31,0x38, - 0x32,0x31,0x2d,0x30,0x36,0x34,0x35,0x36,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61, - 0x2f,0x53,0x74,0x5f,0x54,0x68,0x6f,0x6d,0x61,0x73,0xa,0x56,0x4e,0x9,0x2b,0x31, - 0x30,0x34,0x35,0x2b,0x31,0x30,0x36,0x34,0x30,0x9,0x41,0x73,0x69,0x61,0x2f,0x48, - 0x6f,0x5f,0x43,0x68,0x69,0x5f,0x4d,0x69,0x6e,0x68,0xa,0x56,0x55,0x9,0x2d,0x31, - 0x37,0x34,0x30,0x2b,0x31,0x36,0x38,0x32,0x35,0x9,0x50,0x61,0x63,0x69,0x66,0x69, - 0x63,0x2f,0x45,0x66,0x61,0x74,0x65,0xa,0x57,0x46,0x9,0x2d,0x31,0x33,0x31,0x38, - 0x2d,0x31,0x37,0x36,0x31,0x30,0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x2f,0x57, - 0x61,0x6c,0x6c,0x69,0x73,0xa,0x57,0x53,0x9,0x2d,0x31,0x33,0x35,0x30,0x2d,0x31, - 0x37,0x31,0x34,0x34,0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x2f,0x41,0x70,0x69, - 0x61,0xa,0x59,0x45,0x9,0x2b,0x31,0x32,0x34,0x35,0x2b,0x30,0x34,0x35,0x31,0x32, - 0x9,0x41,0x73,0x69,0x61,0x2f,0x41,0x64,0x65,0x6e,0xa,0x59,0x54,0x9,0x2d,0x31, - 0x32,0x34,0x37,0x2b,0x30,0x34,0x35,0x31,0x34,0x9,0x49,0x6e,0x64,0x69,0x61,0x6e, - 0x2f,0x4d,0x61,0x79,0x6f,0x74,0x74,0x65,0xa,0x5a,0x41,0x9,0x2d,0x32,0x36,0x31, - 0x35,0x2b,0x30,0x32,0x38,0x30,0x30,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f,0x4a, - 0x6f,0x68,0x61,0x6e,0x6e,0x65,0x73,0x62,0x75,0x72,0x67,0xa,0x5a,0x4d,0x9,0x2d, - 0x31,0x35,0x32,0x35,0x2b,0x30,0x32,0x38,0x31,0x37,0x9,0x41,0x66,0x72,0x69,0x63, - 0x61,0x2f,0x4c,0x75,0x73,0x61,0x6b,0x61,0xa,0x5a,0x57,0x9,0x2d,0x31,0x37,0x35, - 0x30,0x2b,0x30,0x33,0x31,0x30,0x33,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f,0x48, - 0x61,0x72,0x61,0x72,0x65,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/GMT0 + 0x3,0x2,0x3,0x2,0xff,0xff,0xb8,0x1,0x0,0x0,0xff,0xff,0xb8,0x1,0x0,0x4, + 0xff,0xff,0xb9,0xb0,0x0,0x8,0xff,0xff,0xc7,0xc0,0x1,0xc,0x4c,0x4d,0x54,0x0, + 0x4b,0x4d,0x54,0x0,0x45,0x53,0x54,0x0,0x45,0x44,0x54,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xa,0x45,0x53,0x54,0x35,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/EST 0x0,0x0,0x0,0x7f, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, - 0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0xff,0xff,0xb9,0xb0,0x0, + 0x0,0x45,0x53,0x54,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0, 0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0, - 0x0,0x0,0x4,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0xa,0x47,0x4d,0x54,0x30,0xa, + 0x0,0x0,0x4,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xb9,0xb0, + 0x0,0x0,0x45,0x53,0x54,0x0,0x0,0x0,0xa,0x45,0x53,0x54,0x35,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/Eire - 0x0,0x0,0xd,0xe7, + 0x0,0x0,0xd,0xd7, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xe6,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0x9b, + 0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xe6,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0x9b, 0x26,0xb3,0x91,0x9b,0xd6,0xb,0x11,0x9c,0xcf,0x30,0xa0,0x9d,0xa4,0xc3,0xa0,0x9e, 0x9c,0x9d,0xa0,0x9f,0x97,0x1a,0xa0,0xa0,0x85,0xba,0x20,0xa1,0x76,0xfc,0xa0,0xa2, 0x65,0x9c,0x20,0xa3,0x7b,0xc8,0xa0,0xa4,0x4e,0xb8,0xa0,0xa5,0x3f,0xfb,0x20,0xa5, @@ -3559,8 +2619,8 @@ static const unsigned char qt_resource_data[] = { 0xd8,0xf1,0x20,0xbc,0xdb,0x57,0x20,0xbd,0xb8,0xd3,0x20,0xbe,0xb1,0xfe,0xa0,0xbf, 0x98,0xb5,0x20,0xc0,0x9b,0x1b,0x20,0xc1,0x78,0x97,0x20,0xc2,0x7a,0xfd,0x20,0xc3, 0x58,0x79,0x20,0xc4,0x51,0xa4,0xa0,0xc5,0x38,0x5b,0x20,0xc6,0x3a,0xc1,0x20,0xc7, - 0x58,0xd6,0xa0,0xc7,0xda,0x9,0xa0,0xd4,0x49,0xd2,0x10,0xd5,0x1e,0x21,0xa0,0xd6, - 0x4e,0x9e,0x10,0xd7,0x2c,0x28,0x20,0xd8,0x2e,0x8e,0x20,0xd8,0xf9,0x95,0x20,0xda, + 0x58,0xd6,0xa0,0xc7,0xda,0x9,0xa0,0xd4,0x49,0xe0,0x20,0xd5,0x1e,0x21,0xa0,0xd6, + 0x4e,0xac,0x20,0xd7,0x2c,0x28,0x20,0xd8,0x2e,0x8e,0x20,0xd8,0xf9,0x95,0x20,0xda, 0xe,0x70,0x20,0xda,0xeb,0xec,0x20,0xdb,0xe5,0x17,0xa0,0xdc,0xcb,0xce,0x20,0xdd, 0xc4,0xf9,0xa0,0xde,0xb4,0xea,0xa0,0xdf,0xae,0x16,0x20,0xe0,0x94,0xcc,0xa0,0xe1, 0x72,0x48,0xa0,0xe2,0x6b,0x74,0x20,0xe3,0x52,0x2a,0xa0,0xe4,0x54,0x90,0xa0,0xe5, @@ -3607,245 +2667,177 @@ static const unsigned char qt_resource_data[] = { 0x8e,0x7f,0x90,0x1,0x2,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, 0x6,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x7,0x6,0x7,0x6,0x7,0x4,0x5,0x4,0x5,0x4,0x5, 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x8,0xa,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa, - 0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa, - 0x9,0xa,0x9,0xa,0x6,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9, - 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9, - 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9, - 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9, - 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9, - 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0xff,0xff,0xfa,0x24,0x0,0x0,0xff, - 0xff,0xfa,0xf,0x0,0x4,0x0,0x0,0x8,0x1f,0x1,0x8,0x0,0x0,0xe,0x10,0x1, - 0xc,0x0,0x0,0x0,0x0,0x0,0x10,0x0,0x0,0xe,0x10,0x1,0x8,0x0,0x0,0x0, - 0x0,0x0,0x10,0x0,0x0,0xe,0x10,0x1,0x8,0x0,0x0,0xe,0x10,0x0,0x8,0x0, - 0x0,0xe,0x10,0x1,0x8,0x0,0x0,0x0,0x0,0x0,0x10,0x4c,0x4d,0x54,0x0,0x44, - 0x4d,0x54,0x0,0x49,0x53,0x54,0x0,0x42,0x53,0x54,0x0,0x47,0x4d,0x54,0x0,0x0, - 0x0,0x0,0x1,0x1,0x1,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x1,0x1,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0, - 0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe7,0x0,0x0,0x0,0xb,0x0,0x0,0x0, - 0x14,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x57,0xd1,0xa, - 0xdc,0xff,0xff,0xff,0xff,0x9b,0x26,0xb3,0x91,0xff,0xff,0xff,0xff,0x9b,0xd6,0xb, - 0x11,0xff,0xff,0xff,0xff,0x9c,0xcf,0x30,0xa0,0xff,0xff,0xff,0xff,0x9d,0xa4,0xc3, - 0xa0,0xff,0xff,0xff,0xff,0x9e,0x9c,0x9d,0xa0,0xff,0xff,0xff,0xff,0x9f,0x97,0x1a, - 0xa0,0xff,0xff,0xff,0xff,0xa0,0x85,0xba,0x20,0xff,0xff,0xff,0xff,0xa1,0x76,0xfc, - 0xa0,0xff,0xff,0xff,0xff,0xa2,0x65,0x9c,0x20,0xff,0xff,0xff,0xff,0xa3,0x7b,0xc8, - 0xa0,0xff,0xff,0xff,0xff,0xa4,0x4e,0xb8,0xa0,0xff,0xff,0xff,0xff,0xa5,0x3f,0xfb, - 0x20,0xff,0xff,0xff,0xff,0xa5,0x94,0x3f,0x0,0xff,0xff,0xff,0xff,0xa6,0x25,0x60, - 0x20,0xff,0xff,0xff,0xff,0xa7,0x27,0xc6,0x20,0xff,0xff,0xff,0xff,0xa8,0x2a,0x2c, - 0x20,0xff,0xff,0xff,0xff,0xa8,0xeb,0xf8,0xa0,0xff,0xff,0xff,0xff,0xaa,0x0,0xd3, - 0xa0,0xff,0xff,0xff,0xff,0xaa,0xd5,0x15,0x20,0xff,0xff,0xff,0xff,0xab,0xe9,0xf0, - 0x20,0xff,0xff,0xff,0xff,0xac,0xc7,0x6c,0x20,0xff,0xff,0xff,0xff,0xad,0xc9,0xd2, - 0x20,0xff,0xff,0xff,0xff,0xae,0xa7,0x4e,0x20,0xff,0xff,0xff,0xff,0xaf,0xa0,0x79, - 0xa0,0xff,0xff,0xff,0xff,0xb0,0x87,0x30,0x20,0xff,0xff,0xff,0xff,0xb1,0x92,0xd0, - 0xa0,0xff,0xff,0xff,0xff,0xb2,0x70,0x4c,0xa0,0xff,0xff,0xff,0xff,0xb3,0x72,0xb2, - 0xa0,0xff,0xff,0xff,0xff,0xb4,0x50,0x2e,0xa0,0xff,0xff,0xff,0xff,0xb5,0x49,0x5a, - 0x20,0xff,0xff,0xff,0xff,0xb6,0x30,0x10,0xa0,0xff,0xff,0xff,0xff,0xb7,0x32,0x76, - 0xa0,0xff,0xff,0xff,0xff,0xb8,0xf,0xf2,0xa0,0xff,0xff,0xff,0xff,0xb9,0x12,0x58, - 0xa0,0xff,0xff,0xff,0xff,0xb9,0xef,0xd4,0xa0,0xff,0xff,0xff,0xff,0xba,0xe9,0x0, - 0x20,0xff,0xff,0xff,0xff,0xbb,0xd8,0xf1,0x20,0xff,0xff,0xff,0xff,0xbc,0xdb,0x57, - 0x20,0xff,0xff,0xff,0xff,0xbd,0xb8,0xd3,0x20,0xff,0xff,0xff,0xff,0xbe,0xb1,0xfe, - 0xa0,0xff,0xff,0xff,0xff,0xbf,0x98,0xb5,0x20,0xff,0xff,0xff,0xff,0xc0,0x9b,0x1b, - 0x20,0xff,0xff,0xff,0xff,0xc1,0x78,0x97,0x20,0xff,0xff,0xff,0xff,0xc2,0x7a,0xfd, - 0x20,0xff,0xff,0xff,0xff,0xc3,0x58,0x79,0x20,0xff,0xff,0xff,0xff,0xc4,0x51,0xa4, - 0xa0,0xff,0xff,0xff,0xff,0xc5,0x38,0x5b,0x20,0xff,0xff,0xff,0xff,0xc6,0x3a,0xc1, - 0x20,0xff,0xff,0xff,0xff,0xc7,0x58,0xd6,0xa0,0xff,0xff,0xff,0xff,0xc7,0xda,0x9, - 0xa0,0xff,0xff,0xff,0xff,0xd4,0x49,0xd2,0x10,0xff,0xff,0xff,0xff,0xd5,0x1e,0x21, - 0xa0,0xff,0xff,0xff,0xff,0xd6,0x4e,0x9e,0x10,0xff,0xff,0xff,0xff,0xd7,0x2c,0x28, - 0x20,0xff,0xff,0xff,0xff,0xd8,0x2e,0x8e,0x20,0xff,0xff,0xff,0xff,0xd8,0xf9,0x95, - 0x20,0xff,0xff,0xff,0xff,0xda,0xe,0x70,0x20,0xff,0xff,0xff,0xff,0xda,0xeb,0xec, - 0x20,0xff,0xff,0xff,0xff,0xdb,0xe5,0x17,0xa0,0xff,0xff,0xff,0xff,0xdc,0xcb,0xce, - 0x20,0xff,0xff,0xff,0xff,0xdd,0xc4,0xf9,0xa0,0xff,0xff,0xff,0xff,0xde,0xb4,0xea, - 0xa0,0xff,0xff,0xff,0xff,0xdf,0xae,0x16,0x20,0xff,0xff,0xff,0xff,0xe0,0x94,0xcc, - 0xa0,0xff,0xff,0xff,0xff,0xe1,0x72,0x48,0xa0,0xff,0xff,0xff,0xff,0xe2,0x6b,0x74, - 0x20,0xff,0xff,0xff,0xff,0xe3,0x52,0x2a,0xa0,0xff,0xff,0xff,0xff,0xe4,0x54,0x90, - 0xa0,0xff,0xff,0xff,0xff,0xe5,0x32,0xc,0xa0,0xff,0xff,0xff,0xff,0xe6,0x3d,0xad, - 0x20,0xff,0xff,0xff,0xff,0xe7,0x1b,0x29,0x20,0xff,0xff,0xff,0xff,0xe8,0x14,0x54, - 0xa0,0xff,0xff,0xff,0xff,0xe8,0xfb,0xb,0x20,0xff,0xff,0xff,0xff,0xe9,0xfd,0x71, - 0x20,0xff,0xff,0xff,0xff,0xea,0xda,0xed,0x20,0xff,0xff,0xff,0xff,0xeb,0xdd,0x53, - 0x20,0xff,0xff,0xff,0xff,0xec,0xba,0xcf,0x20,0xff,0xff,0xff,0xff,0xed,0xb3,0xfa, - 0xa0,0xff,0xff,0xff,0xff,0xee,0x9a,0xb1,0x20,0xff,0xff,0xff,0xff,0xef,0x81,0x67, - 0xa0,0xff,0xff,0xff,0xff,0xf0,0x9f,0x7d,0x20,0xff,0xff,0xff,0xff,0xf1,0x61,0x49, - 0xa0,0xff,0xff,0xff,0xff,0xf2,0x7f,0x5f,0x20,0xff,0xff,0xff,0xff,0xf3,0x4a,0x66, - 0x20,0xff,0xff,0xff,0xff,0xf4,0x5f,0x41,0x20,0xff,0xff,0xff,0xff,0xf5,0x21,0xd, - 0xa0,0xff,0xff,0xff,0xff,0xf6,0x3f,0x23,0x20,0xff,0xff,0xff,0xff,0xf7,0x0,0xef, - 0xa0,0xff,0xff,0xff,0xff,0xf8,0x1f,0x5,0x20,0xff,0xff,0xff,0xff,0xf8,0xe0,0xd1, - 0xa0,0xff,0xff,0xff,0xff,0xf9,0xfe,0xe7,0x20,0xff,0xff,0xff,0xff,0xfa,0xc0,0xb3, - 0xa0,0xff,0xff,0xff,0xff,0xfb,0xe8,0x3,0xa0,0xff,0xff,0xff,0xff,0xfc,0x7b,0xab, - 0xa0,0xff,0xff,0xff,0xff,0xfd,0xc7,0xbb,0x70,0x0,0x0,0x0,0x0,0x3,0x70,0xc6, - 0x20,0x0,0x0,0x0,0x0,0x4,0x29,0x58,0x20,0x0,0x0,0x0,0x0,0x5,0x50,0xa8, - 0x20,0x0,0x0,0x0,0x0,0x6,0x9,0x3a,0x20,0x0,0x0,0x0,0x0,0x7,0x30,0x8a, - 0x20,0x0,0x0,0x0,0x0,0x7,0xe9,0x1c,0x20,0x0,0x0,0x0,0x0,0x9,0x10,0x6c, - 0x20,0x0,0x0,0x0,0x0,0x9,0xc8,0xfe,0x20,0x0,0x0,0x0,0x0,0xa,0xf0,0x4e, - 0x20,0x0,0x0,0x0,0x0,0xb,0xb2,0x1a,0xa0,0x0,0x0,0x0,0x0,0xc,0xd0,0x30, - 0x20,0x0,0x0,0x0,0x0,0xd,0x91,0xfc,0xa0,0x0,0x0,0x0,0x0,0xe,0xb0,0x12, - 0x20,0x0,0x0,0x0,0x0,0xf,0x71,0xde,0xa0,0x0,0x0,0x0,0x0,0x10,0x99,0x2e, - 0xa0,0x0,0x0,0x0,0x0,0x11,0x51,0xc0,0xa0,0x0,0x0,0x0,0x0,0x12,0x79,0x10, - 0xa0,0x0,0x0,0x0,0x0,0x13,0x31,0xa2,0xa0,0x0,0x0,0x0,0x0,0x14,0x58,0xf2, - 0xa0,0x0,0x0,0x0,0x0,0x15,0x23,0xeb,0x90,0x0,0x0,0x0,0x0,0x16,0x38,0xc6, - 0x90,0x0,0x0,0x0,0x0,0x17,0x3,0xcd,0x90,0x0,0x0,0x0,0x0,0x18,0x18,0xa8, - 0x90,0x0,0x0,0x0,0x0,0x18,0xe3,0xaf,0x90,0x0,0x0,0x0,0x0,0x19,0xf8,0x8a, - 0x90,0x0,0x0,0x0,0x0,0x1a,0xc3,0x91,0x90,0x0,0x0,0x0,0x0,0x1b,0xe1,0xa7, - 0x10,0x0,0x0,0x0,0x0,0x1c,0xac,0xae,0x10,0x0,0x0,0x0,0x0,0x1d,0xc1,0x89, - 0x10,0x0,0x0,0x0,0x0,0x1e,0x8c,0x90,0x10,0x0,0x0,0x0,0x0,0x1f,0xa1,0x6b, - 0x10,0x0,0x0,0x0,0x0,0x20,0x6c,0x72,0x10,0x0,0x0,0x0,0x0,0x21,0x81,0x4d, - 0x10,0x0,0x0,0x0,0x0,0x22,0x4c,0x54,0x10,0x0,0x0,0x0,0x0,0x23,0x61,0x2f, - 0x10,0x0,0x0,0x0,0x0,0x24,0x2c,0x36,0x10,0x0,0x0,0x0,0x0,0x25,0x4a,0x4b, - 0x90,0x0,0x0,0x0,0x0,0x26,0xc,0x18,0x10,0x0,0x0,0x0,0x0,0x27,0x2a,0x2d, - 0x90,0x0,0x0,0x0,0x0,0x27,0xf5,0x34,0x90,0x0,0x0,0x0,0x0,0x29,0xa,0xf, - 0x90,0x0,0x0,0x0,0x0,0x29,0xd5,0x16,0x90,0x0,0x0,0x0,0x0,0x2a,0xe9,0xf1, - 0x90,0x0,0x0,0x0,0x0,0x2b,0xb4,0xf8,0x90,0x0,0x0,0x0,0x0,0x2c,0xc9,0xd3, - 0x90,0x0,0x0,0x0,0x0,0x2d,0x94,0xda,0x90,0x0,0x0,0x0,0x0,0x2e,0xa9,0xb5, - 0x90,0x0,0x0,0x0,0x0,0x2f,0x74,0xbc,0x90,0x0,0x0,0x0,0x0,0x30,0x89,0x97, - 0x90,0x0,0x0,0x0,0x0,0x30,0xe7,0x24,0x0,0x0,0x0,0x0,0x0,0x31,0x5d,0xd9, - 0x10,0x0,0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d,0xbb, - 0x10,0x0,0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d,0x9d, - 0x10,0x0,0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd,0x7f, - 0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd,0x61, - 0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd,0x43, - 0x10,0x0,0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f, - 0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86,0x41, - 0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66,0x23, - 0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46,0x5, - 0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25,0xe7, - 0x90,0x0,0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5,0xc9, - 0x90,0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee,0xe6, - 0x10,0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce,0xc8, - 0x10,0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae,0xaa, - 0x10,0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c, - 0x10,0x0,0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e, - 0x10,0x0,0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57,0x8a, - 0x90,0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37,0x6c, - 0x90,0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17,0x4e, - 0x90,0x0,0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7,0x30, - 0x90,0x0,0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7,0x12, - 0x90,0x0,0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4, - 0x90,0x0,0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0,0x11, - 0x10,0x0,0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3, - 0x10,0x0,0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f,0xd5, - 0x10,0x0,0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f,0xb7, - 0x10,0x0,0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f,0x99, - 0x10,0x0,0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8,0xb5, - 0x90,0x0,0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8,0x97, - 0x90,0x0,0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8,0x79, - 0x90,0x0,0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b, - 0x90,0x0,0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88,0x3d, - 0x90,0x0,0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68,0x1f, - 0x90,0x0,0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51,0x3c, - 0x10,0x0,0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31,0x1e, - 0x10,0x0,0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11,0x0, - 0x10,0x0,0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0,0xe2, - 0x10,0x0,0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0,0xc4, - 0x10,0x0,0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6, - 0x10,0x0,0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99,0xc2, - 0x90,0x0,0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79,0xa4, - 0x90,0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x1,0x2,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x6,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x7,0x9,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, + 0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, + 0x8,0x9,0x8,0x9,0x6,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, + 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, + 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, + 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, + 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, + 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0xff,0xff,0xfa,0x24,0x0,0x0,0xff, + 0xff,0xfa,0xf,0x0,0x4,0x0,0x0,0x8,0x1f,0x1,0x8,0x0,0x0,0xe,0x10,0x1, + 0xc,0x0,0x0,0x0,0x0,0x0,0x10,0x0,0x0,0xe,0x10,0x1,0x8,0x0,0x0,0x0, + 0x0,0x0,0x10,0x0,0x0,0xe,0x10,0x0,0x8,0x0,0x0,0xe,0x10,0x1,0x8,0x0, + 0x0,0x0,0x0,0x0,0x10,0x4c,0x4d,0x54,0x0,0x44,0x4d,0x54,0x0,0x49,0x53,0x54, + 0x0,0x42,0x53,0x54,0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x0, + 0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x54,0x5a,0x69, + 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xe7,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x14,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0x57,0xd1,0xa,0xdc,0xff,0xff,0xff,0xff,0x9b,0x26,0xb3, + 0x91,0xff,0xff,0xff,0xff,0x9b,0xd6,0xb,0x11,0xff,0xff,0xff,0xff,0x9c,0xcf,0x30, + 0xa0,0xff,0xff,0xff,0xff,0x9d,0xa4,0xc3,0xa0,0xff,0xff,0xff,0xff,0x9e,0x9c,0x9d, + 0xa0,0xff,0xff,0xff,0xff,0x9f,0x97,0x1a,0xa0,0xff,0xff,0xff,0xff,0xa0,0x85,0xba, + 0x20,0xff,0xff,0xff,0xff,0xa1,0x76,0xfc,0xa0,0xff,0xff,0xff,0xff,0xa2,0x65,0x9c, + 0x20,0xff,0xff,0xff,0xff,0xa3,0x7b,0xc8,0xa0,0xff,0xff,0xff,0xff,0xa4,0x4e,0xb8, + 0xa0,0xff,0xff,0xff,0xff,0xa5,0x3f,0xfb,0x20,0xff,0xff,0xff,0xff,0xa5,0x94,0x3f, + 0x0,0xff,0xff,0xff,0xff,0xa6,0x25,0x60,0x20,0xff,0xff,0xff,0xff,0xa7,0x27,0xc6, + 0x20,0xff,0xff,0xff,0xff,0xa8,0x2a,0x2c,0x20,0xff,0xff,0xff,0xff,0xa8,0xeb,0xf8, + 0xa0,0xff,0xff,0xff,0xff,0xaa,0x0,0xd3,0xa0,0xff,0xff,0xff,0xff,0xaa,0xd5,0x15, + 0x20,0xff,0xff,0xff,0xff,0xab,0xe9,0xf0,0x20,0xff,0xff,0xff,0xff,0xac,0xc7,0x6c, + 0x20,0xff,0xff,0xff,0xff,0xad,0xc9,0xd2,0x20,0xff,0xff,0xff,0xff,0xae,0xa7,0x4e, + 0x20,0xff,0xff,0xff,0xff,0xaf,0xa0,0x79,0xa0,0xff,0xff,0xff,0xff,0xb0,0x87,0x30, + 0x20,0xff,0xff,0xff,0xff,0xb1,0x92,0xd0,0xa0,0xff,0xff,0xff,0xff,0xb2,0x70,0x4c, + 0xa0,0xff,0xff,0xff,0xff,0xb3,0x72,0xb2,0xa0,0xff,0xff,0xff,0xff,0xb4,0x50,0x2e, + 0xa0,0xff,0xff,0xff,0xff,0xb5,0x49,0x5a,0x20,0xff,0xff,0xff,0xff,0xb6,0x30,0x10, + 0xa0,0xff,0xff,0xff,0xff,0xb7,0x32,0x76,0xa0,0xff,0xff,0xff,0xff,0xb8,0xf,0xf2, + 0xa0,0xff,0xff,0xff,0xff,0xb9,0x12,0x58,0xa0,0xff,0xff,0xff,0xff,0xb9,0xef,0xd4, + 0xa0,0xff,0xff,0xff,0xff,0xba,0xe9,0x0,0x20,0xff,0xff,0xff,0xff,0xbb,0xd8,0xf1, + 0x20,0xff,0xff,0xff,0xff,0xbc,0xdb,0x57,0x20,0xff,0xff,0xff,0xff,0xbd,0xb8,0xd3, + 0x20,0xff,0xff,0xff,0xff,0xbe,0xb1,0xfe,0xa0,0xff,0xff,0xff,0xff,0xbf,0x98,0xb5, + 0x20,0xff,0xff,0xff,0xff,0xc0,0x9b,0x1b,0x20,0xff,0xff,0xff,0xff,0xc1,0x78,0x97, + 0x20,0xff,0xff,0xff,0xff,0xc2,0x7a,0xfd,0x20,0xff,0xff,0xff,0xff,0xc3,0x58,0x79, + 0x20,0xff,0xff,0xff,0xff,0xc4,0x51,0xa4,0xa0,0xff,0xff,0xff,0xff,0xc5,0x38,0x5b, + 0x20,0xff,0xff,0xff,0xff,0xc6,0x3a,0xc1,0x20,0xff,0xff,0xff,0xff,0xc7,0x58,0xd6, + 0xa0,0xff,0xff,0xff,0xff,0xc7,0xda,0x9,0xa0,0xff,0xff,0xff,0xff,0xd4,0x49,0xe0, + 0x20,0xff,0xff,0xff,0xff,0xd5,0x1e,0x21,0xa0,0xff,0xff,0xff,0xff,0xd6,0x4e,0xac, + 0x20,0xff,0xff,0xff,0xff,0xd7,0x2c,0x28,0x20,0xff,0xff,0xff,0xff,0xd8,0x2e,0x8e, + 0x20,0xff,0xff,0xff,0xff,0xd8,0xf9,0x95,0x20,0xff,0xff,0xff,0xff,0xda,0xe,0x70, + 0x20,0xff,0xff,0xff,0xff,0xda,0xeb,0xec,0x20,0xff,0xff,0xff,0xff,0xdb,0xe5,0x17, + 0xa0,0xff,0xff,0xff,0xff,0xdc,0xcb,0xce,0x20,0xff,0xff,0xff,0xff,0xdd,0xc4,0xf9, + 0xa0,0xff,0xff,0xff,0xff,0xde,0xb4,0xea,0xa0,0xff,0xff,0xff,0xff,0xdf,0xae,0x16, + 0x20,0xff,0xff,0xff,0xff,0xe0,0x94,0xcc,0xa0,0xff,0xff,0xff,0xff,0xe1,0x72,0x48, + 0xa0,0xff,0xff,0xff,0xff,0xe2,0x6b,0x74,0x20,0xff,0xff,0xff,0xff,0xe3,0x52,0x2a, + 0xa0,0xff,0xff,0xff,0xff,0xe4,0x54,0x90,0xa0,0xff,0xff,0xff,0xff,0xe5,0x32,0xc, + 0xa0,0xff,0xff,0xff,0xff,0xe6,0x3d,0xad,0x20,0xff,0xff,0xff,0xff,0xe7,0x1b,0x29, + 0x20,0xff,0xff,0xff,0xff,0xe8,0x14,0x54,0xa0,0xff,0xff,0xff,0xff,0xe8,0xfb,0xb, + 0x20,0xff,0xff,0xff,0xff,0xe9,0xfd,0x71,0x20,0xff,0xff,0xff,0xff,0xea,0xda,0xed, + 0x20,0xff,0xff,0xff,0xff,0xeb,0xdd,0x53,0x20,0xff,0xff,0xff,0xff,0xec,0xba,0xcf, + 0x20,0xff,0xff,0xff,0xff,0xed,0xb3,0xfa,0xa0,0xff,0xff,0xff,0xff,0xee,0x9a,0xb1, + 0x20,0xff,0xff,0xff,0xff,0xef,0x81,0x67,0xa0,0xff,0xff,0xff,0xff,0xf0,0x9f,0x7d, + 0x20,0xff,0xff,0xff,0xff,0xf1,0x61,0x49,0xa0,0xff,0xff,0xff,0xff,0xf2,0x7f,0x5f, + 0x20,0xff,0xff,0xff,0xff,0xf3,0x4a,0x66,0x20,0xff,0xff,0xff,0xff,0xf4,0x5f,0x41, + 0x20,0xff,0xff,0xff,0xff,0xf5,0x21,0xd,0xa0,0xff,0xff,0xff,0xff,0xf6,0x3f,0x23, + 0x20,0xff,0xff,0xff,0xff,0xf7,0x0,0xef,0xa0,0xff,0xff,0xff,0xff,0xf8,0x1f,0x5, + 0x20,0xff,0xff,0xff,0xff,0xf8,0xe0,0xd1,0xa0,0xff,0xff,0xff,0xff,0xf9,0xfe,0xe7, + 0x20,0xff,0xff,0xff,0xff,0xfa,0xc0,0xb3,0xa0,0xff,0xff,0xff,0xff,0xfb,0xe8,0x3, + 0xa0,0xff,0xff,0xff,0xff,0xfc,0x7b,0xab,0xa0,0xff,0xff,0xff,0xff,0xfd,0xc7,0xbb, + 0x70,0x0,0x0,0x0,0x0,0x3,0x70,0xc6,0x20,0x0,0x0,0x0,0x0,0x4,0x29,0x58, + 0x20,0x0,0x0,0x0,0x0,0x5,0x50,0xa8,0x20,0x0,0x0,0x0,0x0,0x6,0x9,0x3a, + 0x20,0x0,0x0,0x0,0x0,0x7,0x30,0x8a,0x20,0x0,0x0,0x0,0x0,0x7,0xe9,0x1c, + 0x20,0x0,0x0,0x0,0x0,0x9,0x10,0x6c,0x20,0x0,0x0,0x0,0x0,0x9,0xc8,0xfe, + 0x20,0x0,0x0,0x0,0x0,0xa,0xf0,0x4e,0x20,0x0,0x0,0x0,0x0,0xb,0xb2,0x1a, + 0xa0,0x0,0x0,0x0,0x0,0xc,0xd0,0x30,0x20,0x0,0x0,0x0,0x0,0xd,0x91,0xfc, + 0xa0,0x0,0x0,0x0,0x0,0xe,0xb0,0x12,0x20,0x0,0x0,0x0,0x0,0xf,0x71,0xde, + 0xa0,0x0,0x0,0x0,0x0,0x10,0x99,0x2e,0xa0,0x0,0x0,0x0,0x0,0x11,0x51,0xc0, + 0xa0,0x0,0x0,0x0,0x0,0x12,0x79,0x10,0xa0,0x0,0x0,0x0,0x0,0x13,0x31,0xa2, + 0xa0,0x0,0x0,0x0,0x0,0x14,0x58,0xf2,0xa0,0x0,0x0,0x0,0x0,0x15,0x23,0xeb, + 0x90,0x0,0x0,0x0,0x0,0x16,0x38,0xc6,0x90,0x0,0x0,0x0,0x0,0x17,0x3,0xcd, + 0x90,0x0,0x0,0x0,0x0,0x18,0x18,0xa8,0x90,0x0,0x0,0x0,0x0,0x18,0xe3,0xaf, + 0x90,0x0,0x0,0x0,0x0,0x19,0xf8,0x8a,0x90,0x0,0x0,0x0,0x0,0x1a,0xc3,0x91, + 0x90,0x0,0x0,0x0,0x0,0x1b,0xe1,0xa7,0x10,0x0,0x0,0x0,0x0,0x1c,0xac,0xae, + 0x10,0x0,0x0,0x0,0x0,0x1d,0xc1,0x89,0x10,0x0,0x0,0x0,0x0,0x1e,0x8c,0x90, + 0x10,0x0,0x0,0x0,0x0,0x1f,0xa1,0x6b,0x10,0x0,0x0,0x0,0x0,0x20,0x6c,0x72, + 0x10,0x0,0x0,0x0,0x0,0x21,0x81,0x4d,0x10,0x0,0x0,0x0,0x0,0x22,0x4c,0x54, + 0x10,0x0,0x0,0x0,0x0,0x23,0x61,0x2f,0x10,0x0,0x0,0x0,0x0,0x24,0x2c,0x36, + 0x10,0x0,0x0,0x0,0x0,0x25,0x4a,0x4b,0x90,0x0,0x0,0x0,0x0,0x26,0xc,0x18, + 0x10,0x0,0x0,0x0,0x0,0x27,0x2a,0x2d,0x90,0x0,0x0,0x0,0x0,0x27,0xf5,0x34, + 0x90,0x0,0x0,0x0,0x0,0x29,0xa,0xf,0x90,0x0,0x0,0x0,0x0,0x29,0xd5,0x16, + 0x90,0x0,0x0,0x0,0x0,0x2a,0xe9,0xf1,0x90,0x0,0x0,0x0,0x0,0x2b,0xb4,0xf8, + 0x90,0x0,0x0,0x0,0x0,0x2c,0xc9,0xd3,0x90,0x0,0x0,0x0,0x0,0x2d,0x94,0xda, + 0x90,0x0,0x0,0x0,0x0,0x2e,0xa9,0xb5,0x90,0x0,0x0,0x0,0x0,0x2f,0x74,0xbc, + 0x90,0x0,0x0,0x0,0x0,0x30,0x89,0x97,0x90,0x0,0x0,0x0,0x0,0x30,0xe7,0x24, + 0x0,0x0,0x0,0x0,0x0,0x31,0x5d,0xd9,0x10,0x0,0x0,0x0,0x0,0x32,0x72,0xb4, + 0x10,0x0,0x0,0x0,0x0,0x33,0x3d,0xbb,0x10,0x0,0x0,0x0,0x0,0x34,0x52,0x96, + 0x10,0x0,0x0,0x0,0x0,0x35,0x1d,0x9d,0x10,0x0,0x0,0x0,0x0,0x36,0x32,0x78, + 0x10,0x0,0x0,0x0,0x0,0x36,0xfd,0x7f,0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0x94, + 0x90,0x0,0x0,0x0,0x0,0x38,0xdd,0x61,0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0x76, + 0x90,0x0,0x0,0x0,0x0,0x3a,0xbd,0x43,0x10,0x0,0x0,0x0,0x0,0x3b,0xdb,0x58, + 0x90,0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x3a, + 0x90,0x0,0x0,0x0,0x0,0x3e,0x86,0x41,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x1c, + 0x90,0x0,0x0,0x0,0x0,0x40,0x66,0x23,0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x39, + 0x10,0x0,0x0,0x0,0x0,0x42,0x46,0x5,0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x1b, + 0x10,0x0,0x0,0x0,0x0,0x44,0x25,0xe7,0x90,0x0,0x0,0x0,0x0,0x45,0x43,0xfd, + 0x10,0x0,0x0,0x0,0x0,0x46,0x5,0xc9,0x90,0x0,0x0,0x0,0x0,0x47,0x23,0xdf, + 0x10,0x0,0x0,0x0,0x0,0x47,0xee,0xe6,0x10,0x0,0x0,0x0,0x0,0x49,0x3,0xc1, + 0x10,0x0,0x0,0x0,0x0,0x49,0xce,0xc8,0x10,0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3, + 0x10,0x0,0x0,0x0,0x0,0x4b,0xae,0xaa,0x10,0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf, + 0x90,0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c,0x10,0x0,0x0,0x0,0x0,0x4e,0xac,0xa1, + 0x90,0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e,0x10,0x0,0x0,0x0,0x0,0x50,0x8c,0x83, + 0x90,0x0,0x0,0x0,0x0,0x51,0x57,0x8a,0x90,0x0,0x0,0x0,0x0,0x52,0x6c,0x65, + 0x90,0x0,0x0,0x0,0x0,0x53,0x37,0x6c,0x90,0x0,0x0,0x0,0x0,0x54,0x4c,0x47, + 0x90,0x0,0x0,0x0,0x0,0x55,0x17,0x4e,0x90,0x0,0x0,0x0,0x0,0x56,0x2c,0x29, + 0x90,0x0,0x0,0x0,0x0,0x56,0xf7,0x30,0x90,0x0,0x0,0x0,0x0,0x58,0x15,0x46, + 0x10,0x0,0x0,0x0,0x0,0x58,0xd7,0x12,0x90,0x0,0x0,0x0,0x0,0x59,0xf5,0x28, + 0x10,0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4,0x90,0x0,0x0,0x0,0x0,0x5b,0xd5,0xa, + 0x10,0x0,0x0,0x0,0x0,0x5c,0xa0,0x11,0x10,0x0,0x0,0x0,0x0,0x5d,0xb4,0xec, + 0x10,0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3,0x10,0x0,0x0,0x0,0x0,0x5f,0x94,0xce, + 0x10,0x0,0x0,0x0,0x0,0x60,0x5f,0xd5,0x10,0x0,0x0,0x0,0x0,0x61,0x7d,0xea, + 0x90,0x0,0x0,0x0,0x0,0x62,0x3f,0xb7,0x10,0x0,0x0,0x0,0x0,0x63,0x5d,0xcc, + 0x90,0x0,0x0,0x0,0x0,0x64,0x1f,0x99,0x10,0x0,0x0,0x0,0x0,0x65,0x3d,0xae, + 0x90,0x0,0x0,0x0,0x0,0x66,0x8,0xb5,0x90,0x0,0x0,0x0,0x0,0x67,0x1d,0x90, + 0x90,0x0,0x0,0x0,0x0,0x67,0xe8,0x97,0x90,0x0,0x0,0x0,0x0,0x68,0xfd,0x72, + 0x90,0x0,0x0,0x0,0x0,0x69,0xc8,0x79,0x90,0x0,0x0,0x0,0x0,0x6a,0xdd,0x54, + 0x90,0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b,0x90,0x0,0x0,0x0,0x0,0x6c,0xc6,0x71, + 0x10,0x0,0x0,0x0,0x0,0x6d,0x88,0x3d,0x90,0x0,0x0,0x0,0x0,0x6e,0xa6,0x53, + 0x10,0x0,0x0,0x0,0x0,0x6f,0x68,0x1f,0x90,0x0,0x0,0x0,0x0,0x70,0x86,0x35, + 0x10,0x0,0x0,0x0,0x0,0x71,0x51,0x3c,0x10,0x0,0x0,0x0,0x0,0x72,0x66,0x17, + 0x10,0x0,0x0,0x0,0x0,0x73,0x31,0x1e,0x10,0x0,0x0,0x0,0x0,0x74,0x45,0xf9, + 0x10,0x0,0x0,0x0,0x0,0x75,0x11,0x0,0x10,0x0,0x0,0x0,0x0,0x76,0x2f,0x15, + 0x90,0x0,0x0,0x0,0x0,0x76,0xf0,0xe2,0x10,0x0,0x0,0x0,0x0,0x78,0xe,0xf7, + 0x90,0x0,0x0,0x0,0x0,0x78,0xd0,0xc4,0x10,0x0,0x0,0x0,0x0,0x79,0xee,0xd9, + 0x90,0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6,0x10,0x0,0x0,0x0,0x0,0x7b,0xce,0xbb, + 0x90,0x0,0x0,0x0,0x0,0x7c,0x99,0xc2,0x90,0x0,0x0,0x0,0x0,0x7d,0xae,0x9d, + 0x90,0x0,0x0,0x0,0x0,0x7e,0x79,0xa4,0x90,0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f, + 0x90,0x0,0x1,0x2,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x6, 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x7,0x6,0x7,0x6, - 0x7,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x8,0xa,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x9,0xa,0x9, - 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9, - 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x6,0x9,0xa,0x9,0xa, - 0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa, - 0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa, - 0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa, - 0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa, - 0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa, - 0xff,0xff,0xfa,0x24,0x0,0x0,0xff,0xff,0xfa,0xf,0x0,0x4,0x0,0x0,0x8,0x1f, - 0x1,0x8,0x0,0x0,0xe,0x10,0x1,0xc,0x0,0x0,0x0,0x0,0x0,0x10,0x0,0x0, - 0xe,0x10,0x1,0x8,0x0,0x0,0x0,0x0,0x0,0x10,0x0,0x0,0xe,0x10,0x1,0x8, - 0x0,0x0,0xe,0x10,0x0,0x8,0x0,0x0,0xe,0x10,0x1,0x8,0x0,0x0,0x0,0x0, - 0x0,0x10,0x4c,0x4d,0x54,0x0,0x44,0x4d,0x54,0x0,0x49,0x53,0x54,0x0,0x42,0x53, - 0x54,0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x0,0x0,0x0,0x1, - 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0xa,0x47,0x4d,0x54, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x7,0x9,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, + 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, + 0x9,0x8,0x9,0x6,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, + 0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, + 0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, + 0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, + 0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, + 0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0xff,0xff,0xfa,0x24,0x0,0x0,0xff,0xff, + 0xfa,0xf,0x0,0x4,0x0,0x0,0x8,0x1f,0x1,0x8,0x0,0x0,0xe,0x10,0x1,0xc, + 0x0,0x0,0x0,0x0,0x0,0x10,0x0,0x0,0xe,0x10,0x1,0x8,0x0,0x0,0x0,0x0, + 0x0,0x10,0x0,0x0,0xe,0x10,0x0,0x8,0x0,0x0,0xe,0x10,0x1,0x8,0x0,0x0, + 0x0,0x0,0x0,0x10,0x4c,0x4d,0x54,0x0,0x44,0x4d,0x54,0x0,0x49,0x53,0x54,0x0, + 0x42,0x53,0x54,0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x0,0x0, + 0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0xa,0x47,0x4d,0x54, 0x30,0x49,0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2f,0x31,0x2c,0x4d,0x31, 0x30,0x2e,0x35,0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Hongkong - 0x0,0x0,0x4,0xa5, + // /home/konrad/src/smoke/tzone/zoneinfo/HST + 0x0,0x0,0x0,0x80, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x46,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x11,0x80,0x0,0x0,0x0,0x85, - 0x69,0x5a,0xf6,0xc9,0xea,0x57,0xb8,0xca,0xda,0x3a,0xa8,0xcb,0x4b,0x78,0x80,0xd2, - 0x4c,0x62,0x70,0xd3,0x6a,0xb7,0x38,0xd4,0x93,0x4a,0xa8,0xd5,0x42,0xb0,0x38,0xd6, - 0x9a,0xb9,0xa8,0xd7,0x3e,0x41,0xb8,0xd8,0x2e,0x24,0xa8,0xd8,0xf9,0x39,0xb8,0xda, - 0xe,0x6,0xa8,0xda,0xd9,0x1b,0xb8,0xdb,0xed,0xe8,0xa8,0xdc,0xb8,0xfd,0xb8,0xdd, - 0xcd,0xca,0xa8,0xde,0xa2,0x1a,0x38,0xdf,0xac,0x5b,0x28,0xe0,0x81,0xfc,0x38,0xe1, - 0x96,0xc9,0x28,0xe2,0x4f,0x69,0x38,0xe3,0x76,0xab,0x28,0xe4,0x2f,0x4b,0x38,0xe5, - 0x5f,0xc7,0xa8,0xe6,0xf,0x2d,0x38,0xe7,0x3f,0xa9,0xa8,0xe7,0xf8,0x49,0xb8,0xe9, - 0x1f,0x8b,0xa8,0xe9,0xd8,0x2b,0xb8,0xea,0xff,0x6d,0xa8,0xeb,0xb8,0xd,0xb8,0xec, - 0xdf,0x4f,0xa8,0xed,0x97,0xef,0xb8,0xee,0xc8,0x6c,0x28,0xef,0x77,0xd1,0xb8,0xf0, - 0xa8,0x4e,0x28,0xf1,0x57,0xb3,0xb8,0xf2,0x88,0x30,0x28,0xf3,0x40,0xd0,0x38,0xf4, - 0x68,0x12,0x28,0xf5,0x20,0xb2,0x38,0xf6,0x47,0xf4,0x28,0xf7,0x25,0x7e,0x38,0xf8, - 0x15,0x61,0x28,0xf9,0x5,0x60,0x38,0xf9,0xf5,0x43,0x28,0xfa,0xe5,0x42,0x38,0xfb, - 0xde,0x5f,0xa8,0xfc,0xce,0x5e,0xb8,0xfd,0xbe,0x41,0xa8,0xfe,0xae,0x40,0xb8,0xff, - 0x9e,0x23,0xa8,0x0,0x8e,0x22,0xb8,0x1,0x7e,0x5,0xa8,0x2,0x6e,0x4,0xb8,0x3, - 0x5d,0xe7,0xa8,0x4,0x4d,0xe6,0xb8,0x5,0x47,0x4,0x28,0x6,0x37,0x3,0x38,0x7, - 0x26,0xe6,0x28,0x7,0x83,0x3d,0x38,0x9,0x6,0xc8,0x28,0x9,0xf6,0xc7,0x38,0xa, - 0xe6,0xaa,0x28,0xb,0xd6,0xa9,0x38,0xc,0xc6,0x8c,0x28,0x11,0x9b,0x39,0x38,0x12, - 0x6f,0x6c,0xa8,0x0,0x2,0x1,0x2,0x3,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x0,0x0,0x6b,0xa,0x0,0x0,0x0, - 0x0,0x7e,0x90,0x1,0x4,0x0,0x0,0x70,0x80,0x0,0x9,0x0,0x0,0x7e,0x90,0x0, - 0xd,0x0,0x0,0x70,0x80,0x0,0x9,0x4c,0x4d,0x54,0x0,0x48,0x4b,0x53,0x54,0x0, - 0x48,0x4b,0x54,0x0,0x4a,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x46,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x11,0xf8,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x85,0x69,0x5a,0xf6,0xff,0xff, - 0xff,0xff,0xc9,0xea,0x57,0xb8,0xff,0xff,0xff,0xff,0xca,0xda,0x3a,0xa8,0xff,0xff, - 0xff,0xff,0xcb,0x4b,0x78,0x80,0xff,0xff,0xff,0xff,0xd2,0x4c,0x62,0x70,0xff,0xff, - 0xff,0xff,0xd3,0x6a,0xb7,0x38,0xff,0xff,0xff,0xff,0xd4,0x93,0x4a,0xa8,0xff,0xff, - 0xff,0xff,0xd5,0x42,0xb0,0x38,0xff,0xff,0xff,0xff,0xd6,0x9a,0xb9,0xa8,0xff,0xff, - 0xff,0xff,0xd7,0x3e,0x41,0xb8,0xff,0xff,0xff,0xff,0xd8,0x2e,0x24,0xa8,0xff,0xff, - 0xff,0xff,0xd8,0xf9,0x39,0xb8,0xff,0xff,0xff,0xff,0xda,0xe,0x6,0xa8,0xff,0xff, - 0xff,0xff,0xda,0xd9,0x1b,0xb8,0xff,0xff,0xff,0xff,0xdb,0xed,0xe8,0xa8,0xff,0xff, - 0xff,0xff,0xdc,0xb8,0xfd,0xb8,0xff,0xff,0xff,0xff,0xdd,0xcd,0xca,0xa8,0xff,0xff, - 0xff,0xff,0xde,0xa2,0x1a,0x38,0xff,0xff,0xff,0xff,0xdf,0xac,0x5b,0x28,0xff,0xff, - 0xff,0xff,0xe0,0x81,0xfc,0x38,0xff,0xff,0xff,0xff,0xe1,0x96,0xc9,0x28,0xff,0xff, - 0xff,0xff,0xe2,0x4f,0x69,0x38,0xff,0xff,0xff,0xff,0xe3,0x76,0xab,0x28,0xff,0xff, - 0xff,0xff,0xe4,0x2f,0x4b,0x38,0xff,0xff,0xff,0xff,0xe5,0x5f,0xc7,0xa8,0xff,0xff, - 0xff,0xff,0xe6,0xf,0x2d,0x38,0xff,0xff,0xff,0xff,0xe7,0x3f,0xa9,0xa8,0xff,0xff, - 0xff,0xff,0xe7,0xf8,0x49,0xb8,0xff,0xff,0xff,0xff,0xe9,0x1f,0x8b,0xa8,0xff,0xff, - 0xff,0xff,0xe9,0xd8,0x2b,0xb8,0xff,0xff,0xff,0xff,0xea,0xff,0x6d,0xa8,0xff,0xff, - 0xff,0xff,0xeb,0xb8,0xd,0xb8,0xff,0xff,0xff,0xff,0xec,0xdf,0x4f,0xa8,0xff,0xff, - 0xff,0xff,0xed,0x97,0xef,0xb8,0xff,0xff,0xff,0xff,0xee,0xc8,0x6c,0x28,0xff,0xff, - 0xff,0xff,0xef,0x77,0xd1,0xb8,0xff,0xff,0xff,0xff,0xf0,0xa8,0x4e,0x28,0xff,0xff, - 0xff,0xff,0xf1,0x57,0xb3,0xb8,0xff,0xff,0xff,0xff,0xf2,0x88,0x30,0x28,0xff,0xff, - 0xff,0xff,0xf3,0x40,0xd0,0x38,0xff,0xff,0xff,0xff,0xf4,0x68,0x12,0x28,0xff,0xff, - 0xff,0xff,0xf5,0x20,0xb2,0x38,0xff,0xff,0xff,0xff,0xf6,0x47,0xf4,0x28,0xff,0xff, - 0xff,0xff,0xf7,0x25,0x7e,0x38,0xff,0xff,0xff,0xff,0xf8,0x15,0x61,0x28,0xff,0xff, - 0xff,0xff,0xf9,0x5,0x60,0x38,0xff,0xff,0xff,0xff,0xf9,0xf5,0x43,0x28,0xff,0xff, - 0xff,0xff,0xfa,0xe5,0x42,0x38,0xff,0xff,0xff,0xff,0xfb,0xde,0x5f,0xa8,0xff,0xff, - 0xff,0xff,0xfc,0xce,0x5e,0xb8,0xff,0xff,0xff,0xff,0xfd,0xbe,0x41,0xa8,0xff,0xff, - 0xff,0xff,0xfe,0xae,0x40,0xb8,0xff,0xff,0xff,0xff,0xff,0x9e,0x23,0xa8,0x0,0x0, - 0x0,0x0,0x0,0x8e,0x22,0xb8,0x0,0x0,0x0,0x0,0x1,0x7e,0x5,0xa8,0x0,0x0, - 0x0,0x0,0x2,0x6e,0x4,0xb8,0x0,0x0,0x0,0x0,0x3,0x5d,0xe7,0xa8,0x0,0x0, - 0x0,0x0,0x4,0x4d,0xe6,0xb8,0x0,0x0,0x0,0x0,0x5,0x47,0x4,0x28,0x0,0x0, - 0x0,0x0,0x6,0x37,0x3,0x38,0x0,0x0,0x0,0x0,0x7,0x26,0xe6,0x28,0x0,0x0, - 0x0,0x0,0x7,0x83,0x3d,0x38,0x0,0x0,0x0,0x0,0x9,0x6,0xc8,0x28,0x0,0x0, - 0x0,0x0,0x9,0xf6,0xc7,0x38,0x0,0x0,0x0,0x0,0xa,0xe6,0xaa,0x28,0x0,0x0, - 0x0,0x0,0xb,0xd6,0xa9,0x38,0x0,0x0,0x0,0x0,0xc,0xc6,0x8c,0x28,0x0,0x0, - 0x0,0x0,0x11,0x9b,0x39,0x38,0x0,0x0,0x0,0x0,0x12,0x6f,0x6c,0xa8,0x0,0x2, - 0x1,0x2,0x3,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x0,0x0,0x6b,0xa,0x0,0x0,0x0,0x0,0x7e,0x90,0x1,0x4, - 0x0,0x0,0x70,0x80,0x0,0x9,0x0,0x0,0x7e,0x90,0x0,0xd,0x0,0x0,0x70,0x80, - 0x0,0x9,0x4c,0x4d,0x54,0x0,0x48,0x4b,0x53,0x54,0x0,0x48,0x4b,0x54,0x0,0x4a, - 0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x48,0x4b, - 0x54,0x2d,0x38,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/MET + 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0xff,0xff,0x73,0x60,0x0, + 0x0,0x48,0x53,0x54,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0, + 0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0, + 0x0,0x0,0x4,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0x73,0x60, + 0x0,0x0,0x48,0x53,0x54,0x0,0x0,0x0,0xa,0x48,0x53,0x54,0x31,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/CET 0x0,0x0,0x8,0x36, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, @@ -3894,8 +2886,8 @@ static const unsigned char qt_resource_data[] = { 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, 0x3,0x2,0x3,0x0,0x0,0x1c,0x20,0x1,0x0,0x0,0x0,0xe,0x10,0x0,0x5,0x0, - 0x0,0x1c,0x20,0x1,0x0,0x0,0x0,0xe,0x10,0x0,0x5,0x4d,0x45,0x53,0x54,0x0, - 0x4d,0x45,0x54,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66, + 0x0,0x1c,0x20,0x1,0x0,0x0,0x0,0xe,0x10,0x0,0x5,0x43,0x45,0x53,0x54,0x0, + 0x43,0x45,0x54,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66, 0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x88, 0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x9,0xff,0xff,0xff,0xff,0x9b,0xc,0x17,0x60, @@ -3976,83 +2968,19 @@ static const unsigned char qt_resource_data[] = { 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, 0x0,0x0,0x1c,0x20,0x1,0x0,0x0,0x0,0xe,0x10,0x0,0x5,0x0,0x0,0x1c,0x20, - 0x1,0x0,0x0,0x0,0xe,0x10,0x0,0x5,0x4d,0x45,0x53,0x54,0x0,0x4d,0x45,0x54, - 0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0xa,0x4d,0x45,0x54,0x2d,0x31,0x4d, + 0x1,0x0,0x0,0x0,0xe,0x10,0x0,0x5,0x43,0x45,0x53,0x54,0x0,0x43,0x45,0x54, + 0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0xa,0x43,0x45,0x54,0x2d,0x31,0x43, 0x45,0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2c,0x4d,0x31,0x30,0x2e,0x35, 0x2e,0x30,0x2f,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Zulu - 0x0,0x0,0x0,0x7f, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, - 0x0,0x55,0x54,0x43,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0, - 0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0, - 0x0,0x0,0x4,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x55,0x54,0x43,0x0,0x0,0x0,0xa,0x55,0x54,0x43,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/ROC - 0x0,0x0,0x3,0x20, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x29,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x15,0x80,0x0,0x0,0x0,0xc3, - 0x55,0x49,0x80,0xd2,0x54,0x59,0x80,0xd3,0x8b,0x7b,0x80,0xd4,0x42,0xad,0xf0,0xd5, - 0x45,0x22,0x0,0xd6,0x4c,0xbf,0xf0,0xd7,0x3c,0xbf,0x0,0xd8,0x6,0x66,0x70,0xd9, - 0x1d,0xf2,0x80,0xd9,0xe7,0x99,0xf0,0xda,0xff,0x26,0x0,0xdb,0xc8,0xcd,0x70,0xdc, - 0xe0,0x59,0x80,0xdd,0xaa,0x0,0xf0,0xde,0x72,0x73,0x0,0xdf,0xb5,0x64,0x70,0xe0, - 0x7c,0x85,0x0,0xe1,0x96,0x97,0xf0,0xe2,0x5d,0xb8,0x80,0xe3,0x77,0xcb,0x70,0xe4, - 0x3e,0xec,0x0,0xe5,0x30,0x20,0x70,0xe6,0x21,0x71,0x0,0xe7,0x12,0xa5,0x70,0xe8, - 0x2,0xa4,0x80,0xe8,0xf3,0xd8,0xf0,0xe9,0xe3,0xd8,0x0,0xea,0xd5,0xc,0x70,0xeb, - 0xc5,0xb,0x80,0xec,0xb6,0x3f,0xf0,0xed,0xf7,0xfc,0x0,0xee,0x98,0xc4,0xf0,0xef, - 0xd9,0x2f,0x80,0xf0,0x79,0xf8,0x70,0x7,0xfc,0x56,0x0,0x8,0xed,0x8a,0x70,0x9, - 0xdd,0x89,0x80,0xa,0xce,0xbd,0xf0,0x11,0xdb,0xa1,0x80,0x12,0x54,0xdd,0x70,0x1, - 0x2,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x0,0x0,0x71,0xe8,0x0,0x0,0x0,0x0, - 0x70,0x80,0x0,0x4,0x0,0x0,0x7e,0x90,0x0,0x9,0x0,0x0,0x7e,0x90,0x1,0xd, - 0x0,0x0,0x70,0x80,0x0,0x11,0x4c,0x4d,0x54,0x0,0x4a,0x57,0x53,0x54,0x0,0x4a, - 0x53,0x54,0x0,0x43,0x44,0x54,0x0,0x43,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0, - 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2a,0x0,0x0,0x0,0x5,0x0,0x0,0x0, - 0x15,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x74,0xce,0xf0, - 0x18,0xff,0xff,0xff,0xff,0xc3,0x55,0x49,0x80,0xff,0xff,0xff,0xff,0xd2,0x54,0x59, - 0x80,0xff,0xff,0xff,0xff,0xd3,0x8b,0x7b,0x80,0xff,0xff,0xff,0xff,0xd4,0x42,0xad, - 0xf0,0xff,0xff,0xff,0xff,0xd5,0x45,0x22,0x0,0xff,0xff,0xff,0xff,0xd6,0x4c,0xbf, - 0xf0,0xff,0xff,0xff,0xff,0xd7,0x3c,0xbf,0x0,0xff,0xff,0xff,0xff,0xd8,0x6,0x66, - 0x70,0xff,0xff,0xff,0xff,0xd9,0x1d,0xf2,0x80,0xff,0xff,0xff,0xff,0xd9,0xe7,0x99, - 0xf0,0xff,0xff,0xff,0xff,0xda,0xff,0x26,0x0,0xff,0xff,0xff,0xff,0xdb,0xc8,0xcd, - 0x70,0xff,0xff,0xff,0xff,0xdc,0xe0,0x59,0x80,0xff,0xff,0xff,0xff,0xdd,0xaa,0x0, - 0xf0,0xff,0xff,0xff,0xff,0xde,0x72,0x73,0x0,0xff,0xff,0xff,0xff,0xdf,0xb5,0x64, - 0x70,0xff,0xff,0xff,0xff,0xe0,0x7c,0x85,0x0,0xff,0xff,0xff,0xff,0xe1,0x96,0x97, - 0xf0,0xff,0xff,0xff,0xff,0xe2,0x5d,0xb8,0x80,0xff,0xff,0xff,0xff,0xe3,0x77,0xcb, - 0x70,0xff,0xff,0xff,0xff,0xe4,0x3e,0xec,0x0,0xff,0xff,0xff,0xff,0xe5,0x30,0x20, - 0x70,0xff,0xff,0xff,0xff,0xe6,0x21,0x71,0x0,0xff,0xff,0xff,0xff,0xe7,0x12,0xa5, - 0x70,0xff,0xff,0xff,0xff,0xe8,0x2,0xa4,0x80,0xff,0xff,0xff,0xff,0xe8,0xf3,0xd8, - 0xf0,0xff,0xff,0xff,0xff,0xe9,0xe3,0xd8,0x0,0xff,0xff,0xff,0xff,0xea,0xd5,0xc, - 0x70,0xff,0xff,0xff,0xff,0xeb,0xc5,0xb,0x80,0xff,0xff,0xff,0xff,0xec,0xb6,0x3f, - 0xf0,0xff,0xff,0xff,0xff,0xed,0xf7,0xfc,0x0,0xff,0xff,0xff,0xff,0xee,0x98,0xc4, - 0xf0,0xff,0xff,0xff,0xff,0xef,0xd9,0x2f,0x80,0xff,0xff,0xff,0xff,0xf0,0x79,0xf8, - 0x70,0x0,0x0,0x0,0x0,0x7,0xfc,0x56,0x0,0x0,0x0,0x0,0x0,0x8,0xed,0x8a, - 0x70,0x0,0x0,0x0,0x0,0x9,0xdd,0x89,0x80,0x0,0x0,0x0,0x0,0xa,0xce,0xbd, - 0xf0,0x0,0x0,0x0,0x0,0x11,0xdb,0xa1,0x80,0x0,0x0,0x0,0x0,0x12,0x54,0xdd, - 0x70,0x0,0x1,0x2,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x0,0x0,0x71,0xe8,0x0, - 0x0,0x0,0x0,0x70,0x80,0x0,0x4,0x0,0x0,0x7e,0x90,0x0,0x9,0x0,0x0,0x7e, - 0x90,0x1,0xd,0x0,0x0,0x70,0x80,0x0,0x11,0x4c,0x4d,0x54,0x0,0x4a,0x57,0x53, - 0x54,0x0,0x4a,0x53,0x54,0x0,0x43,0x44,0x54,0x0,0x43,0x53,0x54,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x43,0x53,0x54,0x2d,0x38,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/zone1970.tab - 0x0,0x0,0x45,0x1, + 0x0,0x0,0x45,0x55, 0x23, 0x20,0x74,0x7a,0x20,0x7a,0x6f,0x6e,0x65,0x20,0x64,0x65,0x73,0x63,0x72,0x69,0x70, 0x74,0x69,0x6f,0x6e,0x73,0xa,0x23,0xa,0x23,0x20,0x54,0x68,0x69,0x73,0x20,0x66, 0x69,0x6c,0x65,0x20,0x69,0x73,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x70,0x75, 0x62,0x6c,0x69,0x63,0x20,0x64,0x6f,0x6d,0x61,0x69,0x6e,0x2e,0xa,0x23,0xa,0x23, 0x20,0x46,0x72,0x6f,0x6d,0x20,0x50,0x61,0x75,0x6c,0x20,0x45,0x67,0x67,0x65,0x72, - 0x74,0x20,0x28,0x32,0x30,0x31,0x34,0x2d,0x30,0x37,0x2d,0x33,0x31,0x29,0x3a,0xa, + 0x74,0x20,0x28,0x32,0x30,0x31,0x37,0x2d,0x31,0x30,0x2d,0x30,0x31,0x29,0x3a,0xa, 0x23,0x20,0x54,0x68,0x69,0x73,0x20,0x66,0x69,0x6c,0x65,0x20,0x63,0x6f,0x6e,0x74, 0x61,0x69,0x6e,0x73,0x20,0x61,0x20,0x74,0x61,0x62,0x6c,0x65,0x20,0x77,0x68,0x65, 0x72,0x65,0x20,0x65,0x61,0x63,0x68,0x20,0x72,0x6f,0x77,0x20,0x73,0x74,0x61,0x6e, @@ -4098,1135 +3026,2687 @@ static const unsigned char qt_resource_data[] = { 0x20,0x6f,0x66,0x20,0x54,0x5a,0x20,0x65,0x6e,0x76,0x69,0x72,0x6f,0x6e,0x6d,0x65, 0x6e,0x74,0x20,0x76,0x61,0x72,0x69,0x61,0x62,0x6c,0x65,0x2e,0xa,0x23,0x20,0x20, 0x20,0x20,0x20,0x50,0x6c,0x65,0x61,0x73,0x65,0x20,0x73,0x65,0x65,0x20,0x74,0x68, - 0x65,0x20,0x27,0x54,0x68,0x65,0x6f,0x72,0x79,0x27,0x20,0x66,0x69,0x6c,0x65,0x20, - 0x66,0x6f,0x72,0x20,0x68,0x6f,0x77,0x20,0x7a,0x6f,0x6e,0x65,0x20,0x6e,0x61,0x6d, - 0x65,0x73,0x20,0x61,0x72,0x65,0x20,0x63,0x68,0x6f,0x73,0x65,0x6e,0x2e,0xa,0x23, - 0x20,0x20,0x20,0x20,0x20,0x49,0x66,0x20,0x6d,0x75,0x6c,0x74,0x69,0x70,0x6c,0x65, - 0x20,0x7a,0x6f,0x6e,0x65,0x73,0x20,0x6f,0x76,0x65,0x72,0x6c,0x61,0x70,0x20,0x61, - 0x20,0x63,0x6f,0x75,0x6e,0x74,0x72,0x79,0x2c,0x20,0x65,0x61,0x63,0x68,0x20,0x68, - 0x61,0x73,0x20,0x61,0x20,0x72,0x6f,0x77,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0xa, - 0x23,0x20,0x20,0x20,0x20,0x20,0x74,0x61,0x62,0x6c,0x65,0x2c,0x20,0x77,0x69,0x74, - 0x68,0x20,0x65,0x61,0x63,0x68,0x20,0x63,0x6f,0x6c,0x75,0x6d,0x6e,0x20,0x31,0x20, - 0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x69,0x6e,0x67,0x20,0x74,0x68,0x65,0x20,0x63, - 0x6f,0x75,0x6e,0x74,0x72,0x79,0x20,0x63,0x6f,0x64,0x65,0x2e,0xa,0x23,0x20,0x34, - 0x2e,0x20,0x20,0x43,0x6f,0x6d,0x6d,0x65,0x6e,0x74,0x73,0x3b,0x20,0x70,0x72,0x65, - 0x73,0x65,0x6e,0x74,0x20,0x69,0x66,0x20,0x61,0x6e,0x64,0x20,0x6f,0x6e,0x6c,0x79, - 0x20,0x69,0x66,0x20,0x61,0x20,0x63,0x6f,0x75,0x6e,0x74,0x72,0x79,0x20,0x68,0x61, - 0x73,0x20,0x6d,0x75,0x6c,0x74,0x69,0x70,0x6c,0x65,0x20,0x7a,0x6f,0x6e,0x65,0x73, - 0x2e,0xa,0x23,0xa,0x23,0x20,0x49,0x66,0x20,0x61,0x20,0x7a,0x6f,0x6e,0x65,0x20, - 0x63,0x6f,0x76,0x65,0x72,0x73,0x20,0x6d,0x75,0x6c,0x74,0x69,0x70,0x6c,0x65,0x20, - 0x63,0x6f,0x75,0x6e,0x74,0x72,0x69,0x65,0x73,0x2c,0x20,0x74,0x68,0x65,0x20,0x6d, - 0x6f,0x73,0x74,0x2d,0x70,0x6f,0x70,0x75,0x6c,0x6f,0x75,0x73,0x20,0x63,0x69,0x74, - 0x79,0x20,0x69,0x73,0x20,0x75,0x73,0x65,0x64,0x2c,0xa,0x23,0x20,0x61,0x6e,0x64, - 0x20,0x74,0x68,0x61,0x74,0x20,0x63,0x6f,0x75,0x6e,0x74,0x72,0x79,0x20,0x69,0x73, - 0x20,0x6c,0x69,0x73,0x74,0x65,0x64,0x20,0x66,0x69,0x72,0x73,0x74,0x20,0x69,0x6e, - 0x20,0x63,0x6f,0x6c,0x75,0x6d,0x6e,0x20,0x31,0x3b,0x20,0x61,0x6e,0x79,0x20,0x6f, - 0x74,0x68,0x65,0x72,0x20,0x63,0x6f,0x75,0x6e,0x74,0x72,0x69,0x65,0x73,0xa,0x23, - 0x20,0x61,0x72,0x65,0x20,0x6c,0x69,0x73,0x74,0x65,0x64,0x20,0x61,0x6c,0x70,0x68, - 0x61,0x62,0x65,0x74,0x69,0x63,0x61,0x6c,0x6c,0x79,0x20,0x62,0x79,0x20,0x63,0x6f, - 0x75,0x6e,0x74,0x72,0x79,0x20,0x63,0x6f,0x64,0x65,0x2e,0x20,0x20,0x54,0x68,0x65, - 0x20,0x74,0x61,0x62,0x6c,0x65,0x20,0x69,0x73,0x20,0x73,0x6f,0x72,0x74,0x65,0x64, - 0xa,0x23,0x20,0x66,0x69,0x72,0x73,0x74,0x20,0x62,0x79,0x20,0x63,0x6f,0x75,0x6e, - 0x74,0x72,0x79,0x20,0x63,0x6f,0x64,0x65,0x2c,0x20,0x74,0x68,0x65,0x6e,0x20,0x28, - 0x69,0x66,0x20,0x70,0x6f,0x73,0x73,0x69,0x62,0x6c,0x65,0x29,0x20,0x62,0x79,0x20, - 0x61,0x6e,0x20,0x6f,0x72,0x64,0x65,0x72,0x20,0x77,0x69,0x74,0x68,0x69,0x6e,0x20, - 0x74,0x68,0x65,0xa,0x23,0x20,0x63,0x6f,0x75,0x6e,0x74,0x72,0x79,0x20,0x74,0x68, - 0x61,0x74,0x20,0x28,0x31,0x29,0x20,0x6d,0x61,0x6b,0x65,0x73,0x20,0x73,0x6f,0x6d, - 0x65,0x20,0x67,0x65,0x6f,0x67,0x72,0x61,0x70,0x68,0x69,0x63,0x61,0x6c,0x20,0x73, - 0x65,0x6e,0x73,0x65,0x2c,0x20,0x61,0x6e,0x64,0x20,0x28,0x32,0x29,0x20,0x70,0x75, - 0x74,0x73,0x20,0x74,0x68,0x65,0xa,0x23,0x20,0x6d,0x6f,0x73,0x74,0x20,0x70,0x6f, - 0x70,0x75,0x6c,0x6f,0x75,0x73,0x20,0x7a,0x6f,0x6e,0x65,0x73,0x20,0x66,0x69,0x72, - 0x73,0x74,0x2c,0x20,0x77,0x68,0x65,0x72,0x65,0x20,0x74,0x68,0x61,0x74,0x20,0x64, - 0x6f,0x65,0x73,0x20,0x6e,0x6f,0x74,0x20,0x63,0x6f,0x6e,0x74,0x72,0x61,0x64,0x69, - 0x63,0x74,0x20,0x28,0x31,0x29,0x2e,0xa,0x23,0xa,0x23,0x20,0x54,0x68,0x69,0x73, - 0x20,0x74,0x61,0x62,0x6c,0x65,0x20,0x69,0x73,0x20,0x69,0x6e,0x74,0x65,0x6e,0x64, - 0x65,0x64,0x20,0x61,0x73,0x20,0x61,0x6e,0x20,0x61,0x69,0x64,0x20,0x66,0x6f,0x72, - 0x20,0x75,0x73,0x65,0x72,0x73,0x2c,0x20,0x74,0x6f,0x20,0x68,0x65,0x6c,0x70,0x20, - 0x74,0x68,0x65,0x6d,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x20,0x74,0x69,0x6d,0x65, - 0xa,0x23,0x20,0x7a,0x6f,0x6e,0x65,0x20,0x64,0x61,0x74,0x61,0x20,0x65,0x6e,0x74, - 0x72,0x69,0x65,0x73,0x20,0x61,0x70,0x70,0x72,0x6f,0x70,0x72,0x69,0x61,0x74,0x65, - 0x20,0x66,0x6f,0x72,0x20,0x74,0x68,0x65,0x69,0x72,0x20,0x70,0x72,0x61,0x63,0x74, - 0x69,0x63,0x61,0x6c,0x20,0x6e,0x65,0x65,0x64,0x73,0x2e,0x20,0x20,0x49,0x74,0x20, - 0x69,0x73,0x20,0x6e,0x6f,0x74,0xa,0x23,0x20,0x69,0x6e,0x74,0x65,0x6e,0x64,0x65, - 0x64,0x20,0x74,0x6f,0x20,0x74,0x61,0x6b,0x65,0x20,0x6f,0x72,0x20,0x65,0x6e,0x64, - 0x6f,0x72,0x73,0x65,0x20,0x61,0x6e,0x79,0x20,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f, - 0x6e,0x20,0x6f,0x6e,0x20,0x6c,0x65,0x67,0x61,0x6c,0x20,0x6f,0x72,0x20,0x74,0x65, - 0x72,0x72,0x69,0x74,0x6f,0x72,0x69,0x61,0x6c,0x20,0x63,0x6c,0x61,0x69,0x6d,0x73, - 0x2e,0xa,0x23,0xa,0x23,0x63,0x6f,0x75,0x6e,0x74,0x72,0x79,0x2d,0xa,0x23,0x63, - 0x6f,0x64,0x65,0x73,0x9,0x63,0x6f,0x6f,0x72,0x64,0x69,0x6e,0x61,0x74,0x65,0x73, - 0x9,0x54,0x5a,0x9,0x63,0x6f,0x6d,0x6d,0x65,0x6e,0x74,0x73,0xa,0x41,0x44,0x9, - 0x2b,0x34,0x32,0x33,0x30,0x2b,0x30,0x30,0x31,0x33,0x31,0x9,0x45,0x75,0x72,0x6f, - 0x70,0x65,0x2f,0x41,0x6e,0x64,0x6f,0x72,0x72,0x61,0xa,0x41,0x45,0x2c,0x4f,0x4d, - 0x9,0x2b,0x32,0x35,0x31,0x38,0x2b,0x30,0x35,0x35,0x31,0x38,0x9,0x41,0x73,0x69, - 0x61,0x2f,0x44,0x75,0x62,0x61,0x69,0xa,0x41,0x46,0x9,0x2b,0x33,0x34,0x33,0x31, - 0x2b,0x30,0x36,0x39,0x31,0x32,0x9,0x41,0x73,0x69,0x61,0x2f,0x4b,0x61,0x62,0x75, - 0x6c,0xa,0x41,0x4c,0x9,0x2b,0x34,0x31,0x32,0x30,0x2b,0x30,0x31,0x39,0x35,0x30, - 0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x54,0x69,0x72,0x61,0x6e,0x65,0xa,0x41, - 0x4d,0x9,0x2b,0x34,0x30,0x31,0x31,0x2b,0x30,0x34,0x34,0x33,0x30,0x9,0x41,0x73, - 0x69,0x61,0x2f,0x59,0x65,0x72,0x65,0x76,0x61,0x6e,0xa,0x41,0x51,0x9,0x2d,0x36, - 0x36,0x31,0x37,0x2b,0x31,0x31,0x30,0x33,0x31,0x9,0x41,0x6e,0x74,0x61,0x72,0x63, - 0x74,0x69,0x63,0x61,0x2f,0x43,0x61,0x73,0x65,0x79,0x9,0x43,0x61,0x73,0x65,0x79, - 0xa,0x41,0x51,0x9,0x2d,0x36,0x38,0x33,0x35,0x2b,0x30,0x37,0x37,0x35,0x38,0x9, - 0x41,0x6e,0x74,0x61,0x72,0x63,0x74,0x69,0x63,0x61,0x2f,0x44,0x61,0x76,0x69,0x73, - 0x9,0x44,0x61,0x76,0x69,0x73,0xa,0x41,0x51,0x9,0x2d,0x36,0x36,0x34,0x30,0x2b, - 0x31,0x34,0x30,0x30,0x31,0x9,0x41,0x6e,0x74,0x61,0x72,0x63,0x74,0x69,0x63,0x61, - 0x2f,0x44,0x75,0x6d,0x6f,0x6e,0x74,0x44,0x55,0x72,0x76,0x69,0x6c,0x6c,0x65,0x9, - 0x44,0x75,0x6d,0x6f,0x6e,0x74,0x2d,0x64,0x27,0x55,0x72,0x76,0x69,0x6c,0x6c,0x65, - 0xa,0x41,0x51,0x9,0x2d,0x36,0x37,0x33,0x36,0x2b,0x30,0x36,0x32,0x35,0x33,0x9, - 0x41,0x6e,0x74,0x61,0x72,0x63,0x74,0x69,0x63,0x61,0x2f,0x4d,0x61,0x77,0x73,0x6f, - 0x6e,0x9,0x4d,0x61,0x77,0x73,0x6f,0x6e,0xa,0x41,0x51,0x9,0x2d,0x36,0x34,0x34, - 0x38,0x2d,0x30,0x36,0x34,0x30,0x36,0x9,0x41,0x6e,0x74,0x61,0x72,0x63,0x74,0x69, - 0x63,0x61,0x2f,0x50,0x61,0x6c,0x6d,0x65,0x72,0x9,0x50,0x61,0x6c,0x6d,0x65,0x72, - 0xa,0x41,0x51,0x9,0x2d,0x36,0x37,0x33,0x34,0x2d,0x30,0x36,0x38,0x30,0x38,0x9, - 0x41,0x6e,0x74,0x61,0x72,0x63,0x74,0x69,0x63,0x61,0x2f,0x52,0x6f,0x74,0x68,0x65, - 0x72,0x61,0x9,0x52,0x6f,0x74,0x68,0x65,0x72,0x61,0xa,0x41,0x51,0x9,0x2d,0x36, - 0x39,0x30,0x30,0x32,0x32,0x2b,0x30,0x33,0x39,0x33,0x35,0x32,0x34,0x9,0x41,0x6e, - 0x74,0x61,0x72,0x63,0x74,0x69,0x63,0x61,0x2f,0x53,0x79,0x6f,0x77,0x61,0x9,0x53, - 0x79,0x6f,0x77,0x61,0xa,0x41,0x51,0x9,0x2d,0x37,0x32,0x30,0x30,0x34,0x31,0x2b, - 0x30,0x30,0x32,0x33,0x32,0x30,0x36,0x9,0x41,0x6e,0x74,0x61,0x72,0x63,0x74,0x69, - 0x63,0x61,0x2f,0x54,0x72,0x6f,0x6c,0x6c,0x9,0x54,0x72,0x6f,0x6c,0x6c,0xa,0x41, - 0x51,0x9,0x2d,0x37,0x38,0x32,0x34,0x2b,0x31,0x30,0x36,0x35,0x34,0x9,0x41,0x6e, - 0x74,0x61,0x72,0x63,0x74,0x69,0x63,0x61,0x2f,0x56,0x6f,0x73,0x74,0x6f,0x6b,0x9, - 0x56,0x6f,0x73,0x74,0x6f,0x6b,0xa,0x41,0x52,0x9,0x2d,0x33,0x34,0x33,0x36,0x2d, - 0x30,0x35,0x38,0x32,0x37,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x41,0x72, - 0x67,0x65,0x6e,0x74,0x69,0x6e,0x61,0x2f,0x42,0x75,0x65,0x6e,0x6f,0x73,0x5f,0x41, - 0x69,0x72,0x65,0x73,0x9,0x42,0x75,0x65,0x6e,0x6f,0x73,0x20,0x41,0x69,0x72,0x65, - 0x73,0x20,0x28,0x42,0x41,0x2c,0x20,0x43,0x46,0x29,0xa,0x41,0x52,0x9,0x2d,0x33, - 0x31,0x32,0x34,0x2d,0x30,0x36,0x34,0x31,0x31,0x9,0x41,0x6d,0x65,0x72,0x69,0x63, - 0x61,0x2f,0x41,0x72,0x67,0x65,0x6e,0x74,0x69,0x6e,0x61,0x2f,0x43,0x6f,0x72,0x64, - 0x6f,0x62,0x61,0x9,0x41,0x72,0x67,0x65,0x6e,0x74,0x69,0x6e,0x61,0x20,0x28,0x6d, - 0x6f,0x73,0x74,0x20,0x61,0x72,0x65,0x61,0x73,0x3a,0x20,0x43,0x42,0x2c,0x20,0x43, - 0x43,0x2c,0x20,0x43,0x4e,0x2c,0x20,0x45,0x52,0x2c,0x20,0x46,0x4d,0x2c,0x20,0x4d, - 0x4e,0x2c,0x20,0x53,0x45,0x2c,0x20,0x53,0x46,0x29,0xa,0x41,0x52,0x9,0x2d,0x32, - 0x34,0x34,0x37,0x2d,0x30,0x36,0x35,0x32,0x35,0x9,0x41,0x6d,0x65,0x72,0x69,0x63, - 0x61,0x2f,0x41,0x72,0x67,0x65,0x6e,0x74,0x69,0x6e,0x61,0x2f,0x53,0x61,0x6c,0x74, - 0x61,0x9,0x53,0x61,0x6c,0x74,0x61,0x20,0x28,0x53,0x41,0x2c,0x20,0x4c,0x50,0x2c, - 0x20,0x4e,0x51,0x2c,0x20,0x52,0x4e,0x29,0xa,0x41,0x52,0x9,0x2d,0x32,0x34,0x31, - 0x31,0x2d,0x30,0x36,0x35,0x31,0x38,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f, - 0x41,0x72,0x67,0x65,0x6e,0x74,0x69,0x6e,0x61,0x2f,0x4a,0x75,0x6a,0x75,0x79,0x9, - 0x4a,0x75,0x6a,0x75,0x79,0x20,0x28,0x4a,0x59,0x29,0xa,0x41,0x52,0x9,0x2d,0x32, - 0x36,0x34,0x39,0x2d,0x30,0x36,0x35,0x31,0x33,0x9,0x41,0x6d,0x65,0x72,0x69,0x63, - 0x61,0x2f,0x41,0x72,0x67,0x65,0x6e,0x74,0x69,0x6e,0x61,0x2f,0x54,0x75,0x63,0x75, - 0x6d,0x61,0x6e,0x9,0x54,0x75,0x63,0x75,0x6d,0xc3,0xa1,0x6e,0x20,0x28,0x54,0x4d, - 0x29,0xa,0x41,0x52,0x9,0x2d,0x32,0x38,0x32,0x38,0x2d,0x30,0x36,0x35,0x34,0x37, + 0x65,0x20,0x74,0x68,0x65,0x6f,0x72,0x79,0x2e,0x68,0x74,0x6d,0x6c,0x20,0x66,0x69, + 0x6c,0x65,0x20,0x66,0x6f,0x72,0x20,0x68,0x6f,0x77,0x20,0x7a,0x6f,0x6e,0x65,0x20, + 0x6e,0x61,0x6d,0x65,0x73,0x20,0x61,0x72,0x65,0x20,0x63,0x68,0x6f,0x73,0x65,0x6e, + 0x2e,0xa,0x23,0x20,0x20,0x20,0x20,0x20,0x49,0x66,0x20,0x6d,0x75,0x6c,0x74,0x69, + 0x70,0x6c,0x65,0x20,0x7a,0x6f,0x6e,0x65,0x73,0x20,0x6f,0x76,0x65,0x72,0x6c,0x61, + 0x70,0x20,0x61,0x20,0x63,0x6f,0x75,0x6e,0x74,0x72,0x79,0x2c,0x20,0x65,0x61,0x63, + 0x68,0x20,0x68,0x61,0x73,0x20,0x61,0x20,0x72,0x6f,0x77,0x20,0x69,0x6e,0x20,0x74, + 0x68,0x65,0xa,0x23,0x20,0x20,0x20,0x20,0x20,0x74,0x61,0x62,0x6c,0x65,0x2c,0x20, + 0x77,0x69,0x74,0x68,0x20,0x65,0x61,0x63,0x68,0x20,0x63,0x6f,0x6c,0x75,0x6d,0x6e, + 0x20,0x31,0x20,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x69,0x6e,0x67,0x20,0x74,0x68, + 0x65,0x20,0x63,0x6f,0x75,0x6e,0x74,0x72,0x79,0x20,0x63,0x6f,0x64,0x65,0x2e,0xa, + 0x23,0x20,0x34,0x2e,0x20,0x20,0x43,0x6f,0x6d,0x6d,0x65,0x6e,0x74,0x73,0x3b,0x20, + 0x70,0x72,0x65,0x73,0x65,0x6e,0x74,0x20,0x69,0x66,0x20,0x61,0x6e,0x64,0x20,0x6f, + 0x6e,0x6c,0x79,0x20,0x69,0x66,0x20,0x61,0x20,0x63,0x6f,0x75,0x6e,0x74,0x72,0x79, + 0x20,0x68,0x61,0x73,0x20,0x6d,0x75,0x6c,0x74,0x69,0x70,0x6c,0x65,0x20,0x7a,0x6f, + 0x6e,0x65,0x73,0x2e,0xa,0x23,0xa,0x23,0x20,0x49,0x66,0x20,0x61,0x20,0x7a,0x6f, + 0x6e,0x65,0x20,0x63,0x6f,0x76,0x65,0x72,0x73,0x20,0x6d,0x75,0x6c,0x74,0x69,0x70, + 0x6c,0x65,0x20,0x63,0x6f,0x75,0x6e,0x74,0x72,0x69,0x65,0x73,0x2c,0x20,0x74,0x68, + 0x65,0x20,0x6d,0x6f,0x73,0x74,0x2d,0x70,0x6f,0x70,0x75,0x6c,0x6f,0x75,0x73,0x20, + 0x63,0x69,0x74,0x79,0x20,0x69,0x73,0x20,0x75,0x73,0x65,0x64,0x2c,0xa,0x23,0x20, + 0x61,0x6e,0x64,0x20,0x74,0x68,0x61,0x74,0x20,0x63,0x6f,0x75,0x6e,0x74,0x72,0x79, + 0x20,0x69,0x73,0x20,0x6c,0x69,0x73,0x74,0x65,0x64,0x20,0x66,0x69,0x72,0x73,0x74, + 0x20,0x69,0x6e,0x20,0x63,0x6f,0x6c,0x75,0x6d,0x6e,0x20,0x31,0x3b,0x20,0x61,0x6e, + 0x79,0x20,0x6f,0x74,0x68,0x65,0x72,0x20,0x63,0x6f,0x75,0x6e,0x74,0x72,0x69,0x65, + 0x73,0xa,0x23,0x20,0x61,0x72,0x65,0x20,0x6c,0x69,0x73,0x74,0x65,0x64,0x20,0x61, + 0x6c,0x70,0x68,0x61,0x62,0x65,0x74,0x69,0x63,0x61,0x6c,0x6c,0x79,0x20,0x62,0x79, + 0x20,0x63,0x6f,0x75,0x6e,0x74,0x72,0x79,0x20,0x63,0x6f,0x64,0x65,0x2e,0x20,0x20, + 0x54,0x68,0x65,0x20,0x74,0x61,0x62,0x6c,0x65,0x20,0x69,0x73,0x20,0x73,0x6f,0x72, + 0x74,0x65,0x64,0xa,0x23,0x20,0x66,0x69,0x72,0x73,0x74,0x20,0x62,0x79,0x20,0x63, + 0x6f,0x75,0x6e,0x74,0x72,0x79,0x20,0x63,0x6f,0x64,0x65,0x2c,0x20,0x74,0x68,0x65, + 0x6e,0x20,0x28,0x69,0x66,0x20,0x70,0x6f,0x73,0x73,0x69,0x62,0x6c,0x65,0x29,0x20, + 0x62,0x79,0x20,0x61,0x6e,0x20,0x6f,0x72,0x64,0x65,0x72,0x20,0x77,0x69,0x74,0x68, + 0x69,0x6e,0x20,0x74,0x68,0x65,0xa,0x23,0x20,0x63,0x6f,0x75,0x6e,0x74,0x72,0x79, + 0x20,0x74,0x68,0x61,0x74,0x20,0x28,0x31,0x29,0x20,0x6d,0x61,0x6b,0x65,0x73,0x20, + 0x73,0x6f,0x6d,0x65,0x20,0x67,0x65,0x6f,0x67,0x72,0x61,0x70,0x68,0x69,0x63,0x61, + 0x6c,0x20,0x73,0x65,0x6e,0x73,0x65,0x2c,0x20,0x61,0x6e,0x64,0x20,0x28,0x32,0x29, + 0x20,0x70,0x75,0x74,0x73,0x20,0x74,0x68,0x65,0xa,0x23,0x20,0x6d,0x6f,0x73,0x74, + 0x20,0x70,0x6f,0x70,0x75,0x6c,0x6f,0x75,0x73,0x20,0x7a,0x6f,0x6e,0x65,0x73,0x20, + 0x66,0x69,0x72,0x73,0x74,0x2c,0x20,0x77,0x68,0x65,0x72,0x65,0x20,0x74,0x68,0x61, + 0x74,0x20,0x64,0x6f,0x65,0x73,0x20,0x6e,0x6f,0x74,0x20,0x63,0x6f,0x6e,0x74,0x72, + 0x61,0x64,0x69,0x63,0x74,0x20,0x28,0x31,0x29,0x2e,0xa,0x23,0xa,0x23,0x20,0x54, + 0x68,0x69,0x73,0x20,0x74,0x61,0x62,0x6c,0x65,0x20,0x69,0x73,0x20,0x69,0x6e,0x74, + 0x65,0x6e,0x64,0x65,0x64,0x20,0x61,0x73,0x20,0x61,0x6e,0x20,0x61,0x69,0x64,0x20, + 0x66,0x6f,0x72,0x20,0x75,0x73,0x65,0x72,0x73,0x2c,0x20,0x74,0x6f,0x20,0x68,0x65, + 0x6c,0x70,0x20,0x74,0x68,0x65,0x6d,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x20,0x74, + 0x69,0x6d,0x65,0xa,0x23,0x20,0x7a,0x6f,0x6e,0x65,0x20,0x64,0x61,0x74,0x61,0x20, + 0x65,0x6e,0x74,0x72,0x69,0x65,0x73,0x20,0x61,0x70,0x70,0x72,0x6f,0x70,0x72,0x69, + 0x61,0x74,0x65,0x20,0x66,0x6f,0x72,0x20,0x74,0x68,0x65,0x69,0x72,0x20,0x70,0x72, + 0x61,0x63,0x74,0x69,0x63,0x61,0x6c,0x20,0x6e,0x65,0x65,0x64,0x73,0x2e,0x20,0x20, + 0x49,0x74,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0xa,0x23,0x20,0x69,0x6e,0x74,0x65, + 0x6e,0x64,0x65,0x64,0x20,0x74,0x6f,0x20,0x74,0x61,0x6b,0x65,0x20,0x6f,0x72,0x20, + 0x65,0x6e,0x64,0x6f,0x72,0x73,0x65,0x20,0x61,0x6e,0x79,0x20,0x70,0x6f,0x73,0x69, + 0x74,0x69,0x6f,0x6e,0x20,0x6f,0x6e,0x20,0x6c,0x65,0x67,0x61,0x6c,0x20,0x6f,0x72, + 0x20,0x74,0x65,0x72,0x72,0x69,0x74,0x6f,0x72,0x69,0x61,0x6c,0x20,0x63,0x6c,0x61, + 0x69,0x6d,0x73,0x2e,0xa,0x23,0xa,0x23,0x63,0x6f,0x75,0x6e,0x74,0x72,0x79,0x2d, + 0xa,0x23,0x63,0x6f,0x64,0x65,0x73,0x9,0x63,0x6f,0x6f,0x72,0x64,0x69,0x6e,0x61, + 0x74,0x65,0x73,0x9,0x54,0x5a,0x9,0x63,0x6f,0x6d,0x6d,0x65,0x6e,0x74,0x73,0xa, + 0x41,0x44,0x9,0x2b,0x34,0x32,0x33,0x30,0x2b,0x30,0x30,0x31,0x33,0x31,0x9,0x45, + 0x75,0x72,0x6f,0x70,0x65,0x2f,0x41,0x6e,0x64,0x6f,0x72,0x72,0x61,0xa,0x41,0x45, + 0x2c,0x4f,0x4d,0x9,0x2b,0x32,0x35,0x31,0x38,0x2b,0x30,0x35,0x35,0x31,0x38,0x9, + 0x41,0x73,0x69,0x61,0x2f,0x44,0x75,0x62,0x61,0x69,0xa,0x41,0x46,0x9,0x2b,0x33, + 0x34,0x33,0x31,0x2b,0x30,0x36,0x39,0x31,0x32,0x9,0x41,0x73,0x69,0x61,0x2f,0x4b, + 0x61,0x62,0x75,0x6c,0xa,0x41,0x4c,0x9,0x2b,0x34,0x31,0x32,0x30,0x2b,0x30,0x31, + 0x39,0x35,0x30,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x54,0x69,0x72,0x61,0x6e, + 0x65,0xa,0x41,0x4d,0x9,0x2b,0x34,0x30,0x31,0x31,0x2b,0x30,0x34,0x34,0x33,0x30, + 0x9,0x41,0x73,0x69,0x61,0x2f,0x59,0x65,0x72,0x65,0x76,0x61,0x6e,0xa,0x41,0x51, + 0x9,0x2d,0x36,0x36,0x31,0x37,0x2b,0x31,0x31,0x30,0x33,0x31,0x9,0x41,0x6e,0x74, + 0x61,0x72,0x63,0x74,0x69,0x63,0x61,0x2f,0x43,0x61,0x73,0x65,0x79,0x9,0x43,0x61, + 0x73,0x65,0x79,0xa,0x41,0x51,0x9,0x2d,0x36,0x38,0x33,0x35,0x2b,0x30,0x37,0x37, + 0x35,0x38,0x9,0x41,0x6e,0x74,0x61,0x72,0x63,0x74,0x69,0x63,0x61,0x2f,0x44,0x61, + 0x76,0x69,0x73,0x9,0x44,0x61,0x76,0x69,0x73,0xa,0x41,0x51,0x9,0x2d,0x36,0x36, + 0x34,0x30,0x2b,0x31,0x34,0x30,0x30,0x31,0x9,0x41,0x6e,0x74,0x61,0x72,0x63,0x74, + 0x69,0x63,0x61,0x2f,0x44,0x75,0x6d,0x6f,0x6e,0x74,0x44,0x55,0x72,0x76,0x69,0x6c, + 0x6c,0x65,0x9,0x44,0x75,0x6d,0x6f,0x6e,0x74,0x2d,0x64,0x27,0x55,0x72,0x76,0x69, + 0x6c,0x6c,0x65,0xa,0x41,0x51,0x9,0x2d,0x36,0x37,0x33,0x36,0x2b,0x30,0x36,0x32, + 0x35,0x33,0x9,0x41,0x6e,0x74,0x61,0x72,0x63,0x74,0x69,0x63,0x61,0x2f,0x4d,0x61, + 0x77,0x73,0x6f,0x6e,0x9,0x4d,0x61,0x77,0x73,0x6f,0x6e,0xa,0x41,0x51,0x9,0x2d, + 0x36,0x34,0x34,0x38,0x2d,0x30,0x36,0x34,0x30,0x36,0x9,0x41,0x6e,0x74,0x61,0x72, + 0x63,0x74,0x69,0x63,0x61,0x2f,0x50,0x61,0x6c,0x6d,0x65,0x72,0x9,0x50,0x61,0x6c, + 0x6d,0x65,0x72,0xa,0x41,0x51,0x9,0x2d,0x36,0x37,0x33,0x34,0x2d,0x30,0x36,0x38, + 0x30,0x38,0x9,0x41,0x6e,0x74,0x61,0x72,0x63,0x74,0x69,0x63,0x61,0x2f,0x52,0x6f, + 0x74,0x68,0x65,0x72,0x61,0x9,0x52,0x6f,0x74,0x68,0x65,0x72,0x61,0xa,0x41,0x51, + 0x9,0x2d,0x36,0x39,0x30,0x30,0x32,0x32,0x2b,0x30,0x33,0x39,0x33,0x35,0x32,0x34, + 0x9,0x41,0x6e,0x74,0x61,0x72,0x63,0x74,0x69,0x63,0x61,0x2f,0x53,0x79,0x6f,0x77, + 0x61,0x9,0x53,0x79,0x6f,0x77,0x61,0xa,0x41,0x51,0x9,0x2d,0x37,0x32,0x30,0x30, + 0x34,0x31,0x2b,0x30,0x30,0x32,0x33,0x32,0x30,0x36,0x9,0x41,0x6e,0x74,0x61,0x72, + 0x63,0x74,0x69,0x63,0x61,0x2f,0x54,0x72,0x6f,0x6c,0x6c,0x9,0x54,0x72,0x6f,0x6c, + 0x6c,0xa,0x41,0x51,0x9,0x2d,0x37,0x38,0x32,0x34,0x2b,0x31,0x30,0x36,0x35,0x34, + 0x9,0x41,0x6e,0x74,0x61,0x72,0x63,0x74,0x69,0x63,0x61,0x2f,0x56,0x6f,0x73,0x74, + 0x6f,0x6b,0x9,0x56,0x6f,0x73,0x74,0x6f,0x6b,0xa,0x41,0x52,0x9,0x2d,0x33,0x34, + 0x33,0x36,0x2d,0x30,0x35,0x38,0x32,0x37,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61, + 0x2f,0x41,0x72,0x67,0x65,0x6e,0x74,0x69,0x6e,0x61,0x2f,0x42,0x75,0x65,0x6e,0x6f, + 0x73,0x5f,0x41,0x69,0x72,0x65,0x73,0x9,0x42,0x75,0x65,0x6e,0x6f,0x73,0x20,0x41, + 0x69,0x72,0x65,0x73,0x20,0x28,0x42,0x41,0x2c,0x20,0x43,0x46,0x29,0xa,0x41,0x52, + 0x9,0x2d,0x33,0x31,0x32,0x34,0x2d,0x30,0x36,0x34,0x31,0x31,0x9,0x41,0x6d,0x65, + 0x72,0x69,0x63,0x61,0x2f,0x41,0x72,0x67,0x65,0x6e,0x74,0x69,0x6e,0x61,0x2f,0x43, + 0x6f,0x72,0x64,0x6f,0x62,0x61,0x9,0x41,0x72,0x67,0x65,0x6e,0x74,0x69,0x6e,0x61, + 0x20,0x28,0x6d,0x6f,0x73,0x74,0x20,0x61,0x72,0x65,0x61,0x73,0x3a,0x20,0x43,0x42, + 0x2c,0x20,0x43,0x43,0x2c,0x20,0x43,0x4e,0x2c,0x20,0x45,0x52,0x2c,0x20,0x46,0x4d, + 0x2c,0x20,0x4d,0x4e,0x2c,0x20,0x53,0x45,0x2c,0x20,0x53,0x46,0x29,0xa,0x41,0x52, + 0x9,0x2d,0x32,0x34,0x34,0x37,0x2d,0x30,0x36,0x35,0x32,0x35,0x9,0x41,0x6d,0x65, + 0x72,0x69,0x63,0x61,0x2f,0x41,0x72,0x67,0x65,0x6e,0x74,0x69,0x6e,0x61,0x2f,0x53, + 0x61,0x6c,0x74,0x61,0x9,0x53,0x61,0x6c,0x74,0x61,0x20,0x28,0x53,0x41,0x2c,0x20, + 0x4c,0x50,0x2c,0x20,0x4e,0x51,0x2c,0x20,0x52,0x4e,0x29,0xa,0x41,0x52,0x9,0x2d, + 0x32,0x34,0x31,0x31,0x2d,0x30,0x36,0x35,0x31,0x38,0x9,0x41,0x6d,0x65,0x72,0x69, + 0x63,0x61,0x2f,0x41,0x72,0x67,0x65,0x6e,0x74,0x69,0x6e,0x61,0x2f,0x4a,0x75,0x6a, + 0x75,0x79,0x9,0x4a,0x75,0x6a,0x75,0x79,0x20,0x28,0x4a,0x59,0x29,0xa,0x41,0x52, + 0x9,0x2d,0x32,0x36,0x34,0x39,0x2d,0x30,0x36,0x35,0x31,0x33,0x9,0x41,0x6d,0x65, + 0x72,0x69,0x63,0x61,0x2f,0x41,0x72,0x67,0x65,0x6e,0x74,0x69,0x6e,0x61,0x2f,0x54, + 0x75,0x63,0x75,0x6d,0x61,0x6e,0x9,0x54,0x75,0x63,0x75,0x6d,0xc3,0xa1,0x6e,0x20, + 0x28,0x54,0x4d,0x29,0xa,0x41,0x52,0x9,0x2d,0x32,0x38,0x32,0x38,0x2d,0x30,0x36, + 0x35,0x34,0x37,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x41,0x72,0x67,0x65, + 0x6e,0x74,0x69,0x6e,0x61,0x2f,0x43,0x61,0x74,0x61,0x6d,0x61,0x72,0x63,0x61,0x9, + 0x43,0x61,0x74,0x61,0x6d,0x61,0x72,0x63,0x61,0x20,0x28,0x43,0x54,0x29,0x3b,0x20, + 0x43,0x68,0x75,0x62,0x75,0x74,0x20,0x28,0x43,0x48,0x29,0xa,0x41,0x52,0x9,0x2d, + 0x32,0x39,0x32,0x36,0x2d,0x30,0x36,0x36,0x35,0x31,0x9,0x41,0x6d,0x65,0x72,0x69, + 0x63,0x61,0x2f,0x41,0x72,0x67,0x65,0x6e,0x74,0x69,0x6e,0x61,0x2f,0x4c,0x61,0x5f, + 0x52,0x69,0x6f,0x6a,0x61,0x9,0x4c,0x61,0x20,0x52,0x69,0x6f,0x6a,0x61,0x20,0x28, + 0x4c,0x52,0x29,0xa,0x41,0x52,0x9,0x2d,0x33,0x31,0x33,0x32,0x2d,0x30,0x36,0x38, + 0x33,0x31,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x41,0x72,0x67,0x65,0x6e, + 0x74,0x69,0x6e,0x61,0x2f,0x53,0x61,0x6e,0x5f,0x4a,0x75,0x61,0x6e,0x9,0x53,0x61, + 0x6e,0x20,0x4a,0x75,0x61,0x6e,0x20,0x28,0x53,0x4a,0x29,0xa,0x41,0x52,0x9,0x2d, + 0x33,0x32,0x35,0x33,0x2d,0x30,0x36,0x38,0x34,0x39,0x9,0x41,0x6d,0x65,0x72,0x69, + 0x63,0x61,0x2f,0x41,0x72,0x67,0x65,0x6e,0x74,0x69,0x6e,0x61,0x2f,0x4d,0x65,0x6e, + 0x64,0x6f,0x7a,0x61,0x9,0x4d,0x65,0x6e,0x64,0x6f,0x7a,0x61,0x20,0x28,0x4d,0x5a, + 0x29,0xa,0x41,0x52,0x9,0x2d,0x33,0x33,0x31,0x39,0x2d,0x30,0x36,0x36,0x32,0x31, 0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x41,0x72,0x67,0x65,0x6e,0x74,0x69, - 0x6e,0x61,0x2f,0x43,0x61,0x74,0x61,0x6d,0x61,0x72,0x63,0x61,0x9,0x43,0x61,0x74, - 0x61,0x6d,0x61,0x72,0x63,0x61,0x20,0x28,0x43,0x54,0x29,0x3b,0x20,0x43,0x68,0x75, - 0x62,0x75,0x74,0x20,0x28,0x43,0x48,0x29,0xa,0x41,0x52,0x9,0x2d,0x32,0x39,0x32, - 0x36,0x2d,0x30,0x36,0x36,0x35,0x31,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f, - 0x41,0x72,0x67,0x65,0x6e,0x74,0x69,0x6e,0x61,0x2f,0x4c,0x61,0x5f,0x52,0x69,0x6f, - 0x6a,0x61,0x9,0x4c,0x61,0x20,0x52,0x69,0x6f,0x6a,0x61,0x20,0x28,0x4c,0x52,0x29, - 0xa,0x41,0x52,0x9,0x2d,0x33,0x31,0x33,0x32,0x2d,0x30,0x36,0x38,0x33,0x31,0x9, - 0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x41,0x72,0x67,0x65,0x6e,0x74,0x69,0x6e, - 0x61,0x2f,0x53,0x61,0x6e,0x5f,0x4a,0x75,0x61,0x6e,0x9,0x53,0x61,0x6e,0x20,0x4a, - 0x75,0x61,0x6e,0x20,0x28,0x53,0x4a,0x29,0xa,0x41,0x52,0x9,0x2d,0x33,0x32,0x35, - 0x33,0x2d,0x30,0x36,0x38,0x34,0x39,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f, - 0x41,0x72,0x67,0x65,0x6e,0x74,0x69,0x6e,0x61,0x2f,0x4d,0x65,0x6e,0x64,0x6f,0x7a, - 0x61,0x9,0x4d,0x65,0x6e,0x64,0x6f,0x7a,0x61,0x20,0x28,0x4d,0x5a,0x29,0xa,0x41, - 0x52,0x9,0x2d,0x33,0x33,0x31,0x39,0x2d,0x30,0x36,0x36,0x32,0x31,0x9,0x41,0x6d, - 0x65,0x72,0x69,0x63,0x61,0x2f,0x41,0x72,0x67,0x65,0x6e,0x74,0x69,0x6e,0x61,0x2f, - 0x53,0x61,0x6e,0x5f,0x4c,0x75,0x69,0x73,0x9,0x53,0x61,0x6e,0x20,0x4c,0x75,0x69, - 0x73,0x20,0x28,0x53,0x4c,0x29,0xa,0x41,0x52,0x9,0x2d,0x35,0x31,0x33,0x38,0x2d, - 0x30,0x36,0x39,0x31,0x33,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x41,0x72, - 0x67,0x65,0x6e,0x74,0x69,0x6e,0x61,0x2f,0x52,0x69,0x6f,0x5f,0x47,0x61,0x6c,0x6c, - 0x65,0x67,0x6f,0x73,0x9,0x53,0x61,0x6e,0x74,0x61,0x20,0x43,0x72,0x75,0x7a,0x20, - 0x28,0x53,0x43,0x29,0xa,0x41,0x52,0x9,0x2d,0x35,0x34,0x34,0x38,0x2d,0x30,0x36, - 0x38,0x31,0x38,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x41,0x72,0x67,0x65, - 0x6e,0x74,0x69,0x6e,0x61,0x2f,0x55,0x73,0x68,0x75,0x61,0x69,0x61,0x9,0x54,0x69, - 0x65,0x72,0x72,0x61,0x20,0x64,0x65,0x6c,0x20,0x46,0x75,0x65,0x67,0x6f,0x20,0x28, - 0x54,0x46,0x29,0xa,0x41,0x53,0x2c,0x55,0x4d,0x9,0x2d,0x31,0x34,0x31,0x36,0x2d, - 0x31,0x37,0x30,0x34,0x32,0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x2f,0x50,0x61, - 0x67,0x6f,0x5f,0x50,0x61,0x67,0x6f,0x9,0x53,0x61,0x6d,0x6f,0x61,0x2c,0x20,0x4d, - 0x69,0x64,0x77,0x61,0x79,0xa,0x41,0x54,0x9,0x2b,0x34,0x38,0x31,0x33,0x2b,0x30, - 0x31,0x36,0x32,0x30,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x56,0x69,0x65,0x6e, - 0x6e,0x61,0xa,0x41,0x55,0x9,0x2d,0x33,0x31,0x33,0x33,0x2b,0x31,0x35,0x39,0x30, - 0x35,0x9,0x41,0x75,0x73,0x74,0x72,0x61,0x6c,0x69,0x61,0x2f,0x4c,0x6f,0x72,0x64, - 0x5f,0x48,0x6f,0x77,0x65,0x9,0x4c,0x6f,0x72,0x64,0x20,0x48,0x6f,0x77,0x65,0x20, - 0x49,0x73,0x6c,0x61,0x6e,0x64,0xa,0x41,0x55,0x9,0x2d,0x35,0x34,0x33,0x30,0x2b, - 0x31,0x35,0x38,0x35,0x37,0x9,0x41,0x6e,0x74,0x61,0x72,0x63,0x74,0x69,0x63,0x61, - 0x2f,0x4d,0x61,0x63,0x71,0x75,0x61,0x72,0x69,0x65,0x9,0x4d,0x61,0x63,0x71,0x75, - 0x61,0x72,0x69,0x65,0x20,0x49,0x73,0x6c,0x61,0x6e,0x64,0xa,0x41,0x55,0x9,0x2d, - 0x34,0x32,0x35,0x33,0x2b,0x31,0x34,0x37,0x31,0x39,0x9,0x41,0x75,0x73,0x74,0x72, - 0x61,0x6c,0x69,0x61,0x2f,0x48,0x6f,0x62,0x61,0x72,0x74,0x9,0x54,0x61,0x73,0x6d, - 0x61,0x6e,0x69,0x61,0x20,0x28,0x6d,0x6f,0x73,0x74,0x20,0x61,0x72,0x65,0x61,0x73, - 0x29,0xa,0x41,0x55,0x9,0x2d,0x33,0x39,0x35,0x36,0x2b,0x31,0x34,0x33,0x35,0x32, - 0x9,0x41,0x75,0x73,0x74,0x72,0x61,0x6c,0x69,0x61,0x2f,0x43,0x75,0x72,0x72,0x69, - 0x65,0x9,0x54,0x61,0x73,0x6d,0x61,0x6e,0x69,0x61,0x20,0x28,0x4b,0x69,0x6e,0x67, - 0x20,0x49,0x73,0x6c,0x61,0x6e,0x64,0x29,0xa,0x41,0x55,0x9,0x2d,0x33,0x37,0x34, - 0x39,0x2b,0x31,0x34,0x34,0x35,0x38,0x9,0x41,0x75,0x73,0x74,0x72,0x61,0x6c,0x69, - 0x61,0x2f,0x4d,0x65,0x6c,0x62,0x6f,0x75,0x72,0x6e,0x65,0x9,0x56,0x69,0x63,0x74, - 0x6f,0x72,0x69,0x61,0xa,0x41,0x55,0x9,0x2d,0x33,0x33,0x35,0x32,0x2b,0x31,0x35, - 0x31,0x31,0x33,0x9,0x41,0x75,0x73,0x74,0x72,0x61,0x6c,0x69,0x61,0x2f,0x53,0x79, - 0x64,0x6e,0x65,0x79,0x9,0x4e,0x65,0x77,0x20,0x53,0x6f,0x75,0x74,0x68,0x20,0x57, - 0x61,0x6c,0x65,0x73,0x20,0x28,0x6d,0x6f,0x73,0x74,0x20,0x61,0x72,0x65,0x61,0x73, - 0x29,0xa,0x41,0x55,0x9,0x2d,0x33,0x31,0x35,0x37,0x2b,0x31,0x34,0x31,0x32,0x37, - 0x9,0x41,0x75,0x73,0x74,0x72,0x61,0x6c,0x69,0x61,0x2f,0x42,0x72,0x6f,0x6b,0x65, - 0x6e,0x5f,0x48,0x69,0x6c,0x6c,0x9,0x4e,0x65,0x77,0x20,0x53,0x6f,0x75,0x74,0x68, - 0x20,0x57,0x61,0x6c,0x65,0x73,0x20,0x28,0x59,0x61,0x6e,0x63,0x6f,0x77,0x69,0x6e, - 0x6e,0x61,0x29,0xa,0x41,0x55,0x9,0x2d,0x32,0x37,0x32,0x38,0x2b,0x31,0x35,0x33, - 0x30,0x32,0x9,0x41,0x75,0x73,0x74,0x72,0x61,0x6c,0x69,0x61,0x2f,0x42,0x72,0x69, - 0x73,0x62,0x61,0x6e,0x65,0x9,0x51,0x75,0x65,0x65,0x6e,0x73,0x6c,0x61,0x6e,0x64, - 0x20,0x28,0x6d,0x6f,0x73,0x74,0x20,0x61,0x72,0x65,0x61,0x73,0x29,0xa,0x41,0x55, - 0x9,0x2d,0x32,0x30,0x31,0x36,0x2b,0x31,0x34,0x39,0x30,0x30,0x9,0x41,0x75,0x73, - 0x74,0x72,0x61,0x6c,0x69,0x61,0x2f,0x4c,0x69,0x6e,0x64,0x65,0x6d,0x61,0x6e,0x9, - 0x51,0x75,0x65,0x65,0x6e,0x73,0x6c,0x61,0x6e,0x64,0x20,0x28,0x57,0x68,0x69,0x74, - 0x73,0x75,0x6e,0x64,0x61,0x79,0x20,0x49,0x73,0x6c,0x61,0x6e,0x64,0x73,0x29,0xa, - 0x41,0x55,0x9,0x2d,0x33,0x34,0x35,0x35,0x2b,0x31,0x33,0x38,0x33,0x35,0x9,0x41, - 0x75,0x73,0x74,0x72,0x61,0x6c,0x69,0x61,0x2f,0x41,0x64,0x65,0x6c,0x61,0x69,0x64, - 0x65,0x9,0x53,0x6f,0x75,0x74,0x68,0x20,0x41,0x75,0x73,0x74,0x72,0x61,0x6c,0x69, - 0x61,0xa,0x41,0x55,0x9,0x2d,0x31,0x32,0x32,0x38,0x2b,0x31,0x33,0x30,0x35,0x30, - 0x9,0x41,0x75,0x73,0x74,0x72,0x61,0x6c,0x69,0x61,0x2f,0x44,0x61,0x72,0x77,0x69, - 0x6e,0x9,0x4e,0x6f,0x72,0x74,0x68,0x65,0x72,0x6e,0x20,0x54,0x65,0x72,0x72,0x69, - 0x74,0x6f,0x72,0x79,0xa,0x41,0x55,0x9,0x2d,0x33,0x31,0x35,0x37,0x2b,0x31,0x31, - 0x35,0x35,0x31,0x9,0x41,0x75,0x73,0x74,0x72,0x61,0x6c,0x69,0x61,0x2f,0x50,0x65, - 0x72,0x74,0x68,0x9,0x57,0x65,0x73,0x74,0x65,0x72,0x6e,0x20,0x41,0x75,0x73,0x74, - 0x72,0x61,0x6c,0x69,0x61,0x20,0x28,0x6d,0x6f,0x73,0x74,0x20,0x61,0x72,0x65,0x61, - 0x73,0x29,0xa,0x41,0x55,0x9,0x2d,0x33,0x31,0x34,0x33,0x2b,0x31,0x32,0x38,0x35, - 0x32,0x9,0x41,0x75,0x73,0x74,0x72,0x61,0x6c,0x69,0x61,0x2f,0x45,0x75,0x63,0x6c, - 0x61,0x9,0x57,0x65,0x73,0x74,0x65,0x72,0x6e,0x20,0x41,0x75,0x73,0x74,0x72,0x61, - 0x6c,0x69,0x61,0x20,0x28,0x45,0x75,0x63,0x6c,0x61,0x29,0xa,0x41,0x5a,0x9,0x2b, - 0x34,0x30,0x32,0x33,0x2b,0x30,0x34,0x39,0x35,0x31,0x9,0x41,0x73,0x69,0x61,0x2f, - 0x42,0x61,0x6b,0x75,0xa,0x42,0x42,0x9,0x2b,0x31,0x33,0x30,0x36,0x2d,0x30,0x35, - 0x39,0x33,0x37,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x42,0x61,0x72,0x62, - 0x61,0x64,0x6f,0x73,0xa,0x42,0x44,0x9,0x2b,0x32,0x33,0x34,0x33,0x2b,0x30,0x39, - 0x30,0x32,0x35,0x9,0x41,0x73,0x69,0x61,0x2f,0x44,0x68,0x61,0x6b,0x61,0xa,0x42, - 0x45,0x9,0x2b,0x35,0x30,0x35,0x30,0x2b,0x30,0x30,0x34,0x32,0x30,0x9,0x45,0x75, - 0x72,0x6f,0x70,0x65,0x2f,0x42,0x72,0x75,0x73,0x73,0x65,0x6c,0x73,0xa,0x42,0x47, - 0x9,0x2b,0x34,0x32,0x34,0x31,0x2b,0x30,0x32,0x33,0x31,0x39,0x9,0x45,0x75,0x72, - 0x6f,0x70,0x65,0x2f,0x53,0x6f,0x66,0x69,0x61,0xa,0x42,0x4d,0x9,0x2b,0x33,0x32, - 0x31,0x37,0x2d,0x30,0x36,0x34,0x34,0x36,0x9,0x41,0x74,0x6c,0x61,0x6e,0x74,0x69, - 0x63,0x2f,0x42,0x65,0x72,0x6d,0x75,0x64,0x61,0xa,0x42,0x4e,0x9,0x2b,0x30,0x34, - 0x35,0x36,0x2b,0x31,0x31,0x34,0x35,0x35,0x9,0x41,0x73,0x69,0x61,0x2f,0x42,0x72, - 0x75,0x6e,0x65,0x69,0xa,0x42,0x4f,0x9,0x2d,0x31,0x36,0x33,0x30,0x2d,0x30,0x36, - 0x38,0x30,0x39,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x4c,0x61,0x5f,0x50, - 0x61,0x7a,0xa,0x42,0x52,0x9,0x2d,0x30,0x33,0x35,0x31,0x2d,0x30,0x33,0x32,0x32, - 0x35,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x4e,0x6f,0x72,0x6f,0x6e,0x68, - 0x61,0x9,0x41,0x74,0x6c,0x61,0x6e,0x74,0x69,0x63,0x20,0x69,0x73,0x6c,0x61,0x6e, - 0x64,0x73,0xa,0x42,0x52,0x9,0x2d,0x30,0x31,0x32,0x37,0x2d,0x30,0x34,0x38,0x32, - 0x39,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x42,0x65,0x6c,0x65,0x6d,0x9, - 0x50,0x61,0x72,0xc3,0xa1,0x20,0x28,0x65,0x61,0x73,0x74,0x29,0x3b,0x20,0x41,0x6d, - 0x61,0x70,0xc3,0xa1,0xa,0x42,0x52,0x9,0x2d,0x30,0x33,0x34,0x33,0x2d,0x30,0x33, - 0x38,0x33,0x30,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x46,0x6f,0x72,0x74, - 0x61,0x6c,0x65,0x7a,0x61,0x9,0x42,0x72,0x61,0x7a,0x69,0x6c,0x20,0x28,0x6e,0x6f, - 0x72,0x74,0x68,0x65,0x61,0x73,0x74,0x3a,0x20,0x4d,0x41,0x2c,0x20,0x50,0x49,0x2c, - 0x20,0x43,0x45,0x2c,0x20,0x52,0x4e,0x2c,0x20,0x50,0x42,0x29,0xa,0x42,0x52,0x9, - 0x2d,0x30,0x38,0x30,0x33,0x2d,0x30,0x33,0x34,0x35,0x34,0x9,0x41,0x6d,0x65,0x72, - 0x69,0x63,0x61,0x2f,0x52,0x65,0x63,0x69,0x66,0x65,0x9,0x50,0x65,0x72,0x6e,0x61, - 0x6d,0x62,0x75,0x63,0x6f,0xa,0x42,0x52,0x9,0x2d,0x30,0x37,0x31,0x32,0x2d,0x30, - 0x34,0x38,0x31,0x32,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x41,0x72,0x61, - 0x67,0x75,0x61,0x69,0x6e,0x61,0x9,0x54,0x6f,0x63,0x61,0x6e,0x74,0x69,0x6e,0x73, - 0xa,0x42,0x52,0x9,0x2d,0x30,0x39,0x34,0x30,0x2d,0x30,0x33,0x35,0x34,0x33,0x9, - 0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x4d,0x61,0x63,0x65,0x69,0x6f,0x9,0x41, - 0x6c,0x61,0x67,0x6f,0x61,0x73,0x2c,0x20,0x53,0x65,0x72,0x67,0x69,0x70,0x65,0xa, - 0x42,0x52,0x9,0x2d,0x31,0x32,0x35,0x39,0x2d,0x30,0x33,0x38,0x33,0x31,0x9,0x41, - 0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x42,0x61,0x68,0x69,0x61,0x9,0x42,0x61,0x68, - 0x69,0x61,0xa,0x42,0x52,0x9,0x2d,0x32,0x33,0x33,0x32,0x2d,0x30,0x34,0x36,0x33, - 0x37,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x53,0x61,0x6f,0x5f,0x50,0x61, - 0x75,0x6c,0x6f,0x9,0x42,0x72,0x61,0x7a,0x69,0x6c,0x20,0x28,0x73,0x6f,0x75,0x74, - 0x68,0x65,0x61,0x73,0x74,0x3a,0x20,0x47,0x4f,0x2c,0x20,0x44,0x46,0x2c,0x20,0x4d, - 0x47,0x2c,0x20,0x45,0x53,0x2c,0x20,0x52,0x4a,0x2c,0x20,0x53,0x50,0x2c,0x20,0x50, - 0x52,0x2c,0x20,0x53,0x43,0x2c,0x20,0x52,0x53,0x29,0xa,0x42,0x52,0x9,0x2d,0x32, - 0x30,0x32,0x37,0x2d,0x30,0x35,0x34,0x33,0x37,0x9,0x41,0x6d,0x65,0x72,0x69,0x63, - 0x61,0x2f,0x43,0x61,0x6d,0x70,0x6f,0x5f,0x47,0x72,0x61,0x6e,0x64,0x65,0x9,0x4d, - 0x61,0x74,0x6f,0x20,0x47,0x72,0x6f,0x73,0x73,0x6f,0x20,0x64,0x6f,0x20,0x53,0x75, - 0x6c,0xa,0x42,0x52,0x9,0x2d,0x31,0x35,0x33,0x35,0x2d,0x30,0x35,0x36,0x30,0x35, - 0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x43,0x75,0x69,0x61,0x62,0x61,0x9, - 0x4d,0x61,0x74,0x6f,0x20,0x47,0x72,0x6f,0x73,0x73,0x6f,0xa,0x42,0x52,0x9,0x2d, - 0x30,0x32,0x32,0x36,0x2d,0x30,0x35,0x34,0x35,0x32,0x9,0x41,0x6d,0x65,0x72,0x69, - 0x63,0x61,0x2f,0x53,0x61,0x6e,0x74,0x61,0x72,0x65,0x6d,0x9,0x50,0x61,0x72,0xc3, - 0xa1,0x20,0x28,0x77,0x65,0x73,0x74,0x29,0xa,0x42,0x52,0x9,0x2d,0x30,0x38,0x34, - 0x36,0x2d,0x30,0x36,0x33,0x35,0x34,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f, - 0x50,0x6f,0x72,0x74,0x6f,0x5f,0x56,0x65,0x6c,0x68,0x6f,0x9,0x52,0x6f,0x6e,0x64, - 0xc3,0xb4,0x6e,0x69,0x61,0xa,0x42,0x52,0x9,0x2b,0x30,0x32,0x34,0x39,0x2d,0x30, - 0x36,0x30,0x34,0x30,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x42,0x6f,0x61, - 0x5f,0x56,0x69,0x73,0x74,0x61,0x9,0x52,0x6f,0x72,0x61,0x69,0x6d,0x61,0xa,0x42, - 0x52,0x9,0x2d,0x30,0x33,0x30,0x38,0x2d,0x30,0x36,0x30,0x30,0x31,0x9,0x41,0x6d, - 0x65,0x72,0x69,0x63,0x61,0x2f,0x4d,0x61,0x6e,0x61,0x75,0x73,0x9,0x41,0x6d,0x61, - 0x7a,0x6f,0x6e,0x61,0x73,0x20,0x28,0x65,0x61,0x73,0x74,0x29,0xa,0x42,0x52,0x9, - 0x2d,0x30,0x36,0x34,0x30,0x2d,0x30,0x36,0x39,0x35,0x32,0x9,0x41,0x6d,0x65,0x72, - 0x69,0x63,0x61,0x2f,0x45,0x69,0x72,0x75,0x6e,0x65,0x70,0x65,0x9,0x41,0x6d,0x61, - 0x7a,0x6f,0x6e,0x61,0x73,0x20,0x28,0x77,0x65,0x73,0x74,0x29,0xa,0x42,0x52,0x9, - 0x2d,0x30,0x39,0x35,0x38,0x2d,0x30,0x36,0x37,0x34,0x38,0x9,0x41,0x6d,0x65,0x72, - 0x69,0x63,0x61,0x2f,0x52,0x69,0x6f,0x5f,0x42,0x72,0x61,0x6e,0x63,0x6f,0x9,0x41, - 0x63,0x72,0x65,0xa,0x42,0x53,0x9,0x2b,0x32,0x35,0x30,0x35,0x2d,0x30,0x37,0x37, - 0x32,0x31,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x4e,0x61,0x73,0x73,0x61, - 0x75,0xa,0x42,0x54,0x9,0x2b,0x32,0x37,0x32,0x38,0x2b,0x30,0x38,0x39,0x33,0x39, - 0x9,0x41,0x73,0x69,0x61,0x2f,0x54,0x68,0x69,0x6d,0x70,0x68,0x75,0xa,0x42,0x59, - 0x9,0x2b,0x35,0x33,0x35,0x34,0x2b,0x30,0x32,0x37,0x33,0x34,0x9,0x45,0x75,0x72, - 0x6f,0x70,0x65,0x2f,0x4d,0x69,0x6e,0x73,0x6b,0xa,0x42,0x5a,0x9,0x2b,0x31,0x37, - 0x33,0x30,0x2d,0x30,0x38,0x38,0x31,0x32,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61, - 0x2f,0x42,0x65,0x6c,0x69,0x7a,0x65,0xa,0x43,0x41,0x9,0x2b,0x34,0x37,0x33,0x34, - 0x2d,0x30,0x35,0x32,0x34,0x33,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x53, - 0x74,0x5f,0x4a,0x6f,0x68,0x6e,0x73,0x9,0x4e,0x65,0x77,0x66,0x6f,0x75,0x6e,0x64, - 0x6c,0x61,0x6e,0x64,0x3b,0x20,0x4c,0x61,0x62,0x72,0x61,0x64,0x6f,0x72,0x20,0x28, - 0x73,0x6f,0x75,0x74,0x68,0x65,0x61,0x73,0x74,0x29,0xa,0x43,0x41,0x9,0x2b,0x34, - 0x34,0x33,0x39,0x2d,0x30,0x36,0x33,0x33,0x36,0x9,0x41,0x6d,0x65,0x72,0x69,0x63, - 0x61,0x2f,0x48,0x61,0x6c,0x69,0x66,0x61,0x78,0x9,0x41,0x74,0x6c,0x61,0x6e,0x74, - 0x69,0x63,0x20,0x2d,0x20,0x4e,0x53,0x20,0x28,0x6d,0x6f,0x73,0x74,0x20,0x61,0x72, - 0x65,0x61,0x73,0x29,0x3b,0x20,0x50,0x45,0xa,0x43,0x41,0x9,0x2b,0x34,0x36,0x31, - 0x32,0x2d,0x30,0x35,0x39,0x35,0x37,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f, - 0x47,0x6c,0x61,0x63,0x65,0x5f,0x42,0x61,0x79,0x9,0x41,0x74,0x6c,0x61,0x6e,0x74, - 0x69,0x63,0x20,0x2d,0x20,0x4e,0x53,0x20,0x28,0x43,0x61,0x70,0x65,0x20,0x42,0x72, - 0x65,0x74,0x6f,0x6e,0x29,0xa,0x43,0x41,0x9,0x2b,0x34,0x36,0x30,0x36,0x2d,0x30, - 0x36,0x34,0x34,0x37,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x4d,0x6f,0x6e, - 0x63,0x74,0x6f,0x6e,0x9,0x41,0x74,0x6c,0x61,0x6e,0x74,0x69,0x63,0x20,0x2d,0x20, - 0x4e,0x65,0x77,0x20,0x42,0x72,0x75,0x6e,0x73,0x77,0x69,0x63,0x6b,0xa,0x43,0x41, - 0x9,0x2b,0x35,0x33,0x32,0x30,0x2d,0x30,0x36,0x30,0x32,0x35,0x9,0x41,0x6d,0x65, - 0x72,0x69,0x63,0x61,0x2f,0x47,0x6f,0x6f,0x73,0x65,0x5f,0x42,0x61,0x79,0x9,0x41, - 0x74,0x6c,0x61,0x6e,0x74,0x69,0x63,0x20,0x2d,0x20,0x4c,0x61,0x62,0x72,0x61,0x64, - 0x6f,0x72,0x20,0x28,0x6d,0x6f,0x73,0x74,0x20,0x61,0x72,0x65,0x61,0x73,0x29,0xa, - 0x43,0x41,0x9,0x2b,0x35,0x31,0x32,0x35,0x2d,0x30,0x35,0x37,0x30,0x37,0x9,0x41, - 0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x42,0x6c,0x61,0x6e,0x63,0x2d,0x53,0x61,0x62, - 0x6c,0x6f,0x6e,0x9,0x41,0x53,0x54,0x20,0x2d,0x20,0x51,0x43,0x20,0x28,0x4c,0x6f, - 0x77,0x65,0x72,0x20,0x4e,0x6f,0x72,0x74,0x68,0x20,0x53,0x68,0x6f,0x72,0x65,0x29, - 0xa,0x43,0x41,0x9,0x2b,0x34,0x33,0x33,0x39,0x2d,0x30,0x37,0x39,0x32,0x33,0x9, - 0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x54,0x6f,0x72,0x6f,0x6e,0x74,0x6f,0x9, + 0x6e,0x61,0x2f,0x53,0x61,0x6e,0x5f,0x4c,0x75,0x69,0x73,0x9,0x53,0x61,0x6e,0x20, + 0x4c,0x75,0x69,0x73,0x20,0x28,0x53,0x4c,0x29,0xa,0x41,0x52,0x9,0x2d,0x35,0x31, + 0x33,0x38,0x2d,0x30,0x36,0x39,0x31,0x33,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61, + 0x2f,0x41,0x72,0x67,0x65,0x6e,0x74,0x69,0x6e,0x61,0x2f,0x52,0x69,0x6f,0x5f,0x47, + 0x61,0x6c,0x6c,0x65,0x67,0x6f,0x73,0x9,0x53,0x61,0x6e,0x74,0x61,0x20,0x43,0x72, + 0x75,0x7a,0x20,0x28,0x53,0x43,0x29,0xa,0x41,0x52,0x9,0x2d,0x35,0x34,0x34,0x38, + 0x2d,0x30,0x36,0x38,0x31,0x38,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x41, + 0x72,0x67,0x65,0x6e,0x74,0x69,0x6e,0x61,0x2f,0x55,0x73,0x68,0x75,0x61,0x69,0x61, + 0x9,0x54,0x69,0x65,0x72,0x72,0x61,0x20,0x64,0x65,0x6c,0x20,0x46,0x75,0x65,0x67, + 0x6f,0x20,0x28,0x54,0x46,0x29,0xa,0x41,0x53,0x2c,0x55,0x4d,0x9,0x2d,0x31,0x34, + 0x31,0x36,0x2d,0x31,0x37,0x30,0x34,0x32,0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63, + 0x2f,0x50,0x61,0x67,0x6f,0x5f,0x50,0x61,0x67,0x6f,0x9,0x53,0x61,0x6d,0x6f,0x61, + 0x2c,0x20,0x4d,0x69,0x64,0x77,0x61,0x79,0xa,0x41,0x54,0x9,0x2b,0x34,0x38,0x31, + 0x33,0x2b,0x30,0x31,0x36,0x32,0x30,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x56, + 0x69,0x65,0x6e,0x6e,0x61,0xa,0x41,0x55,0x9,0x2d,0x33,0x31,0x33,0x33,0x2b,0x31, + 0x35,0x39,0x30,0x35,0x9,0x41,0x75,0x73,0x74,0x72,0x61,0x6c,0x69,0x61,0x2f,0x4c, + 0x6f,0x72,0x64,0x5f,0x48,0x6f,0x77,0x65,0x9,0x4c,0x6f,0x72,0x64,0x20,0x48,0x6f, + 0x77,0x65,0x20,0x49,0x73,0x6c,0x61,0x6e,0x64,0xa,0x41,0x55,0x9,0x2d,0x35,0x34, + 0x33,0x30,0x2b,0x31,0x35,0x38,0x35,0x37,0x9,0x41,0x6e,0x74,0x61,0x72,0x63,0x74, + 0x69,0x63,0x61,0x2f,0x4d,0x61,0x63,0x71,0x75,0x61,0x72,0x69,0x65,0x9,0x4d,0x61, + 0x63,0x71,0x75,0x61,0x72,0x69,0x65,0x20,0x49,0x73,0x6c,0x61,0x6e,0x64,0xa,0x41, + 0x55,0x9,0x2d,0x34,0x32,0x35,0x33,0x2b,0x31,0x34,0x37,0x31,0x39,0x9,0x41,0x75, + 0x73,0x74,0x72,0x61,0x6c,0x69,0x61,0x2f,0x48,0x6f,0x62,0x61,0x72,0x74,0x9,0x54, + 0x61,0x73,0x6d,0x61,0x6e,0x69,0x61,0x20,0x28,0x6d,0x6f,0x73,0x74,0x20,0x61,0x72, + 0x65,0x61,0x73,0x29,0xa,0x41,0x55,0x9,0x2d,0x33,0x39,0x35,0x36,0x2b,0x31,0x34, + 0x33,0x35,0x32,0x9,0x41,0x75,0x73,0x74,0x72,0x61,0x6c,0x69,0x61,0x2f,0x43,0x75, + 0x72,0x72,0x69,0x65,0x9,0x54,0x61,0x73,0x6d,0x61,0x6e,0x69,0x61,0x20,0x28,0x4b, + 0x69,0x6e,0x67,0x20,0x49,0x73,0x6c,0x61,0x6e,0x64,0x29,0xa,0x41,0x55,0x9,0x2d, + 0x33,0x37,0x34,0x39,0x2b,0x31,0x34,0x34,0x35,0x38,0x9,0x41,0x75,0x73,0x74,0x72, + 0x61,0x6c,0x69,0x61,0x2f,0x4d,0x65,0x6c,0x62,0x6f,0x75,0x72,0x6e,0x65,0x9,0x56, + 0x69,0x63,0x74,0x6f,0x72,0x69,0x61,0xa,0x41,0x55,0x9,0x2d,0x33,0x33,0x35,0x32, + 0x2b,0x31,0x35,0x31,0x31,0x33,0x9,0x41,0x75,0x73,0x74,0x72,0x61,0x6c,0x69,0x61, + 0x2f,0x53,0x79,0x64,0x6e,0x65,0x79,0x9,0x4e,0x65,0x77,0x20,0x53,0x6f,0x75,0x74, + 0x68,0x20,0x57,0x61,0x6c,0x65,0x73,0x20,0x28,0x6d,0x6f,0x73,0x74,0x20,0x61,0x72, + 0x65,0x61,0x73,0x29,0xa,0x41,0x55,0x9,0x2d,0x33,0x31,0x35,0x37,0x2b,0x31,0x34, + 0x31,0x32,0x37,0x9,0x41,0x75,0x73,0x74,0x72,0x61,0x6c,0x69,0x61,0x2f,0x42,0x72, + 0x6f,0x6b,0x65,0x6e,0x5f,0x48,0x69,0x6c,0x6c,0x9,0x4e,0x65,0x77,0x20,0x53,0x6f, + 0x75,0x74,0x68,0x20,0x57,0x61,0x6c,0x65,0x73,0x20,0x28,0x59,0x61,0x6e,0x63,0x6f, + 0x77,0x69,0x6e,0x6e,0x61,0x29,0xa,0x41,0x55,0x9,0x2d,0x32,0x37,0x32,0x38,0x2b, + 0x31,0x35,0x33,0x30,0x32,0x9,0x41,0x75,0x73,0x74,0x72,0x61,0x6c,0x69,0x61,0x2f, + 0x42,0x72,0x69,0x73,0x62,0x61,0x6e,0x65,0x9,0x51,0x75,0x65,0x65,0x6e,0x73,0x6c, + 0x61,0x6e,0x64,0x20,0x28,0x6d,0x6f,0x73,0x74,0x20,0x61,0x72,0x65,0x61,0x73,0x29, + 0xa,0x41,0x55,0x9,0x2d,0x32,0x30,0x31,0x36,0x2b,0x31,0x34,0x39,0x30,0x30,0x9, + 0x41,0x75,0x73,0x74,0x72,0x61,0x6c,0x69,0x61,0x2f,0x4c,0x69,0x6e,0x64,0x65,0x6d, + 0x61,0x6e,0x9,0x51,0x75,0x65,0x65,0x6e,0x73,0x6c,0x61,0x6e,0x64,0x20,0x28,0x57, + 0x68,0x69,0x74,0x73,0x75,0x6e,0x64,0x61,0x79,0x20,0x49,0x73,0x6c,0x61,0x6e,0x64, + 0x73,0x29,0xa,0x41,0x55,0x9,0x2d,0x33,0x34,0x35,0x35,0x2b,0x31,0x33,0x38,0x33, + 0x35,0x9,0x41,0x75,0x73,0x74,0x72,0x61,0x6c,0x69,0x61,0x2f,0x41,0x64,0x65,0x6c, + 0x61,0x69,0x64,0x65,0x9,0x53,0x6f,0x75,0x74,0x68,0x20,0x41,0x75,0x73,0x74,0x72, + 0x61,0x6c,0x69,0x61,0xa,0x41,0x55,0x9,0x2d,0x31,0x32,0x32,0x38,0x2b,0x31,0x33, + 0x30,0x35,0x30,0x9,0x41,0x75,0x73,0x74,0x72,0x61,0x6c,0x69,0x61,0x2f,0x44,0x61, + 0x72,0x77,0x69,0x6e,0x9,0x4e,0x6f,0x72,0x74,0x68,0x65,0x72,0x6e,0x20,0x54,0x65, + 0x72,0x72,0x69,0x74,0x6f,0x72,0x79,0xa,0x41,0x55,0x9,0x2d,0x33,0x31,0x35,0x37, + 0x2b,0x31,0x31,0x35,0x35,0x31,0x9,0x41,0x75,0x73,0x74,0x72,0x61,0x6c,0x69,0x61, + 0x2f,0x50,0x65,0x72,0x74,0x68,0x9,0x57,0x65,0x73,0x74,0x65,0x72,0x6e,0x20,0x41, + 0x75,0x73,0x74,0x72,0x61,0x6c,0x69,0x61,0x20,0x28,0x6d,0x6f,0x73,0x74,0x20,0x61, + 0x72,0x65,0x61,0x73,0x29,0xa,0x41,0x55,0x9,0x2d,0x33,0x31,0x34,0x33,0x2b,0x31, + 0x32,0x38,0x35,0x32,0x9,0x41,0x75,0x73,0x74,0x72,0x61,0x6c,0x69,0x61,0x2f,0x45, + 0x75,0x63,0x6c,0x61,0x9,0x57,0x65,0x73,0x74,0x65,0x72,0x6e,0x20,0x41,0x75,0x73, + 0x74,0x72,0x61,0x6c,0x69,0x61,0x20,0x28,0x45,0x75,0x63,0x6c,0x61,0x29,0xa,0x41, + 0x5a,0x9,0x2b,0x34,0x30,0x32,0x33,0x2b,0x30,0x34,0x39,0x35,0x31,0x9,0x41,0x73, + 0x69,0x61,0x2f,0x42,0x61,0x6b,0x75,0xa,0x42,0x42,0x9,0x2b,0x31,0x33,0x30,0x36, + 0x2d,0x30,0x35,0x39,0x33,0x37,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x42, + 0x61,0x72,0x62,0x61,0x64,0x6f,0x73,0xa,0x42,0x44,0x9,0x2b,0x32,0x33,0x34,0x33, + 0x2b,0x30,0x39,0x30,0x32,0x35,0x9,0x41,0x73,0x69,0x61,0x2f,0x44,0x68,0x61,0x6b, + 0x61,0xa,0x42,0x45,0x9,0x2b,0x35,0x30,0x35,0x30,0x2b,0x30,0x30,0x34,0x32,0x30, + 0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x42,0x72,0x75,0x73,0x73,0x65,0x6c,0x73, + 0xa,0x42,0x47,0x9,0x2b,0x34,0x32,0x34,0x31,0x2b,0x30,0x32,0x33,0x31,0x39,0x9, + 0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x53,0x6f,0x66,0x69,0x61,0xa,0x42,0x4d,0x9, + 0x2b,0x33,0x32,0x31,0x37,0x2d,0x30,0x36,0x34,0x34,0x36,0x9,0x41,0x74,0x6c,0x61, + 0x6e,0x74,0x69,0x63,0x2f,0x42,0x65,0x72,0x6d,0x75,0x64,0x61,0xa,0x42,0x4e,0x9, + 0x2b,0x30,0x34,0x35,0x36,0x2b,0x31,0x31,0x34,0x35,0x35,0x9,0x41,0x73,0x69,0x61, + 0x2f,0x42,0x72,0x75,0x6e,0x65,0x69,0xa,0x42,0x4f,0x9,0x2d,0x31,0x36,0x33,0x30, + 0x2d,0x30,0x36,0x38,0x30,0x39,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x4c, + 0x61,0x5f,0x50,0x61,0x7a,0xa,0x42,0x52,0x9,0x2d,0x30,0x33,0x35,0x31,0x2d,0x30, + 0x33,0x32,0x32,0x35,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x4e,0x6f,0x72, + 0x6f,0x6e,0x68,0x61,0x9,0x41,0x74,0x6c,0x61,0x6e,0x74,0x69,0x63,0x20,0x69,0x73, + 0x6c,0x61,0x6e,0x64,0x73,0xa,0x42,0x52,0x9,0x2d,0x30,0x31,0x32,0x37,0x2d,0x30, + 0x34,0x38,0x32,0x39,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x42,0x65,0x6c, + 0x65,0x6d,0x9,0x50,0x61,0x72,0xc3,0xa1,0x20,0x28,0x65,0x61,0x73,0x74,0x29,0x3b, + 0x20,0x41,0x6d,0x61,0x70,0xc3,0xa1,0xa,0x42,0x52,0x9,0x2d,0x30,0x33,0x34,0x33, + 0x2d,0x30,0x33,0x38,0x33,0x30,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x46, + 0x6f,0x72,0x74,0x61,0x6c,0x65,0x7a,0x61,0x9,0x42,0x72,0x61,0x7a,0x69,0x6c,0x20, + 0x28,0x6e,0x6f,0x72,0x74,0x68,0x65,0x61,0x73,0x74,0x3a,0x20,0x4d,0x41,0x2c,0x20, + 0x50,0x49,0x2c,0x20,0x43,0x45,0x2c,0x20,0x52,0x4e,0x2c,0x20,0x50,0x42,0x29,0xa, + 0x42,0x52,0x9,0x2d,0x30,0x38,0x30,0x33,0x2d,0x30,0x33,0x34,0x35,0x34,0x9,0x41, + 0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x52,0x65,0x63,0x69,0x66,0x65,0x9,0x50,0x65, + 0x72,0x6e,0x61,0x6d,0x62,0x75,0x63,0x6f,0xa,0x42,0x52,0x9,0x2d,0x30,0x37,0x31, + 0x32,0x2d,0x30,0x34,0x38,0x31,0x32,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f, + 0x41,0x72,0x61,0x67,0x75,0x61,0x69,0x6e,0x61,0x9,0x54,0x6f,0x63,0x61,0x6e,0x74, + 0x69,0x6e,0x73,0xa,0x42,0x52,0x9,0x2d,0x30,0x39,0x34,0x30,0x2d,0x30,0x33,0x35, + 0x34,0x33,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x4d,0x61,0x63,0x65,0x69, + 0x6f,0x9,0x41,0x6c,0x61,0x67,0x6f,0x61,0x73,0x2c,0x20,0x53,0x65,0x72,0x67,0x69, + 0x70,0x65,0xa,0x42,0x52,0x9,0x2d,0x31,0x32,0x35,0x39,0x2d,0x30,0x33,0x38,0x33, + 0x31,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x42,0x61,0x68,0x69,0x61,0x9, + 0x42,0x61,0x68,0x69,0x61,0xa,0x42,0x52,0x9,0x2d,0x32,0x33,0x33,0x32,0x2d,0x30, + 0x34,0x36,0x33,0x37,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x53,0x61,0x6f, + 0x5f,0x50,0x61,0x75,0x6c,0x6f,0x9,0x42,0x72,0x61,0x7a,0x69,0x6c,0x20,0x28,0x73, + 0x6f,0x75,0x74,0x68,0x65,0x61,0x73,0x74,0x3a,0x20,0x47,0x4f,0x2c,0x20,0x44,0x46, + 0x2c,0x20,0x4d,0x47,0x2c,0x20,0x45,0x53,0x2c,0x20,0x52,0x4a,0x2c,0x20,0x53,0x50, + 0x2c,0x20,0x50,0x52,0x2c,0x20,0x53,0x43,0x2c,0x20,0x52,0x53,0x29,0xa,0x42,0x52, + 0x9,0x2d,0x32,0x30,0x32,0x37,0x2d,0x30,0x35,0x34,0x33,0x37,0x9,0x41,0x6d,0x65, + 0x72,0x69,0x63,0x61,0x2f,0x43,0x61,0x6d,0x70,0x6f,0x5f,0x47,0x72,0x61,0x6e,0x64, + 0x65,0x9,0x4d,0x61,0x74,0x6f,0x20,0x47,0x72,0x6f,0x73,0x73,0x6f,0x20,0x64,0x6f, + 0x20,0x53,0x75,0x6c,0xa,0x42,0x52,0x9,0x2d,0x31,0x35,0x33,0x35,0x2d,0x30,0x35, + 0x36,0x30,0x35,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x43,0x75,0x69,0x61, + 0x62,0x61,0x9,0x4d,0x61,0x74,0x6f,0x20,0x47,0x72,0x6f,0x73,0x73,0x6f,0xa,0x42, + 0x52,0x9,0x2d,0x30,0x32,0x32,0x36,0x2d,0x30,0x35,0x34,0x35,0x32,0x9,0x41,0x6d, + 0x65,0x72,0x69,0x63,0x61,0x2f,0x53,0x61,0x6e,0x74,0x61,0x72,0x65,0x6d,0x9,0x50, + 0x61,0x72,0xc3,0xa1,0x20,0x28,0x77,0x65,0x73,0x74,0x29,0xa,0x42,0x52,0x9,0x2d, + 0x30,0x38,0x34,0x36,0x2d,0x30,0x36,0x33,0x35,0x34,0x9,0x41,0x6d,0x65,0x72,0x69, + 0x63,0x61,0x2f,0x50,0x6f,0x72,0x74,0x6f,0x5f,0x56,0x65,0x6c,0x68,0x6f,0x9,0x52, + 0x6f,0x6e,0x64,0xc3,0xb4,0x6e,0x69,0x61,0xa,0x42,0x52,0x9,0x2b,0x30,0x32,0x34, + 0x39,0x2d,0x30,0x36,0x30,0x34,0x30,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f, + 0x42,0x6f,0x61,0x5f,0x56,0x69,0x73,0x74,0x61,0x9,0x52,0x6f,0x72,0x61,0x69,0x6d, + 0x61,0xa,0x42,0x52,0x9,0x2d,0x30,0x33,0x30,0x38,0x2d,0x30,0x36,0x30,0x30,0x31, + 0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x4d,0x61,0x6e,0x61,0x75,0x73,0x9, + 0x41,0x6d,0x61,0x7a,0x6f,0x6e,0x61,0x73,0x20,0x28,0x65,0x61,0x73,0x74,0x29,0xa, + 0x42,0x52,0x9,0x2d,0x30,0x36,0x34,0x30,0x2d,0x30,0x36,0x39,0x35,0x32,0x9,0x41, + 0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x45,0x69,0x72,0x75,0x6e,0x65,0x70,0x65,0x9, + 0x41,0x6d,0x61,0x7a,0x6f,0x6e,0x61,0x73,0x20,0x28,0x77,0x65,0x73,0x74,0x29,0xa, + 0x42,0x52,0x9,0x2d,0x30,0x39,0x35,0x38,0x2d,0x30,0x36,0x37,0x34,0x38,0x9,0x41, + 0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x52,0x69,0x6f,0x5f,0x42,0x72,0x61,0x6e,0x63, + 0x6f,0x9,0x41,0x63,0x72,0x65,0xa,0x42,0x53,0x9,0x2b,0x32,0x35,0x30,0x35,0x2d, + 0x30,0x37,0x37,0x32,0x31,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x4e,0x61, + 0x73,0x73,0x61,0x75,0xa,0x42,0x54,0x9,0x2b,0x32,0x37,0x32,0x38,0x2b,0x30,0x38, + 0x39,0x33,0x39,0x9,0x41,0x73,0x69,0x61,0x2f,0x54,0x68,0x69,0x6d,0x70,0x68,0x75, + 0xa,0x42,0x59,0x9,0x2b,0x35,0x33,0x35,0x34,0x2b,0x30,0x32,0x37,0x33,0x34,0x9, + 0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x4d,0x69,0x6e,0x73,0x6b,0xa,0x42,0x5a,0x9, + 0x2b,0x31,0x37,0x33,0x30,0x2d,0x30,0x38,0x38,0x31,0x32,0x9,0x41,0x6d,0x65,0x72, + 0x69,0x63,0x61,0x2f,0x42,0x65,0x6c,0x69,0x7a,0x65,0xa,0x43,0x41,0x9,0x2b,0x34, + 0x37,0x33,0x34,0x2d,0x30,0x35,0x32,0x34,0x33,0x9,0x41,0x6d,0x65,0x72,0x69,0x63, + 0x61,0x2f,0x53,0x74,0x5f,0x4a,0x6f,0x68,0x6e,0x73,0x9,0x4e,0x65,0x77,0x66,0x6f, + 0x75,0x6e,0x64,0x6c,0x61,0x6e,0x64,0x3b,0x20,0x4c,0x61,0x62,0x72,0x61,0x64,0x6f, + 0x72,0x20,0x28,0x73,0x6f,0x75,0x74,0x68,0x65,0x61,0x73,0x74,0x29,0xa,0x43,0x41, + 0x9,0x2b,0x34,0x34,0x33,0x39,0x2d,0x30,0x36,0x33,0x33,0x36,0x9,0x41,0x6d,0x65, + 0x72,0x69,0x63,0x61,0x2f,0x48,0x61,0x6c,0x69,0x66,0x61,0x78,0x9,0x41,0x74,0x6c, + 0x61,0x6e,0x74,0x69,0x63,0x20,0x2d,0x20,0x4e,0x53,0x20,0x28,0x6d,0x6f,0x73,0x74, + 0x20,0x61,0x72,0x65,0x61,0x73,0x29,0x3b,0x20,0x50,0x45,0xa,0x43,0x41,0x9,0x2b, + 0x34,0x36,0x31,0x32,0x2d,0x30,0x35,0x39,0x35,0x37,0x9,0x41,0x6d,0x65,0x72,0x69, + 0x63,0x61,0x2f,0x47,0x6c,0x61,0x63,0x65,0x5f,0x42,0x61,0x79,0x9,0x41,0x74,0x6c, + 0x61,0x6e,0x74,0x69,0x63,0x20,0x2d,0x20,0x4e,0x53,0x20,0x28,0x43,0x61,0x70,0x65, + 0x20,0x42,0x72,0x65,0x74,0x6f,0x6e,0x29,0xa,0x43,0x41,0x9,0x2b,0x34,0x36,0x30, + 0x36,0x2d,0x30,0x36,0x34,0x34,0x37,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f, + 0x4d,0x6f,0x6e,0x63,0x74,0x6f,0x6e,0x9,0x41,0x74,0x6c,0x61,0x6e,0x74,0x69,0x63, + 0x20,0x2d,0x20,0x4e,0x65,0x77,0x20,0x42,0x72,0x75,0x6e,0x73,0x77,0x69,0x63,0x6b, + 0xa,0x43,0x41,0x9,0x2b,0x35,0x33,0x32,0x30,0x2d,0x30,0x36,0x30,0x32,0x35,0x9, + 0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x47,0x6f,0x6f,0x73,0x65,0x5f,0x42,0x61, + 0x79,0x9,0x41,0x74,0x6c,0x61,0x6e,0x74,0x69,0x63,0x20,0x2d,0x20,0x4c,0x61,0x62, + 0x72,0x61,0x64,0x6f,0x72,0x20,0x28,0x6d,0x6f,0x73,0x74,0x20,0x61,0x72,0x65,0x61, + 0x73,0x29,0xa,0x43,0x41,0x9,0x2b,0x35,0x31,0x32,0x35,0x2d,0x30,0x35,0x37,0x30, + 0x37,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x42,0x6c,0x61,0x6e,0x63,0x2d, + 0x53,0x61,0x62,0x6c,0x6f,0x6e,0x9,0x41,0x53,0x54,0x20,0x2d,0x20,0x51,0x43,0x20, + 0x28,0x4c,0x6f,0x77,0x65,0x72,0x20,0x4e,0x6f,0x72,0x74,0x68,0x20,0x53,0x68,0x6f, + 0x72,0x65,0x29,0xa,0x43,0x41,0x9,0x2b,0x34,0x33,0x33,0x39,0x2d,0x30,0x37,0x39, + 0x32,0x33,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x54,0x6f,0x72,0x6f,0x6e, + 0x74,0x6f,0x9,0x45,0x61,0x73,0x74,0x65,0x72,0x6e,0x20,0x2d,0x20,0x4f,0x4e,0x2c, + 0x20,0x51,0x43,0x20,0x28,0x6d,0x6f,0x73,0x74,0x20,0x61,0x72,0x65,0x61,0x73,0x29, + 0xa,0x43,0x41,0x9,0x2b,0x34,0x39,0x30,0x31,0x2d,0x30,0x38,0x38,0x31,0x36,0x9, + 0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x4e,0x69,0x70,0x69,0x67,0x6f,0x6e,0x9, 0x45,0x61,0x73,0x74,0x65,0x72,0x6e,0x20,0x2d,0x20,0x4f,0x4e,0x2c,0x20,0x51,0x43, - 0x20,0x28,0x6d,0x6f,0x73,0x74,0x20,0x61,0x72,0x65,0x61,0x73,0x29,0xa,0x43,0x41, - 0x9,0x2b,0x34,0x39,0x30,0x31,0x2d,0x30,0x38,0x38,0x31,0x36,0x9,0x41,0x6d,0x65, - 0x72,0x69,0x63,0x61,0x2f,0x4e,0x69,0x70,0x69,0x67,0x6f,0x6e,0x9,0x45,0x61,0x73, - 0x74,0x65,0x72,0x6e,0x20,0x2d,0x20,0x4f,0x4e,0x2c,0x20,0x51,0x43,0x20,0x28,0x6e, - 0x6f,0x20,0x44,0x53,0x54,0x20,0x31,0x39,0x36,0x37,0x2d,0x37,0x33,0x29,0xa,0x43, - 0x41,0x9,0x2b,0x34,0x38,0x32,0x33,0x2d,0x30,0x38,0x39,0x31,0x35,0x9,0x41,0x6d, - 0x65,0x72,0x69,0x63,0x61,0x2f,0x54,0x68,0x75,0x6e,0x64,0x65,0x72,0x5f,0x42,0x61, - 0x79,0x9,0x45,0x61,0x73,0x74,0x65,0x72,0x6e,0x20,0x2d,0x20,0x4f,0x4e,0x20,0x28, - 0x54,0x68,0x75,0x6e,0x64,0x65,0x72,0x20,0x42,0x61,0x79,0x29,0xa,0x43,0x41,0x9, - 0x2b,0x36,0x33,0x34,0x34,0x2d,0x30,0x36,0x38,0x32,0x38,0x9,0x41,0x6d,0x65,0x72, - 0x69,0x63,0x61,0x2f,0x49,0x71,0x61,0x6c,0x75,0x69,0x74,0x9,0x45,0x61,0x73,0x74, - 0x65,0x72,0x6e,0x20,0x2d,0x20,0x4e,0x55,0x20,0x28,0x6d,0x6f,0x73,0x74,0x20,0x65, - 0x61,0x73,0x74,0x20,0x61,0x72,0x65,0x61,0x73,0x29,0xa,0x43,0x41,0x9,0x2b,0x36, - 0x36,0x30,0x38,0x2d,0x30,0x36,0x35,0x34,0x34,0x9,0x41,0x6d,0x65,0x72,0x69,0x63, - 0x61,0x2f,0x50,0x61,0x6e,0x67,0x6e,0x69,0x72,0x74,0x75,0x6e,0x67,0x9,0x45,0x61, - 0x73,0x74,0x65,0x72,0x6e,0x20,0x2d,0x20,0x4e,0x55,0x20,0x28,0x50,0x61,0x6e,0x67, - 0x6e,0x69,0x72,0x74,0x75,0x6e,0x67,0x29,0xa,0x43,0x41,0x9,0x2b,0x34,0x38,0x34, - 0x35,0x33,0x31,0x2d,0x30,0x39,0x31,0x33,0x37,0x31,0x38,0x9,0x41,0x6d,0x65,0x72, - 0x69,0x63,0x61,0x2f,0x41,0x74,0x69,0x6b,0x6f,0x6b,0x61,0x6e,0x9,0x45,0x53,0x54, - 0x20,0x2d,0x20,0x4f,0x4e,0x20,0x28,0x41,0x74,0x69,0x6b,0x6f,0x6b,0x61,0x6e,0x29, - 0x3b,0x20,0x4e,0x55,0x20,0x28,0x43,0x6f,0x72,0x61,0x6c,0x20,0x48,0x29,0xa,0x43, - 0x41,0x9,0x2b,0x34,0x39,0x35,0x33,0x2d,0x30,0x39,0x37,0x30,0x39,0x9,0x41,0x6d, - 0x65,0x72,0x69,0x63,0x61,0x2f,0x57,0x69,0x6e,0x6e,0x69,0x70,0x65,0x67,0x9,0x43, - 0x65,0x6e,0x74,0x72,0x61,0x6c,0x20,0x2d,0x20,0x4f,0x4e,0x20,0x28,0x77,0x65,0x73, - 0x74,0x29,0x3b,0x20,0x4d,0x61,0x6e,0x69,0x74,0x6f,0x62,0x61,0xa,0x43,0x41,0x9, - 0x2b,0x34,0x38,0x34,0x33,0x2d,0x30,0x39,0x34,0x33,0x34,0x9,0x41,0x6d,0x65,0x72, - 0x69,0x63,0x61,0x2f,0x52,0x61,0x69,0x6e,0x79,0x5f,0x52,0x69,0x76,0x65,0x72,0x9, - 0x43,0x65,0x6e,0x74,0x72,0x61,0x6c,0x20,0x2d,0x20,0x4f,0x4e,0x20,0x28,0x52,0x61, - 0x69,0x6e,0x79,0x20,0x52,0x2c,0x20,0x46,0x74,0x20,0x46,0x72,0x61,0x6e,0x63,0x65, - 0x73,0x29,0xa,0x43,0x41,0x9,0x2b,0x37,0x34,0x34,0x31,0x34,0x34,0x2d,0x30,0x39, - 0x34,0x34,0x39,0x34,0x35,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x52,0x65, - 0x73,0x6f,0x6c,0x75,0x74,0x65,0x9,0x43,0x65,0x6e,0x74,0x72,0x61,0x6c,0x20,0x2d, - 0x20,0x4e,0x55,0x20,0x28,0x52,0x65,0x73,0x6f,0x6c,0x75,0x74,0x65,0x29,0xa,0x43, - 0x41,0x9,0x2b,0x36,0x32,0x34,0x39,0x30,0x30,0x2d,0x30,0x39,0x32,0x30,0x34,0x35, - 0x39,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x52,0x61,0x6e,0x6b,0x69,0x6e, - 0x5f,0x49,0x6e,0x6c,0x65,0x74,0x9,0x43,0x65,0x6e,0x74,0x72,0x61,0x6c,0x20,0x2d, - 0x20,0x4e,0x55,0x20,0x28,0x63,0x65,0x6e,0x74,0x72,0x61,0x6c,0x29,0xa,0x43,0x41, - 0x9,0x2b,0x35,0x30,0x32,0x34,0x2d,0x31,0x30,0x34,0x33,0x39,0x9,0x41,0x6d,0x65, - 0x72,0x69,0x63,0x61,0x2f,0x52,0x65,0x67,0x69,0x6e,0x61,0x9,0x43,0x53,0x54,0x20, - 0x2d,0x20,0x53,0x4b,0x20,0x28,0x6d,0x6f,0x73,0x74,0x20,0x61,0x72,0x65,0x61,0x73, - 0x29,0xa,0x43,0x41,0x9,0x2b,0x35,0x30,0x31,0x37,0x2d,0x31,0x30,0x37,0x35,0x30, - 0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x53,0x77,0x69,0x66,0x74,0x5f,0x43, - 0x75,0x72,0x72,0x65,0x6e,0x74,0x9,0x43,0x53,0x54,0x20,0x2d,0x20,0x53,0x4b,0x20, - 0x28,0x6d,0x69,0x64,0x77,0x65,0x73,0x74,0x29,0xa,0x43,0x41,0x9,0x2b,0x35,0x33, - 0x33,0x33,0x2d,0x31,0x31,0x33,0x32,0x38,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61, - 0x2f,0x45,0x64,0x6d,0x6f,0x6e,0x74,0x6f,0x6e,0x9,0x4d,0x6f,0x75,0x6e,0x74,0x61, - 0x69,0x6e,0x20,0x2d,0x20,0x41,0x42,0x3b,0x20,0x42,0x43,0x20,0x28,0x45,0x29,0x3b, - 0x20,0x53,0x4b,0x20,0x28,0x57,0x29,0xa,0x43,0x41,0x9,0x2b,0x36,0x39,0x30,0x36, - 0x35,0x30,0x2d,0x31,0x30,0x35,0x30,0x33,0x31,0x30,0x9,0x41,0x6d,0x65,0x72,0x69, - 0x63,0x61,0x2f,0x43,0x61,0x6d,0x62,0x72,0x69,0x64,0x67,0x65,0x5f,0x42,0x61,0x79, - 0x9,0x4d,0x6f,0x75,0x6e,0x74,0x61,0x69,0x6e,0x20,0x2d,0x20,0x4e,0x55,0x20,0x28, - 0x77,0x65,0x73,0x74,0x29,0xa,0x43,0x41,0x9,0x2b,0x36,0x32,0x32,0x37,0x2d,0x31, - 0x31,0x34,0x32,0x31,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x59,0x65,0x6c, - 0x6c,0x6f,0x77,0x6b,0x6e,0x69,0x66,0x65,0x9,0x4d,0x6f,0x75,0x6e,0x74,0x61,0x69, - 0x6e,0x20,0x2d,0x20,0x4e,0x54,0x20,0x28,0x63,0x65,0x6e,0x74,0x72,0x61,0x6c,0x29, - 0xa,0x43,0x41,0x9,0x2b,0x36,0x38,0x32,0x30,0x35,0x39,0x2d,0x31,0x33,0x33,0x34, - 0x33,0x30,0x30,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x49,0x6e,0x75,0x76, - 0x69,0x6b,0x9,0x4d,0x6f,0x75,0x6e,0x74,0x61,0x69,0x6e,0x20,0x2d,0x20,0x4e,0x54, - 0x20,0x28,0x77,0x65,0x73,0x74,0x29,0xa,0x43,0x41,0x9,0x2b,0x34,0x39,0x30,0x36, - 0x2d,0x31,0x31,0x36,0x33,0x31,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x43, - 0x72,0x65,0x73,0x74,0x6f,0x6e,0x9,0x4d,0x53,0x54,0x20,0x2d,0x20,0x42,0x43,0x20, - 0x28,0x43,0x72,0x65,0x73,0x74,0x6f,0x6e,0x29,0xa,0x43,0x41,0x9,0x2b,0x35,0x39, - 0x34,0x36,0x2d,0x31,0x32,0x30,0x31,0x34,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61, - 0x2f,0x44,0x61,0x77,0x73,0x6f,0x6e,0x5f,0x43,0x72,0x65,0x65,0x6b,0x9,0x4d,0x53, - 0x54,0x20,0x2d,0x20,0x42,0x43,0x20,0x28,0x44,0x61,0x77,0x73,0x6f,0x6e,0x20,0x43, - 0x72,0x2c,0x20,0x46,0x74,0x20,0x53,0x74,0x20,0x4a,0x6f,0x68,0x6e,0x29,0xa,0x43, - 0x41,0x9,0x2b,0x35,0x38,0x34,0x38,0x2d,0x31,0x32,0x32,0x34,0x32,0x9,0x41,0x6d, - 0x65,0x72,0x69,0x63,0x61,0x2f,0x46,0x6f,0x72,0x74,0x5f,0x4e,0x65,0x6c,0x73,0x6f, - 0x6e,0x9,0x4d,0x53,0x54,0x20,0x2d,0x20,0x42,0x43,0x20,0x28,0x46,0x74,0x20,0x4e, - 0x65,0x6c,0x73,0x6f,0x6e,0x29,0xa,0x43,0x41,0x9,0x2b,0x34,0x39,0x31,0x36,0x2d, - 0x31,0x32,0x33,0x30,0x37,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x56,0x61, - 0x6e,0x63,0x6f,0x75,0x76,0x65,0x72,0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x20, - 0x2d,0x20,0x42,0x43,0x20,0x28,0x6d,0x6f,0x73,0x74,0x20,0x61,0x72,0x65,0x61,0x73, - 0x29,0xa,0x43,0x41,0x9,0x2b,0x36,0x30,0x34,0x33,0x2d,0x31,0x33,0x35,0x30,0x33, - 0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x57,0x68,0x69,0x74,0x65,0x68,0x6f, - 0x72,0x73,0x65,0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x20,0x2d,0x20,0x59,0x75, - 0x6b,0x6f,0x6e,0x20,0x28,0x73,0x6f,0x75,0x74,0x68,0x29,0xa,0x43,0x41,0x9,0x2b, - 0x36,0x34,0x30,0x34,0x2d,0x31,0x33,0x39,0x32,0x35,0x9,0x41,0x6d,0x65,0x72,0x69, - 0x63,0x61,0x2f,0x44,0x61,0x77,0x73,0x6f,0x6e,0x9,0x50,0x61,0x63,0x69,0x66,0x69, - 0x63,0x20,0x2d,0x20,0x59,0x75,0x6b,0x6f,0x6e,0x20,0x28,0x6e,0x6f,0x72,0x74,0x68, - 0x29,0xa,0x43,0x43,0x9,0x2d,0x31,0x32,0x31,0x30,0x2b,0x30,0x39,0x36,0x35,0x35, - 0x9,0x49,0x6e,0x64,0x69,0x61,0x6e,0x2f,0x43,0x6f,0x63,0x6f,0x73,0xa,0x43,0x48, - 0x2c,0x44,0x45,0x2c,0x4c,0x49,0x9,0x2b,0x34,0x37,0x32,0x33,0x2b,0x30,0x30,0x38, - 0x33,0x32,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x5a,0x75,0x72,0x69,0x63,0x68, - 0x9,0x53,0x77,0x69,0x73,0x73,0x20,0x74,0x69,0x6d,0x65,0xa,0x43,0x49,0x2c,0x42, - 0x46,0x2c,0x47,0x4d,0x2c,0x47,0x4e,0x2c,0x4d,0x4c,0x2c,0x4d,0x52,0x2c,0x53,0x48, - 0x2c,0x53,0x4c,0x2c,0x53,0x4e,0x2c,0x53,0x54,0x2c,0x54,0x47,0x9,0x2b,0x30,0x35, - 0x31,0x39,0x2d,0x30,0x30,0x34,0x30,0x32,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f, - 0x41,0x62,0x69,0x64,0x6a,0x61,0x6e,0xa,0x43,0x4b,0x9,0x2d,0x32,0x31,0x31,0x34, - 0x2d,0x31,0x35,0x39,0x34,0x36,0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x2f,0x52, - 0x61,0x72,0x6f,0x74,0x6f,0x6e,0x67,0x61,0xa,0x43,0x4c,0x9,0x2d,0x33,0x33,0x32, - 0x37,0x2d,0x30,0x37,0x30,0x34,0x30,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f, - 0x53,0x61,0x6e,0x74,0x69,0x61,0x67,0x6f,0x9,0x43,0x68,0x69,0x6c,0x65,0x20,0x28, - 0x6d,0x6f,0x73,0x74,0x20,0x61,0x72,0x65,0x61,0x73,0x29,0xa,0x43,0x4c,0x9,0x2d, - 0x32,0x37,0x30,0x39,0x2d,0x31,0x30,0x39,0x32,0x36,0x9,0x50,0x61,0x63,0x69,0x66, - 0x69,0x63,0x2f,0x45,0x61,0x73,0x74,0x65,0x72,0x9,0x45,0x61,0x73,0x74,0x65,0x72, - 0x20,0x49,0x73,0x6c,0x61,0x6e,0x64,0xa,0x43,0x4e,0x9,0x2b,0x33,0x31,0x31,0x34, - 0x2b,0x31,0x32,0x31,0x32,0x38,0x9,0x41,0x73,0x69,0x61,0x2f,0x53,0x68,0x61,0x6e, - 0x67,0x68,0x61,0x69,0x9,0x42,0x65,0x69,0x6a,0x69,0x6e,0x67,0x20,0x54,0x69,0x6d, - 0x65,0xa,0x43,0x4e,0x9,0x2b,0x34,0x33,0x34,0x38,0x2b,0x30,0x38,0x37,0x33,0x35, - 0x9,0x41,0x73,0x69,0x61,0x2f,0x55,0x72,0x75,0x6d,0x71,0x69,0x9,0x58,0x69,0x6e, - 0x6a,0x69,0x61,0x6e,0x67,0x20,0x54,0x69,0x6d,0x65,0xa,0x43,0x4f,0x9,0x2b,0x30, - 0x34,0x33,0x36,0x2d,0x30,0x37,0x34,0x30,0x35,0x9,0x41,0x6d,0x65,0x72,0x69,0x63, - 0x61,0x2f,0x42,0x6f,0x67,0x6f,0x74,0x61,0xa,0x43,0x52,0x9,0x2b,0x30,0x39,0x35, - 0x36,0x2d,0x30,0x38,0x34,0x30,0x35,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f, - 0x43,0x6f,0x73,0x74,0x61,0x5f,0x52,0x69,0x63,0x61,0xa,0x43,0x55,0x9,0x2b,0x32, - 0x33,0x30,0x38,0x2d,0x30,0x38,0x32,0x32,0x32,0x9,0x41,0x6d,0x65,0x72,0x69,0x63, - 0x61,0x2f,0x48,0x61,0x76,0x61,0x6e,0x61,0xa,0x43,0x56,0x9,0x2b,0x31,0x34,0x35, - 0x35,0x2d,0x30,0x32,0x33,0x33,0x31,0x9,0x41,0x74,0x6c,0x61,0x6e,0x74,0x69,0x63, - 0x2f,0x43,0x61,0x70,0x65,0x5f,0x56,0x65,0x72,0x64,0x65,0xa,0x43,0x57,0x2c,0x41, - 0x57,0x2c,0x42,0x51,0x2c,0x53,0x58,0x9,0x2b,0x31,0x32,0x31,0x31,0x2d,0x30,0x36, - 0x39,0x30,0x30,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x43,0x75,0x72,0x61, - 0x63,0x61,0x6f,0xa,0x43,0x58,0x9,0x2d,0x31,0x30,0x32,0x35,0x2b,0x31,0x30,0x35, - 0x34,0x33,0x9,0x49,0x6e,0x64,0x69,0x61,0x6e,0x2f,0x43,0x68,0x72,0x69,0x73,0x74, - 0x6d,0x61,0x73,0xa,0x43,0x59,0x9,0x2b,0x33,0x35,0x31,0x30,0x2b,0x30,0x33,0x33, - 0x32,0x32,0x9,0x41,0x73,0x69,0x61,0x2f,0x4e,0x69,0x63,0x6f,0x73,0x69,0x61,0x9, - 0x43,0x79,0x70,0x72,0x75,0x73,0x20,0x28,0x6d,0x6f,0x73,0x74,0x20,0x61,0x72,0x65, - 0x61,0x73,0x29,0xa,0x43,0x59,0x9,0x2b,0x33,0x35,0x30,0x37,0x2b,0x30,0x33,0x33, - 0x35,0x37,0x9,0x41,0x73,0x69,0x61,0x2f,0x46,0x61,0x6d,0x61,0x67,0x75,0x73,0x74, - 0x61,0x9,0x4e,0x6f,0x72,0x74,0x68,0x65,0x72,0x6e,0x20,0x43,0x79,0x70,0x72,0x75, - 0x73,0xa,0x43,0x5a,0x2c,0x53,0x4b,0x9,0x2b,0x35,0x30,0x30,0x35,0x2b,0x30,0x31, - 0x34,0x32,0x36,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x50,0x72,0x61,0x67,0x75, - 0x65,0xa,0x44,0x45,0x9,0x2b,0x35,0x32,0x33,0x30,0x2b,0x30,0x31,0x33,0x32,0x32, - 0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x42,0x65,0x72,0x6c,0x69,0x6e,0x9,0x47, - 0x65,0x72,0x6d,0x61,0x6e,0x79,0x20,0x28,0x6d,0x6f,0x73,0x74,0x20,0x61,0x72,0x65, - 0x61,0x73,0x29,0xa,0x44,0x4b,0x9,0x2b,0x35,0x35,0x34,0x30,0x2b,0x30,0x31,0x32, - 0x33,0x35,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x43,0x6f,0x70,0x65,0x6e,0x68, - 0x61,0x67,0x65,0x6e,0xa,0x44,0x4f,0x9,0x2b,0x31,0x38,0x32,0x38,0x2d,0x30,0x36, - 0x39,0x35,0x34,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x53,0x61,0x6e,0x74, - 0x6f,0x5f,0x44,0x6f,0x6d,0x69,0x6e,0x67,0x6f,0xa,0x44,0x5a,0x9,0x2b,0x33,0x36, - 0x34,0x37,0x2b,0x30,0x30,0x33,0x30,0x33,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f, - 0x41,0x6c,0x67,0x69,0x65,0x72,0x73,0xa,0x45,0x43,0x9,0x2d,0x30,0x32,0x31,0x30, - 0x2d,0x30,0x37,0x39,0x35,0x30,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x47, - 0x75,0x61,0x79,0x61,0x71,0x75,0x69,0x6c,0x9,0x45,0x63,0x75,0x61,0x64,0x6f,0x72, - 0x20,0x28,0x6d,0x61,0x69,0x6e,0x6c,0x61,0x6e,0x64,0x29,0xa,0x45,0x43,0x9,0x2d, - 0x30,0x30,0x35,0x34,0x2d,0x30,0x38,0x39,0x33,0x36,0x9,0x50,0x61,0x63,0x69,0x66, - 0x69,0x63,0x2f,0x47,0x61,0x6c,0x61,0x70,0x61,0x67,0x6f,0x73,0x9,0x47,0x61,0x6c, - 0xc3,0xa1,0x70,0x61,0x67,0x6f,0x73,0x20,0x49,0x73,0x6c,0x61,0x6e,0x64,0x73,0xa, - 0x45,0x45,0x9,0x2b,0x35,0x39,0x32,0x35,0x2b,0x30,0x32,0x34,0x34,0x35,0x9,0x45, - 0x75,0x72,0x6f,0x70,0x65,0x2f,0x54,0x61,0x6c,0x6c,0x69,0x6e,0x6e,0xa,0x45,0x47, - 0x9,0x2b,0x33,0x30,0x30,0x33,0x2b,0x30,0x33,0x31,0x31,0x35,0x9,0x41,0x66,0x72, - 0x69,0x63,0x61,0x2f,0x43,0x61,0x69,0x72,0x6f,0xa,0x45,0x48,0x9,0x2b,0x32,0x37, - 0x30,0x39,0x2d,0x30,0x31,0x33,0x31,0x32,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f, - 0x45,0x6c,0x5f,0x41,0x61,0x69,0x75,0x6e,0xa,0x45,0x53,0x9,0x2b,0x34,0x30,0x32, - 0x34,0x2d,0x30,0x30,0x33,0x34,0x31,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x4d, - 0x61,0x64,0x72,0x69,0x64,0x9,0x53,0x70,0x61,0x69,0x6e,0x20,0x28,0x6d,0x61,0x69, - 0x6e,0x6c,0x61,0x6e,0x64,0x29,0xa,0x45,0x53,0x9,0x2b,0x33,0x35,0x35,0x33,0x2d, - 0x30,0x30,0x35,0x31,0x39,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f,0x43,0x65,0x75, - 0x74,0x61,0x9,0x43,0x65,0x75,0x74,0x61,0x2c,0x20,0x4d,0x65,0x6c,0x69,0x6c,0x6c, - 0x61,0xa,0x45,0x53,0x9,0x2b,0x32,0x38,0x30,0x36,0x2d,0x30,0x31,0x35,0x32,0x34, - 0x9,0x41,0x74,0x6c,0x61,0x6e,0x74,0x69,0x63,0x2f,0x43,0x61,0x6e,0x61,0x72,0x79, - 0x9,0x43,0x61,0x6e,0x61,0x72,0x79,0x20,0x49,0x73,0x6c,0x61,0x6e,0x64,0x73,0xa, - 0x46,0x49,0x2c,0x41,0x58,0x9,0x2b,0x36,0x30,0x31,0x30,0x2b,0x30,0x32,0x34,0x35, - 0x38,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x48,0x65,0x6c,0x73,0x69,0x6e,0x6b, - 0x69,0xa,0x46,0x4a,0x9,0x2d,0x31,0x38,0x30,0x38,0x2b,0x31,0x37,0x38,0x32,0x35, - 0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x2f,0x46,0x69,0x6a,0x69,0xa,0x46,0x4b, - 0x9,0x2d,0x35,0x31,0x34,0x32,0x2d,0x30,0x35,0x37,0x35,0x31,0x9,0x41,0x74,0x6c, - 0x61,0x6e,0x74,0x69,0x63,0x2f,0x53,0x74,0x61,0x6e,0x6c,0x65,0x79,0xa,0x46,0x4d, - 0x9,0x2b,0x30,0x37,0x32,0x35,0x2b,0x31,0x35,0x31,0x34,0x37,0x9,0x50,0x61,0x63, - 0x69,0x66,0x69,0x63,0x2f,0x43,0x68,0x75,0x75,0x6b,0x9,0x43,0x68,0x75,0x75,0x6b, - 0x2f,0x54,0x72,0x75,0x6b,0x2c,0x20,0x59,0x61,0x70,0xa,0x46,0x4d,0x9,0x2b,0x30, - 0x36,0x35,0x38,0x2b,0x31,0x35,0x38,0x31,0x33,0x9,0x50,0x61,0x63,0x69,0x66,0x69, - 0x63,0x2f,0x50,0x6f,0x68,0x6e,0x70,0x65,0x69,0x9,0x50,0x6f,0x68,0x6e,0x70,0x65, - 0x69,0x2f,0x50,0x6f,0x6e,0x61,0x70,0x65,0xa,0x46,0x4d,0x9,0x2b,0x30,0x35,0x31, - 0x39,0x2b,0x31,0x36,0x32,0x35,0x39,0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x2f, - 0x4b,0x6f,0x73,0x72,0x61,0x65,0x9,0x4b,0x6f,0x73,0x72,0x61,0x65,0xa,0x46,0x4f, - 0x9,0x2b,0x36,0x32,0x30,0x31,0x2d,0x30,0x30,0x36,0x34,0x36,0x9,0x41,0x74,0x6c, - 0x61,0x6e,0x74,0x69,0x63,0x2f,0x46,0x61,0x72,0x6f,0x65,0xa,0x46,0x52,0x9,0x2b, - 0x34,0x38,0x35,0x32,0x2b,0x30,0x30,0x32,0x32,0x30,0x9,0x45,0x75,0x72,0x6f,0x70, - 0x65,0x2f,0x50,0x61,0x72,0x69,0x73,0xa,0x47,0x42,0x2c,0x47,0x47,0x2c,0x49,0x4d, - 0x2c,0x4a,0x45,0x9,0x2b,0x35,0x31,0x33,0x30,0x33,0x30,0x2d,0x30,0x30,0x30,0x30, - 0x37,0x33,0x31,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x4c,0x6f,0x6e,0x64,0x6f, - 0x6e,0xa,0x47,0x45,0x9,0x2b,0x34,0x31,0x34,0x33,0x2b,0x30,0x34,0x34,0x34,0x39, - 0x9,0x41,0x73,0x69,0x61,0x2f,0x54,0x62,0x69,0x6c,0x69,0x73,0x69,0xa,0x47,0x46, - 0x9,0x2b,0x30,0x34,0x35,0x36,0x2d,0x30,0x35,0x32,0x32,0x30,0x9,0x41,0x6d,0x65, - 0x72,0x69,0x63,0x61,0x2f,0x43,0x61,0x79,0x65,0x6e,0x6e,0x65,0xa,0x47,0x48,0x9, - 0x2b,0x30,0x35,0x33,0x33,0x2d,0x30,0x30,0x30,0x31,0x33,0x9,0x41,0x66,0x72,0x69, - 0x63,0x61,0x2f,0x41,0x63,0x63,0x72,0x61,0xa,0x47,0x49,0x9,0x2b,0x33,0x36,0x30, - 0x38,0x2d,0x30,0x30,0x35,0x32,0x31,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x47, - 0x69,0x62,0x72,0x61,0x6c,0x74,0x61,0x72,0xa,0x47,0x4c,0x9,0x2b,0x36,0x34,0x31, - 0x31,0x2d,0x30,0x35,0x31,0x34,0x34,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f, - 0x47,0x6f,0x64,0x74,0x68,0x61,0x62,0x9,0x47,0x72,0x65,0x65,0x6e,0x6c,0x61,0x6e, - 0x64,0x20,0x28,0x6d,0x6f,0x73,0x74,0x20,0x61,0x72,0x65,0x61,0x73,0x29,0xa,0x47, - 0x4c,0x9,0x2b,0x37,0x36,0x34,0x36,0x2d,0x30,0x31,0x38,0x34,0x30,0x9,0x41,0x6d, - 0x65,0x72,0x69,0x63,0x61,0x2f,0x44,0x61,0x6e,0x6d,0x61,0x72,0x6b,0x73,0x68,0x61, - 0x76,0x6e,0x9,0x4e,0x61,0x74,0x69,0x6f,0x6e,0x61,0x6c,0x20,0x50,0x61,0x72,0x6b, - 0x20,0x28,0x65,0x61,0x73,0x74,0x20,0x63,0x6f,0x61,0x73,0x74,0x29,0xa,0x47,0x4c, - 0x9,0x2b,0x37,0x30,0x32,0x39,0x2d,0x30,0x32,0x31,0x35,0x38,0x9,0x41,0x6d,0x65, - 0x72,0x69,0x63,0x61,0x2f,0x53,0x63,0x6f,0x72,0x65,0x73,0x62,0x79,0x73,0x75,0x6e, - 0x64,0x9,0x53,0x63,0x6f,0x72,0x65,0x73,0x62,0x79,0x73,0x75,0x6e,0x64,0x2f,0x49, - 0x74,0x74,0x6f,0x71,0x71,0x6f,0x72,0x74,0x6f,0x6f,0x72,0x6d,0x69,0x69,0x74,0xa, - 0x47,0x4c,0x9,0x2b,0x37,0x36,0x33,0x34,0x2d,0x30,0x36,0x38,0x34,0x37,0x9,0x41, - 0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x54,0x68,0x75,0x6c,0x65,0x9,0x54,0x68,0x75, - 0x6c,0x65,0x2f,0x50,0x69,0x74,0x75,0x66,0x66,0x69,0x6b,0xa,0x47,0x52,0x9,0x2b, - 0x33,0x37,0x35,0x38,0x2b,0x30,0x32,0x33,0x34,0x33,0x9,0x45,0x75,0x72,0x6f,0x70, - 0x65,0x2f,0x41,0x74,0x68,0x65,0x6e,0x73,0xa,0x47,0x53,0x9,0x2d,0x35,0x34,0x31, - 0x36,0x2d,0x30,0x33,0x36,0x33,0x32,0x9,0x41,0x74,0x6c,0x61,0x6e,0x74,0x69,0x63, - 0x2f,0x53,0x6f,0x75,0x74,0x68,0x5f,0x47,0x65,0x6f,0x72,0x67,0x69,0x61,0xa,0x47, - 0x54,0x9,0x2b,0x31,0x34,0x33,0x38,0x2d,0x30,0x39,0x30,0x33,0x31,0x9,0x41,0x6d, - 0x65,0x72,0x69,0x63,0x61,0x2f,0x47,0x75,0x61,0x74,0x65,0x6d,0x61,0x6c,0x61,0xa, - 0x47,0x55,0x2c,0x4d,0x50,0x9,0x2b,0x31,0x33,0x32,0x38,0x2b,0x31,0x34,0x34,0x34, - 0x35,0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x2f,0x47,0x75,0x61,0x6d,0xa,0x47, - 0x57,0x9,0x2b,0x31,0x31,0x35,0x31,0x2d,0x30,0x31,0x35,0x33,0x35,0x9,0x41,0x66, - 0x72,0x69,0x63,0x61,0x2f,0x42,0x69,0x73,0x73,0x61,0x75,0xa,0x47,0x59,0x9,0x2b, - 0x30,0x36,0x34,0x38,0x2d,0x30,0x35,0x38,0x31,0x30,0x9,0x41,0x6d,0x65,0x72,0x69, - 0x63,0x61,0x2f,0x47,0x75,0x79,0x61,0x6e,0x61,0xa,0x48,0x4b,0x9,0x2b,0x32,0x32, - 0x31,0x37,0x2b,0x31,0x31,0x34,0x30,0x39,0x9,0x41,0x73,0x69,0x61,0x2f,0x48,0x6f, - 0x6e,0x67,0x5f,0x4b,0x6f,0x6e,0x67,0xa,0x48,0x4e,0x9,0x2b,0x31,0x34,0x30,0x36, - 0x2d,0x30,0x38,0x37,0x31,0x33,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x54, - 0x65,0x67,0x75,0x63,0x69,0x67,0x61,0x6c,0x70,0x61,0xa,0x48,0x54,0x9,0x2b,0x31, - 0x38,0x33,0x32,0x2d,0x30,0x37,0x32,0x32,0x30,0x9,0x41,0x6d,0x65,0x72,0x69,0x63, - 0x61,0x2f,0x50,0x6f,0x72,0x74,0x2d,0x61,0x75,0x2d,0x50,0x72,0x69,0x6e,0x63,0x65, - 0xa,0x48,0x55,0x9,0x2b,0x34,0x37,0x33,0x30,0x2b,0x30,0x31,0x39,0x30,0x35,0x9, - 0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x42,0x75,0x64,0x61,0x70,0x65,0x73,0x74,0xa, - 0x49,0x44,0x9,0x2d,0x30,0x36,0x31,0x30,0x2b,0x31,0x30,0x36,0x34,0x38,0x9,0x41, - 0x73,0x69,0x61,0x2f,0x4a,0x61,0x6b,0x61,0x72,0x74,0x61,0x9,0x4a,0x61,0x76,0x61, - 0x2c,0x20,0x53,0x75,0x6d,0x61,0x74,0x72,0x61,0xa,0x49,0x44,0x9,0x2d,0x30,0x30, - 0x30,0x32,0x2b,0x31,0x30,0x39,0x32,0x30,0x9,0x41,0x73,0x69,0x61,0x2f,0x50,0x6f, - 0x6e,0x74,0x69,0x61,0x6e,0x61,0x6b,0x9,0x42,0x6f,0x72,0x6e,0x65,0x6f,0x20,0x28, - 0x77,0x65,0x73,0x74,0x2c,0x20,0x63,0x65,0x6e,0x74,0x72,0x61,0x6c,0x29,0xa,0x49, - 0x44,0x9,0x2d,0x30,0x35,0x30,0x37,0x2b,0x31,0x31,0x39,0x32,0x34,0x9,0x41,0x73, - 0x69,0x61,0x2f,0x4d,0x61,0x6b,0x61,0x73,0x73,0x61,0x72,0x9,0x42,0x6f,0x72,0x6e, - 0x65,0x6f,0x20,0x28,0x65,0x61,0x73,0x74,0x2c,0x20,0x73,0x6f,0x75,0x74,0x68,0x29, - 0x3b,0x20,0x53,0x75,0x6c,0x61,0x77,0x65,0x73,0x69,0x2f,0x43,0x65,0x6c,0x65,0x62, - 0x65,0x73,0x2c,0x20,0x42,0x61,0x6c,0x69,0x2c,0x20,0x4e,0x75,0x73,0x61,0x20,0x54, - 0x65,0x6e,0x67,0x61,0x72,0x72,0x61,0x3b,0x20,0x54,0x69,0x6d,0x6f,0x72,0x20,0x28, - 0x77,0x65,0x73,0x74,0x29,0xa,0x49,0x44,0x9,0x2d,0x30,0x32,0x33,0x32,0x2b,0x31, - 0x34,0x30,0x34,0x32,0x9,0x41,0x73,0x69,0x61,0x2f,0x4a,0x61,0x79,0x61,0x70,0x75, - 0x72,0x61,0x9,0x4e,0x65,0x77,0x20,0x47,0x75,0x69,0x6e,0x65,0x61,0x20,0x28,0x57, - 0x65,0x73,0x74,0x20,0x50,0x61,0x70,0x75,0x61,0x20,0x2f,0x20,0x49,0x72,0x69,0x61, - 0x6e,0x20,0x4a,0x61,0x79,0x61,0x29,0x3b,0x20,0x4d,0x61,0x6c,0x75,0x6b,0x75,0x73, - 0x2f,0x4d,0x6f,0x6c,0x75,0x63,0x63,0x61,0x73,0xa,0x49,0x45,0x9,0x2b,0x35,0x33, - 0x32,0x30,0x2d,0x30,0x30,0x36,0x31,0x35,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f, - 0x44,0x75,0x62,0x6c,0x69,0x6e,0xa,0x49,0x4c,0x9,0x2b,0x33,0x31,0x34,0x36,0x35, - 0x30,0x2b,0x30,0x33,0x35,0x31,0x33,0x32,0x36,0x9,0x41,0x73,0x69,0x61,0x2f,0x4a, - 0x65,0x72,0x75,0x73,0x61,0x6c,0x65,0x6d,0xa,0x49,0x4e,0x9,0x2b,0x32,0x32,0x33, - 0x32,0x2b,0x30,0x38,0x38,0x32,0x32,0x9,0x41,0x73,0x69,0x61,0x2f,0x4b,0x6f,0x6c, - 0x6b,0x61,0x74,0x61,0xa,0x49,0x4f,0x9,0x2d,0x30,0x37,0x32,0x30,0x2b,0x30,0x37, - 0x32,0x32,0x35,0x9,0x49,0x6e,0x64,0x69,0x61,0x6e,0x2f,0x43,0x68,0x61,0x67,0x6f, - 0x73,0xa,0x49,0x51,0x9,0x2b,0x33,0x33,0x32,0x31,0x2b,0x30,0x34,0x34,0x32,0x35, - 0x9,0x41,0x73,0x69,0x61,0x2f,0x42,0x61,0x67,0x68,0x64,0x61,0x64,0xa,0x49,0x52, - 0x9,0x2b,0x33,0x35,0x34,0x30,0x2b,0x30,0x35,0x31,0x32,0x36,0x9,0x41,0x73,0x69, - 0x61,0x2f,0x54,0x65,0x68,0x72,0x61,0x6e,0xa,0x49,0x53,0x9,0x2b,0x36,0x34,0x30, - 0x39,0x2d,0x30,0x32,0x31,0x35,0x31,0x9,0x41,0x74,0x6c,0x61,0x6e,0x74,0x69,0x63, - 0x2f,0x52,0x65,0x79,0x6b,0x6a,0x61,0x76,0x69,0x6b,0xa,0x49,0x54,0x2c,0x53,0x4d, - 0x2c,0x56,0x41,0x9,0x2b,0x34,0x31,0x35,0x34,0x2b,0x30,0x31,0x32,0x32,0x39,0x9, - 0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x52,0x6f,0x6d,0x65,0xa,0x4a,0x4d,0x9,0x2b, - 0x31,0x37,0x35,0x38,0x30,0x35,0x2d,0x30,0x37,0x36,0x34,0x37,0x33,0x36,0x9,0x41, - 0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x4a,0x61,0x6d,0x61,0x69,0x63,0x61,0xa,0x4a, - 0x4f,0x9,0x2b,0x33,0x31,0x35,0x37,0x2b,0x30,0x33,0x35,0x35,0x36,0x9,0x41,0x73, - 0x69,0x61,0x2f,0x41,0x6d,0x6d,0x61,0x6e,0xa,0x4a,0x50,0x9,0x2b,0x33,0x35,0x33, - 0x39,0x31,0x36,0x2b,0x31,0x33,0x39,0x34,0x34,0x34,0x31,0x9,0x41,0x73,0x69,0x61, - 0x2f,0x54,0x6f,0x6b,0x79,0x6f,0xa,0x4b,0x45,0x2c,0x44,0x4a,0x2c,0x45,0x52,0x2c, - 0x45,0x54,0x2c,0x4b,0x4d,0x2c,0x4d,0x47,0x2c,0x53,0x4f,0x2c,0x54,0x5a,0x2c,0x55, - 0x47,0x2c,0x59,0x54,0x9,0x2d,0x30,0x31,0x31,0x37,0x2b,0x30,0x33,0x36,0x34,0x39, - 0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f,0x4e,0x61,0x69,0x72,0x6f,0x62,0x69,0xa, - 0x4b,0x47,0x9,0x2b,0x34,0x32,0x35,0x34,0x2b,0x30,0x37,0x34,0x33,0x36,0x9,0x41, - 0x73,0x69,0x61,0x2f,0x42,0x69,0x73,0x68,0x6b,0x65,0x6b,0xa,0x4b,0x49,0x9,0x2b, - 0x30,0x31,0x32,0x35,0x2b,0x31,0x37,0x33,0x30,0x30,0x9,0x50,0x61,0x63,0x69,0x66, - 0x69,0x63,0x2f,0x54,0x61,0x72,0x61,0x77,0x61,0x9,0x47,0x69,0x6c,0x62,0x65,0x72, - 0x74,0x20,0x49,0x73,0x6c,0x61,0x6e,0x64,0x73,0xa,0x4b,0x49,0x9,0x2d,0x30,0x33, - 0x30,0x38,0x2d,0x31,0x37,0x31,0x30,0x35,0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63, - 0x2f,0x45,0x6e,0x64,0x65,0x72,0x62,0x75,0x72,0x79,0x9,0x50,0x68,0x6f,0x65,0x6e, - 0x69,0x78,0x20,0x49,0x73,0x6c,0x61,0x6e,0x64,0x73,0xa,0x4b,0x49,0x9,0x2b,0x30, - 0x31,0x35,0x32,0x2d,0x31,0x35,0x37,0x32,0x30,0x9,0x50,0x61,0x63,0x69,0x66,0x69, - 0x63,0x2f,0x4b,0x69,0x72,0x69,0x74,0x69,0x6d,0x61,0x74,0x69,0x9,0x4c,0x69,0x6e, - 0x65,0x20,0x49,0x73,0x6c,0x61,0x6e,0x64,0x73,0xa,0x4b,0x50,0x9,0x2b,0x33,0x39, - 0x30,0x31,0x2b,0x31,0x32,0x35,0x34,0x35,0x9,0x41,0x73,0x69,0x61,0x2f,0x50,0x79, - 0x6f,0x6e,0x67,0x79,0x61,0x6e,0x67,0xa,0x4b,0x52,0x9,0x2b,0x33,0x37,0x33,0x33, - 0x2b,0x31,0x32,0x36,0x35,0x38,0x9,0x41,0x73,0x69,0x61,0x2f,0x53,0x65,0x6f,0x75, - 0x6c,0xa,0x4b,0x5a,0x9,0x2b,0x34,0x33,0x31,0x35,0x2b,0x30,0x37,0x36,0x35,0x37, - 0x9,0x41,0x73,0x69,0x61,0x2f,0x41,0x6c,0x6d,0x61,0x74,0x79,0x9,0x4b,0x61,0x7a, - 0x61,0x6b,0x68,0x73,0x74,0x61,0x6e,0x20,0x28,0x6d,0x6f,0x73,0x74,0x20,0x61,0x72, - 0x65,0x61,0x73,0x29,0xa,0x4b,0x5a,0x9,0x2b,0x34,0x34,0x34,0x38,0x2b,0x30,0x36, - 0x35,0x32,0x38,0x9,0x41,0x73,0x69,0x61,0x2f,0x51,0x79,0x7a,0x79,0x6c,0x6f,0x72, - 0x64,0x61,0x9,0x51,0x79,0x7a,0x79,0x6c,0x6f,0x72,0x64,0x61,0x2f,0x4b,0x79,0x7a, - 0x79,0x6c,0x6f,0x72,0x64,0x61,0x2f,0x4b,0x7a,0x79,0x6c,0x2d,0x4f,0x72,0x64,0x61, - 0xa,0x4b,0x5a,0x9,0x2b,0x35,0x30,0x31,0x37,0x2b,0x30,0x35,0x37,0x31,0x30,0x9, - 0x41,0x73,0x69,0x61,0x2f,0x41,0x71,0x74,0x6f,0x62,0x65,0x9,0x41,0x71,0x74,0xc3, - 0xb6,0x62,0x65,0x2f,0x41,0x6b,0x74,0x6f,0x62,0x65,0xa,0x4b,0x5a,0x9,0x2b,0x34, - 0x34,0x33,0x31,0x2b,0x30,0x35,0x30,0x31,0x36,0x9,0x41,0x73,0x69,0x61,0x2f,0x41, - 0x71,0x74,0x61,0x75,0x9,0x4d,0x61,0x6e,0x67,0x67,0x68,0x79,0x73,0x74,0x61,0xc5, - 0xab,0x2f,0x4d,0x61,0x6e,0x6b,0x69,0x73,0x74,0x61,0x75,0xa,0x4b,0x5a,0x9,0x2b, - 0x34,0x37,0x30,0x37,0x2b,0x30,0x35,0x31,0x35,0x36,0x9,0x41,0x73,0x69,0x61,0x2f, - 0x41,0x74,0x79,0x72,0x61,0x75,0x9,0x41,0x74,0x79,0x72,0x61,0xc5,0xab,0x2f,0x41, - 0x74,0x69,0x72,0x61,0x75,0x2f,0x47,0x75,0x72,0x27,0x79,0x65,0x76,0xa,0x4b,0x5a, - 0x9,0x2b,0x35,0x31,0x31,0x33,0x2b,0x30,0x35,0x31,0x32,0x31,0x9,0x41,0x73,0x69, - 0x61,0x2f,0x4f,0x72,0x61,0x6c,0x9,0x57,0x65,0x73,0x74,0x20,0x4b,0x61,0x7a,0x61, - 0x6b,0x68,0x73,0x74,0x61,0x6e,0xa,0x4c,0x42,0x9,0x2b,0x33,0x33,0x35,0x33,0x2b, - 0x30,0x33,0x35,0x33,0x30,0x9,0x41,0x73,0x69,0x61,0x2f,0x42,0x65,0x69,0x72,0x75, - 0x74,0xa,0x4c,0x4b,0x9,0x2b,0x30,0x36,0x35,0x36,0x2b,0x30,0x37,0x39,0x35,0x31, - 0x9,0x41,0x73,0x69,0x61,0x2f,0x43,0x6f,0x6c,0x6f,0x6d,0x62,0x6f,0xa,0x4c,0x52, - 0x9,0x2b,0x30,0x36,0x31,0x38,0x2d,0x30,0x31,0x30,0x34,0x37,0x9,0x41,0x66,0x72, - 0x69,0x63,0x61,0x2f,0x4d,0x6f,0x6e,0x72,0x6f,0x76,0x69,0x61,0xa,0x4c,0x54,0x9, - 0x2b,0x35,0x34,0x34,0x31,0x2b,0x30,0x32,0x35,0x31,0x39,0x9,0x45,0x75,0x72,0x6f, - 0x70,0x65,0x2f,0x56,0x69,0x6c,0x6e,0x69,0x75,0x73,0xa,0x4c,0x55,0x9,0x2b,0x34, - 0x39,0x33,0x36,0x2b,0x30,0x30,0x36,0x30,0x39,0x9,0x45,0x75,0x72,0x6f,0x70,0x65, - 0x2f,0x4c,0x75,0x78,0x65,0x6d,0x62,0x6f,0x75,0x72,0x67,0xa,0x4c,0x56,0x9,0x2b, - 0x35,0x36,0x35,0x37,0x2b,0x30,0x32,0x34,0x30,0x36,0x9,0x45,0x75,0x72,0x6f,0x70, - 0x65,0x2f,0x52,0x69,0x67,0x61,0xa,0x4c,0x59,0x9,0x2b,0x33,0x32,0x35,0x34,0x2b, - 0x30,0x31,0x33,0x31,0x31,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f,0x54,0x72,0x69, - 0x70,0x6f,0x6c,0x69,0xa,0x4d,0x41,0x9,0x2b,0x33,0x33,0x33,0x39,0x2d,0x30,0x30, - 0x37,0x33,0x35,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f,0x43,0x61,0x73,0x61,0x62, - 0x6c,0x61,0x6e,0x63,0x61,0xa,0x4d,0x43,0x9,0x2b,0x34,0x33,0x34,0x32,0x2b,0x30, - 0x30,0x37,0x32,0x33,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x4d,0x6f,0x6e,0x61, - 0x63,0x6f,0xa,0x4d,0x44,0x9,0x2b,0x34,0x37,0x30,0x30,0x2b,0x30,0x32,0x38,0x35, - 0x30,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x43,0x68,0x69,0x73,0x69,0x6e,0x61, - 0x75,0xa,0x4d,0x48,0x9,0x2b,0x30,0x37,0x30,0x39,0x2b,0x31,0x37,0x31,0x31,0x32, - 0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x2f,0x4d,0x61,0x6a,0x75,0x72,0x6f,0x9, - 0x4d,0x61,0x72,0x73,0x68,0x61,0x6c,0x6c,0x20,0x49,0x73,0x6c,0x61,0x6e,0x64,0x73, - 0x20,0x28,0x6d,0x6f,0x73,0x74,0x20,0x61,0x72,0x65,0x61,0x73,0x29,0xa,0x4d,0x48, - 0x9,0x2b,0x30,0x39,0x30,0x35,0x2b,0x31,0x36,0x37,0x32,0x30,0x9,0x50,0x61,0x63, - 0x69,0x66,0x69,0x63,0x2f,0x4b,0x77,0x61,0x6a,0x61,0x6c,0x65,0x69,0x6e,0x9,0x4b, - 0x77,0x61,0x6a,0x61,0x6c,0x65,0x69,0x6e,0xa,0x4d,0x4d,0x9,0x2b,0x31,0x36,0x34, - 0x37,0x2b,0x30,0x39,0x36,0x31,0x30,0x9,0x41,0x73,0x69,0x61,0x2f,0x59,0x61,0x6e, - 0x67,0x6f,0x6e,0xa,0x4d,0x4e,0x9,0x2b,0x34,0x37,0x35,0x35,0x2b,0x31,0x30,0x36, - 0x35,0x33,0x9,0x41,0x73,0x69,0x61,0x2f,0x55,0x6c,0x61,0x61,0x6e,0x62,0x61,0x61, - 0x74,0x61,0x72,0x9,0x4d,0x6f,0x6e,0x67,0x6f,0x6c,0x69,0x61,0x20,0x28,0x6d,0x6f, - 0x73,0x74,0x20,0x61,0x72,0x65,0x61,0x73,0x29,0xa,0x4d,0x4e,0x9,0x2b,0x34,0x38, - 0x30,0x31,0x2b,0x30,0x39,0x31,0x33,0x39,0x9,0x41,0x73,0x69,0x61,0x2f,0x48,0x6f, - 0x76,0x64,0x9,0x42,0x61,0x79,0x61,0x6e,0x2d,0xc3,0x96,0x6c,0x67,0x69,0x69,0x2c, - 0x20,0x47,0x6f,0x76,0x69,0x2d,0x41,0x6c,0x74,0x61,0x69,0x2c,0x20,0x48,0x6f,0x76, - 0x64,0x2c,0x20,0x55,0x76,0x73,0x2c,0x20,0x5a,0x61,0x76,0x6b,0x68,0x61,0x6e,0xa, - 0x4d,0x4e,0x9,0x2b,0x34,0x38,0x30,0x34,0x2b,0x31,0x31,0x34,0x33,0x30,0x9,0x41, - 0x73,0x69,0x61,0x2f,0x43,0x68,0x6f,0x69,0x62,0x61,0x6c,0x73,0x61,0x6e,0x9,0x44, - 0x6f,0x72,0x6e,0x6f,0x64,0x2c,0x20,0x53,0xc3,0xbc,0x6b,0x68,0x62,0x61,0x61,0x74, - 0x61,0x72,0xa,0x4d,0x4f,0x9,0x2b,0x32,0x32,0x31,0x34,0x2b,0x31,0x31,0x33,0x33, - 0x35,0x9,0x41,0x73,0x69,0x61,0x2f,0x4d,0x61,0x63,0x61,0x75,0xa,0x4d,0x51,0x9, - 0x2b,0x31,0x34,0x33,0x36,0x2d,0x30,0x36,0x31,0x30,0x35,0x9,0x41,0x6d,0x65,0x72, - 0x69,0x63,0x61,0x2f,0x4d,0x61,0x72,0x74,0x69,0x6e,0x69,0x71,0x75,0x65,0xa,0x4d, - 0x54,0x9,0x2b,0x33,0x35,0x35,0x34,0x2b,0x30,0x31,0x34,0x33,0x31,0x9,0x45,0x75, - 0x72,0x6f,0x70,0x65,0x2f,0x4d,0x61,0x6c,0x74,0x61,0xa,0x4d,0x55,0x9,0x2d,0x32, - 0x30,0x31,0x30,0x2b,0x30,0x35,0x37,0x33,0x30,0x9,0x49,0x6e,0x64,0x69,0x61,0x6e, - 0x2f,0x4d,0x61,0x75,0x72,0x69,0x74,0x69,0x75,0x73,0xa,0x4d,0x56,0x9,0x2b,0x30, - 0x34,0x31,0x30,0x2b,0x30,0x37,0x33,0x33,0x30,0x9,0x49,0x6e,0x64,0x69,0x61,0x6e, - 0x2f,0x4d,0x61,0x6c,0x64,0x69,0x76,0x65,0x73,0xa,0x4d,0x58,0x9,0x2b,0x31,0x39, - 0x32,0x34,0x2d,0x30,0x39,0x39,0x30,0x39,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61, - 0x2f,0x4d,0x65,0x78,0x69,0x63,0x6f,0x5f,0x43,0x69,0x74,0x79,0x9,0x43,0x65,0x6e, - 0x74,0x72,0x61,0x6c,0x20,0x54,0x69,0x6d,0x65,0xa,0x4d,0x58,0x9,0x2b,0x32,0x31, - 0x30,0x35,0x2d,0x30,0x38,0x36,0x34,0x36,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61, - 0x2f,0x43,0x61,0x6e,0x63,0x75,0x6e,0x9,0x45,0x61,0x73,0x74,0x65,0x72,0x6e,0x20, - 0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x54,0x69,0x6d,0x65,0x20,0x2d,0x20, - 0x51,0x75,0x69,0x6e,0x74,0x61,0x6e,0x61,0x20,0x52,0x6f,0x6f,0xa,0x4d,0x58,0x9, - 0x2b,0x32,0x30,0x35,0x38,0x2d,0x30,0x38,0x39,0x33,0x37,0x9,0x41,0x6d,0x65,0x72, - 0x69,0x63,0x61,0x2f,0x4d,0x65,0x72,0x69,0x64,0x61,0x9,0x43,0x65,0x6e,0x74,0x72, - 0x61,0x6c,0x20,0x54,0x69,0x6d,0x65,0x20,0x2d,0x20,0x43,0x61,0x6d,0x70,0x65,0x63, - 0x68,0x65,0x2c,0x20,0x59,0x75,0x63,0x61,0x74,0xc3,0xa1,0x6e,0xa,0x4d,0x58,0x9, - 0x2b,0x32,0x35,0x34,0x30,0x2d,0x31,0x30,0x30,0x31,0x39,0x9,0x41,0x6d,0x65,0x72, - 0x69,0x63,0x61,0x2f,0x4d,0x6f,0x6e,0x74,0x65,0x72,0x72,0x65,0x79,0x9,0x43,0x65, - 0x6e,0x74,0x72,0x61,0x6c,0x20,0x54,0x69,0x6d,0x65,0x20,0x2d,0x20,0x44,0x75,0x72, - 0x61,0x6e,0x67,0x6f,0x3b,0x20,0x43,0x6f,0x61,0x68,0x75,0x69,0x6c,0x61,0x2c,0x20, - 0x4e,0x75,0x65,0x76,0x6f,0x20,0x4c,0x65,0xc3,0xb3,0x6e,0x2c,0x20,0x54,0x61,0x6d, - 0x61,0x75,0x6c,0x69,0x70,0x61,0x73,0x20,0x28,0x6d,0x6f,0x73,0x74,0x20,0x61,0x72, - 0x65,0x61,0x73,0x29,0xa,0x4d,0x58,0x9,0x2b,0x32,0x35,0x35,0x30,0x2d,0x30,0x39, - 0x37,0x33,0x30,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x4d,0x61,0x74,0x61, - 0x6d,0x6f,0x72,0x6f,0x73,0x9,0x43,0x65,0x6e,0x74,0x72,0x61,0x6c,0x20,0x54,0x69, - 0x6d,0x65,0x20,0x55,0x53,0x20,0x2d,0x20,0x43,0x6f,0x61,0x68,0x75,0x69,0x6c,0x61, - 0x2c,0x20,0x4e,0x75,0x65,0x76,0x6f,0x20,0x4c,0x65,0xc3,0xb3,0x6e,0x2c,0x20,0x54, - 0x61,0x6d,0x61,0x75,0x6c,0x69,0x70,0x61,0x73,0x20,0x28,0x55,0x53,0x20,0x62,0x6f, - 0x72,0x64,0x65,0x72,0x29,0xa,0x4d,0x58,0x9,0x2b,0x32,0x33,0x31,0x33,0x2d,0x31, - 0x30,0x36,0x32,0x35,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x4d,0x61,0x7a, - 0x61,0x74,0x6c,0x61,0x6e,0x9,0x4d,0x6f,0x75,0x6e,0x74,0x61,0x69,0x6e,0x20,0x54, - 0x69,0x6d,0x65,0x20,0x2d,0x20,0x42,0x61,0x6a,0x61,0x20,0x43,0x61,0x6c,0x69,0x66, - 0x6f,0x72,0x6e,0x69,0x61,0x20,0x53,0x75,0x72,0x2c,0x20,0x4e,0x61,0x79,0x61,0x72, - 0x69,0x74,0x2c,0x20,0x53,0x69,0x6e,0x61,0x6c,0x6f,0x61,0xa,0x4d,0x58,0x9,0x2b, - 0x32,0x38,0x33,0x38,0x2d,0x31,0x30,0x36,0x30,0x35,0x9,0x41,0x6d,0x65,0x72,0x69, - 0x63,0x61,0x2f,0x43,0x68,0x69,0x68,0x75,0x61,0x68,0x75,0x61,0x9,0x4d,0x6f,0x75, - 0x6e,0x74,0x61,0x69,0x6e,0x20,0x54,0x69,0x6d,0x65,0x20,0x2d,0x20,0x43,0x68,0x69, - 0x68,0x75,0x61,0x68,0x75,0x61,0x20,0x28,0x6d,0x6f,0x73,0x74,0x20,0x61,0x72,0x65, - 0x61,0x73,0x29,0xa,0x4d,0x58,0x9,0x2b,0x32,0x39,0x33,0x34,0x2d,0x31,0x30,0x34, - 0x32,0x35,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x4f,0x6a,0x69,0x6e,0x61, - 0x67,0x61,0x9,0x4d,0x6f,0x75,0x6e,0x74,0x61,0x69,0x6e,0x20,0x54,0x69,0x6d,0x65, - 0x20,0x55,0x53,0x20,0x2d,0x20,0x43,0x68,0x69,0x68,0x75,0x61,0x68,0x75,0x61,0x20, - 0x28,0x55,0x53,0x20,0x62,0x6f,0x72,0x64,0x65,0x72,0x29,0xa,0x4d,0x58,0x9,0x2b, - 0x32,0x39,0x30,0x34,0x2d,0x31,0x31,0x30,0x35,0x38,0x9,0x41,0x6d,0x65,0x72,0x69, - 0x63,0x61,0x2f,0x48,0x65,0x72,0x6d,0x6f,0x73,0x69,0x6c,0x6c,0x6f,0x9,0x4d,0x6f, - 0x75,0x6e,0x74,0x61,0x69,0x6e,0x20,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20, - 0x54,0x69,0x6d,0x65,0x20,0x2d,0x20,0x53,0x6f,0x6e,0x6f,0x72,0x61,0xa,0x4d,0x58, - 0x9,0x2b,0x33,0x32,0x33,0x32,0x2d,0x31,0x31,0x37,0x30,0x31,0x9,0x41,0x6d,0x65, - 0x72,0x69,0x63,0x61,0x2f,0x54,0x69,0x6a,0x75,0x61,0x6e,0x61,0x9,0x50,0x61,0x63, - 0x69,0x66,0x69,0x63,0x20,0x54,0x69,0x6d,0x65,0x20,0x55,0x53,0x20,0x2d,0x20,0x42, - 0x61,0x6a,0x61,0x20,0x43,0x61,0x6c,0x69,0x66,0x6f,0x72,0x6e,0x69,0x61,0xa,0x4d, - 0x58,0x9,0x2b,0x32,0x30,0x34,0x38,0x2d,0x31,0x30,0x35,0x31,0x35,0x9,0x41,0x6d, - 0x65,0x72,0x69,0x63,0x61,0x2f,0x42,0x61,0x68,0x69,0x61,0x5f,0x42,0x61,0x6e,0x64, - 0x65,0x72,0x61,0x73,0x9,0x43,0x65,0x6e,0x74,0x72,0x61,0x6c,0x20,0x54,0x69,0x6d, - 0x65,0x20,0x2d,0x20,0x42,0x61,0x68,0xc3,0xad,0x61,0x20,0x64,0x65,0x20,0x42,0x61, - 0x6e,0x64,0x65,0x72,0x61,0x73,0xa,0x4d,0x59,0x9,0x2b,0x30,0x33,0x31,0x30,0x2b, - 0x31,0x30,0x31,0x34,0x32,0x9,0x41,0x73,0x69,0x61,0x2f,0x4b,0x75,0x61,0x6c,0x61, - 0x5f,0x4c,0x75,0x6d,0x70,0x75,0x72,0x9,0x4d,0x61,0x6c,0x61,0x79,0x73,0x69,0x61, - 0x20,0x28,0x70,0x65,0x6e,0x69,0x6e,0x73,0x75,0x6c,0x61,0x29,0xa,0x4d,0x59,0x9, - 0x2b,0x30,0x31,0x33,0x33,0x2b,0x31,0x31,0x30,0x32,0x30,0x9,0x41,0x73,0x69,0x61, - 0x2f,0x4b,0x75,0x63,0x68,0x69,0x6e,0x67,0x9,0x53,0x61,0x62,0x61,0x68,0x2c,0x20, - 0x53,0x61,0x72,0x61,0x77,0x61,0x6b,0xa,0x4d,0x5a,0x2c,0x42,0x49,0x2c,0x42,0x57, - 0x2c,0x43,0x44,0x2c,0x4d,0x57,0x2c,0x52,0x57,0x2c,0x5a,0x4d,0x2c,0x5a,0x57,0x9, - 0x2d,0x32,0x35,0x35,0x38,0x2b,0x30,0x33,0x32,0x33,0x35,0x9,0x41,0x66,0x72,0x69, - 0x63,0x61,0x2f,0x4d,0x61,0x70,0x75,0x74,0x6f,0x9,0x43,0x65,0x6e,0x74,0x72,0x61, - 0x6c,0x20,0x41,0x66,0x72,0x69,0x63,0x61,0x20,0x54,0x69,0x6d,0x65,0xa,0x4e,0x41, - 0x9,0x2d,0x32,0x32,0x33,0x34,0x2b,0x30,0x31,0x37,0x30,0x36,0x9,0x41,0x66,0x72, - 0x69,0x63,0x61,0x2f,0x57,0x69,0x6e,0x64,0x68,0x6f,0x65,0x6b,0xa,0x4e,0x43,0x9, - 0x2d,0x32,0x32,0x31,0x36,0x2b,0x31,0x36,0x36,0x32,0x37,0x9,0x50,0x61,0x63,0x69, - 0x66,0x69,0x63,0x2f,0x4e,0x6f,0x75,0x6d,0x65,0x61,0xa,0x4e,0x46,0x9,0x2d,0x32, - 0x39,0x30,0x33,0x2b,0x31,0x36,0x37,0x35,0x38,0x9,0x50,0x61,0x63,0x69,0x66,0x69, - 0x63,0x2f,0x4e,0x6f,0x72,0x66,0x6f,0x6c,0x6b,0xa,0x4e,0x47,0x2c,0x41,0x4f,0x2c, - 0x42,0x4a,0x2c,0x43,0x44,0x2c,0x43,0x46,0x2c,0x43,0x47,0x2c,0x43,0x4d,0x2c,0x47, - 0x41,0x2c,0x47,0x51,0x2c,0x4e,0x45,0x9,0x2b,0x30,0x36,0x32,0x37,0x2b,0x30,0x30, - 0x33,0x32,0x34,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f,0x4c,0x61,0x67,0x6f,0x73, - 0x9,0x57,0x65,0x73,0x74,0x20,0x41,0x66,0x72,0x69,0x63,0x61,0x20,0x54,0x69,0x6d, - 0x65,0xa,0x4e,0x49,0x9,0x2b,0x31,0x32,0x30,0x39,0x2d,0x30,0x38,0x36,0x31,0x37, - 0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x4d,0x61,0x6e,0x61,0x67,0x75,0x61, - 0xa,0x4e,0x4c,0x9,0x2b,0x35,0x32,0x32,0x32,0x2b,0x30,0x30,0x34,0x35,0x34,0x9, - 0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x41,0x6d,0x73,0x74,0x65,0x72,0x64,0x61,0x6d, - 0xa,0x4e,0x4f,0x2c,0x53,0x4a,0x9,0x2b,0x35,0x39,0x35,0x35,0x2b,0x30,0x31,0x30, - 0x34,0x35,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x4f,0x73,0x6c,0x6f,0xa,0x4e, - 0x50,0x9,0x2b,0x32,0x37,0x34,0x33,0x2b,0x30,0x38,0x35,0x31,0x39,0x9,0x41,0x73, - 0x69,0x61,0x2f,0x4b,0x61,0x74,0x68,0x6d,0x61,0x6e,0x64,0x75,0xa,0x4e,0x52,0x9, - 0x2d,0x30,0x30,0x33,0x31,0x2b,0x31,0x36,0x36,0x35,0x35,0x9,0x50,0x61,0x63,0x69, - 0x66,0x69,0x63,0x2f,0x4e,0x61,0x75,0x72,0x75,0xa,0x4e,0x55,0x9,0x2d,0x31,0x39, - 0x30,0x31,0x2d,0x31,0x36,0x39,0x35,0x35,0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63, - 0x2f,0x4e,0x69,0x75,0x65,0xa,0x4e,0x5a,0x2c,0x41,0x51,0x9,0x2d,0x33,0x36,0x35, - 0x32,0x2b,0x31,0x37,0x34,0x34,0x36,0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x2f, - 0x41,0x75,0x63,0x6b,0x6c,0x61,0x6e,0x64,0x9,0x4e,0x65,0x77,0x20,0x5a,0x65,0x61, - 0x6c,0x61,0x6e,0x64,0x20,0x74,0x69,0x6d,0x65,0xa,0x4e,0x5a,0x9,0x2d,0x34,0x33, - 0x35,0x37,0x2d,0x31,0x37,0x36,0x33,0x33,0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63, - 0x2f,0x43,0x68,0x61,0x74,0x68,0x61,0x6d,0x9,0x43,0x68,0x61,0x74,0x68,0x61,0x6d, - 0x20,0x49,0x73,0x6c,0x61,0x6e,0x64,0x73,0xa,0x50,0x41,0x2c,0x4b,0x59,0x9,0x2b, - 0x30,0x38,0x35,0x38,0x2d,0x30,0x37,0x39,0x33,0x32,0x9,0x41,0x6d,0x65,0x72,0x69, - 0x63,0x61,0x2f,0x50,0x61,0x6e,0x61,0x6d,0x61,0xa,0x50,0x45,0x9,0x2d,0x31,0x32, - 0x30,0x33,0x2d,0x30,0x37,0x37,0x30,0x33,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61, - 0x2f,0x4c,0x69,0x6d,0x61,0xa,0x50,0x46,0x9,0x2d,0x31,0x37,0x33,0x32,0x2d,0x31, - 0x34,0x39,0x33,0x34,0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x2f,0x54,0x61,0x68, - 0x69,0x74,0x69,0x9,0x53,0x6f,0x63,0x69,0x65,0x74,0x79,0x20,0x49,0x73,0x6c,0x61, - 0x6e,0x64,0x73,0xa,0x50,0x46,0x9,0x2d,0x30,0x39,0x30,0x30,0x2d,0x31,0x33,0x39, - 0x33,0x30,0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x2f,0x4d,0x61,0x72,0x71,0x75, - 0x65,0x73,0x61,0x73,0x9,0x4d,0x61,0x72,0x71,0x75,0x65,0x73,0x61,0x73,0x20,0x49, - 0x73,0x6c,0x61,0x6e,0x64,0x73,0xa,0x50,0x46,0x9,0x2d,0x32,0x33,0x30,0x38,0x2d, - 0x31,0x33,0x34,0x35,0x37,0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x2f,0x47,0x61, - 0x6d,0x62,0x69,0x65,0x72,0x9,0x47,0x61,0x6d,0x62,0x69,0x65,0x72,0x20,0x49,0x73, - 0x6c,0x61,0x6e,0x64,0x73,0xa,0x50,0x47,0x9,0x2d,0x30,0x39,0x33,0x30,0x2b,0x31, - 0x34,0x37,0x31,0x30,0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x2f,0x50,0x6f,0x72, - 0x74,0x5f,0x4d,0x6f,0x72,0x65,0x73,0x62,0x79,0x9,0x50,0x61,0x70,0x75,0x61,0x20, - 0x4e,0x65,0x77,0x20,0x47,0x75,0x69,0x6e,0x65,0x61,0x20,0x28,0x6d,0x6f,0x73,0x74, - 0x20,0x61,0x72,0x65,0x61,0x73,0x29,0xa,0x50,0x47,0x9,0x2d,0x30,0x36,0x31,0x33, - 0x2b,0x31,0x35,0x35,0x33,0x34,0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x2f,0x42, - 0x6f,0x75,0x67,0x61,0x69,0x6e,0x76,0x69,0x6c,0x6c,0x65,0x9,0x42,0x6f,0x75,0x67, - 0x61,0x69,0x6e,0x76,0x69,0x6c,0x6c,0x65,0xa,0x50,0x48,0x9,0x2b,0x31,0x34,0x33, - 0x35,0x2b,0x31,0x32,0x31,0x30,0x30,0x9,0x41,0x73,0x69,0x61,0x2f,0x4d,0x61,0x6e, - 0x69,0x6c,0x61,0xa,0x50,0x4b,0x9,0x2b,0x32,0x34,0x35,0x32,0x2b,0x30,0x36,0x37, - 0x30,0x33,0x9,0x41,0x73,0x69,0x61,0x2f,0x4b,0x61,0x72,0x61,0x63,0x68,0x69,0xa, - 0x50,0x4c,0x9,0x2b,0x35,0x32,0x31,0x35,0x2b,0x30,0x32,0x31,0x30,0x30,0x9,0x45, - 0x75,0x72,0x6f,0x70,0x65,0x2f,0x57,0x61,0x72,0x73,0x61,0x77,0xa,0x50,0x4d,0x9, - 0x2b,0x34,0x37,0x30,0x33,0x2d,0x30,0x35,0x36,0x32,0x30,0x9,0x41,0x6d,0x65,0x72, - 0x69,0x63,0x61,0x2f,0x4d,0x69,0x71,0x75,0x65,0x6c,0x6f,0x6e,0xa,0x50,0x4e,0x9, - 0x2d,0x32,0x35,0x30,0x34,0x2d,0x31,0x33,0x30,0x30,0x35,0x9,0x50,0x61,0x63,0x69, - 0x66,0x69,0x63,0x2f,0x50,0x69,0x74,0x63,0x61,0x69,0x72,0x6e,0xa,0x50,0x52,0x9, - 0x2b,0x31,0x38,0x32,0x38,0x30,0x36,0x2d,0x30,0x36,0x36,0x30,0x36,0x32,0x32,0x9, - 0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x50,0x75,0x65,0x72,0x74,0x6f,0x5f,0x52, - 0x69,0x63,0x6f,0xa,0x50,0x53,0x9,0x2b,0x33,0x31,0x33,0x30,0x2b,0x30,0x33,0x34, - 0x32,0x38,0x9,0x41,0x73,0x69,0x61,0x2f,0x47,0x61,0x7a,0x61,0x9,0x47,0x61,0x7a, - 0x61,0x20,0x53,0x74,0x72,0x69,0x70,0xa,0x50,0x53,0x9,0x2b,0x33,0x31,0x33,0x32, - 0x30,0x30,0x2b,0x30,0x33,0x35,0x30,0x35,0x34,0x32,0x9,0x41,0x73,0x69,0x61,0x2f, - 0x48,0x65,0x62,0x72,0x6f,0x6e,0x9,0x57,0x65,0x73,0x74,0x20,0x42,0x61,0x6e,0x6b, - 0xa,0x50,0x54,0x9,0x2b,0x33,0x38,0x34,0x33,0x2d,0x30,0x30,0x39,0x30,0x38,0x9, - 0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x4c,0x69,0x73,0x62,0x6f,0x6e,0x9,0x50,0x6f, - 0x72,0x74,0x75,0x67,0x61,0x6c,0x20,0x28,0x6d,0x61,0x69,0x6e,0x6c,0x61,0x6e,0x64, - 0x29,0xa,0x50,0x54,0x9,0x2b,0x33,0x32,0x33,0x38,0x2d,0x30,0x31,0x36,0x35,0x34, - 0x9,0x41,0x74,0x6c,0x61,0x6e,0x74,0x69,0x63,0x2f,0x4d,0x61,0x64,0x65,0x69,0x72, - 0x61,0x9,0x4d,0x61,0x64,0x65,0x69,0x72,0x61,0x20,0x49,0x73,0x6c,0x61,0x6e,0x64, - 0x73,0xa,0x50,0x54,0x9,0x2b,0x33,0x37,0x34,0x34,0x2d,0x30,0x32,0x35,0x34,0x30, - 0x9,0x41,0x74,0x6c,0x61,0x6e,0x74,0x69,0x63,0x2f,0x41,0x7a,0x6f,0x72,0x65,0x73, - 0x9,0x41,0x7a,0x6f,0x72,0x65,0x73,0xa,0x50,0x57,0x9,0x2b,0x30,0x37,0x32,0x30, - 0x2b,0x31,0x33,0x34,0x32,0x39,0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x2f,0x50, - 0x61,0x6c,0x61,0x75,0xa,0x50,0x59,0x9,0x2d,0x32,0x35,0x31,0x36,0x2d,0x30,0x35, - 0x37,0x34,0x30,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x41,0x73,0x75,0x6e, - 0x63,0x69,0x6f,0x6e,0xa,0x51,0x41,0x2c,0x42,0x48,0x9,0x2b,0x32,0x35,0x31,0x37, - 0x2b,0x30,0x35,0x31,0x33,0x32,0x9,0x41,0x73,0x69,0x61,0x2f,0x51,0x61,0x74,0x61, - 0x72,0xa,0x52,0x45,0x2c,0x54,0x46,0x9,0x2d,0x32,0x30,0x35,0x32,0x2b,0x30,0x35, - 0x35,0x32,0x38,0x9,0x49,0x6e,0x64,0x69,0x61,0x6e,0x2f,0x52,0x65,0x75,0x6e,0x69, - 0x6f,0x6e,0x9,0x52,0xc3,0xa9,0x75,0x6e,0x69,0x6f,0x6e,0x2c,0x20,0x43,0x72,0x6f, - 0x7a,0x65,0x74,0x2c,0x20,0x53,0x63,0x61,0x74,0x74,0x65,0x72,0x65,0x64,0x20,0x49, - 0x73,0x6c,0x61,0x6e,0x64,0x73,0xa,0x52,0x4f,0x9,0x2b,0x34,0x34,0x32,0x36,0x2b, - 0x30,0x32,0x36,0x30,0x36,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x42,0x75,0x63, - 0x68,0x61,0x72,0x65,0x73,0x74,0xa,0x52,0x53,0x2c,0x42,0x41,0x2c,0x48,0x52,0x2c, - 0x4d,0x45,0x2c,0x4d,0x4b,0x2c,0x53,0x49,0x9,0x2b,0x34,0x34,0x35,0x30,0x2b,0x30, - 0x32,0x30,0x33,0x30,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x42,0x65,0x6c,0x67, - 0x72,0x61,0x64,0x65,0xa,0x52,0x55,0x9,0x2b,0x35,0x34,0x34,0x33,0x2b,0x30,0x32, - 0x30,0x33,0x30,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x4b,0x61,0x6c,0x69,0x6e, - 0x69,0x6e,0x67,0x72,0x61,0x64,0x9,0x4d,0x53,0x4b,0x2d,0x30,0x31,0x20,0x2d,0x20, - 0x4b,0x61,0x6c,0x69,0x6e,0x69,0x6e,0x67,0x72,0x61,0x64,0xa,0x52,0x55,0x9,0x2b, - 0x35,0x35,0x34,0x35,0x32,0x31,0x2b,0x30,0x33,0x37,0x33,0x37,0x30,0x34,0x9,0x45, - 0x75,0x72,0x6f,0x70,0x65,0x2f,0x4d,0x6f,0x73,0x63,0x6f,0x77,0x9,0x4d,0x53,0x4b, - 0x2b,0x30,0x30,0x20,0x2d,0x20,0x4d,0x6f,0x73,0x63,0x6f,0x77,0x20,0x61,0x72,0x65, - 0x61,0xa,0x52,0x55,0x9,0x2b,0x34,0x34,0x35,0x37,0x2b,0x30,0x33,0x34,0x30,0x36, - 0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x53,0x69,0x6d,0x66,0x65,0x72,0x6f,0x70, - 0x6f,0x6c,0x9,0x4d,0x53,0x4b,0x2b,0x30,0x30,0x20,0x2d,0x20,0x43,0x72,0x69,0x6d, - 0x65,0x61,0xa,0x52,0x55,0x9,0x2b,0x34,0x38,0x34,0x34,0x2b,0x30,0x34,0x34,0x32, - 0x35,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x56,0x6f,0x6c,0x67,0x6f,0x67,0x72, - 0x61,0x64,0x9,0x4d,0x53,0x4b,0x2b,0x30,0x30,0x20,0x2d,0x20,0x56,0x6f,0x6c,0x67, - 0x6f,0x67,0x72,0x61,0x64,0xa,0x52,0x55,0x9,0x2b,0x35,0x38,0x33,0x36,0x2b,0x30, - 0x34,0x39,0x33,0x39,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x4b,0x69,0x72,0x6f, - 0x76,0x9,0x4d,0x53,0x4b,0x2b,0x30,0x30,0x20,0x2d,0x20,0x4b,0x69,0x72,0x6f,0x76, - 0xa,0x52,0x55,0x9,0x2b,0x34,0x36,0x32,0x31,0x2b,0x30,0x34,0x38,0x30,0x33,0x9, - 0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x41,0x73,0x74,0x72,0x61,0x6b,0x68,0x61,0x6e, - 0x9,0x4d,0x53,0x4b,0x2b,0x30,0x31,0x20,0x2d,0x20,0x41,0x73,0x74,0x72,0x61,0x6b, - 0x68,0x61,0x6e,0xa,0x52,0x55,0x9,0x2b,0x35,0x31,0x33,0x34,0x2b,0x30,0x34,0x36, - 0x30,0x32,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x53,0x61,0x72,0x61,0x74,0x6f, - 0x76,0x9,0x4d,0x53,0x4b,0x2b,0x30,0x31,0x20,0x2d,0x20,0x53,0x61,0x72,0x61,0x74, - 0x6f,0x76,0xa,0x52,0x55,0x9,0x2b,0x35,0x34,0x32,0x30,0x2b,0x30,0x34,0x38,0x32, - 0x34,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x55,0x6c,0x79,0x61,0x6e,0x6f,0x76, - 0x73,0x6b,0x9,0x4d,0x53,0x4b,0x2b,0x30,0x31,0x20,0x2d,0x20,0x55,0x6c,0x79,0x61, - 0x6e,0x6f,0x76,0x73,0x6b,0xa,0x52,0x55,0x9,0x2b,0x35,0x33,0x31,0x32,0x2b,0x30, - 0x35,0x30,0x30,0x39,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x53,0x61,0x6d,0x61, - 0x72,0x61,0x9,0x4d,0x53,0x4b,0x2b,0x30,0x31,0x20,0x2d,0x20,0x53,0x61,0x6d,0x61, - 0x72,0x61,0x2c,0x20,0x55,0x64,0x6d,0x75,0x72,0x74,0x69,0x61,0xa,0x52,0x55,0x9, - 0x2b,0x35,0x36,0x35,0x31,0x2b,0x30,0x36,0x30,0x33,0x36,0x9,0x41,0x73,0x69,0x61, - 0x2f,0x59,0x65,0x6b,0x61,0x74,0x65,0x72,0x69,0x6e,0x62,0x75,0x72,0x67,0x9,0x4d, - 0x53,0x4b,0x2b,0x30,0x32,0x20,0x2d,0x20,0x55,0x72,0x61,0x6c,0x73,0xa,0x52,0x55, - 0x9,0x2b,0x35,0x35,0x30,0x30,0x2b,0x30,0x37,0x33,0x32,0x34,0x9,0x41,0x73,0x69, - 0x61,0x2f,0x4f,0x6d,0x73,0x6b,0x9,0x4d,0x53,0x4b,0x2b,0x30,0x33,0x20,0x2d,0x20, - 0x4f,0x6d,0x73,0x6b,0xa,0x52,0x55,0x9,0x2b,0x35,0x35,0x30,0x32,0x2b,0x30,0x38, - 0x32,0x35,0x35,0x9,0x41,0x73,0x69,0x61,0x2f,0x4e,0x6f,0x76,0x6f,0x73,0x69,0x62, - 0x69,0x72,0x73,0x6b,0x9,0x4d,0x53,0x4b,0x2b,0x30,0x34,0x20,0x2d,0x20,0x4e,0x6f, - 0x76,0x6f,0x73,0x69,0x62,0x69,0x72,0x73,0x6b,0xa,0x52,0x55,0x9,0x2b,0x35,0x33, - 0x32,0x32,0x2b,0x30,0x38,0x33,0x34,0x35,0x9,0x41,0x73,0x69,0x61,0x2f,0x42,0x61, - 0x72,0x6e,0x61,0x75,0x6c,0x9,0x4d,0x53,0x4b,0x2b,0x30,0x34,0x20,0x2d,0x20,0x41, - 0x6c,0x74,0x61,0x69,0xa,0x52,0x55,0x9,0x2b,0x35,0x36,0x33,0x30,0x2b,0x30,0x38, - 0x34,0x35,0x38,0x9,0x41,0x73,0x69,0x61,0x2f,0x54,0x6f,0x6d,0x73,0x6b,0x9,0x4d, - 0x53,0x4b,0x2b,0x30,0x34,0x20,0x2d,0x20,0x54,0x6f,0x6d,0x73,0x6b,0xa,0x52,0x55, - 0x9,0x2b,0x35,0x33,0x34,0x35,0x2b,0x30,0x38,0x37,0x30,0x37,0x9,0x41,0x73,0x69, - 0x61,0x2f,0x4e,0x6f,0x76,0x6f,0x6b,0x75,0x7a,0x6e,0x65,0x74,0x73,0x6b,0x9,0x4d, - 0x53,0x4b,0x2b,0x30,0x34,0x20,0x2d,0x20,0x4b,0x65,0x6d,0x65,0x72,0x6f,0x76,0x6f, - 0xa,0x52,0x55,0x9,0x2b,0x35,0x36,0x30,0x31,0x2b,0x30,0x39,0x32,0x35,0x30,0x9, - 0x41,0x73,0x69,0x61,0x2f,0x4b,0x72,0x61,0x73,0x6e,0x6f,0x79,0x61,0x72,0x73,0x6b, - 0x9,0x4d,0x53,0x4b,0x2b,0x30,0x34,0x20,0x2d,0x20,0x4b,0x72,0x61,0x73,0x6e,0x6f, - 0x79,0x61,0x72,0x73,0x6b,0x20,0x61,0x72,0x65,0x61,0xa,0x52,0x55,0x9,0x2b,0x35, - 0x32,0x31,0x36,0x2b,0x31,0x30,0x34,0x32,0x30,0x9,0x41,0x73,0x69,0x61,0x2f,0x49, - 0x72,0x6b,0x75,0x74,0x73,0x6b,0x9,0x4d,0x53,0x4b,0x2b,0x30,0x35,0x20,0x2d,0x20, - 0x49,0x72,0x6b,0x75,0x74,0x73,0x6b,0x2c,0x20,0x42,0x75,0x72,0x79,0x61,0x74,0x69, - 0x61,0xa,0x52,0x55,0x9,0x2b,0x35,0x32,0x30,0x33,0x2b,0x31,0x31,0x33,0x32,0x38, - 0x9,0x41,0x73,0x69,0x61,0x2f,0x43,0x68,0x69,0x74,0x61,0x9,0x4d,0x53,0x4b,0x2b, - 0x30,0x36,0x20,0x2d,0x20,0x5a,0x61,0x62,0x61,0x79,0x6b,0x61,0x6c,0x73,0x6b,0x79, - 0xa,0x52,0x55,0x9,0x2b,0x36,0x32,0x30,0x30,0x2b,0x31,0x32,0x39,0x34,0x30,0x9, - 0x41,0x73,0x69,0x61,0x2f,0x59,0x61,0x6b,0x75,0x74,0x73,0x6b,0x9,0x4d,0x53,0x4b, - 0x2b,0x30,0x36,0x20,0x2d,0x20,0x4c,0x65,0x6e,0x61,0x20,0x52,0x69,0x76,0x65,0x72, - 0xa,0x52,0x55,0x9,0x2b,0x36,0x32,0x33,0x39,0x32,0x33,0x2b,0x31,0x33,0x35,0x33, - 0x33,0x31,0x34,0x9,0x41,0x73,0x69,0x61,0x2f,0x4b,0x68,0x61,0x6e,0x64,0x79,0x67, - 0x61,0x9,0x4d,0x53,0x4b,0x2b,0x30,0x36,0x20,0x2d,0x20,0x54,0x6f,0x6d,0x70,0x6f, - 0x6e,0x73,0x6b,0x79,0x2c,0x20,0x55,0x73,0x74,0x2d,0x4d,0x61,0x79,0x73,0x6b,0x79, - 0xa,0x52,0x55,0x9,0x2b,0x34,0x33,0x31,0x30,0x2b,0x31,0x33,0x31,0x35,0x36,0x9, - 0x41,0x73,0x69,0x61,0x2f,0x56,0x6c,0x61,0x64,0x69,0x76,0x6f,0x73,0x74,0x6f,0x6b, - 0x9,0x4d,0x53,0x4b,0x2b,0x30,0x37,0x20,0x2d,0x20,0x41,0x6d,0x75,0x72,0x20,0x52, - 0x69,0x76,0x65,0x72,0xa,0x52,0x55,0x9,0x2b,0x36,0x34,0x33,0x33,0x33,0x37,0x2b, - 0x31,0x34,0x33,0x31,0x33,0x33,0x36,0x9,0x41,0x73,0x69,0x61,0x2f,0x55,0x73,0x74, - 0x2d,0x4e,0x65,0x72,0x61,0x9,0x4d,0x53,0x4b,0x2b,0x30,0x37,0x20,0x2d,0x20,0x4f, - 0x79,0x6d,0x79,0x61,0x6b,0x6f,0x6e,0x73,0x6b,0x79,0xa,0x52,0x55,0x9,0x2b,0x35, - 0x39,0x33,0x34,0x2b,0x31,0x35,0x30,0x34,0x38,0x9,0x41,0x73,0x69,0x61,0x2f,0x4d, - 0x61,0x67,0x61,0x64,0x61,0x6e,0x9,0x4d,0x53,0x4b,0x2b,0x30,0x38,0x20,0x2d,0x20, - 0x4d,0x61,0x67,0x61,0x64,0x61,0x6e,0xa,0x52,0x55,0x9,0x2b,0x34,0x36,0x35,0x38, - 0x2b,0x31,0x34,0x32,0x34,0x32,0x9,0x41,0x73,0x69,0x61,0x2f,0x53,0x61,0x6b,0x68, - 0x61,0x6c,0x69,0x6e,0x9,0x4d,0x53,0x4b,0x2b,0x30,0x38,0x20,0x2d,0x20,0x53,0x61, - 0x6b,0x68,0x61,0x6c,0x69,0x6e,0x20,0x49,0x73,0x6c,0x61,0x6e,0x64,0xa,0x52,0x55, - 0x9,0x2b,0x36,0x37,0x32,0x38,0x2b,0x31,0x35,0x33,0x34,0x33,0x9,0x41,0x73,0x69, - 0x61,0x2f,0x53,0x72,0x65,0x64,0x6e,0x65,0x6b,0x6f,0x6c,0x79,0x6d,0x73,0x6b,0x9, - 0x4d,0x53,0x4b,0x2b,0x30,0x38,0x20,0x2d,0x20,0x53,0x61,0x6b,0x68,0x61,0x20,0x28, - 0x45,0x29,0x3b,0x20,0x4e,0x6f,0x72,0x74,0x68,0x20,0x4b,0x75,0x72,0x69,0x6c,0x20, - 0x49,0x73,0xa,0x52,0x55,0x9,0x2b,0x35,0x33,0x30,0x31,0x2b,0x31,0x35,0x38,0x33, - 0x39,0x9,0x41,0x73,0x69,0x61,0x2f,0x4b,0x61,0x6d,0x63,0x68,0x61,0x74,0x6b,0x61, - 0x9,0x4d,0x53,0x4b,0x2b,0x30,0x39,0x20,0x2d,0x20,0x4b,0x61,0x6d,0x63,0x68,0x61, - 0x74,0x6b,0x61,0xa,0x52,0x55,0x9,0x2b,0x36,0x34,0x34,0x35,0x2b,0x31,0x37,0x37, - 0x32,0x39,0x9,0x41,0x73,0x69,0x61,0x2f,0x41,0x6e,0x61,0x64,0x79,0x72,0x9,0x4d, - 0x53,0x4b,0x2b,0x30,0x39,0x20,0x2d,0x20,0x42,0x65,0x72,0x69,0x6e,0x67,0x20,0x53, - 0x65,0x61,0xa,0x53,0x41,0x2c,0x4b,0x57,0x2c,0x59,0x45,0x9,0x2b,0x32,0x34,0x33, - 0x38,0x2b,0x30,0x34,0x36,0x34,0x33,0x9,0x41,0x73,0x69,0x61,0x2f,0x52,0x69,0x79, - 0x61,0x64,0x68,0xa,0x53,0x42,0x9,0x2d,0x30,0x39,0x33,0x32,0x2b,0x31,0x36,0x30, - 0x31,0x32,0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x2f,0x47,0x75,0x61,0x64,0x61, - 0x6c,0x63,0x61,0x6e,0x61,0x6c,0xa,0x53,0x43,0x9,0x2d,0x30,0x34,0x34,0x30,0x2b, - 0x30,0x35,0x35,0x32,0x38,0x9,0x49,0x6e,0x64,0x69,0x61,0x6e,0x2f,0x4d,0x61,0x68, - 0x65,0xa,0x53,0x44,0x2c,0x53,0x53,0x9,0x2b,0x31,0x35,0x33,0x36,0x2b,0x30,0x33, - 0x32,0x33,0x32,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f,0x4b,0x68,0x61,0x72,0x74, - 0x6f,0x75,0x6d,0xa,0x53,0x45,0x9,0x2b,0x35,0x39,0x32,0x30,0x2b,0x30,0x31,0x38, - 0x30,0x33,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x53,0x74,0x6f,0x63,0x6b,0x68, - 0x6f,0x6c,0x6d,0xa,0x53,0x47,0x9,0x2b,0x30,0x31,0x31,0x37,0x2b,0x31,0x30,0x33, - 0x35,0x31,0x9,0x41,0x73,0x69,0x61,0x2f,0x53,0x69,0x6e,0x67,0x61,0x70,0x6f,0x72, - 0x65,0xa,0x53,0x52,0x9,0x2b,0x30,0x35,0x35,0x30,0x2d,0x30,0x35,0x35,0x31,0x30, - 0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x50,0x61,0x72,0x61,0x6d,0x61,0x72, - 0x69,0x62,0x6f,0xa,0x53,0x56,0x9,0x2b,0x31,0x33,0x34,0x32,0x2d,0x30,0x38,0x39, - 0x31,0x32,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x45,0x6c,0x5f,0x53,0x61, - 0x6c,0x76,0x61,0x64,0x6f,0x72,0xa,0x53,0x59,0x9,0x2b,0x33,0x33,0x33,0x30,0x2b, - 0x30,0x33,0x36,0x31,0x38,0x9,0x41,0x73,0x69,0x61,0x2f,0x44,0x61,0x6d,0x61,0x73, - 0x63,0x75,0x73,0xa,0x54,0x43,0x9,0x2b,0x32,0x31,0x32,0x38,0x2d,0x30,0x37,0x31, - 0x30,0x38,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x47,0x72,0x61,0x6e,0x64, - 0x5f,0x54,0x75,0x72,0x6b,0xa,0x54,0x44,0x9,0x2b,0x31,0x32,0x30,0x37,0x2b,0x30, - 0x31,0x35,0x30,0x33,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f,0x4e,0x64,0x6a,0x61, - 0x6d,0x65,0x6e,0x61,0xa,0x54,0x46,0x9,0x2d,0x34,0x39,0x32,0x31,0x31,0x30,0x2b, - 0x30,0x37,0x30,0x31,0x33,0x30,0x33,0x9,0x49,0x6e,0x64,0x69,0x61,0x6e,0x2f,0x4b, - 0x65,0x72,0x67,0x75,0x65,0x6c,0x65,0x6e,0x9,0x4b,0x65,0x72,0x67,0x75,0x65,0x6c, - 0x65,0x6e,0x2c,0x20,0x53,0x74,0x20,0x50,0x61,0x75,0x6c,0x20,0x49,0x73,0x6c,0x61, - 0x6e,0x64,0x2c,0x20,0x41,0x6d,0x73,0x74,0x65,0x72,0x64,0x61,0x6d,0x20,0x49,0x73, - 0x6c,0x61,0x6e,0x64,0xa,0x54,0x48,0x2c,0x4b,0x48,0x2c,0x4c,0x41,0x2c,0x56,0x4e, - 0x9,0x2b,0x31,0x33,0x34,0x35,0x2b,0x31,0x30,0x30,0x33,0x31,0x9,0x41,0x73,0x69, - 0x61,0x2f,0x42,0x61,0x6e,0x67,0x6b,0x6f,0x6b,0x9,0x49,0x6e,0x64,0x6f,0x63,0x68, - 0x69,0x6e,0x61,0x20,0x28,0x6d,0x6f,0x73,0x74,0x20,0x61,0x72,0x65,0x61,0x73,0x29, - 0xa,0x54,0x4a,0x9,0x2b,0x33,0x38,0x33,0x35,0x2b,0x30,0x36,0x38,0x34,0x38,0x9, - 0x41,0x73,0x69,0x61,0x2f,0x44,0x75,0x73,0x68,0x61,0x6e,0x62,0x65,0xa,0x54,0x4b, - 0x9,0x2d,0x30,0x39,0x32,0x32,0x2d,0x31,0x37,0x31,0x31,0x34,0x9,0x50,0x61,0x63, - 0x69,0x66,0x69,0x63,0x2f,0x46,0x61,0x6b,0x61,0x6f,0x66,0x6f,0xa,0x54,0x4c,0x9, - 0x2d,0x30,0x38,0x33,0x33,0x2b,0x31,0x32,0x35,0x33,0x35,0x9,0x41,0x73,0x69,0x61, - 0x2f,0x44,0x69,0x6c,0x69,0xa,0x54,0x4d,0x9,0x2b,0x33,0x37,0x35,0x37,0x2b,0x30, - 0x35,0x38,0x32,0x33,0x9,0x41,0x73,0x69,0x61,0x2f,0x41,0x73,0x68,0x67,0x61,0x62, - 0x61,0x74,0xa,0x54,0x4e,0x9,0x2b,0x33,0x36,0x34,0x38,0x2b,0x30,0x31,0x30,0x31, - 0x31,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f,0x54,0x75,0x6e,0x69,0x73,0xa,0x54, - 0x4f,0x9,0x2d,0x32,0x31,0x31,0x30,0x2d,0x31,0x37,0x35,0x31,0x30,0x9,0x50,0x61, - 0x63,0x69,0x66,0x69,0x63,0x2f,0x54,0x6f,0x6e,0x67,0x61,0x74,0x61,0x70,0x75,0xa, - 0x54,0x52,0x9,0x2b,0x34,0x31,0x30,0x31,0x2b,0x30,0x32,0x38,0x35,0x38,0x9,0x45, - 0x75,0x72,0x6f,0x70,0x65,0x2f,0x49,0x73,0x74,0x61,0x6e,0x62,0x75,0x6c,0xa,0x54, - 0x54,0x2c,0x41,0x47,0x2c,0x41,0x49,0x2c,0x42,0x4c,0x2c,0x44,0x4d,0x2c,0x47,0x44, - 0x2c,0x47,0x50,0x2c,0x4b,0x4e,0x2c,0x4c,0x43,0x2c,0x4d,0x46,0x2c,0x4d,0x53,0x2c, - 0x56,0x43,0x2c,0x56,0x47,0x2c,0x56,0x49,0x9,0x2b,0x31,0x30,0x33,0x39,0x2d,0x30, - 0x36,0x31,0x33,0x31,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x50,0x6f,0x72, - 0x74,0x5f,0x6f,0x66,0x5f,0x53,0x70,0x61,0x69,0x6e,0xa,0x54,0x56,0x9,0x2d,0x30, - 0x38,0x33,0x31,0x2b,0x31,0x37,0x39,0x31,0x33,0x9,0x50,0x61,0x63,0x69,0x66,0x69, - 0x63,0x2f,0x46,0x75,0x6e,0x61,0x66,0x75,0x74,0x69,0xa,0x54,0x57,0x9,0x2b,0x32, - 0x35,0x30,0x33,0x2b,0x31,0x32,0x31,0x33,0x30,0x9,0x41,0x73,0x69,0x61,0x2f,0x54, - 0x61,0x69,0x70,0x65,0x69,0xa,0x55,0x41,0x9,0x2b,0x35,0x30,0x32,0x36,0x2b,0x30, - 0x33,0x30,0x33,0x31,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x4b,0x69,0x65,0x76, - 0x9,0x55,0x6b,0x72,0x61,0x69,0x6e,0x65,0x20,0x28,0x6d,0x6f,0x73,0x74,0x20,0x61, - 0x72,0x65,0x61,0x73,0x29,0xa,0x55,0x41,0x9,0x2b,0x34,0x38,0x33,0x37,0x2b,0x30, - 0x32,0x32,0x31,0x38,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x55,0x7a,0x68,0x67, - 0x6f,0x72,0x6f,0x64,0x9,0x52,0x75,0x74,0x68,0x65,0x6e,0x69,0x61,0xa,0x55,0x41, - 0x9,0x2b,0x34,0x37,0x35,0x30,0x2b,0x30,0x33,0x35,0x31,0x30,0x9,0x45,0x75,0x72, - 0x6f,0x70,0x65,0x2f,0x5a,0x61,0x70,0x6f,0x72,0x6f,0x7a,0x68,0x79,0x65,0x9,0x5a, - 0x61,0x70,0x6f,0x72,0x6f,0x7a,0x68,0x27,0x79,0x65,0x2f,0x5a,0x61,0x70,0x6f,0x72, - 0x69,0x7a,0x68,0x69,0x61,0x3b,0x20,0x4c,0x75,0x67,0x61,0x6e,0x73,0x6b,0x2f,0x4c, - 0x75,0x68,0x61,0x6e,0x73,0x6b,0x20,0x28,0x65,0x61,0x73,0x74,0x29,0xa,0x55,0x4d, - 0x9,0x2b,0x31,0x39,0x31,0x37,0x2b,0x31,0x36,0x36,0x33,0x37,0x9,0x50,0x61,0x63, - 0x69,0x66,0x69,0x63,0x2f,0x57,0x61,0x6b,0x65,0x9,0x57,0x61,0x6b,0x65,0x20,0x49, - 0x73,0x6c,0x61,0x6e,0x64,0xa,0x55,0x53,0x9,0x2b,0x34,0x30,0x34,0x32,0x35,0x31, - 0x2d,0x30,0x37,0x34,0x30,0x30,0x32,0x33,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61, - 0x2f,0x4e,0x65,0x77,0x5f,0x59,0x6f,0x72,0x6b,0x9,0x45,0x61,0x73,0x74,0x65,0x72, - 0x6e,0x20,0x28,0x6d,0x6f,0x73,0x74,0x20,0x61,0x72,0x65,0x61,0x73,0x29,0xa,0x55, - 0x53,0x9,0x2b,0x34,0x32,0x31,0x39,0x35,0x33,0x2d,0x30,0x38,0x33,0x30,0x32,0x34, - 0x35,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x44,0x65,0x74,0x72,0x6f,0x69, - 0x74,0x9,0x45,0x61,0x73,0x74,0x65,0x72,0x6e,0x20,0x2d,0x20,0x4d,0x49,0x20,0x28, + 0x20,0x28,0x6e,0x6f,0x20,0x44,0x53,0x54,0x20,0x31,0x39,0x36,0x37,0x2d,0x37,0x33, + 0x29,0xa,0x43,0x41,0x9,0x2b,0x34,0x38,0x32,0x33,0x2d,0x30,0x38,0x39,0x31,0x35, + 0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x54,0x68,0x75,0x6e,0x64,0x65,0x72, + 0x5f,0x42,0x61,0x79,0x9,0x45,0x61,0x73,0x74,0x65,0x72,0x6e,0x20,0x2d,0x20,0x4f, + 0x4e,0x20,0x28,0x54,0x68,0x75,0x6e,0x64,0x65,0x72,0x20,0x42,0x61,0x79,0x29,0xa, + 0x43,0x41,0x9,0x2b,0x36,0x33,0x34,0x34,0x2d,0x30,0x36,0x38,0x32,0x38,0x9,0x41, + 0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x49,0x71,0x61,0x6c,0x75,0x69,0x74,0x9,0x45, + 0x61,0x73,0x74,0x65,0x72,0x6e,0x20,0x2d,0x20,0x4e,0x55,0x20,0x28,0x6d,0x6f,0x73, + 0x74,0x20,0x65,0x61,0x73,0x74,0x20,0x61,0x72,0x65,0x61,0x73,0x29,0xa,0x43,0x41, + 0x9,0x2b,0x36,0x36,0x30,0x38,0x2d,0x30,0x36,0x35,0x34,0x34,0x9,0x41,0x6d,0x65, + 0x72,0x69,0x63,0x61,0x2f,0x50,0x61,0x6e,0x67,0x6e,0x69,0x72,0x74,0x75,0x6e,0x67, + 0x9,0x45,0x61,0x73,0x74,0x65,0x72,0x6e,0x20,0x2d,0x20,0x4e,0x55,0x20,0x28,0x50, + 0x61,0x6e,0x67,0x6e,0x69,0x72,0x74,0x75,0x6e,0x67,0x29,0xa,0x43,0x41,0x9,0x2b, + 0x34,0x38,0x34,0x35,0x33,0x31,0x2d,0x30,0x39,0x31,0x33,0x37,0x31,0x38,0x9,0x41, + 0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x41,0x74,0x69,0x6b,0x6f,0x6b,0x61,0x6e,0x9, + 0x45,0x53,0x54,0x20,0x2d,0x20,0x4f,0x4e,0x20,0x28,0x41,0x74,0x69,0x6b,0x6f,0x6b, + 0x61,0x6e,0x29,0x3b,0x20,0x4e,0x55,0x20,0x28,0x43,0x6f,0x72,0x61,0x6c,0x20,0x48, + 0x29,0xa,0x43,0x41,0x9,0x2b,0x34,0x39,0x35,0x33,0x2d,0x30,0x39,0x37,0x30,0x39, + 0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x57,0x69,0x6e,0x6e,0x69,0x70,0x65, + 0x67,0x9,0x43,0x65,0x6e,0x74,0x72,0x61,0x6c,0x20,0x2d,0x20,0x4f,0x4e,0x20,0x28, + 0x77,0x65,0x73,0x74,0x29,0x3b,0x20,0x4d,0x61,0x6e,0x69,0x74,0x6f,0x62,0x61,0xa, + 0x43,0x41,0x9,0x2b,0x34,0x38,0x34,0x33,0x2d,0x30,0x39,0x34,0x33,0x34,0x9,0x41, + 0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x52,0x61,0x69,0x6e,0x79,0x5f,0x52,0x69,0x76, + 0x65,0x72,0x9,0x43,0x65,0x6e,0x74,0x72,0x61,0x6c,0x20,0x2d,0x20,0x4f,0x4e,0x20, + 0x28,0x52,0x61,0x69,0x6e,0x79,0x20,0x52,0x2c,0x20,0x46,0x74,0x20,0x46,0x72,0x61, + 0x6e,0x63,0x65,0x73,0x29,0xa,0x43,0x41,0x9,0x2b,0x37,0x34,0x34,0x31,0x34,0x34, + 0x2d,0x30,0x39,0x34,0x34,0x39,0x34,0x35,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61, + 0x2f,0x52,0x65,0x73,0x6f,0x6c,0x75,0x74,0x65,0x9,0x43,0x65,0x6e,0x74,0x72,0x61, + 0x6c,0x20,0x2d,0x20,0x4e,0x55,0x20,0x28,0x52,0x65,0x73,0x6f,0x6c,0x75,0x74,0x65, + 0x29,0xa,0x43,0x41,0x9,0x2b,0x36,0x32,0x34,0x39,0x30,0x30,0x2d,0x30,0x39,0x32, + 0x30,0x34,0x35,0x39,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x52,0x61,0x6e, + 0x6b,0x69,0x6e,0x5f,0x49,0x6e,0x6c,0x65,0x74,0x9,0x43,0x65,0x6e,0x74,0x72,0x61, + 0x6c,0x20,0x2d,0x20,0x4e,0x55,0x20,0x28,0x63,0x65,0x6e,0x74,0x72,0x61,0x6c,0x29, + 0xa,0x43,0x41,0x9,0x2b,0x35,0x30,0x32,0x34,0x2d,0x31,0x30,0x34,0x33,0x39,0x9, + 0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x52,0x65,0x67,0x69,0x6e,0x61,0x9,0x43, + 0x53,0x54,0x20,0x2d,0x20,0x53,0x4b,0x20,0x28,0x6d,0x6f,0x73,0x74,0x20,0x61,0x72, + 0x65,0x61,0x73,0x29,0xa,0x43,0x41,0x9,0x2b,0x35,0x30,0x31,0x37,0x2d,0x31,0x30, + 0x37,0x35,0x30,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x53,0x77,0x69,0x66, + 0x74,0x5f,0x43,0x75,0x72,0x72,0x65,0x6e,0x74,0x9,0x43,0x53,0x54,0x20,0x2d,0x20, + 0x53,0x4b,0x20,0x28,0x6d,0x69,0x64,0x77,0x65,0x73,0x74,0x29,0xa,0x43,0x41,0x9, + 0x2b,0x35,0x33,0x33,0x33,0x2d,0x31,0x31,0x33,0x32,0x38,0x9,0x41,0x6d,0x65,0x72, + 0x69,0x63,0x61,0x2f,0x45,0x64,0x6d,0x6f,0x6e,0x74,0x6f,0x6e,0x9,0x4d,0x6f,0x75, + 0x6e,0x74,0x61,0x69,0x6e,0x20,0x2d,0x20,0x41,0x42,0x3b,0x20,0x42,0x43,0x20,0x28, + 0x45,0x29,0x3b,0x20,0x53,0x4b,0x20,0x28,0x57,0x29,0xa,0x43,0x41,0x9,0x2b,0x36, + 0x39,0x30,0x36,0x35,0x30,0x2d,0x31,0x30,0x35,0x30,0x33,0x31,0x30,0x9,0x41,0x6d, + 0x65,0x72,0x69,0x63,0x61,0x2f,0x43,0x61,0x6d,0x62,0x72,0x69,0x64,0x67,0x65,0x5f, + 0x42,0x61,0x79,0x9,0x4d,0x6f,0x75,0x6e,0x74,0x61,0x69,0x6e,0x20,0x2d,0x20,0x4e, + 0x55,0x20,0x28,0x77,0x65,0x73,0x74,0x29,0xa,0x43,0x41,0x9,0x2b,0x36,0x32,0x32, + 0x37,0x2d,0x31,0x31,0x34,0x32,0x31,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f, + 0x59,0x65,0x6c,0x6c,0x6f,0x77,0x6b,0x6e,0x69,0x66,0x65,0x9,0x4d,0x6f,0x75,0x6e, + 0x74,0x61,0x69,0x6e,0x20,0x2d,0x20,0x4e,0x54,0x20,0x28,0x63,0x65,0x6e,0x74,0x72, + 0x61,0x6c,0x29,0xa,0x43,0x41,0x9,0x2b,0x36,0x38,0x32,0x30,0x35,0x39,0x2d,0x31, + 0x33,0x33,0x34,0x33,0x30,0x30,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x49, + 0x6e,0x75,0x76,0x69,0x6b,0x9,0x4d,0x6f,0x75,0x6e,0x74,0x61,0x69,0x6e,0x20,0x2d, + 0x20,0x4e,0x54,0x20,0x28,0x77,0x65,0x73,0x74,0x29,0xa,0x43,0x41,0x9,0x2b,0x34, + 0x39,0x30,0x36,0x2d,0x31,0x31,0x36,0x33,0x31,0x9,0x41,0x6d,0x65,0x72,0x69,0x63, + 0x61,0x2f,0x43,0x72,0x65,0x73,0x74,0x6f,0x6e,0x9,0x4d,0x53,0x54,0x20,0x2d,0x20, + 0x42,0x43,0x20,0x28,0x43,0x72,0x65,0x73,0x74,0x6f,0x6e,0x29,0xa,0x43,0x41,0x9, + 0x2b,0x35,0x39,0x34,0x36,0x2d,0x31,0x32,0x30,0x31,0x34,0x9,0x41,0x6d,0x65,0x72, + 0x69,0x63,0x61,0x2f,0x44,0x61,0x77,0x73,0x6f,0x6e,0x5f,0x43,0x72,0x65,0x65,0x6b, + 0x9,0x4d,0x53,0x54,0x20,0x2d,0x20,0x42,0x43,0x20,0x28,0x44,0x61,0x77,0x73,0x6f, + 0x6e,0x20,0x43,0x72,0x2c,0x20,0x46,0x74,0x20,0x53,0x74,0x20,0x4a,0x6f,0x68,0x6e, + 0x29,0xa,0x43,0x41,0x9,0x2b,0x35,0x38,0x34,0x38,0x2d,0x31,0x32,0x32,0x34,0x32, + 0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x46,0x6f,0x72,0x74,0x5f,0x4e,0x65, + 0x6c,0x73,0x6f,0x6e,0x9,0x4d,0x53,0x54,0x20,0x2d,0x20,0x42,0x43,0x20,0x28,0x46, + 0x74,0x20,0x4e,0x65,0x6c,0x73,0x6f,0x6e,0x29,0xa,0x43,0x41,0x9,0x2b,0x34,0x39, + 0x31,0x36,0x2d,0x31,0x32,0x33,0x30,0x37,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61, + 0x2f,0x56,0x61,0x6e,0x63,0x6f,0x75,0x76,0x65,0x72,0x9,0x50,0x61,0x63,0x69,0x66, + 0x69,0x63,0x20,0x2d,0x20,0x42,0x43,0x20,0x28,0x6d,0x6f,0x73,0x74,0x20,0x61,0x72, + 0x65,0x61,0x73,0x29,0xa,0x43,0x41,0x9,0x2b,0x36,0x30,0x34,0x33,0x2d,0x31,0x33, + 0x35,0x30,0x33,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x57,0x68,0x69,0x74, + 0x65,0x68,0x6f,0x72,0x73,0x65,0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x20,0x2d, + 0x20,0x59,0x75,0x6b,0x6f,0x6e,0x20,0x28,0x73,0x6f,0x75,0x74,0x68,0x29,0xa,0x43, + 0x41,0x9,0x2b,0x36,0x34,0x30,0x34,0x2d,0x31,0x33,0x39,0x32,0x35,0x9,0x41,0x6d, + 0x65,0x72,0x69,0x63,0x61,0x2f,0x44,0x61,0x77,0x73,0x6f,0x6e,0x9,0x50,0x61,0x63, + 0x69,0x66,0x69,0x63,0x20,0x2d,0x20,0x59,0x75,0x6b,0x6f,0x6e,0x20,0x28,0x6e,0x6f, + 0x72,0x74,0x68,0x29,0xa,0x43,0x43,0x9,0x2d,0x31,0x32,0x31,0x30,0x2b,0x30,0x39, + 0x36,0x35,0x35,0x9,0x49,0x6e,0x64,0x69,0x61,0x6e,0x2f,0x43,0x6f,0x63,0x6f,0x73, + 0xa,0x43,0x48,0x2c,0x44,0x45,0x2c,0x4c,0x49,0x9,0x2b,0x34,0x37,0x32,0x33,0x2b, + 0x30,0x30,0x38,0x33,0x32,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x5a,0x75,0x72, + 0x69,0x63,0x68,0x9,0x53,0x77,0x69,0x73,0x73,0x20,0x74,0x69,0x6d,0x65,0xa,0x43, + 0x49,0x2c,0x42,0x46,0x2c,0x47,0x4d,0x2c,0x47,0x4e,0x2c,0x4d,0x4c,0x2c,0x4d,0x52, + 0x2c,0x53,0x48,0x2c,0x53,0x4c,0x2c,0x53,0x4e,0x2c,0x53,0x54,0x2c,0x54,0x47,0x9, + 0x2b,0x30,0x35,0x31,0x39,0x2d,0x30,0x30,0x34,0x30,0x32,0x9,0x41,0x66,0x72,0x69, + 0x63,0x61,0x2f,0x41,0x62,0x69,0x64,0x6a,0x61,0x6e,0xa,0x43,0x4b,0x9,0x2d,0x32, + 0x31,0x31,0x34,0x2d,0x31,0x35,0x39,0x34,0x36,0x9,0x50,0x61,0x63,0x69,0x66,0x69, + 0x63,0x2f,0x52,0x61,0x72,0x6f,0x74,0x6f,0x6e,0x67,0x61,0xa,0x43,0x4c,0x9,0x2d, + 0x33,0x33,0x32,0x37,0x2d,0x30,0x37,0x30,0x34,0x30,0x9,0x41,0x6d,0x65,0x72,0x69, + 0x63,0x61,0x2f,0x53,0x61,0x6e,0x74,0x69,0x61,0x67,0x6f,0x9,0x43,0x68,0x69,0x6c, + 0x65,0x20,0x28,0x6d,0x6f,0x73,0x74,0x20,0x61,0x72,0x65,0x61,0x73,0x29,0xa,0x43, + 0x4c,0x9,0x2d,0x35,0x33,0x30,0x39,0x2d,0x30,0x37,0x30,0x35,0x35,0x9,0x41,0x6d, + 0x65,0x72,0x69,0x63,0x61,0x2f,0x50,0x75,0x6e,0x74,0x61,0x5f,0x41,0x72,0x65,0x6e, + 0x61,0x73,0x9,0x52,0x65,0x67,0x69,0x6f,0x6e,0x20,0x6f,0x66,0x20,0x4d,0x61,0x67, + 0x61,0x6c,0x6c,0x61,0x6e,0x65,0x73,0xa,0x43,0x4c,0x9,0x2d,0x32,0x37,0x30,0x39, + 0x2d,0x31,0x30,0x39,0x32,0x36,0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x2f,0x45, + 0x61,0x73,0x74,0x65,0x72,0x9,0x45,0x61,0x73,0x74,0x65,0x72,0x20,0x49,0x73,0x6c, + 0x61,0x6e,0x64,0xa,0x43,0x4e,0x9,0x2b,0x33,0x31,0x31,0x34,0x2b,0x31,0x32,0x31, + 0x32,0x38,0x9,0x41,0x73,0x69,0x61,0x2f,0x53,0x68,0x61,0x6e,0x67,0x68,0x61,0x69, + 0x9,0x42,0x65,0x69,0x6a,0x69,0x6e,0x67,0x20,0x54,0x69,0x6d,0x65,0xa,0x43,0x4e, + 0x9,0x2b,0x34,0x33,0x34,0x38,0x2b,0x30,0x38,0x37,0x33,0x35,0x9,0x41,0x73,0x69, + 0x61,0x2f,0x55,0x72,0x75,0x6d,0x71,0x69,0x9,0x58,0x69,0x6e,0x6a,0x69,0x61,0x6e, + 0x67,0x20,0x54,0x69,0x6d,0x65,0xa,0x43,0x4f,0x9,0x2b,0x30,0x34,0x33,0x36,0x2d, + 0x30,0x37,0x34,0x30,0x35,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x42,0x6f, + 0x67,0x6f,0x74,0x61,0xa,0x43,0x52,0x9,0x2b,0x30,0x39,0x35,0x36,0x2d,0x30,0x38, + 0x34,0x30,0x35,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x43,0x6f,0x73,0x74, + 0x61,0x5f,0x52,0x69,0x63,0x61,0xa,0x43,0x55,0x9,0x2b,0x32,0x33,0x30,0x38,0x2d, + 0x30,0x38,0x32,0x32,0x32,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x48,0x61, + 0x76,0x61,0x6e,0x61,0xa,0x43,0x56,0x9,0x2b,0x31,0x34,0x35,0x35,0x2d,0x30,0x32, + 0x33,0x33,0x31,0x9,0x41,0x74,0x6c,0x61,0x6e,0x74,0x69,0x63,0x2f,0x43,0x61,0x70, + 0x65,0x5f,0x56,0x65,0x72,0x64,0x65,0xa,0x43,0x57,0x2c,0x41,0x57,0x2c,0x42,0x51, + 0x2c,0x53,0x58,0x9,0x2b,0x31,0x32,0x31,0x31,0x2d,0x30,0x36,0x39,0x30,0x30,0x9, + 0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x43,0x75,0x72,0x61,0x63,0x61,0x6f,0xa, + 0x43,0x58,0x9,0x2d,0x31,0x30,0x32,0x35,0x2b,0x31,0x30,0x35,0x34,0x33,0x9,0x49, + 0x6e,0x64,0x69,0x61,0x6e,0x2f,0x43,0x68,0x72,0x69,0x73,0x74,0x6d,0x61,0x73,0xa, + 0x43,0x59,0x9,0x2b,0x33,0x35,0x31,0x30,0x2b,0x30,0x33,0x33,0x32,0x32,0x9,0x41, + 0x73,0x69,0x61,0x2f,0x4e,0x69,0x63,0x6f,0x73,0x69,0x61,0x9,0x43,0x79,0x70,0x72, + 0x75,0x73,0x20,0x28,0x6d,0x6f,0x73,0x74,0x20,0x61,0x72,0x65,0x61,0x73,0x29,0xa, + 0x43,0x59,0x9,0x2b,0x33,0x35,0x30,0x37,0x2b,0x30,0x33,0x33,0x35,0x37,0x9,0x41, + 0x73,0x69,0x61,0x2f,0x46,0x61,0x6d,0x61,0x67,0x75,0x73,0x74,0x61,0x9,0x4e,0x6f, + 0x72,0x74,0x68,0x65,0x72,0x6e,0x20,0x43,0x79,0x70,0x72,0x75,0x73,0xa,0x43,0x5a, + 0x2c,0x53,0x4b,0x9,0x2b,0x35,0x30,0x30,0x35,0x2b,0x30,0x31,0x34,0x32,0x36,0x9, + 0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x50,0x72,0x61,0x67,0x75,0x65,0xa,0x44,0x45, + 0x9,0x2b,0x35,0x32,0x33,0x30,0x2b,0x30,0x31,0x33,0x32,0x32,0x9,0x45,0x75,0x72, + 0x6f,0x70,0x65,0x2f,0x42,0x65,0x72,0x6c,0x69,0x6e,0x9,0x47,0x65,0x72,0x6d,0x61, + 0x6e,0x79,0x20,0x28,0x6d,0x6f,0x73,0x74,0x20,0x61,0x72,0x65,0x61,0x73,0x29,0xa, + 0x44,0x4b,0x9,0x2b,0x35,0x35,0x34,0x30,0x2b,0x30,0x31,0x32,0x33,0x35,0x9,0x45, + 0x75,0x72,0x6f,0x70,0x65,0x2f,0x43,0x6f,0x70,0x65,0x6e,0x68,0x61,0x67,0x65,0x6e, + 0xa,0x44,0x4f,0x9,0x2b,0x31,0x38,0x32,0x38,0x2d,0x30,0x36,0x39,0x35,0x34,0x9, + 0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x53,0x61,0x6e,0x74,0x6f,0x5f,0x44,0x6f, + 0x6d,0x69,0x6e,0x67,0x6f,0xa,0x44,0x5a,0x9,0x2b,0x33,0x36,0x34,0x37,0x2b,0x30, + 0x30,0x33,0x30,0x33,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f,0x41,0x6c,0x67,0x69, + 0x65,0x72,0x73,0xa,0x45,0x43,0x9,0x2d,0x30,0x32,0x31,0x30,0x2d,0x30,0x37,0x39, + 0x35,0x30,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x47,0x75,0x61,0x79,0x61, + 0x71,0x75,0x69,0x6c,0x9,0x45,0x63,0x75,0x61,0x64,0x6f,0x72,0x20,0x28,0x6d,0x61, + 0x69,0x6e,0x6c,0x61,0x6e,0x64,0x29,0xa,0x45,0x43,0x9,0x2d,0x30,0x30,0x35,0x34, + 0x2d,0x30,0x38,0x39,0x33,0x36,0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x2f,0x47, + 0x61,0x6c,0x61,0x70,0x61,0x67,0x6f,0x73,0x9,0x47,0x61,0x6c,0xc3,0xa1,0x70,0x61, + 0x67,0x6f,0x73,0x20,0x49,0x73,0x6c,0x61,0x6e,0x64,0x73,0xa,0x45,0x45,0x9,0x2b, + 0x35,0x39,0x32,0x35,0x2b,0x30,0x32,0x34,0x34,0x35,0x9,0x45,0x75,0x72,0x6f,0x70, + 0x65,0x2f,0x54,0x61,0x6c,0x6c,0x69,0x6e,0x6e,0xa,0x45,0x47,0x9,0x2b,0x33,0x30, + 0x30,0x33,0x2b,0x30,0x33,0x31,0x31,0x35,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f, + 0x43,0x61,0x69,0x72,0x6f,0xa,0x45,0x48,0x9,0x2b,0x32,0x37,0x30,0x39,0x2d,0x30, + 0x31,0x33,0x31,0x32,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f,0x45,0x6c,0x5f,0x41, + 0x61,0x69,0x75,0x6e,0xa,0x45,0x53,0x9,0x2b,0x34,0x30,0x32,0x34,0x2d,0x30,0x30, + 0x33,0x34,0x31,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x4d,0x61,0x64,0x72,0x69, + 0x64,0x9,0x53,0x70,0x61,0x69,0x6e,0x20,0x28,0x6d,0x61,0x69,0x6e,0x6c,0x61,0x6e, + 0x64,0x29,0xa,0x45,0x53,0x9,0x2b,0x33,0x35,0x35,0x33,0x2d,0x30,0x30,0x35,0x31, + 0x39,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f,0x43,0x65,0x75,0x74,0x61,0x9,0x43, + 0x65,0x75,0x74,0x61,0x2c,0x20,0x4d,0x65,0x6c,0x69,0x6c,0x6c,0x61,0xa,0x45,0x53, + 0x9,0x2b,0x32,0x38,0x30,0x36,0x2d,0x30,0x31,0x35,0x32,0x34,0x9,0x41,0x74,0x6c, + 0x61,0x6e,0x74,0x69,0x63,0x2f,0x43,0x61,0x6e,0x61,0x72,0x79,0x9,0x43,0x61,0x6e, + 0x61,0x72,0x79,0x20,0x49,0x73,0x6c,0x61,0x6e,0x64,0x73,0xa,0x46,0x49,0x2c,0x41, + 0x58,0x9,0x2b,0x36,0x30,0x31,0x30,0x2b,0x30,0x32,0x34,0x35,0x38,0x9,0x45,0x75, + 0x72,0x6f,0x70,0x65,0x2f,0x48,0x65,0x6c,0x73,0x69,0x6e,0x6b,0x69,0xa,0x46,0x4a, + 0x9,0x2d,0x31,0x38,0x30,0x38,0x2b,0x31,0x37,0x38,0x32,0x35,0x9,0x50,0x61,0x63, + 0x69,0x66,0x69,0x63,0x2f,0x46,0x69,0x6a,0x69,0xa,0x46,0x4b,0x9,0x2d,0x35,0x31, + 0x34,0x32,0x2d,0x30,0x35,0x37,0x35,0x31,0x9,0x41,0x74,0x6c,0x61,0x6e,0x74,0x69, + 0x63,0x2f,0x53,0x74,0x61,0x6e,0x6c,0x65,0x79,0xa,0x46,0x4d,0x9,0x2b,0x30,0x37, + 0x32,0x35,0x2b,0x31,0x35,0x31,0x34,0x37,0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63, + 0x2f,0x43,0x68,0x75,0x75,0x6b,0x9,0x43,0x68,0x75,0x75,0x6b,0x2f,0x54,0x72,0x75, + 0x6b,0x2c,0x20,0x59,0x61,0x70,0xa,0x46,0x4d,0x9,0x2b,0x30,0x36,0x35,0x38,0x2b, + 0x31,0x35,0x38,0x31,0x33,0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x2f,0x50,0x6f, + 0x68,0x6e,0x70,0x65,0x69,0x9,0x50,0x6f,0x68,0x6e,0x70,0x65,0x69,0x2f,0x50,0x6f, + 0x6e,0x61,0x70,0x65,0xa,0x46,0x4d,0x9,0x2b,0x30,0x35,0x31,0x39,0x2b,0x31,0x36, + 0x32,0x35,0x39,0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x2f,0x4b,0x6f,0x73,0x72, + 0x61,0x65,0x9,0x4b,0x6f,0x73,0x72,0x61,0x65,0xa,0x46,0x4f,0x9,0x2b,0x36,0x32, + 0x30,0x31,0x2d,0x30,0x30,0x36,0x34,0x36,0x9,0x41,0x74,0x6c,0x61,0x6e,0x74,0x69, + 0x63,0x2f,0x46,0x61,0x72,0x6f,0x65,0xa,0x46,0x52,0x9,0x2b,0x34,0x38,0x35,0x32, + 0x2b,0x30,0x30,0x32,0x32,0x30,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x50,0x61, + 0x72,0x69,0x73,0xa,0x47,0x42,0x2c,0x47,0x47,0x2c,0x49,0x4d,0x2c,0x4a,0x45,0x9, + 0x2b,0x35,0x31,0x33,0x30,0x33,0x30,0x2d,0x30,0x30,0x30,0x30,0x37,0x33,0x31,0x9, + 0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x4c,0x6f,0x6e,0x64,0x6f,0x6e,0xa,0x47,0x45, + 0x9,0x2b,0x34,0x31,0x34,0x33,0x2b,0x30,0x34,0x34,0x34,0x39,0x9,0x41,0x73,0x69, + 0x61,0x2f,0x54,0x62,0x69,0x6c,0x69,0x73,0x69,0xa,0x47,0x46,0x9,0x2b,0x30,0x34, + 0x35,0x36,0x2d,0x30,0x35,0x32,0x32,0x30,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61, + 0x2f,0x43,0x61,0x79,0x65,0x6e,0x6e,0x65,0xa,0x47,0x48,0x9,0x2b,0x30,0x35,0x33, + 0x33,0x2d,0x30,0x30,0x30,0x31,0x33,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f,0x41, + 0x63,0x63,0x72,0x61,0xa,0x47,0x49,0x9,0x2b,0x33,0x36,0x30,0x38,0x2d,0x30,0x30, + 0x35,0x32,0x31,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x47,0x69,0x62,0x72,0x61, + 0x6c,0x74,0x61,0x72,0xa,0x47,0x4c,0x9,0x2b,0x36,0x34,0x31,0x31,0x2d,0x30,0x35, + 0x31,0x34,0x34,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x47,0x6f,0x64,0x74, + 0x68,0x61,0x62,0x9,0x47,0x72,0x65,0x65,0x6e,0x6c,0x61,0x6e,0x64,0x20,0x28,0x6d, + 0x6f,0x73,0x74,0x20,0x61,0x72,0x65,0x61,0x73,0x29,0xa,0x47,0x4c,0x9,0x2b,0x37, + 0x36,0x34,0x36,0x2d,0x30,0x31,0x38,0x34,0x30,0x9,0x41,0x6d,0x65,0x72,0x69,0x63, + 0x61,0x2f,0x44,0x61,0x6e,0x6d,0x61,0x72,0x6b,0x73,0x68,0x61,0x76,0x6e,0x9,0x4e, + 0x61,0x74,0x69,0x6f,0x6e,0x61,0x6c,0x20,0x50,0x61,0x72,0x6b,0x20,0x28,0x65,0x61, + 0x73,0x74,0x20,0x63,0x6f,0x61,0x73,0x74,0x29,0xa,0x47,0x4c,0x9,0x2b,0x37,0x30, + 0x32,0x39,0x2d,0x30,0x32,0x31,0x35,0x38,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61, + 0x2f,0x53,0x63,0x6f,0x72,0x65,0x73,0x62,0x79,0x73,0x75,0x6e,0x64,0x9,0x53,0x63, + 0x6f,0x72,0x65,0x73,0x62,0x79,0x73,0x75,0x6e,0x64,0x2f,0x49,0x74,0x74,0x6f,0x71, + 0x71,0x6f,0x72,0x74,0x6f,0x6f,0x72,0x6d,0x69,0x69,0x74,0xa,0x47,0x4c,0x9,0x2b, + 0x37,0x36,0x33,0x34,0x2d,0x30,0x36,0x38,0x34,0x37,0x9,0x41,0x6d,0x65,0x72,0x69, + 0x63,0x61,0x2f,0x54,0x68,0x75,0x6c,0x65,0x9,0x54,0x68,0x75,0x6c,0x65,0x2f,0x50, + 0x69,0x74,0x75,0x66,0x66,0x69,0x6b,0xa,0x47,0x52,0x9,0x2b,0x33,0x37,0x35,0x38, + 0x2b,0x30,0x32,0x33,0x34,0x33,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x41,0x74, + 0x68,0x65,0x6e,0x73,0xa,0x47,0x53,0x9,0x2d,0x35,0x34,0x31,0x36,0x2d,0x30,0x33, + 0x36,0x33,0x32,0x9,0x41,0x74,0x6c,0x61,0x6e,0x74,0x69,0x63,0x2f,0x53,0x6f,0x75, + 0x74,0x68,0x5f,0x47,0x65,0x6f,0x72,0x67,0x69,0x61,0xa,0x47,0x54,0x9,0x2b,0x31, + 0x34,0x33,0x38,0x2d,0x30,0x39,0x30,0x33,0x31,0x9,0x41,0x6d,0x65,0x72,0x69,0x63, + 0x61,0x2f,0x47,0x75,0x61,0x74,0x65,0x6d,0x61,0x6c,0x61,0xa,0x47,0x55,0x2c,0x4d, + 0x50,0x9,0x2b,0x31,0x33,0x32,0x38,0x2b,0x31,0x34,0x34,0x34,0x35,0x9,0x50,0x61, + 0x63,0x69,0x66,0x69,0x63,0x2f,0x47,0x75,0x61,0x6d,0xa,0x47,0x57,0x9,0x2b,0x31, + 0x31,0x35,0x31,0x2d,0x30,0x31,0x35,0x33,0x35,0x9,0x41,0x66,0x72,0x69,0x63,0x61, + 0x2f,0x42,0x69,0x73,0x73,0x61,0x75,0xa,0x47,0x59,0x9,0x2b,0x30,0x36,0x34,0x38, + 0x2d,0x30,0x35,0x38,0x31,0x30,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x47, + 0x75,0x79,0x61,0x6e,0x61,0xa,0x48,0x4b,0x9,0x2b,0x32,0x32,0x31,0x37,0x2b,0x31, + 0x31,0x34,0x30,0x39,0x9,0x41,0x73,0x69,0x61,0x2f,0x48,0x6f,0x6e,0x67,0x5f,0x4b, + 0x6f,0x6e,0x67,0xa,0x48,0x4e,0x9,0x2b,0x31,0x34,0x30,0x36,0x2d,0x30,0x38,0x37, + 0x31,0x33,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x54,0x65,0x67,0x75,0x63, + 0x69,0x67,0x61,0x6c,0x70,0x61,0xa,0x48,0x54,0x9,0x2b,0x31,0x38,0x33,0x32,0x2d, + 0x30,0x37,0x32,0x32,0x30,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x50,0x6f, + 0x72,0x74,0x2d,0x61,0x75,0x2d,0x50,0x72,0x69,0x6e,0x63,0x65,0xa,0x48,0x55,0x9, + 0x2b,0x34,0x37,0x33,0x30,0x2b,0x30,0x31,0x39,0x30,0x35,0x9,0x45,0x75,0x72,0x6f, + 0x70,0x65,0x2f,0x42,0x75,0x64,0x61,0x70,0x65,0x73,0x74,0xa,0x49,0x44,0x9,0x2d, + 0x30,0x36,0x31,0x30,0x2b,0x31,0x30,0x36,0x34,0x38,0x9,0x41,0x73,0x69,0x61,0x2f, + 0x4a,0x61,0x6b,0x61,0x72,0x74,0x61,0x9,0x4a,0x61,0x76,0x61,0x2c,0x20,0x53,0x75, + 0x6d,0x61,0x74,0x72,0x61,0xa,0x49,0x44,0x9,0x2d,0x30,0x30,0x30,0x32,0x2b,0x31, + 0x30,0x39,0x32,0x30,0x9,0x41,0x73,0x69,0x61,0x2f,0x50,0x6f,0x6e,0x74,0x69,0x61, + 0x6e,0x61,0x6b,0x9,0x42,0x6f,0x72,0x6e,0x65,0x6f,0x20,0x28,0x77,0x65,0x73,0x74, + 0x2c,0x20,0x63,0x65,0x6e,0x74,0x72,0x61,0x6c,0x29,0xa,0x49,0x44,0x9,0x2d,0x30, + 0x35,0x30,0x37,0x2b,0x31,0x31,0x39,0x32,0x34,0x9,0x41,0x73,0x69,0x61,0x2f,0x4d, + 0x61,0x6b,0x61,0x73,0x73,0x61,0x72,0x9,0x42,0x6f,0x72,0x6e,0x65,0x6f,0x20,0x28, + 0x65,0x61,0x73,0x74,0x2c,0x20,0x73,0x6f,0x75,0x74,0x68,0x29,0x3b,0x20,0x53,0x75, + 0x6c,0x61,0x77,0x65,0x73,0x69,0x2f,0x43,0x65,0x6c,0x65,0x62,0x65,0x73,0x2c,0x20, + 0x42,0x61,0x6c,0x69,0x2c,0x20,0x4e,0x75,0x73,0x61,0x20,0x54,0x65,0x6e,0x67,0x61, + 0x72,0x72,0x61,0x3b,0x20,0x54,0x69,0x6d,0x6f,0x72,0x20,0x28,0x77,0x65,0x73,0x74, + 0x29,0xa,0x49,0x44,0x9,0x2d,0x30,0x32,0x33,0x32,0x2b,0x31,0x34,0x30,0x34,0x32, + 0x9,0x41,0x73,0x69,0x61,0x2f,0x4a,0x61,0x79,0x61,0x70,0x75,0x72,0x61,0x9,0x4e, + 0x65,0x77,0x20,0x47,0x75,0x69,0x6e,0x65,0x61,0x20,0x28,0x57,0x65,0x73,0x74,0x20, + 0x50,0x61,0x70,0x75,0x61,0x20,0x2f,0x20,0x49,0x72,0x69,0x61,0x6e,0x20,0x4a,0x61, + 0x79,0x61,0x29,0x3b,0x20,0x4d,0x61,0x6c,0x75,0x6b,0x75,0x73,0x2f,0x4d,0x6f,0x6c, + 0x75,0x63,0x63,0x61,0x73,0xa,0x49,0x45,0x9,0x2b,0x35,0x33,0x32,0x30,0x2d,0x30, + 0x30,0x36,0x31,0x35,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x44,0x75,0x62,0x6c, + 0x69,0x6e,0xa,0x49,0x4c,0x9,0x2b,0x33,0x31,0x34,0x36,0x35,0x30,0x2b,0x30,0x33, + 0x35,0x31,0x33,0x32,0x36,0x9,0x41,0x73,0x69,0x61,0x2f,0x4a,0x65,0x72,0x75,0x73, + 0x61,0x6c,0x65,0x6d,0xa,0x49,0x4e,0x9,0x2b,0x32,0x32,0x33,0x32,0x2b,0x30,0x38, + 0x38,0x32,0x32,0x9,0x41,0x73,0x69,0x61,0x2f,0x4b,0x6f,0x6c,0x6b,0x61,0x74,0x61, + 0xa,0x49,0x4f,0x9,0x2d,0x30,0x37,0x32,0x30,0x2b,0x30,0x37,0x32,0x32,0x35,0x9, + 0x49,0x6e,0x64,0x69,0x61,0x6e,0x2f,0x43,0x68,0x61,0x67,0x6f,0x73,0xa,0x49,0x51, + 0x9,0x2b,0x33,0x33,0x32,0x31,0x2b,0x30,0x34,0x34,0x32,0x35,0x9,0x41,0x73,0x69, + 0x61,0x2f,0x42,0x61,0x67,0x68,0x64,0x61,0x64,0xa,0x49,0x52,0x9,0x2b,0x33,0x35, + 0x34,0x30,0x2b,0x30,0x35,0x31,0x32,0x36,0x9,0x41,0x73,0x69,0x61,0x2f,0x54,0x65, + 0x68,0x72,0x61,0x6e,0xa,0x49,0x53,0x9,0x2b,0x36,0x34,0x30,0x39,0x2d,0x30,0x32, + 0x31,0x35,0x31,0x9,0x41,0x74,0x6c,0x61,0x6e,0x74,0x69,0x63,0x2f,0x52,0x65,0x79, + 0x6b,0x6a,0x61,0x76,0x69,0x6b,0xa,0x49,0x54,0x2c,0x53,0x4d,0x2c,0x56,0x41,0x9, + 0x2b,0x34,0x31,0x35,0x34,0x2b,0x30,0x31,0x32,0x32,0x39,0x9,0x45,0x75,0x72,0x6f, + 0x70,0x65,0x2f,0x52,0x6f,0x6d,0x65,0xa,0x4a,0x4d,0x9,0x2b,0x31,0x37,0x35,0x38, + 0x30,0x35,0x2d,0x30,0x37,0x36,0x34,0x37,0x33,0x36,0x9,0x41,0x6d,0x65,0x72,0x69, + 0x63,0x61,0x2f,0x4a,0x61,0x6d,0x61,0x69,0x63,0x61,0xa,0x4a,0x4f,0x9,0x2b,0x33, + 0x31,0x35,0x37,0x2b,0x30,0x33,0x35,0x35,0x36,0x9,0x41,0x73,0x69,0x61,0x2f,0x41, + 0x6d,0x6d,0x61,0x6e,0xa,0x4a,0x50,0x9,0x2b,0x33,0x35,0x33,0x39,0x31,0x36,0x2b, + 0x31,0x33,0x39,0x34,0x34,0x34,0x31,0x9,0x41,0x73,0x69,0x61,0x2f,0x54,0x6f,0x6b, + 0x79,0x6f,0xa,0x4b,0x45,0x2c,0x44,0x4a,0x2c,0x45,0x52,0x2c,0x45,0x54,0x2c,0x4b, + 0x4d,0x2c,0x4d,0x47,0x2c,0x53,0x4f,0x2c,0x54,0x5a,0x2c,0x55,0x47,0x2c,0x59,0x54, + 0x9,0x2d,0x30,0x31,0x31,0x37,0x2b,0x30,0x33,0x36,0x34,0x39,0x9,0x41,0x66,0x72, + 0x69,0x63,0x61,0x2f,0x4e,0x61,0x69,0x72,0x6f,0x62,0x69,0xa,0x4b,0x47,0x9,0x2b, + 0x34,0x32,0x35,0x34,0x2b,0x30,0x37,0x34,0x33,0x36,0x9,0x41,0x73,0x69,0x61,0x2f, + 0x42,0x69,0x73,0x68,0x6b,0x65,0x6b,0xa,0x4b,0x49,0x9,0x2b,0x30,0x31,0x32,0x35, + 0x2b,0x31,0x37,0x33,0x30,0x30,0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x2f,0x54, + 0x61,0x72,0x61,0x77,0x61,0x9,0x47,0x69,0x6c,0x62,0x65,0x72,0x74,0x20,0x49,0x73, + 0x6c,0x61,0x6e,0x64,0x73,0xa,0x4b,0x49,0x9,0x2d,0x30,0x33,0x30,0x38,0x2d,0x31, + 0x37,0x31,0x30,0x35,0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x2f,0x45,0x6e,0x64, + 0x65,0x72,0x62,0x75,0x72,0x79,0x9,0x50,0x68,0x6f,0x65,0x6e,0x69,0x78,0x20,0x49, + 0x73,0x6c,0x61,0x6e,0x64,0x73,0xa,0x4b,0x49,0x9,0x2b,0x30,0x31,0x35,0x32,0x2d, + 0x31,0x35,0x37,0x32,0x30,0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x2f,0x4b,0x69, + 0x72,0x69,0x74,0x69,0x6d,0x61,0x74,0x69,0x9,0x4c,0x69,0x6e,0x65,0x20,0x49,0x73, + 0x6c,0x61,0x6e,0x64,0x73,0xa,0x4b,0x50,0x9,0x2b,0x33,0x39,0x30,0x31,0x2b,0x31, + 0x32,0x35,0x34,0x35,0x9,0x41,0x73,0x69,0x61,0x2f,0x50,0x79,0x6f,0x6e,0x67,0x79, + 0x61,0x6e,0x67,0xa,0x4b,0x52,0x9,0x2b,0x33,0x37,0x33,0x33,0x2b,0x31,0x32,0x36, + 0x35,0x38,0x9,0x41,0x73,0x69,0x61,0x2f,0x53,0x65,0x6f,0x75,0x6c,0xa,0x4b,0x5a, + 0x9,0x2b,0x34,0x33,0x31,0x35,0x2b,0x30,0x37,0x36,0x35,0x37,0x9,0x41,0x73,0x69, + 0x61,0x2f,0x41,0x6c,0x6d,0x61,0x74,0x79,0x9,0x4b,0x61,0x7a,0x61,0x6b,0x68,0x73, + 0x74,0x61,0x6e,0x20,0x28,0x6d,0x6f,0x73,0x74,0x20,0x61,0x72,0x65,0x61,0x73,0x29, + 0xa,0x4b,0x5a,0x9,0x2b,0x34,0x34,0x34,0x38,0x2b,0x30,0x36,0x35,0x32,0x38,0x9, + 0x41,0x73,0x69,0x61,0x2f,0x51,0x79,0x7a,0x79,0x6c,0x6f,0x72,0x64,0x61,0x9,0x51, + 0x79,0x7a,0x79,0x6c,0x6f,0x72,0x64,0x61,0x2f,0x4b,0x79,0x7a,0x79,0x6c,0x6f,0x72, + 0x64,0x61,0x2f,0x4b,0x7a,0x79,0x6c,0x2d,0x4f,0x72,0x64,0x61,0xa,0x4b,0x5a,0x9, + 0x2b,0x35,0x30,0x31,0x37,0x2b,0x30,0x35,0x37,0x31,0x30,0x9,0x41,0x73,0x69,0x61, + 0x2f,0x41,0x71,0x74,0x6f,0x62,0x65,0x9,0x41,0x71,0x74,0xc3,0xb6,0x62,0x65,0x2f, + 0x41,0x6b,0x74,0x6f,0x62,0x65,0xa,0x4b,0x5a,0x9,0x2b,0x34,0x34,0x33,0x31,0x2b, + 0x30,0x35,0x30,0x31,0x36,0x9,0x41,0x73,0x69,0x61,0x2f,0x41,0x71,0x74,0x61,0x75, + 0x9,0x4d,0x61,0x6e,0x67,0x67,0x68,0x79,0x73,0x74,0x61,0xc5,0xab,0x2f,0x4d,0x61, + 0x6e,0x6b,0x69,0x73,0x74,0x61,0x75,0xa,0x4b,0x5a,0x9,0x2b,0x34,0x37,0x30,0x37, + 0x2b,0x30,0x35,0x31,0x35,0x36,0x9,0x41,0x73,0x69,0x61,0x2f,0x41,0x74,0x79,0x72, + 0x61,0x75,0x9,0x41,0x74,0x79,0x72,0x61,0xc5,0xab,0x2f,0x41,0x74,0x69,0x72,0x61, + 0x75,0x2f,0x47,0x75,0x72,0x27,0x79,0x65,0x76,0xa,0x4b,0x5a,0x9,0x2b,0x35,0x31, + 0x31,0x33,0x2b,0x30,0x35,0x31,0x32,0x31,0x9,0x41,0x73,0x69,0x61,0x2f,0x4f,0x72, + 0x61,0x6c,0x9,0x57,0x65,0x73,0x74,0x20,0x4b,0x61,0x7a,0x61,0x6b,0x68,0x73,0x74, + 0x61,0x6e,0xa,0x4c,0x42,0x9,0x2b,0x33,0x33,0x35,0x33,0x2b,0x30,0x33,0x35,0x33, + 0x30,0x9,0x41,0x73,0x69,0x61,0x2f,0x42,0x65,0x69,0x72,0x75,0x74,0xa,0x4c,0x4b, + 0x9,0x2b,0x30,0x36,0x35,0x36,0x2b,0x30,0x37,0x39,0x35,0x31,0x9,0x41,0x73,0x69, + 0x61,0x2f,0x43,0x6f,0x6c,0x6f,0x6d,0x62,0x6f,0xa,0x4c,0x52,0x9,0x2b,0x30,0x36, + 0x31,0x38,0x2d,0x30,0x31,0x30,0x34,0x37,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f, + 0x4d,0x6f,0x6e,0x72,0x6f,0x76,0x69,0x61,0xa,0x4c,0x54,0x9,0x2b,0x35,0x34,0x34, + 0x31,0x2b,0x30,0x32,0x35,0x31,0x39,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x56, + 0x69,0x6c,0x6e,0x69,0x75,0x73,0xa,0x4c,0x55,0x9,0x2b,0x34,0x39,0x33,0x36,0x2b, + 0x30,0x30,0x36,0x30,0x39,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x4c,0x75,0x78, + 0x65,0x6d,0x62,0x6f,0x75,0x72,0x67,0xa,0x4c,0x56,0x9,0x2b,0x35,0x36,0x35,0x37, + 0x2b,0x30,0x32,0x34,0x30,0x36,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x52,0x69, + 0x67,0x61,0xa,0x4c,0x59,0x9,0x2b,0x33,0x32,0x35,0x34,0x2b,0x30,0x31,0x33,0x31, + 0x31,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f,0x54,0x72,0x69,0x70,0x6f,0x6c,0x69, + 0xa,0x4d,0x41,0x9,0x2b,0x33,0x33,0x33,0x39,0x2d,0x30,0x30,0x37,0x33,0x35,0x9, + 0x41,0x66,0x72,0x69,0x63,0x61,0x2f,0x43,0x61,0x73,0x61,0x62,0x6c,0x61,0x6e,0x63, + 0x61,0xa,0x4d,0x43,0x9,0x2b,0x34,0x33,0x34,0x32,0x2b,0x30,0x30,0x37,0x32,0x33, + 0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x4d,0x6f,0x6e,0x61,0x63,0x6f,0xa,0x4d, + 0x44,0x9,0x2b,0x34,0x37,0x30,0x30,0x2b,0x30,0x32,0x38,0x35,0x30,0x9,0x45,0x75, + 0x72,0x6f,0x70,0x65,0x2f,0x43,0x68,0x69,0x73,0x69,0x6e,0x61,0x75,0xa,0x4d,0x48, + 0x9,0x2b,0x30,0x37,0x30,0x39,0x2b,0x31,0x37,0x31,0x31,0x32,0x9,0x50,0x61,0x63, + 0x69,0x66,0x69,0x63,0x2f,0x4d,0x61,0x6a,0x75,0x72,0x6f,0x9,0x4d,0x61,0x72,0x73, + 0x68,0x61,0x6c,0x6c,0x20,0x49,0x73,0x6c,0x61,0x6e,0x64,0x73,0x20,0x28,0x6d,0x6f, + 0x73,0x74,0x20,0x61,0x72,0x65,0x61,0x73,0x29,0xa,0x4d,0x48,0x9,0x2b,0x30,0x39, + 0x30,0x35,0x2b,0x31,0x36,0x37,0x32,0x30,0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63, + 0x2f,0x4b,0x77,0x61,0x6a,0x61,0x6c,0x65,0x69,0x6e,0x9,0x4b,0x77,0x61,0x6a,0x61, + 0x6c,0x65,0x69,0x6e,0xa,0x4d,0x4d,0x9,0x2b,0x31,0x36,0x34,0x37,0x2b,0x30,0x39, + 0x36,0x31,0x30,0x9,0x41,0x73,0x69,0x61,0x2f,0x59,0x61,0x6e,0x67,0x6f,0x6e,0xa, + 0x4d,0x4e,0x9,0x2b,0x34,0x37,0x35,0x35,0x2b,0x31,0x30,0x36,0x35,0x33,0x9,0x41, + 0x73,0x69,0x61,0x2f,0x55,0x6c,0x61,0x61,0x6e,0x62,0x61,0x61,0x74,0x61,0x72,0x9, + 0x4d,0x6f,0x6e,0x67,0x6f,0x6c,0x69,0x61,0x20,0x28,0x6d,0x6f,0x73,0x74,0x20,0x61, + 0x72,0x65,0x61,0x73,0x29,0xa,0x4d,0x4e,0x9,0x2b,0x34,0x38,0x30,0x31,0x2b,0x30, + 0x39,0x31,0x33,0x39,0x9,0x41,0x73,0x69,0x61,0x2f,0x48,0x6f,0x76,0x64,0x9,0x42, + 0x61,0x79,0x61,0x6e,0x2d,0xc3,0x96,0x6c,0x67,0x69,0x69,0x2c,0x20,0x47,0x6f,0x76, + 0x69,0x2d,0x41,0x6c,0x74,0x61,0x69,0x2c,0x20,0x48,0x6f,0x76,0x64,0x2c,0x20,0x55, + 0x76,0x73,0x2c,0x20,0x5a,0x61,0x76,0x6b,0x68,0x61,0x6e,0xa,0x4d,0x4e,0x9,0x2b, + 0x34,0x38,0x30,0x34,0x2b,0x31,0x31,0x34,0x33,0x30,0x9,0x41,0x73,0x69,0x61,0x2f, + 0x43,0x68,0x6f,0x69,0x62,0x61,0x6c,0x73,0x61,0x6e,0x9,0x44,0x6f,0x72,0x6e,0x6f, + 0x64,0x2c,0x20,0x53,0xc3,0xbc,0x6b,0x68,0x62,0x61,0x61,0x74,0x61,0x72,0xa,0x4d, + 0x4f,0x9,0x2b,0x32,0x32,0x31,0x34,0x2b,0x31,0x31,0x33,0x33,0x35,0x9,0x41,0x73, + 0x69,0x61,0x2f,0x4d,0x61,0x63,0x61,0x75,0xa,0x4d,0x51,0x9,0x2b,0x31,0x34,0x33, + 0x36,0x2d,0x30,0x36,0x31,0x30,0x35,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f, + 0x4d,0x61,0x72,0x74,0x69,0x6e,0x69,0x71,0x75,0x65,0xa,0x4d,0x54,0x9,0x2b,0x33, + 0x35,0x35,0x34,0x2b,0x30,0x31,0x34,0x33,0x31,0x9,0x45,0x75,0x72,0x6f,0x70,0x65, + 0x2f,0x4d,0x61,0x6c,0x74,0x61,0xa,0x4d,0x55,0x9,0x2d,0x32,0x30,0x31,0x30,0x2b, + 0x30,0x35,0x37,0x33,0x30,0x9,0x49,0x6e,0x64,0x69,0x61,0x6e,0x2f,0x4d,0x61,0x75, + 0x72,0x69,0x74,0x69,0x75,0x73,0xa,0x4d,0x56,0x9,0x2b,0x30,0x34,0x31,0x30,0x2b, + 0x30,0x37,0x33,0x33,0x30,0x9,0x49,0x6e,0x64,0x69,0x61,0x6e,0x2f,0x4d,0x61,0x6c, + 0x64,0x69,0x76,0x65,0x73,0xa,0x4d,0x58,0x9,0x2b,0x31,0x39,0x32,0x34,0x2d,0x30, + 0x39,0x39,0x30,0x39,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x4d,0x65,0x78, + 0x69,0x63,0x6f,0x5f,0x43,0x69,0x74,0x79,0x9,0x43,0x65,0x6e,0x74,0x72,0x61,0x6c, + 0x20,0x54,0x69,0x6d,0x65,0xa,0x4d,0x58,0x9,0x2b,0x32,0x31,0x30,0x35,0x2d,0x30, + 0x38,0x36,0x34,0x36,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x43,0x61,0x6e, + 0x63,0x75,0x6e,0x9,0x45,0x61,0x73,0x74,0x65,0x72,0x6e,0x20,0x53,0x74,0x61,0x6e, + 0x64,0x61,0x72,0x64,0x20,0x54,0x69,0x6d,0x65,0x20,0x2d,0x20,0x51,0x75,0x69,0x6e, + 0x74,0x61,0x6e,0x61,0x20,0x52,0x6f,0x6f,0xa,0x4d,0x58,0x9,0x2b,0x32,0x30,0x35, + 0x38,0x2d,0x30,0x38,0x39,0x33,0x37,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f, + 0x4d,0x65,0x72,0x69,0x64,0x61,0x9,0x43,0x65,0x6e,0x74,0x72,0x61,0x6c,0x20,0x54, + 0x69,0x6d,0x65,0x20,0x2d,0x20,0x43,0x61,0x6d,0x70,0x65,0x63,0x68,0x65,0x2c,0x20, + 0x59,0x75,0x63,0x61,0x74,0xc3,0xa1,0x6e,0xa,0x4d,0x58,0x9,0x2b,0x32,0x35,0x34, + 0x30,0x2d,0x31,0x30,0x30,0x31,0x39,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f, + 0x4d,0x6f,0x6e,0x74,0x65,0x72,0x72,0x65,0x79,0x9,0x43,0x65,0x6e,0x74,0x72,0x61, + 0x6c,0x20,0x54,0x69,0x6d,0x65,0x20,0x2d,0x20,0x44,0x75,0x72,0x61,0x6e,0x67,0x6f, + 0x3b,0x20,0x43,0x6f,0x61,0x68,0x75,0x69,0x6c,0x61,0x2c,0x20,0x4e,0x75,0x65,0x76, + 0x6f,0x20,0x4c,0x65,0xc3,0xb3,0x6e,0x2c,0x20,0x54,0x61,0x6d,0x61,0x75,0x6c,0x69, + 0x70,0x61,0x73,0x20,0x28,0x6d,0x6f,0x73,0x74,0x20,0x61,0x72,0x65,0x61,0x73,0x29, + 0xa,0x4d,0x58,0x9,0x2b,0x32,0x35,0x35,0x30,0x2d,0x30,0x39,0x37,0x33,0x30,0x9, + 0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x4d,0x61,0x74,0x61,0x6d,0x6f,0x72,0x6f, + 0x73,0x9,0x43,0x65,0x6e,0x74,0x72,0x61,0x6c,0x20,0x54,0x69,0x6d,0x65,0x20,0x55, + 0x53,0x20,0x2d,0x20,0x43,0x6f,0x61,0x68,0x75,0x69,0x6c,0x61,0x2c,0x20,0x4e,0x75, + 0x65,0x76,0x6f,0x20,0x4c,0x65,0xc3,0xb3,0x6e,0x2c,0x20,0x54,0x61,0x6d,0x61,0x75, + 0x6c,0x69,0x70,0x61,0x73,0x20,0x28,0x55,0x53,0x20,0x62,0x6f,0x72,0x64,0x65,0x72, + 0x29,0xa,0x4d,0x58,0x9,0x2b,0x32,0x33,0x31,0x33,0x2d,0x31,0x30,0x36,0x32,0x35, + 0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x4d,0x61,0x7a,0x61,0x74,0x6c,0x61, + 0x6e,0x9,0x4d,0x6f,0x75,0x6e,0x74,0x61,0x69,0x6e,0x20,0x54,0x69,0x6d,0x65,0x20, + 0x2d,0x20,0x42,0x61,0x6a,0x61,0x20,0x43,0x61,0x6c,0x69,0x66,0x6f,0x72,0x6e,0x69, + 0x61,0x20,0x53,0x75,0x72,0x2c,0x20,0x4e,0x61,0x79,0x61,0x72,0x69,0x74,0x2c,0x20, + 0x53,0x69,0x6e,0x61,0x6c,0x6f,0x61,0xa,0x4d,0x58,0x9,0x2b,0x32,0x38,0x33,0x38, + 0x2d,0x31,0x30,0x36,0x30,0x35,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x43, + 0x68,0x69,0x68,0x75,0x61,0x68,0x75,0x61,0x9,0x4d,0x6f,0x75,0x6e,0x74,0x61,0x69, + 0x6e,0x20,0x54,0x69,0x6d,0x65,0x20,0x2d,0x20,0x43,0x68,0x69,0x68,0x75,0x61,0x68, + 0x75,0x61,0x20,0x28,0x6d,0x6f,0x73,0x74,0x20,0x61,0x72,0x65,0x61,0x73,0x29,0xa, + 0x4d,0x58,0x9,0x2b,0x32,0x39,0x33,0x34,0x2d,0x31,0x30,0x34,0x32,0x35,0x9,0x41, + 0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x4f,0x6a,0x69,0x6e,0x61,0x67,0x61,0x9,0x4d, + 0x6f,0x75,0x6e,0x74,0x61,0x69,0x6e,0x20,0x54,0x69,0x6d,0x65,0x20,0x55,0x53,0x20, + 0x2d,0x20,0x43,0x68,0x69,0x68,0x75,0x61,0x68,0x75,0x61,0x20,0x28,0x55,0x53,0x20, + 0x62,0x6f,0x72,0x64,0x65,0x72,0x29,0xa,0x4d,0x58,0x9,0x2b,0x32,0x39,0x30,0x34, + 0x2d,0x31,0x31,0x30,0x35,0x38,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x48, + 0x65,0x72,0x6d,0x6f,0x73,0x69,0x6c,0x6c,0x6f,0x9,0x4d,0x6f,0x75,0x6e,0x74,0x61, + 0x69,0x6e,0x20,0x53,0x74,0x61,0x6e,0x64,0x61,0x72,0x64,0x20,0x54,0x69,0x6d,0x65, + 0x20,0x2d,0x20,0x53,0x6f,0x6e,0x6f,0x72,0x61,0xa,0x4d,0x58,0x9,0x2b,0x33,0x32, + 0x33,0x32,0x2d,0x31,0x31,0x37,0x30,0x31,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61, + 0x2f,0x54,0x69,0x6a,0x75,0x61,0x6e,0x61,0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63, + 0x20,0x54,0x69,0x6d,0x65,0x20,0x55,0x53,0x20,0x2d,0x20,0x42,0x61,0x6a,0x61,0x20, + 0x43,0x61,0x6c,0x69,0x66,0x6f,0x72,0x6e,0x69,0x61,0xa,0x4d,0x58,0x9,0x2b,0x32, + 0x30,0x34,0x38,0x2d,0x31,0x30,0x35,0x31,0x35,0x9,0x41,0x6d,0x65,0x72,0x69,0x63, + 0x61,0x2f,0x42,0x61,0x68,0x69,0x61,0x5f,0x42,0x61,0x6e,0x64,0x65,0x72,0x61,0x73, + 0x9,0x43,0x65,0x6e,0x74,0x72,0x61,0x6c,0x20,0x54,0x69,0x6d,0x65,0x20,0x2d,0x20, + 0x42,0x61,0x68,0xc3,0xad,0x61,0x20,0x64,0x65,0x20,0x42,0x61,0x6e,0x64,0x65,0x72, + 0x61,0x73,0xa,0x4d,0x59,0x9,0x2b,0x30,0x33,0x31,0x30,0x2b,0x31,0x30,0x31,0x34, + 0x32,0x9,0x41,0x73,0x69,0x61,0x2f,0x4b,0x75,0x61,0x6c,0x61,0x5f,0x4c,0x75,0x6d, + 0x70,0x75,0x72,0x9,0x4d,0x61,0x6c,0x61,0x79,0x73,0x69,0x61,0x20,0x28,0x70,0x65, + 0x6e,0x69,0x6e,0x73,0x75,0x6c,0x61,0x29,0xa,0x4d,0x59,0x9,0x2b,0x30,0x31,0x33, + 0x33,0x2b,0x31,0x31,0x30,0x32,0x30,0x9,0x41,0x73,0x69,0x61,0x2f,0x4b,0x75,0x63, + 0x68,0x69,0x6e,0x67,0x9,0x53,0x61,0x62,0x61,0x68,0x2c,0x20,0x53,0x61,0x72,0x61, + 0x77,0x61,0x6b,0xa,0x4d,0x5a,0x2c,0x42,0x49,0x2c,0x42,0x57,0x2c,0x43,0x44,0x2c, + 0x4d,0x57,0x2c,0x52,0x57,0x2c,0x5a,0x4d,0x2c,0x5a,0x57,0x9,0x2d,0x32,0x35,0x35, + 0x38,0x2b,0x30,0x33,0x32,0x33,0x35,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f,0x4d, + 0x61,0x70,0x75,0x74,0x6f,0x9,0x43,0x65,0x6e,0x74,0x72,0x61,0x6c,0x20,0x41,0x66, + 0x72,0x69,0x63,0x61,0x20,0x54,0x69,0x6d,0x65,0xa,0x4e,0x41,0x9,0x2d,0x32,0x32, + 0x33,0x34,0x2b,0x30,0x31,0x37,0x30,0x36,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f, + 0x57,0x69,0x6e,0x64,0x68,0x6f,0x65,0x6b,0xa,0x4e,0x43,0x9,0x2d,0x32,0x32,0x31, + 0x36,0x2b,0x31,0x36,0x36,0x32,0x37,0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x2f, + 0x4e,0x6f,0x75,0x6d,0x65,0x61,0xa,0x4e,0x46,0x9,0x2d,0x32,0x39,0x30,0x33,0x2b, + 0x31,0x36,0x37,0x35,0x38,0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x2f,0x4e,0x6f, + 0x72,0x66,0x6f,0x6c,0x6b,0xa,0x4e,0x47,0x2c,0x41,0x4f,0x2c,0x42,0x4a,0x2c,0x43, + 0x44,0x2c,0x43,0x46,0x2c,0x43,0x47,0x2c,0x43,0x4d,0x2c,0x47,0x41,0x2c,0x47,0x51, + 0x2c,0x4e,0x45,0x9,0x2b,0x30,0x36,0x32,0x37,0x2b,0x30,0x30,0x33,0x32,0x34,0x9, + 0x41,0x66,0x72,0x69,0x63,0x61,0x2f,0x4c,0x61,0x67,0x6f,0x73,0x9,0x57,0x65,0x73, + 0x74,0x20,0x41,0x66,0x72,0x69,0x63,0x61,0x20,0x54,0x69,0x6d,0x65,0xa,0x4e,0x49, + 0x9,0x2b,0x31,0x32,0x30,0x39,0x2d,0x30,0x38,0x36,0x31,0x37,0x9,0x41,0x6d,0x65, + 0x72,0x69,0x63,0x61,0x2f,0x4d,0x61,0x6e,0x61,0x67,0x75,0x61,0xa,0x4e,0x4c,0x9, + 0x2b,0x35,0x32,0x32,0x32,0x2b,0x30,0x30,0x34,0x35,0x34,0x9,0x45,0x75,0x72,0x6f, + 0x70,0x65,0x2f,0x41,0x6d,0x73,0x74,0x65,0x72,0x64,0x61,0x6d,0xa,0x4e,0x4f,0x2c, + 0x53,0x4a,0x9,0x2b,0x35,0x39,0x35,0x35,0x2b,0x30,0x31,0x30,0x34,0x35,0x9,0x45, + 0x75,0x72,0x6f,0x70,0x65,0x2f,0x4f,0x73,0x6c,0x6f,0xa,0x4e,0x50,0x9,0x2b,0x32, + 0x37,0x34,0x33,0x2b,0x30,0x38,0x35,0x31,0x39,0x9,0x41,0x73,0x69,0x61,0x2f,0x4b, + 0x61,0x74,0x68,0x6d,0x61,0x6e,0x64,0x75,0xa,0x4e,0x52,0x9,0x2d,0x30,0x30,0x33, + 0x31,0x2b,0x31,0x36,0x36,0x35,0x35,0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x2f, + 0x4e,0x61,0x75,0x72,0x75,0xa,0x4e,0x55,0x9,0x2d,0x31,0x39,0x30,0x31,0x2d,0x31, + 0x36,0x39,0x35,0x35,0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x2f,0x4e,0x69,0x75, + 0x65,0xa,0x4e,0x5a,0x2c,0x41,0x51,0x9,0x2d,0x33,0x36,0x35,0x32,0x2b,0x31,0x37, + 0x34,0x34,0x36,0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x2f,0x41,0x75,0x63,0x6b, + 0x6c,0x61,0x6e,0x64,0x9,0x4e,0x65,0x77,0x20,0x5a,0x65,0x61,0x6c,0x61,0x6e,0x64, + 0x20,0x74,0x69,0x6d,0x65,0xa,0x4e,0x5a,0x9,0x2d,0x34,0x33,0x35,0x37,0x2d,0x31, + 0x37,0x36,0x33,0x33,0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x2f,0x43,0x68,0x61, + 0x74,0x68,0x61,0x6d,0x9,0x43,0x68,0x61,0x74,0x68,0x61,0x6d,0x20,0x49,0x73,0x6c, + 0x61,0x6e,0x64,0x73,0xa,0x50,0x41,0x2c,0x4b,0x59,0x9,0x2b,0x30,0x38,0x35,0x38, + 0x2d,0x30,0x37,0x39,0x33,0x32,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x50, + 0x61,0x6e,0x61,0x6d,0x61,0xa,0x50,0x45,0x9,0x2d,0x31,0x32,0x30,0x33,0x2d,0x30, + 0x37,0x37,0x30,0x33,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x4c,0x69,0x6d, + 0x61,0xa,0x50,0x46,0x9,0x2d,0x31,0x37,0x33,0x32,0x2d,0x31,0x34,0x39,0x33,0x34, + 0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x2f,0x54,0x61,0x68,0x69,0x74,0x69,0x9, + 0x53,0x6f,0x63,0x69,0x65,0x74,0x79,0x20,0x49,0x73,0x6c,0x61,0x6e,0x64,0x73,0xa, + 0x50,0x46,0x9,0x2d,0x30,0x39,0x30,0x30,0x2d,0x31,0x33,0x39,0x33,0x30,0x9,0x50, + 0x61,0x63,0x69,0x66,0x69,0x63,0x2f,0x4d,0x61,0x72,0x71,0x75,0x65,0x73,0x61,0x73, + 0x9,0x4d,0x61,0x72,0x71,0x75,0x65,0x73,0x61,0x73,0x20,0x49,0x73,0x6c,0x61,0x6e, + 0x64,0x73,0xa,0x50,0x46,0x9,0x2d,0x32,0x33,0x30,0x38,0x2d,0x31,0x33,0x34,0x35, + 0x37,0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x2f,0x47,0x61,0x6d,0x62,0x69,0x65, + 0x72,0x9,0x47,0x61,0x6d,0x62,0x69,0x65,0x72,0x20,0x49,0x73,0x6c,0x61,0x6e,0x64, + 0x73,0xa,0x50,0x47,0x9,0x2d,0x30,0x39,0x33,0x30,0x2b,0x31,0x34,0x37,0x31,0x30, + 0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x2f,0x50,0x6f,0x72,0x74,0x5f,0x4d,0x6f, + 0x72,0x65,0x73,0x62,0x79,0x9,0x50,0x61,0x70,0x75,0x61,0x20,0x4e,0x65,0x77,0x20, + 0x47,0x75,0x69,0x6e,0x65,0x61,0x20,0x28,0x6d,0x6f,0x73,0x74,0x20,0x61,0x72,0x65, + 0x61,0x73,0x29,0xa,0x50,0x47,0x9,0x2d,0x30,0x36,0x31,0x33,0x2b,0x31,0x35,0x35, + 0x33,0x34,0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x2f,0x42,0x6f,0x75,0x67,0x61, + 0x69,0x6e,0x76,0x69,0x6c,0x6c,0x65,0x9,0x42,0x6f,0x75,0x67,0x61,0x69,0x6e,0x76, + 0x69,0x6c,0x6c,0x65,0xa,0x50,0x48,0x9,0x2b,0x31,0x34,0x33,0x35,0x2b,0x31,0x32, + 0x31,0x30,0x30,0x9,0x41,0x73,0x69,0x61,0x2f,0x4d,0x61,0x6e,0x69,0x6c,0x61,0xa, + 0x50,0x4b,0x9,0x2b,0x32,0x34,0x35,0x32,0x2b,0x30,0x36,0x37,0x30,0x33,0x9,0x41, + 0x73,0x69,0x61,0x2f,0x4b,0x61,0x72,0x61,0x63,0x68,0x69,0xa,0x50,0x4c,0x9,0x2b, + 0x35,0x32,0x31,0x35,0x2b,0x30,0x32,0x31,0x30,0x30,0x9,0x45,0x75,0x72,0x6f,0x70, + 0x65,0x2f,0x57,0x61,0x72,0x73,0x61,0x77,0xa,0x50,0x4d,0x9,0x2b,0x34,0x37,0x30, + 0x33,0x2d,0x30,0x35,0x36,0x32,0x30,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f, + 0x4d,0x69,0x71,0x75,0x65,0x6c,0x6f,0x6e,0xa,0x50,0x4e,0x9,0x2d,0x32,0x35,0x30, + 0x34,0x2d,0x31,0x33,0x30,0x30,0x35,0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x2f, + 0x50,0x69,0x74,0x63,0x61,0x69,0x72,0x6e,0xa,0x50,0x52,0x9,0x2b,0x31,0x38,0x32, + 0x38,0x30,0x36,0x2d,0x30,0x36,0x36,0x30,0x36,0x32,0x32,0x9,0x41,0x6d,0x65,0x72, + 0x69,0x63,0x61,0x2f,0x50,0x75,0x65,0x72,0x74,0x6f,0x5f,0x52,0x69,0x63,0x6f,0xa, + 0x50,0x53,0x9,0x2b,0x33,0x31,0x33,0x30,0x2b,0x30,0x33,0x34,0x32,0x38,0x9,0x41, + 0x73,0x69,0x61,0x2f,0x47,0x61,0x7a,0x61,0x9,0x47,0x61,0x7a,0x61,0x20,0x53,0x74, + 0x72,0x69,0x70,0xa,0x50,0x53,0x9,0x2b,0x33,0x31,0x33,0x32,0x30,0x30,0x2b,0x30, + 0x33,0x35,0x30,0x35,0x34,0x32,0x9,0x41,0x73,0x69,0x61,0x2f,0x48,0x65,0x62,0x72, + 0x6f,0x6e,0x9,0x57,0x65,0x73,0x74,0x20,0x42,0x61,0x6e,0x6b,0xa,0x50,0x54,0x9, + 0x2b,0x33,0x38,0x34,0x33,0x2d,0x30,0x30,0x39,0x30,0x38,0x9,0x45,0x75,0x72,0x6f, + 0x70,0x65,0x2f,0x4c,0x69,0x73,0x62,0x6f,0x6e,0x9,0x50,0x6f,0x72,0x74,0x75,0x67, + 0x61,0x6c,0x20,0x28,0x6d,0x61,0x69,0x6e,0x6c,0x61,0x6e,0x64,0x29,0xa,0x50,0x54, + 0x9,0x2b,0x33,0x32,0x33,0x38,0x2d,0x30,0x31,0x36,0x35,0x34,0x9,0x41,0x74,0x6c, + 0x61,0x6e,0x74,0x69,0x63,0x2f,0x4d,0x61,0x64,0x65,0x69,0x72,0x61,0x9,0x4d,0x61, + 0x64,0x65,0x69,0x72,0x61,0x20,0x49,0x73,0x6c,0x61,0x6e,0x64,0x73,0xa,0x50,0x54, + 0x9,0x2b,0x33,0x37,0x34,0x34,0x2d,0x30,0x32,0x35,0x34,0x30,0x9,0x41,0x74,0x6c, + 0x61,0x6e,0x74,0x69,0x63,0x2f,0x41,0x7a,0x6f,0x72,0x65,0x73,0x9,0x41,0x7a,0x6f, + 0x72,0x65,0x73,0xa,0x50,0x57,0x9,0x2b,0x30,0x37,0x32,0x30,0x2b,0x31,0x33,0x34, + 0x32,0x39,0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x2f,0x50,0x61,0x6c,0x61,0x75, + 0xa,0x50,0x59,0x9,0x2d,0x32,0x35,0x31,0x36,0x2d,0x30,0x35,0x37,0x34,0x30,0x9, + 0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x41,0x73,0x75,0x6e,0x63,0x69,0x6f,0x6e, + 0xa,0x51,0x41,0x2c,0x42,0x48,0x9,0x2b,0x32,0x35,0x31,0x37,0x2b,0x30,0x35,0x31, + 0x33,0x32,0x9,0x41,0x73,0x69,0x61,0x2f,0x51,0x61,0x74,0x61,0x72,0xa,0x52,0x45, + 0x2c,0x54,0x46,0x9,0x2d,0x32,0x30,0x35,0x32,0x2b,0x30,0x35,0x35,0x32,0x38,0x9, + 0x49,0x6e,0x64,0x69,0x61,0x6e,0x2f,0x52,0x65,0x75,0x6e,0x69,0x6f,0x6e,0x9,0x52, + 0xc3,0xa9,0x75,0x6e,0x69,0x6f,0x6e,0x2c,0x20,0x43,0x72,0x6f,0x7a,0x65,0x74,0x2c, + 0x20,0x53,0x63,0x61,0x74,0x74,0x65,0x72,0x65,0x64,0x20,0x49,0x73,0x6c,0x61,0x6e, + 0x64,0x73,0xa,0x52,0x4f,0x9,0x2b,0x34,0x34,0x32,0x36,0x2b,0x30,0x32,0x36,0x30, + 0x36,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x42,0x75,0x63,0x68,0x61,0x72,0x65, + 0x73,0x74,0xa,0x52,0x53,0x2c,0x42,0x41,0x2c,0x48,0x52,0x2c,0x4d,0x45,0x2c,0x4d, + 0x4b,0x2c,0x53,0x49,0x9,0x2b,0x34,0x34,0x35,0x30,0x2b,0x30,0x32,0x30,0x33,0x30, + 0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x42,0x65,0x6c,0x67,0x72,0x61,0x64,0x65, + 0xa,0x52,0x55,0x9,0x2b,0x35,0x34,0x34,0x33,0x2b,0x30,0x32,0x30,0x33,0x30,0x9, + 0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x4b,0x61,0x6c,0x69,0x6e,0x69,0x6e,0x67,0x72, + 0x61,0x64,0x9,0x4d,0x53,0x4b,0x2d,0x30,0x31,0x20,0x2d,0x20,0x4b,0x61,0x6c,0x69, + 0x6e,0x69,0x6e,0x67,0x72,0x61,0x64,0xa,0x52,0x55,0x9,0x2b,0x35,0x35,0x34,0x35, + 0x32,0x31,0x2b,0x30,0x33,0x37,0x33,0x37,0x30,0x34,0x9,0x45,0x75,0x72,0x6f,0x70, + 0x65,0x2f,0x4d,0x6f,0x73,0x63,0x6f,0x77,0x9,0x4d,0x53,0x4b,0x2b,0x30,0x30,0x20, + 0x2d,0x20,0x4d,0x6f,0x73,0x63,0x6f,0x77,0x20,0x61,0x72,0x65,0x61,0xa,0x52,0x55, + 0x9,0x2b,0x34,0x34,0x35,0x37,0x2b,0x30,0x33,0x34,0x30,0x36,0x9,0x45,0x75,0x72, + 0x6f,0x70,0x65,0x2f,0x53,0x69,0x6d,0x66,0x65,0x72,0x6f,0x70,0x6f,0x6c,0x9,0x4d, + 0x53,0x4b,0x2b,0x30,0x30,0x20,0x2d,0x20,0x43,0x72,0x69,0x6d,0x65,0x61,0xa,0x52, + 0x55,0x9,0x2b,0x34,0x38,0x34,0x34,0x2b,0x30,0x34,0x34,0x32,0x35,0x9,0x45,0x75, + 0x72,0x6f,0x70,0x65,0x2f,0x56,0x6f,0x6c,0x67,0x6f,0x67,0x72,0x61,0x64,0x9,0x4d, + 0x53,0x4b,0x2b,0x30,0x30,0x20,0x2d,0x20,0x56,0x6f,0x6c,0x67,0x6f,0x67,0x72,0x61, + 0x64,0xa,0x52,0x55,0x9,0x2b,0x35,0x38,0x33,0x36,0x2b,0x30,0x34,0x39,0x33,0x39, + 0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x4b,0x69,0x72,0x6f,0x76,0x9,0x4d,0x53, + 0x4b,0x2b,0x30,0x30,0x20,0x2d,0x20,0x4b,0x69,0x72,0x6f,0x76,0xa,0x52,0x55,0x9, + 0x2b,0x34,0x36,0x32,0x31,0x2b,0x30,0x34,0x38,0x30,0x33,0x9,0x45,0x75,0x72,0x6f, + 0x70,0x65,0x2f,0x41,0x73,0x74,0x72,0x61,0x6b,0x68,0x61,0x6e,0x9,0x4d,0x53,0x4b, + 0x2b,0x30,0x31,0x20,0x2d,0x20,0x41,0x73,0x74,0x72,0x61,0x6b,0x68,0x61,0x6e,0xa, + 0x52,0x55,0x9,0x2b,0x35,0x31,0x33,0x34,0x2b,0x30,0x34,0x36,0x30,0x32,0x9,0x45, + 0x75,0x72,0x6f,0x70,0x65,0x2f,0x53,0x61,0x72,0x61,0x74,0x6f,0x76,0x9,0x4d,0x53, + 0x4b,0x2b,0x30,0x31,0x20,0x2d,0x20,0x53,0x61,0x72,0x61,0x74,0x6f,0x76,0xa,0x52, + 0x55,0x9,0x2b,0x35,0x34,0x32,0x30,0x2b,0x30,0x34,0x38,0x32,0x34,0x9,0x45,0x75, + 0x72,0x6f,0x70,0x65,0x2f,0x55,0x6c,0x79,0x61,0x6e,0x6f,0x76,0x73,0x6b,0x9,0x4d, + 0x53,0x4b,0x2b,0x30,0x31,0x20,0x2d,0x20,0x55,0x6c,0x79,0x61,0x6e,0x6f,0x76,0x73, + 0x6b,0xa,0x52,0x55,0x9,0x2b,0x35,0x33,0x31,0x32,0x2b,0x30,0x35,0x30,0x30,0x39, + 0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x53,0x61,0x6d,0x61,0x72,0x61,0x9,0x4d, + 0x53,0x4b,0x2b,0x30,0x31,0x20,0x2d,0x20,0x53,0x61,0x6d,0x61,0x72,0x61,0x2c,0x20, + 0x55,0x64,0x6d,0x75,0x72,0x74,0x69,0x61,0xa,0x52,0x55,0x9,0x2b,0x35,0x36,0x35, + 0x31,0x2b,0x30,0x36,0x30,0x33,0x36,0x9,0x41,0x73,0x69,0x61,0x2f,0x59,0x65,0x6b, + 0x61,0x74,0x65,0x72,0x69,0x6e,0x62,0x75,0x72,0x67,0x9,0x4d,0x53,0x4b,0x2b,0x30, + 0x32,0x20,0x2d,0x20,0x55,0x72,0x61,0x6c,0x73,0xa,0x52,0x55,0x9,0x2b,0x35,0x35, + 0x30,0x30,0x2b,0x30,0x37,0x33,0x32,0x34,0x9,0x41,0x73,0x69,0x61,0x2f,0x4f,0x6d, + 0x73,0x6b,0x9,0x4d,0x53,0x4b,0x2b,0x30,0x33,0x20,0x2d,0x20,0x4f,0x6d,0x73,0x6b, + 0xa,0x52,0x55,0x9,0x2b,0x35,0x35,0x30,0x32,0x2b,0x30,0x38,0x32,0x35,0x35,0x9, + 0x41,0x73,0x69,0x61,0x2f,0x4e,0x6f,0x76,0x6f,0x73,0x69,0x62,0x69,0x72,0x73,0x6b, + 0x9,0x4d,0x53,0x4b,0x2b,0x30,0x34,0x20,0x2d,0x20,0x4e,0x6f,0x76,0x6f,0x73,0x69, + 0x62,0x69,0x72,0x73,0x6b,0xa,0x52,0x55,0x9,0x2b,0x35,0x33,0x32,0x32,0x2b,0x30, + 0x38,0x33,0x34,0x35,0x9,0x41,0x73,0x69,0x61,0x2f,0x42,0x61,0x72,0x6e,0x61,0x75, + 0x6c,0x9,0x4d,0x53,0x4b,0x2b,0x30,0x34,0x20,0x2d,0x20,0x41,0x6c,0x74,0x61,0x69, + 0xa,0x52,0x55,0x9,0x2b,0x35,0x36,0x33,0x30,0x2b,0x30,0x38,0x34,0x35,0x38,0x9, + 0x41,0x73,0x69,0x61,0x2f,0x54,0x6f,0x6d,0x73,0x6b,0x9,0x4d,0x53,0x4b,0x2b,0x30, + 0x34,0x20,0x2d,0x20,0x54,0x6f,0x6d,0x73,0x6b,0xa,0x52,0x55,0x9,0x2b,0x35,0x33, + 0x34,0x35,0x2b,0x30,0x38,0x37,0x30,0x37,0x9,0x41,0x73,0x69,0x61,0x2f,0x4e,0x6f, + 0x76,0x6f,0x6b,0x75,0x7a,0x6e,0x65,0x74,0x73,0x6b,0x9,0x4d,0x53,0x4b,0x2b,0x30, + 0x34,0x20,0x2d,0x20,0x4b,0x65,0x6d,0x65,0x72,0x6f,0x76,0x6f,0xa,0x52,0x55,0x9, + 0x2b,0x35,0x36,0x30,0x31,0x2b,0x30,0x39,0x32,0x35,0x30,0x9,0x41,0x73,0x69,0x61, + 0x2f,0x4b,0x72,0x61,0x73,0x6e,0x6f,0x79,0x61,0x72,0x73,0x6b,0x9,0x4d,0x53,0x4b, + 0x2b,0x30,0x34,0x20,0x2d,0x20,0x4b,0x72,0x61,0x73,0x6e,0x6f,0x79,0x61,0x72,0x73, + 0x6b,0x20,0x61,0x72,0x65,0x61,0xa,0x52,0x55,0x9,0x2b,0x35,0x32,0x31,0x36,0x2b, + 0x31,0x30,0x34,0x32,0x30,0x9,0x41,0x73,0x69,0x61,0x2f,0x49,0x72,0x6b,0x75,0x74, + 0x73,0x6b,0x9,0x4d,0x53,0x4b,0x2b,0x30,0x35,0x20,0x2d,0x20,0x49,0x72,0x6b,0x75, + 0x74,0x73,0x6b,0x2c,0x20,0x42,0x75,0x72,0x79,0x61,0x74,0x69,0x61,0xa,0x52,0x55, + 0x9,0x2b,0x35,0x32,0x30,0x33,0x2b,0x31,0x31,0x33,0x32,0x38,0x9,0x41,0x73,0x69, + 0x61,0x2f,0x43,0x68,0x69,0x74,0x61,0x9,0x4d,0x53,0x4b,0x2b,0x30,0x36,0x20,0x2d, + 0x20,0x5a,0x61,0x62,0x61,0x79,0x6b,0x61,0x6c,0x73,0x6b,0x79,0xa,0x52,0x55,0x9, + 0x2b,0x36,0x32,0x30,0x30,0x2b,0x31,0x32,0x39,0x34,0x30,0x9,0x41,0x73,0x69,0x61, + 0x2f,0x59,0x61,0x6b,0x75,0x74,0x73,0x6b,0x9,0x4d,0x53,0x4b,0x2b,0x30,0x36,0x20, + 0x2d,0x20,0x4c,0x65,0x6e,0x61,0x20,0x52,0x69,0x76,0x65,0x72,0xa,0x52,0x55,0x9, + 0x2b,0x36,0x32,0x33,0x39,0x32,0x33,0x2b,0x31,0x33,0x35,0x33,0x33,0x31,0x34,0x9, + 0x41,0x73,0x69,0x61,0x2f,0x4b,0x68,0x61,0x6e,0x64,0x79,0x67,0x61,0x9,0x4d,0x53, + 0x4b,0x2b,0x30,0x36,0x20,0x2d,0x20,0x54,0x6f,0x6d,0x70,0x6f,0x6e,0x73,0x6b,0x79, + 0x2c,0x20,0x55,0x73,0x74,0x2d,0x4d,0x61,0x79,0x73,0x6b,0x79,0xa,0x52,0x55,0x9, + 0x2b,0x34,0x33,0x31,0x30,0x2b,0x31,0x33,0x31,0x35,0x36,0x9,0x41,0x73,0x69,0x61, + 0x2f,0x56,0x6c,0x61,0x64,0x69,0x76,0x6f,0x73,0x74,0x6f,0x6b,0x9,0x4d,0x53,0x4b, + 0x2b,0x30,0x37,0x20,0x2d,0x20,0x41,0x6d,0x75,0x72,0x20,0x52,0x69,0x76,0x65,0x72, + 0xa,0x52,0x55,0x9,0x2b,0x36,0x34,0x33,0x33,0x33,0x37,0x2b,0x31,0x34,0x33,0x31, + 0x33,0x33,0x36,0x9,0x41,0x73,0x69,0x61,0x2f,0x55,0x73,0x74,0x2d,0x4e,0x65,0x72, + 0x61,0x9,0x4d,0x53,0x4b,0x2b,0x30,0x37,0x20,0x2d,0x20,0x4f,0x79,0x6d,0x79,0x61, + 0x6b,0x6f,0x6e,0x73,0x6b,0x79,0xa,0x52,0x55,0x9,0x2b,0x35,0x39,0x33,0x34,0x2b, + 0x31,0x35,0x30,0x34,0x38,0x9,0x41,0x73,0x69,0x61,0x2f,0x4d,0x61,0x67,0x61,0x64, + 0x61,0x6e,0x9,0x4d,0x53,0x4b,0x2b,0x30,0x38,0x20,0x2d,0x20,0x4d,0x61,0x67,0x61, + 0x64,0x61,0x6e,0xa,0x52,0x55,0x9,0x2b,0x34,0x36,0x35,0x38,0x2b,0x31,0x34,0x32, + 0x34,0x32,0x9,0x41,0x73,0x69,0x61,0x2f,0x53,0x61,0x6b,0x68,0x61,0x6c,0x69,0x6e, + 0x9,0x4d,0x53,0x4b,0x2b,0x30,0x38,0x20,0x2d,0x20,0x53,0x61,0x6b,0x68,0x61,0x6c, + 0x69,0x6e,0x20,0x49,0x73,0x6c,0x61,0x6e,0x64,0xa,0x52,0x55,0x9,0x2b,0x36,0x37, + 0x32,0x38,0x2b,0x31,0x35,0x33,0x34,0x33,0x9,0x41,0x73,0x69,0x61,0x2f,0x53,0x72, + 0x65,0x64,0x6e,0x65,0x6b,0x6f,0x6c,0x79,0x6d,0x73,0x6b,0x9,0x4d,0x53,0x4b,0x2b, + 0x30,0x38,0x20,0x2d,0x20,0x53,0x61,0x6b,0x68,0x61,0x20,0x28,0x45,0x29,0x3b,0x20, + 0x4e,0x6f,0x72,0x74,0x68,0x20,0x4b,0x75,0x72,0x69,0x6c,0x20,0x49,0x73,0xa,0x52, + 0x55,0x9,0x2b,0x35,0x33,0x30,0x31,0x2b,0x31,0x35,0x38,0x33,0x39,0x9,0x41,0x73, + 0x69,0x61,0x2f,0x4b,0x61,0x6d,0x63,0x68,0x61,0x74,0x6b,0x61,0x9,0x4d,0x53,0x4b, + 0x2b,0x30,0x39,0x20,0x2d,0x20,0x4b,0x61,0x6d,0x63,0x68,0x61,0x74,0x6b,0x61,0xa, + 0x52,0x55,0x9,0x2b,0x36,0x34,0x34,0x35,0x2b,0x31,0x37,0x37,0x32,0x39,0x9,0x41, + 0x73,0x69,0x61,0x2f,0x41,0x6e,0x61,0x64,0x79,0x72,0x9,0x4d,0x53,0x4b,0x2b,0x30, + 0x39,0x20,0x2d,0x20,0x42,0x65,0x72,0x69,0x6e,0x67,0x20,0x53,0x65,0x61,0xa,0x53, + 0x41,0x2c,0x4b,0x57,0x2c,0x59,0x45,0x9,0x2b,0x32,0x34,0x33,0x38,0x2b,0x30,0x34, + 0x36,0x34,0x33,0x9,0x41,0x73,0x69,0x61,0x2f,0x52,0x69,0x79,0x61,0x64,0x68,0xa, + 0x53,0x42,0x9,0x2d,0x30,0x39,0x33,0x32,0x2b,0x31,0x36,0x30,0x31,0x32,0x9,0x50, + 0x61,0x63,0x69,0x66,0x69,0x63,0x2f,0x47,0x75,0x61,0x64,0x61,0x6c,0x63,0x61,0x6e, + 0x61,0x6c,0xa,0x53,0x43,0x9,0x2d,0x30,0x34,0x34,0x30,0x2b,0x30,0x35,0x35,0x32, + 0x38,0x9,0x49,0x6e,0x64,0x69,0x61,0x6e,0x2f,0x4d,0x61,0x68,0x65,0xa,0x53,0x44, + 0x9,0x2b,0x31,0x35,0x33,0x36,0x2b,0x30,0x33,0x32,0x33,0x32,0x9,0x41,0x66,0x72, + 0x69,0x63,0x61,0x2f,0x4b,0x68,0x61,0x72,0x74,0x6f,0x75,0x6d,0xa,0x53,0x45,0x9, + 0x2b,0x35,0x39,0x32,0x30,0x2b,0x30,0x31,0x38,0x30,0x33,0x9,0x45,0x75,0x72,0x6f, + 0x70,0x65,0x2f,0x53,0x74,0x6f,0x63,0x6b,0x68,0x6f,0x6c,0x6d,0xa,0x53,0x47,0x9, + 0x2b,0x30,0x31,0x31,0x37,0x2b,0x31,0x30,0x33,0x35,0x31,0x9,0x41,0x73,0x69,0x61, + 0x2f,0x53,0x69,0x6e,0x67,0x61,0x70,0x6f,0x72,0x65,0xa,0x53,0x52,0x9,0x2b,0x30, + 0x35,0x35,0x30,0x2d,0x30,0x35,0x35,0x31,0x30,0x9,0x41,0x6d,0x65,0x72,0x69,0x63, + 0x61,0x2f,0x50,0x61,0x72,0x61,0x6d,0x61,0x72,0x69,0x62,0x6f,0xa,0x53,0x53,0x9, + 0x2b,0x30,0x34,0x35,0x31,0x2b,0x30,0x33,0x31,0x33,0x37,0x9,0x41,0x66,0x72,0x69, + 0x63,0x61,0x2f,0x4a,0x75,0x62,0x61,0xa,0x53,0x56,0x9,0x2b,0x31,0x33,0x34,0x32, + 0x2d,0x30,0x38,0x39,0x31,0x32,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x45, + 0x6c,0x5f,0x53,0x61,0x6c,0x76,0x61,0x64,0x6f,0x72,0xa,0x53,0x59,0x9,0x2b,0x33, + 0x33,0x33,0x30,0x2b,0x30,0x33,0x36,0x31,0x38,0x9,0x41,0x73,0x69,0x61,0x2f,0x44, + 0x61,0x6d,0x61,0x73,0x63,0x75,0x73,0xa,0x54,0x43,0x9,0x2b,0x32,0x31,0x32,0x38, + 0x2d,0x30,0x37,0x31,0x30,0x38,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x47, + 0x72,0x61,0x6e,0x64,0x5f,0x54,0x75,0x72,0x6b,0xa,0x54,0x44,0x9,0x2b,0x31,0x32, + 0x30,0x37,0x2b,0x30,0x31,0x35,0x30,0x33,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f, + 0x4e,0x64,0x6a,0x61,0x6d,0x65,0x6e,0x61,0xa,0x54,0x46,0x9,0x2d,0x34,0x39,0x32, + 0x31,0x31,0x30,0x2b,0x30,0x37,0x30,0x31,0x33,0x30,0x33,0x9,0x49,0x6e,0x64,0x69, + 0x61,0x6e,0x2f,0x4b,0x65,0x72,0x67,0x75,0x65,0x6c,0x65,0x6e,0x9,0x4b,0x65,0x72, + 0x67,0x75,0x65,0x6c,0x65,0x6e,0x2c,0x20,0x53,0x74,0x20,0x50,0x61,0x75,0x6c,0x20, + 0x49,0x73,0x6c,0x61,0x6e,0x64,0x2c,0x20,0x41,0x6d,0x73,0x74,0x65,0x72,0x64,0x61, + 0x6d,0x20,0x49,0x73,0x6c,0x61,0x6e,0x64,0xa,0x54,0x48,0x2c,0x4b,0x48,0x2c,0x4c, + 0x41,0x2c,0x56,0x4e,0x9,0x2b,0x31,0x33,0x34,0x35,0x2b,0x31,0x30,0x30,0x33,0x31, + 0x9,0x41,0x73,0x69,0x61,0x2f,0x42,0x61,0x6e,0x67,0x6b,0x6f,0x6b,0x9,0x49,0x6e, + 0x64,0x6f,0x63,0x68,0x69,0x6e,0x61,0x20,0x28,0x6d,0x6f,0x73,0x74,0x20,0x61,0x72, + 0x65,0x61,0x73,0x29,0xa,0x54,0x4a,0x9,0x2b,0x33,0x38,0x33,0x35,0x2b,0x30,0x36, + 0x38,0x34,0x38,0x9,0x41,0x73,0x69,0x61,0x2f,0x44,0x75,0x73,0x68,0x61,0x6e,0x62, + 0x65,0xa,0x54,0x4b,0x9,0x2d,0x30,0x39,0x32,0x32,0x2d,0x31,0x37,0x31,0x31,0x34, + 0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x2f,0x46,0x61,0x6b,0x61,0x6f,0x66,0x6f, + 0xa,0x54,0x4c,0x9,0x2d,0x30,0x38,0x33,0x33,0x2b,0x31,0x32,0x35,0x33,0x35,0x9, + 0x41,0x73,0x69,0x61,0x2f,0x44,0x69,0x6c,0x69,0xa,0x54,0x4d,0x9,0x2b,0x33,0x37, + 0x35,0x37,0x2b,0x30,0x35,0x38,0x32,0x33,0x9,0x41,0x73,0x69,0x61,0x2f,0x41,0x73, + 0x68,0x67,0x61,0x62,0x61,0x74,0xa,0x54,0x4e,0x9,0x2b,0x33,0x36,0x34,0x38,0x2b, + 0x30,0x31,0x30,0x31,0x31,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f,0x54,0x75,0x6e, + 0x69,0x73,0xa,0x54,0x4f,0x9,0x2d,0x32,0x31,0x31,0x30,0x2d,0x31,0x37,0x35,0x31, + 0x30,0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x2f,0x54,0x6f,0x6e,0x67,0x61,0x74, + 0x61,0x70,0x75,0xa,0x54,0x52,0x9,0x2b,0x34,0x31,0x30,0x31,0x2b,0x30,0x32,0x38, + 0x35,0x38,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x49,0x73,0x74,0x61,0x6e,0x62, + 0x75,0x6c,0xa,0x54,0x54,0x2c,0x41,0x47,0x2c,0x41,0x49,0x2c,0x42,0x4c,0x2c,0x44, + 0x4d,0x2c,0x47,0x44,0x2c,0x47,0x50,0x2c,0x4b,0x4e,0x2c,0x4c,0x43,0x2c,0x4d,0x46, + 0x2c,0x4d,0x53,0x2c,0x56,0x43,0x2c,0x56,0x47,0x2c,0x56,0x49,0x9,0x2b,0x31,0x30, + 0x33,0x39,0x2d,0x30,0x36,0x31,0x33,0x31,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61, + 0x2f,0x50,0x6f,0x72,0x74,0x5f,0x6f,0x66,0x5f,0x53,0x70,0x61,0x69,0x6e,0xa,0x54, + 0x56,0x9,0x2d,0x30,0x38,0x33,0x31,0x2b,0x31,0x37,0x39,0x31,0x33,0x9,0x50,0x61, + 0x63,0x69,0x66,0x69,0x63,0x2f,0x46,0x75,0x6e,0x61,0x66,0x75,0x74,0x69,0xa,0x54, + 0x57,0x9,0x2b,0x32,0x35,0x30,0x33,0x2b,0x31,0x32,0x31,0x33,0x30,0x9,0x41,0x73, + 0x69,0x61,0x2f,0x54,0x61,0x69,0x70,0x65,0x69,0xa,0x55,0x41,0x9,0x2b,0x35,0x30, + 0x32,0x36,0x2b,0x30,0x33,0x30,0x33,0x31,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f, + 0x4b,0x69,0x65,0x76,0x9,0x55,0x6b,0x72,0x61,0x69,0x6e,0x65,0x20,0x28,0x6d,0x6f, + 0x73,0x74,0x20,0x61,0x72,0x65,0x61,0x73,0x29,0xa,0x55,0x41,0x9,0x2b,0x34,0x38, + 0x33,0x37,0x2b,0x30,0x32,0x32,0x31,0x38,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f, + 0x55,0x7a,0x68,0x67,0x6f,0x72,0x6f,0x64,0x9,0x52,0x75,0x74,0x68,0x65,0x6e,0x69, + 0x61,0xa,0x55,0x41,0x9,0x2b,0x34,0x37,0x35,0x30,0x2b,0x30,0x33,0x35,0x31,0x30, + 0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x5a,0x61,0x70,0x6f,0x72,0x6f,0x7a,0x68, + 0x79,0x65,0x9,0x5a,0x61,0x70,0x6f,0x72,0x6f,0x7a,0x68,0x27,0x79,0x65,0x2f,0x5a, + 0x61,0x70,0x6f,0x72,0x69,0x7a,0x68,0x69,0x61,0x3b,0x20,0x4c,0x75,0x67,0x61,0x6e, + 0x73,0x6b,0x2f,0x4c,0x75,0x68,0x61,0x6e,0x73,0x6b,0x20,0x28,0x65,0x61,0x73,0x74, + 0x29,0xa,0x55,0x4d,0x9,0x2b,0x31,0x39,0x31,0x37,0x2b,0x31,0x36,0x36,0x33,0x37, + 0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x2f,0x57,0x61,0x6b,0x65,0x9,0x57,0x61, + 0x6b,0x65,0x20,0x49,0x73,0x6c,0x61,0x6e,0x64,0xa,0x55,0x53,0x9,0x2b,0x34,0x30, + 0x34,0x32,0x35,0x31,0x2d,0x30,0x37,0x34,0x30,0x30,0x32,0x33,0x9,0x41,0x6d,0x65, + 0x72,0x69,0x63,0x61,0x2f,0x4e,0x65,0x77,0x5f,0x59,0x6f,0x72,0x6b,0x9,0x45,0x61, + 0x73,0x74,0x65,0x72,0x6e,0x20,0x28,0x6d,0x6f,0x73,0x74,0x20,0x61,0x72,0x65,0x61, + 0x73,0x29,0xa,0x55,0x53,0x9,0x2b,0x34,0x32,0x31,0x39,0x35,0x33,0x2d,0x30,0x38, + 0x33,0x30,0x32,0x34,0x35,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x44,0x65, + 0x74,0x72,0x6f,0x69,0x74,0x9,0x45,0x61,0x73,0x74,0x65,0x72,0x6e,0x20,0x2d,0x20, + 0x4d,0x49,0x20,0x28,0x6d,0x6f,0x73,0x74,0x20,0x61,0x72,0x65,0x61,0x73,0x29,0xa, + 0x55,0x53,0x9,0x2b,0x33,0x38,0x31,0x35,0x31,0x35,0x2d,0x30,0x38,0x35,0x34,0x35, + 0x33,0x34,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x4b,0x65,0x6e,0x74,0x75, + 0x63,0x6b,0x79,0x2f,0x4c,0x6f,0x75,0x69,0x73,0x76,0x69,0x6c,0x6c,0x65,0x9,0x45, + 0x61,0x73,0x74,0x65,0x72,0x6e,0x20,0x2d,0x20,0x4b,0x59,0x20,0x28,0x4c,0x6f,0x75, + 0x69,0x73,0x76,0x69,0x6c,0x6c,0x65,0x20,0x61,0x72,0x65,0x61,0x29,0xa,0x55,0x53, + 0x9,0x2b,0x33,0x36,0x34,0x39,0x34,0x37,0x2d,0x30,0x38,0x34,0x35,0x30,0x35,0x37, + 0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x4b,0x65,0x6e,0x74,0x75,0x63,0x6b, + 0x79,0x2f,0x4d,0x6f,0x6e,0x74,0x69,0x63,0x65,0x6c,0x6c,0x6f,0x9,0x45,0x61,0x73, + 0x74,0x65,0x72,0x6e,0x20,0x2d,0x20,0x4b,0x59,0x20,0x28,0x57,0x61,0x79,0x6e,0x65, + 0x29,0xa,0x55,0x53,0x9,0x2b,0x33,0x39,0x34,0x36,0x30,0x36,0x2d,0x30,0x38,0x36, + 0x30,0x39,0x32,0x39,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x49,0x6e,0x64, + 0x69,0x61,0x6e,0x61,0x2f,0x49,0x6e,0x64,0x69,0x61,0x6e,0x61,0x70,0x6f,0x6c,0x69, + 0x73,0x9,0x45,0x61,0x73,0x74,0x65,0x72,0x6e,0x20,0x2d,0x20,0x49,0x4e,0x20,0x28, 0x6d,0x6f,0x73,0x74,0x20,0x61,0x72,0x65,0x61,0x73,0x29,0xa,0x55,0x53,0x9,0x2b, - 0x33,0x38,0x31,0x35,0x31,0x35,0x2d,0x30,0x38,0x35,0x34,0x35,0x33,0x34,0x9,0x41, - 0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x4b,0x65,0x6e,0x74,0x75,0x63,0x6b,0x79,0x2f, - 0x4c,0x6f,0x75,0x69,0x73,0x76,0x69,0x6c,0x6c,0x65,0x9,0x45,0x61,0x73,0x74,0x65, - 0x72,0x6e,0x20,0x2d,0x20,0x4b,0x59,0x20,0x28,0x4c,0x6f,0x75,0x69,0x73,0x76,0x69, - 0x6c,0x6c,0x65,0x20,0x61,0x72,0x65,0x61,0x29,0xa,0x55,0x53,0x9,0x2b,0x33,0x36, - 0x34,0x39,0x34,0x37,0x2d,0x30,0x38,0x34,0x35,0x30,0x35,0x37,0x9,0x41,0x6d,0x65, - 0x72,0x69,0x63,0x61,0x2f,0x4b,0x65,0x6e,0x74,0x75,0x63,0x6b,0x79,0x2f,0x4d,0x6f, - 0x6e,0x74,0x69,0x63,0x65,0x6c,0x6c,0x6f,0x9,0x45,0x61,0x73,0x74,0x65,0x72,0x6e, - 0x20,0x2d,0x20,0x4b,0x59,0x20,0x28,0x57,0x61,0x79,0x6e,0x65,0x29,0xa,0x55,0x53, - 0x9,0x2b,0x33,0x39,0x34,0x36,0x30,0x36,0x2d,0x30,0x38,0x36,0x30,0x39,0x32,0x39, - 0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x49,0x6e,0x64,0x69,0x61,0x6e,0x61, - 0x2f,0x49,0x6e,0x64,0x69,0x61,0x6e,0x61,0x70,0x6f,0x6c,0x69,0x73,0x9,0x45,0x61, - 0x73,0x74,0x65,0x72,0x6e,0x20,0x2d,0x20,0x49,0x4e,0x20,0x28,0x6d,0x6f,0x73,0x74, - 0x20,0x61,0x72,0x65,0x61,0x73,0x29,0xa,0x55,0x53,0x9,0x2b,0x33,0x38,0x34,0x30, - 0x33,0x38,0x2d,0x30,0x38,0x37,0x33,0x31,0x34,0x33,0x9,0x41,0x6d,0x65,0x72,0x69, - 0x63,0x61,0x2f,0x49,0x6e,0x64,0x69,0x61,0x6e,0x61,0x2f,0x56,0x69,0x6e,0x63,0x65, - 0x6e,0x6e,0x65,0x73,0x9,0x45,0x61,0x73,0x74,0x65,0x72,0x6e,0x20,0x2d,0x20,0x49, - 0x4e,0x20,0x28,0x44,0x61,0x2c,0x20,0x44,0x75,0x2c,0x20,0x4b,0x2c,0x20,0x4d,0x6e, - 0x29,0xa,0x55,0x53,0x9,0x2b,0x34,0x31,0x30,0x33,0x30,0x35,0x2d,0x30,0x38,0x36, - 0x33,0x36,0x31,0x31,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x49,0x6e,0x64, - 0x69,0x61,0x6e,0x61,0x2f,0x57,0x69,0x6e,0x61,0x6d,0x61,0x63,0x9,0x45,0x61,0x73, - 0x74,0x65,0x72,0x6e,0x20,0x2d,0x20,0x49,0x4e,0x20,0x28,0x50,0x75,0x6c,0x61,0x73, - 0x6b,0x69,0x29,0xa,0x55,0x53,0x9,0x2b,0x33,0x38,0x32,0x32,0x33,0x32,0x2d,0x30, - 0x38,0x36,0x32,0x30,0x34,0x31,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x49, - 0x6e,0x64,0x69,0x61,0x6e,0x61,0x2f,0x4d,0x61,0x72,0x65,0x6e,0x67,0x6f,0x9,0x45, - 0x61,0x73,0x74,0x65,0x72,0x6e,0x20,0x2d,0x20,0x49,0x4e,0x20,0x28,0x43,0x72,0x61, - 0x77,0x66,0x6f,0x72,0x64,0x29,0xa,0x55,0x53,0x9,0x2b,0x33,0x38,0x32,0x39,0x33, - 0x31,0x2d,0x30,0x38,0x37,0x31,0x36,0x34,0x33,0x9,0x41,0x6d,0x65,0x72,0x69,0x63, - 0x61,0x2f,0x49,0x6e,0x64,0x69,0x61,0x6e,0x61,0x2f,0x50,0x65,0x74,0x65,0x72,0x73, - 0x62,0x75,0x72,0x67,0x9,0x45,0x61,0x73,0x74,0x65,0x72,0x6e,0x20,0x2d,0x20,0x49, - 0x4e,0x20,0x28,0x50,0x69,0x6b,0x65,0x29,0xa,0x55,0x53,0x9,0x2b,0x33,0x38,0x34, - 0x34,0x35,0x32,0x2d,0x30,0x38,0x35,0x30,0x34,0x30,0x32,0x9,0x41,0x6d,0x65,0x72, - 0x69,0x63,0x61,0x2f,0x49,0x6e,0x64,0x69,0x61,0x6e,0x61,0x2f,0x56,0x65,0x76,0x61, - 0x79,0x9,0x45,0x61,0x73,0x74,0x65,0x72,0x6e,0x20,0x2d,0x20,0x49,0x4e,0x20,0x28, - 0x53,0x77,0x69,0x74,0x7a,0x65,0x72,0x6c,0x61,0x6e,0x64,0x29,0xa,0x55,0x53,0x9, - 0x2b,0x34,0x31,0x35,0x31,0x30,0x30,0x2d,0x30,0x38,0x37,0x33,0x39,0x30,0x30,0x9, - 0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x43,0x68,0x69,0x63,0x61,0x67,0x6f,0x9, - 0x43,0x65,0x6e,0x74,0x72,0x61,0x6c,0x20,0x28,0x6d,0x6f,0x73,0x74,0x20,0x61,0x72, - 0x65,0x61,0x73,0x29,0xa,0x55,0x53,0x9,0x2b,0x33,0x37,0x35,0x37,0x31,0x31,0x2d, - 0x30,0x38,0x36,0x34,0x35,0x34,0x31,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f, - 0x49,0x6e,0x64,0x69,0x61,0x6e,0x61,0x2f,0x54,0x65,0x6c,0x6c,0x5f,0x43,0x69,0x74, - 0x79,0x9,0x43,0x65,0x6e,0x74,0x72,0x61,0x6c,0x20,0x2d,0x20,0x49,0x4e,0x20,0x28, - 0x50,0x65,0x72,0x72,0x79,0x29,0xa,0x55,0x53,0x9,0x2b,0x34,0x31,0x31,0x37,0x34, - 0x35,0x2d,0x30,0x38,0x36,0x33,0x37,0x33,0x30,0x9,0x41,0x6d,0x65,0x72,0x69,0x63, - 0x61,0x2f,0x49,0x6e,0x64,0x69,0x61,0x6e,0x61,0x2f,0x4b,0x6e,0x6f,0x78,0x9,0x43, - 0x65,0x6e,0x74,0x72,0x61,0x6c,0x20,0x2d,0x20,0x49,0x4e,0x20,0x28,0x53,0x74,0x61, - 0x72,0x6b,0x65,0x29,0xa,0x55,0x53,0x9,0x2b,0x34,0x35,0x30,0x36,0x32,0x38,0x2d, - 0x30,0x38,0x37,0x33,0x36,0x35,0x31,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f, - 0x4d,0x65,0x6e,0x6f,0x6d,0x69,0x6e,0x65,0x65,0x9,0x43,0x65,0x6e,0x74,0x72,0x61, - 0x6c,0x20,0x2d,0x20,0x4d,0x49,0x20,0x28,0x57,0x69,0x73,0x63,0x6f,0x6e,0x73,0x69, - 0x6e,0x20,0x62,0x6f,0x72,0x64,0x65,0x72,0x29,0xa,0x55,0x53,0x9,0x2b,0x34,0x37, - 0x30,0x36,0x35,0x39,0x2d,0x31,0x30,0x31,0x31,0x37,0x35,0x37,0x9,0x41,0x6d,0x65, - 0x72,0x69,0x63,0x61,0x2f,0x4e,0x6f,0x72,0x74,0x68,0x5f,0x44,0x61,0x6b,0x6f,0x74, - 0x61,0x2f,0x43,0x65,0x6e,0x74,0x65,0x72,0x9,0x43,0x65,0x6e,0x74,0x72,0x61,0x6c, - 0x20,0x2d,0x20,0x4e,0x44,0x20,0x28,0x4f,0x6c,0x69,0x76,0x65,0x72,0x29,0xa,0x55, - 0x53,0x9,0x2b,0x34,0x36,0x35,0x30,0x34,0x32,0x2d,0x31,0x30,0x31,0x32,0x34,0x33, - 0x39,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x4e,0x6f,0x72,0x74,0x68,0x5f, - 0x44,0x61,0x6b,0x6f,0x74,0x61,0x2f,0x4e,0x65,0x77,0x5f,0x53,0x61,0x6c,0x65,0x6d, - 0x9,0x43,0x65,0x6e,0x74,0x72,0x61,0x6c,0x20,0x2d,0x20,0x4e,0x44,0x20,0x28,0x4d, - 0x6f,0x72,0x74,0x6f,0x6e,0x20,0x72,0x75,0x72,0x61,0x6c,0x29,0xa,0x55,0x53,0x9, - 0x2b,0x34,0x37,0x31,0x35,0x35,0x31,0x2d,0x31,0x30,0x31,0x34,0x36,0x34,0x30,0x9, - 0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x4e,0x6f,0x72,0x74,0x68,0x5f,0x44,0x61, - 0x6b,0x6f,0x74,0x61,0x2f,0x42,0x65,0x75,0x6c,0x61,0x68,0x9,0x43,0x65,0x6e,0x74, - 0x72,0x61,0x6c,0x20,0x2d,0x20,0x4e,0x44,0x20,0x28,0x4d,0x65,0x72,0x63,0x65,0x72, - 0x29,0xa,0x55,0x53,0x9,0x2b,0x33,0x39,0x34,0x34,0x32,0x31,0x2d,0x31,0x30,0x34, - 0x35,0x39,0x30,0x33,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x44,0x65,0x6e, - 0x76,0x65,0x72,0x9,0x4d,0x6f,0x75,0x6e,0x74,0x61,0x69,0x6e,0x20,0x28,0x6d,0x6f, - 0x73,0x74,0x20,0x61,0x72,0x65,0x61,0x73,0x29,0xa,0x55,0x53,0x9,0x2b,0x34,0x33, - 0x33,0x36,0x34,0x39,0x2d,0x31,0x31,0x36,0x31,0x32,0x30,0x39,0x9,0x41,0x6d,0x65, - 0x72,0x69,0x63,0x61,0x2f,0x42,0x6f,0x69,0x73,0x65,0x9,0x4d,0x6f,0x75,0x6e,0x74, - 0x61,0x69,0x6e,0x20,0x2d,0x20,0x49,0x44,0x20,0x28,0x73,0x6f,0x75,0x74,0x68,0x29, - 0x3b,0x20,0x4f,0x52,0x20,0x28,0x65,0x61,0x73,0x74,0x29,0xa,0x55,0x53,0x9,0x2b, - 0x33,0x33,0x32,0x36,0x35,0x34,0x2d,0x31,0x31,0x32,0x30,0x34,0x32,0x34,0x9,0x41, - 0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x50,0x68,0x6f,0x65,0x6e,0x69,0x78,0x9,0x4d, - 0x53,0x54,0x20,0x2d,0x20,0x41,0x72,0x69,0x7a,0x6f,0x6e,0x61,0x20,0x28,0x65,0x78, - 0x63,0x65,0x70,0x74,0x20,0x4e,0x61,0x76,0x61,0x6a,0x6f,0x29,0xa,0x55,0x53,0x9, - 0x2b,0x33,0x34,0x30,0x33,0x30,0x38,0x2d,0x31,0x31,0x38,0x31,0x34,0x33,0x34,0x9, - 0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x4c,0x6f,0x73,0x5f,0x41,0x6e,0x67,0x65, - 0x6c,0x65,0x73,0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63,0xa,0x55,0x53,0x9,0x2b, - 0x36,0x31,0x31,0x33,0x30,0x35,0x2d,0x31,0x34,0x39,0x35,0x34,0x30,0x31,0x9,0x41, - 0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x41,0x6e,0x63,0x68,0x6f,0x72,0x61,0x67,0x65, - 0x9,0x41,0x6c,0x61,0x73,0x6b,0x61,0x20,0x28,0x6d,0x6f,0x73,0x74,0x20,0x61,0x72, - 0x65,0x61,0x73,0x29,0xa,0x55,0x53,0x9,0x2b,0x35,0x38,0x31,0x38,0x30,0x37,0x2d, - 0x31,0x33,0x34,0x32,0x35,0x31,0x31,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f, - 0x4a,0x75,0x6e,0x65,0x61,0x75,0x9,0x41,0x6c,0x61,0x73,0x6b,0x61,0x20,0x2d,0x20, - 0x4a,0x75,0x6e,0x65,0x61,0x75,0x20,0x61,0x72,0x65,0x61,0xa,0x55,0x53,0x9,0x2b, - 0x35,0x37,0x31,0x30,0x33,0x35,0x2d,0x31,0x33,0x35,0x31,0x38,0x30,0x37,0x9,0x41, - 0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x53,0x69,0x74,0x6b,0x61,0x9,0x41,0x6c,0x61, - 0x73,0x6b,0x61,0x20,0x2d,0x20,0x53,0x69,0x74,0x6b,0x61,0x20,0x61,0x72,0x65,0x61, - 0xa,0x55,0x53,0x9,0x2b,0x35,0x35,0x30,0x37,0x33,0x37,0x2d,0x31,0x33,0x31,0x33, - 0x34,0x33,0x35,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x4d,0x65,0x74,0x6c, - 0x61,0x6b,0x61,0x74,0x6c,0x61,0x9,0x41,0x6c,0x61,0x73,0x6b,0x61,0x20,0x2d,0x20, - 0x41,0x6e,0x6e,0x65,0x74,0x74,0x65,0x20,0x49,0x73,0x6c,0x61,0x6e,0x64,0xa,0x55, - 0x53,0x9,0x2b,0x35,0x39,0x33,0x32,0x34,0x39,0x2d,0x31,0x33,0x39,0x34,0x33,0x33, - 0x38,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x59,0x61,0x6b,0x75,0x74,0x61, - 0x74,0x9,0x41,0x6c,0x61,0x73,0x6b,0x61,0x20,0x2d,0x20,0x59,0x61,0x6b,0x75,0x74, - 0x61,0x74,0xa,0x55,0x53,0x9,0x2b,0x36,0x34,0x33,0x30,0x30,0x34,0x2d,0x31,0x36, - 0x35,0x32,0x34,0x32,0x33,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x4e,0x6f, - 0x6d,0x65,0x9,0x41,0x6c,0x61,0x73,0x6b,0x61,0x20,0x28,0x77,0x65,0x73,0x74,0x29, - 0xa,0x55,0x53,0x9,0x2b,0x35,0x31,0x35,0x32,0x34,0x38,0x2d,0x31,0x37,0x36,0x33, - 0x39,0x32,0x39,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x41,0x64,0x61,0x6b, - 0x9,0x41,0x6c,0x65,0x75,0x74,0x69,0x61,0x6e,0x20,0x49,0x73,0x6c,0x61,0x6e,0x64, - 0x73,0xa,0x55,0x53,0x2c,0x55,0x4d,0x9,0x2b,0x32,0x31,0x31,0x38,0x32,0x35,0x2d, - 0x31,0x35,0x37,0x35,0x31,0x33,0x30,0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x2f, - 0x48,0x6f,0x6e,0x6f,0x6c,0x75,0x6c,0x75,0x9,0x48,0x61,0x77,0x61,0x69,0x69,0xa, - 0x55,0x59,0x9,0x2d,0x33,0x34,0x35,0x33,0x2d,0x30,0x35,0x36,0x31,0x31,0x9,0x41, - 0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x4d,0x6f,0x6e,0x74,0x65,0x76,0x69,0x64,0x65, - 0x6f,0xa,0x55,0x5a,0x9,0x2b,0x33,0x39,0x34,0x30,0x2b,0x30,0x36,0x36,0x34,0x38, - 0x9,0x41,0x73,0x69,0x61,0x2f,0x53,0x61,0x6d,0x61,0x72,0x6b,0x61,0x6e,0x64,0x9, - 0x55,0x7a,0x62,0x65,0x6b,0x69,0x73,0x74,0x61,0x6e,0x20,0x28,0x77,0x65,0x73,0x74, - 0x29,0xa,0x55,0x5a,0x9,0x2b,0x34,0x31,0x32,0x30,0x2b,0x30,0x36,0x39,0x31,0x38, - 0x9,0x41,0x73,0x69,0x61,0x2f,0x54,0x61,0x73,0x68,0x6b,0x65,0x6e,0x74,0x9,0x55, - 0x7a,0x62,0x65,0x6b,0x69,0x73,0x74,0x61,0x6e,0x20,0x28,0x65,0x61,0x73,0x74,0x29, - 0xa,0x56,0x45,0x9,0x2b,0x31,0x30,0x33,0x30,0x2d,0x30,0x36,0x36,0x35,0x36,0x9, - 0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x43,0x61,0x72,0x61,0x63,0x61,0x73,0xa, - 0x56,0x4e,0x9,0x2b,0x31,0x30,0x34,0x35,0x2b,0x31,0x30,0x36,0x34,0x30,0x9,0x41, - 0x73,0x69,0x61,0x2f,0x48,0x6f,0x5f,0x43,0x68,0x69,0x5f,0x4d,0x69,0x6e,0x68,0x9, - 0x56,0x69,0x65,0x74,0x6e,0x61,0x6d,0x20,0x28,0x73,0x6f,0x75,0x74,0x68,0x29,0xa, - 0x56,0x55,0x9,0x2d,0x31,0x37,0x34,0x30,0x2b,0x31,0x36,0x38,0x32,0x35,0x9,0x50, - 0x61,0x63,0x69,0x66,0x69,0x63,0x2f,0x45,0x66,0x61,0x74,0x65,0xa,0x57,0x46,0x9, - 0x2d,0x31,0x33,0x31,0x38,0x2d,0x31,0x37,0x36,0x31,0x30,0x9,0x50,0x61,0x63,0x69, - 0x66,0x69,0x63,0x2f,0x57,0x61,0x6c,0x6c,0x69,0x73,0xa,0x57,0x53,0x9,0x2d,0x31, - 0x33,0x35,0x30,0x2d,0x31,0x37,0x31,0x34,0x34,0x9,0x50,0x61,0x63,0x69,0x66,0x69, - 0x63,0x2f,0x41,0x70,0x69,0x61,0xa,0x5a,0x41,0x2c,0x4c,0x53,0x2c,0x53,0x5a,0x9, - 0x2d,0x32,0x36,0x31,0x35,0x2b,0x30,0x32,0x38,0x30,0x30,0x9,0x41,0x66,0x72,0x69, - 0x63,0x61,0x2f,0x4a,0x6f,0x68,0x61,0x6e,0x6e,0x65,0x73,0x62,0x75,0x72,0x67,0xa, - - // /home/konrad/src/smoke/tzone/zoneinfo/Jamaica - 0x0,0x0,0x1,0xfb, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x16,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x10,0x80,0x0,0x0,0x0,0x93, - 0xf,0xb4,0xff,0x7,0x8d,0x19,0x70,0x9,0x10,0xa4,0x60,0x9,0xad,0x94,0xf0,0xa, - 0xf0,0x86,0x60,0xb,0xe0,0x85,0x70,0xc,0xd9,0xa2,0xe0,0xd,0xc0,0x67,0x70,0xe, - 0xb9,0x84,0xe0,0xf,0xa9,0x83,0xf0,0x10,0x99,0x66,0xe0,0x11,0x89,0x65,0xf0,0x12, - 0x79,0x48,0xe0,0x13,0x69,0x47,0xf0,0x14,0x59,0x2a,0xe0,0x15,0x49,0x29,0xf0,0x16, - 0x39,0xc,0xe0,0x17,0x29,0xb,0xf0,0x18,0x22,0x29,0x60,0x19,0x8,0xed,0xf0,0x1a, - 0x2,0xb,0x60,0x1,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0xff,0xff,0xb8,0x1,0x0,0x0,0xff, - 0xff,0xb8,0x1,0x0,0x4,0xff,0xff,0xb9,0xb0,0x0,0x8,0xff,0xff,0xc7,0xc0,0x1, - 0xc,0x4c,0x4d,0x54,0x0,0x4b,0x4d,0x54,0x0,0x45,0x53,0x54,0x0,0x45,0x44,0x54, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x17,0x0,0x0,0x0, - 0x4,0x0,0x0,0x0,0x10,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff, - 0xff,0x69,0x87,0x23,0x7f,0xff,0xff,0xff,0xff,0x93,0xf,0xb4,0xff,0x0,0x0,0x0, - 0x0,0x7,0x8d,0x19,0x70,0x0,0x0,0x0,0x0,0x9,0x10,0xa4,0x60,0x0,0x0,0x0, - 0x0,0x9,0xad,0x94,0xf0,0x0,0x0,0x0,0x0,0xa,0xf0,0x86,0x60,0x0,0x0,0x0, - 0x0,0xb,0xe0,0x85,0x70,0x0,0x0,0x0,0x0,0xc,0xd9,0xa2,0xe0,0x0,0x0,0x0, - 0x0,0xd,0xc0,0x67,0x70,0x0,0x0,0x0,0x0,0xe,0xb9,0x84,0xe0,0x0,0x0,0x0, - 0x0,0xf,0xa9,0x83,0xf0,0x0,0x0,0x0,0x0,0x10,0x99,0x66,0xe0,0x0,0x0,0x0, - 0x0,0x11,0x89,0x65,0xf0,0x0,0x0,0x0,0x0,0x12,0x79,0x48,0xe0,0x0,0x0,0x0, - 0x0,0x13,0x69,0x47,0xf0,0x0,0x0,0x0,0x0,0x14,0x59,0x2a,0xe0,0x0,0x0,0x0, - 0x0,0x15,0x49,0x29,0xf0,0x0,0x0,0x0,0x0,0x16,0x39,0xc,0xe0,0x0,0x0,0x0, - 0x0,0x17,0x29,0xb,0xf0,0x0,0x0,0x0,0x0,0x18,0x22,0x29,0x60,0x0,0x0,0x0, - 0x0,0x19,0x8,0xed,0xf0,0x0,0x0,0x0,0x0,0x1a,0x2,0xb,0x60,0x0,0x1,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0xff,0xff,0xb8,0x1,0x0,0x0,0xff,0xff,0xb8,0x1,0x0,0x4, - 0xff,0xff,0xb9,0xb0,0x0,0x8,0xff,0xff,0xc7,0xc0,0x1,0xc,0x4c,0x4d,0x54,0x0, - 0x4b,0x4d,0x54,0x0,0x45,0x53,0x54,0x0,0x45,0x44,0x54,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0xa,0x45,0x53,0x54,0x35,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/ROK - 0x0,0x0,0x2,0x3b, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x17,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x15,0x80,0x0,0x0,0x0,0x8b, - 0xd7,0xf0,0x78,0x92,0xe6,0x16,0xf8,0xc3,0x55,0x3b,0x70,0xd2,0x43,0x27,0xf0,0xe2, - 0x4f,0x29,0xf0,0xe4,0x6b,0xb7,0xf8,0xe5,0x13,0x18,0x68,0xe6,0x62,0x3,0x78,0xe7, - 0x11,0x4c,0xe8,0xe8,0x2f,0x70,0x78,0xe8,0xe7,0xf4,0x68,0xea,0xf,0x52,0x78,0xea, - 0xc7,0xd6,0x68,0xeb,0xef,0x34,0x78,0xec,0xa7,0xb8,0x68,0xed,0xcf,0x16,0x78,0xee, - 0x87,0x9a,0x68,0xf0,0x35,0x71,0x78,0x20,0xa3,0x60,0x90,0x21,0x6e,0x67,0x90,0x22, - 0x83,0x42,0x90,0x23,0x4e,0x49,0x90,0x0,0x1,0x2,0x3,0x4,0x1,0x5,0x1,0x5, - 0x1,0x5,0x1,0x5,0x1,0x5,0x1,0x5,0x1,0x4,0x6,0x4,0x6,0x4,0x0,0x0, - 0x77,0x8,0x0,0x0,0x0,0x0,0x77,0x88,0x0,0x4,0x0,0x0,0x7e,0x90,0x0,0x8, - 0x0,0x0,0x7e,0x90,0x0,0xd,0x0,0x0,0x7e,0x90,0x0,0x4,0x0,0x0,0x85,0x98, - 0x1,0x11,0x0,0x0,0x8c,0xa0,0x1,0x11,0x4c,0x4d,0x54,0x0,0x4b,0x53,0x54,0x0, - 0x4a,0x43,0x53,0x54,0x0,0x4a,0x53,0x54,0x0,0x4b,0x44,0x54,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x17,0x0, - 0x0,0x0,0x7,0x0,0x0,0x0,0x15,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff, - 0xff,0xff,0xff,0x8b,0xd7,0xf0,0x78,0xff,0xff,0xff,0xff,0x92,0xe6,0x16,0xf8,0xff, - 0xff,0xff,0xff,0xc3,0x55,0x3b,0x70,0xff,0xff,0xff,0xff,0xd2,0x43,0x27,0xf0,0xff, - 0xff,0xff,0xff,0xe2,0x4f,0x29,0xf0,0xff,0xff,0xff,0xff,0xe4,0x6b,0xb7,0xf8,0xff, - 0xff,0xff,0xff,0xe5,0x13,0x18,0x68,0xff,0xff,0xff,0xff,0xe6,0x62,0x3,0x78,0xff, - 0xff,0xff,0xff,0xe7,0x11,0x4c,0xe8,0xff,0xff,0xff,0xff,0xe8,0x2f,0x70,0x78,0xff, - 0xff,0xff,0xff,0xe8,0xe7,0xf4,0x68,0xff,0xff,0xff,0xff,0xea,0xf,0x52,0x78,0xff, - 0xff,0xff,0xff,0xea,0xc7,0xd6,0x68,0xff,0xff,0xff,0xff,0xeb,0xef,0x34,0x78,0xff, - 0xff,0xff,0xff,0xec,0xa7,0xb8,0x68,0xff,0xff,0xff,0xff,0xed,0xcf,0x16,0x78,0xff, - 0xff,0xff,0xff,0xee,0x87,0x9a,0x68,0xff,0xff,0xff,0xff,0xf0,0x35,0x71,0x78,0x0, - 0x0,0x0,0x0,0x20,0xa3,0x60,0x90,0x0,0x0,0x0,0x0,0x21,0x6e,0x67,0x90,0x0, - 0x0,0x0,0x0,0x22,0x83,0x42,0x90,0x0,0x0,0x0,0x0,0x23,0x4e,0x49,0x90,0x0, - 0x1,0x2,0x3,0x4,0x1,0x5,0x1,0x5,0x1,0x5,0x1,0x5,0x1,0x5,0x1,0x5, - 0x1,0x4,0x6,0x4,0x6,0x4,0x0,0x0,0x77,0x8,0x0,0x0,0x0,0x0,0x77,0x88, - 0x0,0x4,0x0,0x0,0x7e,0x90,0x0,0x8,0x0,0x0,0x7e,0x90,0x0,0xd,0x0,0x0, - 0x7e,0x90,0x0,0x4,0x0,0x0,0x85,0x98,0x1,0x11,0x0,0x0,0x8c,0xa0,0x1,0x11, - 0x4c,0x4d,0x54,0x0,0x4b,0x53,0x54,0x0,0x4a,0x43,0x53,0x54,0x0,0x4a,0x53,0x54, - 0x0,0x4b,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0xa,0x4b,0x53,0x54,0x2d,0x39,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/GB + 0x33,0x38,0x34,0x30,0x33,0x38,0x2d,0x30,0x38,0x37,0x33,0x31,0x34,0x33,0x9,0x41, + 0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x49,0x6e,0x64,0x69,0x61,0x6e,0x61,0x2f,0x56, + 0x69,0x6e,0x63,0x65,0x6e,0x6e,0x65,0x73,0x9,0x45,0x61,0x73,0x74,0x65,0x72,0x6e, + 0x20,0x2d,0x20,0x49,0x4e,0x20,0x28,0x44,0x61,0x2c,0x20,0x44,0x75,0x2c,0x20,0x4b, + 0x2c,0x20,0x4d,0x6e,0x29,0xa,0x55,0x53,0x9,0x2b,0x34,0x31,0x30,0x33,0x30,0x35, + 0x2d,0x30,0x38,0x36,0x33,0x36,0x31,0x31,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61, + 0x2f,0x49,0x6e,0x64,0x69,0x61,0x6e,0x61,0x2f,0x57,0x69,0x6e,0x61,0x6d,0x61,0x63, + 0x9,0x45,0x61,0x73,0x74,0x65,0x72,0x6e,0x20,0x2d,0x20,0x49,0x4e,0x20,0x28,0x50, + 0x75,0x6c,0x61,0x73,0x6b,0x69,0x29,0xa,0x55,0x53,0x9,0x2b,0x33,0x38,0x32,0x32, + 0x33,0x32,0x2d,0x30,0x38,0x36,0x32,0x30,0x34,0x31,0x9,0x41,0x6d,0x65,0x72,0x69, + 0x63,0x61,0x2f,0x49,0x6e,0x64,0x69,0x61,0x6e,0x61,0x2f,0x4d,0x61,0x72,0x65,0x6e, + 0x67,0x6f,0x9,0x45,0x61,0x73,0x74,0x65,0x72,0x6e,0x20,0x2d,0x20,0x49,0x4e,0x20, + 0x28,0x43,0x72,0x61,0x77,0x66,0x6f,0x72,0x64,0x29,0xa,0x55,0x53,0x9,0x2b,0x33, + 0x38,0x32,0x39,0x33,0x31,0x2d,0x30,0x38,0x37,0x31,0x36,0x34,0x33,0x9,0x41,0x6d, + 0x65,0x72,0x69,0x63,0x61,0x2f,0x49,0x6e,0x64,0x69,0x61,0x6e,0x61,0x2f,0x50,0x65, + 0x74,0x65,0x72,0x73,0x62,0x75,0x72,0x67,0x9,0x45,0x61,0x73,0x74,0x65,0x72,0x6e, + 0x20,0x2d,0x20,0x49,0x4e,0x20,0x28,0x50,0x69,0x6b,0x65,0x29,0xa,0x55,0x53,0x9, + 0x2b,0x33,0x38,0x34,0x34,0x35,0x32,0x2d,0x30,0x38,0x35,0x30,0x34,0x30,0x32,0x9, + 0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x49,0x6e,0x64,0x69,0x61,0x6e,0x61,0x2f, + 0x56,0x65,0x76,0x61,0x79,0x9,0x45,0x61,0x73,0x74,0x65,0x72,0x6e,0x20,0x2d,0x20, + 0x49,0x4e,0x20,0x28,0x53,0x77,0x69,0x74,0x7a,0x65,0x72,0x6c,0x61,0x6e,0x64,0x29, + 0xa,0x55,0x53,0x9,0x2b,0x34,0x31,0x35,0x31,0x30,0x30,0x2d,0x30,0x38,0x37,0x33, + 0x39,0x30,0x30,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x43,0x68,0x69,0x63, + 0x61,0x67,0x6f,0x9,0x43,0x65,0x6e,0x74,0x72,0x61,0x6c,0x20,0x28,0x6d,0x6f,0x73, + 0x74,0x20,0x61,0x72,0x65,0x61,0x73,0x29,0xa,0x55,0x53,0x9,0x2b,0x33,0x37,0x35, + 0x37,0x31,0x31,0x2d,0x30,0x38,0x36,0x34,0x35,0x34,0x31,0x9,0x41,0x6d,0x65,0x72, + 0x69,0x63,0x61,0x2f,0x49,0x6e,0x64,0x69,0x61,0x6e,0x61,0x2f,0x54,0x65,0x6c,0x6c, + 0x5f,0x43,0x69,0x74,0x79,0x9,0x43,0x65,0x6e,0x74,0x72,0x61,0x6c,0x20,0x2d,0x20, + 0x49,0x4e,0x20,0x28,0x50,0x65,0x72,0x72,0x79,0x29,0xa,0x55,0x53,0x9,0x2b,0x34, + 0x31,0x31,0x37,0x34,0x35,0x2d,0x30,0x38,0x36,0x33,0x37,0x33,0x30,0x9,0x41,0x6d, + 0x65,0x72,0x69,0x63,0x61,0x2f,0x49,0x6e,0x64,0x69,0x61,0x6e,0x61,0x2f,0x4b,0x6e, + 0x6f,0x78,0x9,0x43,0x65,0x6e,0x74,0x72,0x61,0x6c,0x20,0x2d,0x20,0x49,0x4e,0x20, + 0x28,0x53,0x74,0x61,0x72,0x6b,0x65,0x29,0xa,0x55,0x53,0x9,0x2b,0x34,0x35,0x30, + 0x36,0x32,0x38,0x2d,0x30,0x38,0x37,0x33,0x36,0x35,0x31,0x9,0x41,0x6d,0x65,0x72, + 0x69,0x63,0x61,0x2f,0x4d,0x65,0x6e,0x6f,0x6d,0x69,0x6e,0x65,0x65,0x9,0x43,0x65, + 0x6e,0x74,0x72,0x61,0x6c,0x20,0x2d,0x20,0x4d,0x49,0x20,0x28,0x57,0x69,0x73,0x63, + 0x6f,0x6e,0x73,0x69,0x6e,0x20,0x62,0x6f,0x72,0x64,0x65,0x72,0x29,0xa,0x55,0x53, + 0x9,0x2b,0x34,0x37,0x30,0x36,0x35,0x39,0x2d,0x31,0x30,0x31,0x31,0x37,0x35,0x37, + 0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x4e,0x6f,0x72,0x74,0x68,0x5f,0x44, + 0x61,0x6b,0x6f,0x74,0x61,0x2f,0x43,0x65,0x6e,0x74,0x65,0x72,0x9,0x43,0x65,0x6e, + 0x74,0x72,0x61,0x6c,0x20,0x2d,0x20,0x4e,0x44,0x20,0x28,0x4f,0x6c,0x69,0x76,0x65, + 0x72,0x29,0xa,0x55,0x53,0x9,0x2b,0x34,0x36,0x35,0x30,0x34,0x32,0x2d,0x31,0x30, + 0x31,0x32,0x34,0x33,0x39,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x4e,0x6f, + 0x72,0x74,0x68,0x5f,0x44,0x61,0x6b,0x6f,0x74,0x61,0x2f,0x4e,0x65,0x77,0x5f,0x53, + 0x61,0x6c,0x65,0x6d,0x9,0x43,0x65,0x6e,0x74,0x72,0x61,0x6c,0x20,0x2d,0x20,0x4e, + 0x44,0x20,0x28,0x4d,0x6f,0x72,0x74,0x6f,0x6e,0x20,0x72,0x75,0x72,0x61,0x6c,0x29, + 0xa,0x55,0x53,0x9,0x2b,0x34,0x37,0x31,0x35,0x35,0x31,0x2d,0x31,0x30,0x31,0x34, + 0x36,0x34,0x30,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x4e,0x6f,0x72,0x74, + 0x68,0x5f,0x44,0x61,0x6b,0x6f,0x74,0x61,0x2f,0x42,0x65,0x75,0x6c,0x61,0x68,0x9, + 0x43,0x65,0x6e,0x74,0x72,0x61,0x6c,0x20,0x2d,0x20,0x4e,0x44,0x20,0x28,0x4d,0x65, + 0x72,0x63,0x65,0x72,0x29,0xa,0x55,0x53,0x9,0x2b,0x33,0x39,0x34,0x34,0x32,0x31, + 0x2d,0x31,0x30,0x34,0x35,0x39,0x30,0x33,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61, + 0x2f,0x44,0x65,0x6e,0x76,0x65,0x72,0x9,0x4d,0x6f,0x75,0x6e,0x74,0x61,0x69,0x6e, + 0x20,0x28,0x6d,0x6f,0x73,0x74,0x20,0x61,0x72,0x65,0x61,0x73,0x29,0xa,0x55,0x53, + 0x9,0x2b,0x34,0x33,0x33,0x36,0x34,0x39,0x2d,0x31,0x31,0x36,0x31,0x32,0x30,0x39, + 0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x42,0x6f,0x69,0x73,0x65,0x9,0x4d, + 0x6f,0x75,0x6e,0x74,0x61,0x69,0x6e,0x20,0x2d,0x20,0x49,0x44,0x20,0x28,0x73,0x6f, + 0x75,0x74,0x68,0x29,0x3b,0x20,0x4f,0x52,0x20,0x28,0x65,0x61,0x73,0x74,0x29,0xa, + 0x55,0x53,0x9,0x2b,0x33,0x33,0x32,0x36,0x35,0x34,0x2d,0x31,0x31,0x32,0x30,0x34, + 0x32,0x34,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x50,0x68,0x6f,0x65,0x6e, + 0x69,0x78,0x9,0x4d,0x53,0x54,0x20,0x2d,0x20,0x41,0x72,0x69,0x7a,0x6f,0x6e,0x61, + 0x20,0x28,0x65,0x78,0x63,0x65,0x70,0x74,0x20,0x4e,0x61,0x76,0x61,0x6a,0x6f,0x29, + 0xa,0x55,0x53,0x9,0x2b,0x33,0x34,0x30,0x33,0x30,0x38,0x2d,0x31,0x31,0x38,0x31, + 0x34,0x33,0x34,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x4c,0x6f,0x73,0x5f, + 0x41,0x6e,0x67,0x65,0x6c,0x65,0x73,0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63,0xa, + 0x55,0x53,0x9,0x2b,0x36,0x31,0x31,0x33,0x30,0x35,0x2d,0x31,0x34,0x39,0x35,0x34, + 0x30,0x31,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x41,0x6e,0x63,0x68,0x6f, + 0x72,0x61,0x67,0x65,0x9,0x41,0x6c,0x61,0x73,0x6b,0x61,0x20,0x28,0x6d,0x6f,0x73, + 0x74,0x20,0x61,0x72,0x65,0x61,0x73,0x29,0xa,0x55,0x53,0x9,0x2b,0x35,0x38,0x31, + 0x38,0x30,0x37,0x2d,0x31,0x33,0x34,0x32,0x35,0x31,0x31,0x9,0x41,0x6d,0x65,0x72, + 0x69,0x63,0x61,0x2f,0x4a,0x75,0x6e,0x65,0x61,0x75,0x9,0x41,0x6c,0x61,0x73,0x6b, + 0x61,0x20,0x2d,0x20,0x4a,0x75,0x6e,0x65,0x61,0x75,0x20,0x61,0x72,0x65,0x61,0xa, + 0x55,0x53,0x9,0x2b,0x35,0x37,0x31,0x30,0x33,0x35,0x2d,0x31,0x33,0x35,0x31,0x38, + 0x30,0x37,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x53,0x69,0x74,0x6b,0x61, + 0x9,0x41,0x6c,0x61,0x73,0x6b,0x61,0x20,0x2d,0x20,0x53,0x69,0x74,0x6b,0x61,0x20, + 0x61,0x72,0x65,0x61,0xa,0x55,0x53,0x9,0x2b,0x35,0x35,0x30,0x37,0x33,0x37,0x2d, + 0x31,0x33,0x31,0x33,0x34,0x33,0x35,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f, + 0x4d,0x65,0x74,0x6c,0x61,0x6b,0x61,0x74,0x6c,0x61,0x9,0x41,0x6c,0x61,0x73,0x6b, + 0x61,0x20,0x2d,0x20,0x41,0x6e,0x6e,0x65,0x74,0x74,0x65,0x20,0x49,0x73,0x6c,0x61, + 0x6e,0x64,0xa,0x55,0x53,0x9,0x2b,0x35,0x39,0x33,0x32,0x34,0x39,0x2d,0x31,0x33, + 0x39,0x34,0x33,0x33,0x38,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x59,0x61, + 0x6b,0x75,0x74,0x61,0x74,0x9,0x41,0x6c,0x61,0x73,0x6b,0x61,0x20,0x2d,0x20,0x59, + 0x61,0x6b,0x75,0x74,0x61,0x74,0xa,0x55,0x53,0x9,0x2b,0x36,0x34,0x33,0x30,0x30, + 0x34,0x2d,0x31,0x36,0x35,0x32,0x34,0x32,0x33,0x9,0x41,0x6d,0x65,0x72,0x69,0x63, + 0x61,0x2f,0x4e,0x6f,0x6d,0x65,0x9,0x41,0x6c,0x61,0x73,0x6b,0x61,0x20,0x28,0x77, + 0x65,0x73,0x74,0x29,0xa,0x55,0x53,0x9,0x2b,0x35,0x31,0x35,0x32,0x34,0x38,0x2d, + 0x31,0x37,0x36,0x33,0x39,0x32,0x39,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f, + 0x41,0x64,0x61,0x6b,0x9,0x41,0x6c,0x65,0x75,0x74,0x69,0x61,0x6e,0x20,0x49,0x73, + 0x6c,0x61,0x6e,0x64,0x73,0xa,0x55,0x53,0x2c,0x55,0x4d,0x9,0x2b,0x32,0x31,0x31, + 0x38,0x32,0x35,0x2d,0x31,0x35,0x37,0x35,0x31,0x33,0x30,0x9,0x50,0x61,0x63,0x69, + 0x66,0x69,0x63,0x2f,0x48,0x6f,0x6e,0x6f,0x6c,0x75,0x6c,0x75,0x9,0x48,0x61,0x77, + 0x61,0x69,0x69,0xa,0x55,0x59,0x9,0x2d,0x33,0x34,0x35,0x33,0x2d,0x30,0x35,0x36, + 0x31,0x31,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x4d,0x6f,0x6e,0x74,0x65, + 0x76,0x69,0x64,0x65,0x6f,0xa,0x55,0x5a,0x9,0x2b,0x33,0x39,0x34,0x30,0x2b,0x30, + 0x36,0x36,0x34,0x38,0x9,0x41,0x73,0x69,0x61,0x2f,0x53,0x61,0x6d,0x61,0x72,0x6b, + 0x61,0x6e,0x64,0x9,0x55,0x7a,0x62,0x65,0x6b,0x69,0x73,0x74,0x61,0x6e,0x20,0x28, + 0x77,0x65,0x73,0x74,0x29,0xa,0x55,0x5a,0x9,0x2b,0x34,0x31,0x32,0x30,0x2b,0x30, + 0x36,0x39,0x31,0x38,0x9,0x41,0x73,0x69,0x61,0x2f,0x54,0x61,0x73,0x68,0x6b,0x65, + 0x6e,0x74,0x9,0x55,0x7a,0x62,0x65,0x6b,0x69,0x73,0x74,0x61,0x6e,0x20,0x28,0x65, + 0x61,0x73,0x74,0x29,0xa,0x56,0x45,0x9,0x2b,0x31,0x30,0x33,0x30,0x2d,0x30,0x36, + 0x36,0x35,0x36,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x43,0x61,0x72,0x61, + 0x63,0x61,0x73,0xa,0x56,0x4e,0x9,0x2b,0x31,0x30,0x34,0x35,0x2b,0x31,0x30,0x36, + 0x34,0x30,0x9,0x41,0x73,0x69,0x61,0x2f,0x48,0x6f,0x5f,0x43,0x68,0x69,0x5f,0x4d, + 0x69,0x6e,0x68,0x9,0x56,0x69,0x65,0x74,0x6e,0x61,0x6d,0x20,0x28,0x73,0x6f,0x75, + 0x74,0x68,0x29,0xa,0x56,0x55,0x9,0x2d,0x31,0x37,0x34,0x30,0x2b,0x31,0x36,0x38, + 0x32,0x35,0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x2f,0x45,0x66,0x61,0x74,0x65, + 0xa,0x57,0x46,0x9,0x2d,0x31,0x33,0x31,0x38,0x2d,0x31,0x37,0x36,0x31,0x30,0x9, + 0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x2f,0x57,0x61,0x6c,0x6c,0x69,0x73,0xa,0x57, + 0x53,0x9,0x2d,0x31,0x33,0x35,0x30,0x2d,0x31,0x37,0x31,0x34,0x34,0x9,0x50,0x61, + 0x63,0x69,0x66,0x69,0x63,0x2f,0x41,0x70,0x69,0x61,0xa,0x5a,0x41,0x2c,0x4c,0x53, + 0x2c,0x53,0x5a,0x9,0x2d,0x32,0x36,0x31,0x35,0x2b,0x30,0x32,0x38,0x30,0x30,0x9, + 0x41,0x66,0x72,0x69,0x63,0x61,0x2f,0x4a,0x6f,0x68,0x61,0x6e,0x6e,0x65,0x73,0x62, + 0x75,0x72,0x67,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/tzdata.zi + 0x0,0x0,0x65,0x1f, + 0x0, + 0x1,0x9f,0x8a,0x78,0x9c,0xd5,0xbd,0x79,0x7b,0x1c,0xc7,0x8d,0x38,0xfc,0x3f,0x3f, + 0x45,0xef,0xf3,0x6e,0x76,0xb3,0xd1,0x32,0xea,0xfb,0xa0,0xb3,0x49,0x28,0x52,0xd4, + 0xc9,0xc3,0x1c,0xda,0x8a,0x9d,0x5f,0x96,0xdb,0x24,0x5b,0x9c,0x16,0x87,0xd3,0x74, + 0xcf,0xb4,0x64,0x6a,0x37,0xfe,0xec,0x6f,0x1,0x75,0x1,0xd5,0xd5,0x43,0xda,0x89, + 0xbd,0x9b,0xc7,0x7e,0x24,0x4d,0x1,0xa8,0x13,0x8d,0x2,0x50,0x28,0xd4,0xff,0x17, + 0x9c,0xcd,0xdb,0x55,0xf0,0xb9,0xbd,0xc,0xda,0xe5,0xdd,0xb0,0xe,0xde,0xb7,0x8b, + 0x26,0x10,0x25,0xed,0x32,0x58,0xcf,0x9b,0xe0,0x6e,0xb8,0x58,0x8,0xd8,0x55,0x77, + 0x5b,0xb7,0xcb,0xdf,0x6e,0x9d,0x6,0xbb,0x41,0x54,0x45,0x79,0xd0,0x5,0xdb,0xc1, + 0xeb,0x61,0x19,0x44,0x69,0x10,0x27,0xab,0x20,0xa,0x66,0x16,0x26,0xfe,0xa8,0x4, + 0xf8,0x38,0x98,0xd,0xcb,0xdf,0xff,0x47,0x84,0x8,0x61,0xb0,0xad,0x11,0xa,0x24, + 0x3e,0xac,0xfb,0x20,0x1e,0x11,0x97,0x6,0x56,0xb9,0xa0,0xca,0x80,0x22,0x7,0x14, + 0x87,0x8,0x3a,0x18,0x77,0x46,0x41,0x8e,0x45,0xb1,0xd3,0x8b,0x38,0xb2,0xd5,0x8d, + 0xa8,0x22,0x33,0xbc,0xd8,0xed,0x7d,0x22,0xbb,0x31,0xb,0x22,0xb7,0x17,0xa,0x72, + 0x24,0xfe,0x29,0x4a,0x2d,0x45,0x9a,0xc2,0x1f,0x99,0x0,0xed,0xde,0x5,0x87,0x38, + 0x1f,0x84,0x4a,0x40,0x65,0xf,0x4b,0x51,0x4c,0x88,0x32,0xdd,0x4c,0xce,0x2a,0x2b, + 0x64,0xd7,0x44,0x4d,0x71,0xe6,0xb4,0xaf,0x40,0xb3,0x20,0xce,0x9d,0x3e,0x17,0x7a, + 0xc6,0xef,0x83,0x5c,0x14,0x13,0x92,0x42,0x4f,0xf,0xb4,0x41,0x8,0x4a,0xba,0x44, + 0x11,0xa5,0x28,0x75,0x23,0x71,0x90,0x10,0x8a,0x32,0x24,0xfd,0xa2,0x4d,0x94,0x7a, + 0x5,0x92,0x48,0xd,0xf0,0xdb,0x60,0xf7,0x7d,0xdf,0x5e,0xd6,0x4f,0x77,0x17,0xd7, + 0x6d,0xd3,0x8b,0x8e,0xee,0x44,0xb1,0xf8,0x5f,0x60,0xbd,0x3d,0x3c,0xb,0xa2,0xb2, + 0x8a,0xe4,0xb2,0x64,0x0,0xd9,0xa,0x77,0xaa,0x1d,0xd1,0xbd,0xed,0xe0,0x4,0x80, + 0x55,0xa4,0x80,0x2,0x20,0xea,0x7f,0xf7,0xfc,0x57,0x2b,0x28,0x4d,0x43,0xb1,0xfa, + 0x30,0x23,0x5b,0x91,0x28,0xdd,0xd3,0xa5,0xb9,0x68,0xb7,0x10,0x88,0xdb,0x2,0x11, + 0xa,0xb2,0x3c,0x78,0x5d,0x7,0x71,0xb5,0x5,0xf5,0xed,0x61,0x51,0x9e,0x40,0xa7, + 0xa3,0x94,0x55,0x27,0xe6,0x5,0xe6,0x84,0x55,0x56,0x54,0x50,0x96,0x33,0xbc,0x12, + 0x3a,0x73,0xaf,0x6b,0x83,0x91,0xad,0x17,0xf5,0x72,0xdd,0x5e,0x3e,0xdd,0xab,0xef, + 0x9a,0xf3,0xaf,0x9b,0xfe,0xaa,0x9,0xb6,0xa3,0x9d,0x24,0xdd,0x49,0xf5,0xf0,0xaa, + 0xb0,0xd8,0xda,0x86,0xc1,0x6e,0x87,0x31,0xf4,0x31,0x16,0x53,0xb5,0xd,0x1c,0xb1, + 0x1d,0x46,0x72,0xe1,0x8f,0xc5,0xd0,0x29,0x4a,0x91,0x9,0xa6,0xc2,0xc1,0x6d,0x47, + 0x58,0x18,0xd9,0x39,0x3c,0xba,0xfa,0x50,0xdf,0x36,0xcb,0x3a,0x88,0x76,0x42,0x32, + 0x87,0x55,0x14,0x63,0xaf,0xde,0xed,0x9a,0xae,0x8b,0x21,0xc2,0x42,0xbe,0xdb,0x9d, + 0x9d,0xc9,0x65,0x81,0x69,0x2c,0x35,0x16,0x59,0x95,0x8b,0x56,0xd4,0xb9,0x14,0xcd, + 0xec,0x44,0xf9,0x4e,0x49,0x6b,0x84,0x89,0x7c,0x71,0x78,0xb6,0xf5,0xb6,0x75,0x91, + 0xd5,0xcf,0x67,0xf5,0x6d,0x7d,0xd3,0x6d,0x82,0x2f,0x3f,0xc,0x8b,0x69,0xf8,0x5e, + 0xb7,0xac,0x6f,0xfa,0xfb,0x69,0x84,0xfd,0xfa,0xa6,0xee,0xa7,0xc1,0x7,0x7d,0xd3, + 0xac,0xbb,0x4f,0xcb,0x69,0x8c,0xb7,0xdd,0x6d,0x33,0xd,0x3d,0xea,0x86,0xfa,0xe6, + 0x72,0xde,0xad,0xd7,0xd3,0x38,0xc7,0x43,0x7d,0x5d,0x5f,0x75,0xc3,0x75,0x37,0x4c, + 0x23,0xcd,0xea,0xee,0xfc,0x6c,0xa2,0x29,0xcd,0x22,0xb3,0xf5,0xf9,0xcb,0x66,0x21, + 0xd6,0x4e,0x7c,0x29,0xcf,0x24,0xf,0x4b,0xa9,0xb3,0x40,0xd6,0x57,0xdf,0x10,0x81, + 0x1c,0x7,0xf6,0x2b,0xc5,0x62,0x23,0xb,0x5c,0xfc,0xc8,0xa,0xf,0x46,0x10,0x4b, + 0x81,0x23,0x69,0x38,0x49,0xac,0x25,0x41,0xc1,0x49,0x12,0x2d,0xbc,0x8e,0xdc,0xd6, + 0x33,0xd3,0x7a,0xce,0xaa,0xca,0xac,0xb4,0x89,0x42,0x17,0x22,0xfe,0x28,0x3d,0x43, + 0xc9,0x4a,0x4b,0xc3,0x49,0x2a,0xf9,0x99,0x69,0x58,0xe4,0xc2,0xf2,0xc,0x47,0x9a, + 0x84,0x46,0x1c,0x1,0x28,0x87,0x4d,0xa8,0x4a,0x55,0x4b,0x14,0x52,0xc6,0x66,0x96, + 0xc5,0x27,0x45,0xab,0x2b,0x13,0x3b,0xff,0x31,0x87,0x80,0x4,0x2f,0x4b,0x6f,0x27, + 0xca,0x8a,0xc8,0x56,0xa,0xa8,0x42,0xdd,0x85,0x31,0x51,0x25,0x3e,0xe6,0x30,0xa, + 0xe5,0xf4,0x2d,0xea,0xd5,0xfa,0x20,0x8,0x57,0x2e,0x3c,0x94,0x23,0x3,0xf0,0xd9, + 0x1c,0xe4,0xb0,0x1e,0x84,0x0,0xe5,0x5a,0xa,0x47,0xe,0xa0,0x50,0x80,0xb3,0x39, + 0x6e,0x34,0xc,0x26,0xe7,0x78,0x77,0xf0,0x57,0x59,0x69,0xa8,0xd8,0x33,0x19,0x24, + 0xa,0x35,0x24,0xf2,0x43,0x66,0xb0,0x57,0xa7,0xa6,0xfb,0xa4,0xdc,0xd7,0x50,0x94, + 0xda,0xa5,0xce,0x1c,0xba,0xd4,0xee,0xbb,0xb9,0x97,0xa,0x16,0x27,0x89,0xbc,0x54, + 0x6e,0x6b,0x46,0xa0,0xed,0xd5,0x6d,0xdf,0x5,0xf1,0x4e,0xb6,0x53,0x59,0x19,0x1c, + 0x6,0xc7,0x5b,0xb1,0x20,0x7f,0xe,0x92,0x5c,0x54,0xb4,0x27,0x95,0x5,0xfc,0x10, + 0xf0,0xcb,0x1,0xf6,0xdc,0x11,0x25,0x2f,0x5e,0xce,0xc6,0xf0,0x7d,0xe8,0x4,0xf0, + 0x2f,0x48,0x43,0x2b,0x39,0x2f,0x2f,0xfb,0x1a,0xe4,0x66,0xb8,0x93,0x11,0x49,0x5c, + 0xa,0xb9,0xb9,0x7,0x98,0x4f,0x9f,0x84,0x61,0x1c,0x5a,0xfc,0x67,0xed,0x6a,0x55, + 0xf,0xb0,0x3f,0xc4,0xd0,0x12,0x11,0xb4,0x5a,0xce,0xa3,0xf0,0x37,0x62,0xd7,0xa, + 0x7d,0x18,0xd1,0x45,0x2b,0xc6,0x14,0x17,0x42,0x48,0x1b,0xca,0xb8,0x84,0x9,0xda, + 0x4a,0x44,0xc1,0x73,0x14,0xfc,0x49,0xb8,0x15,0xef,0x24,0x40,0xff,0x24,0x8c,0x13, + 0xec,0x3e,0x94,0xe0,0xf7,0x2c,0x4a,0xc4,0xdf,0xe2,0x53,0x9,0x35,0x1,0x11,0x56, + 0xba,0x5,0x3d,0xb2,0xab,0xab,0x76,0x75,0xbe,0x7b,0x51,0x5f,0xd4,0x1b,0x90,0x56, + 0xb7,0x75,0xbf,0x1,0xbe,0x5f,0xf7,0xe7,0xcd,0xea,0x7c,0x56,0x2f,0xea,0xfa,0x76, + 0x3,0xda,0x87,0xf6,0xa2,0x1b,0xd6,0xed,0x34,0xc6,0x9b,0xfa,0xf6,0x4e,0x54,0x32, + 0x8d,0x70,0xd8,0x9,0x9,0xdd,0xae,0xe6,0x83,0x7,0xe5,0xd5,0xf2,0xaa,0xad,0x97, + 0x4f,0x77,0x97,0xeb,0x7a,0x29,0xfe,0xeb,0xdb,0x8f,0xdd,0x34,0xd6,0x5e,0x77,0xdb, + 0xf5,0x1b,0xe0,0x82,0x89,0xc5,0x5e,0xd1,0xd8,0x95,0x39,0xec,0x96,0x7d,0xf7,0xb1, + 0x45,0x2e,0x48,0x13,0xbb,0x7b,0x96,0xa5,0x58,0x54,0x53,0x74,0x28,0xd7,0xb9,0x82, + 0x2d,0x18,0x8b,0x53,0xb9,0x48,0xb2,0xbc,0x88,0x41,0x49,0x29,0xcc,0xb2,0x9f,0xa, + 0x76,0x13,0xc2,0x2e,0xd2,0x7b,0x40,0x6a,0xf4,0x47,0x2c,0x57,0xf2,0xac,0x26,0x12, + 0x15,0xcb,0x13,0x85,0x5f,0x71,0xf4,0x74,0x2,0x5d,0xeb,0x9b,0x89,0x15,0xd9,0xfb, + 0x52,0x63,0xf2,0xe2,0x97,0xb1,0x94,0x8b,0xce,0x56,0x62,0x41,0x99,0x23,0xe5,0xf7, + 0x65,0xa1,0xda,0x32,0x72,0x4e,0x91,0xeb,0xf2,0xd4,0x57,0x7e,0x8c,0x2,0x9c,0x54, + 0x53,0x48,0xb9,0xeb,0x6b,0xdb,0x80,0xdc,0xb6,0xab,0xc2,0xdf,0x46,0xa5,0x55,0xe0, + 0x94,0xa0,0xb,0xa1,0x92,0x18,0xd,0x58,0xca,0xe7,0xc8,0xd0,0x18,0xe0,0xb1,0x2, + 0x39,0x6a,0xed,0x59,0xdf,0xde,0x75,0x8b,0x36,0x0,0x29,0xb0,0x93,0x5a,0xbd,0x4f, + 0x7c,0xfa,0x91,0x20,0xd7,0xfa,0x64,0x56,0x6d,0x81,0x90,0x78,0x8e,0x5a,0x68,0x19, + 0x33,0x58,0x15,0xa2,0x7c,0x4c,0x9,0x46,0x95,0xe3,0xe2,0x70,0x34,0x50,0x53,0x2d, + 0x92,0xe8,0x58,0xc,0xdb,0x74,0x18,0xd0,0xda,0xb0,0xbb,0xc7,0x52,0x7f,0x54,0x98, + 0x62,0x18,0xcf,0xed,0x56,0x78,0x4c,0xb7,0xe9,0xe7,0x76,0x23,0x44,0xed,0xdf,0x4e, + 0xe2,0x73,0xbb,0x85,0xc8,0x81,0xcf,0x40,0x4c,0x1b,0x32,0xb3,0x83,0xe8,0x29,0x93, + 0x60,0x39,0x33,0xe6,0x73,0x19,0xfa,0x76,0xdd,0xe,0xab,0x20,0xd9,0xc9,0xac,0xc0, + 0x13,0xa,0x71,0x2a,0x6a,0x78,0x12,0xa6,0x42,0x42,0x66,0xa2,0xb6,0x3,0x66,0x67, + 0xc5,0xa6,0x73,0xa4,0x1c,0xad,0x2c,0xdd,0xb5,0x3,0xab,0x23,0x1d,0x50,0xfb,0xe3, + 0xc0,0xaa,0x29,0x2,0xbf,0x64,0xf8,0x59,0x68,0xf6,0x9a,0x28,0x62,0x14,0x99,0xb1, + 0x19,0x79,0xb,0x79,0x61,0x28,0x12,0xa9,0x21,0xcc,0x38,0x84,0xb2,0x1c,0x14,0x17, + 0x64,0x3b,0x4b,0x59,0x13,0x85,0xde,0xb2,0x1c,0x82,0x5c,0xda,0x1e,0xae,0x22,0xa4, + 0x60,0x7a,0x17,0xe6,0x34,0x7a,0xc7,0x8f,0xf9,0xf8,0x94,0xa1,0x86,0xe3,0xe3,0x15, + 0x19,0x35,0x20,0x25,0x4,0x66,0x6d,0x5d,0x2,0x3,0xe0,0x9d,0x35,0xcb,0xed,0xc1, + 0xb7,0x9a,0x4,0xa7,0x50,0x6a,0x1,0x8c,0x2d,0x66,0x14,0x56,0xc3,0x28,0x39,0x81, + 0x51,0x70,0x13,0x8e,0xaf,0xed,0xf3,0x85,0xde,0x87,0xd,0x45,0x2c,0xf9,0xdd,0x28, + 0x56,0x94,0x49,0x15,0x82,0x51,0xff,0xac,0xca,0x48,0x20,0x4a,0x1,0x1a,0x93,0x30, + 0x1d,0xf3,0xc0,0x4a,0x1,0xa8,0xaa,0xf0,0x1,0x94,0xc2,0x44,0x6b,0x4a,0x82,0xdb, + 0x9a,0x7d,0x3f,0x8c,0x4c,0x8,0xf6,0x30,0x8e,0x46,0x9f,0x10,0xa1,0x27,0xc,0x55, + 0xba,0xb4,0xba,0xf3,0x9c,0x22,0xa3,0x8e,0x1a,0x46,0x91,0x99,0xde,0x47,0x15,0xa7, + 0xb1,0xce,0x9d,0x8c,0x93,0xe4,0x96,0xc4,0x19,0x98,0x55,0xf9,0xe3,0x88,0xd3,0x14, + 0x76,0xbe,0x39,0x9,0xd1,0xf8,0x13,0x4e,0x42,0x18,0xb1,0xe0,0x34,0x56,0xd7,0x76, + 0x7a,0x66,0x79,0x91,0x8f,0x25,0x36,0x6e,0x9,0x81,0x42,0x29,0x62,0xc2,0x8b,0x29, + 0x27,0xb1,0x56,0x15,0x1f,0x8a,0xf1,0x18,0xdd,0x83,0xc5,0xc3,0x48,0x62,0x3,0x29, + 0x39,0x20,0x31,0x5e,0x91,0x84,0x3,0x52,0xd3,0x88,0xd3,0x3a,0xd9,0x22,0x59,0x79, + 0x2e,0x59,0x67,0x8a,0x35,0x12,0xbd,0x55,0x3a,0xe3,0x4c,0xec,0xf6,0x96,0xb8,0x6a, + 0xf1,0xaa,0xbe,0x10,0xa6,0xe8,0x25,0x2a,0x2b,0x49,0xc8,0x54,0xd0,0x44,0xfb,0x3a, + 0xe,0xac,0xaf,0x23,0x95,0x8e,0x97,0x9c,0x38,0x4f,0x4a,0x82,0x62,0x6b,0x7e,0xbe, + 0x38,0xdf,0xad,0xdb,0x1,0x5d,0x8,0xb0,0x5,0x5a,0x1f,0x42,0x92,0x32,0xd5,0x36, + 0x37,0xae,0x97,0x51,0x1d,0x87,0xf5,0xdd,0xb0,0x6,0xad,0x3d,0x62,0x1d,0xb,0x13, + 0xd4,0x99,0x60,0x1f,0xdb,0x63,0xa,0xab,0xc2,0xd7,0x9a,0x35,0x98,0xd8,0xf7,0x7d, + 0x33,0x8d,0x30,0x7c,0x18,0x6e,0x2f,0x6,0xa6,0xae,0x72,0x8c,0x17,0xf5,0x85,0x50, + 0xfd,0x96,0xd3,0x55,0xbc,0x14,0xca,0xee,0x86,0x16,0xde,0xb4,0xd7,0xf5,0xa2,0x9d, + 0x4,0xbf,0x1d,0x2e,0x44,0x7,0xea,0xd5,0x7c,0x13,0xca,0xaa,0xbe,0x1,0xe7,0xc0, + 0xb,0x69,0x48,0x7a,0xf6,0x64,0x5,0xc1,0x4f,0x13,0x24,0x94,0xf6,0xb7,0x2a,0xc6, + 0x78,0x61,0x4c,0xcd,0x42,0xf2,0x94,0x81,0x33,0x4e,0x78,0xd7,0x2e,0xaf,0xe6,0x5d, + 0x73,0x13,0x44,0x3b,0xe5,0x4e,0x6c,0x14,0x96,0xb2,0x8a,0xc5,0xba,0x94,0x5b,0x91, + 0xb6,0x20,0x22,0xb4,0x20,0xc8,0x12,0xcc,0xa4,0x2f,0x9,0x5c,0x58,0x28,0x34,0xb7, + 0xb0,0x61,0x55,0x98,0xe8,0xce,0xc6,0x14,0xb7,0xa,0x55,0xb1,0x5e,0x43,0x39,0x2, + 0x55,0x16,0x89,0x2e,0xbf,0xdb,0x55,0x5a,0x4b,0x1,0x22,0x57,0x51,0xef,0x51,0xf, + 0xd5,0xdb,0xfa,0xba,0x43,0xaf,0x61,0xb2,0x93,0x58,0xe3,0x47,0x30,0xfe,0xcc,0x78, + 0xb3,0xec,0x9c,0x4a,0x64,0xeb,0x7f,0xba,0x1e,0xda,0x49,0x68,0x5f,0x7f,0xfe,0x5c, + 0x7f,0x6c,0x17,0x8b,0x66,0xa,0x65,0xbf,0x1b,0xb8,0xe5,0xc1,0xa0,0x6f,0xda,0xe5, + 0x6a,0x2e,0x3e,0xab,0x29,0xf8,0xdb,0xf6,0xa2,0x6f,0x36,0xd6,0xff,0x76,0xa8,0x97, + 0x57,0x93,0xf4,0x87,0xa2,0xed,0x8b,0x6e,0xa,0x7a,0xd4,0xd6,0xb7,0xcd,0xfd,0x14, + 0xf4,0xa4,0xeb,0xd7,0xdd,0xf6,0x51,0x27,0xcc,0x1d,0xa3,0x8f,0x9d,0x36,0xc3,0xb2, + 0xed,0xc4,0x2e,0xb4,0x93,0x46,0xcc,0x64,0x8d,0x40,0x94,0x6e,0xa5,0xb8,0xea,0x29, + 0xd5,0xdf,0xe6,0x8d,0x44,0x26,0xdf,0x74,0x98,0x33,0xe4,0xd3,0xe0,0xa5,0xf1,0x34, + 0x25,0x84,0x29,0x33,0xe4,0xca,0x6d,0xd,0x4f,0xb4,0x27,0xa,0x56,0xde,0x62,0x30, + 0xbe,0x7c,0xdd,0xcd,0xeb,0xe5,0xb2,0x59,0x89,0xef,0xf4,0x3a,0xa0,0x1d,0x74,0x38, + 0x53,0xb1,0x96,0x61,0xcc,0x97,0x58,0x42,0x26,0x82,0x55,0x64,0xe6,0x72,0xd5,0xf4, + 0xc3,0x43,0x48,0x60,0xf1,0xa,0x19,0x70,0x1a,0xbc,0x2,0x79,0x65,0xf7,0xc,0xab, + 0xf1,0x28,0x80,0xb5,0x78,0x32,0xf3,0x75,0x22,0xc8,0xaa,0x30,0x21,0xa7,0x31,0x56, + 0x12,0xd1,0x54,0x24,0x82,0x99,0x80,0x37,0xf3,0x5a,0x2c,0xda,0x70,0x2b,0xc5,0x20, + 0x11,0xa3,0xf0,0xf5,0xbc,0x12,0x1f,0x85,0xfc,0x52,0xc2,0x10,0xed,0x33,0x61,0xcc, + 0xc7,0xc6,0xf6,0xc7,0xef,0xe7,0x68,0xfc,0xed,0xbc,0x1e,0x2e,0x6a,0x51,0x5d,0xbe, + 0x13,0xff,0x98,0xea,0x44,0x9f,0x5f,0x5b,0xdd,0x5b,0x3a,0x1c,0xed,0xe1,0x3,0x1, + 0xa1,0x9a,0x6d,0xf,0x1f,0x5e,0x3b,0x8a,0x39,0xa7,0x49,0xb5,0x49,0x6b,0xbd,0x94, + 0xaf,0xad,0x2b,0x52,0x9e,0x1,0x85,0x14,0x3f,0x56,0x6d,0xd8,0xa3,0x87,0xd7,0x92, + 0x97,0x8c,0x68,0xb4,0xbb,0x3f,0x81,0x40,0x7f,0xb,0x73,0xba,0xc2,0x1,0x71,0xe6, + 0xa3,0x80,0xed,0x92,0xe1,0x4f,0x1e,0xe1,0x28,0xa8,0x3e,0xc2,0x61,0xe3,0x20,0x47, + 0x38,0xb4,0xbc,0x28,0x28,0x4b,0xd0,0x9,0xb1,0xba,0x7c,0xa,0x0,0x42,0xc2,0xdc, + 0xa3,0x8c,0x44,0x5b,0x64,0x11,0xa7,0x28,0x99,0x36,0x4f,0x29,0x4,0x4,0xc5,0xb0, + 0xf6,0x98,0x21,0xdf,0x31,0x52,0x6b,0xc7,0x9,0xad,0x83,0xd1,0x56,0xa1,0xbf,0x1f, + 0xe8,0xac,0xdc,0xc,0x41,0xf5,0x39,0xb2,0xed,0xa0,0x13,0x13,0x8d,0xb,0x47,0xa9, + 0x61,0xb4,0x6,0xe5,0x98,0x22,0x70,0x73,0x5b,0xc8,0x30,0xd8,0xd,0xd2,0x90,0x18, + 0xdb,0xa5,0x3c,0x99,0x1,0x16,0x9e,0x3c,0x3f,0x12,0x42,0x4e,0x9a,0xc8,0x50,0xd7, + 0x72,0x5d,0xf7,0x97,0x6b,0xa5,0x17,0x35,0xf7,0xd0,0x84,0xd0,0x52,0xe0,0xbb,0xce, + 0xab,0xad,0x12,0x65,0x5b,0x29,0x6d,0x9b,0x63,0x64,0xf1,0xad,0x8,0xaa,0x7c,0x2, + 0x87,0x80,0x60,0xbe,0x40,0x95,0x60,0x60,0x5b,0x4c,0x1,0x39,0x6,0x2d,0x9d,0x63, + 0x82,0xdc,0x12,0x9d,0x89,0x8a,0x81,0xa2,0xc2,0x31,0x55,0x6c,0x11,0x79,0x7f,0xf6, + 0xc5,0x8e,0xb4,0x22,0xfd,0xc9,0xa,0xfc,0x3c,0x93,0xad,0x2,0x2b,0x0,0x87,0x47, + 0x9e,0x8a,0x4f,0x9d,0xf6,0x38,0x38,0x30,0x50,0xda,0x67,0xe9,0xf6,0xcb,0x6c,0x97, + 0x41,0x8d,0xf,0x7,0x82,0x6b,0x7b,0x4d,0x70,0x55,0xa7,0x9,0x26,0xef,0xe1,0x61, + 0xfd,0x69,0xd5,0x2d,0x69,0x17,0x53,0xb0,0x34,0x93,0xad,0x1c,0xb1,0x73,0x5f,0x1f, + 0xec,0xa6,0xf2,0xa6,0xe9,0xaf,0x7,0x38,0x7,0xa1,0x15,0x84,0x4,0x8f,0xce,0xc5, + 0x70,0xdb,0x2d,0xd7,0xfb,0x5f,0xf5,0xb8,0x89,0x12,0x82,0xb4,0xd8,0x42,0x77,0xfa, + 0x93,0x28,0x94,0x3e,0x31,0x98,0xa2,0x94,0xcc,0x49,0x96,0x8b,0x29,0xd2,0x28,0xbc, + 0xd2,0xd9,0x7d,0xf7,0xa9,0x1e,0x4d,0x70,0x5c,0xa1,0xf0,0x7b,0x12,0x26,0x82,0x17, + 0xdf,0x48,0x3e,0x1e,0x69,0xe0,0x11,0xd8,0x5b,0x4f,0xc2,0x58,0xa3,0xa4,0xae,0x7d, + 0x27,0x10,0x42,0x81,0xe0,0xb4,0x78,0xd6,0x77,0x8b,0x85,0x69,0x11,0xab,0x3e,0x40, + 0x56,0x15,0xb5,0xfc,0x6a,0xc5,0x71,0xbf,0xee,0x56,0xeb,0xee,0x86,0x77,0x6f,0x1f, + 0xb4,0x70,0x35,0xb9,0x1c,0xfb,0xb4,0x5b,0xcf,0x9b,0x9e,0x8e,0x46,0x28,0xd9,0xfb, + 0x5b,0xdb,0x9,0xfe,0x4e,0x0,0x79,0xd5,0x82,0x7,0xf5,0x42,0x18,0x64,0xa9,0x50, + 0x9f,0xc8,0x4e,0x5e,0x56,0xa1,0xde,0xc5,0x51,0x7a,0x6d,0xa5,0x5a,0xf1,0x4b,0x93, + 0x50,0x8c,0xf0,0xad,0xb5,0xbc,0xbd,0x1f,0x2c,0x81,0xfb,0xbe,0x56,0x68,0xf7,0x9b, + 0x46,0xe8,0x3f,0xf5,0x12,0x9c,0xf1,0x76,0xfb,0x89,0x53,0x69,0x86,0xe9,0xf9,0x96, + 0x63,0x84,0xad,0x5c,0x0,0xb4,0x57,0x8,0x84,0x8f,0xfc,0x72,0xc1,0xfd,0xbf,0x12, + 0xb8,0x0,0x4a,0x9e,0xca,0xce,0xa,0x25,0x17,0x85,0xa6,0x0,0xd8,0x11,0x54,0x5, + 0xab,0x0,0x3a,0x27,0xa,0xde,0x12,0x3f,0xd3,0x91,0xf4,0xa1,0xa1,0x31,0xcc,0x7, + 0xa5,0xcf,0x17,0x38,0x86,0x1d,0x56,0x46,0x47,0xf5,0xac,0xbe,0x19,0x84,0x5a,0x14, + 0x55,0x44,0x79,0xfe,0xbb,0x8c,0x2a,0x26,0x22,0x9a,0xf,0x2d,0x17,0x3f,0x8e,0x69, + 0x2d,0x30,0xd6,0x23,0x32,0xb4,0x13,0xc7,0x43,0x3,0xd1,0x14,0x6a,0x4c,0x4,0xb4, + 0xaf,0xe,0x53,0xc8,0x60,0xf6,0xe7,0xc2,0xe8,0x8,0xf2,0x1d,0xa1,0xe3,0x85,0x94, + 0x33,0xb2,0x9d,0x2c,0x91,0x96,0xd8,0x4b,0x1c,0x9f,0xd8,0xbc,0x8f,0xb7,0x72,0xcd, + 0x21,0x79,0xa2,0xce,0x46,0xe4,0xb1,0x8e,0xc0,0x56,0x80,0x4c,0x3,0x66,0x2e,0x72, + 0x16,0x49,0x87,0x26,0x15,0x12,0xe2,0xc7,0x9,0xfc,0x78,0xaa,0x64,0xc,0x74,0xe8, + 0x6c,0xde,0xde,0xde,0xcd,0x87,0x40,0x74,0xa0,0xa4,0xfa,0x7e,0x5a,0xa0,0x87,0x65, + 0xd4,0x56,0x59,0x40,0xc7,0xcc,0xc7,0xa1,0x3d,0xf9,0x73,0x54,0x86,0xd3,0x9d,0xb4, + 0x22,0x3,0x3,0xd7,0xa3,0x16,0x74,0x38,0xab,0xe4,0xa3,0xc2,0x95,0xed,0x87,0x65, + 0xd3,0x6,0xc5,0x4e,0xc2,0xa8,0xc4,0xb6,0x8,0xb,0x59,0xe8,0x86,0xb,0x6c,0x38, + 0x49,0xb4,0x4c,0x37,0xec,0x2e,0xcc,0xd,0x21,0x18,0x85,0xb2,0x25,0xda,0x2d,0xec, + 0xde,0x24,0x6,0x6d,0x8a,0x4e,0xb5,0x6f,0xd8,0x3b,0x97,0x5b,0x15,0x16,0x55,0x52, + 0x9d,0x80,0xc9,0x4d,0x18,0xa2,0x58,0xce,0x2f,0xad,0x8e,0xf5,0x5a,0x79,0x94,0x22, + 0xf1,0xc9,0x1b,0x0,0x2e,0x95,0x75,0x4e,0xce,0x34,0x84,0xc4,0xbf,0xe4,0x86,0xe6, + 0x34,0x30,0x5e,0x77,0x74,0x40,0xbb,0x0,0xe4,0x57,0xab,0xd4,0xdb,0x2a,0x4f,0x3, + 0xe5,0x7c,0x47,0xb8,0x31,0x35,0x43,0x55,0x81,0x9a,0x90,0x99,0x50,0xb1,0xaf,0xe7, + 0x75,0x1b,0x94,0x3b,0xd9,0xe,0x9a,0x7,0x6a,0x19,0x22,0x31,0x75,0x5f,0x6,0x7b, + 0x2a,0x6c,0x3,0x76,0xdc,0x53,0xfc,0xa5,0x9,0xbf,0xea,0x87,0xdb,0xef,0x5a,0xe0, + 0x1,0xe6,0xe,0x88,0x4b,0xb3,0x62,0xa7,0xa0,0x68,0xd1,0x23,0x71,0xf1,0x45,0x26, + 0x5a,0x7b,0x24,0x20,0xe9,0xc6,0xdb,0x49,0xb4,0x46,0x86,0x20,0x73,0xfe,0x10,0x87, + 0x23,0xb2,0x5c,0x7d,0x29,0xd1,0x88,0xca,0xe8,0x71,0xe0,0xc0,0x72,0xa8,0xa,0xfd, + 0x7d,0x8d,0x1b,0xb3,0xba,0x5c,0x3c,0x22,0x2b,0xe5,0x87,0xc1,0x5c,0x84,0x9c,0x3c, + 0x33,0x7,0xf5,0xd9,0xa8,0x66,0x60,0x93,0x2c,0xa1,0xf3,0xef,0x36,0xa0,0x4e,0x85, + 0x8e,0xc6,0xa3,0xc9,0x52,0xa9,0x48,0x50,0x8b,0xac,0x1c,0x91,0x6b,0x4d,0x37,0x19, + 0xd3,0x67,0x9a,0xfe,0x88,0xb5,0x6d,0x31,0xf2,0x4c,0x6e,0x47,0xa4,0x7b,0xb9,0xdb, + 0x80,0xc5,0x39,0xe6,0x28,0xb6,0x9a,0x22,0x71,0xa6,0xd6,0x52,0x17,0xd6,0x3f,0x88, + 0xc4,0xa3,0xfe,0x2b,0x4,0x4f,0xdd,0x8a,0xcf,0x5e,0x76,0xcb,0xeb,0xf3,0x37,0xe2, + 0xf,0xf8,0xe6,0xc5,0xe6,0x68,0x6d,0xe2,0x10,0x4,0xae,0xf8,0xe0,0x4a,0x51,0xd1, + 0xcb,0x37,0x8a,0x51,0xe1,0x94,0x25,0xce,0xf0,0x23,0x7d,0x2d,0xbd,0x1e,0xb0,0x11, + 0x9,0x99,0x64,0xb0,0x44,0xc3,0x67,0x96,0x8b,0xd4,0xa1,0xb7,0xfe,0xa8,0x8,0x84, + 0x7e,0x9e,0x67,0x9c,0xb9,0x1c,0xfc,0xc2,0xac,0x20,0xc3,0x37,0x9c,0x63,0xcd,0xd3, + 0xfd,0x11,0xcc,0x6d,0x25,0xb3,0xa6,0x16,0x27,0xc9,0x62,0xb9,0xda,0xe3,0x86,0x32, + 0xdc,0xc9,0xd8,0xe1,0x9b,0x21,0x42,0x16,0xf0,0xb5,0x93,0x87,0x1a,0x62,0x8f,0xb, + 0x34,0x55,0x1,0x8c,0x57,0x64,0xbe,0xa,0x2d,0xc8,0xad,0xb0,0xd0,0x5b,0xdb,0xc2, + 0x25,0xa9,0x9c,0xe9,0xd4,0xbb,0x48,0xdd,0xde,0x35,0x20,0x77,0xcc,0x6,0x52,0xa, + 0x71,0xf,0xf2,0x7a,0xf,0x17,0x2e,0x81,0x5d,0xc3,0x59,0x47,0x50,0xd4,0x5,0xca, + 0x99,0x94,0x44,0xa7,0xc1,0x57,0x72,0x10,0xe2,0x8f,0x98,0x7d,0x26,0x86,0x8b,0xf7, + 0x19,0x92,0xef,0x5b,0x98,0x69,0xc,0x6b,0xb3,0xea,0x3a,0x58,0x5,0xe9,0x8,0xec, + 0x36,0x91,0x6d,0xae,0x20,0xb3,0x1f,0x2a,0x6b,0x17,0x4f,0x98,0x22,0xef,0x37,0xb8, + 0x3f,0xc2,0x19,0x7d,0x27,0xba,0x1a,0x74,0x5e,0x14,0x29,0xad,0x26,0x63,0xed,0x4b, + 0x84,0x84,0xd4,0x91,0xb1,0x7e,0xc8,0x95,0x2d,0x18,0xdc,0x6d,0x23,0xd3,0x28,0xa4, + 0xd,0xa7,0xab,0x5,0x70,0x76,0x19,0x6e,0xe8,0x87,0x41,0x70,0xfb,0xa1,0xf8,0xe2, + 0xb0,0xbe,0xac,0x7,0xf8,0xd8,0x53,0x27,0x4,0xa3,0x14,0xf4,0x6a,0xdd,0xbf,0x96, + 0xbd,0xb1,0xc2,0x5e,0x8b,0x14,0x2,0x38,0x96,0xe7,0x94,0x52,0x4c,0x7d,0x1d,0x98, + 0xf3,0x3a,0xf2,0xc5,0xcf,0x38,0xe4,0x38,0x88,0x22,0x4e,0x51,0x8c,0x6,0xc3,0xe9, + 0x8c,0x77,0x20,0xe3,0x74,0xda,0x5,0xe0,0x74,0xa0,0x92,0xba,0x2b,0xb3,0xf3,0x9, + 0xbc,0x4,0x26,0xad,0x5c,0xf3,0xdb,0x78,0xa0,0x60,0x72,0x8e,0xda,0xcb,0x4e,0xfc, + 0xd,0xee,0xa7,0x84,0x3a,0x8c,0xc4,0x87,0x71,0x4,0xe6,0x55,0x2c,0x2a,0x7a,0xae, + 0xcf,0xa2,0x85,0xc8,0x13,0x5,0xc7,0x2a,0xa2,0x46,0xd5,0x70,0x50,0xdf,0xd6,0xd7, + 0xc3,0x6a,0x8d,0x75,0x64,0xd4,0x6d,0xf8,0x70,0x1d,0xd2,0x32,0x9e,0x5,0xa5,0x51, + 0xa1,0xd1,0xa9,0x85,0xe7,0xb2,0xd1,0x40,0xda,0x2,0x1f,0x1e,0xed,0xee,0xf3,0xa1, + 0xef,0xee,0x1a,0xfd,0xd3,0x48,0x80,0x8b,0x76,0xd1,0xae,0x20,0x68,0x26,0xab,0x76, + 0xd0,0xd4,0x36,0xda,0x98,0x2d,0x3a,0x7b,0xf6,0xf7,0x53,0xde,0x45,0xc1,0x3b,0x5a, + 0x90,0xda,0x85,0x10,0xd5,0xbc,0xa3,0xd5,0xe4,0x76,0xbf,0xdf,0x2,0xd3,0x43,0x2b, + 0xf5,0x74,0x69,0x18,0xd,0xda,0x9a,0x78,0xe,0x58,0xb0,0x76,0xd1,0x96,0x64,0xd6, + 0x19,0xf1,0xe2,0x4a,0xfd,0x5e,0xcc,0x82,0x10,0x83,0xb1,0x1b,0x72,0xa4,0xdd,0x11, + 0xa8,0x79,0x4a,0x7b,0x3f,0x21,0xda,0x67,0x91,0x2b,0xed,0x93,0xf8,0x42,0x42,0xd8, + 0xeb,0xa,0x8d,0x64,0x6c,0xcb,0x6e,0x71,0x53,0x8b,0x5,0x97,0x6,0x83,0xb5,0x2e, + 0x33,0xd5,0xe1,0xd2,0x35,0x25,0xca,0x2,0xac,0x8b,0x38,0xda,0x89,0x6c,0xc,0x8c, + 0x50,0xe8,0x94,0x5a,0xff,0x6a,0x66,0xac,0x8d,0x4c,0x7e,0xfc,0x93,0xd6,0xc6,0x2b, + 0x73,0x1a,0x31,0x42,0x55,0x41,0xb5,0x16,0x51,0xf7,0xf6,0x35,0x4,0x94,0x8a,0xde, + 0x16,0x3b,0x5,0xd,0x41,0xce,0xa5,0x71,0x11,0x6e,0x99,0x72,0xc5,0x18,0x89,0xb2, + 0x99,0x12,0xa1,0xbd,0xb,0x80,0x80,0xc7,0xca,0x6,0xc0,0xe8,0xb0,0x24,0xe,0x8e, + 0x5c,0xbb,0x0,0xfb,0xd9,0xf3,0xe9,0x94,0xfb,0x4b,0x32,0x42,0x2d,0x51,0xe9,0xb7, + 0x6b,0x91,0x61,0x20,0x88,0x8b,0x96,0xa7,0xe8,0x88,0x79,0xf7,0xea,0x99,0x1e,0xc6, + 0x49,0xb7,0x5c,0xb,0x33,0xa7,0xbe,0x11,0x3,0x89,0xa,0x76,0x62,0x56,0xaa,0x1a, + 0x74,0xb1,0x74,0x83,0x4d,0x74,0x54,0x3a,0x3e,0xfe,0x8e,0xfd,0x2c,0xb1,0x9f,0x67, + 0x18,0x9,0x5e,0xba,0xbd,0x3e,0x14,0x93,0xbf,0x5a,0x89,0xb9,0x29,0x76,0xb2,0x82, + 0xda,0x76,0x31,0x4c,0xbc,0x2e,0x3a,0xb4,0x1d,0x76,0x98,0xd4,0xd7,0x53,0xdd,0xa0, + 0x5d,0xe0,0xfb,0xfa,0x6e,0xe8,0xeb,0xa0,0x2,0x9e,0xa7,0x67,0x91,0x50,0x21,0xa1, + 0x17,0x9f,0xe7,0x56,0xa5,0xfb,0x5f,0xe9,0xfe,0x57,0xb2,0x3a,0x21,0x33,0xff,0xc4, + 0xb6,0x13,0x73,0x10,0x27,0xf7,0x9a,0x3f,0x31,0x39,0x6c,0xf7,0xdc,0x3f,0x59,0x95, + 0x4,0xf4,0x4f,0x56,0x5e,0xea,0x28,0xc9,0x38,0x61,0xe5,0x95,0x3d,0x67,0x4e,0x58, + 0x3,0x15,0x6c,0xaa,0x95,0x76,0x55,0xc4,0x31,0x7,0x46,0x1a,0x38,0x93,0x20,0x52, + 0x61,0x6e,0x74,0x5,0xa7,0xcb,0x15,0x89,0x23,0x65,0x14,0x68,0xc9,0x55,0x13,0x2d, + 0x19,0xa0,0xd3,0x12,0x8a,0x4,0x6f,0x4b,0x6,0xe2,0xb4,0x24,0xca,0xc1,0xaf,0x18, + 0x26,0xbe,0x96,0x28,0x70,0xdc,0x52,0x3a,0xd9,0x52,0x3a,0xd1,0x92,0xd5,0x98,0xdc, + 0x66,0xb4,0x87,0xda,0x6d,0xa3,0x9c,0x6c,0xa3,0x9c,0x68,0xa3,0x92,0x3e,0x30,0x7f, + 0x33,0x6,0x38,0x6a,0x29,0x8a,0xa7,0x5a,0x32,0xc1,0x27,0x4e,0x4b,0x51,0x42,0xdd, + 0x56,0x4e,0x4b,0x16,0x38,0x6e,0x69,0x82,0x17,0xc,0x64,0xdc,0x52,0x21,0x3,0x2c, + 0xfc,0x2d,0x19,0xe0,0xa8,0xa5,0x78,0x92,0x17,0xe2,0x9,0x5e,0x40,0x1f,0x73,0x3c, + 0xc1,0xb,0x16,0x38,0x6e,0x69,0x92,0x17,0xe2,0x9,0x5e,0x80,0x53,0x9f,0x30,0x2e, + 0x26,0x5a,0x32,0xc0,0x71,0x4b,0xb0,0xef,0xc5,0xd5,0x44,0x63,0x6,0x38,0x6a,0x2f, + 0x1,0x2f,0x6f,0x32,0xc1,0x17,0x16,0x38,0x6a,0x2f,0x81,0x70,0xa6,0x24,0xf1,0xb7, + 0x67,0x81,0xe3,0xf6,0x40,0x13,0x48,0x26,0xb8,0xc3,0x2,0xc7,0xed,0x91,0x28,0x13, + 0xb7,0x35,0x5,0x22,0x6d,0x69,0xc5,0xaa,0x99,0xf7,0x35,0xf8,0x29,0xe2,0x8c,0x86, + 0x3b,0x46,0xf9,0x96,0x2d,0x3a,0x93,0x2e,0x3b,0x28,0x52,0x12,0x36,0x41,0x9,0x5b, + 0xc0,0x21,0x65,0x2a,0x1a,0xb0,0xca,0x50,0x51,0x49,0xa4,0x3f,0x49,0xa4,0xa7,0xda, + 0xfd,0xfc,0x4d,0x60,0x22,0x16,0xb9,0x89,0xab,0x0,0x2a,0x1c,0x95,0x5a,0x8a,0x8, + 0xb1,0x96,0x56,0xe2,0xd0,0x60,0x54,0xff,0xc8,0xf0,0xfc,0x46,0x96,0x8e,0xce,0xc8, + 0xf0,0xec,0xca,0xd4,0x9a,0x6b,0x4,0x76,0x1c,0xb0,0x22,0x75,0x54,0x28,0xbc,0xa, + 0x5d,0x7d,0xe2,0x87,0x1d,0x4b,0x10,0x99,0xce,0x67,0xf5,0xf5,0xfc,0xaa,0xbe,0x2, + 0x3d,0xb5,0x70,0x7c,0xb0,0xb1,0xd9,0x13,0x9f,0xe9,0xd0,0x72,0xab,0xa0,0x96,0xd2, + 0x61,0x98,0x88,0x6,0x94,0x36,0x28,0x1a,0xfb,0x36,0x60,0xce,0x41,0x3b,0xca,0x6f, + 0x3,0x7a,0x1d,0x84,0x1a,0xf9,0x8,0xb1,0x7,0xa7,0x78,0xd2,0x69,0x28,0x6c,0xd8, + 0x12,0xaf,0xc9,0xbd,0xb,0xe2,0x0,0x8e,0x2,0x19,0x74,0x62,0xea,0xcf,0x9,0x3e, + 0x6b,0x20,0x1f,0x79,0x37,0xbe,0xd,0xb8,0xcf,0xc,0xf6,0xc4,0x38,0xd8,0xdf,0xe7, + 0xa0,0x99,0xdb,0x23,0x54,0x12,0x2a,0x5f,0xdb,0x95,0x87,0x87,0xbe,0xd,0x4c,0xdc, + 0xe7,0x78,0x10,0x99,0x96,0x57,0x91,0x8c,0x3a,0xd3,0x35,0x65,0x91,0x7f,0x36,0x54, + 0xf9,0x91,0xe,0x20,0x33,0xf8,0x31,0x71,0x33,0xd2,0x51,0x1b,0x9f,0x9e,0xa,0xde, + 0x32,0x4,0x76,0x19,0x62,0x4e,0x90,0xe8,0x1e,0x25,0x9c,0xc0,0x6,0x8,0x46,0x9, + 0xef,0x93,0x89,0x38,0x8d,0xd9,0xcc,0x66,0x24,0x40,0x90,0xaf,0xb5,0x89,0x8,0x8f, + 0xf8,0x5a,0x64,0x36,0x3c,0xd0,0x69,0x42,0x6f,0x20,0x2a,0x4e,0xd2,0x10,0x18,0x57, + 0x96,0x3a,0x9e,0xdf,0xe7,0x0,0x26,0x85,0xbe,0xd,0x48,0xdc,0x2c,0x4,0x56,0xd2, + 0x16,0xa,0xed,0x7e,0x8c,0x12,0x4e,0x90,0x91,0x89,0x65,0x4,0xa,0x30,0x50,0x3f, + 0xc8,0xb7,0x1,0x8d,0x44,0x8f,0x52,0x46,0x51,0x66,0x76,0xad,0x19,0x1,0x31,0xe7, + 0x4b,0x4e,0xa1,0x87,0x5d,0x70,0x2,0x9f,0x3,0x8f,0x0,0x66,0xee,0x20,0xd4,0x89, + 0x3d,0x10,0xf0,0x41,0x94,0x9a,0xc3,0x53,0x8e,0x6f,0x82,0x31,0x12,0x7,0x5f,0xeb, + 0x9b,0xbc,0xfe,0x8a,0xec,0xc7,0xbc,0x47,0x95,0x9,0xbf,0x8d,0x73,0x4e,0x62,0xcf, + 0x8,0x62,0x3e,0x4d,0x95,0xb9,0x61,0xc6,0x9,0x88,0x1e,0x53,0x71,0x2,0xad,0xc7, + 0x38,0x2d,0xd8,0x40,0xc,0x8e,0xae,0x19,0x9c,0xaf,0x42,0x35,0x21,0x7f,0x2a,0x1b, + 0xfe,0x5a,0x72,0x2,0xab,0xf4,0x25,0xe,0x49,0xe6,0x9f,0x25,0xab,0x1f,0x39,0xeb, + 0x66,0x74,0xe5,0xc8,0x19,0x2,0xb9,0xce,0xec,0x34,0x61,0x56,0x9a,0xaf,0x5c,0x45, + 0xf4,0x4a,0xbe,0x74,0x55,0xe9,0x9f,0xa5,0xca,0xce,0x12,0xfd,0x80,0x2a,0xbb,0xd2, + 0x56,0xc2,0x19,0x5d,0xdb,0x6,0x97,0xee,0x73,0xc0,0x71,0x20,0xef,0x14,0x1b,0x7c, + 0x23,0xc7,0xe0,0xe2,0x32,0x41,0x37,0x17,0x8a,0x53,0x8e,0xcf,0x56,0x99,0x51,0x68, + 0x41,0x56,0x70,0x2,0x12,0xa1,0x53,0x72,0x2,0x1d,0x6f,0x93,0x70,0x2,0xb3,0xce, + 0x5,0x47,0x37,0xfa,0x5c,0xcc,0xf1,0xed,0xe7,0xcc,0x7,0xac,0x9d,0x73,0x15,0x9f, + 0xa0,0x3c,0x50,0xd7,0xef,0xa0,0x4b,0x7,0xbf,0xff,0x8f,0x38,0xe7,0x64,0xd6,0x27, + 0xcf,0xc8,0xa,0xcb,0x1,0xac,0x5c,0x1b,0x7e,0x19,0x2f,0xd6,0xab,0x13,0x17,0xac, + 0xdc,0xdc,0x8e,0x43,0xa1,0x4e,0xca,0x23,0xff,0x20,0xcc,0x99,0xba,0x83,0x6e,0x57, + 0x61,0x3c,0x2,0x6b,0x36,0x70,0xd6,0xd0,0x11,0xe8,0x9a,0x2a,0xe1,0x54,0xa3,0xf8, + 0xf4,0x98,0x6a,0x26,0xaf,0x9b,0x7e,0x58,0xd5,0x8b,0x6,0xe2,0xd1,0xe2,0x70,0x27, + 0x23,0xd1,0x36,0xa0,0x9b,0xc4,0xa1,0x54,0x57,0x5e,0x6b,0xdd,0x24,0x16,0x95,0xbe, + 0x92,0x2e,0xd4,0x9a,0x6f,0xe2,0x24,0x4e,0x75,0xdf,0x42,0xd5,0x21,0xc5,0x2c,0x98, + 0xd5,0x6b,0x38,0xbc,0xd1,0x1d,0xaf,0xed,0xae,0x4d,0x63,0x58,0x2d,0x6d,0x16,0x6, + 0xe4,0xf0,0x83,0x21,0x68,0x1d,0xb5,0xbb,0xb9,0xef,0x82,0x6a,0x27,0x2a,0x77,0xb2, + 0xca,0x76,0xbb,0x90,0xde,0x9c,0x28,0x1b,0x84,0xa1,0x5f,0x7,0xaf,0x65,0x67,0x2f, + 0x2,0x73,0xca,0x4,0xbb,0x9c,0xbd,0xab,0xa4,0x0,0xce,0x99,0xc4,0xb6,0x86,0x18, + 0x9f,0x36,0x8f,0x10,0x44,0x18,0xd7,0x6b,0xc,0xc9,0xf8,0xe2,0xc8,0x85,0xf5,0x24, + 0xf0,0xa0,0x41,0x2,0x50,0xb7,0xb4,0x2c,0x1,0xd9,0xce,0x18,0x7e,0x99,0x79,0xeb, + 0x47,0xed,0x15,0xef,0xb3,0xa,0x8a,0x3,0xea,0x67,0x36,0xd0,0x4a,0xfa,0xcc,0x15, + 0x90,0x90,0x5a,0xed,0xa9,0x64,0x54,0x95,0x4d,0x0,0x50,0x70,0x80,0x65,0x6b,0x2f, + 0x60,0x46,0xaf,0x1c,0x5f,0xd8,0xad,0xc2,0x6e,0x84,0x33,0xb,0xc0,0x9d,0xc1,0xdb, + 0xb1,0x2a,0x9,0x94,0x3b,0xdb,0x37,0xa6,0x4a,0xb,0x8e,0x3,0x73,0x4,0x60,0x8, + 0x33,0x4d,0x68,0xa0,0x2b,0xa,0x66,0x27,0x4d,0x2b,0x5a,0x67,0x25,0x25,0x9e,0x36, + 0x12,0xe,0x28,0x21,0xa,0x5b,0x14,0xa1,0xd6,0x44,0x38,0x9b,0xd3,0xa,0x90,0x16, + 0xbf,0x54,0x86,0x61,0xae,0xb6,0x5e,0x50,0xf1,0x48,0x3,0x2,0x2f,0xac,0x20,0x94, + 0xe1,0xa6,0xc,0xa0,0xb7,0x35,0x5f,0x8f,0x72,0xed,0x80,0x38,0xf6,0x81,0x23,0x7d, + 0xb0,0x1a,0x53,0xe6,0xc2,0xbb,0x25,0x2c,0xf0,0xc9,0xed,0x64,0xc4,0xa2,0x9e,0x4c, + 0xa5,0xea,0xcb,0xdb,0xbd,0xbd,0xc5,0x80,0x1f,0xf0,0x98,0x5a,0xe3,0x10,0x43,0x4e, + 0x2f,0xf8,0x59,0xc1,0xee,0xe2,0xb6,0x5e,0xdf,0x7,0xd9,0x4e,0xc1,0xce,0x9,0xb4, + 0x2b,0xde,0xc6,0x69,0x8,0xe6,0x97,0xa9,0x39,0xb6,0x72,0x74,0x7d,0x63,0xb8,0x48, + 0xe0,0x78,0xe3,0x33,0x4,0x65,0x4f,0x21,0xb4,0x4,0x59,0x7,0x22,0xc2,0x2a,0x80, + 0x50,0x22,0x9c,0xc9,0x63,0x45,0xe2,0x4,0x7f,0x7c,0x79,0xff,0xf9,0x7e,0xd1,0xf5, + 0x57,0x75,0x90,0x82,0x77,0x9a,0xc4,0x47,0x9b,0x3e,0xd9,0x88,0x1c,0xdb,0x27,0xdb, + 0xcf,0x32,0x12,0xbc,0xb8,0x95,0x49,0x3f,0xb4,0xfc,0x6d,0x22,0x53,0xa4,0xc1,0x86, + 0x60,0xd6,0x4f,0x3a,0x84,0xd1,0x59,0xc3,0xc,0x35,0xe8,0xc7,0x8e,0xd,0x21,0x3a, + 0x2a,0x96,0x13,0x6d,0x1a,0xf6,0xee,0x77,0xeb,0xee,0x2,0xc3,0xbc,0x4b,0x16,0xf3, + 0xf2,0xbf,0x32,0x66,0x32,0xb4,0xc9,0xfe,0x93,0x48,0x41,0xd5,0xff,0x1a,0xc2,0xb1, + 0xc4,0x92,0x79,0xa2,0xb1,0x1e,0xec,0xfd,0xcf,0xd0,0x5b,0x75,0xf6,0x3,0x7e,0xa5, + 0x95,0x13,0x92,0xb6,0x61,0x18,0xeb,0xfb,0x5e,0x8e,0xa3,0x60,0x97,0x48,0xc7,0x27, + 0x53,0xbf,0xe8,0x40,0x2a,0xad,0xc5,0xfd,0x88,0xa1,0x1c,0xf7,0xf5,0x42,0xba,0x87, + 0x36,0xc7,0xc7,0xfd,0x9d,0xf8,0xa9,0xac,0x74,0xec,0xf2,0x8f,0x19,0x18,0xfd,0x54, + 0x1e,0x1c,0xd8,0x69,0x70,0x69,0xf6,0x23,0x1a,0xd0,0x52,0x58,0x1,0xcf,0x11,0xc6, + 0x47,0xb0,0x97,0x81,0x8a,0x2c,0xc,0xdd,0xd8,0xc3,0xd8,0xc6,0xac,0x58,0xa4,0x94, + 0xab,0x65,0x4e,0xd8,0xca,0xb3,0x76,0x35,0xbf,0x69,0x6e,0x84,0xa0,0xca,0x4a,0xef, + 0x24,0xff,0x6d,0xc2,0x33,0x52,0x16,0x34,0xd4,0x73,0x49,0x3f,0xc2,0xc,0x4f,0xc9, + 0x62,0x12,0x84,0x75,0x65,0x15,0x3d,0xee,0x70,0x22,0x0,0x66,0xfa,0x5e,0x31,0xe5, + 0x2e,0xe1,0xf8,0x15,0xd1,0x9,0x65,0x40,0xf,0x25,0x23,0xe,0x1b,0x46,0x96,0xd9, + 0x3,0x94,0x9c,0x3,0x6c,0x90,0x7a,0xe6,0x3,0xcc,0x82,0x8a,0x37,0x60,0x8d,0x7e, + 0x62,0xa8,0x11,0x88,0x51,0xc4,0xc,0x5,0x86,0x63,0x87,0x5c,0x13,0x65,0x84,0x6, + 0x61,0x66,0x82,0xac,0x68,0x5,0xf2,0x2,0x7b,0x49,0x2b,0x28,0x8d,0xae,0xcb,0x11, + 0x8e,0x4d,0x90,0x13,0x55,0xd2,0x67,0x4d,0x27,0x54,0x95,0x12,0xc4,0x6,0xd9,0xb1, + 0x84,0x89,0x22,0xbe,0x93,0x52,0x3a,0x5f,0xdf,0xcc,0xd4,0x99,0xaf,0x13,0xef,0x52, + 0x62,0x81,0x84,0x66,0xe6,0x4e,0x16,0x12,0x5d,0x5,0x2a,0xe4,0x29,0x8f,0xd4,0xc1, + 0x68,0xa5,0xca,0xcc,0x9,0xe4,0x7d,0xb7,0xbc,0xbe,0xaf,0x97,0xd7,0xd0,0x76,0xf2, + 0x63,0x1a,0x6,0xab,0x3d,0x35,0x4d,0xe3,0xc1,0x85,0xc,0xec,0xb4,0x54,0x62,0xec, + 0x4d,0x60,0xb2,0x79,0x29,0x9,0xa4,0x3f,0x12,0x2,0x39,0xa6,0xb1,0x11,0x58,0xee, + 0xb9,0x41,0x4c,0xca,0x69,0x66,0x1,0x2c,0x26,0x96,0x6d,0xce,0x9,0xb4,0x65,0x5b, + 0x72,0x2,0xeb,0xbf,0x88,0x39,0xbe,0xf1,0xd0,0xe5,0x8c,0x40,0xae,0x3f,0x8f,0xd3, + 0x9a,0x8d,0x60,0x54,0x61,0x7,0x48,0x11,0x9b,0x2f,0xca,0x69,0x47,0x6,0xda,0x14, + 0x3e,0x9a,0xc4,0x6f,0x8e,0x34,0x53,0x6,0x6,0x1,0x30,0x3,0x3,0xca,0xa5,0xaf, + 0xdc,0x5f,0x19,0xc2,0x2a,0xd5,0x6d,0x3e,0xda,0xd2,0x77,0xa7,0xbc,0xe1,0x66,0x44, + 0xc4,0x7b,0x20,0xd3,0xe6,0xc4,0xde,0x96,0x2a,0xbd,0x8,0x29,0x6b,0xa5,0x4a,0xc6, + 0x91,0xf9,0x8c,0xcc,0x98,0x6,0x63,0x31,0xdc,0xc8,0x4d,0xcd,0x31,0x7b,0xb9,0x70, + 0x6d,0xda,0x7e,0x58,0x83,0xa,0x6b,0xe3,0x3,0xc0,0xe0,0x15,0xb4,0x3a,0x7b,0xcc, + 0x7b,0x10,0xac,0x20,0x5d,0x53,0x29,0xac,0xa4,0xc3,0x7,0xce,0xdb,0xcf,0x66,0x23, + 0xf0,0xbe,0xf6,0x7,0x99,0x16,0xde,0xc0,0xa5,0xc2,0xf3,0xb7,0xc3,0xed,0xdd,0xd0, + 0x7,0xf9,0x4e,0xa,0xff,0x7,0x24,0x36,0x36,0xdf,0xc9,0xc4,0xde,0x89,0x27,0x36, + 0xb2,0x28,0xc3,0x2b,0x77,0xf6,0x2,0x48,0x2,0xb7,0x41,0xb0,0x3d,0x13,0x88,0x90, + 0xbb,0xa1,0x9,0x29,0x4c,0xc8,0xf8,0xc4,0xff,0x0,0xee,0x12,0x38,0xc7,0xe8,0x18, + 0xd7,0xc0,0x10,0xcb,0xd8,0x8d,0x6d,0x7e,0x33,0x5c,0xce,0x5b,0x8c,0x93,0x14,0x8a, + 0x16,0xd,0xc9,0x9d,0x8e,0x8d,0x7e,0xf,0xf4,0x62,0xeb,0x28,0xe3,0xcd,0x6d,0xdb, + 0x96,0xcc,0xbd,0xc3,0xc5,0x55,0xfb,0xb1,0x81,0xf0,0x6d,0xee,0x74,0x50,0xbf,0x65, + 0x84,0x40,0x1e,0x92,0xfd,0xf9,0x3a,0xc0,0xa3,0x1f,0x5f,0x8e,0x12,0x5,0x72,0xd, + 0x63,0x2c,0x36,0xb6,0xa0,0x8f,0x97,0xae,0xd,0xb3,0xfb,0x79,0xe9,0x9a,0xf9,0xd2, + 0x10,0x5a,0xaf,0xcd,0x4d,0xb1,0x6b,0x73,0xa0,0x4d,0x14,0x2,0x84,0x13,0xea,0x58, + 0xc3,0x4d,0xfb,0x4e,0xd,0x51,0x16,0xa8,0xdb,0xbe,0xf,0x63,0xd8,0x36,0x9c,0x18, + 0xd7,0x8f,0x57,0x82,0xcb,0x72,0x1a,0x70,0x81,0x3b,0x39,0xd1,0xab,0xa,0x88,0xd5, + 0xb8,0x86,0xe5,0x7b,0x4a,0xd6,0xfc,0xab,0x45,0x5d,0x2f,0x2f,0xea,0x7a,0x8d,0x21, + 0x1b,0x62,0x89,0x63,0xa7,0x2,0xcb,0x91,0xa2,0x82,0x12,0x2b,0x80,0x5,0x37,0xb1, + 0x41,0x7b,0xf3,0xae,0xbd,0xa8,0x17,0x2b,0x61,0x11,0xa,0xea,0x72,0x33,0xb5,0xe, + 0xf5,0x28,0x21,0x43,0x9f,0x60,0x13,0xa8,0xad,0x7a,0xfa,0x4,0xef,0x2c,0x61,0x54, + 0xb,0x68,0x2b,0xbe,0x56,0xde,0xd4,0xeb,0xb9,0x30,0x3a,0xaf,0xe0,0xce,0x40,0x1a, + 0xb1,0x4,0x49,0xe1,0xe8,0xb6,0x0,0x4,0x1a,0xa9,0x7c,0x48,0x59,0xa,0x9c,0x33, + 0xb7,0x7e,0x4c,0xad,0xd6,0x59,0x91,0x4b,0x80,0xc7,0x16,0x26,0x17,0x70,0x6e,0x5d, + 0x81,0x5c,0xe0,0x29,0x0,0x7a,0x4,0xb9,0xf,0x68,0x6e,0xdd,0x84,0x34,0x8b,0x9b, + 0x19,0x47,0x5f,0x8b,0x8f,0xc,0xcc,0xcf,0x92,0xe6,0xf6,0x83,0x4b,0xb,0x9e,0xfb, + 0x15,0x9b,0x63,0x9e,0x34,0xaa,0xbe,0x76,0x61,0x35,0xc2,0x22,0x52,0x1b,0x9e,0x28, + 0x9b,0x7,0x27,0x2a,0x6a,0xb9,0xd,0xb4,0x87,0x43,0x9d,0x90,0x1e,0x98,0xe0,0xca, + 0x19,0x3,0x5b,0x7f,0x8c,0xdd,0x7a,0x5b,0xe6,0xa2,0x8,0x22,0x5a,0x9c,0x19,0x19, + 0x1e,0xd3,0xe2,0x9c,0x9d,0x96,0xda,0x66,0x68,0xb2,0xb3,0x98,0x37,0x40,0x73,0x9d, + 0x95,0xbc,0x36,0x33,0xdb,0x36,0x81,0xf,0xab,0x72,0x9c,0xd2,0xa4,0xa5,0x1e,0x5b, + 0xf4,0x1f,0xd1,0x5e,0x47,0xa1,0x4f,0x31,0x20,0x10,0xd0,0x58,0x78,0x65,0xd4,0x9d, + 0x1b,0xee,0x44,0x94,0x24,0x32,0x24,0x5e,0x8a,0x81,0xee,0xca,0x4,0xc0,0x76,0xe5, + 0x36,0xd0,0xd9,0x4e,0xd2,0xc0,0xef,0x9b,0x69,0x99,0x1f,0xd8,0x19,0x4f,0x62,0x47, + 0x1a,0x3b,0xbd,0x48,0x3,0x73,0xdd,0xc9,0x3,0xb5,0x7,0x2a,0x2a,0xf9,0x11,0x6b, + 0xce,0xcd,0x52,0x21,0x64,0x4f,0xe4,0x81,0x1f,0x13,0x28,0x91,0x4c,0x2f,0xea,0xcf, + 0x18,0x28,0xca,0x55,0x57,0x99,0xaa,0xed,0x5b,0x48,0x5c,0xf4,0xf4,0xf9,0xf3,0x99, + 0x8a,0x68,0x57,0xa1,0x7f,0x26,0x87,0x5b,0x80,0x69,0x78,0x30,0x69,0x89,0x71,0x3c, + 0xa3,0xf5,0x65,0x1d,0x4d,0xc8,0xb2,0xe2,0x67,0x6b,0xe2,0x4b,0x41,0x3b,0x1d,0x20, + 0xe2,0xcd,0xa6,0x50,0xa,0x65,0xc,0xaa,0xc5,0x89,0x42,0x9a,0x60,0x49,0xa5,0x2f, + 0x28,0x30,0x35,0x29,0x43,0x3,0xc5,0x98,0xa5,0x62,0xb2,0x60,0x23,0x79,0x9b,0x8b, + 0xbe,0x5b,0x4a,0xef,0x39,0xd5,0x91,0x7f,0xae,0x11,0x8a,0x59,0xff,0x80,0xba,0x0, + 0x71,0x3e,0xcb,0xc5,0xc0,0x62,0xf9,0xfd,0x1c,0x10,0x2e,0xfc,0x10,0x98,0x93,0x62, + 0x79,0xe8,0x4c,0xf1,0x33,0x7b,0x2c,0xcb,0x29,0x68,0xb6,0x58,0x4e,0x52,0x38,0x71, + 0x52,0xdb,0x36,0xf2,0x6f,0xd9,0x2e,0x4,0x27,0x44,0xd9,0x4e,0x66,0x23,0xf2,0xd3, + 0x14,0xfd,0xf1,0x42,0xf1,0x27,0x49,0x28,0x2a,0x39,0x11,0x20,0xe9,0x3f,0x68,0x49, + 0x1f,0xf8,0xee,0x47,0xa5,0x18,0x20,0xf8,0xc1,0xdd,0xd,0xbe,0xc4,0xed,0x2a,0xd9, + 0x89,0x69,0x32,0xd3,0x98,0x5e,0x75,0x84,0x84,0x6b,0x42,0x9d,0xd2,0xd7,0x3d,0x75, + 0x38,0xb1,0x24,0x54,0x31,0x19,0xf3,0xbe,0x6e,0x97,0xba,0xca,0xd3,0xf6,0xbe,0xbe, + 0x9a,0x8b,0x3a,0x73,0xca,0xa8,0xa9,0xc,0xd7,0x8d,0xd2,0x51,0x4d,0xa,0x5f,0xfa, + 0x75,0xae,0x9a,0xa5,0x17,0xf0,0x66,0xf8,0x54,0xb7,0x6b,0x63,0xc6,0x9,0xdd,0xaa, + 0xbe,0xeb,0xfa,0x26,0xb0,0xca,0xdf,0xff,0x69,0x7d,0x70,0xaf,0x5b,0x74,0xb7,0x17, + 0x9d,0xd8,0x72,0xd9,0x3d,0x48,0xd0,0xd2,0xb0,0x8,0x75,0x5,0x37,0xb8,0x97,0xec, + 0x5f,0xaf,0xeb,0x40,0xed,0x55,0x90,0x8c,0x46,0xa9,0x21,0xd3,0xfb,0x5a,0xe,0xce, + 0x8,0x5e,0x49,0x25,0x43,0x94,0xe3,0xcc,0xbd,0x4a,0x87,0xe1,0xd5,0x20,0xb6,0x77, + 0xf8,0x75,0xc3,0x5c,0x6f,0xba,0x50,0x4e,0x2b,0x13,0xdc,0x7b,0x13,0xa8,0x7c,0x8f, + 0x31,0xbb,0x4f,0x65,0xb3,0x5,0x70,0x4,0x9b,0xea,0x5a,0x7d,0x17,0x0,0xce,0x6d, + 0xbc,0x47,0xc5,0xe8,0x72,0x13,0xef,0xc1,0xf1,0x41,0x5f,0xcd,0x33,0x63,0xfa,0x30, + 0x92,0xc4,0x6e,0x1,0x8c,0x26,0xf5,0x57,0x95,0x4d,0xa0,0xdb,0x9b,0x6e,0x29,0xaf, + 0x1f,0xb5,0xbe,0xdc,0x57,0x95,0x54,0xc8,0xbc,0xbd,0x2a,0xc,0x6c,0xe6,0x50,0x31, + 0xdd,0x9b,0x8f,0xde,0x82,0xdc,0xa6,0x54,0x28,0xc5,0x1,0xcd,0xaf,0x44,0xca,0xf5, + 0x31,0xae,0x41,0xb7,0x27,0xef,0xbc,0x5b,0xd4,0x47,0x92,0x38,0x4d,0x58,0x59,0xe5, + 0x2c,0x26,0x49,0x7b,0x90,0x44,0x3e,0x88,0xdb,0xdb,0x8a,0xb8,0x9f,0x28,0x7a,0x15, + 0xfa,0xe7,0xbe,0x72,0xc2,0x85,0x66,0xb6,0x5c,0x59,0xbc,0xd4,0x1c,0xb9,0xb1,0xf6, + 0xae,0xa0,0x28,0x39,0x45,0xe2,0xd3,0x46,0x8,0x84,0xdd,0x11,0xc1,0x72,0x79,0x6b, + 0xd8,0xdb,0x7c,0xaa,0x95,0xbc,0x51,0xf3,0x85,0x6b,0xd,0x1d,0x72,0xca,0x4a,0x5b, + 0x2b,0x4e,0xa5,0x7e,0x9d,0xed,0xc6,0xea,0x6c,0x63,0xad,0x8c,0x0,0x8f,0xf8,0xe1, + 0xde,0x8d,0xd5,0xd7,0xdc,0x93,0x3d,0x2,0x3a,0xa,0x1c,0x8a,0x6a,0x43,0x43,0x68, + 0x42,0x44,0xd1,0x44,0x8d,0x62,0xdb,0x63,0x4a,0x8c,0xd3,0xc9,0xca,0x39,0xed,0xa2, + 0xdb,0xda,0x7e,0x7d,0x5b,0xaf,0x2e,0x87,0x15,0x6c,0xf1,0x19,0x55,0xd9,0x63,0x50, + 0x22,0x6e,0xb8,0x36,0xb0,0x3f,0xac,0xe6,0xc2,0x9c,0x6a,0xe0,0x1e,0x3e,0x47,0xfe, + 0xc9,0x5e,0xdb,0x88,0x7b,0x6d,0x31,0x31,0xef,0xc8,0x1d,0xf,0x49,0x90,0x6e,0xba, + 0x1b,0x70,0x34,0xc4,0x3b,0x4c,0x50,0x9b,0x12,0x75,0xd9,0x21,0x4,0xc3,0x4b,0xa7, + 0x7c,0xd0,0x7b,0x96,0x26,0x97,0x5e,0xbf,0xf9,0xb2,0xbb,0x3d,0x3f,0x69,0x96,0x73, + 0x3f,0xfc,0xeb,0xb6,0xc1,0x8b,0x9,0x8d,0x39,0xd6,0x58,0xcd,0xaf,0xeb,0xb,0xa1, + 0xf8,0x25,0x70,0x9,0x24,0x79,0xf4,0x99,0xda,0xc4,0xc9,0xc5,0xa4,0x7f,0xdf,0x1d, + 0xf4,0xfe,0x70,0x51,0xb7,0x32,0x77,0x11,0x5f,0x16,0x7d,0x3d,0x46,0x77,0x5f,0x22, + 0x4a,0x25,0x65,0x58,0x5d,0xd6,0x76,0x47,0x16,0x6b,0xdb,0xdf,0x8,0xb3,0x12,0xec, + 0x31,0xa1,0xa1,0x26,0x8f,0xed,0xfa,0xdf,0x72,0x34,0x36,0x1a,0xc7,0x59,0xd,0x9e, + 0xfe,0xe5,0x1a,0x98,0xa6,0x20,0xd7,0x98,0x7e,0x22,0xd3,0x3c,0xd8,0xde,0xcb,0xee, + 0x7c,0x6f,0xde,0x9e,0x1f,0xb6,0xcb,0xb9,0x30,0xd9,0x73,0x76,0x77,0x3e,0xc7,0x6c, + 0xc3,0x50,0x8a,0x5b,0xe7,0x89,0x49,0x1e,0x85,0x57,0x41,0x8c,0x32,0x22,0x36,0x71, + 0x75,0x67,0x86,0xde,0xdf,0xc8,0x94,0xb2,0xe4,0xbb,0x17,0x43,0x89,0xb,0xf4,0x1f, + 0x1b,0xba,0x2c,0x93,0x8d,0x1a,0x84,0xac,0xf2,0xd4,0x5e,0x64,0x2a,0x6,0xd2,0x70, + 0xef,0x69,0x0,0x79,0xe,0x75,0x36,0xc2,0xda,0xd8,0x64,0xfb,0x1c,0xa2,0xa2,0xe3, + 0x74,0xe4,0xc9,0x22,0x30,0x59,0x87,0x90,0x26,0x26,0x14,0x29,0x8b,0x82,0xf2,0x50, + 0xa8,0xc0,0x1f,0x42,0xc1,0x92,0x5e,0xf1,0x10,0x1b,0x83,0xa1,0xdd,0xd2,0x26,0x7c, + 0x65,0x58,0xad,0xfb,0x7a,0x81,0xc2,0xa5,0xff,0xd4,0x2e,0x83,0x12,0xb2,0x8,0x5b, + 0x87,0x5b,0x59,0x65,0xc1,0x1,0xce,0xe0,0x2e,0xde,0x64,0x55,0xa,0xb3,0xbc,0xca, + 0xb2,0x10,0x85,0xd2,0xe,0xb8,0xd,0x48,0xf8,0x24,0x4b,0xdd,0xb1,0xaf,0xa1,0xee, + 0x8d,0x52,0x99,0xbb,0x63,0xa6,0xc0,0x65,0xb2,0x89,0xb8,0x74,0x2f,0xac,0x72,0xe2, + 0xca,0x44,0xc4,0x16,0x9c,0x8e,0x4,0xc,0x8e,0xe9,0xcc,0x36,0xb2,0xf,0xf3,0x61, + 0xc9,0x70,0xa7,0x70,0xec,0x7b,0x93,0x6b,0x64,0xc6,0x50,0x46,0xa9,0x83,0xdc,0x49, + 0x3d,0x69,0xfa,0x35,0x70,0x36,0xcc,0x69,0x4a,0xe7,0x74,0x5f,0xb0,0x93,0x98,0xbe, + 0x77,0xea,0xa6,0x77,0x82,0x6c,0x57,0x8a,0xaa,0xb1,0x88,0xd5,0xf1,0x7c,0xb8,0x14, + 0xb6,0x4c,0x9,0x52,0x9c,0xdc,0x77,0x93,0x75,0x80,0x6f,0x69,0x1,0x5c,0x99,0xc2, + 0x37,0x56,0x61,0xc6,0x6d,0x5d,0x19,0xc0,0x6e,0x29,0x4c,0x74,0x1d,0x52,0x75,0x14, + 0x9e,0x24,0x2a,0x72,0xec,0xcb,0xc0,0x9c,0x5,0x1c,0x8c,0x87,0xbd,0x94,0xba,0x8a, + 0x71,0xc6,0x7b,0xc9,0xa9,0x7f,0x7d,0x3c,0xe9,0x5d,0xc0,0xc3,0x6c,0x46,0x55,0x74, + 0x81,0xf6,0xa7,0xa7,0xde,0x2a,0xe8,0xbc,0x3c,0xeb,0xdb,0x15,0xa4,0x4f,0xb,0x22, + 0x7c,0xe1,0x83,0x4e,0xd,0xa4,0xe2,0x11,0xb3,0xab,0x9f,0xd6,0x88,0xe0,0xf7,0x52, + 0xfe,0x66,0x55,0xbc,0x6d,0x97,0x57,0xd,0x4,0x90,0x54,0x60,0xf2,0x10,0x53,0x71, + 0x63,0x15,0x6a,0x27,0x10,0x73,0x8c,0xde,0x99,0x5d,0x65,0xb,0xdf,0xc9,0xb9,0x35, + 0xa9,0xda,0x46,0x83,0xbb,0xa3,0xba,0x26,0x9e,0x12,0x53,0x40,0x61,0x63,0xf6,0xbd, + 0x94,0x66,0x61,0xe2,0xc2,0x4e,0x28,0x2,0x12,0xdd,0xa6,0x6f,0xca,0x55,0xa3,0xe4, + 0x3a,0x81,0x31,0x35,0x28,0xa,0x89,0xc5,0x4d,0x1c,0x8,0x11,0x44,0xb1,0x3,0xb2, + 0x8a,0xa2,0xd3,0x27,0x9a,0x4f,0x32,0x74,0x40,0xe6,0xf1,0x1,0xef,0xc7,0x75,0x67, + 0xbf,0x4b,0x19,0x90,0xca,0x0,0x5c,0xbf,0x1b,0x13,0x96,0x52,0x7b,0x22,0x71,0x7c, + 0x3e,0xf0,0x31,0x81,0xba,0x5f,0xac,0x30,0xa0,0x17,0x75,0x7b,0xd5,0x40,0x34,0x5f, + 0xfa,0x23,0x5,0xa1,0x64,0x14,0x2c,0xb9,0x33,0xa2,0xf1,0xbb,0x80,0x64,0x70,0xe6, + 0xed,0x2a,0x60,0x39,0x3d,0x28,0x5,0x9f,0xe6,0x29,0x44,0xa8,0x2,0x75,0xa3,0xde, + 0x2c,0x6f,0xc9,0xab,0x98,0xfe,0xa8,0xbf,0x33,0xc,0x14,0x4d,0x30,0xd0,0x77,0x81, + 0xbe,0xff,0x92,0x6c,0xea,0xa5,0x3c,0xc2,0xcb,0x37,0x55,0x92,0xb3,0x49,0xc8,0xf8, + 0x20,0x64,0x76,0x97,0x49,0x1e,0xfd,0xce,0x1a,0x64,0xda,0x33,0x1e,0x3b,0x15,0x98, + 0xc4,0x73,0x13,0xd3,0x24,0xd,0xa1,0x6a,0x72,0x1d,0xe4,0xad,0x99,0x49,0xc6,0xfc, + 0x8e,0x84,0x3e,0xf,0xbe,0x16,0xf0,0xfc,0xc5,0xcb,0x5f,0xa,0x6a,0xb8,0x7a,0x3c, + 0x3b,0x9b,0x59,0xfb,0xbb,0x4d,0xac,0x4d,0x99,0xf7,0x65,0x77,0x51,0xf7,0x6b,0xc1, + 0xba,0x69,0x45,0xce,0x25,0x80,0x75,0x67,0x32,0x3b,0xd9,0xae,0x74,0xff,0x61,0x4a, + 0x38,0xd0,0xcf,0x20,0x9f,0x99,0x28,0xdc,0x3f,0x93,0x3a,0xca,0x1,0x97,0x7a,0x39, + 0xa6,0x3d,0xfb,0xce,0x23,0x38,0xf7,0x86,0xbe,0x6f,0xe1,0x1b,0x19,0x6d,0x4a,0x3f, + 0xa9,0xa1,0x22,0xd2,0xe2,0xf4,0x3b,0x23,0x4e,0xfb,0x87,0xc4,0x69,0xbf,0x91,0xb1, + 0xfb,0x7,0x25,0x63,0xff,0xb0,0x64,0x34,0x28,0x65,0xe1,0xe7,0xdc,0xde,0x30,0x5e, + 0x35,0xdd,0x49,0xc9,0x78,0xfe,0xd,0x4d,0x61,0x6c,0x96,0x89,0xfd,0x66,0xd6,0xeb, + 0xcd,0xd1,0xdf,0xc4,0xf6,0xd1,0x6f,0xe4,0xbe,0xfe,0x1,0xee,0xeb,0x37,0xb,0xd6, + 0xfe,0x91,0x82,0xf5,0xb0,0x59,0x5c,0x74,0x43,0xbf,0x44,0xae,0xa9,0x58,0xba,0xd5, + 0x6c,0xcc,0xf,0xf0,0xbb,0x37,0xbc,0xb0,0x7a,0x88,0x17,0x56,0x53,0x1b,0xe4,0xea, + 0x41,0xf9,0xb6,0xa,0xcc,0xc5,0x3f,0xcf,0xe8,0x56,0x81,0xf6,0x28,0x4d,0xb1,0xd1, + 0xca,0xf0,0x48,0x35,0xc5,0x46,0xab,0xa9,0x8d,0x7f,0x65,0x4,0xdf,0x4,0xfb,0xac, + 0x8c,0x4a,0xb5,0xa9,0xf9,0x2a,0xdf,0xc8,0x3e,0xab,0xcd,0xec,0xb3,0x7a,0x88,0x7d, + 0x56,0x1b,0xd9,0x67,0xf5,0x0,0xfb,0xac,0x36,0xb3,0xcf,0xea,0x91,0xec,0x33,0xbb, + 0xbf,0x5a,0x36,0x10,0xce,0xb1,0x93,0x3e,0x86,0x77,0x56,0x1e,0xa1,0xf5,0xac,0xef, + 0x84,0x6d,0x7b,0xfe,0xb2,0x5d,0x2c,0xe0,0xba,0x7e,0xc6,0x92,0x13,0xaa,0x7a,0xb4, + 0xe4,0x2a,0xc5,0x9c,0xc2,0xd9,0x4d,0xf2,0xf8,0x2d,0x7f,0xa5,0x4a,0x60,0xb2,0x5d, + 0x25,0x60,0x1d,0xa8,0x8c,0x28,0xa5,0x13,0x69,0xa7,0xa6,0x78,0x6d,0x36,0x59,0x77, + 0x9d,0xd5,0x34,0xad,0x3,0x12,0x6e,0x4f,0x6c,0x3b,0x68,0xc6,0x54,0xe0,0xe7,0x42, + 0x5a,0x3,0x65,0x42,0x87,0xd8,0xc7,0x86,0x1c,0xc5,0xcf,0x88,0xa4,0xfa,0x9,0x3e, + 0x34,0x18,0x5e,0x36,0xa4,0x6d,0x4c,0x30,0xa2,0x83,0x32,0x62,0x45,0xda,0x80,0x87, + 0x13,0x29,0x78,0xcc,0x88,0x1e,0x28,0x75,0xb7,0xcb,0x96,0x99,0xd1,0xd0,0xf5,0x57, + 0xe7,0x2f,0xbb,0x4f,0x68,0x78,0x24,0xf9,0x48,0x47,0xa4,0xfb,0x1f,0xe6,0x89,0xed, + 0xb7,0x22,0xac,0x66,0xd,0xc9,0x41,0xe1,0xca,0x71,0x24,0x53,0x9d,0x97,0x99,0xda, + 0xf5,0x1c,0xa0,0x9b,0xfe,0xf4,0xf2,0xbb,0xa1,0x86,0xdd,0x16,0xea,0xc5,0xac,0x9b, + 0xc0,0x88,0x47,0x3f,0x65,0x9f,0x15,0xcb,0x2e,0x7d,0xa9,0x2b,0x92,0xbb,0x34,0x2d, + 0x95,0x5f,0x62,0xc3,0xe6,0x2f,0xbd,0x9a,0xf8,0xba,0x4d,0x42,0x13,0xc9,0x9a,0xf4, + 0x87,0xc2,0x16,0x5b,0xdf,0xd6,0x2b,0x88,0xd7,0x19,0x7d,0x9e,0x36,0xab,0xab,0x79, + 0xf7,0xe8,0xb2,0x5b,0x41,0xde,0xc2,0x82,0x39,0x7c,0x42,0x37,0xf7,0xe0,0x10,0xa0, + 0x83,0x58,0xf1,0xe5,0x91,0x5d,0x15,0xe9,0x2f,0x1d,0x2,0xed,0x24,0xe,0x99,0xe, + 0xa0,0xb3,0x37,0xf,0xd6,0x51,0x7b,0x44,0xcf,0x48,0x6,0x7e,0xe2,0xee,0x23,0x93, + 0x2e,0x5c,0x72,0xf4,0x12,0x47,0x9c,0xdc,0x9a,0x4b,0xaa,0x53,0x8c,0xda,0x3c,0x13, + 0xf2,0xba,0xb6,0xb9,0xee,0x28,0x82,0x79,0x26,0x49,0x43,0x63,0xe,0x45,0x36,0xf4, + 0xc,0x18,0x4f,0xc8,0x11,0x68,0x68,0xed,0xcb,0xb,0x27,0xf5,0x65,0xfb,0xbe,0xbd, + 0x7c,0x7a,0xd0,0x7e,0x68,0x83,0x28,0x2,0x93,0x96,0x5e,0x98,0xcf,0xf0,0x98,0x6a, + 0x4b,0x74,0x6e,0x10,0xab,0x17,0xb,0x4e,0x4b,0x8,0xd1,0x8b,0xfa,0xf6,0xa2,0x6d, + 0xfa,0x60,0x1b,0xae,0x30,0xd1,0x1b,0x12,0x2,0xff,0x78,0x6b,0xbb,0x42,0x76,0xa9, + 0x8,0x81,0x18,0xfb,0x77,0x43,0xb3,0x12,0x6b,0xbe,0xd,0x17,0x9f,0x5c,0x7c,0xb9, + 0x92,0xdb,0x90,0xea,0x84,0x10,0x9d,0xd5,0xf3,0x76,0xdd,0x2,0x45,0x56,0xd2,0xc8, + 0x19,0x49,0x84,0x1c,0xbd,0x1d,0x51,0x82,0x17,0x43,0x7d,0x2b,0x8a,0x52,0x99,0x63, + 0x99,0x9f,0xe3,0x82,0x1e,0x11,0x90,0x73,0x4b,0x24,0x7f,0x31,0x53,0x49,0xc6,0xf7, + 0x41,0x78,0x63,0xd1,0xde,0x5c,0xa6,0x6b,0x67,0x75,0xea,0x1f,0xb3,0xba,0xbd,0xab, + 0x97,0xac,0x8b,0x7d,0xfd,0xa9,0x86,0xf9,0x4b,0x62,0xfa,0xac,0x66,0xb4,0x85,0x9e, + 0x5d,0x31,0x73,0x4,0xf9,0xf9,0xf2,0xaa,0xe9,0x2f,0x86,0xfe,0x5e,0xf4,0x31,0x82, + 0xa4,0x9b,0x34,0x35,0x4e,0x24,0x46,0x84,0xcf,0x6c,0x46,0x18,0x45,0x59,0xe1,0x10, + 0xf1,0x7d,0x8a,0x48,0x66,0x53,0xd9,0x42,0x1e,0xe1,0xeb,0xf0,0xa6,0x85,0x37,0x8c, + 0x6e,0x6b,0x98,0x25,0x78,0x9c,0xa2,0x1a,0x55,0xa9,0xee,0xc1,0x89,0x7f,0x60,0xfa, + 0x4d,0x55,0xaf,0x2a,0x52,0xf5,0xa2,0xab,0x38,0x4a,0xd9,0x72,0x7d,0x18,0xfa,0x2e, + 0x90,0xbd,0xa4,0xf9,0xf5,0x23,0x9b,0x41,0x1a,0x4d,0xc9,0x63,0xdf,0x38,0xdf,0x7c, + 0xaa,0x3f,0xd4,0x8b,0xa6,0x85,0x6b,0xdc,0x3b,0x6e,0x97,0x5c,0x7a,0x3a,0xea,0x2a, + 0x91,0x4f,0xde,0xf8,0x2a,0xdd,0x9b,0xf,0xc3,0xd,0x8,0xd1,0x62,0xa7,0x1c,0xad, + 0xe3,0x13,0xc6,0x6,0x27,0xdd,0x7c,0x9,0x9,0xf6,0x40,0x56,0xc6,0x2c,0x7c,0x23, + 0xa2,0xe2,0xc8,0x74,0xb7,0x5b,0xf5,0x35,0xca,0xe7,0x2c,0x22,0x6e,0x9d,0x4d,0x83, + 0x45,0x59,0xe2,0xab,0xeb,0xa8,0x1e,0x7a,0x88,0xbe,0xd9,0x61,0xc2,0x4a,0xb0,0x23, + 0x66,0xb1,0xdf,0x8a,0xf4,0xfb,0x15,0x4a,0xa8,0xab,0x74,0x4c,0x51,0xc6,0x63,0x7, + 0x64,0xc8,0xb1,0x8b,0x5c,0x48,0x85,0xc2,0xcc,0xcd,0x69,0xf0,0x31,0xa0,0xc7,0x9e, + 0xfb,0x6e,0xa2,0xb6,0x8f,0x81,0xca,0x12,0x54,0x54,0x5a,0xd5,0xd5,0xc7,0x52,0x1f, + 0x3,0x73,0x89,0x18,0xb2,0x89,0x9a,0xbc,0xc9,0x58,0x4e,0xdc,0xcf,0x36,0x67,0xb2, + 0x19,0x61,0x37,0xdc,0x36,0xc8,0xf1,0x99,0xf3,0xe1,0xcb,0x4c,0xe0,0x62,0x52,0x3e, + 0x42,0x97,0x9f,0xca,0x2e,0x7e,0x82,0xe1,0xeb,0xb3,0x34,0x7b,0x92,0x8a,0xc5,0xd6, + 0x95,0x21,0xe3,0xaf,0xe,0x2d,0x0,0xc2,0x6,0xac,0x3c,0x2d,0xf5,0xde,0x6a,0x48, + 0x2b,0x8d,0xe1,0x2a,0x2f,0xba,0x8e,0x4,0x3c,0xc,0xb8,0x4,0xec,0xf1,0x25,0x1f, + 0xc2,0xcc,0xd5,0x1d,0x74,0x2b,0xa9,0xf3,0xde,0x9c,0x2e,0x57,0xbe,0xeb,0x23,0x47, + 0x1,0x3d,0xd,0xbe,0xf7,0x1,0x77,0xd2,0x4c,0xc3,0x91,0x38,0x9b,0x32,0x42,0xbf, + 0xf7,0x42,0x91,0x9c,0xb4,0x9d,0x5,0xe6,0x38,0x79,0xa4,0x7b,0x7f,0x3f,0x85,0xe0, + 0xf6,0xc1,0xa3,0xfb,0x39,0xfd,0xf0,0x62,0x38,0x7d,0x29,0x59,0x6,0xd3,0x92,0xf7, + 0x63,0x4,0x74,0xfa,0x50,0x85,0xfa,0xc0,0x76,0xec,0x0,0xf9,0x7e,0x2,0xee,0xad, + 0xa2,0x70,0xb9,0x80,0x8e,0x63,0x2,0x85,0xd,0x4,0x11,0x54,0x3e,0x19,0xcf,0x94, + 0x7a,0xc1,0xac,0x27,0x1b,0x4d,0x96,0xef,0xfd,0x60,0xd3,0x3,0xfb,0x65,0xed,0xe, + 0x97,0x37,0xb,0x38,0xd3,0x83,0xf,0xbf,0x22,0xa7,0xa1,0x79,0x9,0x2a,0x89,0x92, + 0x7,0x9f,0x82,0xa3,0x6f,0xf5,0x8b,0xd2,0x20,0xb,0xd4,0x6f,0x26,0x29,0xeb,0xf5, + 0x5c,0x6c,0x5a,0x11,0xa6,0x4a,0x24,0x66,0x8b,0xae,0x7,0xd2,0x1f,0x4a,0x19,0x12, + 0x65,0xba,0x1e,0xf0,0xff,0x7f,0xf,0x45,0xe0,0xff,0x8f,0x92,0x34,0xa3,0x7b,0xa0, + 0xe9,0x19,0xd5,0x34,0x2f,0xf,0x87,0xfe,0xaa,0x13,0x23,0xbc,0xf,0x4c,0x70,0xd5, + 0x91,0x4a,0xe9,0x1,0x1d,0x7d,0x39,0xd3,0x30,0x73,0xc,0x40,0x78,0x49,0xb,0x22, + 0x8b,0xc0,0x9d,0x71,0xb6,0x12,0x3b,0xb0,0xd3,0xba,0xef,0xd6,0xdd,0xf2,0xba,0xc6, + 0xcd,0x8e,0x4e,0x91,0xde,0xeb,0x12,0xb5,0xb1,0x49,0x79,0x59,0x62,0x7f,0x70,0xbb, + 0x83,0x2d,0x37,0x7c,0xea,0x2a,0x18,0x47,0xed,0xd0,0xe0,0x5e,0x1c,0xf1,0x44,0xdc, + 0x50,0x99,0xa,0x24,0x17,0xff,0x88,0x65,0xa8,0x2a,0x96,0xa9,0x6,0x22,0xdd,0x0, + 0xd9,0xa4,0x99,0x8c,0xec,0xdf,0x77,0x8b,0x1b,0x58,0xc8,0x28,0x1a,0x6d,0x40,0x3b, + 0x4a,0x82,0x47,0xb8,0x8f,0x64,0xd1,0x58,0xd0,0xc3,0x25,0x2f,0xf0,0x4b,0x28,0x48, + 0x4,0xeb,0x22,0x21,0x99,0x16,0xcb,0xe,0x11,0xaa,0x7a,0x18,0xc7,0xea,0xdb,0x95, + 0x4e,0xea,0x45,0x3d,0x40,0x9e,0xeb,0xc2,0xd9,0xdf,0x6c,0xba,0x44,0xbb,0x77,0xf6, + 0xeb,0xf3,0xc3,0xae,0x6f,0x56,0x17,0xf7,0xe0,0x1a,0xa4,0xf7,0x2e,0xe1,0x58,0x1e, + 0x8b,0xf0,0xa8,0xfc,0xe4,0x90,0x1c,0x7e,0xb8,0x5b,0xf0,0xb3,0x6e,0xb8,0xae,0xdb, + 0xa5,0x7c,0x1a,0x1,0x34,0x93,0x98,0xba,0x18,0x1f,0xa8,0x47,0x6e,0x8c,0x60,0xed, + 0xb0,0xc3,0x58,0x7c,0xc4,0xcf,0x22,0xa1,0xea,0xbb,0xcf,0x9f,0xb5,0xa0,0x3,0x69, + 0xd7,0x97,0x75,0xdb,0x2f,0x41,0x47,0x4d,0x43,0x57,0x2f,0x2a,0xb5,0xc6,0x59,0xca, + 0xa8,0xac,0x52,0x5e,0x16,0x17,0x0,0x59,0xca,0x26,0xef,0xba,0x3b,0x87,0x3f,0xe0, + 0x83,0x4a,0x58,0x66,0x46,0x79,0xb0,0x13,0x64,0x92,0x5d,0x58,0x46,0xbf,0x28,0x52, + 0x9c,0x31,0xe3,0xea,0xa4,0xad,0xcd,0xe8,0x5a,0xed,0xd5,0x27,0xb1,0xad,0x9f,0x6, + 0x9f,0xad,0xa5,0x41,0xe3,0xf9,0xa5,0x94,0xf9,0xcc,0xa2,0x78,0x31,0x29,0x41,0x84, + 0x57,0x4f,0x66,0x1c,0x68,0xe3,0xec,0x13,0x4a,0x19,0xbb,0x2,0x88,0x91,0xc6,0xae, + 0x7c,0x4b,0x94,0x47,0xc5,0x8,0x80,0xbb,0xb6,0xc6,0xe1,0x27,0x34,0x1a,0x92,0x8d, + 0x3e,0xa7,0xac,0x15,0x79,0xbe,0x96,0x2c,0xc4,0x19,0xf9,0xc,0x5,0x4f,0xb7,0x75, + 0xd8,0xcb,0x3e,0xda,0x5a,0x29,0x28,0xb7,0x9f,0x41,0xb9,0x7d,0xca,0x15,0x51,0xa1, + 0x7d,0x5f,0xd5,0x8b,0xcb,0x7a,0x59,0x2f,0x2,0xf5,0xcd,0x3b,0xc6,0x83,0x67,0xe9, + 0xf,0xea,0x9b,0xba,0x7b,0xdf,0x69,0x2d,0x9b,0xb3,0xbc,0x55,0xaa,0x55,0xfb,0xf0, + 0x8e,0xa9,0xd6,0xac,0x4f,0x83,0x7f,0xa,0xcc,0x35,0xfb,0xe3,0xa0,0xb0,0x8a,0xd1, + 0x3f,0x59,0x7f,0x4,0x6a,0x6c,0x95,0xd6,0x8c,0xc,0x48,0x5d,0xb0,0x1f,0xd9,0x61, + 0xff,0x64,0x1c,0x15,0xb1,0x54,0x26,0xf8,0x83,0xa4,0x12,0x21,0xca,0x1d,0xad,0x81, + 0x10,0xdb,0x40,0x1,0xbd,0x7f,0xb9,0x36,0xdc,0x19,0x8,0xc5,0x75,0x7d,0x37,0xa0, + 0xcc,0x1f,0x69,0xdc,0x2a,0xbd,0xaa,0x10,0x22,0x2a,0xd8,0xd2,0xc,0x58,0xe9,0xb1, + 0x89,0x68,0x67,0x3c,0xf7,0x7,0xc3,0xb2,0x7e,0x3f,0xac,0xa5,0x75,0x98,0xbb,0x62, + 0x6c,0xac,0xa1,0xbf,0xab,0x6f,0x1a,0xc0,0x65,0xef,0x39,0x51,0xd4,0xd3,0xe0,0x9f, + 0x3,0x73,0x78,0x3f,0xa3,0x8f,0xa3,0xfe,0x73,0x40,0xaf,0x6e,0x99,0x6d,0x22,0xb6, + 0x37,0xe2,0x14,0x86,0x5c,0x97,0x38,0xe1,0x94,0x99,0xa6,0x9c,0x11,0x3a,0xb,0xb7, + 0x87,0xc8,0x7a,0xe,0x9d,0x8a,0x2b,0x7e,0x8b,0x42,0x53,0x13,0xcb,0xed,0x7d,0xbd, + 0xc6,0xb1,0x89,0xd,0x95,0x1b,0xa2,0x46,0xe9,0xfd,0x67,0xa3,0xf4,0xd2,0x19,0x59, + 0x2c,0xda,0x15,0x2e,0x4a,0x36,0x5a,0x14,0x33,0x29,0xbf,0x92,0x2e,0x19,0x7d,0x7, + 0x2d,0x56,0x8a,0xd0,0x33,0xbc,0x6a,0x48,0x80,0xc7,0x81,0x52,0x2b,0xe4,0x43,0xcc, + 0xbf,0xa,0x4c,0xa4,0x8,0x6,0xe5,0xb9,0x44,0x26,0x41,0x4c,0x31,0xa2,0x22,0x31, + 0xd2,0xe9,0x88,0x8e,0xdc,0xba,0x73,0xe9,0x48,0x54,0x62,0x38,0xa2,0x33,0x19,0x66, + 0x2a,0x97,0x8e,0x5f,0x95,0x74,0xe8,0xe8,0x6d,0x49,0x97,0x8e,0x5c,0x98,0x74,0xa9, + 0xec,0x9d,0x49,0x97,0x88,0x5d,0x9b,0x74,0xc9,0xec,0xcd,0x49,0x97,0xcc,0x5c,0x9e, + 0x9c,0xa9,0x34,0xe3,0x2e,0x29,0x7c,0x2c,0x18,0x96,0x31,0xa3,0x28,0xac,0x8e,0x94, + 0xd5,0x51,0x8d,0xaa,0x0,0x3e,0x8d,0xf3,0xcd,0xcd,0x60,0xb0,0x14,0xb9,0x52,0x1b, + 0x8f,0x5a,0x29,0x1e,0x68,0xa5,0x94,0x6,0xd2,0xa6,0x56,0x92,0x70,0x73,0x1d,0x90, + 0x87,0xa6,0xc2,0xdd,0x79,0x43,0x1d,0xc9,0x3,0x75,0xa4,0xf,0xcc,0x68,0x92,0x3d, + 0x50,0x1,0xd8,0x20,0x49,0xb1,0xb9,0x8e,0xf2,0x81,0x3a,0xaa,0x87,0x3a,0x51,0x31, + 0xc1,0x3b,0x5a,0x53,0xf3,0x62,0x9c,0x16,0xd,0xe,0x7d,0x6a,0xef,0x77,0xab,0xe5, + 0x8a,0x56,0x42,0x7a,0x3f,0xdb,0xa7,0x18,0x91,0x7c,0x7e,0x50,0x28,0x30,0xaa,0x97, + 0x91,0x53,0x89,0x49,0x7e,0x68,0x6f,0x79,0x8d,0xaa,0xd1,0x59,0x63,0x74,0x47,0xdd, + 0x3a,0xcc,0x6c,0x1e,0x7a,0xc9,0xed,0x13,0xbb,0x13,0x7d,0x90,0xa6,0xc0,0x6,0xc6, + 0x4b,0xf3,0xcd,0x73,0x9d,0x92,0x10,0xe8,0xd1,0x3c,0xb3,0x7,0x4a,0x46,0x9d,0x2b, + 0xb4,0xa3,0x1f,0x94,0x3f,0x2f,0xe1,0x51,0x30,0xee,0xf,0x9,0x9f,0x1e,0x89,0xb1, + 0x54,0xe7,0xc1,0x4a,0x46,0x42,0x93,0xde,0xf0,0x77,0xa9,0xf4,0xce,0x3f,0x16,0x7e, + 0x32,0xaf,0x13,0xfb,0x24,0x46,0x8d,0x5a,0x1c,0xe2,0x8,0x76,0xaa,0x79,0x48,0xce, + 0xe0,0x9b,0x16,0x79,0xb8,0x61,0x1d,0xb2,0x7,0xc4,0xc,0x3e,0x7d,0x91,0x6d,0x16, + 0x33,0xd9,0x3,0x42,0x24,0xc3,0xf8,0xc6,0xcd,0x42,0x24,0x7f,0x40,0x88,0xc8,0x97, + 0x27,0x3c,0x71,0x20,0x63,0x24,0x2a,0xef,0x46,0x12,0x3d,0x7,0xc5,0x20,0xe7,0x36, + 0xfc,0xb8,0xb1,0x52,0x7d,0xa7,0xd1,0x68,0x87,0x91,0xaf,0x5b,0xf2,0x63,0xfb,0xd1, + 0x60,0x2c,0xd2,0x64,0x3f,0x4a,0x93,0xd5,0x9a,0xe5,0x59,0x1d,0x58,0x3d,0xf2,0xdc, + 0xae,0x62,0xf5,0xe0,0xc3,0x6b,0xb6,0x1e,0x7b,0x32,0x66,0x83,0x53,0xc,0xca,0xb7, + 0xfa,0xc5,0x80,0xb7,0xdd,0xf2,0xaa,0xc3,0x67,0x8b,0x23,0x69,0xae,0x2b,0x77,0x36, + 0xbe,0xb8,0x26,0xcf,0x64,0x7e,0x15,0xfc,0x6a,0x25,0x87,0xe,0xe6,0x22,0xbe,0x37, + 0xfb,0x6c,0xa6,0x22,0x24,0x24,0xe3,0xf,0x16,0xab,0x82,0xe7,0x91,0x8f,0xa1,0x8d, + 0xa7,0xcf,0xa4,0x49,0xc2,0x1b,0x52,0xbf,0x5e,0x37,0xfd,0x4a,0x3e,0xdc,0xea,0x5, + 0xbf,0x18,0x9a,0x7e,0xb9,0x9,0xe1,0xd5,0x6a,0xd1,0x9c,0x77,0xef,0xcf,0xf,0xd1, + 0x4d,0xae,0xa,0xf7,0x87,0x8b,0x45,0x8b,0x63,0xb1,0x77,0x87,0x84,0x11,0x88,0x16, + 0xdd,0x16,0x96,0x4a,0x8f,0xfd,0xbe,0x4a,0xd6,0x6b,0xf5,0x20,0xb,0x8d,0x54,0x4a, + 0x7d,0x7d,0x78,0x45,0x26,0x20,0x6,0x35,0x3e,0xc7,0xdf,0x30,0x3c,0x95,0x7a,0x3f, + 0x54,0xcf,0x7c,0x2,0xa2,0x26,0x4e,0x73,0x4c,0x38,0x18,0xcb,0x13,0xad,0x17,0xec, + 0xaa,0x54,0xee,0xa0,0x16,0x4a,0xe6,0x50,0x54,0x34,0x13,0x91,0xc3,0x9c,0xd6,0xe8, + 0x1a,0xbc,0xf2,0xad,0x81,0x45,0x25,0xb,0xf1,0xa,0xd9,0x6,0xe,0x58,0x7d,0xef, + 0x6d,0x20,0x67,0xcd,0x2c,0x2,0x37,0xc,0x91,0x63,0xb6,0x35,0xd4,0xbe,0xbc,0xc9, + 0xcb,0x2b,0xcd,0x6a,0x13,0x84,0x65,0xe4,0x7d,0x48,0xd0,0xb6,0x5b,0xe5,0xde,0x67, + 0x4,0x81,0xfe,0x5f,0xa6,0xfa,0xad,0x6d,0xa6,0x7f,0xf1,0xf6,0x7b,0x45,0xc9,0x49, + 0xbf,0x59,0xb9,0xaf,0xdf,0x14,0xc1,0xdb,0x6f,0xda,0xae,0xa7,0xdf,0x9a,0xfe,0x5f, + 0xad,0x4a,0x2d,0x93,0x4e,0x98,0xd7,0xe8,0x8,0x84,0x5e,0x15,0xfe,0x57,0xa9,0x4e, + 0xa3,0x6e,0xac,0x77,0x58,0x1d,0xd7,0x33,0x1b,0xc1,0x67,0x16,0x6c,0xc9,0x53,0x7a, + 0x3f,0x87,0xd2,0x91,0x77,0x64,0x39,0x1,0x7f,0x48,0x96,0x91,0x90,0x77,0x61,0x19, + 0x49,0x2a,0xb7,0x71,0xd3,0x45,0x87,0xcc,0x58,0x4f,0xe,0x19,0x79,0x1a,0x96,0x1, + 0x7c,0x6b,0xcb,0x6a,0x1c,0xad,0x2d,0x27,0xb7,0x6b,0xcb,0xcb,0x3d,0x6b,0xcb,0x10, + 0x7c,0x6b,0xcb,0xda,0x1d,0xaf,0xad,0xa1,0x7f,0x37,0xd1,0x6f,0x6d,0xe,0xbe,0xf3, + 0x75,0x3b,0xa4,0xc4,0xe4,0xd,0x5b,0x5a,0xec,0xe9,0x34,0x85,0xfb,0xfa,0x4c,0xdb, + 0x1c,0x77,0x59,0x53,0x1f,0x6,0xf6,0x2a,0x0,0xde,0x66,0x45,0x6e,0x3c,0x44,0xc9, + 0x40,0x60,0xfb,0x3a,0x9b,0xec,0xe1,0xa1,0x81,0xd8,0x1c,0x96,0x20,0x67,0x20,0x23, + 0xe7,0xe1,0xfe,0xcc,0x81,0xe2,0xb2,0x46,0xbc,0xc6,0x8a,0xd1,0x25,0xe,0x1d,0xcb, + 0x31,0x38,0x20,0xe5,0x3e,0x87,0x81,0x9e,0x26,0x73,0xab,0x1c,0xce,0xde,0x28,0x90, + 0x32,0xc8,0xe,0xe4,0x2d,0xa,0x46,0x15,0x93,0xcc,0xbd,0xa1,0x6c,0x4f,0xe6,0xc5, + 0x20,0xc0,0x59,0x20,0xd7,0x68,0x44,0x45,0x17,0xe2,0xd0,0xec,0xaf,0xa3,0x3c,0x1a, + 0x16,0x94,0xf8,0x88,0xd2,0xd,0x2c,0x87,0x8,0xea,0x1d,0xda,0x9,0xa6,0x3b,0xc, + 0x54,0xb8,0x4a,0x34,0x8a,0x18,0x95,0x8e,0x98,0x77,0xcf,0xcf,0x2,0x10,0xea,0xef, + 0x54,0x18,0xd1,0x9e,0xf8,0x1d,0x9,0x5e,0xd5,0x4f,0xfa,0x1e,0xaa,0xdf,0x87,0xea, + 0x37,0x5e,0xcb,0xe,0x8e,0xcd,0xcd,0xe8,0x5f,0x5b,0x11,0x81,0x77,0x45,0xec,0x45, + 0xba,0x5f,0x73,0x19,0xa1,0xe3,0x2,0x7e,0x3d,0x16,0x11,0x94,0xc0,0xe6,0xea,0xe, + 0x19,0x49,0x91,0x9a,0xa5,0x4f,0x59,0x13,0x85,0x15,0xe,0x21,0xc5,0x67,0x2f,0x29, + 0x53,0xfc,0xcc,0x8f,0x4f,0xdc,0x18,0x1c,0x5f,0x4b,0xd5,0x84,0xe3,0x17,0x6,0xbf, + 0xe4,0xf8,0x85,0xbf,0x7e,0xcb,0xf2,0x7c,0x8a,0x3c,0x9f,0xed,0xaf,0x83,0x88,0x3e, + 0xc2,0x97,0x71,0x7c,0x93,0xad,0x38,0x64,0x4,0xa5,0x7d,0x54,0x3a,0x61,0x4,0xa5, + 0x76,0x53,0xa4,0x1c,0xdf,0xb8,0x28,0x62,0xde,0xa1,0xd2,0x93,0x50,0x14,0xcb,0xe3, + 0x89,0x19,0x2a,0x63,0xef,0xc,0x95,0x76,0x29,0xf9,0xc,0x79,0xb2,0xc6,0xfc,0x3a, + 0x30,0x3e,0x32,0xf2,0x71,0x18,0x2d,0xec,0xac,0xed,0xf1,0x2,0x84,0xe3,0x21,0x8c, + 0x52,0xd4,0x5a,0x90,0x65,0x81,0x9,0x25,0x3,0x8a,0xb2,0x5f,0x4b,0xf6,0x95,0x95, + 0x62,0xec,0x91,0x68,0x4d,0x73,0xb4,0xaa,0x73,0x57,0xe8,0x7e,0x3d,0xbc,0xf1,0xb, + 0xd7,0xb1,0x2,0xe2,0xdf,0x82,0xfa,0xdf,0x3d,0x57,0x3a,0x17,0x26,0xf9,0xb0,0x8d, + 0x94,0x99,0xbd,0xf3,0x65,0xeb,0x3c,0xd,0xfe,0x2d,0x30,0xee,0x20,0xd1,0x7f,0xb2, + 0xc1,0x12,0xc0,0xc,0xec,0x47,0xf3,0xed,0xfe,0x5b,0xc0,0xf2,0xf7,0xa7,0x9c,0x24, + 0xcd,0xa5,0xce,0xc6,0x8f,0x18,0x9,0xa5,0x31,0x82,0x72,0x87,0xb0,0x24,0x93,0xce, + 0x20,0x65,0x68,0x49,0xc2,0x71,0xf9,0x4c,0x4b,0xe9,0x6d,0x3b,0x45,0x70,0xed,0x70, + 0x59,0x7,0x70,0x5e,0x4e,0xc2,0x52,0x2a,0x4c,0x24,0x63,0x64,0x4,0xe,0x50,0xfc, + 0xfc,0x37,0xf3,0x33,0xd,0xb5,0xb6,0xc0,0xb0,0xe0,0x1c,0x44,0xde,0x74,0xd8,0x2, + 0xa9,0xbe,0xf7,0x7c,0x66,0x4b,0x23,0x55,0x6c,0x16,0x33,0x67,0x35,0x96,0x91,0x6f, + 0x5,0xf,0xdb,0xe5,0xea,0x6,0x7a,0x17,0x3a,0x27,0x34,0x50,0x14,0xe8,0x6b,0xf2, + 0xe6,0x46,0x9f,0x4e,0x2a,0x41,0x6f,0xf4,0xa1,0x89,0x37,0x7b,0x13,0xa0,0xaf,0x43, + 0xbd,0xab,0xc5,0xfa,0x8c,0xec,0x13,0x24,0xf8,0x3a,0x98,0x40,0x7c,0x2a,0xa4,0x3c, + 0x48,0xd4,0x90,0x50,0xb2,0xcb,0xa3,0x62,0x43,0xa2,0xb9,0x2c,0x54,0x96,0xb,0x7c, + 0xd6,0x4c,0x26,0x33,0x38,0xd,0x7e,0x13,0x30,0x3f,0x66,0x65,0x93,0x1d,0x2a,0x8, + 0xee,0x56,0xb8,0xf2,0xf2,0xac,0x24,0x4e,0xf4,0xd2,0xff,0x26,0x60,0xae,0x4c,0x9, + 0xb2,0xb4,0xb1,0xf6,0xf8,0xe0,0x4e,0xe6,0x81,0xa0,0xff,0x99,0x57,0x47,0xb6,0xb8, + 0x31,0x95,0x49,0x99,0x9d,0xb9,0x54,0xc4,0x55,0x99,0xb9,0x54,0x60,0x8f,0xc6,0xc5, + 0xf4,0x8,0x48,0xb6,0xb7,0xd1,0x8,0xc8,0x7d,0x9a,0xca,0x85,0x19,0x37,0xd1,0xa8, + 0x9f,0xf6,0x3b,0x2a,0x5c,0x90,0xf9,0x50,0x46,0xd5,0x95,0xf4,0xe3,0x73,0x41,0x5e, + 0x4f,0xa6,0x19,0x40,0x45,0x7,0x40,0x29,0xad,0x77,0x32,0x4a,0x1c,0x88,0xbd,0xb6, + 0x5e,0x39,0x10,0x13,0x94,0xed,0x92,0xb0,0xfb,0xe9,0x1c,0x64,0x64,0x65,0xe9,0x0, + 0x58,0xa6,0x7e,0xe,0xca,0x27,0x7b,0x50,0x90,0x99,0x65,0x0,0xe2,0x6e,0x2f,0x1c, + 0x90,0xcd,0xb7,0xe4,0xf6,0x4d,0xfb,0x25,0xe9,0x49,0xd3,0x6f,0xac,0x9a,0xa0,0x6c, + 0x5b,0x42,0x61,0x1c,0x84,0xda,0xe1,0x6f,0x28,0xec,0x8b,0x14,0xe,0x85,0x4f,0xf3, + 0xff,0x8d,0x15,0xa9,0xb8,0xed,0x3b,0xa3,0x34,0x4f,0xc4,0x16,0x56,0xfb,0x51,0x92, + 0xe4,0x59,0x3f,0xac,0x56,0xcd,0x62,0x5,0xb7,0x59,0x55,0x8a,0xe,0x23,0x4c,0x6c, + 0xd1,0x33,0x7d,0x76,0x28,0x95,0xa,0x7c,0x69,0x5e,0x6f,0x15,0x11,0xbc,0x1b,0x5e, + 0x12,0x9,0x26,0x5d,0x1,0x4c,0x98,0x44,0xa5,0x7c,0xcc,0x24,0x8a,0xc0,0xb0,0xfe, + 0x8d,0x54,0xb9,0xe4,0xbc,0xa8,0xdc,0x98,0xae,0xc4,0x84,0x7c,0xb7,0x89,0x28,0xfa, + 0x8d,0x29,0x2a,0xa,0xb6,0xef,0x3c,0xa1,0x9a,0x42,0xaf,0x94,0x62,0x39,0x64,0x2, + 0xa2,0x16,0xe1,0x13,0x29,0xf2,0x71,0xd7,0xa6,0x7,0xb2,0x8c,0xce,0xee,0x9,0x15, + 0x27,0x24,0xaa,0x41,0xcc,0xa7,0x70,0xd6,0xbd,0x87,0x83,0x56,0x38,0x67,0x1d,0x9, + 0x63,0x75,0xc0,0xfa,0x4a,0xce,0x1f,0xcc,0x54,0x12,0x12,0x71,0x2c,0x94,0x44,0x54, + 0x10,0x9d,0xdd,0x82,0x6e,0x7,0x6a,0xeb,0x48,0x8,0x55,0x51,0xd9,0x21,0x8b,0xe2, + 0x27,0x26,0x75,0x4f,0x9,0xef,0xbd,0x8b,0xf,0x6,0x4a,0xff,0xd5,0x26,0xf4,0x81, + 0x3c,0x43,0xef,0xec,0xcf,0x62,0x8b,0x6a,0xb1,0xff,0xce,0x98,0x8d,0x7c,0x53,0x4, + 0x70,0xa4,0xb6,0x54,0x39,0x1d,0xff,0xce,0x99,0x2d,0x77,0x48,0x70,0xff,0x76,0xef, + 0x60,0x11,0x4a,0xfb,0x98,0x4b,0xe8,0x50,0x7a,0x37,0xf0,0x7f,0xf,0xa8,0xf3,0xd7, + 0x30,0xb6,0x99,0xfd,0x93,0xbe,0xbe,0x1e,0x1a,0xc1,0xbe,0x19,0x4d,0x73,0x5c,0x66, + 0xc0,0xbe,0xba,0xe8,0x44,0x4e,0x3f,0x5c,0x97,0x1f,0x31,0x19,0x7e,0x78,0xa2,0xf8, + 0xdf,0x2d,0xa3,0x55,0x8c,0xd1,0x7e,0x1b,0xb0,0x93,0x3e,0x6d,0x2a,0xcd,0x38,0x68, + 0xa6,0x7c,0x12,0x72,0xa0,0xbf,0xb5,0xdf,0xbc,0xf3,0x7e,0xeb,0x6f,0xa7,0xbe,0x6d, + 0xa,0x18,0x2,0xea,0x8a,0xf8,0xad,0xf3,0x71,0x3b,0x34,0xe6,0x55,0x11,0x87,0xc2, + 0x6a,0xe9,0xa9,0x43,0x41,0x1d,0xf7,0x9c,0xc6,0x6a,0xea,0x95,0x43,0x53,0x6a,0x9a, + 0x72,0x24,0x42,0xf6,0xc4,0x1f,0xcb,0x79,0x7d,0xdd,0x2c,0x61,0x15,0x42,0x16,0x2d, + 0x8f,0xab,0xa0,0x8a,0xf6,0xd4,0x47,0x20,0x66,0xf7,0xb7,0x76,0xd,0x62,0xed,0xb1, + 0xf3,0x2a,0x4c,0xc,0x17,0x3e,0x29,0xa2,0xb,0xed,0xae,0x17,0xf5,0x72,0x8d,0xa1, + 0x3,0x7d,0xd7,0xa0,0xa3,0xb2,0xa0,0xfa,0x6c,0x89,0xe7,0xbc,0x54,0xab,0x2d,0xa3, + 0x2d,0x6b,0xf0,0x9d,0x6,0x4f,0x3,0x9a,0x3b,0x85,0x5f,0x28,0x90,0x61,0x18,0x1c, + 0x83,0xc5,0x1c,0xe2,0xd4,0x20,0x3c,0x21,0x49,0x4c,0x48,0x24,0xc0,0xfe,0x8,0xee, + 0xbe,0x8a,0x1,0x70,0x1b,0xa8,0x46,0x6f,0x76,0x1a,0x72,0xb,0x26,0x51,0x6,0xea, + 0x4e,0xe0,0x6d,0xd3,0x43,0x4c,0xd7,0x7e,0xbd,0x84,0xbc,0x12,0xab,0x79,0xfd,0x71, + 0x19,0x6c,0x47,0x70,0xa7,0x95,0x84,0x45,0x45,0x98,0x63,0x1,0x94,0xbb,0x6d,0xd0, + 0xc3,0xb6,0xc3,0x44,0xa,0x39,0xa9,0x3f,0x43,0xe1,0x31,0x14,0x3e,0xdd,0xe,0x65, + 0xaa,0x69,0xed,0x38,0x25,0xd,0xcc,0x2e,0x65,0x64,0xd1,0x6a,0x58,0x5e,0x41,0x3, + 0x3c,0x31,0x30,0x69,0x0,0x63,0x82,0xc3,0x98,0x37,0x0,0x92,0x48,0x14,0x8a,0x6, + 0xa2,0x40,0xdf,0x96,0x80,0x84,0x69,0xdb,0x11,0xb6,0x1c,0x3d,0x7d,0x12,0x86,0xa4, + 0xb1,0x17,0xdd,0xd5,0x7a,0x5e,0x5f,0x4,0xdb,0x89,0x1b,0x9d,0xf2,0xf8,0x81,0x90, + 0xea,0xce,0xe6,0xc3,0x42,0xb0,0x6,0x26,0x48,0x29,0x7d,0x75,0xa5,0x62,0x92,0x77, + 0x99,0x6e,0x7d,0x6,0xe7,0xff,0xcb,0x25,0x8,0x74,0xf2,0xd0,0x7,0x48,0x73,0xfc, + 0x7d,0xa6,0x1e,0x27,0x81,0x8b,0x17,0x74,0x87,0xab,0xa4,0xb5,0x45,0x91,0x62,0x99, + 0xc8,0x82,0x88,0x7b,0xf4,0x9e,0xe7,0x5c,0xf7,0x9e,0x61,0xd8,0xb0,0x2b,0x96,0xe2, + 0xd8,0x51,0xbc,0x59,0x52,0x72,0x60,0x10,0x95,0xe7,0x4d,0x94,0xcf,0x64,0x44,0x0, + 0x17,0xfa,0xa5,0xac,0xc4,0x3e,0x86,0x8c,0x21,0x32,0xe8,0xdd,0x4e,0x69,0xb6,0x3a, + 0xf9,0x56,0x2f,0xdb,0x12,0x76,0x2,0xe3,0xbe,0x90,0x5f,0x61,0xaa,0x24,0x1,0x1, + 0x80,0x4d,0xad,0xf7,0xc7,0x9d,0x40,0xfb,0x71,0x7c,0xdf,0xd1,0x6c,0x84,0x41,0x43, + 0x96,0x98,0x24,0x79,0x29,0x14,0x91,0x76,0x79,0xd3,0x6,0x32,0x96,0xd2,0x4e,0x7f, + 0x51,0x2a,0xcf,0xd7,0x96,0x85,0xbc,0xe4,0x73,0xbc,0x63,0x77,0xc1,0x84,0x3f,0xed, + 0xec,0x56,0xae,0x6d,0x28,0xb8,0x71,0x33,0xaf,0x6f,0x97,0xa2,0x7f,0x5f,0x58,0x41, + 0x8e,0x96,0x34,0x55,0x8b,0x15,0xcc,0x9a,0x26,0xea,0x33,0x34,0x8a,0x3d,0x22,0x90, + 0xf0,0xeb,0x11,0x31,0xb5,0x78,0x1c,0x90,0xdf,0xa2,0xf9,0x62,0xd2,0xa2,0x21,0x10, + 0xc7,0xa2,0xf9,0x62,0x83,0x45,0x43,0x60,0x8e,0x45,0xf3,0xc5,0x6,0x8b,0xe6,0xb, + 0x6d,0xd1,0x68,0x7b,0xc0,0xb5,0x68,0xbe,0xb0,0x16,0xd,0x6a,0x71,0xb9,0x4b,0x3c, + 0x61,0xd2,0x7c,0x31,0x69,0xd2,0x7c,0x31,0x6d,0xd2,0x7c,0x31,0x69,0xd2,0x7c,0x31, + 0x6d,0xd2,0x7c,0xc1,0x4d,0x96,0xd0,0x1,0x11,0x9b,0x25,0x76,0x41,0x11,0x55,0x46, + 0x38,0x88,0x7e,0x1a,0x1c,0x92,0x4c,0xcf,0x64,0x42,0x5e,0xa4,0x72,0x20,0xc4,0x70, + 0x19,0xf5,0x30,0x9f,0xee,0x86,0x99,0x8c,0xc4,0x85,0x10,0xdb,0xc5,0x5d,0x93,0x84, + 0x26,0x8b,0xf5,0x82,0x8e,0x74,0x53,0x76,0x91,0x99,0xf9,0x42,0x28,0x48,0x1c,0x5, + 0x68,0x38,0x31,0xc6,0xe9,0x13,0xc0,0x31,0x71,0xb8,0x7c,0x61,0x65,0x87,0xb2,0xfd, + 0x29,0x3e,0x75,0x96,0x12,0x7c,0xc7,0x59,0x4a,0x8,0xec,0x71,0xa,0x23,0x48,0xc9, + 0x9c,0x50,0x74,0xed,0x29,0x95,0x8f,0x87,0x19,0x74,0xaa,0x88,0x51,0x74,0x62,0x63, + 0x25,0x64,0x1e,0x8c,0xa7,0xd4,0x3c,0x43,0x36,0xe3,0x10,0xd4,0xbe,0x23,0x2e,0xd4, + 0x4e,0x84,0x9c,0x1,0xf3,0xaa,0x62,0x9e,0xa4,0x48,0xdd,0x21,0xc1,0x34,0xa0,0x6, + 0x78,0x62,0x13,0x20,0xf5,0x98,0xe,0x16,0x80,0xa2,0x1,0x62,0x2f,0x19,0xf9,0xe4, + 0xee,0x19,0x70,0x2e,0x9b,0x71,0xec,0x4c,0xd,0x41,0xa0,0x7e,0x31,0x65,0x47,0xfd, + 0xce,0xea,0x90,0x8e,0x37,0x8e,0x40,0x88,0xe5,0xa8,0xca,0x8b,0x69,0x2d,0xff,0x77, + 0x4c,0xcb,0xcf,0x83,0x84,0x55,0x68,0xd5,0xd2,0x8,0x69,0xe4,0xac,0x13,0x10,0xfa, + 0xa2,0x2a,0xb3,0xac,0xbf,0x9b,0xb4,0xc,0x7e,0xc7,0x2c,0x83,0x88,0x58,0x13,0xff, + 0x61,0xd7,0x10,0x5,0x53,0x6a,0x56,0xf7,0x3f,0xe8,0xea,0xc6,0x96,0x79,0x48,0x39, + 0x35,0x76,0xac,0x99,0xdc,0xf4,0x70,0x18,0x1e,0x3a,0x4f,0xd2,0x8f,0x1d,0x82,0x98, + 0x96,0x4a,0x36,0x29,0xca,0xff,0xc3,0x96,0x83,0x5b,0xef,0x77,0x7e,0x55,0xd6,0xee, + 0x51,0xdf,0xe,0x42,0x6b,0x99,0x9b,0x46,0x7,0xb1,0x61,0x9,0xb5,0xda,0x76,0xe3, + 0x45,0x7b,0xd1,0xd7,0xb,0xc8,0x2a,0xa,0xda,0x6e,0xc4,0xd3,0x64,0x22,0x7,0xb0, + 0x20,0x83,0xac,0xd0,0x6b,0x4a,0x1d,0xb9,0xdc,0x7f,0xfb,0x7b,0x2b,0xd1,0xec,0x7b, + 0x99,0x33,0xe,0x98,0x11,0x7f,0xf5,0xef,0xed,0xe7,0x8d,0xb2,0x8c,0xa2,0x7b,0xce, + 0x3c,0x7e,0xcf,0x3f,0x63,0x92,0x97,0x98,0x40,0xa8,0x83,0x1e,0x8a,0x33,0xdb,0x9f, + 0x88,0xe1,0x67,0xb6,0x1,0x8a,0x6f,0x9f,0xef,0x84,0x9b,0xc,0x2b,0x42,0x50,0xe8, + 0x35,0x5,0x4f,0xff,0x8a,0x92,0x58,0x96,0x27,0x6,0x15,0x81,0x1c,0x33,0xeb,0x8, + 0x1,0xe6,0xd2,0x96,0xe7,0x68,0x55,0x21,0x18,0x21,0xc0,0x29,0x4b,0xcb,0x71,0x29, + 0x2d,0xb7,0xdc,0x8b,0x2f,0x27,0xce,0x78,0xf9,0x4c,0xe7,0x5,0xd3,0xf8,0x25,0x39, + 0x90,0xa6,0xd3,0xb2,0xc1,0x91,0xbd,0xbb,0x9e,0x37,0xcb,0x15,0x28,0x54,0xee,0xa5, + 0xfa,0x19,0x24,0x9a,0xb5,0xe5,0xbb,0x5c,0x33,0x56,0xe9,0x89,0x7f,0x6f,0xb4,0xaa, + 0x34,0x92,0x7,0xef,0x82,0x79,0x7e,0xcf,0xc4,0xce,0x1d,0xea,0x93,0x16,0xb1,0xe4, + 0xca,0xe4,0x1f,0xac,0x6,0x84,0xfd,0xd6,0x5f,0x1c,0x29,0x67,0x72,0xf6,0xf,0x56, + 0x2d,0x92,0x9b,0x14,0x23,0x30,0x77,0x7d,0x53,0x46,0x90,0xd2,0x23,0xaf,0x98,0x52, + 0x90,0xf7,0x83,0x43,0x4a,0x60,0x25,0x39,0x75,0x16,0x2a,0xd0,0xa4,0x68,0xfb,0x3, + 0x13,0x7d,0x9a,0xd,0x52,0x5e,0x1,0x79,0x55,0xa6,0xf0,0x42,0xa4,0xe6,0x46,0xeb, + 0xcc,0xe0,0xac,0x33,0xd3,0x89,0x5b,0x49,0x24,0x34,0x7,0xd2,0x73,0x26,0x84,0x58, + 0x95,0xd5,0x39,0x32,0x27,0xd0,0xf1,0xd9,0xf7,0x1f,0x2,0x13,0x4b,0x46,0x48,0x23, + 0x4a,0xea,0x9e,0xb6,0xd3,0xc9,0xa6,0xc7,0x29,0x11,0x77,0xc6,0x3c,0x1b,0xae,0xea, + 0xbb,0x66,0xb5,0x86,0xf3,0x2a,0x7e,0x6d,0x3e,0x74,0x7c,0x2f,0x11,0x78,0xc,0xff, + 0x60,0x19,0x9,0xb9,0xab,0x1c,0xfb,0xc1,0xfe,0x40,0x44,0xa6,0x64,0x70,0x74,0x15, + 0x58,0xf9,0xf5,0xc7,0x40,0xc7,0x71,0xc8,0xfb,0x92,0xe0,0xfb,0xd4,0xc,0xf0,0x47, + 0xab,0x99,0x1f,0xd3,0x4,0xe6,0x7f,0xc,0xe8,0x69,0xc3,0x91,0x3c,0x6d,0xb7,0x20, + 0xaa,0x46,0x3b,0xb5,0x29,0x10,0xee,0x51,0x9,0x23,0xb2,0x8a,0x55,0xec,0xd0,0x24, + 0xda,0x15,0x49,0xbe,0xe6,0x3f,0x4e,0x68,0x55,0xaa,0x3c,0x92,0xf,0x7d,0x1c,0x91, + 0xb8,0x52,0x42,0x17,0x49,0x51,0x4b,0x63,0xee,0x6d,0x1c,0xcd,0x1f,0xa5,0x58,0x55, + 0x61,0xa1,0xe4,0xf2,0x16,0xc7,0x88,0x3,0x7e,0xca,0x16,0xbb,0x8d,0xe0,0x53,0x32, + 0x2c,0x8e,0xd7,0xa9,0x81,0x44,0x5d,0x32,0x4a,0x8c,0xa7,0xcc,0xf3,0xe9,0xaa,0x4d, + 0xaa,0xac,0xb8,0xd2,0x0,0xe2,0xcc,0x39,0x6d,0xee,0x6f,0x3e,0xd4,0x1f,0xdb,0x1b, + 0x74,0x35,0x90,0x3b,0x9,0x25,0xb8,0xc,0xfe,0xa8,0x5d,0x6,0x1,0x86,0x6f,0xe1, + 0xe,0x14,0x99,0x68,0x2f,0xd1,0xc0,0x9f,0x3,0x66,0xc9,0x25,0xd6,0x78,0x55,0x10, + 0xe4,0x8,0xed,0xaf,0xd3,0xc2,0xf8,0xcf,0x1,0x33,0xe1,0x40,0x24,0x30,0x32,0x66, + 0xc1,0x79,0x20,0x18,0x9f,0xc6,0x2a,0x63,0x86,0x1d,0xa3,0xd0,0xf3,0x96,0x72,0xa, + 0x1a,0x6f,0x1f,0x72,0x12,0x7b,0x8a,0x5a,0x72,0x1a,0x1a,0x7d,0x90,0x72,0x1a,0x5f, + 0x88,0xd2,0x9f,0xc7,0x2a,0xf5,0x8a,0x92,0x78,0x42,0x94,0xfe,0xcc,0x94,0xea,0xd8, + 0x21,0xf0,0x1d,0x5e,0xfc,0x79,0xa4,0x57,0x13,0x2,0xf2,0x36,0x76,0x44,0xf1,0xc9, + 0x9b,0xc9,0x85,0xd3,0x46,0x6e,0x27,0x98,0x35,0xc1,0xe2,0x96,0x43,0x46,0xa2,0xf9, + 0x8b,0xbc,0x6c,0xf9,0x67,0xab,0x45,0x1e,0x8c,0x7,0x6e,0xc2,0x8e,0x79,0x1b,0x98, + 0xd2,0x3a,0x67,0x4f,0x69,0xc5,0x31,0x6f,0x2b,0x37,0x7a,0xbf,0xb3,0x9c,0x98,0xf4, + 0x3a,0xaf,0x2,0x7b,0xbd,0x25,0xe6,0xbd,0xc9,0x2b,0xbb,0x76,0xbc,0xce,0x82,0x84, + 0x33,0xf8,0x41,0x44,0xa4,0xd3,0x2a,0x31,0x7f,0x52,0x11,0x6f,0xea,0x6f,0x11,0x6d, + 0xac,0xc0,0xa6,0x15,0xe7,0xe5,0x9,0xf9,0xa0,0x78,0x7d,0x20,0x69,0x8a,0x74,0x43, + 0x95,0x36,0x78,0x25,0x76,0xd6,0xa9,0xc8,0x26,0x67,0x20,0xb,0xd4,0xcb,0x53,0x53, + 0xb5,0x5a,0x77,0x38,0x68,0x94,0x8c,0xb6,0x8,0xd4,0xdd,0xf9,0xe9,0x49,0x28,0x27, + 0x86,0x49,0xe3,0x4b,0x1c,0x3,0xe0,0xb4,0xbb,0x85,0x43,0x86,0xb4,0xa2,0x39,0x24, + 0xf3,0x5c,0x3a,0xd9,0x6c,0xf9,0xa9,0x36,0xb,0x64,0x18,0x69,0x22,0x1,0x62,0xc3, + 0xfa,0xb3,0xdd,0xd6,0x12,0xf8,0x0,0xc2,0xf1,0x61,0xfb,0x32,0x48,0x19,0xe2,0x84, + 0x8d,0x80,0x3d,0xd1,0x61,0xa,0x35,0x5c,0xeb,0x5d,0x4e,0x40,0x67,0xf5,0xf2,0x1c, + 0xbc,0x5c,0x4b,0xb8,0xf0,0xfb,0xff,0x2,0x9d,0xdb,0x93,0xbd,0xfd,0x43,0x23,0xa6, + 0x38,0xca,0x28,0xea,0xca,0xce,0x45,0x7b,0x8d,0xe7,0x5d,0xb9,0x50,0x1e,0x3,0xee, + 0x21,0x55,0x45,0xa7,0xda,0x49,0xaa,0xfc,0xc,0x6,0x14,0x5,0x6f,0x67,0xa,0xa4, + 0x4d,0x53,0x97,0x48,0x25,0xb0,0xf1,0xd0,0xc8,0x87,0x1c,0xe2,0xd8,0x43,0x15,0xe7, + 0xca,0xa4,0x1c,0x79,0x5b,0x33,0x37,0xd2,0x61,0xe1,0xce,0xfc,0x31,0x5c,0x6,0xf3, + 0x3a,0x5b,0xed,0x4,0x8c,0x3c,0xae,0xc,0xf4,0xff,0xc8,0xe1,0x1a,0x1c,0x3a,0x50, + 0x7f,0xaa,0xbc,0x67,0x78,0xe0,0xbc,0x11,0x82,0xb9,0x25,0x62,0xaf,0x9f,0x92,0xdb, + 0x80,0x5f,0xd7,0x57,0xc3,0x67,0x1a,0x97,0xb2,0x58,0xb6,0x3,0xe8,0xf3,0xec,0x5d, + 0x22,0x39,0xfb,0x68,0xd,0xbe,0x93,0xb3,0x58,0xc0,0x14,0x65,0xf2,0x85,0xa6,0x37, + 0x7a,0x62,0x8f,0x25,0xdf,0x69,0x4b,0x30,0xe,0xa5,0x89,0x45,0x3,0x44,0x62,0x38, + 0x20,0xa9,0x78,0x70,0x11,0xbc,0x27,0xe3,0x89,0x17,0x49,0xc7,0x1e,0x88,0xcd,0x3e, + 0xeb,0x43,0x72,0x24,0x69,0x9e,0xa2,0xe5,0x4e,0x6b,0xd2,0x93,0xaa,0xd4,0xbb,0x54, + 0x34,0xd8,0xf,0x21,0xb0,0x6e,0xec,0x88,0xbe,0x96,0x12,0x26,0xcc,0xea,0xf8,0x8b, + 0x55,0x3,0xdc,0x43,0x3b,0x2,0xa2,0xa7,0xc3,0x7f,0xb1,0x2a,0x0,0xec,0x5b,0xa5, + 0x43,0x40,0x2e,0xe6,0x31,0xa,0x63,0xd9,0x38,0xe1,0xc5,0x4,0x38,0x8a,0x2d,0xfe, + 0xcb,0x48,0x41,0x60,0x4d,0x55,0x66,0xfb,0x4a,0x8,0x1,0xf7,0x7,0x13,0x7c,0xeb, + 0xe,0xb6,0xf,0x22,0xfd,0x25,0x18,0x3b,0x83,0x29,0x89,0xf1,0x5,0xe7,0x9c,0xc4, + 0xf1,0x4,0x53,0x12,0xe7,0xcd,0x2a,0x3a,0x9,0x4e,0x54,0xb,0xa5,0x4a,0x38,0x15, + 0x6b,0xcc,0xf1,0xe,0x53,0x32,0xb0,0x78,0xe2,0x72,0xb2,0x3d,0xa3,0x5e,0xb8,0x9d, + 0xe4,0xae,0x63,0xa,0x61,0x9e,0x63,0xa,0xe0,0x8e,0x63,0xa,0xe1,0x7e,0x63,0x6e, + 0xe8,0xbc,0x1d,0xbe,0x6f,0x6e,0x21,0xd9,0xe1,0x35,0xbc,0x92,0x92,0xb2,0x97,0xd0, + 0x50,0x96,0xb,0x8e,0xfd,0xb,0xf,0x7f,0x40,0xe7,0xdc,0x5f,0x8c,0x73,0x2e,0xae, + 0xec,0xad,0x86,0x51,0x40,0x44,0x94,0xaa,0x98,0x80,0x77,0xf6,0xeb,0x42,0xf5,0x6f, + 0x63,0x48,0xc4,0x7f,0xda,0xad,0x5a,0x69,0xb1,0x66,0xdb,0x23,0x20,0xfc,0xf0,0xcc, + 0xbe,0xf7,0x9f,0x76,0x8f,0x96,0xeb,0xc7,0x49,0x8c,0x86,0x97,0x3b,0x24,0x99,0xde, + 0x65,0x8d,0x79,0x60,0x8d,0x18,0x83,0x80,0xf1,0xdc,0x33,0x2,0xb7,0x15,0x94,0x21, + 0xed,0x67,0xcc,0x67,0xf7,0x10,0x7c,0x5c,0xe0,0x6c,0x63,0xef,0xf8,0x24,0xd2,0xef, + 0xb3,0x62,0x9b,0xa4,0x18,0x94,0xac,0x43,0x94,0xfe,0xa7,0x3f,0x6a,0xee,0x34,0x38, + 0x97,0x92,0x79,0x1c,0xa0,0xae,0x3a,0x4c,0xe1,0xc7,0x53,0x87,0x53,0x7b,0xf3,0x76, + 0xd5,0x2e,0xeb,0x21,0xc0,0xb4,0x5b,0xc4,0xb6,0x95,0x91,0x1e,0x60,0x9f,0xef,0x99, + 0xb3,0x41,0x3c,0xd3,0xdb,0x49,0x53,0x29,0x93,0xe5,0x6b,0x8,0x49,0x24,0x7d,0x2b, + 0xe0,0x2e,0xf9,0x2f,0xeb,0x57,0x9,0x55,0xe6,0x20,0xb2,0xc3,0xc8,0x7d,0x2a,0x0, + 0x21,0x3e,0xf6,0xf1,0xa6,0xa3,0x88,0x3c,0x1d,0x86,0xc1,0x45,0x6c,0x3c,0x8e,0xfa, + 0x38,0x37,0xef,0x47,0xe8,0x89,0xee,0x96,0xf5,0x65,0x17,0x60,0x12,0xaa,0x84,0x78, + 0x87,0xb4,0x77,0x7a,0xd2,0x33,0xfd,0xe3,0xfd,0xcc,0xff,0xed,0x48,0x64,0x74,0x55, + 0x1c,0xcd,0x1c,0x90,0x8e,0x8c,0xdd,0x3d,0x34,0x0,0x7b,0x7,0x51,0x45,0x9a,0x10, + 0x22,0xf7,0xba,0x34,0x21,0x2b,0xa5,0x9c,0x73,0xee,0x55,0x10,0x5a,0x83,0x30,0x53, + 0x2f,0x93,0x38,0x35,0x10,0x61,0xc8,0x34,0x25,0x5b,0x85,0x3c,0x1c,0x1b,0xdf,0xbe, + 0x24,0x75,0x58,0xc5,0xf9,0xc0,0xd3,0x7,0x22,0x2,0xa7,0x9a,0xc8,0x36,0x57,0x90, + 0x4b,0xbe,0x32,0x61,0x26,0xe,0x3c,0x21,0x81,0xcb,0xf1,0x8,0x98,0xe8,0xee,0x4f, + 0x10,0x17,0x9b,0x88,0xe9,0xed,0x7,0xed,0x75,0x52,0x0,0x74,0x79,0xf8,0x22,0x8, + 0x11,0x5e,0x6a,0x38,0x6d,0x55,0x53,0x7b,0x43,0x63,0x8,0x60,0x46,0xc2,0xde,0xac, + 0x8f,0xf3,0x76,0xb5,0x6e,0xfa,0xab,0xfa,0x16,0x9c,0x96,0x8c,0x91,0x13,0xe0,0x60, + 0x59,0xf4,0xdf,0xd2,0x25,0x9e,0x14,0xa8,0x2,0x62,0x48,0xca,0x7f,0x7,0x4f,0xc2, + 0x30,0xe,0x9f,0x3e,0x9,0x65,0xba,0x18,0x2d,0x7c,0xf3,0xc9,0x58,0x94,0xff,0x9e, + 0xe2,0xee,0xff,0xe1,0xdc,0xd,0x9c,0xa1,0x3a,0x4f,0x20,0x2c,0x70,0xfd,0x7f,0xa6, + 0x46,0x4b,0x0,0xec,0x1a,0xe,0x94,0x67,0xa0,0x9d,0xe7,0x3c,0xcf,0x70,0xc6,0x49, + 0x25,0x4a,0xc6,0x5,0x2f,0xad,0x23,0xb7,0x8d,0x1a,0x52,0x33,0x95,0xc7,0xab,0x5, + 0x88,0x83,0x34,0xb1,0xb2,0x0,0xbc,0x70,0xff,0xc3,0x22,0x9c,0x65,0xe0,0x90,0x1b, + 0xb4,0x66,0x67,0xe9,0x7f,0x1e,0x32,0x61,0xb0,0x95,0x5d,0xcc,0x49,0x4,0x37,0x11, + 0xaf,0xef,0x9b,0xba,0xbf,0xb8,0x6f,0xe0,0x24,0xfe,0xaf,0xfa,0xd3,0x8c,0x2a,0x67, + 0xb9,0x15,0x8c,0x9d,0x5f,0xea,0x81,0xff,0x35,0x70,0xce,0xfe,0x3c,0x0,0xfa,0x60, + 0xe4,0x5f,0xf9,0xe4,0x57,0x86,0x83,0x9,0x80,0xba,0x8c,0xb1,0x98,0x1e,0x92,0x85, + 0xac,0x1,0xcf,0x21,0x19,0x96,0x7b,0x43,0xb0,0x14,0x64,0xd2,0xc7,0x8c,0x70,0xef, + 0x81,0xd7,0x5f,0x83,0xa9,0x3,0x2f,0x80,0x10,0x8f,0x2e,0x71,0x7,0x2a,0x8,0x5e, + 0xe,0xf6,0x5e,0xcc,0xfb,0xab,0x84,0x91,0x3,0x1a,0x4e,0xcb,0xee,0x1d,0xb9,0x20, + 0xf3,0xda,0xb4,0xf5,0x10,0xda,0x5a,0xed,0x55,0xe3,0x84,0x13,0xca,0xeb,0xc3,0xa9, + 0xaa,0x76,0x74,0x13,0x10,0x51,0x62,0x8d,0x32,0xea,0xb2,0xe1,0xd5,0x77,0x75,0xbf, + 0xaa,0x3f,0x5,0xce,0x29,0x98,0x63,0x7,0x65,0xd2,0x6,0x74,0x82,0x51,0xd5,0x76, + 0x15,0x8b,0xb6,0xf4,0x6,0x19,0xc7,0x4a,0x6d,0xfb,0x2b,0xe5,0x75,0xe5,0xe8,0x8d, + 0x47,0x36,0x23,0x43,0x44,0x61,0xf0,0x2f,0x96,0xeb,0x4b,0x26,0x1b,0x7e,0xb0,0x12, + 0x0,0x7d,0x1d,0x44,0x35,0x25,0xa0,0x23,0x62,0x8b,0xfc,0x60,0xf7,0xb6,0x3,0x69, + 0x8a,0xac,0x28,0x41,0xa1,0x77,0xae,0x63,0x1d,0xed,0x40,0xc8,0xc8,0xfd,0x7a,0x97, + 0xae,0x9a,0xaa,0xd1,0xd8,0x16,0x2c,0x4c,0xe3,0x7,0x6b,0x29,0xf8,0x68,0xec,0x9d, + 0x95,0xdc,0xf,0xf2,0xf4,0x6e,0x22,0xb6,0xe3,0x7,0xbd,0x95,0xc5,0x13,0xd1,0xff, + 0x3f,0x8c,0x54,0x78,0x46,0xea,0xf,0xfe,0xf8,0x61,0xac,0xc4,0x53,0xd0,0x44,0x84, + 0x87,0x2,0xa9,0x4c,0x1a,0x13,0x7d,0xf1,0x87,0x80,0x20,0xc4,0x1b,0xe6,0xa1,0x20, + 0xd3,0xa1,0x34,0x88,0x30,0x11,0x7,0xf2,0x43,0x30,0x19,0x7,0xf2,0x43,0x30,0x15, + 0x7,0xf2,0x43,0x30,0x1d,0x7,0xf2,0x43,0x30,0x19,0x7,0x42,0x40,0x4e,0x1c,0xc8, + 0xf,0x1,0x3d,0xb1,0x70,0xe7,0xd9,0x9e,0x59,0x1c,0x7,0x99,0x4b,0x65,0x26,0xda, + 0x6d,0x49,0x9e,0x42,0x98,0x74,0xd3,0x30,0x29,0xee,0xe8,0x48,0x1c,0x9a,0xa0,0x36, + 0xf1,0x2,0x14,0x24,0xa3,0x65,0x63,0x7f,0xc5,0x6a,0xae,0x63,0x97,0x13,0xc9,0x6d, + 0xbb,0xc2,0xad,0x37,0xd1,0xc4,0x90,0xfb,0x3,0xa9,0x47,0xf5,0xa7,0x6,0x45,0x85, + 0x91,0x83,0xe5,0xcb,0x6b,0xb1,0x89,0x37,0xec,0x62,0x93,0x1a,0xcc,0x53,0x19,0x3e, + 0x56,0x18,0x9f,0x31,0x92,0x43,0x4a,0x8e,0x30,0xde,0x40,0x0,0x9e,0x45,0x5a,0xb, + 0x98,0xa8,0xc0,0x22,0xf8,0x2b,0x28,0x48,0x40,0x5b,0x61,0xb7,0x3b,0x2,0x92,0xb9, + 0xa0,0x18,0x8d,0x49,0x5b,0x4a,0xee,0xf0,0x32,0x4a,0x8f,0xe3,0xf5,0x87,0x40,0x5d, + 0xd4,0x75,0x42,0x3,0x23,0x8a,0x40,0xac,0x45,0xe2,0xf,0xb6,0x15,0xfb,0xa3,0xf, + 0x23,0x86,0x92,0x8c,0xaa,0x70,0x95,0x9f,0xb7,0xed,0xea,0x42,0x66,0x6f,0x48,0x72, + 0xf9,0xa4,0xb7,0xda,0x54,0xd2,0x2d,0xb7,0xac,0xc2,0x2b,0x10,0x3f,0x18,0x13,0x28, + 0xcf,0xd5,0x7,0x48,0x3c,0x67,0x45,0xae,0xe2,0x81,0x18,0x66,0x99,0xc8,0x99,0xc3, + 0x53,0xab,0x7f,0x31,0xc5,0x55,0x2c,0xef,0x16,0x44,0x2b,0xee,0xeb,0xca,0xb5,0x89, + 0x8c,0x37,0x27,0xec,0x65,0x55,0x73,0x5e,0xb6,0xfb,0x19,0xa2,0x73,0xe1,0xb0,0xc, + 0x9e,0xde,0xb,0x59,0xa7,0x85,0x59,0x9a,0x4a,0x75,0xf8,0xa5,0xee,0xf4,0x76,0x2c, + 0xfa,0x62,0xe3,0x71,0xd3,0xd8,0x7e,0x5a,0x12,0x26,0xcf,0xd6,0xa0,0x5c,0x7f,0x57, + 0x23,0x9a,0xc4,0x7e,0x36,0x8c,0x46,0x26,0x2,0x2e,0xbd,0x34,0x18,0x28,0x0,0x66, + 0x84,0x43,0x23,0x6d,0xda,0xdc,0x4b,0x93,0x69,0x97,0x92,0x43,0x23,0xb3,0xa,0x7a, + 0xfb,0x66,0xd7,0x61,0x3b,0x42,0x80,0x3e,0x2c,0x24,0xd3,0xbe,0xd,0x7b,0xb5,0x85, + 0x90,0x99,0x37,0x13,0x1c,0x60,0xd8,0xb6,0x8e,0xf3,0x1a,0x46,0xc1,0xca,0x7a,0xf2, + 0xf,0xeb,0xab,0xa6,0xed,0x21,0xb5,0x25,0x3c,0x66,0x9f,0x3b,0x93,0xaf,0x8a,0xe, + 0xcc,0xdc,0xf3,0x2e,0xf1,0xb9,0x8f,0x70,0x7c,0xd1,0x68,0xee,0x1d,0x1a,0x36,0xf7, + 0x84,0x86,0xcd,0xbd,0x43,0xc3,0xe6,0x9e,0xd0,0xb0,0xb9,0x77,0x68,0xd8,0xdc,0x13, + 0x1a,0x36,0xf7,0x9c,0xc6,0xce,0xfd,0x24,0xbf,0xdb,0xd8,0xfb,0xff,0xa,0xb8,0x75, + 0x4a,0x24,0x85,0x2,0x71,0x2b,0x92,0x48,0xc,0x84,0x27,0x1a,0xbe,0x6b,0x92,0x2f, + 0xb1,0xa,0xc8,0x25,0xe2,0xd8,0x6,0x29,0x11,0xc8,0x38,0x2c,0xe2,0xbf,0x2,0x1a, + 0xdb,0x40,0x5c,0x8b,0x4,0x40,0xe4,0x13,0xa1,0x92,0x57,0x4,0xdc,0xa4,0x39,0xac, + 0x3f,0x16,0x65,0x74,0xa4,0x45,0xa2,0x27,0x2e,0xe7,0x75,0x2f,0xc3,0x27,0xb4,0xeb, + 0xc8,0x38,0x64,0x8e,0x1f,0xe9,0x4f,0x32,0x11,0xf6,0x23,0xe7,0x7a,0xc4,0xf0,0xaa, + 0x74,0xfa,0x56,0x90,0xe9,0xd1,0x9b,0x7a,0xd1,0x2e,0xdb,0xe5,0x75,0x5f,0x5f,0x81, + 0x9e,0x4d,0x3c,0x44,0x9e,0xc0,0x37,0x54,0xa7,0x49,0xbc,0xdb,0xa3,0xce,0x2,0xfc, + 0x77,0x45,0x65,0x9e,0xd0,0x63,0x83,0x8d,0x5e,0x7e,0xea,0xb6,0x5a,0x5d,0x76,0x9f, + 0x82,0x78,0x27,0x81,0x2b,0x6a,0x54,0xf9,0xb7,0x45,0x87,0x34,0x9e,0x29,0x1,0x0, + 0xdc,0xa1,0x16,0xed,0xa2,0x1b,0x40,0x86,0xeb,0xc3,0x22,0xca,0x33,0xb,0x9d,0x92, + 0xe6,0xd8,0xe9,0x75,0x1c,0xe3,0xcb,0xea,0xbe,0xeb,0xb3,0xcc,0x7,0xe7,0xbf,0x8, + 0x4b,0xdf,0x13,0x5d,0x31,0x12,0x67,0xd8,0x68,0xb,0xcd,0xde,0xf0,0x61,0xab,0x13, + 0x17,0x72,0xd1,0xac,0xbd,0x7d,0xdf,0x88,0x7f,0x75,0xb,0x78,0xe3,0x3e,0x77,0xec, + 0x1e,0x95,0xac,0x75,0xf6,0x23,0xaf,0xfe,0x1e,0x8d,0x7c,0x8c,0x77,0xe3,0xf3,0x30, + 0x7e,0xeb,0x37,0xd4,0x49,0x2f,0xe8,0x69,0x8d,0xe3,0x6e,0xc4,0xf6,0x5,0xd1,0x3b, + 0x5a,0x8b,0xd9,0xcc,0x42,0x18,0x1d,0x26,0x8e,0x90,0xc5,0x98,0x39,0x37,0x59,0xb9, + 0xad,0x16,0xb4,0xd5,0x82,0xef,0xed,0x3,0x3b,0x62,0x8b,0x52,0xa3,0x37,0x3f,0x72, + 0x32,0x77,0xe1,0xb1,0x8f,0x9b,0x79,0xbd,0xc,0x12,0x78,0x5b,0x70,0xf4,0x7a,0xae, + 0x61,0x45,0x3a,0x73,0xfc,0xb1,0x58,0xc6,0xd2,0x9,0x82,0x92,0xa7,0xf2,0xf9,0x56, + 0xc6,0x10,0xf6,0x55,0xd7,0x2a,0x26,0x1f,0x27,0xa5,0xf0,0xf0,0x83,0x2a,0xe6,0x43, + 0x50,0xdf,0x46,0x3e,0xc6,0x25,0x67,0x84,0xdd,0xe2,0xba,0xc3,0x4f,0x36,0xc6,0x1b, + 0x70,0xf6,0x32,0x10,0x1c,0xf8,0xd5,0xea,0x2c,0x6f,0x3c,0x34,0xdd,0x49,0x61,0x9e, + 0xc3,0x65,0x4d,0x77,0xb0,0x25,0xfb,0x4c,0x7f,0xa1,0xc1,0x12,0xe6,0xaf,0xfb,0x7a, + 0xdd,0x7d,0x84,0x17,0x78,0xd9,0x5b,0x14,0xec,0x43,0x7e,0x70,0xc5,0xfe,0x57,0x6, + 0x21,0x57,0x6c,0x1f,0x9d,0x40,0xe3,0xe5,0x7a,0xd3,0xf6,0x38,0xac,0xa8,0x64,0x69, + 0x72,0x7f,0xdc,0xb8,0xfe,0x57,0x38,0x91,0x2e,0xce,0xad,0x58,0x9e,0x0,0x9e,0x95, + 0x65,0x59,0x2a,0x1e,0x1c,0x84,0x79,0xee,0x38,0xc3,0x3,0xf1,0xe2,0x27,0x8e,0x2b, + 0x46,0x50,0xfc,0x54,0x36,0x40,0x4e,0x97,0x6d,0xab,0xb0,0x85,0x82,0x13,0x20,0x61, + 0x4d,0x60,0x76,0x18,0x93,0xe3,0xf4,0x11,0x13,0x61,0xc7,0xfc,0xd5,0xe2,0xbe,0x5e, + 0x76,0x1f,0x57,0x37,0xb0,0x76,0x9,0x3d,0x1,0xfc,0x79,0xd6,0xce,0x19,0xa3,0xb3, + 0xb1,0xfc,0x5d,0x5,0x9,0x3e,0xdc,0xfc,0x4d,0x73,0x53,0xaf,0x9b,0xbe,0x5d,0x5e, + 0xc0,0x29,0xa7,0xd0,0x3c,0x76,0x12,0xfb,0x62,0xb5,0xd9,0x57,0xc5,0xe7,0x98,0xed, + 0x80,0x59,0x74,0xc2,0x86,0x9e,0x5,0xe9,0x8f,0x7b,0x87,0x7b,0x35,0xf9,0x10,0xf7, + 0x8a,0x11,0x39,0xe3,0xd3,0xaf,0x5f,0xb3,0xf1,0x39,0x2f,0x50,0x1f,0xdf,0x8a,0x35, + 0x4a,0xf1,0xb5,0x70,0xc6,0x9a,0x47,0x10,0x0,0xfd,0xa3,0x5f,0x48,0xe7,0xaf,0x5d, + 0xdb,0x4e,0x52,0x22,0xa7,0x93,0xfa,0xad,0x69,0xd6,0x49,0xd5,0x73,0xfb,0xa6,0x7a, + 0xbf,0xac,0x21,0x31,0xf7,0x4e,0x92,0xd1,0x4e,0xee,0x43,0xc8,0x86,0x7d,0xe3,0xdb, + 0x76,0xb2,0xc0,0xf6,0x8a,0xa7,0xf2,0xbd,0x6a,0xd6,0x49,0xa7,0xff,0xa4,0x93,0xe, + 0x91,0xba,0xab,0x50,0xfe,0xd4,0xce,0xbb,0x1c,0x64,0x9f,0x81,0xc2,0x31,0x1d,0x75, + 0x1f,0xbb,0x55,0x7b,0xd1,0xf6,0x62,0xfe,0x33,0xd0,0xbf,0xd2,0xd0,0x19,0x5a,0x1a, + 0xe4,0x3f,0xdb,0xe0,0x12,0x15,0x4b,0xfd,0xb7,0xd,0x4e,0x6a,0xd8,0x9e,0xc1,0x9d, + 0x75,0xb7,0x72,0x58,0xd5,0x4e,0x16,0xf1,0x61,0xc5,0xf1,0xcf,0x33,0x28,0xbc,0xad, + 0x29,0xf,0x4f,0xff,0xc6,0x51,0xe1,0xcc,0x54,0x13,0x4b,0x76,0x33,0x7c,0x5e,0x36, + 0x6b,0x1c,0x5c,0xca,0xf6,0x24,0xa5,0x18,0xfd,0x4c,0x63,0x63,0x82,0xf8,0xe1,0xd1, + 0xe9,0x1e,0xbf,0xe9,0xeb,0xd5,0xb2,0xbb,0xaf,0x81,0xc9,0xf2,0x1d,0x4c,0x6a,0xef, + 0xe8,0x3b,0x3f,0x13,0x8b,0x39,0xdd,0xd2,0x6f,0xc7,0xb3,0x49,0x77,0xfa,0xfa,0xaa, + 0xbf,0x19,0xd6,0xd8,0x4f,0x78,0xd4,0x81,0x2a,0xef,0xa6,0xe4,0x15,0xe9,0x78,0x9c, + 0x91,0x67,0xea,0x6d,0xcf,0x4b,0xec,0x44,0xf9,0x54,0xbe,0xb1,0xc0,0x7a,0xee,0xc, + 0x8a,0xf4,0x9c,0x12,0x39,0x3d,0xd7,0xef,0x35,0xb0,0x9e,0xab,0xe1,0xe8,0x9e,0xef, + 0xcd,0xdb,0x75,0x1d,0x14,0x90,0xe3,0x82,0xde,0xfd,0xc6,0x8f,0x38,0x33,0x63,0xa7, + 0xbd,0xac,0xb0,0xc1,0xea,0xa9,0x7c,0x1a,0x82,0xf5,0xd2,0x19,0x0,0xe9,0x25,0x25, + 0x72,0x7a,0xc9,0x9f,0x90,0x70,0xba,0xc9,0x5,0x11,0x79,0x21,0x43,0xee,0x64,0xb5, + 0x9c,0xf6,0x72,0x27,0x29,0x77,0xb2,0xf2,0xff,0x50,0xf7,0x9d,0x8e,0x7e,0xbd,0xa8, + 0xaf,0x5a,0x21,0x33,0xd7,0x1d,0x74,0x36,0x15,0xd3,0x6d,0x25,0x4b,0xc,0x89,0x12, + 0xd8,0x9b,0x53,0xb6,0xb3,0xf0,0xe9,0x40,0xe5,0x4f,0xe5,0xab,0x57,0xac,0xb7,0xce, + 0x40,0x48,0x6f,0x19,0x95,0xdb,0x5d,0xfd,0x86,0x16,0xeb,0x2e,0x79,0x33,0x44,0x7e, + 0x7b,0xc2,0x7c,0xba,0xba,0xbf,0xae,0xe1,0xad,0xcd,0x9d,0x28,0xf9,0xa5,0x26,0x56, + 0xe8,0x28,0x8f,0xed,0x7b,0x24,0x73,0x8f,0x85,0x8f,0x5c,0x80,0x19,0x58,0x84,0x70, + 0xd1,0xf,0x1e,0xb7,0x63,0x6f,0xa8,0x65,0xe4,0xad,0x50,0xf6,0xb8,0x9,0x3c,0xf9, + 0x85,0x7d,0xc1,0x77,0x4,0xdc,0x21,0xb9,0x2b,0x43,0xa7,0xdf,0x21,0xe3,0xf6,0xed, + 0xdf,0xb4,0x3e,0xee,0xbe,0x4c,0x9e,0xdb,0xc0,0x61,0x1e,0xd6,0xd7,0xf5,0x95,0xb0, + 0x7c,0xe1,0x71,0x8e,0xb1,0xe5,0x2b,0xdf,0x98,0xdc,0x56,0x8f,0xba,0x10,0x2e,0xfb, + 0x3b,0x8c,0xd3,0x1d,0x86,0x7e,0x9a,0x6d,0xc3,0x30,0xc0,0xf,0x99,0xfa,0x46,0x31, + 0xeb,0x9b,0xab,0x65,0x73,0xd3,0x2d,0xee,0x61,0x27,0x16,0x63,0x89,0xe8,0x15,0xb7, + 0xff,0x33,0x83,0x71,0x7a,0xfd,0xd5,0x6a,0xbd,0x7d,0xd4,0xf4,0xf0,0xcd,0xc0,0x3b, + 0x77,0xe9,0x4f,0xf8,0x68,0xca,0x8,0x9d,0x6f,0x3f,0xef,0x8,0xc8,0x97,0xf3,0x38, + 0x59,0x50,0xdf,0x5e,0xce,0xeb,0xf5,0x4d,0x8d,0x5c,0xc5,0x22,0x22,0xa5,0xe8,0xa, + 0xe9,0xc3,0x7c,0x64,0x21,0xd0,0xae,0x91,0x8f,0x55,0x8e,0x86,0xe1,0xc,0x91,0xe, + 0x83,0x92,0x39,0xca,0xc3,0x63,0x86,0xa8,0xbb,0xbd,0xbb,0xac,0xaf,0xee,0x21,0xa2, + 0x8d,0x87,0xf6,0x13,0xee,0xb1,0xaf,0x7,0x92,0x4e,0xa3,0xc9,0x25,0x1f,0x5f,0x9, + 0xf0,0xe4,0x49,0xde,0xc9,0x5c,0xfd,0x2f,0xe,0xc7,0xdc,0x54,0x5e,0x80,0xef,0xa7, + 0xe1,0xfe,0xda,0x92,0xe5,0x8b,0x8c,0xcc,0x41,0xf2,0xc6,0xc4,0x53,0x32,0xc3,0x67, + 0xec,0x26,0x2d,0x54,0x41,0x39,0xec,0x4a,0x31,0x84,0x66,0x16,0xde,0x58,0x1f,0xd3, + 0x1f,0x7d,0xc8,0xf6,0x61,0xb8,0x58,0x7c,0xa8,0x97,0xf5,0x6,0x9c,0x93,0xee,0xea, + 0xba,0x83,0xfc,0x2d,0x1b,0x70,0xc0,0x1f,0xf4,0xa1,0xf9,0xd8,0x6d,0x42,0xb9,0xe9, + 0xee,0x3e,0x34,0x1b,0x10,0xbe,0xad,0xaf,0xfb,0xe6,0x82,0x20,0xa8,0x64,0x52,0x26, + 0x37,0x5a,0xbd,0x6e,0x57,0x8b,0xfa,0x63,0xbd,0x75,0x1a,0xec,0xee,0x6,0xec,0x22, + 0x2b,0x39,0x1f,0xd0,0x20,0x93,0x22,0x4,0x2e,0x83,0xe9,0xd3,0xa,0x9,0x34,0xa7, + 0xed,0xb9,0x43,0xe6,0x84,0x51,0x78,0x40,0xf2,0xa6,0x18,0xab,0xce,0x1f,0xe7,0xac, + 0x41,0xa3,0x30,0xa,0x87,0xd8,0x17,0xa,0x2d,0x21,0x74,0x74,0x21,0x83,0x78,0x62, + 0xa1,0x15,0x28,0xb1,0x61,0x47,0xa3,0x11,0x24,0x36,0x21,0xac,0xd3,0x9,0xfb,0x4, + 0x48,0xec,0xd2,0x18,0x48,0xa2,0xf2,0xe,0x1f,0x3a,0xa0,0x63,0x9a,0x92,0x46,0x2, + 0xc8,0xdb,0x4f,0xbc,0x9d,0x94,0x66,0x6e,0xe5,0xd,0xa5,0xf6,0x6e,0x7b,0xc4,0x48, + 0xf0,0xf8,0x5f,0xe7,0x73,0xc2,0x29,0x4c,0x5c,0x52,0x44,0x91,0xef,0x7c,0x9b,0xdb, + 0xb3,0xb4,0xa,0xf3,0x2c,0xc7,0xf8,0xbc,0x48,0x22,0x54,0x7c,0x90,0xb4,0x6e,0x73, + 0x5b,0x94,0x93,0x14,0x20,0x68,0xa,0x1a,0x72,0x10,0xb9,0x23,0xb2,0x28,0xfe,0x6e, + 0xd1,0xf4,0x15,0x2e,0xdf,0xe0,0xdb,0x91,0xce,0x95,0x2b,0x4e,0x5c,0x4c,0xad,0x58, + 0x41,0xd7,0x72,0xe5,0x81,0xb0,0x30,0xc6,0xdd,0x67,0x81,0xb9,0x2,0x2a,0x2f,0x94, + 0x45,0x3a,0xc,0x9b,0x82,0x68,0x8a,0x5c,0x2c,0x57,0xa1,0xe8,0xf2,0xe6,0x89,0xe5, + 0x4e,0x2,0x9a,0x8d,0x48,0xcc,0x98,0x78,0x2e,0x64,0xd,0xd4,0xd1,0x23,0xe,0x95, + 0x9,0x6f,0x28,0x1d,0x40,0x69,0x39,0xdd,0xa9,0xcb,0x64,0x47,0xd3,0x79,0xc,0x48, + 0x28,0xfb,0x55,0xdf,0x5e,0xe1,0x8b,0x10,0x29,0x7d,0xab,0x19,0x9f,0x2f,0x56,0x57, + 0xc4,0xb2,0x9d,0x8,0xf2,0x6e,0x89,0x29,0x63,0xd7,0x0,0xe4,0xf3,0x6,0x20,0xa2, + 0x5,0xc4,0x9b,0x9c,0x4e,0xec,0x61,0xef,0x31,0xcd,0xd5,0x5e,0x33,0x8,0xf3,0x4c, + 0xe6,0x84,0x20,0x4f,0x5d,0x91,0x46,0x84,0xe5,0x93,0xa6,0x34,0x6b,0x63,0xa9,0xa3, + 0xc6,0x13,0x7c,0x3f,0xe1,0xdd,0x73,0x7d,0x2f,0xb,0xbf,0xa2,0x84,0xa0,0xc6,0x29, + 0xef,0x5c,0x5c,0xc1,0xef,0x67,0xf6,0x84,0x37,0x55,0x9d,0xa5,0x3b,0x42,0xee,0x4f, + 0xd5,0xb6,0x27,0x4,0x3f,0x3e,0xa5,0xbc,0x13,0x39,0x1a,0x82,0xa8,0x2,0xe,0x94, + 0x21,0xb3,0x57,0x24,0xbf,0x1e,0xc,0x97,0x65,0xe9,0xdb,0x54,0xb6,0xaf,0x70,0x45, + 0xbb,0xac,0xef,0x85,0x3b,0x1,0x12,0x7a,0xf,0x58,0x77,0x97,0x37,0xf3,0x6e,0x71, + 0xb,0x57,0xd2,0xe9,0x31,0x4f,0x9,0x33,0xb9,0x3,0xcb,0x2,0x8b,0xfd,0x5c,0x4e, + 0xd7,0x28,0x8b,0xa5,0x49,0xb5,0x62,0x36,0x40,0xf5,0x94,0x45,0x44,0x7,0x1b,0xb2, + 0x78,0xbf,0xdd,0xbd,0x80,0x5f,0xd2,0xbe,0x97,0x1,0xe8,0x3a,0x22,0xd8,0x81,0x1f, + 0xab,0xf0,0x74,0xce,0x37,0xea,0x16,0x18,0xaa,0x52,0x36,0xdf,0x48,0x96,0x48,0xf7, + 0x6a,0xbe,0x85,0x21,0xfb,0x28,0x62,0x9e,0xe9,0xdc,0x92,0x32,0x7c,0x51,0xd4,0x3e, + 0x71,0xb,0x62,0x77,0x3f,0xf0,0x84,0xe0,0xcf,0x1c,0x8,0xfb,0xf0,0xf0,0x8,0x94, + 0x3d,0x4,0xc6,0x48,0xe8,0x33,0x60,0x9c,0x86,0x3c,0x2,0xc6,0x29,0xec,0x13,0x60, + 0x9c,0x80,0x3d,0x0,0xc6,0x49,0xec,0xf3,0x5f,0x9c,0xc4,0xde,0x2c,0x8d,0xdc,0x56, + 0x40,0x10,0xc6,0x99,0x77,0x34,0xbe,0xe4,0xe8,0x8,0x21,0x97,0xa9,0x49,0x96,0x12, + 0xa,0xc2,0x1b,0xc5,0xb4,0x32,0x55,0xbe,0x3f,0xaa,0xca,0x24,0xb,0x75,0x5a,0xb7, + 0xd1,0x6c,0x2e,0x85,0xbe,0xae,0xed,0x12,0x90,0x8,0x71,0x4e,0x90,0xf9,0x67,0x25, + 0xcd,0x7d,0x42,0x8a,0x40,0x46,0x33,0x22,0x43,0xc9,0x58,0x5a,0x13,0x67,0x5,0x10, + 0x3,0xf3,0x4a,0x9b,0x90,0x7e,0x5e,0x3,0x8d,0x49,0x66,0x94,0x24,0x15,0x46,0xe5, + 0x40,0x6c,0xe,0xf6,0xd8,0xb,0x19,0x8d,0x2c,0x27,0x49,0x61,0x32,0x4e,0x92,0x4f, + 0xb0,0x48,0x4e,0x58,0xc4,0x25,0x49,0xfd,0xb3,0x51,0x80,0x81,0xe5,0xdc,0xa1,0xe6, + 0x94,0x16,0xc3,0x3f,0x1b,0xec,0xb2,0x74,0xc4,0x28,0x13,0xb5,0xc8,0x36,0x79,0x89, + 0x2c,0xb7,0xd7,0x40,0xcc,0x5d,0x28,0xe,0x3a,0x12,0x4,0x19,0x23,0x61,0xb1,0xa2, + 0xbc,0x7f,0x99,0xdc,0xdd,0x7c,0xef,0x56,0x48,0x84,0x49,0x16,0xf1,0x65,0xb8,0x71, + 0x11,0xd4,0xac,0xe5,0x4e,0x9d,0x55,0x30,0x7a,0xbe,0x23,0x61,0x94,0x26,0xc4,0x4f, + 0xca,0x3b,0x67,0xda,0xfd,0x1,0x7c,0xac,0x86,0x32,0x31,0xeb,0x9f,0x38,0xdd,0x32, + 0x69,0xf5,0x9d,0xa5,0x28,0xed,0xd7,0xe3,0x4c,0x52,0x69,0x72,0x40,0x39,0x2c,0x53, + 0xe2,0xb9,0x8e,0x1b,0xca,0x63,0x22,0x9,0x9,0xce,0xc4,0x43,0x37,0x88,0x51,0x91, + 0xbb,0x8d,0xa1,0x43,0x5d,0x65,0x3a,0x1f,0xe8,0x74,0xb,0xf8,0x6e,0x85,0x93,0x33, + 0xd4,0xd,0x7f,0x7f,0xb5,0x5a,0xd7,0xcb,0xb,0xf8,0x1a,0xe0,0x3e,0x1a,0xc9,0xed, + 0x33,0xce,0x3c,0x5c,0x45,0x21,0x86,0xb1,0x88,0xba,0x75,0x80,0x6,0x3c,0x83,0xc, + 0xde,0x86,0x4,0xa,0xed,0x89,0x63,0x29,0xe3,0xbe,0x42,0x8a,0xc,0x39,0x48,0x79, + 0xb0,0x85,0xb1,0x40,0xd9,0x15,0x5c,0x5d,0x5c,0x4e,0x7,0x67,0x70,0xfc,0x94,0xc4, + 0x36,0x32,0xfc,0x4c,0x6e,0x29,0x58,0xac,0x2e,0xc5,0x61,0xe9,0x51,0x30,0xae,0x1b, + 0xf4,0x84,0xc2,0x9c,0x48,0x5b,0x53,0xce,0x4c,0x8f,0xf4,0xbc,0xab,0x5f,0xf4,0xd8, + 0xbd,0xf9,0x18,0xc4,0x3b,0xf1,0x8e,0x13,0x44,0x23,0xb,0xde,0xfc,0xc8,0x28,0x9a, + 0x59,0x10,0x3b,0x37,0xfa,0xe1,0xb6,0xa2,0x1b,0x3,0xc5,0x22,0x67,0xcc,0x6d,0x3f, + 0x7d,0x5c,0x9d,0xf0,0x8,0x9a,0xcc,0x17,0x90,0xf5,0xd5,0xe7,0xb9,0xb0,0x8c,0x3b, + 0x8c,0xc6,0xaa,0xd8,0xab,0xc6,0x32,0xc1,0x8e,0xbd,0xb5,0xed,0xbb,0xb1,0x60,0xad, + 0x78,0xe9,0xc7,0xe1,0xe6,0xbe,0x4c,0xbc,0xf6,0xc8,0xc8,0x1f,0x4b,0x69,0x5d,0x1c, + 0xc9,0x86,0x78,0x20,0xef,0x68,0xbe,0xad,0xef,0xc4,0x60,0x3e,0xcf,0xef,0x1b,0x58, + 0x89,0xd0,0x79,0xb5,0x5a,0xbf,0x80,0x1b,0xca,0x17,0x70,0x1f,0xbf,0x18,0xca,0x2d, + 0xcb,0x57,0x3,0x38,0x6a,0x3a,0x6a,0x6b,0xba,0xb3,0xe2,0x8b,0x7c,0x1e,0x50,0xf3, + 0xde,0xbd,0x40,0xba,0x3f,0x46,0x19,0x27,0xfa,0x45,0x4,0xb5,0xc9,0x1f,0x4,0xf2, + 0xe1,0x97,0x77,0xa6,0xdc,0xa6,0x7d,0x6,0x6d,0x13,0x2c,0x92,0x13,0x7,0x36,0x4e, + 0x3d,0x8c,0xd0,0xbc,0x98,0xce,0x2d,0xac,0x11,0x70,0xdf,0x41,0x21,0xe8,0xed,0xb5, + 0xb6,0xab,0x6a,0xb0,0x5,0x18,0x20,0xd3,0xc1,0xfe,0x89,0x3,0xc8,0xa5,0xc,0x9c, + 0xae,0xb3,0x34,0xdd,0xda,0x1d,0xa5,0x44,0x16,0x8,0x1b,0x73,0x1e,0x33,0xf8,0x28, + 0xe9,0x31,0xb0,0xef,0x36,0x48,0x5e,0xf1,0xf,0x78,0xa2,0x7,0x7e,0xa2,0x81,0x87, + 0x3f,0x5f,0xc2,0x4f,0x74,0x4c,0xbe,0xc4,0xdf,0x2,0x29,0x7b,0xbe,0x8f,0x14,0xa2, + 0x5a,0xc5,0x7b,0x7b,0xb3,0xb3,0x7c,0xf,0xa,0x73,0x28,0xdc,0x93,0x85,0x82,0xbe, + 0x38,0xdc,0xc7,0xca,0x44,0xe1,0xa1,0x2c,0x3c,0x99,0x9d,0x95,0x27,0x50,0x58,0x42, + 0xe1,0x89,0xe2,0x86,0x3,0xae,0x13,0x8f,0x26,0x80,0xc0,0x3d,0x8b,0x72,0x20,0x95, + 0x60,0x95,0x21,0xc9,0x37,0x81,0x6,0x23,0x4b,0xfd,0xb,0xf,0x8,0xf8,0x5c,0x64, + 0xee,0x5b,0x78,0x9b,0xfb,0xf8,0xa8,0xf9,0x74,0xfe,0x4d,0xd7,0xdf,0x40,0xfa,0x63, + 0xb1,0x1d,0x90,0xd,0x22,0x91,0x97,0x3b,0xe0,0x6d,0xf0,0x9d,0xac,0xdc,0xb2,0xd3, + 0x83,0x5d,0xc7,0xdf,0x7,0xfa,0x77,0x1a,0x73,0x78,0x9a,0x73,0x78,0x5e,0x10,0x38, + 0x74,0xef,0x85,0x1d,0x3f,0xaa,0x18,0x84,0x7b,0x14,0xc8,0xdc,0x5e,0x1a,0xd,0xed, + 0x85,0x35,0x11,0xbc,0x73,0xfb,0x22,0x50,0xb7,0x6e,0x27,0x67,0xcf,0x60,0x4c,0xcd, + 0xde,0x8b,0x47,0xce,0xde,0xde,0x5c,0xfc,0x79,0x2d,0x7a,0x92,0x41,0x2,0x73,0x1a, + 0xdb,0x6d,0x67,0xaf,0xda,0x11,0xb6,0xb1,0xe5,0x23,0x35,0x7b,0x39,0x34,0xa2,0x7e, + 0x27,0xf2,0x18,0x6,0x24,0x8c,0x66,0x5b,0x59,0x7a,0x24,0xf3,0xa2,0x30,0xe4,0x34, + 0xe6,0x95,0xc1,0x54,0x53,0x38,0x4c,0x35,0x65,0x5a,0xb3,0xd0,0x5d,0xbf,0x9e,0x9f, + 0xef,0xd7,0x37,0xdd,0x1a,0x5c,0x1,0xcb,0x75,0xd3,0xb,0xee,0x46,0xbf,0x82,0x77, + 0xd1,0xc1,0x13,0x21,0x56,0xdd,0xb0,0x3a,0x8a,0x6b,0xb9,0xe5,0xc6,0x8f,0x68,0x1, + 0xf8,0x6a,0x56,0x2f,0x9a,0x5b,0xd5,0x8,0x4d,0x93,0xcd,0x1a,0x11,0x72,0x99,0x34, + 0x2,0x39,0x3a,0xd4,0xe9,0xc1,0x23,0x1a,0x79,0xd6,0xc,0x8b,0x7a,0x8e,0x2d,0x14, + 0x3b,0x85,0xb7,0x81,0x78,0x27,0x4b,0x78,0x3,0xe2,0xd3,0x3f,0x2,0xef,0x5,0xad, + 0x5f,0x2c,0xf9,0x4b,0xc6,0x76,0x5e,0xc6,0x7a,0xb9,0xf1,0xa3,0x7d,0x49,0xd9,0x52, + 0xde,0x86,0xa6,0xa0,0x3c,0xdb,0xc4,0x91,0x1c,0x63,0x9a,0xe1,0xf6,0x9b,0xe5,0x47, + 0xb9,0x70,0x19,0x4b,0x32,0x44,0x86,0x2c,0x76,0x48,0xbe,0x6c,0xc0,0x6e,0x5,0x34, + 0x71,0x68,0x39,0x88,0xc2,0x81,0x83,0x28,0x1c,0x38,0xc8,0x4a,0x38,0xd1,0xb9,0x57, + 0x41,0xe4,0x3e,0xc9,0xbb,0x13,0xe9,0x9e,0xbf,0xb2,0xb6,0x1d,0x1c,0x54,0xd8,0x41, + 0xbf,0xa,0x68,0x9a,0x37,0x32,0x68,0x46,0x2a,0x31,0x22,0xff,0x67,0xf8,0x2a,0xd0, + 0x97,0x3c,0x37,0xcf,0xca,0xdb,0x6e,0x75,0xbe,0xbb,0xbc,0x6e,0x16,0x70,0xc7,0x5, + 0x12,0xcf,0x93,0x3,0x7c,0x3a,0x35,0xc5,0x8e,0x18,0xba,0x91,0xd3,0x6a,0xe8,0x25, + 0xb4,0x73,0x62,0x87,0x6e,0xe5,0xb8,0x6d,0x40,0xc8,0xa8,0x6,0x92,0x3a,0x64,0x70, + 0x84,0x6d,0x39,0x59,0x6c,0x9c,0xf0,0x92,0x26,0x94,0x27,0xc9,0x4e,0x2,0x95,0x63, + 0x30,0xad,0x3d,0x90,0xf,0x65,0xc2,0xd5,0x10,0xf2,0xe7,0x6c,0x43,0x9f,0x4e,0x66, + 0x7a,0x9,0xc6,0xfd,0xd0,0xd0,0xbc,0xe2,0x50,0xe9,0xd2,0xc2,0xa0,0x85,0xed,0xa, + 0xca,0xbf,0x31,0xe5,0xfa,0x53,0x61,0xe8,0x98,0x58,0x2a,0x1c,0x61,0x27,0xf2,0x61, + 0x11,0x59,0xb8,0xfb,0x86,0x8f,0x70,0xd6,0xe2,0xa9,0x5c,0x8a,0xe9,0x34,0xa,0xef, + 0x8,0x81,0x14,0x9e,0xac,0x4d,0xfe,0xce,0xa3,0xfb,0x29,0xdd,0x3d,0x6c,0xd6,0x8b, + 0xfa,0xa6,0x16,0x7f,0x40,0xd7,0xa2,0x64,0x27,0x8d,0x7d,0x7d,0x4e,0xc5,0x78,0x32, + 0x58,0x95,0x34,0xa7,0xf1,0xc0,0x7f,0xef,0x7e,0x6b,0x24,0x65,0x7f,0x44,0x66,0x2c, + 0x6e,0xb7,0x31,0xc8,0xa4,0x5e,0xc3,0x3c,0xa7,0x11,0x9,0xee,0x21,0x5d,0x6,0xa1, + 0x55,0xe2,0x4c,0x97,0x32,0x5f,0x88,0xa7,0xcb,0xc0,0x81,0xdf,0x98,0x2e,0xd3,0x59, + 0x83,0x2e,0x5b,0x28,0x74,0xf9,0xf1,0x73,0xba,0xbb,0xbc,0x9c,0x77,0x7d,0x7d,0xdd, + 0x40,0xf7,0x42,0x7a,0x71,0xc0,0x74,0x2f,0x85,0x0,0xbd,0xa4,0x80,0xee,0x9,0xf9, + 0x93,0xe4,0xfe,0xee,0xa1,0x72,0xb5,0x6b,0xfa,0x27,0x7e,0x42,0x6b,0xfa,0xb,0x83, + 0x63,0x69,0x85,0xf2,0xd2,0xf4,0x52,0xe1,0xbc,0xfc,0x1b,0x58,0xe2,0x8,0x92,0x9a, + 0x81,0xbc,0x2f,0xe9,0x99,0xa6,0xe9,0x7a,0x82,0xe9,0x4b,0x4,0x33,0x44,0xe8,0x56, + 0x9e,0x60,0x6,0x3c,0x7d,0x3e,0xb2,0x5d,0x8f,0xa0,0xa5,0x23,0x3b,0xb7,0x4,0xae, + 0x47,0x62,0x1f,0x67,0xc6,0x81,0x20,0xc5,0xb3,0xbf,0x61,0x1c,0xbb,0x57,0xf5,0xd, + 0x6e,0x5d,0x89,0x77,0x1c,0x31,0x30,0xb5,0x1a,0x87,0xe0,0xea,0x5f,0x7c,0x20,0xa3, + 0x95,0x92,0x43,0x91,0xc5,0x2f,0x95,0x4e,0x5c,0x5f,0xb6,0xef,0xdb,0xcb,0xa7,0x2f, + 0xbb,0x65,0xb7,0x18,0x16,0x3,0xe8,0xdb,0xc0,0x39,0x36,0xea,0xae,0xac,0x72,0xdc, + 0x2e,0x12,0xc5,0x30,0x32,0xea,0x56,0xf2,0x43,0x92,0xe8,0x33,0x2f,0xd,0x89,0x82, + 0x97,0xfb,0xa,0xa2,0xee,0x81,0x8d,0xa9,0xd2,0x58,0xda,0x4c,0x2e,0xd,0x9e,0x45, + 0xd3,0xca,0xc,0x41,0x81,0xaa,0x67,0x19,0x68,0x8e,0x95,0xe6,0x80,0x5e,0x86,0x93, + 0x79,0xd7,0x2c,0xdb,0xef,0x61,0x3f,0x89,0x4b,0x22,0x3c,0xec,0x7e,0x12,0x61,0xb4, + 0xaa,0xbb,0x99,0xa6,0x72,0x1b,0x84,0xcc,0xc8,0xda,0xe8,0x8,0xcc,0x95,0x19,0x5d, + 0xcc,0xf0,0x8f,0xc7,0xe8,0x6c,0xb,0xe,0x30,0xbf,0x24,0x7a,0x4d,0x2c,0x12,0xe9, + 0xe9,0xb3,0xae,0x5d,0x35,0xd0,0x4f,0xc1,0x18,0xa9,0x5f,0xcd,0x12,0x62,0x25,0xe2, + 0xd2,0x2b,0x4e,0xb4,0x53,0xdc,0x19,0x40,0x91,0xd2,0x8e,0x8,0xc3,0xef,0x20,0xe0, + 0x38,0xb0,0x31,0xbf,0xe,0x8c,0xff,0x1a,0x6d,0xeb,0xd8,0x6a,0x32,0xa,0x34,0xad, + 0x5b,0x23,0x42,0xae,0x11,0x46,0xca,0x90,0x1d,0xd7,0xab,0xe5,0x55,0x5b,0x2f,0xcd, + 0xdf,0x77,0xdd,0xa2,0x5d,0x81,0xa6,0xd,0xfc,0xef,0xdd,0xde,0x61,0x7b,0x8e,0xbd, + 0xaa,0xf6,0xeb,0x7,0xb4,0x67,0x3,0xcf,0x32,0x1d,0x4a,0x44,0x55,0xf1,0xac,0x50, + 0x77,0x5,0x0,0x79,0x1b,0x8c,0xc3,0x0,0xf3,0x61,0x98,0x5d,0xd9,0xa2,0xc2,0xa7, + 0x43,0x2d,0xa1,0x22,0xb2,0x50,0x30,0x77,0x1d,0x3b,0x8,0x9c,0x11,0xd6,0xcb,0x3d, + 0x52,0xb,0x9,0xd8,0x33,0x93,0x6f,0x2,0x95,0xf7,0x39,0xf,0x37,0xd1,0x1b,0xc, + 0xb7,0x8a,0xf1,0x54,0xb,0x26,0x6b,0x96,0xd2,0x9e,0x11,0x3a,0x7b,0x9c,0x78,0x67, + 0x39,0xc5,0x1d,0x80,0xce,0x62,0x16,0xe1,0xef,0x37,0xc6,0x6,0x89,0xec,0x17,0xbc, + 0x61,0x6a,0x52,0xe5,0x50,0x0,0xe2,0x28,0xd8,0xdb,0x57,0x85,0xc7,0x66,0x52,0x9, + 0x6e,0xbe,0x71,0x1a,0xdf,0x6,0xf4,0x2e,0xfd,0x68,0x1a,0x8,0xd8,0x33,0x8d,0x0, + 0xcd,0x92,0x49,0x86,0x64,0x18,0xd5,0x86,0x2a,0xdc,0x43,0x23,0x4b,0x8a,0x29,0x62, + 0xa7,0xfc,0x2b,0x6f,0x3,0x93,0x5,0xc5,0x63,0x55,0xbc,0x95,0xd3,0xb9,0xa1,0xeb, + 0x52,0x41,0x4e,0x36,0x2a,0xc8,0x7a,0x7d,0xbf,0x6e,0x97,0x97,0xcd,0x72,0xd9,0xac, + 0x94,0xc5,0xea,0xb5,0x99,0x2a,0x34,0x99,0x3c,0x5f,0xc9,0x5b,0xb3,0xbe,0xf2,0xb2, + 0x70,0xfe,0xe3,0x58,0x5f,0xe7,0xfe,0x21,0x55,0xa3,0x13,0x7,0x8e,0x3a,0x62,0x67, + 0x41,0xf,0x37,0x2f,0xe8,0xe1,0xc6,0x5,0x3d,0x7c,0x70,0x41,0xf,0x1f,0x5a,0xd0, + 0xc3,0xc9,0x5,0x3d,0x7c,0x70,0x41,0xf,0x37,0x2e,0xe8,0xe1,0xc6,0x5,0x3d,0xfc, + 0x91,0xb,0x7a,0xd6,0x2c,0x16,0xe7,0x7b,0xed,0xfa,0x1e,0x3f,0xd9,0x62,0xc7,0xff, + 0xc5,0xc2,0x15,0x3f,0xef,0x8a,0x1e,0xfe,0xbd,0x57,0x14,0xc6,0x70,0x34,0x39,0x77, + 0xa,0x32,0x21,0x8e,0x34,0x42,0x1e,0xa8,0xac,0x3e,0xbe,0xc9,0x3d,0xa,0x68,0x6a, + 0xa0,0x87,0x27,0xe8,0xa4,0x59,0x37,0xfd,0xa,0x6f,0x27,0xc1,0xc,0x55,0x13,0x6e, + 0x82,0x70,0xc4,0xf3,0x60,0x37,0xe4,0xd0,0x9e,0x9e,0xa1,0x4c,0x5f,0xc4,0x67,0x33, + 0x94,0x1b,0xc5,0x88,0x12,0x17,0x85,0x29,0xfe,0xa9,0x5f,0xc0,0x71,0xa0,0xce,0x54, + 0xf3,0x68,0x62,0x2a,0xc,0xc6,0xd4,0x4e,0x7b,0xac,0xa7,0x3b,0x9b,0x70,0xfe,0x1e, + 0x7,0xfe,0xbc,0x4f,0x1c,0x81,0x64,0x70,0x7a,0x68,0xb6,0xdf,0x2c,0xbb,0xef,0x71, + 0x9e,0x73,0xf6,0x4a,0x28,0x99,0xe8,0x4,0xed,0x48,0xc6,0x8a,0x92,0x35,0x8f,0xcd, + 0x44,0xc7,0x3a,0x3f,0x3e,0x9b,0xe8,0xc4,0xec,0xb,0x94,0x58,0x5e,0xd8,0x2b,0x1e, + 0x9e,0x68,0x18,0xcd,0x89,0xd6,0x3c,0x26,0xf7,0x4b,0x83,0x31,0x35,0xa5,0x27,0xf, + 0x4d,0xe9,0x89,0x9e,0xd2,0x47,0xee,0xb8,0xef,0xda,0x65,0x7d,0x5b,0x5f,0xaa,0x49, + 0x8b,0xb3,0xa9,0x49,0xcb,0xbc,0xdf,0xef,0xc9,0x8f,0xdc,0x71,0x1f,0x29,0x91,0x65, + 0xfa,0x46,0xce,0x92,0x9e,0xcd,0xa4,0xf9,0x58,0x4b,0xb9,0xc3,0x1f,0x98,0x26,0x1d, + 0xaf,0x20,0x9e,0x88,0x7f,0x56,0xa9,0xf7,0x33,0x72,0x3b,0x9a,0x6c,0xdc,0xee,0xbf, + 0xc,0x98,0xab,0x8d,0x9c,0x1b,0x10,0xc8,0x8c,0x3a,0xa3,0xbe,0xd4,0x5a,0xe9,0xe4, + 0xd7,0xf4,0xa5,0x55,0x69,0x3d,0xeb,0xfe,0xa5,0xdd,0x70,0x64,0xee,0x34,0x6,0x41, + 0x27,0x56,0x96,0x4d,0x93,0x66,0x86,0xeb,0xa6,0xbf,0xa1,0x37,0xcd,0x72,0x3d,0x5c, + 0xde,0xdc,0x3f,0x7d,0xdb,0xd,0xed,0xea,0x63,0xbb,0x80,0x37,0x9,0xc5,0xe4,0x26, + 0x7e,0xa7,0x7c,0x94,0xa3,0x57,0x9e,0x29,0xbb,0x52,0xd,0xfb,0xf2,0x1,0x65,0xf7, + 0x4b,0xc2,0x34,0x78,0x73,0x2d,0x71,0x16,0xa3,0xfc,0x89,0x7a,0x9a,0x6f,0x30,0x87, + 0x1d,0x84,0x74,0x89,0x5d,0xa,0x95,0xca,0xa4,0x62,0xf9,0x8,0xec,0x68,0x62,0xf0, + 0x9e,0xfb,0x7a,0xab,0xb5,0xed,0xbc,0x74,0xb8,0x14,0x7d,0x5f,0xd5,0x48,0x6c,0x9e, + 0x6,0x11,0x49,0x8c,0x37,0x5a,0x65,0x2,0x9e,0xfe,0x36,0xf7,0x9b,0x75,0xdf,0xb5, + 0x6b,0xec,0xb0,0x98,0x68,0xe2,0xcd,0xcb,0x68,0x97,0xa2,0x4c,0x7,0x8d,0xb0,0xe9, + 0x9b,0x38,0xb,0x39,0xe5,0xbc,0x4d,0xa6,0x37,0xa3,0xd4,0x45,0x46,0xad,0xa,0x32, + 0xb0,0xd9,0x66,0x8d,0x88,0x80,0x3d,0x3c,0x38,0xb,0xcc,0x2b,0x4,0x53,0xc4,0x79, + 0xee,0xd5,0x58,0xa8,0xcb,0x6d,0xd9,0xdd,0xb6,0xcb,0xa6,0x51,0xba,0x63,0x4c,0x76, + 0xd2,0x4c,0x26,0x1e,0x8e,0xfc,0xc,0x37,0x33,0xc,0x57,0xf9,0x4c,0xa6,0x22,0xb1, + 0x2,0x9f,0xc9,0x6b,0x9c,0x64,0x96,0xb6,0x4d,0x77,0x98,0x40,0x8e,0xf5,0x63,0xcb, + 0x33,0xd,0xf0,0x9d,0xa0,0x2a,0x4f,0x80,0xf7,0x4,0x95,0xc0,0xa4,0xa7,0x80,0x56, + 0x86,0xe1,0xb2,0x93,0xe7,0x98,0xa,0x63,0xfa,0x78,0x15,0x7d,0x24,0x9b,0xe,0x3a, + 0xcf,0x1e,0x38,0xe8,0x3c,0x9b,0x3e,0xe8,0x14,0xd0,0xaf,0x2,0x9a,0xfb,0x96,0x90, + 0x11,0x80,0x4c,0x7c,0xcb,0x28,0x6c,0xda,0x1b,0x15,0xa0,0xbe,0xef,0x80,0x60,0x8e, + 0x62,0xf9,0xc4,0x90,0xa1,0xc2,0xc3,0x91,0x44,0x3f,0x3f,0xa4,0x7b,0xc2,0xa8,0x2d, + 0xa,0x99,0xa,0x56,0x49,0x92,0x4b,0x31,0x6b,0x22,0x1e,0x2b,0xab,0x1d,0x72,0x38, + 0x46,0x0,0xc9,0x50,0x1d,0x43,0x2d,0xb7,0xe6,0x90,0x76,0xc1,0x19,0xb3,0xc5,0x60, + 0xe9,0xc4,0x4d,0xd,0x98,0xd1,0x6c,0x72,0x39,0xd,0xc6,0x94,0x59,0xf0,0x95,0x14, + 0xe3,0xaa,0xa,0xcf,0x7a,0x7f,0x25,0xd7,0xbb,0x63,0x8b,0x1d,0xda,0xd3,0x92,0xaf, + 0x18,0x3f,0x90,0xd8,0xab,0x9d,0x88,0x55,0x51,0x7a,0xaa,0x88,0x83,0x7d,0x5b,0x47, + 0x35,0xe6,0x29,0xd6,0xc,0x72,0xd,0x86,0xdb,0x30,0xbe,0xf2,0xe2,0x84,0x94,0xb7, + 0x74,0x4f,0xc8,0xd1,0xc0,0xfa,0xfc,0x75,0x37,0x5f,0xae,0xe0,0xb9,0xdd,0x24,0x64, + 0x41,0x44,0x62,0x73,0xd7,0x65,0xa2,0x3e,0xe5,0x5e,0x4,0xf7,0xb5,0x29,0x3d,0x33, + 0xa5,0x95,0xf,0x37,0xc9,0x54,0xd4,0x8f,0x4,0x12,0x48,0xaa,0x6e,0x31,0x47,0x1a, + 0x72,0x46,0xdd,0x97,0xc,0x19,0x87,0x79,0xc4,0xf1,0xd8,0x6b,0xc1,0xdd,0xaa,0x39, + 0x7f,0x6,0xba,0x4a,0xba,0x13,0xb9,0xe9,0xcf,0xec,0x98,0xa4,0x37,0xf4,0xe1,0xde, + 0x6b,0x4c,0xb7,0xef,0xa6,0xdc,0xed,0xdf,0x8f,0x1a,0xc,0x4a,0x62,0x99,0x58,0x1b, + 0x4,0x62,0xa,0x80,0x5d,0x3a,0xca,0x14,0xa8,0x77,0x95,0x88,0xfc,0x3a,0x30,0x31, + 0xb9,0x26,0x5e,0x74,0xdf,0x1,0xe8,0xf0,0xc5,0x99,0x2e,0x8f,0xed,0xdb,0x31,0x15, + 0xa7,0x50,0x10,0x70,0x23,0x57,0xe,0x8d,0x55,0xb7,0x72,0x87,0x6,0x3e,0x98,0x58, + 0xe6,0xe5,0xcb,0x1c,0x22,0x13,0xc9,0xaa,0xe2,0xf,0x2d,0x11,0x18,0xdf,0xb1,0x23, + 0x4c,0x5c,0xc,0x29,0xbd,0x52,0xa7,0x4e,0x13,0xc7,0xef,0x36,0xe6,0x44,0xeb,0x59, + 0x0,0x89,0x66,0x76,0xfb,0x6e,0xde,0x45,0x4f,0x1c,0x1a,0xf2,0x2,0xa5,0x43,0x42, + 0xde,0xef,0xe3,0x24,0x78,0x1b,0x2f,0xe2,0xc2,0x89,0x93,0x6a,0xc5,0xc3,0x9d,0x5b, + 0xf3,0xa4,0xc,0x2f,0x4f,0xc2,0x89,0xa1,0xda,0xd4,0xa3,0xf8,0x6c,0x44,0xec,0x4c, + 0x11,0x49,0x99,0xe6,0x74,0x3e,0x49,0xa6,0x16,0x24,0xe1,0xd1,0x91,0xb6,0x2e,0xf2, + 0x34,0x8f,0x4b,0x42,0xf3,0xfe,0x33,0x1a,0x9b,0x8f,0x3c,0x76,0x48,0xc8,0x36,0xcb, + 0x49,0xdc,0x70,0xd3,0x7d,0x7,0x32,0xc3,0x84,0xca,0x8c,0x4,0x2f,0xbc,0x97,0x1b, + 0x58,0x8,0x31,0xd2,0x68,0x72,0x9a,0x48,0xf6,0x37,0x67,0xa5,0x6c,0xa6,0xd2,0xa9, + 0xba,0xed,0x3,0x80,0xbe,0x8d,0x84,0x63,0x78,0x36,0x92,0xaf,0xcd,0x4e,0x33,0xe5, + 0xe8,0xe0,0x18,0x53,0x55,0xe4,0x7a,0xb3,0x9a,0xac,0xc2,0x60,0x4c,0x54,0x81,0xde, + 0xa6,0xc9,0xe0,0x2f,0x8e,0x31,0xad,0x1c,0xbe,0xac,0x17,0xed,0xfb,0xfa,0x7b,0x94, + 0xb0,0x34,0x29,0x5d,0x15,0xc6,0x72,0x51,0x33,0x14,0x5c,0x5f,0xeb,0x63,0xc0,0xa8, + 0x24,0x82,0x4c,0xc9,0x57,0xa,0xd7,0xa7,0x39,0x2b,0x8e,0x6,0xd2,0x92,0xa2,0xc1, + 0x61,0x85,0x95,0x87,0x44,0xe4,0x2f,0xea,0x4b,0x25,0xf2,0x13,0x38,0xa9,0xa4,0x97, + 0xb4,0x59,0x87,0x4c,0xcd,0xe0,0xfe,0xa1,0x35,0x67,0x58,0xb3,0x3e,0xc6,0x2c,0xe2, + 0x4d,0xed,0x8a,0x79,0x7a,0x17,0xe8,0x74,0x83,0x59,0x40,0x1e,0x4c,0x2c,0x6d,0xb0, + 0x3,0xc7,0x98,0x59,0xb8,0x5a,0x8b,0x77,0x5a,0xfb,0x41,0x96,0x76,0x9e,0x5c,0xdc, + 0x1f,0x63,0xcc,0xe8,0xed,0x2d,0x5b,0x3,0xcb,0x68,0xc8,0x49,0x2b,0xfb,0x35,0xe8, + 0x6c,0xb4,0x8c,0x36,0xb5,0xdb,0x2,0x1c,0x34,0x52,0x5a,0xf2,0x86,0x73,0xea,0x40, + 0xf0,0xfa,0x54,0x3c,0xc1,0x3e,0x6,0x23,0xcb,0xfd,0x1c,0x8,0x8,0xe8,0x2e,0x51, + 0xb1,0xf2,0x5e,0x84,0x2a,0xd9,0xa8,0xec,0x70,0x94,0xb1,0x4e,0x45,0x4c,0x98,0x6e, + 0x79,0xb9,0x86,0xe4,0xad,0x29,0xb8,0x26,0xd8,0x19,0xd2,0x7e,0x50,0x51,0x9b,0x64, + 0x82,0x4b,0x12,0xc9,0x25,0xef,0x2c,0x9b,0x7a,0xf9,0xd3,0xc0,0x8b,0x84,0xc3,0x2b, + 0x46,0x8f,0x31,0xd3,0x5e,0xfe,0x7d,0xb6,0xa8,0x97,0x97,0xdb,0xb3,0xfa,0x62,0x1, + 0xbd,0x4d,0x20,0xc5,0xa,0x79,0x50,0xb8,0x4c,0x79,0xad,0x45,0x68,0x78,0x15,0xe6, + 0xe3,0x4f,0x1,0x7b,0x39,0x8,0x2f,0xf,0xca,0x13,0xd1,0x7d,0x7,0x7c,0xcc,0x36, + 0xb1,0x3f,0x71,0xd5,0x80,0x9c,0xe9,0x11,0xc8,0x6c,0x4c,0x42,0x1c,0x31,0x99,0x43, + 0x13,0xd9,0xd,0x2c,0x66,0x34,0xb1,0xdc,0xe1,0xfd,0x8a,0xbc,0xc5,0xc8,0x9,0xa3, + 0xbb,0x55,0xa4,0x72,0x33,0xe6,0xe6,0x8,0xab,0xa2,0xb0,0xbb,0xe4,0x88,0xaf,0xfe, + 0xc4,0x76,0x6c,0x1f,0xef,0xfe,0xc9,0xdd,0x49,0x39,0x24,0x91,0x5f,0xcc,0x6,0x5a, + 0xbd,0xa3,0x46,0xbc,0x55,0x99,0xe2,0x7b,0x42,0x22,0x3,0x82,0xef,0x62,0x28,0x47, + 0x98,0xb6,0xe4,0x11,0x4c,0xf3,0x42,0xdb,0xcb,0x1d,0x23,0xc,0xee,0xf3,0x65,0x6b, + 0x9a,0xea,0xec,0xde,0x5e,0x28,0xba,0xbb,0x26,0xb7,0xc,0x85,0xc1,0xe9,0x59,0xff, + 0xe5,0xb6,0xb6,0x61,0x80,0x99,0x9,0x48,0x9e,0xde,0x71,0xce,0xba,0xbe,0x5b,0xae, + 0xd1,0xab,0x14,0x15,0xec,0x5d,0x1a,0xf4,0xa7,0x88,0xaf,0xe3,0xb9,0xdd,0x5a,0x32, + 0xa8,0xf7,0xf9,0x68,0x6b,0xa1,0x68,0xca,0x4d,0xf3,0x27,0xeb,0xf5,0x22,0x70,0xda, + 0xee,0x7c,0x58,0x5e,0x35,0xbd,0xdc,0x5c,0xb2,0x9d,0xac,0x60,0xd,0x13,0xef,0x50, + 0xe8,0x71,0xa,0x99,0xd6,0x8a,0xd0,0x69,0x2d,0x61,0x1e,0x91,0x89,0xb6,0x8f,0xda, + 0xbb,0xf6,0x1a,0x24,0x42,0x6,0x89,0xca,0xd2,0xc9,0x21,0xa7,0x78,0xdb,0x11,0xc7, + 0x1d,0x5,0xcf,0xf7,0xa7,0x46,0x4d,0x6a,0x3e,0xad,0xdb,0xe5,0xfd,0xf9,0x69,0xab, + 0x82,0xb,0xa3,0x92,0x7a,0x74,0xe5,0xc0,0x4,0xd1,0x9e,0x53,0xbd,0x75,0x7,0x92, + 0xea,0xd,0x26,0x8d,0x69,0x59,0xb7,0x37,0xdd,0x4d,0xbd,0x84,0xba,0x73,0xf6,0x36, + 0xfa,0x4f,0xab,0x3a,0x60,0x71,0x1d,0x3a,0xd4,0x5b,0x70,0xcf,0x37,0x1,0xb5,0x87, + 0xd4,0x1b,0xc9,0xfb,0xe,0x4,0x3d,0x22,0x86,0xa3,0x11,0xe0,0xf5,0x32,0x11,0x8, + 0xf7,0x32,0x7d,0x13,0xb0,0x87,0x6f,0xa2,0x9c,0xd3,0x24,0xf4,0x89,0x6f,0x4a,0xe3, + 0xf3,0x4c,0x7d,0x13,0x4c,0x7b,0xa6,0x8,0xcc,0xf3,0xa5,0x7c,0x63,0x45,0x1,0xf6, + 0x22,0xe6,0xbd,0xb0,0x57,0xf9,0x12,0x87,0xc6,0x27,0x1f,0x38,0xa9,0xc1,0x98,0x68, + 0x36,0xb,0x7d,0x72,0x91,0x40,0xb8,0x23,0xed,0x1b,0xfd,0xd1,0x4f,0x1e,0xbc,0x18, + 0x8c,0xa9,0x93,0xa8,0x6f,0x2,0xf3,0xcc,0x88,0x47,0x4b,0xf8,0x26,0x30,0x47,0xae, + 0x13,0xb4,0x79,0x32,0x29,0x33,0x9,0x78,0xc6,0xc2,0x76,0x11,0xe0,0xbd,0xc7,0xb0, + 0x62,0xb4,0x78,0xf,0xcb,0xf1,0x7a,0xad,0x68,0x25,0xd2,0xe3,0xe3,0x49,0xb4,0x4f, + 0xc3,0x5d,0xde,0xb5,0xcb,0x65,0x7b,0xd7,0x5c,0xc3,0x37,0x12,0x97,0x2c,0x98,0xbc, + 0xd0,0x17,0x7a,0xe1,0xb,0xf8,0xc6,0xb8,0xc0,0x73,0xfa,0xb1,0x89,0xa6,0xbe,0x9d, + 0xe4,0xe4,0x6f,0xa7,0x38,0x19,0x0,0x49,0x28,0x77,0x25,0xbf,0xb1,0xc3,0x31,0x6c, + 0xa2,0x6d,0x56,0x83,0x31,0xb4,0xf4,0xf8,0x4a,0xa7,0x2,0x7d,0x25,0xd0,0x0,0x29, + 0x75,0x49,0x81,0x6e,0xd5,0x46,0x6b,0xf5,0x13,0xfb,0x3e,0xa9,0x6f,0x37,0x7c,0x52, + 0x4,0xe6,0xe1,0x94,0x6f,0xd9,0xee,0xea,0xea,0x25,0x4,0x7a,0x6c,0x81,0x94,0xb4, + 0x90,0x9b,0x97,0x9f,0xcf,0x38,0xc6,0x44,0xeb,0x59,0x35,0xc9,0xa7,0xdf,0x6e,0xfc, + 0x4,0xea,0xc0,0xbc,0xee,0xe3,0x23,0x26,0xe0,0x29,0x62,0x73,0xce,0x3b,0x49,0xbf, + 0xb1,0xf1,0x7c,0x32,0x92,0x9b,0x6c,0x33,0xcd,0x75,0xbb,0xac,0x31,0x7c,0xbd,0x64, + 0xe1,0xa3,0x42,0x98,0x63,0x88,0xd9,0xb7,0x26,0xe2,0x2d,0x64,0xdd,0x30,0x3b,0x2b, + 0xf5,0x4b,0x7e,0x6a,0xdf,0xaf,0xcf,0xf7,0x86,0xbe,0x6f,0x96,0x6b,0x88,0x7f,0x83, + 0xbc,0x7e,0xe1,0xb8,0xce,0x33,0x1b,0xe8,0xee,0xd4,0x49,0x1b,0xcc,0x64,0x94,0x7c, + 0x6d,0xe2,0xe0,0xe2,0x89,0xe,0x88,0xe1,0x5e,0x4,0xf4,0x22,0x97,0x87,0x53,0x2e, + 0xa6,0xbe,0xb7,0x8b,0x80,0xb9,0xdf,0x5d,0x90,0xbc,0x80,0x30,0xa5,0x59,0x5d,0x58, + 0x35,0xdc,0xb3,0x6,0x17,0x81,0xf6,0xc5,0x25,0x7e,0xf6,0xba,0x98,0xf8,0x5c,0x2e, + 0x36,0x7c,0x2e,0x4,0x36,0x55,0xe3,0x34,0xcf,0x11,0xf0,0x4,0x71,0xbe,0x99,0x38, + 0x9f,0x64,0x58,0x84,0x4e,0x7f,0x2a,0x4,0x3c,0x41,0x5c,0xc4,0x3e,0xb9,0x4e,0xe9, + 0x8b,0x78,0xea,0x5c,0xc7,0xb2,0xe0,0xf3,0xab,0x5b,0x50,0x42,0x97,0xc0,0x7d,0x3c, + 0xeb,0xa1,0x20,0x94,0xdc,0x77,0xa1,0x19,0xaa,0x2c,0x8,0x37,0x42,0x23,0x97,0x93, + 0xe2,0xfa,0x72,0x8a,0x7d,0x2e,0x27,0x96,0xf0,0x72,0xc3,0x12,0x5e,0xd2,0x25,0xa4, + 0xbb,0xf2,0x65,0xa0,0x8c,0xf3,0xc9,0x69,0xb8,0x9c,0x52,0x23,0x2e,0xb5,0x28,0x9b, + 0xba,0xb9,0x1,0x8,0xf9,0x23,0x26,0xf0,0x6b,0x61,0xe7,0x76,0x3,0x6a,0x9d,0x25, + 0xc4,0x29,0x39,0x56,0x6e,0x9,0x35,0x9d,0xd8,0xf9,0x2b,0x61,0xfe,0x9c,0xbb,0x19, + 0xfb,0xf5,0xa7,0x55,0xb7,0x3c,0xdf,0xeb,0x9b,0xe6,0x6,0x6a,0x9,0xd9,0xbd,0x98, + 0x94,0x10,0x5,0x32,0xd8,0x84,0x56,0xa,0x5f,0xf9,0xa0,0xd4,0xc8,0x71,0x64,0xed, + 0x41,0xd7,0xaf,0xcf,0x8f,0x9a,0xc5,0xa,0x56,0xb8,0x84,0x28,0x21,0x72,0x35,0xc2, + 0xed,0x1f,0xbf,0x2d,0xe0,0x36,0xc4,0x7a,0x2f,0x2f,0xa,0x80,0x71,0x5e,0xfa,0x1b, + 0xde,0x83,0x7,0x1e,0x24,0x5b,0xa5,0x39,0xbd,0x7c,0xcc,0x82,0x73,0x21,0xcb,0x8, + 0x6d,0x53,0xb0,0xcc,0x6b,0x2d,0xd8,0x64,0x8d,0x62,0x25,0xae,0x26,0xb9,0xec,0x6a, + 0x8a,0xcb,0xae,0x1c,0x21,0x95,0x39,0x34,0xe6,0xe9,0x27,0xbb,0x15,0x5f,0x4d,0x30, + 0xe6,0xd5,0x6,0xc6,0xbc,0x9a,0x62,0x4c,0x0,0xd8,0x7,0x8,0xad,0x9,0xaa,0xf, + 0xc0,0x8,0xdc,0xf3,0x75,0x3,0xb4,0xc,0x37,0xb1,0xb5,0xc2,0x98,0x3e,0xb5,0xbd, + 0xa,0x36,0x9d,0xda,0x92,0x18,0xf1,0x7a,0x79,0xbd,0x6c,0xfb,0xf5,0xb0,0xbc,0xe, + 0x60,0xe3,0xd9,0xe,0xe5,0x5,0x32,0x74,0xcf,0x5c,0x19,0xa7,0x4f,0x46,0xab,0xe0, + 0x96,0x9a,0x7e,0xa6,0x3a,0xa6,0xc6,0x8d,0x1b,0xdd,0x30,0xb2,0xd6,0x5e,0x7d,0x57, + 0x2f,0x86,0x76,0x4d,0xda,0xc4,0xe7,0x60,0x10,0xf9,0xea,0x6f,0xab,0xfa,0xb4,0x59, + 0x75,0x8b,0x61,0xdd,0xd0,0xba,0xb,0xfc,0x46,0x64,0x70,0xc9,0x95,0xb7,0x1e,0x13, + 0xa9,0x23,0x93,0xc6,0x5,0x89,0xd3,0x66,0xee,0xc3,0x35,0x71,0x46,0x89,0xdf,0x68, + 0x3c,0xad,0x97,0x37,0xed,0xf2,0xfc,0xd5,0x72,0xd1,0xd0,0xa1,0xaa,0x50,0xc6,0x1f, + 0xdf,0x11,0xfa,0x7d,0xd5,0xb7,0x17,0x7d,0x7b,0x75,0x2d,0x7d,0xc4,0x64,0xe9,0xa4, + 0x12,0x70,0x65,0x6e,0x3c,0x3e,0x62,0xe,0x4d,0x93,0x70,0xaf,0x90,0xb8,0x0,0x58, + 0x27,0xac,0xe0,0x27,0x97,0x81,0x20,0x2a,0xe6,0xd3,0xcd,0xb2,0x7d,0x4f,0x67,0x1b, + 0x22,0xbd,0x68,0x17,0xca,0xd0,0x4f,0xfd,0x6a,0x39,0x7c,0x6c,0x6f,0xe8,0xbc,0x24, + 0x28,0x61,0xae,0x8c,0x68,0xab,0xc6,0xda,0xce,0x83,0xb5,0xbe,0x9b,0xb7,0xeb,0x66, + 0xde,0xf5,0x70,0xa1,0xa0,0x82,0xc4,0x47,0x64,0x47,0x53,0xd7,0x4b,0xf0,0xda,0xca, + 0x95,0xbe,0xcb,0x92,0x17,0xea,0x0,0x85,0x37,0xe,0xf5,0x4f,0xb,0x6b,0xa8,0x3b, + 0x62,0x8f,0x4e,0xf8,0x2b,0x2f,0x30,0xe8,0x6f,0x63,0xd5,0xe2,0x6b,0x6d,0x2,0xe3, + 0xf7,0x3e,0x8,0x32,0x6b,0x78,0x90,0x72,0x14,0x8b,0xe4,0x10,0xd,0x40,0x26,0x2f, + 0x4f,0xc5,0x49,0xec,0x4b,0x74,0x91,0x43,0x90,0x28,0x2,0x75,0x8a,0xf8,0xce,0x0, + 0x48,0x6,0x19,0x4e,0x92,0x99,0xf7,0xd8,0x63,0xde,0x48,0xa6,0xef,0x3e,0x2f,0xd8, + 0x51,0x18,0x80,0x64,0x5a,0x8f,0xd0,0x23,0x78,0x46,0x8,0x1e,0xd1,0xd5,0x48,0xbe, + 0xd3,0xfd,0x19,0xd3,0x1b,0xb0,0x67,0xd7,0x6e,0x64,0xf6,0x70,0xc,0x36,0xf1,0x36, + 0x6e,0xc1,0x1b,0xee,0x44,0x8b,0x2d,0x7d,0x58,0xaa,0x78,0x64,0x7b,0x10,0x14,0xc7, + 0xe6,0x62,0x4c,0x2c,0x76,0x68,0xea,0x2a,0x2b,0x23,0xc8,0x87,0x2e,0xc3,0xa2,0x1a, + 0x23,0xbe,0x4a,0xe4,0x8,0xf5,0xe9,0x35,0xfa,0xd3,0x13,0xfb,0xe6,0x41,0x40,0x6f, + 0x4a,0xb3,0x8,0x25,0xf1,0x4d,0xd7,0xe8,0x1d,0xa3,0xfe,0x72,0xda,0x34,0x5e,0xd2, + 0xf4,0xb6,0xac,0x7d,0x6f,0x65,0xc,0x45,0xa4,0x51,0xda,0x40,0xbd,0xae,0x6f,0xbb, + 0xbe,0x5b,0xe1,0x95,0x63,0xf2,0x64,0x4a,0x64,0x52,0xa8,0xc9,0xb,0x27,0xa6,0x7e, + 0x27,0x42,0xaf,0xac,0x9c,0xd1,0xd0,0x58,0x58,0x7e,0x50,0xb1,0x6e,0x84,0x5d,0x73, + 0x8f,0xd,0xb1,0x74,0x6d,0xa4,0xad,0xa8,0x54,0xe1,0x95,0x8f,0x6a,0x8e,0x4d,0xd4, + 0xf7,0xed,0x65,0xa7,0xe2,0xc6,0x73,0x78,0xb4,0x8e,0xa7,0x59,0x53,0xb3,0x5,0xc3, + 0x61,0xa,0x47,0x2c,0xaf,0x4c,0xc9,0x87,0x7d,0x49,0xbb,0x49,0x28,0xd3,0x4e,0x13, + 0xd4,0x24,0xd2,0xde,0x21,0x8e,0x9,0xaf,0x27,0x51,0xb4,0x18,0xef,0x9e,0xd1,0x39, + 0x9,0x23,0xe3,0xd8,0x23,0xa2,0x14,0x9c,0x80,0xea,0x32,0xcf,0x68,0x38,0xc7,0x1f, + 0x84,0x51,0x79,0x2d,0xcd,0x4a,0xfe,0x94,0x8d,0x1d,0xca,0x8e,0x14,0xed,0xbf,0xc0, + 0x48,0x34,0x42,0x95,0xd3,0x71,0x1,0x43,0x33,0x68,0x49,0x93,0x20,0xa1,0x30,0x6e, + 0xec,0xd,0x75,0x7a,0xdd,0x8a,0x65,0x1b,0x98,0xf,0xb5,0xf8,0x1f,0xf5,0x42,0x6a, + 0xeb,0x12,0xa6,0xc8,0x20,0x1e,0xf7,0x1f,0x63,0xa8,0xf4,0xfc,0xb8,0xe9,0x6f,0xbb, + 0x55,0x8b,0x61,0xa2,0x5,0x30,0x1e,0xcd,0xd1,0x6c,0x7,0x27,0x38,0xb5,0xfc,0x85, + 0xc7,0xa6,0x1e,0xe0,0x63,0xdf,0x41,0x5a,0x21,0x5f,0xa5,0x54,0xf9,0x2e,0x42,0xba, + 0x88,0xa0,0x3a,0xf8,0x14,0xfb,0xc3,0xfa,0x33,0x5c,0x5a,0x46,0xcd,0x3e,0x9b,0x10, + 0x21,0x59,0xfa,0xcb,0x33,0xeb,0x4f,0x1a,0x25,0x3d,0xb0,0xac,0xe7,0x6d,0x2d,0x94, + 0x29,0x38,0x1a,0xa9,0xf1,0x12,0x7e,0xe4,0x1d,0x5a,0xf5,0x8f,0x30,0x2e,0x19,0x13, + 0x27,0xe8,0xd2,0xa9,0x8d,0xe0,0xac,0xfd,0x30,0xd4,0x4b,0xf9,0x1d,0x96,0xfe,0x4d, + 0x2e,0xc2,0x4d,0x8e,0xc,0x96,0xb5,0xc7,0x87,0x4e,0x6,0xa0,0x87,0x6e,0x51,0x13, + 0x4c,0xe4,0xbd,0xd,0xa1,0x2,0x27,0xfb,0xaa,0x60,0x86,0x51,0x67,0xf4,0xe6,0xba, + 0x1e,0x26,0xa2,0xbd,0x53,0x7,0x24,0xc6,0xe4,0x52,0xe5,0x27,0xaa,0xfc,0xc8,0xbd, + 0xf8,0x8e,0x5f,0x68,0x46,0x1b,0xf1,0x4d,0x52,0x96,0x3a,0xd9,0x12,0x22,0x36,0x85, + 0x39,0xbf,0x61,0x5a,0xc9,0xdf,0x8d,0xb6,0x78,0x43,0x76,0x3,0x95,0x88,0x74,0x8a, + 0x14,0x85,0x34,0x1,0x83,0xd0,0x39,0xde,0x7,0x78,0xd5,0xc7,0xa4,0xac,0x1d,0xe9, + 0x2c,0x1c,0x61,0xc3,0x75,0xd2,0xa3,0x7a,0xb5,0xaa,0x7,0xd0,0xe,0x2a,0xf6,0xc6, + 0x8f,0x7a,0xe3,0xa,0xb5,0x8f,0xf7,0xfc,0xbe,0x21,0x9,0xbf,0xbe,0xe,0x4c,0x62, + 0x3b,0x5c,0x38,0x72,0xd8,0xa2,0x40,0x2a,0x29,0x9e,0x7d,0x29,0x57,0xf7,0xf0,0x3a, + 0x50,0xaf,0xde,0xf2,0xd4,0x77,0x99,0x53,0x43,0xe5,0xb1,0x84,0xaf,0x3,0xf2,0xa8, + 0x64,0x9c,0x8d,0x74,0xad,0x67,0x75,0x7f,0x51,0x5f,0x75,0x18,0x9a,0x9,0x3a,0x4f, + 0x65,0x39,0x11,0x43,0x1b,0x75,0x99,0x7a,0xb,0x52,0x46,0x2b,0x5c,0x9b,0xa8,0x95, + 0x79,0xa0,0xfc,0x98,0xa9,0x9b,0xa9,0x10,0x67,0x28,0xcc,0x4,0x97,0x69,0xb4,0x4a, + 0x6a,0xc0,0xa0,0xcc,0x22,0x9a,0x8c,0x61,0x53,0xe,0xd1,0x79,0x60,0x12,0x17,0xee, + 0x2b,0x15,0x7c,0x6f,0xdf,0x42,0x52,0xe3,0x18,0x70,0x68,0xca,0x58,0xab,0xd4,0xa5, + 0x4b,0xa4,0xd2,0xf5,0x29,0xd5,0x39,0x74,0x7c,0xbf,0xcf,0x9a,0x45,0xfb,0x59,0x46, + 0xa2,0xc7,0xec,0x45,0x34,0xa3,0x4f,0xcc,0x83,0x5f,0xad,0x68,0x52,0xd9,0x67,0x62, + 0x87,0x19,0x40,0x3b,0xc4,0xd8,0xf,0x92,0xc,0x22,0x9,0x55,0xe2,0x12,0x16,0xf0, + 0x23,0xaf,0xa9,0x94,0x81,0x13,0xe0,0x51,0xc8,0x0,0x8f,0xe7,0x66,0xa,0xdb,0x80, + 0xe6,0x35,0x3c,0x18,0x9f,0xb7,0x73,0x4,0x12,0xd7,0x63,0x94,0x7e,0xc0,0xa8,0x54, + 0x6,0x7e,0x4c,0xa2,0x22,0x13,0x37,0x67,0xbc,0x8e,0x2a,0x32,0x16,0x83,0x4b,0x6b, + 0xd3,0xa2,0x9a,0x40,0x41,0xa2,0x34,0x74,0xab,0x75,0x7d,0x7e,0x2a,0xfe,0x89,0xf7, + 0x19,0x72,0x92,0xbf,0xa3,0xac,0xe0,0x14,0xda,0x94,0xcd,0x5e,0x6b,0x71,0xd,0xf3, + 0x21,0xf,0x66,0x5b,0x73,0xb8,0xf4,0x21,0x30,0x1,0x8c,0x4a,0x72,0x99,0xee,0x11, + 0xd0,0xb1,0x4,0xa8,0xde,0x7d,0x8,0x74,0x28,0x5d,0xec,0x8e,0x9d,0x90,0x5a,0x8c, + 0xd9,0x68,0x6e,0x3e,0x4,0x34,0x1e,0x62,0xb2,0x6,0x12,0x31,0xe1,0xab,0x21,0xb7, + 0x1,0x89,0xe,0x65,0xee,0xb,0x48,0x44,0x80,0x3d,0x58,0x8d,0x2b,0x87,0x46,0x7b, + 0x44,0x63,0x87,0x84,0x4,0xe2,0x73,0x2,0xf4,0x94,0x92,0xa0,0xad,0xd2,0x21,0xa4, + 0xee,0x39,0x4e,0x59,0x5,0x2a,0x39,0xb5,0x2f,0x94,0xc3,0x62,0xf0,0xdb,0x79,0xac, + 0x72,0x74,0x74,0x17,0xf2,0xec,0xce,0x69,0x57,0x26,0x1,0x2d,0x36,0xd0,0x96,0x66, + 0x12,0xa,0xde,0x2c,0xca,0xb3,0x8a,0xc4,0xd9,0xbb,0x55,0x1b,0x8e,0x37,0xc1,0xe7, + 0x94,0xa1,0x1,0x45,0x66,0xf3,0x64,0x21,0xc0,0x2e,0x6,0x3a,0xa7,0x2b,0x56,0x89, + 0x33,0x41,0x15,0xf0,0x4e,0x55,0x30,0x7b,0x95,0x23,0xe0,0x87,0x95,0xb1,0x8e,0xae, + 0x68,0x4f,0x2b,0xbd,0x9a,0xb9,0xb,0x30,0x69,0x4c,0x63,0x17,0x82,0x83,0x77,0xd3, + 0xfc,0x85,0x2b,0xd6,0x6e,0x29,0x73,0x59,0xb1,0xb9,0x25,0xb5,0xa0,0x5,0xaf,0x30, + 0x48,0xd7,0x49,0x1d,0xf0,0x84,0x8d,0xf9,0xb0,0x7d,0x8d,0xa0,0x5f,0x4d,0x85,0xef, + 0x4f,0x36,0x62,0x5f,0x68,0xb7,0xa3,0xa7,0x35,0x94,0x1c,0x1e,0x65,0x2e,0x42,0xa5, + 0x9b,0x98,0xac,0x23,0x8a,0x1e,0xa8,0x43,0x21,0x1c,0xc9,0xa7,0x42,0x68,0xf7,0x22, + 0x9a,0xea,0x98,0xd3,0xc4,0xce,0x9d,0x17,0x87,0x30,0x19,0x5d,0x99,0x9,0xdd,0x3, + 0xf5,0x97,0xf5,0x47,0xd4,0xd1,0x32,0xc8,0xfc,0x42,0x63,0x4e,0x50,0xea,0xc5,0x2a, + 0x7f,0x8d,0x7c,0xf4,0x3c,0xce,0xa4,0x64,0xad,0x50,0x33,0xca,0xa0,0x11,0x2d,0xf8, + 0x6e,0xe8,0x27,0xaf,0xc2,0xa6,0x9f,0xef,0x5b,0x50,0xa1,0xf6,0x29,0x15,0x76,0xae, + 0x2,0x51,0x6e,0xcc,0xb7,0x99,0xb8,0xdf,0x97,0xdc,0x5b,0x53,0xb9,0xb7,0xde,0xa0, + 0xf2,0xa9,0xab,0x88,0xdc,0x2a,0xa,0x25,0xf5,0x6b,0x19,0x7d,0xcd,0x61,0xe6,0xcb, + 0x6,0xb0,0x25,0x25,0x27,0xa4,0x62,0xeb,0xeb,0xce,0xf7,0xe1,0xda,0x16,0x24,0x75, + 0x48,0xe1,0xfe,0x1d,0x89,0x2b,0x80,0x89,0x48,0xa5,0x11,0x32,0xdb,0x97,0x7b,0xa1, + 0x7c,0x39,0x5c,0x4f,0xc2,0x8d,0x7c,0xf2,0x58,0xdd,0xf5,0xb3,0xfb,0xa3,0xff,0xfa, + 0x9d,0x2c,0xde,0x87,0x84,0xbc,0x2c,0x1e,0x11,0xa6,0xb5,0x4,0x11,0x58,0x4e,0x5, + 0x6b,0x73,0xc,0x37,0x26,0x8d,0x1c,0xb7,0x2d,0x20,0xa7,0xdc,0x47,0xa1,0xf1,0xf4, + 0xb8,0xf5,0xe7,0xec,0xe1,0x39,0xe9,0xa0,0x5e,0x98,0x85,0xbb,0xb5,0x4a,0xc9,0x91, + 0xf4,0xfe,0xa9,0xe6,0x6e,0xa9,0x4e,0x42,0xa3,0xc2,0x6f,0xad,0xde,0xa1,0xdf,0x1b, + 0xa7,0x34,0x25,0x9,0x12,0x61,0x34,0x95,0xfd,0x2,0x68,0xc8,0x11,0x1,0xcd,0x82, + 0x82,0x92,0xe0,0xa7,0xab,0x38,0x9f,0x46,0xe2,0x13,0x88,0xbd,0xb5,0x41,0xc2,0x9a, + 0x87,0x7a,0xdd,0xdc,0xd6,0xb,0x74,0x75,0x90,0xa4,0xb4,0x32,0x23,0xbf,0xdc,0xb1, + 0x6f,0xcd,0xf8,0x97,0x7c,0x34,0x64,0x53,0x42,0x48,0x2a,0x27,0xdd,0xbf,0xb5,0x28, + 0x5a,0x85,0xe1,0xd9,0x1e,0x96,0x72,0xb5,0x46,0xc2,0x37,0x5a,0xb1,0x2a,0xc,0x86, + 0x93,0xa2,0x58,0xd5,0x81,0x51,0x31,0xe3,0xd8,0x5e,0x5b,0x5,0x45,0xf0,0xf6,0x2, + 0x25,0x5,0xba,0x5,0xfd,0xf7,0xe7,0x38,0xc6,0xf8,0x6,0x1d,0xc2,0x37,0xdc,0xbf, + 0xa3,0x70,0x87,0x9a,0x9c,0x3,0x75,0xfd,0x7a,0xbb,0x1e,0xb6,0x4f,0x7a,0xc8,0xaf, + 0x1,0x1f,0x5a,0x5a,0x11,0xf7,0x8c,0xfe,0xd0,0x60,0xc7,0x38,0x51,0x4f,0xa0,0x16, + 0xf8,0xd1,0xa6,0xfa,0x4b,0x5b,0x1a,0x43,0xa3,0x7b,0xf0,0x6b,0xe9,0x36,0x7e,0x2d, + 0x88,0x60,0xb8,0xc8,0x4f,0x6f,0xd9,0x6f,0x90,0xef,0xa,0xb8,0x8c,0x76,0xd6,0x5c, + 0xf,0x97,0xed,0x75,0xbd,0xb8,0x43,0xf9,0x29,0x6c,0x5c,0xee,0x8f,0x51,0x3a,0x76, + 0xe7,0xda,0xc5,0xaf,0xeb,0xdb,0x5a,0x69,0x9a,0x5,0xb9,0x38,0xab,0x44,0xae,0x2a, + 0x7a,0xa3,0x35,0xf5,0x3,0x4f,0xcc,0xa3,0xb9,0x16,0x5b,0xa6,0x5e,0x17,0x6f,0xdd, + 0xaf,0xdb,0x65,0xfb,0xdd,0x20,0x67,0xd9,0x33,0xc9,0xb2,0xe8,0xe0,0x40,0x36,0x82, + 0x6e,0x3,0xaa,0xd8,0xab,0xe7,0x21,0xa0,0x48,0xc,0x63,0x5f,0x15,0xcd,0xf0,0x94, + 0x81,0xc8,0xac,0xbb,0x9,0x1d,0x86,0xdc,0x1f,0xe2,0x28,0xa0,0x5b,0xc2,0x1d,0x13, + 0x72,0x85,0xe7,0x4e,0x72,0xaf,0xde,0xe0,0x42,0x4a,0x6a,0x20,0xe3,0xa8,0xa7,0x3b, + 0x57,0x3a,0xc4,0x8c,0x2c,0xe7,0x64,0xa3,0x10,0x77,0xb1,0xe5,0x5d,0xf,0xb5,0xca, + 0xe0,0xe3,0x6e,0x7a,0x3a,0xdb,0xa7,0x7c,0xf7,0x3e,0x49,0xe5,0xc1,0x8,0x73,0xa9, + 0x14,0x89,0x9c,0x32,0x76,0x25,0xf9,0x40,0x7,0x9f,0xdd,0x19,0x17,0x9f,0xf2,0x74, + 0xa4,0x14,0x53,0x14,0xce,0x82,0x98,0xb9,0xa4,0x2b,0xe6,0x5c,0xaf,0xa,0x52,0xb, + 0x3f,0x48,0xad,0x6f,0xb1,0xd3,0x51,0x39,0xea,0x74,0xa4,0x36,0xad,0x3d,0x79,0x52, + 0x24,0xd3,0x2e,0x91,0x3,0x80,0xb7,0xad,0x5b,0x8f,0x3d,0x8a,0xb8,0xbf,0xad,0x97, + 0xb4,0x9d,0xa1,0xe9,0xc5,0x8e,0x28,0xac,0x21,0xdc,0xe,0xe3,0x94,0x66,0x5c,0xa8, + 0x2a,0x93,0x9a,0x9c,0xd9,0x82,0xea,0xf2,0x5e,0x42,0x2c,0xbf,0x40,0x87,0xfa,0x4b, + 0x86,0x21,0xd3,0xf,0xac,0xa9,0x83,0xf6,0x53,0xf6,0x96,0xad,0xf2,0x60,0x65,0xe, + 0x37,0xe2,0x64,0x83,0x8e,0xb0,0x1d,0x4a,0x79,0xb,0xbf,0x84,0xc1,0x29,0x7e,0x3e, + 0xdd,0xe,0x63,0x2a,0xfd,0xfb,0x7a,0x79,0x75,0x7e,0x36,0xc8,0x64,0xbd,0x90,0x5, + 0x2b,0xfe,0x51,0x1f,0x58,0xc5,0xf7,0x6a,0x4c,0x55,0x68,0x4f,0xa5,0xed,0xde,0x1e, + 0x95,0xe4,0x60,0x96,0x39,0x41,0xbe,0xb,0xcc,0xa5,0x34,0xf6,0x9c,0x5,0x96,0x3b, + 0xc7,0x66,0xdb,0xe,0xe0,0x98,0xbd,0xae,0x80,0x80,0x38,0x50,0x21,0xf4,0x32,0xfb, + 0x2d,0xa7,0xc2,0xb7,0xd4,0xaa,0x40,0xc7,0x19,0x10,0xba,0xd4,0x9e,0x9d,0xb9,0x10, + 0x9b,0x92,0x2c,0xca,0x78,0x7d,0xe9,0x54,0x2f,0xd4,0xa9,0x1e,0x7f,0xe2,0x87,0x0, + 0x3c,0x14,0xf6,0x85,0x24,0x97,0x84,0x6e,0xdd,0x84,0x22,0x4f,0xd8,0x96,0xbe,0xed, + 0x94,0xef,0x8f,0x9a,0x40,0x87,0x56,0x9e,0xfb,0x5b,0xb1,0xc0,0x71,0xdf,0x72,0xf2, + 0x0,0x13,0x27,0x32,0x36,0xe8,0x31,0xdd,0x10,0x2c,0x61,0x29,0x15,0x56,0xbe,0xf, + 0x93,0xa,0x6c,0xa,0xf0,0x38,0xe1,0xa4,0x85,0x7b,0xfc,0x69,0x68,0xd4,0x35,0xe6, + 0x11,0xaf,0x94,0xf8,0x74,0xa7,0x7e,0x3f,0xc1,0xd7,0x5a,0xa9,0x1e,0xf7,0xb4,0xdd, + 0x75,0x6,0x5a,0x55,0xae,0xf8,0x34,0x40,0x54,0x43,0xf5,0xa,0x25,0xb4,0x5e,0x63, + 0xf,0xed,0xb3,0x7,0x31,0xbe,0x93,0x86,0x10,0x1a,0x3b,0xae,0xc1,0x4a,0x69,0x79, + 0x9c,0xaa,0xee,0x10,0x89,0x72,0xef,0xaf,0x9b,0xa5,0xd8,0x9e,0xea,0xa7,0xcf,0x86, + 0x66,0x9,0x39,0x69,0xdb,0xbe,0x91,0xbe,0xb9,0x84,0x68,0xaa,0xf0,0xc,0xcf,0x31, + 0xc6,0x53,0xa4,0x90,0xc5,0x3,0x1,0x7b,0xfa,0x45,0x5f,0xb3,0x5d,0x9,0xb,0x41, + 0x7e,0x6d,0xfb,0x28,0x77,0xbe,0x83,0x82,0xa7,0x52,0x46,0xe4,0x95,0xd4,0xf6,0x12, + 0x59,0x8c,0x72,0x22,0xd0,0xc1,0xa,0xe,0x36,0x4e,0x6,0x4e,0x4,0xc7,0xf7,0x76, + 0x7b,0xaf,0xeb,0xaf,0xba,0xb,0xe9,0x23,0xcb,0x7f,0x89,0x1e,0x47,0xba,0x6b,0x96, + 0x5e,0x66,0xf4,0x9,0x7f,0x86,0xd1,0x9,0xd3,0x61,0x8d,0x63,0x8b,0xd9,0x25,0xf0, + 0x7f,0xb4,0xb1,0x49,0x4e,0x14,0x9f,0x7e,0x69,0xf6,0xd,0xef,0x70,0xcf,0x86,0xcb, + 0xe1,0xb6,0xc6,0xcb,0x6e,0x31,0xbb,0xb5,0xff,0x8f,0x31,0x60,0xb9,0x21,0xa2,0x13, + 0x4,0xde,0xac,0x32,0x95,0xea,0x92,0x20,0x7a,0xcc,0x9a,0xbf,0x5,0xd7,0x67,0xf7, + 0x41,0x2e,0x7b,0x41,0x93,0xcf,0xfc,0xac,0xb3,0xe0,0xcc,0x1,0x3a,0xd0,0x7e,0x96, + 0x49,0x18,0xcd,0xed,0x23,0x99,0x63,0x56,0x2f,0xcf,0x5f,0xf,0x92,0x3b,0x92,0x74, + 0xe7,0x1f,0x77,0x5a,0x50,0x33,0x8b,0x46,0x33,0xb3,0x80,0x87,0x3c,0x7e,0xd2,0xcc, + 0xbc,0x1e,0x3e,0xc,0xf7,0x4a,0x4a,0x44,0x3f,0xff,0x47,0x23,0x47,0x95,0xb2,0x99, + 0x9,0x55,0xd4,0x13,0x98,0x28,0x92,0x5a,0x7d,0x5b,0x51,0x31,0xfa,0xb8,0x20,0x7d, + 0x4,0xa2,0x61,0x6d,0xf1,0x2f,0x23,0x5a,0xf6,0x20,0xe,0xa6,0xee,0x2f,0xe5,0x67, + 0x95,0xec,0xfc,0xa3,0x6d,0x14,0x3f,0xdb,0x67,0x75,0xd8,0x2c,0xaf,0xba,0xcf,0x38, + 0x2d,0x49,0xc6,0xae,0xd0,0xfd,0xc2,0xec,0x23,0xcd,0xc,0xce,0x3e,0xa3,0xc9,0x73, + 0x90,0xe2,0x11,0x52,0x6c,0x86,0xfc,0x37,0x7e,0xa1,0x71,0xe2,0x4c,0x32,0xdc,0x8d, + 0x7b,0x78,0x8a,0x85,0xe2,0xd5,0xfb,0x75,0x33,0xf2,0x20,0x57,0xaf,0xf3,0xd8,0x84, + 0x44,0xbb,0x2d,0x37,0x28,0x67,0x20,0xfb,0xde,0xe,0x90,0x4b,0x18,0xcc,0xbf,0x5f, + 0x62,0x4f,0x8,0xd9,0x47,0xaa,0x9e,0xed,0xfc,0x49,0x8b,0x86,0xec,0x6a,0xad,0x45, + 0xbb,0x12,0x51,0xf0,0xf7,0x14,0x93,0xe8,0x50,0xc6,0xe1,0xf5,0x74,0x81,0xa1,0x35, + 0xcc,0x61,0xb3,0xe1,0x13,0x10,0xdb,0xed,0xf9,0x8b,0x7a,0xb1,0x68,0xae,0x3b,0x9c, + 0xe1,0x24,0xff,0x25,0x74,0x8f,0xff,0xc5,0x6f,0xfe,0xab,0xd5,0x7c,0xa8,0x5b,0xf9, + 0xcd,0x27,0xbf,0xc4,0x96,0xf1,0xe3,0xf7,0xc7,0xf0,0x27,0xe,0x97,0x78,0x56,0xf6, + 0x86,0xbe,0xbe,0xac,0x3b,0x32,0xfe,0xe1,0xa2,0xa6,0x4f,0x70,0xd4,0xe7,0x27,0xf5, + 0x67,0x9c,0x84,0x78,0x7c,0xc6,0xa0,0xcb,0xe4,0xf8,0x13,0x23,0x7c,0x14,0x20,0xa, + 0x9e,0x1d,0xeb,0xf8,0x1d,0x9d,0xe7,0x5c,0x75,0x18,0xbe,0xf0,0x15,0xf5,0x22,0x24, + 0xe0,0x98,0x50,0x86,0xdb,0xca,0x38,0xa,0x92,0x91,0xeb,0x41,0xc1,0x34,0x51,0x48, + 0x69,0x52,0xb0,0x2e,0x91,0x2b,0x99,0x69,0xa,0x20,0xf2,0x18,0x65,0x1e,0x44,0xb4, + 0x32,0x79,0x3d,0x35,0xf6,0x36,0x94,0x25,0x3e,0x97,0xc0,0x8a,0x9a,0xf8,0x15,0x6f, + 0x27,0x4f,0x27,0x29,0x32,0x6d,0x68,0x27,0x4e,0xdf,0x72,0xf2,0x9e,0xa3,0x9f,0x68, + 0x34,0x1c,0xbc,0xbe,0x9a,0x97,0x13,0x2d,0xe5,0xd2,0x31,0xe0,0xf8,0x58,0x0,0xa4, + 0x9e,0x3e,0x3c,0xa,0x62,0xa7,0x9c,0xf8,0x3e,0x32,0x5e,0x5b,0x69,0x8e,0xc5,0x33, + 0x87,0x46,0x9f,0x90,0x45,0xa9,0x43,0x51,0x4c,0x51,0x94,0x8a,0xa2,0x70,0x8,0x4c, + 0x90,0x41,0xee,0x10,0x98,0x7,0x68,0x54,0xde,0xaa,0x6d,0x7,0xc2,0x3d,0x25,0x2b, + 0x29,0x71,0x55,0xaf,0x9c,0x59,0xa9,0xcc,0x7b,0xb5,0xce,0x9c,0xa8,0xa3,0x9c,0x3, + 0x7d,0x7b,0x7c,0xdb,0x1,0x1c,0x7,0xf4,0x1,0xc9,0x55,0x60,0x22,0x33,0x74,0xe0, + 0xcb,0xb6,0x53,0x3e,0x1e,0x78,0x95,0xb0,0xb5,0xa7,0x24,0x28,0xee,0xe9,0xb3,0xdd, + 0x6e,0xef,0x52,0x8d,0x70,0x30,0x76,0x5f,0x20,0x42,0x3e,0x35,0x60,0x72,0x2,0xce, + 0x6a,0x34,0xeb,0x96,0x3b,0x4,0xc5,0x4,0x41,0x39,0xc5,0xd3,0x95,0x59,0x38,0xb7, + 0xd7,0x3a,0x6e,0x3f,0x76,0x29,0x2a,0xdf,0xa7,0x6b,0x5c,0x3b,0x7,0x70,0x61,0x89, + 0x10,0xe8,0xe3,0x74,0xe7,0xa2,0x30,0x25,0x8c,0xf4,0x39,0x92,0x77,0x7e,0x30,0x1e, + 0x4d,0xb2,0xbc,0xdb,0xa2,0x71,0xde,0x55,0xe,0x20,0xf5,0x7d,0x23,0xc4,0xb3,0xcf, + 0xb9,0xd4,0xf8,0xee,0x8f,0x82,0xcc,0x29,0x37,0x47,0xc8,0x6e,0x97,0x46,0xd7,0xa6, + 0x29,0x55,0xa9,0x23,0xf1,0x47,0xe,0xb2,0x95,0x56,0x9a,0xd0,0x1d,0x3c,0x31,0xde, + 0x48,0x33,0xa7,0x8c,0xfa,0x8a,0x1d,0x28,0xec,0x1f,0xf8,0xec,0xf5,0x14,0x79,0xb6, + 0x91,0x1c,0x22,0x13,0x30,0x29,0xdc,0x4,0x79,0x9c,0x6c,0x22,0x87,0x7,0x18,0xc2, + 0x78,0x92,0x99,0x5,0x2c,0xdf,0x48,0xe,0xea,0x60,0x92,0x4c,0x93,0x27,0xe9,0x26, + 0xf2,0x4,0x8e,0x1c,0x93,0xd,0xac,0x92,0x14,0x1b,0xc9,0xd5,0xc2,0xb8,0xc4,0xec, + 0x11,0xb3,0x6e,0x39,0x17,0x38,0x90,0x6c,0x9f,0x9e,0x11,0x8,0x9d,0x30,0x86,0x4a, + 0xc4,0x7e,0xfc,0x54,0x3e,0x71,0x5e,0x85,0x98,0xae,0x2,0xca,0xb7,0x3,0xa3,0x0, + 0xc8,0xf8,0x4f,0x86,0xaa,0xce,0xe4,0x61,0x5b,0xd5,0xa8,0x2a,0x96,0x1e,0x1c,0x25, + 0x2e,0x6a,0xc,0x71,0xb3,0xa,0x8f,0x87,0xd5,0xc1,0x8b,0x6d,0x9,0xa4,0x9c,0xb6, + 0xb7,0x28,0xb1,0x5f,0x89,0xac,0x41,0x6b,0x21,0x42,0x14,0xcf,0xf0,0x9c,0x64,0xac, + 0x1a,0x41,0xd4,0x41,0xdd,0xcb,0x7a,0xe0,0x45,0xf9,0x92,0xd5,0x93,0xca,0x7a,0xb4, + 0x92,0x63,0xea,0x21,0xa,0x8a,0xba,0xc6,0x98,0xfa,0x2a,0x87,0x2b,0x99,0xf5,0xa2, + 0xf9,0x8c,0x93,0x97,0xa4,0x9b,0xba,0x68,0xa6,0x8e,0xe9,0xcb,0x72,0xea,0x18,0xaa, + 0xe,0x67,0x88,0x99,0xee,0xa4,0xa7,0xce,0x45,0xc5,0xa9,0x1b,0x77,0xec,0xb4,0xb9, + 0x84,0x8b,0x5c,0xdb,0xb1,0x39,0xaf,0xfa,0xbb,0x75,0x2c,0xca,0xfe,0x96,0x8e,0xed, + 0xf6,0x70,0x20,0x88,0xd7,0xee,0x41,0x3d,0x75,0xd7,0xe3,0x11,0x7d,0xc3,0xec,0xbe, + 0x2e,0x2a,0xa,0xc6,0x19,0x5d,0x25,0x29,0x53,0x8e,0x51,0x7b,0x73,0x50,0x85,0x34, + 0x99,0xf9,0xfa,0x76,0x58,0x5f,0x36,0x6d,0x7,0x93,0x16,0xc7,0xf4,0x88,0xf9,0xd1, + 0x1d,0x3b,0x1e,0xcf,0x4,0x6e,0x68,0xb3,0x20,0xfd,0x85,0xd6,0x1d,0x23,0xdf,0x25, + 0x33,0xee,0x6c,0x60,0x47,0xff,0x74,0xa1,0x22,0x9c,0x8f,0xa7,0xcb,0x4e,0xe3,0xf8, + 0xe3,0xea,0x84,0xa2,0x3d,0xc0,0x3d,0x89,0x84,0xa5,0xd2,0xf1,0xcd,0x99,0x4c,0x9a, + 0x9f,0x50,0xeb,0x33,0x77,0xb0,0xf8,0xa5,0xc8,0x3b,0x61,0xbb,0xc1,0x29,0x63,0xa3, + 0xbe,0xdd,0x78,0xfa,0xdb,0xa5,0x84,0x43,0x5b,0x5f,0xd4,0xea,0xc8,0x33,0xe,0xa7, + 0x3f,0x77,0x32,0x9,0xcc,0x1e,0x39,0x9e,0xac,0x1a,0x22,0x2b,0xba,0xf3,0xaf,0x9b, + 0xc5,0x1c,0xf,0x6c,0xe1,0x19,0xba,0xfc,0xc7,0x88,0x13,0xf6,0x4c,0x52,0x7d,0xfe, + 0x75,0xbb,0x52,0x47,0x0,0xae,0xd8,0x7d,0x48,0x2c,0x11,0x1e,0x72,0x87,0x64,0x4d, + 0x77,0xb7,0x49,0x38,0x8c,0x1f,0xd0,0xa,0xe,0x1d,0xde,0x78,0x44,0x73,0x89,0x89, + 0x4a,0x60,0xa8,0x15,0x3a,0x4f,0xbc,0x23,0x7c,0xde,0xf6,0xc3,0xb2,0xb9,0x6b,0x54, + 0xa4,0x97,0xb3,0x78,0x99,0xac,0x27,0x7b,0x2a,0xeb,0x37,0x4d,0x66,0x58,0x4f,0x46, + 0x9b,0x74,0x50,0x4d,0x93,0x1a,0x95,0xc9,0x68,0xbb,0x92,0x11,0xe6,0x73,0xf,0xd, + 0x1e,0x95,0x8e,0x6d,0x77,0xfe,0xac,0x87,0xcb,0xfe,0xd8,0x39,0xea,0x5a,0x7d,0x54, + 0xe7,0x1e,0xdb,0xa2,0xd8,0x82,0xd7,0x81,0x4e,0xfd,0x26,0x73,0x13,0x10,0x8d,0x13, + 0x41,0x65,0xa0,0xb2,0xc2,0x71,0x33,0x6e,0x1d,0x98,0x40,0x5c,0x50,0x1,0xd3,0x81, + 0x12,0xe5,0x2c,0x9d,0x5e,0x32,0x30,0x22,0x7d,0x1d,0x3e,0x76,0xa9,0xa,0x7b,0xc, + 0x9,0x2f,0x77,0x33,0xaa,0xc2,0x86,0x8c,0x9,0x2d,0xcb,0x81,0x61,0x7e,0x35,0x72, + 0xf8,0x59,0xb9,0x15,0x9b,0xe4,0x15,0xc6,0x21,0x36,0xaa,0x5f,0xc7,0xaa,0x89,0xfe, + 0x3a,0xc4,0x26,0xf0,0x6b,0xa2,0x76,0x9b,0xbf,0x5a,0x2c,0x12,0xaf,0xb5,0x34,0x61, + 0xbf,0x93,0xd,0x23,0x4a,0x59,0x4d,0x57,0x5f,0x99,0xac,0xb6,0xb9,0xb,0x89,0xa4, + 0xf0,0xde,0x50,0xbb,0x44,0xd9,0xd0,0xf9,0xaa,0x98,0x5e,0xa9,0xca,0x9,0x76,0x1d, + 0x55,0xae,0xf3,0xf3,0xa,0xf6,0x71,0x6a,0x35,0xa9,0x46,0xdc,0xb5,0xaa,0x4c,0x7c, + 0xac,0xb7,0x43,0xda,0x2e,0x29,0xa6,0xdb,0x65,0x41,0xb8,0x4e,0x9f,0xd1,0xe7,0xb6, + 0xa1,0xcf,0xd8,0xb4,0xea,0x99,0xbe,0x60,0xc7,0xc1,0xce,0x55,0xe0,0xd8,0xf,0xdf, + 0x1d,0x4c,0x7c,0x13,0xef,0xbd,0xc,0x9d,0x4b,0x49,0xb,0x82,0xcb,0x9d,0x2a,0xc, + 0xca,0x4c,0xb7,0xe1,0xd4,0x91,0xeb,0xf0,0xba,0xfb,0x89,0x31,0x28,0x4,0xdd,0xb, + 0x33,0x85,0x5c,0xa7,0x6c,0x6b,0x19,0xc4,0x9a,0xa,0xe1,0x3d,0xa,0x62,0x55,0x65, + 0x33,0x29,0x51,0xe4,0x95,0x8e,0x90,0xa,0x37,0xd1,0xc8,0xeb,0x61,0xe1,0xc1,0x45, + 0x51,0x13,0x52,0xd1,0x2b,0xc,0x3d,0x2f,0xaa,0x60,0x8b,0x19,0x8a,0xaa,0x35,0x11, + 0x55,0x42,0x94,0xcc,0x28,0x71,0x1a,0x4b,0xff,0xa2,0x6d,0x59,0xe5,0x66,0x20,0x28, + 0xb9,0xc,0x5e,0x61,0xee,0xde,0x34,0x77,0xea,0x91,0xaf,0x32,0x92,0x6a,0xa,0x1d, + 0x94,0x2a,0xbd,0xe9,0xd8,0x8b,0xd1,0x7e,0x39,0x8,0xdd,0xfb,0x7c,0xb7,0x6f,0x96, + 0x35,0xee,0x3b,0x69,0xc2,0x8e,0xba,0xff,0x1,0xe7,0xea,0xf1,0xd3,0x20,0x39,0x69, + 0x3f,0x60,0x76,0x83,0x7e,0x8a,0xf2,0x79,0xbd,0xc2,0x17,0xaf,0xb,0x48,0x3c,0xe0, + 0x4,0x83,0xdb,0xb2,0xe7,0xea,0x9e,0x94,0xca,0xdd,0x3,0x55,0x17,0xa2,0x6a,0xbc, + 0x87,0x10,0x5b,0x61,0x8d,0x41,0x6c,0x0,0xcc,0x9f,0xaa,0x6d,0xe,0x2c,0x9e,0xcb, + 0xb5,0xc,0x41,0x5b,0x88,0xb5,0x8,0x6c,0x5e,0x86,0x3c,0x7b,0xac,0x67,0x17,0x9b, + 0xb8,0x7f,0x70,0x50,0xa7,0x18,0xac,0x64,0xaf,0xfd,0xdc,0x53,0x8f,0xc5,0x60,0xbd, + 0x48,0x28,0xad,0x5c,0xd3,0xf3,0x59,0x77,0xdd,0x49,0x15,0x28,0xcb,0xd9,0xab,0x3d, + 0xa9,0x1c,0x1e,0xcc,0xa9,0x1,0x3d,0x53,0xfb,0x33,0x6e,0x6e,0xb8,0x9a,0x83,0x5e, + 0x4d,0xa6,0xfe,0x49,0xd7,0xb0,0x3c,0xf4,0xb2,0x19,0x72,0x30,0x2,0x4d,0x6a,0x35, + 0xf2,0xc2,0x1d,0x6,0xbd,0x9b,0x19,0x91,0xa1,0x73,0x1b,0x5c,0xcc,0x6f,0xbb,0x4f, + 0x4d,0x7f,0x2e,0x63,0x6a,0x57,0x9b,0x10,0xdf,0xf4,0xc2,0x22,0x5c,0x5e,0xb5,0x1f, + 0x6e,0x60,0x6,0x3e,0xda,0xb9,0x39,0xd2,0x89,0xbd,0x67,0x6,0xa0,0xdd,0xe,0x63, + 0xa3,0xfc,0xc5,0x50,0xdf,0xd7,0xdf,0xd,0xed,0x22,0x90,0x31,0x87,0x4e,0x68,0xa9, + 0x28,0x83,0x3e,0x7f,0xa9,0x3c,0xd8,0x38,0x1b,0x1f,0xc9,0x6c,0x68,0x46,0x7b,0x51, + 0x2f,0xea,0xbb,0x1a,0xf,0x3f,0x64,0x1e,0x2,0xab,0xf8,0x25,0x11,0x65,0xe4,0x52, + 0x46,0x54,0x7e,0x34,0x6c,0x24,0xba,0xf8,0x29,0xa0,0x79,0xcd,0x67,0x2c,0x2e,0x7b, + 0x66,0x10,0xcc,0x8d,0x3d,0x1b,0xaa,0x44,0x1c,0x8c,0x88,0x62,0xbc,0x9e,0x9c,0x94, + 0x5e,0xb5,0xf2,0xd6,0x9d,0x1a,0x7,0x64,0xc4,0x6b,0x34,0xb1,0xef,0x5e,0x32,0x19, + 0x4c,0xee,0x5c,0xc0,0xe4,0xf4,0x2c,0x59,0x3c,0x25,0xcd,0x2,0x95,0xcd,0x62,0x66, + 0x2f,0x16,0x52,0xf8,0x38,0x1d,0x46,0x4e,0xab,0x56,0x9e,0xbd,0x68,0x74,0xb7,0xd2, + 0x8b,0x61,0xee,0x87,0xc5,0x7a,0x83,0xd1,0xf7,0x3,0x67,0xeb,0x7a,0xb9,0x68,0x64, + 0xc2,0xf0,0x88,0x1d,0xa,0xe2,0xfb,0xe,0xba,0x6c,0x46,0x2f,0x8d,0x4a,0x8d,0x5d, + 0x34,0x41,0x34,0xf9,0x44,0x47,0x74,0x62,0xb1,0xf9,0xb4,0xd1,0x86,0xce,0x1c,0x74, + 0xec,0x14,0xbc,0x9a,0xe0,0xf5,0xa3,0xec,0xd5,0xf7,0xf0,0x56,0x23,0xf4,0x28,0xae, + 0x98,0x5d,0x15,0x29,0x99,0x6b,0xa4,0x24,0xbc,0xe,0xec,0xab,0xe2,0xc5,0x70,0x5f, + 0x4b,0xc3,0x3f,0xe3,0x16,0x4f,0x26,0xcf,0x16,0xc5,0xee,0x20,0x19,0x32,0xc1,0x2b, + 0x74,0x85,0xbc,0x5,0x93,0x44,0xcc,0x76,0xe6,0x87,0x31,0xdf,0x7,0xea,0xe2,0x58, + 0x59,0xba,0x1c,0x66,0x40,0x85,0xe7,0xc0,0x1,0x81,0x95,0x54,0xe1,0x5c,0xdd,0xfb, + 0xfb,0x80,0x38,0xea,0xe3,0x98,0xd7,0x68,0xfc,0xf1,0x4e,0x4b,0xc6,0xeb,0x9e,0x3b, + 0xe5,0xe4,0x3a,0x24,0x6f,0xc2,0xb8,0xdd,0x33,0x87,0xc2,0x9e,0xde,0x24,0x2e,0x9, + 0x71,0xbb,0xbb,0xed,0x13,0x87,0xfb,0x88,0xe5,0xbf,0xf,0x8c,0x5f,0xdd,0xd7,0x91, + 0xdc,0xf1,0x55,0xbb,0x55,0x6b,0xff,0xa2,0xbf,0xde,0x52,0x53,0xfb,0xa2,0x27,0xbf, + 0x97,0xbe,0xa,0xb4,0xab,0xbd,0xc1,0x9c,0x16,0x21,0x9,0xd8,0x85,0x49,0xd3,0x1, + 0xa4,0x55,0x27,0xee,0x1e,0xef,0xf2,0xf7,0x81,0xbe,0x95,0x31,0x75,0x24,0xff,0xbd, + 0xe4,0x6c,0xe6,0x9e,0xe6,0xf4,0x70,0xf1,0x3d,0x8c,0x62,0xd2,0x43,0x97,0xdc,0xbd, + 0xe0,0x65,0xbc,0xac,0xc4,0xb3,0xb5,0x1a,0x96,0x97,0xad,0xc,0xb6,0xce,0x42,0x57, + 0xd1,0xb1,0x65,0xbb,0xe4,0xd4,0x91,0x29,0x2f,0x5,0xf5,0xe9,0x4,0xea,0xd6,0x2f, + 0x7e,0xa3,0xdf,0x1b,0xdd,0x4a,0xf4,0xe7,0x3e,0x30,0x49,0x4a,0x95,0x60,0x54,0x23, + 0x21,0x0,0xce,0xd0,0xf7,0x5a,0x4c,0x3b,0x79,0xbe,0x39,0x65,0x15,0x90,0xf8,0x67, + 0x39,0xc8,0x94,0xd7,0x21,0x6f,0x40,0x16,0xde,0x86,0x2d,0x6c,0xdc,0xb6,0xfa,0x66, + 0xc6,0x44,0x55,0x38,0xd1,0xdb,0x2a,0x9d,0xa2,0x48,0x5d,0xa,0x72,0xe8,0xdb,0xca, + 0xa0,0xfd,0x92,0x1d,0x7b,0xe3,0x66,0xc9,0xd3,0x7b,0x96,0x32,0xd6,0x40,0xba,0x16, + 0xee,0xa9,0xe,0x61,0xc4,0x6f,0x37,0xac,0xe7,0xe7,0x2f,0x9a,0xae,0xbf,0x96,0xee, + 0xb4,0x38,0x77,0x2e,0x2,0x8c,0xbd,0xd5,0x27,0x75,0xf,0x61,0x48,0xed,0x5,0x3a, + 0xc3,0xd2,0x90,0x87,0xdb,0x6f,0xc9,0x32,0xf4,0x2a,0xca,0x4b,0x37,0x90,0x5a,0xb, + 0xcb,0xb0,0x6b,0xb2,0x4c,0xc8,0xbd,0x63,0xf3,0x7e,0x8f,0x58,0x6f,0x54,0x50,0xca, + 0xd4,0x2f,0x4e,0xc1,0x1b,0x75,0xde,0xbd,0x3f,0x9f,0xdd,0xd5,0x2d,0x86,0xce,0xe5, + 0xd4,0xad,0x63,0x12,0x9,0x78,0x74,0x1b,0x4e,0x69,0x18,0x78,0x79,0x2d,0xf4,0x8d, + 0x45,0xfd,0x18,0xcc,0x75,0x7b,0x3d,0x3c,0x2,0x11,0x2f,0xfb,0x89,0x7f,0x3c,0x8c, + 0xf9,0x2,0x8c,0x84,0xab,0xc7,0x20,0xe,0xf5,0x55,0xb3,0xe8,0x86,0xbb,0xe6,0x61, + 0x5c,0x31,0x3,0xad,0x50,0x30,0x1f,0x81,0xd8,0x2d,0xd7,0xab,0xa6,0xef,0xeb,0x47, + 0xe0,0xce,0xd6,0xe7,0xcf,0xea,0x7e,0x3d,0x87,0xc3,0x89,0xfb,0x47,0xa1,0xbf,0x69, + 0xd7,0xeb,0xd5,0xa3,0x30,0xdf,0xe,0x97,0xed,0x23,0xe6,0x40,0x60,0x9e,0xcd,0xbb, + 0xdb,0xfa,0x71,0x95,0xca,0x67,0x96,0x1f,0x31,0xb2,0x33,0x70,0x6f,0x8a,0xf5,0x17, + 0xdf,0xda,0xe7,0xc0,0xbc,0x79,0xa4,0x6e,0x96,0x3,0x4f,0xbe,0x9c,0x19,0x18,0x8, + 0xac,0x38,0x1f,0x7d,0xbc,0x16,0x66,0x77,0x29,0x87,0xd4,0x3e,0x3b,0x32,0xba,0x87, + 0x4a,0x90,0xd0,0x40,0x33,0xce,0x17,0x7c,0x20,0x24,0x93,0x2f,0x47,0xac,0x68,0x5b, + 0x89,0x3e,0xc4,0xf4,0x35,0x64,0xf2,0x40,0xb3,0x3b,0xcb,0x8c,0xbc,0xd0,0x42,0x6f, + 0x43,0x5f,0x52,0xe3,0x95,0xf0,0x34,0xa2,0xd2,0x4c,0x72,0x15,0x95,0x0,0xf6,0xf5, + 0x2d,0x7a,0x4b,0x41,0xa2,0x33,0x52,0x4e,0x93,0x91,0x34,0x97,0xe,0x55,0x66,0xd2, + 0x5c,0x66,0x9c,0x26,0xb7,0xc2,0xb5,0xe0,0x24,0xb9,0x75,0xf8,0xe5,0xe,0x4d,0x16, + 0xa8,0x50,0xb,0x7e,0xcd,0x71,0x46,0x10,0x94,0xef,0xc9,0xa5,0x34,0x41,0x1a,0xc7, + 0x4c,0x3b,0x41,0x18,0x6c,0x31,0x45,0xa8,0x7,0x50,0x8c,0x27,0xcb,0x62,0xec,0xd3, + 0x1b,0x21,0x9f,0xe5,0xe6,0xa7,0xaf,0x8a,0x38,0x23,0xd7,0x90,0x61,0x34,0xf4,0x82, + 0x44,0xad,0x84,0xe3,0xd6,0x14,0x78,0x9f,0xe9,0x70,0x8,0xe0,0x77,0x5a,0x6d,0x7d, + 0xfa,0x3a,0x86,0xdb,0x3,0xdf,0xa6,0xfa,0x39,0x30,0x59,0x52,0x98,0x32,0x6,0xe5, + 0x25,0x4d,0x48,0xcf,0x28,0xca,0x62,0x82,0x2b,0xca,0x72,0x92,0x2b,0xec,0xbd,0x15, + 0xb7,0x19,0xeb,0x8d,0x8b,0x9c,0xe9,0xb4,0xfa,0x6b,0xc5,0x69,0x64,0x8a,0x2,0x6e, + 0xae,0x71,0x52,0x89,0x41,0xd4,0xc1,0xd8,0x69,0xd6,0x28,0xae,0x51,0xe9,0x0,0xb4, + 0x39,0x1b,0x97,0xb4,0x4a,0x13,0x9b,0x20,0x6c,0xe,0xd6,0x1b,0x13,0x9c,0x80,0x3b, + 0x55,0x61,0xad,0x24,0x2,0x3a,0x56,0xf9,0x5b,0x2d,0x49,0x4e,0x7,0xcd,0x49,0x72, + 0xed,0xfb,0x3b,0xe6,0x86,0x95,0x86,0x17,0x81,0xef,0x6e,0x2e,0xd7,0x22,0x30,0xd9, + 0xdd,0xc7,0xf6,0xaa,0xe9,0xf4,0xad,0x39,0x62,0x7c,0x29,0xaf,0x3f,0x3e,0xca,0xa7, + 0x41,0x87,0x2c,0x8a,0x4e,0xbe,0x9e,0xf7,0x59,0x6e,0xde,0xca,0xa,0x4b,0x63,0x5c, + 0x70,0x34,0xc3,0x3e,0xd3,0x3,0xb1,0x92,0x17,0xe1,0x6e,0x5f,0x44,0x23,0xbc,0x22, + 0xf5,0xe1,0xa5,0xc8,0xd9,0x1c,0xc2,0xec,0x35,0x70,0x4b,0xac,0xd4,0x55,0x83,0x94, + 0x5b,0x90,0xb2,0xc,0x3e,0xc4,0xbd,0x47,0xf9,0x46,0xd4,0xd9,0x58,0x81,0x91,0x63, + 0x89,0x83,0x86,0x3e,0x21,0x95,0xf,0x6b,0x87,0x44,0xf7,0x89,0xce,0x3c,0x5f,0x5f, + 0x3e,0x7d,0x21,0x5a,0x0,0x64,0xf1,0xb7,0x2a,0xf9,0xea,0x6c,0xf,0x4b,0xc4,0xdf, + 0xba,0x64,0x4f,0xe2,0x88,0xbf,0x61,0x9b,0xd2,0x64,0x40,0xa2,0x7e,0x2,0xd,0xfe, + 0xbd,0x84,0x57,0x41,0x56,0xf5,0xc2,0x5,0x7c,0x3b,0x2c,0x6,0x4a,0x8b,0x7f,0xf7, + 0x4d,0xb3,0xfc,0xd4,0x5e,0xce,0x47,0x80,0xc3,0xb3,0xed,0xd0,0x53,0xf8,0xc4,0x57, + 0x18,0xda,0x81,0x6c,0xb,0xee,0x42,0x6,0x7b,0x12,0xa5,0xb4,0x34,0x9,0x30,0x67, + 0xcd,0x93,0x28,0xa1,0xa5,0x71,0x80,0x8a,0xe8,0x93,0x28,0xa6,0xa5,0x51,0x80,0x71, + 0x30,0x4f,0x84,0x4e,0x48,0x4a,0xc3,0x0,0x3d,0x2,0x4f,0x22,0xda,0x5a,0x15,0x80, + 0xc2,0xfe,0x24,0xac,0x48,0x59,0x19,0x94,0x58,0x56,0x92,0xb2,0x22,0x28,0xb0,0xac, + 0x20,0x65,0x79,0x90,0x63,0x59,0x4e,0xca,0xb2,0x20,0xc3,0xb2,0x8c,0x94,0xa5,0x1, + 0x8e,0x87,0x2e,0x97,0x60,0x29,0x1c,0x4d,0x48,0x47,0x3,0xdf,0x1a,0x94,0xb1,0xb1, + 0x4,0x38,0x92,0x90,0x8c,0xe4,0x89,0x28,0x89,0x70,0xfd,0x69,0xa1,0x20,0xb5,0xa, + 0xb3,0x2e,0x14,0x6d,0x58,0xa5,0x56,0x17,0x8a,0xce,0x8c,0xd8,0xe7,0x89,0xe8,0xb5, + 0x3d,0xc4,0xd3,0x85,0x62,0x78,0x39,0x16,0x92,0x11,0x3e,0x11,0xf3,0x50,0x60,0x21, + 0x99,0x8a,0x27,0x62,0xc2,0x4a,0x2c,0x24,0x73,0xf6,0x44,0xcc,0x6c,0x85,0x85,0x15, + 0xed,0xbc,0x58,0x3,0x5c,0x87,0x6d,0xba,0xe,0x4f,0x60,0xc1,0x70,0xd1,0xb6,0x23, + 0x36,0x54,0x31,0x26,0x5c,0x61,0xf1,0x27,0x6a,0x57,0xef,0x55,0x6a,0xaf,0xb6,0xef, + 0x2e,0xcc,0xcf,0xdd,0x95,0xf8,0x22,0x6b,0x2,0xdf,0xbd,0x68,0xaf,0x3e,0xd4,0x4b, + 0xfd,0xf3,0xac,0xbd,0xbd,0x18,0x6e,0xd6,0x3,0xd5,0xcf,0x7c,0x97,0x1b,0x7c,0x17, + 0xe4,0x6e,0xbb,0xab,0xd3,0xf6,0xa3,0xd0,0x9b,0x3f,0x72,0xb5,0x71,0xf7,0xaa,0xbe, + 0xb1,0x3f,0xd6,0x37,0xb5,0xbf,0x72,0x76,0x31,0xd0,0xf8,0x64,0x49,0xe1,0x63,0xfb, + 0x64,0x4a,0x18,0x81,0x7e,0x66,0xc7,0x26,0x7f,0xea,0xeb,0xc5,0xf9,0xcb,0xba,0xbf, + 0xe8,0x86,0x7e,0xa2,0x6a,0x75,0xe7,0x8f,0x90,0xc0,0x6f,0x8a,0xac,0xb3,0xdd,0x99, + 0x73,0xe6,0xe5,0x6a,0x64,0x3a,0xe8,0x47,0xe1,0xd5,0xdf,0x77,0xdd,0xa2,0xb5,0x3, + 0xc4,0x3c,0xea,0xef,0xea,0xfb,0x65,0xf3,0x68,0x12,0x5a,0xe8,0xef,0xb8,0xbc,0xa8, + 0x63,0x32,0xf,0xc0,0x2f,0x5f,0xed,0x6f,0x96,0xdd,0xf7,0xd6,0x53,0x2c,0x7e,0x9c, + 0xbf,0x3a,0xa2,0x78,0xbe,0x67,0xd7,0xad,0x7,0x5a,0x17,0xf9,0xbb,0xa0,0xaf,0x7b, + 0xd8,0xbc,0xaa,0xf8,0x9b,0xcd,0x9d,0x7a,0xa6,0x8a,0x6e,0x76,0x7d,0x23,0x85,0xa9, + 0xe7,0x70,0x9c,0xc7,0x3d,0xec,0x5e,0xf6,0x13,0x2d,0xbb,0xab,0x76,0xda,0xad,0x84, + 0xe5,0xd5,0x6d,0x5a,0x35,0xc,0xcb,0x3a,0x7f,0xb5,0xaa,0x2f,0x1a,0xd6,0xfa,0x7e, + 0xb3,0x84,0xfc,0xfb,0x6,0x6d,0xde,0xde,0xf5,0xdd,0xe5,0xcd,0xc3,0xc6,0xcb,0xd7, + 0xad,0xb0,0xd5,0x97,0x80,0xa7,0x7d,0xdf,0xbb,0x62,0x22,0x85,0x3d,0x7f,0x45,0xcf, + 0x43,0xa4,0x61,0x7f,0xd2,0xa9,0x39,0x5c,0xb5,0xf0,0x7d,0xce,0xaf,0xeb,0x8b,0x7a, + 0x6d,0x7e,0xdd,0xcc,0xc5,0xcf,0x2b,0x3,0x7f,0xd3,0x2d,0x6e,0x4,0x7b,0xcb,0x1f, + 0x7b,0xf5,0xe2,0x72,0x58,0xaf,0x6b,0x3,0x9d,0xcd,0xeb,0xe5,0xf5,0xbc,0x56,0xbf, + 0xf6,0xe6,0xdd,0xf2,0xfa,0xbb,0x76,0x79,0x3d,0x9,0x1f,0x96,0xd7,0x37,0x14,0xbe, + 0x3f,0xaf,0x6f,0x54,0xdd,0xfb,0xf5,0xe5,0xe5,0x54,0xc5,0xf0,0xd1,0xc8,0xd1,0xe1, + 0xcf,0xaf,0xfa,0xe1,0xf6,0x3b,0xdd,0xbf,0x1a,0x6,0xd0,0xdb,0xfe,0xd6,0xeb,0xf9, + 0xad,0x18,0xf6,0x60,0x7e,0xe2,0x2f,0x3,0x3f,0x14,0x6a,0xc1,0x60,0xff,0xd9,0x19, + 0xc0,0x37,0xa2,0xc1,0x6e,0x29,0xff,0x7d,0xa,0xff,0xee,0x6c,0x83,0x2f,0xbb,0xf3, + 0xbd,0x79,0x7b,0x7e,0xd8,0x2e,0xe7,0xaa,0x7b,0x35,0xbc,0xfd,0x65,0xe0,0xaf,0x9b, + 0x7e,0x10,0x9b,0x72,0x73,0x2b,0x7f,0x9e,0x35,0x8b,0xf3,0xdd,0x8f,0xed,0x47,0x3, + 0x3f,0x9b,0xb7,0xb7,0x77,0xf3,0xc1,0xfe,0xb8,0xa0,0x1d,0xba,0x81,0x64,0x88,0xbd, + 0x1a,0xda,0x7,0x31,0x45,0xe7,0x27,0xa2,0xcb,0x35,0x99,0xa6,0xaf,0x16,0x75,0xbd, + 0xbc,0xa8,0xc5,0x3a,0xf4,0xa6,0x60,0x29,0xec,0xf0,0x75,0x27,0x7,0xae,0x1d,0x37, + 0x7,0x75,0xdf,0x35,0xf4,0x67,0x23,0x7e,0xe3,0x9e,0x3e,0xf4,0xdd,0x5d,0xf3,0xf4, + 0x78,0xb5,0xe8,0x2c,0xf8,0xb5,0xa8,0xe3,0x10,0xfc,0xda,0x58,0xc7,0xb0,0x5a,0xb, + 0xf9,0x4,0x63,0xbb,0xbf,0x5a,0x36,0xf7,0xa4,0x60,0x57,0xaa,0x25,0x1b,0x30,0xf6, + 0x44,0xef,0xc0,0x7f,0xc0,0xd1,0xde,0x8a,0xef,0xe2,0xfc,0x65,0xf7,0xa9,0xa1,0x65, + 0x2f,0x5f,0x3d,0x50,0xd7,0xd1,0xec,0x1d,0xc7,0xd8,0xaf,0xfb,0x4f,0xc0,0xe9,0x16, + 0x43,0x7c,0x1,0x73,0x8e,0xf3,0xac,0x6f,0x57,0x17,0xf5,0x92,0xb6,0xf4,0xe5,0x20, + 0xb4,0x9f,0x15,0x7c,0x1,0x1c,0x75,0xf7,0xaa,0x59,0xd4,0x42,0xc1,0xa5,0x7d,0x80, + 0xcf,0x82,0x63,0xbd,0x14,0x1f,0x74,0xbf,0x26,0x5,0x67,0xf5,0x4a,0x30,0x52,0xeb, + 0xc,0xf1,0xb0,0x59,0x80,0x34,0x67,0xd,0x7f,0xdd,0x5e,0x8a,0x75,0x71,0x31,0x4f, + 0x1a,0xd1,0x69,0xf2,0xfb,0x5d,0xb3,0x5a,0xbb,0x63,0xe8,0x6e,0x9a,0xe5,0xf9,0x4b, + 0x21,0xe2,0x48,0xe9,0x37,0x20,0x8a,0xc4,0xf8,0x97,0x4c,0x92,0x11,0x29,0x25,0xfe, + 0xfa,0xdc,0x2e,0x9e,0xba,0xe2,0x49,0x87,0xb5,0x2a,0xf0,0x7e,0xa3,0xa,0x28,0x8e, + 0x8d,0x5f,0x53,0x58,0x70,0x30,0x4b,0x11,0x54,0xcc,0x94,0x82,0x9a,0x2e,0x2b,0xa8, + 0x7e,0x67,0x56,0xac,0xbe,0xd8,0x80,0x9e,0x6a,0xbe,0xa2,0x28,0xe6,0x1d,0x2d,0x85, + 0xb3,0x27,0x44,0x66,0xcf,0x5,0xae,0x16,0xca,0xa,0x43,0x9e,0xd,0x2f,0x29,0x86, + 0x79,0xd8,0x45,0xa1,0x1c,0x76,0x70,0xb0,0xde,0x32,0x1c,0xf3,0x2e,0xba,0xc2,0x39, + 0x6a,0x3e,0xbd,0x17,0x68,0x57,0x66,0xfd,0xb5,0x9c,0x34,0x6f,0x9c,0x28,0x44,0x25, + 0x2e,0xd9,0xe4,0xca,0x87,0x91,0x14,0xc2,0xac,0x5e,0x9,0x1,0x78,0x39,0x6f,0x3e, + 0xd5,0xac,0x45,0x92,0x9d,0x5f,0x61,0x7e,0x33,0xdc,0x74,0xbc,0x53,0x3a,0x50,0x42, + 0x8,0x8f,0x45,0x23,0xf6,0x9,0xd8,0x2f,0xc4,0xc,0xc8,0x9,0x70,0x4e,0xc3,0x25, + 0x8e,0xfc,0xf1,0x6a,0xe5,0xf6,0x5b,0xe5,0x4f,0xdb,0x1b,0x2e,0xa8,0x2e,0xb5,0x7, + 0xba,0x56,0xf0,0xfc,0xfa,0xfe,0x6e,0x4d,0xbe,0xf2,0xfd,0xe1,0x62,0x21,0x3e,0x98, + 0xe7,0x6d,0x4f,0xbf,0xfd,0xb7,0x9d,0xd8,0xf,0x97,0xfa,0xd7,0xb3,0x66,0xf1,0x5e, + 0x2d,0xb6,0x2a,0x11,0xed,0xaf,0xc4,0xb0,0x7,0xfd,0xfb,0xac,0xed,0xeb,0x95,0xd8, + 0xf2,0xc7,0x55,0xbc,0x78,0xe6,0x2b,0xdb,0x36,0xed,0x59,0xf3,0x85,0x1b,0x14,0x23, + 0xb3,0x3,0xad,0xb,0xfa,0x9b,0x1a,0x2c,0x4a,0xf0,0xa,0x69,0xf8,0x46,0xfc,0x11, + 0xc0,0xbf,0xc4,0xf4,0x5e,0x33,0x79,0x77,0xda,0xdc,0xdf,0x7c,0xa8,0xe1,0xe9,0x85, + 0x57,0x97,0x8d,0x99,0x32,0x29,0x82,0xe7,0xe2,0xf3,0x8,0x5e,0xf5,0xb5,0x4f,0x4a, + 0xbf,0x5a,0xf5,0x35,0xdf,0x78,0x75,0xb2,0x24,0xf5,0xb7,0xad,0xa7,0xbb,0xb9,0xef, + 0x44,0xe9,0x5d,0xcd,0x36,0xd7,0x37,0x9f,0xea,0xf,0xa2,0x26,0x31,0xcb,0xe6,0x5f, + 0x64,0x59,0xce,0xfa,0x16,0x74,0xa5,0xe0,0x6d,0x7b,0x71,0xef,0x55,0xde,0x64,0xce, + 0xf7,0xa7,0xcf,0x4,0x29,0x8,0xb3,0x86,0x7f,0x73,0x2a,0x2b,0x35,0x41,0x9a,0x71, + 0x85,0x91,0xa6,0x8c,0x57,0x58,0x2f,0x9a,0x65,0xd3,0x73,0xbe,0x32,0xa,0xc0,0xd1, + 0xb7,0xb4,0x78,0x6f,0x2e,0x76,0xc8,0xfa,0x56,0x94,0x6e,0xef,0xbd,0xdc,0x65,0x8e, + 0x71,0xa5,0x7d,0x1c,0x9,0x5e,0xfb,0x60,0x37,0x46,0xb3,0x15,0x9f,0x9c,0xee,0xd1, + 0x8a,0xc4,0x8a,0x74,0xb,0x61,0x76,0x9a,0x2,0xfc,0x0,0xd7,0x1d,0x9b,0xa8,0x13, + 0x51,0x76,0xd7,0xd0,0xdf,0x42,0x8f,0x6c,0x18,0x86,0xf8,0x40,0xce,0xe1,0xf,0x53, + 0x32,0xab,0x6f,0xbb,0x9a,0x77,0x79,0x18,0x6e,0xcc,0xaf,0xb3,0x7e,0xb8,0x99,0x86, + 0x7e,0x53,0xdf,0x11,0xee,0x7c,0x57,0xb,0x63,0xf9,0x53,0x20,0x34,0x1e,0xc5,0x1c, + 0x9a,0x6b,0xc5,0x76,0x21,0xb8,0x16,0x74,0xa9,0xe1,0x5a,0xc9,0x23,0x5c,0xee,0xba, + 0x85,0xde,0x9e,0x1e,0xef,0xd9,0xe1,0x37,0xdd,0xb0,0x10,0x25,0x6f,0x6c,0x89,0xd0, + 0x60,0x84,0x32,0xdc,0x37,0x81,0xf9,0x17,0xa9,0xfa,0xd5,0x6a,0x2d,0x76,0x43,0x41, + 0x2,0xc9,0x81,0x9a,0x7b,0x63,0xa8,0xb,0x1b,0x5f,0xd9,0xf7,0xf6,0x1c,0xe1,0x52, + 0xc8,0x8f,0xfa,0xba,0x9,0xbe,0x9a,0x3d,0xdd,0x5d,0x80,0x9c,0x19,0x59,0x31,0x8, + 0x69,0x6,0x21,0x46,0x98,0x64,0x39,0x99,0x77,0xcd,0xb2,0xfd,0x1e,0xc1,0x7d,0xfb, + 0xb9,0xe3,0xbb,0x83,0xf8,0x94,0x2f,0x61,0x42,0x5,0xd4,0x23,0x70,0xbd,0xaa,0xbe, + 0x40,0x5,0xd1,0xb3,0xad,0xa,0xd9,0x4e,0xd2,0x7c,0x3a,0xff,0xa6,0xeb,0x6f,0x34, + 0x8e,0x92,0xce,0x23,0x36,0x10,0xe0,0x97,0xf5,0xa7,0xba,0x6d,0x27,0x35,0x7f,0x81, + 0xa1,0x7e,0x6f,0xcf,0x84,0x2a,0x73,0xd3,0x70,0xe6,0x5b,0xf7,0x5d,0xbb,0x6,0xa4, + 0x43,0x21,0x2,0xda,0x6b,0x3e,0x62,0xc5,0x9b,0x0,0xf5,0x88,0xff,0xb7,0x60,0xb2, + 0x2d,0xaf,0x9b,0x45,0x83,0x43,0x21,0x42,0x7d,0xcc,0x66,0x2,0x6e,0x38,0x4c,0xbb, + 0x50,0xc0,0x17,0x43,0x7f,0x32,0x37,0x8b,0x5c,0xd7,0xc3,0x6e,0x25,0x36,0xe2,0xe0, + 0xdd,0xf6,0xec,0x2b,0x8a,0xaa,0x1d,0x2f,0x9b,0x7b,0xb2,0x2d,0x26,0x51,0x98,0xce, + 0x7,0x35,0xa8,0x6,0xe6,0x91,0x9b,0xad,0xff,0x1f,0x66,0x11,0x55,0x92, + // /home/konrad/src/smoke/tzone/zoneinfo/GB-Eire 0x0,0x0,0xe,0x67, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, @@ -5460,456 +5940,8 @@ static const unsigned char qt_resource_data[] = { 0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0xa,0x47,0x4d,0x54, 0x30,0x42,0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2f,0x31,0x2c,0x4d,0x31, 0x30,0x2e,0x35,0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/db/version.txt - 0x0,0x0,0x0,0x6, - 0x32, - 0x30,0x31,0x36,0x6a,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/EET - 0x0,0x0,0x7,0x54, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x7a,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x9,0xd,0xa4,0x63,0x90,0xe, - 0x8b,0x1a,0x10,0xf,0x84,0x45,0x90,0x10,0x74,0x36,0x90,0x11,0x64,0x27,0x90,0x12, - 0x54,0x18,0x90,0x13,0x4d,0x44,0x10,0x14,0x33,0xfa,0x90,0x15,0x23,0xeb,0x90,0x16, - 0x13,0xdc,0x90,0x17,0x3,0xcd,0x90,0x17,0xf3,0xbe,0x90,0x18,0xe3,0xaf,0x90,0x19, - 0xd3,0xa0,0x90,0x1a,0xc3,0x91,0x90,0x1b,0xbc,0xbd,0x10,0x1c,0xac,0xae,0x10,0x1d, - 0x9c,0x9f,0x10,0x1e,0x8c,0x90,0x10,0x1f,0x7c,0x81,0x10,0x20,0x6c,0x72,0x10,0x21, - 0x5c,0x63,0x10,0x22,0x4c,0x54,0x10,0x23,0x3c,0x45,0x10,0x24,0x2c,0x36,0x10,0x25, - 0x1c,0x27,0x10,0x26,0xc,0x18,0x10,0x27,0x5,0x43,0x90,0x27,0xf5,0x34,0x90,0x28, - 0xe5,0x25,0x90,0x29,0xd5,0x16,0x90,0x2a,0xc5,0x7,0x90,0x2b,0xb4,0xf8,0x90,0x2c, - 0xa4,0xe9,0x90,0x2d,0x94,0xda,0x90,0x2e,0x84,0xcb,0x90,0x2f,0x74,0xbc,0x90,0x30, - 0x64,0xad,0x90,0x31,0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34, - 0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38, - 0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b, - 0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f, - 0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43, - 0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47, - 0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a, - 0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e, - 0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52, - 0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56, - 0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59, - 0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d, - 0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61, - 0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65, - 0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68, - 0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c, - 0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70, - 0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74, - 0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78, - 0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b, - 0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f, - 0x8e,0x7f,0x90,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0, - 0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0, - 0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0, - 0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0, - 0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0, - 0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0, - 0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0, - 0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x0,0x2a, - 0x30,0x1,0x0,0x0,0x0,0x1c,0x20,0x0,0x5,0x45,0x45,0x53,0x54,0x0,0x45,0x45, - 0x54,0x0,0x1,0x1,0x1,0x1,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0, - 0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7a,0x0,0x0,0x0,0x2,0x0,0x0, - 0x0,0x9,0x0,0x0,0x0,0x0,0xd,0xa4,0x63,0x90,0x0,0x0,0x0,0x0,0xe,0x8b, - 0x1a,0x10,0x0,0x0,0x0,0x0,0xf,0x84,0x45,0x90,0x0,0x0,0x0,0x0,0x10,0x74, - 0x36,0x90,0x0,0x0,0x0,0x0,0x11,0x64,0x27,0x90,0x0,0x0,0x0,0x0,0x12,0x54, - 0x18,0x90,0x0,0x0,0x0,0x0,0x13,0x4d,0x44,0x10,0x0,0x0,0x0,0x0,0x14,0x33, - 0xfa,0x90,0x0,0x0,0x0,0x0,0x15,0x23,0xeb,0x90,0x0,0x0,0x0,0x0,0x16,0x13, - 0xdc,0x90,0x0,0x0,0x0,0x0,0x17,0x3,0xcd,0x90,0x0,0x0,0x0,0x0,0x17,0xf3, - 0xbe,0x90,0x0,0x0,0x0,0x0,0x18,0xe3,0xaf,0x90,0x0,0x0,0x0,0x0,0x19,0xd3, - 0xa0,0x90,0x0,0x0,0x0,0x0,0x1a,0xc3,0x91,0x90,0x0,0x0,0x0,0x0,0x1b,0xbc, - 0xbd,0x10,0x0,0x0,0x0,0x0,0x1c,0xac,0xae,0x10,0x0,0x0,0x0,0x0,0x1d,0x9c, - 0x9f,0x10,0x0,0x0,0x0,0x0,0x1e,0x8c,0x90,0x10,0x0,0x0,0x0,0x0,0x1f,0x7c, - 0x81,0x10,0x0,0x0,0x0,0x0,0x20,0x6c,0x72,0x10,0x0,0x0,0x0,0x0,0x21,0x5c, - 0x63,0x10,0x0,0x0,0x0,0x0,0x22,0x4c,0x54,0x10,0x0,0x0,0x0,0x0,0x23,0x3c, - 0x45,0x10,0x0,0x0,0x0,0x0,0x24,0x2c,0x36,0x10,0x0,0x0,0x0,0x0,0x25,0x1c, - 0x27,0x10,0x0,0x0,0x0,0x0,0x26,0xc,0x18,0x10,0x0,0x0,0x0,0x0,0x27,0x5, - 0x43,0x90,0x0,0x0,0x0,0x0,0x27,0xf5,0x34,0x90,0x0,0x0,0x0,0x0,0x28,0xe5, - 0x25,0x90,0x0,0x0,0x0,0x0,0x29,0xd5,0x16,0x90,0x0,0x0,0x0,0x0,0x2a,0xc5, - 0x7,0x90,0x0,0x0,0x0,0x0,0x2b,0xb4,0xf8,0x90,0x0,0x0,0x0,0x0,0x2c,0xa4, - 0xe9,0x90,0x0,0x0,0x0,0x0,0x2d,0x94,0xda,0x90,0x0,0x0,0x0,0x0,0x2e,0x84, - 0xcb,0x90,0x0,0x0,0x0,0x0,0x2f,0x74,0xbc,0x90,0x0,0x0,0x0,0x0,0x30,0x64, - 0xad,0x90,0x0,0x0,0x0,0x0,0x31,0x5d,0xd9,0x10,0x0,0x0,0x0,0x0,0x32,0x72, - 0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d,0xbb,0x10,0x0,0x0,0x0,0x0,0x34,0x52, - 0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d,0x9d,0x10,0x0,0x0,0x0,0x0,0x36,0x32, - 0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd,0x7f,0x10,0x0,0x0,0x0,0x0,0x38,0x1b, - 0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd,0x61,0x10,0x0,0x0,0x0,0x0,0x39,0xfb, - 0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd,0x43,0x10,0x0,0x0,0x0,0x0,0x3b,0xdb, - 0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb, - 0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86,0x41,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b, - 0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66,0x23,0x90,0x0,0x0,0x0,0x0,0x41,0x84, - 0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46,0x5,0x90,0x0,0x0,0x0,0x0,0x43,0x64, - 0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25,0xe7,0x90,0x0,0x0,0x0,0x0,0x45,0x43, - 0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5,0xc9,0x90,0x0,0x0,0x0,0x0,0x47,0x23, - 0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee,0xe6,0x10,0x0,0x0,0x0,0x0,0x49,0x3, - 0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce,0xc8,0x10,0x0,0x0,0x0,0x0,0x4a,0xe3, - 0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae,0xaa,0x10,0x0,0x0,0x0,0x0,0x4c,0xcc, - 0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c,0x10,0x0,0x0,0x0,0x0,0x4e,0xac, - 0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e,0x10,0x0,0x0,0x0,0x0,0x50,0x8c, - 0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57,0x8a,0x90,0x0,0x0,0x0,0x0,0x52,0x6c, - 0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37,0x6c,0x90,0x0,0x0,0x0,0x0,0x54,0x4c, - 0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17,0x4e,0x90,0x0,0x0,0x0,0x0,0x56,0x2c, - 0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7,0x30,0x90,0x0,0x0,0x0,0x0,0x58,0x15, - 0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7,0x12,0x90,0x0,0x0,0x0,0x0,0x59,0xf5, - 0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4,0x90,0x0,0x0,0x0,0x0,0x5b,0xd5, - 0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0,0x11,0x10,0x0,0x0,0x0,0x0,0x5d,0xb4, - 0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3,0x10,0x0,0x0,0x0,0x0,0x5f,0x94, - 0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f,0xd5,0x10,0x0,0x0,0x0,0x0,0x61,0x7d, - 0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f,0xb7,0x10,0x0,0x0,0x0,0x0,0x63,0x5d, - 0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f,0x99,0x10,0x0,0x0,0x0,0x0,0x65,0x3d, - 0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8,0xb5,0x90,0x0,0x0,0x0,0x0,0x67,0x1d, - 0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8,0x97,0x90,0x0,0x0,0x0,0x0,0x68,0xfd, - 0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8,0x79,0x90,0x0,0x0,0x0,0x0,0x6a,0xdd, - 0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b,0x90,0x0,0x0,0x0,0x0,0x6c,0xc6, - 0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88,0x3d,0x90,0x0,0x0,0x0,0x0,0x6e,0xa6, - 0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68,0x1f,0x90,0x0,0x0,0x0,0x0,0x70,0x86, - 0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51,0x3c,0x10,0x0,0x0,0x0,0x0,0x72,0x66, - 0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31,0x1e,0x10,0x0,0x0,0x0,0x0,0x74,0x45, - 0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11,0x0,0x10,0x0,0x0,0x0,0x0,0x76,0x2f, - 0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0,0xe2,0x10,0x0,0x0,0x0,0x0,0x78,0xe, - 0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0,0xc4,0x10,0x0,0x0,0x0,0x0,0x79,0xee, - 0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6,0x10,0x0,0x0,0x0,0x0,0x7b,0xce, - 0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99,0xc2,0x90,0x0,0x0,0x0,0x0,0x7d,0xae, - 0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79,0xa4,0x90,0x0,0x0,0x0,0x0,0x7f,0x8e, - 0x7f,0x90,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1, - 0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1, - 0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1, - 0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1, - 0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1, - 0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1, - 0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1, - 0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x0,0x2a,0x30, - 0x1,0x0,0x0,0x0,0x1c,0x20,0x0,0x5,0x45,0x45,0x53,0x54,0x0,0x45,0x45,0x54, - 0x0,0x1,0x1,0x1,0x1,0xa,0x45,0x45,0x54,0x2d,0x32,0x45,0x45,0x53,0x54,0x2c, - 0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2f,0x33,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30, - 0x2f,0x34,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/CST6CDT - 0x0,0x0,0x8,0xf6, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x95,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x10,0x9e,0xa6,0x2c,0x80,0x9f, - 0xba,0xf9,0x70,0xa0,0x86,0xe,0x80,0xa1,0x9a,0xdb,0x70,0xcb,0x88,0xfe,0x80,0xd2, - 0x23,0xf4,0x70,0xd2,0x61,0x9,0xf0,0xfa,0xf8,0x67,0x0,0xfb,0xe8,0x49,0xf0,0xfc, - 0xd8,0x49,0x0,0xfd,0xc8,0x2b,0xf0,0xfe,0xb8,0x2b,0x0,0xff,0xa8,0xd,0xf0,0x0, - 0x98,0xd,0x0,0x1,0x87,0xef,0xf0,0x2,0x77,0xef,0x0,0x3,0x71,0xc,0x70,0x4, - 0x61,0xb,0x80,0x5,0x50,0xee,0x70,0x6,0x40,0xed,0x80,0x7,0x30,0xd0,0x70,0x7, - 0x8d,0x27,0x80,0x9,0x10,0xb2,0x70,0x9,0xad,0xa3,0x0,0xa,0xf0,0x94,0x70,0xb, - 0xe0,0x93,0x80,0xc,0xd9,0xb0,0xf0,0xd,0xc0,0x75,0x80,0xe,0xb9,0x92,0xf0,0xf, - 0xa9,0x92,0x0,0x10,0x99,0x74,0xf0,0x11,0x89,0x74,0x0,0x12,0x79,0x56,0xf0,0x13, - 0x69,0x56,0x0,0x14,0x59,0x38,0xf0,0x15,0x49,0x38,0x0,0x16,0x39,0x1a,0xf0,0x17, - 0x29,0x1a,0x0,0x18,0x22,0x37,0x70,0x19,0x8,0xfc,0x0,0x1a,0x2,0x19,0x70,0x1a, - 0xf2,0x18,0x80,0x1b,0xe1,0xfb,0x70,0x1c,0xd1,0xfa,0x80,0x1d,0xc1,0xdd,0x70,0x1e, - 0xb1,0xdc,0x80,0x1f,0xa1,0xbf,0x70,0x20,0x76,0xf,0x0,0x21,0x81,0xa1,0x70,0x22, - 0x55,0xf1,0x0,0x23,0x6a,0xbd,0xf0,0x24,0x35,0xd3,0x0,0x25,0x4a,0x9f,0xf0,0x26, - 0x15,0xb5,0x0,0x27,0x2a,0x81,0xf0,0x27,0xfe,0xd1,0x80,0x29,0xa,0x63,0xf0,0x29, - 0xde,0xb3,0x80,0x2a,0xea,0x45,0xf0,0x2b,0xbe,0x95,0x80,0x2c,0xd3,0x62,0x70,0x2d, - 0x9e,0x77,0x80,0x2e,0xb3,0x44,0x70,0x2f,0x7e,0x59,0x80,0x30,0x93,0x26,0x70,0x31, - 0x67,0x76,0x0,0x32,0x73,0x8,0x70,0x33,0x47,0x58,0x0,0x34,0x52,0xea,0x70,0x35, - 0x27,0x3a,0x0,0x36,0x32,0xcc,0x70,0x37,0x7,0x1c,0x0,0x38,0x1b,0xe8,0xf0,0x38, - 0xe6,0xfe,0x0,0x39,0xfb,0xca,0xf0,0x3a,0xc6,0xe0,0x0,0x3b,0xdb,0xac,0xf0,0x3c, - 0xaf,0xfc,0x80,0x3d,0xbb,0x8e,0xf0,0x3e,0x8f,0xde,0x80,0x3f,0x9b,0x70,0xf0,0x40, - 0x6f,0xc0,0x80,0x41,0x84,0x8d,0x70,0x42,0x4f,0xa2,0x80,0x43,0x64,0x6f,0x70,0x44, - 0x2f,0x84,0x80,0x45,0x44,0x51,0x70,0x45,0xf3,0xb7,0x0,0x47,0x2d,0x6d,0xf0,0x47, - 0xd3,0x99,0x0,0x49,0xd,0x4f,0xf0,0x49,0xb3,0x7b,0x0,0x4a,0xed,0x31,0xf0,0x4b, - 0x9c,0x97,0x80,0x4c,0xd6,0x4e,0x70,0x4d,0x7c,0x79,0x80,0x4e,0xb6,0x30,0x70,0x4f, - 0x5c,0x5b,0x80,0x50,0x96,0x12,0x70,0x51,0x3c,0x3d,0x80,0x52,0x75,0xf4,0x70,0x53, - 0x1c,0x1f,0x80,0x54,0x55,0xd6,0x70,0x54,0xfc,0x1,0x80,0x56,0x35,0xb8,0x70,0x56, - 0xe5,0x1e,0x0,0x58,0x1e,0xd4,0xf0,0x58,0xc5,0x0,0x0,0x59,0xfe,0xb6,0xf0,0x5a, - 0xa4,0xe2,0x0,0x5b,0xde,0x98,0xf0,0x5c,0x84,0xc4,0x0,0x5d,0xbe,0x7a,0xf0,0x5e, - 0x64,0xa6,0x0,0x5f,0x9e,0x5c,0xf0,0x60,0x4d,0xc2,0x80,0x61,0x87,0x79,0x70,0x62, - 0x2d,0xa4,0x80,0x63,0x67,0x5b,0x70,0x64,0xd,0x86,0x80,0x65,0x47,0x3d,0x70,0x65, - 0xed,0x68,0x80,0x67,0x27,0x1f,0x70,0x67,0xcd,0x4a,0x80,0x69,0x7,0x1,0x70,0x69, - 0xad,0x2c,0x80,0x6a,0xe6,0xe3,0x70,0x6b,0x96,0x49,0x0,0x6c,0xcf,0xff,0xf0,0x6d, - 0x76,0x2b,0x0,0x6e,0xaf,0xe1,0xf0,0x6f,0x56,0xd,0x0,0x70,0x8f,0xc3,0xf0,0x71, - 0x35,0xef,0x0,0x72,0x6f,0xa5,0xf0,0x73,0x15,0xd1,0x0,0x74,0x4f,0x87,0xf0,0x74, - 0xfe,0xed,0x80,0x76,0x38,0xa4,0x70,0x76,0xde,0xcf,0x80,0x78,0x18,0x86,0x70,0x78, - 0xbe,0xb1,0x80,0x79,0xf8,0x68,0x70,0x7a,0x9e,0x93,0x80,0x7b,0xd8,0x4a,0x70,0x7c, - 0x7e,0x75,0x80,0x7d,0xb8,0x2c,0x70,0x7e,0x5e,0x57,0x80,0x7f,0x98,0xe,0x70,0x0, - 0x1,0x0,0x1,0x2,0x3,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1, - 0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1, - 0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1, - 0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1, - 0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1, - 0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1, - 0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1, - 0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1, - 0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1, - 0x0,0x1,0x0,0x1,0xff,0xff,0xb9,0xb0,0x1,0x0,0xff,0xff,0xab,0xa0,0x0,0x4, - 0xff,0xff,0xb9,0xb0,0x1,0x8,0xff,0xff,0xb9,0xb0,0x1,0xc,0x43,0x44,0x54,0x0, - 0x43,0x53,0x54,0x0,0x43,0x57,0x54,0x0,0x43,0x50,0x54,0x0,0x0,0x0,0x0,0x1, - 0x0,0x0,0x0,0x1,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x95,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x10, - 0xff,0xff,0xff,0xff,0x9e,0xa6,0x2c,0x80,0xff,0xff,0xff,0xff,0x9f,0xba,0xf9,0x70, - 0xff,0xff,0xff,0xff,0xa0,0x86,0xe,0x80,0xff,0xff,0xff,0xff,0xa1,0x9a,0xdb,0x70, - 0xff,0xff,0xff,0xff,0xcb,0x88,0xfe,0x80,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70, - 0xff,0xff,0xff,0xff,0xd2,0x61,0x9,0xf0,0xff,0xff,0xff,0xff,0xfa,0xf8,0x67,0x0, - 0xff,0xff,0xff,0xff,0xfb,0xe8,0x49,0xf0,0xff,0xff,0xff,0xff,0xfc,0xd8,0x49,0x0, - 0xff,0xff,0xff,0xff,0xfd,0xc8,0x2b,0xf0,0xff,0xff,0xff,0xff,0xfe,0xb8,0x2b,0x0, - 0xff,0xff,0xff,0xff,0xff,0xa8,0xd,0xf0,0x0,0x0,0x0,0x0,0x0,0x98,0xd,0x0, - 0x0,0x0,0x0,0x0,0x1,0x87,0xef,0xf0,0x0,0x0,0x0,0x0,0x2,0x77,0xef,0x0, - 0x0,0x0,0x0,0x0,0x3,0x71,0xc,0x70,0x0,0x0,0x0,0x0,0x4,0x61,0xb,0x80, - 0x0,0x0,0x0,0x0,0x5,0x50,0xee,0x70,0x0,0x0,0x0,0x0,0x6,0x40,0xed,0x80, - 0x0,0x0,0x0,0x0,0x7,0x30,0xd0,0x70,0x0,0x0,0x0,0x0,0x7,0x8d,0x27,0x80, - 0x0,0x0,0x0,0x0,0x9,0x10,0xb2,0x70,0x0,0x0,0x0,0x0,0x9,0xad,0xa3,0x0, - 0x0,0x0,0x0,0x0,0xa,0xf0,0x94,0x70,0x0,0x0,0x0,0x0,0xb,0xe0,0x93,0x80, - 0x0,0x0,0x0,0x0,0xc,0xd9,0xb0,0xf0,0x0,0x0,0x0,0x0,0xd,0xc0,0x75,0x80, - 0x0,0x0,0x0,0x0,0xe,0xb9,0x92,0xf0,0x0,0x0,0x0,0x0,0xf,0xa9,0x92,0x0, - 0x0,0x0,0x0,0x0,0x10,0x99,0x74,0xf0,0x0,0x0,0x0,0x0,0x11,0x89,0x74,0x0, - 0x0,0x0,0x0,0x0,0x12,0x79,0x56,0xf0,0x0,0x0,0x0,0x0,0x13,0x69,0x56,0x0, - 0x0,0x0,0x0,0x0,0x14,0x59,0x38,0xf0,0x0,0x0,0x0,0x0,0x15,0x49,0x38,0x0, - 0x0,0x0,0x0,0x0,0x16,0x39,0x1a,0xf0,0x0,0x0,0x0,0x0,0x17,0x29,0x1a,0x0, - 0x0,0x0,0x0,0x0,0x18,0x22,0x37,0x70,0x0,0x0,0x0,0x0,0x19,0x8,0xfc,0x0, - 0x0,0x0,0x0,0x0,0x1a,0x2,0x19,0x70,0x0,0x0,0x0,0x0,0x1a,0xf2,0x18,0x80, - 0x0,0x0,0x0,0x0,0x1b,0xe1,0xfb,0x70,0x0,0x0,0x0,0x0,0x1c,0xd1,0xfa,0x80, - 0x0,0x0,0x0,0x0,0x1d,0xc1,0xdd,0x70,0x0,0x0,0x0,0x0,0x1e,0xb1,0xdc,0x80, - 0x0,0x0,0x0,0x0,0x1f,0xa1,0xbf,0x70,0x0,0x0,0x0,0x0,0x20,0x76,0xf,0x0, - 0x0,0x0,0x0,0x0,0x21,0x81,0xa1,0x70,0x0,0x0,0x0,0x0,0x22,0x55,0xf1,0x0, - 0x0,0x0,0x0,0x0,0x23,0x6a,0xbd,0xf0,0x0,0x0,0x0,0x0,0x24,0x35,0xd3,0x0, - 0x0,0x0,0x0,0x0,0x25,0x4a,0x9f,0xf0,0x0,0x0,0x0,0x0,0x26,0x15,0xb5,0x0, - 0x0,0x0,0x0,0x0,0x27,0x2a,0x81,0xf0,0x0,0x0,0x0,0x0,0x27,0xfe,0xd1,0x80, - 0x0,0x0,0x0,0x0,0x29,0xa,0x63,0xf0,0x0,0x0,0x0,0x0,0x29,0xde,0xb3,0x80, - 0x0,0x0,0x0,0x0,0x2a,0xea,0x45,0xf0,0x0,0x0,0x0,0x0,0x2b,0xbe,0x95,0x80, - 0x0,0x0,0x0,0x0,0x2c,0xd3,0x62,0x70,0x0,0x0,0x0,0x0,0x2d,0x9e,0x77,0x80, - 0x0,0x0,0x0,0x0,0x2e,0xb3,0x44,0x70,0x0,0x0,0x0,0x0,0x2f,0x7e,0x59,0x80, - 0x0,0x0,0x0,0x0,0x30,0x93,0x26,0x70,0x0,0x0,0x0,0x0,0x31,0x67,0x76,0x0, - 0x0,0x0,0x0,0x0,0x32,0x73,0x8,0x70,0x0,0x0,0x0,0x0,0x33,0x47,0x58,0x0, - 0x0,0x0,0x0,0x0,0x34,0x52,0xea,0x70,0x0,0x0,0x0,0x0,0x35,0x27,0x3a,0x0, - 0x0,0x0,0x0,0x0,0x36,0x32,0xcc,0x70,0x0,0x0,0x0,0x0,0x37,0x7,0x1c,0x0, - 0x0,0x0,0x0,0x0,0x38,0x1b,0xe8,0xf0,0x0,0x0,0x0,0x0,0x38,0xe6,0xfe,0x0, - 0x0,0x0,0x0,0x0,0x39,0xfb,0xca,0xf0,0x0,0x0,0x0,0x0,0x3a,0xc6,0xe0,0x0, - 0x0,0x0,0x0,0x0,0x3b,0xdb,0xac,0xf0,0x0,0x0,0x0,0x0,0x3c,0xaf,0xfc,0x80, - 0x0,0x0,0x0,0x0,0x3d,0xbb,0x8e,0xf0,0x0,0x0,0x0,0x0,0x3e,0x8f,0xde,0x80, - 0x0,0x0,0x0,0x0,0x3f,0x9b,0x70,0xf0,0x0,0x0,0x0,0x0,0x40,0x6f,0xc0,0x80, - 0x0,0x0,0x0,0x0,0x41,0x84,0x8d,0x70,0x0,0x0,0x0,0x0,0x42,0x4f,0xa2,0x80, - 0x0,0x0,0x0,0x0,0x43,0x64,0x6f,0x70,0x0,0x0,0x0,0x0,0x44,0x2f,0x84,0x80, - 0x0,0x0,0x0,0x0,0x45,0x44,0x51,0x70,0x0,0x0,0x0,0x0,0x45,0xf3,0xb7,0x0, - 0x0,0x0,0x0,0x0,0x47,0x2d,0x6d,0xf0,0x0,0x0,0x0,0x0,0x47,0xd3,0x99,0x0, - 0x0,0x0,0x0,0x0,0x49,0xd,0x4f,0xf0,0x0,0x0,0x0,0x0,0x49,0xb3,0x7b,0x0, - 0x0,0x0,0x0,0x0,0x4a,0xed,0x31,0xf0,0x0,0x0,0x0,0x0,0x4b,0x9c,0x97,0x80, - 0x0,0x0,0x0,0x0,0x4c,0xd6,0x4e,0x70,0x0,0x0,0x0,0x0,0x4d,0x7c,0x79,0x80, - 0x0,0x0,0x0,0x0,0x4e,0xb6,0x30,0x70,0x0,0x0,0x0,0x0,0x4f,0x5c,0x5b,0x80, - 0x0,0x0,0x0,0x0,0x50,0x96,0x12,0x70,0x0,0x0,0x0,0x0,0x51,0x3c,0x3d,0x80, - 0x0,0x0,0x0,0x0,0x52,0x75,0xf4,0x70,0x0,0x0,0x0,0x0,0x53,0x1c,0x1f,0x80, - 0x0,0x0,0x0,0x0,0x54,0x55,0xd6,0x70,0x0,0x0,0x0,0x0,0x54,0xfc,0x1,0x80, - 0x0,0x0,0x0,0x0,0x56,0x35,0xb8,0x70,0x0,0x0,0x0,0x0,0x56,0xe5,0x1e,0x0, - 0x0,0x0,0x0,0x0,0x58,0x1e,0xd4,0xf0,0x0,0x0,0x0,0x0,0x58,0xc5,0x0,0x0, - 0x0,0x0,0x0,0x0,0x59,0xfe,0xb6,0xf0,0x0,0x0,0x0,0x0,0x5a,0xa4,0xe2,0x0, - 0x0,0x0,0x0,0x0,0x5b,0xde,0x98,0xf0,0x0,0x0,0x0,0x0,0x5c,0x84,0xc4,0x0, - 0x0,0x0,0x0,0x0,0x5d,0xbe,0x7a,0xf0,0x0,0x0,0x0,0x0,0x5e,0x64,0xa6,0x0, - 0x0,0x0,0x0,0x0,0x5f,0x9e,0x5c,0xf0,0x0,0x0,0x0,0x0,0x60,0x4d,0xc2,0x80, - 0x0,0x0,0x0,0x0,0x61,0x87,0x79,0x70,0x0,0x0,0x0,0x0,0x62,0x2d,0xa4,0x80, - 0x0,0x0,0x0,0x0,0x63,0x67,0x5b,0x70,0x0,0x0,0x0,0x0,0x64,0xd,0x86,0x80, - 0x0,0x0,0x0,0x0,0x65,0x47,0x3d,0x70,0x0,0x0,0x0,0x0,0x65,0xed,0x68,0x80, - 0x0,0x0,0x0,0x0,0x67,0x27,0x1f,0x70,0x0,0x0,0x0,0x0,0x67,0xcd,0x4a,0x80, - 0x0,0x0,0x0,0x0,0x69,0x7,0x1,0x70,0x0,0x0,0x0,0x0,0x69,0xad,0x2c,0x80, - 0x0,0x0,0x0,0x0,0x6a,0xe6,0xe3,0x70,0x0,0x0,0x0,0x0,0x6b,0x96,0x49,0x0, - 0x0,0x0,0x0,0x0,0x6c,0xcf,0xff,0xf0,0x0,0x0,0x0,0x0,0x6d,0x76,0x2b,0x0, - 0x0,0x0,0x0,0x0,0x6e,0xaf,0xe1,0xf0,0x0,0x0,0x0,0x0,0x6f,0x56,0xd,0x0, - 0x0,0x0,0x0,0x0,0x70,0x8f,0xc3,0xf0,0x0,0x0,0x0,0x0,0x71,0x35,0xef,0x0, - 0x0,0x0,0x0,0x0,0x72,0x6f,0xa5,0xf0,0x0,0x0,0x0,0x0,0x73,0x15,0xd1,0x0, - 0x0,0x0,0x0,0x0,0x74,0x4f,0x87,0xf0,0x0,0x0,0x0,0x0,0x74,0xfe,0xed,0x80, - 0x0,0x0,0x0,0x0,0x76,0x38,0xa4,0x70,0x0,0x0,0x0,0x0,0x76,0xde,0xcf,0x80, - 0x0,0x0,0x0,0x0,0x78,0x18,0x86,0x70,0x0,0x0,0x0,0x0,0x78,0xbe,0xb1,0x80, - 0x0,0x0,0x0,0x0,0x79,0xf8,0x68,0x70,0x0,0x0,0x0,0x0,0x7a,0x9e,0x93,0x80, - 0x0,0x0,0x0,0x0,0x7b,0xd8,0x4a,0x70,0x0,0x0,0x0,0x0,0x7c,0x7e,0x75,0x80, - 0x0,0x0,0x0,0x0,0x7d,0xb8,0x2c,0x70,0x0,0x0,0x0,0x0,0x7e,0x5e,0x57,0x80, - 0x0,0x0,0x0,0x0,0x7f,0x98,0xe,0x70,0x0,0x1,0x0,0x1,0x2,0x3,0x1,0x0, - 0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0, - 0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0, - 0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0, - 0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0, - 0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0, - 0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0, - 0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0, - 0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0, - 0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0xff,0xff,0xb9, - 0xb0,0x1,0x0,0xff,0xff,0xab,0xa0,0x0,0x4,0xff,0xff,0xb9,0xb0,0x1,0x8,0xff, - 0xff,0xb9,0xb0,0x1,0xc,0x43,0x44,0x54,0x0,0x43,0x53,0x54,0x0,0x43,0x57,0x54, - 0x0,0x43,0x50,0x54,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0xa,0x43,0x53, - 0x54,0x36,0x43,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31, - 0x2e,0x31,0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Kwajalein - 0x0,0x0,0x0,0xed, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x3,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0xff, - 0x86,0x1b,0x50,0x2c,0x74,0xbc,0xc0,0x1,0x2,0x3,0x0,0x0,0x9c,0xe0,0x0,0x0, - 0x0,0x0,0x9a,0xb0,0x0,0x4,0xff,0xff,0x57,0x40,0x0,0x8,0x0,0x0,0xa8,0xc0, - 0x0,0x4,0x4c,0x4d,0x54,0x0,0x4d,0x48,0x54,0x0,0x4b,0x57,0x41,0x54,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0, - 0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0, - 0x0,0x0,0xd,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x7e, - 0x36,0x18,0x20,0xff,0xff,0xff,0xff,0xff,0x86,0x1b,0x50,0x0,0x0,0x0,0x0,0x2c, - 0x74,0xbc,0xc0,0x0,0x1,0x2,0x3,0x0,0x0,0x9c,0xe0,0x0,0x0,0x0,0x0,0x9a, - 0xb0,0x0,0x4,0xff,0xff,0x57,0x40,0x0,0x8,0x0,0x0,0xa8,0xc0,0x0,0x4,0x4c, - 0x4d,0x54,0x0,0x4d,0x48,0x54,0x0,0x4b,0x57,0x41,0x54,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0xa,0x4d,0x48,0x54,0x2d,0x31,0x32,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/localtime - 0x0,0x0,0x0,0x7f, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, - 0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0, - 0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0, - 0x0,0x0,0x4,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0xa,0x47,0x4d,0x54,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/PST8PDT - 0x0,0x0,0x8,0xf6, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x95,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x10,0x9e,0xa6,0x48,0xa0,0x9f, - 0xbb,0x15,0x90,0xa0,0x86,0x2a,0xa0,0xa1,0x9a,0xf7,0x90,0xcb,0x89,0x1a,0xa0,0xd2, - 0x23,0xf4,0x70,0xd2,0x61,0x26,0x10,0xfa,0xf8,0x83,0x20,0xfb,0xe8,0x66,0x10,0xfc, - 0xd8,0x65,0x20,0xfd,0xc8,0x48,0x10,0xfe,0xb8,0x47,0x20,0xff,0xa8,0x2a,0x10,0x0, - 0x98,0x29,0x20,0x1,0x88,0xc,0x10,0x2,0x78,0xb,0x20,0x3,0x71,0x28,0x90,0x4, - 0x61,0x27,0xa0,0x5,0x51,0xa,0x90,0x6,0x41,0x9,0xa0,0x7,0x30,0xec,0x90,0x7, - 0x8d,0x43,0xa0,0x9,0x10,0xce,0x90,0x9,0xad,0xbf,0x20,0xa,0xf0,0xb0,0x90,0xb, - 0xe0,0xaf,0xa0,0xc,0xd9,0xcd,0x10,0xd,0xc0,0x91,0xa0,0xe,0xb9,0xaf,0x10,0xf, - 0xa9,0xae,0x20,0x10,0x99,0x91,0x10,0x11,0x89,0x90,0x20,0x12,0x79,0x73,0x10,0x13, - 0x69,0x72,0x20,0x14,0x59,0x55,0x10,0x15,0x49,0x54,0x20,0x16,0x39,0x37,0x10,0x17, - 0x29,0x36,0x20,0x18,0x22,0x53,0x90,0x19,0x9,0x18,0x20,0x1a,0x2,0x35,0x90,0x1a, - 0xf2,0x34,0xa0,0x1b,0xe2,0x17,0x90,0x1c,0xd2,0x16,0xa0,0x1d,0xc1,0xf9,0x90,0x1e, - 0xb1,0xf8,0xa0,0x1f,0xa1,0xdb,0x90,0x20,0x76,0x2b,0x20,0x21,0x81,0xbd,0x90,0x22, - 0x56,0xd,0x20,0x23,0x6a,0xda,0x10,0x24,0x35,0xef,0x20,0x25,0x4a,0xbc,0x10,0x26, - 0x15,0xd1,0x20,0x27,0x2a,0x9e,0x10,0x27,0xfe,0xed,0xa0,0x29,0xa,0x80,0x10,0x29, - 0xde,0xcf,0xa0,0x2a,0xea,0x62,0x10,0x2b,0xbe,0xb1,0xa0,0x2c,0xd3,0x7e,0x90,0x2d, - 0x9e,0x93,0xa0,0x2e,0xb3,0x60,0x90,0x2f,0x7e,0x75,0xa0,0x30,0x93,0x42,0x90,0x31, - 0x67,0x92,0x20,0x32,0x73,0x24,0x90,0x33,0x47,0x74,0x20,0x34,0x53,0x6,0x90,0x35, - 0x27,0x56,0x20,0x36,0x32,0xe8,0x90,0x37,0x7,0x38,0x20,0x38,0x1c,0x5,0x10,0x38, - 0xe7,0x1a,0x20,0x39,0xfb,0xe7,0x10,0x3a,0xc6,0xfc,0x20,0x3b,0xdb,0xc9,0x10,0x3c, - 0xb0,0x18,0xa0,0x3d,0xbb,0xab,0x10,0x3e,0x8f,0xfa,0xa0,0x3f,0x9b,0x8d,0x10,0x40, - 0x6f,0xdc,0xa0,0x41,0x84,0xa9,0x90,0x42,0x4f,0xbe,0xa0,0x43,0x64,0x8b,0x90,0x44, - 0x2f,0xa0,0xa0,0x45,0x44,0x6d,0x90,0x45,0xf3,0xd3,0x20,0x47,0x2d,0x8a,0x10,0x47, - 0xd3,0xb5,0x20,0x49,0xd,0x6c,0x10,0x49,0xb3,0x97,0x20,0x4a,0xed,0x4e,0x10,0x4b, - 0x9c,0xb3,0xa0,0x4c,0xd6,0x6a,0x90,0x4d,0x7c,0x95,0xa0,0x4e,0xb6,0x4c,0x90,0x4f, - 0x5c,0x77,0xa0,0x50,0x96,0x2e,0x90,0x51,0x3c,0x59,0xa0,0x52,0x76,0x10,0x90,0x53, - 0x1c,0x3b,0xa0,0x54,0x55,0xf2,0x90,0x54,0xfc,0x1d,0xa0,0x56,0x35,0xd4,0x90,0x56, - 0xe5,0x3a,0x20,0x58,0x1e,0xf1,0x10,0x58,0xc5,0x1c,0x20,0x59,0xfe,0xd3,0x10,0x5a, - 0xa4,0xfe,0x20,0x5b,0xde,0xb5,0x10,0x5c,0x84,0xe0,0x20,0x5d,0xbe,0x97,0x10,0x5e, - 0x64,0xc2,0x20,0x5f,0x9e,0x79,0x10,0x60,0x4d,0xde,0xa0,0x61,0x87,0x95,0x90,0x62, - 0x2d,0xc0,0xa0,0x63,0x67,0x77,0x90,0x64,0xd,0xa2,0xa0,0x65,0x47,0x59,0x90,0x65, - 0xed,0x84,0xa0,0x67,0x27,0x3b,0x90,0x67,0xcd,0x66,0xa0,0x69,0x7,0x1d,0x90,0x69, - 0xad,0x48,0xa0,0x6a,0xe6,0xff,0x90,0x6b,0x96,0x65,0x20,0x6c,0xd0,0x1c,0x10,0x6d, - 0x76,0x47,0x20,0x6e,0xaf,0xfe,0x10,0x6f,0x56,0x29,0x20,0x70,0x8f,0xe0,0x10,0x71, - 0x36,0xb,0x20,0x72,0x6f,0xc2,0x10,0x73,0x15,0xed,0x20,0x74,0x4f,0xa4,0x10,0x74, - 0xff,0x9,0xa0,0x76,0x38,0xc0,0x90,0x76,0xde,0xeb,0xa0,0x78,0x18,0xa2,0x90,0x78, - 0xbe,0xcd,0xa0,0x79,0xf8,0x84,0x90,0x7a,0x9e,0xaf,0xa0,0x7b,0xd8,0x66,0x90,0x7c, - 0x7e,0x91,0xa0,0x7d,0xb8,0x48,0x90,0x7e,0x5e,0x73,0xa0,0x7f,0x98,0x2a,0x90,0x0, - 0x1,0x0,0x1,0x2,0x3,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1, - 0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1, - 0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1, - 0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1, - 0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1, - 0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1, - 0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1, - 0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1, - 0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1, - 0x0,0x1,0x0,0x1,0xff,0xff,0x9d,0x90,0x1,0x0,0xff,0xff,0x8f,0x80,0x0,0x4, - 0xff,0xff,0x9d,0x90,0x1,0x8,0xff,0xff,0x9d,0x90,0x1,0xc,0x50,0x44,0x54,0x0, - 0x50,0x53,0x54,0x0,0x50,0x57,0x54,0x0,0x50,0x50,0x54,0x0,0x0,0x0,0x0,0x1, - 0x0,0x0,0x0,0x1,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x95,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x10, - 0xff,0xff,0xff,0xff,0x9e,0xa6,0x48,0xa0,0xff,0xff,0xff,0xff,0x9f,0xbb,0x15,0x90, - 0xff,0xff,0xff,0xff,0xa0,0x86,0x2a,0xa0,0xff,0xff,0xff,0xff,0xa1,0x9a,0xf7,0x90, - 0xff,0xff,0xff,0xff,0xcb,0x89,0x1a,0xa0,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70, - 0xff,0xff,0xff,0xff,0xd2,0x61,0x26,0x10,0xff,0xff,0xff,0xff,0xfa,0xf8,0x83,0x20, - 0xff,0xff,0xff,0xff,0xfb,0xe8,0x66,0x10,0xff,0xff,0xff,0xff,0xfc,0xd8,0x65,0x20, - 0xff,0xff,0xff,0xff,0xfd,0xc8,0x48,0x10,0xff,0xff,0xff,0xff,0xfe,0xb8,0x47,0x20, - 0xff,0xff,0xff,0xff,0xff,0xa8,0x2a,0x10,0x0,0x0,0x0,0x0,0x0,0x98,0x29,0x20, - 0x0,0x0,0x0,0x0,0x1,0x88,0xc,0x10,0x0,0x0,0x0,0x0,0x2,0x78,0xb,0x20, - 0x0,0x0,0x0,0x0,0x3,0x71,0x28,0x90,0x0,0x0,0x0,0x0,0x4,0x61,0x27,0xa0, - 0x0,0x0,0x0,0x0,0x5,0x51,0xa,0x90,0x0,0x0,0x0,0x0,0x6,0x41,0x9,0xa0, - 0x0,0x0,0x0,0x0,0x7,0x30,0xec,0x90,0x0,0x0,0x0,0x0,0x7,0x8d,0x43,0xa0, - 0x0,0x0,0x0,0x0,0x9,0x10,0xce,0x90,0x0,0x0,0x0,0x0,0x9,0xad,0xbf,0x20, - 0x0,0x0,0x0,0x0,0xa,0xf0,0xb0,0x90,0x0,0x0,0x0,0x0,0xb,0xe0,0xaf,0xa0, - 0x0,0x0,0x0,0x0,0xc,0xd9,0xcd,0x10,0x0,0x0,0x0,0x0,0xd,0xc0,0x91,0xa0, - 0x0,0x0,0x0,0x0,0xe,0xb9,0xaf,0x10,0x0,0x0,0x0,0x0,0xf,0xa9,0xae,0x20, - 0x0,0x0,0x0,0x0,0x10,0x99,0x91,0x10,0x0,0x0,0x0,0x0,0x11,0x89,0x90,0x20, - 0x0,0x0,0x0,0x0,0x12,0x79,0x73,0x10,0x0,0x0,0x0,0x0,0x13,0x69,0x72,0x20, - 0x0,0x0,0x0,0x0,0x14,0x59,0x55,0x10,0x0,0x0,0x0,0x0,0x15,0x49,0x54,0x20, - 0x0,0x0,0x0,0x0,0x16,0x39,0x37,0x10,0x0,0x0,0x0,0x0,0x17,0x29,0x36,0x20, - 0x0,0x0,0x0,0x0,0x18,0x22,0x53,0x90,0x0,0x0,0x0,0x0,0x19,0x9,0x18,0x20, - 0x0,0x0,0x0,0x0,0x1a,0x2,0x35,0x90,0x0,0x0,0x0,0x0,0x1a,0xf2,0x34,0xa0, - 0x0,0x0,0x0,0x0,0x1b,0xe2,0x17,0x90,0x0,0x0,0x0,0x0,0x1c,0xd2,0x16,0xa0, - 0x0,0x0,0x0,0x0,0x1d,0xc1,0xf9,0x90,0x0,0x0,0x0,0x0,0x1e,0xb1,0xf8,0xa0, - 0x0,0x0,0x0,0x0,0x1f,0xa1,0xdb,0x90,0x0,0x0,0x0,0x0,0x20,0x76,0x2b,0x20, - 0x0,0x0,0x0,0x0,0x21,0x81,0xbd,0x90,0x0,0x0,0x0,0x0,0x22,0x56,0xd,0x20, - 0x0,0x0,0x0,0x0,0x23,0x6a,0xda,0x10,0x0,0x0,0x0,0x0,0x24,0x35,0xef,0x20, - 0x0,0x0,0x0,0x0,0x25,0x4a,0xbc,0x10,0x0,0x0,0x0,0x0,0x26,0x15,0xd1,0x20, - 0x0,0x0,0x0,0x0,0x27,0x2a,0x9e,0x10,0x0,0x0,0x0,0x0,0x27,0xfe,0xed,0xa0, - 0x0,0x0,0x0,0x0,0x29,0xa,0x80,0x10,0x0,0x0,0x0,0x0,0x29,0xde,0xcf,0xa0, - 0x0,0x0,0x0,0x0,0x2a,0xea,0x62,0x10,0x0,0x0,0x0,0x0,0x2b,0xbe,0xb1,0xa0, - 0x0,0x0,0x0,0x0,0x2c,0xd3,0x7e,0x90,0x0,0x0,0x0,0x0,0x2d,0x9e,0x93,0xa0, - 0x0,0x0,0x0,0x0,0x2e,0xb3,0x60,0x90,0x0,0x0,0x0,0x0,0x2f,0x7e,0x75,0xa0, - 0x0,0x0,0x0,0x0,0x30,0x93,0x42,0x90,0x0,0x0,0x0,0x0,0x31,0x67,0x92,0x20, - 0x0,0x0,0x0,0x0,0x32,0x73,0x24,0x90,0x0,0x0,0x0,0x0,0x33,0x47,0x74,0x20, - 0x0,0x0,0x0,0x0,0x34,0x53,0x6,0x90,0x0,0x0,0x0,0x0,0x35,0x27,0x56,0x20, - 0x0,0x0,0x0,0x0,0x36,0x32,0xe8,0x90,0x0,0x0,0x0,0x0,0x37,0x7,0x38,0x20, - 0x0,0x0,0x0,0x0,0x38,0x1c,0x5,0x10,0x0,0x0,0x0,0x0,0x38,0xe7,0x1a,0x20, - 0x0,0x0,0x0,0x0,0x39,0xfb,0xe7,0x10,0x0,0x0,0x0,0x0,0x3a,0xc6,0xfc,0x20, - 0x0,0x0,0x0,0x0,0x3b,0xdb,0xc9,0x10,0x0,0x0,0x0,0x0,0x3c,0xb0,0x18,0xa0, - 0x0,0x0,0x0,0x0,0x3d,0xbb,0xab,0x10,0x0,0x0,0x0,0x0,0x3e,0x8f,0xfa,0xa0, - 0x0,0x0,0x0,0x0,0x3f,0x9b,0x8d,0x10,0x0,0x0,0x0,0x0,0x40,0x6f,0xdc,0xa0, - 0x0,0x0,0x0,0x0,0x41,0x84,0xa9,0x90,0x0,0x0,0x0,0x0,0x42,0x4f,0xbe,0xa0, - 0x0,0x0,0x0,0x0,0x43,0x64,0x8b,0x90,0x0,0x0,0x0,0x0,0x44,0x2f,0xa0,0xa0, - 0x0,0x0,0x0,0x0,0x45,0x44,0x6d,0x90,0x0,0x0,0x0,0x0,0x45,0xf3,0xd3,0x20, - 0x0,0x0,0x0,0x0,0x47,0x2d,0x8a,0x10,0x0,0x0,0x0,0x0,0x47,0xd3,0xb5,0x20, - 0x0,0x0,0x0,0x0,0x49,0xd,0x6c,0x10,0x0,0x0,0x0,0x0,0x49,0xb3,0x97,0x20, - 0x0,0x0,0x0,0x0,0x4a,0xed,0x4e,0x10,0x0,0x0,0x0,0x0,0x4b,0x9c,0xb3,0xa0, - 0x0,0x0,0x0,0x0,0x4c,0xd6,0x6a,0x90,0x0,0x0,0x0,0x0,0x4d,0x7c,0x95,0xa0, - 0x0,0x0,0x0,0x0,0x4e,0xb6,0x4c,0x90,0x0,0x0,0x0,0x0,0x4f,0x5c,0x77,0xa0, - 0x0,0x0,0x0,0x0,0x50,0x96,0x2e,0x90,0x0,0x0,0x0,0x0,0x51,0x3c,0x59,0xa0, - 0x0,0x0,0x0,0x0,0x52,0x76,0x10,0x90,0x0,0x0,0x0,0x0,0x53,0x1c,0x3b,0xa0, - 0x0,0x0,0x0,0x0,0x54,0x55,0xf2,0x90,0x0,0x0,0x0,0x0,0x54,0xfc,0x1d,0xa0, - 0x0,0x0,0x0,0x0,0x56,0x35,0xd4,0x90,0x0,0x0,0x0,0x0,0x56,0xe5,0x3a,0x20, - 0x0,0x0,0x0,0x0,0x58,0x1e,0xf1,0x10,0x0,0x0,0x0,0x0,0x58,0xc5,0x1c,0x20, - 0x0,0x0,0x0,0x0,0x59,0xfe,0xd3,0x10,0x0,0x0,0x0,0x0,0x5a,0xa4,0xfe,0x20, - 0x0,0x0,0x0,0x0,0x5b,0xde,0xb5,0x10,0x0,0x0,0x0,0x0,0x5c,0x84,0xe0,0x20, - 0x0,0x0,0x0,0x0,0x5d,0xbe,0x97,0x10,0x0,0x0,0x0,0x0,0x5e,0x64,0xc2,0x20, - 0x0,0x0,0x0,0x0,0x5f,0x9e,0x79,0x10,0x0,0x0,0x0,0x0,0x60,0x4d,0xde,0xa0, - 0x0,0x0,0x0,0x0,0x61,0x87,0x95,0x90,0x0,0x0,0x0,0x0,0x62,0x2d,0xc0,0xa0, - 0x0,0x0,0x0,0x0,0x63,0x67,0x77,0x90,0x0,0x0,0x0,0x0,0x64,0xd,0xa2,0xa0, - 0x0,0x0,0x0,0x0,0x65,0x47,0x59,0x90,0x0,0x0,0x0,0x0,0x65,0xed,0x84,0xa0, - 0x0,0x0,0x0,0x0,0x67,0x27,0x3b,0x90,0x0,0x0,0x0,0x0,0x67,0xcd,0x66,0xa0, - 0x0,0x0,0x0,0x0,0x69,0x7,0x1d,0x90,0x0,0x0,0x0,0x0,0x69,0xad,0x48,0xa0, - 0x0,0x0,0x0,0x0,0x6a,0xe6,0xff,0x90,0x0,0x0,0x0,0x0,0x6b,0x96,0x65,0x20, - 0x0,0x0,0x0,0x0,0x6c,0xd0,0x1c,0x10,0x0,0x0,0x0,0x0,0x6d,0x76,0x47,0x20, - 0x0,0x0,0x0,0x0,0x6e,0xaf,0xfe,0x10,0x0,0x0,0x0,0x0,0x6f,0x56,0x29,0x20, - 0x0,0x0,0x0,0x0,0x70,0x8f,0xe0,0x10,0x0,0x0,0x0,0x0,0x71,0x36,0xb,0x20, - 0x0,0x0,0x0,0x0,0x72,0x6f,0xc2,0x10,0x0,0x0,0x0,0x0,0x73,0x15,0xed,0x20, - 0x0,0x0,0x0,0x0,0x74,0x4f,0xa4,0x10,0x0,0x0,0x0,0x0,0x74,0xff,0x9,0xa0, - 0x0,0x0,0x0,0x0,0x76,0x38,0xc0,0x90,0x0,0x0,0x0,0x0,0x76,0xde,0xeb,0xa0, - 0x0,0x0,0x0,0x0,0x78,0x18,0xa2,0x90,0x0,0x0,0x0,0x0,0x78,0xbe,0xcd,0xa0, - 0x0,0x0,0x0,0x0,0x79,0xf8,0x84,0x90,0x0,0x0,0x0,0x0,0x7a,0x9e,0xaf,0xa0, - 0x0,0x0,0x0,0x0,0x7b,0xd8,0x66,0x90,0x0,0x0,0x0,0x0,0x7c,0x7e,0x91,0xa0, - 0x0,0x0,0x0,0x0,0x7d,0xb8,0x48,0x90,0x0,0x0,0x0,0x0,0x7e,0x5e,0x73,0xa0, - 0x0,0x0,0x0,0x0,0x7f,0x98,0x2a,0x90,0x0,0x1,0x0,0x1,0x2,0x3,0x1,0x0, - 0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0, - 0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0, - 0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0, - 0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0, - 0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0, - 0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0, - 0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0, - 0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0, - 0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0xff,0xff,0x9d, - 0x90,0x1,0x0,0xff,0xff,0x8f,0x80,0x0,0x4,0xff,0xff,0x9d,0x90,0x1,0x8,0xff, - 0xff,0x9d,0x90,0x1,0xc,0x50,0x44,0x54,0x0,0x50,0x53,0x54,0x0,0x50,0x57,0x54, - 0x0,0x50,0x50,0x54,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0xa,0x50,0x53, - 0x54,0x38,0x50,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31, - 0x2e,0x31,0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/posixrules - 0x0,0x0,0xd,0xd9, + // /home/konrad/src/smoke/tzone/zoneinfo/posixrules + 0x0,0x0,0xd,0xd9, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, @@ -6133,6 +6165,212 @@ static const unsigned char qt_resource_data[] = { 0x54,0x0,0x45,0x50,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x1, 0xa,0x45,0x53,0x54,0x35,0x45,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30,0x2c, 0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Kwajalein + 0x0,0x0,0x1,0x3, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x10,0x80,0x0,0x0,0x0,0xff, + 0x86,0x1b,0x50,0x2c,0x74,0xbc,0xc0,0x7f,0xff,0xff,0xff,0x1,0x2,0x3,0x3,0x0, + 0x0,0x9c,0xe0,0x0,0x0,0x0,0x0,0x9a,0xb0,0x0,0x4,0xff,0xff,0x57,0x40,0x0, + 0x8,0x0,0x0,0xa8,0xc0,0x0,0xc,0x4c,0x4d,0x54,0x0,0x2b,0x31,0x31,0x0,0x2d, + 0x31,0x32,0x0,0x2b,0x31,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x5,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x10,0xf8,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x7e,0x36,0x18,0x20,0xff,0xff,0xff,0xff,0xff, + 0x86,0x1b,0x50,0x0,0x0,0x0,0x0,0x2c,0x74,0xbc,0xc0,0x0,0x0,0x0,0x0,0x7f, + 0xff,0xff,0xff,0x0,0x1,0x2,0x3,0x3,0x0,0x0,0x9c,0xe0,0x0,0x0,0x0,0x0, + 0x9a,0xb0,0x0,0x4,0xff,0xff,0x57,0x40,0x0,0x8,0x0,0x0,0xa8,0xc0,0x0,0xc, + 0x4c,0x4d,0x54,0x0,0x2b,0x31,0x31,0x0,0x2d,0x31,0x32,0x0,0x2b,0x31,0x32,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2b,0x31,0x32,0x3e,0x2d,0x31, + 0x32,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Iceland + 0x0,0x0,0x4,0xa4, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x45,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x80,0x0,0x0,0x0,0x8b, + 0x60,0x83,0xa0,0x9c,0x91,0x1e,0x0,0x9d,0xd1,0x88,0x90,0x9e,0x72,0x51,0x80,0x9f, + 0xd5,0x3,0x10,0xa0,0x53,0x85,0x0,0xa1,0xb6,0x36,0x90,0xa4,0x3c,0x27,0x80,0xa4, + 0xb9,0x74,0x10,0xc6,0x4d,0x1a,0x0,0xc7,0x3d,0x27,0x20,0xc7,0xda,0x17,0xb0,0xc9, + 0x26,0x43,0xa0,0xc9,0xc3,0x26,0x20,0xcb,0x6,0x25,0xa0,0xcb,0xac,0x42,0xa0,0xcc, + 0xdc,0xcd,0x20,0xcd,0x8c,0x24,0xa0,0xce,0xbc,0xaf,0x20,0xcf,0x6c,0x6,0xa0,0xd0, + 0x9c,0x91,0x20,0xd1,0x4b,0xe8,0xa0,0xd2,0x85,0xad,0xa0,0xd3,0x2b,0xca,0xa0,0xd4, + 0x65,0x8f,0xa0,0xd5,0x39,0xd1,0x20,0xd6,0x45,0x71,0xa0,0xd7,0x19,0xb3,0x20,0xd8, + 0x25,0x53,0xa0,0xd8,0xf9,0x95,0x20,0xda,0xe,0x70,0x20,0xda,0xd9,0x77,0x20,0xdb, + 0xe5,0x17,0xa0,0xdc,0xb9,0x59,0x20,0xdd,0xce,0x34,0x20,0xde,0xa2,0x75,0xa0,0xdf, + 0xae,0x16,0x20,0xe0,0x82,0x57,0xa0,0xe1,0x8d,0xf8,0x20,0xe2,0x62,0x39,0xa0,0xe3, + 0x6d,0xda,0x20,0xe4,0x42,0x1b,0xa0,0xe5,0x4d,0xbc,0x20,0xe6,0x21,0xfd,0xa0,0xe7, + 0x36,0xd8,0xa0,0xe8,0xb,0x1a,0x20,0xe9,0x16,0xba,0xa0,0xe9,0xea,0xfc,0x20,0xea, + 0xf6,0x9c,0xa0,0xeb,0xca,0xde,0x20,0xec,0xd6,0x7e,0xa0,0xed,0xaa,0xc0,0x20,0xee, + 0xb6,0x60,0xa0,0xef,0x8a,0xa2,0x20,0xf0,0x96,0x42,0xa0,0xf1,0x6a,0x84,0x20,0xf2, + 0x7f,0x5f,0x20,0xf3,0x53,0xa0,0xa0,0xf4,0x5f,0x41,0x20,0xf5,0x33,0x82,0xa0,0xf6, + 0x3f,0x23,0x20,0xf7,0x13,0x64,0xa0,0xf8,0x1f,0x5,0x20,0xf8,0xf3,0x46,0xa0,0xf9, + 0xfe,0xe7,0x20,0xfa,0xd3,0x28,0xa0,0xfb,0xe8,0x3,0xa0,0xfc,0xbc,0x45,0x20,0x0, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x5,0xff,0xff,0xeb,0x60,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x4, + 0xff,0xff,0xf1,0xf0,0x0,0x8,0xff,0xff,0xf1,0xf0,0x0,0x8,0x0,0x0,0x0,0x0, + 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0xc,0x4c,0x4d,0x54,0x0,0x2b,0x30,0x30,0x0, + 0x2d,0x30,0x31,0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x0,0x0, + 0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10, + 0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x8b,0x60,0x83,0xa0, + 0xff,0xff,0xff,0xff,0x9c,0x91,0x1e,0x0,0xff,0xff,0xff,0xff,0x9d,0xd1,0x88,0x90, + 0xff,0xff,0xff,0xff,0x9e,0x72,0x51,0x80,0xff,0xff,0xff,0xff,0x9f,0xd5,0x3,0x10, + 0xff,0xff,0xff,0xff,0xa0,0x53,0x85,0x0,0xff,0xff,0xff,0xff,0xa1,0xb6,0x36,0x90, + 0xff,0xff,0xff,0xff,0xa4,0x3c,0x27,0x80,0xff,0xff,0xff,0xff,0xa4,0xb9,0x74,0x10, + 0xff,0xff,0xff,0xff,0xc6,0x4d,0x1a,0x0,0xff,0xff,0xff,0xff,0xc7,0x3d,0x27,0x20, + 0xff,0xff,0xff,0xff,0xc7,0xda,0x17,0xb0,0xff,0xff,0xff,0xff,0xc9,0x26,0x43,0xa0, + 0xff,0xff,0xff,0xff,0xc9,0xc3,0x26,0x20,0xff,0xff,0xff,0xff,0xcb,0x6,0x25,0xa0, + 0xff,0xff,0xff,0xff,0xcb,0xac,0x42,0xa0,0xff,0xff,0xff,0xff,0xcc,0xdc,0xcd,0x20, + 0xff,0xff,0xff,0xff,0xcd,0x8c,0x24,0xa0,0xff,0xff,0xff,0xff,0xce,0xbc,0xaf,0x20, + 0xff,0xff,0xff,0xff,0xcf,0x6c,0x6,0xa0,0xff,0xff,0xff,0xff,0xd0,0x9c,0x91,0x20, + 0xff,0xff,0xff,0xff,0xd1,0x4b,0xe8,0xa0,0xff,0xff,0xff,0xff,0xd2,0x85,0xad,0xa0, + 0xff,0xff,0xff,0xff,0xd3,0x2b,0xca,0xa0,0xff,0xff,0xff,0xff,0xd4,0x65,0x8f,0xa0, + 0xff,0xff,0xff,0xff,0xd5,0x39,0xd1,0x20,0xff,0xff,0xff,0xff,0xd6,0x45,0x71,0xa0, + 0xff,0xff,0xff,0xff,0xd7,0x19,0xb3,0x20,0xff,0xff,0xff,0xff,0xd8,0x25,0x53,0xa0, + 0xff,0xff,0xff,0xff,0xd8,0xf9,0x95,0x20,0xff,0xff,0xff,0xff,0xda,0xe,0x70,0x20, + 0xff,0xff,0xff,0xff,0xda,0xd9,0x77,0x20,0xff,0xff,0xff,0xff,0xdb,0xe5,0x17,0xa0, + 0xff,0xff,0xff,0xff,0xdc,0xb9,0x59,0x20,0xff,0xff,0xff,0xff,0xdd,0xce,0x34,0x20, + 0xff,0xff,0xff,0xff,0xde,0xa2,0x75,0xa0,0xff,0xff,0xff,0xff,0xdf,0xae,0x16,0x20, + 0xff,0xff,0xff,0xff,0xe0,0x82,0x57,0xa0,0xff,0xff,0xff,0xff,0xe1,0x8d,0xf8,0x20, + 0xff,0xff,0xff,0xff,0xe2,0x62,0x39,0xa0,0xff,0xff,0xff,0xff,0xe3,0x6d,0xda,0x20, + 0xff,0xff,0xff,0xff,0xe4,0x42,0x1b,0xa0,0xff,0xff,0xff,0xff,0xe5,0x4d,0xbc,0x20, + 0xff,0xff,0xff,0xff,0xe6,0x21,0xfd,0xa0,0xff,0xff,0xff,0xff,0xe7,0x36,0xd8,0xa0, + 0xff,0xff,0xff,0xff,0xe8,0xb,0x1a,0x20,0xff,0xff,0xff,0xff,0xe9,0x16,0xba,0xa0, + 0xff,0xff,0xff,0xff,0xe9,0xea,0xfc,0x20,0xff,0xff,0xff,0xff,0xea,0xf6,0x9c,0xa0, + 0xff,0xff,0xff,0xff,0xeb,0xca,0xde,0x20,0xff,0xff,0xff,0xff,0xec,0xd6,0x7e,0xa0, + 0xff,0xff,0xff,0xff,0xed,0xaa,0xc0,0x20,0xff,0xff,0xff,0xff,0xee,0xb6,0x60,0xa0, + 0xff,0xff,0xff,0xff,0xef,0x8a,0xa2,0x20,0xff,0xff,0xff,0xff,0xf0,0x96,0x42,0xa0, + 0xff,0xff,0xff,0xff,0xf1,0x6a,0x84,0x20,0xff,0xff,0xff,0xff,0xf2,0x7f,0x5f,0x20, + 0xff,0xff,0xff,0xff,0xf3,0x53,0xa0,0xa0,0xff,0xff,0xff,0xff,0xf4,0x5f,0x41,0x20, + 0xff,0xff,0xff,0xff,0xf5,0x33,0x82,0xa0,0xff,0xff,0xff,0xff,0xf6,0x3f,0x23,0x20, + 0xff,0xff,0xff,0xff,0xf7,0x13,0x64,0xa0,0xff,0xff,0xff,0xff,0xf8,0x1f,0x5,0x20, + 0xff,0xff,0xff,0xff,0xf8,0xf3,0x46,0xa0,0xff,0xff,0xff,0xff,0xf9,0xfe,0xe7,0x20, + 0xff,0xff,0xff,0xff,0xfa,0xd3,0x28,0xa0,0xff,0xff,0xff,0xff,0xfb,0xe8,0x3,0xa0, + 0xff,0xff,0xff,0xff,0xfc,0xbc,0x45,0x20,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x5,0xff,0xff,0xeb, + 0x60,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x4,0xff,0xff,0xf1,0xf0,0x0,0x8,0xff, + 0xff,0xf1,0xf0,0x0,0x8,0x0,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, + 0xc,0x4c,0x4d,0x54,0x0,0x2b,0x30,0x30,0x0,0x2d,0x30,0x31,0x0,0x47,0x4d,0x54, + 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x47,0x4d, + 0x54,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/GMT + 0x0,0x0,0x0,0x7f, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, + 0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0, + 0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0, + 0x0,0x0,0x4,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0xa,0x47,0x4d,0x54,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Libya + 0x0,0x0,0x2,0x8f, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x21,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x11,0x80,0x0,0x0,0x0,0xa1, + 0xf2,0xc1,0x24,0xdd,0xbb,0xb1,0x10,0xde,0x23,0xad,0x60,0xe1,0x78,0xd2,0x10,0xe1, + 0xe7,0x65,0xe0,0xe5,0x2f,0x3f,0x70,0xe5,0xa9,0xcc,0xe0,0xeb,0x4e,0xc6,0xf0,0x16, + 0x92,0x42,0x60,0x17,0x8,0xf7,0x70,0x17,0xfa,0x2b,0xe0,0x18,0xea,0x2a,0xf0,0x19, + 0xdb,0x5f,0x60,0x1a,0xcc,0xaf,0xf0,0x1b,0xbd,0xe4,0x60,0x1c,0xb4,0x7a,0xf0,0x1d, + 0x9f,0x17,0xe0,0x1e,0x93,0xb,0x70,0x1f,0x82,0xee,0x60,0x20,0x70,0x4a,0x70,0x21, + 0x61,0x7e,0xe0,0x22,0x52,0xcf,0x70,0x23,0x44,0x3,0xe0,0x24,0x34,0x2,0xf0,0x25, + 0x25,0x37,0x60,0x26,0x40,0xb7,0xf0,0x32,0x4e,0xf1,0x60,0x33,0x44,0x36,0x70,0x34, + 0x35,0x6a,0xe0,0x50,0x9d,0x99,0x0,0x51,0x54,0xd9,0x80,0x52,0x69,0xb4,0x80,0x0, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x2,0x1,0x3,0x2,0x1,0x3, + 0x0,0x0,0xc,0x5c,0x0,0x0,0x0,0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe,0x10, + 0x0,0x9,0x0,0x0,0x1c,0x20,0x0,0xd,0x4c,0x4d,0x54,0x0,0x43,0x45,0x53,0x54, + 0x0,0x43,0x45,0x54,0x0,0x45,0x45,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x11,0xf8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xa1,0xf2,0xc1,0x24,0xff,0xff,0xff, + 0xff,0xdd,0xbb,0xb1,0x10,0xff,0xff,0xff,0xff,0xde,0x23,0xad,0x60,0xff,0xff,0xff, + 0xff,0xe1,0x78,0xd2,0x10,0xff,0xff,0xff,0xff,0xe1,0xe7,0x65,0xe0,0xff,0xff,0xff, + 0xff,0xe5,0x2f,0x3f,0x70,0xff,0xff,0xff,0xff,0xe5,0xa9,0xcc,0xe0,0xff,0xff,0xff, + 0xff,0xeb,0x4e,0xc6,0xf0,0x0,0x0,0x0,0x0,0x16,0x92,0x42,0x60,0x0,0x0,0x0, + 0x0,0x17,0x8,0xf7,0x70,0x0,0x0,0x0,0x0,0x17,0xfa,0x2b,0xe0,0x0,0x0,0x0, + 0x0,0x18,0xea,0x2a,0xf0,0x0,0x0,0x0,0x0,0x19,0xdb,0x5f,0x60,0x0,0x0,0x0, + 0x0,0x1a,0xcc,0xaf,0xf0,0x0,0x0,0x0,0x0,0x1b,0xbd,0xe4,0x60,0x0,0x0,0x0, + 0x0,0x1c,0xb4,0x7a,0xf0,0x0,0x0,0x0,0x0,0x1d,0x9f,0x17,0xe0,0x0,0x0,0x0, + 0x0,0x1e,0x93,0xb,0x70,0x0,0x0,0x0,0x0,0x1f,0x82,0xee,0x60,0x0,0x0,0x0, + 0x0,0x20,0x70,0x4a,0x70,0x0,0x0,0x0,0x0,0x21,0x61,0x7e,0xe0,0x0,0x0,0x0, + 0x0,0x22,0x52,0xcf,0x70,0x0,0x0,0x0,0x0,0x23,0x44,0x3,0xe0,0x0,0x0,0x0, + 0x0,0x24,0x34,0x2,0xf0,0x0,0x0,0x0,0x0,0x25,0x25,0x37,0x60,0x0,0x0,0x0, + 0x0,0x26,0x40,0xb7,0xf0,0x0,0x0,0x0,0x0,0x32,0x4e,0xf1,0x60,0x0,0x0,0x0, + 0x0,0x33,0x44,0x36,0x70,0x0,0x0,0x0,0x0,0x34,0x35,0x6a,0xe0,0x0,0x0,0x0, + 0x0,0x50,0x9d,0x99,0x0,0x0,0x0,0x0,0x0,0x51,0x54,0xd9,0x80,0x0,0x0,0x0, + 0x0,0x52,0x69,0xb4,0x80,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3, + 0x2,0x1,0x3,0x2,0x1,0x3,0x0,0x0,0xc,0x5c,0x0,0x0,0x0,0x0,0x1c,0x20, + 0x1,0x4,0x0,0x0,0xe,0x10,0x0,0x9,0x0,0x0,0x1c,0x20,0x0,0xd,0x4c,0x4d, + 0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x43,0x45,0x54,0x0,0x45,0x45,0x54,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x45,0x45,0x54,0x2d,0x32,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/ROC + 0x0,0x0,0x3,0x16, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x29,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x10,0x80,0x0,0x0,0x0,0xc3, + 0x55,0x49,0x80,0xd2,0x54,0x59,0x80,0xd3,0x8b,0x7b,0x80,0xd4,0x42,0xad,0xf0,0xd5, + 0x45,0x22,0x0,0xd6,0x4c,0xbf,0xf0,0xd7,0x3c,0xbf,0x0,0xd8,0x6,0x66,0x70,0xd9, + 0x1d,0xf2,0x80,0xd9,0xe7,0x99,0xf0,0xda,0xff,0x26,0x0,0xdb,0xc8,0xcd,0x70,0xdc, + 0xe0,0x59,0x80,0xdd,0xaa,0x0,0xf0,0xde,0x72,0x73,0x0,0xdf,0xb5,0x64,0x70,0xe0, + 0x7c,0x85,0x0,0xe1,0x96,0x97,0xf0,0xe2,0x5d,0xb8,0x80,0xe3,0x77,0xcb,0x70,0xe4, + 0x3e,0xec,0x0,0xe5,0x30,0x20,0x70,0xe6,0x21,0x71,0x0,0xe7,0x12,0xa5,0x70,0xe8, + 0x2,0xa4,0x80,0xe8,0xf3,0xd8,0xf0,0xe9,0xe3,0xd8,0x0,0xea,0xd5,0xc,0x70,0xeb, + 0xc5,0xb,0x80,0xec,0xb6,0x3f,0xf0,0xed,0xf7,0xfc,0x0,0xee,0x98,0xc4,0xf0,0xef, + 0xd9,0x2f,0x80,0xf0,0x79,0xf8,0x70,0x7,0xfc,0x56,0x0,0x8,0xed,0x8a,0x70,0x9, + 0xdd,0x89,0x80,0xa,0xce,0xbd,0xf0,0x11,0xdb,0xa1,0x80,0x12,0x54,0xdd,0x70,0x1, + 0x2,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1, + 0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1, + 0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x0,0x0,0x71,0xe8,0x0,0x0,0x0,0x0, + 0x70,0x80,0x0,0x4,0x0,0x0,0x7e,0x90,0x0,0x8,0x0,0x0,0x7e,0x90,0x1,0xc, + 0x0,0x0,0x70,0x80,0x0,0x4,0x4c,0x4d,0x54,0x0,0x43,0x53,0x54,0x0,0x4a,0x53, + 0x54,0x0,0x43,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x2a,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x10,0xf8,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x74,0xce,0xf0,0x18,0xff,0xff,0xff,0xff, + 0xc3,0x55,0x49,0x80,0xff,0xff,0xff,0xff,0xd2,0x54,0x59,0x80,0xff,0xff,0xff,0xff, + 0xd3,0x8b,0x7b,0x80,0xff,0xff,0xff,0xff,0xd4,0x42,0xad,0xf0,0xff,0xff,0xff,0xff, + 0xd5,0x45,0x22,0x0,0xff,0xff,0xff,0xff,0xd6,0x4c,0xbf,0xf0,0xff,0xff,0xff,0xff, + 0xd7,0x3c,0xbf,0x0,0xff,0xff,0xff,0xff,0xd8,0x6,0x66,0x70,0xff,0xff,0xff,0xff, + 0xd9,0x1d,0xf2,0x80,0xff,0xff,0xff,0xff,0xd9,0xe7,0x99,0xf0,0xff,0xff,0xff,0xff, + 0xda,0xff,0x26,0x0,0xff,0xff,0xff,0xff,0xdb,0xc8,0xcd,0x70,0xff,0xff,0xff,0xff, + 0xdc,0xe0,0x59,0x80,0xff,0xff,0xff,0xff,0xdd,0xaa,0x0,0xf0,0xff,0xff,0xff,0xff, + 0xde,0x72,0x73,0x0,0xff,0xff,0xff,0xff,0xdf,0xb5,0x64,0x70,0xff,0xff,0xff,0xff, + 0xe0,0x7c,0x85,0x0,0xff,0xff,0xff,0xff,0xe1,0x96,0x97,0xf0,0xff,0xff,0xff,0xff, + 0xe2,0x5d,0xb8,0x80,0xff,0xff,0xff,0xff,0xe3,0x77,0xcb,0x70,0xff,0xff,0xff,0xff, + 0xe4,0x3e,0xec,0x0,0xff,0xff,0xff,0xff,0xe5,0x30,0x20,0x70,0xff,0xff,0xff,0xff, + 0xe6,0x21,0x71,0x0,0xff,0xff,0xff,0xff,0xe7,0x12,0xa5,0x70,0xff,0xff,0xff,0xff, + 0xe8,0x2,0xa4,0x80,0xff,0xff,0xff,0xff,0xe8,0xf3,0xd8,0xf0,0xff,0xff,0xff,0xff, + 0xe9,0xe3,0xd8,0x0,0xff,0xff,0xff,0xff,0xea,0xd5,0xc,0x70,0xff,0xff,0xff,0xff, + 0xeb,0xc5,0xb,0x80,0xff,0xff,0xff,0xff,0xec,0xb6,0x3f,0xf0,0xff,0xff,0xff,0xff, + 0xed,0xf7,0xfc,0x0,0xff,0xff,0xff,0xff,0xee,0x98,0xc4,0xf0,0xff,0xff,0xff,0xff, + 0xef,0xd9,0x2f,0x80,0xff,0xff,0xff,0xff,0xf0,0x79,0xf8,0x70,0x0,0x0,0x0,0x0, + 0x7,0xfc,0x56,0x0,0x0,0x0,0x0,0x0,0x8,0xed,0x8a,0x70,0x0,0x0,0x0,0x0, + 0x9,0xdd,0x89,0x80,0x0,0x0,0x0,0x0,0xa,0xce,0xbd,0xf0,0x0,0x0,0x0,0x0, + 0x11,0xdb,0xa1,0x80,0x0,0x0,0x0,0x0,0x12,0x54,0xdd,0x70,0x0,0x1,0x2,0x1, + 0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1, + 0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1, + 0x3,0x1,0x3,0x1,0x3,0x1,0x0,0x0,0x71,0xe8,0x0,0x0,0x0,0x0,0x70,0x80, + 0x0,0x4,0x0,0x0,0x7e,0x90,0x0,0x8,0x0,0x0,0x7e,0x90,0x1,0xc,0x0,0x0, + 0x70,0x80,0x0,0x4,0x4c,0x4d,0x54,0x0,0x43,0x53,0x54,0x0,0x4a,0x53,0x54,0x0, + 0x43,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x43, + 0x53,0x54,0x2d,0x38,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/MST7MDT 0x0,0x0,0x8,0xf6, 0x54, @@ -6280,8965 +6518,6256 @@ static const unsigned char qt_resource_data[] = { 0x0,0x4d,0x50,0x54,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0xa,0x4d,0x53, 0x54,0x37,0x4d,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31, 0x2e,0x31,0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Cuba - 0x0,0x0,0x9,0x85, + // /home/konrad/src/smoke/tzone/zoneinfo/GMT+0 + 0x0,0x0,0x0,0x7f, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x9c,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x80,0x0,0x0,0x0,0xac, - 0x62,0xc2,0x80,0xb1,0xd3,0x94,0x50,0xb2,0x74,0x5d,0x40,0xc8,0x5b,0x66,0xd0,0xc8, - 0xd3,0x51,0x40,0xca,0x3b,0x48,0xd0,0xca,0xbc,0x6d,0xc0,0xcc,0x24,0x65,0x50,0xcc, - 0x9c,0x4f,0xc0,0xd1,0xc4,0xb,0x50,0xd2,0x3b,0xf5,0xc0,0xd3,0xa3,0xed,0x50,0xd4, - 0x1b,0xd7,0xc0,0xf7,0x60,0x5,0xd0,0xf7,0xff,0x7d,0x40,0xf9,0x3d,0x44,0xd0,0xf9, - 0xe3,0x53,0xc0,0xfa,0xdb,0x3b,0xd0,0xfb,0xa7,0x86,0x40,0xfc,0xc5,0xa9,0xd0,0xfd, - 0x87,0x68,0x40,0xfe,0xb8,0x0,0xd0,0xff,0xa7,0xe3,0xc0,0x0,0x97,0xe2,0xd0,0x1, - 0x87,0xc5,0xc0,0x2,0x77,0xc4,0xd0,0x3,0x70,0xe2,0x40,0x4,0x60,0xe1,0x50,0x5, - 0x35,0x14,0xc0,0x6,0x40,0xc3,0x50,0x7,0x16,0x48,0x40,0x8,0x20,0xa5,0x50,0x8, - 0xf7,0x7b,0xc0,0xa,0x0,0x87,0x50,0xa,0xf0,0x6a,0x40,0xb,0xe0,0x69,0x50,0xc, - 0xd9,0x86,0xc0,0xd,0xc0,0x4b,0x50,0xe,0xb9,0x68,0xc0,0xf,0xb2,0xa2,0x50,0x10, - 0x7d,0x9b,0x40,0x11,0x51,0xea,0xd0,0x12,0x66,0xb7,0xc0,0x13,0x31,0xcc,0xd0,0x14, - 0x46,0x99,0xc0,0x15,0x5b,0x82,0xd0,0x16,0x26,0x7b,0xc0,0x17,0x3b,0x64,0xd0,0x18, - 0x6,0x5d,0xc0,0x19,0x1b,0x46,0xd0,0x19,0xe6,0x3f,0xc0,0x1a,0xfb,0x28,0xd0,0x1b, - 0xcf,0x5c,0x40,0x1c,0xdb,0xa,0xd0,0x1d,0xaf,0x3e,0x40,0x1e,0x7a,0x53,0x50,0x1f, - 0x8f,0x20,0x40,0x20,0x5a,0x35,0x50,0x21,0x6f,0x2,0x40,0x22,0x43,0x51,0xd0,0x23, - 0x4e,0xe4,0x40,0x24,0x23,0x33,0xd0,0x25,0x2e,0xc6,0x40,0x26,0x15,0x8a,0xd0,0x27, - 0x17,0xe2,0xc0,0x27,0xfe,0xa7,0x50,0x28,0xf7,0xd2,0xd0,0x29,0xde,0x89,0x50,0x2a, - 0xd7,0xb4,0xd0,0x2b,0xbe,0x6b,0x50,0x2c,0xb7,0x96,0xd0,0x2d,0x9e,0x4d,0x50,0x2e, - 0x97,0x78,0xd0,0x2f,0x7e,0x2f,0x50,0x30,0x77,0x5a,0xd0,0x31,0x67,0x4b,0xd0,0x32, - 0x57,0x3c,0xd0,0x33,0x47,0x2d,0xd0,0x34,0x40,0x59,0x50,0x35,0x1d,0xd5,0x50,0x36, - 0x32,0xb0,0x50,0x36,0xfd,0xb7,0x50,0x38,0x1b,0xcc,0xd0,0x38,0xe6,0xd3,0xd0,0x39, - 0xfb,0xae,0xd0,0x3a,0xc6,0xb5,0xd0,0x3b,0xdb,0x90,0xd0,0x3c,0xaf,0xd2,0x50,0x3d, - 0xbb,0x72,0xd0,0x3e,0x8f,0xb4,0x50,0x3f,0x9b,0x54,0xd0,0x40,0x66,0x5b,0xd0,0x45, - 0x44,0x35,0x50,0x45,0xf3,0x8c,0xd0,0x47,0x24,0x17,0x50,0x47,0xdc,0xa9,0x50,0x49, - 0x3,0xf9,0x50,0x49,0xb3,0x50,0xd0,0x4a,0xe3,0xdb,0x50,0x4b,0x9c,0x6d,0x50,0x4c, - 0xcc,0xf7,0xd0,0x4d,0x85,0x89,0xd0,0x4e,0xbf,0x4e,0xd0,0x4f,0x77,0xe0,0xd0,0x50, - 0x95,0xf6,0x50,0x51,0x3c,0x13,0x50,0x52,0x75,0xd8,0x50,0x53,0x1b,0xf5,0x50,0x54, - 0x55,0xba,0x50,0x54,0xfb,0xd7,0x50,0x56,0x35,0x9c,0x50,0x56,0xe4,0xf3,0xd0,0x58, - 0x1e,0xb8,0xd0,0x58,0xc4,0xd5,0xd0,0x59,0xfe,0x9a,0xd0,0x5a,0xa4,0xb7,0xd0,0x5b, - 0xde,0x7c,0xd0,0x5c,0x84,0x99,0xd0,0x5d,0xbe,0x5e,0xd0,0x5e,0x64,0x7b,0xd0,0x5f, - 0x9e,0x40,0xd0,0x60,0x4d,0x98,0x50,0x61,0x87,0x5d,0x50,0x62,0x2d,0x7a,0x50,0x63, - 0x67,0x3f,0x50,0x64,0xd,0x5c,0x50,0x65,0x47,0x21,0x50,0x65,0xed,0x3e,0x50,0x67, - 0x27,0x3,0x50,0x67,0xcd,0x20,0x50,0x69,0x6,0xe5,0x50,0x69,0xad,0x2,0x50,0x6a, - 0xe6,0xc7,0x50,0x6b,0x96,0x1e,0xd0,0x6c,0xcf,0xe3,0xd0,0x6d,0x76,0x0,0xd0,0x6e, - 0xaf,0xc5,0xd0,0x6f,0x55,0xe2,0xd0,0x70,0x8f,0xa7,0xd0,0x71,0x35,0xc4,0xd0,0x72, - 0x6f,0x89,0xd0,0x73,0x15,0xa6,0xd0,0x74,0x4f,0x6b,0xd0,0x74,0xfe,0xc3,0x50,0x76, - 0x38,0x88,0x50,0x76,0xde,0xa5,0x50,0x78,0x18,0x6a,0x50,0x78,0xbe,0x87,0x50,0x79, - 0xf8,0x4c,0x50,0x7a,0x9e,0x69,0x50,0x7b,0xd8,0x2e,0x50,0x7c,0x7e,0x4b,0x50,0x7d, - 0xb8,0x10,0x50,0x7e,0x5e,0x2d,0x50,0x7f,0x97,0xf2,0x50,0x1,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x4,0x2, - 0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0xff,0xff,0xb2,0xc8,0x0,0x0,0xff,0xff,0xb2, - 0xc0,0x0,0x4,0xff,0xff,0xc7,0xc0,0x1,0x8,0xff,0xff,0xb9,0xb0,0x0,0xc,0xff, - 0xff,0xb9,0xb0,0x0,0xc,0xff,0xff,0xc7,0xc0,0x1,0x8,0x4c,0x4d,0x54,0x0,0x48, - 0x4d,0x54,0x0,0x43,0x44,0x54,0x0,0x43,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x1, - 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0, - 0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9d,0x0,0x0,0x0,0x6,0x0, - 0x0,0x0,0x10,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x69, - 0x87,0x28,0xb8,0xff,0xff,0xff,0xff,0xac,0x62,0xc2,0x80,0xff,0xff,0xff,0xff,0xb1, - 0xd3,0x94,0x50,0xff,0xff,0xff,0xff,0xb2,0x74,0x5d,0x40,0xff,0xff,0xff,0xff,0xc8, - 0x5b,0x66,0xd0,0xff,0xff,0xff,0xff,0xc8,0xd3,0x51,0x40,0xff,0xff,0xff,0xff,0xca, - 0x3b,0x48,0xd0,0xff,0xff,0xff,0xff,0xca,0xbc,0x6d,0xc0,0xff,0xff,0xff,0xff,0xcc, - 0x24,0x65,0x50,0xff,0xff,0xff,0xff,0xcc,0x9c,0x4f,0xc0,0xff,0xff,0xff,0xff,0xd1, - 0xc4,0xb,0x50,0xff,0xff,0xff,0xff,0xd2,0x3b,0xf5,0xc0,0xff,0xff,0xff,0xff,0xd3, - 0xa3,0xed,0x50,0xff,0xff,0xff,0xff,0xd4,0x1b,0xd7,0xc0,0xff,0xff,0xff,0xff,0xf7, - 0x60,0x5,0xd0,0xff,0xff,0xff,0xff,0xf7,0xff,0x7d,0x40,0xff,0xff,0xff,0xff,0xf9, - 0x3d,0x44,0xd0,0xff,0xff,0xff,0xff,0xf9,0xe3,0x53,0xc0,0xff,0xff,0xff,0xff,0xfa, - 0xdb,0x3b,0xd0,0xff,0xff,0xff,0xff,0xfb,0xa7,0x86,0x40,0xff,0xff,0xff,0xff,0xfc, - 0xc5,0xa9,0xd0,0xff,0xff,0xff,0xff,0xfd,0x87,0x68,0x40,0xff,0xff,0xff,0xff,0xfe, - 0xb8,0x0,0xd0,0xff,0xff,0xff,0xff,0xff,0xa7,0xe3,0xc0,0x0,0x0,0x0,0x0,0x0, - 0x97,0xe2,0xd0,0x0,0x0,0x0,0x0,0x1,0x87,0xc5,0xc0,0x0,0x0,0x0,0x0,0x2, - 0x77,0xc4,0xd0,0x0,0x0,0x0,0x0,0x3,0x70,0xe2,0x40,0x0,0x0,0x0,0x0,0x4, - 0x60,0xe1,0x50,0x0,0x0,0x0,0x0,0x5,0x35,0x14,0xc0,0x0,0x0,0x0,0x0,0x6, - 0x40,0xc3,0x50,0x0,0x0,0x0,0x0,0x7,0x16,0x48,0x40,0x0,0x0,0x0,0x0,0x8, - 0x20,0xa5,0x50,0x0,0x0,0x0,0x0,0x8,0xf7,0x7b,0xc0,0x0,0x0,0x0,0x0,0xa, - 0x0,0x87,0x50,0x0,0x0,0x0,0x0,0xa,0xf0,0x6a,0x40,0x0,0x0,0x0,0x0,0xb, - 0xe0,0x69,0x50,0x0,0x0,0x0,0x0,0xc,0xd9,0x86,0xc0,0x0,0x0,0x0,0x0,0xd, - 0xc0,0x4b,0x50,0x0,0x0,0x0,0x0,0xe,0xb9,0x68,0xc0,0x0,0x0,0x0,0x0,0xf, - 0xb2,0xa2,0x50,0x0,0x0,0x0,0x0,0x10,0x7d,0x9b,0x40,0x0,0x0,0x0,0x0,0x11, - 0x51,0xea,0xd0,0x0,0x0,0x0,0x0,0x12,0x66,0xb7,0xc0,0x0,0x0,0x0,0x0,0x13, - 0x31,0xcc,0xd0,0x0,0x0,0x0,0x0,0x14,0x46,0x99,0xc0,0x0,0x0,0x0,0x0,0x15, - 0x5b,0x82,0xd0,0x0,0x0,0x0,0x0,0x16,0x26,0x7b,0xc0,0x0,0x0,0x0,0x0,0x17, - 0x3b,0x64,0xd0,0x0,0x0,0x0,0x0,0x18,0x6,0x5d,0xc0,0x0,0x0,0x0,0x0,0x19, - 0x1b,0x46,0xd0,0x0,0x0,0x0,0x0,0x19,0xe6,0x3f,0xc0,0x0,0x0,0x0,0x0,0x1a, - 0xfb,0x28,0xd0,0x0,0x0,0x0,0x0,0x1b,0xcf,0x5c,0x40,0x0,0x0,0x0,0x0,0x1c, - 0xdb,0xa,0xd0,0x0,0x0,0x0,0x0,0x1d,0xaf,0x3e,0x40,0x0,0x0,0x0,0x0,0x1e, - 0x7a,0x53,0x50,0x0,0x0,0x0,0x0,0x1f,0x8f,0x20,0x40,0x0,0x0,0x0,0x0,0x20, - 0x5a,0x35,0x50,0x0,0x0,0x0,0x0,0x21,0x6f,0x2,0x40,0x0,0x0,0x0,0x0,0x22, - 0x43,0x51,0xd0,0x0,0x0,0x0,0x0,0x23,0x4e,0xe4,0x40,0x0,0x0,0x0,0x0,0x24, - 0x23,0x33,0xd0,0x0,0x0,0x0,0x0,0x25,0x2e,0xc6,0x40,0x0,0x0,0x0,0x0,0x26, - 0x15,0x8a,0xd0,0x0,0x0,0x0,0x0,0x27,0x17,0xe2,0xc0,0x0,0x0,0x0,0x0,0x27, - 0xfe,0xa7,0x50,0x0,0x0,0x0,0x0,0x28,0xf7,0xd2,0xd0,0x0,0x0,0x0,0x0,0x29, - 0xde,0x89,0x50,0x0,0x0,0x0,0x0,0x2a,0xd7,0xb4,0xd0,0x0,0x0,0x0,0x0,0x2b, - 0xbe,0x6b,0x50,0x0,0x0,0x0,0x0,0x2c,0xb7,0x96,0xd0,0x0,0x0,0x0,0x0,0x2d, - 0x9e,0x4d,0x50,0x0,0x0,0x0,0x0,0x2e,0x97,0x78,0xd0,0x0,0x0,0x0,0x0,0x2f, - 0x7e,0x2f,0x50,0x0,0x0,0x0,0x0,0x30,0x77,0x5a,0xd0,0x0,0x0,0x0,0x0,0x31, - 0x67,0x4b,0xd0,0x0,0x0,0x0,0x0,0x32,0x57,0x3c,0xd0,0x0,0x0,0x0,0x0,0x33, - 0x47,0x2d,0xd0,0x0,0x0,0x0,0x0,0x34,0x40,0x59,0x50,0x0,0x0,0x0,0x0,0x35, - 0x1d,0xd5,0x50,0x0,0x0,0x0,0x0,0x36,0x32,0xb0,0x50,0x0,0x0,0x0,0x0,0x36, - 0xfd,0xb7,0x50,0x0,0x0,0x0,0x0,0x38,0x1b,0xcc,0xd0,0x0,0x0,0x0,0x0,0x38, - 0xe6,0xd3,0xd0,0x0,0x0,0x0,0x0,0x39,0xfb,0xae,0xd0,0x0,0x0,0x0,0x0,0x3a, - 0xc6,0xb5,0xd0,0x0,0x0,0x0,0x0,0x3b,0xdb,0x90,0xd0,0x0,0x0,0x0,0x0,0x3c, - 0xaf,0xd2,0x50,0x0,0x0,0x0,0x0,0x3d,0xbb,0x72,0xd0,0x0,0x0,0x0,0x0,0x3e, - 0x8f,0xb4,0x50,0x0,0x0,0x0,0x0,0x3f,0x9b,0x54,0xd0,0x0,0x0,0x0,0x0,0x40, - 0x66,0x5b,0xd0,0x0,0x0,0x0,0x0,0x45,0x44,0x35,0x50,0x0,0x0,0x0,0x0,0x45, - 0xf3,0x8c,0xd0,0x0,0x0,0x0,0x0,0x47,0x24,0x17,0x50,0x0,0x0,0x0,0x0,0x47, - 0xdc,0xa9,0x50,0x0,0x0,0x0,0x0,0x49,0x3,0xf9,0x50,0x0,0x0,0x0,0x0,0x49, - 0xb3,0x50,0xd0,0x0,0x0,0x0,0x0,0x4a,0xe3,0xdb,0x50,0x0,0x0,0x0,0x0,0x4b, - 0x9c,0x6d,0x50,0x0,0x0,0x0,0x0,0x4c,0xcc,0xf7,0xd0,0x0,0x0,0x0,0x0,0x4d, - 0x85,0x89,0xd0,0x0,0x0,0x0,0x0,0x4e,0xbf,0x4e,0xd0,0x0,0x0,0x0,0x0,0x4f, - 0x77,0xe0,0xd0,0x0,0x0,0x0,0x0,0x50,0x95,0xf6,0x50,0x0,0x0,0x0,0x0,0x51, - 0x3c,0x13,0x50,0x0,0x0,0x0,0x0,0x52,0x75,0xd8,0x50,0x0,0x0,0x0,0x0,0x53, - 0x1b,0xf5,0x50,0x0,0x0,0x0,0x0,0x54,0x55,0xba,0x50,0x0,0x0,0x0,0x0,0x54, - 0xfb,0xd7,0x50,0x0,0x0,0x0,0x0,0x56,0x35,0x9c,0x50,0x0,0x0,0x0,0x0,0x56, - 0xe4,0xf3,0xd0,0x0,0x0,0x0,0x0,0x58,0x1e,0xb8,0xd0,0x0,0x0,0x0,0x0,0x58, - 0xc4,0xd5,0xd0,0x0,0x0,0x0,0x0,0x59,0xfe,0x9a,0xd0,0x0,0x0,0x0,0x0,0x5a, - 0xa4,0xb7,0xd0,0x0,0x0,0x0,0x0,0x5b,0xde,0x7c,0xd0,0x0,0x0,0x0,0x0,0x5c, - 0x84,0x99,0xd0,0x0,0x0,0x0,0x0,0x5d,0xbe,0x5e,0xd0,0x0,0x0,0x0,0x0,0x5e, - 0x64,0x7b,0xd0,0x0,0x0,0x0,0x0,0x5f,0x9e,0x40,0xd0,0x0,0x0,0x0,0x0,0x60, - 0x4d,0x98,0x50,0x0,0x0,0x0,0x0,0x61,0x87,0x5d,0x50,0x0,0x0,0x0,0x0,0x62, - 0x2d,0x7a,0x50,0x0,0x0,0x0,0x0,0x63,0x67,0x3f,0x50,0x0,0x0,0x0,0x0,0x64, - 0xd,0x5c,0x50,0x0,0x0,0x0,0x0,0x65,0x47,0x21,0x50,0x0,0x0,0x0,0x0,0x65, - 0xed,0x3e,0x50,0x0,0x0,0x0,0x0,0x67,0x27,0x3,0x50,0x0,0x0,0x0,0x0,0x67, - 0xcd,0x20,0x50,0x0,0x0,0x0,0x0,0x69,0x6,0xe5,0x50,0x0,0x0,0x0,0x0,0x69, - 0xad,0x2,0x50,0x0,0x0,0x0,0x0,0x6a,0xe6,0xc7,0x50,0x0,0x0,0x0,0x0,0x6b, - 0x96,0x1e,0xd0,0x0,0x0,0x0,0x0,0x6c,0xcf,0xe3,0xd0,0x0,0x0,0x0,0x0,0x6d, - 0x76,0x0,0xd0,0x0,0x0,0x0,0x0,0x6e,0xaf,0xc5,0xd0,0x0,0x0,0x0,0x0,0x6f, - 0x55,0xe2,0xd0,0x0,0x0,0x0,0x0,0x70,0x8f,0xa7,0xd0,0x0,0x0,0x0,0x0,0x71, - 0x35,0xc4,0xd0,0x0,0x0,0x0,0x0,0x72,0x6f,0x89,0xd0,0x0,0x0,0x0,0x0,0x73, - 0x15,0xa6,0xd0,0x0,0x0,0x0,0x0,0x74,0x4f,0x6b,0xd0,0x0,0x0,0x0,0x0,0x74, - 0xfe,0xc3,0x50,0x0,0x0,0x0,0x0,0x76,0x38,0x88,0x50,0x0,0x0,0x0,0x0,0x76, - 0xde,0xa5,0x50,0x0,0x0,0x0,0x0,0x78,0x18,0x6a,0x50,0x0,0x0,0x0,0x0,0x78, - 0xbe,0x87,0x50,0x0,0x0,0x0,0x0,0x79,0xf8,0x4c,0x50,0x0,0x0,0x0,0x0,0x7a, - 0x9e,0x69,0x50,0x0,0x0,0x0,0x0,0x7b,0xd8,0x2e,0x50,0x0,0x0,0x0,0x0,0x7c, - 0x7e,0x4b,0x50,0x0,0x0,0x0,0x0,0x7d,0xb8,0x10,0x50,0x0,0x0,0x0,0x0,0x7e, - 0x5e,0x2d,0x50,0x0,0x0,0x0,0x0,0x7f,0x97,0xf2,0x50,0x0,0x1,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x4, - 0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0xff,0xff,0xb2,0xc8,0x0,0x0,0xff,0xff, - 0xb2,0xc0,0x0,0x4,0xff,0xff,0xc7,0xc0,0x1,0x8,0xff,0xff,0xb9,0xb0,0x0,0xc, - 0xff,0xff,0xb9,0xb0,0x0,0xc,0xff,0xff,0xc7,0xc0,0x1,0x8,0x4c,0x4d,0x54,0x0, - 0x48,0x4d,0x54,0x0,0x43,0x44,0x54,0x0,0x43,0x53,0x54,0x0,0x0,0x0,0x0,0x0, - 0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x43,0x53,0x54,0x35,0x43,0x44,0x54, - 0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30,0x2f,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e, - 0x30,0x2f,0x31,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/W-SU - 0x0,0x0,0x6,0x8, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, + 0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0, + 0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0, + 0x0,0x0,0x4,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0xa,0x47,0x4d,0x54,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/PRC + 0x0,0x0,0x1,0x9e, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x4e,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x26,0x80,0x0,0x0,0x0,0x9b, - 0x5f,0x1e,0xc7,0x9d,0x3e,0xf2,0x79,0x9e,0x2a,0xee,0xf9,0x9e,0xf7,0x39,0x69,0x9f, - 0x84,0x57,0xf9,0xa0,0xd8,0x6c,0xe9,0xa1,0x0,0x39,0x80,0xa1,0x3c,0xa6,0x40,0xa4, - 0x10,0x6d,0xc0,0xa4,0x3d,0x32,0xb0,0xa5,0x15,0x68,0xb0,0xa5,0x3d,0x3,0xc0,0xa7, - 0x1e,0x45,0x50,0xb5,0xa4,0x19,0x60,0x15,0x27,0xa7,0xd0,0x16,0x18,0xdc,0x40,0x17, - 0x8,0xdb,0x50,0x17,0xfa,0xf,0xc0,0x18,0xea,0xe,0xd0,0x19,0xdb,0x43,0x40,0x1a, - 0xcc,0x93,0xd0,0x1b,0xbc,0xa0,0xf0,0x1c,0xac,0x91,0xf0,0x1d,0x9c,0x82,0xf0,0x1e, - 0x8c,0x73,0xf0,0x1f,0x7c,0x64,0xf0,0x20,0x6c,0x55,0xf0,0x21,0x5c,0x46,0xf0,0x22, - 0x4c,0x37,0xf0,0x23,0x3c,0x28,0xf0,0x24,0x2c,0x19,0xf0,0x25,0x1c,0xa,0xf0,0x26, - 0xb,0xfb,0xf0,0x27,0x5,0x27,0x70,0x27,0xf5,0x18,0x70,0x28,0xe5,0x17,0x80,0x29, - 0x78,0xbf,0x80,0x29,0xd4,0xfa,0x70,0x2a,0xc4,0xeb,0x70,0x2b,0xb4,0xdc,0x70,0x2c, - 0xa4,0xcd,0x70,0x2d,0x94,0xbe,0x70,0x2e,0x84,0xaf,0x70,0x2f,0x74,0xa0,0x70,0x30, - 0x64,0x91,0x70,0x31,0x5d,0xbc,0xf0,0x32,0x72,0x97,0xf0,0x33,0x3d,0x9e,0xf0,0x34, - 0x52,0x79,0xf0,0x35,0x1d,0x80,0xf0,0x36,0x32,0x5b,0xf0,0x36,0xfd,0x62,0xf0,0x38, - 0x1b,0x78,0x70,0x38,0xdd,0x44,0xf0,0x39,0xfb,0x5a,0x70,0x3a,0xbd,0x26,0xf0,0x3b, - 0xdb,0x3c,0x70,0x3c,0xa6,0x43,0x70,0x3d,0xbb,0x1e,0x70,0x3e,0x86,0x25,0x70,0x3f, - 0x9b,0x0,0x70,0x40,0x66,0x7,0x70,0x41,0x84,0x1c,0xf0,0x42,0x45,0xe9,0x70,0x43, - 0x63,0xfe,0xf0,0x44,0x25,0xcb,0x70,0x45,0x43,0xe0,0xf0,0x46,0x5,0xad,0x70,0x47, - 0x23,0xc2,0xf0,0x47,0xee,0xc9,0xf0,0x49,0x3,0xa4,0xf0,0x49,0xce,0xab,0xf0,0x4a, - 0xe3,0x86,0xf0,0x4b,0xae,0x8d,0xf0,0x4c,0xcc,0xa3,0x70,0x4d,0x8e,0x6f,0xf0,0x54, - 0x4c,0x1d,0x60,0x1,0x3,0x2,0x3,0x4,0x2,0x4,0x5,0x6,0x7,0x8,0x7,0x6, - 0x9,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0xa,0xb,0xa,0xb,0xa,0xb,0xa, - 0xb,0xa,0xb,0xa,0xb,0xa,0xc,0xd,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb, - 0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb, - 0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xe, - 0xa,0x0,0x0,0x23,0x39,0x0,0x0,0x0,0x0,0x23,0x39,0x0,0x4,0x0,0x0,0x31, - 0x87,0x1,0x8,0x0,0x0,0x23,0x77,0x0,0x4,0x0,0x0,0x3f,0x97,0x1,0xc,0x0, - 0x0,0x38,0x40,0x1,0x11,0x0,0x0,0x2a,0x30,0x0,0x15,0x0,0x0,0x38,0x40,0x1, - 0x11,0x0,0x0,0x46,0x50,0x1,0x19,0x0,0x0,0x1c,0x20,0x0,0x1d,0x0,0x0,0x2a, - 0x30,0x0,0x15,0x0,0x0,0x38,0x40,0x1,0x11,0x0,0x0,0x2a,0x30,0x1,0x21,0x0, - 0x0,0x1c,0x20,0x0,0x1d,0x0,0x0,0x38,0x40,0x0,0x15,0x0,0x0,0x38,0x40,0x1, - 0x11,0x0,0x0,0x2a,0x30,0x0,0x15,0x4c,0x4d,0x54,0x0,0x4d,0x4d,0x54,0x0,0x4d, - 0x53,0x54,0x0,0x4d,0x44,0x53,0x54,0x0,0x4d,0x53,0x44,0x0,0x4d,0x53,0x4b,0x0, - 0x2b,0x30,0x35,0x0,0x45,0x45,0x54,0x0,0x45,0x45,0x53,0x54,0x0,0x0,0x0,0x0, - 0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x0,0x0, - 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x4f,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x26,0xf8,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x56,0xb6,0xc0,0xc7,0xff,0xff,0xff,0xff,0x9b, - 0x5f,0x1e,0xc7,0xff,0xff,0xff,0xff,0x9d,0x3e,0xf2,0x79,0xff,0xff,0xff,0xff,0x9e, - 0x2a,0xee,0xf9,0xff,0xff,0xff,0xff,0x9e,0xf7,0x39,0x69,0xff,0xff,0xff,0xff,0x9f, - 0x84,0x57,0xf9,0xff,0xff,0xff,0xff,0xa0,0xd8,0x6c,0xe9,0xff,0xff,0xff,0xff,0xa1, - 0x0,0x39,0x80,0xff,0xff,0xff,0xff,0xa1,0x3c,0xa6,0x40,0xff,0xff,0xff,0xff,0xa4, - 0x10,0x6d,0xc0,0xff,0xff,0xff,0xff,0xa4,0x3d,0x32,0xb0,0xff,0xff,0xff,0xff,0xa5, - 0x15,0x68,0xb0,0xff,0xff,0xff,0xff,0xa5,0x3d,0x3,0xc0,0xff,0xff,0xff,0xff,0xa7, - 0x1e,0x45,0x50,0xff,0xff,0xff,0xff,0xb5,0xa4,0x19,0x60,0x0,0x0,0x0,0x0,0x15, - 0x27,0xa7,0xd0,0x0,0x0,0x0,0x0,0x16,0x18,0xdc,0x40,0x0,0x0,0x0,0x0,0x17, - 0x8,0xdb,0x50,0x0,0x0,0x0,0x0,0x17,0xfa,0xf,0xc0,0x0,0x0,0x0,0x0,0x18, - 0xea,0xe,0xd0,0x0,0x0,0x0,0x0,0x19,0xdb,0x43,0x40,0x0,0x0,0x0,0x0,0x1a, - 0xcc,0x93,0xd0,0x0,0x0,0x0,0x0,0x1b,0xbc,0xa0,0xf0,0x0,0x0,0x0,0x0,0x1c, - 0xac,0x91,0xf0,0x0,0x0,0x0,0x0,0x1d,0x9c,0x82,0xf0,0x0,0x0,0x0,0x0,0x1e, - 0x8c,0x73,0xf0,0x0,0x0,0x0,0x0,0x1f,0x7c,0x64,0xf0,0x0,0x0,0x0,0x0,0x20, - 0x6c,0x55,0xf0,0x0,0x0,0x0,0x0,0x21,0x5c,0x46,0xf0,0x0,0x0,0x0,0x0,0x22, - 0x4c,0x37,0xf0,0x0,0x0,0x0,0x0,0x23,0x3c,0x28,0xf0,0x0,0x0,0x0,0x0,0x24, - 0x2c,0x19,0xf0,0x0,0x0,0x0,0x0,0x25,0x1c,0xa,0xf0,0x0,0x0,0x0,0x0,0x26, - 0xb,0xfb,0xf0,0x0,0x0,0x0,0x0,0x27,0x5,0x27,0x70,0x0,0x0,0x0,0x0,0x27, - 0xf5,0x18,0x70,0x0,0x0,0x0,0x0,0x28,0xe5,0x17,0x80,0x0,0x0,0x0,0x0,0x29, - 0x78,0xbf,0x80,0x0,0x0,0x0,0x0,0x29,0xd4,0xfa,0x70,0x0,0x0,0x0,0x0,0x2a, - 0xc4,0xeb,0x70,0x0,0x0,0x0,0x0,0x2b,0xb4,0xdc,0x70,0x0,0x0,0x0,0x0,0x2c, - 0xa4,0xcd,0x70,0x0,0x0,0x0,0x0,0x2d,0x94,0xbe,0x70,0x0,0x0,0x0,0x0,0x2e, - 0x84,0xaf,0x70,0x0,0x0,0x0,0x0,0x2f,0x74,0xa0,0x70,0x0,0x0,0x0,0x0,0x30, - 0x64,0x91,0x70,0x0,0x0,0x0,0x0,0x31,0x5d,0xbc,0xf0,0x0,0x0,0x0,0x0,0x32, - 0x72,0x97,0xf0,0x0,0x0,0x0,0x0,0x33,0x3d,0x9e,0xf0,0x0,0x0,0x0,0x0,0x34, - 0x52,0x79,0xf0,0x0,0x0,0x0,0x0,0x35,0x1d,0x80,0xf0,0x0,0x0,0x0,0x0,0x36, - 0x32,0x5b,0xf0,0x0,0x0,0x0,0x0,0x36,0xfd,0x62,0xf0,0x0,0x0,0x0,0x0,0x38, - 0x1b,0x78,0x70,0x0,0x0,0x0,0x0,0x38,0xdd,0x44,0xf0,0x0,0x0,0x0,0x0,0x39, - 0xfb,0x5a,0x70,0x0,0x0,0x0,0x0,0x3a,0xbd,0x26,0xf0,0x0,0x0,0x0,0x0,0x3b, - 0xdb,0x3c,0x70,0x0,0x0,0x0,0x0,0x3c,0xa6,0x43,0x70,0x0,0x0,0x0,0x0,0x3d, - 0xbb,0x1e,0x70,0x0,0x0,0x0,0x0,0x3e,0x86,0x25,0x70,0x0,0x0,0x0,0x0,0x3f, - 0x9b,0x0,0x70,0x0,0x0,0x0,0x0,0x40,0x66,0x7,0x70,0x0,0x0,0x0,0x0,0x41, - 0x84,0x1c,0xf0,0x0,0x0,0x0,0x0,0x42,0x45,0xe9,0x70,0x0,0x0,0x0,0x0,0x43, - 0x63,0xfe,0xf0,0x0,0x0,0x0,0x0,0x44,0x25,0xcb,0x70,0x0,0x0,0x0,0x0,0x45, - 0x43,0xe0,0xf0,0x0,0x0,0x0,0x0,0x46,0x5,0xad,0x70,0x0,0x0,0x0,0x0,0x47, - 0x23,0xc2,0xf0,0x0,0x0,0x0,0x0,0x47,0xee,0xc9,0xf0,0x0,0x0,0x0,0x0,0x49, - 0x3,0xa4,0xf0,0x0,0x0,0x0,0x0,0x49,0xce,0xab,0xf0,0x0,0x0,0x0,0x0,0x4a, - 0xe3,0x86,0xf0,0x0,0x0,0x0,0x0,0x4b,0xae,0x8d,0xf0,0x0,0x0,0x0,0x0,0x4c, - 0xcc,0xa3,0x70,0x0,0x0,0x0,0x0,0x4d,0x8e,0x6f,0xf0,0x0,0x0,0x0,0x0,0x54, - 0x4c,0x1d,0x60,0x0,0x1,0x3,0x2,0x3,0x4,0x2,0x4,0x5,0x6,0x7,0x8,0x7, - 0x6,0x9,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0xa,0xb,0xa,0xb,0xa,0xb, - 0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xc,0xd,0xa,0xb,0xa,0xb,0xa,0xb,0xa, - 0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa, - 0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa, - 0xe,0xa,0x0,0x0,0x23,0x39,0x0,0x0,0x0,0x0,0x23,0x39,0x0,0x4,0x0,0x0, - 0x31,0x87,0x1,0x8,0x0,0x0,0x23,0x77,0x0,0x4,0x0,0x0,0x3f,0x97,0x1,0xc, - 0x0,0x0,0x38,0x40,0x1,0x11,0x0,0x0,0x2a,0x30,0x0,0x15,0x0,0x0,0x38,0x40, - 0x1,0x11,0x0,0x0,0x46,0x50,0x1,0x19,0x0,0x0,0x1c,0x20,0x0,0x1d,0x0,0x0, - 0x2a,0x30,0x0,0x15,0x0,0x0,0x38,0x40,0x1,0x11,0x0,0x0,0x2a,0x30,0x1,0x21, - 0x0,0x0,0x1c,0x20,0x0,0x1d,0x0,0x0,0x38,0x40,0x0,0x15,0x0,0x0,0x38,0x40, - 0x1,0x11,0x0,0x0,0x2a,0x30,0x0,0x15,0x4c,0x4d,0x54,0x0,0x4d,0x4d,0x54,0x0, - 0x4d,0x53,0x54,0x0,0x4d,0x44,0x53,0x54,0x0,0x4d,0x53,0x44,0x0,0x4d,0x53,0x4b, - 0x0,0x2b,0x30,0x35,0x0,0x45,0x45,0x54,0x0,0x45,0x45,0x53,0x54,0x0,0x0,0x0, - 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x0, - 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0xa,0x4d,0x53,0x4b,0x2d,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Navajo - 0x0,0x0,0x9,0x95, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x9e,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0x9e, - 0xa6,0x3a,0x90,0x9f,0xbb,0x7,0x80,0xa0,0x86,0x1c,0x90,0xa1,0x9a,0xe9,0x80,0xa2, - 0x65,0xfe,0x90,0xa3,0x84,0x6,0x0,0xa4,0x45,0xe0,0x90,0xa4,0x8f,0xa6,0x80,0xcb, - 0x89,0xc,0x90,0xd2,0x23,0xf4,0x70,0xd2,0x61,0x18,0x0,0xf7,0x2f,0x76,0x90,0xf8, - 0x28,0x94,0x0,0xf9,0xf,0x58,0x90,0xfa,0x8,0x76,0x0,0xfa,0xf8,0x75,0x10,0xfb, - 0xe8,0x58,0x0,0xfc,0xd8,0x57,0x10,0xfd,0xc8,0x3a,0x0,0xfe,0xb8,0x39,0x10,0xff, - 0xa8,0x1c,0x0,0x0,0x98,0x1b,0x10,0x1,0x87,0xfe,0x0,0x2,0x77,0xfd,0x10,0x3, - 0x71,0x1a,0x80,0x4,0x61,0x19,0x90,0x5,0x50,0xfc,0x80,0x6,0x40,0xfb,0x90,0x7, - 0x30,0xde,0x80,0x7,0x8d,0x35,0x90,0x9,0x10,0xc0,0x80,0x9,0xad,0xb1,0x10,0xa, - 0xf0,0xa2,0x80,0xb,0xe0,0xa1,0x90,0xc,0xd9,0xbf,0x0,0xd,0xc0,0x83,0x90,0xe, - 0xb9,0xa1,0x0,0xf,0xa9,0xa0,0x10,0x10,0x99,0x83,0x0,0x11,0x89,0x82,0x10,0x12, - 0x79,0x65,0x0,0x13,0x69,0x64,0x10,0x14,0x59,0x47,0x0,0x15,0x49,0x46,0x10,0x16, - 0x39,0x29,0x0,0x17,0x29,0x28,0x10,0x18,0x22,0x45,0x80,0x19,0x9,0xa,0x10,0x1a, - 0x2,0x27,0x80,0x1a,0xf2,0x26,0x90,0x1b,0xe2,0x9,0x80,0x1c,0xd2,0x8,0x90,0x1d, - 0xc1,0xeb,0x80,0x1e,0xb1,0xea,0x90,0x1f,0xa1,0xcd,0x80,0x20,0x76,0x1d,0x10,0x21, - 0x81,0xaf,0x80,0x22,0x55,0xff,0x10,0x23,0x6a,0xcc,0x0,0x24,0x35,0xe1,0x10,0x25, - 0x4a,0xae,0x0,0x26,0x15,0xc3,0x10,0x27,0x2a,0x90,0x0,0x27,0xfe,0xdf,0x90,0x29, - 0xa,0x72,0x0,0x29,0xde,0xc1,0x90,0x2a,0xea,0x54,0x0,0x2b,0xbe,0xa3,0x90,0x2c, - 0xd3,0x70,0x80,0x2d,0x9e,0x85,0x90,0x2e,0xb3,0x52,0x80,0x2f,0x7e,0x67,0x90,0x30, - 0x93,0x34,0x80,0x31,0x67,0x84,0x10,0x32,0x73,0x16,0x80,0x33,0x47,0x66,0x10,0x34, - 0x52,0xf8,0x80,0x35,0x27,0x48,0x10,0x36,0x32,0xda,0x80,0x37,0x7,0x2a,0x10,0x38, - 0x1b,0xf7,0x0,0x38,0xe7,0xc,0x10,0x39,0xfb,0xd9,0x0,0x3a,0xc6,0xee,0x10,0x3b, - 0xdb,0xbb,0x0,0x3c,0xb0,0xa,0x90,0x3d,0xbb,0x9d,0x0,0x3e,0x8f,0xec,0x90,0x3f, - 0x9b,0x7f,0x0,0x40,0x6f,0xce,0x90,0x41,0x84,0x9b,0x80,0x42,0x4f,0xb0,0x90,0x43, - 0x64,0x7d,0x80,0x44,0x2f,0x92,0x90,0x45,0x44,0x5f,0x80,0x45,0xf3,0xc5,0x10,0x47, - 0x2d,0x7c,0x0,0x47,0xd3,0xa7,0x10,0x49,0xd,0x5e,0x0,0x49,0xb3,0x89,0x10,0x4a, - 0xed,0x40,0x0,0x4b,0x9c,0xa5,0x90,0x4c,0xd6,0x5c,0x80,0x4d,0x7c,0x87,0x90,0x4e, - 0xb6,0x3e,0x80,0x4f,0x5c,0x69,0x90,0x50,0x96,0x20,0x80,0x51,0x3c,0x4b,0x90,0x52, - 0x76,0x2,0x80,0x53,0x1c,0x2d,0x90,0x54,0x55,0xe4,0x80,0x54,0xfc,0xf,0x90,0x56, - 0x35,0xc6,0x80,0x56,0xe5,0x2c,0x10,0x58,0x1e,0xe3,0x0,0x58,0xc5,0xe,0x10,0x59, - 0xfe,0xc5,0x0,0x5a,0xa4,0xf0,0x10,0x5b,0xde,0xa7,0x0,0x5c,0x84,0xd2,0x10,0x5d, - 0xbe,0x89,0x0,0x5e,0x64,0xb4,0x10,0x5f,0x9e,0x6b,0x0,0x60,0x4d,0xd0,0x90,0x61, - 0x87,0x87,0x80,0x62,0x2d,0xb2,0x90,0x63,0x67,0x69,0x80,0x64,0xd,0x94,0x90,0x65, - 0x47,0x4b,0x80,0x65,0xed,0x76,0x90,0x67,0x27,0x2d,0x80,0x67,0xcd,0x58,0x90,0x69, - 0x7,0xf,0x80,0x69,0xad,0x3a,0x90,0x6a,0xe6,0xf1,0x80,0x6b,0x96,0x57,0x10,0x6c, - 0xd0,0xe,0x0,0x6d,0x76,0x39,0x10,0x6e,0xaf,0xf0,0x0,0x6f,0x56,0x1b,0x10,0x70, - 0x8f,0xd2,0x0,0x71,0x35,0xfd,0x10,0x72,0x6f,0xb4,0x0,0x73,0x15,0xdf,0x10,0x74, - 0x4f,0x96,0x0,0x74,0xfe,0xfb,0x90,0x76,0x38,0xb2,0x80,0x76,0xde,0xdd,0x90,0x78, - 0x18,0x94,0x80,0x78,0xbe,0xbf,0x90,0x79,0xf8,0x76,0x80,0x7a,0x9e,0xa1,0x90,0x7b, - 0xd8,0x58,0x80,0x7c,0x7e,0x83,0x90,0x7d,0xb8,0x3a,0x80,0x7e,0x5e,0x65,0x90,0x7f, - 0x98,0x1c,0x80,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0xff,0xff,0x9d,0x94,0x0,0x0,0xff,0xff,0xab,0xa0,0x1,0x4,0xff,0xff,0x9d, - 0x90,0x0,0x8,0xff,0xff,0xab,0xa0,0x1,0xc,0xff,0xff,0xab,0xa0,0x1,0x10,0x4c, - 0x4d,0x54,0x0,0x4d,0x44,0x54,0x0,0x4d,0x53,0x54,0x0,0x4d,0x57,0x54,0x0,0x4d, - 0x50,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x1,0x54,0x5a,0x69, - 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x9f,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0x5e,0x4,0xc,0xb0,0xff,0xff,0xff,0xff,0x9e,0xa6,0x3a, - 0x90,0xff,0xff,0xff,0xff,0x9f,0xbb,0x7,0x80,0xff,0xff,0xff,0xff,0xa0,0x86,0x1c, - 0x90,0xff,0xff,0xff,0xff,0xa1,0x9a,0xe9,0x80,0xff,0xff,0xff,0xff,0xa2,0x65,0xfe, - 0x90,0xff,0xff,0xff,0xff,0xa3,0x84,0x6,0x0,0xff,0xff,0xff,0xff,0xa4,0x45,0xe0, - 0x90,0xff,0xff,0xff,0xff,0xa4,0x8f,0xa6,0x80,0xff,0xff,0xff,0xff,0xcb,0x89,0xc, - 0x90,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x61,0x18, - 0x0,0xff,0xff,0xff,0xff,0xf7,0x2f,0x76,0x90,0xff,0xff,0xff,0xff,0xf8,0x28,0x94, - 0x0,0xff,0xff,0xff,0xff,0xf9,0xf,0x58,0x90,0xff,0xff,0xff,0xff,0xfa,0x8,0x76, - 0x0,0xff,0xff,0xff,0xff,0xfa,0xf8,0x75,0x10,0xff,0xff,0xff,0xff,0xfb,0xe8,0x58, - 0x0,0xff,0xff,0xff,0xff,0xfc,0xd8,0x57,0x10,0xff,0xff,0xff,0xff,0xfd,0xc8,0x3a, - 0x0,0xff,0xff,0xff,0xff,0xfe,0xb8,0x39,0x10,0xff,0xff,0xff,0xff,0xff,0xa8,0x1c, - 0x0,0x0,0x0,0x0,0x0,0x0,0x98,0x1b,0x10,0x0,0x0,0x0,0x0,0x1,0x87,0xfe, - 0x0,0x0,0x0,0x0,0x0,0x2,0x77,0xfd,0x10,0x0,0x0,0x0,0x0,0x3,0x71,0x1a, - 0x80,0x0,0x0,0x0,0x0,0x4,0x61,0x19,0x90,0x0,0x0,0x0,0x0,0x5,0x50,0xfc, - 0x80,0x0,0x0,0x0,0x0,0x6,0x40,0xfb,0x90,0x0,0x0,0x0,0x0,0x7,0x30,0xde, - 0x80,0x0,0x0,0x0,0x0,0x7,0x8d,0x35,0x90,0x0,0x0,0x0,0x0,0x9,0x10,0xc0, - 0x80,0x0,0x0,0x0,0x0,0x9,0xad,0xb1,0x10,0x0,0x0,0x0,0x0,0xa,0xf0,0xa2, - 0x80,0x0,0x0,0x0,0x0,0xb,0xe0,0xa1,0x90,0x0,0x0,0x0,0x0,0xc,0xd9,0xbf, - 0x0,0x0,0x0,0x0,0x0,0xd,0xc0,0x83,0x90,0x0,0x0,0x0,0x0,0xe,0xb9,0xa1, - 0x0,0x0,0x0,0x0,0x0,0xf,0xa9,0xa0,0x10,0x0,0x0,0x0,0x0,0x10,0x99,0x83, - 0x0,0x0,0x0,0x0,0x0,0x11,0x89,0x82,0x10,0x0,0x0,0x0,0x0,0x12,0x79,0x65, - 0x0,0x0,0x0,0x0,0x0,0x13,0x69,0x64,0x10,0x0,0x0,0x0,0x0,0x14,0x59,0x47, - 0x0,0x0,0x0,0x0,0x0,0x15,0x49,0x46,0x10,0x0,0x0,0x0,0x0,0x16,0x39,0x29, - 0x0,0x0,0x0,0x0,0x0,0x17,0x29,0x28,0x10,0x0,0x0,0x0,0x0,0x18,0x22,0x45, - 0x80,0x0,0x0,0x0,0x0,0x19,0x9,0xa,0x10,0x0,0x0,0x0,0x0,0x1a,0x2,0x27, - 0x80,0x0,0x0,0x0,0x0,0x1a,0xf2,0x26,0x90,0x0,0x0,0x0,0x0,0x1b,0xe2,0x9, - 0x80,0x0,0x0,0x0,0x0,0x1c,0xd2,0x8,0x90,0x0,0x0,0x0,0x0,0x1d,0xc1,0xeb, - 0x80,0x0,0x0,0x0,0x0,0x1e,0xb1,0xea,0x90,0x0,0x0,0x0,0x0,0x1f,0xa1,0xcd, - 0x80,0x0,0x0,0x0,0x0,0x20,0x76,0x1d,0x10,0x0,0x0,0x0,0x0,0x21,0x81,0xaf, - 0x80,0x0,0x0,0x0,0x0,0x22,0x55,0xff,0x10,0x0,0x0,0x0,0x0,0x23,0x6a,0xcc, - 0x0,0x0,0x0,0x0,0x0,0x24,0x35,0xe1,0x10,0x0,0x0,0x0,0x0,0x25,0x4a,0xae, - 0x0,0x0,0x0,0x0,0x0,0x26,0x15,0xc3,0x10,0x0,0x0,0x0,0x0,0x27,0x2a,0x90, - 0x0,0x0,0x0,0x0,0x0,0x27,0xfe,0xdf,0x90,0x0,0x0,0x0,0x0,0x29,0xa,0x72, - 0x0,0x0,0x0,0x0,0x0,0x29,0xde,0xc1,0x90,0x0,0x0,0x0,0x0,0x2a,0xea,0x54, - 0x0,0x0,0x0,0x0,0x0,0x2b,0xbe,0xa3,0x90,0x0,0x0,0x0,0x0,0x2c,0xd3,0x70, - 0x80,0x0,0x0,0x0,0x0,0x2d,0x9e,0x85,0x90,0x0,0x0,0x0,0x0,0x2e,0xb3,0x52, - 0x80,0x0,0x0,0x0,0x0,0x2f,0x7e,0x67,0x90,0x0,0x0,0x0,0x0,0x30,0x93,0x34, - 0x80,0x0,0x0,0x0,0x0,0x31,0x67,0x84,0x10,0x0,0x0,0x0,0x0,0x32,0x73,0x16, - 0x80,0x0,0x0,0x0,0x0,0x33,0x47,0x66,0x10,0x0,0x0,0x0,0x0,0x34,0x52,0xf8, - 0x80,0x0,0x0,0x0,0x0,0x35,0x27,0x48,0x10,0x0,0x0,0x0,0x0,0x36,0x32,0xda, - 0x80,0x0,0x0,0x0,0x0,0x37,0x7,0x2a,0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0xf7, - 0x0,0x0,0x0,0x0,0x0,0x38,0xe7,0xc,0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0xd9, - 0x0,0x0,0x0,0x0,0x0,0x3a,0xc6,0xee,0x10,0x0,0x0,0x0,0x0,0x3b,0xdb,0xbb, - 0x0,0x0,0x0,0x0,0x0,0x3c,0xb0,0xa,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x9d, - 0x0,0x0,0x0,0x0,0x0,0x3e,0x8f,0xec,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x7f, - 0x0,0x0,0x0,0x0,0x0,0x40,0x6f,0xce,0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x9b, - 0x80,0x0,0x0,0x0,0x0,0x42,0x4f,0xb0,0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x7d, - 0x80,0x0,0x0,0x0,0x0,0x44,0x2f,0x92,0x90,0x0,0x0,0x0,0x0,0x45,0x44,0x5f, - 0x80,0x0,0x0,0x0,0x0,0x45,0xf3,0xc5,0x10,0x0,0x0,0x0,0x0,0x47,0x2d,0x7c, - 0x0,0x0,0x0,0x0,0x0,0x47,0xd3,0xa7,0x10,0x0,0x0,0x0,0x0,0x49,0xd,0x5e, - 0x0,0x0,0x0,0x0,0x0,0x49,0xb3,0x89,0x10,0x0,0x0,0x0,0x0,0x4a,0xed,0x40, - 0x0,0x0,0x0,0x0,0x0,0x4b,0x9c,0xa5,0x90,0x0,0x0,0x0,0x0,0x4c,0xd6,0x5c, - 0x80,0x0,0x0,0x0,0x0,0x4d,0x7c,0x87,0x90,0x0,0x0,0x0,0x0,0x4e,0xb6,0x3e, - 0x80,0x0,0x0,0x0,0x0,0x4f,0x5c,0x69,0x90,0x0,0x0,0x0,0x0,0x50,0x96,0x20, - 0x80,0x0,0x0,0x0,0x0,0x51,0x3c,0x4b,0x90,0x0,0x0,0x0,0x0,0x52,0x76,0x2, - 0x80,0x0,0x0,0x0,0x0,0x53,0x1c,0x2d,0x90,0x0,0x0,0x0,0x0,0x54,0x55,0xe4, - 0x80,0x0,0x0,0x0,0x0,0x54,0xfc,0xf,0x90,0x0,0x0,0x0,0x0,0x56,0x35,0xc6, - 0x80,0x0,0x0,0x0,0x0,0x56,0xe5,0x2c,0x10,0x0,0x0,0x0,0x0,0x58,0x1e,0xe3, - 0x0,0x0,0x0,0x0,0x0,0x58,0xc5,0xe,0x10,0x0,0x0,0x0,0x0,0x59,0xfe,0xc5, - 0x0,0x0,0x0,0x0,0x0,0x5a,0xa4,0xf0,0x10,0x0,0x0,0x0,0x0,0x5b,0xde,0xa7, - 0x0,0x0,0x0,0x0,0x0,0x5c,0x84,0xd2,0x10,0x0,0x0,0x0,0x0,0x5d,0xbe,0x89, - 0x0,0x0,0x0,0x0,0x0,0x5e,0x64,0xb4,0x10,0x0,0x0,0x0,0x0,0x5f,0x9e,0x6b, - 0x0,0x0,0x0,0x0,0x0,0x60,0x4d,0xd0,0x90,0x0,0x0,0x0,0x0,0x61,0x87,0x87, - 0x80,0x0,0x0,0x0,0x0,0x62,0x2d,0xb2,0x90,0x0,0x0,0x0,0x0,0x63,0x67,0x69, - 0x80,0x0,0x0,0x0,0x0,0x64,0xd,0x94,0x90,0x0,0x0,0x0,0x0,0x65,0x47,0x4b, - 0x80,0x0,0x0,0x0,0x0,0x65,0xed,0x76,0x90,0x0,0x0,0x0,0x0,0x67,0x27,0x2d, - 0x80,0x0,0x0,0x0,0x0,0x67,0xcd,0x58,0x90,0x0,0x0,0x0,0x0,0x69,0x7,0xf, - 0x80,0x0,0x0,0x0,0x0,0x69,0xad,0x3a,0x90,0x0,0x0,0x0,0x0,0x6a,0xe6,0xf1, - 0x80,0x0,0x0,0x0,0x0,0x6b,0x96,0x57,0x10,0x0,0x0,0x0,0x0,0x6c,0xd0,0xe, - 0x0,0x0,0x0,0x0,0x0,0x6d,0x76,0x39,0x10,0x0,0x0,0x0,0x0,0x6e,0xaf,0xf0, - 0x0,0x0,0x0,0x0,0x0,0x6f,0x56,0x1b,0x10,0x0,0x0,0x0,0x0,0x70,0x8f,0xd2, - 0x0,0x0,0x0,0x0,0x0,0x71,0x35,0xfd,0x10,0x0,0x0,0x0,0x0,0x72,0x6f,0xb4, - 0x0,0x0,0x0,0x0,0x0,0x73,0x15,0xdf,0x10,0x0,0x0,0x0,0x0,0x74,0x4f,0x96, - 0x0,0x0,0x0,0x0,0x0,0x74,0xfe,0xfb,0x90,0x0,0x0,0x0,0x0,0x76,0x38,0xb2, - 0x80,0x0,0x0,0x0,0x0,0x76,0xde,0xdd,0x90,0x0,0x0,0x0,0x0,0x78,0x18,0x94, - 0x80,0x0,0x0,0x0,0x0,0x78,0xbe,0xbf,0x90,0x0,0x0,0x0,0x0,0x79,0xf8,0x76, - 0x80,0x0,0x0,0x0,0x0,0x7a,0x9e,0xa1,0x90,0x0,0x0,0x0,0x0,0x7b,0xd8,0x58, - 0x80,0x0,0x0,0x0,0x0,0x7c,0x7e,0x83,0x90,0x0,0x0,0x0,0x0,0x7d,0xb8,0x3a, - 0x80,0x0,0x0,0x0,0x0,0x7e,0x5e,0x65,0x90,0x0,0x0,0x0,0x0,0x7f,0x98,0x1c, - 0x80,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x11,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0xc8, + 0x5c,0x1,0x80,0xc8,0xfa,0x27,0x70,0xc9,0xd5,0xe,0x80,0xca,0xdb,0x5a,0xf0,0x1e, + 0xba,0x36,0x0,0x1f,0x69,0x7f,0x70,0x20,0x7e,0x68,0x80,0x21,0x49,0x61,0x70,0x22, + 0x5e,0x4a,0x80,0x23,0x29,0x43,0x70,0x24,0x47,0x67,0x0,0x25,0x12,0x5f,0xf0,0x26, + 0x27,0x49,0x0,0x26,0xf2,0x41,0xf0,0x28,0x7,0x2b,0x0,0x28,0xd2,0x23,0xf0,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0xff,0xff,0x9d,0x94,0x0,0x0,0xff,0xff,0xab,0xa0,0x1,0x4,0xff,0xff,0x9d,0x90, - 0x0,0x8,0xff,0xff,0xab,0xa0,0x1,0xc,0xff,0xff,0xab,0xa0,0x1,0x10,0x4c,0x4d, - 0x54,0x0,0x4d,0x44,0x54,0x0,0x4d,0x53,0x54,0x0,0x4d,0x57,0x54,0x0,0x4d,0x50, - 0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x1,0xa,0x4d,0x53,0x54, - 0x37,0x4d,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e, - 0x31,0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Egypt - 0x0,0x0,0x7,0xb4, + 0x0,0x0,0x71,0xd7,0x0,0x0,0x0,0x0,0x7e,0x90,0x1,0x4,0x0,0x0,0x70,0x80, + 0x0,0x8,0x4c,0x4d,0x54,0x0,0x43,0x44,0x54,0x0,0x43,0x53,0x54,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc, + 0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x7e,0x36,0x43,0x29, + 0xff,0xff,0xff,0xff,0xc8,0x5c,0x1,0x80,0xff,0xff,0xff,0xff,0xc8,0xfa,0x27,0x70, + 0xff,0xff,0xff,0xff,0xc9,0xd5,0xe,0x80,0xff,0xff,0xff,0xff,0xca,0xdb,0x5a,0xf0, + 0x0,0x0,0x0,0x0,0x1e,0xba,0x36,0x0,0x0,0x0,0x0,0x0,0x1f,0x69,0x7f,0x70, + 0x0,0x0,0x0,0x0,0x20,0x7e,0x68,0x80,0x0,0x0,0x0,0x0,0x21,0x49,0x61,0x70, + 0x0,0x0,0x0,0x0,0x22,0x5e,0x4a,0x80,0x0,0x0,0x0,0x0,0x23,0x29,0x43,0x70, + 0x0,0x0,0x0,0x0,0x24,0x47,0x67,0x0,0x0,0x0,0x0,0x0,0x25,0x12,0x5f,0xf0, + 0x0,0x0,0x0,0x0,0x26,0x27,0x49,0x0,0x0,0x0,0x0,0x0,0x26,0xf2,0x41,0xf0, + 0x0,0x0,0x0,0x0,0x28,0x7,0x2b,0x0,0x0,0x0,0x0,0x0,0x28,0xd2,0x23,0xf0, + 0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x0,0x0,0x71,0xd7,0x0,0x0,0x0,0x0,0x7e,0x90,0x1,0x4,0x0,0x0, + 0x70,0x80,0x0,0x8,0x4c,0x4d,0x54,0x0,0x43,0x44,0x54,0x0,0x43,0x53,0x54,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x43,0x53,0x54,0x2d,0x38,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Universal + 0x0,0x0,0x0,0x7f, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x7f,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0xc8, - 0x93,0xb4,0xe0,0xc8,0xfa,0x7b,0xd0,0xc9,0xfc,0xef,0xe0,0xca,0xc7,0xe8,0xd0,0xcb, - 0xcb,0xae,0x60,0xcc,0xdf,0x29,0xd0,0xcd,0xac,0xe1,0xe0,0xce,0xc6,0xf4,0xd0,0xcf, - 0x8f,0x66,0xe0,0xd0,0xa9,0x79,0xd0,0xd1,0x84,0x60,0xe0,0xd2,0x8a,0xad,0x50,0xe8, - 0x36,0x63,0x60,0xe8,0xf4,0x2d,0x50,0xea,0xb,0xb9,0x60,0xea,0xd5,0x60,0xd0,0xeb, - 0xec,0xfa,0xf0,0xec,0xb5,0x6d,0x0,0xed,0xcf,0x7f,0xf0,0xee,0x97,0xf2,0x0,0xef, - 0xb0,0xb3,0x70,0xf0,0x79,0x25,0x80,0xf1,0x91,0xe6,0xf0,0xf2,0x5a,0x59,0x0,0xf3, - 0x73,0x1a,0x70,0xf4,0x3b,0x8c,0x80,0xf5,0x55,0x9f,0x70,0xf6,0x1e,0x11,0x80,0xf7, - 0x36,0xd2,0xf0,0xf7,0xff,0x45,0x0,0xf9,0x18,0x6,0x70,0xf9,0xe1,0xca,0x0,0xfa, - 0xf9,0x39,0xf0,0xfb,0xc2,0xfd,0x80,0xfc,0xdb,0xbe,0xf0,0xfd,0xa5,0x82,0x80,0xfe, - 0xbc,0xf2,0x70,0xff,0x86,0xb6,0x0,0x0,0x9e,0x25,0xf0,0x1,0x67,0xe9,0x80,0x2, - 0x7f,0x59,0x70,0x3,0x49,0x1d,0x0,0x4,0x61,0xde,0x70,0x5,0x2b,0xa2,0x0,0x6, - 0x43,0x11,0xf0,0x7,0xc,0xd5,0x80,0x8,0x24,0x45,0x70,0x8,0xee,0x9,0x0,0xa, - 0x5,0x78,0xf0,0xa,0xcf,0x3c,0x80,0xb,0xe7,0xfd,0xf0,0xc,0xb1,0xc1,0x80,0xd, - 0xc9,0x31,0x70,0xe,0x92,0xf5,0x0,0xf,0xaa,0x64,0xf0,0x10,0x74,0x28,0x80,0x11, - 0x8b,0x98,0x70,0x12,0x55,0x5c,0x0,0x13,0x6e,0x1d,0x70,0x14,0x37,0xe1,0x0,0x15, - 0x4f,0x50,0xf0,0x16,0x19,0x14,0x80,0x17,0xa0,0x93,0xf0,0x17,0xfa,0x48,0x0,0x19, - 0x70,0xa3,0xf0,0x19,0xdb,0x7b,0x80,0x1a,0xf4,0x3c,0xf0,0x1b,0xbe,0x0,0x80,0x1c, - 0xd5,0x70,0x70,0x1d,0x9f,0x34,0x0,0x1e,0xb6,0xa3,0xf0,0x1f,0x80,0x67,0x80,0x20, - 0x97,0xd7,0x70,0x21,0x61,0x9b,0x0,0x22,0x7a,0x5c,0x70,0x23,0x44,0x20,0x0,0x24, - 0x62,0x27,0x70,0x25,0x25,0x53,0x80,0x26,0x3c,0xc3,0x70,0x27,0x6,0x87,0x0,0x28, - 0x1d,0xf6,0xf0,0x28,0xe7,0xba,0x80,0x2a,0x0,0x7b,0xf0,0x2a,0xca,0x3f,0x80,0x2b, - 0xe1,0xaf,0x70,0x2c,0xab,0x73,0x0,0x2d,0xc2,0xe2,0xf0,0x2e,0x8c,0xa6,0x80,0x2f, - 0xa0,0x13,0xe0,0x30,0x6b,0xc,0xd0,0x31,0x7f,0xf5,0xe0,0x32,0x4a,0xee,0xd0,0x33, - 0x5f,0xd7,0xe0,0x34,0x2a,0xd0,0xd0,0x35,0x3f,0xb9,0xe0,0x36,0xa,0xb2,0xd0,0x37, - 0x28,0xd6,0x60,0x37,0xf3,0xcf,0x50,0x39,0x8,0xb8,0x60,0x39,0xd3,0xb1,0x50,0x3a, - 0xe8,0x9a,0x60,0x3b,0xb3,0x93,0x50,0x3c,0xc8,0x7c,0x60,0x3d,0x93,0x75,0x50,0x3e, - 0xa8,0x5e,0x60,0x3f,0x73,0x57,0x50,0x40,0x91,0x7a,0xe0,0x41,0x5c,0x73,0xd0,0x42, - 0x71,0x5c,0xe0,0x43,0x3c,0x55,0xd0,0x44,0x51,0x3e,0xe0,0x45,0x12,0xfd,0x50,0x46, - 0x31,0x20,0xe0,0x46,0xe0,0x6a,0x50,0x48,0x11,0x2,0xe0,0x48,0xb7,0x11,0xd0,0x49, - 0xf0,0xe4,0xe0,0x4a,0x8d,0xb9,0x50,0x4b,0xda,0x1,0x60,0x4c,0x61,0xbd,0xd0,0x4c, - 0x89,0x58,0xe0,0x4c,0xa4,0xfa,0x50,0x53,0x75,0x38,0xe0,0x53,0xac,0x89,0xd0,0x53, - 0xda,0xbc,0x60,0x54,0x24,0x82,0x50,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x0,0x0,0x1d,0x55,0x0,0x0,0x0,0x0,0x2a,0x30, - 0x1,0x4,0x0,0x0,0x1c,0x20,0x0,0x9,0x0,0x0,0x2a,0x30,0x1,0x4,0x4c,0x4d, - 0x54,0x0,0x45,0x45,0x53,0x54,0x0,0x45,0x45,0x54,0x0,0x0,0x0,0x0,0x1,0x0, - 0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0xd,0xf8, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x7d,0xbd,0x4d,0xab,0xff, - 0xff,0xff,0xff,0xc8,0x93,0xb4,0xe0,0xff,0xff,0xff,0xff,0xc8,0xfa,0x7b,0xd0,0xff, - 0xff,0xff,0xff,0xc9,0xfc,0xef,0xe0,0xff,0xff,0xff,0xff,0xca,0xc7,0xe8,0xd0,0xff, - 0xff,0xff,0xff,0xcb,0xcb,0xae,0x60,0xff,0xff,0xff,0xff,0xcc,0xdf,0x29,0xd0,0xff, - 0xff,0xff,0xff,0xcd,0xac,0xe1,0xe0,0xff,0xff,0xff,0xff,0xce,0xc6,0xf4,0xd0,0xff, - 0xff,0xff,0xff,0xcf,0x8f,0x66,0xe0,0xff,0xff,0xff,0xff,0xd0,0xa9,0x79,0xd0,0xff, - 0xff,0xff,0xff,0xd1,0x84,0x60,0xe0,0xff,0xff,0xff,0xff,0xd2,0x8a,0xad,0x50,0xff, - 0xff,0xff,0xff,0xe8,0x36,0x63,0x60,0xff,0xff,0xff,0xff,0xe8,0xf4,0x2d,0x50,0xff, - 0xff,0xff,0xff,0xea,0xb,0xb9,0x60,0xff,0xff,0xff,0xff,0xea,0xd5,0x60,0xd0,0xff, - 0xff,0xff,0xff,0xeb,0xec,0xfa,0xf0,0xff,0xff,0xff,0xff,0xec,0xb5,0x6d,0x0,0xff, - 0xff,0xff,0xff,0xed,0xcf,0x7f,0xf0,0xff,0xff,0xff,0xff,0xee,0x97,0xf2,0x0,0xff, - 0xff,0xff,0xff,0xef,0xb0,0xb3,0x70,0xff,0xff,0xff,0xff,0xf0,0x79,0x25,0x80,0xff, - 0xff,0xff,0xff,0xf1,0x91,0xe6,0xf0,0xff,0xff,0xff,0xff,0xf2,0x5a,0x59,0x0,0xff, - 0xff,0xff,0xff,0xf3,0x73,0x1a,0x70,0xff,0xff,0xff,0xff,0xf4,0x3b,0x8c,0x80,0xff, - 0xff,0xff,0xff,0xf5,0x55,0x9f,0x70,0xff,0xff,0xff,0xff,0xf6,0x1e,0x11,0x80,0xff, - 0xff,0xff,0xff,0xf7,0x36,0xd2,0xf0,0xff,0xff,0xff,0xff,0xf7,0xff,0x45,0x0,0xff, - 0xff,0xff,0xff,0xf9,0x18,0x6,0x70,0xff,0xff,0xff,0xff,0xf9,0xe1,0xca,0x0,0xff, - 0xff,0xff,0xff,0xfa,0xf9,0x39,0xf0,0xff,0xff,0xff,0xff,0xfb,0xc2,0xfd,0x80,0xff, - 0xff,0xff,0xff,0xfc,0xdb,0xbe,0xf0,0xff,0xff,0xff,0xff,0xfd,0xa5,0x82,0x80,0xff, - 0xff,0xff,0xff,0xfe,0xbc,0xf2,0x70,0xff,0xff,0xff,0xff,0xff,0x86,0xb6,0x0,0x0, - 0x0,0x0,0x0,0x0,0x9e,0x25,0xf0,0x0,0x0,0x0,0x0,0x1,0x67,0xe9,0x80,0x0, - 0x0,0x0,0x0,0x2,0x7f,0x59,0x70,0x0,0x0,0x0,0x0,0x3,0x49,0x1d,0x0,0x0, - 0x0,0x0,0x0,0x4,0x61,0xde,0x70,0x0,0x0,0x0,0x0,0x5,0x2b,0xa2,0x0,0x0, - 0x0,0x0,0x0,0x6,0x43,0x11,0xf0,0x0,0x0,0x0,0x0,0x7,0xc,0xd5,0x80,0x0, - 0x0,0x0,0x0,0x8,0x24,0x45,0x70,0x0,0x0,0x0,0x0,0x8,0xee,0x9,0x0,0x0, - 0x0,0x0,0x0,0xa,0x5,0x78,0xf0,0x0,0x0,0x0,0x0,0xa,0xcf,0x3c,0x80,0x0, - 0x0,0x0,0x0,0xb,0xe7,0xfd,0xf0,0x0,0x0,0x0,0x0,0xc,0xb1,0xc1,0x80,0x0, - 0x0,0x0,0x0,0xd,0xc9,0x31,0x70,0x0,0x0,0x0,0x0,0xe,0x92,0xf5,0x0,0x0, - 0x0,0x0,0x0,0xf,0xaa,0x64,0xf0,0x0,0x0,0x0,0x0,0x10,0x74,0x28,0x80,0x0, - 0x0,0x0,0x0,0x11,0x8b,0x98,0x70,0x0,0x0,0x0,0x0,0x12,0x55,0x5c,0x0,0x0, - 0x0,0x0,0x0,0x13,0x6e,0x1d,0x70,0x0,0x0,0x0,0x0,0x14,0x37,0xe1,0x0,0x0, - 0x0,0x0,0x0,0x15,0x4f,0x50,0xf0,0x0,0x0,0x0,0x0,0x16,0x19,0x14,0x80,0x0, - 0x0,0x0,0x0,0x17,0xa0,0x93,0xf0,0x0,0x0,0x0,0x0,0x17,0xfa,0x48,0x0,0x0, - 0x0,0x0,0x0,0x19,0x70,0xa3,0xf0,0x0,0x0,0x0,0x0,0x19,0xdb,0x7b,0x80,0x0, - 0x0,0x0,0x0,0x1a,0xf4,0x3c,0xf0,0x0,0x0,0x0,0x0,0x1b,0xbe,0x0,0x80,0x0, - 0x0,0x0,0x0,0x1c,0xd5,0x70,0x70,0x0,0x0,0x0,0x0,0x1d,0x9f,0x34,0x0,0x0, - 0x0,0x0,0x0,0x1e,0xb6,0xa3,0xf0,0x0,0x0,0x0,0x0,0x1f,0x80,0x67,0x80,0x0, - 0x0,0x0,0x0,0x20,0x97,0xd7,0x70,0x0,0x0,0x0,0x0,0x21,0x61,0x9b,0x0,0x0, - 0x0,0x0,0x0,0x22,0x7a,0x5c,0x70,0x0,0x0,0x0,0x0,0x23,0x44,0x20,0x0,0x0, - 0x0,0x0,0x0,0x24,0x62,0x27,0x70,0x0,0x0,0x0,0x0,0x25,0x25,0x53,0x80,0x0, - 0x0,0x0,0x0,0x26,0x3c,0xc3,0x70,0x0,0x0,0x0,0x0,0x27,0x6,0x87,0x0,0x0, - 0x0,0x0,0x0,0x28,0x1d,0xf6,0xf0,0x0,0x0,0x0,0x0,0x28,0xe7,0xba,0x80,0x0, - 0x0,0x0,0x0,0x2a,0x0,0x7b,0xf0,0x0,0x0,0x0,0x0,0x2a,0xca,0x3f,0x80,0x0, - 0x0,0x0,0x0,0x2b,0xe1,0xaf,0x70,0x0,0x0,0x0,0x0,0x2c,0xab,0x73,0x0,0x0, - 0x0,0x0,0x0,0x2d,0xc2,0xe2,0xf0,0x0,0x0,0x0,0x0,0x2e,0x8c,0xa6,0x80,0x0, - 0x0,0x0,0x0,0x2f,0xa0,0x13,0xe0,0x0,0x0,0x0,0x0,0x30,0x6b,0xc,0xd0,0x0, - 0x0,0x0,0x0,0x31,0x7f,0xf5,0xe0,0x0,0x0,0x0,0x0,0x32,0x4a,0xee,0xd0,0x0, - 0x0,0x0,0x0,0x33,0x5f,0xd7,0xe0,0x0,0x0,0x0,0x0,0x34,0x2a,0xd0,0xd0,0x0, - 0x0,0x0,0x0,0x35,0x3f,0xb9,0xe0,0x0,0x0,0x0,0x0,0x36,0xa,0xb2,0xd0,0x0, - 0x0,0x0,0x0,0x37,0x28,0xd6,0x60,0x0,0x0,0x0,0x0,0x37,0xf3,0xcf,0x50,0x0, - 0x0,0x0,0x0,0x39,0x8,0xb8,0x60,0x0,0x0,0x0,0x0,0x39,0xd3,0xb1,0x50,0x0, - 0x0,0x0,0x0,0x3a,0xe8,0x9a,0x60,0x0,0x0,0x0,0x0,0x3b,0xb3,0x93,0x50,0x0, - 0x0,0x0,0x0,0x3c,0xc8,0x7c,0x60,0x0,0x0,0x0,0x0,0x3d,0x93,0x75,0x50,0x0, - 0x0,0x0,0x0,0x3e,0xa8,0x5e,0x60,0x0,0x0,0x0,0x0,0x3f,0x73,0x57,0x50,0x0, - 0x0,0x0,0x0,0x40,0x91,0x7a,0xe0,0x0,0x0,0x0,0x0,0x41,0x5c,0x73,0xd0,0x0, - 0x0,0x0,0x0,0x42,0x71,0x5c,0xe0,0x0,0x0,0x0,0x0,0x43,0x3c,0x55,0xd0,0x0, - 0x0,0x0,0x0,0x44,0x51,0x3e,0xe0,0x0,0x0,0x0,0x0,0x45,0x12,0xfd,0x50,0x0, - 0x0,0x0,0x0,0x46,0x31,0x20,0xe0,0x0,0x0,0x0,0x0,0x46,0xe0,0x6a,0x50,0x0, - 0x0,0x0,0x0,0x48,0x11,0x2,0xe0,0x0,0x0,0x0,0x0,0x48,0xb7,0x11,0xd0,0x0, - 0x0,0x0,0x0,0x49,0xf0,0xe4,0xe0,0x0,0x0,0x0,0x0,0x4a,0x8d,0xb9,0x50,0x0, - 0x0,0x0,0x0,0x4b,0xda,0x1,0x60,0x0,0x0,0x0,0x0,0x4c,0x61,0xbd,0xd0,0x0, - 0x0,0x0,0x0,0x4c,0x89,0x58,0xe0,0x0,0x0,0x0,0x0,0x4c,0xa4,0xfa,0x50,0x0, - 0x0,0x0,0x0,0x53,0x75,0x38,0xe0,0x0,0x0,0x0,0x0,0x53,0xac,0x89,0xd0,0x0, - 0x0,0x0,0x0,0x53,0xda,0xbc,0x60,0x0,0x0,0x0,0x0,0x54,0x24,0x82,0x50,0x0, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x0, - 0x0,0x1d,0x55,0x0,0x0,0x0,0x0,0x2a,0x30,0x1,0x4,0x0,0x0,0x1c,0x20,0x0, - 0x9,0x0,0x0,0x2a,0x30,0x1,0x4,0x4c,0x4d,0x54,0x0,0x45,0x45,0x53,0x54,0x0, - 0x45,0x45,0x54,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0xa,0x45,0x45,0x54, - 0x2d,0x32,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Arctic/Longyearbyen - 0x0,0x0,0x8,0xcb, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, + 0x0,0x55,0x54,0x43,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0, + 0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0, + 0x0,0x0,0x4,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x55,0x54,0x43,0x0,0x0,0x0,0xa,0x55,0x54,0x43,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/ROK + 0x0,0x0,0x2,0x13, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x8e,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0x9b, - 0x27,0xe3,0x0,0x9b,0xd4,0x7b,0x60,0xc8,0xb7,0x4d,0x60,0xcc,0xe7,0x4b,0x10,0xcd, - 0xa9,0x17,0x90,0xce,0xa2,0x43,0x10,0xcf,0x92,0x34,0x10,0xd0,0x82,0x25,0x10,0xd1, - 0x72,0x16,0x10,0xd2,0x62,0x7,0x10,0xeb,0xaf,0x20,0x90,0xec,0xa8,0x4c,0x10,0xed, - 0x98,0x3d,0x10,0xee,0x88,0x2e,0x10,0xef,0x78,0x1f,0x10,0xf0,0x68,0x10,0x10,0xf1, - 0x58,0x1,0x10,0xf2,0x47,0xf2,0x10,0xf3,0x37,0xe3,0x10,0xf4,0x27,0xd4,0x10,0xf5, - 0x17,0xc5,0x10,0xf6,0x10,0xf0,0x90,0xf7,0x2f,0x6,0x10,0xf7,0xf0,0xd2,0x90,0x12, - 0xce,0x97,0xf0,0x13,0x4d,0x44,0x10,0x14,0x33,0xfa,0x90,0x15,0x23,0xeb,0x90,0x16, - 0x13,0xdc,0x90,0x17,0x3,0xcd,0x90,0x17,0xf3,0xbe,0x90,0x18,0xe3,0xaf,0x90,0x19, - 0xd3,0xa0,0x90,0x1a,0xc3,0x91,0x90,0x1b,0xbc,0xbd,0x10,0x1c,0xac,0xae,0x10,0x1d, - 0x9c,0x9f,0x10,0x1e,0x8c,0x90,0x10,0x1f,0x7c,0x81,0x10,0x20,0x6c,0x72,0x10,0x21, - 0x5c,0x63,0x10,0x22,0x4c,0x54,0x10,0x23,0x3c,0x45,0x10,0x24,0x2c,0x36,0x10,0x25, - 0x1c,0x27,0x10,0x26,0xc,0x18,0x10,0x27,0x5,0x43,0x90,0x27,0xf5,0x34,0x90,0x28, - 0xe5,0x25,0x90,0x29,0xd5,0x16,0x90,0x2a,0xc5,0x7,0x90,0x2b,0xb4,0xf8,0x90,0x2c, - 0xa4,0xe9,0x90,0x2d,0x94,0xda,0x90,0x2e,0x84,0xcb,0x90,0x2f,0x74,0xbc,0x90,0x30, - 0x64,0xad,0x90,0x31,0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34, - 0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38, - 0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b, - 0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f, - 0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43, - 0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47, - 0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a, - 0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e, - 0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52, - 0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56, - 0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59, - 0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d, - 0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61, - 0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65, - 0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68, - 0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c, - 0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70, - 0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74, - 0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78, - 0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b, - 0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f, - 0x8e,0x7f,0x90,0x2,0x1,0x2,0x1,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x2,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x0,0x0,0xa,0x14,0x0,0x0,0x0,0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe, - 0x10,0x0,0x9,0x0,0x0,0xe,0x10,0x0,0x9,0x0,0x0,0x1c,0x20,0x1,0x4,0x0, - 0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe,0x10,0x0,0x9,0x4c,0x4d,0x54,0x0,0x43, - 0x45,0x53,0x54,0x0,0x43,0x45,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x0, - 0x0,0x0,0x0,0x0,0x1,0x1,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0, - 0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0x0,0x0,0x0,0x7,0x0,0x0, - 0x0,0xd,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x72,0xee, - 0x24,0x6c,0xff,0xff,0xff,0xff,0x9b,0x27,0xe3,0x0,0xff,0xff,0xff,0xff,0x9b,0xd4, - 0x7b,0x60,0xff,0xff,0xff,0xff,0xc8,0xb7,0x4d,0x60,0xff,0xff,0xff,0xff,0xcc,0xe7, - 0x4b,0x10,0xff,0xff,0xff,0xff,0xcd,0xa9,0x17,0x90,0xff,0xff,0xff,0xff,0xce,0xa2, - 0x43,0x10,0xff,0xff,0xff,0xff,0xcf,0x92,0x34,0x10,0xff,0xff,0xff,0xff,0xd0,0x82, - 0x25,0x10,0xff,0xff,0xff,0xff,0xd1,0x72,0x16,0x10,0xff,0xff,0xff,0xff,0xd2,0x62, - 0x7,0x10,0xff,0xff,0xff,0xff,0xeb,0xaf,0x20,0x90,0xff,0xff,0xff,0xff,0xec,0xa8, - 0x4c,0x10,0xff,0xff,0xff,0xff,0xed,0x98,0x3d,0x10,0xff,0xff,0xff,0xff,0xee,0x88, - 0x2e,0x10,0xff,0xff,0xff,0xff,0xef,0x78,0x1f,0x10,0xff,0xff,0xff,0xff,0xf0,0x68, - 0x10,0x10,0xff,0xff,0xff,0xff,0xf1,0x58,0x1,0x10,0xff,0xff,0xff,0xff,0xf2,0x47, - 0xf2,0x10,0xff,0xff,0xff,0xff,0xf3,0x37,0xe3,0x10,0xff,0xff,0xff,0xff,0xf4,0x27, - 0xd4,0x10,0xff,0xff,0xff,0xff,0xf5,0x17,0xc5,0x10,0xff,0xff,0xff,0xff,0xf6,0x10, - 0xf0,0x90,0xff,0xff,0xff,0xff,0xf7,0x2f,0x6,0x10,0xff,0xff,0xff,0xff,0xf7,0xf0, - 0xd2,0x90,0x0,0x0,0x0,0x0,0x12,0xce,0x97,0xf0,0x0,0x0,0x0,0x0,0x13,0x4d, - 0x44,0x10,0x0,0x0,0x0,0x0,0x14,0x33,0xfa,0x90,0x0,0x0,0x0,0x0,0x15,0x23, - 0xeb,0x90,0x0,0x0,0x0,0x0,0x16,0x13,0xdc,0x90,0x0,0x0,0x0,0x0,0x17,0x3, - 0xcd,0x90,0x0,0x0,0x0,0x0,0x17,0xf3,0xbe,0x90,0x0,0x0,0x0,0x0,0x18,0xe3, - 0xaf,0x90,0x0,0x0,0x0,0x0,0x19,0xd3,0xa0,0x90,0x0,0x0,0x0,0x0,0x1a,0xc3, - 0x91,0x90,0x0,0x0,0x0,0x0,0x1b,0xbc,0xbd,0x10,0x0,0x0,0x0,0x0,0x1c,0xac, - 0xae,0x10,0x0,0x0,0x0,0x0,0x1d,0x9c,0x9f,0x10,0x0,0x0,0x0,0x0,0x1e,0x8c, - 0x90,0x10,0x0,0x0,0x0,0x0,0x1f,0x7c,0x81,0x10,0x0,0x0,0x0,0x0,0x20,0x6c, - 0x72,0x10,0x0,0x0,0x0,0x0,0x21,0x5c,0x63,0x10,0x0,0x0,0x0,0x0,0x22,0x4c, - 0x54,0x10,0x0,0x0,0x0,0x0,0x23,0x3c,0x45,0x10,0x0,0x0,0x0,0x0,0x24,0x2c, - 0x36,0x10,0x0,0x0,0x0,0x0,0x25,0x1c,0x27,0x10,0x0,0x0,0x0,0x0,0x26,0xc, - 0x18,0x10,0x0,0x0,0x0,0x0,0x27,0x5,0x43,0x90,0x0,0x0,0x0,0x0,0x27,0xf5, - 0x34,0x90,0x0,0x0,0x0,0x0,0x28,0xe5,0x25,0x90,0x0,0x0,0x0,0x0,0x29,0xd5, - 0x16,0x90,0x0,0x0,0x0,0x0,0x2a,0xc5,0x7,0x90,0x0,0x0,0x0,0x0,0x2b,0xb4, - 0xf8,0x90,0x0,0x0,0x0,0x0,0x2c,0xa4,0xe9,0x90,0x0,0x0,0x0,0x0,0x2d,0x94, - 0xda,0x90,0x0,0x0,0x0,0x0,0x2e,0x84,0xcb,0x90,0x0,0x0,0x0,0x0,0x2f,0x74, - 0xbc,0x90,0x0,0x0,0x0,0x0,0x30,0x64,0xad,0x90,0x0,0x0,0x0,0x0,0x31,0x5d, - 0xd9,0x10,0x0,0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d, - 0xbb,0x10,0x0,0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d, - 0x9d,0x10,0x0,0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd, - 0x7f,0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd, - 0x61,0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd, - 0x43,0x10,0x0,0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6, - 0x5f,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86, - 0x41,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66, - 0x23,0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46, - 0x5,0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25, - 0xe7,0x90,0x0,0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5, - 0xc9,0x90,0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee, - 0xe6,0x10,0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce, - 0xc8,0x10,0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae, - 0xaa,0x10,0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e, - 0x8c,0x10,0x0,0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e, - 0x6e,0x10,0x0,0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57, - 0x8a,0x90,0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37, - 0x6c,0x90,0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17, - 0x4e,0x90,0x0,0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7, - 0x30,0x90,0x0,0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7, - 0x12,0x90,0x0,0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6, - 0xf4,0x90,0x0,0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0, - 0x11,0x10,0x0,0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f, - 0xf3,0x10,0x0,0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f, - 0xd5,0x10,0x0,0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f, - 0xb7,0x10,0x0,0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f, - 0x99,0x10,0x0,0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8, - 0xb5,0x90,0x0,0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8, - 0x97,0x90,0x0,0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8, - 0x79,0x90,0x0,0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8, - 0x5b,0x90,0x0,0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88, - 0x3d,0x90,0x0,0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68, - 0x1f,0x90,0x0,0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51, - 0x3c,0x10,0x0,0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31, - 0x1e,0x10,0x0,0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11, - 0x0,0x10,0x0,0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0, - 0xe2,0x10,0x0,0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0, - 0xc4,0x10,0x0,0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0, - 0xa6,0x10,0x0,0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99, - 0xc2,0x90,0x0,0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79, - 0xa4,0x90,0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x2,0x1,0x2,0x1,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x2,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x0,0x0,0xa,0x14,0x0,0x0,0x0, - 0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe,0x10,0x0,0x9,0x0,0x0,0xe,0x10,0x0, - 0x9,0x0,0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe, - 0x10,0x0,0x9,0x4c,0x4d,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x43,0x45,0x54,0x0, - 0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0xa,0x43, - 0x45,0x54,0x2d,0x31,0x43,0x45,0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2c, - 0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30,0x2f,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Australia/North - 0x0,0x0,0x1,0x43, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x9,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xa,0x80,0x0,0x0,0x0,0x9c, - 0x4e,0xad,0xa4,0x9c,0xbc,0x27,0xf8,0xcb,0x54,0xba,0x8,0xcb,0xc7,0x5e,0x78,0xcc, - 0xb7,0x5d,0x88,0xcd,0xa7,0x40,0x78,0xce,0xa0,0x7a,0x8,0xcf,0x87,0x22,0x78,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x0,0x0,0x7e,0x90,0x0,0x0,0x0,0x0, - 0x93,0xa8,0x1,0x5,0x0,0x0,0x85,0x98,0x0,0x0,0x41,0x43,0x53,0x54,0x0,0x41, - 0x43,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x16,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x80,0x0,0x0,0x0,0x8b, + 0xd7,0xf0,0x78,0x92,0xe6,0x16,0xf8,0xd2,0x43,0x27,0xf0,0xe2,0x4f,0x29,0xf0,0xe4, + 0x6b,0xb7,0xf8,0xe5,0x13,0x18,0x68,0xe6,0x62,0x3,0x78,0xe7,0x11,0x4c,0xe8,0xe8, + 0x2f,0x70,0x78,0xe8,0xe7,0xf4,0x68,0xea,0xf,0x52,0x78,0xea,0xc7,0xd6,0x68,0xeb, + 0xef,0x34,0x78,0xec,0xa7,0xb8,0x68,0xed,0xcf,0x16,0x78,0xee,0x87,0x9a,0x68,0xf0, + 0x35,0x71,0x78,0x20,0xa3,0x60,0x90,0x21,0x6e,0x67,0x90,0x22,0x83,0x42,0x90,0x23, + 0x4e,0x49,0x90,0x0,0x1,0x2,0x3,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1, + 0x4,0x1,0x4,0x1,0x3,0x5,0x3,0x5,0x3,0x0,0x0,0x77,0x8,0x0,0x0,0x0, + 0x0,0x77,0x88,0x0,0x4,0x0,0x0,0x7e,0x90,0x0,0x8,0x0,0x0,0x7e,0x90,0x0, + 0x4,0x0,0x0,0x85,0x98,0x1,0xc,0x0,0x0,0x8c,0xa0,0x1,0xc,0x4c,0x4d,0x54, + 0x0,0x4b,0x53,0x54,0x0,0x4a,0x53,0x54,0x0,0x4b,0x44,0x54,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb,0x0,0x0, - 0x0,0x4,0x0,0x0,0x0,0xe,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff, - 0xff,0xff,0x73,0x16,0x92,0x58,0xff,0xff,0xff,0xff,0x7b,0x12,0x3,0x70,0xff,0xff, - 0xff,0xff,0x9c,0x4e,0xad,0xa4,0xff,0xff,0xff,0xff,0x9c,0xbc,0x27,0xf8,0xff,0xff, - 0xff,0xff,0xcb,0x54,0xba,0x8,0xff,0xff,0xff,0xff,0xcb,0xc7,0x5e,0x78,0xff,0xff, - 0xff,0xff,0xcc,0xb7,0x5d,0x88,0xff,0xff,0xff,0xff,0xcd,0xa7,0x40,0x78,0xff,0xff, - 0xff,0xff,0xce,0xa0,0x7a,0x8,0xff,0xff,0xff,0xff,0xcf,0x87,0x22,0x78,0x0,0x1, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x0,0x0,0x7a,0xa8,0x0,0x0,0x0, - 0x0,0x7e,0x90,0x0,0x4,0x0,0x0,0x93,0xa8,0x1,0x9,0x0,0x0,0x85,0x98,0x0, - 0x4,0x4c,0x4d,0x54,0x0,0x41,0x43,0x53,0x54,0x0,0x41,0x43,0x44,0x54,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x41,0x43,0x53,0x54,0x2d,0x39,0x3a,0x33, - 0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Australia/South - 0x0,0x0,0x8,0xbe, + 0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x16,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x10,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff, + 0xff,0x8b,0xd7,0xf0,0x78,0xff,0xff,0xff,0xff,0x92,0xe6,0x16,0xf8,0xff,0xff,0xff, + 0xff,0xd2,0x43,0x27,0xf0,0xff,0xff,0xff,0xff,0xe2,0x4f,0x29,0xf0,0xff,0xff,0xff, + 0xff,0xe4,0x6b,0xb7,0xf8,0xff,0xff,0xff,0xff,0xe5,0x13,0x18,0x68,0xff,0xff,0xff, + 0xff,0xe6,0x62,0x3,0x78,0xff,0xff,0xff,0xff,0xe7,0x11,0x4c,0xe8,0xff,0xff,0xff, + 0xff,0xe8,0x2f,0x70,0x78,0xff,0xff,0xff,0xff,0xe8,0xe7,0xf4,0x68,0xff,0xff,0xff, + 0xff,0xea,0xf,0x52,0x78,0xff,0xff,0xff,0xff,0xea,0xc7,0xd6,0x68,0xff,0xff,0xff, + 0xff,0xeb,0xef,0x34,0x78,0xff,0xff,0xff,0xff,0xec,0xa7,0xb8,0x68,0xff,0xff,0xff, + 0xff,0xed,0xcf,0x16,0x78,0xff,0xff,0xff,0xff,0xee,0x87,0x9a,0x68,0xff,0xff,0xff, + 0xff,0xf0,0x35,0x71,0x78,0x0,0x0,0x0,0x0,0x20,0xa3,0x60,0x90,0x0,0x0,0x0, + 0x0,0x21,0x6e,0x67,0x90,0x0,0x0,0x0,0x0,0x22,0x83,0x42,0x90,0x0,0x0,0x0, + 0x0,0x23,0x4e,0x49,0x90,0x0,0x1,0x2,0x3,0x1,0x4,0x1,0x4,0x1,0x4,0x1, + 0x4,0x1,0x4,0x1,0x4,0x1,0x3,0x5,0x3,0x5,0x3,0x0,0x0,0x77,0x8,0x0, + 0x0,0x0,0x0,0x77,0x88,0x0,0x4,0x0,0x0,0x7e,0x90,0x0,0x8,0x0,0x0,0x7e, + 0x90,0x0,0x4,0x0,0x0,0x85,0x98,0x1,0xc,0x0,0x0,0x8c,0xa0,0x1,0xc,0x4c, + 0x4d,0x54,0x0,0x4b,0x53,0x54,0x0,0x4a,0x53,0x54,0x0,0x4b,0x44,0x54,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x4b,0x53,0x54,0x2d, + 0x39,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/zone.tab + 0x0,0x0,0x4a,0xd9, + 0x23, + 0x20,0x74,0x7a,0x20,0x7a,0x6f,0x6e,0x65,0x20,0x64,0x65,0x73,0x63,0x72,0x69,0x70, + 0x74,0x69,0x6f,0x6e,0x73,0x20,0x28,0x64,0x65,0x70,0x72,0x65,0x63,0x61,0x74,0x65, + 0x64,0x20,0x76,0x65,0x72,0x73,0x69,0x6f,0x6e,0x29,0xa,0x23,0xa,0x23,0x20,0x54, + 0x68,0x69,0x73,0x20,0x66,0x69,0x6c,0x65,0x20,0x69,0x73,0x20,0x69,0x6e,0x20,0x74, + 0x68,0x65,0x20,0x70,0x75,0x62,0x6c,0x69,0x63,0x20,0x64,0x6f,0x6d,0x61,0x69,0x6e, + 0x2c,0x20,0x73,0x6f,0x20,0x63,0x6c,0x61,0x72,0x69,0x66,0x69,0x65,0x64,0x20,0x61, + 0x73,0x20,0x6f,0x66,0xa,0x23,0x20,0x32,0x30,0x30,0x39,0x2d,0x30,0x35,0x2d,0x31, + 0x37,0x20,0x62,0x79,0x20,0x41,0x72,0x74,0x68,0x75,0x72,0x20,0x44,0x61,0x76,0x69, + 0x64,0x20,0x4f,0x6c,0x73,0x6f,0x6e,0x2e,0xa,0x23,0xa,0x23,0x20,0x46,0x72,0x6f, + 0x6d,0x20,0x50,0x61,0x75,0x6c,0x20,0x45,0x67,0x67,0x65,0x72,0x74,0x20,0x28,0x32, + 0x30,0x31,0x34,0x2d,0x30,0x37,0x2d,0x33,0x31,0x29,0x3a,0xa,0x23,0x20,0x54,0x68, + 0x69,0x73,0x20,0x66,0x69,0x6c,0x65,0x20,0x69,0x73,0x20,0x69,0x6e,0x74,0x65,0x6e, + 0x64,0x65,0x64,0x20,0x61,0x73,0x20,0x61,0x20,0x62,0x61,0x63,0x6b,0x77,0x61,0x72, + 0x64,0x2d,0x63,0x6f,0x6d,0x70,0x61,0x74,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x20, + 0x61,0x69,0x64,0x20,0x66,0x6f,0x72,0x20,0x6f,0x6c,0x64,0x65,0x72,0x20,0x70,0x72, + 0x6f,0x67,0x72,0x61,0x6d,0x73,0x2e,0xa,0x23,0x20,0x4e,0x65,0x77,0x20,0x70,0x72, + 0x6f,0x67,0x72,0x61,0x6d,0x73,0x20,0x73,0x68,0x6f,0x75,0x6c,0x64,0x20,0x75,0x73, + 0x65,0x20,0x7a,0x6f,0x6e,0x65,0x31,0x39,0x37,0x30,0x2e,0x74,0x61,0x62,0x2e,0x20, + 0x20,0x54,0x68,0x69,0x73,0x20,0x66,0x69,0x6c,0x65,0x20,0x69,0x73,0x20,0x6c,0x69, + 0x6b,0x65,0x20,0x7a,0x6f,0x6e,0x65,0x31,0x39,0x37,0x30,0x2e,0x74,0x61,0x62,0x20, + 0x28,0x73,0x65,0x65,0xa,0x23,0x20,0x7a,0x6f,0x6e,0x65,0x31,0x39,0x37,0x30,0x2e, + 0x74,0x61,0x62,0x27,0x73,0x20,0x63,0x6f,0x6d,0x6d,0x65,0x6e,0x74,0x73,0x29,0x2c, + 0x20,0x62,0x75,0x74,0x20,0x77,0x69,0x74,0x68,0x20,0x74,0x68,0x65,0x20,0x66,0x6f, + 0x6c,0x6c,0x6f,0x77,0x69,0x6e,0x67,0x20,0x61,0x64,0x64,0x69,0x74,0x69,0x6f,0x6e, + 0x61,0x6c,0x20,0x72,0x65,0x73,0x74,0x72,0x69,0x63,0x74,0x69,0x6f,0x6e,0x73,0x3a, + 0xa,0x23,0xa,0x23,0x20,0x31,0x2e,0x20,0x20,0x54,0x68,0x69,0x73,0x20,0x66,0x69, + 0x6c,0x65,0x20,0x63,0x6f,0x6e,0x74,0x61,0x69,0x6e,0x73,0x20,0x6f,0x6e,0x6c,0x79, + 0x20,0x41,0x53,0x43,0x49,0x49,0x20,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72, + 0x73,0x2e,0xa,0x23,0x20,0x32,0x2e,0x20,0x20,0x54,0x68,0x65,0x20,0x66,0x69,0x72, + 0x73,0x74,0x20,0x64,0x61,0x74,0x61,0x20,0x63,0x6f,0x6c,0x75,0x6d,0x6e,0x20,0x63, + 0x6f,0x6e,0x74,0x61,0x69,0x6e,0x73,0x20,0x65,0x78,0x61,0x63,0x74,0x6c,0x79,0x20, + 0x6f,0x6e,0x65,0x20,0x63,0x6f,0x75,0x6e,0x74,0x72,0x79,0x20,0x63,0x6f,0x64,0x65, + 0x2e,0xa,0x23,0xa,0x23,0x20,0x42,0x65,0x63,0x61,0x75,0x73,0x65,0x20,0x6f,0x66, + 0x20,0x28,0x32,0x29,0x2c,0x20,0x65,0x61,0x63,0x68,0x20,0x72,0x6f,0x77,0x20,0x73, + 0x74,0x61,0x6e,0x64,0x73,0x20,0x66,0x6f,0x72,0x20,0x61,0x6e,0x20,0x61,0x72,0x65, + 0x61,0x20,0x74,0x68,0x61,0x74,0x20,0x69,0x73,0x20,0x74,0x68,0x65,0x20,0x69,0x6e, + 0x74,0x65,0x72,0x73,0x65,0x63,0x74,0x69,0x6f,0x6e,0xa,0x23,0x20,0x6f,0x66,0x20, + 0x61,0x20,0x72,0x65,0x67,0x69,0x6f,0x6e,0x20,0x69,0x64,0x65,0x6e,0x74,0x69,0x66, + 0x69,0x65,0x64,0x20,0x62,0x79,0x20,0x61,0x20,0x63,0x6f,0x75,0x6e,0x74,0x72,0x79, + 0x20,0x63,0x6f,0x64,0x65,0x20,0x61,0x6e,0x64,0x20,0x6f,0x66,0x20,0x61,0x20,0x7a, + 0x6f,0x6e,0x65,0x20,0x77,0x68,0x65,0x72,0x65,0x20,0x63,0x69,0x76,0x69,0x6c,0xa, + 0x23,0x20,0x63,0x6c,0x6f,0x63,0x6b,0x73,0x20,0x68,0x61,0x76,0x65,0x20,0x61,0x67, + 0x72,0x65,0x65,0x64,0x20,0x73,0x69,0x6e,0x63,0x65,0x20,0x31,0x39,0x37,0x30,0x3b, + 0x20,0x74,0x68,0x69,0x73,0x20,0x69,0x73,0x20,0x61,0x20,0x6e,0x61,0x72,0x72,0x6f, + 0x77,0x65,0x72,0x20,0x64,0x65,0x66,0x69,0x6e,0x69,0x74,0x69,0x6f,0x6e,0x20,0x74, + 0x68,0x61,0x6e,0xa,0x23,0x20,0x74,0x68,0x61,0x74,0x20,0x6f,0x66,0x20,0x7a,0x6f, + 0x6e,0x65,0x31,0x39,0x37,0x30,0x2e,0x74,0x61,0x62,0x2e,0xa,0x23,0xa,0x23,0x20, + 0x54,0x68,0x69,0x73,0x20,0x74,0x61,0x62,0x6c,0x65,0x20,0x69,0x73,0x20,0x69,0x6e, + 0x74,0x65,0x6e,0x64,0x65,0x64,0x20,0x61,0x73,0x20,0x61,0x6e,0x20,0x61,0x69,0x64, + 0x20,0x66,0x6f,0x72,0x20,0x75,0x73,0x65,0x72,0x73,0x2c,0x20,0x74,0x6f,0x20,0x68, + 0x65,0x6c,0x70,0x20,0x74,0x68,0x65,0x6d,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x20, + 0x74,0x69,0x6d,0x65,0xa,0x23,0x20,0x7a,0x6f,0x6e,0x65,0x20,0x64,0x61,0x74,0x61, + 0x20,0x65,0x6e,0x74,0x72,0x69,0x65,0x73,0x20,0x61,0x70,0x70,0x72,0x6f,0x70,0x72, + 0x69,0x61,0x74,0x65,0x20,0x66,0x6f,0x72,0x20,0x74,0x68,0x65,0x69,0x72,0x20,0x70, + 0x72,0x61,0x63,0x74,0x69,0x63,0x61,0x6c,0x20,0x6e,0x65,0x65,0x64,0x73,0x2e,0x20, + 0x20,0x49,0x74,0x20,0x69,0x73,0x20,0x6e,0x6f,0x74,0xa,0x23,0x20,0x69,0x6e,0x74, + 0x65,0x6e,0x64,0x65,0x64,0x20,0x74,0x6f,0x20,0x74,0x61,0x6b,0x65,0x20,0x6f,0x72, + 0x20,0x65,0x6e,0x64,0x6f,0x72,0x73,0x65,0x20,0x61,0x6e,0x79,0x20,0x70,0x6f,0x73, + 0x69,0x74,0x69,0x6f,0x6e,0x20,0x6f,0x6e,0x20,0x6c,0x65,0x67,0x61,0x6c,0x20,0x6f, + 0x72,0x20,0x74,0x65,0x72,0x72,0x69,0x74,0x6f,0x72,0x69,0x61,0x6c,0x20,0x63,0x6c, + 0x61,0x69,0x6d,0x73,0x2e,0xa,0x23,0xa,0x23,0x63,0x6f,0x75,0x6e,0x74,0x72,0x79, + 0x2d,0xa,0x23,0x63,0x6f,0x64,0x65,0x9,0x63,0x6f,0x6f,0x72,0x64,0x69,0x6e,0x61, + 0x74,0x65,0x73,0x9,0x54,0x5a,0x9,0x9,0x9,0x63,0x6f,0x6d,0x6d,0x65,0x6e,0x74, + 0x73,0xa,0x41,0x44,0x9,0x2b,0x34,0x32,0x33,0x30,0x2b,0x30,0x30,0x31,0x33,0x31, + 0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x41,0x6e,0x64,0x6f,0x72,0x72,0x61,0xa, + 0x41,0x45,0x9,0x2b,0x32,0x35,0x31,0x38,0x2b,0x30,0x35,0x35,0x31,0x38,0x9,0x41, + 0x73,0x69,0x61,0x2f,0x44,0x75,0x62,0x61,0x69,0xa,0x41,0x46,0x9,0x2b,0x33,0x34, + 0x33,0x31,0x2b,0x30,0x36,0x39,0x31,0x32,0x9,0x41,0x73,0x69,0x61,0x2f,0x4b,0x61, + 0x62,0x75,0x6c,0xa,0x41,0x47,0x9,0x2b,0x31,0x37,0x30,0x33,0x2d,0x30,0x36,0x31, + 0x34,0x38,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x41,0x6e,0x74,0x69,0x67, + 0x75,0x61,0xa,0x41,0x49,0x9,0x2b,0x31,0x38,0x31,0x32,0x2d,0x30,0x36,0x33,0x30, + 0x34,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x41,0x6e,0x67,0x75,0x69,0x6c, + 0x6c,0x61,0xa,0x41,0x4c,0x9,0x2b,0x34,0x31,0x32,0x30,0x2b,0x30,0x31,0x39,0x35, + 0x30,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x54,0x69,0x72,0x61,0x6e,0x65,0xa, + 0x41,0x4d,0x9,0x2b,0x34,0x30,0x31,0x31,0x2b,0x30,0x34,0x34,0x33,0x30,0x9,0x41, + 0x73,0x69,0x61,0x2f,0x59,0x65,0x72,0x65,0x76,0x61,0x6e,0xa,0x41,0x4f,0x9,0x2d, + 0x30,0x38,0x34,0x38,0x2b,0x30,0x31,0x33,0x31,0x34,0x9,0x41,0x66,0x72,0x69,0x63, + 0x61,0x2f,0x4c,0x75,0x61,0x6e,0x64,0x61,0xa,0x41,0x51,0x9,0x2d,0x37,0x37,0x35, + 0x30,0x2b,0x31,0x36,0x36,0x33,0x36,0x9,0x41,0x6e,0x74,0x61,0x72,0x63,0x74,0x69, + 0x63,0x61,0x2f,0x4d,0x63,0x4d,0x75,0x72,0x64,0x6f,0x9,0x4e,0x65,0x77,0x20,0x5a, + 0x65,0x61,0x6c,0x61,0x6e,0x64,0x20,0x74,0x69,0x6d,0x65,0x20,0x2d,0x20,0x4d,0x63, + 0x4d,0x75,0x72,0x64,0x6f,0x2c,0x20,0x53,0x6f,0x75,0x74,0x68,0x20,0x50,0x6f,0x6c, + 0x65,0xa,0x41,0x51,0x9,0x2d,0x36,0x36,0x31,0x37,0x2b,0x31,0x31,0x30,0x33,0x31, + 0x9,0x41,0x6e,0x74,0x61,0x72,0x63,0x74,0x69,0x63,0x61,0x2f,0x43,0x61,0x73,0x65, + 0x79,0x9,0x43,0x61,0x73,0x65,0x79,0xa,0x41,0x51,0x9,0x2d,0x36,0x38,0x33,0x35, + 0x2b,0x30,0x37,0x37,0x35,0x38,0x9,0x41,0x6e,0x74,0x61,0x72,0x63,0x74,0x69,0x63, + 0x61,0x2f,0x44,0x61,0x76,0x69,0x73,0x9,0x44,0x61,0x76,0x69,0x73,0xa,0x41,0x51, + 0x9,0x2d,0x36,0x36,0x34,0x30,0x2b,0x31,0x34,0x30,0x30,0x31,0x9,0x41,0x6e,0x74, + 0x61,0x72,0x63,0x74,0x69,0x63,0x61,0x2f,0x44,0x75,0x6d,0x6f,0x6e,0x74,0x44,0x55, + 0x72,0x76,0x69,0x6c,0x6c,0x65,0x9,0x44,0x75,0x6d,0x6f,0x6e,0x74,0x2d,0x64,0x27, + 0x55,0x72,0x76,0x69,0x6c,0x6c,0x65,0xa,0x41,0x51,0x9,0x2d,0x36,0x37,0x33,0x36, + 0x2b,0x30,0x36,0x32,0x35,0x33,0x9,0x41,0x6e,0x74,0x61,0x72,0x63,0x74,0x69,0x63, + 0x61,0x2f,0x4d,0x61,0x77,0x73,0x6f,0x6e,0x9,0x4d,0x61,0x77,0x73,0x6f,0x6e,0xa, + 0x41,0x51,0x9,0x2d,0x36,0x34,0x34,0x38,0x2d,0x30,0x36,0x34,0x30,0x36,0x9,0x41, + 0x6e,0x74,0x61,0x72,0x63,0x74,0x69,0x63,0x61,0x2f,0x50,0x61,0x6c,0x6d,0x65,0x72, + 0x9,0x50,0x61,0x6c,0x6d,0x65,0x72,0xa,0x41,0x51,0x9,0x2d,0x36,0x37,0x33,0x34, + 0x2d,0x30,0x36,0x38,0x30,0x38,0x9,0x41,0x6e,0x74,0x61,0x72,0x63,0x74,0x69,0x63, + 0x61,0x2f,0x52,0x6f,0x74,0x68,0x65,0x72,0x61,0x9,0x52,0x6f,0x74,0x68,0x65,0x72, + 0x61,0xa,0x41,0x51,0x9,0x2d,0x36,0x39,0x30,0x30,0x32,0x32,0x2b,0x30,0x33,0x39, + 0x33,0x35,0x32,0x34,0x9,0x41,0x6e,0x74,0x61,0x72,0x63,0x74,0x69,0x63,0x61,0x2f, + 0x53,0x79,0x6f,0x77,0x61,0x9,0x53,0x79,0x6f,0x77,0x61,0xa,0x41,0x51,0x9,0x2d, + 0x37,0x32,0x30,0x30,0x34,0x31,0x2b,0x30,0x30,0x32,0x33,0x32,0x30,0x36,0x9,0x41, + 0x6e,0x74,0x61,0x72,0x63,0x74,0x69,0x63,0x61,0x2f,0x54,0x72,0x6f,0x6c,0x6c,0x9, + 0x54,0x72,0x6f,0x6c,0x6c,0xa,0x41,0x51,0x9,0x2d,0x37,0x38,0x32,0x34,0x2b,0x31, + 0x30,0x36,0x35,0x34,0x9,0x41,0x6e,0x74,0x61,0x72,0x63,0x74,0x69,0x63,0x61,0x2f, + 0x56,0x6f,0x73,0x74,0x6f,0x6b,0x9,0x56,0x6f,0x73,0x74,0x6f,0x6b,0xa,0x41,0x52, + 0x9,0x2d,0x33,0x34,0x33,0x36,0x2d,0x30,0x35,0x38,0x32,0x37,0x9,0x41,0x6d,0x65, + 0x72,0x69,0x63,0x61,0x2f,0x41,0x72,0x67,0x65,0x6e,0x74,0x69,0x6e,0x61,0x2f,0x42, + 0x75,0x65,0x6e,0x6f,0x73,0x5f,0x41,0x69,0x72,0x65,0x73,0x9,0x42,0x75,0x65,0x6e, + 0x6f,0x73,0x20,0x41,0x69,0x72,0x65,0x73,0x20,0x28,0x42,0x41,0x2c,0x20,0x43,0x46, + 0x29,0xa,0x41,0x52,0x9,0x2d,0x33,0x31,0x32,0x34,0x2d,0x30,0x36,0x34,0x31,0x31, + 0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x41,0x72,0x67,0x65,0x6e,0x74,0x69, + 0x6e,0x61,0x2f,0x43,0x6f,0x72,0x64,0x6f,0x62,0x61,0x9,0x41,0x72,0x67,0x65,0x6e, + 0x74,0x69,0x6e,0x61,0x20,0x28,0x6d,0x6f,0x73,0x74,0x20,0x61,0x72,0x65,0x61,0x73, + 0x3a,0x20,0x43,0x42,0x2c,0x20,0x43,0x43,0x2c,0x20,0x43,0x4e,0x2c,0x20,0x45,0x52, + 0x2c,0x20,0x46,0x4d,0x2c,0x20,0x4d,0x4e,0x2c,0x20,0x53,0x45,0x2c,0x20,0x53,0x46, + 0x29,0xa,0x41,0x52,0x9,0x2d,0x32,0x34,0x34,0x37,0x2d,0x30,0x36,0x35,0x32,0x35, + 0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x41,0x72,0x67,0x65,0x6e,0x74,0x69, + 0x6e,0x61,0x2f,0x53,0x61,0x6c,0x74,0x61,0x9,0x53,0x61,0x6c,0x74,0x61,0x20,0x28, + 0x53,0x41,0x2c,0x20,0x4c,0x50,0x2c,0x20,0x4e,0x51,0x2c,0x20,0x52,0x4e,0x29,0xa, + 0x41,0x52,0x9,0x2d,0x32,0x34,0x31,0x31,0x2d,0x30,0x36,0x35,0x31,0x38,0x9,0x41, + 0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x41,0x72,0x67,0x65,0x6e,0x74,0x69,0x6e,0x61, + 0x2f,0x4a,0x75,0x6a,0x75,0x79,0x9,0x4a,0x75,0x6a,0x75,0x79,0x20,0x28,0x4a,0x59, + 0x29,0xa,0x41,0x52,0x9,0x2d,0x32,0x36,0x34,0x39,0x2d,0x30,0x36,0x35,0x31,0x33, + 0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x41,0x72,0x67,0x65,0x6e,0x74,0x69, + 0x6e,0x61,0x2f,0x54,0x75,0x63,0x75,0x6d,0x61,0x6e,0x9,0x54,0x75,0x63,0x75,0x6d, + 0x61,0x6e,0x20,0x28,0x54,0x4d,0x29,0xa,0x41,0x52,0x9,0x2d,0x32,0x38,0x32,0x38, + 0x2d,0x30,0x36,0x35,0x34,0x37,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x41, + 0x72,0x67,0x65,0x6e,0x74,0x69,0x6e,0x61,0x2f,0x43,0x61,0x74,0x61,0x6d,0x61,0x72, + 0x63,0x61,0x9,0x43,0x61,0x74,0x61,0x6d,0x61,0x72,0x63,0x61,0x20,0x28,0x43,0x54, + 0x29,0x3b,0x20,0x43,0x68,0x75,0x62,0x75,0x74,0x20,0x28,0x43,0x48,0x29,0xa,0x41, + 0x52,0x9,0x2d,0x32,0x39,0x32,0x36,0x2d,0x30,0x36,0x36,0x35,0x31,0x9,0x41,0x6d, + 0x65,0x72,0x69,0x63,0x61,0x2f,0x41,0x72,0x67,0x65,0x6e,0x74,0x69,0x6e,0x61,0x2f, + 0x4c,0x61,0x5f,0x52,0x69,0x6f,0x6a,0x61,0x9,0x4c,0x61,0x20,0x52,0x69,0x6f,0x6a, + 0x61,0x20,0x28,0x4c,0x52,0x29,0xa,0x41,0x52,0x9,0x2d,0x33,0x31,0x33,0x32,0x2d, + 0x30,0x36,0x38,0x33,0x31,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x41,0x72, + 0x67,0x65,0x6e,0x74,0x69,0x6e,0x61,0x2f,0x53,0x61,0x6e,0x5f,0x4a,0x75,0x61,0x6e, + 0x9,0x53,0x61,0x6e,0x20,0x4a,0x75,0x61,0x6e,0x20,0x28,0x53,0x4a,0x29,0xa,0x41, + 0x52,0x9,0x2d,0x33,0x32,0x35,0x33,0x2d,0x30,0x36,0x38,0x34,0x39,0x9,0x41,0x6d, + 0x65,0x72,0x69,0x63,0x61,0x2f,0x41,0x72,0x67,0x65,0x6e,0x74,0x69,0x6e,0x61,0x2f, + 0x4d,0x65,0x6e,0x64,0x6f,0x7a,0x61,0x9,0x4d,0x65,0x6e,0x64,0x6f,0x7a,0x61,0x20, + 0x28,0x4d,0x5a,0x29,0xa,0x41,0x52,0x9,0x2d,0x33,0x33,0x31,0x39,0x2d,0x30,0x36, + 0x36,0x32,0x31,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x41,0x72,0x67,0x65, + 0x6e,0x74,0x69,0x6e,0x61,0x2f,0x53,0x61,0x6e,0x5f,0x4c,0x75,0x69,0x73,0x9,0x53, + 0x61,0x6e,0x20,0x4c,0x75,0x69,0x73,0x20,0x28,0x53,0x4c,0x29,0xa,0x41,0x52,0x9, + 0x2d,0x35,0x31,0x33,0x38,0x2d,0x30,0x36,0x39,0x31,0x33,0x9,0x41,0x6d,0x65,0x72, + 0x69,0x63,0x61,0x2f,0x41,0x72,0x67,0x65,0x6e,0x74,0x69,0x6e,0x61,0x2f,0x52,0x69, + 0x6f,0x5f,0x47,0x61,0x6c,0x6c,0x65,0x67,0x6f,0x73,0x9,0x53,0x61,0x6e,0x74,0x61, + 0x20,0x43,0x72,0x75,0x7a,0x20,0x28,0x53,0x43,0x29,0xa,0x41,0x52,0x9,0x2d,0x35, + 0x34,0x34,0x38,0x2d,0x30,0x36,0x38,0x31,0x38,0x9,0x41,0x6d,0x65,0x72,0x69,0x63, + 0x61,0x2f,0x41,0x72,0x67,0x65,0x6e,0x74,0x69,0x6e,0x61,0x2f,0x55,0x73,0x68,0x75, + 0x61,0x69,0x61,0x9,0x54,0x69,0x65,0x72,0x72,0x61,0x20,0x64,0x65,0x6c,0x20,0x46, + 0x75,0x65,0x67,0x6f,0x20,0x28,0x54,0x46,0x29,0xa,0x41,0x53,0x9,0x2d,0x31,0x34, + 0x31,0x36,0x2d,0x31,0x37,0x30,0x34,0x32,0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63, + 0x2f,0x50,0x61,0x67,0x6f,0x5f,0x50,0x61,0x67,0x6f,0xa,0x41,0x54,0x9,0x2b,0x34, + 0x38,0x31,0x33,0x2b,0x30,0x31,0x36,0x32,0x30,0x9,0x45,0x75,0x72,0x6f,0x70,0x65, + 0x2f,0x56,0x69,0x65,0x6e,0x6e,0x61,0xa,0x41,0x55,0x9,0x2d,0x33,0x31,0x33,0x33, + 0x2b,0x31,0x35,0x39,0x30,0x35,0x9,0x41,0x75,0x73,0x74,0x72,0x61,0x6c,0x69,0x61, + 0x2f,0x4c,0x6f,0x72,0x64,0x5f,0x48,0x6f,0x77,0x65,0x9,0x4c,0x6f,0x72,0x64,0x20, + 0x48,0x6f,0x77,0x65,0x20,0x49,0x73,0x6c,0x61,0x6e,0x64,0xa,0x41,0x55,0x9,0x2d, + 0x35,0x34,0x33,0x30,0x2b,0x31,0x35,0x38,0x35,0x37,0x9,0x41,0x6e,0x74,0x61,0x72, + 0x63,0x74,0x69,0x63,0x61,0x2f,0x4d,0x61,0x63,0x71,0x75,0x61,0x72,0x69,0x65,0x9, + 0x4d,0x61,0x63,0x71,0x75,0x61,0x72,0x69,0x65,0x20,0x49,0x73,0x6c,0x61,0x6e,0x64, + 0xa,0x41,0x55,0x9,0x2d,0x34,0x32,0x35,0x33,0x2b,0x31,0x34,0x37,0x31,0x39,0x9, + 0x41,0x75,0x73,0x74,0x72,0x61,0x6c,0x69,0x61,0x2f,0x48,0x6f,0x62,0x61,0x72,0x74, + 0x9,0x54,0x61,0x73,0x6d,0x61,0x6e,0x69,0x61,0x20,0x28,0x6d,0x6f,0x73,0x74,0x20, + 0x61,0x72,0x65,0x61,0x73,0x29,0xa,0x41,0x55,0x9,0x2d,0x33,0x39,0x35,0x36,0x2b, + 0x31,0x34,0x33,0x35,0x32,0x9,0x41,0x75,0x73,0x74,0x72,0x61,0x6c,0x69,0x61,0x2f, + 0x43,0x75,0x72,0x72,0x69,0x65,0x9,0x54,0x61,0x73,0x6d,0x61,0x6e,0x69,0x61,0x20, + 0x28,0x4b,0x69,0x6e,0x67,0x20,0x49,0x73,0x6c,0x61,0x6e,0x64,0x29,0xa,0x41,0x55, + 0x9,0x2d,0x33,0x37,0x34,0x39,0x2b,0x31,0x34,0x34,0x35,0x38,0x9,0x41,0x75,0x73, + 0x74,0x72,0x61,0x6c,0x69,0x61,0x2f,0x4d,0x65,0x6c,0x62,0x6f,0x75,0x72,0x6e,0x65, + 0x9,0x56,0x69,0x63,0x74,0x6f,0x72,0x69,0x61,0xa,0x41,0x55,0x9,0x2d,0x33,0x33, + 0x35,0x32,0x2b,0x31,0x35,0x31,0x31,0x33,0x9,0x41,0x75,0x73,0x74,0x72,0x61,0x6c, + 0x69,0x61,0x2f,0x53,0x79,0x64,0x6e,0x65,0x79,0x9,0x4e,0x65,0x77,0x20,0x53,0x6f, + 0x75,0x74,0x68,0x20,0x57,0x61,0x6c,0x65,0x73,0x20,0x28,0x6d,0x6f,0x73,0x74,0x20, + 0x61,0x72,0x65,0x61,0x73,0x29,0xa,0x41,0x55,0x9,0x2d,0x33,0x31,0x35,0x37,0x2b, + 0x31,0x34,0x31,0x32,0x37,0x9,0x41,0x75,0x73,0x74,0x72,0x61,0x6c,0x69,0x61,0x2f, + 0x42,0x72,0x6f,0x6b,0x65,0x6e,0x5f,0x48,0x69,0x6c,0x6c,0x9,0x4e,0x65,0x77,0x20, + 0x53,0x6f,0x75,0x74,0x68,0x20,0x57,0x61,0x6c,0x65,0x73,0x20,0x28,0x59,0x61,0x6e, + 0x63,0x6f,0x77,0x69,0x6e,0x6e,0x61,0x29,0xa,0x41,0x55,0x9,0x2d,0x32,0x37,0x32, + 0x38,0x2b,0x31,0x35,0x33,0x30,0x32,0x9,0x41,0x75,0x73,0x74,0x72,0x61,0x6c,0x69, + 0x61,0x2f,0x42,0x72,0x69,0x73,0x62,0x61,0x6e,0x65,0x9,0x51,0x75,0x65,0x65,0x6e, + 0x73,0x6c,0x61,0x6e,0x64,0x20,0x28,0x6d,0x6f,0x73,0x74,0x20,0x61,0x72,0x65,0x61, + 0x73,0x29,0xa,0x41,0x55,0x9,0x2d,0x32,0x30,0x31,0x36,0x2b,0x31,0x34,0x39,0x30, + 0x30,0x9,0x41,0x75,0x73,0x74,0x72,0x61,0x6c,0x69,0x61,0x2f,0x4c,0x69,0x6e,0x64, + 0x65,0x6d,0x61,0x6e,0x9,0x51,0x75,0x65,0x65,0x6e,0x73,0x6c,0x61,0x6e,0x64,0x20, + 0x28,0x57,0x68,0x69,0x74,0x73,0x75,0x6e,0x64,0x61,0x79,0x20,0x49,0x73,0x6c,0x61, + 0x6e,0x64,0x73,0x29,0xa,0x41,0x55,0x9,0x2d,0x33,0x34,0x35,0x35,0x2b,0x31,0x33, + 0x38,0x33,0x35,0x9,0x41,0x75,0x73,0x74,0x72,0x61,0x6c,0x69,0x61,0x2f,0x41,0x64, + 0x65,0x6c,0x61,0x69,0x64,0x65,0x9,0x53,0x6f,0x75,0x74,0x68,0x20,0x41,0x75,0x73, + 0x74,0x72,0x61,0x6c,0x69,0x61,0xa,0x41,0x55,0x9,0x2d,0x31,0x32,0x32,0x38,0x2b, + 0x31,0x33,0x30,0x35,0x30,0x9,0x41,0x75,0x73,0x74,0x72,0x61,0x6c,0x69,0x61,0x2f, + 0x44,0x61,0x72,0x77,0x69,0x6e,0x9,0x4e,0x6f,0x72,0x74,0x68,0x65,0x72,0x6e,0x20, + 0x54,0x65,0x72,0x72,0x69,0x74,0x6f,0x72,0x79,0xa,0x41,0x55,0x9,0x2d,0x33,0x31, + 0x35,0x37,0x2b,0x31,0x31,0x35,0x35,0x31,0x9,0x41,0x75,0x73,0x74,0x72,0x61,0x6c, + 0x69,0x61,0x2f,0x50,0x65,0x72,0x74,0x68,0x9,0x57,0x65,0x73,0x74,0x65,0x72,0x6e, + 0x20,0x41,0x75,0x73,0x74,0x72,0x61,0x6c,0x69,0x61,0x20,0x28,0x6d,0x6f,0x73,0x74, + 0x20,0x61,0x72,0x65,0x61,0x73,0x29,0xa,0x41,0x55,0x9,0x2d,0x33,0x31,0x34,0x33, + 0x2b,0x31,0x32,0x38,0x35,0x32,0x9,0x41,0x75,0x73,0x74,0x72,0x61,0x6c,0x69,0x61, + 0x2f,0x45,0x75,0x63,0x6c,0x61,0x9,0x57,0x65,0x73,0x74,0x65,0x72,0x6e,0x20,0x41, + 0x75,0x73,0x74,0x72,0x61,0x6c,0x69,0x61,0x20,0x28,0x45,0x75,0x63,0x6c,0x61,0x29, + 0xa,0x41,0x57,0x9,0x2b,0x31,0x32,0x33,0x30,0x2d,0x30,0x36,0x39,0x35,0x38,0x9, + 0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x41,0x72,0x75,0x62,0x61,0xa,0x41,0x58, + 0x9,0x2b,0x36,0x30,0x30,0x36,0x2b,0x30,0x31,0x39,0x35,0x37,0x9,0x45,0x75,0x72, + 0x6f,0x70,0x65,0x2f,0x4d,0x61,0x72,0x69,0x65,0x68,0x61,0x6d,0x6e,0xa,0x41,0x5a, + 0x9,0x2b,0x34,0x30,0x32,0x33,0x2b,0x30,0x34,0x39,0x35,0x31,0x9,0x41,0x73,0x69, + 0x61,0x2f,0x42,0x61,0x6b,0x75,0xa,0x42,0x41,0x9,0x2b,0x34,0x33,0x35,0x32,0x2b, + 0x30,0x31,0x38,0x32,0x35,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x53,0x61,0x72, + 0x61,0x6a,0x65,0x76,0x6f,0xa,0x42,0x42,0x9,0x2b,0x31,0x33,0x30,0x36,0x2d,0x30, + 0x35,0x39,0x33,0x37,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x42,0x61,0x72, + 0x62,0x61,0x64,0x6f,0x73,0xa,0x42,0x44,0x9,0x2b,0x32,0x33,0x34,0x33,0x2b,0x30, + 0x39,0x30,0x32,0x35,0x9,0x41,0x73,0x69,0x61,0x2f,0x44,0x68,0x61,0x6b,0x61,0xa, + 0x42,0x45,0x9,0x2b,0x35,0x30,0x35,0x30,0x2b,0x30,0x30,0x34,0x32,0x30,0x9,0x45, + 0x75,0x72,0x6f,0x70,0x65,0x2f,0x42,0x72,0x75,0x73,0x73,0x65,0x6c,0x73,0xa,0x42, + 0x46,0x9,0x2b,0x31,0x32,0x32,0x32,0x2d,0x30,0x30,0x31,0x33,0x31,0x9,0x41,0x66, + 0x72,0x69,0x63,0x61,0x2f,0x4f,0x75,0x61,0x67,0x61,0x64,0x6f,0x75,0x67,0x6f,0x75, + 0xa,0x42,0x47,0x9,0x2b,0x34,0x32,0x34,0x31,0x2b,0x30,0x32,0x33,0x31,0x39,0x9, + 0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x53,0x6f,0x66,0x69,0x61,0xa,0x42,0x48,0x9, + 0x2b,0x32,0x36,0x32,0x33,0x2b,0x30,0x35,0x30,0x33,0x35,0x9,0x41,0x73,0x69,0x61, + 0x2f,0x42,0x61,0x68,0x72,0x61,0x69,0x6e,0xa,0x42,0x49,0x9,0x2d,0x30,0x33,0x32, + 0x33,0x2b,0x30,0x32,0x39,0x32,0x32,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f,0x42, + 0x75,0x6a,0x75,0x6d,0x62,0x75,0x72,0x61,0xa,0x42,0x4a,0x9,0x2b,0x30,0x36,0x32, + 0x39,0x2b,0x30,0x30,0x32,0x33,0x37,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f,0x50, + 0x6f,0x72,0x74,0x6f,0x2d,0x4e,0x6f,0x76,0x6f,0xa,0x42,0x4c,0x9,0x2b,0x31,0x37, + 0x35,0x33,0x2d,0x30,0x36,0x32,0x35,0x31,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61, + 0x2f,0x53,0x74,0x5f,0x42,0x61,0x72,0x74,0x68,0x65,0x6c,0x65,0x6d,0x79,0xa,0x42, + 0x4d,0x9,0x2b,0x33,0x32,0x31,0x37,0x2d,0x30,0x36,0x34,0x34,0x36,0x9,0x41,0x74, + 0x6c,0x61,0x6e,0x74,0x69,0x63,0x2f,0x42,0x65,0x72,0x6d,0x75,0x64,0x61,0xa,0x42, + 0x4e,0x9,0x2b,0x30,0x34,0x35,0x36,0x2b,0x31,0x31,0x34,0x35,0x35,0x9,0x41,0x73, + 0x69,0x61,0x2f,0x42,0x72,0x75,0x6e,0x65,0x69,0xa,0x42,0x4f,0x9,0x2d,0x31,0x36, + 0x33,0x30,0x2d,0x30,0x36,0x38,0x30,0x39,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61, + 0x2f,0x4c,0x61,0x5f,0x50,0x61,0x7a,0xa,0x42,0x51,0x9,0x2b,0x31,0x32,0x30,0x39, + 0x30,0x33,0x2d,0x30,0x36,0x38,0x31,0x36,0x33,0x36,0x9,0x41,0x6d,0x65,0x72,0x69, + 0x63,0x61,0x2f,0x4b,0x72,0x61,0x6c,0x65,0x6e,0x64,0x69,0x6a,0x6b,0xa,0x42,0x52, + 0x9,0x2d,0x30,0x33,0x35,0x31,0x2d,0x30,0x33,0x32,0x32,0x35,0x9,0x41,0x6d,0x65, + 0x72,0x69,0x63,0x61,0x2f,0x4e,0x6f,0x72,0x6f,0x6e,0x68,0x61,0x9,0x41,0x74,0x6c, + 0x61,0x6e,0x74,0x69,0x63,0x20,0x69,0x73,0x6c,0x61,0x6e,0x64,0x73,0xa,0x42,0x52, + 0x9,0x2d,0x30,0x31,0x32,0x37,0x2d,0x30,0x34,0x38,0x32,0x39,0x9,0x41,0x6d,0x65, + 0x72,0x69,0x63,0x61,0x2f,0x42,0x65,0x6c,0x65,0x6d,0x9,0x50,0x61,0x72,0x61,0x20, + 0x28,0x65,0x61,0x73,0x74,0x29,0x3b,0x20,0x41,0x6d,0x61,0x70,0x61,0xa,0x42,0x52, + 0x9,0x2d,0x30,0x33,0x34,0x33,0x2d,0x30,0x33,0x38,0x33,0x30,0x9,0x41,0x6d,0x65, + 0x72,0x69,0x63,0x61,0x2f,0x46,0x6f,0x72,0x74,0x61,0x6c,0x65,0x7a,0x61,0x9,0x42, + 0x72,0x61,0x7a,0x69,0x6c,0x20,0x28,0x6e,0x6f,0x72,0x74,0x68,0x65,0x61,0x73,0x74, + 0x3a,0x20,0x4d,0x41,0x2c,0x20,0x50,0x49,0x2c,0x20,0x43,0x45,0x2c,0x20,0x52,0x4e, + 0x2c,0x20,0x50,0x42,0x29,0xa,0x42,0x52,0x9,0x2d,0x30,0x38,0x30,0x33,0x2d,0x30, + 0x33,0x34,0x35,0x34,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x52,0x65,0x63, + 0x69,0x66,0x65,0x9,0x50,0x65,0x72,0x6e,0x61,0x6d,0x62,0x75,0x63,0x6f,0xa,0x42, + 0x52,0x9,0x2d,0x30,0x37,0x31,0x32,0x2d,0x30,0x34,0x38,0x31,0x32,0x9,0x41,0x6d, + 0x65,0x72,0x69,0x63,0x61,0x2f,0x41,0x72,0x61,0x67,0x75,0x61,0x69,0x6e,0x61,0x9, + 0x54,0x6f,0x63,0x61,0x6e,0x74,0x69,0x6e,0x73,0xa,0x42,0x52,0x9,0x2d,0x30,0x39, + 0x34,0x30,0x2d,0x30,0x33,0x35,0x34,0x33,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61, + 0x2f,0x4d,0x61,0x63,0x65,0x69,0x6f,0x9,0x41,0x6c,0x61,0x67,0x6f,0x61,0x73,0x2c, + 0x20,0x53,0x65,0x72,0x67,0x69,0x70,0x65,0xa,0x42,0x52,0x9,0x2d,0x31,0x32,0x35, + 0x39,0x2d,0x30,0x33,0x38,0x33,0x31,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f, + 0x42,0x61,0x68,0x69,0x61,0x9,0x42,0x61,0x68,0x69,0x61,0xa,0x42,0x52,0x9,0x2d, + 0x32,0x33,0x33,0x32,0x2d,0x30,0x34,0x36,0x33,0x37,0x9,0x41,0x6d,0x65,0x72,0x69, + 0x63,0x61,0x2f,0x53,0x61,0x6f,0x5f,0x50,0x61,0x75,0x6c,0x6f,0x9,0x42,0x72,0x61, + 0x7a,0x69,0x6c,0x20,0x28,0x73,0x6f,0x75,0x74,0x68,0x65,0x61,0x73,0x74,0x3a,0x20, + 0x47,0x4f,0x2c,0x20,0x44,0x46,0x2c,0x20,0x4d,0x47,0x2c,0x20,0x45,0x53,0x2c,0x20, + 0x52,0x4a,0x2c,0x20,0x53,0x50,0x2c,0x20,0x50,0x52,0x2c,0x20,0x53,0x43,0x2c,0x20, + 0x52,0x53,0x29,0xa,0x42,0x52,0x9,0x2d,0x32,0x30,0x32,0x37,0x2d,0x30,0x35,0x34, + 0x33,0x37,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x43,0x61,0x6d,0x70,0x6f, + 0x5f,0x47,0x72,0x61,0x6e,0x64,0x65,0x9,0x4d,0x61,0x74,0x6f,0x20,0x47,0x72,0x6f, + 0x73,0x73,0x6f,0x20,0x64,0x6f,0x20,0x53,0x75,0x6c,0xa,0x42,0x52,0x9,0x2d,0x31, + 0x35,0x33,0x35,0x2d,0x30,0x35,0x36,0x30,0x35,0x9,0x41,0x6d,0x65,0x72,0x69,0x63, + 0x61,0x2f,0x43,0x75,0x69,0x61,0x62,0x61,0x9,0x4d,0x61,0x74,0x6f,0x20,0x47,0x72, + 0x6f,0x73,0x73,0x6f,0xa,0x42,0x52,0x9,0x2d,0x30,0x32,0x32,0x36,0x2d,0x30,0x35, + 0x34,0x35,0x32,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x53,0x61,0x6e,0x74, + 0x61,0x72,0x65,0x6d,0x9,0x50,0x61,0x72,0x61,0x20,0x28,0x77,0x65,0x73,0x74,0x29, + 0xa,0x42,0x52,0x9,0x2d,0x30,0x38,0x34,0x36,0x2d,0x30,0x36,0x33,0x35,0x34,0x9, + 0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x50,0x6f,0x72,0x74,0x6f,0x5f,0x56,0x65, + 0x6c,0x68,0x6f,0x9,0x52,0x6f,0x6e,0x64,0x6f,0x6e,0x69,0x61,0xa,0x42,0x52,0x9, + 0x2b,0x30,0x32,0x34,0x39,0x2d,0x30,0x36,0x30,0x34,0x30,0x9,0x41,0x6d,0x65,0x72, + 0x69,0x63,0x61,0x2f,0x42,0x6f,0x61,0x5f,0x56,0x69,0x73,0x74,0x61,0x9,0x52,0x6f, + 0x72,0x61,0x69,0x6d,0x61,0xa,0x42,0x52,0x9,0x2d,0x30,0x33,0x30,0x38,0x2d,0x30, + 0x36,0x30,0x30,0x31,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x4d,0x61,0x6e, + 0x61,0x75,0x73,0x9,0x41,0x6d,0x61,0x7a,0x6f,0x6e,0x61,0x73,0x20,0x28,0x65,0x61, + 0x73,0x74,0x29,0xa,0x42,0x52,0x9,0x2d,0x30,0x36,0x34,0x30,0x2d,0x30,0x36,0x39, + 0x35,0x32,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x45,0x69,0x72,0x75,0x6e, + 0x65,0x70,0x65,0x9,0x41,0x6d,0x61,0x7a,0x6f,0x6e,0x61,0x73,0x20,0x28,0x77,0x65, + 0x73,0x74,0x29,0xa,0x42,0x52,0x9,0x2d,0x30,0x39,0x35,0x38,0x2d,0x30,0x36,0x37, + 0x34,0x38,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x52,0x69,0x6f,0x5f,0x42, + 0x72,0x61,0x6e,0x63,0x6f,0x9,0x41,0x63,0x72,0x65,0xa,0x42,0x53,0x9,0x2b,0x32, + 0x35,0x30,0x35,0x2d,0x30,0x37,0x37,0x32,0x31,0x9,0x41,0x6d,0x65,0x72,0x69,0x63, + 0x61,0x2f,0x4e,0x61,0x73,0x73,0x61,0x75,0xa,0x42,0x54,0x9,0x2b,0x32,0x37,0x32, + 0x38,0x2b,0x30,0x38,0x39,0x33,0x39,0x9,0x41,0x73,0x69,0x61,0x2f,0x54,0x68,0x69, + 0x6d,0x70,0x68,0x75,0xa,0x42,0x57,0x9,0x2d,0x32,0x34,0x33,0x39,0x2b,0x30,0x32, + 0x35,0x35,0x35,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f,0x47,0x61,0x62,0x6f,0x72, + 0x6f,0x6e,0x65,0xa,0x42,0x59,0x9,0x2b,0x35,0x33,0x35,0x34,0x2b,0x30,0x32,0x37, + 0x33,0x34,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x4d,0x69,0x6e,0x73,0x6b,0xa, + 0x42,0x5a,0x9,0x2b,0x31,0x37,0x33,0x30,0x2d,0x30,0x38,0x38,0x31,0x32,0x9,0x41, + 0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x42,0x65,0x6c,0x69,0x7a,0x65,0xa,0x43,0x41, + 0x9,0x2b,0x34,0x37,0x33,0x34,0x2d,0x30,0x35,0x32,0x34,0x33,0x9,0x41,0x6d,0x65, + 0x72,0x69,0x63,0x61,0x2f,0x53,0x74,0x5f,0x4a,0x6f,0x68,0x6e,0x73,0x9,0x4e,0x65, + 0x77,0x66,0x6f,0x75,0x6e,0x64,0x6c,0x61,0x6e,0x64,0x3b,0x20,0x4c,0x61,0x62,0x72, + 0x61,0x64,0x6f,0x72,0x20,0x28,0x73,0x6f,0x75,0x74,0x68,0x65,0x61,0x73,0x74,0x29, + 0xa,0x43,0x41,0x9,0x2b,0x34,0x34,0x33,0x39,0x2d,0x30,0x36,0x33,0x33,0x36,0x9, + 0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x48,0x61,0x6c,0x69,0x66,0x61,0x78,0x9, + 0x41,0x74,0x6c,0x61,0x6e,0x74,0x69,0x63,0x20,0x2d,0x20,0x4e,0x53,0x20,0x28,0x6d, + 0x6f,0x73,0x74,0x20,0x61,0x72,0x65,0x61,0x73,0x29,0x3b,0x20,0x50,0x45,0xa,0x43, + 0x41,0x9,0x2b,0x34,0x36,0x31,0x32,0x2d,0x30,0x35,0x39,0x35,0x37,0x9,0x41,0x6d, + 0x65,0x72,0x69,0x63,0x61,0x2f,0x47,0x6c,0x61,0x63,0x65,0x5f,0x42,0x61,0x79,0x9, + 0x41,0x74,0x6c,0x61,0x6e,0x74,0x69,0x63,0x20,0x2d,0x20,0x4e,0x53,0x20,0x28,0x43, + 0x61,0x70,0x65,0x20,0x42,0x72,0x65,0x74,0x6f,0x6e,0x29,0xa,0x43,0x41,0x9,0x2b, + 0x34,0x36,0x30,0x36,0x2d,0x30,0x36,0x34,0x34,0x37,0x9,0x41,0x6d,0x65,0x72,0x69, + 0x63,0x61,0x2f,0x4d,0x6f,0x6e,0x63,0x74,0x6f,0x6e,0x9,0x41,0x74,0x6c,0x61,0x6e, + 0x74,0x69,0x63,0x20,0x2d,0x20,0x4e,0x65,0x77,0x20,0x42,0x72,0x75,0x6e,0x73,0x77, + 0x69,0x63,0x6b,0xa,0x43,0x41,0x9,0x2b,0x35,0x33,0x32,0x30,0x2d,0x30,0x36,0x30, + 0x32,0x35,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x47,0x6f,0x6f,0x73,0x65, + 0x5f,0x42,0x61,0x79,0x9,0x41,0x74,0x6c,0x61,0x6e,0x74,0x69,0x63,0x20,0x2d,0x20, + 0x4c,0x61,0x62,0x72,0x61,0x64,0x6f,0x72,0x20,0x28,0x6d,0x6f,0x73,0x74,0x20,0x61, + 0x72,0x65,0x61,0x73,0x29,0xa,0x43,0x41,0x9,0x2b,0x35,0x31,0x32,0x35,0x2d,0x30, + 0x35,0x37,0x30,0x37,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x42,0x6c,0x61, + 0x6e,0x63,0x2d,0x53,0x61,0x62,0x6c,0x6f,0x6e,0x9,0x41,0x53,0x54,0x20,0x2d,0x20, + 0x51,0x43,0x20,0x28,0x4c,0x6f,0x77,0x65,0x72,0x20,0x4e,0x6f,0x72,0x74,0x68,0x20, + 0x53,0x68,0x6f,0x72,0x65,0x29,0xa,0x43,0x41,0x9,0x2b,0x34,0x33,0x33,0x39,0x2d, + 0x30,0x37,0x39,0x32,0x33,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x54,0x6f, + 0x72,0x6f,0x6e,0x74,0x6f,0x9,0x45,0x61,0x73,0x74,0x65,0x72,0x6e,0x20,0x2d,0x20, + 0x4f,0x4e,0x2c,0x20,0x51,0x43,0x20,0x28,0x6d,0x6f,0x73,0x74,0x20,0x61,0x72,0x65, + 0x61,0x73,0x29,0xa,0x43,0x41,0x9,0x2b,0x34,0x39,0x30,0x31,0x2d,0x30,0x38,0x38, + 0x31,0x36,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x4e,0x69,0x70,0x69,0x67, + 0x6f,0x6e,0x9,0x45,0x61,0x73,0x74,0x65,0x72,0x6e,0x20,0x2d,0x20,0x4f,0x4e,0x2c, + 0x20,0x51,0x43,0x20,0x28,0x6e,0x6f,0x20,0x44,0x53,0x54,0x20,0x31,0x39,0x36,0x37, + 0x2d,0x37,0x33,0x29,0xa,0x43,0x41,0x9,0x2b,0x34,0x38,0x32,0x33,0x2d,0x30,0x38, + 0x39,0x31,0x35,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x54,0x68,0x75,0x6e, + 0x64,0x65,0x72,0x5f,0x42,0x61,0x79,0x9,0x45,0x61,0x73,0x74,0x65,0x72,0x6e,0x20, + 0x2d,0x20,0x4f,0x4e,0x20,0x28,0x54,0x68,0x75,0x6e,0x64,0x65,0x72,0x20,0x42,0x61, + 0x79,0x29,0xa,0x43,0x41,0x9,0x2b,0x36,0x33,0x34,0x34,0x2d,0x30,0x36,0x38,0x32, + 0x38,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x49,0x71,0x61,0x6c,0x75,0x69, + 0x74,0x9,0x45,0x61,0x73,0x74,0x65,0x72,0x6e,0x20,0x2d,0x20,0x4e,0x55,0x20,0x28, + 0x6d,0x6f,0x73,0x74,0x20,0x65,0x61,0x73,0x74,0x20,0x61,0x72,0x65,0x61,0x73,0x29, + 0xa,0x43,0x41,0x9,0x2b,0x36,0x36,0x30,0x38,0x2d,0x30,0x36,0x35,0x34,0x34,0x9, + 0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x50,0x61,0x6e,0x67,0x6e,0x69,0x72,0x74, + 0x75,0x6e,0x67,0x9,0x45,0x61,0x73,0x74,0x65,0x72,0x6e,0x20,0x2d,0x20,0x4e,0x55, + 0x20,0x28,0x50,0x61,0x6e,0x67,0x6e,0x69,0x72,0x74,0x75,0x6e,0x67,0x29,0xa,0x43, + 0x41,0x9,0x2b,0x34,0x38,0x34,0x35,0x33,0x31,0x2d,0x30,0x39,0x31,0x33,0x37,0x31, + 0x38,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x41,0x74,0x69,0x6b,0x6f,0x6b, + 0x61,0x6e,0x9,0x45,0x53,0x54,0x20,0x2d,0x20,0x4f,0x4e,0x20,0x28,0x41,0x74,0x69, + 0x6b,0x6f,0x6b,0x61,0x6e,0x29,0x3b,0x20,0x4e,0x55,0x20,0x28,0x43,0x6f,0x72,0x61, + 0x6c,0x20,0x48,0x29,0xa,0x43,0x41,0x9,0x2b,0x34,0x39,0x35,0x33,0x2d,0x30,0x39, + 0x37,0x30,0x39,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x57,0x69,0x6e,0x6e, + 0x69,0x70,0x65,0x67,0x9,0x43,0x65,0x6e,0x74,0x72,0x61,0x6c,0x20,0x2d,0x20,0x4f, + 0x4e,0x20,0x28,0x77,0x65,0x73,0x74,0x29,0x3b,0x20,0x4d,0x61,0x6e,0x69,0x74,0x6f, + 0x62,0x61,0xa,0x43,0x41,0x9,0x2b,0x34,0x38,0x34,0x33,0x2d,0x30,0x39,0x34,0x33, + 0x34,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x52,0x61,0x69,0x6e,0x79,0x5f, + 0x52,0x69,0x76,0x65,0x72,0x9,0x43,0x65,0x6e,0x74,0x72,0x61,0x6c,0x20,0x2d,0x20, + 0x4f,0x4e,0x20,0x28,0x52,0x61,0x69,0x6e,0x79,0x20,0x52,0x2c,0x20,0x46,0x74,0x20, + 0x46,0x72,0x61,0x6e,0x63,0x65,0x73,0x29,0xa,0x43,0x41,0x9,0x2b,0x37,0x34,0x34, + 0x31,0x34,0x34,0x2d,0x30,0x39,0x34,0x34,0x39,0x34,0x35,0x9,0x41,0x6d,0x65,0x72, + 0x69,0x63,0x61,0x2f,0x52,0x65,0x73,0x6f,0x6c,0x75,0x74,0x65,0x9,0x43,0x65,0x6e, + 0x74,0x72,0x61,0x6c,0x20,0x2d,0x20,0x4e,0x55,0x20,0x28,0x52,0x65,0x73,0x6f,0x6c, + 0x75,0x74,0x65,0x29,0xa,0x43,0x41,0x9,0x2b,0x36,0x32,0x34,0x39,0x30,0x30,0x2d, + 0x30,0x39,0x32,0x30,0x34,0x35,0x39,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f, + 0x52,0x61,0x6e,0x6b,0x69,0x6e,0x5f,0x49,0x6e,0x6c,0x65,0x74,0x9,0x43,0x65,0x6e, + 0x74,0x72,0x61,0x6c,0x20,0x2d,0x20,0x4e,0x55,0x20,0x28,0x63,0x65,0x6e,0x74,0x72, + 0x61,0x6c,0x29,0xa,0x43,0x41,0x9,0x2b,0x35,0x30,0x32,0x34,0x2d,0x31,0x30,0x34, + 0x33,0x39,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x52,0x65,0x67,0x69,0x6e, + 0x61,0x9,0x43,0x53,0x54,0x20,0x2d,0x20,0x53,0x4b,0x20,0x28,0x6d,0x6f,0x73,0x74, + 0x20,0x61,0x72,0x65,0x61,0x73,0x29,0xa,0x43,0x41,0x9,0x2b,0x35,0x30,0x31,0x37, + 0x2d,0x31,0x30,0x37,0x35,0x30,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x53, + 0x77,0x69,0x66,0x74,0x5f,0x43,0x75,0x72,0x72,0x65,0x6e,0x74,0x9,0x43,0x53,0x54, + 0x20,0x2d,0x20,0x53,0x4b,0x20,0x28,0x6d,0x69,0x64,0x77,0x65,0x73,0x74,0x29,0xa, + 0x43,0x41,0x9,0x2b,0x35,0x33,0x33,0x33,0x2d,0x31,0x31,0x33,0x32,0x38,0x9,0x41, + 0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x45,0x64,0x6d,0x6f,0x6e,0x74,0x6f,0x6e,0x9, + 0x4d,0x6f,0x75,0x6e,0x74,0x61,0x69,0x6e,0x20,0x2d,0x20,0x41,0x42,0x3b,0x20,0x42, + 0x43,0x20,0x28,0x45,0x29,0x3b,0x20,0x53,0x4b,0x20,0x28,0x57,0x29,0xa,0x43,0x41, + 0x9,0x2b,0x36,0x39,0x30,0x36,0x35,0x30,0x2d,0x31,0x30,0x35,0x30,0x33,0x31,0x30, + 0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x43,0x61,0x6d,0x62,0x72,0x69,0x64, + 0x67,0x65,0x5f,0x42,0x61,0x79,0x9,0x4d,0x6f,0x75,0x6e,0x74,0x61,0x69,0x6e,0x20, + 0x2d,0x20,0x4e,0x55,0x20,0x28,0x77,0x65,0x73,0x74,0x29,0xa,0x43,0x41,0x9,0x2b, + 0x36,0x32,0x32,0x37,0x2d,0x31,0x31,0x34,0x32,0x31,0x9,0x41,0x6d,0x65,0x72,0x69, + 0x63,0x61,0x2f,0x59,0x65,0x6c,0x6c,0x6f,0x77,0x6b,0x6e,0x69,0x66,0x65,0x9,0x4d, + 0x6f,0x75,0x6e,0x74,0x61,0x69,0x6e,0x20,0x2d,0x20,0x4e,0x54,0x20,0x28,0x63,0x65, + 0x6e,0x74,0x72,0x61,0x6c,0x29,0xa,0x43,0x41,0x9,0x2b,0x36,0x38,0x32,0x30,0x35, + 0x39,0x2d,0x31,0x33,0x33,0x34,0x33,0x30,0x30,0x9,0x41,0x6d,0x65,0x72,0x69,0x63, + 0x61,0x2f,0x49,0x6e,0x75,0x76,0x69,0x6b,0x9,0x4d,0x6f,0x75,0x6e,0x74,0x61,0x69, + 0x6e,0x20,0x2d,0x20,0x4e,0x54,0x20,0x28,0x77,0x65,0x73,0x74,0x29,0xa,0x43,0x41, + 0x9,0x2b,0x34,0x39,0x30,0x36,0x2d,0x31,0x31,0x36,0x33,0x31,0x9,0x41,0x6d,0x65, + 0x72,0x69,0x63,0x61,0x2f,0x43,0x72,0x65,0x73,0x74,0x6f,0x6e,0x9,0x4d,0x53,0x54, + 0x20,0x2d,0x20,0x42,0x43,0x20,0x28,0x43,0x72,0x65,0x73,0x74,0x6f,0x6e,0x29,0xa, + 0x43,0x41,0x9,0x2b,0x35,0x39,0x34,0x36,0x2d,0x31,0x32,0x30,0x31,0x34,0x9,0x41, + 0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x44,0x61,0x77,0x73,0x6f,0x6e,0x5f,0x43,0x72, + 0x65,0x65,0x6b,0x9,0x4d,0x53,0x54,0x20,0x2d,0x20,0x42,0x43,0x20,0x28,0x44,0x61, + 0x77,0x73,0x6f,0x6e,0x20,0x43,0x72,0x2c,0x20,0x46,0x74,0x20,0x53,0x74,0x20,0x4a, + 0x6f,0x68,0x6e,0x29,0xa,0x43,0x41,0x9,0x2b,0x35,0x38,0x34,0x38,0x2d,0x31,0x32, + 0x32,0x34,0x32,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x46,0x6f,0x72,0x74, + 0x5f,0x4e,0x65,0x6c,0x73,0x6f,0x6e,0x9,0x4d,0x53,0x54,0x20,0x2d,0x20,0x42,0x43, + 0x20,0x28,0x46,0x74,0x20,0x4e,0x65,0x6c,0x73,0x6f,0x6e,0x29,0xa,0x43,0x41,0x9, + 0x2b,0x34,0x39,0x31,0x36,0x2d,0x31,0x32,0x33,0x30,0x37,0x9,0x41,0x6d,0x65,0x72, + 0x69,0x63,0x61,0x2f,0x56,0x61,0x6e,0x63,0x6f,0x75,0x76,0x65,0x72,0x9,0x50,0x61, + 0x63,0x69,0x66,0x69,0x63,0x20,0x2d,0x20,0x42,0x43,0x20,0x28,0x6d,0x6f,0x73,0x74, + 0x20,0x61,0x72,0x65,0x61,0x73,0x29,0xa,0x43,0x41,0x9,0x2b,0x36,0x30,0x34,0x33, + 0x2d,0x31,0x33,0x35,0x30,0x33,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x57, + 0x68,0x69,0x74,0x65,0x68,0x6f,0x72,0x73,0x65,0x9,0x50,0x61,0x63,0x69,0x66,0x69, + 0x63,0x20,0x2d,0x20,0x59,0x75,0x6b,0x6f,0x6e,0x20,0x28,0x73,0x6f,0x75,0x74,0x68, + 0x29,0xa,0x43,0x41,0x9,0x2b,0x36,0x34,0x30,0x34,0x2d,0x31,0x33,0x39,0x32,0x35, + 0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x44,0x61,0x77,0x73,0x6f,0x6e,0x9, + 0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x20,0x2d,0x20,0x59,0x75,0x6b,0x6f,0x6e,0x20, + 0x28,0x6e,0x6f,0x72,0x74,0x68,0x29,0xa,0x43,0x43,0x9,0x2d,0x31,0x32,0x31,0x30, + 0x2b,0x30,0x39,0x36,0x35,0x35,0x9,0x49,0x6e,0x64,0x69,0x61,0x6e,0x2f,0x43,0x6f, + 0x63,0x6f,0x73,0xa,0x43,0x44,0x9,0x2d,0x30,0x34,0x31,0x38,0x2b,0x30,0x31,0x35, + 0x31,0x38,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f,0x4b,0x69,0x6e,0x73,0x68,0x61, + 0x73,0x61,0x9,0x44,0x65,0x6d,0x2e,0x20,0x52,0x65,0x70,0x2e,0x20,0x6f,0x66,0x20, + 0x43,0x6f,0x6e,0x67,0x6f,0x20,0x28,0x77,0x65,0x73,0x74,0x29,0xa,0x43,0x44,0x9, + 0x2d,0x31,0x31,0x34,0x30,0x2b,0x30,0x32,0x37,0x32,0x38,0x9,0x41,0x66,0x72,0x69, + 0x63,0x61,0x2f,0x4c,0x75,0x62,0x75,0x6d,0x62,0x61,0x73,0x68,0x69,0x9,0x44,0x65, + 0x6d,0x2e,0x20,0x52,0x65,0x70,0x2e,0x20,0x6f,0x66,0x20,0x43,0x6f,0x6e,0x67,0x6f, + 0x20,0x28,0x65,0x61,0x73,0x74,0x29,0xa,0x43,0x46,0x9,0x2b,0x30,0x34,0x32,0x32, + 0x2b,0x30,0x31,0x38,0x33,0x35,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f,0x42,0x61, + 0x6e,0x67,0x75,0x69,0xa,0x43,0x47,0x9,0x2d,0x30,0x34,0x31,0x36,0x2b,0x30,0x31, + 0x35,0x31,0x37,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f,0x42,0x72,0x61,0x7a,0x7a, + 0x61,0x76,0x69,0x6c,0x6c,0x65,0xa,0x43,0x48,0x9,0x2b,0x34,0x37,0x32,0x33,0x2b, + 0x30,0x30,0x38,0x33,0x32,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x5a,0x75,0x72, + 0x69,0x63,0x68,0xa,0x43,0x49,0x9,0x2b,0x30,0x35,0x31,0x39,0x2d,0x30,0x30,0x34, + 0x30,0x32,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f,0x41,0x62,0x69,0x64,0x6a,0x61, + 0x6e,0xa,0x43,0x4b,0x9,0x2d,0x32,0x31,0x31,0x34,0x2d,0x31,0x35,0x39,0x34,0x36, + 0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x2f,0x52,0x61,0x72,0x6f,0x74,0x6f,0x6e, + 0x67,0x61,0xa,0x43,0x4c,0x9,0x2d,0x33,0x33,0x32,0x37,0x2d,0x30,0x37,0x30,0x34, + 0x30,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x53,0x61,0x6e,0x74,0x69,0x61, + 0x67,0x6f,0x9,0x43,0x68,0x69,0x6c,0x65,0x20,0x28,0x6d,0x6f,0x73,0x74,0x20,0x61, + 0x72,0x65,0x61,0x73,0x29,0xa,0x43,0x4c,0x9,0x2d,0x35,0x33,0x30,0x39,0x2d,0x30, + 0x37,0x30,0x35,0x35,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x50,0x75,0x6e, + 0x74,0x61,0x5f,0x41,0x72,0x65,0x6e,0x61,0x73,0x9,0x52,0x65,0x67,0x69,0x6f,0x6e, + 0x20,0x6f,0x66,0x20,0x4d,0x61,0x67,0x61,0x6c,0x6c,0x61,0x6e,0x65,0x73,0xa,0x43, + 0x4c,0x9,0x2d,0x32,0x37,0x30,0x39,0x2d,0x31,0x30,0x39,0x32,0x36,0x9,0x50,0x61, + 0x63,0x69,0x66,0x69,0x63,0x2f,0x45,0x61,0x73,0x74,0x65,0x72,0x9,0x45,0x61,0x73, + 0x74,0x65,0x72,0x20,0x49,0x73,0x6c,0x61,0x6e,0x64,0xa,0x43,0x4d,0x9,0x2b,0x30, + 0x34,0x30,0x33,0x2b,0x30,0x30,0x39,0x34,0x32,0x9,0x41,0x66,0x72,0x69,0x63,0x61, + 0x2f,0x44,0x6f,0x75,0x61,0x6c,0x61,0xa,0x43,0x4e,0x9,0x2b,0x33,0x31,0x31,0x34, + 0x2b,0x31,0x32,0x31,0x32,0x38,0x9,0x41,0x73,0x69,0x61,0x2f,0x53,0x68,0x61,0x6e, + 0x67,0x68,0x61,0x69,0x9,0x42,0x65,0x69,0x6a,0x69,0x6e,0x67,0x20,0x54,0x69,0x6d, + 0x65,0xa,0x43,0x4e,0x9,0x2b,0x34,0x33,0x34,0x38,0x2b,0x30,0x38,0x37,0x33,0x35, + 0x9,0x41,0x73,0x69,0x61,0x2f,0x55,0x72,0x75,0x6d,0x71,0x69,0x9,0x58,0x69,0x6e, + 0x6a,0x69,0x61,0x6e,0x67,0x20,0x54,0x69,0x6d,0x65,0xa,0x43,0x4f,0x9,0x2b,0x30, + 0x34,0x33,0x36,0x2d,0x30,0x37,0x34,0x30,0x35,0x9,0x41,0x6d,0x65,0x72,0x69,0x63, + 0x61,0x2f,0x42,0x6f,0x67,0x6f,0x74,0x61,0xa,0x43,0x52,0x9,0x2b,0x30,0x39,0x35, + 0x36,0x2d,0x30,0x38,0x34,0x30,0x35,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f, + 0x43,0x6f,0x73,0x74,0x61,0x5f,0x52,0x69,0x63,0x61,0xa,0x43,0x55,0x9,0x2b,0x32, + 0x33,0x30,0x38,0x2d,0x30,0x38,0x32,0x32,0x32,0x9,0x41,0x6d,0x65,0x72,0x69,0x63, + 0x61,0x2f,0x48,0x61,0x76,0x61,0x6e,0x61,0xa,0x43,0x56,0x9,0x2b,0x31,0x34,0x35, + 0x35,0x2d,0x30,0x32,0x33,0x33,0x31,0x9,0x41,0x74,0x6c,0x61,0x6e,0x74,0x69,0x63, + 0x2f,0x43,0x61,0x70,0x65,0x5f,0x56,0x65,0x72,0x64,0x65,0xa,0x43,0x57,0x9,0x2b, + 0x31,0x32,0x31,0x31,0x2d,0x30,0x36,0x39,0x30,0x30,0x9,0x41,0x6d,0x65,0x72,0x69, + 0x63,0x61,0x2f,0x43,0x75,0x72,0x61,0x63,0x61,0x6f,0xa,0x43,0x58,0x9,0x2d,0x31, + 0x30,0x32,0x35,0x2b,0x31,0x30,0x35,0x34,0x33,0x9,0x49,0x6e,0x64,0x69,0x61,0x6e, + 0x2f,0x43,0x68,0x72,0x69,0x73,0x74,0x6d,0x61,0x73,0xa,0x43,0x59,0x9,0x2b,0x33, + 0x35,0x31,0x30,0x2b,0x30,0x33,0x33,0x32,0x32,0x9,0x41,0x73,0x69,0x61,0x2f,0x4e, + 0x69,0x63,0x6f,0x73,0x69,0x61,0x9,0x43,0x79,0x70,0x72,0x75,0x73,0x20,0x28,0x6d, + 0x6f,0x73,0x74,0x20,0x61,0x72,0x65,0x61,0x73,0x29,0xa,0x43,0x59,0x9,0x2b,0x33, + 0x35,0x30,0x37,0x2b,0x30,0x33,0x33,0x35,0x37,0x9,0x41,0x73,0x69,0x61,0x2f,0x46, + 0x61,0x6d,0x61,0x67,0x75,0x73,0x74,0x61,0x9,0x4e,0x6f,0x72,0x74,0x68,0x65,0x72, + 0x6e,0x20,0x43,0x79,0x70,0x72,0x75,0x73,0xa,0x43,0x5a,0x9,0x2b,0x35,0x30,0x30, + 0x35,0x2b,0x30,0x31,0x34,0x32,0x36,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x50, + 0x72,0x61,0x67,0x75,0x65,0xa,0x44,0x45,0x9,0x2b,0x35,0x32,0x33,0x30,0x2b,0x30, + 0x31,0x33,0x32,0x32,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x42,0x65,0x72,0x6c, + 0x69,0x6e,0x9,0x47,0x65,0x72,0x6d,0x61,0x6e,0x79,0x20,0x28,0x6d,0x6f,0x73,0x74, + 0x20,0x61,0x72,0x65,0x61,0x73,0x29,0xa,0x44,0x45,0x9,0x2b,0x34,0x37,0x34,0x32, + 0x2b,0x30,0x30,0x38,0x34,0x31,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x42,0x75, + 0x73,0x69,0x6e,0x67,0x65,0x6e,0x9,0x42,0x75,0x73,0x69,0x6e,0x67,0x65,0x6e,0xa, + 0x44,0x4a,0x9,0x2b,0x31,0x31,0x33,0x36,0x2b,0x30,0x34,0x33,0x30,0x39,0x9,0x41, + 0x66,0x72,0x69,0x63,0x61,0x2f,0x44,0x6a,0x69,0x62,0x6f,0x75,0x74,0x69,0xa,0x44, + 0x4b,0x9,0x2b,0x35,0x35,0x34,0x30,0x2b,0x30,0x31,0x32,0x33,0x35,0x9,0x45,0x75, + 0x72,0x6f,0x70,0x65,0x2f,0x43,0x6f,0x70,0x65,0x6e,0x68,0x61,0x67,0x65,0x6e,0xa, + 0x44,0x4d,0x9,0x2b,0x31,0x35,0x31,0x38,0x2d,0x30,0x36,0x31,0x32,0x34,0x9,0x41, + 0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x44,0x6f,0x6d,0x69,0x6e,0x69,0x63,0x61,0xa, + 0x44,0x4f,0x9,0x2b,0x31,0x38,0x32,0x38,0x2d,0x30,0x36,0x39,0x35,0x34,0x9,0x41, + 0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x53,0x61,0x6e,0x74,0x6f,0x5f,0x44,0x6f,0x6d, + 0x69,0x6e,0x67,0x6f,0xa,0x44,0x5a,0x9,0x2b,0x33,0x36,0x34,0x37,0x2b,0x30,0x30, + 0x33,0x30,0x33,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f,0x41,0x6c,0x67,0x69,0x65, + 0x72,0x73,0xa,0x45,0x43,0x9,0x2d,0x30,0x32,0x31,0x30,0x2d,0x30,0x37,0x39,0x35, + 0x30,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x47,0x75,0x61,0x79,0x61,0x71, + 0x75,0x69,0x6c,0x9,0x45,0x63,0x75,0x61,0x64,0x6f,0x72,0x20,0x28,0x6d,0x61,0x69, + 0x6e,0x6c,0x61,0x6e,0x64,0x29,0xa,0x45,0x43,0x9,0x2d,0x30,0x30,0x35,0x34,0x2d, + 0x30,0x38,0x39,0x33,0x36,0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x2f,0x47,0x61, + 0x6c,0x61,0x70,0x61,0x67,0x6f,0x73,0x9,0x47,0x61,0x6c,0x61,0x70,0x61,0x67,0x6f, + 0x73,0x20,0x49,0x73,0x6c,0x61,0x6e,0x64,0x73,0xa,0x45,0x45,0x9,0x2b,0x35,0x39, + 0x32,0x35,0x2b,0x30,0x32,0x34,0x34,0x35,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f, + 0x54,0x61,0x6c,0x6c,0x69,0x6e,0x6e,0xa,0x45,0x47,0x9,0x2b,0x33,0x30,0x30,0x33, + 0x2b,0x30,0x33,0x31,0x31,0x35,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f,0x43,0x61, + 0x69,0x72,0x6f,0xa,0x45,0x48,0x9,0x2b,0x32,0x37,0x30,0x39,0x2d,0x30,0x31,0x33, + 0x31,0x32,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f,0x45,0x6c,0x5f,0x41,0x61,0x69, + 0x75,0x6e,0xa,0x45,0x52,0x9,0x2b,0x31,0x35,0x32,0x30,0x2b,0x30,0x33,0x38,0x35, + 0x33,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f,0x41,0x73,0x6d,0x61,0x72,0x61,0xa, + 0x45,0x53,0x9,0x2b,0x34,0x30,0x32,0x34,0x2d,0x30,0x30,0x33,0x34,0x31,0x9,0x45, + 0x75,0x72,0x6f,0x70,0x65,0x2f,0x4d,0x61,0x64,0x72,0x69,0x64,0x9,0x53,0x70,0x61, + 0x69,0x6e,0x20,0x28,0x6d,0x61,0x69,0x6e,0x6c,0x61,0x6e,0x64,0x29,0xa,0x45,0x53, + 0x9,0x2b,0x33,0x35,0x35,0x33,0x2d,0x30,0x30,0x35,0x31,0x39,0x9,0x41,0x66,0x72, + 0x69,0x63,0x61,0x2f,0x43,0x65,0x75,0x74,0x61,0x9,0x43,0x65,0x75,0x74,0x61,0x2c, + 0x20,0x4d,0x65,0x6c,0x69,0x6c,0x6c,0x61,0xa,0x45,0x53,0x9,0x2b,0x32,0x38,0x30, + 0x36,0x2d,0x30,0x31,0x35,0x32,0x34,0x9,0x41,0x74,0x6c,0x61,0x6e,0x74,0x69,0x63, + 0x2f,0x43,0x61,0x6e,0x61,0x72,0x79,0x9,0x43,0x61,0x6e,0x61,0x72,0x79,0x20,0x49, + 0x73,0x6c,0x61,0x6e,0x64,0x73,0xa,0x45,0x54,0x9,0x2b,0x30,0x39,0x30,0x32,0x2b, + 0x30,0x33,0x38,0x34,0x32,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f,0x41,0x64,0x64, + 0x69,0x73,0x5f,0x41,0x62,0x61,0x62,0x61,0xa,0x46,0x49,0x9,0x2b,0x36,0x30,0x31, + 0x30,0x2b,0x30,0x32,0x34,0x35,0x38,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x48, + 0x65,0x6c,0x73,0x69,0x6e,0x6b,0x69,0xa,0x46,0x4a,0x9,0x2d,0x31,0x38,0x30,0x38, + 0x2b,0x31,0x37,0x38,0x32,0x35,0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x2f,0x46, + 0x69,0x6a,0x69,0xa,0x46,0x4b,0x9,0x2d,0x35,0x31,0x34,0x32,0x2d,0x30,0x35,0x37, + 0x35,0x31,0x9,0x41,0x74,0x6c,0x61,0x6e,0x74,0x69,0x63,0x2f,0x53,0x74,0x61,0x6e, + 0x6c,0x65,0x79,0xa,0x46,0x4d,0x9,0x2b,0x30,0x37,0x32,0x35,0x2b,0x31,0x35,0x31, + 0x34,0x37,0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x2f,0x43,0x68,0x75,0x75,0x6b, + 0x9,0x43,0x68,0x75,0x75,0x6b,0x2f,0x54,0x72,0x75,0x6b,0x2c,0x20,0x59,0x61,0x70, + 0xa,0x46,0x4d,0x9,0x2b,0x30,0x36,0x35,0x38,0x2b,0x31,0x35,0x38,0x31,0x33,0x9, + 0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x2f,0x50,0x6f,0x68,0x6e,0x70,0x65,0x69,0x9, + 0x50,0x6f,0x68,0x6e,0x70,0x65,0x69,0x2f,0x50,0x6f,0x6e,0x61,0x70,0x65,0xa,0x46, + 0x4d,0x9,0x2b,0x30,0x35,0x31,0x39,0x2b,0x31,0x36,0x32,0x35,0x39,0x9,0x50,0x61, + 0x63,0x69,0x66,0x69,0x63,0x2f,0x4b,0x6f,0x73,0x72,0x61,0x65,0x9,0x4b,0x6f,0x73, + 0x72,0x61,0x65,0xa,0x46,0x4f,0x9,0x2b,0x36,0x32,0x30,0x31,0x2d,0x30,0x30,0x36, + 0x34,0x36,0x9,0x41,0x74,0x6c,0x61,0x6e,0x74,0x69,0x63,0x2f,0x46,0x61,0x72,0x6f, + 0x65,0xa,0x46,0x52,0x9,0x2b,0x34,0x38,0x35,0x32,0x2b,0x30,0x30,0x32,0x32,0x30, + 0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x50,0x61,0x72,0x69,0x73,0xa,0x47,0x41, + 0x9,0x2b,0x30,0x30,0x32,0x33,0x2b,0x30,0x30,0x39,0x32,0x37,0x9,0x41,0x66,0x72, + 0x69,0x63,0x61,0x2f,0x4c,0x69,0x62,0x72,0x65,0x76,0x69,0x6c,0x6c,0x65,0xa,0x47, + 0x42,0x9,0x2b,0x35,0x31,0x33,0x30,0x33,0x30,0x2d,0x30,0x30,0x30,0x30,0x37,0x33, + 0x31,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x4c,0x6f,0x6e,0x64,0x6f,0x6e,0xa, + 0x47,0x44,0x9,0x2b,0x31,0x32,0x30,0x33,0x2d,0x30,0x36,0x31,0x34,0x35,0x9,0x41, + 0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x47,0x72,0x65,0x6e,0x61,0x64,0x61,0xa,0x47, + 0x45,0x9,0x2b,0x34,0x31,0x34,0x33,0x2b,0x30,0x34,0x34,0x34,0x39,0x9,0x41,0x73, + 0x69,0x61,0x2f,0x54,0x62,0x69,0x6c,0x69,0x73,0x69,0xa,0x47,0x46,0x9,0x2b,0x30, + 0x34,0x35,0x36,0x2d,0x30,0x35,0x32,0x32,0x30,0x9,0x41,0x6d,0x65,0x72,0x69,0x63, + 0x61,0x2f,0x43,0x61,0x79,0x65,0x6e,0x6e,0x65,0xa,0x47,0x47,0x9,0x2b,0x34,0x39, + 0x32,0x37,0x31,0x37,0x2d,0x30,0x30,0x32,0x33,0x32,0x31,0x30,0x9,0x45,0x75,0x72, + 0x6f,0x70,0x65,0x2f,0x47,0x75,0x65,0x72,0x6e,0x73,0x65,0x79,0xa,0x47,0x48,0x9, + 0x2b,0x30,0x35,0x33,0x33,0x2d,0x30,0x30,0x30,0x31,0x33,0x9,0x41,0x66,0x72,0x69, + 0x63,0x61,0x2f,0x41,0x63,0x63,0x72,0x61,0xa,0x47,0x49,0x9,0x2b,0x33,0x36,0x30, + 0x38,0x2d,0x30,0x30,0x35,0x32,0x31,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x47, + 0x69,0x62,0x72,0x61,0x6c,0x74,0x61,0x72,0xa,0x47,0x4c,0x9,0x2b,0x36,0x34,0x31, + 0x31,0x2d,0x30,0x35,0x31,0x34,0x34,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f, + 0x47,0x6f,0x64,0x74,0x68,0x61,0x62,0x9,0x47,0x72,0x65,0x65,0x6e,0x6c,0x61,0x6e, + 0x64,0x20,0x28,0x6d,0x6f,0x73,0x74,0x20,0x61,0x72,0x65,0x61,0x73,0x29,0xa,0x47, + 0x4c,0x9,0x2b,0x37,0x36,0x34,0x36,0x2d,0x30,0x31,0x38,0x34,0x30,0x9,0x41,0x6d, + 0x65,0x72,0x69,0x63,0x61,0x2f,0x44,0x61,0x6e,0x6d,0x61,0x72,0x6b,0x73,0x68,0x61, + 0x76,0x6e,0x9,0x4e,0x61,0x74,0x69,0x6f,0x6e,0x61,0x6c,0x20,0x50,0x61,0x72,0x6b, + 0x20,0x28,0x65,0x61,0x73,0x74,0x20,0x63,0x6f,0x61,0x73,0x74,0x29,0xa,0x47,0x4c, + 0x9,0x2b,0x37,0x30,0x32,0x39,0x2d,0x30,0x32,0x31,0x35,0x38,0x9,0x41,0x6d,0x65, + 0x72,0x69,0x63,0x61,0x2f,0x53,0x63,0x6f,0x72,0x65,0x73,0x62,0x79,0x73,0x75,0x6e, + 0x64,0x9,0x53,0x63,0x6f,0x72,0x65,0x73,0x62,0x79,0x73,0x75,0x6e,0x64,0x2f,0x49, + 0x74,0x74,0x6f,0x71,0x71,0x6f,0x72,0x74,0x6f,0x6f,0x72,0x6d,0x69,0x69,0x74,0xa, + 0x47,0x4c,0x9,0x2b,0x37,0x36,0x33,0x34,0x2d,0x30,0x36,0x38,0x34,0x37,0x9,0x41, + 0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x54,0x68,0x75,0x6c,0x65,0x9,0x54,0x68,0x75, + 0x6c,0x65,0x2f,0x50,0x69,0x74,0x75,0x66,0x66,0x69,0x6b,0xa,0x47,0x4d,0x9,0x2b, + 0x31,0x33,0x32,0x38,0x2d,0x30,0x31,0x36,0x33,0x39,0x9,0x41,0x66,0x72,0x69,0x63, + 0x61,0x2f,0x42,0x61,0x6e,0x6a,0x75,0x6c,0xa,0x47,0x4e,0x9,0x2b,0x30,0x39,0x33, + 0x31,0x2d,0x30,0x31,0x33,0x34,0x33,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f,0x43, + 0x6f,0x6e,0x61,0x6b,0x72,0x79,0xa,0x47,0x50,0x9,0x2b,0x31,0x36,0x31,0x34,0x2d, + 0x30,0x36,0x31,0x33,0x32,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x47,0x75, + 0x61,0x64,0x65,0x6c,0x6f,0x75,0x70,0x65,0xa,0x47,0x51,0x9,0x2b,0x30,0x33,0x34, + 0x35,0x2b,0x30,0x30,0x38,0x34,0x37,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f,0x4d, + 0x61,0x6c,0x61,0x62,0x6f,0xa,0x47,0x52,0x9,0x2b,0x33,0x37,0x35,0x38,0x2b,0x30, + 0x32,0x33,0x34,0x33,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x41,0x74,0x68,0x65, + 0x6e,0x73,0xa,0x47,0x53,0x9,0x2d,0x35,0x34,0x31,0x36,0x2d,0x30,0x33,0x36,0x33, + 0x32,0x9,0x41,0x74,0x6c,0x61,0x6e,0x74,0x69,0x63,0x2f,0x53,0x6f,0x75,0x74,0x68, + 0x5f,0x47,0x65,0x6f,0x72,0x67,0x69,0x61,0xa,0x47,0x54,0x9,0x2b,0x31,0x34,0x33, + 0x38,0x2d,0x30,0x39,0x30,0x33,0x31,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f, + 0x47,0x75,0x61,0x74,0x65,0x6d,0x61,0x6c,0x61,0xa,0x47,0x55,0x9,0x2b,0x31,0x33, + 0x32,0x38,0x2b,0x31,0x34,0x34,0x34,0x35,0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63, + 0x2f,0x47,0x75,0x61,0x6d,0xa,0x47,0x57,0x9,0x2b,0x31,0x31,0x35,0x31,0x2d,0x30, + 0x31,0x35,0x33,0x35,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f,0x42,0x69,0x73,0x73, + 0x61,0x75,0xa,0x47,0x59,0x9,0x2b,0x30,0x36,0x34,0x38,0x2d,0x30,0x35,0x38,0x31, + 0x30,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x47,0x75,0x79,0x61,0x6e,0x61, + 0xa,0x48,0x4b,0x9,0x2b,0x32,0x32,0x31,0x37,0x2b,0x31,0x31,0x34,0x30,0x39,0x9, + 0x41,0x73,0x69,0x61,0x2f,0x48,0x6f,0x6e,0x67,0x5f,0x4b,0x6f,0x6e,0x67,0xa,0x48, + 0x4e,0x9,0x2b,0x31,0x34,0x30,0x36,0x2d,0x30,0x38,0x37,0x31,0x33,0x9,0x41,0x6d, + 0x65,0x72,0x69,0x63,0x61,0x2f,0x54,0x65,0x67,0x75,0x63,0x69,0x67,0x61,0x6c,0x70, + 0x61,0xa,0x48,0x52,0x9,0x2b,0x34,0x35,0x34,0x38,0x2b,0x30,0x31,0x35,0x35,0x38, + 0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x5a,0x61,0x67,0x72,0x65,0x62,0xa,0x48, + 0x54,0x9,0x2b,0x31,0x38,0x33,0x32,0x2d,0x30,0x37,0x32,0x32,0x30,0x9,0x41,0x6d, + 0x65,0x72,0x69,0x63,0x61,0x2f,0x50,0x6f,0x72,0x74,0x2d,0x61,0x75,0x2d,0x50,0x72, + 0x69,0x6e,0x63,0x65,0xa,0x48,0x55,0x9,0x2b,0x34,0x37,0x33,0x30,0x2b,0x30,0x31, + 0x39,0x30,0x35,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x42,0x75,0x64,0x61,0x70, + 0x65,0x73,0x74,0xa,0x49,0x44,0x9,0x2d,0x30,0x36,0x31,0x30,0x2b,0x31,0x30,0x36, + 0x34,0x38,0x9,0x41,0x73,0x69,0x61,0x2f,0x4a,0x61,0x6b,0x61,0x72,0x74,0x61,0x9, + 0x4a,0x61,0x76,0x61,0x2c,0x20,0x53,0x75,0x6d,0x61,0x74,0x72,0x61,0xa,0x49,0x44, + 0x9,0x2d,0x30,0x30,0x30,0x32,0x2b,0x31,0x30,0x39,0x32,0x30,0x9,0x41,0x73,0x69, + 0x61,0x2f,0x50,0x6f,0x6e,0x74,0x69,0x61,0x6e,0x61,0x6b,0x9,0x42,0x6f,0x72,0x6e, + 0x65,0x6f,0x20,0x28,0x77,0x65,0x73,0x74,0x2c,0x20,0x63,0x65,0x6e,0x74,0x72,0x61, + 0x6c,0x29,0xa,0x49,0x44,0x9,0x2d,0x30,0x35,0x30,0x37,0x2b,0x31,0x31,0x39,0x32, + 0x34,0x9,0x41,0x73,0x69,0x61,0x2f,0x4d,0x61,0x6b,0x61,0x73,0x73,0x61,0x72,0x9, + 0x42,0x6f,0x72,0x6e,0x65,0x6f,0x20,0x28,0x65,0x61,0x73,0x74,0x2c,0x20,0x73,0x6f, + 0x75,0x74,0x68,0x29,0x3b,0x20,0x53,0x75,0x6c,0x61,0x77,0x65,0x73,0x69,0x2f,0x43, + 0x65,0x6c,0x65,0x62,0x65,0x73,0x2c,0x20,0x42,0x61,0x6c,0x69,0x2c,0x20,0x4e,0x75, + 0x73,0x61,0x20,0x54,0x65,0x6e,0x67,0x61,0x72,0x72,0x61,0x3b,0x20,0x54,0x69,0x6d, + 0x6f,0x72,0x20,0x28,0x77,0x65,0x73,0x74,0x29,0xa,0x49,0x44,0x9,0x2d,0x30,0x32, + 0x33,0x32,0x2b,0x31,0x34,0x30,0x34,0x32,0x9,0x41,0x73,0x69,0x61,0x2f,0x4a,0x61, + 0x79,0x61,0x70,0x75,0x72,0x61,0x9,0x4e,0x65,0x77,0x20,0x47,0x75,0x69,0x6e,0x65, + 0x61,0x20,0x28,0x57,0x65,0x73,0x74,0x20,0x50,0x61,0x70,0x75,0x61,0x20,0x2f,0x20, + 0x49,0x72,0x69,0x61,0x6e,0x20,0x4a,0x61,0x79,0x61,0x29,0x3b,0x20,0x4d,0x61,0x6c, + 0x75,0x6b,0x75,0x73,0x2f,0x4d,0x6f,0x6c,0x75,0x63,0x63,0x61,0x73,0xa,0x49,0x45, + 0x9,0x2b,0x35,0x33,0x32,0x30,0x2d,0x30,0x30,0x36,0x31,0x35,0x9,0x45,0x75,0x72, + 0x6f,0x70,0x65,0x2f,0x44,0x75,0x62,0x6c,0x69,0x6e,0xa,0x49,0x4c,0x9,0x2b,0x33, + 0x31,0x34,0x36,0x35,0x30,0x2b,0x30,0x33,0x35,0x31,0x33,0x32,0x36,0x9,0x41,0x73, + 0x69,0x61,0x2f,0x4a,0x65,0x72,0x75,0x73,0x61,0x6c,0x65,0x6d,0xa,0x49,0x4d,0x9, + 0x2b,0x35,0x34,0x30,0x39,0x2d,0x30,0x30,0x34,0x32,0x38,0x9,0x45,0x75,0x72,0x6f, + 0x70,0x65,0x2f,0x49,0x73,0x6c,0x65,0x5f,0x6f,0x66,0x5f,0x4d,0x61,0x6e,0xa,0x49, + 0x4e,0x9,0x2b,0x32,0x32,0x33,0x32,0x2b,0x30,0x38,0x38,0x32,0x32,0x9,0x41,0x73, + 0x69,0x61,0x2f,0x4b,0x6f,0x6c,0x6b,0x61,0x74,0x61,0xa,0x49,0x4f,0x9,0x2d,0x30, + 0x37,0x32,0x30,0x2b,0x30,0x37,0x32,0x32,0x35,0x9,0x49,0x6e,0x64,0x69,0x61,0x6e, + 0x2f,0x43,0x68,0x61,0x67,0x6f,0x73,0xa,0x49,0x51,0x9,0x2b,0x33,0x33,0x32,0x31, + 0x2b,0x30,0x34,0x34,0x32,0x35,0x9,0x41,0x73,0x69,0x61,0x2f,0x42,0x61,0x67,0x68, + 0x64,0x61,0x64,0xa,0x49,0x52,0x9,0x2b,0x33,0x35,0x34,0x30,0x2b,0x30,0x35,0x31, + 0x32,0x36,0x9,0x41,0x73,0x69,0x61,0x2f,0x54,0x65,0x68,0x72,0x61,0x6e,0xa,0x49, + 0x53,0x9,0x2b,0x36,0x34,0x30,0x39,0x2d,0x30,0x32,0x31,0x35,0x31,0x9,0x41,0x74, + 0x6c,0x61,0x6e,0x74,0x69,0x63,0x2f,0x52,0x65,0x79,0x6b,0x6a,0x61,0x76,0x69,0x6b, + 0xa,0x49,0x54,0x9,0x2b,0x34,0x31,0x35,0x34,0x2b,0x30,0x31,0x32,0x32,0x39,0x9, + 0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x52,0x6f,0x6d,0x65,0xa,0x4a,0x45,0x9,0x2b, + 0x34,0x39,0x31,0x31,0x30,0x31,0x2d,0x30,0x30,0x32,0x30,0x36,0x32,0x34,0x9,0x45, + 0x75,0x72,0x6f,0x70,0x65,0x2f,0x4a,0x65,0x72,0x73,0x65,0x79,0xa,0x4a,0x4d,0x9, + 0x2b,0x31,0x37,0x35,0x38,0x30,0x35,0x2d,0x30,0x37,0x36,0x34,0x37,0x33,0x36,0x9, + 0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x4a,0x61,0x6d,0x61,0x69,0x63,0x61,0xa, + 0x4a,0x4f,0x9,0x2b,0x33,0x31,0x35,0x37,0x2b,0x30,0x33,0x35,0x35,0x36,0x9,0x41, + 0x73,0x69,0x61,0x2f,0x41,0x6d,0x6d,0x61,0x6e,0xa,0x4a,0x50,0x9,0x2b,0x33,0x35, + 0x33,0x39,0x31,0x36,0x2b,0x31,0x33,0x39,0x34,0x34,0x34,0x31,0x9,0x41,0x73,0x69, + 0x61,0x2f,0x54,0x6f,0x6b,0x79,0x6f,0xa,0x4b,0x45,0x9,0x2d,0x30,0x31,0x31,0x37, + 0x2b,0x30,0x33,0x36,0x34,0x39,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f,0x4e,0x61, + 0x69,0x72,0x6f,0x62,0x69,0xa,0x4b,0x47,0x9,0x2b,0x34,0x32,0x35,0x34,0x2b,0x30, + 0x37,0x34,0x33,0x36,0x9,0x41,0x73,0x69,0x61,0x2f,0x42,0x69,0x73,0x68,0x6b,0x65, + 0x6b,0xa,0x4b,0x48,0x9,0x2b,0x31,0x31,0x33,0x33,0x2b,0x31,0x30,0x34,0x35,0x35, + 0x9,0x41,0x73,0x69,0x61,0x2f,0x50,0x68,0x6e,0x6f,0x6d,0x5f,0x50,0x65,0x6e,0x68, + 0xa,0x4b,0x49,0x9,0x2b,0x30,0x31,0x32,0x35,0x2b,0x31,0x37,0x33,0x30,0x30,0x9, + 0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x2f,0x54,0x61,0x72,0x61,0x77,0x61,0x9,0x47, + 0x69,0x6c,0x62,0x65,0x72,0x74,0x20,0x49,0x73,0x6c,0x61,0x6e,0x64,0x73,0xa,0x4b, + 0x49,0x9,0x2d,0x30,0x33,0x30,0x38,0x2d,0x31,0x37,0x31,0x30,0x35,0x9,0x50,0x61, + 0x63,0x69,0x66,0x69,0x63,0x2f,0x45,0x6e,0x64,0x65,0x72,0x62,0x75,0x72,0x79,0x9, + 0x50,0x68,0x6f,0x65,0x6e,0x69,0x78,0x20,0x49,0x73,0x6c,0x61,0x6e,0x64,0x73,0xa, + 0x4b,0x49,0x9,0x2b,0x30,0x31,0x35,0x32,0x2d,0x31,0x35,0x37,0x32,0x30,0x9,0x50, + 0x61,0x63,0x69,0x66,0x69,0x63,0x2f,0x4b,0x69,0x72,0x69,0x74,0x69,0x6d,0x61,0x74, + 0x69,0x9,0x4c,0x69,0x6e,0x65,0x20,0x49,0x73,0x6c,0x61,0x6e,0x64,0x73,0xa,0x4b, + 0x4d,0x9,0x2d,0x31,0x31,0x34,0x31,0x2b,0x30,0x34,0x33,0x31,0x36,0x9,0x49,0x6e, + 0x64,0x69,0x61,0x6e,0x2f,0x43,0x6f,0x6d,0x6f,0x72,0x6f,0xa,0x4b,0x4e,0x9,0x2b, + 0x31,0x37,0x31,0x38,0x2d,0x30,0x36,0x32,0x34,0x33,0x9,0x41,0x6d,0x65,0x72,0x69, + 0x63,0x61,0x2f,0x53,0x74,0x5f,0x4b,0x69,0x74,0x74,0x73,0xa,0x4b,0x50,0x9,0x2b, + 0x33,0x39,0x30,0x31,0x2b,0x31,0x32,0x35,0x34,0x35,0x9,0x41,0x73,0x69,0x61,0x2f, + 0x50,0x79,0x6f,0x6e,0x67,0x79,0x61,0x6e,0x67,0xa,0x4b,0x52,0x9,0x2b,0x33,0x37, + 0x33,0x33,0x2b,0x31,0x32,0x36,0x35,0x38,0x9,0x41,0x73,0x69,0x61,0x2f,0x53,0x65, + 0x6f,0x75,0x6c,0xa,0x4b,0x57,0x9,0x2b,0x32,0x39,0x32,0x30,0x2b,0x30,0x34,0x37, + 0x35,0x39,0x9,0x41,0x73,0x69,0x61,0x2f,0x4b,0x75,0x77,0x61,0x69,0x74,0xa,0x4b, + 0x59,0x9,0x2b,0x31,0x39,0x31,0x38,0x2d,0x30,0x38,0x31,0x32,0x33,0x9,0x41,0x6d, + 0x65,0x72,0x69,0x63,0x61,0x2f,0x43,0x61,0x79,0x6d,0x61,0x6e,0xa,0x4b,0x5a,0x9, + 0x2b,0x34,0x33,0x31,0x35,0x2b,0x30,0x37,0x36,0x35,0x37,0x9,0x41,0x73,0x69,0x61, + 0x2f,0x41,0x6c,0x6d,0x61,0x74,0x79,0x9,0x4b,0x61,0x7a,0x61,0x6b,0x68,0x73,0x74, + 0x61,0x6e,0x20,0x28,0x6d,0x6f,0x73,0x74,0x20,0x61,0x72,0x65,0x61,0x73,0x29,0xa, + 0x4b,0x5a,0x9,0x2b,0x34,0x34,0x34,0x38,0x2b,0x30,0x36,0x35,0x32,0x38,0x9,0x41, + 0x73,0x69,0x61,0x2f,0x51,0x79,0x7a,0x79,0x6c,0x6f,0x72,0x64,0x61,0x9,0x51,0x79, + 0x7a,0x79,0x6c,0x6f,0x72,0x64,0x61,0x2f,0x4b,0x79,0x7a,0x79,0x6c,0x6f,0x72,0x64, + 0x61,0x2f,0x4b,0x7a,0x79,0x6c,0x2d,0x4f,0x72,0x64,0x61,0xa,0x4b,0x5a,0x9,0x2b, + 0x35,0x30,0x31,0x37,0x2b,0x30,0x35,0x37,0x31,0x30,0x9,0x41,0x73,0x69,0x61,0x2f, + 0x41,0x71,0x74,0x6f,0x62,0x65,0x9,0x41,0x71,0x74,0x6f,0x62,0x65,0x2f,0x41,0x6b, + 0x74,0x6f,0x62,0x65,0xa,0x4b,0x5a,0x9,0x2b,0x34,0x34,0x33,0x31,0x2b,0x30,0x35, + 0x30,0x31,0x36,0x9,0x41,0x73,0x69,0x61,0x2f,0x41,0x71,0x74,0x61,0x75,0x9,0x4d, + 0x61,0x6e,0x67,0x67,0x68,0x79,0x73,0x74,0x61,0x75,0x2f,0x4d,0x61,0x6e,0x6b,0x69, + 0x73,0x74,0x61,0x75,0xa,0x4b,0x5a,0x9,0x2b,0x34,0x37,0x30,0x37,0x2b,0x30,0x35, + 0x31,0x35,0x36,0x9,0x41,0x73,0x69,0x61,0x2f,0x41,0x74,0x79,0x72,0x61,0x75,0x9, + 0x41,0x74,0x79,0x72,0x61,0x75,0x2f,0x41,0x74,0x69,0x72,0x61,0x75,0x2f,0x47,0x75, + 0x72,0x27,0x79,0x65,0x76,0xa,0x4b,0x5a,0x9,0x2b,0x35,0x31,0x31,0x33,0x2b,0x30, + 0x35,0x31,0x32,0x31,0x9,0x41,0x73,0x69,0x61,0x2f,0x4f,0x72,0x61,0x6c,0x9,0x57, + 0x65,0x73,0x74,0x20,0x4b,0x61,0x7a,0x61,0x6b,0x68,0x73,0x74,0x61,0x6e,0xa,0x4c, + 0x41,0x9,0x2b,0x31,0x37,0x35,0x38,0x2b,0x31,0x30,0x32,0x33,0x36,0x9,0x41,0x73, + 0x69,0x61,0x2f,0x56,0x69,0x65,0x6e,0x74,0x69,0x61,0x6e,0x65,0xa,0x4c,0x42,0x9, + 0x2b,0x33,0x33,0x35,0x33,0x2b,0x30,0x33,0x35,0x33,0x30,0x9,0x41,0x73,0x69,0x61, + 0x2f,0x42,0x65,0x69,0x72,0x75,0x74,0xa,0x4c,0x43,0x9,0x2b,0x31,0x34,0x30,0x31, + 0x2d,0x30,0x36,0x31,0x30,0x30,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x53, + 0x74,0x5f,0x4c,0x75,0x63,0x69,0x61,0xa,0x4c,0x49,0x9,0x2b,0x34,0x37,0x30,0x39, + 0x2b,0x30,0x30,0x39,0x33,0x31,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x56,0x61, + 0x64,0x75,0x7a,0xa,0x4c,0x4b,0x9,0x2b,0x30,0x36,0x35,0x36,0x2b,0x30,0x37,0x39, + 0x35,0x31,0x9,0x41,0x73,0x69,0x61,0x2f,0x43,0x6f,0x6c,0x6f,0x6d,0x62,0x6f,0xa, + 0x4c,0x52,0x9,0x2b,0x30,0x36,0x31,0x38,0x2d,0x30,0x31,0x30,0x34,0x37,0x9,0x41, + 0x66,0x72,0x69,0x63,0x61,0x2f,0x4d,0x6f,0x6e,0x72,0x6f,0x76,0x69,0x61,0xa,0x4c, + 0x53,0x9,0x2d,0x32,0x39,0x32,0x38,0x2b,0x30,0x32,0x37,0x33,0x30,0x9,0x41,0x66, + 0x72,0x69,0x63,0x61,0x2f,0x4d,0x61,0x73,0x65,0x72,0x75,0xa,0x4c,0x54,0x9,0x2b, + 0x35,0x34,0x34,0x31,0x2b,0x30,0x32,0x35,0x31,0x39,0x9,0x45,0x75,0x72,0x6f,0x70, + 0x65,0x2f,0x56,0x69,0x6c,0x6e,0x69,0x75,0x73,0xa,0x4c,0x55,0x9,0x2b,0x34,0x39, + 0x33,0x36,0x2b,0x30,0x30,0x36,0x30,0x39,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f, + 0x4c,0x75,0x78,0x65,0x6d,0x62,0x6f,0x75,0x72,0x67,0xa,0x4c,0x56,0x9,0x2b,0x35, + 0x36,0x35,0x37,0x2b,0x30,0x32,0x34,0x30,0x36,0x9,0x45,0x75,0x72,0x6f,0x70,0x65, + 0x2f,0x52,0x69,0x67,0x61,0xa,0x4c,0x59,0x9,0x2b,0x33,0x32,0x35,0x34,0x2b,0x30, + 0x31,0x33,0x31,0x31,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f,0x54,0x72,0x69,0x70, + 0x6f,0x6c,0x69,0xa,0x4d,0x41,0x9,0x2b,0x33,0x33,0x33,0x39,0x2d,0x30,0x30,0x37, + 0x33,0x35,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f,0x43,0x61,0x73,0x61,0x62,0x6c, + 0x61,0x6e,0x63,0x61,0xa,0x4d,0x43,0x9,0x2b,0x34,0x33,0x34,0x32,0x2b,0x30,0x30, + 0x37,0x32,0x33,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x4d,0x6f,0x6e,0x61,0x63, + 0x6f,0xa,0x4d,0x44,0x9,0x2b,0x34,0x37,0x30,0x30,0x2b,0x30,0x32,0x38,0x35,0x30, + 0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x43,0x68,0x69,0x73,0x69,0x6e,0x61,0x75, + 0xa,0x4d,0x45,0x9,0x2b,0x34,0x32,0x32,0x36,0x2b,0x30,0x31,0x39,0x31,0x36,0x9, + 0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x50,0x6f,0x64,0x67,0x6f,0x72,0x69,0x63,0x61, + 0xa,0x4d,0x46,0x9,0x2b,0x31,0x38,0x30,0x34,0x2d,0x30,0x36,0x33,0x30,0x35,0x9, + 0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x4d,0x61,0x72,0x69,0x67,0x6f,0x74,0xa, + 0x4d,0x47,0x9,0x2d,0x31,0x38,0x35,0x35,0x2b,0x30,0x34,0x37,0x33,0x31,0x9,0x49, + 0x6e,0x64,0x69,0x61,0x6e,0x2f,0x41,0x6e,0x74,0x61,0x6e,0x61,0x6e,0x61,0x72,0x69, + 0x76,0x6f,0xa,0x4d,0x48,0x9,0x2b,0x30,0x37,0x30,0x39,0x2b,0x31,0x37,0x31,0x31, + 0x32,0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x2f,0x4d,0x61,0x6a,0x75,0x72,0x6f, + 0x9,0x4d,0x61,0x72,0x73,0x68,0x61,0x6c,0x6c,0x20,0x49,0x73,0x6c,0x61,0x6e,0x64, + 0x73,0x20,0x28,0x6d,0x6f,0x73,0x74,0x20,0x61,0x72,0x65,0x61,0x73,0x29,0xa,0x4d, + 0x48,0x9,0x2b,0x30,0x39,0x30,0x35,0x2b,0x31,0x36,0x37,0x32,0x30,0x9,0x50,0x61, + 0x63,0x69,0x66,0x69,0x63,0x2f,0x4b,0x77,0x61,0x6a,0x61,0x6c,0x65,0x69,0x6e,0x9, + 0x4b,0x77,0x61,0x6a,0x61,0x6c,0x65,0x69,0x6e,0xa,0x4d,0x4b,0x9,0x2b,0x34,0x31, + 0x35,0x39,0x2b,0x30,0x32,0x31,0x32,0x36,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f, + 0x53,0x6b,0x6f,0x70,0x6a,0x65,0xa,0x4d,0x4c,0x9,0x2b,0x31,0x32,0x33,0x39,0x2d, + 0x30,0x30,0x38,0x30,0x30,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f,0x42,0x61,0x6d, + 0x61,0x6b,0x6f,0xa,0x4d,0x4d,0x9,0x2b,0x31,0x36,0x34,0x37,0x2b,0x30,0x39,0x36, + 0x31,0x30,0x9,0x41,0x73,0x69,0x61,0x2f,0x59,0x61,0x6e,0x67,0x6f,0x6e,0xa,0x4d, + 0x4e,0x9,0x2b,0x34,0x37,0x35,0x35,0x2b,0x31,0x30,0x36,0x35,0x33,0x9,0x41,0x73, + 0x69,0x61,0x2f,0x55,0x6c,0x61,0x61,0x6e,0x62,0x61,0x61,0x74,0x61,0x72,0x9,0x4d, + 0x6f,0x6e,0x67,0x6f,0x6c,0x69,0x61,0x20,0x28,0x6d,0x6f,0x73,0x74,0x20,0x61,0x72, + 0x65,0x61,0x73,0x29,0xa,0x4d,0x4e,0x9,0x2b,0x34,0x38,0x30,0x31,0x2b,0x30,0x39, + 0x31,0x33,0x39,0x9,0x41,0x73,0x69,0x61,0x2f,0x48,0x6f,0x76,0x64,0x9,0x42,0x61, + 0x79,0x61,0x6e,0x2d,0x4f,0x6c,0x67,0x69,0x79,0x2c,0x20,0x47,0x6f,0x76,0x69,0x2d, + 0x41,0x6c,0x74,0x61,0x69,0x2c,0x20,0x48,0x6f,0x76,0x64,0x2c,0x20,0x55,0x76,0x73, + 0x2c,0x20,0x5a,0x61,0x76,0x6b,0x68,0x61,0x6e,0xa,0x4d,0x4e,0x9,0x2b,0x34,0x38, + 0x30,0x34,0x2b,0x31,0x31,0x34,0x33,0x30,0x9,0x41,0x73,0x69,0x61,0x2f,0x43,0x68, + 0x6f,0x69,0x62,0x61,0x6c,0x73,0x61,0x6e,0x9,0x44,0x6f,0x72,0x6e,0x6f,0x64,0x2c, + 0x20,0x53,0x75,0x6b,0x68,0x62,0x61,0x61,0x74,0x61,0x72,0xa,0x4d,0x4f,0x9,0x2b, + 0x32,0x32,0x31,0x34,0x2b,0x31,0x31,0x33,0x33,0x35,0x9,0x41,0x73,0x69,0x61,0x2f, + 0x4d,0x61,0x63,0x61,0x75,0xa,0x4d,0x50,0x9,0x2b,0x31,0x35,0x31,0x32,0x2b,0x31, + 0x34,0x35,0x34,0x35,0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x2f,0x53,0x61,0x69, + 0x70,0x61,0x6e,0xa,0x4d,0x51,0x9,0x2b,0x31,0x34,0x33,0x36,0x2d,0x30,0x36,0x31, + 0x30,0x35,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x4d,0x61,0x72,0x74,0x69, + 0x6e,0x69,0x71,0x75,0x65,0xa,0x4d,0x52,0x9,0x2b,0x31,0x38,0x30,0x36,0x2d,0x30, + 0x31,0x35,0x35,0x37,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f,0x4e,0x6f,0x75,0x61, + 0x6b,0x63,0x68,0x6f,0x74,0x74,0xa,0x4d,0x53,0x9,0x2b,0x31,0x36,0x34,0x33,0x2d, + 0x30,0x36,0x32,0x31,0x33,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x4d,0x6f, + 0x6e,0x74,0x73,0x65,0x72,0x72,0x61,0x74,0xa,0x4d,0x54,0x9,0x2b,0x33,0x35,0x35, + 0x34,0x2b,0x30,0x31,0x34,0x33,0x31,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x4d, + 0x61,0x6c,0x74,0x61,0xa,0x4d,0x55,0x9,0x2d,0x32,0x30,0x31,0x30,0x2b,0x30,0x35, + 0x37,0x33,0x30,0x9,0x49,0x6e,0x64,0x69,0x61,0x6e,0x2f,0x4d,0x61,0x75,0x72,0x69, + 0x74,0x69,0x75,0x73,0xa,0x4d,0x56,0x9,0x2b,0x30,0x34,0x31,0x30,0x2b,0x30,0x37, + 0x33,0x33,0x30,0x9,0x49,0x6e,0x64,0x69,0x61,0x6e,0x2f,0x4d,0x61,0x6c,0x64,0x69, + 0x76,0x65,0x73,0xa,0x4d,0x57,0x9,0x2d,0x31,0x35,0x34,0x37,0x2b,0x30,0x33,0x35, + 0x30,0x30,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f,0x42,0x6c,0x61,0x6e,0x74,0x79, + 0x72,0x65,0xa,0x4d,0x58,0x9,0x2b,0x31,0x39,0x32,0x34,0x2d,0x30,0x39,0x39,0x30, + 0x39,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x4d,0x65,0x78,0x69,0x63,0x6f, + 0x5f,0x43,0x69,0x74,0x79,0x9,0x43,0x65,0x6e,0x74,0x72,0x61,0x6c,0x20,0x54,0x69, + 0x6d,0x65,0xa,0x4d,0x58,0x9,0x2b,0x32,0x31,0x30,0x35,0x2d,0x30,0x38,0x36,0x34, + 0x36,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x43,0x61,0x6e,0x63,0x75,0x6e, + 0x9,0x45,0x61,0x73,0x74,0x65,0x72,0x6e,0x20,0x53,0x74,0x61,0x6e,0x64,0x61,0x72, + 0x64,0x20,0x54,0x69,0x6d,0x65,0x20,0x2d,0x20,0x51,0x75,0x69,0x6e,0x74,0x61,0x6e, + 0x61,0x20,0x52,0x6f,0x6f,0xa,0x4d,0x58,0x9,0x2b,0x32,0x30,0x35,0x38,0x2d,0x30, + 0x38,0x39,0x33,0x37,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x4d,0x65,0x72, + 0x69,0x64,0x61,0x9,0x43,0x65,0x6e,0x74,0x72,0x61,0x6c,0x20,0x54,0x69,0x6d,0x65, + 0x20,0x2d,0x20,0x43,0x61,0x6d,0x70,0x65,0x63,0x68,0x65,0x2c,0x20,0x59,0x75,0x63, + 0x61,0x74,0x61,0x6e,0xa,0x4d,0x58,0x9,0x2b,0x32,0x35,0x34,0x30,0x2d,0x31,0x30, + 0x30,0x31,0x39,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x4d,0x6f,0x6e,0x74, + 0x65,0x72,0x72,0x65,0x79,0x9,0x43,0x65,0x6e,0x74,0x72,0x61,0x6c,0x20,0x54,0x69, + 0x6d,0x65,0x20,0x2d,0x20,0x44,0x75,0x72,0x61,0x6e,0x67,0x6f,0x3b,0x20,0x43,0x6f, + 0x61,0x68,0x75,0x69,0x6c,0x61,0x2c,0x20,0x4e,0x75,0x65,0x76,0x6f,0x20,0x4c,0x65, + 0x6f,0x6e,0x2c,0x20,0x54,0x61,0x6d,0x61,0x75,0x6c,0x69,0x70,0x61,0x73,0x20,0x28, + 0x6d,0x6f,0x73,0x74,0x20,0x61,0x72,0x65,0x61,0x73,0x29,0xa,0x4d,0x58,0x9,0x2b, + 0x32,0x35,0x35,0x30,0x2d,0x30,0x39,0x37,0x33,0x30,0x9,0x41,0x6d,0x65,0x72,0x69, + 0x63,0x61,0x2f,0x4d,0x61,0x74,0x61,0x6d,0x6f,0x72,0x6f,0x73,0x9,0x43,0x65,0x6e, + 0x74,0x72,0x61,0x6c,0x20,0x54,0x69,0x6d,0x65,0x20,0x55,0x53,0x20,0x2d,0x20,0x43, + 0x6f,0x61,0x68,0x75,0x69,0x6c,0x61,0x2c,0x20,0x4e,0x75,0x65,0x76,0x6f,0x20,0x4c, + 0x65,0x6f,0x6e,0x2c,0x20,0x54,0x61,0x6d,0x61,0x75,0x6c,0x69,0x70,0x61,0x73,0x20, + 0x28,0x55,0x53,0x20,0x62,0x6f,0x72,0x64,0x65,0x72,0x29,0xa,0x4d,0x58,0x9,0x2b, + 0x32,0x33,0x31,0x33,0x2d,0x31,0x30,0x36,0x32,0x35,0x9,0x41,0x6d,0x65,0x72,0x69, + 0x63,0x61,0x2f,0x4d,0x61,0x7a,0x61,0x74,0x6c,0x61,0x6e,0x9,0x4d,0x6f,0x75,0x6e, + 0x74,0x61,0x69,0x6e,0x20,0x54,0x69,0x6d,0x65,0x20,0x2d,0x20,0x42,0x61,0x6a,0x61, + 0x20,0x43,0x61,0x6c,0x69,0x66,0x6f,0x72,0x6e,0x69,0x61,0x20,0x53,0x75,0x72,0x2c, + 0x20,0x4e,0x61,0x79,0x61,0x72,0x69,0x74,0x2c,0x20,0x53,0x69,0x6e,0x61,0x6c,0x6f, + 0x61,0xa,0x4d,0x58,0x9,0x2b,0x32,0x38,0x33,0x38,0x2d,0x31,0x30,0x36,0x30,0x35, + 0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x43,0x68,0x69,0x68,0x75,0x61,0x68, + 0x75,0x61,0x9,0x4d,0x6f,0x75,0x6e,0x74,0x61,0x69,0x6e,0x20,0x54,0x69,0x6d,0x65, + 0x20,0x2d,0x20,0x43,0x68,0x69,0x68,0x75,0x61,0x68,0x75,0x61,0x20,0x28,0x6d,0x6f, + 0x73,0x74,0x20,0x61,0x72,0x65,0x61,0x73,0x29,0xa,0x4d,0x58,0x9,0x2b,0x32,0x39, + 0x33,0x34,0x2d,0x31,0x30,0x34,0x32,0x35,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61, + 0x2f,0x4f,0x6a,0x69,0x6e,0x61,0x67,0x61,0x9,0x4d,0x6f,0x75,0x6e,0x74,0x61,0x69, + 0x6e,0x20,0x54,0x69,0x6d,0x65,0x20,0x55,0x53,0x20,0x2d,0x20,0x43,0x68,0x69,0x68, + 0x75,0x61,0x68,0x75,0x61,0x20,0x28,0x55,0x53,0x20,0x62,0x6f,0x72,0x64,0x65,0x72, + 0x29,0xa,0x4d,0x58,0x9,0x2b,0x32,0x39,0x30,0x34,0x2d,0x31,0x31,0x30,0x35,0x38, + 0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x48,0x65,0x72,0x6d,0x6f,0x73,0x69, + 0x6c,0x6c,0x6f,0x9,0x4d,0x6f,0x75,0x6e,0x74,0x61,0x69,0x6e,0x20,0x53,0x74,0x61, + 0x6e,0x64,0x61,0x72,0x64,0x20,0x54,0x69,0x6d,0x65,0x20,0x2d,0x20,0x53,0x6f,0x6e, + 0x6f,0x72,0x61,0xa,0x4d,0x58,0x9,0x2b,0x33,0x32,0x33,0x32,0x2d,0x31,0x31,0x37, + 0x30,0x31,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x54,0x69,0x6a,0x75,0x61, + 0x6e,0x61,0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x20,0x54,0x69,0x6d,0x65,0x20, + 0x55,0x53,0x20,0x2d,0x20,0x42,0x61,0x6a,0x61,0x20,0x43,0x61,0x6c,0x69,0x66,0x6f, + 0x72,0x6e,0x69,0x61,0xa,0x4d,0x58,0x9,0x2b,0x32,0x30,0x34,0x38,0x2d,0x31,0x30, + 0x35,0x31,0x35,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x42,0x61,0x68,0x69, + 0x61,0x5f,0x42,0x61,0x6e,0x64,0x65,0x72,0x61,0x73,0x9,0x43,0x65,0x6e,0x74,0x72, + 0x61,0x6c,0x20,0x54,0x69,0x6d,0x65,0x20,0x2d,0x20,0x42,0x61,0x68,0x69,0x61,0x20, + 0x64,0x65,0x20,0x42,0x61,0x6e,0x64,0x65,0x72,0x61,0x73,0xa,0x4d,0x59,0x9,0x2b, + 0x30,0x33,0x31,0x30,0x2b,0x31,0x30,0x31,0x34,0x32,0x9,0x41,0x73,0x69,0x61,0x2f, + 0x4b,0x75,0x61,0x6c,0x61,0x5f,0x4c,0x75,0x6d,0x70,0x75,0x72,0x9,0x4d,0x61,0x6c, + 0x61,0x79,0x73,0x69,0x61,0x20,0x28,0x70,0x65,0x6e,0x69,0x6e,0x73,0x75,0x6c,0x61, + 0x29,0xa,0x4d,0x59,0x9,0x2b,0x30,0x31,0x33,0x33,0x2b,0x31,0x31,0x30,0x32,0x30, + 0x9,0x41,0x73,0x69,0x61,0x2f,0x4b,0x75,0x63,0x68,0x69,0x6e,0x67,0x9,0x53,0x61, + 0x62,0x61,0x68,0x2c,0x20,0x53,0x61,0x72,0x61,0x77,0x61,0x6b,0xa,0x4d,0x5a,0x9, + 0x2d,0x32,0x35,0x35,0x38,0x2b,0x30,0x33,0x32,0x33,0x35,0x9,0x41,0x66,0x72,0x69, + 0x63,0x61,0x2f,0x4d,0x61,0x70,0x75,0x74,0x6f,0xa,0x4e,0x41,0x9,0x2d,0x32,0x32, + 0x33,0x34,0x2b,0x30,0x31,0x37,0x30,0x36,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f, + 0x57,0x69,0x6e,0x64,0x68,0x6f,0x65,0x6b,0xa,0x4e,0x43,0x9,0x2d,0x32,0x32,0x31, + 0x36,0x2b,0x31,0x36,0x36,0x32,0x37,0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x2f, + 0x4e,0x6f,0x75,0x6d,0x65,0x61,0xa,0x4e,0x45,0x9,0x2b,0x31,0x33,0x33,0x31,0x2b, + 0x30,0x30,0x32,0x30,0x37,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f,0x4e,0x69,0x61, + 0x6d,0x65,0x79,0xa,0x4e,0x46,0x9,0x2d,0x32,0x39,0x30,0x33,0x2b,0x31,0x36,0x37, + 0x35,0x38,0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x2f,0x4e,0x6f,0x72,0x66,0x6f, + 0x6c,0x6b,0xa,0x4e,0x47,0x9,0x2b,0x30,0x36,0x32,0x37,0x2b,0x30,0x30,0x33,0x32, + 0x34,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f,0x4c,0x61,0x67,0x6f,0x73,0xa,0x4e, + 0x49,0x9,0x2b,0x31,0x32,0x30,0x39,0x2d,0x30,0x38,0x36,0x31,0x37,0x9,0x41,0x6d, + 0x65,0x72,0x69,0x63,0x61,0x2f,0x4d,0x61,0x6e,0x61,0x67,0x75,0x61,0xa,0x4e,0x4c, + 0x9,0x2b,0x35,0x32,0x32,0x32,0x2b,0x30,0x30,0x34,0x35,0x34,0x9,0x45,0x75,0x72, + 0x6f,0x70,0x65,0x2f,0x41,0x6d,0x73,0x74,0x65,0x72,0x64,0x61,0x6d,0xa,0x4e,0x4f, + 0x9,0x2b,0x35,0x39,0x35,0x35,0x2b,0x30,0x31,0x30,0x34,0x35,0x9,0x45,0x75,0x72, + 0x6f,0x70,0x65,0x2f,0x4f,0x73,0x6c,0x6f,0xa,0x4e,0x50,0x9,0x2b,0x32,0x37,0x34, + 0x33,0x2b,0x30,0x38,0x35,0x31,0x39,0x9,0x41,0x73,0x69,0x61,0x2f,0x4b,0x61,0x74, + 0x68,0x6d,0x61,0x6e,0x64,0x75,0xa,0x4e,0x52,0x9,0x2d,0x30,0x30,0x33,0x31,0x2b, + 0x31,0x36,0x36,0x35,0x35,0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x2f,0x4e,0x61, + 0x75,0x72,0x75,0xa,0x4e,0x55,0x9,0x2d,0x31,0x39,0x30,0x31,0x2d,0x31,0x36,0x39, + 0x35,0x35,0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x2f,0x4e,0x69,0x75,0x65,0xa, + 0x4e,0x5a,0x9,0x2d,0x33,0x36,0x35,0x32,0x2b,0x31,0x37,0x34,0x34,0x36,0x9,0x50, + 0x61,0x63,0x69,0x66,0x69,0x63,0x2f,0x41,0x75,0x63,0x6b,0x6c,0x61,0x6e,0x64,0x9, + 0x4e,0x65,0x77,0x20,0x5a,0x65,0x61,0x6c,0x61,0x6e,0x64,0x20,0x28,0x6d,0x6f,0x73, + 0x74,0x20,0x61,0x72,0x65,0x61,0x73,0x29,0xa,0x4e,0x5a,0x9,0x2d,0x34,0x33,0x35, + 0x37,0x2d,0x31,0x37,0x36,0x33,0x33,0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x2f, + 0x43,0x68,0x61,0x74,0x68,0x61,0x6d,0x9,0x43,0x68,0x61,0x74,0x68,0x61,0x6d,0x20, + 0x49,0x73,0x6c,0x61,0x6e,0x64,0x73,0xa,0x4f,0x4d,0x9,0x2b,0x32,0x33,0x33,0x36, + 0x2b,0x30,0x35,0x38,0x33,0x35,0x9,0x41,0x73,0x69,0x61,0x2f,0x4d,0x75,0x73,0x63, + 0x61,0x74,0xa,0x50,0x41,0x9,0x2b,0x30,0x38,0x35,0x38,0x2d,0x30,0x37,0x39,0x33, + 0x32,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x50,0x61,0x6e,0x61,0x6d,0x61, + 0xa,0x50,0x45,0x9,0x2d,0x31,0x32,0x30,0x33,0x2d,0x30,0x37,0x37,0x30,0x33,0x9, + 0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x4c,0x69,0x6d,0x61,0xa,0x50,0x46,0x9, + 0x2d,0x31,0x37,0x33,0x32,0x2d,0x31,0x34,0x39,0x33,0x34,0x9,0x50,0x61,0x63,0x69, + 0x66,0x69,0x63,0x2f,0x54,0x61,0x68,0x69,0x74,0x69,0x9,0x53,0x6f,0x63,0x69,0x65, + 0x74,0x79,0x20,0x49,0x73,0x6c,0x61,0x6e,0x64,0x73,0xa,0x50,0x46,0x9,0x2d,0x30, + 0x39,0x30,0x30,0x2d,0x31,0x33,0x39,0x33,0x30,0x9,0x50,0x61,0x63,0x69,0x66,0x69, + 0x63,0x2f,0x4d,0x61,0x72,0x71,0x75,0x65,0x73,0x61,0x73,0x9,0x4d,0x61,0x72,0x71, + 0x75,0x65,0x73,0x61,0x73,0x20,0x49,0x73,0x6c,0x61,0x6e,0x64,0x73,0xa,0x50,0x46, + 0x9,0x2d,0x32,0x33,0x30,0x38,0x2d,0x31,0x33,0x34,0x35,0x37,0x9,0x50,0x61,0x63, + 0x69,0x66,0x69,0x63,0x2f,0x47,0x61,0x6d,0x62,0x69,0x65,0x72,0x9,0x47,0x61,0x6d, + 0x62,0x69,0x65,0x72,0x20,0x49,0x73,0x6c,0x61,0x6e,0x64,0x73,0xa,0x50,0x47,0x9, + 0x2d,0x30,0x39,0x33,0x30,0x2b,0x31,0x34,0x37,0x31,0x30,0x9,0x50,0x61,0x63,0x69, + 0x66,0x69,0x63,0x2f,0x50,0x6f,0x72,0x74,0x5f,0x4d,0x6f,0x72,0x65,0x73,0x62,0x79, + 0x9,0x50,0x61,0x70,0x75,0x61,0x20,0x4e,0x65,0x77,0x20,0x47,0x75,0x69,0x6e,0x65, + 0x61,0x20,0x28,0x6d,0x6f,0x73,0x74,0x20,0x61,0x72,0x65,0x61,0x73,0x29,0xa,0x50, + 0x47,0x9,0x2d,0x30,0x36,0x31,0x33,0x2b,0x31,0x35,0x35,0x33,0x34,0x9,0x50,0x61, + 0x63,0x69,0x66,0x69,0x63,0x2f,0x42,0x6f,0x75,0x67,0x61,0x69,0x6e,0x76,0x69,0x6c, + 0x6c,0x65,0x9,0x42,0x6f,0x75,0x67,0x61,0x69,0x6e,0x76,0x69,0x6c,0x6c,0x65,0xa, + 0x50,0x48,0x9,0x2b,0x31,0x34,0x33,0x35,0x2b,0x31,0x32,0x31,0x30,0x30,0x9,0x41, + 0x73,0x69,0x61,0x2f,0x4d,0x61,0x6e,0x69,0x6c,0x61,0xa,0x50,0x4b,0x9,0x2b,0x32, + 0x34,0x35,0x32,0x2b,0x30,0x36,0x37,0x30,0x33,0x9,0x41,0x73,0x69,0x61,0x2f,0x4b, + 0x61,0x72,0x61,0x63,0x68,0x69,0xa,0x50,0x4c,0x9,0x2b,0x35,0x32,0x31,0x35,0x2b, + 0x30,0x32,0x31,0x30,0x30,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x57,0x61,0x72, + 0x73,0x61,0x77,0xa,0x50,0x4d,0x9,0x2b,0x34,0x37,0x30,0x33,0x2d,0x30,0x35,0x36, + 0x32,0x30,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x4d,0x69,0x71,0x75,0x65, + 0x6c,0x6f,0x6e,0xa,0x50,0x4e,0x9,0x2d,0x32,0x35,0x30,0x34,0x2d,0x31,0x33,0x30, + 0x30,0x35,0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x2f,0x50,0x69,0x74,0x63,0x61, + 0x69,0x72,0x6e,0xa,0x50,0x52,0x9,0x2b,0x31,0x38,0x32,0x38,0x30,0x36,0x2d,0x30, + 0x36,0x36,0x30,0x36,0x32,0x32,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x50, + 0x75,0x65,0x72,0x74,0x6f,0x5f,0x52,0x69,0x63,0x6f,0xa,0x50,0x53,0x9,0x2b,0x33, + 0x31,0x33,0x30,0x2b,0x30,0x33,0x34,0x32,0x38,0x9,0x41,0x73,0x69,0x61,0x2f,0x47, + 0x61,0x7a,0x61,0x9,0x47,0x61,0x7a,0x61,0x20,0x53,0x74,0x72,0x69,0x70,0xa,0x50, + 0x53,0x9,0x2b,0x33,0x31,0x33,0x32,0x30,0x30,0x2b,0x30,0x33,0x35,0x30,0x35,0x34, + 0x32,0x9,0x41,0x73,0x69,0x61,0x2f,0x48,0x65,0x62,0x72,0x6f,0x6e,0x9,0x57,0x65, + 0x73,0x74,0x20,0x42,0x61,0x6e,0x6b,0xa,0x50,0x54,0x9,0x2b,0x33,0x38,0x34,0x33, + 0x2d,0x30,0x30,0x39,0x30,0x38,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x4c,0x69, + 0x73,0x62,0x6f,0x6e,0x9,0x50,0x6f,0x72,0x74,0x75,0x67,0x61,0x6c,0x20,0x28,0x6d, + 0x61,0x69,0x6e,0x6c,0x61,0x6e,0x64,0x29,0xa,0x50,0x54,0x9,0x2b,0x33,0x32,0x33, + 0x38,0x2d,0x30,0x31,0x36,0x35,0x34,0x9,0x41,0x74,0x6c,0x61,0x6e,0x74,0x69,0x63, + 0x2f,0x4d,0x61,0x64,0x65,0x69,0x72,0x61,0x9,0x4d,0x61,0x64,0x65,0x69,0x72,0x61, + 0x20,0x49,0x73,0x6c,0x61,0x6e,0x64,0x73,0xa,0x50,0x54,0x9,0x2b,0x33,0x37,0x34, + 0x34,0x2d,0x30,0x32,0x35,0x34,0x30,0x9,0x41,0x74,0x6c,0x61,0x6e,0x74,0x69,0x63, + 0x2f,0x41,0x7a,0x6f,0x72,0x65,0x73,0x9,0x41,0x7a,0x6f,0x72,0x65,0x73,0xa,0x50, + 0x57,0x9,0x2b,0x30,0x37,0x32,0x30,0x2b,0x31,0x33,0x34,0x32,0x39,0x9,0x50,0x61, + 0x63,0x69,0x66,0x69,0x63,0x2f,0x50,0x61,0x6c,0x61,0x75,0xa,0x50,0x59,0x9,0x2d, + 0x32,0x35,0x31,0x36,0x2d,0x30,0x35,0x37,0x34,0x30,0x9,0x41,0x6d,0x65,0x72,0x69, + 0x63,0x61,0x2f,0x41,0x73,0x75,0x6e,0x63,0x69,0x6f,0x6e,0xa,0x51,0x41,0x9,0x2b, + 0x32,0x35,0x31,0x37,0x2b,0x30,0x35,0x31,0x33,0x32,0x9,0x41,0x73,0x69,0x61,0x2f, + 0x51,0x61,0x74,0x61,0x72,0xa,0x52,0x45,0x9,0x2d,0x32,0x30,0x35,0x32,0x2b,0x30, + 0x35,0x35,0x32,0x38,0x9,0x49,0x6e,0x64,0x69,0x61,0x6e,0x2f,0x52,0x65,0x75,0x6e, + 0x69,0x6f,0x6e,0xa,0x52,0x4f,0x9,0x2b,0x34,0x34,0x32,0x36,0x2b,0x30,0x32,0x36, + 0x30,0x36,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x42,0x75,0x63,0x68,0x61,0x72, + 0x65,0x73,0x74,0xa,0x52,0x53,0x9,0x2b,0x34,0x34,0x35,0x30,0x2b,0x30,0x32,0x30, + 0x33,0x30,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x42,0x65,0x6c,0x67,0x72,0x61, + 0x64,0x65,0xa,0x52,0x55,0x9,0x2b,0x35,0x34,0x34,0x33,0x2b,0x30,0x32,0x30,0x33, + 0x30,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x4b,0x61,0x6c,0x69,0x6e,0x69,0x6e, + 0x67,0x72,0x61,0x64,0x9,0x4d,0x53,0x4b,0x2d,0x30,0x31,0x20,0x2d,0x20,0x4b,0x61, + 0x6c,0x69,0x6e,0x69,0x6e,0x67,0x72,0x61,0x64,0xa,0x52,0x55,0x9,0x2b,0x35,0x35, + 0x34,0x35,0x32,0x31,0x2b,0x30,0x33,0x37,0x33,0x37,0x30,0x34,0x9,0x45,0x75,0x72, + 0x6f,0x70,0x65,0x2f,0x4d,0x6f,0x73,0x63,0x6f,0x77,0x9,0x4d,0x53,0x4b,0x2b,0x30, + 0x30,0x20,0x2d,0x20,0x4d,0x6f,0x73,0x63,0x6f,0x77,0x20,0x61,0x72,0x65,0x61,0xa, + 0x52,0x55,0x9,0x2b,0x34,0x34,0x35,0x37,0x2b,0x30,0x33,0x34,0x30,0x36,0x9,0x45, + 0x75,0x72,0x6f,0x70,0x65,0x2f,0x53,0x69,0x6d,0x66,0x65,0x72,0x6f,0x70,0x6f,0x6c, + 0x9,0x4d,0x53,0x4b,0x2b,0x30,0x30,0x20,0x2d,0x20,0x43,0x72,0x69,0x6d,0x65,0x61, + 0xa,0x52,0x55,0x9,0x2b,0x34,0x38,0x34,0x34,0x2b,0x30,0x34,0x34,0x32,0x35,0x9, + 0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x56,0x6f,0x6c,0x67,0x6f,0x67,0x72,0x61,0x64, + 0x9,0x4d,0x53,0x4b,0x2b,0x30,0x30,0x20,0x2d,0x20,0x56,0x6f,0x6c,0x67,0x6f,0x67, + 0x72,0x61,0x64,0xa,0x52,0x55,0x9,0x2b,0x35,0x38,0x33,0x36,0x2b,0x30,0x34,0x39, + 0x33,0x39,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x4b,0x69,0x72,0x6f,0x76,0x9, + 0x4d,0x53,0x4b,0x2b,0x30,0x30,0x20,0x2d,0x20,0x4b,0x69,0x72,0x6f,0x76,0xa,0x52, + 0x55,0x9,0x2b,0x34,0x36,0x32,0x31,0x2b,0x30,0x34,0x38,0x30,0x33,0x9,0x45,0x75, + 0x72,0x6f,0x70,0x65,0x2f,0x41,0x73,0x74,0x72,0x61,0x6b,0x68,0x61,0x6e,0x9,0x4d, + 0x53,0x4b,0x2b,0x30,0x31,0x20,0x2d,0x20,0x41,0x73,0x74,0x72,0x61,0x6b,0x68,0x61, + 0x6e,0xa,0x52,0x55,0x9,0x2b,0x35,0x31,0x33,0x34,0x2b,0x30,0x34,0x36,0x30,0x32, + 0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x53,0x61,0x72,0x61,0x74,0x6f,0x76,0x9, + 0x4d,0x53,0x4b,0x2b,0x30,0x31,0x20,0x2d,0x20,0x53,0x61,0x72,0x61,0x74,0x6f,0x76, + 0xa,0x52,0x55,0x9,0x2b,0x35,0x34,0x32,0x30,0x2b,0x30,0x34,0x38,0x32,0x34,0x9, + 0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x55,0x6c,0x79,0x61,0x6e,0x6f,0x76,0x73,0x6b, + 0x9,0x4d,0x53,0x4b,0x2b,0x30,0x31,0x20,0x2d,0x20,0x55,0x6c,0x79,0x61,0x6e,0x6f, + 0x76,0x73,0x6b,0xa,0x52,0x55,0x9,0x2b,0x35,0x33,0x31,0x32,0x2b,0x30,0x35,0x30, + 0x30,0x39,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x53,0x61,0x6d,0x61,0x72,0x61, + 0x9,0x4d,0x53,0x4b,0x2b,0x30,0x31,0x20,0x2d,0x20,0x53,0x61,0x6d,0x61,0x72,0x61, + 0x2c,0x20,0x55,0x64,0x6d,0x75,0x72,0x74,0x69,0x61,0xa,0x52,0x55,0x9,0x2b,0x35, + 0x36,0x35,0x31,0x2b,0x30,0x36,0x30,0x33,0x36,0x9,0x41,0x73,0x69,0x61,0x2f,0x59, + 0x65,0x6b,0x61,0x74,0x65,0x72,0x69,0x6e,0x62,0x75,0x72,0x67,0x9,0x4d,0x53,0x4b, + 0x2b,0x30,0x32,0x20,0x2d,0x20,0x55,0x72,0x61,0x6c,0x73,0xa,0x52,0x55,0x9,0x2b, + 0x35,0x35,0x30,0x30,0x2b,0x30,0x37,0x33,0x32,0x34,0x9,0x41,0x73,0x69,0x61,0x2f, + 0x4f,0x6d,0x73,0x6b,0x9,0x4d,0x53,0x4b,0x2b,0x30,0x33,0x20,0x2d,0x20,0x4f,0x6d, + 0x73,0x6b,0xa,0x52,0x55,0x9,0x2b,0x35,0x35,0x30,0x32,0x2b,0x30,0x38,0x32,0x35, + 0x35,0x9,0x41,0x73,0x69,0x61,0x2f,0x4e,0x6f,0x76,0x6f,0x73,0x69,0x62,0x69,0x72, + 0x73,0x6b,0x9,0x4d,0x53,0x4b,0x2b,0x30,0x34,0x20,0x2d,0x20,0x4e,0x6f,0x76,0x6f, + 0x73,0x69,0x62,0x69,0x72,0x73,0x6b,0xa,0x52,0x55,0x9,0x2b,0x35,0x33,0x32,0x32, + 0x2b,0x30,0x38,0x33,0x34,0x35,0x9,0x41,0x73,0x69,0x61,0x2f,0x42,0x61,0x72,0x6e, + 0x61,0x75,0x6c,0x9,0x4d,0x53,0x4b,0x2b,0x30,0x34,0x20,0x2d,0x20,0x41,0x6c,0x74, + 0x61,0x69,0xa,0x52,0x55,0x9,0x2b,0x35,0x36,0x33,0x30,0x2b,0x30,0x38,0x34,0x35, + 0x38,0x9,0x41,0x73,0x69,0x61,0x2f,0x54,0x6f,0x6d,0x73,0x6b,0x9,0x4d,0x53,0x4b, + 0x2b,0x30,0x34,0x20,0x2d,0x20,0x54,0x6f,0x6d,0x73,0x6b,0xa,0x52,0x55,0x9,0x2b, + 0x35,0x33,0x34,0x35,0x2b,0x30,0x38,0x37,0x30,0x37,0x9,0x41,0x73,0x69,0x61,0x2f, + 0x4e,0x6f,0x76,0x6f,0x6b,0x75,0x7a,0x6e,0x65,0x74,0x73,0x6b,0x9,0x4d,0x53,0x4b, + 0x2b,0x30,0x34,0x20,0x2d,0x20,0x4b,0x65,0x6d,0x65,0x72,0x6f,0x76,0x6f,0xa,0x52, + 0x55,0x9,0x2b,0x35,0x36,0x30,0x31,0x2b,0x30,0x39,0x32,0x35,0x30,0x9,0x41,0x73, + 0x69,0x61,0x2f,0x4b,0x72,0x61,0x73,0x6e,0x6f,0x79,0x61,0x72,0x73,0x6b,0x9,0x4d, + 0x53,0x4b,0x2b,0x30,0x34,0x20,0x2d,0x20,0x4b,0x72,0x61,0x73,0x6e,0x6f,0x79,0x61, + 0x72,0x73,0x6b,0x20,0x61,0x72,0x65,0x61,0xa,0x52,0x55,0x9,0x2b,0x35,0x32,0x31, + 0x36,0x2b,0x31,0x30,0x34,0x32,0x30,0x9,0x41,0x73,0x69,0x61,0x2f,0x49,0x72,0x6b, + 0x75,0x74,0x73,0x6b,0x9,0x4d,0x53,0x4b,0x2b,0x30,0x35,0x20,0x2d,0x20,0x49,0x72, + 0x6b,0x75,0x74,0x73,0x6b,0x2c,0x20,0x42,0x75,0x72,0x79,0x61,0x74,0x69,0x61,0xa, + 0x52,0x55,0x9,0x2b,0x35,0x32,0x30,0x33,0x2b,0x31,0x31,0x33,0x32,0x38,0x9,0x41, + 0x73,0x69,0x61,0x2f,0x43,0x68,0x69,0x74,0x61,0x9,0x4d,0x53,0x4b,0x2b,0x30,0x36, + 0x20,0x2d,0x20,0x5a,0x61,0x62,0x61,0x79,0x6b,0x61,0x6c,0x73,0x6b,0x79,0xa,0x52, + 0x55,0x9,0x2b,0x36,0x32,0x30,0x30,0x2b,0x31,0x32,0x39,0x34,0x30,0x9,0x41,0x73, + 0x69,0x61,0x2f,0x59,0x61,0x6b,0x75,0x74,0x73,0x6b,0x9,0x4d,0x53,0x4b,0x2b,0x30, + 0x36,0x20,0x2d,0x20,0x4c,0x65,0x6e,0x61,0x20,0x52,0x69,0x76,0x65,0x72,0xa,0x52, + 0x55,0x9,0x2b,0x36,0x32,0x33,0x39,0x32,0x33,0x2b,0x31,0x33,0x35,0x33,0x33,0x31, + 0x34,0x9,0x41,0x73,0x69,0x61,0x2f,0x4b,0x68,0x61,0x6e,0x64,0x79,0x67,0x61,0x9, + 0x4d,0x53,0x4b,0x2b,0x30,0x36,0x20,0x2d,0x20,0x54,0x6f,0x6d,0x70,0x6f,0x6e,0x73, + 0x6b,0x79,0x2c,0x20,0x55,0x73,0x74,0x2d,0x4d,0x61,0x79,0x73,0x6b,0x79,0xa,0x52, + 0x55,0x9,0x2b,0x34,0x33,0x31,0x30,0x2b,0x31,0x33,0x31,0x35,0x36,0x9,0x41,0x73, + 0x69,0x61,0x2f,0x56,0x6c,0x61,0x64,0x69,0x76,0x6f,0x73,0x74,0x6f,0x6b,0x9,0x4d, + 0x53,0x4b,0x2b,0x30,0x37,0x20,0x2d,0x20,0x41,0x6d,0x75,0x72,0x20,0x52,0x69,0x76, + 0x65,0x72,0xa,0x52,0x55,0x9,0x2b,0x36,0x34,0x33,0x33,0x33,0x37,0x2b,0x31,0x34, + 0x33,0x31,0x33,0x33,0x36,0x9,0x41,0x73,0x69,0x61,0x2f,0x55,0x73,0x74,0x2d,0x4e, + 0x65,0x72,0x61,0x9,0x4d,0x53,0x4b,0x2b,0x30,0x37,0x20,0x2d,0x20,0x4f,0x79,0x6d, + 0x79,0x61,0x6b,0x6f,0x6e,0x73,0x6b,0x79,0xa,0x52,0x55,0x9,0x2b,0x35,0x39,0x33, + 0x34,0x2b,0x31,0x35,0x30,0x34,0x38,0x9,0x41,0x73,0x69,0x61,0x2f,0x4d,0x61,0x67, + 0x61,0x64,0x61,0x6e,0x9,0x4d,0x53,0x4b,0x2b,0x30,0x38,0x20,0x2d,0x20,0x4d,0x61, + 0x67,0x61,0x64,0x61,0x6e,0xa,0x52,0x55,0x9,0x2b,0x34,0x36,0x35,0x38,0x2b,0x31, + 0x34,0x32,0x34,0x32,0x9,0x41,0x73,0x69,0x61,0x2f,0x53,0x61,0x6b,0x68,0x61,0x6c, + 0x69,0x6e,0x9,0x4d,0x53,0x4b,0x2b,0x30,0x38,0x20,0x2d,0x20,0x53,0x61,0x6b,0x68, + 0x61,0x6c,0x69,0x6e,0x20,0x49,0x73,0x6c,0x61,0x6e,0x64,0xa,0x52,0x55,0x9,0x2b, + 0x36,0x37,0x32,0x38,0x2b,0x31,0x35,0x33,0x34,0x33,0x9,0x41,0x73,0x69,0x61,0x2f, + 0x53,0x72,0x65,0x64,0x6e,0x65,0x6b,0x6f,0x6c,0x79,0x6d,0x73,0x6b,0x9,0x4d,0x53, + 0x4b,0x2b,0x30,0x38,0x20,0x2d,0x20,0x53,0x61,0x6b,0x68,0x61,0x20,0x28,0x45,0x29, + 0x3b,0x20,0x4e,0x6f,0x72,0x74,0x68,0x20,0x4b,0x75,0x72,0x69,0x6c,0x20,0x49,0x73, + 0xa,0x52,0x55,0x9,0x2b,0x35,0x33,0x30,0x31,0x2b,0x31,0x35,0x38,0x33,0x39,0x9, + 0x41,0x73,0x69,0x61,0x2f,0x4b,0x61,0x6d,0x63,0x68,0x61,0x74,0x6b,0x61,0x9,0x4d, + 0x53,0x4b,0x2b,0x30,0x39,0x20,0x2d,0x20,0x4b,0x61,0x6d,0x63,0x68,0x61,0x74,0x6b, + 0x61,0xa,0x52,0x55,0x9,0x2b,0x36,0x34,0x34,0x35,0x2b,0x31,0x37,0x37,0x32,0x39, + 0x9,0x41,0x73,0x69,0x61,0x2f,0x41,0x6e,0x61,0x64,0x79,0x72,0x9,0x4d,0x53,0x4b, + 0x2b,0x30,0x39,0x20,0x2d,0x20,0x42,0x65,0x72,0x69,0x6e,0x67,0x20,0x53,0x65,0x61, + 0xa,0x52,0x57,0x9,0x2d,0x30,0x31,0x35,0x37,0x2b,0x30,0x33,0x30,0x30,0x34,0x9, + 0x41,0x66,0x72,0x69,0x63,0x61,0x2f,0x4b,0x69,0x67,0x61,0x6c,0x69,0xa,0x53,0x41, + 0x9,0x2b,0x32,0x34,0x33,0x38,0x2b,0x30,0x34,0x36,0x34,0x33,0x9,0x41,0x73,0x69, + 0x61,0x2f,0x52,0x69,0x79,0x61,0x64,0x68,0xa,0x53,0x42,0x9,0x2d,0x30,0x39,0x33, + 0x32,0x2b,0x31,0x36,0x30,0x31,0x32,0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x2f, + 0x47,0x75,0x61,0x64,0x61,0x6c,0x63,0x61,0x6e,0x61,0x6c,0xa,0x53,0x43,0x9,0x2d, + 0x30,0x34,0x34,0x30,0x2b,0x30,0x35,0x35,0x32,0x38,0x9,0x49,0x6e,0x64,0x69,0x61, + 0x6e,0x2f,0x4d,0x61,0x68,0x65,0xa,0x53,0x44,0x9,0x2b,0x31,0x35,0x33,0x36,0x2b, + 0x30,0x33,0x32,0x33,0x32,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f,0x4b,0x68,0x61, + 0x72,0x74,0x6f,0x75,0x6d,0xa,0x53,0x45,0x9,0x2b,0x35,0x39,0x32,0x30,0x2b,0x30, + 0x31,0x38,0x30,0x33,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x53,0x74,0x6f,0x63, + 0x6b,0x68,0x6f,0x6c,0x6d,0xa,0x53,0x47,0x9,0x2b,0x30,0x31,0x31,0x37,0x2b,0x31, + 0x30,0x33,0x35,0x31,0x9,0x41,0x73,0x69,0x61,0x2f,0x53,0x69,0x6e,0x67,0x61,0x70, + 0x6f,0x72,0x65,0xa,0x53,0x48,0x9,0x2d,0x31,0x35,0x35,0x35,0x2d,0x30,0x30,0x35, + 0x34,0x32,0x9,0x41,0x74,0x6c,0x61,0x6e,0x74,0x69,0x63,0x2f,0x53,0x74,0x5f,0x48, + 0x65,0x6c,0x65,0x6e,0x61,0xa,0x53,0x49,0x9,0x2b,0x34,0x36,0x30,0x33,0x2b,0x30, + 0x31,0x34,0x33,0x31,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x4c,0x6a,0x75,0x62, + 0x6c,0x6a,0x61,0x6e,0x61,0xa,0x53,0x4a,0x9,0x2b,0x37,0x38,0x30,0x30,0x2b,0x30, + 0x31,0x36,0x30,0x30,0x9,0x41,0x72,0x63,0x74,0x69,0x63,0x2f,0x4c,0x6f,0x6e,0x67, + 0x79,0x65,0x61,0x72,0x62,0x79,0x65,0x6e,0xa,0x53,0x4b,0x9,0x2b,0x34,0x38,0x30, + 0x39,0x2b,0x30,0x31,0x37,0x30,0x37,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x42, + 0x72,0x61,0x74,0x69,0x73,0x6c,0x61,0x76,0x61,0xa,0x53,0x4c,0x9,0x2b,0x30,0x38, + 0x33,0x30,0x2d,0x30,0x31,0x33,0x31,0x35,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f, + 0x46,0x72,0x65,0x65,0x74,0x6f,0x77,0x6e,0xa,0x53,0x4d,0x9,0x2b,0x34,0x33,0x35, + 0x35,0x2b,0x30,0x31,0x32,0x32,0x38,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x53, + 0x61,0x6e,0x5f,0x4d,0x61,0x72,0x69,0x6e,0x6f,0xa,0x53,0x4e,0x9,0x2b,0x31,0x34, + 0x34,0x30,0x2d,0x30,0x31,0x37,0x32,0x36,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f, + 0x44,0x61,0x6b,0x61,0x72,0xa,0x53,0x4f,0x9,0x2b,0x30,0x32,0x30,0x34,0x2b,0x30, + 0x34,0x35,0x32,0x32,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f,0x4d,0x6f,0x67,0x61, + 0x64,0x69,0x73,0x68,0x75,0xa,0x53,0x52,0x9,0x2b,0x30,0x35,0x35,0x30,0x2d,0x30, + 0x35,0x35,0x31,0x30,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x50,0x61,0x72, + 0x61,0x6d,0x61,0x72,0x69,0x62,0x6f,0xa,0x53,0x53,0x9,0x2b,0x30,0x34,0x35,0x31, + 0x2b,0x30,0x33,0x31,0x33,0x36,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f,0x4a,0x75, + 0x62,0x61,0xa,0x53,0x54,0x9,0x2b,0x30,0x30,0x32,0x30,0x2b,0x30,0x30,0x36,0x34, + 0x34,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f,0x53,0x61,0x6f,0x5f,0x54,0x6f,0x6d, + 0x65,0xa,0x53,0x56,0x9,0x2b,0x31,0x33,0x34,0x32,0x2d,0x30,0x38,0x39,0x31,0x32, + 0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x45,0x6c,0x5f,0x53,0x61,0x6c,0x76, + 0x61,0x64,0x6f,0x72,0xa,0x53,0x58,0x9,0x2b,0x31,0x38,0x30,0x33,0x30,0x35,0x2d, + 0x30,0x36,0x33,0x30,0x32,0x35,0x30,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f, + 0x4c,0x6f,0x77,0x65,0x72,0x5f,0x50,0x72,0x69,0x6e,0x63,0x65,0x73,0xa,0x53,0x59, + 0x9,0x2b,0x33,0x33,0x33,0x30,0x2b,0x30,0x33,0x36,0x31,0x38,0x9,0x41,0x73,0x69, + 0x61,0x2f,0x44,0x61,0x6d,0x61,0x73,0x63,0x75,0x73,0xa,0x53,0x5a,0x9,0x2d,0x32, + 0x36,0x31,0x38,0x2b,0x30,0x33,0x31,0x30,0x36,0x9,0x41,0x66,0x72,0x69,0x63,0x61, + 0x2f,0x4d,0x62,0x61,0x62,0x61,0x6e,0x65,0xa,0x54,0x43,0x9,0x2b,0x32,0x31,0x32, + 0x38,0x2d,0x30,0x37,0x31,0x30,0x38,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f, + 0x47,0x72,0x61,0x6e,0x64,0x5f,0x54,0x75,0x72,0x6b,0xa,0x54,0x44,0x9,0x2b,0x31, + 0x32,0x30,0x37,0x2b,0x30,0x31,0x35,0x30,0x33,0x9,0x41,0x66,0x72,0x69,0x63,0x61, + 0x2f,0x4e,0x64,0x6a,0x61,0x6d,0x65,0x6e,0x61,0xa,0x54,0x46,0x9,0x2d,0x34,0x39, + 0x32,0x31,0x31,0x30,0x2b,0x30,0x37,0x30,0x31,0x33,0x30,0x33,0x9,0x49,0x6e,0x64, + 0x69,0x61,0x6e,0x2f,0x4b,0x65,0x72,0x67,0x75,0x65,0x6c,0x65,0x6e,0xa,0x54,0x47, + 0x9,0x2b,0x30,0x36,0x30,0x38,0x2b,0x30,0x30,0x31,0x31,0x33,0x9,0x41,0x66,0x72, + 0x69,0x63,0x61,0x2f,0x4c,0x6f,0x6d,0x65,0xa,0x54,0x48,0x9,0x2b,0x31,0x33,0x34, + 0x35,0x2b,0x31,0x30,0x30,0x33,0x31,0x9,0x41,0x73,0x69,0x61,0x2f,0x42,0x61,0x6e, + 0x67,0x6b,0x6f,0x6b,0xa,0x54,0x4a,0x9,0x2b,0x33,0x38,0x33,0x35,0x2b,0x30,0x36, + 0x38,0x34,0x38,0x9,0x41,0x73,0x69,0x61,0x2f,0x44,0x75,0x73,0x68,0x61,0x6e,0x62, + 0x65,0xa,0x54,0x4b,0x9,0x2d,0x30,0x39,0x32,0x32,0x2d,0x31,0x37,0x31,0x31,0x34, + 0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x2f,0x46,0x61,0x6b,0x61,0x6f,0x66,0x6f, + 0xa,0x54,0x4c,0x9,0x2d,0x30,0x38,0x33,0x33,0x2b,0x31,0x32,0x35,0x33,0x35,0x9, + 0x41,0x73,0x69,0x61,0x2f,0x44,0x69,0x6c,0x69,0xa,0x54,0x4d,0x9,0x2b,0x33,0x37, + 0x35,0x37,0x2b,0x30,0x35,0x38,0x32,0x33,0x9,0x41,0x73,0x69,0x61,0x2f,0x41,0x73, + 0x68,0x67,0x61,0x62,0x61,0x74,0xa,0x54,0x4e,0x9,0x2b,0x33,0x36,0x34,0x38,0x2b, + 0x30,0x31,0x30,0x31,0x31,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f,0x54,0x75,0x6e, + 0x69,0x73,0xa,0x54,0x4f,0x9,0x2d,0x32,0x31,0x31,0x30,0x2d,0x31,0x37,0x35,0x31, + 0x30,0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x2f,0x54,0x6f,0x6e,0x67,0x61,0x74, + 0x61,0x70,0x75,0xa,0x54,0x52,0x9,0x2b,0x34,0x31,0x30,0x31,0x2b,0x30,0x32,0x38, + 0x35,0x38,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x49,0x73,0x74,0x61,0x6e,0x62, + 0x75,0x6c,0xa,0x54,0x54,0x9,0x2b,0x31,0x30,0x33,0x39,0x2d,0x30,0x36,0x31,0x33, + 0x31,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x50,0x6f,0x72,0x74,0x5f,0x6f, + 0x66,0x5f,0x53,0x70,0x61,0x69,0x6e,0xa,0x54,0x56,0x9,0x2d,0x30,0x38,0x33,0x31, + 0x2b,0x31,0x37,0x39,0x31,0x33,0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x2f,0x46, + 0x75,0x6e,0x61,0x66,0x75,0x74,0x69,0xa,0x54,0x57,0x9,0x2b,0x32,0x35,0x30,0x33, + 0x2b,0x31,0x32,0x31,0x33,0x30,0x9,0x41,0x73,0x69,0x61,0x2f,0x54,0x61,0x69,0x70, + 0x65,0x69,0xa,0x54,0x5a,0x9,0x2d,0x30,0x36,0x34,0x38,0x2b,0x30,0x33,0x39,0x31, + 0x37,0x9,0x41,0x66,0x72,0x69,0x63,0x61,0x2f,0x44,0x61,0x72,0x5f,0x65,0x73,0x5f, + 0x53,0x61,0x6c,0x61,0x61,0x6d,0xa,0x55,0x41,0x9,0x2b,0x35,0x30,0x32,0x36,0x2b, + 0x30,0x33,0x30,0x33,0x31,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x4b,0x69,0x65, + 0x76,0x9,0x55,0x6b,0x72,0x61,0x69,0x6e,0x65,0x20,0x28,0x6d,0x6f,0x73,0x74,0x20, + 0x61,0x72,0x65,0x61,0x73,0x29,0xa,0x55,0x41,0x9,0x2b,0x34,0x38,0x33,0x37,0x2b, + 0x30,0x32,0x32,0x31,0x38,0x9,0x45,0x75,0x72,0x6f,0x70,0x65,0x2f,0x55,0x7a,0x68, + 0x67,0x6f,0x72,0x6f,0x64,0x9,0x52,0x75,0x74,0x68,0x65,0x6e,0x69,0x61,0xa,0x55, + 0x41,0x9,0x2b,0x34,0x37,0x35,0x30,0x2b,0x30,0x33,0x35,0x31,0x30,0x9,0x45,0x75, + 0x72,0x6f,0x70,0x65,0x2f,0x5a,0x61,0x70,0x6f,0x72,0x6f,0x7a,0x68,0x79,0x65,0x9, + 0x5a,0x61,0x70,0x6f,0x72,0x6f,0x7a,0x68,0x27,0x79,0x65,0x2f,0x5a,0x61,0x70,0x6f, + 0x72,0x69,0x7a,0x68,0x69,0x61,0x3b,0x20,0x4c,0x75,0x67,0x61,0x6e,0x73,0x6b,0x2f, + 0x4c,0x75,0x68,0x61,0x6e,0x73,0x6b,0x20,0x28,0x65,0x61,0x73,0x74,0x29,0xa,0x55, + 0x47,0x9,0x2b,0x30,0x30,0x31,0x39,0x2b,0x30,0x33,0x32,0x32,0x35,0x9,0x41,0x66, + 0x72,0x69,0x63,0x61,0x2f,0x4b,0x61,0x6d,0x70,0x61,0x6c,0x61,0xa,0x55,0x4d,0x9, + 0x2b,0x32,0x38,0x31,0x33,0x2d,0x31,0x37,0x37,0x32,0x32,0x9,0x50,0x61,0x63,0x69, + 0x66,0x69,0x63,0x2f,0x4d,0x69,0x64,0x77,0x61,0x79,0x9,0x4d,0x69,0x64,0x77,0x61, + 0x79,0x20,0x49,0x73,0x6c,0x61,0x6e,0x64,0x73,0xa,0x55,0x4d,0x9,0x2b,0x31,0x39, + 0x31,0x37,0x2b,0x31,0x36,0x36,0x33,0x37,0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63, + 0x2f,0x57,0x61,0x6b,0x65,0x9,0x57,0x61,0x6b,0x65,0x20,0x49,0x73,0x6c,0x61,0x6e, + 0x64,0xa,0x55,0x53,0x9,0x2b,0x34,0x30,0x34,0x32,0x35,0x31,0x2d,0x30,0x37,0x34, + 0x30,0x30,0x32,0x33,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x4e,0x65,0x77, + 0x5f,0x59,0x6f,0x72,0x6b,0x9,0x45,0x61,0x73,0x74,0x65,0x72,0x6e,0x20,0x28,0x6d, + 0x6f,0x73,0x74,0x20,0x61,0x72,0x65,0x61,0x73,0x29,0xa,0x55,0x53,0x9,0x2b,0x34, + 0x32,0x31,0x39,0x35,0x33,0x2d,0x30,0x38,0x33,0x30,0x32,0x34,0x35,0x9,0x41,0x6d, + 0x65,0x72,0x69,0x63,0x61,0x2f,0x44,0x65,0x74,0x72,0x6f,0x69,0x74,0x9,0x45,0x61, + 0x73,0x74,0x65,0x72,0x6e,0x20,0x2d,0x20,0x4d,0x49,0x20,0x28,0x6d,0x6f,0x73,0x74, + 0x20,0x61,0x72,0x65,0x61,0x73,0x29,0xa,0x55,0x53,0x9,0x2b,0x33,0x38,0x31,0x35, + 0x31,0x35,0x2d,0x30,0x38,0x35,0x34,0x35,0x33,0x34,0x9,0x41,0x6d,0x65,0x72,0x69, + 0x63,0x61,0x2f,0x4b,0x65,0x6e,0x74,0x75,0x63,0x6b,0x79,0x2f,0x4c,0x6f,0x75,0x69, + 0x73,0x76,0x69,0x6c,0x6c,0x65,0x9,0x45,0x61,0x73,0x74,0x65,0x72,0x6e,0x20,0x2d, + 0x20,0x4b,0x59,0x20,0x28,0x4c,0x6f,0x75,0x69,0x73,0x76,0x69,0x6c,0x6c,0x65,0x20, + 0x61,0x72,0x65,0x61,0x29,0xa,0x55,0x53,0x9,0x2b,0x33,0x36,0x34,0x39,0x34,0x37, + 0x2d,0x30,0x38,0x34,0x35,0x30,0x35,0x37,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61, + 0x2f,0x4b,0x65,0x6e,0x74,0x75,0x63,0x6b,0x79,0x2f,0x4d,0x6f,0x6e,0x74,0x69,0x63, + 0x65,0x6c,0x6c,0x6f,0x9,0x45,0x61,0x73,0x74,0x65,0x72,0x6e,0x20,0x2d,0x20,0x4b, + 0x59,0x20,0x28,0x57,0x61,0x79,0x6e,0x65,0x29,0xa,0x55,0x53,0x9,0x2b,0x33,0x39, + 0x34,0x36,0x30,0x36,0x2d,0x30,0x38,0x36,0x30,0x39,0x32,0x39,0x9,0x41,0x6d,0x65, + 0x72,0x69,0x63,0x61,0x2f,0x49,0x6e,0x64,0x69,0x61,0x6e,0x61,0x2f,0x49,0x6e,0x64, + 0x69,0x61,0x6e,0x61,0x70,0x6f,0x6c,0x69,0x73,0x9,0x45,0x61,0x73,0x74,0x65,0x72, + 0x6e,0x20,0x2d,0x20,0x49,0x4e,0x20,0x28,0x6d,0x6f,0x73,0x74,0x20,0x61,0x72,0x65, + 0x61,0x73,0x29,0xa,0x55,0x53,0x9,0x2b,0x33,0x38,0x34,0x30,0x33,0x38,0x2d,0x30, + 0x38,0x37,0x33,0x31,0x34,0x33,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x49, + 0x6e,0x64,0x69,0x61,0x6e,0x61,0x2f,0x56,0x69,0x6e,0x63,0x65,0x6e,0x6e,0x65,0x73, + 0x9,0x45,0x61,0x73,0x74,0x65,0x72,0x6e,0x20,0x2d,0x20,0x49,0x4e,0x20,0x28,0x44, + 0x61,0x2c,0x20,0x44,0x75,0x2c,0x20,0x4b,0x2c,0x20,0x4d,0x6e,0x29,0xa,0x55,0x53, + 0x9,0x2b,0x34,0x31,0x30,0x33,0x30,0x35,0x2d,0x30,0x38,0x36,0x33,0x36,0x31,0x31, + 0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x49,0x6e,0x64,0x69,0x61,0x6e,0x61, + 0x2f,0x57,0x69,0x6e,0x61,0x6d,0x61,0x63,0x9,0x45,0x61,0x73,0x74,0x65,0x72,0x6e, + 0x20,0x2d,0x20,0x49,0x4e,0x20,0x28,0x50,0x75,0x6c,0x61,0x73,0x6b,0x69,0x29,0xa, + 0x55,0x53,0x9,0x2b,0x33,0x38,0x32,0x32,0x33,0x32,0x2d,0x30,0x38,0x36,0x32,0x30, + 0x34,0x31,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x49,0x6e,0x64,0x69,0x61, + 0x6e,0x61,0x2f,0x4d,0x61,0x72,0x65,0x6e,0x67,0x6f,0x9,0x45,0x61,0x73,0x74,0x65, + 0x72,0x6e,0x20,0x2d,0x20,0x49,0x4e,0x20,0x28,0x43,0x72,0x61,0x77,0x66,0x6f,0x72, + 0x64,0x29,0xa,0x55,0x53,0x9,0x2b,0x33,0x38,0x32,0x39,0x33,0x31,0x2d,0x30,0x38, + 0x37,0x31,0x36,0x34,0x33,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x49,0x6e, + 0x64,0x69,0x61,0x6e,0x61,0x2f,0x50,0x65,0x74,0x65,0x72,0x73,0x62,0x75,0x72,0x67, + 0x9,0x45,0x61,0x73,0x74,0x65,0x72,0x6e,0x20,0x2d,0x20,0x49,0x4e,0x20,0x28,0x50, + 0x69,0x6b,0x65,0x29,0xa,0x55,0x53,0x9,0x2b,0x33,0x38,0x34,0x34,0x35,0x32,0x2d, + 0x30,0x38,0x35,0x30,0x34,0x30,0x32,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f, + 0x49,0x6e,0x64,0x69,0x61,0x6e,0x61,0x2f,0x56,0x65,0x76,0x61,0x79,0x9,0x45,0x61, + 0x73,0x74,0x65,0x72,0x6e,0x20,0x2d,0x20,0x49,0x4e,0x20,0x28,0x53,0x77,0x69,0x74, + 0x7a,0x65,0x72,0x6c,0x61,0x6e,0x64,0x29,0xa,0x55,0x53,0x9,0x2b,0x34,0x31,0x35, + 0x31,0x30,0x30,0x2d,0x30,0x38,0x37,0x33,0x39,0x30,0x30,0x9,0x41,0x6d,0x65,0x72, + 0x69,0x63,0x61,0x2f,0x43,0x68,0x69,0x63,0x61,0x67,0x6f,0x9,0x43,0x65,0x6e,0x74, + 0x72,0x61,0x6c,0x20,0x28,0x6d,0x6f,0x73,0x74,0x20,0x61,0x72,0x65,0x61,0x73,0x29, + 0xa,0x55,0x53,0x9,0x2b,0x33,0x37,0x35,0x37,0x31,0x31,0x2d,0x30,0x38,0x36,0x34, + 0x35,0x34,0x31,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x49,0x6e,0x64,0x69, + 0x61,0x6e,0x61,0x2f,0x54,0x65,0x6c,0x6c,0x5f,0x43,0x69,0x74,0x79,0x9,0x43,0x65, + 0x6e,0x74,0x72,0x61,0x6c,0x20,0x2d,0x20,0x49,0x4e,0x20,0x28,0x50,0x65,0x72,0x72, + 0x79,0x29,0xa,0x55,0x53,0x9,0x2b,0x34,0x31,0x31,0x37,0x34,0x35,0x2d,0x30,0x38, + 0x36,0x33,0x37,0x33,0x30,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x49,0x6e, + 0x64,0x69,0x61,0x6e,0x61,0x2f,0x4b,0x6e,0x6f,0x78,0x9,0x43,0x65,0x6e,0x74,0x72, + 0x61,0x6c,0x20,0x2d,0x20,0x49,0x4e,0x20,0x28,0x53,0x74,0x61,0x72,0x6b,0x65,0x29, + 0xa,0x55,0x53,0x9,0x2b,0x34,0x35,0x30,0x36,0x32,0x38,0x2d,0x30,0x38,0x37,0x33, + 0x36,0x35,0x31,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x4d,0x65,0x6e,0x6f, + 0x6d,0x69,0x6e,0x65,0x65,0x9,0x43,0x65,0x6e,0x74,0x72,0x61,0x6c,0x20,0x2d,0x20, + 0x4d,0x49,0x20,0x28,0x57,0x69,0x73,0x63,0x6f,0x6e,0x73,0x69,0x6e,0x20,0x62,0x6f, + 0x72,0x64,0x65,0x72,0x29,0xa,0x55,0x53,0x9,0x2b,0x34,0x37,0x30,0x36,0x35,0x39, + 0x2d,0x31,0x30,0x31,0x31,0x37,0x35,0x37,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61, + 0x2f,0x4e,0x6f,0x72,0x74,0x68,0x5f,0x44,0x61,0x6b,0x6f,0x74,0x61,0x2f,0x43,0x65, + 0x6e,0x74,0x65,0x72,0x9,0x43,0x65,0x6e,0x74,0x72,0x61,0x6c,0x20,0x2d,0x20,0x4e, + 0x44,0x20,0x28,0x4f,0x6c,0x69,0x76,0x65,0x72,0x29,0xa,0x55,0x53,0x9,0x2b,0x34, + 0x36,0x35,0x30,0x34,0x32,0x2d,0x31,0x30,0x31,0x32,0x34,0x33,0x39,0x9,0x41,0x6d, + 0x65,0x72,0x69,0x63,0x61,0x2f,0x4e,0x6f,0x72,0x74,0x68,0x5f,0x44,0x61,0x6b,0x6f, + 0x74,0x61,0x2f,0x4e,0x65,0x77,0x5f,0x53,0x61,0x6c,0x65,0x6d,0x9,0x43,0x65,0x6e, + 0x74,0x72,0x61,0x6c,0x20,0x2d,0x20,0x4e,0x44,0x20,0x28,0x4d,0x6f,0x72,0x74,0x6f, + 0x6e,0x20,0x72,0x75,0x72,0x61,0x6c,0x29,0xa,0x55,0x53,0x9,0x2b,0x34,0x37,0x31, + 0x35,0x35,0x31,0x2d,0x31,0x30,0x31,0x34,0x36,0x34,0x30,0x9,0x41,0x6d,0x65,0x72, + 0x69,0x63,0x61,0x2f,0x4e,0x6f,0x72,0x74,0x68,0x5f,0x44,0x61,0x6b,0x6f,0x74,0x61, + 0x2f,0x42,0x65,0x75,0x6c,0x61,0x68,0x9,0x43,0x65,0x6e,0x74,0x72,0x61,0x6c,0x20, + 0x2d,0x20,0x4e,0x44,0x20,0x28,0x4d,0x65,0x72,0x63,0x65,0x72,0x29,0xa,0x55,0x53, + 0x9,0x2b,0x33,0x39,0x34,0x34,0x32,0x31,0x2d,0x31,0x30,0x34,0x35,0x39,0x30,0x33, + 0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x44,0x65,0x6e,0x76,0x65,0x72,0x9, + 0x4d,0x6f,0x75,0x6e,0x74,0x61,0x69,0x6e,0x20,0x28,0x6d,0x6f,0x73,0x74,0x20,0x61, + 0x72,0x65,0x61,0x73,0x29,0xa,0x55,0x53,0x9,0x2b,0x34,0x33,0x33,0x36,0x34,0x39, + 0x2d,0x31,0x31,0x36,0x31,0x32,0x30,0x39,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61, + 0x2f,0x42,0x6f,0x69,0x73,0x65,0x9,0x4d,0x6f,0x75,0x6e,0x74,0x61,0x69,0x6e,0x20, + 0x2d,0x20,0x49,0x44,0x20,0x28,0x73,0x6f,0x75,0x74,0x68,0x29,0x3b,0x20,0x4f,0x52, + 0x20,0x28,0x65,0x61,0x73,0x74,0x29,0xa,0x55,0x53,0x9,0x2b,0x33,0x33,0x32,0x36, + 0x35,0x34,0x2d,0x31,0x31,0x32,0x30,0x34,0x32,0x34,0x9,0x41,0x6d,0x65,0x72,0x69, + 0x63,0x61,0x2f,0x50,0x68,0x6f,0x65,0x6e,0x69,0x78,0x9,0x4d,0x53,0x54,0x20,0x2d, + 0x20,0x41,0x72,0x69,0x7a,0x6f,0x6e,0x61,0x20,0x28,0x65,0x78,0x63,0x65,0x70,0x74, + 0x20,0x4e,0x61,0x76,0x61,0x6a,0x6f,0x29,0xa,0x55,0x53,0x9,0x2b,0x33,0x34,0x30, + 0x33,0x30,0x38,0x2d,0x31,0x31,0x38,0x31,0x34,0x33,0x34,0x9,0x41,0x6d,0x65,0x72, + 0x69,0x63,0x61,0x2f,0x4c,0x6f,0x73,0x5f,0x41,0x6e,0x67,0x65,0x6c,0x65,0x73,0x9, + 0x50,0x61,0x63,0x69,0x66,0x69,0x63,0xa,0x55,0x53,0x9,0x2b,0x36,0x31,0x31,0x33, + 0x30,0x35,0x2d,0x31,0x34,0x39,0x35,0x34,0x30,0x31,0x9,0x41,0x6d,0x65,0x72,0x69, + 0x63,0x61,0x2f,0x41,0x6e,0x63,0x68,0x6f,0x72,0x61,0x67,0x65,0x9,0x41,0x6c,0x61, + 0x73,0x6b,0x61,0x20,0x28,0x6d,0x6f,0x73,0x74,0x20,0x61,0x72,0x65,0x61,0x73,0x29, + 0xa,0x55,0x53,0x9,0x2b,0x35,0x38,0x31,0x38,0x30,0x37,0x2d,0x31,0x33,0x34,0x32, + 0x35,0x31,0x31,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x4a,0x75,0x6e,0x65, + 0x61,0x75,0x9,0x41,0x6c,0x61,0x73,0x6b,0x61,0x20,0x2d,0x20,0x4a,0x75,0x6e,0x65, + 0x61,0x75,0x20,0x61,0x72,0x65,0x61,0xa,0x55,0x53,0x9,0x2b,0x35,0x37,0x31,0x30, + 0x33,0x35,0x2d,0x31,0x33,0x35,0x31,0x38,0x30,0x37,0x9,0x41,0x6d,0x65,0x72,0x69, + 0x63,0x61,0x2f,0x53,0x69,0x74,0x6b,0x61,0x9,0x41,0x6c,0x61,0x73,0x6b,0x61,0x20, + 0x2d,0x20,0x53,0x69,0x74,0x6b,0x61,0x20,0x61,0x72,0x65,0x61,0xa,0x55,0x53,0x9, + 0x2b,0x35,0x35,0x30,0x37,0x33,0x37,0x2d,0x31,0x33,0x31,0x33,0x34,0x33,0x35,0x9, + 0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x4d,0x65,0x74,0x6c,0x61,0x6b,0x61,0x74, + 0x6c,0x61,0x9,0x41,0x6c,0x61,0x73,0x6b,0x61,0x20,0x2d,0x20,0x41,0x6e,0x6e,0x65, + 0x74,0x74,0x65,0x20,0x49,0x73,0x6c,0x61,0x6e,0x64,0xa,0x55,0x53,0x9,0x2b,0x35, + 0x39,0x33,0x32,0x34,0x39,0x2d,0x31,0x33,0x39,0x34,0x33,0x33,0x38,0x9,0x41,0x6d, + 0x65,0x72,0x69,0x63,0x61,0x2f,0x59,0x61,0x6b,0x75,0x74,0x61,0x74,0x9,0x41,0x6c, + 0x61,0x73,0x6b,0x61,0x20,0x2d,0x20,0x59,0x61,0x6b,0x75,0x74,0x61,0x74,0xa,0x55, + 0x53,0x9,0x2b,0x36,0x34,0x33,0x30,0x30,0x34,0x2d,0x31,0x36,0x35,0x32,0x34,0x32, + 0x33,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x4e,0x6f,0x6d,0x65,0x9,0x41, + 0x6c,0x61,0x73,0x6b,0x61,0x20,0x28,0x77,0x65,0x73,0x74,0x29,0xa,0x55,0x53,0x9, + 0x2b,0x35,0x31,0x35,0x32,0x34,0x38,0x2d,0x31,0x37,0x36,0x33,0x39,0x32,0x39,0x9, + 0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f,0x41,0x64,0x61,0x6b,0x9,0x41,0x6c,0x65, + 0x75,0x74,0x69,0x61,0x6e,0x20,0x49,0x73,0x6c,0x61,0x6e,0x64,0x73,0xa,0x55,0x53, + 0x9,0x2b,0x32,0x31,0x31,0x38,0x32,0x35,0x2d,0x31,0x35,0x37,0x35,0x31,0x33,0x30, + 0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x2f,0x48,0x6f,0x6e,0x6f,0x6c,0x75,0x6c, + 0x75,0x9,0x48,0x61,0x77,0x61,0x69,0x69,0xa,0x55,0x59,0x9,0x2d,0x33,0x34,0x35, + 0x33,0x2d,0x30,0x35,0x36,0x31,0x31,0x9,0x41,0x6d,0x65,0x72,0x69,0x63,0x61,0x2f, + 0x4d,0x6f,0x6e,0x74,0x65,0x76,0x69,0x64,0x65,0x6f,0xa,0x55,0x5a,0x9,0x2b,0x33, + 0x39,0x34,0x30,0x2b,0x30,0x36,0x36,0x34,0x38,0x9,0x41,0x73,0x69,0x61,0x2f,0x53, + 0x61,0x6d,0x61,0x72,0x6b,0x61,0x6e,0x64,0x9,0x55,0x7a,0x62,0x65,0x6b,0x69,0x73, + 0x74,0x61,0x6e,0x20,0x28,0x77,0x65,0x73,0x74,0x29,0xa,0x55,0x5a,0x9,0x2b,0x34, + 0x31,0x32,0x30,0x2b,0x30,0x36,0x39,0x31,0x38,0x9,0x41,0x73,0x69,0x61,0x2f,0x54, + 0x61,0x73,0x68,0x6b,0x65,0x6e,0x74,0x9,0x55,0x7a,0x62,0x65,0x6b,0x69,0x73,0x74, + 0x61,0x6e,0x20,0x28,0x65,0x61,0x73,0x74,0x29,0xa,0x56,0x41,0x9,0x2b,0x34,0x31, + 0x35,0x34,0x30,0x38,0x2b,0x30,0x31,0x32,0x32,0x37,0x31,0x31,0x9,0x45,0x75,0x72, + 0x6f,0x70,0x65,0x2f,0x56,0x61,0x74,0x69,0x63,0x61,0x6e,0xa,0x56,0x43,0x9,0x2b, + 0x31,0x33,0x30,0x39,0x2d,0x30,0x36,0x31,0x31,0x34,0x9,0x41,0x6d,0x65,0x72,0x69, + 0x63,0x61,0x2f,0x53,0x74,0x5f,0x56,0x69,0x6e,0x63,0x65,0x6e,0x74,0xa,0x56,0x45, + 0x9,0x2b,0x31,0x30,0x33,0x30,0x2d,0x30,0x36,0x36,0x35,0x36,0x9,0x41,0x6d,0x65, + 0x72,0x69,0x63,0x61,0x2f,0x43,0x61,0x72,0x61,0x63,0x61,0x73,0xa,0x56,0x47,0x9, + 0x2b,0x31,0x38,0x32,0x37,0x2d,0x30,0x36,0x34,0x33,0x37,0x9,0x41,0x6d,0x65,0x72, + 0x69,0x63,0x61,0x2f,0x54,0x6f,0x72,0x74,0x6f,0x6c,0x61,0xa,0x56,0x49,0x9,0x2b, + 0x31,0x38,0x32,0x31,0x2d,0x30,0x36,0x34,0x35,0x36,0x9,0x41,0x6d,0x65,0x72,0x69, + 0x63,0x61,0x2f,0x53,0x74,0x5f,0x54,0x68,0x6f,0x6d,0x61,0x73,0xa,0x56,0x4e,0x9, + 0x2b,0x31,0x30,0x34,0x35,0x2b,0x31,0x30,0x36,0x34,0x30,0x9,0x41,0x73,0x69,0x61, + 0x2f,0x48,0x6f,0x5f,0x43,0x68,0x69,0x5f,0x4d,0x69,0x6e,0x68,0xa,0x56,0x55,0x9, + 0x2d,0x31,0x37,0x34,0x30,0x2b,0x31,0x36,0x38,0x32,0x35,0x9,0x50,0x61,0x63,0x69, + 0x66,0x69,0x63,0x2f,0x45,0x66,0x61,0x74,0x65,0xa,0x57,0x46,0x9,0x2d,0x31,0x33, + 0x31,0x38,0x2d,0x31,0x37,0x36,0x31,0x30,0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63, + 0x2f,0x57,0x61,0x6c,0x6c,0x69,0x73,0xa,0x57,0x53,0x9,0x2d,0x31,0x33,0x35,0x30, + 0x2d,0x31,0x37,0x31,0x34,0x34,0x9,0x50,0x61,0x63,0x69,0x66,0x69,0x63,0x2f,0x41, + 0x70,0x69,0x61,0xa,0x59,0x45,0x9,0x2b,0x31,0x32,0x34,0x35,0x2b,0x30,0x34,0x35, + 0x31,0x32,0x9,0x41,0x73,0x69,0x61,0x2f,0x41,0x64,0x65,0x6e,0xa,0x59,0x54,0x9, + 0x2d,0x31,0x32,0x34,0x37,0x2b,0x30,0x34,0x35,0x31,0x34,0x9,0x49,0x6e,0x64,0x69, + 0x61,0x6e,0x2f,0x4d,0x61,0x79,0x6f,0x74,0x74,0x65,0xa,0x5a,0x41,0x9,0x2d,0x32, + 0x36,0x31,0x35,0x2b,0x30,0x32,0x38,0x30,0x30,0x9,0x41,0x66,0x72,0x69,0x63,0x61, + 0x2f,0x4a,0x6f,0x68,0x61,0x6e,0x6e,0x65,0x73,0x62,0x75,0x72,0x67,0xa,0x5a,0x4d, + 0x9,0x2d,0x31,0x35,0x32,0x35,0x2b,0x30,0x32,0x38,0x31,0x37,0x9,0x41,0x66,0x72, + 0x69,0x63,0x61,0x2f,0x4c,0x75,0x73,0x61,0x6b,0x61,0xa,0x5a,0x57,0x9,0x2d,0x31, + 0x37,0x35,0x30,0x2b,0x30,0x33,0x31,0x30,0x33,0x9,0x41,0x66,0x72,0x69,0x63,0x61, + 0x2f,0x48,0x61,0x72,0x61,0x72,0x65,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/MET + 0x0,0x0,0x8,0x36, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x8e,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xa,0x80,0x0,0x0,0x0,0x9c, - 0x4e,0xad,0xa4,0x9c,0xbc,0x27,0xf8,0xcb,0x54,0xba,0x8,0xcb,0xc7,0x5e,0x78,0xcc, - 0xb7,0x5d,0x88,0xcd,0xa7,0x40,0x78,0xce,0xa0,0x7a,0x8,0xcf,0x87,0x22,0x78,0x3, - 0x70,0x40,0x88,0x4,0xd,0x23,0x8,0x5,0x50,0x22,0x88,0x5,0xf6,0x3f,0x88,0x7, - 0x30,0x4,0x88,0x7,0xd6,0x21,0x88,0x9,0xf,0xe6,0x88,0x9,0xb6,0x3,0x88,0xa, - 0xef,0xc8,0x88,0xb,0x9f,0x20,0x8,0xc,0xd8,0xe5,0x8,0xd,0x7f,0x2,0x8,0xe, - 0xb8,0xc7,0x8,0xf,0x5e,0xe4,0x8,0x10,0x98,0xa9,0x8,0x11,0x3e,0xc6,0x8,0x12, - 0x78,0x8b,0x8,0x13,0x1e,0xa8,0x8,0x14,0x58,0x6d,0x8,0x14,0xfe,0x8a,0x8,0x16, - 0x38,0x4f,0x8,0x16,0xe7,0xa6,0x88,0x18,0x21,0x6b,0x88,0x18,0xc7,0x88,0x88,0x1a, - 0x1,0x4d,0x88,0x1a,0xa7,0x6a,0x88,0x1b,0xe1,0x2f,0x88,0x1c,0x87,0x4c,0x88,0x1d, - 0xc1,0x11,0x88,0x1e,0x79,0xa3,0x88,0x1f,0x97,0xb9,0x8,0x20,0x59,0x85,0x88,0x21, - 0x80,0xd5,0x88,0x22,0x42,0xa2,0x8,0x23,0x69,0xf2,0x8,0x24,0x22,0x84,0x8,0x25, - 0x49,0xd4,0x8,0x26,0x2,0x66,0x8,0x27,0x29,0xb6,0x8,0x27,0xcf,0xd3,0x8,0x29, - 0x9,0x98,0x8,0x29,0xcb,0x64,0x88,0x2a,0xe9,0x7a,0x8,0x2b,0x98,0xd1,0x88,0x2c, - 0xd2,0x96,0x88,0x2d,0x8b,0x28,0x88,0x2e,0xb2,0x78,0x88,0x2f,0x74,0x45,0x8,0x30, - 0x92,0x5a,0x88,0x31,0x5d,0x61,0x88,0x32,0x72,0x3c,0x88,0x33,0x3d,0x43,0x88,0x34, - 0x52,0x1e,0x88,0x35,0x1d,0x25,0x88,0x36,0x32,0x0,0x88,0x36,0xfd,0x7,0x88,0x38, - 0x1b,0x1d,0x8,0x38,0xdc,0xe9,0x88,0x39,0xfa,0xff,0x8,0x3a,0xbc,0xcb,0x88,0x3b, - 0xda,0xe1,0x8,0x3c,0xa5,0xe8,0x8,0x3d,0xba,0xc3,0x8,0x3e,0x85,0xca,0x8,0x3f, - 0x9a,0xa5,0x8,0x40,0x65,0xac,0x8,0x41,0x83,0xc1,0x88,0x42,0x45,0x8e,0x8,0x43, - 0x63,0xa3,0x88,0x44,0x2e,0xaa,0x88,0x45,0x43,0x85,0x88,0x46,0x5,0x52,0x8,0x47, - 0x23,0x67,0x88,0x47,0xf7,0xa9,0x8,0x48,0xe7,0x9a,0x8,0x49,0xd7,0x8b,0x8,0x4a, - 0xc7,0x7c,0x8,0x4b,0xb7,0x6d,0x8,0x4c,0xa7,0x5e,0x8,0x4d,0x97,0x4f,0x8,0x4e, - 0x87,0x40,0x8,0x4f,0x77,0x31,0x8,0x50,0x70,0x5c,0x88,0x51,0x60,0x4d,0x88,0x52, - 0x50,0x3e,0x88,0x53,0x40,0x2f,0x88,0x54,0x30,0x20,0x88,0x55,0x20,0x11,0x88,0x56, - 0x10,0x2,0x88,0x56,0xff,0xf3,0x88,0x57,0xef,0xe4,0x88,0x58,0xdf,0xd5,0x88,0x59, - 0xcf,0xc6,0x88,0x5a,0xbf,0xb7,0x88,0x5b,0xb8,0xe3,0x8,0x5c,0xa8,0xd4,0x8,0x5d, - 0x98,0xc5,0x8,0x5e,0x88,0xb6,0x8,0x5f,0x78,0xa7,0x8,0x60,0x68,0x98,0x8,0x61, - 0x58,0x89,0x8,0x62,0x48,0x7a,0x8,0x63,0x38,0x6b,0x8,0x64,0x28,0x5c,0x8,0x65, - 0x18,0x4d,0x8,0x66,0x11,0x78,0x88,0x67,0x1,0x69,0x88,0x67,0xf1,0x5a,0x88,0x68, - 0xe1,0x4b,0x88,0x69,0xd1,0x3c,0x88,0x6a,0xc1,0x2d,0x88,0x6b,0xb1,0x1e,0x88,0x6c, - 0xa1,0xf,0x88,0x6d,0x91,0x0,0x88,0x6e,0x80,0xf1,0x88,0x6f,0x70,0xe2,0x88,0x70, - 0x6a,0xe,0x8,0x71,0x59,0xff,0x8,0x72,0x49,0xf0,0x8,0x73,0x39,0xe1,0x8,0x74, - 0x29,0xd2,0x8,0x75,0x19,0xc3,0x8,0x76,0x9,0xb4,0x8,0x76,0xf9,0xa5,0x8,0x77, - 0xe9,0x96,0x8,0x78,0xd9,0x87,0x8,0x79,0xc9,0x78,0x8,0x7a,0xb9,0x69,0x8,0x7b, - 0xb2,0x94,0x88,0x7c,0xa2,0x85,0x88,0x7d,0x92,0x76,0x88,0x7e,0x82,0x67,0x88,0x7f, - 0x72,0x58,0x88,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x0,0x0,0x7e,0x90,0x0,0x0,0x0,0x0,0x93,0xa8,0x1,0x5,0x0,0x0,0x85, - 0x98,0x0,0x0,0x0,0x0,0x93,0xa8,0x1,0x5,0x0,0x0,0x85,0x98,0x0,0x0,0x41, - 0x43,0x53,0x54,0x0,0x41,0x43,0x44,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0, - 0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x90,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0xf8, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x73,0x16,0x8b,0x14,0xff, - 0xff,0xff,0xff,0x7b,0x12,0x3,0x70,0xff,0xff,0xff,0xff,0x9c,0x4e,0xad,0xa4,0xff, - 0xff,0xff,0xff,0x9c,0xbc,0x27,0xf8,0xff,0xff,0xff,0xff,0xcb,0x54,0xba,0x8,0xff, - 0xff,0xff,0xff,0xcb,0xc7,0x5e,0x78,0xff,0xff,0xff,0xff,0xcc,0xb7,0x5d,0x88,0xff, - 0xff,0xff,0xff,0xcd,0xa7,0x40,0x78,0xff,0xff,0xff,0xff,0xce,0xa0,0x7a,0x8,0xff, - 0xff,0xff,0xff,0xcf,0x87,0x22,0x78,0x0,0x0,0x0,0x0,0x3,0x70,0x40,0x88,0x0, - 0x0,0x0,0x0,0x4,0xd,0x23,0x8,0x0,0x0,0x0,0x0,0x5,0x50,0x22,0x88,0x0, - 0x0,0x0,0x0,0x5,0xf6,0x3f,0x88,0x0,0x0,0x0,0x0,0x7,0x30,0x4,0x88,0x0, - 0x0,0x0,0x0,0x7,0xd6,0x21,0x88,0x0,0x0,0x0,0x0,0x9,0xf,0xe6,0x88,0x0, - 0x0,0x0,0x0,0x9,0xb6,0x3,0x88,0x0,0x0,0x0,0x0,0xa,0xef,0xc8,0x88,0x0, - 0x0,0x0,0x0,0xb,0x9f,0x20,0x8,0x0,0x0,0x0,0x0,0xc,0xd8,0xe5,0x8,0x0, - 0x0,0x0,0x0,0xd,0x7f,0x2,0x8,0x0,0x0,0x0,0x0,0xe,0xb8,0xc7,0x8,0x0, - 0x0,0x0,0x0,0xf,0x5e,0xe4,0x8,0x0,0x0,0x0,0x0,0x10,0x98,0xa9,0x8,0x0, - 0x0,0x0,0x0,0x11,0x3e,0xc6,0x8,0x0,0x0,0x0,0x0,0x12,0x78,0x8b,0x8,0x0, - 0x0,0x0,0x0,0x13,0x1e,0xa8,0x8,0x0,0x0,0x0,0x0,0x14,0x58,0x6d,0x8,0x0, - 0x0,0x0,0x0,0x14,0xfe,0x8a,0x8,0x0,0x0,0x0,0x0,0x16,0x38,0x4f,0x8,0x0, - 0x0,0x0,0x0,0x16,0xe7,0xa6,0x88,0x0,0x0,0x0,0x0,0x18,0x21,0x6b,0x88,0x0, - 0x0,0x0,0x0,0x18,0xc7,0x88,0x88,0x0,0x0,0x0,0x0,0x1a,0x1,0x4d,0x88,0x0, - 0x0,0x0,0x0,0x1a,0xa7,0x6a,0x88,0x0,0x0,0x0,0x0,0x1b,0xe1,0x2f,0x88,0x0, - 0x0,0x0,0x0,0x1c,0x87,0x4c,0x88,0x0,0x0,0x0,0x0,0x1d,0xc1,0x11,0x88,0x0, - 0x0,0x0,0x0,0x1e,0x79,0xa3,0x88,0x0,0x0,0x0,0x0,0x1f,0x97,0xb9,0x8,0x0, - 0x0,0x0,0x0,0x20,0x59,0x85,0x88,0x0,0x0,0x0,0x0,0x21,0x80,0xd5,0x88,0x0, - 0x0,0x0,0x0,0x22,0x42,0xa2,0x8,0x0,0x0,0x0,0x0,0x23,0x69,0xf2,0x8,0x0, - 0x0,0x0,0x0,0x24,0x22,0x84,0x8,0x0,0x0,0x0,0x0,0x25,0x49,0xd4,0x8,0x0, - 0x0,0x0,0x0,0x26,0x2,0x66,0x8,0x0,0x0,0x0,0x0,0x27,0x29,0xb6,0x8,0x0, - 0x0,0x0,0x0,0x27,0xcf,0xd3,0x8,0x0,0x0,0x0,0x0,0x29,0x9,0x98,0x8,0x0, - 0x0,0x0,0x0,0x29,0xcb,0x64,0x88,0x0,0x0,0x0,0x0,0x2a,0xe9,0x7a,0x8,0x0, - 0x0,0x0,0x0,0x2b,0x98,0xd1,0x88,0x0,0x0,0x0,0x0,0x2c,0xd2,0x96,0x88,0x0, - 0x0,0x0,0x0,0x2d,0x8b,0x28,0x88,0x0,0x0,0x0,0x0,0x2e,0xb2,0x78,0x88,0x0, - 0x0,0x0,0x0,0x2f,0x74,0x45,0x8,0x0,0x0,0x0,0x0,0x30,0x92,0x5a,0x88,0x0, - 0x0,0x0,0x0,0x31,0x5d,0x61,0x88,0x0,0x0,0x0,0x0,0x32,0x72,0x3c,0x88,0x0, - 0x0,0x0,0x0,0x33,0x3d,0x43,0x88,0x0,0x0,0x0,0x0,0x34,0x52,0x1e,0x88,0x0, - 0x0,0x0,0x0,0x35,0x1d,0x25,0x88,0x0,0x0,0x0,0x0,0x36,0x32,0x0,0x88,0x0, - 0x0,0x0,0x0,0x36,0xfd,0x7,0x88,0x0,0x0,0x0,0x0,0x38,0x1b,0x1d,0x8,0x0, - 0x0,0x0,0x0,0x38,0xdc,0xe9,0x88,0x0,0x0,0x0,0x0,0x39,0xfa,0xff,0x8,0x0, - 0x0,0x0,0x0,0x3a,0xbc,0xcb,0x88,0x0,0x0,0x0,0x0,0x3b,0xda,0xe1,0x8,0x0, - 0x0,0x0,0x0,0x3c,0xa5,0xe8,0x8,0x0,0x0,0x0,0x0,0x3d,0xba,0xc3,0x8,0x0, - 0x0,0x0,0x0,0x3e,0x85,0xca,0x8,0x0,0x0,0x0,0x0,0x3f,0x9a,0xa5,0x8,0x0, - 0x0,0x0,0x0,0x40,0x65,0xac,0x8,0x0,0x0,0x0,0x0,0x41,0x83,0xc1,0x88,0x0, - 0x0,0x0,0x0,0x42,0x45,0x8e,0x8,0x0,0x0,0x0,0x0,0x43,0x63,0xa3,0x88,0x0, - 0x0,0x0,0x0,0x44,0x2e,0xaa,0x88,0x0,0x0,0x0,0x0,0x45,0x43,0x85,0x88,0x0, - 0x0,0x0,0x0,0x46,0x5,0x52,0x8,0x0,0x0,0x0,0x0,0x47,0x23,0x67,0x88,0x0, - 0x0,0x0,0x0,0x47,0xf7,0xa9,0x8,0x0,0x0,0x0,0x0,0x48,0xe7,0x9a,0x8,0x0, - 0x0,0x0,0x0,0x49,0xd7,0x8b,0x8,0x0,0x0,0x0,0x0,0x4a,0xc7,0x7c,0x8,0x0, - 0x0,0x0,0x0,0x4b,0xb7,0x6d,0x8,0x0,0x0,0x0,0x0,0x4c,0xa7,0x5e,0x8,0x0, - 0x0,0x0,0x0,0x4d,0x97,0x4f,0x8,0x0,0x0,0x0,0x0,0x4e,0x87,0x40,0x8,0x0, - 0x0,0x0,0x0,0x4f,0x77,0x31,0x8,0x0,0x0,0x0,0x0,0x50,0x70,0x5c,0x88,0x0, - 0x0,0x0,0x0,0x51,0x60,0x4d,0x88,0x0,0x0,0x0,0x0,0x52,0x50,0x3e,0x88,0x0, - 0x0,0x0,0x0,0x53,0x40,0x2f,0x88,0x0,0x0,0x0,0x0,0x54,0x30,0x20,0x88,0x0, - 0x0,0x0,0x0,0x55,0x20,0x11,0x88,0x0,0x0,0x0,0x0,0x56,0x10,0x2,0x88,0x0, - 0x0,0x0,0x0,0x56,0xff,0xf3,0x88,0x0,0x0,0x0,0x0,0x57,0xef,0xe4,0x88,0x0, - 0x0,0x0,0x0,0x58,0xdf,0xd5,0x88,0x0,0x0,0x0,0x0,0x59,0xcf,0xc6,0x88,0x0, - 0x0,0x0,0x0,0x5a,0xbf,0xb7,0x88,0x0,0x0,0x0,0x0,0x5b,0xb8,0xe3,0x8,0x0, - 0x0,0x0,0x0,0x5c,0xa8,0xd4,0x8,0x0,0x0,0x0,0x0,0x5d,0x98,0xc5,0x8,0x0, - 0x0,0x0,0x0,0x5e,0x88,0xb6,0x8,0x0,0x0,0x0,0x0,0x5f,0x78,0xa7,0x8,0x0, - 0x0,0x0,0x0,0x60,0x68,0x98,0x8,0x0,0x0,0x0,0x0,0x61,0x58,0x89,0x8,0x0, - 0x0,0x0,0x0,0x62,0x48,0x7a,0x8,0x0,0x0,0x0,0x0,0x63,0x38,0x6b,0x8,0x0, - 0x0,0x0,0x0,0x64,0x28,0x5c,0x8,0x0,0x0,0x0,0x0,0x65,0x18,0x4d,0x8,0x0, - 0x0,0x0,0x0,0x66,0x11,0x78,0x88,0x0,0x0,0x0,0x0,0x67,0x1,0x69,0x88,0x0, - 0x0,0x0,0x0,0x67,0xf1,0x5a,0x88,0x0,0x0,0x0,0x0,0x68,0xe1,0x4b,0x88,0x0, - 0x0,0x0,0x0,0x69,0xd1,0x3c,0x88,0x0,0x0,0x0,0x0,0x6a,0xc1,0x2d,0x88,0x0, - 0x0,0x0,0x0,0x6b,0xb1,0x1e,0x88,0x0,0x0,0x0,0x0,0x6c,0xa1,0xf,0x88,0x0, - 0x0,0x0,0x0,0x6d,0x91,0x0,0x88,0x0,0x0,0x0,0x0,0x6e,0x80,0xf1,0x88,0x0, - 0x0,0x0,0x0,0x6f,0x70,0xe2,0x88,0x0,0x0,0x0,0x0,0x70,0x6a,0xe,0x8,0x0, - 0x0,0x0,0x0,0x71,0x59,0xff,0x8,0x0,0x0,0x0,0x0,0x72,0x49,0xf0,0x8,0x0, - 0x0,0x0,0x0,0x73,0x39,0xe1,0x8,0x0,0x0,0x0,0x0,0x74,0x29,0xd2,0x8,0x0, - 0x0,0x0,0x0,0x75,0x19,0xc3,0x8,0x0,0x0,0x0,0x0,0x76,0x9,0xb4,0x8,0x0, - 0x0,0x0,0x0,0x76,0xf9,0xa5,0x8,0x0,0x0,0x0,0x0,0x77,0xe9,0x96,0x8,0x0, - 0x0,0x0,0x0,0x78,0xd9,0x87,0x8,0x0,0x0,0x0,0x0,0x79,0xc9,0x78,0x8,0x0, - 0x0,0x0,0x0,0x7a,0xb9,0x69,0x8,0x0,0x0,0x0,0x0,0x7b,0xb2,0x94,0x88,0x0, - 0x0,0x0,0x0,0x7c,0xa2,0x85,0x88,0x0,0x0,0x0,0x0,0x7d,0x92,0x76,0x88,0x0, - 0x0,0x0,0x0,0x7e,0x82,0x67,0x88,0x0,0x0,0x0,0x0,0x7f,0x72,0x58,0x88,0x0, - 0x1,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x88,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x9,0x9b,0xc,0x17,0x60,0x9b, + 0xd5,0xda,0xf0,0x9c,0xd9,0xae,0x90,0x9d,0xa4,0xb5,0x90,0x9e,0xb9,0x90,0x90,0x9f, + 0x84,0x97,0x90,0xc8,0x9,0x71,0x90,0xcc,0xe7,0x4b,0x10,0xcd,0xa9,0x17,0x90,0xce, + 0xa2,0x43,0x10,0xcf,0x92,0x34,0x10,0xd0,0x82,0x25,0x10,0xd1,0x72,0x16,0x10,0xd2, + 0x4e,0x40,0x90,0xd,0xa4,0x63,0x90,0xe,0x8b,0x1a,0x10,0xf,0x84,0x45,0x90,0x10, + 0x74,0x36,0x90,0x11,0x64,0x27,0x90,0x12,0x54,0x18,0x90,0x13,0x4d,0x44,0x10,0x14, + 0x33,0xfa,0x90,0x15,0x23,0xeb,0x90,0x16,0x13,0xdc,0x90,0x17,0x3,0xcd,0x90,0x17, + 0xf3,0xbe,0x90,0x18,0xe3,0xaf,0x90,0x19,0xd3,0xa0,0x90,0x1a,0xc3,0x91,0x90,0x1b, + 0xbc,0xbd,0x10,0x1c,0xac,0xae,0x10,0x1d,0x9c,0x9f,0x10,0x1e,0x8c,0x90,0x10,0x1f, + 0x7c,0x81,0x10,0x20,0x6c,0x72,0x10,0x21,0x5c,0x63,0x10,0x22,0x4c,0x54,0x10,0x23, + 0x3c,0x45,0x10,0x24,0x2c,0x36,0x10,0x25,0x1c,0x27,0x10,0x26,0xc,0x18,0x10,0x27, + 0x5,0x43,0x90,0x27,0xf5,0x34,0x90,0x28,0xe5,0x25,0x90,0x29,0xd5,0x16,0x90,0x2a, + 0xc5,0x7,0x90,0x2b,0xb4,0xf8,0x90,0x2c,0xa4,0xe9,0x90,0x2d,0x94,0xda,0x90,0x2e, + 0x84,0xcb,0x90,0x2f,0x74,0xbc,0x90,0x30,0x64,0xad,0x90,0x31,0x5d,0xd9,0x10,0x32, + 0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34,0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36, + 0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39, + 0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b,0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d, + 0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f,0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41, + 0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43,0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45, + 0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49, + 0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c, + 0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e,0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50, + 0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54, + 0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56,0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58, + 0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59,0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b, + 0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d,0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f, + 0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61,0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63, + 0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65,0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67, + 0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68,0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a, + 0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c,0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e, + 0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70,0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72, + 0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74,0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76, + 0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79, + 0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d, + 0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x0,0x1,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x0,0x0,0x1c,0x20,0x1,0x0,0x0,0x0,0xe,0x10,0x0,0x5,0x0, + 0x0,0x1c,0x20,0x1,0x0,0x0,0x0,0xe,0x10,0x0,0x5,0x4d,0x45,0x53,0x54,0x0, + 0x4d,0x45,0x54,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66, + 0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x88, + 0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x9,0xff,0xff,0xff,0xff,0x9b,0xc,0x17,0x60, + 0xff,0xff,0xff,0xff,0x9b,0xd5,0xda,0xf0,0xff,0xff,0xff,0xff,0x9c,0xd9,0xae,0x90, + 0xff,0xff,0xff,0xff,0x9d,0xa4,0xb5,0x90,0xff,0xff,0xff,0xff,0x9e,0xb9,0x90,0x90, + 0xff,0xff,0xff,0xff,0x9f,0x84,0x97,0x90,0xff,0xff,0xff,0xff,0xc8,0x9,0x71,0x90, + 0xff,0xff,0xff,0xff,0xcc,0xe7,0x4b,0x10,0xff,0xff,0xff,0xff,0xcd,0xa9,0x17,0x90, + 0xff,0xff,0xff,0xff,0xce,0xa2,0x43,0x10,0xff,0xff,0xff,0xff,0xcf,0x92,0x34,0x10, + 0xff,0xff,0xff,0xff,0xd0,0x82,0x25,0x10,0xff,0xff,0xff,0xff,0xd1,0x72,0x16,0x10, + 0xff,0xff,0xff,0xff,0xd2,0x4e,0x40,0x90,0x0,0x0,0x0,0x0,0xd,0xa4,0x63,0x90, + 0x0,0x0,0x0,0x0,0xe,0x8b,0x1a,0x10,0x0,0x0,0x0,0x0,0xf,0x84,0x45,0x90, + 0x0,0x0,0x0,0x0,0x10,0x74,0x36,0x90,0x0,0x0,0x0,0x0,0x11,0x64,0x27,0x90, + 0x0,0x0,0x0,0x0,0x12,0x54,0x18,0x90,0x0,0x0,0x0,0x0,0x13,0x4d,0x44,0x10, + 0x0,0x0,0x0,0x0,0x14,0x33,0xfa,0x90,0x0,0x0,0x0,0x0,0x15,0x23,0xeb,0x90, + 0x0,0x0,0x0,0x0,0x16,0x13,0xdc,0x90,0x0,0x0,0x0,0x0,0x17,0x3,0xcd,0x90, + 0x0,0x0,0x0,0x0,0x17,0xf3,0xbe,0x90,0x0,0x0,0x0,0x0,0x18,0xe3,0xaf,0x90, + 0x0,0x0,0x0,0x0,0x19,0xd3,0xa0,0x90,0x0,0x0,0x0,0x0,0x1a,0xc3,0x91,0x90, + 0x0,0x0,0x0,0x0,0x1b,0xbc,0xbd,0x10,0x0,0x0,0x0,0x0,0x1c,0xac,0xae,0x10, + 0x0,0x0,0x0,0x0,0x1d,0x9c,0x9f,0x10,0x0,0x0,0x0,0x0,0x1e,0x8c,0x90,0x10, + 0x0,0x0,0x0,0x0,0x1f,0x7c,0x81,0x10,0x0,0x0,0x0,0x0,0x20,0x6c,0x72,0x10, + 0x0,0x0,0x0,0x0,0x21,0x5c,0x63,0x10,0x0,0x0,0x0,0x0,0x22,0x4c,0x54,0x10, + 0x0,0x0,0x0,0x0,0x23,0x3c,0x45,0x10,0x0,0x0,0x0,0x0,0x24,0x2c,0x36,0x10, + 0x0,0x0,0x0,0x0,0x25,0x1c,0x27,0x10,0x0,0x0,0x0,0x0,0x26,0xc,0x18,0x10, + 0x0,0x0,0x0,0x0,0x27,0x5,0x43,0x90,0x0,0x0,0x0,0x0,0x27,0xf5,0x34,0x90, + 0x0,0x0,0x0,0x0,0x28,0xe5,0x25,0x90,0x0,0x0,0x0,0x0,0x29,0xd5,0x16,0x90, + 0x0,0x0,0x0,0x0,0x2a,0xc5,0x7,0x90,0x0,0x0,0x0,0x0,0x2b,0xb4,0xf8,0x90, + 0x0,0x0,0x0,0x0,0x2c,0xa4,0xe9,0x90,0x0,0x0,0x0,0x0,0x2d,0x94,0xda,0x90, + 0x0,0x0,0x0,0x0,0x2e,0x84,0xcb,0x90,0x0,0x0,0x0,0x0,0x2f,0x74,0xbc,0x90, + 0x0,0x0,0x0,0x0,0x30,0x64,0xad,0x90,0x0,0x0,0x0,0x0,0x31,0x5d,0xd9,0x10, + 0x0,0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d,0xbb,0x10, + 0x0,0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d,0x9d,0x10, + 0x0,0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd,0x7f,0x10, + 0x0,0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd,0x61,0x10, + 0x0,0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd,0x43,0x10, + 0x0,0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f,0x90, + 0x0,0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86,0x41,0x90, + 0x0,0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66,0x23,0x90, + 0x0,0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46,0x5,0x90, + 0x0,0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25,0xe7,0x90, + 0x0,0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5,0xc9,0x90, + 0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee,0xe6,0x10, + 0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce,0xc8,0x10, + 0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae,0xaa,0x10, + 0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c,0x10, + 0x0,0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e,0x10, + 0x0,0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57,0x8a,0x90, + 0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37,0x6c,0x90, + 0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17,0x4e,0x90, + 0x0,0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7,0x30,0x90, + 0x0,0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7,0x12,0x90, + 0x0,0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4,0x90, + 0x0,0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0,0x11,0x10, + 0x0,0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3,0x10, + 0x0,0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f,0xd5,0x10, + 0x0,0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f,0xb7,0x10, + 0x0,0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f,0x99,0x10, + 0x0,0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8,0xb5,0x90, + 0x0,0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8,0x97,0x90, + 0x0,0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8,0x79,0x90, + 0x0,0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b,0x90, + 0x0,0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88,0x3d,0x90, + 0x0,0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68,0x1f,0x90, + 0x0,0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51,0x3c,0x10, + 0x0,0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31,0x1e,0x10, + 0x0,0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11,0x0,0x10, + 0x0,0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0,0xe2,0x10, + 0x0,0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0,0xc4,0x10, + 0x0,0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6,0x10, + 0x0,0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99,0xc2,0x90, + 0x0,0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79,0xa4,0x90, + 0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x1,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x0,0x0,0x1c,0x20,0x1,0x0,0x0,0x0,0xe,0x10,0x0,0x5,0x0,0x0,0x1c,0x20, + 0x1,0x0,0x0,0x0,0xe,0x10,0x0,0x5,0x4d,0x45,0x53,0x54,0x0,0x4d,0x45,0x54, + 0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0xa,0x4d,0x45,0x54,0x2d,0x31,0x4d, + 0x45,0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2c,0x4d,0x31,0x30,0x2e,0x35, + 0x2e,0x30,0x2f,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Cuba + 0x0,0x0,0x9,0x85, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x9c,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x80,0x0,0x0,0x0,0xac, + 0x62,0xc2,0x80,0xb1,0xd3,0x94,0x50,0xb2,0x74,0x5d,0x40,0xc8,0x5b,0x66,0xd0,0xc8, + 0xd3,0x51,0x40,0xca,0x3b,0x48,0xd0,0xca,0xbc,0x6d,0xc0,0xcc,0x24,0x65,0x50,0xcc, + 0x9c,0x4f,0xc0,0xd1,0xc4,0xb,0x50,0xd2,0x3b,0xf5,0xc0,0xd3,0xa3,0xed,0x50,0xd4, + 0x1b,0xd7,0xc0,0xf7,0x60,0x5,0xd0,0xf7,0xff,0x7d,0x40,0xf9,0x3d,0x44,0xd0,0xf9, + 0xe3,0x53,0xc0,0xfa,0xdb,0x3b,0xd0,0xfb,0xa7,0x86,0x40,0xfc,0xc5,0xa9,0xd0,0xfd, + 0x87,0x68,0x40,0xfe,0xb8,0x0,0xd0,0xff,0xa7,0xe3,0xc0,0x0,0x97,0xe2,0xd0,0x1, + 0x87,0xc5,0xc0,0x2,0x77,0xc4,0xd0,0x3,0x70,0xe2,0x40,0x4,0x60,0xe1,0x50,0x5, + 0x35,0x14,0xc0,0x6,0x40,0xc3,0x50,0x7,0x16,0x48,0x40,0x8,0x20,0xa5,0x50,0x8, + 0xf7,0x7b,0xc0,0xa,0x0,0x87,0x50,0xa,0xf0,0x6a,0x40,0xb,0xe0,0x69,0x50,0xc, + 0xd9,0x86,0xc0,0xd,0xc0,0x4b,0x50,0xe,0xb9,0x68,0xc0,0xf,0xb2,0xa2,0x50,0x10, + 0x7d,0x9b,0x40,0x11,0x51,0xea,0xd0,0x12,0x66,0xb7,0xc0,0x13,0x31,0xcc,0xd0,0x14, + 0x46,0x99,0xc0,0x15,0x5b,0x82,0xd0,0x16,0x26,0x7b,0xc0,0x17,0x3b,0x64,0xd0,0x18, + 0x6,0x5d,0xc0,0x19,0x1b,0x46,0xd0,0x19,0xe6,0x3f,0xc0,0x1a,0xfb,0x28,0xd0,0x1b, + 0xcf,0x5c,0x40,0x1c,0xdb,0xa,0xd0,0x1d,0xaf,0x3e,0x40,0x1e,0x7a,0x53,0x50,0x1f, + 0x8f,0x20,0x40,0x20,0x5a,0x35,0x50,0x21,0x6f,0x2,0x40,0x22,0x43,0x51,0xd0,0x23, + 0x4e,0xe4,0x40,0x24,0x23,0x33,0xd0,0x25,0x2e,0xc6,0x40,0x26,0x15,0x8a,0xd0,0x27, + 0x17,0xe2,0xc0,0x27,0xfe,0xa7,0x50,0x28,0xf7,0xd2,0xd0,0x29,0xde,0x89,0x50,0x2a, + 0xd7,0xb4,0xd0,0x2b,0xbe,0x6b,0x50,0x2c,0xb7,0x96,0xd0,0x2d,0x9e,0x4d,0x50,0x2e, + 0x97,0x78,0xd0,0x2f,0x7e,0x2f,0x50,0x30,0x77,0x5a,0xd0,0x31,0x67,0x4b,0xd0,0x32, + 0x57,0x3c,0xd0,0x33,0x47,0x2d,0xd0,0x34,0x40,0x59,0x50,0x35,0x1d,0xd5,0x50,0x36, + 0x32,0xb0,0x50,0x36,0xfd,0xb7,0x50,0x38,0x1b,0xcc,0xd0,0x38,0xe6,0xd3,0xd0,0x39, + 0xfb,0xae,0xd0,0x3a,0xc6,0xb5,0xd0,0x3b,0xdb,0x90,0xd0,0x3c,0xaf,0xd2,0x50,0x3d, + 0xbb,0x72,0xd0,0x3e,0x8f,0xb4,0x50,0x3f,0x9b,0x54,0xd0,0x40,0x66,0x5b,0xd0,0x45, + 0x44,0x35,0x50,0x45,0xf3,0x8c,0xd0,0x47,0x24,0x17,0x50,0x47,0xdc,0xa9,0x50,0x49, + 0x3,0xf9,0x50,0x49,0xb3,0x50,0xd0,0x4a,0xe3,0xdb,0x50,0x4b,0x9c,0x6d,0x50,0x4c, + 0xcc,0xf7,0xd0,0x4d,0x85,0x89,0xd0,0x4e,0xbf,0x4e,0xd0,0x4f,0x77,0xe0,0xd0,0x50, + 0x95,0xf6,0x50,0x51,0x3c,0x13,0x50,0x52,0x75,0xd8,0x50,0x53,0x1b,0xf5,0x50,0x54, + 0x55,0xba,0x50,0x54,0xfb,0xd7,0x50,0x56,0x35,0x9c,0x50,0x56,0xe4,0xf3,0xd0,0x58, + 0x1e,0xb8,0xd0,0x58,0xc4,0xd5,0xd0,0x59,0xfe,0x9a,0xd0,0x5a,0xa4,0xb7,0xd0,0x5b, + 0xde,0x7c,0xd0,0x5c,0x84,0x99,0xd0,0x5d,0xbe,0x5e,0xd0,0x5e,0x64,0x7b,0xd0,0x5f, + 0x9e,0x40,0xd0,0x60,0x4d,0x98,0x50,0x61,0x87,0x5d,0x50,0x62,0x2d,0x7a,0x50,0x63, + 0x67,0x3f,0x50,0x64,0xd,0x5c,0x50,0x65,0x47,0x21,0x50,0x65,0xed,0x3e,0x50,0x67, + 0x27,0x3,0x50,0x67,0xcd,0x20,0x50,0x69,0x6,0xe5,0x50,0x69,0xad,0x2,0x50,0x6a, + 0xe6,0xc7,0x50,0x6b,0x96,0x1e,0xd0,0x6c,0xcf,0xe3,0xd0,0x6d,0x76,0x0,0xd0,0x6e, + 0xaf,0xc5,0xd0,0x6f,0x55,0xe2,0xd0,0x70,0x8f,0xa7,0xd0,0x71,0x35,0xc4,0xd0,0x72, + 0x6f,0x89,0xd0,0x73,0x15,0xa6,0xd0,0x74,0x4f,0x6b,0xd0,0x74,0xfe,0xc3,0x50,0x76, + 0x38,0x88,0x50,0x76,0xde,0xa5,0x50,0x78,0x18,0x6a,0x50,0x78,0xbe,0x87,0x50,0x79, + 0xf8,0x4c,0x50,0x7a,0x9e,0x69,0x50,0x7b,0xd8,0x2e,0x50,0x7c,0x7e,0x4b,0x50,0x7d, + 0xb8,0x10,0x50,0x7e,0x5e,0x2d,0x50,0x7f,0x97,0xf2,0x50,0x1,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x4,0x2, + 0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x5,0x4,0x5,0x4,0x5, 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x0, - 0x0,0x81,0xec,0x0,0x0,0x0,0x0,0x7e,0x90,0x0,0x4,0x0,0x0,0x93,0xa8,0x1, - 0x9,0x0,0x0,0x85,0x98,0x0,0x4,0x0,0x0,0x93,0xa8,0x1,0x9,0x0,0x0,0x85, - 0x98,0x0,0x4,0x4c,0x4d,0x54,0x0,0x41,0x43,0x53,0x54,0x0,0x41,0x43,0x44,0x54, - 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x41,0x43, - 0x53,0x54,0x2d,0x39,0x3a,0x33,0x30,0x41,0x43,0x44,0x54,0x2c,0x4d,0x31,0x30,0x2e, - 0x31,0x2e,0x30,0x2c,0x4d,0x34,0x2e,0x31,0x2e,0x30,0x2f,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Australia/Tasmania - 0x0,0x0,0x9,0x1f, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0xff,0xff,0xb2,0xc8,0x0,0x0,0xff,0xff,0xb2, + 0xc0,0x0,0x4,0xff,0xff,0xc7,0xc0,0x1,0x8,0xff,0xff,0xb9,0xb0,0x0,0xc,0xff, + 0xff,0xb9,0xb0,0x0,0xc,0xff,0xff,0xc7,0xc0,0x1,0x8,0x4c,0x4d,0x54,0x0,0x48, + 0x4d,0x54,0x0,0x43,0x44,0x54,0x0,0x43,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x1, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9d,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x10,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x69, + 0x87,0x28,0xb8,0xff,0xff,0xff,0xff,0xac,0x62,0xc2,0x80,0xff,0xff,0xff,0xff,0xb1, + 0xd3,0x94,0x50,0xff,0xff,0xff,0xff,0xb2,0x74,0x5d,0x40,0xff,0xff,0xff,0xff,0xc8, + 0x5b,0x66,0xd0,0xff,0xff,0xff,0xff,0xc8,0xd3,0x51,0x40,0xff,0xff,0xff,0xff,0xca, + 0x3b,0x48,0xd0,0xff,0xff,0xff,0xff,0xca,0xbc,0x6d,0xc0,0xff,0xff,0xff,0xff,0xcc, + 0x24,0x65,0x50,0xff,0xff,0xff,0xff,0xcc,0x9c,0x4f,0xc0,0xff,0xff,0xff,0xff,0xd1, + 0xc4,0xb,0x50,0xff,0xff,0xff,0xff,0xd2,0x3b,0xf5,0xc0,0xff,0xff,0xff,0xff,0xd3, + 0xa3,0xed,0x50,0xff,0xff,0xff,0xff,0xd4,0x1b,0xd7,0xc0,0xff,0xff,0xff,0xff,0xf7, + 0x60,0x5,0xd0,0xff,0xff,0xff,0xff,0xf7,0xff,0x7d,0x40,0xff,0xff,0xff,0xff,0xf9, + 0x3d,0x44,0xd0,0xff,0xff,0xff,0xff,0xf9,0xe3,0x53,0xc0,0xff,0xff,0xff,0xff,0xfa, + 0xdb,0x3b,0xd0,0xff,0xff,0xff,0xff,0xfb,0xa7,0x86,0x40,0xff,0xff,0xff,0xff,0xfc, + 0xc5,0xa9,0xd0,0xff,0xff,0xff,0xff,0xfd,0x87,0x68,0x40,0xff,0xff,0xff,0xff,0xfe, + 0xb8,0x0,0xd0,0xff,0xff,0xff,0xff,0xff,0xa7,0xe3,0xc0,0x0,0x0,0x0,0x0,0x0, + 0x97,0xe2,0xd0,0x0,0x0,0x0,0x0,0x1,0x87,0xc5,0xc0,0x0,0x0,0x0,0x0,0x2, + 0x77,0xc4,0xd0,0x0,0x0,0x0,0x0,0x3,0x70,0xe2,0x40,0x0,0x0,0x0,0x0,0x4, + 0x60,0xe1,0x50,0x0,0x0,0x0,0x0,0x5,0x35,0x14,0xc0,0x0,0x0,0x0,0x0,0x6, + 0x40,0xc3,0x50,0x0,0x0,0x0,0x0,0x7,0x16,0x48,0x40,0x0,0x0,0x0,0x0,0x8, + 0x20,0xa5,0x50,0x0,0x0,0x0,0x0,0x8,0xf7,0x7b,0xc0,0x0,0x0,0x0,0x0,0xa, + 0x0,0x87,0x50,0x0,0x0,0x0,0x0,0xa,0xf0,0x6a,0x40,0x0,0x0,0x0,0x0,0xb, + 0xe0,0x69,0x50,0x0,0x0,0x0,0x0,0xc,0xd9,0x86,0xc0,0x0,0x0,0x0,0x0,0xd, + 0xc0,0x4b,0x50,0x0,0x0,0x0,0x0,0xe,0xb9,0x68,0xc0,0x0,0x0,0x0,0x0,0xf, + 0xb2,0xa2,0x50,0x0,0x0,0x0,0x0,0x10,0x7d,0x9b,0x40,0x0,0x0,0x0,0x0,0x11, + 0x51,0xea,0xd0,0x0,0x0,0x0,0x0,0x12,0x66,0xb7,0xc0,0x0,0x0,0x0,0x0,0x13, + 0x31,0xcc,0xd0,0x0,0x0,0x0,0x0,0x14,0x46,0x99,0xc0,0x0,0x0,0x0,0x0,0x15, + 0x5b,0x82,0xd0,0x0,0x0,0x0,0x0,0x16,0x26,0x7b,0xc0,0x0,0x0,0x0,0x0,0x17, + 0x3b,0x64,0xd0,0x0,0x0,0x0,0x0,0x18,0x6,0x5d,0xc0,0x0,0x0,0x0,0x0,0x19, + 0x1b,0x46,0xd0,0x0,0x0,0x0,0x0,0x19,0xe6,0x3f,0xc0,0x0,0x0,0x0,0x0,0x1a, + 0xfb,0x28,0xd0,0x0,0x0,0x0,0x0,0x1b,0xcf,0x5c,0x40,0x0,0x0,0x0,0x0,0x1c, + 0xdb,0xa,0xd0,0x0,0x0,0x0,0x0,0x1d,0xaf,0x3e,0x40,0x0,0x0,0x0,0x0,0x1e, + 0x7a,0x53,0x50,0x0,0x0,0x0,0x0,0x1f,0x8f,0x20,0x40,0x0,0x0,0x0,0x0,0x20, + 0x5a,0x35,0x50,0x0,0x0,0x0,0x0,0x21,0x6f,0x2,0x40,0x0,0x0,0x0,0x0,0x22, + 0x43,0x51,0xd0,0x0,0x0,0x0,0x0,0x23,0x4e,0xe4,0x40,0x0,0x0,0x0,0x0,0x24, + 0x23,0x33,0xd0,0x0,0x0,0x0,0x0,0x25,0x2e,0xc6,0x40,0x0,0x0,0x0,0x0,0x26, + 0x15,0x8a,0xd0,0x0,0x0,0x0,0x0,0x27,0x17,0xe2,0xc0,0x0,0x0,0x0,0x0,0x27, + 0xfe,0xa7,0x50,0x0,0x0,0x0,0x0,0x28,0xf7,0xd2,0xd0,0x0,0x0,0x0,0x0,0x29, + 0xde,0x89,0x50,0x0,0x0,0x0,0x0,0x2a,0xd7,0xb4,0xd0,0x0,0x0,0x0,0x0,0x2b, + 0xbe,0x6b,0x50,0x0,0x0,0x0,0x0,0x2c,0xb7,0x96,0xd0,0x0,0x0,0x0,0x0,0x2d, + 0x9e,0x4d,0x50,0x0,0x0,0x0,0x0,0x2e,0x97,0x78,0xd0,0x0,0x0,0x0,0x0,0x2f, + 0x7e,0x2f,0x50,0x0,0x0,0x0,0x0,0x30,0x77,0x5a,0xd0,0x0,0x0,0x0,0x0,0x31, + 0x67,0x4b,0xd0,0x0,0x0,0x0,0x0,0x32,0x57,0x3c,0xd0,0x0,0x0,0x0,0x0,0x33, + 0x47,0x2d,0xd0,0x0,0x0,0x0,0x0,0x34,0x40,0x59,0x50,0x0,0x0,0x0,0x0,0x35, + 0x1d,0xd5,0x50,0x0,0x0,0x0,0x0,0x36,0x32,0xb0,0x50,0x0,0x0,0x0,0x0,0x36, + 0xfd,0xb7,0x50,0x0,0x0,0x0,0x0,0x38,0x1b,0xcc,0xd0,0x0,0x0,0x0,0x0,0x38, + 0xe6,0xd3,0xd0,0x0,0x0,0x0,0x0,0x39,0xfb,0xae,0xd0,0x0,0x0,0x0,0x0,0x3a, + 0xc6,0xb5,0xd0,0x0,0x0,0x0,0x0,0x3b,0xdb,0x90,0xd0,0x0,0x0,0x0,0x0,0x3c, + 0xaf,0xd2,0x50,0x0,0x0,0x0,0x0,0x3d,0xbb,0x72,0xd0,0x0,0x0,0x0,0x0,0x3e, + 0x8f,0xb4,0x50,0x0,0x0,0x0,0x0,0x3f,0x9b,0x54,0xd0,0x0,0x0,0x0,0x0,0x40, + 0x66,0x5b,0xd0,0x0,0x0,0x0,0x0,0x45,0x44,0x35,0x50,0x0,0x0,0x0,0x0,0x45, + 0xf3,0x8c,0xd0,0x0,0x0,0x0,0x0,0x47,0x24,0x17,0x50,0x0,0x0,0x0,0x0,0x47, + 0xdc,0xa9,0x50,0x0,0x0,0x0,0x0,0x49,0x3,0xf9,0x50,0x0,0x0,0x0,0x0,0x49, + 0xb3,0x50,0xd0,0x0,0x0,0x0,0x0,0x4a,0xe3,0xdb,0x50,0x0,0x0,0x0,0x0,0x4b, + 0x9c,0x6d,0x50,0x0,0x0,0x0,0x0,0x4c,0xcc,0xf7,0xd0,0x0,0x0,0x0,0x0,0x4d, + 0x85,0x89,0xd0,0x0,0x0,0x0,0x0,0x4e,0xbf,0x4e,0xd0,0x0,0x0,0x0,0x0,0x4f, + 0x77,0xe0,0xd0,0x0,0x0,0x0,0x0,0x50,0x95,0xf6,0x50,0x0,0x0,0x0,0x0,0x51, + 0x3c,0x13,0x50,0x0,0x0,0x0,0x0,0x52,0x75,0xd8,0x50,0x0,0x0,0x0,0x0,0x53, + 0x1b,0xf5,0x50,0x0,0x0,0x0,0x0,0x54,0x55,0xba,0x50,0x0,0x0,0x0,0x0,0x54, + 0xfb,0xd7,0x50,0x0,0x0,0x0,0x0,0x56,0x35,0x9c,0x50,0x0,0x0,0x0,0x0,0x56, + 0xe4,0xf3,0xd0,0x0,0x0,0x0,0x0,0x58,0x1e,0xb8,0xd0,0x0,0x0,0x0,0x0,0x58, + 0xc4,0xd5,0xd0,0x0,0x0,0x0,0x0,0x59,0xfe,0x9a,0xd0,0x0,0x0,0x0,0x0,0x5a, + 0xa4,0xb7,0xd0,0x0,0x0,0x0,0x0,0x5b,0xde,0x7c,0xd0,0x0,0x0,0x0,0x0,0x5c, + 0x84,0x99,0xd0,0x0,0x0,0x0,0x0,0x5d,0xbe,0x5e,0xd0,0x0,0x0,0x0,0x0,0x5e, + 0x64,0x7b,0xd0,0x0,0x0,0x0,0x0,0x5f,0x9e,0x40,0xd0,0x0,0x0,0x0,0x0,0x60, + 0x4d,0x98,0x50,0x0,0x0,0x0,0x0,0x61,0x87,0x5d,0x50,0x0,0x0,0x0,0x0,0x62, + 0x2d,0x7a,0x50,0x0,0x0,0x0,0x0,0x63,0x67,0x3f,0x50,0x0,0x0,0x0,0x0,0x64, + 0xd,0x5c,0x50,0x0,0x0,0x0,0x0,0x65,0x47,0x21,0x50,0x0,0x0,0x0,0x0,0x65, + 0xed,0x3e,0x50,0x0,0x0,0x0,0x0,0x67,0x27,0x3,0x50,0x0,0x0,0x0,0x0,0x67, + 0xcd,0x20,0x50,0x0,0x0,0x0,0x0,0x69,0x6,0xe5,0x50,0x0,0x0,0x0,0x0,0x69, + 0xad,0x2,0x50,0x0,0x0,0x0,0x0,0x6a,0xe6,0xc7,0x50,0x0,0x0,0x0,0x0,0x6b, + 0x96,0x1e,0xd0,0x0,0x0,0x0,0x0,0x6c,0xcf,0xe3,0xd0,0x0,0x0,0x0,0x0,0x6d, + 0x76,0x0,0xd0,0x0,0x0,0x0,0x0,0x6e,0xaf,0xc5,0xd0,0x0,0x0,0x0,0x0,0x6f, + 0x55,0xe2,0xd0,0x0,0x0,0x0,0x0,0x70,0x8f,0xa7,0xd0,0x0,0x0,0x0,0x0,0x71, + 0x35,0xc4,0xd0,0x0,0x0,0x0,0x0,0x72,0x6f,0x89,0xd0,0x0,0x0,0x0,0x0,0x73, + 0x15,0xa6,0xd0,0x0,0x0,0x0,0x0,0x74,0x4f,0x6b,0xd0,0x0,0x0,0x0,0x0,0x74, + 0xfe,0xc3,0x50,0x0,0x0,0x0,0x0,0x76,0x38,0x88,0x50,0x0,0x0,0x0,0x0,0x76, + 0xde,0xa5,0x50,0x0,0x0,0x0,0x0,0x78,0x18,0x6a,0x50,0x0,0x0,0x0,0x0,0x78, + 0xbe,0x87,0x50,0x0,0x0,0x0,0x0,0x79,0xf8,0x4c,0x50,0x0,0x0,0x0,0x0,0x7a, + 0x9e,0x69,0x50,0x0,0x0,0x0,0x0,0x7b,0xd8,0x2e,0x50,0x0,0x0,0x0,0x0,0x7c, + 0x7e,0x4b,0x50,0x0,0x0,0x0,0x0,0x7d,0xb8,0x10,0x50,0x0,0x0,0x0,0x0,0x7e, + 0x5e,0x2d,0x50,0x0,0x0,0x0,0x0,0x7f,0x97,0xf2,0x50,0x0,0x1,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x4, + 0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0xff,0xff,0xb2,0xc8,0x0,0x0,0xff,0xff, + 0xb2,0xc0,0x0,0x4,0xff,0xff,0xc7,0xc0,0x1,0x8,0xff,0xff,0xb9,0xb0,0x0,0xc, + 0xff,0xff,0xb9,0xb0,0x0,0xc,0xff,0xff,0xc7,0xc0,0x1,0x8,0x4c,0x4d,0x54,0x0, + 0x48,0x4d,0x54,0x0,0x43,0x44,0x54,0x0,0x43,0x53,0x54,0x0,0x0,0x0,0x0,0x0, + 0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x43,0x53,0x54,0x35,0x43,0x44,0x54, + 0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30,0x2f,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e, + 0x30,0x2f,0x31,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Zulu + 0x0,0x0,0x0,0x7f, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x96,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xe,0x80,0x0,0x0,0x0,0x9b, - 0xd5,0x78,0x80,0x9c,0xbc,0x20,0xf0,0xcb,0x54,0xb3,0x0,0xcb,0xc7,0x57,0x70,0xcc, - 0xb7,0x56,0x80,0xcd,0xa7,0x39,0x70,0xce,0xa0,0x73,0x0,0xcf,0x87,0x1b,0x70,0xfb, - 0xc2,0x8d,0x0,0xfc,0xb2,0x7e,0x0,0xfd,0xc7,0x59,0x0,0xfe,0x76,0xb0,0x80,0xff, - 0xa7,0x3b,0x0,0x0,0x56,0x92,0x80,0x1,0x87,0x1d,0x0,0x2,0x3f,0xaf,0x0,0x3, - 0x70,0x39,0x80,0x4,0xd,0x1c,0x0,0x5,0x50,0x1b,0x80,0x5,0xf6,0x38,0x80,0x7, - 0x2f,0xfd,0x80,0x7,0xd6,0x1a,0x80,0x9,0xf,0xdf,0x80,0x9,0xb5,0xfc,0x80,0xa, - 0xef,0xc1,0x80,0xb,0x9f,0x19,0x0,0xc,0xd8,0xde,0x0,0xd,0x7e,0xfb,0x0,0xe, - 0xb8,0xc0,0x0,0xf,0x5e,0xdd,0x0,0x10,0x98,0xa2,0x0,0x11,0x3e,0xbf,0x0,0x12, - 0x78,0x84,0x0,0x13,0x1e,0xa1,0x0,0x14,0x58,0x66,0x0,0x14,0xfe,0x83,0x0,0x16, - 0x38,0x48,0x0,0x17,0x3,0x4f,0x0,0x18,0x21,0x64,0x80,0x18,0xe3,0x31,0x0,0x1a, - 0x1,0x46,0x80,0x1a,0xa7,0x63,0x80,0x1b,0xe1,0x28,0x80,0x1c,0x87,0x45,0x80,0x1d, - 0xc1,0xa,0x80,0x1e,0x67,0x27,0x80,0x1f,0x97,0xb2,0x0,0x20,0x59,0x7e,0x80,0x21, - 0x80,0xce,0x80,0x22,0x42,0x9b,0x0,0x23,0x69,0xeb,0x0,0x24,0x22,0x7d,0x0,0x25, - 0x49,0xcd,0x0,0x26,0x2,0x5f,0x0,0x27,0x29,0xaf,0x0,0x27,0xf4,0xb6,0x0,0x28, - 0xed,0xe1,0x80,0x29,0xd4,0x98,0x0,0x2a,0xcd,0xc3,0x80,0x2b,0xb4,0x7a,0x0,0x2c, - 0xad,0xa5,0x80,0x2d,0x94,0x5c,0x0,0x2e,0x8d,0x87,0x80,0x2f,0x74,0x3e,0x0,0x30, - 0x6d,0x69,0x80,0x31,0x5d,0x5a,0x80,0x32,0x56,0x86,0x0,0x33,0x3d,0x3c,0x80,0x34, - 0x36,0x68,0x0,0x35,0x1d,0x1e,0x80,0x36,0x16,0x4a,0x0,0x36,0xfd,0x0,0x80,0x37, - 0xf6,0x2c,0x0,0x38,0xdc,0xe2,0x80,0x39,0xa7,0xe9,0x80,0x3a,0xbc,0xc4,0x80,0x3b, - 0xbf,0x2a,0x80,0x3c,0xa5,0xe1,0x0,0x3d,0x9f,0xc,0x80,0x3e,0x85,0xc3,0x0,0x3f, - 0x7e,0xee,0x80,0x40,0x65,0xa5,0x0,0x41,0x5e,0xd0,0x80,0x42,0x45,0x87,0x0,0x43, - 0x3e,0xb2,0x80,0x44,0x2e,0xa3,0x80,0x45,0x1e,0x94,0x80,0x46,0x5,0x4b,0x0,0x47, - 0x7,0xb1,0x0,0x47,0xf7,0xa2,0x0,0x48,0xe7,0x93,0x0,0x49,0xd7,0x84,0x0,0x4a, - 0xc7,0x75,0x0,0x4b,0xb7,0x66,0x0,0x4c,0xa7,0x57,0x0,0x4d,0x97,0x48,0x0,0x4e, - 0x87,0x39,0x0,0x4f,0x77,0x2a,0x0,0x50,0x70,0x55,0x80,0x51,0x60,0x46,0x80,0x52, - 0x50,0x37,0x80,0x53,0x40,0x28,0x80,0x54,0x30,0x19,0x80,0x55,0x20,0xa,0x80,0x56, - 0xf,0xfb,0x80,0x56,0xff,0xec,0x80,0x57,0xef,0xdd,0x80,0x58,0xdf,0xce,0x80,0x59, - 0xcf,0xbf,0x80,0x5a,0xbf,0xb0,0x80,0x5b,0xb8,0xdc,0x0,0x5c,0xa8,0xcd,0x0,0x5d, - 0x98,0xbe,0x0,0x5e,0x88,0xaf,0x0,0x5f,0x78,0xa0,0x0,0x60,0x68,0x91,0x0,0x61, - 0x58,0x82,0x0,0x62,0x48,0x73,0x0,0x63,0x38,0x64,0x0,0x64,0x28,0x55,0x0,0x65, - 0x18,0x46,0x0,0x66,0x11,0x71,0x80,0x67,0x1,0x62,0x80,0x67,0xf1,0x53,0x80,0x68, - 0xe1,0x44,0x80,0x69,0xd1,0x35,0x80,0x6a,0xc1,0x26,0x80,0x6b,0xb1,0x17,0x80,0x6c, - 0xa1,0x8,0x80,0x6d,0x90,0xf9,0x80,0x6e,0x80,0xea,0x80,0x6f,0x70,0xdb,0x80,0x70, - 0x6a,0x7,0x0,0x71,0x59,0xf8,0x0,0x72,0x49,0xe9,0x0,0x73,0x39,0xda,0x0,0x74, - 0x29,0xcb,0x0,0x75,0x19,0xbc,0x0,0x76,0x9,0xad,0x0,0x76,0xf9,0x9e,0x0,0x77, - 0xe9,0x8f,0x0,0x78,0xd9,0x80,0x0,0x79,0xc9,0x71,0x0,0x7a,0xb9,0x62,0x0,0x7b, - 0xb2,0x8d,0x80,0x7c,0xa2,0x7e,0x80,0x7d,0x92,0x6f,0x80,0x7e,0x82,0x60,0x80,0x7f, - 0x72,0x51,0x80,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x0,0x0,0x8a,0x1c,0x0,0x0,0x0, - 0x0,0x8c,0xa0,0x0,0x4,0x0,0x0,0x9a,0xb0,0x1,0x9,0x0,0x0,0x9a,0xb0,0x1, - 0x9,0x0,0x0,0x8c,0xa0,0x0,0x4,0x4c,0x4d,0x54,0x0,0x41,0x45,0x53,0x54,0x0, - 0x41,0x45,0x44,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x97,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xe,0xf8,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x74,0x2e,0x0,0xe4,0xff,0xff,0xff,0xff,0x9b, - 0xd5,0x78,0x80,0xff,0xff,0xff,0xff,0x9c,0xbc,0x20,0xf0,0xff,0xff,0xff,0xff,0xcb, - 0x54,0xb3,0x0,0xff,0xff,0xff,0xff,0xcb,0xc7,0x57,0x70,0xff,0xff,0xff,0xff,0xcc, - 0xb7,0x56,0x80,0xff,0xff,0xff,0xff,0xcd,0xa7,0x39,0x70,0xff,0xff,0xff,0xff,0xce, - 0xa0,0x73,0x0,0xff,0xff,0xff,0xff,0xcf,0x87,0x1b,0x70,0xff,0xff,0xff,0xff,0xfb, - 0xc2,0x8d,0x0,0xff,0xff,0xff,0xff,0xfc,0xb2,0x7e,0x0,0xff,0xff,0xff,0xff,0xfd, - 0xc7,0x59,0x0,0xff,0xff,0xff,0xff,0xfe,0x76,0xb0,0x80,0xff,0xff,0xff,0xff,0xff, - 0xa7,0x3b,0x0,0x0,0x0,0x0,0x0,0x0,0x56,0x92,0x80,0x0,0x0,0x0,0x0,0x1, - 0x87,0x1d,0x0,0x0,0x0,0x0,0x0,0x2,0x3f,0xaf,0x0,0x0,0x0,0x0,0x0,0x3, - 0x70,0x39,0x80,0x0,0x0,0x0,0x0,0x4,0xd,0x1c,0x0,0x0,0x0,0x0,0x0,0x5, - 0x50,0x1b,0x80,0x0,0x0,0x0,0x0,0x5,0xf6,0x38,0x80,0x0,0x0,0x0,0x0,0x7, - 0x2f,0xfd,0x80,0x0,0x0,0x0,0x0,0x7,0xd6,0x1a,0x80,0x0,0x0,0x0,0x0,0x9, - 0xf,0xdf,0x80,0x0,0x0,0x0,0x0,0x9,0xb5,0xfc,0x80,0x0,0x0,0x0,0x0,0xa, - 0xef,0xc1,0x80,0x0,0x0,0x0,0x0,0xb,0x9f,0x19,0x0,0x0,0x0,0x0,0x0,0xc, - 0xd8,0xde,0x0,0x0,0x0,0x0,0x0,0xd,0x7e,0xfb,0x0,0x0,0x0,0x0,0x0,0xe, - 0xb8,0xc0,0x0,0x0,0x0,0x0,0x0,0xf,0x5e,0xdd,0x0,0x0,0x0,0x0,0x0,0x10, - 0x98,0xa2,0x0,0x0,0x0,0x0,0x0,0x11,0x3e,0xbf,0x0,0x0,0x0,0x0,0x0,0x12, - 0x78,0x84,0x0,0x0,0x0,0x0,0x0,0x13,0x1e,0xa1,0x0,0x0,0x0,0x0,0x0,0x14, - 0x58,0x66,0x0,0x0,0x0,0x0,0x0,0x14,0xfe,0x83,0x0,0x0,0x0,0x0,0x0,0x16, - 0x38,0x48,0x0,0x0,0x0,0x0,0x0,0x17,0x3,0x4f,0x0,0x0,0x0,0x0,0x0,0x18, - 0x21,0x64,0x80,0x0,0x0,0x0,0x0,0x18,0xe3,0x31,0x0,0x0,0x0,0x0,0x0,0x1a, - 0x1,0x46,0x80,0x0,0x0,0x0,0x0,0x1a,0xa7,0x63,0x80,0x0,0x0,0x0,0x0,0x1b, - 0xe1,0x28,0x80,0x0,0x0,0x0,0x0,0x1c,0x87,0x45,0x80,0x0,0x0,0x0,0x0,0x1d, - 0xc1,0xa,0x80,0x0,0x0,0x0,0x0,0x1e,0x67,0x27,0x80,0x0,0x0,0x0,0x0,0x1f, - 0x97,0xb2,0x0,0x0,0x0,0x0,0x0,0x20,0x59,0x7e,0x80,0x0,0x0,0x0,0x0,0x21, - 0x80,0xce,0x80,0x0,0x0,0x0,0x0,0x22,0x42,0x9b,0x0,0x0,0x0,0x0,0x0,0x23, - 0x69,0xeb,0x0,0x0,0x0,0x0,0x0,0x24,0x22,0x7d,0x0,0x0,0x0,0x0,0x0,0x25, - 0x49,0xcd,0x0,0x0,0x0,0x0,0x0,0x26,0x2,0x5f,0x0,0x0,0x0,0x0,0x0,0x27, - 0x29,0xaf,0x0,0x0,0x0,0x0,0x0,0x27,0xf4,0xb6,0x0,0x0,0x0,0x0,0x0,0x28, - 0xed,0xe1,0x80,0x0,0x0,0x0,0x0,0x29,0xd4,0x98,0x0,0x0,0x0,0x0,0x0,0x2a, - 0xcd,0xc3,0x80,0x0,0x0,0x0,0x0,0x2b,0xb4,0x7a,0x0,0x0,0x0,0x0,0x0,0x2c, - 0xad,0xa5,0x80,0x0,0x0,0x0,0x0,0x2d,0x94,0x5c,0x0,0x0,0x0,0x0,0x0,0x2e, - 0x8d,0x87,0x80,0x0,0x0,0x0,0x0,0x2f,0x74,0x3e,0x0,0x0,0x0,0x0,0x0,0x30, - 0x6d,0x69,0x80,0x0,0x0,0x0,0x0,0x31,0x5d,0x5a,0x80,0x0,0x0,0x0,0x0,0x32, - 0x56,0x86,0x0,0x0,0x0,0x0,0x0,0x33,0x3d,0x3c,0x80,0x0,0x0,0x0,0x0,0x34, - 0x36,0x68,0x0,0x0,0x0,0x0,0x0,0x35,0x1d,0x1e,0x80,0x0,0x0,0x0,0x0,0x36, - 0x16,0x4a,0x0,0x0,0x0,0x0,0x0,0x36,0xfd,0x0,0x80,0x0,0x0,0x0,0x0,0x37, - 0xf6,0x2c,0x0,0x0,0x0,0x0,0x0,0x38,0xdc,0xe2,0x80,0x0,0x0,0x0,0x0,0x39, - 0xa7,0xe9,0x80,0x0,0x0,0x0,0x0,0x3a,0xbc,0xc4,0x80,0x0,0x0,0x0,0x0,0x3b, - 0xbf,0x2a,0x80,0x0,0x0,0x0,0x0,0x3c,0xa5,0xe1,0x0,0x0,0x0,0x0,0x0,0x3d, - 0x9f,0xc,0x80,0x0,0x0,0x0,0x0,0x3e,0x85,0xc3,0x0,0x0,0x0,0x0,0x0,0x3f, - 0x7e,0xee,0x80,0x0,0x0,0x0,0x0,0x40,0x65,0xa5,0x0,0x0,0x0,0x0,0x0,0x41, - 0x5e,0xd0,0x80,0x0,0x0,0x0,0x0,0x42,0x45,0x87,0x0,0x0,0x0,0x0,0x0,0x43, - 0x3e,0xb2,0x80,0x0,0x0,0x0,0x0,0x44,0x2e,0xa3,0x80,0x0,0x0,0x0,0x0,0x45, - 0x1e,0x94,0x80,0x0,0x0,0x0,0x0,0x46,0x5,0x4b,0x0,0x0,0x0,0x0,0x0,0x47, - 0x7,0xb1,0x0,0x0,0x0,0x0,0x0,0x47,0xf7,0xa2,0x0,0x0,0x0,0x0,0x0,0x48, - 0xe7,0x93,0x0,0x0,0x0,0x0,0x0,0x49,0xd7,0x84,0x0,0x0,0x0,0x0,0x0,0x4a, - 0xc7,0x75,0x0,0x0,0x0,0x0,0x0,0x4b,0xb7,0x66,0x0,0x0,0x0,0x0,0x0,0x4c, - 0xa7,0x57,0x0,0x0,0x0,0x0,0x0,0x4d,0x97,0x48,0x0,0x0,0x0,0x0,0x0,0x4e, - 0x87,0x39,0x0,0x0,0x0,0x0,0x0,0x4f,0x77,0x2a,0x0,0x0,0x0,0x0,0x0,0x50, - 0x70,0x55,0x80,0x0,0x0,0x0,0x0,0x51,0x60,0x46,0x80,0x0,0x0,0x0,0x0,0x52, - 0x50,0x37,0x80,0x0,0x0,0x0,0x0,0x53,0x40,0x28,0x80,0x0,0x0,0x0,0x0,0x54, - 0x30,0x19,0x80,0x0,0x0,0x0,0x0,0x55,0x20,0xa,0x80,0x0,0x0,0x0,0x0,0x56, - 0xf,0xfb,0x80,0x0,0x0,0x0,0x0,0x56,0xff,0xec,0x80,0x0,0x0,0x0,0x0,0x57, - 0xef,0xdd,0x80,0x0,0x0,0x0,0x0,0x58,0xdf,0xce,0x80,0x0,0x0,0x0,0x0,0x59, - 0xcf,0xbf,0x80,0x0,0x0,0x0,0x0,0x5a,0xbf,0xb0,0x80,0x0,0x0,0x0,0x0,0x5b, - 0xb8,0xdc,0x0,0x0,0x0,0x0,0x0,0x5c,0xa8,0xcd,0x0,0x0,0x0,0x0,0x0,0x5d, - 0x98,0xbe,0x0,0x0,0x0,0x0,0x0,0x5e,0x88,0xaf,0x0,0x0,0x0,0x0,0x0,0x5f, - 0x78,0xa0,0x0,0x0,0x0,0x0,0x0,0x60,0x68,0x91,0x0,0x0,0x0,0x0,0x0,0x61, - 0x58,0x82,0x0,0x0,0x0,0x0,0x0,0x62,0x48,0x73,0x0,0x0,0x0,0x0,0x0,0x63, - 0x38,0x64,0x0,0x0,0x0,0x0,0x0,0x64,0x28,0x55,0x0,0x0,0x0,0x0,0x0,0x65, - 0x18,0x46,0x0,0x0,0x0,0x0,0x0,0x66,0x11,0x71,0x80,0x0,0x0,0x0,0x0,0x67, - 0x1,0x62,0x80,0x0,0x0,0x0,0x0,0x67,0xf1,0x53,0x80,0x0,0x0,0x0,0x0,0x68, - 0xe1,0x44,0x80,0x0,0x0,0x0,0x0,0x69,0xd1,0x35,0x80,0x0,0x0,0x0,0x0,0x6a, - 0xc1,0x26,0x80,0x0,0x0,0x0,0x0,0x6b,0xb1,0x17,0x80,0x0,0x0,0x0,0x0,0x6c, - 0xa1,0x8,0x80,0x0,0x0,0x0,0x0,0x6d,0x90,0xf9,0x80,0x0,0x0,0x0,0x0,0x6e, - 0x80,0xea,0x80,0x0,0x0,0x0,0x0,0x6f,0x70,0xdb,0x80,0x0,0x0,0x0,0x0,0x70, - 0x6a,0x7,0x0,0x0,0x0,0x0,0x0,0x71,0x59,0xf8,0x0,0x0,0x0,0x0,0x0,0x72, - 0x49,0xe9,0x0,0x0,0x0,0x0,0x0,0x73,0x39,0xda,0x0,0x0,0x0,0x0,0x0,0x74, - 0x29,0xcb,0x0,0x0,0x0,0x0,0x0,0x75,0x19,0xbc,0x0,0x0,0x0,0x0,0x0,0x76, - 0x9,0xad,0x0,0x0,0x0,0x0,0x0,0x76,0xf9,0x9e,0x0,0x0,0x0,0x0,0x0,0x77, - 0xe9,0x8f,0x0,0x0,0x0,0x0,0x0,0x78,0xd9,0x80,0x0,0x0,0x0,0x0,0x0,0x79, - 0xc9,0x71,0x0,0x0,0x0,0x0,0x0,0x7a,0xb9,0x62,0x0,0x0,0x0,0x0,0x0,0x7b, - 0xb2,0x8d,0x80,0x0,0x0,0x0,0x0,0x7c,0xa2,0x7e,0x80,0x0,0x0,0x0,0x0,0x7d, - 0x92,0x6f,0x80,0x0,0x0,0x0,0x0,0x7e,0x82,0x60,0x80,0x0,0x0,0x0,0x0,0x7f, - 0x72,0x51,0x80,0x0,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x0,0x0,0x8a,0x1c,0x0,0x0, - 0x0,0x0,0x8c,0xa0,0x0,0x4,0x0,0x0,0x9a,0xb0,0x1,0x9,0x0,0x0,0x9a,0xb0, - 0x1,0x9,0x0,0x0,0x8c,0xa0,0x0,0x4,0x4c,0x4d,0x54,0x0,0x41,0x45,0x53,0x54, - 0x0,0x41,0x45,0x44,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0, - 0xa,0x41,0x45,0x53,0x54,0x2d,0x31,0x30,0x41,0x45,0x44,0x54,0x2c,0x4d,0x31,0x30, - 0x2e,0x31,0x2e,0x30,0x2c,0x4d,0x34,0x2e,0x31,0x2e,0x30,0x2f,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Australia/Adelaide - 0x0,0x0,0x8,0xbe, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, + 0x0,0x55,0x54,0x43,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0, + 0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0, + 0x0,0x0,0x4,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x55,0x54,0x43,0x0,0x0,0x0,0xa,0x55,0x54,0x43,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Israel + 0x0,0x0,0x8,0xd9, + 0x54, + 0x5a,0x69,0x66,0x33,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x8f,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x80,0x0,0x0,0x0,0x9e, + 0x30,0x45,0x88,0xc8,0x59,0xb2,0xe0,0xcc,0xe5,0xc1,0x50,0xcd,0xac,0xfe,0x0,0xce, + 0xc6,0xf4,0xd0,0xcf,0x8f,0x66,0xe0,0xd0,0xa9,0x79,0xd0,0xd1,0x84,0x60,0xe0,0xd2, + 0x8a,0xc9,0x70,0xd3,0x65,0xb0,0x80,0xd4,0x6b,0xe0,0xd0,0xd7,0x5a,0x14,0x60,0xd7, + 0xdf,0x1f,0xc0,0xd8,0x2f,0xb5,0x70,0xd9,0x1e,0x46,0xe0,0xda,0x10,0xe8,0xf0,0xda, + 0xeb,0xb3,0xe0,0xdb,0xb4,0x34,0x0,0xdc,0xb9,0x20,0xe0,0xdd,0xe0,0x8d,0x0,0xde, + 0xb4,0xce,0x80,0xdf,0xa4,0xbf,0x80,0xe0,0x8b,0x76,0x0,0xe1,0x56,0x7d,0x0,0xe2, + 0xbe,0x4a,0x60,0xe3,0x36,0x34,0xd0,0xe4,0x9c,0xf7,0x0,0xe5,0x16,0x16,0xd0,0xe6, + 0x74,0xd3,0xe0,0xe7,0x11,0xd2,0x80,0xe8,0x27,0xff,0x0,0xe8,0xe8,0x4f,0xd0,0x8, + 0x7c,0x8b,0xe0,0x8,0xfd,0xb0,0xd0,0x9,0xf6,0xea,0x60,0xa,0xa6,0x33,0xd0,0x1c, + 0xbe,0xf8,0xe0,0x1d,0x89,0xf1,0xd0,0x1e,0xcc,0xff,0x60,0x1f,0x60,0x99,0x50,0x20, + 0x82,0xb1,0x60,0x21,0x49,0xb5,0xd0,0x22,0x5e,0x9e,0xe0,0x23,0x20,0x5d,0x50,0x24, + 0x5a,0x30,0x60,0x25,0x0,0x3f,0x50,0x26,0xb,0xed,0xe0,0x26,0xd6,0xe6,0xd0,0x27, + 0xeb,0xcf,0xe0,0x28,0xc0,0x3,0x50,0x29,0xd4,0xec,0x60,0x2a,0xa9,0x1f,0xd0,0x2b, + 0xbb,0x65,0xe0,0x2c,0x89,0x1,0xd0,0x2d,0x9b,0x47,0xe0,0x2e,0x5f,0xa9,0x50,0x2f, + 0x7b,0x29,0xe0,0x30,0x48,0xc5,0xd0,0x31,0x48,0x96,0xe0,0x32,0x3c,0x6e,0x50,0x33, + 0x31,0xb3,0x60,0x34,0x1a,0xfe,0xd0,0x35,0x11,0x95,0x60,0x35,0xf1,0xa6,0x50,0x37, + 0x4,0x8,0x80,0x37,0xcf,0x1,0x70,0x38,0xf6,0x5f,0x80,0x39,0xdc,0xf9,0xe0,0x3a, + 0xd0,0xed,0x70,0x3b,0xae,0x5b,0x60,0x3c,0xa3,0xa0,0x70,0x3d,0xa0,0xb2,0x60,0x3e, + 0x83,0x82,0x70,0x3f,0x7c,0x9f,0xe0,0x40,0x73,0x36,0x70,0x41,0x50,0xa4,0x60,0x42, + 0x4c,0x8f,0x0,0x43,0x48,0x4f,0x70,0x44,0x2c,0x71,0x0,0x45,0x1e,0xf6,0xf0,0x46, + 0xc,0x53,0x0,0x46,0xec,0x63,0xf0,0x47,0xec,0x35,0x0,0x48,0xe7,0xf5,0x70,0x49, + 0xcc,0x17,0x0,0x4a,0xbe,0x9c,0xf0,0x4b,0xab,0xf9,0x0,0x4c,0x8c,0x9,0xf0,0x4d, + 0x95,0x15,0x80,0x4e,0x87,0x9b,0x70,0x4f,0x74,0xf7,0x80,0x50,0x5e,0x42,0xf0,0x51, + 0x54,0xd9,0x80,0x52,0x6c,0x49,0x70,0x53,0x34,0xbb,0x80,0x54,0x4c,0x2b,0x70,0x55, + 0x14,0x9d,0x80,0x56,0x2c,0xd,0x70,0x56,0xf4,0x7f,0x80,0x58,0x15,0x29,0xf0,0x58, + 0xd4,0x61,0x80,0x59,0xf5,0xb,0xf0,0x5a,0xb4,0x43,0x80,0x5b,0xd4,0xed,0xf0,0x5c, + 0x9d,0x60,0x0,0x5d,0xb4,0xcf,0xf0,0x5e,0x7d,0x42,0x0,0x5f,0x94,0xb1,0xf0,0x60, + 0x5d,0x24,0x0,0x61,0x7d,0xce,0x70,0x62,0x3d,0x6,0x0,0x63,0x5d,0xb0,0x70,0x64, + 0x1c,0xe8,0x0,0x65,0x3d,0x92,0x70,0x66,0x6,0x4,0x80,0x67,0x1d,0x74,0x70,0x67, + 0xe5,0xe6,0x80,0x68,0xfd,0x56,0x70,0x69,0xc5,0xc8,0x80,0x6a,0xdd,0x38,0x70,0x6b, + 0xa5,0xaa,0x80,0x6c,0xc6,0x54,0xf0,0x6d,0x85,0x8c,0x80,0x6e,0xa6,0x36,0xf0,0x6f, + 0x65,0x6e,0x80,0x70,0x86,0x18,0xf0,0x71,0x4e,0x8b,0x0,0x72,0x65,0xfa,0xf0,0x73, + 0x2e,0x6d,0x0,0x74,0x45,0xdc,0xf0,0x75,0xe,0x4f,0x0,0x76,0x2e,0xf9,0x70,0x76, + 0xee,0x31,0x0,0x78,0xe,0xdb,0x70,0x78,0xce,0x13,0x0,0x79,0xee,0xbd,0x70,0x7a, + 0xad,0xf5,0x0,0x7b,0xce,0x9f,0x70,0x7c,0x97,0x11,0x80,0x7d,0xae,0x81,0x70,0x7e, + 0x76,0xf3,0x80,0x7f,0x8e,0x63,0x70,0x1,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x4,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x0,0x0,0x21,0x6,0x0,0x0,0x0,0x0,0x20,0xf8, + 0x0,0x4,0x0,0x0,0x2a,0x30,0x1,0x8,0x0,0x0,0x1c,0x20,0x0,0xc,0x0,0x0, + 0x38,0x40,0x1,0x10,0x0,0x0,0x2a,0x30,0x1,0x8,0x4c,0x4d,0x54,0x0,0x4a,0x4d, + 0x54,0x0,0x49,0x44,0x54,0x0,0x49,0x53,0x54,0x0,0x49,0x44,0x44,0x54,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x33, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x90,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x15,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff, + 0xff,0xff,0xff,0x56,0xb6,0xc2,0xfa,0xff,0xff,0xff,0xff,0x9e,0x30,0x45,0x88,0xff, + 0xff,0xff,0xff,0xc8,0x59,0xb2,0xe0,0xff,0xff,0xff,0xff,0xcc,0xe5,0xc1,0x50,0xff, + 0xff,0xff,0xff,0xcd,0xac,0xfe,0x0,0xff,0xff,0xff,0xff,0xce,0xc6,0xf4,0xd0,0xff, + 0xff,0xff,0xff,0xcf,0x8f,0x66,0xe0,0xff,0xff,0xff,0xff,0xd0,0xa9,0x79,0xd0,0xff, + 0xff,0xff,0xff,0xd1,0x84,0x60,0xe0,0xff,0xff,0xff,0xff,0xd2,0x8a,0xc9,0x70,0xff, + 0xff,0xff,0xff,0xd3,0x65,0xb0,0x80,0xff,0xff,0xff,0xff,0xd4,0x6b,0xe0,0xd0,0xff, + 0xff,0xff,0xff,0xd7,0x5a,0x14,0x60,0xff,0xff,0xff,0xff,0xd7,0xdf,0x1f,0xc0,0xff, + 0xff,0xff,0xff,0xd8,0x2f,0xb5,0x70,0xff,0xff,0xff,0xff,0xd9,0x1e,0x46,0xe0,0xff, + 0xff,0xff,0xff,0xda,0x10,0xe8,0xf0,0xff,0xff,0xff,0xff,0xda,0xeb,0xb3,0xe0,0xff, + 0xff,0xff,0xff,0xdb,0xb4,0x34,0x0,0xff,0xff,0xff,0xff,0xdc,0xb9,0x20,0xe0,0xff, + 0xff,0xff,0xff,0xdd,0xe0,0x8d,0x0,0xff,0xff,0xff,0xff,0xde,0xb4,0xce,0x80,0xff, + 0xff,0xff,0xff,0xdf,0xa4,0xbf,0x80,0xff,0xff,0xff,0xff,0xe0,0x8b,0x76,0x0,0xff, + 0xff,0xff,0xff,0xe1,0x56,0x7d,0x0,0xff,0xff,0xff,0xff,0xe2,0xbe,0x4a,0x60,0xff, + 0xff,0xff,0xff,0xe3,0x36,0x34,0xd0,0xff,0xff,0xff,0xff,0xe4,0x9c,0xf7,0x0,0xff, + 0xff,0xff,0xff,0xe5,0x16,0x16,0xd0,0xff,0xff,0xff,0xff,0xe6,0x74,0xd3,0xe0,0xff, + 0xff,0xff,0xff,0xe7,0x11,0xd2,0x80,0xff,0xff,0xff,0xff,0xe8,0x27,0xff,0x0,0xff, + 0xff,0xff,0xff,0xe8,0xe8,0x4f,0xd0,0x0,0x0,0x0,0x0,0x8,0x7c,0x8b,0xe0,0x0, + 0x0,0x0,0x0,0x8,0xfd,0xb0,0xd0,0x0,0x0,0x0,0x0,0x9,0xf6,0xea,0x60,0x0, + 0x0,0x0,0x0,0xa,0xa6,0x33,0xd0,0x0,0x0,0x0,0x0,0x1c,0xbe,0xf8,0xe0,0x0, + 0x0,0x0,0x0,0x1d,0x89,0xf1,0xd0,0x0,0x0,0x0,0x0,0x1e,0xcc,0xff,0x60,0x0, + 0x0,0x0,0x0,0x1f,0x60,0x99,0x50,0x0,0x0,0x0,0x0,0x20,0x82,0xb1,0x60,0x0, + 0x0,0x0,0x0,0x21,0x49,0xb5,0xd0,0x0,0x0,0x0,0x0,0x22,0x5e,0x9e,0xe0,0x0, + 0x0,0x0,0x0,0x23,0x20,0x5d,0x50,0x0,0x0,0x0,0x0,0x24,0x5a,0x30,0x60,0x0, + 0x0,0x0,0x0,0x25,0x0,0x3f,0x50,0x0,0x0,0x0,0x0,0x26,0xb,0xed,0xe0,0x0, + 0x0,0x0,0x0,0x26,0xd6,0xe6,0xd0,0x0,0x0,0x0,0x0,0x27,0xeb,0xcf,0xe0,0x0, + 0x0,0x0,0x0,0x28,0xc0,0x3,0x50,0x0,0x0,0x0,0x0,0x29,0xd4,0xec,0x60,0x0, + 0x0,0x0,0x0,0x2a,0xa9,0x1f,0xd0,0x0,0x0,0x0,0x0,0x2b,0xbb,0x65,0xe0,0x0, + 0x0,0x0,0x0,0x2c,0x89,0x1,0xd0,0x0,0x0,0x0,0x0,0x2d,0x9b,0x47,0xe0,0x0, + 0x0,0x0,0x0,0x2e,0x5f,0xa9,0x50,0x0,0x0,0x0,0x0,0x2f,0x7b,0x29,0xe0,0x0, + 0x0,0x0,0x0,0x30,0x48,0xc5,0xd0,0x0,0x0,0x0,0x0,0x31,0x48,0x96,0xe0,0x0, + 0x0,0x0,0x0,0x32,0x3c,0x6e,0x50,0x0,0x0,0x0,0x0,0x33,0x31,0xb3,0x60,0x0, + 0x0,0x0,0x0,0x34,0x1a,0xfe,0xd0,0x0,0x0,0x0,0x0,0x35,0x11,0x95,0x60,0x0, + 0x0,0x0,0x0,0x35,0xf1,0xa6,0x50,0x0,0x0,0x0,0x0,0x37,0x4,0x8,0x80,0x0, + 0x0,0x0,0x0,0x37,0xcf,0x1,0x70,0x0,0x0,0x0,0x0,0x38,0xf6,0x5f,0x80,0x0, + 0x0,0x0,0x0,0x39,0xdc,0xf9,0xe0,0x0,0x0,0x0,0x0,0x3a,0xd0,0xed,0x70,0x0, + 0x0,0x0,0x0,0x3b,0xae,0x5b,0x60,0x0,0x0,0x0,0x0,0x3c,0xa3,0xa0,0x70,0x0, + 0x0,0x0,0x0,0x3d,0xa0,0xb2,0x60,0x0,0x0,0x0,0x0,0x3e,0x83,0x82,0x70,0x0, + 0x0,0x0,0x0,0x3f,0x7c,0x9f,0xe0,0x0,0x0,0x0,0x0,0x40,0x73,0x36,0x70,0x0, + 0x0,0x0,0x0,0x41,0x50,0xa4,0x60,0x0,0x0,0x0,0x0,0x42,0x4c,0x8f,0x0,0x0, + 0x0,0x0,0x0,0x43,0x48,0x4f,0x70,0x0,0x0,0x0,0x0,0x44,0x2c,0x71,0x0,0x0, + 0x0,0x0,0x0,0x45,0x1e,0xf6,0xf0,0x0,0x0,0x0,0x0,0x46,0xc,0x53,0x0,0x0, + 0x0,0x0,0x0,0x46,0xec,0x63,0xf0,0x0,0x0,0x0,0x0,0x47,0xec,0x35,0x0,0x0, + 0x0,0x0,0x0,0x48,0xe7,0xf5,0x70,0x0,0x0,0x0,0x0,0x49,0xcc,0x17,0x0,0x0, + 0x0,0x0,0x0,0x4a,0xbe,0x9c,0xf0,0x0,0x0,0x0,0x0,0x4b,0xab,0xf9,0x0,0x0, + 0x0,0x0,0x0,0x4c,0x8c,0x9,0xf0,0x0,0x0,0x0,0x0,0x4d,0x95,0x15,0x80,0x0, + 0x0,0x0,0x0,0x4e,0x87,0x9b,0x70,0x0,0x0,0x0,0x0,0x4f,0x74,0xf7,0x80,0x0, + 0x0,0x0,0x0,0x50,0x5e,0x42,0xf0,0x0,0x0,0x0,0x0,0x51,0x54,0xd9,0x80,0x0, + 0x0,0x0,0x0,0x52,0x6c,0x49,0x70,0x0,0x0,0x0,0x0,0x53,0x34,0xbb,0x80,0x0, + 0x0,0x0,0x0,0x54,0x4c,0x2b,0x70,0x0,0x0,0x0,0x0,0x55,0x14,0x9d,0x80,0x0, + 0x0,0x0,0x0,0x56,0x2c,0xd,0x70,0x0,0x0,0x0,0x0,0x56,0xf4,0x7f,0x80,0x0, + 0x0,0x0,0x0,0x58,0x15,0x29,0xf0,0x0,0x0,0x0,0x0,0x58,0xd4,0x61,0x80,0x0, + 0x0,0x0,0x0,0x59,0xf5,0xb,0xf0,0x0,0x0,0x0,0x0,0x5a,0xb4,0x43,0x80,0x0, + 0x0,0x0,0x0,0x5b,0xd4,0xed,0xf0,0x0,0x0,0x0,0x0,0x5c,0x9d,0x60,0x0,0x0, + 0x0,0x0,0x0,0x5d,0xb4,0xcf,0xf0,0x0,0x0,0x0,0x0,0x5e,0x7d,0x42,0x0,0x0, + 0x0,0x0,0x0,0x5f,0x94,0xb1,0xf0,0x0,0x0,0x0,0x0,0x60,0x5d,0x24,0x0,0x0, + 0x0,0x0,0x0,0x61,0x7d,0xce,0x70,0x0,0x0,0x0,0x0,0x62,0x3d,0x6,0x0,0x0, + 0x0,0x0,0x0,0x63,0x5d,0xb0,0x70,0x0,0x0,0x0,0x0,0x64,0x1c,0xe8,0x0,0x0, + 0x0,0x0,0x0,0x65,0x3d,0x92,0x70,0x0,0x0,0x0,0x0,0x66,0x6,0x4,0x80,0x0, + 0x0,0x0,0x0,0x67,0x1d,0x74,0x70,0x0,0x0,0x0,0x0,0x67,0xe5,0xe6,0x80,0x0, + 0x0,0x0,0x0,0x68,0xfd,0x56,0x70,0x0,0x0,0x0,0x0,0x69,0xc5,0xc8,0x80,0x0, + 0x0,0x0,0x0,0x6a,0xdd,0x38,0x70,0x0,0x0,0x0,0x0,0x6b,0xa5,0xaa,0x80,0x0, + 0x0,0x0,0x0,0x6c,0xc6,0x54,0xf0,0x0,0x0,0x0,0x0,0x6d,0x85,0x8c,0x80,0x0, + 0x0,0x0,0x0,0x6e,0xa6,0x36,0xf0,0x0,0x0,0x0,0x0,0x6f,0x65,0x6e,0x80,0x0, + 0x0,0x0,0x0,0x70,0x86,0x18,0xf0,0x0,0x0,0x0,0x0,0x71,0x4e,0x8b,0x0,0x0, + 0x0,0x0,0x0,0x72,0x65,0xfa,0xf0,0x0,0x0,0x0,0x0,0x73,0x2e,0x6d,0x0,0x0, + 0x0,0x0,0x0,0x74,0x45,0xdc,0xf0,0x0,0x0,0x0,0x0,0x75,0xe,0x4f,0x0,0x0, + 0x0,0x0,0x0,0x76,0x2e,0xf9,0x70,0x0,0x0,0x0,0x0,0x76,0xee,0x31,0x0,0x0, + 0x0,0x0,0x0,0x78,0xe,0xdb,0x70,0x0,0x0,0x0,0x0,0x78,0xce,0x13,0x0,0x0, + 0x0,0x0,0x0,0x79,0xee,0xbd,0x70,0x0,0x0,0x0,0x0,0x7a,0xad,0xf5,0x0,0x0, + 0x0,0x0,0x0,0x7b,0xce,0x9f,0x70,0x0,0x0,0x0,0x0,0x7c,0x97,0x11,0x80,0x0, + 0x0,0x0,0x0,0x7d,0xae,0x81,0x70,0x0,0x0,0x0,0x0,0x7e,0x76,0xf3,0x80,0x0, + 0x0,0x0,0x0,0x7f,0x8e,0x63,0x70,0x0,0x1,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x4,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x0,0x0,0x21,0x6,0x0,0x0,0x0,0x0,0x20, + 0xf8,0x0,0x4,0x0,0x0,0x2a,0x30,0x1,0x8,0x0,0x0,0x1c,0x20,0x0,0xc,0x0, + 0x0,0x38,0x40,0x1,0x10,0x0,0x0,0x2a,0x30,0x1,0x8,0x4c,0x4d,0x54,0x0,0x4a, + 0x4d,0x54,0x0,0x49,0x44,0x54,0x0,0x49,0x53,0x54,0x0,0x49,0x44,0x44,0x54,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x49,0x53,0x54, + 0x2d,0x32,0x49,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x34,0x2e,0x34,0x2f,0x32,0x36,0x2c, + 0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Singapore + 0x0,0x0,0x1,0xa8, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x8e,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xa,0x80,0x0,0x0,0x0,0x9c, - 0x4e,0xad,0xa4,0x9c,0xbc,0x27,0xf8,0xcb,0x54,0xba,0x8,0xcb,0xc7,0x5e,0x78,0xcc, - 0xb7,0x5d,0x88,0xcd,0xa7,0x40,0x78,0xce,0xa0,0x7a,0x8,0xcf,0x87,0x22,0x78,0x3, - 0x70,0x40,0x88,0x4,0xd,0x23,0x8,0x5,0x50,0x22,0x88,0x5,0xf6,0x3f,0x88,0x7, - 0x30,0x4,0x88,0x7,0xd6,0x21,0x88,0x9,0xf,0xe6,0x88,0x9,0xb6,0x3,0x88,0xa, - 0xef,0xc8,0x88,0xb,0x9f,0x20,0x8,0xc,0xd8,0xe5,0x8,0xd,0x7f,0x2,0x8,0xe, - 0xb8,0xc7,0x8,0xf,0x5e,0xe4,0x8,0x10,0x98,0xa9,0x8,0x11,0x3e,0xc6,0x8,0x12, - 0x78,0x8b,0x8,0x13,0x1e,0xa8,0x8,0x14,0x58,0x6d,0x8,0x14,0xfe,0x8a,0x8,0x16, - 0x38,0x4f,0x8,0x16,0xe7,0xa6,0x88,0x18,0x21,0x6b,0x88,0x18,0xc7,0x88,0x88,0x1a, - 0x1,0x4d,0x88,0x1a,0xa7,0x6a,0x88,0x1b,0xe1,0x2f,0x88,0x1c,0x87,0x4c,0x88,0x1d, - 0xc1,0x11,0x88,0x1e,0x79,0xa3,0x88,0x1f,0x97,0xb9,0x8,0x20,0x59,0x85,0x88,0x21, - 0x80,0xd5,0x88,0x22,0x42,0xa2,0x8,0x23,0x69,0xf2,0x8,0x24,0x22,0x84,0x8,0x25, - 0x49,0xd4,0x8,0x26,0x2,0x66,0x8,0x27,0x29,0xb6,0x8,0x27,0xcf,0xd3,0x8,0x29, - 0x9,0x98,0x8,0x29,0xcb,0x64,0x88,0x2a,0xe9,0x7a,0x8,0x2b,0x98,0xd1,0x88,0x2c, - 0xd2,0x96,0x88,0x2d,0x8b,0x28,0x88,0x2e,0xb2,0x78,0x88,0x2f,0x74,0x45,0x8,0x30, - 0x92,0x5a,0x88,0x31,0x5d,0x61,0x88,0x32,0x72,0x3c,0x88,0x33,0x3d,0x43,0x88,0x34, - 0x52,0x1e,0x88,0x35,0x1d,0x25,0x88,0x36,0x32,0x0,0x88,0x36,0xfd,0x7,0x88,0x38, - 0x1b,0x1d,0x8,0x38,0xdc,0xe9,0x88,0x39,0xfa,0xff,0x8,0x3a,0xbc,0xcb,0x88,0x3b, - 0xda,0xe1,0x8,0x3c,0xa5,0xe8,0x8,0x3d,0xba,0xc3,0x8,0x3e,0x85,0xca,0x8,0x3f, - 0x9a,0xa5,0x8,0x40,0x65,0xac,0x8,0x41,0x83,0xc1,0x88,0x42,0x45,0x8e,0x8,0x43, - 0x63,0xa3,0x88,0x44,0x2e,0xaa,0x88,0x45,0x43,0x85,0x88,0x46,0x5,0x52,0x8,0x47, - 0x23,0x67,0x88,0x47,0xf7,0xa9,0x8,0x48,0xe7,0x9a,0x8,0x49,0xd7,0x8b,0x8,0x4a, - 0xc7,0x7c,0x8,0x4b,0xb7,0x6d,0x8,0x4c,0xa7,0x5e,0x8,0x4d,0x97,0x4f,0x8,0x4e, - 0x87,0x40,0x8,0x4f,0x77,0x31,0x8,0x50,0x70,0x5c,0x88,0x51,0x60,0x4d,0x88,0x52, - 0x50,0x3e,0x88,0x53,0x40,0x2f,0x88,0x54,0x30,0x20,0x88,0x55,0x20,0x11,0x88,0x56, - 0x10,0x2,0x88,0x56,0xff,0xf3,0x88,0x57,0xef,0xe4,0x88,0x58,0xdf,0xd5,0x88,0x59, - 0xcf,0xc6,0x88,0x5a,0xbf,0xb7,0x88,0x5b,0xb8,0xe3,0x8,0x5c,0xa8,0xd4,0x8,0x5d, - 0x98,0xc5,0x8,0x5e,0x88,0xb6,0x8,0x5f,0x78,0xa7,0x8,0x60,0x68,0x98,0x8,0x61, - 0x58,0x89,0x8,0x62,0x48,0x7a,0x8,0x63,0x38,0x6b,0x8,0x64,0x28,0x5c,0x8,0x65, - 0x18,0x4d,0x8,0x66,0x11,0x78,0x88,0x67,0x1,0x69,0x88,0x67,0xf1,0x5a,0x88,0x68, - 0xe1,0x4b,0x88,0x69,0xd1,0x3c,0x88,0x6a,0xc1,0x2d,0x88,0x6b,0xb1,0x1e,0x88,0x6c, - 0xa1,0xf,0x88,0x6d,0x91,0x0,0x88,0x6e,0x80,0xf1,0x88,0x6f,0x70,0xe2,0x88,0x70, - 0x6a,0xe,0x8,0x71,0x59,0xff,0x8,0x72,0x49,0xf0,0x8,0x73,0x39,0xe1,0x8,0x74, - 0x29,0xd2,0x8,0x75,0x19,0xc3,0x8,0x76,0x9,0xb4,0x8,0x76,0xf9,0xa5,0x8,0x77, - 0xe9,0x96,0x8,0x78,0xd9,0x87,0x8,0x79,0xc9,0x78,0x8,0x7a,0xb9,0x69,0x8,0x7b, - 0xb2,0x94,0x88,0x7c,0xa2,0x85,0x88,0x7d,0x92,0x76,0x88,0x7e,0x82,0x67,0x88,0x7f, - 0x72,0x58,0x88,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x0,0x0,0x7e,0x90,0x0,0x0,0x0,0x0,0x93,0xa8,0x1,0x5,0x0,0x0,0x85, - 0x98,0x0,0x0,0x0,0x0,0x93,0xa8,0x1,0x5,0x0,0x0,0x85,0x98,0x0,0x0,0x41, - 0x43,0x53,0x54,0x0,0x41,0x43,0x44,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0, - 0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x90,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0xf8, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x73,0x16,0x8b,0x14,0xff, - 0xff,0xff,0xff,0x7b,0x12,0x3,0x70,0xff,0xff,0xff,0xff,0x9c,0x4e,0xad,0xa4,0xff, - 0xff,0xff,0xff,0x9c,0xbc,0x27,0xf8,0xff,0xff,0xff,0xff,0xcb,0x54,0xba,0x8,0xff, - 0xff,0xff,0xff,0xcb,0xc7,0x5e,0x78,0xff,0xff,0xff,0xff,0xcc,0xb7,0x5d,0x88,0xff, - 0xff,0xff,0xff,0xcd,0xa7,0x40,0x78,0xff,0xff,0xff,0xff,0xce,0xa0,0x7a,0x8,0xff, - 0xff,0xff,0xff,0xcf,0x87,0x22,0x78,0x0,0x0,0x0,0x0,0x3,0x70,0x40,0x88,0x0, - 0x0,0x0,0x0,0x4,0xd,0x23,0x8,0x0,0x0,0x0,0x0,0x5,0x50,0x22,0x88,0x0, - 0x0,0x0,0x0,0x5,0xf6,0x3f,0x88,0x0,0x0,0x0,0x0,0x7,0x30,0x4,0x88,0x0, - 0x0,0x0,0x0,0x7,0xd6,0x21,0x88,0x0,0x0,0x0,0x0,0x9,0xf,0xe6,0x88,0x0, - 0x0,0x0,0x0,0x9,0xb6,0x3,0x88,0x0,0x0,0x0,0x0,0xa,0xef,0xc8,0x88,0x0, - 0x0,0x0,0x0,0xb,0x9f,0x20,0x8,0x0,0x0,0x0,0x0,0xc,0xd8,0xe5,0x8,0x0, - 0x0,0x0,0x0,0xd,0x7f,0x2,0x8,0x0,0x0,0x0,0x0,0xe,0xb8,0xc7,0x8,0x0, - 0x0,0x0,0x0,0xf,0x5e,0xe4,0x8,0x0,0x0,0x0,0x0,0x10,0x98,0xa9,0x8,0x0, - 0x0,0x0,0x0,0x11,0x3e,0xc6,0x8,0x0,0x0,0x0,0x0,0x12,0x78,0x8b,0x8,0x0, - 0x0,0x0,0x0,0x13,0x1e,0xa8,0x8,0x0,0x0,0x0,0x0,0x14,0x58,0x6d,0x8,0x0, - 0x0,0x0,0x0,0x14,0xfe,0x8a,0x8,0x0,0x0,0x0,0x0,0x16,0x38,0x4f,0x8,0x0, - 0x0,0x0,0x0,0x16,0xe7,0xa6,0x88,0x0,0x0,0x0,0x0,0x18,0x21,0x6b,0x88,0x0, - 0x0,0x0,0x0,0x18,0xc7,0x88,0x88,0x0,0x0,0x0,0x0,0x1a,0x1,0x4d,0x88,0x0, - 0x0,0x0,0x0,0x1a,0xa7,0x6a,0x88,0x0,0x0,0x0,0x0,0x1b,0xe1,0x2f,0x88,0x0, - 0x0,0x0,0x0,0x1c,0x87,0x4c,0x88,0x0,0x0,0x0,0x0,0x1d,0xc1,0x11,0x88,0x0, - 0x0,0x0,0x0,0x1e,0x79,0xa3,0x88,0x0,0x0,0x0,0x0,0x1f,0x97,0xb9,0x8,0x0, - 0x0,0x0,0x0,0x20,0x59,0x85,0x88,0x0,0x0,0x0,0x0,0x21,0x80,0xd5,0x88,0x0, - 0x0,0x0,0x0,0x22,0x42,0xa2,0x8,0x0,0x0,0x0,0x0,0x23,0x69,0xf2,0x8,0x0, - 0x0,0x0,0x0,0x24,0x22,0x84,0x8,0x0,0x0,0x0,0x0,0x25,0x49,0xd4,0x8,0x0, - 0x0,0x0,0x0,0x26,0x2,0x66,0x8,0x0,0x0,0x0,0x0,0x27,0x29,0xb6,0x8,0x0, - 0x0,0x0,0x0,0x27,0xcf,0xd3,0x8,0x0,0x0,0x0,0x0,0x29,0x9,0x98,0x8,0x0, - 0x0,0x0,0x0,0x29,0xcb,0x64,0x88,0x0,0x0,0x0,0x0,0x2a,0xe9,0x7a,0x8,0x0, - 0x0,0x0,0x0,0x2b,0x98,0xd1,0x88,0x0,0x0,0x0,0x0,0x2c,0xd2,0x96,0x88,0x0, - 0x0,0x0,0x0,0x2d,0x8b,0x28,0x88,0x0,0x0,0x0,0x0,0x2e,0xb2,0x78,0x88,0x0, - 0x0,0x0,0x0,0x2f,0x74,0x45,0x8,0x0,0x0,0x0,0x0,0x30,0x92,0x5a,0x88,0x0, - 0x0,0x0,0x0,0x31,0x5d,0x61,0x88,0x0,0x0,0x0,0x0,0x32,0x72,0x3c,0x88,0x0, - 0x0,0x0,0x0,0x33,0x3d,0x43,0x88,0x0,0x0,0x0,0x0,0x34,0x52,0x1e,0x88,0x0, - 0x0,0x0,0x0,0x35,0x1d,0x25,0x88,0x0,0x0,0x0,0x0,0x36,0x32,0x0,0x88,0x0, - 0x0,0x0,0x0,0x36,0xfd,0x7,0x88,0x0,0x0,0x0,0x0,0x38,0x1b,0x1d,0x8,0x0, - 0x0,0x0,0x0,0x38,0xdc,0xe9,0x88,0x0,0x0,0x0,0x0,0x39,0xfa,0xff,0x8,0x0, - 0x0,0x0,0x0,0x3a,0xbc,0xcb,0x88,0x0,0x0,0x0,0x0,0x3b,0xda,0xe1,0x8,0x0, - 0x0,0x0,0x0,0x3c,0xa5,0xe8,0x8,0x0,0x0,0x0,0x0,0x3d,0xba,0xc3,0x8,0x0, - 0x0,0x0,0x0,0x3e,0x85,0xca,0x8,0x0,0x0,0x0,0x0,0x3f,0x9a,0xa5,0x8,0x0, - 0x0,0x0,0x0,0x40,0x65,0xac,0x8,0x0,0x0,0x0,0x0,0x41,0x83,0xc1,0x88,0x0, - 0x0,0x0,0x0,0x42,0x45,0x8e,0x8,0x0,0x0,0x0,0x0,0x43,0x63,0xa3,0x88,0x0, - 0x0,0x0,0x0,0x44,0x2e,0xaa,0x88,0x0,0x0,0x0,0x0,0x45,0x43,0x85,0x88,0x0, - 0x0,0x0,0x0,0x46,0x5,0x52,0x8,0x0,0x0,0x0,0x0,0x47,0x23,0x67,0x88,0x0, - 0x0,0x0,0x0,0x47,0xf7,0xa9,0x8,0x0,0x0,0x0,0x0,0x48,0xe7,0x9a,0x8,0x0, - 0x0,0x0,0x0,0x49,0xd7,0x8b,0x8,0x0,0x0,0x0,0x0,0x4a,0xc7,0x7c,0x8,0x0, - 0x0,0x0,0x0,0x4b,0xb7,0x6d,0x8,0x0,0x0,0x0,0x0,0x4c,0xa7,0x5e,0x8,0x0, - 0x0,0x0,0x0,0x4d,0x97,0x4f,0x8,0x0,0x0,0x0,0x0,0x4e,0x87,0x40,0x8,0x0, - 0x0,0x0,0x0,0x4f,0x77,0x31,0x8,0x0,0x0,0x0,0x0,0x50,0x70,0x5c,0x88,0x0, - 0x0,0x0,0x0,0x51,0x60,0x4d,0x88,0x0,0x0,0x0,0x0,0x52,0x50,0x3e,0x88,0x0, - 0x0,0x0,0x0,0x53,0x40,0x2f,0x88,0x0,0x0,0x0,0x0,0x54,0x30,0x20,0x88,0x0, - 0x0,0x0,0x0,0x55,0x20,0x11,0x88,0x0,0x0,0x0,0x0,0x56,0x10,0x2,0x88,0x0, - 0x0,0x0,0x0,0x56,0xff,0xf3,0x88,0x0,0x0,0x0,0x0,0x57,0xef,0xe4,0x88,0x0, - 0x0,0x0,0x0,0x58,0xdf,0xd5,0x88,0x0,0x0,0x0,0x0,0x59,0xcf,0xc6,0x88,0x0, - 0x0,0x0,0x0,0x5a,0xbf,0xb7,0x88,0x0,0x0,0x0,0x0,0x5b,0xb8,0xe3,0x8,0x0, - 0x0,0x0,0x0,0x5c,0xa8,0xd4,0x8,0x0,0x0,0x0,0x0,0x5d,0x98,0xc5,0x8,0x0, - 0x0,0x0,0x0,0x5e,0x88,0xb6,0x8,0x0,0x0,0x0,0x0,0x5f,0x78,0xa7,0x8,0x0, - 0x0,0x0,0x0,0x60,0x68,0x98,0x8,0x0,0x0,0x0,0x0,0x61,0x58,0x89,0x8,0x0, - 0x0,0x0,0x0,0x62,0x48,0x7a,0x8,0x0,0x0,0x0,0x0,0x63,0x38,0x6b,0x8,0x0, - 0x0,0x0,0x0,0x64,0x28,0x5c,0x8,0x0,0x0,0x0,0x0,0x65,0x18,0x4d,0x8,0x0, - 0x0,0x0,0x0,0x66,0x11,0x78,0x88,0x0,0x0,0x0,0x0,0x67,0x1,0x69,0x88,0x0, - 0x0,0x0,0x0,0x67,0xf1,0x5a,0x88,0x0,0x0,0x0,0x0,0x68,0xe1,0x4b,0x88,0x0, - 0x0,0x0,0x0,0x69,0xd1,0x3c,0x88,0x0,0x0,0x0,0x0,0x6a,0xc1,0x2d,0x88,0x0, - 0x0,0x0,0x0,0x6b,0xb1,0x1e,0x88,0x0,0x0,0x0,0x0,0x6c,0xa1,0xf,0x88,0x0, - 0x0,0x0,0x0,0x6d,0x91,0x0,0x88,0x0,0x0,0x0,0x0,0x6e,0x80,0xf1,0x88,0x0, - 0x0,0x0,0x0,0x6f,0x70,0xe2,0x88,0x0,0x0,0x0,0x0,0x70,0x6a,0xe,0x8,0x0, - 0x0,0x0,0x0,0x71,0x59,0xff,0x8,0x0,0x0,0x0,0x0,0x72,0x49,0xf0,0x8,0x0, - 0x0,0x0,0x0,0x73,0x39,0xe1,0x8,0x0,0x0,0x0,0x0,0x74,0x29,0xd2,0x8,0x0, - 0x0,0x0,0x0,0x75,0x19,0xc3,0x8,0x0,0x0,0x0,0x0,0x76,0x9,0xb4,0x8,0x0, - 0x0,0x0,0x0,0x76,0xf9,0xa5,0x8,0x0,0x0,0x0,0x0,0x77,0xe9,0x96,0x8,0x0, - 0x0,0x0,0x0,0x78,0xd9,0x87,0x8,0x0,0x0,0x0,0x0,0x79,0xc9,0x78,0x8,0x0, - 0x0,0x0,0x0,0x7a,0xb9,0x69,0x8,0x0,0x0,0x0,0x0,0x7b,0xb2,0x94,0x88,0x0, - 0x0,0x0,0x0,0x7c,0xa2,0x85,0x88,0x0,0x0,0x0,0x0,0x7d,0x92,0x76,0x88,0x0, - 0x0,0x0,0x0,0x7e,0x82,0x67,0x88,0x0,0x0,0x0,0x0,0x7f,0x72,0x58,0x88,0x0, - 0x1,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x0, - 0x0,0x81,0xec,0x0,0x0,0x0,0x0,0x7e,0x90,0x0,0x4,0x0,0x0,0x93,0xa8,0x1, - 0x9,0x0,0x0,0x85,0x98,0x0,0x4,0x0,0x0,0x93,0xa8,0x1,0x9,0x0,0x0,0x85, - 0x98,0x0,0x4,0x4c,0x4d,0x54,0x0,0x41,0x43,0x53,0x54,0x0,0x41,0x43,0x44,0x54, - 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x41,0x43, - 0x53,0x54,0x2d,0x39,0x3a,0x33,0x30,0x41,0x43,0x44,0x54,0x2c,0x4d,0x31,0x30,0x2e, - 0x31,0x2e,0x30,0x2c,0x4d,0x34,0x2e,0x31,0x2e,0x30,0x2f,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Australia/Broken_Hill - 0x0,0x0,0x8,0xe2, + 0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x9,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x20,0x80,0x0,0x0,0x0,0x86, + 0x83,0x85,0xa3,0xba,0x67,0x4e,0x90,0xc0,0xa,0xe4,0x60,0xca,0xb3,0xe5,0x60,0xcb, + 0x91,0x5f,0x8,0xd2,0x48,0x6d,0xf0,0x16,0x91,0xf5,0x8,0x7f,0xff,0xff,0xff,0x1, + 0x2,0x3,0x4,0x5,0x6,0x5,0x7,0x7,0x0,0x0,0x61,0x5d,0x0,0x0,0x0,0x0, + 0x61,0x5d,0x0,0x4,0x0,0x0,0x62,0x70,0x0,0x8,0x0,0x0,0x67,0x20,0x1,0xc, + 0x0,0x0,0x67,0x20,0x0,0xc,0x0,0x0,0x69,0x78,0x0,0x12,0x0,0x0,0x7e,0x90, + 0x0,0x18,0x0,0x0,0x70,0x80,0x0,0x1c,0x4c,0x4d,0x54,0x0,0x53,0x4d,0x54,0x0, + 0x2b,0x30,0x37,0x0,0x2b,0x30,0x37,0x32,0x30,0x0,0x2b,0x30,0x37,0x33,0x30,0x0, + 0x2b,0x30,0x39,0x0,0x2b,0x30,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8, + 0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x8, + 0x0,0x0,0x0,0x20,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0x7e,0x36,0x53,0xa3,0xff,0xff,0xff,0xff,0x86,0x83,0x85,0xa3,0xff,0xff,0xff,0xff, + 0xba,0x67,0x4e,0x90,0xff,0xff,0xff,0xff,0xc0,0xa,0xe4,0x60,0xff,0xff,0xff,0xff, + 0xca,0xb3,0xe5,0x60,0xff,0xff,0xff,0xff,0xcb,0x91,0x5f,0x8,0xff,0xff,0xff,0xff, + 0xd2,0x48,0x6d,0xf0,0x0,0x0,0x0,0x0,0x16,0x91,0xf5,0x8,0x0,0x0,0x0,0x0, + 0x7f,0xff,0xff,0xff,0x0,0x1,0x2,0x3,0x4,0x5,0x6,0x5,0x7,0x7,0x0,0x0, + 0x61,0x5d,0x0,0x0,0x0,0x0,0x61,0x5d,0x0,0x4,0x0,0x0,0x62,0x70,0x0,0x8, + 0x0,0x0,0x67,0x20,0x1,0xc,0x0,0x0,0x67,0x20,0x0,0xc,0x0,0x0,0x69,0x78, + 0x0,0x12,0x0,0x0,0x7e,0x90,0x0,0x18,0x0,0x0,0x70,0x80,0x0,0x1c,0x4c,0x4d, + 0x54,0x0,0x53,0x4d,0x54,0x0,0x2b,0x30,0x37,0x0,0x2b,0x30,0x37,0x32,0x30,0x0, + 0x2b,0x30,0x37,0x33,0x30,0x0,0x2b,0x30,0x39,0x0,0x2b,0x30,0x38,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c, + 0x2b,0x30,0x38,0x3e,0x2d,0x38,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/leapseconds + 0x0,0x0,0x8,0x90, + 0x23, + 0x20,0x41,0x6c,0x6c,0x6f,0x77,0x61,0x6e,0x63,0x65,0x20,0x66,0x6f,0x72,0x20,0x6c, + 0x65,0x61,0x70,0x20,0x73,0x65,0x63,0x6f,0x6e,0x64,0x73,0x20,0x61,0x64,0x64,0x65, + 0x64,0x20,0x74,0x6f,0x20,0x65,0x61,0x63,0x68,0x20,0x74,0x69,0x6d,0x65,0x20,0x7a, + 0x6f,0x6e,0x65,0x20,0x66,0x69,0x6c,0x65,0x2e,0xa,0xa,0x23,0x20,0x54,0x68,0x69, + 0x73,0x20,0x66,0x69,0x6c,0x65,0x20,0x69,0x73,0x20,0x69,0x6e,0x20,0x74,0x68,0x65, + 0x20,0x70,0x75,0x62,0x6c,0x69,0x63,0x20,0x64,0x6f,0x6d,0x61,0x69,0x6e,0x2e,0xa, + 0xa,0x23,0x20,0x54,0x68,0x69,0x73,0x20,0x66,0x69,0x6c,0x65,0x20,0x69,0x73,0x20, + 0x67,0x65,0x6e,0x65,0x72,0x61,0x74,0x65,0x64,0x20,0x61,0x75,0x74,0x6f,0x6d,0x61, + 0x74,0x69,0x63,0x61,0x6c,0x6c,0x79,0x20,0x66,0x72,0x6f,0x6d,0x20,0x74,0x68,0x65, + 0x20,0x64,0x61,0x74,0x61,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x70,0x75,0x62, + 0x6c,0x69,0x63,0x2d,0x64,0x6f,0x6d,0x61,0x69,0x6e,0xa,0x23,0x20,0x6c,0x65,0x61, + 0x70,0x2d,0x73,0x65,0x63,0x6f,0x6e,0x64,0x73,0x2e,0x6c,0x69,0x73,0x74,0x20,0x66, + 0x69,0x6c,0x65,0x2c,0x20,0x77,0x68,0x69,0x63,0x68,0x20,0x69,0x73,0x20,0x63,0x6f, + 0x70,0x69,0x65,0x64,0x20,0x66,0x72,0x6f,0x6d,0x3a,0xa,0x23,0x20,0x66,0x74,0x70, + 0x3a,0x2f,0x2f,0x66,0x74,0x70,0x2e,0x6e,0x69,0x73,0x74,0x2e,0x67,0x6f,0x76,0x2f, + 0x70,0x75,0x62,0x2f,0x74,0x69,0x6d,0x65,0x2f,0x6c,0x65,0x61,0x70,0x2d,0x73,0x65, + 0x63,0x6f,0x6e,0x64,0x73,0x2e,0x6c,0x69,0x73,0x74,0xa,0x23,0x20,0x46,0x6f,0x72, + 0x20,0x6d,0x6f,0x72,0x65,0x20,0x61,0x62,0x6f,0x75,0x74,0x20,0x6c,0x65,0x61,0x70, + 0x2d,0x73,0x65,0x63,0x6f,0x6e,0x64,0x73,0x2e,0x6c,0x69,0x73,0x74,0x2c,0x20,0x70, + 0x6c,0x65,0x61,0x73,0x65,0x20,0x73,0x65,0x65,0xa,0x23,0x20,0x54,0x68,0x65,0x20, + 0x4e,0x54,0x50,0x20,0x54,0x69,0x6d,0x65,0x73,0x63,0x61,0x6c,0x65,0x20,0x61,0x6e, + 0x64,0x20,0x4c,0x65,0x61,0x70,0x20,0x53,0x65,0x63,0x6f,0x6e,0x64,0x73,0xa,0x23, + 0x20,0x68,0x74,0x74,0x70,0x73,0x3a,0x2f,0x2f,0x77,0x77,0x77,0x2e,0x65,0x65,0x63, + 0x69,0x73,0x2e,0x75,0x64,0x65,0x6c,0x2e,0x65,0x64,0x75,0x2f,0x7e,0x6d,0x69,0x6c, + 0x6c,0x73,0x2f,0x6c,0x65,0x61,0x70,0x2e,0x68,0x74,0x6d,0x6c,0xa,0xa,0x23,0x20, + 0x54,0x68,0x65,0x20,0x49,0x6e,0x74,0x65,0x72,0x6e,0x61,0x74,0x69,0x6f,0x6e,0x61, + 0x6c,0x20,0x45,0x61,0x72,0x74,0x68,0x20,0x52,0x6f,0x74,0x61,0x74,0x69,0x6f,0x6e, + 0x20,0x61,0x6e,0x64,0x20,0x52,0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x20,0x53, + 0x79,0x73,0x74,0x65,0x6d,0x73,0x20,0x53,0x65,0x72,0x76,0x69,0x63,0x65,0xa,0x23, + 0x20,0x70,0x65,0x72,0x69,0x6f,0x64,0x69,0x63,0x61,0x6c,0x6c,0x79,0x20,0x75,0x73, + 0x65,0x73,0x20,0x6c,0x65,0x61,0x70,0x20,0x73,0x65,0x63,0x6f,0x6e,0x64,0x73,0x20, + 0x74,0x6f,0x20,0x6b,0x65,0x65,0x70,0x20,0x55,0x54,0x43,0x20,0x74,0x6f,0x20,0x77, + 0x69,0x74,0x68,0x69,0x6e,0x20,0x30,0x2e,0x39,0x20,0x73,0x20,0x6f,0x66,0x20,0x55, + 0x54,0x31,0xa,0x23,0x20,0x28,0x77,0x68,0x69,0x63,0x68,0x20,0x6d,0x65,0x61,0x73, + 0x75,0x72,0x65,0x73,0x20,0x74,0x68,0x65,0x20,0x74,0x72,0x75,0x65,0x20,0x61,0x6e, + 0x67,0x75,0x6c,0x61,0x72,0x20,0x6f,0x72,0x69,0x65,0x6e,0x74,0x61,0x74,0x69,0x6f, + 0x6e,0x20,0x6f,0x66,0x20,0x74,0x68,0x65,0x20,0x65,0x61,0x72,0x74,0x68,0x20,0x69, + 0x6e,0x20,0x73,0x70,0x61,0x63,0x65,0x29,0x3b,0x20,0x73,0x65,0x65,0xa,0x23,0x20, + 0x4c,0x65,0x76,0x69,0x6e,0x65,0x20,0x4a,0x2e,0x20,0x43,0x6f,0x6f,0x72,0x64,0x69, + 0x6e,0x61,0x74,0x65,0x64,0x20,0x55,0x6e,0x69,0x76,0x65,0x72,0x73,0x61,0x6c,0x20, + 0x54,0x69,0x6d,0x65,0x20,0x61,0x6e,0x64,0x20,0x74,0x68,0x65,0x20,0x6c,0x65,0x61, + 0x70,0x20,0x73,0x65,0x63,0x6f,0x6e,0x64,0x2e,0xa,0x23,0x20,0x55,0x52,0x53,0x49, + 0x20,0x52,0x61,0x64,0x69,0x6f,0x20,0x53,0x63,0x69,0x20,0x42,0x75,0x6c,0x6c,0x2e, + 0x20,0x32,0x30,0x31,0x36,0x3b,0x38,0x39,0x28,0x34,0x29,0x3a,0x33,0x30,0x2d,0x36, + 0x2e,0x20,0x64,0x6f,0x69,0x3a,0x31,0x30,0x2e,0x32,0x33,0x39,0x31,0x39,0x2f,0x55, + 0x52,0x53,0x49,0x52,0x53,0x42,0x2e,0x32,0x30,0x31,0x36,0x2e,0x37,0x39,0x30,0x39, + 0x39,0x39,0x35,0xa,0x23,0x20,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x69,0x65,0x65, + 0x65,0x78,0x70,0x6c,0x6f,0x72,0x65,0x2e,0x69,0x65,0x65,0x65,0x2e,0x6f,0x72,0x67, + 0x2f,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2f,0x37,0x39,0x30,0x39,0x39,0x39, + 0x35,0x2f,0xa,0x23,0x20,0x54,0x68,0x65,0x72,0x65,0x20,0x77,0x65,0x72,0x65,0x20, + 0x6e,0x6f,0x20,0x6c,0x65,0x61,0x70,0x20,0x73,0x65,0x63,0x6f,0x6e,0x64,0x73,0x20, + 0x62,0x65,0x66,0x6f,0x72,0x65,0x20,0x31,0x39,0x37,0x32,0x2c,0x20,0x62,0x65,0x63, + 0x61,0x75,0x73,0x65,0x20,0x74,0x68,0x65,0x20,0x6f,0x66,0x66,0x69,0x63,0x69,0x61, + 0x6c,0x20,0x6d,0x65,0x63,0x68,0x61,0x6e,0x69,0x73,0x6d,0xa,0x23,0x20,0x61,0x63, + 0x63,0x6f,0x75,0x6e,0x74,0x69,0x6e,0x67,0x20,0x66,0x6f,0x72,0x20,0x74,0x68,0x65, + 0x20,0x64,0x69,0x73,0x63,0x72,0x65,0x70,0x61,0x6e,0x63,0x79,0x20,0x62,0x65,0x74, + 0x77,0x65,0x65,0x6e,0x20,0x61,0x74,0x6f,0x6d,0x69,0x63,0x20,0x74,0x69,0x6d,0x65, + 0x20,0x61,0x6e,0x64,0x20,0x74,0x68,0x65,0x20,0x65,0x61,0x72,0x74,0x68,0x27,0x73, + 0x20,0x72,0x6f,0x74,0x61,0x74,0x69,0x6f,0x6e,0xa,0x23,0x20,0x64,0x69,0x64,0x20, + 0x6e,0x6f,0x74,0x20,0x65,0x78,0x69,0x73,0x74,0x20,0x75,0x6e,0x74,0x69,0x6c,0x20, + 0x74,0x68,0x65,0x20,0x65,0x61,0x72,0x6c,0x79,0x20,0x31,0x39,0x37,0x30,0x73,0x2e, + 0xa,0xa,0x23,0x20,0x54,0x68,0x65,0x20,0x63,0x6f,0x72,0x72,0x65,0x63,0x74,0x69, + 0x6f,0x6e,0x20,0x28,0x2b,0x20,0x6f,0x72,0x20,0x2d,0x29,0x20,0x69,0x73,0x20,0x6d, + 0x61,0x64,0x65,0x20,0x61,0x74,0x20,0x74,0x68,0x65,0x20,0x67,0x69,0x76,0x65,0x6e, + 0x20,0x74,0x69,0x6d,0x65,0x2c,0x20,0x73,0x6f,0x20,0x6c,0x69,0x6e,0x65,0x73,0xa, + 0x23,0x20,0x77,0x69,0x6c,0x6c,0x20,0x74,0x79,0x70,0x69,0x63,0x61,0x6c,0x6c,0x79, + 0x20,0x6c,0x6f,0x6f,0x6b,0x20,0x6c,0x69,0x6b,0x65,0x3a,0xa,0x23,0x9,0x4c,0x65, + 0x61,0x70,0x9,0x59,0x45,0x41,0x52,0x9,0x4d,0x4f,0x4e,0x9,0x44,0x41,0x59,0x9, + 0x32,0x33,0x3a,0x35,0x39,0x3a,0x36,0x30,0x9,0x2b,0x9,0x52,0x2f,0x53,0xa,0x23, + 0x20,0x6f,0x72,0xa,0x23,0x9,0x4c,0x65,0x61,0x70,0x9,0x59,0x45,0x41,0x52,0x9, + 0x4d,0x4f,0x4e,0x9,0x44,0x41,0x59,0x9,0x32,0x33,0x3a,0x35,0x39,0x3a,0x35,0x39, + 0x9,0x2d,0x9,0x52,0x2f,0x53,0xa,0xa,0x23,0x20,0x49,0x66,0x20,0x74,0x68,0x65, + 0x20,0x6c,0x65,0x61,0x70,0x73,0x65,0x63,0x6f,0x6e,0x64,0x20,0x69,0x73,0x20,0x52, + 0x6f,0x6c,0x6c,0x69,0x6e,0x67,0x20,0x28,0x52,0x29,0x20,0x74,0x68,0x65,0x20,0x67, + 0x69,0x76,0x65,0x6e,0x20,0x74,0x69,0x6d,0x65,0x20,0x69,0x73,0x20,0x6c,0x6f,0x63, + 0x61,0x6c,0x20,0x74,0x69,0x6d,0x65,0x2e,0xa,0x23,0x20,0x49,0x66,0x20,0x74,0x68, + 0x65,0x20,0x6c,0x65,0x61,0x70,0x73,0x65,0x63,0x6f,0x6e,0x64,0x20,0x69,0x73,0x20, + 0x53,0x74,0x61,0x74,0x69,0x6f,0x6e,0x61,0x72,0x79,0x20,0x28,0x53,0x29,0x20,0x74, + 0x68,0x65,0x20,0x67,0x69,0x76,0x65,0x6e,0x20,0x74,0x69,0x6d,0x65,0x20,0x69,0x73, + 0x20,0x55,0x54,0x43,0x2e,0xa,0xa,0x23,0x20,0x4c,0x65,0x61,0x70,0x9,0x59,0x45, + 0x41,0x52,0x9,0x4d,0x4f,0x4e,0x54,0x48,0x9,0x44,0x41,0x59,0x9,0x48,0x48,0x3a, + 0x4d,0x4d,0x3a,0x53,0x53,0x9,0x43,0x4f,0x52,0x52,0x9,0x52,0x2f,0x53,0xa,0x4c, + 0x65,0x61,0x70,0x9,0x31,0x39,0x37,0x32,0x9,0x4a,0x75,0x6e,0x9,0x33,0x30,0x9, + 0x32,0x33,0x3a,0x35,0x39,0x3a,0x36,0x30,0x9,0x2b,0x9,0x53,0xa,0x4c,0x65,0x61, + 0x70,0x9,0x31,0x39,0x37,0x32,0x9,0x44,0x65,0x63,0x9,0x33,0x31,0x9,0x32,0x33, + 0x3a,0x35,0x39,0x3a,0x36,0x30,0x9,0x2b,0x9,0x53,0xa,0x4c,0x65,0x61,0x70,0x9, + 0x31,0x39,0x37,0x33,0x9,0x44,0x65,0x63,0x9,0x33,0x31,0x9,0x32,0x33,0x3a,0x35, + 0x39,0x3a,0x36,0x30,0x9,0x2b,0x9,0x53,0xa,0x4c,0x65,0x61,0x70,0x9,0x31,0x39, + 0x37,0x34,0x9,0x44,0x65,0x63,0x9,0x33,0x31,0x9,0x32,0x33,0x3a,0x35,0x39,0x3a, + 0x36,0x30,0x9,0x2b,0x9,0x53,0xa,0x4c,0x65,0x61,0x70,0x9,0x31,0x39,0x37,0x35, + 0x9,0x44,0x65,0x63,0x9,0x33,0x31,0x9,0x32,0x33,0x3a,0x35,0x39,0x3a,0x36,0x30, + 0x9,0x2b,0x9,0x53,0xa,0x4c,0x65,0x61,0x70,0x9,0x31,0x39,0x37,0x36,0x9,0x44, + 0x65,0x63,0x9,0x33,0x31,0x9,0x32,0x33,0x3a,0x35,0x39,0x3a,0x36,0x30,0x9,0x2b, + 0x9,0x53,0xa,0x4c,0x65,0x61,0x70,0x9,0x31,0x39,0x37,0x37,0x9,0x44,0x65,0x63, + 0x9,0x33,0x31,0x9,0x32,0x33,0x3a,0x35,0x39,0x3a,0x36,0x30,0x9,0x2b,0x9,0x53, + 0xa,0x4c,0x65,0x61,0x70,0x9,0x31,0x39,0x37,0x38,0x9,0x44,0x65,0x63,0x9,0x33, + 0x31,0x9,0x32,0x33,0x3a,0x35,0x39,0x3a,0x36,0x30,0x9,0x2b,0x9,0x53,0xa,0x4c, + 0x65,0x61,0x70,0x9,0x31,0x39,0x37,0x39,0x9,0x44,0x65,0x63,0x9,0x33,0x31,0x9, + 0x32,0x33,0x3a,0x35,0x39,0x3a,0x36,0x30,0x9,0x2b,0x9,0x53,0xa,0x4c,0x65,0x61, + 0x70,0x9,0x31,0x39,0x38,0x31,0x9,0x4a,0x75,0x6e,0x9,0x33,0x30,0x9,0x32,0x33, + 0x3a,0x35,0x39,0x3a,0x36,0x30,0x9,0x2b,0x9,0x53,0xa,0x4c,0x65,0x61,0x70,0x9, + 0x31,0x39,0x38,0x32,0x9,0x4a,0x75,0x6e,0x9,0x33,0x30,0x9,0x32,0x33,0x3a,0x35, + 0x39,0x3a,0x36,0x30,0x9,0x2b,0x9,0x53,0xa,0x4c,0x65,0x61,0x70,0x9,0x31,0x39, + 0x38,0x33,0x9,0x4a,0x75,0x6e,0x9,0x33,0x30,0x9,0x32,0x33,0x3a,0x35,0x39,0x3a, + 0x36,0x30,0x9,0x2b,0x9,0x53,0xa,0x4c,0x65,0x61,0x70,0x9,0x31,0x39,0x38,0x35, + 0x9,0x4a,0x75,0x6e,0x9,0x33,0x30,0x9,0x32,0x33,0x3a,0x35,0x39,0x3a,0x36,0x30, + 0x9,0x2b,0x9,0x53,0xa,0x4c,0x65,0x61,0x70,0x9,0x31,0x39,0x38,0x37,0x9,0x44, + 0x65,0x63,0x9,0x33,0x31,0x9,0x32,0x33,0x3a,0x35,0x39,0x3a,0x36,0x30,0x9,0x2b, + 0x9,0x53,0xa,0x4c,0x65,0x61,0x70,0x9,0x31,0x39,0x38,0x39,0x9,0x44,0x65,0x63, + 0x9,0x33,0x31,0x9,0x32,0x33,0x3a,0x35,0x39,0x3a,0x36,0x30,0x9,0x2b,0x9,0x53, + 0xa,0x4c,0x65,0x61,0x70,0x9,0x31,0x39,0x39,0x30,0x9,0x44,0x65,0x63,0x9,0x33, + 0x31,0x9,0x32,0x33,0x3a,0x35,0x39,0x3a,0x36,0x30,0x9,0x2b,0x9,0x53,0xa,0x4c, + 0x65,0x61,0x70,0x9,0x31,0x39,0x39,0x32,0x9,0x4a,0x75,0x6e,0x9,0x33,0x30,0x9, + 0x32,0x33,0x3a,0x35,0x39,0x3a,0x36,0x30,0x9,0x2b,0x9,0x53,0xa,0x4c,0x65,0x61, + 0x70,0x9,0x31,0x39,0x39,0x33,0x9,0x4a,0x75,0x6e,0x9,0x33,0x30,0x9,0x32,0x33, + 0x3a,0x35,0x39,0x3a,0x36,0x30,0x9,0x2b,0x9,0x53,0xa,0x4c,0x65,0x61,0x70,0x9, + 0x31,0x39,0x39,0x34,0x9,0x4a,0x75,0x6e,0x9,0x33,0x30,0x9,0x32,0x33,0x3a,0x35, + 0x39,0x3a,0x36,0x30,0x9,0x2b,0x9,0x53,0xa,0x4c,0x65,0x61,0x70,0x9,0x31,0x39, + 0x39,0x35,0x9,0x44,0x65,0x63,0x9,0x33,0x31,0x9,0x32,0x33,0x3a,0x35,0x39,0x3a, + 0x36,0x30,0x9,0x2b,0x9,0x53,0xa,0x4c,0x65,0x61,0x70,0x9,0x31,0x39,0x39,0x37, + 0x9,0x4a,0x75,0x6e,0x9,0x33,0x30,0x9,0x32,0x33,0x3a,0x35,0x39,0x3a,0x36,0x30, + 0x9,0x2b,0x9,0x53,0xa,0x4c,0x65,0x61,0x70,0x9,0x31,0x39,0x39,0x38,0x9,0x44, + 0x65,0x63,0x9,0x33,0x31,0x9,0x32,0x33,0x3a,0x35,0x39,0x3a,0x36,0x30,0x9,0x2b, + 0x9,0x53,0xa,0x4c,0x65,0x61,0x70,0x9,0x32,0x30,0x30,0x35,0x9,0x44,0x65,0x63, + 0x9,0x33,0x31,0x9,0x32,0x33,0x3a,0x35,0x39,0x3a,0x36,0x30,0x9,0x2b,0x9,0x53, + 0xa,0x4c,0x65,0x61,0x70,0x9,0x32,0x30,0x30,0x38,0x9,0x44,0x65,0x63,0x9,0x33, + 0x31,0x9,0x32,0x33,0x3a,0x35,0x39,0x3a,0x36,0x30,0x9,0x2b,0x9,0x53,0xa,0x4c, + 0x65,0x61,0x70,0x9,0x32,0x30,0x31,0x32,0x9,0x4a,0x75,0x6e,0x9,0x33,0x30,0x9, + 0x32,0x33,0x3a,0x35,0x39,0x3a,0x36,0x30,0x9,0x2b,0x9,0x53,0xa,0x4c,0x65,0x61, + 0x70,0x9,0x32,0x30,0x31,0x35,0x9,0x4a,0x75,0x6e,0x9,0x33,0x30,0x9,0x32,0x33, + 0x3a,0x35,0x39,0x3a,0x36,0x30,0x9,0x2b,0x9,0x53,0xa,0x4c,0x65,0x61,0x70,0x9, + 0x32,0x30,0x31,0x36,0x9,0x44,0x65,0x63,0x9,0x33,0x31,0x9,0x32,0x33,0x3a,0x35, + 0x39,0x3a,0x36,0x30,0x9,0x2b,0x9,0x53,0xa,0xa,0x23,0x9,0x55,0x70,0x64,0x61, + 0x74,0x65,0x64,0x20,0x74,0x68,0x72,0x6f,0x75,0x67,0x68,0x20,0x49,0x45,0x52,0x53, + 0x20,0x42,0x75,0x6c,0x6c,0x65,0x74,0x69,0x6e,0x20,0x43,0x35,0x34,0xa,0x23,0x9, + 0x46,0x69,0x6c,0x65,0x20,0x65,0x78,0x70,0x69,0x72,0x65,0x73,0x20,0x6f,0x6e,0x3a, + 0x20,0x20,0x32,0x38,0x20,0x4a,0x75,0x6e,0x65,0x20,0x32,0x30,0x31,0x38,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/UTC + 0x0,0x0,0x0,0x7f, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x8f,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xa,0x80,0x0,0x0,0x0,0x9c, - 0x4e,0xad,0xa4,0x9c,0xbc,0x27,0xf8,0xcb,0x54,0xba,0x8,0xcb,0xc7,0x5e,0x78,0xcc, - 0xb7,0x5d,0x88,0xcd,0xa7,0x40,0x78,0xce,0xa0,0x7a,0x8,0xcf,0x87,0x22,0x78,0x3, - 0x70,0x40,0x88,0x4,0xd,0x23,0x8,0x5,0x50,0x22,0x88,0x5,0xf6,0x3f,0x88,0x7, - 0x30,0x4,0x88,0x7,0xd6,0x21,0x88,0x9,0xf,0xe6,0x88,0x9,0xb6,0x3,0x88,0xa, - 0xef,0xc8,0x88,0xb,0x9f,0x20,0x8,0xc,0xd8,0xe5,0x8,0xd,0x7f,0x2,0x8,0xe, - 0xb8,0xc7,0x8,0xf,0x5e,0xe4,0x8,0x10,0x98,0xa9,0x8,0x11,0x3e,0xc6,0x8,0x12, - 0x78,0x8b,0x8,0x13,0x1e,0xa8,0x8,0x14,0x58,0x6d,0x8,0x14,0xfe,0x8a,0x8,0x16, - 0x38,0x4f,0x8,0x17,0xc,0x90,0x88,0x18,0x21,0x6b,0x88,0x18,0xc7,0x88,0x88,0x1a, - 0x1,0x4d,0x88,0x1a,0xa7,0x6a,0x88,0x1b,0xe1,0x2f,0x88,0x1c,0x87,0x4c,0x88,0x1d, - 0xc1,0x11,0x88,0x1e,0x79,0xa3,0x88,0x1f,0x97,0xb9,0x8,0x20,0x59,0x85,0x88,0x21, - 0x80,0xd5,0x88,0x22,0x42,0xa2,0x8,0x23,0x69,0xf2,0x8,0x24,0x22,0x84,0x8,0x25, - 0x49,0xd4,0x8,0x25,0xef,0xf1,0x8,0x27,0x29,0xb6,0x8,0x27,0xcf,0xd3,0x8,0x29, - 0x9,0x98,0x8,0x29,0xaf,0xb5,0x8,0x2a,0xe9,0x7a,0x8,0x2b,0x98,0xd1,0x88,0x2c, - 0xd2,0x96,0x88,0x2d,0x78,0xb3,0x88,0x2e,0xb2,0x78,0x88,0x2f,0x58,0x95,0x88,0x30, - 0x92,0x5a,0x88,0x31,0x5d,0x61,0x88,0x32,0x72,0x3c,0x88,0x33,0x3d,0x43,0x88,0x34, - 0x52,0x1e,0x88,0x35,0x1d,0x25,0x88,0x36,0x32,0x0,0x88,0x36,0xfd,0x7,0x88,0x38, - 0x1b,0x1d,0x8,0x38,0x6c,0xaf,0xd8,0x38,0xdc,0xe9,0x88,0x39,0xfa,0xff,0x8,0x3a, - 0xbc,0xcb,0x88,0x3b,0xda,0xe1,0x8,0x3c,0xa5,0xe8,0x8,0x3d,0xba,0xc3,0x8,0x3e, - 0x85,0xca,0x8,0x3f,0x9a,0xa5,0x8,0x40,0x65,0xac,0x8,0x41,0x83,0xc1,0x88,0x42, - 0x45,0x8e,0x8,0x43,0x63,0xa3,0x88,0x44,0x2e,0xaa,0x88,0x45,0x43,0x85,0x88,0x46, - 0x5,0x52,0x8,0x47,0x23,0x67,0x88,0x47,0xf7,0xa9,0x8,0x48,0xe7,0x9a,0x8,0x49, - 0xd7,0x8b,0x8,0x4a,0xc7,0x7c,0x8,0x4b,0xb7,0x6d,0x8,0x4c,0xa7,0x5e,0x8,0x4d, - 0x97,0x4f,0x8,0x4e,0x87,0x40,0x8,0x4f,0x77,0x31,0x8,0x50,0x70,0x5c,0x88,0x51, - 0x60,0x4d,0x88,0x52,0x50,0x3e,0x88,0x53,0x40,0x2f,0x88,0x54,0x30,0x20,0x88,0x55, - 0x20,0x11,0x88,0x56,0x10,0x2,0x88,0x56,0xff,0xf3,0x88,0x57,0xef,0xe4,0x88,0x58, - 0xdf,0xd5,0x88,0x59,0xcf,0xc6,0x88,0x5a,0xbf,0xb7,0x88,0x5b,0xb8,0xe3,0x8,0x5c, - 0xa8,0xd4,0x8,0x5d,0x98,0xc5,0x8,0x5e,0x88,0xb6,0x8,0x5f,0x78,0xa7,0x8,0x60, - 0x68,0x98,0x8,0x61,0x58,0x89,0x8,0x62,0x48,0x7a,0x8,0x63,0x38,0x6b,0x8,0x64, - 0x28,0x5c,0x8,0x65,0x18,0x4d,0x8,0x66,0x11,0x78,0x88,0x67,0x1,0x69,0x88,0x67, - 0xf1,0x5a,0x88,0x68,0xe1,0x4b,0x88,0x69,0xd1,0x3c,0x88,0x6a,0xc1,0x2d,0x88,0x6b, - 0xb1,0x1e,0x88,0x6c,0xa1,0xf,0x88,0x6d,0x91,0x0,0x88,0x6e,0x80,0xf1,0x88,0x6f, - 0x70,0xe2,0x88,0x70,0x6a,0xe,0x8,0x71,0x59,0xff,0x8,0x72,0x49,0xf0,0x8,0x73, - 0x39,0xe1,0x8,0x74,0x29,0xd2,0x8,0x75,0x19,0xc3,0x8,0x76,0x9,0xb4,0x8,0x76, - 0xf9,0xa5,0x8,0x77,0xe9,0x96,0x8,0x78,0xd9,0x87,0x8,0x79,0xc9,0x78,0x8,0x7a, - 0xb9,0x69,0x8,0x7b,0xb2,0x94,0x88,0x7c,0xa2,0x85,0x88,0x7d,0x92,0x76,0x88,0x7e, - 0x82,0x67,0x88,0x7f,0x72,0x58,0x88,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x1,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x0,0x0,0x7e,0x90,0x0,0x0,0x0,0x0,0x93,0xa8, - 0x1,0x5,0x0,0x0,0x85,0x98,0x0,0x0,0x0,0x0,0x93,0xa8,0x1,0x5,0x0,0x0, - 0x85,0x98,0x0,0x0,0x41,0x43,0x53,0x54,0x0,0x41,0x43,0x44,0x54,0x0,0x0,0x0, - 0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7, - 0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0x0,0x0,0x0,0x7, - 0x0,0x0,0x0,0x13,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff, - 0x73,0x16,0x88,0x64,0xff,0xff,0xff,0xff,0x76,0x4,0xa5,0xe0,0xff,0xff,0xff,0xff, - 0x7b,0x12,0x3,0x70,0xff,0xff,0xff,0xff,0x9c,0x4e,0xad,0xa4,0xff,0xff,0xff,0xff, - 0x9c,0xbc,0x27,0xf8,0xff,0xff,0xff,0xff,0xcb,0x54,0xba,0x8,0xff,0xff,0xff,0xff, - 0xcb,0xc7,0x5e,0x78,0xff,0xff,0xff,0xff,0xcc,0xb7,0x5d,0x88,0xff,0xff,0xff,0xff, - 0xcd,0xa7,0x40,0x78,0xff,0xff,0xff,0xff,0xce,0xa0,0x7a,0x8,0xff,0xff,0xff,0xff, - 0xcf,0x87,0x22,0x78,0x0,0x0,0x0,0x0,0x3,0x70,0x40,0x88,0x0,0x0,0x0,0x0, - 0x4,0xd,0x23,0x8,0x0,0x0,0x0,0x0,0x5,0x50,0x22,0x88,0x0,0x0,0x0,0x0, - 0x5,0xf6,0x3f,0x88,0x0,0x0,0x0,0x0,0x7,0x30,0x4,0x88,0x0,0x0,0x0,0x0, - 0x7,0xd6,0x21,0x88,0x0,0x0,0x0,0x0,0x9,0xf,0xe6,0x88,0x0,0x0,0x0,0x0, - 0x9,0xb6,0x3,0x88,0x0,0x0,0x0,0x0,0xa,0xef,0xc8,0x88,0x0,0x0,0x0,0x0, - 0xb,0x9f,0x20,0x8,0x0,0x0,0x0,0x0,0xc,0xd8,0xe5,0x8,0x0,0x0,0x0,0x0, - 0xd,0x7f,0x2,0x8,0x0,0x0,0x0,0x0,0xe,0xb8,0xc7,0x8,0x0,0x0,0x0,0x0, - 0xf,0x5e,0xe4,0x8,0x0,0x0,0x0,0x0,0x10,0x98,0xa9,0x8,0x0,0x0,0x0,0x0, - 0x11,0x3e,0xc6,0x8,0x0,0x0,0x0,0x0,0x12,0x78,0x8b,0x8,0x0,0x0,0x0,0x0, - 0x13,0x1e,0xa8,0x8,0x0,0x0,0x0,0x0,0x14,0x58,0x6d,0x8,0x0,0x0,0x0,0x0, - 0x14,0xfe,0x8a,0x8,0x0,0x0,0x0,0x0,0x16,0x38,0x4f,0x8,0x0,0x0,0x0,0x0, - 0x17,0xc,0x90,0x88,0x0,0x0,0x0,0x0,0x18,0x21,0x6b,0x88,0x0,0x0,0x0,0x0, - 0x18,0xc7,0x88,0x88,0x0,0x0,0x0,0x0,0x1a,0x1,0x4d,0x88,0x0,0x0,0x0,0x0, - 0x1a,0xa7,0x6a,0x88,0x0,0x0,0x0,0x0,0x1b,0xe1,0x2f,0x88,0x0,0x0,0x0,0x0, - 0x1c,0x87,0x4c,0x88,0x0,0x0,0x0,0x0,0x1d,0xc1,0x11,0x88,0x0,0x0,0x0,0x0, - 0x1e,0x79,0xa3,0x88,0x0,0x0,0x0,0x0,0x1f,0x97,0xb9,0x8,0x0,0x0,0x0,0x0, - 0x20,0x59,0x85,0x88,0x0,0x0,0x0,0x0,0x21,0x80,0xd5,0x88,0x0,0x0,0x0,0x0, - 0x22,0x42,0xa2,0x8,0x0,0x0,0x0,0x0,0x23,0x69,0xf2,0x8,0x0,0x0,0x0,0x0, - 0x24,0x22,0x84,0x8,0x0,0x0,0x0,0x0,0x25,0x49,0xd4,0x8,0x0,0x0,0x0,0x0, - 0x25,0xef,0xf1,0x8,0x0,0x0,0x0,0x0,0x27,0x29,0xb6,0x8,0x0,0x0,0x0,0x0, - 0x27,0xcf,0xd3,0x8,0x0,0x0,0x0,0x0,0x29,0x9,0x98,0x8,0x0,0x0,0x0,0x0, - 0x29,0xaf,0xb5,0x8,0x0,0x0,0x0,0x0,0x2a,0xe9,0x7a,0x8,0x0,0x0,0x0,0x0, - 0x2b,0x98,0xd1,0x88,0x0,0x0,0x0,0x0,0x2c,0xd2,0x96,0x88,0x0,0x0,0x0,0x0, - 0x2d,0x78,0xb3,0x88,0x0,0x0,0x0,0x0,0x2e,0xb2,0x78,0x88,0x0,0x0,0x0,0x0, - 0x2f,0x58,0x95,0x88,0x0,0x0,0x0,0x0,0x30,0x92,0x5a,0x88,0x0,0x0,0x0,0x0, - 0x31,0x5d,0x61,0x88,0x0,0x0,0x0,0x0,0x32,0x72,0x3c,0x88,0x0,0x0,0x0,0x0, - 0x33,0x3d,0x43,0x88,0x0,0x0,0x0,0x0,0x34,0x52,0x1e,0x88,0x0,0x0,0x0,0x0, - 0x35,0x1d,0x25,0x88,0x0,0x0,0x0,0x0,0x36,0x32,0x0,0x88,0x0,0x0,0x0,0x0, - 0x36,0xfd,0x7,0x88,0x0,0x0,0x0,0x0,0x38,0x1b,0x1d,0x8,0x0,0x0,0x0,0x0, - 0x38,0x6c,0xaf,0xd8,0x0,0x0,0x0,0x0,0x38,0xdc,0xe9,0x88,0x0,0x0,0x0,0x0, - 0x39,0xfa,0xff,0x8,0x0,0x0,0x0,0x0,0x3a,0xbc,0xcb,0x88,0x0,0x0,0x0,0x0, - 0x3b,0xda,0xe1,0x8,0x0,0x0,0x0,0x0,0x3c,0xa5,0xe8,0x8,0x0,0x0,0x0,0x0, - 0x3d,0xba,0xc3,0x8,0x0,0x0,0x0,0x0,0x3e,0x85,0xca,0x8,0x0,0x0,0x0,0x0, - 0x3f,0x9a,0xa5,0x8,0x0,0x0,0x0,0x0,0x40,0x65,0xac,0x8,0x0,0x0,0x0,0x0, - 0x41,0x83,0xc1,0x88,0x0,0x0,0x0,0x0,0x42,0x45,0x8e,0x8,0x0,0x0,0x0,0x0, - 0x43,0x63,0xa3,0x88,0x0,0x0,0x0,0x0,0x44,0x2e,0xaa,0x88,0x0,0x0,0x0,0x0, - 0x45,0x43,0x85,0x88,0x0,0x0,0x0,0x0,0x46,0x5,0x52,0x8,0x0,0x0,0x0,0x0, - 0x47,0x23,0x67,0x88,0x0,0x0,0x0,0x0,0x47,0xf7,0xa9,0x8,0x0,0x0,0x0,0x0, - 0x48,0xe7,0x9a,0x8,0x0,0x0,0x0,0x0,0x49,0xd7,0x8b,0x8,0x0,0x0,0x0,0x0, - 0x4a,0xc7,0x7c,0x8,0x0,0x0,0x0,0x0,0x4b,0xb7,0x6d,0x8,0x0,0x0,0x0,0x0, - 0x4c,0xa7,0x5e,0x8,0x0,0x0,0x0,0x0,0x4d,0x97,0x4f,0x8,0x0,0x0,0x0,0x0, - 0x4e,0x87,0x40,0x8,0x0,0x0,0x0,0x0,0x4f,0x77,0x31,0x8,0x0,0x0,0x0,0x0, - 0x50,0x70,0x5c,0x88,0x0,0x0,0x0,0x0,0x51,0x60,0x4d,0x88,0x0,0x0,0x0,0x0, - 0x52,0x50,0x3e,0x88,0x0,0x0,0x0,0x0,0x53,0x40,0x2f,0x88,0x0,0x0,0x0,0x0, - 0x54,0x30,0x20,0x88,0x0,0x0,0x0,0x0,0x55,0x20,0x11,0x88,0x0,0x0,0x0,0x0, - 0x56,0x10,0x2,0x88,0x0,0x0,0x0,0x0,0x56,0xff,0xf3,0x88,0x0,0x0,0x0,0x0, - 0x57,0xef,0xe4,0x88,0x0,0x0,0x0,0x0,0x58,0xdf,0xd5,0x88,0x0,0x0,0x0,0x0, - 0x59,0xcf,0xc6,0x88,0x0,0x0,0x0,0x0,0x5a,0xbf,0xb7,0x88,0x0,0x0,0x0,0x0, - 0x5b,0xb8,0xe3,0x8,0x0,0x0,0x0,0x0,0x5c,0xa8,0xd4,0x8,0x0,0x0,0x0,0x0, - 0x5d,0x98,0xc5,0x8,0x0,0x0,0x0,0x0,0x5e,0x88,0xb6,0x8,0x0,0x0,0x0,0x0, - 0x5f,0x78,0xa7,0x8,0x0,0x0,0x0,0x0,0x60,0x68,0x98,0x8,0x0,0x0,0x0,0x0, - 0x61,0x58,0x89,0x8,0x0,0x0,0x0,0x0,0x62,0x48,0x7a,0x8,0x0,0x0,0x0,0x0, - 0x63,0x38,0x6b,0x8,0x0,0x0,0x0,0x0,0x64,0x28,0x5c,0x8,0x0,0x0,0x0,0x0, - 0x65,0x18,0x4d,0x8,0x0,0x0,0x0,0x0,0x66,0x11,0x78,0x88,0x0,0x0,0x0,0x0, - 0x67,0x1,0x69,0x88,0x0,0x0,0x0,0x0,0x67,0xf1,0x5a,0x88,0x0,0x0,0x0,0x0, - 0x68,0xe1,0x4b,0x88,0x0,0x0,0x0,0x0,0x69,0xd1,0x3c,0x88,0x0,0x0,0x0,0x0, - 0x6a,0xc1,0x2d,0x88,0x0,0x0,0x0,0x0,0x6b,0xb1,0x1e,0x88,0x0,0x0,0x0,0x0, - 0x6c,0xa1,0xf,0x88,0x0,0x0,0x0,0x0,0x6d,0x91,0x0,0x88,0x0,0x0,0x0,0x0, - 0x6e,0x80,0xf1,0x88,0x0,0x0,0x0,0x0,0x6f,0x70,0xe2,0x88,0x0,0x0,0x0,0x0, - 0x70,0x6a,0xe,0x8,0x0,0x0,0x0,0x0,0x71,0x59,0xff,0x8,0x0,0x0,0x0,0x0, - 0x72,0x49,0xf0,0x8,0x0,0x0,0x0,0x0,0x73,0x39,0xe1,0x8,0x0,0x0,0x0,0x0, - 0x74,0x29,0xd2,0x8,0x0,0x0,0x0,0x0,0x75,0x19,0xc3,0x8,0x0,0x0,0x0,0x0, - 0x76,0x9,0xb4,0x8,0x0,0x0,0x0,0x0,0x76,0xf9,0xa5,0x8,0x0,0x0,0x0,0x0, - 0x77,0xe9,0x96,0x8,0x0,0x0,0x0,0x0,0x78,0xd9,0x87,0x8,0x0,0x0,0x0,0x0, - 0x79,0xc9,0x78,0x8,0x0,0x0,0x0,0x0,0x7a,0xb9,0x69,0x8,0x0,0x0,0x0,0x0, - 0x7b,0xb2,0x94,0x88,0x0,0x0,0x0,0x0,0x7c,0xa2,0x85,0x88,0x0,0x0,0x0,0x0, - 0x7d,0x92,0x76,0x88,0x0,0x0,0x0,0x0,0x7e,0x82,0x67,0x88,0x0,0x0,0x0,0x0, - 0x7f,0x72,0x58,0x88,0x0,0x1,0x2,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x3,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x0,0x0,0x84,0x9c,0x0,0x0,0x0,0x0,0x8c,0xa0, - 0x0,0x4,0x0,0x0,0x7e,0x90,0x0,0x9,0x0,0x0,0x93,0xa8,0x1,0xe,0x0,0x0, - 0x85,0x98,0x0,0x9,0x0,0x0,0x93,0xa8,0x1,0xe,0x0,0x0,0x85,0x98,0x0,0x9, - 0x4c,0x4d,0x54,0x0,0x41,0x45,0x53,0x54,0x0,0x41,0x43,0x53,0x54,0x0,0x41,0x43, - 0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xa,0x41,0x43,0x53,0x54,0x2d,0x39,0x3a,0x33,0x30,0x41,0x43,0x44,0x54,0x2c, - 0x4d,0x31,0x30,0x2e,0x31,0x2e,0x30,0x2c,0x4d,0x34,0x2e,0x31,0x2e,0x30,0x2f,0x33, - 0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Australia/Yancowinna - 0x0,0x0,0x8,0xe2, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, + 0x0,0x55,0x54,0x43,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0, + 0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0, + 0x0,0x0,0x4,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x55,0x54,0x43,0x0,0x0,0x0,0xa,0x55,0x54,0x43,0x30,0xa, + // /home/konrad/src/smoke/tzone/db/version.txt + 0x0,0x0,0x0,0x6, + 0x32, + 0x30,0x31,0x37,0x63,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/EST5EDT + 0x0,0x0,0x8,0xf6, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x8f,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xa,0x80,0x0,0x0,0x0,0x9c, - 0x4e,0xad,0xa4,0x9c,0xbc,0x27,0xf8,0xcb,0x54,0xba,0x8,0xcb,0xc7,0x5e,0x78,0xcc, - 0xb7,0x5d,0x88,0xcd,0xa7,0x40,0x78,0xce,0xa0,0x7a,0x8,0xcf,0x87,0x22,0x78,0x3, - 0x70,0x40,0x88,0x4,0xd,0x23,0x8,0x5,0x50,0x22,0x88,0x5,0xf6,0x3f,0x88,0x7, - 0x30,0x4,0x88,0x7,0xd6,0x21,0x88,0x9,0xf,0xe6,0x88,0x9,0xb6,0x3,0x88,0xa, - 0xef,0xc8,0x88,0xb,0x9f,0x20,0x8,0xc,0xd8,0xe5,0x8,0xd,0x7f,0x2,0x8,0xe, - 0xb8,0xc7,0x8,0xf,0x5e,0xe4,0x8,0x10,0x98,0xa9,0x8,0x11,0x3e,0xc6,0x8,0x12, - 0x78,0x8b,0x8,0x13,0x1e,0xa8,0x8,0x14,0x58,0x6d,0x8,0x14,0xfe,0x8a,0x8,0x16, - 0x38,0x4f,0x8,0x17,0xc,0x90,0x88,0x18,0x21,0x6b,0x88,0x18,0xc7,0x88,0x88,0x1a, - 0x1,0x4d,0x88,0x1a,0xa7,0x6a,0x88,0x1b,0xe1,0x2f,0x88,0x1c,0x87,0x4c,0x88,0x1d, - 0xc1,0x11,0x88,0x1e,0x79,0xa3,0x88,0x1f,0x97,0xb9,0x8,0x20,0x59,0x85,0x88,0x21, - 0x80,0xd5,0x88,0x22,0x42,0xa2,0x8,0x23,0x69,0xf2,0x8,0x24,0x22,0x84,0x8,0x25, - 0x49,0xd4,0x8,0x25,0xef,0xf1,0x8,0x27,0x29,0xb6,0x8,0x27,0xcf,0xd3,0x8,0x29, - 0x9,0x98,0x8,0x29,0xaf,0xb5,0x8,0x2a,0xe9,0x7a,0x8,0x2b,0x98,0xd1,0x88,0x2c, - 0xd2,0x96,0x88,0x2d,0x78,0xb3,0x88,0x2e,0xb2,0x78,0x88,0x2f,0x58,0x95,0x88,0x30, - 0x92,0x5a,0x88,0x31,0x5d,0x61,0x88,0x32,0x72,0x3c,0x88,0x33,0x3d,0x43,0x88,0x34, - 0x52,0x1e,0x88,0x35,0x1d,0x25,0x88,0x36,0x32,0x0,0x88,0x36,0xfd,0x7,0x88,0x38, - 0x1b,0x1d,0x8,0x38,0x6c,0xaf,0xd8,0x38,0xdc,0xe9,0x88,0x39,0xfa,0xff,0x8,0x3a, - 0xbc,0xcb,0x88,0x3b,0xda,0xe1,0x8,0x3c,0xa5,0xe8,0x8,0x3d,0xba,0xc3,0x8,0x3e, - 0x85,0xca,0x8,0x3f,0x9a,0xa5,0x8,0x40,0x65,0xac,0x8,0x41,0x83,0xc1,0x88,0x42, - 0x45,0x8e,0x8,0x43,0x63,0xa3,0x88,0x44,0x2e,0xaa,0x88,0x45,0x43,0x85,0x88,0x46, - 0x5,0x52,0x8,0x47,0x23,0x67,0x88,0x47,0xf7,0xa9,0x8,0x48,0xe7,0x9a,0x8,0x49, - 0xd7,0x8b,0x8,0x4a,0xc7,0x7c,0x8,0x4b,0xb7,0x6d,0x8,0x4c,0xa7,0x5e,0x8,0x4d, - 0x97,0x4f,0x8,0x4e,0x87,0x40,0x8,0x4f,0x77,0x31,0x8,0x50,0x70,0x5c,0x88,0x51, - 0x60,0x4d,0x88,0x52,0x50,0x3e,0x88,0x53,0x40,0x2f,0x88,0x54,0x30,0x20,0x88,0x55, - 0x20,0x11,0x88,0x56,0x10,0x2,0x88,0x56,0xff,0xf3,0x88,0x57,0xef,0xe4,0x88,0x58, - 0xdf,0xd5,0x88,0x59,0xcf,0xc6,0x88,0x5a,0xbf,0xb7,0x88,0x5b,0xb8,0xe3,0x8,0x5c, - 0xa8,0xd4,0x8,0x5d,0x98,0xc5,0x8,0x5e,0x88,0xb6,0x8,0x5f,0x78,0xa7,0x8,0x60, - 0x68,0x98,0x8,0x61,0x58,0x89,0x8,0x62,0x48,0x7a,0x8,0x63,0x38,0x6b,0x8,0x64, - 0x28,0x5c,0x8,0x65,0x18,0x4d,0x8,0x66,0x11,0x78,0x88,0x67,0x1,0x69,0x88,0x67, - 0xf1,0x5a,0x88,0x68,0xe1,0x4b,0x88,0x69,0xd1,0x3c,0x88,0x6a,0xc1,0x2d,0x88,0x6b, - 0xb1,0x1e,0x88,0x6c,0xa1,0xf,0x88,0x6d,0x91,0x0,0x88,0x6e,0x80,0xf1,0x88,0x6f, - 0x70,0xe2,0x88,0x70,0x6a,0xe,0x8,0x71,0x59,0xff,0x8,0x72,0x49,0xf0,0x8,0x73, - 0x39,0xe1,0x8,0x74,0x29,0xd2,0x8,0x75,0x19,0xc3,0x8,0x76,0x9,0xb4,0x8,0x76, - 0xf9,0xa5,0x8,0x77,0xe9,0x96,0x8,0x78,0xd9,0x87,0x8,0x79,0xc9,0x78,0x8,0x7a, - 0xb9,0x69,0x8,0x7b,0xb2,0x94,0x88,0x7c,0xa2,0x85,0x88,0x7d,0x92,0x76,0x88,0x7e, - 0x82,0x67,0x88,0x7f,0x72,0x58,0x88,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x1,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x0,0x0,0x7e,0x90,0x0,0x0,0x0,0x0,0x93,0xa8, - 0x1,0x5,0x0,0x0,0x85,0x98,0x0,0x0,0x0,0x0,0x93,0xa8,0x1,0x5,0x0,0x0, - 0x85,0x98,0x0,0x0,0x41,0x43,0x53,0x54,0x0,0x41,0x43,0x44,0x54,0x0,0x0,0x0, - 0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7, - 0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0x0,0x0,0x0,0x7, - 0x0,0x0,0x0,0x13,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff, - 0x73,0x16,0x88,0x64,0xff,0xff,0xff,0xff,0x76,0x4,0xa5,0xe0,0xff,0xff,0xff,0xff, - 0x7b,0x12,0x3,0x70,0xff,0xff,0xff,0xff,0x9c,0x4e,0xad,0xa4,0xff,0xff,0xff,0xff, - 0x9c,0xbc,0x27,0xf8,0xff,0xff,0xff,0xff,0xcb,0x54,0xba,0x8,0xff,0xff,0xff,0xff, - 0xcb,0xc7,0x5e,0x78,0xff,0xff,0xff,0xff,0xcc,0xb7,0x5d,0x88,0xff,0xff,0xff,0xff, - 0xcd,0xa7,0x40,0x78,0xff,0xff,0xff,0xff,0xce,0xa0,0x7a,0x8,0xff,0xff,0xff,0xff, - 0xcf,0x87,0x22,0x78,0x0,0x0,0x0,0x0,0x3,0x70,0x40,0x88,0x0,0x0,0x0,0x0, - 0x4,0xd,0x23,0x8,0x0,0x0,0x0,0x0,0x5,0x50,0x22,0x88,0x0,0x0,0x0,0x0, - 0x5,0xf6,0x3f,0x88,0x0,0x0,0x0,0x0,0x7,0x30,0x4,0x88,0x0,0x0,0x0,0x0, - 0x7,0xd6,0x21,0x88,0x0,0x0,0x0,0x0,0x9,0xf,0xe6,0x88,0x0,0x0,0x0,0x0, - 0x9,0xb6,0x3,0x88,0x0,0x0,0x0,0x0,0xa,0xef,0xc8,0x88,0x0,0x0,0x0,0x0, - 0xb,0x9f,0x20,0x8,0x0,0x0,0x0,0x0,0xc,0xd8,0xe5,0x8,0x0,0x0,0x0,0x0, - 0xd,0x7f,0x2,0x8,0x0,0x0,0x0,0x0,0xe,0xb8,0xc7,0x8,0x0,0x0,0x0,0x0, - 0xf,0x5e,0xe4,0x8,0x0,0x0,0x0,0x0,0x10,0x98,0xa9,0x8,0x0,0x0,0x0,0x0, - 0x11,0x3e,0xc6,0x8,0x0,0x0,0x0,0x0,0x12,0x78,0x8b,0x8,0x0,0x0,0x0,0x0, - 0x13,0x1e,0xa8,0x8,0x0,0x0,0x0,0x0,0x14,0x58,0x6d,0x8,0x0,0x0,0x0,0x0, - 0x14,0xfe,0x8a,0x8,0x0,0x0,0x0,0x0,0x16,0x38,0x4f,0x8,0x0,0x0,0x0,0x0, - 0x17,0xc,0x90,0x88,0x0,0x0,0x0,0x0,0x18,0x21,0x6b,0x88,0x0,0x0,0x0,0x0, - 0x18,0xc7,0x88,0x88,0x0,0x0,0x0,0x0,0x1a,0x1,0x4d,0x88,0x0,0x0,0x0,0x0, - 0x1a,0xa7,0x6a,0x88,0x0,0x0,0x0,0x0,0x1b,0xe1,0x2f,0x88,0x0,0x0,0x0,0x0, - 0x1c,0x87,0x4c,0x88,0x0,0x0,0x0,0x0,0x1d,0xc1,0x11,0x88,0x0,0x0,0x0,0x0, - 0x1e,0x79,0xa3,0x88,0x0,0x0,0x0,0x0,0x1f,0x97,0xb9,0x8,0x0,0x0,0x0,0x0, - 0x20,0x59,0x85,0x88,0x0,0x0,0x0,0x0,0x21,0x80,0xd5,0x88,0x0,0x0,0x0,0x0, - 0x22,0x42,0xa2,0x8,0x0,0x0,0x0,0x0,0x23,0x69,0xf2,0x8,0x0,0x0,0x0,0x0, - 0x24,0x22,0x84,0x8,0x0,0x0,0x0,0x0,0x25,0x49,0xd4,0x8,0x0,0x0,0x0,0x0, - 0x25,0xef,0xf1,0x8,0x0,0x0,0x0,0x0,0x27,0x29,0xb6,0x8,0x0,0x0,0x0,0x0, - 0x27,0xcf,0xd3,0x8,0x0,0x0,0x0,0x0,0x29,0x9,0x98,0x8,0x0,0x0,0x0,0x0, - 0x29,0xaf,0xb5,0x8,0x0,0x0,0x0,0x0,0x2a,0xe9,0x7a,0x8,0x0,0x0,0x0,0x0, - 0x2b,0x98,0xd1,0x88,0x0,0x0,0x0,0x0,0x2c,0xd2,0x96,0x88,0x0,0x0,0x0,0x0, - 0x2d,0x78,0xb3,0x88,0x0,0x0,0x0,0x0,0x2e,0xb2,0x78,0x88,0x0,0x0,0x0,0x0, - 0x2f,0x58,0x95,0x88,0x0,0x0,0x0,0x0,0x30,0x92,0x5a,0x88,0x0,0x0,0x0,0x0, - 0x31,0x5d,0x61,0x88,0x0,0x0,0x0,0x0,0x32,0x72,0x3c,0x88,0x0,0x0,0x0,0x0, - 0x33,0x3d,0x43,0x88,0x0,0x0,0x0,0x0,0x34,0x52,0x1e,0x88,0x0,0x0,0x0,0x0, - 0x35,0x1d,0x25,0x88,0x0,0x0,0x0,0x0,0x36,0x32,0x0,0x88,0x0,0x0,0x0,0x0, - 0x36,0xfd,0x7,0x88,0x0,0x0,0x0,0x0,0x38,0x1b,0x1d,0x8,0x0,0x0,0x0,0x0, - 0x38,0x6c,0xaf,0xd8,0x0,0x0,0x0,0x0,0x38,0xdc,0xe9,0x88,0x0,0x0,0x0,0x0, - 0x39,0xfa,0xff,0x8,0x0,0x0,0x0,0x0,0x3a,0xbc,0xcb,0x88,0x0,0x0,0x0,0x0, - 0x3b,0xda,0xe1,0x8,0x0,0x0,0x0,0x0,0x3c,0xa5,0xe8,0x8,0x0,0x0,0x0,0x0, - 0x3d,0xba,0xc3,0x8,0x0,0x0,0x0,0x0,0x3e,0x85,0xca,0x8,0x0,0x0,0x0,0x0, - 0x3f,0x9a,0xa5,0x8,0x0,0x0,0x0,0x0,0x40,0x65,0xac,0x8,0x0,0x0,0x0,0x0, - 0x41,0x83,0xc1,0x88,0x0,0x0,0x0,0x0,0x42,0x45,0x8e,0x8,0x0,0x0,0x0,0x0, - 0x43,0x63,0xa3,0x88,0x0,0x0,0x0,0x0,0x44,0x2e,0xaa,0x88,0x0,0x0,0x0,0x0, - 0x45,0x43,0x85,0x88,0x0,0x0,0x0,0x0,0x46,0x5,0x52,0x8,0x0,0x0,0x0,0x0, - 0x47,0x23,0x67,0x88,0x0,0x0,0x0,0x0,0x47,0xf7,0xa9,0x8,0x0,0x0,0x0,0x0, - 0x48,0xe7,0x9a,0x8,0x0,0x0,0x0,0x0,0x49,0xd7,0x8b,0x8,0x0,0x0,0x0,0x0, - 0x4a,0xc7,0x7c,0x8,0x0,0x0,0x0,0x0,0x4b,0xb7,0x6d,0x8,0x0,0x0,0x0,0x0, - 0x4c,0xa7,0x5e,0x8,0x0,0x0,0x0,0x0,0x4d,0x97,0x4f,0x8,0x0,0x0,0x0,0x0, - 0x4e,0x87,0x40,0x8,0x0,0x0,0x0,0x0,0x4f,0x77,0x31,0x8,0x0,0x0,0x0,0x0, - 0x50,0x70,0x5c,0x88,0x0,0x0,0x0,0x0,0x51,0x60,0x4d,0x88,0x0,0x0,0x0,0x0, - 0x52,0x50,0x3e,0x88,0x0,0x0,0x0,0x0,0x53,0x40,0x2f,0x88,0x0,0x0,0x0,0x0, - 0x54,0x30,0x20,0x88,0x0,0x0,0x0,0x0,0x55,0x20,0x11,0x88,0x0,0x0,0x0,0x0, - 0x56,0x10,0x2,0x88,0x0,0x0,0x0,0x0,0x56,0xff,0xf3,0x88,0x0,0x0,0x0,0x0, - 0x57,0xef,0xe4,0x88,0x0,0x0,0x0,0x0,0x58,0xdf,0xd5,0x88,0x0,0x0,0x0,0x0, - 0x59,0xcf,0xc6,0x88,0x0,0x0,0x0,0x0,0x5a,0xbf,0xb7,0x88,0x0,0x0,0x0,0x0, - 0x5b,0xb8,0xe3,0x8,0x0,0x0,0x0,0x0,0x5c,0xa8,0xd4,0x8,0x0,0x0,0x0,0x0, - 0x5d,0x98,0xc5,0x8,0x0,0x0,0x0,0x0,0x5e,0x88,0xb6,0x8,0x0,0x0,0x0,0x0, - 0x5f,0x78,0xa7,0x8,0x0,0x0,0x0,0x0,0x60,0x68,0x98,0x8,0x0,0x0,0x0,0x0, - 0x61,0x58,0x89,0x8,0x0,0x0,0x0,0x0,0x62,0x48,0x7a,0x8,0x0,0x0,0x0,0x0, - 0x63,0x38,0x6b,0x8,0x0,0x0,0x0,0x0,0x64,0x28,0x5c,0x8,0x0,0x0,0x0,0x0, - 0x65,0x18,0x4d,0x8,0x0,0x0,0x0,0x0,0x66,0x11,0x78,0x88,0x0,0x0,0x0,0x0, - 0x67,0x1,0x69,0x88,0x0,0x0,0x0,0x0,0x67,0xf1,0x5a,0x88,0x0,0x0,0x0,0x0, - 0x68,0xe1,0x4b,0x88,0x0,0x0,0x0,0x0,0x69,0xd1,0x3c,0x88,0x0,0x0,0x0,0x0, - 0x6a,0xc1,0x2d,0x88,0x0,0x0,0x0,0x0,0x6b,0xb1,0x1e,0x88,0x0,0x0,0x0,0x0, - 0x6c,0xa1,0xf,0x88,0x0,0x0,0x0,0x0,0x6d,0x91,0x0,0x88,0x0,0x0,0x0,0x0, - 0x6e,0x80,0xf1,0x88,0x0,0x0,0x0,0x0,0x6f,0x70,0xe2,0x88,0x0,0x0,0x0,0x0, - 0x70,0x6a,0xe,0x8,0x0,0x0,0x0,0x0,0x71,0x59,0xff,0x8,0x0,0x0,0x0,0x0, - 0x72,0x49,0xf0,0x8,0x0,0x0,0x0,0x0,0x73,0x39,0xe1,0x8,0x0,0x0,0x0,0x0, - 0x74,0x29,0xd2,0x8,0x0,0x0,0x0,0x0,0x75,0x19,0xc3,0x8,0x0,0x0,0x0,0x0, - 0x76,0x9,0xb4,0x8,0x0,0x0,0x0,0x0,0x76,0xf9,0xa5,0x8,0x0,0x0,0x0,0x0, - 0x77,0xe9,0x96,0x8,0x0,0x0,0x0,0x0,0x78,0xd9,0x87,0x8,0x0,0x0,0x0,0x0, - 0x79,0xc9,0x78,0x8,0x0,0x0,0x0,0x0,0x7a,0xb9,0x69,0x8,0x0,0x0,0x0,0x0, - 0x7b,0xb2,0x94,0x88,0x0,0x0,0x0,0x0,0x7c,0xa2,0x85,0x88,0x0,0x0,0x0,0x0, - 0x7d,0x92,0x76,0x88,0x0,0x0,0x0,0x0,0x7e,0x82,0x67,0x88,0x0,0x0,0x0,0x0, - 0x7f,0x72,0x58,0x88,0x0,0x1,0x2,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x3,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x0,0x0,0x84,0x9c,0x0,0x0,0x0,0x0,0x8c,0xa0, - 0x0,0x4,0x0,0x0,0x7e,0x90,0x0,0x9,0x0,0x0,0x93,0xa8,0x1,0xe,0x0,0x0, - 0x85,0x98,0x0,0x9,0x0,0x0,0x93,0xa8,0x1,0xe,0x0,0x0,0x85,0x98,0x0,0x9, - 0x4c,0x4d,0x54,0x0,0x41,0x45,0x53,0x54,0x0,0x41,0x43,0x53,0x54,0x0,0x41,0x43, - 0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xa,0x41,0x43,0x53,0x54,0x2d,0x39,0x3a,0x33,0x30,0x41,0x43,0x44,0x54,0x2c, - 0x4d,0x31,0x30,0x2e,0x31,0x2e,0x30,0x2c,0x4d,0x34,0x2e,0x31,0x2e,0x30,0x2f,0x33, - 0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Australia/Lord_Howe - 0x0,0x0,0x7,0x43, + 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x95,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x10,0x9e,0xa6,0x1e,0x70,0x9f, + 0xba,0xeb,0x60,0xa0,0x86,0x0,0x70,0xa1,0x9a,0xcd,0x60,0xcb,0x88,0xf0,0x70,0xd2, + 0x23,0xf4,0x70,0xd2,0x60,0xfb,0xe0,0xfa,0xf8,0x58,0xf0,0xfb,0xe8,0x3b,0xe0,0xfc, + 0xd8,0x3a,0xf0,0xfd,0xc8,0x1d,0xe0,0xfe,0xb8,0x1c,0xf0,0xff,0xa7,0xff,0xe0,0x0, + 0x97,0xfe,0xf0,0x1,0x87,0xe1,0xe0,0x2,0x77,0xe0,0xf0,0x3,0x70,0xfe,0x60,0x4, + 0x60,0xfd,0x70,0x5,0x50,0xe0,0x60,0x6,0x40,0xdf,0x70,0x7,0x30,0xc2,0x60,0x7, + 0x8d,0x19,0x70,0x9,0x10,0xa4,0x60,0x9,0xad,0x94,0xf0,0xa,0xf0,0x86,0x60,0xb, + 0xe0,0x85,0x70,0xc,0xd9,0xa2,0xe0,0xd,0xc0,0x67,0x70,0xe,0xb9,0x84,0xe0,0xf, + 0xa9,0x83,0xf0,0x10,0x99,0x66,0xe0,0x11,0x89,0x65,0xf0,0x12,0x79,0x48,0xe0,0x13, + 0x69,0x47,0xf0,0x14,0x59,0x2a,0xe0,0x15,0x49,0x29,0xf0,0x16,0x39,0xc,0xe0,0x17, + 0x29,0xb,0xf0,0x18,0x22,0x29,0x60,0x19,0x8,0xed,0xf0,0x1a,0x2,0xb,0x60,0x1a, + 0xf2,0xa,0x70,0x1b,0xe1,0xed,0x60,0x1c,0xd1,0xec,0x70,0x1d,0xc1,0xcf,0x60,0x1e, + 0xb1,0xce,0x70,0x1f,0xa1,0xb1,0x60,0x20,0x76,0x0,0xf0,0x21,0x81,0x93,0x60,0x22, + 0x55,0xe2,0xf0,0x23,0x6a,0xaf,0xe0,0x24,0x35,0xc4,0xf0,0x25,0x4a,0x91,0xe0,0x26, + 0x15,0xa6,0xf0,0x27,0x2a,0x73,0xe0,0x27,0xfe,0xc3,0x70,0x29,0xa,0x55,0xe0,0x29, + 0xde,0xa5,0x70,0x2a,0xea,0x37,0xe0,0x2b,0xbe,0x87,0x70,0x2c,0xd3,0x54,0x60,0x2d, + 0x9e,0x69,0x70,0x2e,0xb3,0x36,0x60,0x2f,0x7e,0x4b,0x70,0x30,0x93,0x18,0x60,0x31, + 0x67,0x67,0xf0,0x32,0x72,0xfa,0x60,0x33,0x47,0x49,0xf0,0x34,0x52,0xdc,0x60,0x35, + 0x27,0x2b,0xf0,0x36,0x32,0xbe,0x60,0x37,0x7,0xd,0xf0,0x38,0x1b,0xda,0xe0,0x38, + 0xe6,0xef,0xf0,0x39,0xfb,0xbc,0xe0,0x3a,0xc6,0xd1,0xf0,0x3b,0xdb,0x9e,0xe0,0x3c, + 0xaf,0xee,0x70,0x3d,0xbb,0x80,0xe0,0x3e,0x8f,0xd0,0x70,0x3f,0x9b,0x62,0xe0,0x40, + 0x6f,0xb2,0x70,0x41,0x84,0x7f,0x60,0x42,0x4f,0x94,0x70,0x43,0x64,0x61,0x60,0x44, + 0x2f,0x76,0x70,0x45,0x44,0x43,0x60,0x45,0xf3,0xa8,0xf0,0x47,0x2d,0x5f,0xe0,0x47, + 0xd3,0x8a,0xf0,0x49,0xd,0x41,0xe0,0x49,0xb3,0x6c,0xf0,0x4a,0xed,0x23,0xe0,0x4b, + 0x9c,0x89,0x70,0x4c,0xd6,0x40,0x60,0x4d,0x7c,0x6b,0x70,0x4e,0xb6,0x22,0x60,0x4f, + 0x5c,0x4d,0x70,0x50,0x96,0x4,0x60,0x51,0x3c,0x2f,0x70,0x52,0x75,0xe6,0x60,0x53, + 0x1c,0x11,0x70,0x54,0x55,0xc8,0x60,0x54,0xfb,0xf3,0x70,0x56,0x35,0xaa,0x60,0x56, + 0xe5,0xf,0xf0,0x58,0x1e,0xc6,0xe0,0x58,0xc4,0xf1,0xf0,0x59,0xfe,0xa8,0xe0,0x5a, + 0xa4,0xd3,0xf0,0x5b,0xde,0x8a,0xe0,0x5c,0x84,0xb5,0xf0,0x5d,0xbe,0x6c,0xe0,0x5e, + 0x64,0x97,0xf0,0x5f,0x9e,0x4e,0xe0,0x60,0x4d,0xb4,0x70,0x61,0x87,0x6b,0x60,0x62, + 0x2d,0x96,0x70,0x63,0x67,0x4d,0x60,0x64,0xd,0x78,0x70,0x65,0x47,0x2f,0x60,0x65, + 0xed,0x5a,0x70,0x67,0x27,0x11,0x60,0x67,0xcd,0x3c,0x70,0x69,0x6,0xf3,0x60,0x69, + 0xad,0x1e,0x70,0x6a,0xe6,0xd5,0x60,0x6b,0x96,0x3a,0xf0,0x6c,0xcf,0xf1,0xe0,0x6d, + 0x76,0x1c,0xf0,0x6e,0xaf,0xd3,0xe0,0x6f,0x55,0xfe,0xf0,0x70,0x8f,0xb5,0xe0,0x71, + 0x35,0xe0,0xf0,0x72,0x6f,0x97,0xe0,0x73,0x15,0xc2,0xf0,0x74,0x4f,0x79,0xe0,0x74, + 0xfe,0xdf,0x70,0x76,0x38,0x96,0x60,0x76,0xde,0xc1,0x70,0x78,0x18,0x78,0x60,0x78, + 0xbe,0xa3,0x70,0x79,0xf8,0x5a,0x60,0x7a,0x9e,0x85,0x70,0x7b,0xd8,0x3c,0x60,0x7c, + 0x7e,0x67,0x70,0x7d,0xb8,0x1e,0x60,0x7e,0x5e,0x49,0x70,0x7f,0x98,0x0,0x60,0x0, + 0x1,0x0,0x1,0x2,0x3,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1, + 0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1, + 0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1, + 0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1, + 0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1, + 0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1, + 0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1, + 0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1, + 0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1, + 0x0,0x1,0x0,0x1,0xff,0xff,0xc7,0xc0,0x1,0x0,0xff,0xff,0xb9,0xb0,0x0,0x4, + 0xff,0xff,0xc7,0xc0,0x1,0x8,0xff,0xff,0xc7,0xc0,0x1,0xc,0x45,0x44,0x54,0x0, + 0x45,0x53,0x54,0x0,0x45,0x57,0x54,0x0,0x45,0x50,0x54,0x0,0x0,0x0,0x0,0x1, + 0x0,0x0,0x0,0x1,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x95,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x10, + 0xff,0xff,0xff,0xff,0x9e,0xa6,0x1e,0x70,0xff,0xff,0xff,0xff,0x9f,0xba,0xeb,0x60, + 0xff,0xff,0xff,0xff,0xa0,0x86,0x0,0x70,0xff,0xff,0xff,0xff,0xa1,0x9a,0xcd,0x60, + 0xff,0xff,0xff,0xff,0xcb,0x88,0xf0,0x70,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70, + 0xff,0xff,0xff,0xff,0xd2,0x60,0xfb,0xe0,0xff,0xff,0xff,0xff,0xfa,0xf8,0x58,0xf0, + 0xff,0xff,0xff,0xff,0xfb,0xe8,0x3b,0xe0,0xff,0xff,0xff,0xff,0xfc,0xd8,0x3a,0xf0, + 0xff,0xff,0xff,0xff,0xfd,0xc8,0x1d,0xe0,0xff,0xff,0xff,0xff,0xfe,0xb8,0x1c,0xf0, + 0xff,0xff,0xff,0xff,0xff,0xa7,0xff,0xe0,0x0,0x0,0x0,0x0,0x0,0x97,0xfe,0xf0, + 0x0,0x0,0x0,0x0,0x1,0x87,0xe1,0xe0,0x0,0x0,0x0,0x0,0x2,0x77,0xe0,0xf0, + 0x0,0x0,0x0,0x0,0x3,0x70,0xfe,0x60,0x0,0x0,0x0,0x0,0x4,0x60,0xfd,0x70, + 0x0,0x0,0x0,0x0,0x5,0x50,0xe0,0x60,0x0,0x0,0x0,0x0,0x6,0x40,0xdf,0x70, + 0x0,0x0,0x0,0x0,0x7,0x30,0xc2,0x60,0x0,0x0,0x0,0x0,0x7,0x8d,0x19,0x70, + 0x0,0x0,0x0,0x0,0x9,0x10,0xa4,0x60,0x0,0x0,0x0,0x0,0x9,0xad,0x94,0xf0, + 0x0,0x0,0x0,0x0,0xa,0xf0,0x86,0x60,0x0,0x0,0x0,0x0,0xb,0xe0,0x85,0x70, + 0x0,0x0,0x0,0x0,0xc,0xd9,0xa2,0xe0,0x0,0x0,0x0,0x0,0xd,0xc0,0x67,0x70, + 0x0,0x0,0x0,0x0,0xe,0xb9,0x84,0xe0,0x0,0x0,0x0,0x0,0xf,0xa9,0x83,0xf0, + 0x0,0x0,0x0,0x0,0x10,0x99,0x66,0xe0,0x0,0x0,0x0,0x0,0x11,0x89,0x65,0xf0, + 0x0,0x0,0x0,0x0,0x12,0x79,0x48,0xe0,0x0,0x0,0x0,0x0,0x13,0x69,0x47,0xf0, + 0x0,0x0,0x0,0x0,0x14,0x59,0x2a,0xe0,0x0,0x0,0x0,0x0,0x15,0x49,0x29,0xf0, + 0x0,0x0,0x0,0x0,0x16,0x39,0xc,0xe0,0x0,0x0,0x0,0x0,0x17,0x29,0xb,0xf0, + 0x0,0x0,0x0,0x0,0x18,0x22,0x29,0x60,0x0,0x0,0x0,0x0,0x19,0x8,0xed,0xf0, + 0x0,0x0,0x0,0x0,0x1a,0x2,0xb,0x60,0x0,0x0,0x0,0x0,0x1a,0xf2,0xa,0x70, + 0x0,0x0,0x0,0x0,0x1b,0xe1,0xed,0x60,0x0,0x0,0x0,0x0,0x1c,0xd1,0xec,0x70, + 0x0,0x0,0x0,0x0,0x1d,0xc1,0xcf,0x60,0x0,0x0,0x0,0x0,0x1e,0xb1,0xce,0x70, + 0x0,0x0,0x0,0x0,0x1f,0xa1,0xb1,0x60,0x0,0x0,0x0,0x0,0x20,0x76,0x0,0xf0, + 0x0,0x0,0x0,0x0,0x21,0x81,0x93,0x60,0x0,0x0,0x0,0x0,0x22,0x55,0xe2,0xf0, + 0x0,0x0,0x0,0x0,0x23,0x6a,0xaf,0xe0,0x0,0x0,0x0,0x0,0x24,0x35,0xc4,0xf0, + 0x0,0x0,0x0,0x0,0x25,0x4a,0x91,0xe0,0x0,0x0,0x0,0x0,0x26,0x15,0xa6,0xf0, + 0x0,0x0,0x0,0x0,0x27,0x2a,0x73,0xe0,0x0,0x0,0x0,0x0,0x27,0xfe,0xc3,0x70, + 0x0,0x0,0x0,0x0,0x29,0xa,0x55,0xe0,0x0,0x0,0x0,0x0,0x29,0xde,0xa5,0x70, + 0x0,0x0,0x0,0x0,0x2a,0xea,0x37,0xe0,0x0,0x0,0x0,0x0,0x2b,0xbe,0x87,0x70, + 0x0,0x0,0x0,0x0,0x2c,0xd3,0x54,0x60,0x0,0x0,0x0,0x0,0x2d,0x9e,0x69,0x70, + 0x0,0x0,0x0,0x0,0x2e,0xb3,0x36,0x60,0x0,0x0,0x0,0x0,0x2f,0x7e,0x4b,0x70, + 0x0,0x0,0x0,0x0,0x30,0x93,0x18,0x60,0x0,0x0,0x0,0x0,0x31,0x67,0x67,0xf0, + 0x0,0x0,0x0,0x0,0x32,0x72,0xfa,0x60,0x0,0x0,0x0,0x0,0x33,0x47,0x49,0xf0, + 0x0,0x0,0x0,0x0,0x34,0x52,0xdc,0x60,0x0,0x0,0x0,0x0,0x35,0x27,0x2b,0xf0, + 0x0,0x0,0x0,0x0,0x36,0x32,0xbe,0x60,0x0,0x0,0x0,0x0,0x37,0x7,0xd,0xf0, + 0x0,0x0,0x0,0x0,0x38,0x1b,0xda,0xe0,0x0,0x0,0x0,0x0,0x38,0xe6,0xef,0xf0, + 0x0,0x0,0x0,0x0,0x39,0xfb,0xbc,0xe0,0x0,0x0,0x0,0x0,0x3a,0xc6,0xd1,0xf0, + 0x0,0x0,0x0,0x0,0x3b,0xdb,0x9e,0xe0,0x0,0x0,0x0,0x0,0x3c,0xaf,0xee,0x70, + 0x0,0x0,0x0,0x0,0x3d,0xbb,0x80,0xe0,0x0,0x0,0x0,0x0,0x3e,0x8f,0xd0,0x70, + 0x0,0x0,0x0,0x0,0x3f,0x9b,0x62,0xe0,0x0,0x0,0x0,0x0,0x40,0x6f,0xb2,0x70, + 0x0,0x0,0x0,0x0,0x41,0x84,0x7f,0x60,0x0,0x0,0x0,0x0,0x42,0x4f,0x94,0x70, + 0x0,0x0,0x0,0x0,0x43,0x64,0x61,0x60,0x0,0x0,0x0,0x0,0x44,0x2f,0x76,0x70, + 0x0,0x0,0x0,0x0,0x45,0x44,0x43,0x60,0x0,0x0,0x0,0x0,0x45,0xf3,0xa8,0xf0, + 0x0,0x0,0x0,0x0,0x47,0x2d,0x5f,0xe0,0x0,0x0,0x0,0x0,0x47,0xd3,0x8a,0xf0, + 0x0,0x0,0x0,0x0,0x49,0xd,0x41,0xe0,0x0,0x0,0x0,0x0,0x49,0xb3,0x6c,0xf0, + 0x0,0x0,0x0,0x0,0x4a,0xed,0x23,0xe0,0x0,0x0,0x0,0x0,0x4b,0x9c,0x89,0x70, + 0x0,0x0,0x0,0x0,0x4c,0xd6,0x40,0x60,0x0,0x0,0x0,0x0,0x4d,0x7c,0x6b,0x70, + 0x0,0x0,0x0,0x0,0x4e,0xb6,0x22,0x60,0x0,0x0,0x0,0x0,0x4f,0x5c,0x4d,0x70, + 0x0,0x0,0x0,0x0,0x50,0x96,0x4,0x60,0x0,0x0,0x0,0x0,0x51,0x3c,0x2f,0x70, + 0x0,0x0,0x0,0x0,0x52,0x75,0xe6,0x60,0x0,0x0,0x0,0x0,0x53,0x1c,0x11,0x70, + 0x0,0x0,0x0,0x0,0x54,0x55,0xc8,0x60,0x0,0x0,0x0,0x0,0x54,0xfb,0xf3,0x70, + 0x0,0x0,0x0,0x0,0x56,0x35,0xaa,0x60,0x0,0x0,0x0,0x0,0x56,0xe5,0xf,0xf0, + 0x0,0x0,0x0,0x0,0x58,0x1e,0xc6,0xe0,0x0,0x0,0x0,0x0,0x58,0xc4,0xf1,0xf0, + 0x0,0x0,0x0,0x0,0x59,0xfe,0xa8,0xe0,0x0,0x0,0x0,0x0,0x5a,0xa4,0xd3,0xf0, + 0x0,0x0,0x0,0x0,0x5b,0xde,0x8a,0xe0,0x0,0x0,0x0,0x0,0x5c,0x84,0xb5,0xf0, + 0x0,0x0,0x0,0x0,0x5d,0xbe,0x6c,0xe0,0x0,0x0,0x0,0x0,0x5e,0x64,0x97,0xf0, + 0x0,0x0,0x0,0x0,0x5f,0x9e,0x4e,0xe0,0x0,0x0,0x0,0x0,0x60,0x4d,0xb4,0x70, + 0x0,0x0,0x0,0x0,0x61,0x87,0x6b,0x60,0x0,0x0,0x0,0x0,0x62,0x2d,0x96,0x70, + 0x0,0x0,0x0,0x0,0x63,0x67,0x4d,0x60,0x0,0x0,0x0,0x0,0x64,0xd,0x78,0x70, + 0x0,0x0,0x0,0x0,0x65,0x47,0x2f,0x60,0x0,0x0,0x0,0x0,0x65,0xed,0x5a,0x70, + 0x0,0x0,0x0,0x0,0x67,0x27,0x11,0x60,0x0,0x0,0x0,0x0,0x67,0xcd,0x3c,0x70, + 0x0,0x0,0x0,0x0,0x69,0x6,0xf3,0x60,0x0,0x0,0x0,0x0,0x69,0xad,0x1e,0x70, + 0x0,0x0,0x0,0x0,0x6a,0xe6,0xd5,0x60,0x0,0x0,0x0,0x0,0x6b,0x96,0x3a,0xf0, + 0x0,0x0,0x0,0x0,0x6c,0xcf,0xf1,0xe0,0x0,0x0,0x0,0x0,0x6d,0x76,0x1c,0xf0, + 0x0,0x0,0x0,0x0,0x6e,0xaf,0xd3,0xe0,0x0,0x0,0x0,0x0,0x6f,0x55,0xfe,0xf0, + 0x0,0x0,0x0,0x0,0x70,0x8f,0xb5,0xe0,0x0,0x0,0x0,0x0,0x71,0x35,0xe0,0xf0, + 0x0,0x0,0x0,0x0,0x72,0x6f,0x97,0xe0,0x0,0x0,0x0,0x0,0x73,0x15,0xc2,0xf0, + 0x0,0x0,0x0,0x0,0x74,0x4f,0x79,0xe0,0x0,0x0,0x0,0x0,0x74,0xfe,0xdf,0x70, + 0x0,0x0,0x0,0x0,0x76,0x38,0x96,0x60,0x0,0x0,0x0,0x0,0x76,0xde,0xc1,0x70, + 0x0,0x0,0x0,0x0,0x78,0x18,0x78,0x60,0x0,0x0,0x0,0x0,0x78,0xbe,0xa3,0x70, + 0x0,0x0,0x0,0x0,0x79,0xf8,0x5a,0x60,0x0,0x0,0x0,0x0,0x7a,0x9e,0x85,0x70, + 0x0,0x0,0x0,0x0,0x7b,0xd8,0x3c,0x60,0x0,0x0,0x0,0x0,0x7c,0x7e,0x67,0x70, + 0x0,0x0,0x0,0x0,0x7d,0xb8,0x1e,0x60,0x0,0x0,0x0,0x0,0x7e,0x5e,0x49,0x70, + 0x0,0x0,0x0,0x0,0x7f,0x98,0x0,0x60,0x0,0x1,0x0,0x1,0x2,0x3,0x1,0x0, + 0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0, + 0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0, + 0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0, + 0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0, + 0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0, + 0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0, + 0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0, + 0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0, + 0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0x0,0x1,0xff,0xff,0xc7, + 0xc0,0x1,0x0,0xff,0xff,0xb9,0xb0,0x0,0x4,0xff,0xff,0xc7,0xc0,0x1,0x8,0xff, + 0xff,0xc7,0xc0,0x1,0xc,0x45,0x44,0x54,0x0,0x45,0x53,0x54,0x0,0x45,0x57,0x54, + 0x0,0x45,0x50,0x54,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0xa,0x45,0x53, + 0x54,0x35,0x45,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31, + 0x2e,0x31,0x2e,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Indian/Comoro + 0x0,0x0,0x1,0x1d, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x73,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x13,0x80,0x0,0x0,0x0,0x14, - 0xfe,0x66,0xe0,0x16,0x38,0x40,0xf8,0x16,0xe7,0x8a,0x68,0x18,0x21,0x5d,0x78,0x18, - 0xc7,0x6c,0x68,0x1a,0x1,0x3f,0x78,0x1a,0xa7,0x4e,0x68,0x1b,0xe1,0x21,0x78,0x1c, - 0x87,0x30,0x68,0x1d,0xc1,0x3,0x78,0x1e,0x79,0x8e,0x70,0x1f,0x97,0xaa,0xf8,0x20, - 0x59,0x70,0x70,0x21,0x80,0xc7,0x78,0x22,0x42,0x8c,0xf0,0x23,0x69,0xe3,0xf8,0x24, - 0x22,0x6e,0xf0,0x25,0x49,0xc5,0xf8,0x25,0xef,0xdb,0xf0,0x27,0x29,0xa7,0xf8,0x27, - 0xcf,0xbd,0xf0,0x29,0x9,0x89,0xf8,0x29,0xaf,0x9f,0xf0,0x2a,0xe9,0x6b,0xf8,0x2b, - 0x98,0xbc,0x70,0x2c,0xd2,0x88,0x78,0x2d,0x78,0x9e,0x70,0x2e,0xb2,0x6a,0x78,0x2f, - 0x58,0x80,0x70,0x30,0x92,0x4c,0x78,0x31,0x5d,0x4c,0x70,0x32,0x72,0x2e,0x78,0x33, - 0x3d,0x2e,0x70,0x34,0x52,0x10,0x78,0x35,0x1d,0x10,0x70,0x36,0x31,0xf2,0x78,0x36, - 0xfc,0xf2,0x70,0x38,0x1b,0xe,0xf8,0x38,0xdc,0xd4,0x70,0x39,0xa7,0xe2,0x78,0x3a, - 0xbc,0xb6,0x70,0x3b,0xda,0xd2,0xf8,0x3c,0xa5,0xd2,0xf0,0x3d,0xba,0xb4,0xf8,0x3e, - 0x85,0xb4,0xf0,0x3f,0x9a,0x96,0xf8,0x40,0x65,0x96,0xf0,0x41,0x83,0xb3,0x78,0x42, - 0x45,0x78,0xf0,0x43,0x63,0x95,0x78,0x44,0x2e,0x95,0x70,0x45,0x43,0x77,0x78,0x46, - 0x5,0x3c,0xf0,0x47,0x23,0x59,0x78,0x47,0xf7,0x93,0xf0,0x48,0xe7,0x8b,0xf8,0x49, - 0xd7,0x75,0xf0,0x4a,0xc7,0x6d,0xf8,0x4b,0xb7,0x57,0xf0,0x4c,0xa7,0x4f,0xf8,0x4d, - 0x97,0x39,0xf0,0x4e,0x87,0x31,0xf8,0x4f,0x77,0x1b,0xf0,0x50,0x70,0x4e,0x78,0x51, - 0x60,0x38,0x70,0x52,0x50,0x30,0x78,0x53,0x40,0x1a,0x70,0x54,0x30,0x12,0x78,0x55, - 0x1f,0xfc,0x70,0x56,0xf,0xf4,0x78,0x56,0xff,0xde,0x70,0x57,0xef,0xd6,0x78,0x58, - 0xdf,0xc0,0x70,0x59,0xcf,0xb8,0x78,0x5a,0xbf,0xa2,0x70,0x5b,0xb8,0xd4,0xf8,0x5c, - 0xa8,0xbe,0xf0,0x5d,0x98,0xb6,0xf8,0x5e,0x88,0xa0,0xf0,0x5f,0x78,0x98,0xf8,0x60, - 0x68,0x82,0xf0,0x61,0x58,0x7a,0xf8,0x62,0x48,0x64,0xf0,0x63,0x38,0x5c,0xf8,0x64, - 0x28,0x46,0xf0,0x65,0x18,0x3e,0xf8,0x66,0x11,0x63,0x70,0x67,0x1,0x5b,0x78,0x67, - 0xf1,0x45,0x70,0x68,0xe1,0x3d,0x78,0x69,0xd1,0x27,0x70,0x6a,0xc1,0x1f,0x78,0x6b, - 0xb1,0x9,0x70,0x6c,0xa1,0x1,0x78,0x6d,0x90,0xeb,0x70,0x6e,0x80,0xe3,0x78,0x6f, - 0x70,0xcd,0x70,0x70,0x69,0xff,0xf8,0x71,0x59,0xe9,0xf0,0x72,0x49,0xe1,0xf8,0x73, - 0x39,0xcb,0xf0,0x74,0x29,0xc3,0xf8,0x75,0x19,0xad,0xf0,0x76,0x9,0xa5,0xf8,0x76, - 0xf9,0x8f,0xf0,0x77,0xe9,0x87,0xf8,0x78,0xd9,0x71,0xf0,0x79,0xc9,0x69,0xf8,0x7a, - 0xb9,0x53,0xf0,0x7b,0xb2,0x86,0x78,0x7c,0xa2,0x70,0x70,0x7d,0x92,0x68,0x78,0x7e, - 0x82,0x52,0x70,0x7f,0x72,0x4a,0x78,0x1,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x0,0x0,0x95,0x24,0x0,0x0, - 0x0,0x0,0x8c,0xa0,0x0,0x4,0x0,0x0,0xa1,0xb8,0x1,0x9,0x0,0x0,0x93,0xa8, - 0x0,0xe,0x0,0x0,0x9a,0xb0,0x1,0x9,0x4c,0x4d,0x54,0x0,0x41,0x45,0x53,0x54, - 0x0,0x4c,0x48,0x44,0x54,0x0,0x4c,0x48,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0, - 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x74,0x0,0x0,0x0,0x5,0x0,0x0,0x0, - 0x13,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x73,0x16,0x77, - 0xdc,0x0,0x0,0x0,0x0,0x14,0xfe,0x66,0xe0,0x0,0x0,0x0,0x0,0x16,0x38,0x40, - 0xf8,0x0,0x0,0x0,0x0,0x16,0xe7,0x8a,0x68,0x0,0x0,0x0,0x0,0x18,0x21,0x5d, - 0x78,0x0,0x0,0x0,0x0,0x18,0xc7,0x6c,0x68,0x0,0x0,0x0,0x0,0x1a,0x1,0x3f, - 0x78,0x0,0x0,0x0,0x0,0x1a,0xa7,0x4e,0x68,0x0,0x0,0x0,0x0,0x1b,0xe1,0x21, - 0x78,0x0,0x0,0x0,0x0,0x1c,0x87,0x30,0x68,0x0,0x0,0x0,0x0,0x1d,0xc1,0x3, - 0x78,0x0,0x0,0x0,0x0,0x1e,0x79,0x8e,0x70,0x0,0x0,0x0,0x0,0x1f,0x97,0xaa, - 0xf8,0x0,0x0,0x0,0x0,0x20,0x59,0x70,0x70,0x0,0x0,0x0,0x0,0x21,0x80,0xc7, - 0x78,0x0,0x0,0x0,0x0,0x22,0x42,0x8c,0xf0,0x0,0x0,0x0,0x0,0x23,0x69,0xe3, - 0xf8,0x0,0x0,0x0,0x0,0x24,0x22,0x6e,0xf0,0x0,0x0,0x0,0x0,0x25,0x49,0xc5, - 0xf8,0x0,0x0,0x0,0x0,0x25,0xef,0xdb,0xf0,0x0,0x0,0x0,0x0,0x27,0x29,0xa7, - 0xf8,0x0,0x0,0x0,0x0,0x27,0xcf,0xbd,0xf0,0x0,0x0,0x0,0x0,0x29,0x9,0x89, - 0xf8,0x0,0x0,0x0,0x0,0x29,0xaf,0x9f,0xf0,0x0,0x0,0x0,0x0,0x2a,0xe9,0x6b, - 0xf8,0x0,0x0,0x0,0x0,0x2b,0x98,0xbc,0x70,0x0,0x0,0x0,0x0,0x2c,0xd2,0x88, - 0x78,0x0,0x0,0x0,0x0,0x2d,0x78,0x9e,0x70,0x0,0x0,0x0,0x0,0x2e,0xb2,0x6a, - 0x78,0x0,0x0,0x0,0x0,0x2f,0x58,0x80,0x70,0x0,0x0,0x0,0x0,0x30,0x92,0x4c, - 0x78,0x0,0x0,0x0,0x0,0x31,0x5d,0x4c,0x70,0x0,0x0,0x0,0x0,0x32,0x72,0x2e, - 0x78,0x0,0x0,0x0,0x0,0x33,0x3d,0x2e,0x70,0x0,0x0,0x0,0x0,0x34,0x52,0x10, - 0x78,0x0,0x0,0x0,0x0,0x35,0x1d,0x10,0x70,0x0,0x0,0x0,0x0,0x36,0x31,0xf2, - 0x78,0x0,0x0,0x0,0x0,0x36,0xfc,0xf2,0x70,0x0,0x0,0x0,0x0,0x38,0x1b,0xe, - 0xf8,0x0,0x0,0x0,0x0,0x38,0xdc,0xd4,0x70,0x0,0x0,0x0,0x0,0x39,0xa7,0xe2, - 0x78,0x0,0x0,0x0,0x0,0x3a,0xbc,0xb6,0x70,0x0,0x0,0x0,0x0,0x3b,0xda,0xd2, - 0xf8,0x0,0x0,0x0,0x0,0x3c,0xa5,0xd2,0xf0,0x0,0x0,0x0,0x0,0x3d,0xba,0xb4, - 0xf8,0x0,0x0,0x0,0x0,0x3e,0x85,0xb4,0xf0,0x0,0x0,0x0,0x0,0x3f,0x9a,0x96, - 0xf8,0x0,0x0,0x0,0x0,0x40,0x65,0x96,0xf0,0x0,0x0,0x0,0x0,0x41,0x83,0xb3, - 0x78,0x0,0x0,0x0,0x0,0x42,0x45,0x78,0xf0,0x0,0x0,0x0,0x0,0x43,0x63,0x95, - 0x78,0x0,0x0,0x0,0x0,0x44,0x2e,0x95,0x70,0x0,0x0,0x0,0x0,0x45,0x43,0x77, - 0x78,0x0,0x0,0x0,0x0,0x46,0x5,0x3c,0xf0,0x0,0x0,0x0,0x0,0x47,0x23,0x59, - 0x78,0x0,0x0,0x0,0x0,0x47,0xf7,0x93,0xf0,0x0,0x0,0x0,0x0,0x48,0xe7,0x8b, - 0xf8,0x0,0x0,0x0,0x0,0x49,0xd7,0x75,0xf0,0x0,0x0,0x0,0x0,0x4a,0xc7,0x6d, - 0xf8,0x0,0x0,0x0,0x0,0x4b,0xb7,0x57,0xf0,0x0,0x0,0x0,0x0,0x4c,0xa7,0x4f, - 0xf8,0x0,0x0,0x0,0x0,0x4d,0x97,0x39,0xf0,0x0,0x0,0x0,0x0,0x4e,0x87,0x31, - 0xf8,0x0,0x0,0x0,0x0,0x4f,0x77,0x1b,0xf0,0x0,0x0,0x0,0x0,0x50,0x70,0x4e, - 0x78,0x0,0x0,0x0,0x0,0x51,0x60,0x38,0x70,0x0,0x0,0x0,0x0,0x52,0x50,0x30, - 0x78,0x0,0x0,0x0,0x0,0x53,0x40,0x1a,0x70,0x0,0x0,0x0,0x0,0x54,0x30,0x12, - 0x78,0x0,0x0,0x0,0x0,0x55,0x1f,0xfc,0x70,0x0,0x0,0x0,0x0,0x56,0xf,0xf4, - 0x78,0x0,0x0,0x0,0x0,0x56,0xff,0xde,0x70,0x0,0x0,0x0,0x0,0x57,0xef,0xd6, - 0x78,0x0,0x0,0x0,0x0,0x58,0xdf,0xc0,0x70,0x0,0x0,0x0,0x0,0x59,0xcf,0xb8, - 0x78,0x0,0x0,0x0,0x0,0x5a,0xbf,0xa2,0x70,0x0,0x0,0x0,0x0,0x5b,0xb8,0xd4, - 0xf8,0x0,0x0,0x0,0x0,0x5c,0xa8,0xbe,0xf0,0x0,0x0,0x0,0x0,0x5d,0x98,0xb6, - 0xf8,0x0,0x0,0x0,0x0,0x5e,0x88,0xa0,0xf0,0x0,0x0,0x0,0x0,0x5f,0x78,0x98, - 0xf8,0x0,0x0,0x0,0x0,0x60,0x68,0x82,0xf0,0x0,0x0,0x0,0x0,0x61,0x58,0x7a, - 0xf8,0x0,0x0,0x0,0x0,0x62,0x48,0x64,0xf0,0x0,0x0,0x0,0x0,0x63,0x38,0x5c, - 0xf8,0x0,0x0,0x0,0x0,0x64,0x28,0x46,0xf0,0x0,0x0,0x0,0x0,0x65,0x18,0x3e, - 0xf8,0x0,0x0,0x0,0x0,0x66,0x11,0x63,0x70,0x0,0x0,0x0,0x0,0x67,0x1,0x5b, - 0x78,0x0,0x0,0x0,0x0,0x67,0xf1,0x45,0x70,0x0,0x0,0x0,0x0,0x68,0xe1,0x3d, - 0x78,0x0,0x0,0x0,0x0,0x69,0xd1,0x27,0x70,0x0,0x0,0x0,0x0,0x6a,0xc1,0x1f, - 0x78,0x0,0x0,0x0,0x0,0x6b,0xb1,0x9,0x70,0x0,0x0,0x0,0x0,0x6c,0xa1,0x1, - 0x78,0x0,0x0,0x0,0x0,0x6d,0x90,0xeb,0x70,0x0,0x0,0x0,0x0,0x6e,0x80,0xe3, - 0x78,0x0,0x0,0x0,0x0,0x6f,0x70,0xcd,0x70,0x0,0x0,0x0,0x0,0x70,0x69,0xff, - 0xf8,0x0,0x0,0x0,0x0,0x71,0x59,0xe9,0xf0,0x0,0x0,0x0,0x0,0x72,0x49,0xe1, - 0xf8,0x0,0x0,0x0,0x0,0x73,0x39,0xcb,0xf0,0x0,0x0,0x0,0x0,0x74,0x29,0xc3, - 0xf8,0x0,0x0,0x0,0x0,0x75,0x19,0xad,0xf0,0x0,0x0,0x0,0x0,0x76,0x9,0xa5, - 0xf8,0x0,0x0,0x0,0x0,0x76,0xf9,0x8f,0xf0,0x0,0x0,0x0,0x0,0x77,0xe9,0x87, - 0xf8,0x0,0x0,0x0,0x0,0x78,0xd9,0x71,0xf0,0x0,0x0,0x0,0x0,0x79,0xc9,0x69, - 0xf8,0x0,0x0,0x0,0x0,0x7a,0xb9,0x53,0xf0,0x0,0x0,0x0,0x0,0x7b,0xb2,0x86, - 0x78,0x0,0x0,0x0,0x0,0x7c,0xa2,0x70,0x70,0x0,0x0,0x0,0x0,0x7d,0x92,0x68, - 0x78,0x0,0x0,0x0,0x0,0x7e,0x82,0x52,0x70,0x0,0x0,0x0,0x0,0x7f,0x72,0x4a, - 0x78,0x0,0x1,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x0,0x0,0x95,0x24,0x0,0x0,0x0,0x0,0x8c,0xa0,0x0, - 0x4,0x0,0x0,0xa1,0xb8,0x1,0x9,0x0,0x0,0x93,0xa8,0x0,0xe,0x0,0x0,0x9a, - 0xb0,0x1,0x9,0x4c,0x4d,0x54,0x0,0x41,0x45,0x53,0x54,0x0,0x4c,0x48,0x44,0x54, - 0x0,0x4c,0x48,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0xa,0x4c,0x48,0x53,0x54,0x2d,0x31,0x30,0x3a,0x33,0x30,0x4c,0x48,0x44,0x54,0x2d, - 0x31,0x31,0x2c,0x4d,0x31,0x30,0x2e,0x31,0x2e,0x30,0x2c,0x4d,0x34,0x2e,0x31,0x2e, - 0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Australia/Hobart - 0x0,0x0,0x9,0x1f, + 0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0xb1, + 0xee,0xda,0xfc,0xb4,0xc2,0x9a,0xd0,0xc7,0x91,0x47,0xd8,0xed,0x2f,0xe1,0xd4,0x0, + 0x1,0x2,0x3,0x1,0x0,0x0,0x22,0x84,0x0,0x0,0x0,0x0,0x2a,0x30,0x0,0x4, + 0x0,0x0,0x23,0x28,0x0,0x8,0x0,0x0,0x26,0xac,0x0,0xe,0x0,0x0,0x2a,0x30, + 0x0,0x4,0x4c,0x4d,0x54,0x0,0x45,0x41,0x54,0x0,0x2b,0x30,0x32,0x33,0x30,0x0, + 0x2b,0x30,0x32,0x34,0x35,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0xf8,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xb1,0xee,0xda,0xfc,0xff,0xff,0xff,0xff, + 0xb4,0xc2,0x9a,0xd0,0xff,0xff,0xff,0xff,0xc7,0x91,0x47,0xd8,0xff,0xff,0xff,0xff, + 0xed,0x2f,0xe1,0xd4,0x0,0x1,0x2,0x3,0x1,0x0,0x0,0x22,0x84,0x0,0x0,0x0, + 0x0,0x2a,0x30,0x0,0x4,0x0,0x0,0x23,0x28,0x0,0x8,0x0,0x0,0x26,0xac,0x0, + 0xe,0x0,0x0,0x2a,0x30,0x0,0x4,0x4c,0x4d,0x54,0x0,0x45,0x41,0x54,0x0,0x2b, + 0x30,0x32,0x33,0x30,0x0,0x2b,0x30,0x32,0x34,0x35,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0xa,0x45,0x41,0x54,0x2d,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Indian/Christmas + 0x0,0x0,0x0,0xb6, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x96,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xe,0x80,0x0,0x0,0x0,0x9b, - 0xd5,0x78,0x80,0x9c,0xbc,0x20,0xf0,0xcb,0x54,0xb3,0x0,0xcb,0xc7,0x57,0x70,0xcc, - 0xb7,0x56,0x80,0xcd,0xa7,0x39,0x70,0xce,0xa0,0x73,0x0,0xcf,0x87,0x1b,0x70,0xfb, - 0xc2,0x8d,0x0,0xfc,0xb2,0x7e,0x0,0xfd,0xc7,0x59,0x0,0xfe,0x76,0xb0,0x80,0xff, - 0xa7,0x3b,0x0,0x0,0x56,0x92,0x80,0x1,0x87,0x1d,0x0,0x2,0x3f,0xaf,0x0,0x3, - 0x70,0x39,0x80,0x4,0xd,0x1c,0x0,0x5,0x50,0x1b,0x80,0x5,0xf6,0x38,0x80,0x7, - 0x2f,0xfd,0x80,0x7,0xd6,0x1a,0x80,0x9,0xf,0xdf,0x80,0x9,0xb5,0xfc,0x80,0xa, - 0xef,0xc1,0x80,0xb,0x9f,0x19,0x0,0xc,0xd8,0xde,0x0,0xd,0x7e,0xfb,0x0,0xe, - 0xb8,0xc0,0x0,0xf,0x5e,0xdd,0x0,0x10,0x98,0xa2,0x0,0x11,0x3e,0xbf,0x0,0x12, - 0x78,0x84,0x0,0x13,0x1e,0xa1,0x0,0x14,0x58,0x66,0x0,0x14,0xfe,0x83,0x0,0x16, - 0x38,0x48,0x0,0x17,0x3,0x4f,0x0,0x18,0x21,0x64,0x80,0x18,0xe3,0x31,0x0,0x1a, - 0x1,0x46,0x80,0x1a,0xa7,0x63,0x80,0x1b,0xe1,0x28,0x80,0x1c,0x87,0x45,0x80,0x1d, - 0xc1,0xa,0x80,0x1e,0x67,0x27,0x80,0x1f,0x97,0xb2,0x0,0x20,0x59,0x7e,0x80,0x21, - 0x80,0xce,0x80,0x22,0x42,0x9b,0x0,0x23,0x69,0xeb,0x0,0x24,0x22,0x7d,0x0,0x25, - 0x49,0xcd,0x0,0x26,0x2,0x5f,0x0,0x27,0x29,0xaf,0x0,0x27,0xf4,0xb6,0x0,0x28, - 0xed,0xe1,0x80,0x29,0xd4,0x98,0x0,0x2a,0xcd,0xc3,0x80,0x2b,0xb4,0x7a,0x0,0x2c, - 0xad,0xa5,0x80,0x2d,0x94,0x5c,0x0,0x2e,0x8d,0x87,0x80,0x2f,0x74,0x3e,0x0,0x30, - 0x6d,0x69,0x80,0x31,0x5d,0x5a,0x80,0x32,0x56,0x86,0x0,0x33,0x3d,0x3c,0x80,0x34, - 0x36,0x68,0x0,0x35,0x1d,0x1e,0x80,0x36,0x16,0x4a,0x0,0x36,0xfd,0x0,0x80,0x37, - 0xf6,0x2c,0x0,0x38,0xdc,0xe2,0x80,0x39,0xa7,0xe9,0x80,0x3a,0xbc,0xc4,0x80,0x3b, - 0xbf,0x2a,0x80,0x3c,0xa5,0xe1,0x0,0x3d,0x9f,0xc,0x80,0x3e,0x85,0xc3,0x0,0x3f, - 0x7e,0xee,0x80,0x40,0x65,0xa5,0x0,0x41,0x5e,0xd0,0x80,0x42,0x45,0x87,0x0,0x43, - 0x3e,0xb2,0x80,0x44,0x2e,0xa3,0x80,0x45,0x1e,0x94,0x80,0x46,0x5,0x4b,0x0,0x47, - 0x7,0xb1,0x0,0x47,0xf7,0xa2,0x0,0x48,0xe7,0x93,0x0,0x49,0xd7,0x84,0x0,0x4a, - 0xc7,0x75,0x0,0x4b,0xb7,0x66,0x0,0x4c,0xa7,0x57,0x0,0x4d,0x97,0x48,0x0,0x4e, - 0x87,0x39,0x0,0x4f,0x77,0x2a,0x0,0x50,0x70,0x55,0x80,0x51,0x60,0x46,0x80,0x52, - 0x50,0x37,0x80,0x53,0x40,0x28,0x80,0x54,0x30,0x19,0x80,0x55,0x20,0xa,0x80,0x56, - 0xf,0xfb,0x80,0x56,0xff,0xec,0x80,0x57,0xef,0xdd,0x80,0x58,0xdf,0xce,0x80,0x59, - 0xcf,0xbf,0x80,0x5a,0xbf,0xb0,0x80,0x5b,0xb8,0xdc,0x0,0x5c,0xa8,0xcd,0x0,0x5d, - 0x98,0xbe,0x0,0x5e,0x88,0xaf,0x0,0x5f,0x78,0xa0,0x0,0x60,0x68,0x91,0x0,0x61, - 0x58,0x82,0x0,0x62,0x48,0x73,0x0,0x63,0x38,0x64,0x0,0x64,0x28,0x55,0x0,0x65, - 0x18,0x46,0x0,0x66,0x11,0x71,0x80,0x67,0x1,0x62,0x80,0x67,0xf1,0x53,0x80,0x68, - 0xe1,0x44,0x80,0x69,0xd1,0x35,0x80,0x6a,0xc1,0x26,0x80,0x6b,0xb1,0x17,0x80,0x6c, - 0xa1,0x8,0x80,0x6d,0x90,0xf9,0x80,0x6e,0x80,0xea,0x80,0x6f,0x70,0xdb,0x80,0x70, - 0x6a,0x7,0x0,0x71,0x59,0xf8,0x0,0x72,0x49,0xe9,0x0,0x73,0x39,0xda,0x0,0x74, - 0x29,0xcb,0x0,0x75,0x19,0xbc,0x0,0x76,0x9,0xad,0x0,0x76,0xf9,0x9e,0x0,0x77, - 0xe9,0x8f,0x0,0x78,0xd9,0x80,0x0,0x79,0xc9,0x71,0x0,0x7a,0xb9,0x62,0x0,0x7b, - 0xb2,0x8d,0x80,0x7c,0xa2,0x7e,0x80,0x7d,0x92,0x6f,0x80,0x7e,0x82,0x60,0x80,0x7f, - 0x72,0x51,0x80,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x0,0x0,0x8a,0x1c,0x0,0x0,0x0, - 0x0,0x8c,0xa0,0x0,0x4,0x0,0x0,0x9a,0xb0,0x1,0x9,0x0,0x0,0x9a,0xb0,0x1, - 0x9,0x0,0x0,0x8c,0xa0,0x0,0x4,0x4c,0x4d,0x54,0x0,0x41,0x45,0x53,0x54,0x0, - 0x41,0x45,0x44,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x54, + 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x7f, + 0xff,0xff,0xff,0x1,0x1,0x0,0x0,0x63,0x1c,0x0,0x0,0x0,0x0,0x62,0x70,0x0, + 0x4,0x4c,0x4d,0x54,0x0,0x2b,0x30,0x37,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, + 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x3,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0x73,0x16,0xa9,0xe4,0x0,0x0,0x0,0x0,0x7f,0xff,0xff, + 0xff,0x0,0x1,0x1,0x0,0x0,0x63,0x1c,0x0,0x0,0x0,0x0,0x62,0x70,0x0,0x4, + 0x4c,0x4d,0x54,0x0,0x2b,0x30,0x37,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2b,0x30, + 0x37,0x3e,0x2d,0x37,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Indian/Antananarivo + 0x0,0x0,0x1,0x1d, + 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x97,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xe,0xf8,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x74,0x2e,0x0,0xe4,0xff,0xff,0xff,0xff,0x9b, - 0xd5,0x78,0x80,0xff,0xff,0xff,0xff,0x9c,0xbc,0x20,0xf0,0xff,0xff,0xff,0xff,0xcb, - 0x54,0xb3,0x0,0xff,0xff,0xff,0xff,0xcb,0xc7,0x57,0x70,0xff,0xff,0xff,0xff,0xcc, - 0xb7,0x56,0x80,0xff,0xff,0xff,0xff,0xcd,0xa7,0x39,0x70,0xff,0xff,0xff,0xff,0xce, - 0xa0,0x73,0x0,0xff,0xff,0xff,0xff,0xcf,0x87,0x1b,0x70,0xff,0xff,0xff,0xff,0xfb, - 0xc2,0x8d,0x0,0xff,0xff,0xff,0xff,0xfc,0xb2,0x7e,0x0,0xff,0xff,0xff,0xff,0xfd, - 0xc7,0x59,0x0,0xff,0xff,0xff,0xff,0xfe,0x76,0xb0,0x80,0xff,0xff,0xff,0xff,0xff, - 0xa7,0x3b,0x0,0x0,0x0,0x0,0x0,0x0,0x56,0x92,0x80,0x0,0x0,0x0,0x0,0x1, - 0x87,0x1d,0x0,0x0,0x0,0x0,0x0,0x2,0x3f,0xaf,0x0,0x0,0x0,0x0,0x0,0x3, - 0x70,0x39,0x80,0x0,0x0,0x0,0x0,0x4,0xd,0x1c,0x0,0x0,0x0,0x0,0x0,0x5, - 0x50,0x1b,0x80,0x0,0x0,0x0,0x0,0x5,0xf6,0x38,0x80,0x0,0x0,0x0,0x0,0x7, - 0x2f,0xfd,0x80,0x0,0x0,0x0,0x0,0x7,0xd6,0x1a,0x80,0x0,0x0,0x0,0x0,0x9, - 0xf,0xdf,0x80,0x0,0x0,0x0,0x0,0x9,0xb5,0xfc,0x80,0x0,0x0,0x0,0x0,0xa, - 0xef,0xc1,0x80,0x0,0x0,0x0,0x0,0xb,0x9f,0x19,0x0,0x0,0x0,0x0,0x0,0xc, - 0xd8,0xde,0x0,0x0,0x0,0x0,0x0,0xd,0x7e,0xfb,0x0,0x0,0x0,0x0,0x0,0xe, - 0xb8,0xc0,0x0,0x0,0x0,0x0,0x0,0xf,0x5e,0xdd,0x0,0x0,0x0,0x0,0x0,0x10, - 0x98,0xa2,0x0,0x0,0x0,0x0,0x0,0x11,0x3e,0xbf,0x0,0x0,0x0,0x0,0x0,0x12, - 0x78,0x84,0x0,0x0,0x0,0x0,0x0,0x13,0x1e,0xa1,0x0,0x0,0x0,0x0,0x0,0x14, - 0x58,0x66,0x0,0x0,0x0,0x0,0x0,0x14,0xfe,0x83,0x0,0x0,0x0,0x0,0x0,0x16, - 0x38,0x48,0x0,0x0,0x0,0x0,0x0,0x17,0x3,0x4f,0x0,0x0,0x0,0x0,0x0,0x18, - 0x21,0x64,0x80,0x0,0x0,0x0,0x0,0x18,0xe3,0x31,0x0,0x0,0x0,0x0,0x0,0x1a, - 0x1,0x46,0x80,0x0,0x0,0x0,0x0,0x1a,0xa7,0x63,0x80,0x0,0x0,0x0,0x0,0x1b, - 0xe1,0x28,0x80,0x0,0x0,0x0,0x0,0x1c,0x87,0x45,0x80,0x0,0x0,0x0,0x0,0x1d, - 0xc1,0xa,0x80,0x0,0x0,0x0,0x0,0x1e,0x67,0x27,0x80,0x0,0x0,0x0,0x0,0x1f, - 0x97,0xb2,0x0,0x0,0x0,0x0,0x0,0x20,0x59,0x7e,0x80,0x0,0x0,0x0,0x0,0x21, - 0x80,0xce,0x80,0x0,0x0,0x0,0x0,0x22,0x42,0x9b,0x0,0x0,0x0,0x0,0x0,0x23, - 0x69,0xeb,0x0,0x0,0x0,0x0,0x0,0x24,0x22,0x7d,0x0,0x0,0x0,0x0,0x0,0x25, - 0x49,0xcd,0x0,0x0,0x0,0x0,0x0,0x26,0x2,0x5f,0x0,0x0,0x0,0x0,0x0,0x27, - 0x29,0xaf,0x0,0x0,0x0,0x0,0x0,0x27,0xf4,0xb6,0x0,0x0,0x0,0x0,0x0,0x28, - 0xed,0xe1,0x80,0x0,0x0,0x0,0x0,0x29,0xd4,0x98,0x0,0x0,0x0,0x0,0x0,0x2a, - 0xcd,0xc3,0x80,0x0,0x0,0x0,0x0,0x2b,0xb4,0x7a,0x0,0x0,0x0,0x0,0x0,0x2c, - 0xad,0xa5,0x80,0x0,0x0,0x0,0x0,0x2d,0x94,0x5c,0x0,0x0,0x0,0x0,0x0,0x2e, - 0x8d,0x87,0x80,0x0,0x0,0x0,0x0,0x2f,0x74,0x3e,0x0,0x0,0x0,0x0,0x0,0x30, - 0x6d,0x69,0x80,0x0,0x0,0x0,0x0,0x31,0x5d,0x5a,0x80,0x0,0x0,0x0,0x0,0x32, - 0x56,0x86,0x0,0x0,0x0,0x0,0x0,0x33,0x3d,0x3c,0x80,0x0,0x0,0x0,0x0,0x34, - 0x36,0x68,0x0,0x0,0x0,0x0,0x0,0x35,0x1d,0x1e,0x80,0x0,0x0,0x0,0x0,0x36, - 0x16,0x4a,0x0,0x0,0x0,0x0,0x0,0x36,0xfd,0x0,0x80,0x0,0x0,0x0,0x0,0x37, - 0xf6,0x2c,0x0,0x0,0x0,0x0,0x0,0x38,0xdc,0xe2,0x80,0x0,0x0,0x0,0x0,0x39, - 0xa7,0xe9,0x80,0x0,0x0,0x0,0x0,0x3a,0xbc,0xc4,0x80,0x0,0x0,0x0,0x0,0x3b, - 0xbf,0x2a,0x80,0x0,0x0,0x0,0x0,0x3c,0xa5,0xe1,0x0,0x0,0x0,0x0,0x0,0x3d, - 0x9f,0xc,0x80,0x0,0x0,0x0,0x0,0x3e,0x85,0xc3,0x0,0x0,0x0,0x0,0x0,0x3f, - 0x7e,0xee,0x80,0x0,0x0,0x0,0x0,0x40,0x65,0xa5,0x0,0x0,0x0,0x0,0x0,0x41, - 0x5e,0xd0,0x80,0x0,0x0,0x0,0x0,0x42,0x45,0x87,0x0,0x0,0x0,0x0,0x0,0x43, - 0x3e,0xb2,0x80,0x0,0x0,0x0,0x0,0x44,0x2e,0xa3,0x80,0x0,0x0,0x0,0x0,0x45, - 0x1e,0x94,0x80,0x0,0x0,0x0,0x0,0x46,0x5,0x4b,0x0,0x0,0x0,0x0,0x0,0x47, - 0x7,0xb1,0x0,0x0,0x0,0x0,0x0,0x47,0xf7,0xa2,0x0,0x0,0x0,0x0,0x0,0x48, - 0xe7,0x93,0x0,0x0,0x0,0x0,0x0,0x49,0xd7,0x84,0x0,0x0,0x0,0x0,0x0,0x4a, - 0xc7,0x75,0x0,0x0,0x0,0x0,0x0,0x4b,0xb7,0x66,0x0,0x0,0x0,0x0,0x0,0x4c, - 0xa7,0x57,0x0,0x0,0x0,0x0,0x0,0x4d,0x97,0x48,0x0,0x0,0x0,0x0,0x0,0x4e, - 0x87,0x39,0x0,0x0,0x0,0x0,0x0,0x4f,0x77,0x2a,0x0,0x0,0x0,0x0,0x0,0x50, - 0x70,0x55,0x80,0x0,0x0,0x0,0x0,0x51,0x60,0x46,0x80,0x0,0x0,0x0,0x0,0x52, - 0x50,0x37,0x80,0x0,0x0,0x0,0x0,0x53,0x40,0x28,0x80,0x0,0x0,0x0,0x0,0x54, - 0x30,0x19,0x80,0x0,0x0,0x0,0x0,0x55,0x20,0xa,0x80,0x0,0x0,0x0,0x0,0x56, - 0xf,0xfb,0x80,0x0,0x0,0x0,0x0,0x56,0xff,0xec,0x80,0x0,0x0,0x0,0x0,0x57, - 0xef,0xdd,0x80,0x0,0x0,0x0,0x0,0x58,0xdf,0xce,0x80,0x0,0x0,0x0,0x0,0x59, - 0xcf,0xbf,0x80,0x0,0x0,0x0,0x0,0x5a,0xbf,0xb0,0x80,0x0,0x0,0x0,0x0,0x5b, - 0xb8,0xdc,0x0,0x0,0x0,0x0,0x0,0x5c,0xa8,0xcd,0x0,0x0,0x0,0x0,0x0,0x5d, - 0x98,0xbe,0x0,0x0,0x0,0x0,0x0,0x5e,0x88,0xaf,0x0,0x0,0x0,0x0,0x0,0x5f, - 0x78,0xa0,0x0,0x0,0x0,0x0,0x0,0x60,0x68,0x91,0x0,0x0,0x0,0x0,0x0,0x61, - 0x58,0x82,0x0,0x0,0x0,0x0,0x0,0x62,0x48,0x73,0x0,0x0,0x0,0x0,0x0,0x63, - 0x38,0x64,0x0,0x0,0x0,0x0,0x0,0x64,0x28,0x55,0x0,0x0,0x0,0x0,0x0,0x65, - 0x18,0x46,0x0,0x0,0x0,0x0,0x0,0x66,0x11,0x71,0x80,0x0,0x0,0x0,0x0,0x67, - 0x1,0x62,0x80,0x0,0x0,0x0,0x0,0x67,0xf1,0x53,0x80,0x0,0x0,0x0,0x0,0x68, - 0xe1,0x44,0x80,0x0,0x0,0x0,0x0,0x69,0xd1,0x35,0x80,0x0,0x0,0x0,0x0,0x6a, - 0xc1,0x26,0x80,0x0,0x0,0x0,0x0,0x6b,0xb1,0x17,0x80,0x0,0x0,0x0,0x0,0x6c, - 0xa1,0x8,0x80,0x0,0x0,0x0,0x0,0x6d,0x90,0xf9,0x80,0x0,0x0,0x0,0x0,0x6e, - 0x80,0xea,0x80,0x0,0x0,0x0,0x0,0x6f,0x70,0xdb,0x80,0x0,0x0,0x0,0x0,0x70, - 0x6a,0x7,0x0,0x0,0x0,0x0,0x0,0x71,0x59,0xf8,0x0,0x0,0x0,0x0,0x0,0x72, - 0x49,0xe9,0x0,0x0,0x0,0x0,0x0,0x73,0x39,0xda,0x0,0x0,0x0,0x0,0x0,0x74, - 0x29,0xcb,0x0,0x0,0x0,0x0,0x0,0x75,0x19,0xbc,0x0,0x0,0x0,0x0,0x0,0x76, - 0x9,0xad,0x0,0x0,0x0,0x0,0x0,0x76,0xf9,0x9e,0x0,0x0,0x0,0x0,0x0,0x77, - 0xe9,0x8f,0x0,0x0,0x0,0x0,0x0,0x78,0xd9,0x80,0x0,0x0,0x0,0x0,0x0,0x79, - 0xc9,0x71,0x0,0x0,0x0,0x0,0x0,0x7a,0xb9,0x62,0x0,0x0,0x0,0x0,0x0,0x7b, - 0xb2,0x8d,0x80,0x0,0x0,0x0,0x0,0x7c,0xa2,0x7e,0x80,0x0,0x0,0x0,0x0,0x7d, - 0x92,0x6f,0x80,0x0,0x0,0x0,0x0,0x7e,0x82,0x60,0x80,0x0,0x0,0x0,0x0,0x7f, - 0x72,0x51,0x80,0x0,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x0,0x0,0x8a,0x1c,0x0,0x0, - 0x0,0x0,0x8c,0xa0,0x0,0x4,0x0,0x0,0x9a,0xb0,0x1,0x9,0x0,0x0,0x9a,0xb0, - 0x1,0x9,0x0,0x0,0x8c,0xa0,0x0,0x4,0x4c,0x4d,0x54,0x0,0x41,0x45,0x53,0x54, - 0x0,0x41,0x45,0x44,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0, - 0xa,0x41,0x45,0x53,0x54,0x2d,0x31,0x30,0x41,0x45,0x44,0x54,0x2c,0x4d,0x31,0x30, - 0x2e,0x31,0x2e,0x30,0x2c,0x4d,0x34,0x2e,0x31,0x2e,0x30,0x2f,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Australia/LHI - 0x0,0x0,0x7,0x43, + 0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0xb1, + 0xee,0xda,0xfc,0xb4,0xc2,0x9a,0xd0,0xc7,0x91,0x47,0xd8,0xed,0x2f,0xe1,0xd4,0x0, + 0x1,0x2,0x3,0x1,0x0,0x0,0x22,0x84,0x0,0x0,0x0,0x0,0x2a,0x30,0x0,0x4, + 0x0,0x0,0x23,0x28,0x0,0x8,0x0,0x0,0x26,0xac,0x0,0xe,0x0,0x0,0x2a,0x30, + 0x0,0x4,0x4c,0x4d,0x54,0x0,0x45,0x41,0x54,0x0,0x2b,0x30,0x32,0x33,0x30,0x0, + 0x2b,0x30,0x32,0x34,0x35,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0xf8,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xb1,0xee,0xda,0xfc,0xff,0xff,0xff,0xff, + 0xb4,0xc2,0x9a,0xd0,0xff,0xff,0xff,0xff,0xc7,0x91,0x47,0xd8,0xff,0xff,0xff,0xff, + 0xed,0x2f,0xe1,0xd4,0x0,0x1,0x2,0x3,0x1,0x0,0x0,0x22,0x84,0x0,0x0,0x0, + 0x0,0x2a,0x30,0x0,0x4,0x0,0x0,0x23,0x28,0x0,0x8,0x0,0x0,0x26,0xac,0x0, + 0xe,0x0,0x0,0x2a,0x30,0x0,0x4,0x4c,0x4d,0x54,0x0,0x45,0x41,0x54,0x0,0x2b, + 0x30,0x32,0x33,0x30,0x0,0x2b,0x30,0x32,0x34,0x35,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0xa,0x45,0x41,0x54,0x2d,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Indian/Chagos + 0x0,0x0,0x0,0xe1, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x4,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0x89, + 0x7e,0xf7,0x9c,0x30,0xe6,0xdd,0xb0,0x7f,0xff,0xff,0xff,0x0,0x1,0x2,0x2,0x0, + 0x0,0x43,0xe4,0x0,0x0,0x0,0x0,0x46,0x50,0x0,0x4,0x0,0x0,0x54,0x60,0x0, + 0x8,0x4c,0x4d,0x54,0x0,0x2b,0x30,0x35,0x0,0x2b,0x30,0x36,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0xf8, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x89,0x7e,0xf7,0x9c,0x0, + 0x0,0x0,0x0,0x30,0xe6,0xdd,0xb0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0, + 0x1,0x2,0x2,0x0,0x0,0x43,0xe4,0x0,0x0,0x0,0x0,0x46,0x50,0x0,0x4,0x0, + 0x0,0x54,0x60,0x0,0x8,0x4c,0x4d,0x54,0x0,0x2b,0x30,0x35,0x0,0x2b,0x30,0x36, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2b,0x30,0x36,0x3e,0x2d,0x36,0xa, + + // /home/konrad/src/smoke/tzone/zoneinfo/Indian/Cocos + 0x0,0x0,0x0,0xbf, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0xa,0x80,0x0,0x0,0x0,0x7f, + 0xff,0xff,0xff,0x1,0x1,0x0,0x0,0x5a,0xdc,0x0,0x0,0x0,0x0,0x5b,0x68,0x0, + 0x4,0x4c,0x4d,0x54,0x0,0x2b,0x30,0x36,0x33,0x30,0x0,0x0,0x0,0x0,0x0,0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0xa,0xf8,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x7c,0x55,0x26,0xa4,0x0,0x0,0x0,0x0,0x7f, + 0xff,0xff,0xff,0x0,0x1,0x1,0x0,0x0,0x5a,0xdc,0x0,0x0,0x0,0x0,0x5b,0x68, + 0x0,0x4,0x4c,0x4d,0x54,0x0,0x2b,0x30,0x36,0x33,0x30,0x0,0x0,0x0,0x0,0x0, + 0xa,0x3c,0x2b,0x30,0x36,0x33,0x30,0x3e,0x2d,0x36,0x3a,0x33,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Indian/Mayotte + 0x0,0x0,0x1,0x1d, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x73,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x13,0x80,0x0,0x0,0x0,0x14, - 0xfe,0x66,0xe0,0x16,0x38,0x40,0xf8,0x16,0xe7,0x8a,0x68,0x18,0x21,0x5d,0x78,0x18, - 0xc7,0x6c,0x68,0x1a,0x1,0x3f,0x78,0x1a,0xa7,0x4e,0x68,0x1b,0xe1,0x21,0x78,0x1c, - 0x87,0x30,0x68,0x1d,0xc1,0x3,0x78,0x1e,0x79,0x8e,0x70,0x1f,0x97,0xaa,0xf8,0x20, - 0x59,0x70,0x70,0x21,0x80,0xc7,0x78,0x22,0x42,0x8c,0xf0,0x23,0x69,0xe3,0xf8,0x24, - 0x22,0x6e,0xf0,0x25,0x49,0xc5,0xf8,0x25,0xef,0xdb,0xf0,0x27,0x29,0xa7,0xf8,0x27, - 0xcf,0xbd,0xf0,0x29,0x9,0x89,0xf8,0x29,0xaf,0x9f,0xf0,0x2a,0xe9,0x6b,0xf8,0x2b, - 0x98,0xbc,0x70,0x2c,0xd2,0x88,0x78,0x2d,0x78,0x9e,0x70,0x2e,0xb2,0x6a,0x78,0x2f, - 0x58,0x80,0x70,0x30,0x92,0x4c,0x78,0x31,0x5d,0x4c,0x70,0x32,0x72,0x2e,0x78,0x33, - 0x3d,0x2e,0x70,0x34,0x52,0x10,0x78,0x35,0x1d,0x10,0x70,0x36,0x31,0xf2,0x78,0x36, - 0xfc,0xf2,0x70,0x38,0x1b,0xe,0xf8,0x38,0xdc,0xd4,0x70,0x39,0xa7,0xe2,0x78,0x3a, - 0xbc,0xb6,0x70,0x3b,0xda,0xd2,0xf8,0x3c,0xa5,0xd2,0xf0,0x3d,0xba,0xb4,0xf8,0x3e, - 0x85,0xb4,0xf0,0x3f,0x9a,0x96,0xf8,0x40,0x65,0x96,0xf0,0x41,0x83,0xb3,0x78,0x42, - 0x45,0x78,0xf0,0x43,0x63,0x95,0x78,0x44,0x2e,0x95,0x70,0x45,0x43,0x77,0x78,0x46, - 0x5,0x3c,0xf0,0x47,0x23,0x59,0x78,0x47,0xf7,0x93,0xf0,0x48,0xe7,0x8b,0xf8,0x49, - 0xd7,0x75,0xf0,0x4a,0xc7,0x6d,0xf8,0x4b,0xb7,0x57,0xf0,0x4c,0xa7,0x4f,0xf8,0x4d, - 0x97,0x39,0xf0,0x4e,0x87,0x31,0xf8,0x4f,0x77,0x1b,0xf0,0x50,0x70,0x4e,0x78,0x51, - 0x60,0x38,0x70,0x52,0x50,0x30,0x78,0x53,0x40,0x1a,0x70,0x54,0x30,0x12,0x78,0x55, - 0x1f,0xfc,0x70,0x56,0xf,0xf4,0x78,0x56,0xff,0xde,0x70,0x57,0xef,0xd6,0x78,0x58, - 0xdf,0xc0,0x70,0x59,0xcf,0xb8,0x78,0x5a,0xbf,0xa2,0x70,0x5b,0xb8,0xd4,0xf8,0x5c, - 0xa8,0xbe,0xf0,0x5d,0x98,0xb6,0xf8,0x5e,0x88,0xa0,0xf0,0x5f,0x78,0x98,0xf8,0x60, - 0x68,0x82,0xf0,0x61,0x58,0x7a,0xf8,0x62,0x48,0x64,0xf0,0x63,0x38,0x5c,0xf8,0x64, - 0x28,0x46,0xf0,0x65,0x18,0x3e,0xf8,0x66,0x11,0x63,0x70,0x67,0x1,0x5b,0x78,0x67, - 0xf1,0x45,0x70,0x68,0xe1,0x3d,0x78,0x69,0xd1,0x27,0x70,0x6a,0xc1,0x1f,0x78,0x6b, - 0xb1,0x9,0x70,0x6c,0xa1,0x1,0x78,0x6d,0x90,0xeb,0x70,0x6e,0x80,0xe3,0x78,0x6f, - 0x70,0xcd,0x70,0x70,0x69,0xff,0xf8,0x71,0x59,0xe9,0xf0,0x72,0x49,0xe1,0xf8,0x73, - 0x39,0xcb,0xf0,0x74,0x29,0xc3,0xf8,0x75,0x19,0xad,0xf0,0x76,0x9,0xa5,0xf8,0x76, - 0xf9,0x8f,0xf0,0x77,0xe9,0x87,0xf8,0x78,0xd9,0x71,0xf0,0x79,0xc9,0x69,0xf8,0x7a, - 0xb9,0x53,0xf0,0x7b,0xb2,0x86,0x78,0x7c,0xa2,0x70,0x70,0x7d,0x92,0x68,0x78,0x7e, - 0x82,0x52,0x70,0x7f,0x72,0x4a,0x78,0x1,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x0,0x0,0x95,0x24,0x0,0x0, - 0x0,0x0,0x8c,0xa0,0x0,0x4,0x0,0x0,0xa1,0xb8,0x1,0x9,0x0,0x0,0x93,0xa8, - 0x0,0xe,0x0,0x0,0x9a,0xb0,0x1,0x9,0x4c,0x4d,0x54,0x0,0x41,0x45,0x53,0x54, - 0x0,0x4c,0x48,0x44,0x54,0x0,0x4c,0x48,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0, - 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x74,0x0,0x0,0x0,0x5,0x0,0x0,0x0, - 0x13,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x73,0x16,0x77, - 0xdc,0x0,0x0,0x0,0x0,0x14,0xfe,0x66,0xe0,0x0,0x0,0x0,0x0,0x16,0x38,0x40, - 0xf8,0x0,0x0,0x0,0x0,0x16,0xe7,0x8a,0x68,0x0,0x0,0x0,0x0,0x18,0x21,0x5d, - 0x78,0x0,0x0,0x0,0x0,0x18,0xc7,0x6c,0x68,0x0,0x0,0x0,0x0,0x1a,0x1,0x3f, - 0x78,0x0,0x0,0x0,0x0,0x1a,0xa7,0x4e,0x68,0x0,0x0,0x0,0x0,0x1b,0xe1,0x21, - 0x78,0x0,0x0,0x0,0x0,0x1c,0x87,0x30,0x68,0x0,0x0,0x0,0x0,0x1d,0xc1,0x3, - 0x78,0x0,0x0,0x0,0x0,0x1e,0x79,0x8e,0x70,0x0,0x0,0x0,0x0,0x1f,0x97,0xaa, - 0xf8,0x0,0x0,0x0,0x0,0x20,0x59,0x70,0x70,0x0,0x0,0x0,0x0,0x21,0x80,0xc7, - 0x78,0x0,0x0,0x0,0x0,0x22,0x42,0x8c,0xf0,0x0,0x0,0x0,0x0,0x23,0x69,0xe3, - 0xf8,0x0,0x0,0x0,0x0,0x24,0x22,0x6e,0xf0,0x0,0x0,0x0,0x0,0x25,0x49,0xc5, - 0xf8,0x0,0x0,0x0,0x0,0x25,0xef,0xdb,0xf0,0x0,0x0,0x0,0x0,0x27,0x29,0xa7, - 0xf8,0x0,0x0,0x0,0x0,0x27,0xcf,0xbd,0xf0,0x0,0x0,0x0,0x0,0x29,0x9,0x89, - 0xf8,0x0,0x0,0x0,0x0,0x29,0xaf,0x9f,0xf0,0x0,0x0,0x0,0x0,0x2a,0xe9,0x6b, - 0xf8,0x0,0x0,0x0,0x0,0x2b,0x98,0xbc,0x70,0x0,0x0,0x0,0x0,0x2c,0xd2,0x88, - 0x78,0x0,0x0,0x0,0x0,0x2d,0x78,0x9e,0x70,0x0,0x0,0x0,0x0,0x2e,0xb2,0x6a, - 0x78,0x0,0x0,0x0,0x0,0x2f,0x58,0x80,0x70,0x0,0x0,0x0,0x0,0x30,0x92,0x4c, - 0x78,0x0,0x0,0x0,0x0,0x31,0x5d,0x4c,0x70,0x0,0x0,0x0,0x0,0x32,0x72,0x2e, - 0x78,0x0,0x0,0x0,0x0,0x33,0x3d,0x2e,0x70,0x0,0x0,0x0,0x0,0x34,0x52,0x10, - 0x78,0x0,0x0,0x0,0x0,0x35,0x1d,0x10,0x70,0x0,0x0,0x0,0x0,0x36,0x31,0xf2, - 0x78,0x0,0x0,0x0,0x0,0x36,0xfc,0xf2,0x70,0x0,0x0,0x0,0x0,0x38,0x1b,0xe, - 0xf8,0x0,0x0,0x0,0x0,0x38,0xdc,0xd4,0x70,0x0,0x0,0x0,0x0,0x39,0xa7,0xe2, - 0x78,0x0,0x0,0x0,0x0,0x3a,0xbc,0xb6,0x70,0x0,0x0,0x0,0x0,0x3b,0xda,0xd2, - 0xf8,0x0,0x0,0x0,0x0,0x3c,0xa5,0xd2,0xf0,0x0,0x0,0x0,0x0,0x3d,0xba,0xb4, - 0xf8,0x0,0x0,0x0,0x0,0x3e,0x85,0xb4,0xf0,0x0,0x0,0x0,0x0,0x3f,0x9a,0x96, - 0xf8,0x0,0x0,0x0,0x0,0x40,0x65,0x96,0xf0,0x0,0x0,0x0,0x0,0x41,0x83,0xb3, - 0x78,0x0,0x0,0x0,0x0,0x42,0x45,0x78,0xf0,0x0,0x0,0x0,0x0,0x43,0x63,0x95, - 0x78,0x0,0x0,0x0,0x0,0x44,0x2e,0x95,0x70,0x0,0x0,0x0,0x0,0x45,0x43,0x77, - 0x78,0x0,0x0,0x0,0x0,0x46,0x5,0x3c,0xf0,0x0,0x0,0x0,0x0,0x47,0x23,0x59, - 0x78,0x0,0x0,0x0,0x0,0x47,0xf7,0x93,0xf0,0x0,0x0,0x0,0x0,0x48,0xe7,0x8b, - 0xf8,0x0,0x0,0x0,0x0,0x49,0xd7,0x75,0xf0,0x0,0x0,0x0,0x0,0x4a,0xc7,0x6d, - 0xf8,0x0,0x0,0x0,0x0,0x4b,0xb7,0x57,0xf0,0x0,0x0,0x0,0x0,0x4c,0xa7,0x4f, - 0xf8,0x0,0x0,0x0,0x0,0x4d,0x97,0x39,0xf0,0x0,0x0,0x0,0x0,0x4e,0x87,0x31, - 0xf8,0x0,0x0,0x0,0x0,0x4f,0x77,0x1b,0xf0,0x0,0x0,0x0,0x0,0x50,0x70,0x4e, - 0x78,0x0,0x0,0x0,0x0,0x51,0x60,0x38,0x70,0x0,0x0,0x0,0x0,0x52,0x50,0x30, - 0x78,0x0,0x0,0x0,0x0,0x53,0x40,0x1a,0x70,0x0,0x0,0x0,0x0,0x54,0x30,0x12, - 0x78,0x0,0x0,0x0,0x0,0x55,0x1f,0xfc,0x70,0x0,0x0,0x0,0x0,0x56,0xf,0xf4, - 0x78,0x0,0x0,0x0,0x0,0x56,0xff,0xde,0x70,0x0,0x0,0x0,0x0,0x57,0xef,0xd6, - 0x78,0x0,0x0,0x0,0x0,0x58,0xdf,0xc0,0x70,0x0,0x0,0x0,0x0,0x59,0xcf,0xb8, - 0x78,0x0,0x0,0x0,0x0,0x5a,0xbf,0xa2,0x70,0x0,0x0,0x0,0x0,0x5b,0xb8,0xd4, - 0xf8,0x0,0x0,0x0,0x0,0x5c,0xa8,0xbe,0xf0,0x0,0x0,0x0,0x0,0x5d,0x98,0xb6, - 0xf8,0x0,0x0,0x0,0x0,0x5e,0x88,0xa0,0xf0,0x0,0x0,0x0,0x0,0x5f,0x78,0x98, - 0xf8,0x0,0x0,0x0,0x0,0x60,0x68,0x82,0xf0,0x0,0x0,0x0,0x0,0x61,0x58,0x7a, - 0xf8,0x0,0x0,0x0,0x0,0x62,0x48,0x64,0xf0,0x0,0x0,0x0,0x0,0x63,0x38,0x5c, - 0xf8,0x0,0x0,0x0,0x0,0x64,0x28,0x46,0xf0,0x0,0x0,0x0,0x0,0x65,0x18,0x3e, - 0xf8,0x0,0x0,0x0,0x0,0x66,0x11,0x63,0x70,0x0,0x0,0x0,0x0,0x67,0x1,0x5b, - 0x78,0x0,0x0,0x0,0x0,0x67,0xf1,0x45,0x70,0x0,0x0,0x0,0x0,0x68,0xe1,0x3d, - 0x78,0x0,0x0,0x0,0x0,0x69,0xd1,0x27,0x70,0x0,0x0,0x0,0x0,0x6a,0xc1,0x1f, - 0x78,0x0,0x0,0x0,0x0,0x6b,0xb1,0x9,0x70,0x0,0x0,0x0,0x0,0x6c,0xa1,0x1, - 0x78,0x0,0x0,0x0,0x0,0x6d,0x90,0xeb,0x70,0x0,0x0,0x0,0x0,0x6e,0x80,0xe3, - 0x78,0x0,0x0,0x0,0x0,0x6f,0x70,0xcd,0x70,0x0,0x0,0x0,0x0,0x70,0x69,0xff, - 0xf8,0x0,0x0,0x0,0x0,0x71,0x59,0xe9,0xf0,0x0,0x0,0x0,0x0,0x72,0x49,0xe1, - 0xf8,0x0,0x0,0x0,0x0,0x73,0x39,0xcb,0xf0,0x0,0x0,0x0,0x0,0x74,0x29,0xc3, - 0xf8,0x0,0x0,0x0,0x0,0x75,0x19,0xad,0xf0,0x0,0x0,0x0,0x0,0x76,0x9,0xa5, - 0xf8,0x0,0x0,0x0,0x0,0x76,0xf9,0x8f,0xf0,0x0,0x0,0x0,0x0,0x77,0xe9,0x87, - 0xf8,0x0,0x0,0x0,0x0,0x78,0xd9,0x71,0xf0,0x0,0x0,0x0,0x0,0x79,0xc9,0x69, - 0xf8,0x0,0x0,0x0,0x0,0x7a,0xb9,0x53,0xf0,0x0,0x0,0x0,0x0,0x7b,0xb2,0x86, - 0x78,0x0,0x0,0x0,0x0,0x7c,0xa2,0x70,0x70,0x0,0x0,0x0,0x0,0x7d,0x92,0x68, - 0x78,0x0,0x0,0x0,0x0,0x7e,0x82,0x52,0x70,0x0,0x0,0x0,0x0,0x7f,0x72,0x4a, - 0x78,0x0,0x1,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x0,0x0,0x95,0x24,0x0,0x0,0x0,0x0,0x8c,0xa0,0x0, - 0x4,0x0,0x0,0xa1,0xb8,0x1,0x9,0x0,0x0,0x93,0xa8,0x0,0xe,0x0,0x0,0x9a, - 0xb0,0x1,0x9,0x4c,0x4d,0x54,0x0,0x41,0x45,0x53,0x54,0x0,0x4c,0x48,0x44,0x54, - 0x0,0x4c,0x48,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0xa,0x4c,0x48,0x53,0x54,0x2d,0x31,0x30,0x3a,0x33,0x30,0x4c,0x48,0x44,0x54,0x2d, - 0x31,0x31,0x2c,0x4d,0x31,0x30,0x2e,0x31,0x2e,0x30,0x2c,0x4d,0x34,0x2e,0x31,0x2e, - 0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Australia/Eucla - 0x0,0x0,0x1,0xe7, + 0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0xb1, + 0xee,0xda,0xfc,0xb4,0xc2,0x9a,0xd0,0xc7,0x91,0x47,0xd8,0xed,0x2f,0xe1,0xd4,0x0, + 0x1,0x2,0x3,0x1,0x0,0x0,0x22,0x84,0x0,0x0,0x0,0x0,0x2a,0x30,0x0,0x4, + 0x0,0x0,0x23,0x28,0x0,0x8,0x0,0x0,0x26,0xac,0x0,0xe,0x0,0x0,0x2a,0x30, + 0x0,0x4,0x4c,0x4d,0x54,0x0,0x45,0x41,0x54,0x0,0x2b,0x30,0x32,0x33,0x30,0x0, + 0x2b,0x30,0x32,0x34,0x35,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0xf8,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xb1,0xee,0xda,0xfc,0xff,0xff,0xff,0xff, + 0xb4,0xc2,0x9a,0xd0,0xff,0xff,0xff,0xff,0xc7,0x91,0x47,0xd8,0xff,0xff,0xff,0xff, + 0xed,0x2f,0xe1,0xd4,0x0,0x1,0x2,0x3,0x1,0x0,0x0,0x22,0x84,0x0,0x0,0x0, + 0x0,0x2a,0x30,0x0,0x4,0x0,0x0,0x23,0x28,0x0,0x8,0x0,0x0,0x26,0xac,0x0, + 0xe,0x0,0x0,0x2a,0x30,0x0,0x4,0x4c,0x4d,0x54,0x0,0x45,0x41,0x54,0x0,0x2b, + 0x30,0x32,0x33,0x30,0x0,0x2b,0x30,0x32,0x34,0x35,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0xa,0x45,0x41,0x54,0x2d,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Indian/Mahe + 0x0,0x0,0x0,0xbb, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x13,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x10,0x80,0x0,0x0,0x0,0x9c, - 0x4e,0xb8,0x30,0x9c,0xbc,0x32,0x84,0xcb,0x54,0xc4,0x94,0xcb,0xc7,0x69,0x4,0xcc, - 0xb7,0x68,0x14,0xcd,0xa7,0x4b,0x4,0x9,0xf,0xf1,0x14,0x9,0xb6,0xe,0x14,0x1a, - 0x1,0x58,0x14,0x1a,0xa7,0x75,0x14,0x29,0x25,0x52,0x14,0x29,0xaf,0xbf,0x94,0x45, - 0x71,0xb4,0x94,0x46,0x5,0x5c,0x94,0x47,0x23,0x72,0x14,0x47,0xee,0x79,0x14,0x49, - 0x3,0x54,0x14,0x49,0xce,0x5b,0x14,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x0,0x0,0x78,0xd0,0x0,0x0, - 0x0,0x0,0x89,0x1c,0x1,0x4,0x0,0x0,0x7b,0xc,0x0,0xa,0x0,0x0,0x89,0x1c, - 0x1,0x4,0x0,0x0,0x7b,0xc,0x0,0xa,0x4c,0x4d,0x54,0x0,0x41,0x43,0x57,0x44, - 0x54,0x0,0x41,0x43,0x57,0x53,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x88, + 0x64,0xe6,0x84,0x7f,0xff,0xff,0xff,0x0,0x1,0x1,0x0,0x0,0x33,0xfc,0x0,0x0, + 0x0,0x0,0x38,0x40,0x0,0x4,0x4c,0x4d,0x54,0x0,0x2b,0x30,0x34,0x0,0x0,0x0, 0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x10,0xf8,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x74,0xa6,0xa,0xb0,0xff,0xff, - 0xff,0xff,0x9c,0x4e,0xb8,0x30,0xff,0xff,0xff,0xff,0x9c,0xbc,0x32,0x84,0xff,0xff, - 0xff,0xff,0xcb,0x54,0xc4,0x94,0xff,0xff,0xff,0xff,0xcb,0xc7,0x69,0x4,0xff,0xff, - 0xff,0xff,0xcc,0xb7,0x68,0x14,0xff,0xff,0xff,0xff,0xcd,0xa7,0x4b,0x4,0x0,0x0, - 0x0,0x0,0x9,0xf,0xf1,0x14,0x0,0x0,0x0,0x0,0x9,0xb6,0xe,0x14,0x0,0x0, - 0x0,0x0,0x1a,0x1,0x58,0x14,0x0,0x0,0x0,0x0,0x1a,0xa7,0x75,0x14,0x0,0x0, - 0x0,0x0,0x29,0x25,0x52,0x14,0x0,0x0,0x0,0x0,0x29,0xaf,0xbf,0x94,0x0,0x0, - 0x0,0x0,0x45,0x71,0xb4,0x94,0x0,0x0,0x0,0x0,0x46,0x5,0x5c,0x94,0x0,0x0, - 0x0,0x0,0x47,0x23,0x72,0x14,0x0,0x0,0x0,0x0,0x47,0xee,0x79,0x14,0x0,0x0, - 0x0,0x0,0x49,0x3,0x54,0x14,0x0,0x0,0x0,0x0,0x49,0xce,0x5b,0x14,0x0,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x0,0x0,0x78,0xd0,0x0,0x0,0x0,0x0,0x89,0x1c,0x1,0x4,0x0,0x0, - 0x7b,0xc,0x0,0xa,0x0,0x0,0x89,0x1c,0x1,0x4,0x0,0x0,0x7b,0xc,0x0,0xa, - 0x4c,0x4d,0x54,0x0,0x41,0x43,0x57,0x44,0x54,0x0,0x41,0x43,0x57,0x53,0x54,0x0, - 0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0xa,0x41,0x43,0x57,0x53,0x54, - 0x2d,0x38,0x3a,0x34,0x35,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Australia/Brisbane - 0x0,0x0,0x1,0xc4, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x88,0x64,0xe6,0x84,0x0,0x0, + 0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x1,0x0,0x0,0x33,0xfc,0x0,0x0,0x0, + 0x0,0x38,0x40,0x0,0x4,0x4c,0x4d,0x54,0x0,0x2b,0x30,0x34,0x0,0x0,0x0,0x0, + 0x0,0xa,0x3c,0x2b,0x30,0x34,0x3e,0x2d,0x34,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Indian/Mauritius + 0x0,0x0,0x1,0xb, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x11,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xe,0x80,0x0,0x0,0x0,0x9c, - 0x4e,0xa6,0x9c,0x9c,0xbc,0x20,0xf0,0xcb,0x54,0xb3,0x0,0xcb,0xc7,0x57,0x70,0xcc, - 0xb7,0x56,0x80,0xcd,0xa7,0x39,0x70,0xce,0xa0,0x73,0x0,0xcf,0x87,0x1b,0x70,0x3, - 0x70,0x39,0x80,0x4,0xd,0x1c,0x0,0x25,0x49,0xcd,0x0,0x25,0xef,0xea,0x0,0x27, - 0x29,0xaf,0x0,0x27,0xcf,0xcc,0x0,0x29,0x9,0x91,0x0,0x29,0xaf,0xae,0x0,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x0,0x0,0x8f,0x78,0x0,0x0,0x0,0x0,0x9a,0xb0,0x1,0x4,0x0,0x0,0x8c,0xa0, - 0x0,0x9,0x0,0x0,0x9a,0xb0,0x1,0x4,0x0,0x0,0x8c,0xa0,0x0,0x9,0x4c,0x4d, - 0x54,0x0,0x41,0x45,0x44,0x54,0x0,0x41,0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x1, - 0x1,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0, - 0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x5,0x0,0x0, - 0x0,0xe,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x72,0xed, - 0x9f,0x8,0xff,0xff,0xff,0xff,0x9c,0x4e,0xa6,0x9c,0xff,0xff,0xff,0xff,0x9c,0xbc, - 0x20,0xf0,0xff,0xff,0xff,0xff,0xcb,0x54,0xb3,0x0,0xff,0xff,0xff,0xff,0xcb,0xc7, - 0x57,0x70,0xff,0xff,0xff,0xff,0xcc,0xb7,0x56,0x80,0xff,0xff,0xff,0xff,0xcd,0xa7, - 0x39,0x70,0xff,0xff,0xff,0xff,0xce,0xa0,0x73,0x0,0xff,0xff,0xff,0xff,0xcf,0x87, - 0x1b,0x70,0x0,0x0,0x0,0x0,0x3,0x70,0x39,0x80,0x0,0x0,0x0,0x0,0x4,0xd, - 0x1c,0x0,0x0,0x0,0x0,0x0,0x25,0x49,0xcd,0x0,0x0,0x0,0x0,0x0,0x25,0xef, - 0xea,0x0,0x0,0x0,0x0,0x0,0x27,0x29,0xaf,0x0,0x0,0x0,0x0,0x0,0x27,0xcf, - 0xcc,0x0,0x0,0x0,0x0,0x0,0x29,0x9,0x91,0x0,0x0,0x0,0x0,0x0,0x29,0xaf, - 0xae,0x0,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x0,0x0,0x8f,0x78,0x0,0x0,0x0,0x0,0x9a,0xb0,0x1,0x4, - 0x0,0x0,0x8c,0xa0,0x0,0x9,0x0,0x0,0x9a,0xb0,0x1,0x4,0x0,0x0,0x8c,0xa0, - 0x0,0x9,0x4c,0x4d,0x54,0x0,0x41,0x45,0x44,0x54,0x0,0x41,0x45,0x53,0x54,0x0, - 0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0xa,0x41,0x45,0x53,0x54,0x2d, - 0x31,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Australia/Victoria - 0x0,0x0,0x8,0xaf, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x7,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0x89, + 0x7f,0x5,0x98,0x18,0x5,0xed,0x40,0x18,0xdb,0x72,0x30,0x49,0x3,0x96,0xe0,0x49, + 0xce,0x8f,0xd0,0x7f,0xff,0xff,0xff,0x0,0x2,0x1,0x2,0x1,0x2,0x2,0x0,0x0, + 0x35,0xe8,0x0,0x0,0x0,0x0,0x46,0x50,0x1,0x4,0x0,0x0,0x38,0x40,0x0,0x8, + 0x4c,0x4d,0x54,0x0,0x2b,0x30,0x35,0x0,0x2b,0x30,0x34,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0xf8,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x89,0x7f,0x5,0x98,0x0,0x0, + 0x0,0x0,0x18,0x5,0xed,0x40,0x0,0x0,0x0,0x0,0x18,0xdb,0x72,0x30,0x0,0x0, + 0x0,0x0,0x49,0x3,0x96,0xe0,0x0,0x0,0x0,0x0,0x49,0xce,0x8f,0xd0,0x0,0x0, + 0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x2,0x1,0x2,0x1,0x2,0x2,0x0,0x0,0x35, + 0xe8,0x0,0x0,0x0,0x0,0x46,0x50,0x1,0x4,0x0,0x0,0x38,0x40,0x0,0x8,0x4c, + 0x4d,0x54,0x0,0x2b,0x30,0x35,0x0,0x2b,0x30,0x34,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xa,0x3c,0x2b,0x30,0x34,0x3e,0x2d,0x34,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Indian/Kerguelen + 0x0,0x0,0x0,0xbb, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x8e,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xe,0x80,0x0,0x0,0x0,0x9c, - 0x4e,0xa6,0x9c,0x9c,0xbc,0x20,0xf0,0xcb,0x54,0xb3,0x0,0xcb,0xc7,0x57,0x70,0xcc, - 0xb7,0x56,0x80,0xcd,0xa7,0x39,0x70,0xce,0xa0,0x73,0x0,0xcf,0x87,0x1b,0x70,0x3, - 0x70,0x39,0x80,0x4,0xd,0x1c,0x0,0x5,0x50,0x1b,0x80,0x5,0xf6,0x38,0x80,0x7, - 0x2f,0xfd,0x80,0x7,0xd6,0x1a,0x80,0x9,0xf,0xdf,0x80,0x9,0xb5,0xfc,0x80,0xa, - 0xef,0xc1,0x80,0xb,0x9f,0x19,0x0,0xc,0xd8,0xde,0x0,0xd,0x7e,0xfb,0x0,0xe, - 0xb8,0xc0,0x0,0xf,0x5e,0xdd,0x0,0x10,0x98,0xa2,0x0,0x11,0x3e,0xbf,0x0,0x12, - 0x78,0x84,0x0,0x13,0x1e,0xa1,0x0,0x14,0x58,0x66,0x0,0x14,0xfe,0x83,0x0,0x16, - 0x38,0x48,0x0,0x16,0xe7,0x9f,0x80,0x18,0x21,0x64,0x80,0x18,0xc7,0x81,0x80,0x1a, - 0x1,0x46,0x80,0x1a,0xa7,0x63,0x80,0x1b,0xe1,0x28,0x80,0x1c,0x87,0x45,0x80,0x1d, - 0xc1,0xa,0x80,0x1e,0x79,0x9c,0x80,0x1f,0x97,0xb2,0x0,0x20,0x59,0x7e,0x80,0x21, - 0x77,0x94,0x0,0x22,0x42,0x9b,0x0,0x23,0x69,0xeb,0x0,0x24,0x22,0x7d,0x0,0x25, - 0x49,0xcd,0x0,0x26,0x2,0x5f,0x0,0x27,0x29,0xaf,0x0,0x27,0xcf,0xcc,0x0,0x29, - 0x9,0x91,0x0,0x29,0xaf,0xae,0x0,0x2a,0xe9,0x73,0x0,0x2b,0x98,0xca,0x80,0x2c, - 0xd2,0x8f,0x80,0x2d,0x78,0xac,0x80,0x2e,0xb2,0x71,0x80,0x2f,0x74,0x3e,0x0,0x30, - 0x92,0x53,0x80,0x31,0x5d,0x5a,0x80,0x32,0x72,0x35,0x80,0x33,0x3d,0x3c,0x80,0x34, - 0x52,0x17,0x80,0x35,0x1d,0x1e,0x80,0x36,0x31,0xf9,0x80,0x36,0xfd,0x0,0x80,0x38, - 0x1b,0x16,0x0,0x38,0xdc,0xe2,0x80,0x39,0xa7,0xe9,0x80,0x3a,0xbc,0xc4,0x80,0x3b, - 0xda,0xda,0x0,0x3c,0xa5,0xe1,0x0,0x3d,0xba,0xbc,0x0,0x3e,0x85,0xc3,0x0,0x3f, - 0x9a,0x9e,0x0,0x40,0x65,0xa5,0x0,0x41,0x83,0xba,0x80,0x42,0x45,0x87,0x0,0x43, - 0x63,0x9c,0x80,0x44,0x2e,0xa3,0x80,0x45,0x43,0x7e,0x80,0x46,0x5,0x4b,0x0,0x47, - 0x23,0x60,0x80,0x47,0xf7,0xa2,0x0,0x48,0xe7,0x93,0x0,0x49,0xd7,0x84,0x0,0x4a, - 0xc7,0x75,0x0,0x4b,0xb7,0x66,0x0,0x4c,0xa7,0x57,0x0,0x4d,0x97,0x48,0x0,0x4e, - 0x87,0x39,0x0,0x4f,0x77,0x2a,0x0,0x50,0x70,0x55,0x80,0x51,0x60,0x46,0x80,0x52, - 0x50,0x37,0x80,0x53,0x40,0x28,0x80,0x54,0x30,0x19,0x80,0x55,0x20,0xa,0x80,0x56, - 0xf,0xfb,0x80,0x56,0xff,0xec,0x80,0x57,0xef,0xdd,0x80,0x58,0xdf,0xce,0x80,0x59, - 0xcf,0xbf,0x80,0x5a,0xbf,0xb0,0x80,0x5b,0xb8,0xdc,0x0,0x5c,0xa8,0xcd,0x0,0x5d, - 0x98,0xbe,0x0,0x5e,0x88,0xaf,0x0,0x5f,0x78,0xa0,0x0,0x60,0x68,0x91,0x0,0x61, - 0x58,0x82,0x0,0x62,0x48,0x73,0x0,0x63,0x38,0x64,0x0,0x64,0x28,0x55,0x0,0x65, - 0x18,0x46,0x0,0x66,0x11,0x71,0x80,0x67,0x1,0x62,0x80,0x67,0xf1,0x53,0x80,0x68, - 0xe1,0x44,0x80,0x69,0xd1,0x35,0x80,0x6a,0xc1,0x26,0x80,0x6b,0xb1,0x17,0x80,0x6c, - 0xa1,0x8,0x80,0x6d,0x90,0xf9,0x80,0x6e,0x80,0xea,0x80,0x6f,0x70,0xdb,0x80,0x70, - 0x6a,0x7,0x0,0x71,0x59,0xf8,0x0,0x72,0x49,0xe9,0x0,0x73,0x39,0xda,0x0,0x74, - 0x29,0xcb,0x0,0x75,0x19,0xbc,0x0,0x76,0x9,0xad,0x0,0x76,0xf9,0x9e,0x0,0x77, - 0xe9,0x8f,0x0,0x78,0xd9,0x80,0x0,0x79,0xc9,0x71,0x0,0x7a,0xb9,0x62,0x0,0x7b, - 0xb2,0x8d,0x80,0x7c,0xa2,0x7e,0x80,0x7d,0x92,0x6f,0x80,0x7e,0x82,0x60,0x80,0x7f, - 0x72,0x51,0x80,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x0,0x0,0x87,0xe8,0x0,0x0,0x0,0x0,0x9a,0xb0,0x1,0x4,0x0,0x0,0x8c, - 0xa0,0x0,0x9,0x0,0x0,0x9a,0xb0,0x1,0x4,0x0,0x0,0x8c,0xa0,0x0,0x9,0x4c, - 0x4d,0x54,0x0,0x41,0x45,0x44,0x54,0x0,0x41,0x45,0x53,0x54,0x0,0x0,0x0,0x0, - 0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0, - 0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0x0,0x0,0x0,0x5,0x0, - 0x0,0x0,0xe,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x73, - 0x16,0x85,0x18,0xff,0xff,0xff,0xff,0x9c,0x4e,0xa6,0x9c,0xff,0xff,0xff,0xff,0x9c, - 0xbc,0x20,0xf0,0xff,0xff,0xff,0xff,0xcb,0x54,0xb3,0x0,0xff,0xff,0xff,0xff,0xcb, - 0xc7,0x57,0x70,0xff,0xff,0xff,0xff,0xcc,0xb7,0x56,0x80,0xff,0xff,0xff,0xff,0xcd, - 0xa7,0x39,0x70,0xff,0xff,0xff,0xff,0xce,0xa0,0x73,0x0,0xff,0xff,0xff,0xff,0xcf, - 0x87,0x1b,0x70,0x0,0x0,0x0,0x0,0x3,0x70,0x39,0x80,0x0,0x0,0x0,0x0,0x4, - 0xd,0x1c,0x0,0x0,0x0,0x0,0x0,0x5,0x50,0x1b,0x80,0x0,0x0,0x0,0x0,0x5, - 0xf6,0x38,0x80,0x0,0x0,0x0,0x0,0x7,0x2f,0xfd,0x80,0x0,0x0,0x0,0x0,0x7, - 0xd6,0x1a,0x80,0x0,0x0,0x0,0x0,0x9,0xf,0xdf,0x80,0x0,0x0,0x0,0x0,0x9, - 0xb5,0xfc,0x80,0x0,0x0,0x0,0x0,0xa,0xef,0xc1,0x80,0x0,0x0,0x0,0x0,0xb, - 0x9f,0x19,0x0,0x0,0x0,0x0,0x0,0xc,0xd8,0xde,0x0,0x0,0x0,0x0,0x0,0xd, - 0x7e,0xfb,0x0,0x0,0x0,0x0,0x0,0xe,0xb8,0xc0,0x0,0x0,0x0,0x0,0x0,0xf, - 0x5e,0xdd,0x0,0x0,0x0,0x0,0x0,0x10,0x98,0xa2,0x0,0x0,0x0,0x0,0x0,0x11, - 0x3e,0xbf,0x0,0x0,0x0,0x0,0x0,0x12,0x78,0x84,0x0,0x0,0x0,0x0,0x0,0x13, - 0x1e,0xa1,0x0,0x0,0x0,0x0,0x0,0x14,0x58,0x66,0x0,0x0,0x0,0x0,0x0,0x14, - 0xfe,0x83,0x0,0x0,0x0,0x0,0x0,0x16,0x38,0x48,0x0,0x0,0x0,0x0,0x0,0x16, - 0xe7,0x9f,0x80,0x0,0x0,0x0,0x0,0x18,0x21,0x64,0x80,0x0,0x0,0x0,0x0,0x18, - 0xc7,0x81,0x80,0x0,0x0,0x0,0x0,0x1a,0x1,0x46,0x80,0x0,0x0,0x0,0x0,0x1a, - 0xa7,0x63,0x80,0x0,0x0,0x0,0x0,0x1b,0xe1,0x28,0x80,0x0,0x0,0x0,0x0,0x1c, - 0x87,0x45,0x80,0x0,0x0,0x0,0x0,0x1d,0xc1,0xa,0x80,0x0,0x0,0x0,0x0,0x1e, - 0x79,0x9c,0x80,0x0,0x0,0x0,0x0,0x1f,0x97,0xb2,0x0,0x0,0x0,0x0,0x0,0x20, - 0x59,0x7e,0x80,0x0,0x0,0x0,0x0,0x21,0x77,0x94,0x0,0x0,0x0,0x0,0x0,0x22, - 0x42,0x9b,0x0,0x0,0x0,0x0,0x0,0x23,0x69,0xeb,0x0,0x0,0x0,0x0,0x0,0x24, - 0x22,0x7d,0x0,0x0,0x0,0x0,0x0,0x25,0x49,0xcd,0x0,0x0,0x0,0x0,0x0,0x26, - 0x2,0x5f,0x0,0x0,0x0,0x0,0x0,0x27,0x29,0xaf,0x0,0x0,0x0,0x0,0x0,0x27, - 0xcf,0xcc,0x0,0x0,0x0,0x0,0x0,0x29,0x9,0x91,0x0,0x0,0x0,0x0,0x0,0x29, - 0xaf,0xae,0x0,0x0,0x0,0x0,0x0,0x2a,0xe9,0x73,0x0,0x0,0x0,0x0,0x0,0x2b, - 0x98,0xca,0x80,0x0,0x0,0x0,0x0,0x2c,0xd2,0x8f,0x80,0x0,0x0,0x0,0x0,0x2d, - 0x78,0xac,0x80,0x0,0x0,0x0,0x0,0x2e,0xb2,0x71,0x80,0x0,0x0,0x0,0x0,0x2f, - 0x74,0x3e,0x0,0x0,0x0,0x0,0x0,0x30,0x92,0x53,0x80,0x0,0x0,0x0,0x0,0x31, - 0x5d,0x5a,0x80,0x0,0x0,0x0,0x0,0x32,0x72,0x35,0x80,0x0,0x0,0x0,0x0,0x33, - 0x3d,0x3c,0x80,0x0,0x0,0x0,0x0,0x34,0x52,0x17,0x80,0x0,0x0,0x0,0x0,0x35, - 0x1d,0x1e,0x80,0x0,0x0,0x0,0x0,0x36,0x31,0xf9,0x80,0x0,0x0,0x0,0x0,0x36, - 0xfd,0x0,0x80,0x0,0x0,0x0,0x0,0x38,0x1b,0x16,0x0,0x0,0x0,0x0,0x0,0x38, - 0xdc,0xe2,0x80,0x0,0x0,0x0,0x0,0x39,0xa7,0xe9,0x80,0x0,0x0,0x0,0x0,0x3a, - 0xbc,0xc4,0x80,0x0,0x0,0x0,0x0,0x3b,0xda,0xda,0x0,0x0,0x0,0x0,0x0,0x3c, - 0xa5,0xe1,0x0,0x0,0x0,0x0,0x0,0x3d,0xba,0xbc,0x0,0x0,0x0,0x0,0x0,0x3e, - 0x85,0xc3,0x0,0x0,0x0,0x0,0x0,0x3f,0x9a,0x9e,0x0,0x0,0x0,0x0,0x0,0x40, - 0x65,0xa5,0x0,0x0,0x0,0x0,0x0,0x41,0x83,0xba,0x80,0x0,0x0,0x0,0x0,0x42, - 0x45,0x87,0x0,0x0,0x0,0x0,0x0,0x43,0x63,0x9c,0x80,0x0,0x0,0x0,0x0,0x44, - 0x2e,0xa3,0x80,0x0,0x0,0x0,0x0,0x45,0x43,0x7e,0x80,0x0,0x0,0x0,0x0,0x46, - 0x5,0x4b,0x0,0x0,0x0,0x0,0x0,0x47,0x23,0x60,0x80,0x0,0x0,0x0,0x0,0x47, - 0xf7,0xa2,0x0,0x0,0x0,0x0,0x0,0x48,0xe7,0x93,0x0,0x0,0x0,0x0,0x0,0x49, - 0xd7,0x84,0x0,0x0,0x0,0x0,0x0,0x4a,0xc7,0x75,0x0,0x0,0x0,0x0,0x0,0x4b, - 0xb7,0x66,0x0,0x0,0x0,0x0,0x0,0x4c,0xa7,0x57,0x0,0x0,0x0,0x0,0x0,0x4d, - 0x97,0x48,0x0,0x0,0x0,0x0,0x0,0x4e,0x87,0x39,0x0,0x0,0x0,0x0,0x0,0x4f, - 0x77,0x2a,0x0,0x0,0x0,0x0,0x0,0x50,0x70,0x55,0x80,0x0,0x0,0x0,0x0,0x51, - 0x60,0x46,0x80,0x0,0x0,0x0,0x0,0x52,0x50,0x37,0x80,0x0,0x0,0x0,0x0,0x53, - 0x40,0x28,0x80,0x0,0x0,0x0,0x0,0x54,0x30,0x19,0x80,0x0,0x0,0x0,0x0,0x55, - 0x20,0xa,0x80,0x0,0x0,0x0,0x0,0x56,0xf,0xfb,0x80,0x0,0x0,0x0,0x0,0x56, - 0xff,0xec,0x80,0x0,0x0,0x0,0x0,0x57,0xef,0xdd,0x80,0x0,0x0,0x0,0x0,0x58, - 0xdf,0xce,0x80,0x0,0x0,0x0,0x0,0x59,0xcf,0xbf,0x80,0x0,0x0,0x0,0x0,0x5a, - 0xbf,0xb0,0x80,0x0,0x0,0x0,0x0,0x5b,0xb8,0xdc,0x0,0x0,0x0,0x0,0x0,0x5c, - 0xa8,0xcd,0x0,0x0,0x0,0x0,0x0,0x5d,0x98,0xbe,0x0,0x0,0x0,0x0,0x0,0x5e, - 0x88,0xaf,0x0,0x0,0x0,0x0,0x0,0x5f,0x78,0xa0,0x0,0x0,0x0,0x0,0x0,0x60, - 0x68,0x91,0x0,0x0,0x0,0x0,0x0,0x61,0x58,0x82,0x0,0x0,0x0,0x0,0x0,0x62, - 0x48,0x73,0x0,0x0,0x0,0x0,0x0,0x63,0x38,0x64,0x0,0x0,0x0,0x0,0x0,0x64, - 0x28,0x55,0x0,0x0,0x0,0x0,0x0,0x65,0x18,0x46,0x0,0x0,0x0,0x0,0x0,0x66, - 0x11,0x71,0x80,0x0,0x0,0x0,0x0,0x67,0x1,0x62,0x80,0x0,0x0,0x0,0x0,0x67, - 0xf1,0x53,0x80,0x0,0x0,0x0,0x0,0x68,0xe1,0x44,0x80,0x0,0x0,0x0,0x0,0x69, - 0xd1,0x35,0x80,0x0,0x0,0x0,0x0,0x6a,0xc1,0x26,0x80,0x0,0x0,0x0,0x0,0x6b, - 0xb1,0x17,0x80,0x0,0x0,0x0,0x0,0x6c,0xa1,0x8,0x80,0x0,0x0,0x0,0x0,0x6d, - 0x90,0xf9,0x80,0x0,0x0,0x0,0x0,0x6e,0x80,0xea,0x80,0x0,0x0,0x0,0x0,0x6f, - 0x70,0xdb,0x80,0x0,0x0,0x0,0x0,0x70,0x6a,0x7,0x0,0x0,0x0,0x0,0x0,0x71, - 0x59,0xf8,0x0,0x0,0x0,0x0,0x0,0x72,0x49,0xe9,0x0,0x0,0x0,0x0,0x0,0x73, - 0x39,0xda,0x0,0x0,0x0,0x0,0x0,0x74,0x29,0xcb,0x0,0x0,0x0,0x0,0x0,0x75, - 0x19,0xbc,0x0,0x0,0x0,0x0,0x0,0x76,0x9,0xad,0x0,0x0,0x0,0x0,0x0,0x76, - 0xf9,0x9e,0x0,0x0,0x0,0x0,0x0,0x77,0xe9,0x8f,0x0,0x0,0x0,0x0,0x0,0x78, - 0xd9,0x80,0x0,0x0,0x0,0x0,0x0,0x79,0xc9,0x71,0x0,0x0,0x0,0x0,0x0,0x7a, - 0xb9,0x62,0x0,0x0,0x0,0x0,0x0,0x7b,0xb2,0x8d,0x80,0x0,0x0,0x0,0x0,0x7c, - 0xa2,0x7e,0x80,0x0,0x0,0x0,0x0,0x7d,0x92,0x6f,0x80,0x0,0x0,0x0,0x0,0x7e, - 0x82,0x60,0x80,0x0,0x0,0x0,0x0,0x7f,0x72,0x51,0x80,0x0,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x0,0x0,0x87,0xe8,0x0,0x0, - 0x0,0x0,0x9a,0xb0,0x1,0x4,0x0,0x0,0x8c,0xa0,0x0,0x9,0x0,0x0,0x9a,0xb0, - 0x1,0x4,0x0,0x0,0x8c,0xa0,0x0,0x9,0x4c,0x4d,0x54,0x0,0x41,0x45,0x44,0x54, - 0x0,0x41,0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0, - 0xa,0x41,0x45,0x53,0x54,0x2d,0x31,0x30,0x41,0x45,0x44,0x54,0x2c,0x4d,0x31,0x30, - 0x2e,0x31,0x2e,0x30,0x2c,0x4d,0x34,0x2e,0x31,0x2e,0x30,0x2f,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Australia/Currie - 0x0,0x0,0x8,0xaf, + 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0xda, + 0x61,0x62,0x80,0x7f,0xff,0xff,0xff,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x46,0x50,0x0,0x4,0x2d,0x30,0x30,0x0,0x2b,0x30,0x35,0x0,0x0,0x0, + 0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xda,0x61,0x62,0x80,0x0,0x0, + 0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x46,0x50,0x0,0x4,0x2d,0x30,0x30,0x0,0x2b,0x30,0x35,0x0,0x0,0x0,0x0, + 0x0,0xa,0x3c,0x2b,0x30,0x35,0x3e,0x2d,0x35,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Indian/Maldives + 0x0,0x0,0x0,0xdc, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x8e,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xe,0x80,0x0,0x0,0x0,0x9b, - 0xd5,0x78,0x80,0x9c,0xbc,0x20,0xf0,0xcb,0x54,0xb3,0x0,0xcb,0xc7,0x57,0x70,0xcc, - 0xb7,0x56,0x80,0xcd,0xa7,0x39,0x70,0xce,0xa0,0x73,0x0,0xcf,0x87,0x1b,0x70,0x3, - 0x70,0x39,0x80,0x4,0xd,0x1c,0x0,0x5,0x50,0x1b,0x80,0x5,0xf6,0x38,0x80,0x7, - 0x2f,0xfd,0x80,0x7,0xd6,0x1a,0x80,0x9,0xf,0xdf,0x80,0x9,0xb5,0xfc,0x80,0xa, - 0xef,0xc1,0x80,0xb,0x9f,0x19,0x0,0xc,0xd8,0xde,0x0,0xd,0x7e,0xfb,0x0,0xe, - 0xb8,0xc0,0x0,0xf,0x5e,0xdd,0x0,0x10,0x98,0xa2,0x0,0x11,0x3e,0xbf,0x0,0x12, - 0x78,0x84,0x0,0x13,0x1e,0xa1,0x0,0x14,0x58,0x66,0x0,0x14,0xfe,0x83,0x0,0x16, - 0x38,0x48,0x0,0x17,0x3,0x4f,0x0,0x18,0x21,0x64,0x80,0x18,0xe3,0x31,0x0,0x1a, - 0x1,0x46,0x80,0x1a,0xa7,0x63,0x80,0x1b,0xe1,0x28,0x80,0x1c,0x87,0x45,0x80,0x1d, - 0xc1,0xa,0x80,0x1e,0x67,0x27,0x80,0x1f,0x97,0xb2,0x0,0x20,0x59,0x7e,0x80,0x21, - 0x80,0xce,0x80,0x22,0x42,0x9b,0x0,0x23,0x69,0xeb,0x0,0x24,0x22,0x7d,0x0,0x25, - 0x49,0xcd,0x0,0x26,0x2,0x5f,0x0,0x27,0x29,0xaf,0x0,0x27,0xf4,0xb6,0x0,0x28, - 0xed,0xe1,0x80,0x29,0xd4,0x98,0x0,0x2a,0xcd,0xc3,0x80,0x2b,0xb4,0x7a,0x0,0x2c, - 0xad,0xa5,0x80,0x2d,0x94,0x5c,0x0,0x2e,0x8d,0x87,0x80,0x2f,0x74,0x3e,0x0,0x30, - 0x6d,0x69,0x80,0x31,0x5d,0x5a,0x80,0x32,0x56,0x86,0x0,0x33,0x3d,0x3c,0x80,0x34, - 0x36,0x68,0x0,0x35,0x1d,0x1e,0x80,0x36,0x16,0x4a,0x0,0x36,0xfd,0x0,0x80,0x37, - 0xf6,0x2c,0x0,0x38,0xdc,0xe2,0x80,0x39,0xa7,0xe9,0x80,0x3a,0xbc,0xc4,0x80,0x3b, - 0xbf,0x2a,0x80,0x3c,0xa5,0xe1,0x0,0x3d,0x9f,0xc,0x80,0x3e,0x85,0xc3,0x0,0x3f, - 0x7e,0xee,0x80,0x40,0x65,0xa5,0x0,0x41,0x5e,0xd0,0x80,0x42,0x45,0x87,0x0,0x43, - 0x3e,0xb2,0x80,0x44,0x2e,0xa3,0x80,0x45,0x1e,0x94,0x80,0x46,0x5,0x4b,0x0,0x47, - 0x7,0xb1,0x0,0x47,0xf7,0xa2,0x0,0x48,0xe7,0x93,0x0,0x49,0xd7,0x84,0x0,0x4a, - 0xc7,0x75,0x0,0x4b,0xb7,0x66,0x0,0x4c,0xa7,0x57,0x0,0x4d,0x97,0x48,0x0,0x4e, - 0x87,0x39,0x0,0x4f,0x77,0x2a,0x0,0x50,0x70,0x55,0x80,0x51,0x60,0x46,0x80,0x52, - 0x50,0x37,0x80,0x53,0x40,0x28,0x80,0x54,0x30,0x19,0x80,0x55,0x20,0xa,0x80,0x56, - 0xf,0xfb,0x80,0x56,0xff,0xec,0x80,0x57,0xef,0xdd,0x80,0x58,0xdf,0xce,0x80,0x59, - 0xcf,0xbf,0x80,0x5a,0xbf,0xb0,0x80,0x5b,0xb8,0xdc,0x0,0x5c,0xa8,0xcd,0x0,0x5d, - 0x98,0xbe,0x0,0x5e,0x88,0xaf,0x0,0x5f,0x78,0xa0,0x0,0x60,0x68,0x91,0x0,0x61, - 0x58,0x82,0x0,0x62,0x48,0x73,0x0,0x63,0x38,0x64,0x0,0x64,0x28,0x55,0x0,0x65, - 0x18,0x46,0x0,0x66,0x11,0x71,0x80,0x67,0x1,0x62,0x80,0x67,0xf1,0x53,0x80,0x68, - 0xe1,0x44,0x80,0x69,0xd1,0x35,0x80,0x6a,0xc1,0x26,0x80,0x6b,0xb1,0x17,0x80,0x6c, - 0xa1,0x8,0x80,0x6d,0x90,0xf9,0x80,0x6e,0x80,0xea,0x80,0x6f,0x70,0xdb,0x80,0x70, - 0x6a,0x7,0x0,0x71,0x59,0xf8,0x0,0x72,0x49,0xe9,0x0,0x73,0x39,0xda,0x0,0x74, - 0x29,0xcb,0x0,0x75,0x19,0xbc,0x0,0x76,0x9,0xad,0x0,0x76,0xf9,0x9e,0x0,0x77, - 0xe9,0x8f,0x0,0x78,0xd9,0x80,0x0,0x79,0xc9,0x71,0x0,0x7a,0xb9,0x62,0x0,0x7b, - 0xb2,0x8d,0x80,0x7c,0xa2,0x7e,0x80,0x7d,0x92,0x6f,0x80,0x7e,0x82,0x60,0x80,0x7f, - 0x72,0x51,0x80,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x0,0x0,0x86,0xe0,0x0,0x0,0x0,0x0,0x8c,0xa0,0x0,0x4,0x0,0x0,0x9a, - 0xb0,0x1,0x9,0x0,0x0,0x9a,0xb0,0x1,0x9,0x0,0x0,0x8c,0xa0,0x0,0x4,0x4c, - 0x4d,0x54,0x0,0x41,0x45,0x53,0x54,0x0,0x41,0x45,0x44,0x54,0x0,0x0,0x0,0x0, - 0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0, - 0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0x0,0x0,0x0,0x5,0x0, - 0x0,0x0,0xe,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x74, - 0x2e,0x4,0x20,0xff,0xff,0xff,0xff,0x9b,0xd5,0x78,0x80,0xff,0xff,0xff,0xff,0x9c, - 0xbc,0x20,0xf0,0xff,0xff,0xff,0xff,0xcb,0x54,0xb3,0x0,0xff,0xff,0xff,0xff,0xcb, - 0xc7,0x57,0x70,0xff,0xff,0xff,0xff,0xcc,0xb7,0x56,0x80,0xff,0xff,0xff,0xff,0xcd, - 0xa7,0x39,0x70,0xff,0xff,0xff,0xff,0xce,0xa0,0x73,0x0,0xff,0xff,0xff,0xff,0xcf, - 0x87,0x1b,0x70,0x0,0x0,0x0,0x0,0x3,0x70,0x39,0x80,0x0,0x0,0x0,0x0,0x4, - 0xd,0x1c,0x0,0x0,0x0,0x0,0x0,0x5,0x50,0x1b,0x80,0x0,0x0,0x0,0x0,0x5, - 0xf6,0x38,0x80,0x0,0x0,0x0,0x0,0x7,0x2f,0xfd,0x80,0x0,0x0,0x0,0x0,0x7, - 0xd6,0x1a,0x80,0x0,0x0,0x0,0x0,0x9,0xf,0xdf,0x80,0x0,0x0,0x0,0x0,0x9, - 0xb5,0xfc,0x80,0x0,0x0,0x0,0x0,0xa,0xef,0xc1,0x80,0x0,0x0,0x0,0x0,0xb, - 0x9f,0x19,0x0,0x0,0x0,0x0,0x0,0xc,0xd8,0xde,0x0,0x0,0x0,0x0,0x0,0xd, - 0x7e,0xfb,0x0,0x0,0x0,0x0,0x0,0xe,0xb8,0xc0,0x0,0x0,0x0,0x0,0x0,0xf, - 0x5e,0xdd,0x0,0x0,0x0,0x0,0x0,0x10,0x98,0xa2,0x0,0x0,0x0,0x0,0x0,0x11, - 0x3e,0xbf,0x0,0x0,0x0,0x0,0x0,0x12,0x78,0x84,0x0,0x0,0x0,0x0,0x0,0x13, - 0x1e,0xa1,0x0,0x0,0x0,0x0,0x0,0x14,0x58,0x66,0x0,0x0,0x0,0x0,0x0,0x14, - 0xfe,0x83,0x0,0x0,0x0,0x0,0x0,0x16,0x38,0x48,0x0,0x0,0x0,0x0,0x0,0x17, - 0x3,0x4f,0x0,0x0,0x0,0x0,0x0,0x18,0x21,0x64,0x80,0x0,0x0,0x0,0x0,0x18, - 0xe3,0x31,0x0,0x0,0x0,0x0,0x0,0x1a,0x1,0x46,0x80,0x0,0x0,0x0,0x0,0x1a, - 0xa7,0x63,0x80,0x0,0x0,0x0,0x0,0x1b,0xe1,0x28,0x80,0x0,0x0,0x0,0x0,0x1c, - 0x87,0x45,0x80,0x0,0x0,0x0,0x0,0x1d,0xc1,0xa,0x80,0x0,0x0,0x0,0x0,0x1e, - 0x67,0x27,0x80,0x0,0x0,0x0,0x0,0x1f,0x97,0xb2,0x0,0x0,0x0,0x0,0x0,0x20, - 0x59,0x7e,0x80,0x0,0x0,0x0,0x0,0x21,0x80,0xce,0x80,0x0,0x0,0x0,0x0,0x22, - 0x42,0x9b,0x0,0x0,0x0,0x0,0x0,0x23,0x69,0xeb,0x0,0x0,0x0,0x0,0x0,0x24, - 0x22,0x7d,0x0,0x0,0x0,0x0,0x0,0x25,0x49,0xcd,0x0,0x0,0x0,0x0,0x0,0x26, - 0x2,0x5f,0x0,0x0,0x0,0x0,0x0,0x27,0x29,0xaf,0x0,0x0,0x0,0x0,0x0,0x27, - 0xf4,0xb6,0x0,0x0,0x0,0x0,0x0,0x28,0xed,0xe1,0x80,0x0,0x0,0x0,0x0,0x29, - 0xd4,0x98,0x0,0x0,0x0,0x0,0x0,0x2a,0xcd,0xc3,0x80,0x0,0x0,0x0,0x0,0x2b, - 0xb4,0x7a,0x0,0x0,0x0,0x0,0x0,0x2c,0xad,0xa5,0x80,0x0,0x0,0x0,0x0,0x2d, - 0x94,0x5c,0x0,0x0,0x0,0x0,0x0,0x2e,0x8d,0x87,0x80,0x0,0x0,0x0,0x0,0x2f, - 0x74,0x3e,0x0,0x0,0x0,0x0,0x0,0x30,0x6d,0x69,0x80,0x0,0x0,0x0,0x0,0x31, - 0x5d,0x5a,0x80,0x0,0x0,0x0,0x0,0x32,0x56,0x86,0x0,0x0,0x0,0x0,0x0,0x33, - 0x3d,0x3c,0x80,0x0,0x0,0x0,0x0,0x34,0x36,0x68,0x0,0x0,0x0,0x0,0x0,0x35, - 0x1d,0x1e,0x80,0x0,0x0,0x0,0x0,0x36,0x16,0x4a,0x0,0x0,0x0,0x0,0x0,0x36, - 0xfd,0x0,0x80,0x0,0x0,0x0,0x0,0x37,0xf6,0x2c,0x0,0x0,0x0,0x0,0x0,0x38, - 0xdc,0xe2,0x80,0x0,0x0,0x0,0x0,0x39,0xa7,0xe9,0x80,0x0,0x0,0x0,0x0,0x3a, - 0xbc,0xc4,0x80,0x0,0x0,0x0,0x0,0x3b,0xbf,0x2a,0x80,0x0,0x0,0x0,0x0,0x3c, - 0xa5,0xe1,0x0,0x0,0x0,0x0,0x0,0x3d,0x9f,0xc,0x80,0x0,0x0,0x0,0x0,0x3e, - 0x85,0xc3,0x0,0x0,0x0,0x0,0x0,0x3f,0x7e,0xee,0x80,0x0,0x0,0x0,0x0,0x40, - 0x65,0xa5,0x0,0x0,0x0,0x0,0x0,0x41,0x5e,0xd0,0x80,0x0,0x0,0x0,0x0,0x42, - 0x45,0x87,0x0,0x0,0x0,0x0,0x0,0x43,0x3e,0xb2,0x80,0x0,0x0,0x0,0x0,0x44, - 0x2e,0xa3,0x80,0x0,0x0,0x0,0x0,0x45,0x1e,0x94,0x80,0x0,0x0,0x0,0x0,0x46, - 0x5,0x4b,0x0,0x0,0x0,0x0,0x0,0x47,0x7,0xb1,0x0,0x0,0x0,0x0,0x0,0x47, - 0xf7,0xa2,0x0,0x0,0x0,0x0,0x0,0x48,0xe7,0x93,0x0,0x0,0x0,0x0,0x0,0x49, - 0xd7,0x84,0x0,0x0,0x0,0x0,0x0,0x4a,0xc7,0x75,0x0,0x0,0x0,0x0,0x0,0x4b, - 0xb7,0x66,0x0,0x0,0x0,0x0,0x0,0x4c,0xa7,0x57,0x0,0x0,0x0,0x0,0x0,0x4d, - 0x97,0x48,0x0,0x0,0x0,0x0,0x0,0x4e,0x87,0x39,0x0,0x0,0x0,0x0,0x0,0x4f, - 0x77,0x2a,0x0,0x0,0x0,0x0,0x0,0x50,0x70,0x55,0x80,0x0,0x0,0x0,0x0,0x51, - 0x60,0x46,0x80,0x0,0x0,0x0,0x0,0x52,0x50,0x37,0x80,0x0,0x0,0x0,0x0,0x53, - 0x40,0x28,0x80,0x0,0x0,0x0,0x0,0x54,0x30,0x19,0x80,0x0,0x0,0x0,0x0,0x55, - 0x20,0xa,0x80,0x0,0x0,0x0,0x0,0x56,0xf,0xfb,0x80,0x0,0x0,0x0,0x0,0x56, - 0xff,0xec,0x80,0x0,0x0,0x0,0x0,0x57,0xef,0xdd,0x80,0x0,0x0,0x0,0x0,0x58, - 0xdf,0xce,0x80,0x0,0x0,0x0,0x0,0x59,0xcf,0xbf,0x80,0x0,0x0,0x0,0x0,0x5a, - 0xbf,0xb0,0x80,0x0,0x0,0x0,0x0,0x5b,0xb8,0xdc,0x0,0x0,0x0,0x0,0x0,0x5c, - 0xa8,0xcd,0x0,0x0,0x0,0x0,0x0,0x5d,0x98,0xbe,0x0,0x0,0x0,0x0,0x0,0x5e, - 0x88,0xaf,0x0,0x0,0x0,0x0,0x0,0x5f,0x78,0xa0,0x0,0x0,0x0,0x0,0x0,0x60, - 0x68,0x91,0x0,0x0,0x0,0x0,0x0,0x61,0x58,0x82,0x0,0x0,0x0,0x0,0x0,0x62, - 0x48,0x73,0x0,0x0,0x0,0x0,0x0,0x63,0x38,0x64,0x0,0x0,0x0,0x0,0x0,0x64, - 0x28,0x55,0x0,0x0,0x0,0x0,0x0,0x65,0x18,0x46,0x0,0x0,0x0,0x0,0x0,0x66, - 0x11,0x71,0x80,0x0,0x0,0x0,0x0,0x67,0x1,0x62,0x80,0x0,0x0,0x0,0x0,0x67, - 0xf1,0x53,0x80,0x0,0x0,0x0,0x0,0x68,0xe1,0x44,0x80,0x0,0x0,0x0,0x0,0x69, - 0xd1,0x35,0x80,0x0,0x0,0x0,0x0,0x6a,0xc1,0x26,0x80,0x0,0x0,0x0,0x0,0x6b, - 0xb1,0x17,0x80,0x0,0x0,0x0,0x0,0x6c,0xa1,0x8,0x80,0x0,0x0,0x0,0x0,0x6d, - 0x90,0xf9,0x80,0x0,0x0,0x0,0x0,0x6e,0x80,0xea,0x80,0x0,0x0,0x0,0x0,0x6f, - 0x70,0xdb,0x80,0x0,0x0,0x0,0x0,0x70,0x6a,0x7,0x0,0x0,0x0,0x0,0x0,0x71, - 0x59,0xf8,0x0,0x0,0x0,0x0,0x0,0x72,0x49,0xe9,0x0,0x0,0x0,0x0,0x0,0x73, - 0x39,0xda,0x0,0x0,0x0,0x0,0x0,0x74,0x29,0xcb,0x0,0x0,0x0,0x0,0x0,0x75, - 0x19,0xbc,0x0,0x0,0x0,0x0,0x0,0x76,0x9,0xad,0x0,0x0,0x0,0x0,0x0,0x76, - 0xf9,0x9e,0x0,0x0,0x0,0x0,0x0,0x77,0xe9,0x8f,0x0,0x0,0x0,0x0,0x0,0x78, - 0xd9,0x80,0x0,0x0,0x0,0x0,0x0,0x79,0xc9,0x71,0x0,0x0,0x0,0x0,0x0,0x7a, - 0xb9,0x62,0x0,0x0,0x0,0x0,0x0,0x7b,0xb2,0x8d,0x80,0x0,0x0,0x0,0x0,0x7c, - 0xa2,0x7e,0x80,0x0,0x0,0x0,0x0,0x7d,0x92,0x6f,0x80,0x0,0x0,0x0,0x0,0x7e, - 0x82,0x60,0x80,0x0,0x0,0x0,0x0,0x7f,0x72,0x51,0x80,0x0,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x0,0x0,0x86,0xe0,0x0,0x0, - 0x0,0x0,0x8c,0xa0,0x0,0x4,0x0,0x0,0x9a,0xb0,0x1,0x9,0x0,0x0,0x9a,0xb0, - 0x1,0x9,0x0,0x0,0x8c,0xa0,0x0,0x4,0x4c,0x4d,0x54,0x0,0x41,0x45,0x53,0x54, - 0x0,0x41,0x45,0x44,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0, - 0xa,0x41,0x45,0x53,0x54,0x2d,0x31,0x30,0x41,0x45,0x44,0x54,0x2c,0x4d,0x31,0x30, - 0x2e,0x31,0x2e,0x30,0x2c,0x4d,0x34,0x2e,0x31,0x2e,0x30,0x2f,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Australia/Perth - 0x0,0x0,0x1,0xdf, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0xed, + 0x2f,0xc3,0x98,0x7f,0xff,0xff,0xff,0x1,0x2,0x2,0x0,0x0,0x44,0xe8,0x0,0x0, + 0x0,0x0,0x44,0xe8,0x0,0x4,0x0,0x0,0x46,0x50,0x0,0x8,0x4c,0x4d,0x54,0x0, + 0x4d,0x4d,0x54,0x0,0x2b,0x30,0x35,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a, + 0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x4,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0xf8,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xff,0xff,0xff,0xff,0x56,0xb6,0x9f,0x18,0xff,0xff,0xff,0xff,0xed,0x2f, + 0xc3,0x98,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x2,0x2,0x0,0x0, + 0x44,0xe8,0x0,0x0,0x0,0x0,0x44,0xe8,0x0,0x4,0x0,0x0,0x46,0x50,0x0,0x8, + 0x4c,0x4d,0x54,0x0,0x4d,0x4d,0x54,0x0,0x2b,0x30,0x35,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xa,0x3c,0x2b,0x30,0x35,0x3e,0x2d,0x35,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Indian/Reunion + 0x0,0x0,0x0,0xbb, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x13,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xe,0x80,0x0,0x0,0x0,0x9c, - 0x4e,0xc2,0xbc,0x9c,0xbc,0x3d,0x10,0xcb,0x54,0xcf,0x20,0xcb,0xc7,0x73,0x90,0xcc, - 0xb7,0x72,0xa0,0xcd,0xa7,0x55,0x90,0x9,0xf,0xfb,0xa0,0x9,0xb6,0x18,0xa0,0x1a, - 0x1,0x62,0xa0,0x1a,0xa7,0x7f,0xa0,0x29,0x25,0x5c,0xa0,0x29,0xaf,0xca,0x20,0x45, - 0x71,0xbf,0x20,0x46,0x5,0x67,0x20,0x47,0x23,0x7c,0xa0,0x47,0xee,0x83,0xa0,0x49, - 0x3,0x5e,0xa0,0x49,0xce,0x65,0xa0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x0,0x0,0x6c,0x9c,0x0,0x0, - 0x0,0x0,0x7e,0x90,0x1,0x4,0x0,0x0,0x70,0x80,0x0,0x9,0x0,0x0,0x7e,0x90, - 0x1,0x4,0x0,0x0,0x70,0x80,0x0,0x9,0x4c,0x4d,0x54,0x0,0x41,0x57,0x44,0x54, - 0x0,0x41,0x57,0x53,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0, - 0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xe,0xf8,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x74,0xa6,0x16,0xe4,0xff,0xff,0xff,0xff, - 0x9c,0x4e,0xc2,0xbc,0xff,0xff,0xff,0xff,0x9c,0xbc,0x3d,0x10,0xff,0xff,0xff,0xff, - 0xcb,0x54,0xcf,0x20,0xff,0xff,0xff,0xff,0xcb,0xc7,0x73,0x90,0xff,0xff,0xff,0xff, - 0xcc,0xb7,0x72,0xa0,0xff,0xff,0xff,0xff,0xcd,0xa7,0x55,0x90,0x0,0x0,0x0,0x0, - 0x9,0xf,0xfb,0xa0,0x0,0x0,0x0,0x0,0x9,0xb6,0x18,0xa0,0x0,0x0,0x0,0x0, - 0x1a,0x1,0x62,0xa0,0x0,0x0,0x0,0x0,0x1a,0xa7,0x7f,0xa0,0x0,0x0,0x0,0x0, - 0x29,0x25,0x5c,0xa0,0x0,0x0,0x0,0x0,0x29,0xaf,0xca,0x20,0x0,0x0,0x0,0x0, - 0x45,0x71,0xbf,0x20,0x0,0x0,0x0,0x0,0x46,0x5,0x67,0x20,0x0,0x0,0x0,0x0, - 0x47,0x23,0x7c,0xa0,0x0,0x0,0x0,0x0,0x47,0xee,0x83,0xa0,0x0,0x0,0x0,0x0, - 0x49,0x3,0x5e,0xa0,0x0,0x0,0x0,0x0,0x49,0xce,0x65,0xa0,0x0,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x0,0x0,0x6c,0x9c,0x0,0x0,0x0,0x0,0x7e,0x90,0x1,0x4,0x0,0x0,0x70,0x80, - 0x0,0x9,0x0,0x0,0x7e,0x90,0x1,0x4,0x0,0x0,0x70,0x80,0x0,0x9,0x4c,0x4d, - 0x54,0x0,0x41,0x57,0x44,0x54,0x0,0x41,0x57,0x53,0x54,0x0,0x0,0x0,0x0,0x1, - 0x1,0x0,0x0,0x0,0x0,0x0,0xa,0x41,0x57,0x53,0x54,0x2d,0x38,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Australia/Canberra - 0x0,0x0,0x8,0xaf, + 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x91, + 0xcc,0x39,0x80,0x7f,0xff,0xff,0xff,0x0,0x1,0x1,0x0,0x0,0x34,0x0,0x0,0x0, + 0x0,0x0,0x38,0x40,0x0,0x4,0x4c,0x4d,0x54,0x0,0x2b,0x30,0x34,0x0,0x0,0x0, + 0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x91,0xcc,0x39,0x80,0x0,0x0, + 0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x1,0x0,0x0,0x34,0x0,0x0,0x0,0x0, + 0x0,0x38,0x40,0x0,0x4,0x4c,0x4d,0x54,0x0,0x2b,0x30,0x34,0x0,0x0,0x0,0x0, + 0x0,0xa,0x3c,0x2b,0x30,0x34,0x3e,0x2d,0x34,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Lubumbashi + 0x0,0x0,0x0,0xab, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x8e,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xe,0x80,0x0,0x0,0x0,0x9c, - 0x4e,0xa6,0x9c,0x9c,0xbc,0x20,0xf0,0xcb,0x54,0xb3,0x0,0xcb,0xc7,0x57,0x70,0xcc, - 0xb7,0x56,0x80,0xcd,0xa7,0x39,0x70,0xce,0xa0,0x73,0x0,0xcf,0x87,0x1b,0x70,0x3, - 0x70,0x39,0x80,0x4,0xd,0x1c,0x0,0x5,0x50,0x1b,0x80,0x5,0xf6,0x38,0x80,0x7, - 0x2f,0xfd,0x80,0x7,0xd6,0x1a,0x80,0x9,0xf,0xdf,0x80,0x9,0xb5,0xfc,0x80,0xa, - 0xef,0xc1,0x80,0xb,0x9f,0x19,0x0,0xc,0xd8,0xde,0x0,0xd,0x7e,0xfb,0x0,0xe, - 0xb8,0xc0,0x0,0xf,0x5e,0xdd,0x0,0x10,0x98,0xa2,0x0,0x11,0x3e,0xbf,0x0,0x12, - 0x78,0x84,0x0,0x13,0x1e,0xa1,0x0,0x14,0x58,0x66,0x0,0x14,0xfe,0x83,0x0,0x16, - 0x38,0x48,0x0,0x17,0xc,0x89,0x80,0x18,0x21,0x64,0x80,0x18,0xc7,0x81,0x80,0x1a, - 0x1,0x46,0x80,0x1a,0xa7,0x63,0x80,0x1b,0xe1,0x28,0x80,0x1c,0x87,0x45,0x80,0x1d, - 0xc1,0xa,0x80,0x1e,0x79,0x9c,0x80,0x1f,0x97,0xb2,0x0,0x20,0x59,0x7e,0x80,0x21, - 0x80,0xce,0x80,0x22,0x42,0x9b,0x0,0x23,0x69,0xeb,0x0,0x24,0x22,0x7d,0x0,0x25, - 0x49,0xcd,0x0,0x25,0xef,0xea,0x0,0x27,0x29,0xaf,0x0,0x27,0xcf,0xcc,0x0,0x29, - 0x9,0x91,0x0,0x29,0xaf,0xae,0x0,0x2a,0xe9,0x73,0x0,0x2b,0x98,0xca,0x80,0x2c, - 0xd2,0x8f,0x80,0x2d,0x78,0xac,0x80,0x2e,0xb2,0x71,0x80,0x2f,0x58,0x8e,0x80,0x30, - 0x92,0x53,0x80,0x31,0x5d,0x5a,0x80,0x32,0x72,0x35,0x80,0x33,0x3d,0x3c,0x80,0x34, - 0x52,0x17,0x80,0x35,0x1d,0x1e,0x80,0x36,0x31,0xf9,0x80,0x36,0xfd,0x0,0x80,0x38, - 0x1b,0x16,0x0,0x38,0xdc,0xe2,0x80,0x39,0xa7,0xe9,0x80,0x3a,0xbc,0xc4,0x80,0x3b, - 0xda,0xda,0x0,0x3c,0xa5,0xe1,0x0,0x3d,0xba,0xbc,0x0,0x3e,0x85,0xc3,0x0,0x3f, - 0x9a,0x9e,0x0,0x40,0x65,0xa5,0x0,0x41,0x83,0xba,0x80,0x42,0x45,0x87,0x0,0x43, - 0x63,0x9c,0x80,0x44,0x2e,0xa3,0x80,0x45,0x43,0x7e,0x80,0x46,0x5,0x4b,0x0,0x47, - 0x23,0x60,0x80,0x47,0xf7,0xa2,0x0,0x48,0xe7,0x93,0x0,0x49,0xd7,0x84,0x0,0x4a, - 0xc7,0x75,0x0,0x4b,0xb7,0x66,0x0,0x4c,0xa7,0x57,0x0,0x4d,0x97,0x48,0x0,0x4e, - 0x87,0x39,0x0,0x4f,0x77,0x2a,0x0,0x50,0x70,0x55,0x80,0x51,0x60,0x46,0x80,0x52, - 0x50,0x37,0x80,0x53,0x40,0x28,0x80,0x54,0x30,0x19,0x80,0x55,0x20,0xa,0x80,0x56, - 0xf,0xfb,0x80,0x56,0xff,0xec,0x80,0x57,0xef,0xdd,0x80,0x58,0xdf,0xce,0x80,0x59, - 0xcf,0xbf,0x80,0x5a,0xbf,0xb0,0x80,0x5b,0xb8,0xdc,0x0,0x5c,0xa8,0xcd,0x0,0x5d, - 0x98,0xbe,0x0,0x5e,0x88,0xaf,0x0,0x5f,0x78,0xa0,0x0,0x60,0x68,0x91,0x0,0x61, - 0x58,0x82,0x0,0x62,0x48,0x73,0x0,0x63,0x38,0x64,0x0,0x64,0x28,0x55,0x0,0x65, - 0x18,0x46,0x0,0x66,0x11,0x71,0x80,0x67,0x1,0x62,0x80,0x67,0xf1,0x53,0x80,0x68, - 0xe1,0x44,0x80,0x69,0xd1,0x35,0x80,0x6a,0xc1,0x26,0x80,0x6b,0xb1,0x17,0x80,0x6c, - 0xa1,0x8,0x80,0x6d,0x90,0xf9,0x80,0x6e,0x80,0xea,0x80,0x6f,0x70,0xdb,0x80,0x70, - 0x6a,0x7,0x0,0x71,0x59,0xf8,0x0,0x72,0x49,0xe9,0x0,0x73,0x39,0xda,0x0,0x74, - 0x29,0xcb,0x0,0x75,0x19,0xbc,0x0,0x76,0x9,0xad,0x0,0x76,0xf9,0x9e,0x0,0x77, - 0xe9,0x8f,0x0,0x78,0xd9,0x80,0x0,0x79,0xc9,0x71,0x0,0x7a,0xb9,0x62,0x0,0x7b, - 0xb2,0x8d,0x80,0x7c,0xa2,0x7e,0x80,0x7d,0x92,0x6f,0x80,0x7e,0x82,0x60,0x80,0x7f, - 0x72,0x51,0x80,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x0,0x0,0x8d,0xc4,0x0,0x0,0x0,0x0,0x9a,0xb0,0x1,0x4,0x0,0x0,0x8c, - 0xa0,0x0,0x9,0x0,0x0,0x9a,0xb0,0x1,0x4,0x0,0x0,0x8c,0xa0,0x0,0x9,0x4c, - 0x4d,0x54,0x0,0x41,0x45,0x44,0x54,0x0,0x41,0x45,0x53,0x54,0x0,0x0,0x0,0x0, - 0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0, - 0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0x0,0x0,0x0,0x5,0x0, - 0x0,0x0,0xe,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x73, - 0x16,0x7f,0x3c,0xff,0xff,0xff,0xff,0x9c,0x4e,0xa6,0x9c,0xff,0xff,0xff,0xff,0x9c, - 0xbc,0x20,0xf0,0xff,0xff,0xff,0xff,0xcb,0x54,0xb3,0x0,0xff,0xff,0xff,0xff,0xcb, - 0xc7,0x57,0x70,0xff,0xff,0xff,0xff,0xcc,0xb7,0x56,0x80,0xff,0xff,0xff,0xff,0xcd, - 0xa7,0x39,0x70,0xff,0xff,0xff,0xff,0xce,0xa0,0x73,0x0,0xff,0xff,0xff,0xff,0xcf, - 0x87,0x1b,0x70,0x0,0x0,0x0,0x0,0x3,0x70,0x39,0x80,0x0,0x0,0x0,0x0,0x4, - 0xd,0x1c,0x0,0x0,0x0,0x0,0x0,0x5,0x50,0x1b,0x80,0x0,0x0,0x0,0x0,0x5, - 0xf6,0x38,0x80,0x0,0x0,0x0,0x0,0x7,0x2f,0xfd,0x80,0x0,0x0,0x0,0x0,0x7, - 0xd6,0x1a,0x80,0x0,0x0,0x0,0x0,0x9,0xf,0xdf,0x80,0x0,0x0,0x0,0x0,0x9, - 0xb5,0xfc,0x80,0x0,0x0,0x0,0x0,0xa,0xef,0xc1,0x80,0x0,0x0,0x0,0x0,0xb, - 0x9f,0x19,0x0,0x0,0x0,0x0,0x0,0xc,0xd8,0xde,0x0,0x0,0x0,0x0,0x0,0xd, - 0x7e,0xfb,0x0,0x0,0x0,0x0,0x0,0xe,0xb8,0xc0,0x0,0x0,0x0,0x0,0x0,0xf, - 0x5e,0xdd,0x0,0x0,0x0,0x0,0x0,0x10,0x98,0xa2,0x0,0x0,0x0,0x0,0x0,0x11, - 0x3e,0xbf,0x0,0x0,0x0,0x0,0x0,0x12,0x78,0x84,0x0,0x0,0x0,0x0,0x0,0x13, - 0x1e,0xa1,0x0,0x0,0x0,0x0,0x0,0x14,0x58,0x66,0x0,0x0,0x0,0x0,0x0,0x14, - 0xfe,0x83,0x0,0x0,0x0,0x0,0x0,0x16,0x38,0x48,0x0,0x0,0x0,0x0,0x0,0x17, - 0xc,0x89,0x80,0x0,0x0,0x0,0x0,0x18,0x21,0x64,0x80,0x0,0x0,0x0,0x0,0x18, - 0xc7,0x81,0x80,0x0,0x0,0x0,0x0,0x1a,0x1,0x46,0x80,0x0,0x0,0x0,0x0,0x1a, - 0xa7,0x63,0x80,0x0,0x0,0x0,0x0,0x1b,0xe1,0x28,0x80,0x0,0x0,0x0,0x0,0x1c, - 0x87,0x45,0x80,0x0,0x0,0x0,0x0,0x1d,0xc1,0xa,0x80,0x0,0x0,0x0,0x0,0x1e, - 0x79,0x9c,0x80,0x0,0x0,0x0,0x0,0x1f,0x97,0xb2,0x0,0x0,0x0,0x0,0x0,0x20, - 0x59,0x7e,0x80,0x0,0x0,0x0,0x0,0x21,0x80,0xce,0x80,0x0,0x0,0x0,0x0,0x22, - 0x42,0x9b,0x0,0x0,0x0,0x0,0x0,0x23,0x69,0xeb,0x0,0x0,0x0,0x0,0x0,0x24, - 0x22,0x7d,0x0,0x0,0x0,0x0,0x0,0x25,0x49,0xcd,0x0,0x0,0x0,0x0,0x0,0x25, - 0xef,0xea,0x0,0x0,0x0,0x0,0x0,0x27,0x29,0xaf,0x0,0x0,0x0,0x0,0x0,0x27, - 0xcf,0xcc,0x0,0x0,0x0,0x0,0x0,0x29,0x9,0x91,0x0,0x0,0x0,0x0,0x0,0x29, - 0xaf,0xae,0x0,0x0,0x0,0x0,0x0,0x2a,0xe9,0x73,0x0,0x0,0x0,0x0,0x0,0x2b, - 0x98,0xca,0x80,0x0,0x0,0x0,0x0,0x2c,0xd2,0x8f,0x80,0x0,0x0,0x0,0x0,0x2d, - 0x78,0xac,0x80,0x0,0x0,0x0,0x0,0x2e,0xb2,0x71,0x80,0x0,0x0,0x0,0x0,0x2f, - 0x58,0x8e,0x80,0x0,0x0,0x0,0x0,0x30,0x92,0x53,0x80,0x0,0x0,0x0,0x0,0x31, - 0x5d,0x5a,0x80,0x0,0x0,0x0,0x0,0x32,0x72,0x35,0x80,0x0,0x0,0x0,0x0,0x33, - 0x3d,0x3c,0x80,0x0,0x0,0x0,0x0,0x34,0x52,0x17,0x80,0x0,0x0,0x0,0x0,0x35, - 0x1d,0x1e,0x80,0x0,0x0,0x0,0x0,0x36,0x31,0xf9,0x80,0x0,0x0,0x0,0x0,0x36, - 0xfd,0x0,0x80,0x0,0x0,0x0,0x0,0x38,0x1b,0x16,0x0,0x0,0x0,0x0,0x0,0x38, - 0xdc,0xe2,0x80,0x0,0x0,0x0,0x0,0x39,0xa7,0xe9,0x80,0x0,0x0,0x0,0x0,0x3a, - 0xbc,0xc4,0x80,0x0,0x0,0x0,0x0,0x3b,0xda,0xda,0x0,0x0,0x0,0x0,0x0,0x3c, - 0xa5,0xe1,0x0,0x0,0x0,0x0,0x0,0x3d,0xba,0xbc,0x0,0x0,0x0,0x0,0x0,0x3e, - 0x85,0xc3,0x0,0x0,0x0,0x0,0x0,0x3f,0x9a,0x9e,0x0,0x0,0x0,0x0,0x0,0x40, - 0x65,0xa5,0x0,0x0,0x0,0x0,0x0,0x41,0x83,0xba,0x80,0x0,0x0,0x0,0x0,0x42, - 0x45,0x87,0x0,0x0,0x0,0x0,0x0,0x43,0x63,0x9c,0x80,0x0,0x0,0x0,0x0,0x44, - 0x2e,0xa3,0x80,0x0,0x0,0x0,0x0,0x45,0x43,0x7e,0x80,0x0,0x0,0x0,0x0,0x46, - 0x5,0x4b,0x0,0x0,0x0,0x0,0x0,0x47,0x23,0x60,0x80,0x0,0x0,0x0,0x0,0x47, - 0xf7,0xa2,0x0,0x0,0x0,0x0,0x0,0x48,0xe7,0x93,0x0,0x0,0x0,0x0,0x0,0x49, - 0xd7,0x84,0x0,0x0,0x0,0x0,0x0,0x4a,0xc7,0x75,0x0,0x0,0x0,0x0,0x0,0x4b, - 0xb7,0x66,0x0,0x0,0x0,0x0,0x0,0x4c,0xa7,0x57,0x0,0x0,0x0,0x0,0x0,0x4d, - 0x97,0x48,0x0,0x0,0x0,0x0,0x0,0x4e,0x87,0x39,0x0,0x0,0x0,0x0,0x0,0x4f, - 0x77,0x2a,0x0,0x0,0x0,0x0,0x0,0x50,0x70,0x55,0x80,0x0,0x0,0x0,0x0,0x51, - 0x60,0x46,0x80,0x0,0x0,0x0,0x0,0x52,0x50,0x37,0x80,0x0,0x0,0x0,0x0,0x53, - 0x40,0x28,0x80,0x0,0x0,0x0,0x0,0x54,0x30,0x19,0x80,0x0,0x0,0x0,0x0,0x55, - 0x20,0xa,0x80,0x0,0x0,0x0,0x0,0x56,0xf,0xfb,0x80,0x0,0x0,0x0,0x0,0x56, - 0xff,0xec,0x80,0x0,0x0,0x0,0x0,0x57,0xef,0xdd,0x80,0x0,0x0,0x0,0x0,0x58, - 0xdf,0xce,0x80,0x0,0x0,0x0,0x0,0x59,0xcf,0xbf,0x80,0x0,0x0,0x0,0x0,0x5a, - 0xbf,0xb0,0x80,0x0,0x0,0x0,0x0,0x5b,0xb8,0xdc,0x0,0x0,0x0,0x0,0x0,0x5c, - 0xa8,0xcd,0x0,0x0,0x0,0x0,0x0,0x5d,0x98,0xbe,0x0,0x0,0x0,0x0,0x0,0x5e, - 0x88,0xaf,0x0,0x0,0x0,0x0,0x0,0x5f,0x78,0xa0,0x0,0x0,0x0,0x0,0x0,0x60, - 0x68,0x91,0x0,0x0,0x0,0x0,0x0,0x61,0x58,0x82,0x0,0x0,0x0,0x0,0x0,0x62, - 0x48,0x73,0x0,0x0,0x0,0x0,0x0,0x63,0x38,0x64,0x0,0x0,0x0,0x0,0x0,0x64, - 0x28,0x55,0x0,0x0,0x0,0x0,0x0,0x65,0x18,0x46,0x0,0x0,0x0,0x0,0x0,0x66, - 0x11,0x71,0x80,0x0,0x0,0x0,0x0,0x67,0x1,0x62,0x80,0x0,0x0,0x0,0x0,0x67, - 0xf1,0x53,0x80,0x0,0x0,0x0,0x0,0x68,0xe1,0x44,0x80,0x0,0x0,0x0,0x0,0x69, - 0xd1,0x35,0x80,0x0,0x0,0x0,0x0,0x6a,0xc1,0x26,0x80,0x0,0x0,0x0,0x0,0x6b, - 0xb1,0x17,0x80,0x0,0x0,0x0,0x0,0x6c,0xa1,0x8,0x80,0x0,0x0,0x0,0x0,0x6d, - 0x90,0xf9,0x80,0x0,0x0,0x0,0x0,0x6e,0x80,0xea,0x80,0x0,0x0,0x0,0x0,0x6f, - 0x70,0xdb,0x80,0x0,0x0,0x0,0x0,0x70,0x6a,0x7,0x0,0x0,0x0,0x0,0x0,0x71, - 0x59,0xf8,0x0,0x0,0x0,0x0,0x0,0x72,0x49,0xe9,0x0,0x0,0x0,0x0,0x0,0x73, - 0x39,0xda,0x0,0x0,0x0,0x0,0x0,0x74,0x29,0xcb,0x0,0x0,0x0,0x0,0x0,0x75, - 0x19,0xbc,0x0,0x0,0x0,0x0,0x0,0x76,0x9,0xad,0x0,0x0,0x0,0x0,0x0,0x76, - 0xf9,0x9e,0x0,0x0,0x0,0x0,0x0,0x77,0xe9,0x8f,0x0,0x0,0x0,0x0,0x0,0x78, - 0xd9,0x80,0x0,0x0,0x0,0x0,0x0,0x79,0xc9,0x71,0x0,0x0,0x0,0x0,0x0,0x7a, - 0xb9,0x62,0x0,0x0,0x0,0x0,0x0,0x7b,0xb2,0x8d,0x80,0x0,0x0,0x0,0x0,0x7c, - 0xa2,0x7e,0x80,0x0,0x0,0x0,0x0,0x7d,0x92,0x6f,0x80,0x0,0x0,0x0,0x0,0x7e, - 0x82,0x60,0x80,0x0,0x0,0x0,0x0,0x7f,0x72,0x51,0x80,0x0,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x0,0x0,0x8d,0xc4,0x0,0x0, - 0x0,0x0,0x9a,0xb0,0x1,0x4,0x0,0x0,0x8c,0xa0,0x0,0x9,0x0,0x0,0x9a,0xb0, - 0x1,0x4,0x0,0x0,0x8c,0xa0,0x0,0x9,0x4c,0x4d,0x54,0x0,0x41,0x45,0x44,0x54, - 0x0,0x41,0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0, - 0xa,0x41,0x45,0x53,0x54,0x2d,0x31,0x30,0x41,0x45,0x44,0x54,0x2c,0x4d,0x31,0x30, - 0x2e,0x31,0x2e,0x30,0x2c,0x4d,0x34,0x2e,0x31,0x2e,0x30,0x2f,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Australia/ACT - 0x0,0x0,0x8,0xaf, + 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x82, + 0x46,0xc5,0xf4,0x0,0x1,0x0,0x0,0x1e,0x8c,0x0,0x0,0x0,0x0,0x1c,0x20,0x0, + 0x4,0x4c,0x4d,0x54,0x0,0x43,0x41,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, + 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0x82,0x46,0xc5,0xf4,0x0,0x1,0x0,0x0,0x1e,0x8c,0x0, + 0x0,0x0,0x0,0x1c,0x20,0x0,0x4,0x4c,0x4d,0x54,0x0,0x43,0x41,0x54,0x0,0x0, + 0x0,0x0,0x0,0xa,0x43,0x41,0x54,0x2d,0x32,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Porto-Novo + 0x0,0x0,0x0,0xab, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x8e,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xe,0x80,0x0,0x0,0x0,0x9c, - 0x4e,0xa6,0x9c,0x9c,0xbc,0x20,0xf0,0xcb,0x54,0xb3,0x0,0xcb,0xc7,0x57,0x70,0xcc, - 0xb7,0x56,0x80,0xcd,0xa7,0x39,0x70,0xce,0xa0,0x73,0x0,0xcf,0x87,0x1b,0x70,0x3, - 0x70,0x39,0x80,0x4,0xd,0x1c,0x0,0x5,0x50,0x1b,0x80,0x5,0xf6,0x38,0x80,0x7, - 0x2f,0xfd,0x80,0x7,0xd6,0x1a,0x80,0x9,0xf,0xdf,0x80,0x9,0xb5,0xfc,0x80,0xa, - 0xef,0xc1,0x80,0xb,0x9f,0x19,0x0,0xc,0xd8,0xde,0x0,0xd,0x7e,0xfb,0x0,0xe, - 0xb8,0xc0,0x0,0xf,0x5e,0xdd,0x0,0x10,0x98,0xa2,0x0,0x11,0x3e,0xbf,0x0,0x12, - 0x78,0x84,0x0,0x13,0x1e,0xa1,0x0,0x14,0x58,0x66,0x0,0x14,0xfe,0x83,0x0,0x16, - 0x38,0x48,0x0,0x17,0xc,0x89,0x80,0x18,0x21,0x64,0x80,0x18,0xc7,0x81,0x80,0x1a, - 0x1,0x46,0x80,0x1a,0xa7,0x63,0x80,0x1b,0xe1,0x28,0x80,0x1c,0x87,0x45,0x80,0x1d, - 0xc1,0xa,0x80,0x1e,0x79,0x9c,0x80,0x1f,0x97,0xb2,0x0,0x20,0x59,0x7e,0x80,0x21, - 0x80,0xce,0x80,0x22,0x42,0x9b,0x0,0x23,0x69,0xeb,0x0,0x24,0x22,0x7d,0x0,0x25, - 0x49,0xcd,0x0,0x25,0xef,0xea,0x0,0x27,0x29,0xaf,0x0,0x27,0xcf,0xcc,0x0,0x29, - 0x9,0x91,0x0,0x29,0xaf,0xae,0x0,0x2a,0xe9,0x73,0x0,0x2b,0x98,0xca,0x80,0x2c, - 0xd2,0x8f,0x80,0x2d,0x78,0xac,0x80,0x2e,0xb2,0x71,0x80,0x2f,0x58,0x8e,0x80,0x30, - 0x92,0x53,0x80,0x31,0x5d,0x5a,0x80,0x32,0x72,0x35,0x80,0x33,0x3d,0x3c,0x80,0x34, - 0x52,0x17,0x80,0x35,0x1d,0x1e,0x80,0x36,0x31,0xf9,0x80,0x36,0xfd,0x0,0x80,0x38, - 0x1b,0x16,0x0,0x38,0xdc,0xe2,0x80,0x39,0xa7,0xe9,0x80,0x3a,0xbc,0xc4,0x80,0x3b, - 0xda,0xda,0x0,0x3c,0xa5,0xe1,0x0,0x3d,0xba,0xbc,0x0,0x3e,0x85,0xc3,0x0,0x3f, - 0x9a,0x9e,0x0,0x40,0x65,0xa5,0x0,0x41,0x83,0xba,0x80,0x42,0x45,0x87,0x0,0x43, - 0x63,0x9c,0x80,0x44,0x2e,0xa3,0x80,0x45,0x43,0x7e,0x80,0x46,0x5,0x4b,0x0,0x47, - 0x23,0x60,0x80,0x47,0xf7,0xa2,0x0,0x48,0xe7,0x93,0x0,0x49,0xd7,0x84,0x0,0x4a, - 0xc7,0x75,0x0,0x4b,0xb7,0x66,0x0,0x4c,0xa7,0x57,0x0,0x4d,0x97,0x48,0x0,0x4e, - 0x87,0x39,0x0,0x4f,0x77,0x2a,0x0,0x50,0x70,0x55,0x80,0x51,0x60,0x46,0x80,0x52, - 0x50,0x37,0x80,0x53,0x40,0x28,0x80,0x54,0x30,0x19,0x80,0x55,0x20,0xa,0x80,0x56, - 0xf,0xfb,0x80,0x56,0xff,0xec,0x80,0x57,0xef,0xdd,0x80,0x58,0xdf,0xce,0x80,0x59, - 0xcf,0xbf,0x80,0x5a,0xbf,0xb0,0x80,0x5b,0xb8,0xdc,0x0,0x5c,0xa8,0xcd,0x0,0x5d, - 0x98,0xbe,0x0,0x5e,0x88,0xaf,0x0,0x5f,0x78,0xa0,0x0,0x60,0x68,0x91,0x0,0x61, - 0x58,0x82,0x0,0x62,0x48,0x73,0x0,0x63,0x38,0x64,0x0,0x64,0x28,0x55,0x0,0x65, - 0x18,0x46,0x0,0x66,0x11,0x71,0x80,0x67,0x1,0x62,0x80,0x67,0xf1,0x53,0x80,0x68, - 0xe1,0x44,0x80,0x69,0xd1,0x35,0x80,0x6a,0xc1,0x26,0x80,0x6b,0xb1,0x17,0x80,0x6c, - 0xa1,0x8,0x80,0x6d,0x90,0xf9,0x80,0x6e,0x80,0xea,0x80,0x6f,0x70,0xdb,0x80,0x70, - 0x6a,0x7,0x0,0x71,0x59,0xf8,0x0,0x72,0x49,0xe9,0x0,0x73,0x39,0xda,0x0,0x74, - 0x29,0xcb,0x0,0x75,0x19,0xbc,0x0,0x76,0x9,0xad,0x0,0x76,0xf9,0x9e,0x0,0x77, - 0xe9,0x8f,0x0,0x78,0xd9,0x80,0x0,0x79,0xc9,0x71,0x0,0x7a,0xb9,0x62,0x0,0x7b, - 0xb2,0x8d,0x80,0x7c,0xa2,0x7e,0x80,0x7d,0x92,0x6f,0x80,0x7e,0x82,0x60,0x80,0x7f, - 0x72,0x51,0x80,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x0,0x0,0x8d,0xc4,0x0,0x0,0x0,0x0,0x9a,0xb0,0x1,0x4,0x0,0x0,0x8c, - 0xa0,0x0,0x9,0x0,0x0,0x9a,0xb0,0x1,0x4,0x0,0x0,0x8c,0xa0,0x0,0x9,0x4c, - 0x4d,0x54,0x0,0x41,0x45,0x44,0x54,0x0,0x41,0x45,0x53,0x54,0x0,0x0,0x0,0x0, - 0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0, - 0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0x0,0x0,0x0,0x5,0x0, - 0x0,0x0,0xe,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x73, - 0x16,0x7f,0x3c,0xff,0xff,0xff,0xff,0x9c,0x4e,0xa6,0x9c,0xff,0xff,0xff,0xff,0x9c, - 0xbc,0x20,0xf0,0xff,0xff,0xff,0xff,0xcb,0x54,0xb3,0x0,0xff,0xff,0xff,0xff,0xcb, - 0xc7,0x57,0x70,0xff,0xff,0xff,0xff,0xcc,0xb7,0x56,0x80,0xff,0xff,0xff,0xff,0xcd, - 0xa7,0x39,0x70,0xff,0xff,0xff,0xff,0xce,0xa0,0x73,0x0,0xff,0xff,0xff,0xff,0xcf, - 0x87,0x1b,0x70,0x0,0x0,0x0,0x0,0x3,0x70,0x39,0x80,0x0,0x0,0x0,0x0,0x4, - 0xd,0x1c,0x0,0x0,0x0,0x0,0x0,0x5,0x50,0x1b,0x80,0x0,0x0,0x0,0x0,0x5, - 0xf6,0x38,0x80,0x0,0x0,0x0,0x0,0x7,0x2f,0xfd,0x80,0x0,0x0,0x0,0x0,0x7, - 0xd6,0x1a,0x80,0x0,0x0,0x0,0x0,0x9,0xf,0xdf,0x80,0x0,0x0,0x0,0x0,0x9, - 0xb5,0xfc,0x80,0x0,0x0,0x0,0x0,0xa,0xef,0xc1,0x80,0x0,0x0,0x0,0x0,0xb, - 0x9f,0x19,0x0,0x0,0x0,0x0,0x0,0xc,0xd8,0xde,0x0,0x0,0x0,0x0,0x0,0xd, - 0x7e,0xfb,0x0,0x0,0x0,0x0,0x0,0xe,0xb8,0xc0,0x0,0x0,0x0,0x0,0x0,0xf, - 0x5e,0xdd,0x0,0x0,0x0,0x0,0x0,0x10,0x98,0xa2,0x0,0x0,0x0,0x0,0x0,0x11, - 0x3e,0xbf,0x0,0x0,0x0,0x0,0x0,0x12,0x78,0x84,0x0,0x0,0x0,0x0,0x0,0x13, - 0x1e,0xa1,0x0,0x0,0x0,0x0,0x0,0x14,0x58,0x66,0x0,0x0,0x0,0x0,0x0,0x14, - 0xfe,0x83,0x0,0x0,0x0,0x0,0x0,0x16,0x38,0x48,0x0,0x0,0x0,0x0,0x0,0x17, - 0xc,0x89,0x80,0x0,0x0,0x0,0x0,0x18,0x21,0x64,0x80,0x0,0x0,0x0,0x0,0x18, - 0xc7,0x81,0x80,0x0,0x0,0x0,0x0,0x1a,0x1,0x46,0x80,0x0,0x0,0x0,0x0,0x1a, - 0xa7,0x63,0x80,0x0,0x0,0x0,0x0,0x1b,0xe1,0x28,0x80,0x0,0x0,0x0,0x0,0x1c, - 0x87,0x45,0x80,0x0,0x0,0x0,0x0,0x1d,0xc1,0xa,0x80,0x0,0x0,0x0,0x0,0x1e, - 0x79,0x9c,0x80,0x0,0x0,0x0,0x0,0x1f,0x97,0xb2,0x0,0x0,0x0,0x0,0x0,0x20, - 0x59,0x7e,0x80,0x0,0x0,0x0,0x0,0x21,0x80,0xce,0x80,0x0,0x0,0x0,0x0,0x22, - 0x42,0x9b,0x0,0x0,0x0,0x0,0x0,0x23,0x69,0xeb,0x0,0x0,0x0,0x0,0x0,0x24, - 0x22,0x7d,0x0,0x0,0x0,0x0,0x0,0x25,0x49,0xcd,0x0,0x0,0x0,0x0,0x0,0x25, - 0xef,0xea,0x0,0x0,0x0,0x0,0x0,0x27,0x29,0xaf,0x0,0x0,0x0,0x0,0x0,0x27, - 0xcf,0xcc,0x0,0x0,0x0,0x0,0x0,0x29,0x9,0x91,0x0,0x0,0x0,0x0,0x0,0x29, - 0xaf,0xae,0x0,0x0,0x0,0x0,0x0,0x2a,0xe9,0x73,0x0,0x0,0x0,0x0,0x0,0x2b, - 0x98,0xca,0x80,0x0,0x0,0x0,0x0,0x2c,0xd2,0x8f,0x80,0x0,0x0,0x0,0x0,0x2d, - 0x78,0xac,0x80,0x0,0x0,0x0,0x0,0x2e,0xb2,0x71,0x80,0x0,0x0,0x0,0x0,0x2f, - 0x58,0x8e,0x80,0x0,0x0,0x0,0x0,0x30,0x92,0x53,0x80,0x0,0x0,0x0,0x0,0x31, - 0x5d,0x5a,0x80,0x0,0x0,0x0,0x0,0x32,0x72,0x35,0x80,0x0,0x0,0x0,0x0,0x33, - 0x3d,0x3c,0x80,0x0,0x0,0x0,0x0,0x34,0x52,0x17,0x80,0x0,0x0,0x0,0x0,0x35, - 0x1d,0x1e,0x80,0x0,0x0,0x0,0x0,0x36,0x31,0xf9,0x80,0x0,0x0,0x0,0x0,0x36, - 0xfd,0x0,0x80,0x0,0x0,0x0,0x0,0x38,0x1b,0x16,0x0,0x0,0x0,0x0,0x0,0x38, - 0xdc,0xe2,0x80,0x0,0x0,0x0,0x0,0x39,0xa7,0xe9,0x80,0x0,0x0,0x0,0x0,0x3a, - 0xbc,0xc4,0x80,0x0,0x0,0x0,0x0,0x3b,0xda,0xda,0x0,0x0,0x0,0x0,0x0,0x3c, - 0xa5,0xe1,0x0,0x0,0x0,0x0,0x0,0x3d,0xba,0xbc,0x0,0x0,0x0,0x0,0x0,0x3e, - 0x85,0xc3,0x0,0x0,0x0,0x0,0x0,0x3f,0x9a,0x9e,0x0,0x0,0x0,0x0,0x0,0x40, - 0x65,0xa5,0x0,0x0,0x0,0x0,0x0,0x41,0x83,0xba,0x80,0x0,0x0,0x0,0x0,0x42, - 0x45,0x87,0x0,0x0,0x0,0x0,0x0,0x43,0x63,0x9c,0x80,0x0,0x0,0x0,0x0,0x44, - 0x2e,0xa3,0x80,0x0,0x0,0x0,0x0,0x45,0x43,0x7e,0x80,0x0,0x0,0x0,0x0,0x46, - 0x5,0x4b,0x0,0x0,0x0,0x0,0x0,0x47,0x23,0x60,0x80,0x0,0x0,0x0,0x0,0x47, - 0xf7,0xa2,0x0,0x0,0x0,0x0,0x0,0x48,0xe7,0x93,0x0,0x0,0x0,0x0,0x0,0x49, - 0xd7,0x84,0x0,0x0,0x0,0x0,0x0,0x4a,0xc7,0x75,0x0,0x0,0x0,0x0,0x0,0x4b, - 0xb7,0x66,0x0,0x0,0x0,0x0,0x0,0x4c,0xa7,0x57,0x0,0x0,0x0,0x0,0x0,0x4d, - 0x97,0x48,0x0,0x0,0x0,0x0,0x0,0x4e,0x87,0x39,0x0,0x0,0x0,0x0,0x0,0x4f, - 0x77,0x2a,0x0,0x0,0x0,0x0,0x0,0x50,0x70,0x55,0x80,0x0,0x0,0x0,0x0,0x51, - 0x60,0x46,0x80,0x0,0x0,0x0,0x0,0x52,0x50,0x37,0x80,0x0,0x0,0x0,0x0,0x53, - 0x40,0x28,0x80,0x0,0x0,0x0,0x0,0x54,0x30,0x19,0x80,0x0,0x0,0x0,0x0,0x55, - 0x20,0xa,0x80,0x0,0x0,0x0,0x0,0x56,0xf,0xfb,0x80,0x0,0x0,0x0,0x0,0x56, - 0xff,0xec,0x80,0x0,0x0,0x0,0x0,0x57,0xef,0xdd,0x80,0x0,0x0,0x0,0x0,0x58, - 0xdf,0xce,0x80,0x0,0x0,0x0,0x0,0x59,0xcf,0xbf,0x80,0x0,0x0,0x0,0x0,0x5a, - 0xbf,0xb0,0x80,0x0,0x0,0x0,0x0,0x5b,0xb8,0xdc,0x0,0x0,0x0,0x0,0x0,0x5c, - 0xa8,0xcd,0x0,0x0,0x0,0x0,0x0,0x5d,0x98,0xbe,0x0,0x0,0x0,0x0,0x0,0x5e, - 0x88,0xaf,0x0,0x0,0x0,0x0,0x0,0x5f,0x78,0xa0,0x0,0x0,0x0,0x0,0x0,0x60, - 0x68,0x91,0x0,0x0,0x0,0x0,0x0,0x61,0x58,0x82,0x0,0x0,0x0,0x0,0x0,0x62, - 0x48,0x73,0x0,0x0,0x0,0x0,0x0,0x63,0x38,0x64,0x0,0x0,0x0,0x0,0x0,0x64, - 0x28,0x55,0x0,0x0,0x0,0x0,0x0,0x65,0x18,0x46,0x0,0x0,0x0,0x0,0x0,0x66, - 0x11,0x71,0x80,0x0,0x0,0x0,0x0,0x67,0x1,0x62,0x80,0x0,0x0,0x0,0x0,0x67, - 0xf1,0x53,0x80,0x0,0x0,0x0,0x0,0x68,0xe1,0x44,0x80,0x0,0x0,0x0,0x0,0x69, - 0xd1,0x35,0x80,0x0,0x0,0x0,0x0,0x6a,0xc1,0x26,0x80,0x0,0x0,0x0,0x0,0x6b, - 0xb1,0x17,0x80,0x0,0x0,0x0,0x0,0x6c,0xa1,0x8,0x80,0x0,0x0,0x0,0x0,0x6d, - 0x90,0xf9,0x80,0x0,0x0,0x0,0x0,0x6e,0x80,0xea,0x80,0x0,0x0,0x0,0x0,0x6f, - 0x70,0xdb,0x80,0x0,0x0,0x0,0x0,0x70,0x6a,0x7,0x0,0x0,0x0,0x0,0x0,0x71, - 0x59,0xf8,0x0,0x0,0x0,0x0,0x0,0x72,0x49,0xe9,0x0,0x0,0x0,0x0,0x0,0x73, - 0x39,0xda,0x0,0x0,0x0,0x0,0x0,0x74,0x29,0xcb,0x0,0x0,0x0,0x0,0x0,0x75, - 0x19,0xbc,0x0,0x0,0x0,0x0,0x0,0x76,0x9,0xad,0x0,0x0,0x0,0x0,0x0,0x76, - 0xf9,0x9e,0x0,0x0,0x0,0x0,0x0,0x77,0xe9,0x8f,0x0,0x0,0x0,0x0,0x0,0x78, - 0xd9,0x80,0x0,0x0,0x0,0x0,0x0,0x79,0xc9,0x71,0x0,0x0,0x0,0x0,0x0,0x7a, - 0xb9,0x62,0x0,0x0,0x0,0x0,0x0,0x7b,0xb2,0x8d,0x80,0x0,0x0,0x0,0x0,0x7c, - 0xa2,0x7e,0x80,0x0,0x0,0x0,0x0,0x7d,0x92,0x6f,0x80,0x0,0x0,0x0,0x0,0x7e, - 0x82,0x60,0x80,0x0,0x0,0x0,0x0,0x7f,0x72,0x51,0x80,0x0,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x0,0x0,0x8d,0xc4,0x0,0x0, - 0x0,0x0,0x9a,0xb0,0x1,0x4,0x0,0x0,0x8c,0xa0,0x0,0x9,0x0,0x0,0x9a,0xb0, - 0x1,0x4,0x0,0x0,0x8c,0xa0,0x0,0x9,0x4c,0x4d,0x54,0x0,0x41,0x45,0x44,0x54, - 0x0,0x41,0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0, - 0xa,0x41,0x45,0x53,0x54,0x2d,0x31,0x30,0x41,0x45,0x44,0x54,0x2c,0x4d,0x31,0x30, - 0x2e,0x31,0x2e,0x30,0x2c,0x4d,0x34,0x2e,0x31,0x2e,0x30,0x2f,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Australia/Lindeman - 0x0,0x0,0x2,0xa, + 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0xa1, + 0x51,0xf3,0x50,0x0,0x1,0x0,0x0,0x3,0x30,0x0,0x0,0x0,0x0,0xe,0x10,0x0, + 0x4,0x4c,0x4d,0x54,0x0,0x57,0x41,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, + 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0xa1,0x51,0xf3,0x50,0x0,0x1,0x0,0x0,0x3,0x30,0x0, + 0x0,0x0,0x0,0xe,0x10,0x0,0x4,0x4c,0x4d,0x54,0x0,0x57,0x41,0x54,0x0,0x0, + 0x0,0x0,0x0,0xa,0x57,0x41,0x54,0x2d,0x31,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Kigali + 0x0,0x0,0x0,0xab, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x16,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xe,0x80,0x0,0x0,0x0,0x9c, - 0x4e,0xa6,0x9c,0x9c,0xbc,0x20,0xf0,0xcb,0x54,0xb3,0x0,0xcb,0xc7,0x57,0x70,0xcc, - 0xb7,0x56,0x80,0xcd,0xa7,0x39,0x70,0xce,0xa0,0x73,0x0,0xcf,0x87,0x1b,0x70,0x3, - 0x70,0x39,0x80,0x4,0xd,0x1c,0x0,0x25,0x49,0xcd,0x0,0x25,0xef,0xea,0x0,0x27, - 0x29,0xaf,0x0,0x27,0xcf,0xcc,0x0,0x29,0x9,0x91,0x0,0x29,0xaf,0xae,0x0,0x2a, - 0x50,0x68,0xe0,0x2a,0xe9,0x73,0x0,0x2b,0x98,0xca,0x80,0x2c,0xd2,0x8f,0x80,0x2d, - 0x78,0xac,0x80,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x2,0x3,0x4,0x3,0x4,0x0,0x0,0x8b,0xac,0x0,0x0,0x0, - 0x0,0x9a,0xb0,0x1,0x4,0x0,0x0,0x8c,0xa0,0x0,0x9,0x0,0x0,0x9a,0xb0,0x1, - 0x4,0x0,0x0,0x8c,0xa0,0x0,0x9,0x4c,0x4d,0x54,0x0,0x41,0x45,0x44,0x54,0x0, - 0x41,0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x54, + 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x82, + 0x46,0xc5,0xf4,0x0,0x1,0x0,0x0,0x1e,0x8c,0x0,0x0,0x0,0x0,0x1c,0x20,0x0, + 0x4,0x4c,0x4d,0x54,0x0,0x43,0x41,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, + 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0x82,0x46,0xc5,0xf4,0x0,0x1,0x0,0x0,0x1e,0x8c,0x0, + 0x0,0x0,0x0,0x1c,0x20,0x0,0x4,0x4c,0x4d,0x54,0x0,0x43,0x41,0x54,0x0,0x0, + 0x0,0x0,0x0,0xa,0x43,0x41,0x54,0x2d,0x32,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Malabo + 0x0,0x0,0x0,0xab, + 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x17,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xe,0xf8,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x72,0xed,0xa2,0xd4,0xff,0xff,0xff,0xff,0x9c, - 0x4e,0xa6,0x9c,0xff,0xff,0xff,0xff,0x9c,0xbc,0x20,0xf0,0xff,0xff,0xff,0xff,0xcb, - 0x54,0xb3,0x0,0xff,0xff,0xff,0xff,0xcb,0xc7,0x57,0x70,0xff,0xff,0xff,0xff,0xcc, - 0xb7,0x56,0x80,0xff,0xff,0xff,0xff,0xcd,0xa7,0x39,0x70,0xff,0xff,0xff,0xff,0xce, - 0xa0,0x73,0x0,0xff,0xff,0xff,0xff,0xcf,0x87,0x1b,0x70,0x0,0x0,0x0,0x0,0x3, - 0x70,0x39,0x80,0x0,0x0,0x0,0x0,0x4,0xd,0x1c,0x0,0x0,0x0,0x0,0x0,0x25, - 0x49,0xcd,0x0,0x0,0x0,0x0,0x0,0x25,0xef,0xea,0x0,0x0,0x0,0x0,0x0,0x27, - 0x29,0xaf,0x0,0x0,0x0,0x0,0x0,0x27,0xcf,0xcc,0x0,0x0,0x0,0x0,0x0,0x29, - 0x9,0x91,0x0,0x0,0x0,0x0,0x0,0x29,0xaf,0xae,0x0,0x0,0x0,0x0,0x0,0x2a, - 0x50,0x68,0xe0,0x0,0x0,0x0,0x0,0x2a,0xe9,0x73,0x0,0x0,0x0,0x0,0x0,0x2b, - 0x98,0xca,0x80,0x0,0x0,0x0,0x0,0x2c,0xd2,0x8f,0x80,0x0,0x0,0x0,0x0,0x2d, - 0x78,0xac,0x80,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x2,0x3,0x4,0x3,0x4,0x0,0x0,0x8b,0xac,0x0,0x0, - 0x0,0x0,0x9a,0xb0,0x1,0x4,0x0,0x0,0x8c,0xa0,0x0,0x9,0x0,0x0,0x9a,0xb0, - 0x1,0x4,0x0,0x0,0x8c,0xa0,0x0,0x9,0x4c,0x4d,0x54,0x0,0x41,0x45,0x44,0x54, - 0x0,0x41,0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0, - 0xa,0x41,0x45,0x53,0x54,0x2d,0x31,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Australia/NSW - 0x0,0x0,0x8,0xaf, + 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0xa1, + 0x51,0xf3,0x50,0x0,0x1,0x0,0x0,0x3,0x30,0x0,0x0,0x0,0x0,0xe,0x10,0x0, + 0x4,0x4c,0x4d,0x54,0x0,0x57,0x41,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, + 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0xa1,0x51,0xf3,0x50,0x0,0x1,0x0,0x0,0x3,0x30,0x0, + 0x0,0x0,0x0,0xe,0x10,0x0,0x4,0x4c,0x4d,0x54,0x0,0x57,0x41,0x54,0x0,0x0, + 0x0,0x0,0x0,0xa,0x57,0x41,0x54,0x2d,0x31,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Ceuta + 0x0,0x0,0x8,0xb, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x8e,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xe,0x80,0x0,0x0,0x0,0x9c, - 0x4e,0xa6,0x9c,0x9c,0xbc,0x20,0xf0,0xcb,0x54,0xb3,0x0,0xcb,0xc7,0x57,0x70,0xcc, - 0xb7,0x56,0x80,0xcd,0xa7,0x39,0x70,0xce,0xa0,0x73,0x0,0xcf,0x87,0x1b,0x70,0x3, - 0x70,0x39,0x80,0x4,0xd,0x1c,0x0,0x5,0x50,0x1b,0x80,0x5,0xf6,0x38,0x80,0x7, - 0x2f,0xfd,0x80,0x7,0xd6,0x1a,0x80,0x9,0xf,0xdf,0x80,0x9,0xb5,0xfc,0x80,0xa, - 0xef,0xc1,0x80,0xb,0x9f,0x19,0x0,0xc,0xd8,0xde,0x0,0xd,0x7e,0xfb,0x0,0xe, - 0xb8,0xc0,0x0,0xf,0x5e,0xdd,0x0,0x10,0x98,0xa2,0x0,0x11,0x3e,0xbf,0x0,0x12, - 0x78,0x84,0x0,0x13,0x1e,0xa1,0x0,0x14,0x58,0x66,0x0,0x14,0xfe,0x83,0x0,0x16, - 0x38,0x48,0x0,0x17,0xc,0x89,0x80,0x18,0x21,0x64,0x80,0x18,0xc7,0x81,0x80,0x1a, - 0x1,0x46,0x80,0x1a,0xa7,0x63,0x80,0x1b,0xe1,0x28,0x80,0x1c,0x87,0x45,0x80,0x1d, - 0xc1,0xa,0x80,0x1e,0x79,0x9c,0x80,0x1f,0x97,0xb2,0x0,0x20,0x59,0x7e,0x80,0x21, - 0x80,0xce,0x80,0x22,0x42,0x9b,0x0,0x23,0x69,0xeb,0x0,0x24,0x22,0x7d,0x0,0x25, - 0x49,0xcd,0x0,0x25,0xef,0xea,0x0,0x27,0x29,0xaf,0x0,0x27,0xcf,0xcc,0x0,0x29, - 0x9,0x91,0x0,0x29,0xaf,0xae,0x0,0x2a,0xe9,0x73,0x0,0x2b,0x98,0xca,0x80,0x2c, - 0xd2,0x8f,0x80,0x2d,0x78,0xac,0x80,0x2e,0xb2,0x71,0x80,0x2f,0x58,0x8e,0x80,0x30, - 0x92,0x53,0x80,0x31,0x5d,0x5a,0x80,0x32,0x72,0x35,0x80,0x33,0x3d,0x3c,0x80,0x34, - 0x52,0x17,0x80,0x35,0x1d,0x1e,0x80,0x36,0x31,0xf9,0x80,0x36,0xfd,0x0,0x80,0x38, - 0x1b,0x16,0x0,0x38,0xdc,0xe2,0x80,0x39,0xa7,0xe9,0x80,0x3a,0xbc,0xc4,0x80,0x3b, - 0xda,0xda,0x0,0x3c,0xa5,0xe1,0x0,0x3d,0xba,0xbc,0x0,0x3e,0x85,0xc3,0x0,0x3f, - 0x9a,0x9e,0x0,0x40,0x65,0xa5,0x0,0x41,0x83,0xba,0x80,0x42,0x45,0x87,0x0,0x43, - 0x63,0x9c,0x80,0x44,0x2e,0xa3,0x80,0x45,0x43,0x7e,0x80,0x46,0x5,0x4b,0x0,0x47, - 0x23,0x60,0x80,0x47,0xf7,0xa2,0x0,0x48,0xe7,0x93,0x0,0x49,0xd7,0x84,0x0,0x4a, - 0xc7,0x75,0x0,0x4b,0xb7,0x66,0x0,0x4c,0xa7,0x57,0x0,0x4d,0x97,0x48,0x0,0x4e, - 0x87,0x39,0x0,0x4f,0x77,0x2a,0x0,0x50,0x70,0x55,0x80,0x51,0x60,0x46,0x80,0x52, - 0x50,0x37,0x80,0x53,0x40,0x28,0x80,0x54,0x30,0x19,0x80,0x55,0x20,0xa,0x80,0x56, - 0xf,0xfb,0x80,0x56,0xff,0xec,0x80,0x57,0xef,0xdd,0x80,0x58,0xdf,0xce,0x80,0x59, - 0xcf,0xbf,0x80,0x5a,0xbf,0xb0,0x80,0x5b,0xb8,0xdc,0x0,0x5c,0xa8,0xcd,0x0,0x5d, - 0x98,0xbe,0x0,0x5e,0x88,0xaf,0x0,0x5f,0x78,0xa0,0x0,0x60,0x68,0x91,0x0,0x61, - 0x58,0x82,0x0,0x62,0x48,0x73,0x0,0x63,0x38,0x64,0x0,0x64,0x28,0x55,0x0,0x65, - 0x18,0x46,0x0,0x66,0x11,0x71,0x80,0x67,0x1,0x62,0x80,0x67,0xf1,0x53,0x80,0x68, - 0xe1,0x44,0x80,0x69,0xd1,0x35,0x80,0x6a,0xc1,0x26,0x80,0x6b,0xb1,0x17,0x80,0x6c, - 0xa1,0x8,0x80,0x6d,0x90,0xf9,0x80,0x6e,0x80,0xea,0x80,0x6f,0x70,0xdb,0x80,0x70, - 0x6a,0x7,0x0,0x71,0x59,0xf8,0x0,0x72,0x49,0xe9,0x0,0x73,0x39,0xda,0x0,0x74, - 0x29,0xcb,0x0,0x75,0x19,0xbc,0x0,0x76,0x9,0xad,0x0,0x76,0xf9,0x9e,0x0,0x77, - 0xe9,0x8f,0x0,0x78,0xd9,0x80,0x0,0x79,0xc9,0x71,0x0,0x7a,0xb9,0x62,0x0,0x7b, - 0xb2,0x8d,0x80,0x7c,0xa2,0x7e,0x80,0x7d,0x92,0x6f,0x80,0x7e,0x82,0x60,0x80,0x7f, - 0x72,0x51,0x80,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x0,0x0,0x8d,0xc4,0x0,0x0,0x0,0x0,0x9a,0xb0,0x1,0x4,0x0,0x0,0x8c, - 0xa0,0x0,0x9,0x0,0x0,0x9a,0xb0,0x1,0x4,0x0,0x0,0x8c,0xa0,0x0,0x9,0x4c, - 0x4d,0x54,0x0,0x41,0x45,0x44,0x54,0x0,0x41,0x45,0x53,0x54,0x0,0x0,0x0,0x0, - 0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0, - 0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0x0,0x0,0x0,0x5,0x0, - 0x0,0x0,0xe,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x73, - 0x16,0x7f,0x3c,0xff,0xff,0xff,0xff,0x9c,0x4e,0xa6,0x9c,0xff,0xff,0xff,0xff,0x9c, - 0xbc,0x20,0xf0,0xff,0xff,0xff,0xff,0xcb,0x54,0xb3,0x0,0xff,0xff,0xff,0xff,0xcb, - 0xc7,0x57,0x70,0xff,0xff,0xff,0xff,0xcc,0xb7,0x56,0x80,0xff,0xff,0xff,0xff,0xcd, - 0xa7,0x39,0x70,0xff,0xff,0xff,0xff,0xce,0xa0,0x73,0x0,0xff,0xff,0xff,0xff,0xcf, - 0x87,0x1b,0x70,0x0,0x0,0x0,0x0,0x3,0x70,0x39,0x80,0x0,0x0,0x0,0x0,0x4, - 0xd,0x1c,0x0,0x0,0x0,0x0,0x0,0x5,0x50,0x1b,0x80,0x0,0x0,0x0,0x0,0x5, - 0xf6,0x38,0x80,0x0,0x0,0x0,0x0,0x7,0x2f,0xfd,0x80,0x0,0x0,0x0,0x0,0x7, - 0xd6,0x1a,0x80,0x0,0x0,0x0,0x0,0x9,0xf,0xdf,0x80,0x0,0x0,0x0,0x0,0x9, - 0xb5,0xfc,0x80,0x0,0x0,0x0,0x0,0xa,0xef,0xc1,0x80,0x0,0x0,0x0,0x0,0xb, - 0x9f,0x19,0x0,0x0,0x0,0x0,0x0,0xc,0xd8,0xde,0x0,0x0,0x0,0x0,0x0,0xd, - 0x7e,0xfb,0x0,0x0,0x0,0x0,0x0,0xe,0xb8,0xc0,0x0,0x0,0x0,0x0,0x0,0xf, - 0x5e,0xdd,0x0,0x0,0x0,0x0,0x0,0x10,0x98,0xa2,0x0,0x0,0x0,0x0,0x0,0x11, - 0x3e,0xbf,0x0,0x0,0x0,0x0,0x0,0x12,0x78,0x84,0x0,0x0,0x0,0x0,0x0,0x13, - 0x1e,0xa1,0x0,0x0,0x0,0x0,0x0,0x14,0x58,0x66,0x0,0x0,0x0,0x0,0x0,0x14, - 0xfe,0x83,0x0,0x0,0x0,0x0,0x0,0x16,0x38,0x48,0x0,0x0,0x0,0x0,0x0,0x17, - 0xc,0x89,0x80,0x0,0x0,0x0,0x0,0x18,0x21,0x64,0x80,0x0,0x0,0x0,0x0,0x18, - 0xc7,0x81,0x80,0x0,0x0,0x0,0x0,0x1a,0x1,0x46,0x80,0x0,0x0,0x0,0x0,0x1a, - 0xa7,0x63,0x80,0x0,0x0,0x0,0x0,0x1b,0xe1,0x28,0x80,0x0,0x0,0x0,0x0,0x1c, - 0x87,0x45,0x80,0x0,0x0,0x0,0x0,0x1d,0xc1,0xa,0x80,0x0,0x0,0x0,0x0,0x1e, - 0x79,0x9c,0x80,0x0,0x0,0x0,0x0,0x1f,0x97,0xb2,0x0,0x0,0x0,0x0,0x0,0x20, - 0x59,0x7e,0x80,0x0,0x0,0x0,0x0,0x21,0x80,0xce,0x80,0x0,0x0,0x0,0x0,0x22, - 0x42,0x9b,0x0,0x0,0x0,0x0,0x0,0x23,0x69,0xeb,0x0,0x0,0x0,0x0,0x0,0x24, - 0x22,0x7d,0x0,0x0,0x0,0x0,0x0,0x25,0x49,0xcd,0x0,0x0,0x0,0x0,0x0,0x25, - 0xef,0xea,0x0,0x0,0x0,0x0,0x0,0x27,0x29,0xaf,0x0,0x0,0x0,0x0,0x0,0x27, - 0xcf,0xcc,0x0,0x0,0x0,0x0,0x0,0x29,0x9,0x91,0x0,0x0,0x0,0x0,0x0,0x29, - 0xaf,0xae,0x0,0x0,0x0,0x0,0x0,0x2a,0xe9,0x73,0x0,0x0,0x0,0x0,0x0,0x2b, - 0x98,0xca,0x80,0x0,0x0,0x0,0x0,0x2c,0xd2,0x8f,0x80,0x0,0x0,0x0,0x0,0x2d, - 0x78,0xac,0x80,0x0,0x0,0x0,0x0,0x2e,0xb2,0x71,0x80,0x0,0x0,0x0,0x0,0x2f, - 0x58,0x8e,0x80,0x0,0x0,0x0,0x0,0x30,0x92,0x53,0x80,0x0,0x0,0x0,0x0,0x31, - 0x5d,0x5a,0x80,0x0,0x0,0x0,0x0,0x32,0x72,0x35,0x80,0x0,0x0,0x0,0x0,0x33, - 0x3d,0x3c,0x80,0x0,0x0,0x0,0x0,0x34,0x52,0x17,0x80,0x0,0x0,0x0,0x0,0x35, - 0x1d,0x1e,0x80,0x0,0x0,0x0,0x0,0x36,0x31,0xf9,0x80,0x0,0x0,0x0,0x0,0x36, - 0xfd,0x0,0x80,0x0,0x0,0x0,0x0,0x38,0x1b,0x16,0x0,0x0,0x0,0x0,0x0,0x38, - 0xdc,0xe2,0x80,0x0,0x0,0x0,0x0,0x39,0xa7,0xe9,0x80,0x0,0x0,0x0,0x0,0x3a, - 0xbc,0xc4,0x80,0x0,0x0,0x0,0x0,0x3b,0xda,0xda,0x0,0x0,0x0,0x0,0x0,0x3c, - 0xa5,0xe1,0x0,0x0,0x0,0x0,0x0,0x3d,0xba,0xbc,0x0,0x0,0x0,0x0,0x0,0x3e, - 0x85,0xc3,0x0,0x0,0x0,0x0,0x0,0x3f,0x9a,0x9e,0x0,0x0,0x0,0x0,0x0,0x40, - 0x65,0xa5,0x0,0x0,0x0,0x0,0x0,0x41,0x83,0xba,0x80,0x0,0x0,0x0,0x0,0x42, - 0x45,0x87,0x0,0x0,0x0,0x0,0x0,0x43,0x63,0x9c,0x80,0x0,0x0,0x0,0x0,0x44, - 0x2e,0xa3,0x80,0x0,0x0,0x0,0x0,0x45,0x43,0x7e,0x80,0x0,0x0,0x0,0x0,0x46, - 0x5,0x4b,0x0,0x0,0x0,0x0,0x0,0x47,0x23,0x60,0x80,0x0,0x0,0x0,0x0,0x47, - 0xf7,0xa2,0x0,0x0,0x0,0x0,0x0,0x48,0xe7,0x93,0x0,0x0,0x0,0x0,0x0,0x49, - 0xd7,0x84,0x0,0x0,0x0,0x0,0x0,0x4a,0xc7,0x75,0x0,0x0,0x0,0x0,0x0,0x4b, - 0xb7,0x66,0x0,0x0,0x0,0x0,0x0,0x4c,0xa7,0x57,0x0,0x0,0x0,0x0,0x0,0x4d, - 0x97,0x48,0x0,0x0,0x0,0x0,0x0,0x4e,0x87,0x39,0x0,0x0,0x0,0x0,0x0,0x4f, - 0x77,0x2a,0x0,0x0,0x0,0x0,0x0,0x50,0x70,0x55,0x80,0x0,0x0,0x0,0x0,0x51, - 0x60,0x46,0x80,0x0,0x0,0x0,0x0,0x52,0x50,0x37,0x80,0x0,0x0,0x0,0x0,0x53, - 0x40,0x28,0x80,0x0,0x0,0x0,0x0,0x54,0x30,0x19,0x80,0x0,0x0,0x0,0x0,0x55, - 0x20,0xa,0x80,0x0,0x0,0x0,0x0,0x56,0xf,0xfb,0x80,0x0,0x0,0x0,0x0,0x56, - 0xff,0xec,0x80,0x0,0x0,0x0,0x0,0x57,0xef,0xdd,0x80,0x0,0x0,0x0,0x0,0x58, - 0xdf,0xce,0x80,0x0,0x0,0x0,0x0,0x59,0xcf,0xbf,0x80,0x0,0x0,0x0,0x0,0x5a, - 0xbf,0xb0,0x80,0x0,0x0,0x0,0x0,0x5b,0xb8,0xdc,0x0,0x0,0x0,0x0,0x0,0x5c, - 0xa8,0xcd,0x0,0x0,0x0,0x0,0x0,0x5d,0x98,0xbe,0x0,0x0,0x0,0x0,0x0,0x5e, - 0x88,0xaf,0x0,0x0,0x0,0x0,0x0,0x5f,0x78,0xa0,0x0,0x0,0x0,0x0,0x0,0x60, - 0x68,0x91,0x0,0x0,0x0,0x0,0x0,0x61,0x58,0x82,0x0,0x0,0x0,0x0,0x0,0x62, - 0x48,0x73,0x0,0x0,0x0,0x0,0x0,0x63,0x38,0x64,0x0,0x0,0x0,0x0,0x0,0x64, - 0x28,0x55,0x0,0x0,0x0,0x0,0x0,0x65,0x18,0x46,0x0,0x0,0x0,0x0,0x0,0x66, - 0x11,0x71,0x80,0x0,0x0,0x0,0x0,0x67,0x1,0x62,0x80,0x0,0x0,0x0,0x0,0x67, - 0xf1,0x53,0x80,0x0,0x0,0x0,0x0,0x68,0xe1,0x44,0x80,0x0,0x0,0x0,0x0,0x69, - 0xd1,0x35,0x80,0x0,0x0,0x0,0x0,0x6a,0xc1,0x26,0x80,0x0,0x0,0x0,0x0,0x6b, - 0xb1,0x17,0x80,0x0,0x0,0x0,0x0,0x6c,0xa1,0x8,0x80,0x0,0x0,0x0,0x0,0x6d, - 0x90,0xf9,0x80,0x0,0x0,0x0,0x0,0x6e,0x80,0xea,0x80,0x0,0x0,0x0,0x0,0x6f, - 0x70,0xdb,0x80,0x0,0x0,0x0,0x0,0x70,0x6a,0x7,0x0,0x0,0x0,0x0,0x0,0x71, - 0x59,0xf8,0x0,0x0,0x0,0x0,0x0,0x72,0x49,0xe9,0x0,0x0,0x0,0x0,0x0,0x73, - 0x39,0xda,0x0,0x0,0x0,0x0,0x0,0x74,0x29,0xcb,0x0,0x0,0x0,0x0,0x0,0x75, - 0x19,0xbc,0x0,0x0,0x0,0x0,0x0,0x76,0x9,0xad,0x0,0x0,0x0,0x0,0x0,0x76, - 0xf9,0x9e,0x0,0x0,0x0,0x0,0x0,0x77,0xe9,0x8f,0x0,0x0,0x0,0x0,0x0,0x78, - 0xd9,0x80,0x0,0x0,0x0,0x0,0x0,0x79,0xc9,0x71,0x0,0x0,0x0,0x0,0x0,0x7a, - 0xb9,0x62,0x0,0x0,0x0,0x0,0x0,0x7b,0xb2,0x8d,0x80,0x0,0x0,0x0,0x0,0x7c, - 0xa2,0x7e,0x80,0x0,0x0,0x0,0x0,0x7d,0x92,0x6f,0x80,0x0,0x0,0x0,0x0,0x7e, - 0x82,0x60,0x80,0x0,0x0,0x0,0x0,0x7f,0x72,0x51,0x80,0x0,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x0,0x0,0x8d,0xc4,0x0,0x0, - 0x0,0x0,0x9a,0xb0,0x1,0x4,0x0,0x0,0x8c,0xa0,0x0,0x9,0x0,0x0,0x9a,0xb0, - 0x1,0x4,0x0,0x0,0x8c,0xa0,0x0,0x9,0x4c,0x4d,0x54,0x0,0x41,0x45,0x44,0x54, - 0x0,0x41,0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0, - 0xa,0x41,0x45,0x53,0x54,0x2d,0x31,0x30,0x41,0x45,0x44,0x54,0x2c,0x4d,0x31,0x30, - 0x2e,0x31,0x2e,0x30,0x2c,0x4d,0x34,0x2e,0x31,0x2e,0x30,0x2f,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Australia/Darwin - 0x0,0x0,0x1,0x43, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x7f,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x16,0x80,0x0,0x0,0x0,0x9e, + 0xd6,0x75,0x70,0x9f,0xa1,0x6e,0x60,0xaa,0x5,0xef,0x70,0xaa,0xe7,0x6e,0x0,0xad, + 0xc9,0xa7,0xf0,0xae,0xa7,0x32,0x0,0xaf,0xa0,0x4f,0x70,0xb0,0x87,0x14,0x0,0xb1, + 0x89,0x7a,0x0,0xb2,0x70,0x30,0x80,0xb2,0xe1,0x91,0x80,0xfb,0x25,0x72,0x40,0xfb, + 0xc2,0xef,0x70,0x8,0x6b,0x84,0x80,0x8,0xc6,0x6d,0xf0,0xb,0xe8,0xc,0x0,0xc, + 0x61,0x47,0xf0,0xd,0xc9,0x3f,0x80,0xe,0x8e,0xf2,0x70,0xf,0xd3,0x51,0x80,0x10, + 0x27,0xa3,0x70,0x1a,0xb7,0xa6,0x0,0x1e,0x8c,0x90,0x10,0x1f,0x7c,0x81,0x10,0x20, + 0x6c,0x72,0x10,0x21,0x5c,0x63,0x10,0x22,0x4c,0x54,0x10,0x23,0x3c,0x45,0x10,0x24, + 0x2c,0x36,0x10,0x25,0x1c,0x27,0x10,0x26,0xc,0x18,0x10,0x27,0x5,0x43,0x90,0x27, + 0xf5,0x34,0x90,0x28,0xe5,0x25,0x90,0x29,0xd5,0x16,0x90,0x2a,0xc5,0x7,0x90,0x2b, + 0xb4,0xf8,0x90,0x2c,0xa4,0xe9,0x90,0x2d,0x94,0xda,0x90,0x2e,0x84,0xcb,0x90,0x2f, + 0x74,0xbc,0x90,0x30,0x64,0xad,0x90,0x31,0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33, + 0x3d,0xbb,0x10,0x34,0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36, + 0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a, + 0xbd,0x43,0x10,0x3b,0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e, + 0x86,0x41,0x90,0x3f,0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42, + 0x46,0x5,0x90,0x43,0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46, + 0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49, + 0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d, + 0x8e,0x8c,0x10,0x4e,0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51, + 0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55, + 0x17,0x4e,0x90,0x56,0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58, + 0xd7,0x12,0x90,0x59,0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c, + 0xa0,0x11,0x10,0x5d,0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60, + 0x5f,0xd5,0x10,0x61,0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64, + 0x1f,0x99,0x10,0x65,0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67, + 0xe8,0x97,0x90,0x68,0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b, + 0xa8,0x5b,0x90,0x6c,0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f, + 0x68,0x1f,0x90,0x70,0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73, + 0x31,0x1e,0x10,0x74,0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76, + 0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a, + 0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e, + 0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x1,0x2,0x1,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x4,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0xff,0xff,0xfb,0x4,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x4,0x0,0x0,0xe,0x10,0x1,0x8,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0, + 0xe,0x10,0x0,0xd,0x0,0x0,0x1c,0x20,0x1,0x11,0x0,0x0,0xe,0x10,0x0,0xd, + 0x4c,0x4d,0x54,0x0,0x57,0x45,0x54,0x0,0x57,0x45,0x53,0x54,0x0,0x43,0x45,0x54, + 0x0,0x43,0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x1,0x0,0x0,0x0, + 0x0,0x0,0x1,0x1,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x16, + 0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x7e,0x36,0xb5,0x0, + 0xff,0xff,0xff,0xff,0x9e,0xd6,0x75,0x70,0xff,0xff,0xff,0xff,0x9f,0xa1,0x6e,0x60, + 0xff,0xff,0xff,0xff,0xaa,0x5,0xef,0x70,0xff,0xff,0xff,0xff,0xaa,0xe7,0x6e,0x0, + 0xff,0xff,0xff,0xff,0xad,0xc9,0xa7,0xf0,0xff,0xff,0xff,0xff,0xae,0xa7,0x32,0x0, + 0xff,0xff,0xff,0xff,0xaf,0xa0,0x4f,0x70,0xff,0xff,0xff,0xff,0xb0,0x87,0x14,0x0, + 0xff,0xff,0xff,0xff,0xb1,0x89,0x7a,0x0,0xff,0xff,0xff,0xff,0xb2,0x70,0x30,0x80, + 0xff,0xff,0xff,0xff,0xb2,0xe1,0x91,0x80,0xff,0xff,0xff,0xff,0xfb,0x25,0x72,0x40, + 0xff,0xff,0xff,0xff,0xfb,0xc2,0xef,0x70,0x0,0x0,0x0,0x0,0x8,0x6b,0x84,0x80, + 0x0,0x0,0x0,0x0,0x8,0xc6,0x6d,0xf0,0x0,0x0,0x0,0x0,0xb,0xe8,0xc,0x0, + 0x0,0x0,0x0,0x0,0xc,0x61,0x47,0xf0,0x0,0x0,0x0,0x0,0xd,0xc9,0x3f,0x80, + 0x0,0x0,0x0,0x0,0xe,0x8e,0xf2,0x70,0x0,0x0,0x0,0x0,0xf,0xd3,0x51,0x80, + 0x0,0x0,0x0,0x0,0x10,0x27,0xa3,0x70,0x0,0x0,0x0,0x0,0x1a,0xb7,0xa6,0x0, + 0x0,0x0,0x0,0x0,0x1e,0x8c,0x90,0x10,0x0,0x0,0x0,0x0,0x1f,0x7c,0x81,0x10, + 0x0,0x0,0x0,0x0,0x20,0x6c,0x72,0x10,0x0,0x0,0x0,0x0,0x21,0x5c,0x63,0x10, + 0x0,0x0,0x0,0x0,0x22,0x4c,0x54,0x10,0x0,0x0,0x0,0x0,0x23,0x3c,0x45,0x10, + 0x0,0x0,0x0,0x0,0x24,0x2c,0x36,0x10,0x0,0x0,0x0,0x0,0x25,0x1c,0x27,0x10, + 0x0,0x0,0x0,0x0,0x26,0xc,0x18,0x10,0x0,0x0,0x0,0x0,0x27,0x5,0x43,0x90, + 0x0,0x0,0x0,0x0,0x27,0xf5,0x34,0x90,0x0,0x0,0x0,0x0,0x28,0xe5,0x25,0x90, + 0x0,0x0,0x0,0x0,0x29,0xd5,0x16,0x90,0x0,0x0,0x0,0x0,0x2a,0xc5,0x7,0x90, + 0x0,0x0,0x0,0x0,0x2b,0xb4,0xf8,0x90,0x0,0x0,0x0,0x0,0x2c,0xa4,0xe9,0x90, + 0x0,0x0,0x0,0x0,0x2d,0x94,0xda,0x90,0x0,0x0,0x0,0x0,0x2e,0x84,0xcb,0x90, + 0x0,0x0,0x0,0x0,0x2f,0x74,0xbc,0x90,0x0,0x0,0x0,0x0,0x30,0x64,0xad,0x90, + 0x0,0x0,0x0,0x0,0x31,0x5d,0xd9,0x10,0x0,0x0,0x0,0x0,0x32,0x72,0xb4,0x10, + 0x0,0x0,0x0,0x0,0x33,0x3d,0xbb,0x10,0x0,0x0,0x0,0x0,0x34,0x52,0x96,0x10, + 0x0,0x0,0x0,0x0,0x35,0x1d,0x9d,0x10,0x0,0x0,0x0,0x0,0x36,0x32,0x78,0x10, + 0x0,0x0,0x0,0x0,0x36,0xfd,0x7f,0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0x94,0x90, + 0x0,0x0,0x0,0x0,0x38,0xdd,0x61,0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0x76,0x90, + 0x0,0x0,0x0,0x0,0x3a,0xbd,0x43,0x10,0x0,0x0,0x0,0x0,0x3b,0xdb,0x58,0x90, + 0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90, + 0x0,0x0,0x0,0x0,0x3e,0x86,0x41,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90, + 0x0,0x0,0x0,0x0,0x40,0x66,0x23,0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x39,0x10, + 0x0,0x0,0x0,0x0,0x42,0x46,0x5,0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x1b,0x10, + 0x0,0x0,0x0,0x0,0x44,0x25,0xe7,0x90,0x0,0x0,0x0,0x0,0x45,0x43,0xfd,0x10, + 0x0,0x0,0x0,0x0,0x46,0x5,0xc9,0x90,0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10, + 0x0,0x0,0x0,0x0,0x47,0xee,0xe6,0x10,0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10, + 0x0,0x0,0x0,0x0,0x49,0xce,0xc8,0x10,0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10, + 0x0,0x0,0x0,0x0,0x4b,0xae,0xaa,0x10,0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90, + 0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c,0x10,0x0,0x0,0x0,0x0,0x4e,0xac,0xa1,0x90, + 0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e,0x10,0x0,0x0,0x0,0x0,0x50,0x8c,0x83,0x90, + 0x0,0x0,0x0,0x0,0x51,0x57,0x8a,0x90,0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90, + 0x0,0x0,0x0,0x0,0x53,0x37,0x6c,0x90,0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90, + 0x0,0x0,0x0,0x0,0x55,0x17,0x4e,0x90,0x0,0x0,0x0,0x0,0x56,0x2c,0x29,0x90, + 0x0,0x0,0x0,0x0,0x56,0xf7,0x30,0x90,0x0,0x0,0x0,0x0,0x58,0x15,0x46,0x10, + 0x0,0x0,0x0,0x0,0x58,0xd7,0x12,0x90,0x0,0x0,0x0,0x0,0x59,0xf5,0x28,0x10, + 0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4,0x90,0x0,0x0,0x0,0x0,0x5b,0xd5,0xa,0x10, + 0x0,0x0,0x0,0x0,0x5c,0xa0,0x11,0x10,0x0,0x0,0x0,0x0,0x5d,0xb4,0xec,0x10, + 0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3,0x10,0x0,0x0,0x0,0x0,0x5f,0x94,0xce,0x10, + 0x0,0x0,0x0,0x0,0x60,0x5f,0xd5,0x10,0x0,0x0,0x0,0x0,0x61,0x7d,0xea,0x90, + 0x0,0x0,0x0,0x0,0x62,0x3f,0xb7,0x10,0x0,0x0,0x0,0x0,0x63,0x5d,0xcc,0x90, + 0x0,0x0,0x0,0x0,0x64,0x1f,0x99,0x10,0x0,0x0,0x0,0x0,0x65,0x3d,0xae,0x90, + 0x0,0x0,0x0,0x0,0x66,0x8,0xb5,0x90,0x0,0x0,0x0,0x0,0x67,0x1d,0x90,0x90, + 0x0,0x0,0x0,0x0,0x67,0xe8,0x97,0x90,0x0,0x0,0x0,0x0,0x68,0xfd,0x72,0x90, + 0x0,0x0,0x0,0x0,0x69,0xc8,0x79,0x90,0x0,0x0,0x0,0x0,0x6a,0xdd,0x54,0x90, + 0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b,0x90,0x0,0x0,0x0,0x0,0x6c,0xc6,0x71,0x10, + 0x0,0x0,0x0,0x0,0x6d,0x88,0x3d,0x90,0x0,0x0,0x0,0x0,0x6e,0xa6,0x53,0x10, + 0x0,0x0,0x0,0x0,0x6f,0x68,0x1f,0x90,0x0,0x0,0x0,0x0,0x70,0x86,0x35,0x10, + 0x0,0x0,0x0,0x0,0x71,0x51,0x3c,0x10,0x0,0x0,0x0,0x0,0x72,0x66,0x17,0x10, + 0x0,0x0,0x0,0x0,0x73,0x31,0x1e,0x10,0x0,0x0,0x0,0x0,0x74,0x45,0xf9,0x10, + 0x0,0x0,0x0,0x0,0x75,0x11,0x0,0x10,0x0,0x0,0x0,0x0,0x76,0x2f,0x15,0x90, + 0x0,0x0,0x0,0x0,0x76,0xf0,0xe2,0x10,0x0,0x0,0x0,0x0,0x78,0xe,0xf7,0x90, + 0x0,0x0,0x0,0x0,0x78,0xd0,0xc4,0x10,0x0,0x0,0x0,0x0,0x79,0xee,0xd9,0x90, + 0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6,0x10,0x0,0x0,0x0,0x0,0x7b,0xce,0xbb,0x90, + 0x0,0x0,0x0,0x0,0x7c,0x99,0xc2,0x90,0x0,0x0,0x0,0x0,0x7d,0xae,0x9d,0x90, + 0x0,0x0,0x0,0x0,0x7e,0x79,0xa4,0x90,0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90, + 0x0,0x1,0x2,0x1,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x4,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0xff,0xff,0xfb,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0xe,0x10, + 0x1,0x8,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0xe,0x10,0x0,0xd,0x0,0x0, + 0x1c,0x20,0x1,0x11,0x0,0x0,0xe,0x10,0x0,0xd,0x4c,0x4d,0x54,0x0,0x57,0x45, + 0x54,0x0,0x57,0x45,0x53,0x54,0x0,0x43,0x45,0x54,0x0,0x43,0x45,0x53,0x54,0x0, + 0x0,0x0,0x0,0x1,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0xa,0x43, + 0x45,0x54,0x2d,0x31,0x43,0x45,0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2c, + 0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30,0x2f,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Windhoek + 0x0,0x0,0x4,0x6, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x9,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xa,0x80,0x0,0x0,0x0,0x9c, - 0x4e,0xad,0xa4,0x9c,0xbc,0x27,0xf8,0xcb,0x54,0xba,0x8,0xcb,0xc7,0x5e,0x78,0xcc, - 0xb7,0x5d,0x88,0xcd,0xa7,0x40,0x78,0xce,0xa0,0x7a,0x8,0xcf,0x87,0x22,0x78,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x0,0x0,0x7e,0x90,0x0,0x0,0x0,0x0, - 0x93,0xa8,0x1,0x5,0x0,0x0,0x85,0x98,0x0,0x0,0x41,0x43,0x53,0x54,0x0,0x41, - 0x43,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x35,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x1c,0x80,0x0,0x0,0x0,0x82, + 0x46,0xcf,0x68,0xcc,0xae,0x8c,0x80,0xcd,0x9e,0x6f,0x70,0x26,0x6,0xa7,0xe0,0x2d, + 0x8c,0xc7,0x60,0x2e,0x69,0x1c,0x10,0x2f,0x7d,0xe9,0x0,0x30,0x48,0xfe,0x10,0x31, + 0x67,0x5,0x80,0x32,0x28,0xe0,0x10,0x33,0x46,0xe7,0x80,0x34,0x11,0xfc,0x90,0x35, + 0x26,0xc9,0x80,0x35,0xf1,0xde,0x90,0x37,0x6,0xab,0x80,0x37,0xd1,0xc0,0x90,0x38, + 0xe6,0x8d,0x80,0x39,0xb1,0xa2,0x90,0x3a,0xc6,0x6f,0x80,0x3b,0x91,0x84,0x90,0x3c, + 0xaf,0x8c,0x0,0x3d,0x71,0x66,0x90,0x3e,0x8f,0x6e,0x0,0x3f,0x5a,0x83,0x10,0x40, + 0x6f,0x50,0x0,0x41,0x3a,0x65,0x10,0x42,0x4f,0x32,0x0,0x43,0x1a,0x47,0x10,0x44, + 0x2f,0x14,0x0,0x44,0xfa,0x29,0x10,0x46,0xe,0xf6,0x0,0x46,0xda,0xb,0x10,0x47, + 0xf8,0x12,0x80,0x48,0xc3,0x27,0x90,0x49,0xd7,0xf4,0x80,0x4a,0xa3,0x9,0x90,0x4b, + 0xb7,0xd6,0x80,0x4c,0x82,0xeb,0x90,0x4d,0x97,0xb8,0x80,0x4e,0x62,0xcd,0x90,0x4f, + 0x77,0x9a,0x80,0x50,0x42,0xaf,0x90,0x51,0x60,0xb7,0x0,0x52,0x22,0x91,0x90,0x53, + 0x40,0x99,0x0,0x54,0xb,0xae,0x10,0x55,0x20,0x7b,0x0,0x55,0xeb,0x90,0x10,0x57, + 0x0,0x5d,0x0,0x57,0xcb,0x72,0x10,0x58,0xe0,0x3f,0x0,0x59,0xab,0x54,0x10,0x1, + 0x2,0x3,0x2,0x4,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x4,0x0,0x0,0x10,0x8,0x0,0x0,0x0,0x0,0x15,0x18,0x0,0x4, + 0x0,0x0,0x1c,0x20,0x0,0xa,0x0,0x0,0x2a,0x30,0x1,0xa,0x0,0x0,0x1c,0x20, + 0x0,0xf,0x0,0x0,0xe,0x10,0x0,0x13,0x0,0x0,0x1c,0x20,0x1,0x17,0x0,0x0, + 0x1c,0x20,0x0,0xf,0x4c,0x4d,0x54,0x0,0x2b,0x30,0x31,0x33,0x30,0x0,0x53,0x41, + 0x53,0x54,0x0,0x43,0x41,0x54,0x0,0x57,0x41,0x54,0x0,0x57,0x41,0x53,0x54,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb,0x0,0x0, - 0x0,0x4,0x0,0x0,0x0,0xe,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff, - 0xff,0xff,0x73,0x16,0x92,0x58,0xff,0xff,0xff,0xff,0x7b,0x12,0x3,0x70,0xff,0xff, - 0xff,0xff,0x9c,0x4e,0xad,0xa4,0xff,0xff,0xff,0xff,0x9c,0xbc,0x27,0xf8,0xff,0xff, - 0xff,0xff,0xcb,0x54,0xba,0x8,0xff,0xff,0xff,0xff,0xcb,0xc7,0x5e,0x78,0xff,0xff, - 0xff,0xff,0xcc,0xb7,0x5d,0x88,0xff,0xff,0xff,0xff,0xcd,0xa7,0x40,0x78,0xff,0xff, - 0xff,0xff,0xce,0xa0,0x7a,0x8,0xff,0xff,0xff,0xff,0xcf,0x87,0x22,0x78,0x0,0x1, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x0,0x0,0x7a,0xa8,0x0,0x0,0x0, - 0x0,0x7e,0x90,0x0,0x4,0x0,0x0,0x93,0xa8,0x1,0x9,0x0,0x0,0x85,0x98,0x0, - 0x4,0x4c,0x4d,0x54,0x0,0x41,0x43,0x53,0x54,0x0,0x41,0x43,0x44,0x54,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x41,0x43,0x53,0x54,0x2d,0x39,0x3a,0x33, - 0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Australia/West - 0x0,0x0,0x1,0xdf, + 0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x36,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x1c,0xf8,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x6d,0x7b,0x4b,0x78,0xff,0xff,0xff,0xff, + 0x82,0x46,0xcf,0x68,0xff,0xff,0xff,0xff,0xcc,0xae,0x8c,0x80,0xff,0xff,0xff,0xff, + 0xcd,0x9e,0x6f,0x70,0x0,0x0,0x0,0x0,0x26,0x6,0xa7,0xe0,0x0,0x0,0x0,0x0, + 0x2d,0x8c,0xc7,0x60,0x0,0x0,0x0,0x0,0x2e,0x69,0x1c,0x10,0x0,0x0,0x0,0x0, + 0x2f,0x7d,0xe9,0x0,0x0,0x0,0x0,0x0,0x30,0x48,0xfe,0x10,0x0,0x0,0x0,0x0, + 0x31,0x67,0x5,0x80,0x0,0x0,0x0,0x0,0x32,0x28,0xe0,0x10,0x0,0x0,0x0,0x0, + 0x33,0x46,0xe7,0x80,0x0,0x0,0x0,0x0,0x34,0x11,0xfc,0x90,0x0,0x0,0x0,0x0, + 0x35,0x26,0xc9,0x80,0x0,0x0,0x0,0x0,0x35,0xf1,0xde,0x90,0x0,0x0,0x0,0x0, + 0x37,0x6,0xab,0x80,0x0,0x0,0x0,0x0,0x37,0xd1,0xc0,0x90,0x0,0x0,0x0,0x0, + 0x38,0xe6,0x8d,0x80,0x0,0x0,0x0,0x0,0x39,0xb1,0xa2,0x90,0x0,0x0,0x0,0x0, + 0x3a,0xc6,0x6f,0x80,0x0,0x0,0x0,0x0,0x3b,0x91,0x84,0x90,0x0,0x0,0x0,0x0, + 0x3c,0xaf,0x8c,0x0,0x0,0x0,0x0,0x0,0x3d,0x71,0x66,0x90,0x0,0x0,0x0,0x0, + 0x3e,0x8f,0x6e,0x0,0x0,0x0,0x0,0x0,0x3f,0x5a,0x83,0x10,0x0,0x0,0x0,0x0, + 0x40,0x6f,0x50,0x0,0x0,0x0,0x0,0x0,0x41,0x3a,0x65,0x10,0x0,0x0,0x0,0x0, + 0x42,0x4f,0x32,0x0,0x0,0x0,0x0,0x0,0x43,0x1a,0x47,0x10,0x0,0x0,0x0,0x0, + 0x44,0x2f,0x14,0x0,0x0,0x0,0x0,0x0,0x44,0xfa,0x29,0x10,0x0,0x0,0x0,0x0, + 0x46,0xe,0xf6,0x0,0x0,0x0,0x0,0x0,0x46,0xda,0xb,0x10,0x0,0x0,0x0,0x0, + 0x47,0xf8,0x12,0x80,0x0,0x0,0x0,0x0,0x48,0xc3,0x27,0x90,0x0,0x0,0x0,0x0, + 0x49,0xd7,0xf4,0x80,0x0,0x0,0x0,0x0,0x4a,0xa3,0x9,0x90,0x0,0x0,0x0,0x0, + 0x4b,0xb7,0xd6,0x80,0x0,0x0,0x0,0x0,0x4c,0x82,0xeb,0x90,0x0,0x0,0x0,0x0, + 0x4d,0x97,0xb8,0x80,0x0,0x0,0x0,0x0,0x4e,0x62,0xcd,0x90,0x0,0x0,0x0,0x0, + 0x4f,0x77,0x9a,0x80,0x0,0x0,0x0,0x0,0x50,0x42,0xaf,0x90,0x0,0x0,0x0,0x0, + 0x51,0x60,0xb7,0x0,0x0,0x0,0x0,0x0,0x52,0x22,0x91,0x90,0x0,0x0,0x0,0x0, + 0x53,0x40,0x99,0x0,0x0,0x0,0x0,0x0,0x54,0xb,0xae,0x10,0x0,0x0,0x0,0x0, + 0x55,0x20,0x7b,0x0,0x0,0x0,0x0,0x0,0x55,0xeb,0x90,0x10,0x0,0x0,0x0,0x0, + 0x57,0x0,0x5d,0x0,0x0,0x0,0x0,0x0,0x57,0xcb,0x72,0x10,0x0,0x0,0x0,0x0, + 0x58,0xe0,0x3f,0x0,0x0,0x0,0x0,0x0,0x59,0xab,0x54,0x10,0x0,0x1,0x2,0x3, + 0x2,0x4,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x4,0x0,0x0,0x10,0x8,0x0,0x0,0x0,0x0,0x15,0x18,0x0,0x4,0x0,0x0, + 0x1c,0x20,0x0,0xa,0x0,0x0,0x2a,0x30,0x1,0xa,0x0,0x0,0x1c,0x20,0x0,0xf, + 0x0,0x0,0xe,0x10,0x0,0x13,0x0,0x0,0x1c,0x20,0x1,0x17,0x0,0x0,0x1c,0x20, + 0x0,0xf,0x4c,0x4d,0x54,0x0,0x2b,0x30,0x31,0x33,0x30,0x0,0x53,0x41,0x53,0x54, + 0x0,0x43,0x41,0x54,0x0,0x57,0x41,0x54,0x0,0x57,0x41,0x53,0x54,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x43, + 0x41,0x54,0x2d,0x32,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Khartoum + 0x0,0x0,0x2,0xc9, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x13,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xe,0x80,0x0,0x0,0x0,0x9c, - 0x4e,0xc2,0xbc,0x9c,0xbc,0x3d,0x10,0xcb,0x54,0xcf,0x20,0xcb,0xc7,0x73,0x90,0xcc, - 0xb7,0x72,0xa0,0xcd,0xa7,0x55,0x90,0x9,0xf,0xfb,0xa0,0x9,0xb6,0x18,0xa0,0x1a, - 0x1,0x62,0xa0,0x1a,0xa7,0x7f,0xa0,0x29,0x25,0x5c,0xa0,0x29,0xaf,0xca,0x20,0x45, - 0x71,0xbf,0x20,0x46,0x5,0x67,0x20,0x47,0x23,0x7c,0xa0,0x47,0xee,0x83,0xa0,0x49, - 0x3,0x5e,0xa0,0x49,0xce,0x65,0xa0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x0,0x0,0x6c,0x9c,0x0,0x0, - 0x0,0x0,0x7e,0x90,0x1,0x4,0x0,0x0,0x70,0x80,0x0,0x9,0x0,0x0,0x7e,0x90, - 0x1,0x4,0x0,0x0,0x70,0x80,0x0,0x9,0x4c,0x4d,0x54,0x0,0x41,0x57,0x44,0x54, - 0x0,0x41,0x57,0x53,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0, - 0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xe,0xf8,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x74,0xa6,0x16,0xe4,0xff,0xff,0xff,0xff, - 0x9c,0x4e,0xc2,0xbc,0xff,0xff,0xff,0xff,0x9c,0xbc,0x3d,0x10,0xff,0xff,0xff,0xff, - 0xcb,0x54,0xcf,0x20,0xff,0xff,0xff,0xff,0xcb,0xc7,0x73,0x90,0xff,0xff,0xff,0xff, - 0xcc,0xb7,0x72,0xa0,0xff,0xff,0xff,0xff,0xcd,0xa7,0x55,0x90,0x0,0x0,0x0,0x0, - 0x9,0xf,0xfb,0xa0,0x0,0x0,0x0,0x0,0x9,0xb6,0x18,0xa0,0x0,0x0,0x0,0x0, - 0x1a,0x1,0x62,0xa0,0x0,0x0,0x0,0x0,0x1a,0xa7,0x7f,0xa0,0x0,0x0,0x0,0x0, - 0x29,0x25,0x5c,0xa0,0x0,0x0,0x0,0x0,0x29,0xaf,0xca,0x20,0x0,0x0,0x0,0x0, - 0x45,0x71,0xbf,0x20,0x0,0x0,0x0,0x0,0x46,0x5,0x67,0x20,0x0,0x0,0x0,0x0, - 0x47,0x23,0x7c,0xa0,0x0,0x0,0x0,0x0,0x47,0xee,0x83,0xa0,0x0,0x0,0x0,0x0, - 0x49,0x3,0x5e,0xa0,0x0,0x0,0x0,0x0,0x49,0xce,0x65,0xa0,0x0,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x0,0x0,0x6c,0x9c,0x0,0x0,0x0,0x0,0x7e,0x90,0x1,0x4,0x0,0x0,0x70,0x80, - 0x0,0x9,0x0,0x0,0x7e,0x90,0x1,0x4,0x0,0x0,0x70,0x80,0x0,0x9,0x4c,0x4d, - 0x54,0x0,0x41,0x57,0x44,0x54,0x0,0x41,0x57,0x53,0x54,0x0,0x0,0x0,0x0,0x1, - 0x1,0x0,0x0,0x0,0x0,0x0,0xa,0x41,0x57,0x53,0x54,0x2d,0x38,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Australia/Queensland - 0x0,0x0,0x1,0xc4, + 0x0,0x0,0x24,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x11,0x80,0x0,0x0,0x0,0xb6, + 0xa3,0xda,0x0,0x0,0x9e,0x17,0xe0,0x1,0x7a,0x34,0x50,0x2,0x7d,0xf9,0xe0,0x3, + 0x5b,0x67,0xd0,0x4,0x60,0x7e,0xe0,0x5,0x3d,0xec,0xd0,0x6,0x40,0x60,0xe0,0x7, + 0x1f,0x20,0x50,0x8,0x20,0x42,0xe0,0x9,0x0,0x53,0xd0,0xa,0x0,0x24,0xe0,0xa, + 0xe1,0x87,0x50,0xb,0xe0,0x6,0xe0,0xc,0xc4,0xc,0x50,0xd,0xbf,0xe8,0xe0,0xe, + 0xa5,0x3f,0xd0,0xf,0xa9,0x5,0x60,0x10,0x86,0x73,0x50,0x11,0x88,0xe7,0x60,0x12, + 0x67,0xa6,0xd0,0x13,0x68,0xc9,0x60,0x14,0x4a,0x2b,0xd0,0x15,0x48,0xab,0x60,0x16, + 0x2b,0x5f,0x50,0x17,0x28,0x8d,0x60,0x18,0xc,0x92,0xd0,0x19,0x8,0x6f,0x60,0x19, + 0xed,0xc6,0x50,0x1a,0xf1,0x8b,0xe0,0x1b,0xd0,0x4b,0x50,0x1c,0xd1,0x6d,0xe0,0x1d, + 0xb1,0x7e,0xd0,0x38,0x80,0x45,0x20,0x59,0xf8,0xe4,0x50,0x0,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x2,0x0, + 0x0,0x1e,0x80,0x0,0x0,0x0,0x0,0x2a,0x30,0x1,0x4,0x0,0x0,0x1c,0x20,0x0, + 0x9,0x0,0x0,0x2a,0x30,0x0,0xd,0x0,0x0,0x1c,0x20,0x0,0x9,0x4c,0x4d,0x54, + 0x0,0x43,0x41,0x53,0x54,0x0,0x43,0x41,0x54,0x0,0x45,0x41,0x54,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5, + 0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x24,0x0,0x0,0x0,0x5, + 0x0,0x0,0x0,0x11,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xb6,0xa3,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x9e,0x17,0xe0,0x0,0x0,0x0,0x0, + 0x1,0x7a,0x34,0x50,0x0,0x0,0x0,0x0,0x2,0x7d,0xf9,0xe0,0x0,0x0,0x0,0x0, + 0x3,0x5b,0x67,0xd0,0x0,0x0,0x0,0x0,0x4,0x60,0x7e,0xe0,0x0,0x0,0x0,0x0, + 0x5,0x3d,0xec,0xd0,0x0,0x0,0x0,0x0,0x6,0x40,0x60,0xe0,0x0,0x0,0x0,0x0, + 0x7,0x1f,0x20,0x50,0x0,0x0,0x0,0x0,0x8,0x20,0x42,0xe0,0x0,0x0,0x0,0x0, + 0x9,0x0,0x53,0xd0,0x0,0x0,0x0,0x0,0xa,0x0,0x24,0xe0,0x0,0x0,0x0,0x0, + 0xa,0xe1,0x87,0x50,0x0,0x0,0x0,0x0,0xb,0xe0,0x6,0xe0,0x0,0x0,0x0,0x0, + 0xc,0xc4,0xc,0x50,0x0,0x0,0x0,0x0,0xd,0xbf,0xe8,0xe0,0x0,0x0,0x0,0x0, + 0xe,0xa5,0x3f,0xd0,0x0,0x0,0x0,0x0,0xf,0xa9,0x5,0x60,0x0,0x0,0x0,0x0, + 0x10,0x86,0x73,0x50,0x0,0x0,0x0,0x0,0x11,0x88,0xe7,0x60,0x0,0x0,0x0,0x0, + 0x12,0x67,0xa6,0xd0,0x0,0x0,0x0,0x0,0x13,0x68,0xc9,0x60,0x0,0x0,0x0,0x0, + 0x14,0x4a,0x2b,0xd0,0x0,0x0,0x0,0x0,0x15,0x48,0xab,0x60,0x0,0x0,0x0,0x0, + 0x16,0x2b,0x5f,0x50,0x0,0x0,0x0,0x0,0x17,0x28,0x8d,0x60,0x0,0x0,0x0,0x0, + 0x18,0xc,0x92,0xd0,0x0,0x0,0x0,0x0,0x19,0x8,0x6f,0x60,0x0,0x0,0x0,0x0, + 0x19,0xed,0xc6,0x50,0x0,0x0,0x0,0x0,0x1a,0xf1,0x8b,0xe0,0x0,0x0,0x0,0x0, + 0x1b,0xd0,0x4b,0x50,0x0,0x0,0x0,0x0,0x1c,0xd1,0x6d,0xe0,0x0,0x0,0x0,0x0, + 0x1d,0xb1,0x7e,0xd0,0x0,0x0,0x0,0x0,0x38,0x80,0x45,0x20,0x0,0x0,0x0,0x0, + 0x59,0xf8,0xe4,0x50,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x2,0x0,0x0,0x1e,0x80,0x0,0x0,0x0,0x0, + 0x2a,0x30,0x1,0x4,0x0,0x0,0x1c,0x20,0x0,0x9,0x0,0x0,0x2a,0x30,0x0,0xd, + 0x0,0x0,0x1c,0x20,0x0,0x9,0x4c,0x4d,0x54,0x0,0x43,0x41,0x53,0x54,0x0,0x43, + 0x41,0x54,0x0,0x45,0x41,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xa,0x43,0x41,0x54,0x2d,0x32,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Mbabane + 0x0,0x0,0x1,0xf, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x9,0x80,0x0,0x0,0x0,0x82, + 0x46,0xcf,0x68,0xcc,0xae,0x8c,0x80,0xcd,0x9e,0x6f,0x70,0xce,0x8e,0x6e,0x80,0xcf, + 0x7e,0x51,0x70,0x1,0x3,0x2,0x3,0x2,0x3,0x0,0x0,0x1a,0x40,0x0,0x0,0x0, + 0x0,0x15,0x18,0x0,0x4,0x0,0x0,0x2a,0x30,0x1,0x4,0x0,0x0,0x1c,0x20,0x0, + 0x4,0x4c,0x4d,0x54,0x0,0x53,0x41,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x9,0xf8,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x6d,0x7b,0x41,0x40,0xff,0xff, + 0xff,0xff,0x82,0x46,0xcf,0x68,0xff,0xff,0xff,0xff,0xcc,0xae,0x8c,0x80,0xff,0xff, + 0xff,0xff,0xcd,0x9e,0x6f,0x70,0xff,0xff,0xff,0xff,0xce,0x8e,0x6e,0x80,0xff,0xff, + 0xff,0xff,0xcf,0x7e,0x51,0x70,0x0,0x1,0x3,0x2,0x3,0x2,0x3,0x0,0x0,0x1a, + 0x40,0x0,0x0,0x0,0x0,0x15,0x18,0x0,0x4,0x0,0x0,0x2a,0x30,0x1,0x4,0x0, + 0x0,0x1c,0x20,0x0,0x4,0x4c,0x4d,0x54,0x0,0x53,0x41,0x53,0x54,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x53,0x41,0x53,0x54,0x2d,0x32,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Casablanca + 0x0,0x0,0x6,0x6b, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x11,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xe,0x80,0x0,0x0,0x0,0x9c, - 0x4e,0xa6,0x9c,0x9c,0xbc,0x20,0xf0,0xcb,0x54,0xb3,0x0,0xcb,0xc7,0x57,0x70,0xcc, - 0xb7,0x56,0x80,0xcd,0xa7,0x39,0x70,0xce,0xa0,0x73,0x0,0xcf,0x87,0x1b,0x70,0x3, - 0x70,0x39,0x80,0x4,0xd,0x1c,0x0,0x25,0x49,0xcd,0x0,0x25,0xef,0xea,0x0,0x27, - 0x29,0xaf,0x0,0x27,0xcf,0xcc,0x0,0x29,0x9,0x91,0x0,0x29,0xaf,0xae,0x0,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x0,0x0,0x8f,0x78,0x0,0x0,0x0,0x0,0x9a,0xb0,0x1,0x4,0x0,0x0,0x8c,0xa0, - 0x0,0x9,0x0,0x0,0x9a,0xb0,0x1,0x4,0x0,0x0,0x8c,0xa0,0x0,0x9,0x4c,0x4d, - 0x54,0x0,0x41,0x45,0x44,0x54,0x0,0x41,0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x1, - 0x1,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0, - 0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x5,0x0,0x0, - 0x0,0xe,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x72,0xed, - 0x9f,0x8,0xff,0xff,0xff,0xff,0x9c,0x4e,0xa6,0x9c,0xff,0xff,0xff,0xff,0x9c,0xbc, - 0x20,0xf0,0xff,0xff,0xff,0xff,0xcb,0x54,0xb3,0x0,0xff,0xff,0xff,0xff,0xcb,0xc7, - 0x57,0x70,0xff,0xff,0xff,0xff,0xcc,0xb7,0x56,0x80,0xff,0xff,0xff,0xff,0xcd,0xa7, - 0x39,0x70,0xff,0xff,0xff,0xff,0xce,0xa0,0x73,0x0,0xff,0xff,0xff,0xff,0xcf,0x87, - 0x1b,0x70,0x0,0x0,0x0,0x0,0x3,0x70,0x39,0x80,0x0,0x0,0x0,0x0,0x4,0xd, - 0x1c,0x0,0x0,0x0,0x0,0x0,0x25,0x49,0xcd,0x0,0x0,0x0,0x0,0x0,0x25,0xef, - 0xea,0x0,0x0,0x0,0x0,0x0,0x27,0x29,0xaf,0x0,0x0,0x0,0x0,0x0,0x27,0xcf, - 0xcc,0x0,0x0,0x0,0x0,0x0,0x29,0x9,0x91,0x0,0x0,0x0,0x0,0x0,0x29,0xaf, - 0xae,0x0,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x0,0x0,0x8f,0x78,0x0,0x0,0x0,0x0,0x9a,0xb0,0x1,0x4, - 0x0,0x0,0x8c,0xa0,0x0,0x9,0x0,0x0,0x9a,0xb0,0x1,0x4,0x0,0x0,0x8c,0xa0, - 0x0,0x9,0x4c,0x4d,0x54,0x0,0x41,0x45,0x44,0x54,0x0,0x41,0x45,0x53,0x54,0x0, - 0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0xa,0x41,0x45,0x53,0x54,0x2d, - 0x31,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Australia/Sydney - 0x0,0x0,0x8,0xaf, + 0x0,0x0,0x65,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x11,0x80,0x0,0x0,0x0,0x96, + 0x51,0xf9,0x9c,0xc6,0xff,0x14,0x80,0xc7,0x58,0xac,0x70,0xc7,0xd9,0xed,0x80,0xd2, + 0xa1,0x32,0xf0,0xdb,0x35,0xa4,0x0,0xdb,0xee,0x27,0xf0,0xfb,0x25,0x72,0x40,0xfb, + 0xc2,0xef,0x70,0x8,0x6b,0x84,0x80,0x8,0xc6,0x6d,0xf0,0xb,0xe8,0xc,0x0,0xc, + 0x61,0x47,0xf0,0xd,0xc9,0x3f,0x80,0xe,0x8e,0xf2,0x70,0xf,0xd3,0x51,0x80,0x10, + 0x27,0xa3,0x70,0x1a,0xb7,0xa6,0x0,0x1e,0x18,0x6f,0xf0,0x48,0x41,0xe6,0x80,0x48, + 0xbb,0x22,0x70,0x4a,0x23,0x1a,0x0,0x4a,0x8d,0xd5,0x70,0x4b,0xdc,0xc0,0x80,0x4c, + 0x5d,0xe5,0x70,0x4d,0x97,0xb8,0x80,0x4e,0x34,0x8c,0xf0,0x4f,0x9c,0xa0,0xa0,0x50, + 0x8,0xbb,0xa0,0x50,0x31,0x9a,0x20,0x50,0x67,0xa7,0xa0,0x51,0x7c,0x82,0xa0,0x51, + 0xd8,0xcb,0xa0,0x52,0x5,0x9e,0xa0,0x52,0x6c,0x73,0xa0,0x53,0x37,0x7a,0xa0,0x53, + 0xae,0x21,0xa0,0x53,0xdc,0x46,0x20,0x54,0x4c,0x55,0xa0,0x55,0x17,0x5c,0xa0,0x55, + 0x7c,0xe0,0x20,0x55,0xab,0x4,0xa0,0x56,0x2c,0x37,0xa0,0x56,0xf7,0x3e,0xa0,0x57, + 0x53,0x87,0xa0,0x57,0x81,0xac,0x20,0x58,0x15,0x54,0x20,0x58,0xd7,0x20,0xa0,0x59, + 0x20,0xf4,0xa0,0x59,0x58,0x53,0xa0,0x59,0xf5,0x36,0x20,0x5a,0xb7,0x2,0xa0,0x5a, + 0xf7,0x9c,0x20,0x5b,0x25,0xc0,0xa0,0x5b,0xd5,0x18,0x20,0x5c,0xa0,0x1f,0x20,0x5c, + 0xce,0x43,0xa0,0x5c,0xfc,0x68,0x20,0x5d,0xb4,0xfa,0x20,0x5e,0x80,0x1,0x20,0x5e, + 0x9b,0xb0,0xa0,0x5e,0xc9,0xd5,0x20,0x5f,0x94,0xdc,0x20,0x60,0x5f,0xe3,0x20,0x60, + 0x72,0x58,0x20,0x60,0xa0,0x7c,0xa0,0x61,0x7d,0xf8,0xa0,0x62,0x77,0x24,0x20,0x63, + 0x5d,0xda,0xa0,0x64,0x44,0x91,0x20,0x65,0x3d,0xbc,0xa0,0x66,0x1b,0x38,0xa0,0x67, + 0x1d,0x9e,0xa0,0x67,0xf1,0xe0,0x20,0x68,0xfd,0x80,0xa0,0x69,0xc8,0x87,0xa0,0x6a, + 0xdd,0x62,0xa0,0x6b,0xa8,0x69,0xa0,0x6c,0xc6,0x7f,0x20,0x6d,0x88,0x4b,0xa0,0x6e, + 0xa6,0x61,0x20,0x6f,0x68,0x2d,0xa0,0x70,0x86,0x43,0x20,0x71,0x51,0x4a,0x20,0x72, + 0x66,0x25,0x20,0x73,0x31,0x2c,0x20,0x74,0x46,0x7,0x20,0x75,0x11,0xe,0x20,0x76, + 0x2f,0x23,0xa0,0x76,0xf0,0xf0,0x20,0x78,0xf,0x5,0xa0,0x78,0xd0,0xd2,0x20,0x79, + 0xee,0xe7,0xa0,0x7a,0xb0,0xb4,0x20,0x7b,0xce,0xc9,0xa0,0x7c,0x99,0xd0,0xa0,0x7d, + 0xa5,0x71,0x20,0x7e,0x79,0xb2,0xa0,0x7f,0x72,0xde,0x20,0x7f,0x8e,0x9b,0xb0,0x0, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x3,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x2,0xff,0xff,0xf8,0xe4,0x0,0x0,0x0,0x0,0xe,0x10,0x1,0x4, + 0x0,0x0,0x0,0x0,0x0,0x9,0x0,0x0,0xe,0x10,0x0,0xd,0x0,0x0,0x0,0x0, + 0x0,0x9,0x4c,0x4d,0x54,0x0,0x57,0x45,0x53,0x54,0x0,0x57,0x45,0x54,0x0,0x43, + 0x45,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, + 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x65,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x11,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0x96,0x51,0xf9,0x9c,0xff,0xff,0xff,0xff,0xc6,0xff,0x14, + 0x80,0xff,0xff,0xff,0xff,0xc7,0x58,0xac,0x70,0xff,0xff,0xff,0xff,0xc7,0xd9,0xed, + 0x80,0xff,0xff,0xff,0xff,0xd2,0xa1,0x32,0xf0,0xff,0xff,0xff,0xff,0xdb,0x35,0xa4, + 0x0,0xff,0xff,0xff,0xff,0xdb,0xee,0x27,0xf0,0xff,0xff,0xff,0xff,0xfb,0x25,0x72, + 0x40,0xff,0xff,0xff,0xff,0xfb,0xc2,0xef,0x70,0x0,0x0,0x0,0x0,0x8,0x6b,0x84, + 0x80,0x0,0x0,0x0,0x0,0x8,0xc6,0x6d,0xf0,0x0,0x0,0x0,0x0,0xb,0xe8,0xc, + 0x0,0x0,0x0,0x0,0x0,0xc,0x61,0x47,0xf0,0x0,0x0,0x0,0x0,0xd,0xc9,0x3f, + 0x80,0x0,0x0,0x0,0x0,0xe,0x8e,0xf2,0x70,0x0,0x0,0x0,0x0,0xf,0xd3,0x51, + 0x80,0x0,0x0,0x0,0x0,0x10,0x27,0xa3,0x70,0x0,0x0,0x0,0x0,0x1a,0xb7,0xa6, + 0x0,0x0,0x0,0x0,0x0,0x1e,0x18,0x6f,0xf0,0x0,0x0,0x0,0x0,0x48,0x41,0xe6, + 0x80,0x0,0x0,0x0,0x0,0x48,0xbb,0x22,0x70,0x0,0x0,0x0,0x0,0x4a,0x23,0x1a, + 0x0,0x0,0x0,0x0,0x0,0x4a,0x8d,0xd5,0x70,0x0,0x0,0x0,0x0,0x4b,0xdc,0xc0, + 0x80,0x0,0x0,0x0,0x0,0x4c,0x5d,0xe5,0x70,0x0,0x0,0x0,0x0,0x4d,0x97,0xb8, + 0x80,0x0,0x0,0x0,0x0,0x4e,0x34,0x8c,0xf0,0x0,0x0,0x0,0x0,0x4f,0x9c,0xa0, + 0xa0,0x0,0x0,0x0,0x0,0x50,0x8,0xbb,0xa0,0x0,0x0,0x0,0x0,0x50,0x31,0x9a, + 0x20,0x0,0x0,0x0,0x0,0x50,0x67,0xa7,0xa0,0x0,0x0,0x0,0x0,0x51,0x7c,0x82, + 0xa0,0x0,0x0,0x0,0x0,0x51,0xd8,0xcb,0xa0,0x0,0x0,0x0,0x0,0x52,0x5,0x9e, + 0xa0,0x0,0x0,0x0,0x0,0x52,0x6c,0x73,0xa0,0x0,0x0,0x0,0x0,0x53,0x37,0x7a, + 0xa0,0x0,0x0,0x0,0x0,0x53,0xae,0x21,0xa0,0x0,0x0,0x0,0x0,0x53,0xdc,0x46, + 0x20,0x0,0x0,0x0,0x0,0x54,0x4c,0x55,0xa0,0x0,0x0,0x0,0x0,0x55,0x17,0x5c, + 0xa0,0x0,0x0,0x0,0x0,0x55,0x7c,0xe0,0x20,0x0,0x0,0x0,0x0,0x55,0xab,0x4, + 0xa0,0x0,0x0,0x0,0x0,0x56,0x2c,0x37,0xa0,0x0,0x0,0x0,0x0,0x56,0xf7,0x3e, + 0xa0,0x0,0x0,0x0,0x0,0x57,0x53,0x87,0xa0,0x0,0x0,0x0,0x0,0x57,0x81,0xac, + 0x20,0x0,0x0,0x0,0x0,0x58,0x15,0x54,0x20,0x0,0x0,0x0,0x0,0x58,0xd7,0x20, + 0xa0,0x0,0x0,0x0,0x0,0x59,0x20,0xf4,0xa0,0x0,0x0,0x0,0x0,0x59,0x58,0x53, + 0xa0,0x0,0x0,0x0,0x0,0x59,0xf5,0x36,0x20,0x0,0x0,0x0,0x0,0x5a,0xb7,0x2, + 0xa0,0x0,0x0,0x0,0x0,0x5a,0xf7,0x9c,0x20,0x0,0x0,0x0,0x0,0x5b,0x25,0xc0, + 0xa0,0x0,0x0,0x0,0x0,0x5b,0xd5,0x18,0x20,0x0,0x0,0x0,0x0,0x5c,0xa0,0x1f, + 0x20,0x0,0x0,0x0,0x0,0x5c,0xce,0x43,0xa0,0x0,0x0,0x0,0x0,0x5c,0xfc,0x68, + 0x20,0x0,0x0,0x0,0x0,0x5d,0xb4,0xfa,0x20,0x0,0x0,0x0,0x0,0x5e,0x80,0x1, + 0x20,0x0,0x0,0x0,0x0,0x5e,0x9b,0xb0,0xa0,0x0,0x0,0x0,0x0,0x5e,0xc9,0xd5, + 0x20,0x0,0x0,0x0,0x0,0x5f,0x94,0xdc,0x20,0x0,0x0,0x0,0x0,0x60,0x5f,0xe3, + 0x20,0x0,0x0,0x0,0x0,0x60,0x72,0x58,0x20,0x0,0x0,0x0,0x0,0x60,0xa0,0x7c, + 0xa0,0x0,0x0,0x0,0x0,0x61,0x7d,0xf8,0xa0,0x0,0x0,0x0,0x0,0x62,0x77,0x24, + 0x20,0x0,0x0,0x0,0x0,0x63,0x5d,0xda,0xa0,0x0,0x0,0x0,0x0,0x64,0x44,0x91, + 0x20,0x0,0x0,0x0,0x0,0x65,0x3d,0xbc,0xa0,0x0,0x0,0x0,0x0,0x66,0x1b,0x38, + 0xa0,0x0,0x0,0x0,0x0,0x67,0x1d,0x9e,0xa0,0x0,0x0,0x0,0x0,0x67,0xf1,0xe0, + 0x20,0x0,0x0,0x0,0x0,0x68,0xfd,0x80,0xa0,0x0,0x0,0x0,0x0,0x69,0xc8,0x87, + 0xa0,0x0,0x0,0x0,0x0,0x6a,0xdd,0x62,0xa0,0x0,0x0,0x0,0x0,0x6b,0xa8,0x69, + 0xa0,0x0,0x0,0x0,0x0,0x6c,0xc6,0x7f,0x20,0x0,0x0,0x0,0x0,0x6d,0x88,0x4b, + 0xa0,0x0,0x0,0x0,0x0,0x6e,0xa6,0x61,0x20,0x0,0x0,0x0,0x0,0x6f,0x68,0x2d, + 0xa0,0x0,0x0,0x0,0x0,0x70,0x86,0x43,0x20,0x0,0x0,0x0,0x0,0x71,0x51,0x4a, + 0x20,0x0,0x0,0x0,0x0,0x72,0x66,0x25,0x20,0x0,0x0,0x0,0x0,0x73,0x31,0x2c, + 0x20,0x0,0x0,0x0,0x0,0x74,0x46,0x7,0x20,0x0,0x0,0x0,0x0,0x75,0x11,0xe, + 0x20,0x0,0x0,0x0,0x0,0x76,0x2f,0x23,0xa0,0x0,0x0,0x0,0x0,0x76,0xf0,0xf0, + 0x20,0x0,0x0,0x0,0x0,0x78,0xf,0x5,0xa0,0x0,0x0,0x0,0x0,0x78,0xd0,0xd2, + 0x20,0x0,0x0,0x0,0x0,0x79,0xee,0xe7,0xa0,0x0,0x0,0x0,0x0,0x7a,0xb0,0xb4, + 0x20,0x0,0x0,0x0,0x0,0x7b,0xce,0xc9,0xa0,0x0,0x0,0x0,0x0,0x7c,0x99,0xd0, + 0xa0,0x0,0x0,0x0,0x0,0x7d,0xa5,0x71,0x20,0x0,0x0,0x0,0x0,0x7e,0x79,0xb2, + 0xa0,0x0,0x0,0x0,0x0,0x7f,0x72,0xde,0x20,0x0,0x0,0x0,0x0,0x7f,0x8e,0x9b, + 0xb0,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x3,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x2,0xff,0xff,0xf8,0xe4,0x0,0x0,0x0,0x0,0xe,0x10, + 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x9,0x0,0x0,0xe,0x10,0x0,0xd,0x0,0x0, + 0x0,0x0,0x0,0x9,0x4c,0x4d,0x54,0x0,0x57,0x45,0x53,0x54,0x0,0x57,0x45,0x54, + 0x0,0x43,0x45,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa, + 0x57,0x45,0x54,0x30,0x57,0x45,0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2c, + 0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30,0x2f,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Bissau + 0x0,0x0,0x0,0xd0, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0x92, + 0xe6,0x9d,0x1c,0x9,0x67,0x61,0x10,0x0,0x1,0x2,0xff,0xff,0xf1,0x64,0x0,0x0, + 0xff,0xff,0xf1,0xf0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x8,0x4c,0x4d,0x54,0x0, + 0x2d,0x30,0x31,0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a, + 0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0xf8,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xff,0xff,0xff,0xff,0x92,0xe6,0x9d,0x1c,0x0,0x0,0x0,0x0,0x9,0x67, + 0x61,0x10,0x0,0x1,0x2,0xff,0xff,0xf1,0x64,0x0,0x0,0xff,0xff,0xf1,0xf0,0x0, + 0x4,0x0,0x0,0x0,0x0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x2d,0x30,0x31,0x0,0x47, + 0x4d,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x47,0x4d,0x54,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Johannesburg + 0x0,0x0,0x1,0xf, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x9,0x80,0x0,0x0,0x0,0x82, + 0x46,0xcf,0x68,0xcc,0xae,0x8c,0x80,0xcd,0x9e,0x6f,0x70,0xce,0x8e,0x6e,0x80,0xcf, + 0x7e,0x51,0x70,0x1,0x3,0x2,0x3,0x2,0x3,0x0,0x0,0x1a,0x40,0x0,0x0,0x0, + 0x0,0x15,0x18,0x0,0x4,0x0,0x0,0x2a,0x30,0x1,0x4,0x0,0x0,0x1c,0x20,0x0, + 0x4,0x4c,0x4d,0x54,0x0,0x53,0x41,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x9,0xf8,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x6d,0x7b,0x41,0x40,0xff,0xff, + 0xff,0xff,0x82,0x46,0xcf,0x68,0xff,0xff,0xff,0xff,0xcc,0xae,0x8c,0x80,0xff,0xff, + 0xff,0xff,0xcd,0x9e,0x6f,0x70,0xff,0xff,0xff,0xff,0xce,0x8e,0x6e,0x80,0xff,0xff, + 0xff,0xff,0xcf,0x7e,0x51,0x70,0x0,0x1,0x3,0x2,0x3,0x2,0x3,0x0,0x0,0x1a, + 0x40,0x0,0x0,0x0,0x0,0x15,0x18,0x0,0x4,0x0,0x0,0x2a,0x30,0x1,0x4,0x0, + 0x0,0x1c,0x20,0x0,0x4,0x4c,0x4d,0x54,0x0,0x53,0x41,0x53,0x54,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x53,0x41,0x53,0x54,0x2d,0x32,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Ndjamena + 0x0,0x0,0x0,0xe1, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x4,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0x92, + 0xe6,0x80,0x64,0x12,0x66,0x71,0x70,0x13,0x26,0xde,0x60,0x0,0x1,0x2,0x1,0x0, + 0x0,0xe,0x1c,0x0,0x0,0x0,0x0,0xe,0x10,0x0,0x4,0x0,0x0,0x1c,0x20,0x1, + 0x8,0x4c,0x4d,0x54,0x0,0x57,0x41,0x54,0x0,0x57,0x41,0x53,0x54,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xd, + 0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x92,0xe6,0x80,0x64, + 0x0,0x0,0x0,0x0,0x12,0x66,0x71,0x70,0x0,0x0,0x0,0x0,0x13,0x26,0xde,0x60, + 0x0,0x1,0x2,0x1,0x0,0x0,0xe,0x1c,0x0,0x0,0x0,0x0,0xe,0x10,0x0,0x4, + 0x0,0x0,0x1c,0x20,0x1,0x8,0x4c,0x4d,0x54,0x0,0x57,0x41,0x54,0x0,0x57,0x41, + 0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x57,0x41,0x54,0x2d,0x31,0xa, + + // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Asmera + 0x0,0x0,0x1,0x1d, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x8e,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xe,0x80,0x0,0x0,0x0,0x9c, - 0x4e,0xa6,0x9c,0x9c,0xbc,0x20,0xf0,0xcb,0x54,0xb3,0x0,0xcb,0xc7,0x57,0x70,0xcc, - 0xb7,0x56,0x80,0xcd,0xa7,0x39,0x70,0xce,0xa0,0x73,0x0,0xcf,0x87,0x1b,0x70,0x3, - 0x70,0x39,0x80,0x4,0xd,0x1c,0x0,0x5,0x50,0x1b,0x80,0x5,0xf6,0x38,0x80,0x7, - 0x2f,0xfd,0x80,0x7,0xd6,0x1a,0x80,0x9,0xf,0xdf,0x80,0x9,0xb5,0xfc,0x80,0xa, - 0xef,0xc1,0x80,0xb,0x9f,0x19,0x0,0xc,0xd8,0xde,0x0,0xd,0x7e,0xfb,0x0,0xe, - 0xb8,0xc0,0x0,0xf,0x5e,0xdd,0x0,0x10,0x98,0xa2,0x0,0x11,0x3e,0xbf,0x0,0x12, - 0x78,0x84,0x0,0x13,0x1e,0xa1,0x0,0x14,0x58,0x66,0x0,0x14,0xfe,0x83,0x0,0x16, - 0x38,0x48,0x0,0x17,0xc,0x89,0x80,0x18,0x21,0x64,0x80,0x18,0xc7,0x81,0x80,0x1a, - 0x1,0x46,0x80,0x1a,0xa7,0x63,0x80,0x1b,0xe1,0x28,0x80,0x1c,0x87,0x45,0x80,0x1d, - 0xc1,0xa,0x80,0x1e,0x79,0x9c,0x80,0x1f,0x97,0xb2,0x0,0x20,0x59,0x7e,0x80,0x21, - 0x80,0xce,0x80,0x22,0x42,0x9b,0x0,0x23,0x69,0xeb,0x0,0x24,0x22,0x7d,0x0,0x25, - 0x49,0xcd,0x0,0x25,0xef,0xea,0x0,0x27,0x29,0xaf,0x0,0x27,0xcf,0xcc,0x0,0x29, - 0x9,0x91,0x0,0x29,0xaf,0xae,0x0,0x2a,0xe9,0x73,0x0,0x2b,0x98,0xca,0x80,0x2c, - 0xd2,0x8f,0x80,0x2d,0x78,0xac,0x80,0x2e,0xb2,0x71,0x80,0x2f,0x58,0x8e,0x80,0x30, - 0x92,0x53,0x80,0x31,0x5d,0x5a,0x80,0x32,0x72,0x35,0x80,0x33,0x3d,0x3c,0x80,0x34, - 0x52,0x17,0x80,0x35,0x1d,0x1e,0x80,0x36,0x31,0xf9,0x80,0x36,0xfd,0x0,0x80,0x38, - 0x1b,0x16,0x0,0x38,0xdc,0xe2,0x80,0x39,0xa7,0xe9,0x80,0x3a,0xbc,0xc4,0x80,0x3b, - 0xda,0xda,0x0,0x3c,0xa5,0xe1,0x0,0x3d,0xba,0xbc,0x0,0x3e,0x85,0xc3,0x0,0x3f, - 0x9a,0x9e,0x0,0x40,0x65,0xa5,0x0,0x41,0x83,0xba,0x80,0x42,0x45,0x87,0x0,0x43, - 0x63,0x9c,0x80,0x44,0x2e,0xa3,0x80,0x45,0x43,0x7e,0x80,0x46,0x5,0x4b,0x0,0x47, - 0x23,0x60,0x80,0x47,0xf7,0xa2,0x0,0x48,0xe7,0x93,0x0,0x49,0xd7,0x84,0x0,0x4a, - 0xc7,0x75,0x0,0x4b,0xb7,0x66,0x0,0x4c,0xa7,0x57,0x0,0x4d,0x97,0x48,0x0,0x4e, - 0x87,0x39,0x0,0x4f,0x77,0x2a,0x0,0x50,0x70,0x55,0x80,0x51,0x60,0x46,0x80,0x52, - 0x50,0x37,0x80,0x53,0x40,0x28,0x80,0x54,0x30,0x19,0x80,0x55,0x20,0xa,0x80,0x56, - 0xf,0xfb,0x80,0x56,0xff,0xec,0x80,0x57,0xef,0xdd,0x80,0x58,0xdf,0xce,0x80,0x59, - 0xcf,0xbf,0x80,0x5a,0xbf,0xb0,0x80,0x5b,0xb8,0xdc,0x0,0x5c,0xa8,0xcd,0x0,0x5d, - 0x98,0xbe,0x0,0x5e,0x88,0xaf,0x0,0x5f,0x78,0xa0,0x0,0x60,0x68,0x91,0x0,0x61, - 0x58,0x82,0x0,0x62,0x48,0x73,0x0,0x63,0x38,0x64,0x0,0x64,0x28,0x55,0x0,0x65, - 0x18,0x46,0x0,0x66,0x11,0x71,0x80,0x67,0x1,0x62,0x80,0x67,0xf1,0x53,0x80,0x68, - 0xe1,0x44,0x80,0x69,0xd1,0x35,0x80,0x6a,0xc1,0x26,0x80,0x6b,0xb1,0x17,0x80,0x6c, - 0xa1,0x8,0x80,0x6d,0x90,0xf9,0x80,0x6e,0x80,0xea,0x80,0x6f,0x70,0xdb,0x80,0x70, - 0x6a,0x7,0x0,0x71,0x59,0xf8,0x0,0x72,0x49,0xe9,0x0,0x73,0x39,0xda,0x0,0x74, - 0x29,0xcb,0x0,0x75,0x19,0xbc,0x0,0x76,0x9,0xad,0x0,0x76,0xf9,0x9e,0x0,0x77, - 0xe9,0x8f,0x0,0x78,0xd9,0x80,0x0,0x79,0xc9,0x71,0x0,0x7a,0xb9,0x62,0x0,0x7b, - 0xb2,0x8d,0x80,0x7c,0xa2,0x7e,0x80,0x7d,0x92,0x6f,0x80,0x7e,0x82,0x60,0x80,0x7f, - 0x72,0x51,0x80,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x0,0x0,0x8d,0xc4,0x0,0x0,0x0,0x0,0x9a,0xb0,0x1,0x4,0x0,0x0,0x8c, - 0xa0,0x0,0x9,0x0,0x0,0x9a,0xb0,0x1,0x4,0x0,0x0,0x8c,0xa0,0x0,0x9,0x4c, - 0x4d,0x54,0x0,0x41,0x45,0x44,0x54,0x0,0x41,0x45,0x53,0x54,0x0,0x0,0x0,0x0, - 0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0, - 0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0x0,0x0,0x0,0x5,0x0, - 0x0,0x0,0xe,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x73, - 0x16,0x7f,0x3c,0xff,0xff,0xff,0xff,0x9c,0x4e,0xa6,0x9c,0xff,0xff,0xff,0xff,0x9c, - 0xbc,0x20,0xf0,0xff,0xff,0xff,0xff,0xcb,0x54,0xb3,0x0,0xff,0xff,0xff,0xff,0xcb, - 0xc7,0x57,0x70,0xff,0xff,0xff,0xff,0xcc,0xb7,0x56,0x80,0xff,0xff,0xff,0xff,0xcd, - 0xa7,0x39,0x70,0xff,0xff,0xff,0xff,0xce,0xa0,0x73,0x0,0xff,0xff,0xff,0xff,0xcf, - 0x87,0x1b,0x70,0x0,0x0,0x0,0x0,0x3,0x70,0x39,0x80,0x0,0x0,0x0,0x0,0x4, - 0xd,0x1c,0x0,0x0,0x0,0x0,0x0,0x5,0x50,0x1b,0x80,0x0,0x0,0x0,0x0,0x5, - 0xf6,0x38,0x80,0x0,0x0,0x0,0x0,0x7,0x2f,0xfd,0x80,0x0,0x0,0x0,0x0,0x7, - 0xd6,0x1a,0x80,0x0,0x0,0x0,0x0,0x9,0xf,0xdf,0x80,0x0,0x0,0x0,0x0,0x9, - 0xb5,0xfc,0x80,0x0,0x0,0x0,0x0,0xa,0xef,0xc1,0x80,0x0,0x0,0x0,0x0,0xb, - 0x9f,0x19,0x0,0x0,0x0,0x0,0x0,0xc,0xd8,0xde,0x0,0x0,0x0,0x0,0x0,0xd, - 0x7e,0xfb,0x0,0x0,0x0,0x0,0x0,0xe,0xb8,0xc0,0x0,0x0,0x0,0x0,0x0,0xf, - 0x5e,0xdd,0x0,0x0,0x0,0x0,0x0,0x10,0x98,0xa2,0x0,0x0,0x0,0x0,0x0,0x11, - 0x3e,0xbf,0x0,0x0,0x0,0x0,0x0,0x12,0x78,0x84,0x0,0x0,0x0,0x0,0x0,0x13, - 0x1e,0xa1,0x0,0x0,0x0,0x0,0x0,0x14,0x58,0x66,0x0,0x0,0x0,0x0,0x0,0x14, - 0xfe,0x83,0x0,0x0,0x0,0x0,0x0,0x16,0x38,0x48,0x0,0x0,0x0,0x0,0x0,0x17, - 0xc,0x89,0x80,0x0,0x0,0x0,0x0,0x18,0x21,0x64,0x80,0x0,0x0,0x0,0x0,0x18, - 0xc7,0x81,0x80,0x0,0x0,0x0,0x0,0x1a,0x1,0x46,0x80,0x0,0x0,0x0,0x0,0x1a, - 0xa7,0x63,0x80,0x0,0x0,0x0,0x0,0x1b,0xe1,0x28,0x80,0x0,0x0,0x0,0x0,0x1c, - 0x87,0x45,0x80,0x0,0x0,0x0,0x0,0x1d,0xc1,0xa,0x80,0x0,0x0,0x0,0x0,0x1e, - 0x79,0x9c,0x80,0x0,0x0,0x0,0x0,0x1f,0x97,0xb2,0x0,0x0,0x0,0x0,0x0,0x20, - 0x59,0x7e,0x80,0x0,0x0,0x0,0x0,0x21,0x80,0xce,0x80,0x0,0x0,0x0,0x0,0x22, - 0x42,0x9b,0x0,0x0,0x0,0x0,0x0,0x23,0x69,0xeb,0x0,0x0,0x0,0x0,0x0,0x24, - 0x22,0x7d,0x0,0x0,0x0,0x0,0x0,0x25,0x49,0xcd,0x0,0x0,0x0,0x0,0x0,0x25, - 0xef,0xea,0x0,0x0,0x0,0x0,0x0,0x27,0x29,0xaf,0x0,0x0,0x0,0x0,0x0,0x27, - 0xcf,0xcc,0x0,0x0,0x0,0x0,0x0,0x29,0x9,0x91,0x0,0x0,0x0,0x0,0x0,0x29, - 0xaf,0xae,0x0,0x0,0x0,0x0,0x0,0x2a,0xe9,0x73,0x0,0x0,0x0,0x0,0x0,0x2b, - 0x98,0xca,0x80,0x0,0x0,0x0,0x0,0x2c,0xd2,0x8f,0x80,0x0,0x0,0x0,0x0,0x2d, - 0x78,0xac,0x80,0x0,0x0,0x0,0x0,0x2e,0xb2,0x71,0x80,0x0,0x0,0x0,0x0,0x2f, - 0x58,0x8e,0x80,0x0,0x0,0x0,0x0,0x30,0x92,0x53,0x80,0x0,0x0,0x0,0x0,0x31, - 0x5d,0x5a,0x80,0x0,0x0,0x0,0x0,0x32,0x72,0x35,0x80,0x0,0x0,0x0,0x0,0x33, - 0x3d,0x3c,0x80,0x0,0x0,0x0,0x0,0x34,0x52,0x17,0x80,0x0,0x0,0x0,0x0,0x35, - 0x1d,0x1e,0x80,0x0,0x0,0x0,0x0,0x36,0x31,0xf9,0x80,0x0,0x0,0x0,0x0,0x36, - 0xfd,0x0,0x80,0x0,0x0,0x0,0x0,0x38,0x1b,0x16,0x0,0x0,0x0,0x0,0x0,0x38, - 0xdc,0xe2,0x80,0x0,0x0,0x0,0x0,0x39,0xa7,0xe9,0x80,0x0,0x0,0x0,0x0,0x3a, - 0xbc,0xc4,0x80,0x0,0x0,0x0,0x0,0x3b,0xda,0xda,0x0,0x0,0x0,0x0,0x0,0x3c, - 0xa5,0xe1,0x0,0x0,0x0,0x0,0x0,0x3d,0xba,0xbc,0x0,0x0,0x0,0x0,0x0,0x3e, - 0x85,0xc3,0x0,0x0,0x0,0x0,0x0,0x3f,0x9a,0x9e,0x0,0x0,0x0,0x0,0x0,0x40, - 0x65,0xa5,0x0,0x0,0x0,0x0,0x0,0x41,0x83,0xba,0x80,0x0,0x0,0x0,0x0,0x42, - 0x45,0x87,0x0,0x0,0x0,0x0,0x0,0x43,0x63,0x9c,0x80,0x0,0x0,0x0,0x0,0x44, - 0x2e,0xa3,0x80,0x0,0x0,0x0,0x0,0x45,0x43,0x7e,0x80,0x0,0x0,0x0,0x0,0x46, - 0x5,0x4b,0x0,0x0,0x0,0x0,0x0,0x47,0x23,0x60,0x80,0x0,0x0,0x0,0x0,0x47, - 0xf7,0xa2,0x0,0x0,0x0,0x0,0x0,0x48,0xe7,0x93,0x0,0x0,0x0,0x0,0x0,0x49, - 0xd7,0x84,0x0,0x0,0x0,0x0,0x0,0x4a,0xc7,0x75,0x0,0x0,0x0,0x0,0x0,0x4b, - 0xb7,0x66,0x0,0x0,0x0,0x0,0x0,0x4c,0xa7,0x57,0x0,0x0,0x0,0x0,0x0,0x4d, - 0x97,0x48,0x0,0x0,0x0,0x0,0x0,0x4e,0x87,0x39,0x0,0x0,0x0,0x0,0x0,0x4f, - 0x77,0x2a,0x0,0x0,0x0,0x0,0x0,0x50,0x70,0x55,0x80,0x0,0x0,0x0,0x0,0x51, - 0x60,0x46,0x80,0x0,0x0,0x0,0x0,0x52,0x50,0x37,0x80,0x0,0x0,0x0,0x0,0x53, - 0x40,0x28,0x80,0x0,0x0,0x0,0x0,0x54,0x30,0x19,0x80,0x0,0x0,0x0,0x0,0x55, - 0x20,0xa,0x80,0x0,0x0,0x0,0x0,0x56,0xf,0xfb,0x80,0x0,0x0,0x0,0x0,0x56, - 0xff,0xec,0x80,0x0,0x0,0x0,0x0,0x57,0xef,0xdd,0x80,0x0,0x0,0x0,0x0,0x58, - 0xdf,0xce,0x80,0x0,0x0,0x0,0x0,0x59,0xcf,0xbf,0x80,0x0,0x0,0x0,0x0,0x5a, - 0xbf,0xb0,0x80,0x0,0x0,0x0,0x0,0x5b,0xb8,0xdc,0x0,0x0,0x0,0x0,0x0,0x5c, - 0xa8,0xcd,0x0,0x0,0x0,0x0,0x0,0x5d,0x98,0xbe,0x0,0x0,0x0,0x0,0x0,0x5e, - 0x88,0xaf,0x0,0x0,0x0,0x0,0x0,0x5f,0x78,0xa0,0x0,0x0,0x0,0x0,0x0,0x60, - 0x68,0x91,0x0,0x0,0x0,0x0,0x0,0x61,0x58,0x82,0x0,0x0,0x0,0x0,0x0,0x62, - 0x48,0x73,0x0,0x0,0x0,0x0,0x0,0x63,0x38,0x64,0x0,0x0,0x0,0x0,0x0,0x64, - 0x28,0x55,0x0,0x0,0x0,0x0,0x0,0x65,0x18,0x46,0x0,0x0,0x0,0x0,0x0,0x66, - 0x11,0x71,0x80,0x0,0x0,0x0,0x0,0x67,0x1,0x62,0x80,0x0,0x0,0x0,0x0,0x67, - 0xf1,0x53,0x80,0x0,0x0,0x0,0x0,0x68,0xe1,0x44,0x80,0x0,0x0,0x0,0x0,0x69, - 0xd1,0x35,0x80,0x0,0x0,0x0,0x0,0x6a,0xc1,0x26,0x80,0x0,0x0,0x0,0x0,0x6b, - 0xb1,0x17,0x80,0x0,0x0,0x0,0x0,0x6c,0xa1,0x8,0x80,0x0,0x0,0x0,0x0,0x6d, - 0x90,0xf9,0x80,0x0,0x0,0x0,0x0,0x6e,0x80,0xea,0x80,0x0,0x0,0x0,0x0,0x6f, - 0x70,0xdb,0x80,0x0,0x0,0x0,0x0,0x70,0x6a,0x7,0x0,0x0,0x0,0x0,0x0,0x71, - 0x59,0xf8,0x0,0x0,0x0,0x0,0x0,0x72,0x49,0xe9,0x0,0x0,0x0,0x0,0x0,0x73, - 0x39,0xda,0x0,0x0,0x0,0x0,0x0,0x74,0x29,0xcb,0x0,0x0,0x0,0x0,0x0,0x75, - 0x19,0xbc,0x0,0x0,0x0,0x0,0x0,0x76,0x9,0xad,0x0,0x0,0x0,0x0,0x0,0x76, - 0xf9,0x9e,0x0,0x0,0x0,0x0,0x0,0x77,0xe9,0x8f,0x0,0x0,0x0,0x0,0x0,0x78, - 0xd9,0x80,0x0,0x0,0x0,0x0,0x0,0x79,0xc9,0x71,0x0,0x0,0x0,0x0,0x0,0x7a, - 0xb9,0x62,0x0,0x0,0x0,0x0,0x0,0x7b,0xb2,0x8d,0x80,0x0,0x0,0x0,0x0,0x7c, - 0xa2,0x7e,0x80,0x0,0x0,0x0,0x0,0x7d,0x92,0x6f,0x80,0x0,0x0,0x0,0x0,0x7e, - 0x82,0x60,0x80,0x0,0x0,0x0,0x0,0x7f,0x72,0x51,0x80,0x0,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x0,0x0,0x8d,0xc4,0x0,0x0, - 0x0,0x0,0x9a,0xb0,0x1,0x4,0x0,0x0,0x8c,0xa0,0x0,0x9,0x0,0x0,0x9a,0xb0, - 0x1,0x4,0x0,0x0,0x8c,0xa0,0x0,0x9,0x4c,0x4d,0x54,0x0,0x41,0x45,0x44,0x54, - 0x0,0x41,0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0, - 0xa,0x41,0x45,0x53,0x54,0x2d,0x31,0x30,0x41,0x45,0x44,0x54,0x2c,0x4d,0x31,0x30, - 0x2e,0x31,0x2e,0x30,0x2c,0x4d,0x34,0x2e,0x31,0x2e,0x30,0x2f,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Australia/Melbourne - 0x0,0x0,0x8,0xaf, + 0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0xb1, + 0xee,0xda,0xfc,0xb4,0xc2,0x9a,0xd0,0xc7,0x91,0x47,0xd8,0xed,0x2f,0xe1,0xd4,0x0, + 0x1,0x2,0x3,0x1,0x0,0x0,0x22,0x84,0x0,0x0,0x0,0x0,0x2a,0x30,0x0,0x4, + 0x0,0x0,0x23,0x28,0x0,0x8,0x0,0x0,0x26,0xac,0x0,0xe,0x0,0x0,0x2a,0x30, + 0x0,0x4,0x4c,0x4d,0x54,0x0,0x45,0x41,0x54,0x0,0x2b,0x30,0x32,0x33,0x30,0x0, + 0x2b,0x30,0x32,0x34,0x35,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0xf8,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xb1,0xee,0xda,0xfc,0xff,0xff,0xff,0xff, + 0xb4,0xc2,0x9a,0xd0,0xff,0xff,0xff,0xff,0xc7,0x91,0x47,0xd8,0xff,0xff,0xff,0xff, + 0xed,0x2f,0xe1,0xd4,0x0,0x1,0x2,0x3,0x1,0x0,0x0,0x22,0x84,0x0,0x0,0x0, + 0x0,0x2a,0x30,0x0,0x4,0x0,0x0,0x23,0x28,0x0,0x8,0x0,0x0,0x26,0xac,0x0, + 0xe,0x0,0x0,0x2a,0x30,0x0,0x4,0x4c,0x4d,0x54,0x0,0x45,0x41,0x54,0x0,0x2b, + 0x30,0x32,0x33,0x30,0x0,0x2b,0x30,0x32,0x34,0x35,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0xa,0x45,0x41,0x54,0x2d,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Mogadishu + 0x0,0x0,0x1,0x1d, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x8e,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xe,0x80,0x0,0x0,0x0,0x9c, - 0x4e,0xa6,0x9c,0x9c,0xbc,0x20,0xf0,0xcb,0x54,0xb3,0x0,0xcb,0xc7,0x57,0x70,0xcc, - 0xb7,0x56,0x80,0xcd,0xa7,0x39,0x70,0xce,0xa0,0x73,0x0,0xcf,0x87,0x1b,0x70,0x3, - 0x70,0x39,0x80,0x4,0xd,0x1c,0x0,0x5,0x50,0x1b,0x80,0x5,0xf6,0x38,0x80,0x7, - 0x2f,0xfd,0x80,0x7,0xd6,0x1a,0x80,0x9,0xf,0xdf,0x80,0x9,0xb5,0xfc,0x80,0xa, - 0xef,0xc1,0x80,0xb,0x9f,0x19,0x0,0xc,0xd8,0xde,0x0,0xd,0x7e,0xfb,0x0,0xe, - 0xb8,0xc0,0x0,0xf,0x5e,0xdd,0x0,0x10,0x98,0xa2,0x0,0x11,0x3e,0xbf,0x0,0x12, - 0x78,0x84,0x0,0x13,0x1e,0xa1,0x0,0x14,0x58,0x66,0x0,0x14,0xfe,0x83,0x0,0x16, - 0x38,0x48,0x0,0x16,0xe7,0x9f,0x80,0x18,0x21,0x64,0x80,0x18,0xc7,0x81,0x80,0x1a, - 0x1,0x46,0x80,0x1a,0xa7,0x63,0x80,0x1b,0xe1,0x28,0x80,0x1c,0x87,0x45,0x80,0x1d, - 0xc1,0xa,0x80,0x1e,0x79,0x9c,0x80,0x1f,0x97,0xb2,0x0,0x20,0x59,0x7e,0x80,0x21, - 0x77,0x94,0x0,0x22,0x42,0x9b,0x0,0x23,0x69,0xeb,0x0,0x24,0x22,0x7d,0x0,0x25, - 0x49,0xcd,0x0,0x26,0x2,0x5f,0x0,0x27,0x29,0xaf,0x0,0x27,0xcf,0xcc,0x0,0x29, - 0x9,0x91,0x0,0x29,0xaf,0xae,0x0,0x2a,0xe9,0x73,0x0,0x2b,0x98,0xca,0x80,0x2c, - 0xd2,0x8f,0x80,0x2d,0x78,0xac,0x80,0x2e,0xb2,0x71,0x80,0x2f,0x74,0x3e,0x0,0x30, - 0x92,0x53,0x80,0x31,0x5d,0x5a,0x80,0x32,0x72,0x35,0x80,0x33,0x3d,0x3c,0x80,0x34, - 0x52,0x17,0x80,0x35,0x1d,0x1e,0x80,0x36,0x31,0xf9,0x80,0x36,0xfd,0x0,0x80,0x38, - 0x1b,0x16,0x0,0x38,0xdc,0xe2,0x80,0x39,0xa7,0xe9,0x80,0x3a,0xbc,0xc4,0x80,0x3b, - 0xda,0xda,0x0,0x3c,0xa5,0xe1,0x0,0x3d,0xba,0xbc,0x0,0x3e,0x85,0xc3,0x0,0x3f, - 0x9a,0x9e,0x0,0x40,0x65,0xa5,0x0,0x41,0x83,0xba,0x80,0x42,0x45,0x87,0x0,0x43, - 0x63,0x9c,0x80,0x44,0x2e,0xa3,0x80,0x45,0x43,0x7e,0x80,0x46,0x5,0x4b,0x0,0x47, - 0x23,0x60,0x80,0x47,0xf7,0xa2,0x0,0x48,0xe7,0x93,0x0,0x49,0xd7,0x84,0x0,0x4a, - 0xc7,0x75,0x0,0x4b,0xb7,0x66,0x0,0x4c,0xa7,0x57,0x0,0x4d,0x97,0x48,0x0,0x4e, - 0x87,0x39,0x0,0x4f,0x77,0x2a,0x0,0x50,0x70,0x55,0x80,0x51,0x60,0x46,0x80,0x52, - 0x50,0x37,0x80,0x53,0x40,0x28,0x80,0x54,0x30,0x19,0x80,0x55,0x20,0xa,0x80,0x56, - 0xf,0xfb,0x80,0x56,0xff,0xec,0x80,0x57,0xef,0xdd,0x80,0x58,0xdf,0xce,0x80,0x59, - 0xcf,0xbf,0x80,0x5a,0xbf,0xb0,0x80,0x5b,0xb8,0xdc,0x0,0x5c,0xa8,0xcd,0x0,0x5d, - 0x98,0xbe,0x0,0x5e,0x88,0xaf,0x0,0x5f,0x78,0xa0,0x0,0x60,0x68,0x91,0x0,0x61, - 0x58,0x82,0x0,0x62,0x48,0x73,0x0,0x63,0x38,0x64,0x0,0x64,0x28,0x55,0x0,0x65, - 0x18,0x46,0x0,0x66,0x11,0x71,0x80,0x67,0x1,0x62,0x80,0x67,0xf1,0x53,0x80,0x68, - 0xe1,0x44,0x80,0x69,0xd1,0x35,0x80,0x6a,0xc1,0x26,0x80,0x6b,0xb1,0x17,0x80,0x6c, - 0xa1,0x8,0x80,0x6d,0x90,0xf9,0x80,0x6e,0x80,0xea,0x80,0x6f,0x70,0xdb,0x80,0x70, - 0x6a,0x7,0x0,0x71,0x59,0xf8,0x0,0x72,0x49,0xe9,0x0,0x73,0x39,0xda,0x0,0x74, - 0x29,0xcb,0x0,0x75,0x19,0xbc,0x0,0x76,0x9,0xad,0x0,0x76,0xf9,0x9e,0x0,0x77, - 0xe9,0x8f,0x0,0x78,0xd9,0x80,0x0,0x79,0xc9,0x71,0x0,0x7a,0xb9,0x62,0x0,0x7b, - 0xb2,0x8d,0x80,0x7c,0xa2,0x7e,0x80,0x7d,0x92,0x6f,0x80,0x7e,0x82,0x60,0x80,0x7f, - 0x72,0x51,0x80,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x0,0x0,0x87,0xe8,0x0,0x0,0x0,0x0,0x9a,0xb0,0x1,0x4,0x0,0x0,0x8c, - 0xa0,0x0,0x9,0x0,0x0,0x9a,0xb0,0x1,0x4,0x0,0x0,0x8c,0xa0,0x0,0x9,0x4c, - 0x4d,0x54,0x0,0x41,0x45,0x44,0x54,0x0,0x41,0x45,0x53,0x54,0x0,0x0,0x0,0x0, - 0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0, - 0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0x0,0x0,0x0,0x5,0x0, - 0x0,0x0,0xe,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x73, - 0x16,0x85,0x18,0xff,0xff,0xff,0xff,0x9c,0x4e,0xa6,0x9c,0xff,0xff,0xff,0xff,0x9c, - 0xbc,0x20,0xf0,0xff,0xff,0xff,0xff,0xcb,0x54,0xb3,0x0,0xff,0xff,0xff,0xff,0xcb, - 0xc7,0x57,0x70,0xff,0xff,0xff,0xff,0xcc,0xb7,0x56,0x80,0xff,0xff,0xff,0xff,0xcd, - 0xa7,0x39,0x70,0xff,0xff,0xff,0xff,0xce,0xa0,0x73,0x0,0xff,0xff,0xff,0xff,0xcf, - 0x87,0x1b,0x70,0x0,0x0,0x0,0x0,0x3,0x70,0x39,0x80,0x0,0x0,0x0,0x0,0x4, - 0xd,0x1c,0x0,0x0,0x0,0x0,0x0,0x5,0x50,0x1b,0x80,0x0,0x0,0x0,0x0,0x5, - 0xf6,0x38,0x80,0x0,0x0,0x0,0x0,0x7,0x2f,0xfd,0x80,0x0,0x0,0x0,0x0,0x7, - 0xd6,0x1a,0x80,0x0,0x0,0x0,0x0,0x9,0xf,0xdf,0x80,0x0,0x0,0x0,0x0,0x9, - 0xb5,0xfc,0x80,0x0,0x0,0x0,0x0,0xa,0xef,0xc1,0x80,0x0,0x0,0x0,0x0,0xb, - 0x9f,0x19,0x0,0x0,0x0,0x0,0x0,0xc,0xd8,0xde,0x0,0x0,0x0,0x0,0x0,0xd, - 0x7e,0xfb,0x0,0x0,0x0,0x0,0x0,0xe,0xb8,0xc0,0x0,0x0,0x0,0x0,0x0,0xf, - 0x5e,0xdd,0x0,0x0,0x0,0x0,0x0,0x10,0x98,0xa2,0x0,0x0,0x0,0x0,0x0,0x11, - 0x3e,0xbf,0x0,0x0,0x0,0x0,0x0,0x12,0x78,0x84,0x0,0x0,0x0,0x0,0x0,0x13, - 0x1e,0xa1,0x0,0x0,0x0,0x0,0x0,0x14,0x58,0x66,0x0,0x0,0x0,0x0,0x0,0x14, - 0xfe,0x83,0x0,0x0,0x0,0x0,0x0,0x16,0x38,0x48,0x0,0x0,0x0,0x0,0x0,0x16, - 0xe7,0x9f,0x80,0x0,0x0,0x0,0x0,0x18,0x21,0x64,0x80,0x0,0x0,0x0,0x0,0x18, - 0xc7,0x81,0x80,0x0,0x0,0x0,0x0,0x1a,0x1,0x46,0x80,0x0,0x0,0x0,0x0,0x1a, - 0xa7,0x63,0x80,0x0,0x0,0x0,0x0,0x1b,0xe1,0x28,0x80,0x0,0x0,0x0,0x0,0x1c, - 0x87,0x45,0x80,0x0,0x0,0x0,0x0,0x1d,0xc1,0xa,0x80,0x0,0x0,0x0,0x0,0x1e, - 0x79,0x9c,0x80,0x0,0x0,0x0,0x0,0x1f,0x97,0xb2,0x0,0x0,0x0,0x0,0x0,0x20, - 0x59,0x7e,0x80,0x0,0x0,0x0,0x0,0x21,0x77,0x94,0x0,0x0,0x0,0x0,0x0,0x22, - 0x42,0x9b,0x0,0x0,0x0,0x0,0x0,0x23,0x69,0xeb,0x0,0x0,0x0,0x0,0x0,0x24, - 0x22,0x7d,0x0,0x0,0x0,0x0,0x0,0x25,0x49,0xcd,0x0,0x0,0x0,0x0,0x0,0x26, - 0x2,0x5f,0x0,0x0,0x0,0x0,0x0,0x27,0x29,0xaf,0x0,0x0,0x0,0x0,0x0,0x27, - 0xcf,0xcc,0x0,0x0,0x0,0x0,0x0,0x29,0x9,0x91,0x0,0x0,0x0,0x0,0x0,0x29, - 0xaf,0xae,0x0,0x0,0x0,0x0,0x0,0x2a,0xe9,0x73,0x0,0x0,0x0,0x0,0x0,0x2b, - 0x98,0xca,0x80,0x0,0x0,0x0,0x0,0x2c,0xd2,0x8f,0x80,0x0,0x0,0x0,0x0,0x2d, - 0x78,0xac,0x80,0x0,0x0,0x0,0x0,0x2e,0xb2,0x71,0x80,0x0,0x0,0x0,0x0,0x2f, - 0x74,0x3e,0x0,0x0,0x0,0x0,0x0,0x30,0x92,0x53,0x80,0x0,0x0,0x0,0x0,0x31, - 0x5d,0x5a,0x80,0x0,0x0,0x0,0x0,0x32,0x72,0x35,0x80,0x0,0x0,0x0,0x0,0x33, - 0x3d,0x3c,0x80,0x0,0x0,0x0,0x0,0x34,0x52,0x17,0x80,0x0,0x0,0x0,0x0,0x35, - 0x1d,0x1e,0x80,0x0,0x0,0x0,0x0,0x36,0x31,0xf9,0x80,0x0,0x0,0x0,0x0,0x36, - 0xfd,0x0,0x80,0x0,0x0,0x0,0x0,0x38,0x1b,0x16,0x0,0x0,0x0,0x0,0x0,0x38, - 0xdc,0xe2,0x80,0x0,0x0,0x0,0x0,0x39,0xa7,0xe9,0x80,0x0,0x0,0x0,0x0,0x3a, - 0xbc,0xc4,0x80,0x0,0x0,0x0,0x0,0x3b,0xda,0xda,0x0,0x0,0x0,0x0,0x0,0x3c, - 0xa5,0xe1,0x0,0x0,0x0,0x0,0x0,0x3d,0xba,0xbc,0x0,0x0,0x0,0x0,0x0,0x3e, - 0x85,0xc3,0x0,0x0,0x0,0x0,0x0,0x3f,0x9a,0x9e,0x0,0x0,0x0,0x0,0x0,0x40, - 0x65,0xa5,0x0,0x0,0x0,0x0,0x0,0x41,0x83,0xba,0x80,0x0,0x0,0x0,0x0,0x42, - 0x45,0x87,0x0,0x0,0x0,0x0,0x0,0x43,0x63,0x9c,0x80,0x0,0x0,0x0,0x0,0x44, - 0x2e,0xa3,0x80,0x0,0x0,0x0,0x0,0x45,0x43,0x7e,0x80,0x0,0x0,0x0,0x0,0x46, - 0x5,0x4b,0x0,0x0,0x0,0x0,0x0,0x47,0x23,0x60,0x80,0x0,0x0,0x0,0x0,0x47, - 0xf7,0xa2,0x0,0x0,0x0,0x0,0x0,0x48,0xe7,0x93,0x0,0x0,0x0,0x0,0x0,0x49, - 0xd7,0x84,0x0,0x0,0x0,0x0,0x0,0x4a,0xc7,0x75,0x0,0x0,0x0,0x0,0x0,0x4b, - 0xb7,0x66,0x0,0x0,0x0,0x0,0x0,0x4c,0xa7,0x57,0x0,0x0,0x0,0x0,0x0,0x4d, - 0x97,0x48,0x0,0x0,0x0,0x0,0x0,0x4e,0x87,0x39,0x0,0x0,0x0,0x0,0x0,0x4f, - 0x77,0x2a,0x0,0x0,0x0,0x0,0x0,0x50,0x70,0x55,0x80,0x0,0x0,0x0,0x0,0x51, - 0x60,0x46,0x80,0x0,0x0,0x0,0x0,0x52,0x50,0x37,0x80,0x0,0x0,0x0,0x0,0x53, - 0x40,0x28,0x80,0x0,0x0,0x0,0x0,0x54,0x30,0x19,0x80,0x0,0x0,0x0,0x0,0x55, - 0x20,0xa,0x80,0x0,0x0,0x0,0x0,0x56,0xf,0xfb,0x80,0x0,0x0,0x0,0x0,0x56, - 0xff,0xec,0x80,0x0,0x0,0x0,0x0,0x57,0xef,0xdd,0x80,0x0,0x0,0x0,0x0,0x58, - 0xdf,0xce,0x80,0x0,0x0,0x0,0x0,0x59,0xcf,0xbf,0x80,0x0,0x0,0x0,0x0,0x5a, - 0xbf,0xb0,0x80,0x0,0x0,0x0,0x0,0x5b,0xb8,0xdc,0x0,0x0,0x0,0x0,0x0,0x5c, - 0xa8,0xcd,0x0,0x0,0x0,0x0,0x0,0x5d,0x98,0xbe,0x0,0x0,0x0,0x0,0x0,0x5e, - 0x88,0xaf,0x0,0x0,0x0,0x0,0x0,0x5f,0x78,0xa0,0x0,0x0,0x0,0x0,0x0,0x60, - 0x68,0x91,0x0,0x0,0x0,0x0,0x0,0x61,0x58,0x82,0x0,0x0,0x0,0x0,0x0,0x62, - 0x48,0x73,0x0,0x0,0x0,0x0,0x0,0x63,0x38,0x64,0x0,0x0,0x0,0x0,0x0,0x64, - 0x28,0x55,0x0,0x0,0x0,0x0,0x0,0x65,0x18,0x46,0x0,0x0,0x0,0x0,0x0,0x66, - 0x11,0x71,0x80,0x0,0x0,0x0,0x0,0x67,0x1,0x62,0x80,0x0,0x0,0x0,0x0,0x67, - 0xf1,0x53,0x80,0x0,0x0,0x0,0x0,0x68,0xe1,0x44,0x80,0x0,0x0,0x0,0x0,0x69, - 0xd1,0x35,0x80,0x0,0x0,0x0,0x0,0x6a,0xc1,0x26,0x80,0x0,0x0,0x0,0x0,0x6b, - 0xb1,0x17,0x80,0x0,0x0,0x0,0x0,0x6c,0xa1,0x8,0x80,0x0,0x0,0x0,0x0,0x6d, - 0x90,0xf9,0x80,0x0,0x0,0x0,0x0,0x6e,0x80,0xea,0x80,0x0,0x0,0x0,0x0,0x6f, - 0x70,0xdb,0x80,0x0,0x0,0x0,0x0,0x70,0x6a,0x7,0x0,0x0,0x0,0x0,0x0,0x71, - 0x59,0xf8,0x0,0x0,0x0,0x0,0x0,0x72,0x49,0xe9,0x0,0x0,0x0,0x0,0x0,0x73, - 0x39,0xda,0x0,0x0,0x0,0x0,0x0,0x74,0x29,0xcb,0x0,0x0,0x0,0x0,0x0,0x75, - 0x19,0xbc,0x0,0x0,0x0,0x0,0x0,0x76,0x9,0xad,0x0,0x0,0x0,0x0,0x0,0x76, - 0xf9,0x9e,0x0,0x0,0x0,0x0,0x0,0x77,0xe9,0x8f,0x0,0x0,0x0,0x0,0x0,0x78, - 0xd9,0x80,0x0,0x0,0x0,0x0,0x0,0x79,0xc9,0x71,0x0,0x0,0x0,0x0,0x0,0x7a, - 0xb9,0x62,0x0,0x0,0x0,0x0,0x0,0x7b,0xb2,0x8d,0x80,0x0,0x0,0x0,0x0,0x7c, - 0xa2,0x7e,0x80,0x0,0x0,0x0,0x0,0x7d,0x92,0x6f,0x80,0x0,0x0,0x0,0x0,0x7e, - 0x82,0x60,0x80,0x0,0x0,0x0,0x0,0x7f,0x72,0x51,0x80,0x0,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x0,0x0,0x87,0xe8,0x0,0x0, - 0x0,0x0,0x9a,0xb0,0x1,0x4,0x0,0x0,0x8c,0xa0,0x0,0x9,0x0,0x0,0x9a,0xb0, - 0x1,0x4,0x0,0x0,0x8c,0xa0,0x0,0x9,0x4c,0x4d,0x54,0x0,0x41,0x45,0x44,0x54, - 0x0,0x41,0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0, - 0xa,0x41,0x45,0x53,0x54,0x2d,0x31,0x30,0x41,0x45,0x44,0x54,0x2c,0x4d,0x31,0x30, - 0x2e,0x31,0x2e,0x30,0x2c,0x4d,0x34,0x2e,0x31,0x2e,0x30,0x2f,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Nicosia - 0x0,0x0,0x7,0xe0, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x80,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0xa5, - 0x77,0x1e,0xb8,0x9,0xed,0xaf,0xe0,0xa,0xdd,0x92,0xd0,0xb,0xfa,0x64,0xe0,0xc, - 0xbe,0xc6,0x50,0xd,0xa4,0x39,0x60,0xe,0x8a,0xe1,0xd0,0xf,0x84,0x1b,0x60,0x10, - 0x75,0x4f,0xd0,0x11,0x63,0xfd,0x60,0x12,0x53,0xe0,0x50,0x13,0x4d,0x19,0xe0,0x14, - 0x33,0xc2,0x50,0x15,0x23,0xc1,0x60,0x16,0x13,0xa4,0x50,0x17,0x3,0xa3,0x60,0x17, - 0xf3,0x86,0x50,0x18,0xe3,0x85,0x60,0x19,0xd3,0x68,0x50,0x1a,0xc3,0x67,0x60,0x1b, - 0xbc,0x84,0xd0,0x1c,0xac,0x83,0xe0,0x1d,0x9c,0x66,0xd0,0x1e,0x8c,0x65,0xe0,0x1f, - 0x7c,0x48,0xd0,0x20,0x6c,0x47,0xe0,0x21,0x5c,0x2a,0xd0,0x22,0x4c,0x29,0xe0,0x23, - 0x3c,0xc,0xd0,0x24,0x2c,0xb,0xe0,0x25,0x1b,0xee,0xd0,0x26,0xb,0xed,0xe0,0x27, - 0x5,0xb,0x50,0x27,0xf5,0xa,0x60,0x28,0xe4,0xed,0x50,0x29,0xd4,0xec,0x60,0x2a, - 0xc4,0xcf,0x50,0x2b,0xb4,0xce,0x60,0x2c,0xa4,0xb1,0x50,0x2d,0x94,0xb0,0x60,0x2e, - 0x84,0x93,0x50,0x2f,0x74,0x92,0x60,0x30,0x64,0x75,0x50,0x31,0x5d,0xae,0xe0,0x32, - 0x4d,0x91,0xd0,0x33,0x3d,0x90,0xe0,0x34,0x2d,0x73,0xd0,0x35,0x1d,0x72,0xe0,0x36, - 0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39, - 0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b,0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d, - 0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f,0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41, - 0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43,0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45, - 0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49, - 0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c, - 0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e,0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50, - 0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54, - 0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56,0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58, - 0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59,0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b, - 0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d,0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f, - 0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61,0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63, - 0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65,0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67, - 0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68,0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a, - 0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c,0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e, - 0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70,0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72, - 0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74,0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76, - 0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79, - 0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d, - 0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x0,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x0,0x0,0x1f,0x48,0x0, - 0x0,0x0,0x0,0x2a,0x30,0x1,0x4,0x0,0x0,0x1c,0x20,0x0,0x9,0x0,0x0,0x1c, - 0x20,0x0,0x9,0x0,0x0,0x2a,0x30,0x1,0x4,0x4c,0x4d,0x54,0x0,0x45,0x45,0x53, - 0x54,0x0,0x45,0x45,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x1,0x1, + 0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0xb1, + 0xee,0xda,0xfc,0xb4,0xc2,0x9a,0xd0,0xc7,0x91,0x47,0xd8,0xed,0x2f,0xe1,0xd4,0x0, + 0x1,0x2,0x3,0x1,0x0,0x0,0x22,0x84,0x0,0x0,0x0,0x0,0x2a,0x30,0x0,0x4, + 0x0,0x0,0x23,0x28,0x0,0x8,0x0,0x0,0x26,0xac,0x0,0xe,0x0,0x0,0x2a,0x30, + 0x0,0x4,0x4c,0x4d,0x54,0x0,0x45,0x41,0x54,0x0,0x2b,0x30,0x32,0x33,0x30,0x0, + 0x2b,0x30,0x32,0x34,0x35,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x80,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xd,0xf8,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xa5,0x77,0x1e,0xb8,0x0,0x0,0x0,0x0, - 0x9,0xed,0xaf,0xe0,0x0,0x0,0x0,0x0,0xa,0xdd,0x92,0xd0,0x0,0x0,0x0,0x0, - 0xb,0xfa,0x64,0xe0,0x0,0x0,0x0,0x0,0xc,0xbe,0xc6,0x50,0x0,0x0,0x0,0x0, - 0xd,0xa4,0x39,0x60,0x0,0x0,0x0,0x0,0xe,0x8a,0xe1,0xd0,0x0,0x0,0x0,0x0, - 0xf,0x84,0x1b,0x60,0x0,0x0,0x0,0x0,0x10,0x75,0x4f,0xd0,0x0,0x0,0x0,0x0, - 0x11,0x63,0xfd,0x60,0x0,0x0,0x0,0x0,0x12,0x53,0xe0,0x50,0x0,0x0,0x0,0x0, - 0x13,0x4d,0x19,0xe0,0x0,0x0,0x0,0x0,0x14,0x33,0xc2,0x50,0x0,0x0,0x0,0x0, - 0x15,0x23,0xc1,0x60,0x0,0x0,0x0,0x0,0x16,0x13,0xa4,0x50,0x0,0x0,0x0,0x0, - 0x17,0x3,0xa3,0x60,0x0,0x0,0x0,0x0,0x17,0xf3,0x86,0x50,0x0,0x0,0x0,0x0, - 0x18,0xe3,0x85,0x60,0x0,0x0,0x0,0x0,0x19,0xd3,0x68,0x50,0x0,0x0,0x0,0x0, - 0x1a,0xc3,0x67,0x60,0x0,0x0,0x0,0x0,0x1b,0xbc,0x84,0xd0,0x0,0x0,0x0,0x0, - 0x1c,0xac,0x83,0xe0,0x0,0x0,0x0,0x0,0x1d,0x9c,0x66,0xd0,0x0,0x0,0x0,0x0, - 0x1e,0x8c,0x65,0xe0,0x0,0x0,0x0,0x0,0x1f,0x7c,0x48,0xd0,0x0,0x0,0x0,0x0, - 0x20,0x6c,0x47,0xe0,0x0,0x0,0x0,0x0,0x21,0x5c,0x2a,0xd0,0x0,0x0,0x0,0x0, - 0x22,0x4c,0x29,0xe0,0x0,0x0,0x0,0x0,0x23,0x3c,0xc,0xd0,0x0,0x0,0x0,0x0, - 0x24,0x2c,0xb,0xe0,0x0,0x0,0x0,0x0,0x25,0x1b,0xee,0xd0,0x0,0x0,0x0,0x0, - 0x26,0xb,0xed,0xe0,0x0,0x0,0x0,0x0,0x27,0x5,0xb,0x50,0x0,0x0,0x0,0x0, - 0x27,0xf5,0xa,0x60,0x0,0x0,0x0,0x0,0x28,0xe4,0xed,0x50,0x0,0x0,0x0,0x0, - 0x29,0xd4,0xec,0x60,0x0,0x0,0x0,0x0,0x2a,0xc4,0xcf,0x50,0x0,0x0,0x0,0x0, - 0x2b,0xb4,0xce,0x60,0x0,0x0,0x0,0x0,0x2c,0xa4,0xb1,0x50,0x0,0x0,0x0,0x0, - 0x2d,0x94,0xb0,0x60,0x0,0x0,0x0,0x0,0x2e,0x84,0x93,0x50,0x0,0x0,0x0,0x0, - 0x2f,0x74,0x92,0x60,0x0,0x0,0x0,0x0,0x30,0x64,0x75,0x50,0x0,0x0,0x0,0x0, - 0x31,0x5d,0xae,0xe0,0x0,0x0,0x0,0x0,0x32,0x4d,0x91,0xd0,0x0,0x0,0x0,0x0, - 0x33,0x3d,0x90,0xe0,0x0,0x0,0x0,0x0,0x34,0x2d,0x73,0xd0,0x0,0x0,0x0,0x0, - 0x35,0x1d,0x72,0xe0,0x0,0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0, - 0x36,0xfd,0x7f,0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0, - 0x38,0xdd,0x61,0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0,0x0,0x0, - 0x3a,0xbd,0x43,0x10,0x0,0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0,0x0, - 0x3c,0xa6,0x5f,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0,0x0, - 0x3e,0x86,0x41,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0, - 0x40,0x66,0x23,0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0, - 0x42,0x46,0x5,0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0, - 0x44,0x25,0xe7,0x90,0x0,0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0, - 0x46,0x5,0xc9,0x90,0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0, - 0x47,0xee,0xe6,0x10,0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0, - 0x49,0xce,0xc8,0x10,0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0, - 0x4b,0xae,0xaa,0x10,0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0, - 0x4d,0x8e,0x8c,0x10,0x0,0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0, - 0x4f,0x6e,0x6e,0x10,0x0,0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0, - 0x51,0x57,0x8a,0x90,0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0, - 0x53,0x37,0x6c,0x90,0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0, - 0x55,0x17,0x4e,0x90,0x0,0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0, - 0x56,0xf7,0x30,0x90,0x0,0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0, - 0x58,0xd7,0x12,0x90,0x0,0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0, - 0x5a,0xb6,0xf4,0x90,0x0,0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0, - 0x5c,0xa0,0x11,0x10,0x0,0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0, - 0x5e,0x7f,0xf3,0x10,0x0,0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0, - 0x60,0x5f,0xd5,0x10,0x0,0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0, - 0x62,0x3f,0xb7,0x10,0x0,0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0, - 0x64,0x1f,0x99,0x10,0x0,0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0, - 0x66,0x8,0xb5,0x90,0x0,0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0, - 0x67,0xe8,0x97,0x90,0x0,0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0, - 0x69,0xc8,0x79,0x90,0x0,0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0, - 0x6b,0xa8,0x5b,0x90,0x0,0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0, - 0x6d,0x88,0x3d,0x90,0x0,0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0, - 0x6f,0x68,0x1f,0x90,0x0,0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0, - 0x71,0x51,0x3c,0x10,0x0,0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0, - 0x73,0x31,0x1e,0x10,0x0,0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0, - 0x75,0x11,0x0,0x10,0x0,0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0, - 0x76,0xf0,0xe2,0x10,0x0,0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0, - 0x78,0xd0,0xc4,0x10,0x0,0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0, - 0x7a,0xb0,0xa6,0x10,0x0,0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0, - 0x7c,0x99,0xc2,0x90,0x0,0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0, - 0x7e,0x79,0xa4,0x90,0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x0,0x0,0x1f,0x48, - 0x0,0x0,0x0,0x0,0x2a,0x30,0x1,0x4,0x0,0x0,0x1c,0x20,0x0,0x9,0x0,0x0, - 0x1c,0x20,0x0,0x9,0x0,0x0,0x2a,0x30,0x1,0x4,0x4c,0x4d,0x54,0x0,0x45,0x45, - 0x53,0x54,0x0,0x45,0x45,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x1, - 0x1,0xa,0x45,0x45,0x54,0x2d,0x32,0x45,0x45,0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35, - 0x2e,0x30,0x2f,0x33,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30,0x2f,0x34,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Mariehamn - 0x0,0x0,0x7,0x75, + 0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0xf8,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xb1,0xee,0xda,0xfc,0xff,0xff,0xff,0xff, + 0xb4,0xc2,0x9a,0xd0,0xff,0xff,0xff,0xff,0xc7,0x91,0x47,0xd8,0xff,0xff,0xff,0xff, + 0xed,0x2f,0xe1,0xd4,0x0,0x1,0x2,0x3,0x1,0x0,0x0,0x22,0x84,0x0,0x0,0x0, + 0x0,0x2a,0x30,0x0,0x4,0x0,0x0,0x23,0x28,0x0,0x8,0x0,0x0,0x26,0xac,0x0, + 0xe,0x0,0x0,0x2a,0x30,0x0,0x4,0x4c,0x4d,0x54,0x0,0x45,0x41,0x54,0x0,0x2b, + 0x30,0x32,0x33,0x30,0x0,0x2b,0x30,0x32,0x34,0x35,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0xa,0x45,0x41,0x54,0x2d,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Luanda + 0x0,0x0,0x0,0xab, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0xa1, + 0x51,0xf3,0x50,0x0,0x1,0x0,0x0,0x3,0x30,0x0,0x0,0x0,0x0,0xe,0x10,0x0, + 0x4,0x4c,0x4d,0x54,0x0,0x57,0x41,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, + 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0xa1,0x51,0xf3,0x50,0x0,0x1,0x0,0x0,0x3,0x30,0x0, + 0x0,0x0,0x0,0xe,0x10,0x0,0x4,0x4c,0x4d,0x54,0x0,0x57,0x41,0x54,0x0,0x0, + 0x0,0x0,0x0,0xa,0x57,0x41,0x54,0x2d,0x31,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Blantyre + 0x0,0x0,0x0,0xab, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x82, + 0x46,0xc5,0xf4,0x0,0x1,0x0,0x0,0x1e,0x8c,0x0,0x0,0x0,0x0,0x1c,0x20,0x0, + 0x4,0x4c,0x4d,0x54,0x0,0x43,0x41,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, + 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0x82,0x46,0xc5,0xf4,0x0,0x1,0x0,0x0,0x1e,0x8c,0x0, + 0x0,0x0,0x0,0x1c,0x20,0x0,0x4,0x4c,0x4d,0x54,0x0,0x43,0x41,0x54,0x0,0x0, + 0x0,0x0,0x0,0xa,0x43,0x41,0x54,0x2d,0x32,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Tunis + 0x0,0x0,0x2,0xc6, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x76,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x80,0x0,0x0,0x0,0xa4, - 0x73,0x6f,0x1b,0xcb,0xce,0x51,0x60,0xcc,0xc0,0xe5,0x60,0x15,0x23,0xdd,0x80,0x16, - 0x13,0xce,0x80,0x17,0x3,0xbf,0x80,0x17,0xf3,0xb0,0x80,0x18,0xe3,0xaf,0x90,0x19, - 0xd3,0xa0,0x90,0x1a,0xc3,0x91,0x90,0x1b,0xbc,0xbd,0x10,0x1c,0xac,0xae,0x10,0x1d, - 0x9c,0x9f,0x10,0x1e,0x8c,0x90,0x10,0x1f,0x7c,0x81,0x10,0x20,0x6c,0x72,0x10,0x21, - 0x5c,0x63,0x10,0x22,0x4c,0x54,0x10,0x23,0x3c,0x45,0x10,0x24,0x2c,0x36,0x10,0x25, - 0x1c,0x27,0x10,0x26,0xc,0x18,0x10,0x27,0x5,0x43,0x90,0x27,0xf5,0x34,0x90,0x28, - 0xe5,0x25,0x90,0x29,0xd5,0x16,0x90,0x2a,0xc5,0x7,0x90,0x2b,0xb4,0xf8,0x90,0x2c, - 0xa4,0xe9,0x90,0x2d,0x94,0xda,0x90,0x2e,0x84,0xcb,0x90,0x2f,0x74,0xbc,0x90,0x30, - 0x64,0xad,0x90,0x31,0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34, - 0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38, - 0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b, - 0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f, - 0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43, - 0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47, - 0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a, - 0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e, - 0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52, - 0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56, - 0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59, - 0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d, - 0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61, - 0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65, - 0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68, - 0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c, - 0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70, - 0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74, - 0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78, - 0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b, - 0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f, - 0x8e,0x7f,0x90,0x1,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x0,0x0,0x17,0x65,0x0,0x0,0x0, - 0x0,0x17,0x65,0x0,0x4,0x0,0x0,0x2a,0x30,0x1,0x8,0x0,0x0,0x1c,0x20,0x0, - 0xd,0x0,0x0,0x2a,0x30,0x1,0x8,0x0,0x0,0x1c,0x20,0x0,0xd,0x4c,0x4d,0x54, - 0x0,0x48,0x4d,0x54,0x0,0x45,0x45,0x53,0x54,0x0,0x45,0x45,0x54,0x0,0x0,0x0, - 0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x1,0x1,0x54,0x5a,0x69,0x66,0x32,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x77,0x0,0x0, - 0x0,0x6,0x0,0x0,0x0,0x11,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff, - 0xff,0xff,0x53,0xba,0x26,0x9b,0xff,0xff,0xff,0xff,0xa4,0x73,0x6f,0x1b,0xff,0xff, - 0xff,0xff,0xcb,0xce,0x51,0x60,0xff,0xff,0xff,0xff,0xcc,0xc0,0xe5,0x60,0x0,0x0, - 0x0,0x0,0x15,0x23,0xdd,0x80,0x0,0x0,0x0,0x0,0x16,0x13,0xce,0x80,0x0,0x0, - 0x0,0x0,0x17,0x3,0xbf,0x80,0x0,0x0,0x0,0x0,0x17,0xf3,0xb0,0x80,0x0,0x0, - 0x0,0x0,0x18,0xe3,0xaf,0x90,0x0,0x0,0x0,0x0,0x19,0xd3,0xa0,0x90,0x0,0x0, - 0x0,0x0,0x1a,0xc3,0x91,0x90,0x0,0x0,0x0,0x0,0x1b,0xbc,0xbd,0x10,0x0,0x0, - 0x0,0x0,0x1c,0xac,0xae,0x10,0x0,0x0,0x0,0x0,0x1d,0x9c,0x9f,0x10,0x0,0x0, - 0x0,0x0,0x1e,0x8c,0x90,0x10,0x0,0x0,0x0,0x0,0x1f,0x7c,0x81,0x10,0x0,0x0, - 0x0,0x0,0x20,0x6c,0x72,0x10,0x0,0x0,0x0,0x0,0x21,0x5c,0x63,0x10,0x0,0x0, - 0x0,0x0,0x22,0x4c,0x54,0x10,0x0,0x0,0x0,0x0,0x23,0x3c,0x45,0x10,0x0,0x0, - 0x0,0x0,0x24,0x2c,0x36,0x10,0x0,0x0,0x0,0x0,0x25,0x1c,0x27,0x10,0x0,0x0, - 0x0,0x0,0x26,0xc,0x18,0x10,0x0,0x0,0x0,0x0,0x27,0x5,0x43,0x90,0x0,0x0, - 0x0,0x0,0x27,0xf5,0x34,0x90,0x0,0x0,0x0,0x0,0x28,0xe5,0x25,0x90,0x0,0x0, - 0x0,0x0,0x29,0xd5,0x16,0x90,0x0,0x0,0x0,0x0,0x2a,0xc5,0x7,0x90,0x0,0x0, - 0x0,0x0,0x2b,0xb4,0xf8,0x90,0x0,0x0,0x0,0x0,0x2c,0xa4,0xe9,0x90,0x0,0x0, - 0x0,0x0,0x2d,0x94,0xda,0x90,0x0,0x0,0x0,0x0,0x2e,0x84,0xcb,0x90,0x0,0x0, - 0x0,0x0,0x2f,0x74,0xbc,0x90,0x0,0x0,0x0,0x0,0x30,0x64,0xad,0x90,0x0,0x0, - 0x0,0x0,0x31,0x5d,0xd9,0x10,0x0,0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0, - 0x0,0x0,0x33,0x3d,0xbb,0x10,0x0,0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0, - 0x0,0x0,0x35,0x1d,0x9d,0x10,0x0,0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0, - 0x0,0x0,0x36,0xfd,0x7f,0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0, - 0x0,0x0,0x38,0xdd,0x61,0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0, - 0x0,0x0,0x3a,0xbd,0x43,0x10,0x0,0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0, - 0x0,0x0,0x3c,0xa6,0x5f,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0, - 0x0,0x0,0x3e,0x86,0x41,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0, - 0x0,0x0,0x40,0x66,0x23,0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0, - 0x0,0x0,0x42,0x46,0x5,0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0, - 0x0,0x0,0x44,0x25,0xe7,0x90,0x0,0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0, - 0x0,0x0,0x46,0x5,0xc9,0x90,0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0, - 0x0,0x0,0x47,0xee,0xe6,0x10,0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0, - 0x0,0x0,0x49,0xce,0xc8,0x10,0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0, - 0x0,0x0,0x4b,0xae,0xaa,0x10,0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0, - 0x0,0x0,0x4d,0x8e,0x8c,0x10,0x0,0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0, - 0x0,0x0,0x4f,0x6e,0x6e,0x10,0x0,0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0, - 0x0,0x0,0x51,0x57,0x8a,0x90,0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0, - 0x0,0x0,0x53,0x37,0x6c,0x90,0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0, - 0x0,0x0,0x55,0x17,0x4e,0x90,0x0,0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0, - 0x0,0x0,0x56,0xf7,0x30,0x90,0x0,0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0, - 0x0,0x0,0x58,0xd7,0x12,0x90,0x0,0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0, - 0x0,0x0,0x5a,0xb6,0xf4,0x90,0x0,0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0, - 0x0,0x0,0x5c,0xa0,0x11,0x10,0x0,0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0, - 0x0,0x0,0x5e,0x7f,0xf3,0x10,0x0,0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0, - 0x0,0x0,0x60,0x5f,0xd5,0x10,0x0,0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0, - 0x0,0x0,0x62,0x3f,0xb7,0x10,0x0,0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0, - 0x0,0x0,0x64,0x1f,0x99,0x10,0x0,0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0, - 0x0,0x0,0x66,0x8,0xb5,0x90,0x0,0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0, - 0x0,0x0,0x67,0xe8,0x97,0x90,0x0,0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0, - 0x0,0x0,0x69,0xc8,0x79,0x90,0x0,0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0, - 0x0,0x0,0x6b,0xa8,0x5b,0x90,0x0,0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0, - 0x0,0x0,0x6d,0x88,0x3d,0x90,0x0,0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0, - 0x0,0x0,0x6f,0x68,0x1f,0x90,0x0,0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0, - 0x0,0x0,0x71,0x51,0x3c,0x10,0x0,0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0, - 0x0,0x0,0x73,0x31,0x1e,0x10,0x0,0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0, - 0x0,0x0,0x75,0x11,0x0,0x10,0x0,0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0, - 0x0,0x0,0x76,0xf0,0xe2,0x10,0x0,0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0, - 0x0,0x0,0x78,0xd0,0xc4,0x10,0x0,0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0, - 0x0,0x0,0x7a,0xb0,0xa6,0x10,0x0,0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0, - 0x0,0x0,0x7c,0x99,0xc2,0x90,0x0,0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0, - 0x0,0x0,0x7e,0x79,0xa4,0x90,0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x1, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x0,0x0,0x17,0x65,0x0,0x0,0x0,0x0,0x17,0x65,0x0, - 0x4,0x0,0x0,0x2a,0x30,0x1,0x8,0x0,0x0,0x1c,0x20,0x0,0xd,0x0,0x0,0x2a, - 0x30,0x1,0x8,0x0,0x0,0x1c,0x20,0x0,0xd,0x4c,0x4d,0x54,0x0,0x48,0x4d,0x54, - 0x0,0x45,0x45,0x53,0x54,0x0,0x45,0x45,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x1, - 0x0,0x0,0x0,0x0,0x1,0x1,0xa,0x45,0x45,0x54,0x2d,0x32,0x45,0x45,0x53,0x54, - 0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2f,0x33,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e, - 0x30,0x2f,0x34,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Kaliningrad - 0x0,0x0,0x5,0xee, + 0x0,0x0,0x22,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x80,0x0,0x0,0x0,0x91, + 0x60,0x50,0x4f,0xc6,0x3a,0x88,0xe0,0xc7,0x58,0x9e,0x60,0xc7,0xdb,0x22,0xe0,0xca, + 0xe2,0x54,0xe0,0xcb,0xad,0x69,0xf0,0xcc,0xe7,0x4b,0x10,0xcd,0xa9,0x17,0x90,0xcd, + 0xc2,0x16,0x0,0xcd,0xcc,0xb0,0x10,0xce,0xa2,0x35,0x0,0xcf,0x92,0x34,0x10,0xd0, + 0x89,0xe3,0xe0,0xd1,0x72,0x16,0x10,0xd2,0x4e,0x16,0x60,0xd,0xc7,0xdf,0xf0,0xe, + 0x89,0xac,0x70,0xf,0xaa,0x64,0xf0,0x10,0x74,0x1a,0x70,0x22,0xa3,0x3a,0xf0,0x23, + 0x3c,0x28,0xf0,0x24,0x2c,0x19,0xf0,0x25,0x1c,0xa,0xf0,0x26,0x3c,0xc3,0x70,0x27, + 0x5,0x27,0x70,0x42,0x74,0xd,0xf0,0x43,0x3c,0x80,0x0,0x44,0x25,0xe7,0x90,0x45, + 0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49, + 0x3,0xc1,0x10,0x1,0x4,0x2,0x3,0x2,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x0,0x0,0x9,0x8c,0x0,0x0,0x0,0x0,0x2,0x31,0x0, + 0x4,0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0xe,0x10,0x0,0xd,0x0,0x0,0xe, + 0x10,0x0,0xd,0x0,0x0,0x1c,0x20,0x1,0x8,0x4c,0x4d,0x54,0x0,0x50,0x4d,0x54, + 0x0,0x43,0x45,0x53,0x54,0x0,0x43,0x45,0x54,0x0,0x0,0x0,0x1,0x1,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x23,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x11,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x59,0x46, + 0x13,0xf4,0xff,0xff,0xff,0xff,0x91,0x60,0x50,0x4f,0xff,0xff,0xff,0xff,0xc6,0x3a, + 0x88,0xe0,0xff,0xff,0xff,0xff,0xc7,0x58,0x9e,0x60,0xff,0xff,0xff,0xff,0xc7,0xdb, + 0x22,0xe0,0xff,0xff,0xff,0xff,0xca,0xe2,0x54,0xe0,0xff,0xff,0xff,0xff,0xcb,0xad, + 0x69,0xf0,0xff,0xff,0xff,0xff,0xcc,0xe7,0x4b,0x10,0xff,0xff,0xff,0xff,0xcd,0xa9, + 0x17,0x90,0xff,0xff,0xff,0xff,0xcd,0xc2,0x16,0x0,0xff,0xff,0xff,0xff,0xcd,0xcc, + 0xb0,0x10,0xff,0xff,0xff,0xff,0xce,0xa2,0x35,0x0,0xff,0xff,0xff,0xff,0xcf,0x92, + 0x34,0x10,0xff,0xff,0xff,0xff,0xd0,0x89,0xe3,0xe0,0xff,0xff,0xff,0xff,0xd1,0x72, + 0x16,0x10,0xff,0xff,0xff,0xff,0xd2,0x4e,0x16,0x60,0x0,0x0,0x0,0x0,0xd,0xc7, + 0xdf,0xf0,0x0,0x0,0x0,0x0,0xe,0x89,0xac,0x70,0x0,0x0,0x0,0x0,0xf,0xaa, + 0x64,0xf0,0x0,0x0,0x0,0x0,0x10,0x74,0x1a,0x70,0x0,0x0,0x0,0x0,0x22,0xa3, + 0x3a,0xf0,0x0,0x0,0x0,0x0,0x23,0x3c,0x28,0xf0,0x0,0x0,0x0,0x0,0x24,0x2c, + 0x19,0xf0,0x0,0x0,0x0,0x0,0x25,0x1c,0xa,0xf0,0x0,0x0,0x0,0x0,0x26,0x3c, + 0xc3,0x70,0x0,0x0,0x0,0x0,0x27,0x5,0x27,0x70,0x0,0x0,0x0,0x0,0x42,0x74, + 0xd,0xf0,0x0,0x0,0x0,0x0,0x43,0x3c,0x80,0x0,0x0,0x0,0x0,0x0,0x44,0x25, + 0xe7,0x90,0x0,0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5, + 0xc9,0x90,0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee, + 0xe6,0x10,0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x1,0x4,0x2,0x3,0x2, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x0,0x0,0x9, + 0x8c,0x0,0x0,0x0,0x0,0x2,0x31,0x0,0x4,0x0,0x0,0x1c,0x20,0x1,0x8,0x0, + 0x0,0xe,0x10,0x0,0xd,0x0,0x0,0xe,0x10,0x0,0xd,0x0,0x0,0x1c,0x20,0x1, + 0x8,0x4c,0x4d,0x54,0x0,0x50,0x4d,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x43,0x45, + 0x54,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x43, + 0x45,0x54,0x2d,0x31,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Harare + 0x0,0x0,0x0,0xab, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x4f,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x22,0x80,0x0,0x0,0x0,0x9b, - 0xc,0x17,0x60,0x9b,0xd5,0xda,0xf0,0x9c,0xd9,0xae,0x90,0x9d,0xa4,0xb5,0x90,0x9e, - 0xb9,0x90,0x90,0x9f,0x84,0x97,0x90,0xc8,0x9,0x71,0x90,0xcc,0xe7,0x4b,0x10,0xcd, - 0xa9,0x17,0x90,0xce,0xa2,0x43,0x10,0xcf,0x92,0x34,0x10,0xd0,0x82,0x25,0x10,0xd0, - 0xfa,0x1,0x70,0xd1,0x95,0x84,0x60,0xd2,0x8a,0xad,0x50,0xd2,0xdb,0x26,0xe0,0x15, - 0x27,0xa7,0xd0,0x16,0x18,0xdc,0x40,0x17,0x8,0xdb,0x50,0x17,0xfa,0xf,0xc0,0x18, - 0xea,0xe,0xd0,0x19,0xdb,0x43,0x40,0x1a,0xcc,0x93,0xd0,0x1b,0xbc,0xa0,0xf0,0x1c, - 0xac,0x91,0xf0,0x1d,0x9c,0x82,0xf0,0x1e,0x8c,0x73,0xf0,0x1f,0x7c,0x64,0xf0,0x20, - 0x6c,0x55,0xf0,0x21,0x5c,0x46,0xf0,0x22,0x4c,0x37,0xf0,0x23,0x3c,0x28,0xf0,0x24, - 0x2c,0x19,0xf0,0x25,0x1c,0x19,0x0,0x26,0xc,0xa,0x0,0x27,0x5,0x35,0x80,0x27, - 0xf5,0x26,0x80,0x28,0xe5,0x17,0x80,0x29,0xd5,0x8,0x80,0x2a,0xc4,0xf9,0x80,0x2b, - 0xb4,0xea,0x80,0x2c,0xa4,0xdb,0x80,0x2d,0x94,0xcc,0x80,0x2e,0x84,0xbd,0x80,0x2f, - 0x74,0xae,0x80,0x30,0x64,0x9f,0x80,0x31,0x5d,0xcb,0x0,0x32,0x72,0xa6,0x0,0x33, - 0x3d,0xad,0x0,0x34,0x52,0x88,0x0,0x35,0x1d,0x8f,0x0,0x36,0x32,0x6a,0x0,0x36, - 0xfd,0x71,0x0,0x38,0x1b,0x86,0x80,0x38,0xdd,0x53,0x0,0x39,0xfb,0x68,0x80,0x3a, - 0xbd,0x35,0x0,0x3b,0xdb,0x4a,0x80,0x3c,0xa6,0x51,0x80,0x3d,0xbb,0x2c,0x80,0x3e, - 0x86,0x33,0x80,0x3f,0x9b,0xe,0x80,0x40,0x66,0x15,0x80,0x41,0x84,0x2b,0x0,0x42, - 0x45,0xf7,0x80,0x43,0x64,0xd,0x0,0x44,0x25,0xd9,0x80,0x45,0x43,0xef,0x0,0x46, - 0x5,0xbb,0x80,0x47,0x23,0xd1,0x0,0x47,0xee,0xd8,0x0,0x49,0x3,0xb3,0x0,0x49, - 0xce,0xba,0x0,0x4a,0xe3,0x95,0x0,0x4b,0xae,0x9c,0x0,0x4c,0xcc,0xb1,0x80,0x4d, - 0x8e,0x7e,0x0,0x54,0x4c,0x2b,0x70,0x2,0x1,0x2,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x6,0x5,0x6,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x9, - 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, - 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, - 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, - 0xb,0xc,0xb,0xc,0xd,0xc,0x0,0x0,0x13,0x38,0x0,0x0,0x0,0x0,0x1c,0x20, - 0x1,0x4,0x0,0x0,0xe,0x10,0x0,0x9,0x0,0x0,0x1c,0x20,0x1,0x4,0x0,0x0, - 0xe,0x10,0x0,0x9,0x0,0x0,0x2a,0x30,0x1,0x4,0x0,0x0,0x1c,0x20,0x0,0x9, - 0x0,0x0,0x38,0x40,0x1,0xd,0x0,0x0,0x2a,0x30,0x0,0x11,0x0,0x0,0x2a,0x30, - 0x0,0x11,0x0,0x0,0x38,0x40,0x1,0xd,0x0,0x0,0x2a,0x30,0x1,0x15,0x0,0x0, - 0x1c,0x20,0x0,0x1a,0x0,0x0,0x2a,0x30,0x0,0x1e,0x0,0x0,0x1c,0x20,0x0,0x1a, - 0x4c,0x4d,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x43,0x45,0x54,0x0,0x4d,0x53,0x44, - 0x0,0x4d,0x53,0x4b,0x0,0x45,0x45,0x53,0x54,0x0,0x45,0x45,0x54,0x0,0x2b,0x30, - 0x33,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x1, - 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x82, + 0x46,0xc5,0xf4,0x0,0x1,0x0,0x0,0x1e,0x8c,0x0,0x0,0x0,0x0,0x1c,0x20,0x0, + 0x4,0x4c,0x4d,0x54,0x0,0x43,0x41,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, + 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0x82,0x46,0xc5,0xf4,0x0,0x1,0x0,0x0,0x1e,0x8c,0x0, + 0x0,0x0,0x0,0x1c,0x20,0x0,0x4,0x4c,0x4d,0x54,0x0,0x43,0x41,0x54,0x0,0x0, + 0x0,0x0,0x0,0xa,0x43,0x41,0x54,0x2d,0x32,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Bujumbura + 0x0,0x0,0x0,0xab, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x82, + 0x46,0xc5,0xf4,0x0,0x1,0x0,0x0,0x1e,0x8c,0x0,0x0,0x0,0x0,0x1c,0x20,0x0, + 0x4,0x4c,0x4d,0x54,0x0,0x43,0x41,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, + 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0x82,0x46,0xc5,0xf4,0x0,0x1,0x0,0x0,0x1e,0x8c,0x0, + 0x0,0x0,0x0,0x1c,0x20,0x0,0x4,0x4c,0x4d,0x54,0x0,0x43,0x41,0x54,0x0,0x0, + 0x0,0x0,0x0,0xa,0x43,0x41,0x54,0x2d,0x32,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Dar_es_Salaam + 0x0,0x0,0x1,0x1d, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0xb1, + 0xee,0xda,0xfc,0xb4,0xc2,0x9a,0xd0,0xc7,0x91,0x47,0xd8,0xed,0x2f,0xe1,0xd4,0x0, + 0x1,0x2,0x3,0x1,0x0,0x0,0x22,0x84,0x0,0x0,0x0,0x0,0x2a,0x30,0x0,0x4, + 0x0,0x0,0x23,0x28,0x0,0x8,0x0,0x0,0x26,0xac,0x0,0xe,0x0,0x0,0x2a,0x30, + 0x0,0x4,0x4c,0x4d,0x54,0x0,0x45,0x41,0x54,0x0,0x2b,0x30,0x32,0x33,0x30,0x0, + 0x2b,0x30,0x32,0x34,0x35,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x50,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x22,0xf8,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x6f,0xa2,0x5b,0x48,0xff,0xff,0xff,0xff, - 0x9b,0xc,0x17,0x60,0xff,0xff,0xff,0xff,0x9b,0xd5,0xda,0xf0,0xff,0xff,0xff,0xff, - 0x9c,0xd9,0xae,0x90,0xff,0xff,0xff,0xff,0x9d,0xa4,0xb5,0x90,0xff,0xff,0xff,0xff, - 0x9e,0xb9,0x90,0x90,0xff,0xff,0xff,0xff,0x9f,0x84,0x97,0x90,0xff,0xff,0xff,0xff, - 0xc8,0x9,0x71,0x90,0xff,0xff,0xff,0xff,0xcc,0xe7,0x4b,0x10,0xff,0xff,0xff,0xff, - 0xcd,0xa9,0x17,0x90,0xff,0xff,0xff,0xff,0xce,0xa2,0x43,0x10,0xff,0xff,0xff,0xff, - 0xcf,0x92,0x34,0x10,0xff,0xff,0xff,0xff,0xd0,0x82,0x25,0x10,0xff,0xff,0xff,0xff, - 0xd0,0xfa,0x1,0x70,0xff,0xff,0xff,0xff,0xd1,0x95,0x84,0x60,0xff,0xff,0xff,0xff, - 0xd2,0x8a,0xad,0x50,0xff,0xff,0xff,0xff,0xd2,0xdb,0x26,0xe0,0x0,0x0,0x0,0x0, - 0x15,0x27,0xa7,0xd0,0x0,0x0,0x0,0x0,0x16,0x18,0xdc,0x40,0x0,0x0,0x0,0x0, - 0x17,0x8,0xdb,0x50,0x0,0x0,0x0,0x0,0x17,0xfa,0xf,0xc0,0x0,0x0,0x0,0x0, - 0x18,0xea,0xe,0xd0,0x0,0x0,0x0,0x0,0x19,0xdb,0x43,0x40,0x0,0x0,0x0,0x0, - 0x1a,0xcc,0x93,0xd0,0x0,0x0,0x0,0x0,0x1b,0xbc,0xa0,0xf0,0x0,0x0,0x0,0x0, - 0x1c,0xac,0x91,0xf0,0x0,0x0,0x0,0x0,0x1d,0x9c,0x82,0xf0,0x0,0x0,0x0,0x0, - 0x1e,0x8c,0x73,0xf0,0x0,0x0,0x0,0x0,0x1f,0x7c,0x64,0xf0,0x0,0x0,0x0,0x0, - 0x20,0x6c,0x55,0xf0,0x0,0x0,0x0,0x0,0x21,0x5c,0x46,0xf0,0x0,0x0,0x0,0x0, - 0x22,0x4c,0x37,0xf0,0x0,0x0,0x0,0x0,0x23,0x3c,0x28,0xf0,0x0,0x0,0x0,0x0, - 0x24,0x2c,0x19,0xf0,0x0,0x0,0x0,0x0,0x25,0x1c,0x19,0x0,0x0,0x0,0x0,0x0, - 0x26,0xc,0xa,0x0,0x0,0x0,0x0,0x0,0x27,0x5,0x35,0x80,0x0,0x0,0x0,0x0, - 0x27,0xf5,0x26,0x80,0x0,0x0,0x0,0x0,0x28,0xe5,0x17,0x80,0x0,0x0,0x0,0x0, - 0x29,0xd5,0x8,0x80,0x0,0x0,0x0,0x0,0x2a,0xc4,0xf9,0x80,0x0,0x0,0x0,0x0, - 0x2b,0xb4,0xea,0x80,0x0,0x0,0x0,0x0,0x2c,0xa4,0xdb,0x80,0x0,0x0,0x0,0x0, - 0x2d,0x94,0xcc,0x80,0x0,0x0,0x0,0x0,0x2e,0x84,0xbd,0x80,0x0,0x0,0x0,0x0, - 0x2f,0x74,0xae,0x80,0x0,0x0,0x0,0x0,0x30,0x64,0x9f,0x80,0x0,0x0,0x0,0x0, - 0x31,0x5d,0xcb,0x0,0x0,0x0,0x0,0x0,0x32,0x72,0xa6,0x0,0x0,0x0,0x0,0x0, - 0x33,0x3d,0xad,0x0,0x0,0x0,0x0,0x0,0x34,0x52,0x88,0x0,0x0,0x0,0x0,0x0, - 0x35,0x1d,0x8f,0x0,0x0,0x0,0x0,0x0,0x36,0x32,0x6a,0x0,0x0,0x0,0x0,0x0, - 0x36,0xfd,0x71,0x0,0x0,0x0,0x0,0x0,0x38,0x1b,0x86,0x80,0x0,0x0,0x0,0x0, - 0x38,0xdd,0x53,0x0,0x0,0x0,0x0,0x0,0x39,0xfb,0x68,0x80,0x0,0x0,0x0,0x0, - 0x3a,0xbd,0x35,0x0,0x0,0x0,0x0,0x0,0x3b,0xdb,0x4a,0x80,0x0,0x0,0x0,0x0, - 0x3c,0xa6,0x51,0x80,0x0,0x0,0x0,0x0,0x3d,0xbb,0x2c,0x80,0x0,0x0,0x0,0x0, - 0x3e,0x86,0x33,0x80,0x0,0x0,0x0,0x0,0x3f,0x9b,0xe,0x80,0x0,0x0,0x0,0x0, - 0x40,0x66,0x15,0x80,0x0,0x0,0x0,0x0,0x41,0x84,0x2b,0x0,0x0,0x0,0x0,0x0, - 0x42,0x45,0xf7,0x80,0x0,0x0,0x0,0x0,0x43,0x64,0xd,0x0,0x0,0x0,0x0,0x0, - 0x44,0x25,0xd9,0x80,0x0,0x0,0x0,0x0,0x45,0x43,0xef,0x0,0x0,0x0,0x0,0x0, - 0x46,0x5,0xbb,0x80,0x0,0x0,0x0,0x0,0x47,0x23,0xd1,0x0,0x0,0x0,0x0,0x0, - 0x47,0xee,0xd8,0x0,0x0,0x0,0x0,0x0,0x49,0x3,0xb3,0x0,0x0,0x0,0x0,0x0, - 0x49,0xce,0xba,0x0,0x0,0x0,0x0,0x0,0x4a,0xe3,0x95,0x0,0x0,0x0,0x0,0x0, - 0x4b,0xae,0x9c,0x0,0x0,0x0,0x0,0x0,0x4c,0xcc,0xb1,0x80,0x0,0x0,0x0,0x0, - 0x4d,0x8e,0x7e,0x0,0x0,0x0,0x0,0x0,0x54,0x4c,0x2b,0x70,0x0,0x2,0x1,0x2, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x6,0x5,0x6,0x8,0x7,0x8, - 0x7,0x8,0x7,0x8,0x7,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xb,0xc, - 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, - 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, - 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xd,0xc,0x0,0x0,0x13,0x38, - 0x0,0x0,0x0,0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe,0x10,0x0,0x9,0x0,0x0, - 0x1c,0x20,0x1,0x4,0x0,0x0,0xe,0x10,0x0,0x9,0x0,0x0,0x2a,0x30,0x1,0x4, - 0x0,0x0,0x1c,0x20,0x0,0x9,0x0,0x0,0x38,0x40,0x1,0xd,0x0,0x0,0x2a,0x30, - 0x0,0x11,0x0,0x0,0x2a,0x30,0x0,0x11,0x0,0x0,0x38,0x40,0x1,0xd,0x0,0x0, - 0x2a,0x30,0x1,0x15,0x0,0x0,0x1c,0x20,0x0,0x1a,0x0,0x0,0x2a,0x30,0x0,0x1e, - 0x0,0x0,0x1c,0x20,0x0,0x1a,0x4c,0x4d,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x43, - 0x45,0x54,0x0,0x4d,0x53,0x44,0x0,0x4d,0x53,0x4b,0x0,0x45,0x45,0x53,0x54,0x0, - 0x45,0x45,0x54,0x0,0x2b,0x30,0x33,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0, - 0x0,0x1,0x1,0x1,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x45,0x45,0x54,0x2d,0x32,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Bratislava - 0x0,0x0,0x8,0xe0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0xf8,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xb1,0xee,0xda,0xfc,0xff,0xff,0xff,0xff, + 0xb4,0xc2,0x9a,0xd0,0xff,0xff,0xff,0xff,0xc7,0x91,0x47,0xd8,0xff,0xff,0xff,0xff, + 0xed,0x2f,0xe1,0xd4,0x0,0x1,0x2,0x3,0x1,0x0,0x0,0x22,0x84,0x0,0x0,0x0, + 0x0,0x2a,0x30,0x0,0x4,0x0,0x0,0x23,0x28,0x0,0x8,0x0,0x0,0x26,0xac,0x0, + 0xe,0x0,0x0,0x2a,0x30,0x0,0x4,0x4c,0x4d,0x54,0x0,0x45,0x41,0x54,0x0,0x2b, + 0x30,0x32,0x33,0x30,0x0,0x2b,0x30,0x32,0x34,0x35,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0xa,0x45,0x41,0x54,0x2d,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Juba + 0x0,0x0,0x2,0xab, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x8e,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0x9b, - 0xc,0x17,0x60,0x9b,0xd5,0xda,0xf0,0x9c,0xd9,0xae,0x90,0x9d,0xa4,0xb5,0x90,0x9e, - 0xb9,0x90,0x90,0x9f,0x84,0x97,0x90,0xc8,0x9,0x71,0x90,0xcc,0xe7,0x4b,0x10,0xcd, - 0xa9,0x17,0x90,0xce,0xa2,0x43,0x10,0xcf,0x92,0x34,0x10,0xd0,0x6e,0x5e,0x90,0xd1, - 0x79,0xff,0x10,0xd2,0xa1,0x4f,0x10,0xd3,0x80,0x1c,0x90,0xd4,0x49,0xd2,0x10,0xd5, - 0x4c,0x38,0x10,0xd6,0x29,0xb4,0x10,0xd7,0x2c,0x1a,0x10,0xd8,0x9,0x96,0x10,0xd9, - 0x1,0x70,0x10,0xd9,0xe9,0x78,0x10,0x10,0xed,0x64,0x70,0x11,0x64,0x27,0x90,0x12, - 0x54,0x18,0x90,0x13,0x4d,0x44,0x10,0x14,0x33,0xfa,0x90,0x15,0x23,0xeb,0x90,0x16, - 0x13,0xdc,0x90,0x17,0x3,0xcd,0x90,0x17,0xf3,0xbe,0x90,0x18,0xe3,0xaf,0x90,0x19, - 0xd3,0xa0,0x90,0x1a,0xc3,0x91,0x90,0x1b,0xbc,0xbd,0x10,0x1c,0xac,0xae,0x10,0x1d, - 0x9c,0x9f,0x10,0x1e,0x8c,0x90,0x10,0x1f,0x7c,0x81,0x10,0x20,0x6c,0x72,0x10,0x21, - 0x5c,0x63,0x10,0x22,0x4c,0x54,0x10,0x23,0x3c,0x45,0x10,0x24,0x2c,0x36,0x10,0x25, - 0x1c,0x27,0x10,0x26,0xc,0x18,0x10,0x27,0x5,0x43,0x90,0x27,0xf5,0x34,0x90,0x28, - 0xe5,0x25,0x90,0x29,0xd5,0x16,0x90,0x2a,0xc5,0x7,0x90,0x2b,0xb4,0xf8,0x90,0x2c, - 0xa4,0xe9,0x90,0x2d,0x94,0xda,0x90,0x2e,0x84,0xcb,0x90,0x2f,0x74,0xbc,0x90,0x30, - 0x64,0xad,0x90,0x31,0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34, - 0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38, - 0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b, - 0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f, - 0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43, - 0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47, - 0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a, - 0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e, - 0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52, - 0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56, - 0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59, - 0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d, - 0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61, - 0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65, - 0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68, - 0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c, - 0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70, - 0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74, - 0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78, - 0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b, - 0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f, - 0x8e,0x7f,0x90,0x2,0x1,0x2,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x2,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x0,0x0,0xd,0x88,0x0,0x0,0x0,0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe, - 0x10,0x0,0x9,0x0,0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe,0x10,0x0,0x9,0x0, - 0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe,0x10,0x0,0x9,0x50,0x4d,0x54,0x0,0x43, - 0x45,0x53,0x54,0x0,0x43,0x45,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x0, - 0x0,0x0,0x0,0x0,0x1,0x1,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0, - 0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x90,0x0,0x0,0x0,0x8,0x0,0x0, - 0x0,0x11,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1e,0x49, - 0x92,0xf8,0xff,0xff,0xff,0xff,0x6c,0xcf,0xea,0xf8,0xff,0xff,0xff,0xff,0x9b,0xc, - 0x17,0x60,0xff,0xff,0xff,0xff,0x9b,0xd5,0xda,0xf0,0xff,0xff,0xff,0xff,0x9c,0xd9, - 0xae,0x90,0xff,0xff,0xff,0xff,0x9d,0xa4,0xb5,0x90,0xff,0xff,0xff,0xff,0x9e,0xb9, - 0x90,0x90,0xff,0xff,0xff,0xff,0x9f,0x84,0x97,0x90,0xff,0xff,0xff,0xff,0xc8,0x9, - 0x71,0x90,0xff,0xff,0xff,0xff,0xcc,0xe7,0x4b,0x10,0xff,0xff,0xff,0xff,0xcd,0xa9, - 0x17,0x90,0xff,0xff,0xff,0xff,0xce,0xa2,0x43,0x10,0xff,0xff,0xff,0xff,0xcf,0x92, - 0x34,0x10,0xff,0xff,0xff,0xff,0xd0,0x6e,0x5e,0x90,0xff,0xff,0xff,0xff,0xd1,0x79, - 0xff,0x10,0xff,0xff,0xff,0xff,0xd2,0xa1,0x4f,0x10,0xff,0xff,0xff,0xff,0xd3,0x80, - 0x1c,0x90,0xff,0xff,0xff,0xff,0xd4,0x49,0xd2,0x10,0xff,0xff,0xff,0xff,0xd5,0x4c, - 0x38,0x10,0xff,0xff,0xff,0xff,0xd6,0x29,0xb4,0x10,0xff,0xff,0xff,0xff,0xd7,0x2c, - 0x1a,0x10,0xff,0xff,0xff,0xff,0xd8,0x9,0x96,0x10,0xff,0xff,0xff,0xff,0xd9,0x1, - 0x70,0x10,0xff,0xff,0xff,0xff,0xd9,0xe9,0x78,0x10,0x0,0x0,0x0,0x0,0x10,0xed, - 0x64,0x70,0x0,0x0,0x0,0x0,0x11,0x64,0x27,0x90,0x0,0x0,0x0,0x0,0x12,0x54, - 0x18,0x90,0x0,0x0,0x0,0x0,0x13,0x4d,0x44,0x10,0x0,0x0,0x0,0x0,0x14,0x33, - 0xfa,0x90,0x0,0x0,0x0,0x0,0x15,0x23,0xeb,0x90,0x0,0x0,0x0,0x0,0x16,0x13, - 0xdc,0x90,0x0,0x0,0x0,0x0,0x17,0x3,0xcd,0x90,0x0,0x0,0x0,0x0,0x17,0xf3, - 0xbe,0x90,0x0,0x0,0x0,0x0,0x18,0xe3,0xaf,0x90,0x0,0x0,0x0,0x0,0x19,0xd3, - 0xa0,0x90,0x0,0x0,0x0,0x0,0x1a,0xc3,0x91,0x90,0x0,0x0,0x0,0x0,0x1b,0xbc, - 0xbd,0x10,0x0,0x0,0x0,0x0,0x1c,0xac,0xae,0x10,0x0,0x0,0x0,0x0,0x1d,0x9c, - 0x9f,0x10,0x0,0x0,0x0,0x0,0x1e,0x8c,0x90,0x10,0x0,0x0,0x0,0x0,0x1f,0x7c, - 0x81,0x10,0x0,0x0,0x0,0x0,0x20,0x6c,0x72,0x10,0x0,0x0,0x0,0x0,0x21,0x5c, - 0x63,0x10,0x0,0x0,0x0,0x0,0x22,0x4c,0x54,0x10,0x0,0x0,0x0,0x0,0x23,0x3c, - 0x45,0x10,0x0,0x0,0x0,0x0,0x24,0x2c,0x36,0x10,0x0,0x0,0x0,0x0,0x25,0x1c, - 0x27,0x10,0x0,0x0,0x0,0x0,0x26,0xc,0x18,0x10,0x0,0x0,0x0,0x0,0x27,0x5, - 0x43,0x90,0x0,0x0,0x0,0x0,0x27,0xf5,0x34,0x90,0x0,0x0,0x0,0x0,0x28,0xe5, - 0x25,0x90,0x0,0x0,0x0,0x0,0x29,0xd5,0x16,0x90,0x0,0x0,0x0,0x0,0x2a,0xc5, - 0x7,0x90,0x0,0x0,0x0,0x0,0x2b,0xb4,0xf8,0x90,0x0,0x0,0x0,0x0,0x2c,0xa4, - 0xe9,0x90,0x0,0x0,0x0,0x0,0x2d,0x94,0xda,0x90,0x0,0x0,0x0,0x0,0x2e,0x84, - 0xcb,0x90,0x0,0x0,0x0,0x0,0x2f,0x74,0xbc,0x90,0x0,0x0,0x0,0x0,0x30,0x64, - 0xad,0x90,0x0,0x0,0x0,0x0,0x31,0x5d,0xd9,0x10,0x0,0x0,0x0,0x0,0x32,0x72, - 0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d,0xbb,0x10,0x0,0x0,0x0,0x0,0x34,0x52, - 0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d,0x9d,0x10,0x0,0x0,0x0,0x0,0x36,0x32, - 0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd,0x7f,0x10,0x0,0x0,0x0,0x0,0x38,0x1b, - 0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd,0x61,0x10,0x0,0x0,0x0,0x0,0x39,0xfb, - 0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd,0x43,0x10,0x0,0x0,0x0,0x0,0x3b,0xdb, - 0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb, - 0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86,0x41,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b, - 0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66,0x23,0x90,0x0,0x0,0x0,0x0,0x41,0x84, - 0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46,0x5,0x90,0x0,0x0,0x0,0x0,0x43,0x64, - 0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25,0xe7,0x90,0x0,0x0,0x0,0x0,0x45,0x43, - 0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5,0xc9,0x90,0x0,0x0,0x0,0x0,0x47,0x23, - 0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee,0xe6,0x10,0x0,0x0,0x0,0x0,0x49,0x3, - 0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce,0xc8,0x10,0x0,0x0,0x0,0x0,0x4a,0xe3, - 0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae,0xaa,0x10,0x0,0x0,0x0,0x0,0x4c,0xcc, - 0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c,0x10,0x0,0x0,0x0,0x0,0x4e,0xac, - 0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e,0x10,0x0,0x0,0x0,0x0,0x50,0x8c, - 0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57,0x8a,0x90,0x0,0x0,0x0,0x0,0x52,0x6c, - 0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37,0x6c,0x90,0x0,0x0,0x0,0x0,0x54,0x4c, - 0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17,0x4e,0x90,0x0,0x0,0x0,0x0,0x56,0x2c, - 0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7,0x30,0x90,0x0,0x0,0x0,0x0,0x58,0x15, - 0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7,0x12,0x90,0x0,0x0,0x0,0x0,0x59,0xf5, - 0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4,0x90,0x0,0x0,0x0,0x0,0x5b,0xd5, - 0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0,0x11,0x10,0x0,0x0,0x0,0x0,0x5d,0xb4, - 0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3,0x10,0x0,0x0,0x0,0x0,0x5f,0x94, - 0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f,0xd5,0x10,0x0,0x0,0x0,0x0,0x61,0x7d, - 0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f,0xb7,0x10,0x0,0x0,0x0,0x0,0x63,0x5d, - 0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f,0x99,0x10,0x0,0x0,0x0,0x0,0x65,0x3d, - 0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8,0xb5,0x90,0x0,0x0,0x0,0x0,0x67,0x1d, - 0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8,0x97,0x90,0x0,0x0,0x0,0x0,0x68,0xfd, - 0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8,0x79,0x90,0x0,0x0,0x0,0x0,0x6a,0xdd, - 0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b,0x90,0x0,0x0,0x0,0x0,0x6c,0xc6, - 0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88,0x3d,0x90,0x0,0x0,0x0,0x0,0x6e,0xa6, - 0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68,0x1f,0x90,0x0,0x0,0x0,0x0,0x70,0x86, - 0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51,0x3c,0x10,0x0,0x0,0x0,0x0,0x72,0x66, - 0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31,0x1e,0x10,0x0,0x0,0x0,0x0,0x74,0x45, - 0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11,0x0,0x10,0x0,0x0,0x0,0x0,0x76,0x2f, - 0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0,0xe2,0x10,0x0,0x0,0x0,0x0,0x78,0xe, - 0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0,0xc4,0x10,0x0,0x0,0x0,0x0,0x79,0xee, - 0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6,0x10,0x0,0x0,0x0,0x0,0x7b,0xce, - 0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99,0xc2,0x90,0x0,0x0,0x0,0x0,0x7d,0xae, - 0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79,0xa4,0x90,0x0,0x0,0x0,0x0,0x7f,0x8e, - 0x7f,0x90,0x0,0x1,0x3,0x2,0x3,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x3,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x0,0x0,0xd,0x88,0x0,0x0,0x0,0x0,0xd,0x88,0x0,0x4,0x0,0x0, - 0x1c,0x20,0x1,0x8,0x0,0x0,0xe,0x10,0x0,0xd,0x0,0x0,0x1c,0x20,0x1,0x8, - 0x0,0x0,0xe,0x10,0x0,0xd,0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0xe,0x10, - 0x0,0xd,0x4c,0x4d,0x54,0x0,0x50,0x4d,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x43, - 0x45,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0, - 0x0,0x1,0x1,0xa,0x43,0x45,0x54,0x2d,0x31,0x43,0x45,0x53,0x54,0x2c,0x4d,0x33, - 0x2e,0x35,0x2e,0x30,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30,0x2f,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Busingen - 0x0,0x0,0x7,0x7e, + 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x23,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x11,0x80,0x0,0x0,0x0,0xb6, + 0xa3,0xda,0xdc,0x0,0x9e,0x17,0xe0,0x1,0x7a,0x34,0x50,0x2,0x7d,0xf9,0xe0,0x3, + 0x5b,0x67,0xd0,0x4,0x60,0x7e,0xe0,0x5,0x3d,0xec,0xd0,0x6,0x40,0x60,0xe0,0x7, + 0x1f,0x20,0x50,0x8,0x20,0x42,0xe0,0x9,0x0,0x53,0xd0,0xa,0x0,0x24,0xe0,0xa, + 0xe1,0x87,0x50,0xb,0xe0,0x6,0xe0,0xc,0xc4,0xc,0x50,0xd,0xbf,0xe8,0xe0,0xe, + 0xa5,0x3f,0xd0,0xf,0xa9,0x5,0x60,0x10,0x86,0x73,0x50,0x11,0x88,0xe7,0x60,0x12, + 0x67,0xa6,0xd0,0x13,0x68,0xc9,0x60,0x14,0x4a,0x2b,0xd0,0x15,0x48,0xab,0x60,0x16, + 0x2b,0x5f,0x50,0x17,0x28,0x8d,0x60,0x18,0xc,0x92,0xd0,0x19,0x8,0x6f,0x60,0x19, + 0xed,0xc6,0x50,0x1a,0xf1,0x8b,0xe0,0x1b,0xd0,0x4b,0x50,0x1c,0xd1,0x6d,0xe0,0x1d, + 0xb1,0x7e,0xd0,0x38,0x80,0x45,0x20,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x0,0x0,0x1d,0xa4,0x0,0x0, + 0x0,0x0,0x2a,0x30,0x1,0x4,0x0,0x0,0x1c,0x20,0x0,0x9,0x0,0x0,0x2a,0x30, + 0x0,0xd,0x4c,0x4d,0x54,0x0,0x43,0x41,0x53,0x54,0x0,0x43,0x41,0x54,0x0,0x45, + 0x41,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x23,0x0, + 0x0,0x0,0x4,0x0,0x0,0x0,0x11,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff, + 0xff,0xff,0xff,0xb6,0xa3,0xda,0xdc,0x0,0x0,0x0,0x0,0x0,0x9e,0x17,0xe0,0x0, + 0x0,0x0,0x0,0x1,0x7a,0x34,0x50,0x0,0x0,0x0,0x0,0x2,0x7d,0xf9,0xe0,0x0, + 0x0,0x0,0x0,0x3,0x5b,0x67,0xd0,0x0,0x0,0x0,0x0,0x4,0x60,0x7e,0xe0,0x0, + 0x0,0x0,0x0,0x5,0x3d,0xec,0xd0,0x0,0x0,0x0,0x0,0x6,0x40,0x60,0xe0,0x0, + 0x0,0x0,0x0,0x7,0x1f,0x20,0x50,0x0,0x0,0x0,0x0,0x8,0x20,0x42,0xe0,0x0, + 0x0,0x0,0x0,0x9,0x0,0x53,0xd0,0x0,0x0,0x0,0x0,0xa,0x0,0x24,0xe0,0x0, + 0x0,0x0,0x0,0xa,0xe1,0x87,0x50,0x0,0x0,0x0,0x0,0xb,0xe0,0x6,0xe0,0x0, + 0x0,0x0,0x0,0xc,0xc4,0xc,0x50,0x0,0x0,0x0,0x0,0xd,0xbf,0xe8,0xe0,0x0, + 0x0,0x0,0x0,0xe,0xa5,0x3f,0xd0,0x0,0x0,0x0,0x0,0xf,0xa9,0x5,0x60,0x0, + 0x0,0x0,0x0,0x10,0x86,0x73,0x50,0x0,0x0,0x0,0x0,0x11,0x88,0xe7,0x60,0x0, + 0x0,0x0,0x0,0x12,0x67,0xa6,0xd0,0x0,0x0,0x0,0x0,0x13,0x68,0xc9,0x60,0x0, + 0x0,0x0,0x0,0x14,0x4a,0x2b,0xd0,0x0,0x0,0x0,0x0,0x15,0x48,0xab,0x60,0x0, + 0x0,0x0,0x0,0x16,0x2b,0x5f,0x50,0x0,0x0,0x0,0x0,0x17,0x28,0x8d,0x60,0x0, + 0x0,0x0,0x0,0x18,0xc,0x92,0xd0,0x0,0x0,0x0,0x0,0x19,0x8,0x6f,0x60,0x0, + 0x0,0x0,0x0,0x19,0xed,0xc6,0x50,0x0,0x0,0x0,0x0,0x1a,0xf1,0x8b,0xe0,0x0, + 0x0,0x0,0x0,0x1b,0xd0,0x4b,0x50,0x0,0x0,0x0,0x0,0x1c,0xd1,0x6d,0xe0,0x0, + 0x0,0x0,0x0,0x1d,0xb1,0x7e,0xd0,0x0,0x0,0x0,0x0,0x38,0x80,0x45,0x20,0x0, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x3,0x0,0x0,0x1d,0xa4,0x0,0x0,0x0,0x0,0x2a,0x30,0x1,0x4,0x0,0x0, + 0x1c,0x20,0x0,0x9,0x0,0x0,0x2a,0x30,0x0,0xd,0x4c,0x4d,0x54,0x0,0x43,0x41, + 0x53,0x54,0x0,0x43,0x41,0x54,0x0,0x45,0x41,0x54,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0xa,0x45,0x41,0x54,0x2d,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Maseru + 0x0,0x0,0x1,0xf, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x77,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0xca, - 0x17,0x6a,0x0,0xca,0xe2,0x71,0x0,0xcb,0xf7,0x4c,0x0,0xcc,0xc2,0x53,0x0,0x15, - 0x23,0xeb,0x90,0x16,0x13,0xdc,0x90,0x17,0x3,0xcd,0x90,0x17,0xf3,0xbe,0x90,0x18, - 0xe3,0xaf,0x90,0x19,0xd3,0xa0,0x90,0x1a,0xc3,0x91,0x90,0x1b,0xbc,0xbd,0x10,0x1c, - 0xac,0xae,0x10,0x1d,0x9c,0x9f,0x10,0x1e,0x8c,0x90,0x10,0x1f,0x7c,0x81,0x10,0x20, - 0x6c,0x72,0x10,0x21,0x5c,0x63,0x10,0x22,0x4c,0x54,0x10,0x23,0x3c,0x45,0x10,0x24, - 0x2c,0x36,0x10,0x25,0x1c,0x27,0x10,0x26,0xc,0x18,0x10,0x27,0x5,0x43,0x90,0x27, - 0xf5,0x34,0x90,0x28,0xe5,0x25,0x90,0x29,0xd5,0x16,0x90,0x2a,0xc5,0x7,0x90,0x2b, - 0xb4,0xf8,0x90,0x2c,0xa4,0xe9,0x90,0x2d,0x94,0xda,0x90,0x2e,0x84,0xcb,0x90,0x2f, - 0x74,0xbc,0x90,0x30,0x64,0xad,0x90,0x31,0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33, - 0x3d,0xbb,0x10,0x34,0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36, - 0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a, - 0xbd,0x43,0x10,0x3b,0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e, - 0x86,0x41,0x90,0x3f,0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42, - 0x46,0x5,0x90,0x43,0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46, - 0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49, - 0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d, - 0x8e,0x8c,0x10,0x4e,0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51, - 0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55, - 0x17,0x4e,0x90,0x56,0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58, - 0xd7,0x12,0x90,0x59,0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c, - 0xa0,0x11,0x10,0x5d,0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60, - 0x5f,0xd5,0x10,0x61,0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64, - 0x1f,0x99,0x10,0x65,0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67, - 0xe8,0x97,0x90,0x68,0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b, - 0xa8,0x5b,0x90,0x6c,0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f, - 0x68,0x1f,0x90,0x70,0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73, - 0x31,0x1e,0x10,0x74,0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76, - 0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a, - 0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e, - 0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x0,0x0, - 0x6,0xfa,0x0,0x0,0x0,0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe,0x10,0x0,0x9, - 0x0,0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe,0x10,0x0,0x9,0x42,0x4d,0x54,0x0, - 0x43,0x45,0x53,0x54,0x0,0x43,0x45,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0, - 0x0,0x1,0x1,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x79,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0xf8, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x24,0xf0,0xea,0x80,0xff, - 0xff,0xff,0xff,0x71,0xd4,0x6,0x86,0xff,0xff,0xff,0xff,0xca,0x17,0x6a,0x0,0xff, - 0xff,0xff,0xff,0xca,0xe2,0x71,0x0,0xff,0xff,0xff,0xff,0xcb,0xf7,0x4c,0x0,0xff, - 0xff,0xff,0xff,0xcc,0xc2,0x53,0x0,0x0,0x0,0x0,0x0,0x15,0x23,0xeb,0x90,0x0, - 0x0,0x0,0x0,0x16,0x13,0xdc,0x90,0x0,0x0,0x0,0x0,0x17,0x3,0xcd,0x90,0x0, - 0x0,0x0,0x0,0x17,0xf3,0xbe,0x90,0x0,0x0,0x0,0x0,0x18,0xe3,0xaf,0x90,0x0, - 0x0,0x0,0x0,0x19,0xd3,0xa0,0x90,0x0,0x0,0x0,0x0,0x1a,0xc3,0x91,0x90,0x0, - 0x0,0x0,0x0,0x1b,0xbc,0xbd,0x10,0x0,0x0,0x0,0x0,0x1c,0xac,0xae,0x10,0x0, - 0x0,0x0,0x0,0x1d,0x9c,0x9f,0x10,0x0,0x0,0x0,0x0,0x1e,0x8c,0x90,0x10,0x0, - 0x0,0x0,0x0,0x1f,0x7c,0x81,0x10,0x0,0x0,0x0,0x0,0x20,0x6c,0x72,0x10,0x0, - 0x0,0x0,0x0,0x21,0x5c,0x63,0x10,0x0,0x0,0x0,0x0,0x22,0x4c,0x54,0x10,0x0, - 0x0,0x0,0x0,0x23,0x3c,0x45,0x10,0x0,0x0,0x0,0x0,0x24,0x2c,0x36,0x10,0x0, - 0x0,0x0,0x0,0x25,0x1c,0x27,0x10,0x0,0x0,0x0,0x0,0x26,0xc,0x18,0x10,0x0, - 0x0,0x0,0x0,0x27,0x5,0x43,0x90,0x0,0x0,0x0,0x0,0x27,0xf5,0x34,0x90,0x0, - 0x0,0x0,0x0,0x28,0xe5,0x25,0x90,0x0,0x0,0x0,0x0,0x29,0xd5,0x16,0x90,0x0, - 0x0,0x0,0x0,0x2a,0xc5,0x7,0x90,0x0,0x0,0x0,0x0,0x2b,0xb4,0xf8,0x90,0x0, - 0x0,0x0,0x0,0x2c,0xa4,0xe9,0x90,0x0,0x0,0x0,0x0,0x2d,0x94,0xda,0x90,0x0, - 0x0,0x0,0x0,0x2e,0x84,0xcb,0x90,0x0,0x0,0x0,0x0,0x2f,0x74,0xbc,0x90,0x0, - 0x0,0x0,0x0,0x30,0x64,0xad,0x90,0x0,0x0,0x0,0x0,0x31,0x5d,0xd9,0x10,0x0, - 0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d,0xbb,0x10,0x0, - 0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d,0x9d,0x10,0x0, - 0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd,0x7f,0x10,0x0, - 0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd,0x61,0x10,0x0, - 0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd,0x43,0x10,0x0, - 0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f,0x90,0x0, - 0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86,0x41,0x90,0x0, - 0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66,0x23,0x90,0x0, - 0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46,0x5,0x90,0x0, - 0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25,0xe7,0x90,0x0, - 0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5,0xc9,0x90,0x0, - 0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee,0xe6,0x10,0x0, - 0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce,0xc8,0x10,0x0, - 0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae,0xaa,0x10,0x0, - 0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c,0x10,0x0, - 0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e,0x10,0x0, - 0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57,0x8a,0x90,0x0, - 0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37,0x6c,0x90,0x0, - 0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17,0x4e,0x90,0x0, - 0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7,0x30,0x90,0x0, - 0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7,0x12,0x90,0x0, - 0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4,0x90,0x0, - 0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0,0x11,0x10,0x0, - 0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3,0x10,0x0, - 0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f,0xd5,0x10,0x0, - 0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f,0xb7,0x10,0x0, - 0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f,0x99,0x10,0x0, - 0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8,0xb5,0x90,0x0, - 0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8,0x97,0x90,0x0, - 0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8,0x79,0x90,0x0, - 0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b,0x90,0x0, - 0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88,0x3d,0x90,0x0, - 0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68,0x1f,0x90,0x0, - 0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51,0x3c,0x10,0x0, - 0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31,0x1e,0x10,0x0, - 0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11,0x0,0x10,0x0, - 0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0,0xe2,0x10,0x0, - 0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0,0xc4,0x10,0x0, - 0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6,0x10,0x0, - 0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99,0xc2,0x90,0x0, - 0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79,0xa4,0x90,0x0, - 0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x1,0x3,0x2,0x3,0x2,0x3,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x6,0xfa,0x0,0x4,0x0,0x0,0x1c,0x20, - 0x1,0x8,0x0,0x0,0xe,0x10,0x0,0xd,0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0, - 0xe,0x10,0x0,0xd,0x4c,0x4d,0x54,0x0,0x42,0x4d,0x54,0x0,0x43,0x45,0x53,0x54, - 0x0,0x43,0x45,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x1, - 0x1,0xa,0x43,0x45,0x54,0x2d,0x31,0x43,0x45,0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35, - 0x2e,0x30,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30,0x2f,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Vatican - 0x0,0x0,0xa,0x84, + 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x9,0x80,0x0,0x0,0x0,0x82, + 0x46,0xcf,0x68,0xcc,0xae,0x8c,0x80,0xcd,0x9e,0x6f,0x70,0xce,0x8e,0x6e,0x80,0xcf, + 0x7e,0x51,0x70,0x1,0x3,0x2,0x3,0x2,0x3,0x0,0x0,0x1a,0x40,0x0,0x0,0x0, + 0x0,0x15,0x18,0x0,0x4,0x0,0x0,0x2a,0x30,0x1,0x4,0x0,0x0,0x1c,0x20,0x0, + 0x4,0x4c,0x4d,0x54,0x0,0x53,0x41,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x9,0xf8,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x6d,0x7b,0x41,0x40,0xff,0xff, + 0xff,0xff,0x82,0x46,0xcf,0x68,0xff,0xff,0xff,0xff,0xcc,0xae,0x8c,0x80,0xff,0xff, + 0xff,0xff,0xcd,0x9e,0x6f,0x70,0xff,0xff,0xff,0xff,0xce,0x8e,0x6e,0x80,0xff,0xff, + 0xff,0xff,0xcf,0x7e,0x51,0x70,0x0,0x1,0x3,0x2,0x3,0x2,0x3,0x0,0x0,0x1a, + 0x40,0x0,0x0,0x0,0x0,0x15,0x18,0x0,0x4,0x0,0x0,0x2a,0x30,0x1,0x4,0x0, + 0x0,0x1c,0x20,0x0,0x4,0x4c,0x4d,0x54,0x0,0x53,0x41,0x53,0x54,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x53,0x41,0x53,0x54,0x2d,0x32,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Dakar + 0x0,0x0,0x0,0xaa, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xac,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0x9b, - 0x38,0xf8,0x70,0x9b,0xd5,0xcc,0xe0,0x9c,0xc5,0xcb,0xf0,0x9d,0xb7,0x0,0x60,0x9e, - 0x89,0xfe,0x70,0x9f,0xa0,0x1c,0xe0,0xa0,0x60,0xa5,0xf0,0xa1,0x7e,0xad,0x60,0xa2, - 0x5c,0x37,0x70,0xa3,0x4c,0x1a,0x60,0xc8,0x6c,0x35,0xf0,0xcc,0xe7,0x4b,0x10,0xcd, - 0xa9,0x17,0x90,0xce,0x82,0x74,0xe0,0xce,0xa2,0x43,0x10,0xcf,0x92,0x34,0x10,0xcf, - 0xe3,0xc6,0xe0,0xd0,0x6e,0x5e,0x90,0xd1,0x72,0x16,0x10,0xd2,0x4c,0xd2,0xf0,0xd3, - 0x3e,0x31,0x90,0xd4,0x49,0xd2,0x10,0xd5,0x1d,0xf7,0x70,0xd6,0x29,0x97,0xf0,0xd6, - 0xeb,0x80,0x90,0xd8,0x9,0x96,0x10,0xf9,0x33,0xb5,0xf0,0xf9,0xd9,0xc4,0xe0,0xfb, - 0x1c,0xd2,0x70,0xfb,0xb9,0xb4,0xf0,0xfc,0xfc,0xb4,0x70,0xfd,0x99,0x96,0xf0,0xfe, - 0xe5,0xd0,0xf0,0xff,0x82,0xb3,0x70,0x0,0xc5,0xb2,0xf0,0x1,0x62,0x95,0x70,0x2, - 0x9c,0x5a,0x70,0x3,0x42,0x77,0x70,0x4,0x85,0x76,0xf0,0x5,0x2b,0x93,0xf0,0x6, - 0x6e,0x93,0x70,0x7,0xb,0x75,0xf0,0x8,0x45,0x3a,0xf0,0x8,0xeb,0x57,0xf0,0xa, - 0x2e,0x57,0x70,0xa,0xcb,0x39,0xf0,0xc,0xe,0x39,0x70,0xc,0xab,0x1b,0xf0,0xd, - 0xe4,0xe0,0xf0,0xe,0x8a,0xfd,0xf0,0xf,0xcd,0xfd,0x70,0x10,0x74,0x1a,0x70,0x11, - 0xad,0xdf,0x70,0x12,0x53,0xfc,0x70,0x12,0xce,0x97,0xf0,0x13,0x4d,0x44,0x10,0x14, - 0x33,0xfa,0x90,0x15,0x23,0xeb,0x90,0x16,0x13,0xdc,0x90,0x17,0x3,0xcd,0x90,0x17, - 0xf3,0xbe,0x90,0x18,0xe3,0xaf,0x90,0x19,0xd3,0xa0,0x90,0x1a,0xc3,0x91,0x90,0x1b, - 0xbc,0xbd,0x10,0x1c,0xac,0xae,0x10,0x1d,0x9c,0x9f,0x10,0x1e,0x8c,0x90,0x10,0x1f, - 0x7c,0x81,0x10,0x20,0x6c,0x72,0x10,0x21,0x5c,0x63,0x10,0x22,0x4c,0x54,0x10,0x23, - 0x3c,0x45,0x10,0x24,0x2c,0x36,0x10,0x25,0x1c,0x27,0x10,0x26,0xc,0x18,0x10,0x27, - 0x5,0x43,0x90,0x27,0xf5,0x34,0x90,0x28,0xe5,0x25,0x90,0x29,0xd5,0x16,0x90,0x2a, - 0xc5,0x7,0x90,0x2b,0xb4,0xf8,0x90,0x2c,0xa4,0xe9,0x90,0x2d,0x94,0xda,0x90,0x2e, - 0x84,0xcb,0x90,0x2f,0x74,0xbc,0x90,0x30,0x64,0xad,0x90,0x31,0x5d,0xd9,0x10,0x32, - 0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34,0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36, - 0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39, - 0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b,0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d, - 0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f,0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41, - 0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43,0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45, - 0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49, - 0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c, - 0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e,0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50, - 0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54, - 0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56,0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58, - 0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59,0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b, - 0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d,0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f, - 0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61,0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63, - 0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65,0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67, - 0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68,0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a, - 0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c,0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e, - 0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70,0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72, - 0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74,0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76, - 0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79, - 0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d, - 0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x3,0x4,0x1,0x3,0x4,0x1,0x3,0x1,0x2, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x2,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x2,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x0,0x0,0xb,0xb4,0x0,0x0,0x0,0x0,0x1c, - 0x20,0x1,0x4,0x0,0x0,0xe,0x10,0x0,0x9,0x0,0x0,0xe,0x10,0x0,0x9,0x0, - 0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe,0x10,0x0, - 0x9,0x52,0x4d,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x43,0x45,0x54,0x0,0x0,0x0, - 0x0,0x1,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x54,0x5a,0x69,0x66, - 0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xae, - 0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x11,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0xff,0xff,0xff,0xff,0x3d,0xbe,0x1e,0xcc,0xff,0xff,0xff,0xff,0x70,0xbc,0x81,0x70, - 0xff,0xff,0xff,0xff,0x9b,0x38,0xf8,0x70,0xff,0xff,0xff,0xff,0x9b,0xd5,0xcc,0xe0, - 0xff,0xff,0xff,0xff,0x9c,0xc5,0xcb,0xf0,0xff,0xff,0xff,0xff,0x9d,0xb7,0x0,0x60, - 0xff,0xff,0xff,0xff,0x9e,0x89,0xfe,0x70,0xff,0xff,0xff,0xff,0x9f,0xa0,0x1c,0xe0, - 0xff,0xff,0xff,0xff,0xa0,0x60,0xa5,0xf0,0xff,0xff,0xff,0xff,0xa1,0x7e,0xad,0x60, - 0xff,0xff,0xff,0xff,0xa2,0x5c,0x37,0x70,0xff,0xff,0xff,0xff,0xa3,0x4c,0x1a,0x60, - 0xff,0xff,0xff,0xff,0xc8,0x6c,0x35,0xf0,0xff,0xff,0xff,0xff,0xcc,0xe7,0x4b,0x10, - 0xff,0xff,0xff,0xff,0xcd,0xa9,0x17,0x90,0xff,0xff,0xff,0xff,0xce,0x82,0x74,0xe0, - 0xff,0xff,0xff,0xff,0xce,0xa2,0x43,0x10,0xff,0xff,0xff,0xff,0xcf,0x92,0x34,0x10, - 0xff,0xff,0xff,0xff,0xcf,0xe3,0xc6,0xe0,0xff,0xff,0xff,0xff,0xd0,0x6e,0x5e,0x90, - 0xff,0xff,0xff,0xff,0xd1,0x72,0x16,0x10,0xff,0xff,0xff,0xff,0xd2,0x4c,0xd2,0xf0, - 0xff,0xff,0xff,0xff,0xd3,0x3e,0x31,0x90,0xff,0xff,0xff,0xff,0xd4,0x49,0xd2,0x10, - 0xff,0xff,0xff,0xff,0xd5,0x1d,0xf7,0x70,0xff,0xff,0xff,0xff,0xd6,0x29,0x97,0xf0, - 0xff,0xff,0xff,0xff,0xd6,0xeb,0x80,0x90,0xff,0xff,0xff,0xff,0xd8,0x9,0x96,0x10, - 0xff,0xff,0xff,0xff,0xf9,0x33,0xb5,0xf0,0xff,0xff,0xff,0xff,0xf9,0xd9,0xc4,0xe0, - 0xff,0xff,0xff,0xff,0xfb,0x1c,0xd2,0x70,0xff,0xff,0xff,0xff,0xfb,0xb9,0xb4,0xf0, - 0xff,0xff,0xff,0xff,0xfc,0xfc,0xb4,0x70,0xff,0xff,0xff,0xff,0xfd,0x99,0x96,0xf0, - 0xff,0xff,0xff,0xff,0xfe,0xe5,0xd0,0xf0,0xff,0xff,0xff,0xff,0xff,0x82,0xb3,0x70, - 0x0,0x0,0x0,0x0,0x0,0xc5,0xb2,0xf0,0x0,0x0,0x0,0x0,0x1,0x62,0x95,0x70, - 0x0,0x0,0x0,0x0,0x2,0x9c,0x5a,0x70,0x0,0x0,0x0,0x0,0x3,0x42,0x77,0x70, - 0x0,0x0,0x0,0x0,0x4,0x85,0x76,0xf0,0x0,0x0,0x0,0x0,0x5,0x2b,0x93,0xf0, - 0x0,0x0,0x0,0x0,0x6,0x6e,0x93,0x70,0x0,0x0,0x0,0x0,0x7,0xb,0x75,0xf0, - 0x0,0x0,0x0,0x0,0x8,0x45,0x3a,0xf0,0x0,0x0,0x0,0x0,0x8,0xeb,0x57,0xf0, - 0x0,0x0,0x0,0x0,0xa,0x2e,0x57,0x70,0x0,0x0,0x0,0x0,0xa,0xcb,0x39,0xf0, - 0x0,0x0,0x0,0x0,0xc,0xe,0x39,0x70,0x0,0x0,0x0,0x0,0xc,0xab,0x1b,0xf0, - 0x0,0x0,0x0,0x0,0xd,0xe4,0xe0,0xf0,0x0,0x0,0x0,0x0,0xe,0x8a,0xfd,0xf0, - 0x0,0x0,0x0,0x0,0xf,0xcd,0xfd,0x70,0x0,0x0,0x0,0x0,0x10,0x74,0x1a,0x70, - 0x0,0x0,0x0,0x0,0x11,0xad,0xdf,0x70,0x0,0x0,0x0,0x0,0x12,0x53,0xfc,0x70, - 0x0,0x0,0x0,0x0,0x12,0xce,0x97,0xf0,0x0,0x0,0x0,0x0,0x13,0x4d,0x44,0x10, - 0x0,0x0,0x0,0x0,0x14,0x33,0xfa,0x90,0x0,0x0,0x0,0x0,0x15,0x23,0xeb,0x90, - 0x0,0x0,0x0,0x0,0x16,0x13,0xdc,0x90,0x0,0x0,0x0,0x0,0x17,0x3,0xcd,0x90, - 0x0,0x0,0x0,0x0,0x17,0xf3,0xbe,0x90,0x0,0x0,0x0,0x0,0x18,0xe3,0xaf,0x90, - 0x0,0x0,0x0,0x0,0x19,0xd3,0xa0,0x90,0x0,0x0,0x0,0x0,0x1a,0xc3,0x91,0x90, - 0x0,0x0,0x0,0x0,0x1b,0xbc,0xbd,0x10,0x0,0x0,0x0,0x0,0x1c,0xac,0xae,0x10, - 0x0,0x0,0x0,0x0,0x1d,0x9c,0x9f,0x10,0x0,0x0,0x0,0x0,0x1e,0x8c,0x90,0x10, - 0x0,0x0,0x0,0x0,0x1f,0x7c,0x81,0x10,0x0,0x0,0x0,0x0,0x20,0x6c,0x72,0x10, - 0x0,0x0,0x0,0x0,0x21,0x5c,0x63,0x10,0x0,0x0,0x0,0x0,0x22,0x4c,0x54,0x10, - 0x0,0x0,0x0,0x0,0x23,0x3c,0x45,0x10,0x0,0x0,0x0,0x0,0x24,0x2c,0x36,0x10, - 0x0,0x0,0x0,0x0,0x25,0x1c,0x27,0x10,0x0,0x0,0x0,0x0,0x26,0xc,0x18,0x10, - 0x0,0x0,0x0,0x0,0x27,0x5,0x43,0x90,0x0,0x0,0x0,0x0,0x27,0xf5,0x34,0x90, - 0x0,0x0,0x0,0x0,0x28,0xe5,0x25,0x90,0x0,0x0,0x0,0x0,0x29,0xd5,0x16,0x90, - 0x0,0x0,0x0,0x0,0x2a,0xc5,0x7,0x90,0x0,0x0,0x0,0x0,0x2b,0xb4,0xf8,0x90, - 0x0,0x0,0x0,0x0,0x2c,0xa4,0xe9,0x90,0x0,0x0,0x0,0x0,0x2d,0x94,0xda,0x90, - 0x0,0x0,0x0,0x0,0x2e,0x84,0xcb,0x90,0x0,0x0,0x0,0x0,0x2f,0x74,0xbc,0x90, - 0x0,0x0,0x0,0x0,0x30,0x64,0xad,0x90,0x0,0x0,0x0,0x0,0x31,0x5d,0xd9,0x10, - 0x0,0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d,0xbb,0x10, - 0x0,0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d,0x9d,0x10, - 0x0,0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd,0x7f,0x10, - 0x0,0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd,0x61,0x10, - 0x0,0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd,0x43,0x10, - 0x0,0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f,0x90, - 0x0,0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86,0x41,0x90, - 0x0,0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66,0x23,0x90, - 0x0,0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46,0x5,0x90, - 0x0,0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25,0xe7,0x90, - 0x0,0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5,0xc9,0x90, - 0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee,0xe6,0x10, - 0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce,0xc8,0x10, - 0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae,0xaa,0x10, - 0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c,0x10, - 0x0,0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e,0x10, - 0x0,0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57,0x8a,0x90, - 0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37,0x6c,0x90, - 0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17,0x4e,0x90, - 0x0,0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7,0x30,0x90, - 0x0,0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7,0x12,0x90, - 0x0,0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4,0x90, - 0x0,0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0,0x11,0x10, - 0x0,0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3,0x10, - 0x0,0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f,0xd5,0x10, - 0x0,0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f,0xb7,0x10, - 0x0,0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f,0x99,0x10, - 0x0,0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8,0xb5,0x90, - 0x0,0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8,0x97,0x90, - 0x0,0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8,0x79,0x90, - 0x0,0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b,0x90, - 0x0,0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88,0x3d,0x90, - 0x0,0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68,0x1f,0x90, - 0x0,0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51,0x3c,0x10, - 0x0,0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31,0x1e,0x10, - 0x0,0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11,0x0,0x10, - 0x0,0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0,0xe2,0x10, - 0x0,0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0,0xc4,0x10, - 0x0,0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6,0x10, - 0x0,0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99,0xc2,0x90, - 0x0,0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79,0xa4,0x90, - 0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x1,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x4,0x5,0x2,0x4,0x5,0x2,0x4,0x2,0x3,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x3,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x3,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x0,0x0,0xb,0xb4,0x0,0x0,0x0,0x0,0xb,0xb4, - 0x0,0x4,0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0xe,0x10,0x0,0xd,0x0,0x0, - 0xe,0x10,0x0,0xd,0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0x1c,0x20,0x1,0x8, - 0x0,0x0,0xe,0x10,0x0,0xd,0x4c,0x4d,0x54,0x0,0x52,0x4d,0x54,0x0,0x43,0x45, - 0x53,0x54,0x0,0x43,0x45,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x0, - 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0xa,0x43,0x45,0x54,0x2d,0x31,0x43,0x45,0x53, - 0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30, - 0x2f,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Bucharest - 0x0,0x0,0x8,0xad, + 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x92, + 0xe6,0x92,0x48,0x0,0x1,0xff,0xff,0xfc,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x4,0x4c,0x4d,0x54,0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, + 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0x92,0xe6,0x92,0x48,0x0,0x1,0xff,0xff,0xfc,0x38,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x4c,0x4d,0x54,0x0,0x47,0x4d,0x54,0x0,0x0, + 0x0,0x0,0x0,0xa,0x47,0x4d,0x54,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Timbuktu + 0x0,0x0,0x0,0xaa, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x8a,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x11,0x80,0x0,0x0,0x0,0xb7, - 0xb0,0xd2,0x8,0xb9,0x3e,0xf3,0x60,0xb9,0xef,0x9c,0x60,0xba,0xdf,0x8d,0x60,0xbb, - 0xcf,0x7e,0x60,0xbc,0xc8,0xa9,0xe0,0xbd,0xb8,0x9a,0xe0,0xbe,0xa8,0x8b,0xe0,0xbf, - 0x98,0x7c,0xe0,0xc0,0x88,0x6d,0xe0,0xc1,0x78,0x5e,0xe0,0xc2,0x68,0x4f,0xe0,0xc3, - 0x58,0x40,0xe0,0xc4,0x48,0x31,0xe0,0xc5,0x38,0x22,0xe0,0xc6,0x28,0x13,0xe0,0xc7, - 0x18,0x4,0xe0,0x11,0xad,0xd1,0x60,0x12,0x53,0xe0,0x50,0x13,0x4d,0xb,0xd0,0x14, - 0x33,0xd0,0x60,0x15,0x23,0xdd,0x80,0x16,0x13,0xce,0x80,0x17,0x3,0xbf,0x80,0x17, - 0xf3,0xb0,0x80,0x18,0xe3,0xa1,0x80,0x19,0xd3,0x92,0x80,0x1a,0xc3,0x83,0x80,0x1b, - 0xbc,0xaf,0x0,0x1c,0xac,0xa0,0x0,0x1d,0x9c,0x91,0x0,0x1e,0x8c,0x82,0x0,0x1f, - 0x7c,0x73,0x0,0x20,0x6c,0x64,0x0,0x21,0x5c,0x55,0x0,0x22,0x4c,0x46,0x0,0x23, - 0x3c,0x37,0x0,0x24,0x2c,0x28,0x0,0x25,0x1c,0x19,0x0,0x26,0xc,0xa,0x0,0x27, - 0x5,0x35,0x80,0x27,0x7f,0xb4,0xe0,0x27,0xf5,0xa,0x60,0x28,0xe4,0xfb,0x60,0x29, - 0xd4,0xec,0x60,0x2a,0xc4,0xdd,0x60,0x2b,0xb4,0xce,0x60,0x2c,0xa4,0xbf,0x60,0x2d, - 0x24,0xa0,0xe0,0x2d,0x94,0xb0,0x60,0x2e,0x84,0x93,0x50,0x2f,0x74,0x92,0x60,0x30, - 0x64,0x75,0x50,0x31,0x5d,0xae,0xe0,0x32,0x72,0x7b,0xd0,0x33,0x3d,0xbb,0x10,0x34, - 0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38, - 0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b, - 0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f, - 0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43, - 0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47, - 0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a, - 0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e, - 0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52, - 0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56, - 0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59, - 0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d, - 0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61, - 0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65, - 0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68, - 0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c, - 0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70, - 0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74, - 0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78, - 0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b, - 0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f, - 0x8e,0x7f,0x90,0x1,0x5,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x4,0x5,0x4,0x5,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x5,0x2,0x3, - 0x2,0x3,0x2,0x3,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x6,0x7,0x6,0x7,0x6, - 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, - 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, - 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, - 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, - 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x0,0x0,0x18, - 0x78,0x0,0x0,0x0,0x0,0x18,0x78,0x0,0x4,0x0,0x0,0x2a,0x30,0x1,0x8,0x0, - 0x0,0x1c,0x20,0x0,0xd,0x0,0x0,0x2a,0x30,0x1,0x8,0x0,0x0,0x1c,0x20,0x0, - 0xd,0x0,0x0,0x2a,0x30,0x1,0x8,0x0,0x0,0x1c,0x20,0x0,0xd,0x4c,0x4d,0x54, - 0x0,0x42,0x4d,0x54,0x0,0x45,0x45,0x53,0x54,0x0,0x45,0x45,0x54,0x0,0x0,0x0, - 0x1,0x1,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x54,0x5a, - 0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x8b,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x11,0xf8,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xff,0xff,0xff,0xff,0x6c,0xcf,0xe0,0x8,0xff,0xff,0xff,0xff,0xb7,0xb0, - 0xd2,0x8,0xff,0xff,0xff,0xff,0xb9,0x3e,0xf3,0x60,0xff,0xff,0xff,0xff,0xb9,0xef, - 0x9c,0x60,0xff,0xff,0xff,0xff,0xba,0xdf,0x8d,0x60,0xff,0xff,0xff,0xff,0xbb,0xcf, - 0x7e,0x60,0xff,0xff,0xff,0xff,0xbc,0xc8,0xa9,0xe0,0xff,0xff,0xff,0xff,0xbd,0xb8, - 0x9a,0xe0,0xff,0xff,0xff,0xff,0xbe,0xa8,0x8b,0xe0,0xff,0xff,0xff,0xff,0xbf,0x98, - 0x7c,0xe0,0xff,0xff,0xff,0xff,0xc0,0x88,0x6d,0xe0,0xff,0xff,0xff,0xff,0xc1,0x78, - 0x5e,0xe0,0xff,0xff,0xff,0xff,0xc2,0x68,0x4f,0xe0,0xff,0xff,0xff,0xff,0xc3,0x58, - 0x40,0xe0,0xff,0xff,0xff,0xff,0xc4,0x48,0x31,0xe0,0xff,0xff,0xff,0xff,0xc5,0x38, - 0x22,0xe0,0xff,0xff,0xff,0xff,0xc6,0x28,0x13,0xe0,0xff,0xff,0xff,0xff,0xc7,0x18, - 0x4,0xe0,0x0,0x0,0x0,0x0,0x11,0xad,0xd1,0x60,0x0,0x0,0x0,0x0,0x12,0x53, - 0xe0,0x50,0x0,0x0,0x0,0x0,0x13,0x4d,0xb,0xd0,0x0,0x0,0x0,0x0,0x14,0x33, - 0xd0,0x60,0x0,0x0,0x0,0x0,0x15,0x23,0xdd,0x80,0x0,0x0,0x0,0x0,0x16,0x13, - 0xce,0x80,0x0,0x0,0x0,0x0,0x17,0x3,0xbf,0x80,0x0,0x0,0x0,0x0,0x17,0xf3, - 0xb0,0x80,0x0,0x0,0x0,0x0,0x18,0xe3,0xa1,0x80,0x0,0x0,0x0,0x0,0x19,0xd3, - 0x92,0x80,0x0,0x0,0x0,0x0,0x1a,0xc3,0x83,0x80,0x0,0x0,0x0,0x0,0x1b,0xbc, - 0xaf,0x0,0x0,0x0,0x0,0x0,0x1c,0xac,0xa0,0x0,0x0,0x0,0x0,0x0,0x1d,0x9c, - 0x91,0x0,0x0,0x0,0x0,0x0,0x1e,0x8c,0x82,0x0,0x0,0x0,0x0,0x0,0x1f,0x7c, - 0x73,0x0,0x0,0x0,0x0,0x0,0x20,0x6c,0x64,0x0,0x0,0x0,0x0,0x0,0x21,0x5c, - 0x55,0x0,0x0,0x0,0x0,0x0,0x22,0x4c,0x46,0x0,0x0,0x0,0x0,0x0,0x23,0x3c, - 0x37,0x0,0x0,0x0,0x0,0x0,0x24,0x2c,0x28,0x0,0x0,0x0,0x0,0x0,0x25,0x1c, - 0x19,0x0,0x0,0x0,0x0,0x0,0x26,0xc,0xa,0x0,0x0,0x0,0x0,0x0,0x27,0x5, - 0x35,0x80,0x0,0x0,0x0,0x0,0x27,0x7f,0xb4,0xe0,0x0,0x0,0x0,0x0,0x27,0xf5, - 0xa,0x60,0x0,0x0,0x0,0x0,0x28,0xe4,0xfb,0x60,0x0,0x0,0x0,0x0,0x29,0xd4, - 0xec,0x60,0x0,0x0,0x0,0x0,0x2a,0xc4,0xdd,0x60,0x0,0x0,0x0,0x0,0x2b,0xb4, - 0xce,0x60,0x0,0x0,0x0,0x0,0x2c,0xa4,0xbf,0x60,0x0,0x0,0x0,0x0,0x2d,0x24, - 0xa0,0xe0,0x0,0x0,0x0,0x0,0x2d,0x94,0xb0,0x60,0x0,0x0,0x0,0x0,0x2e,0x84, - 0x93,0x50,0x0,0x0,0x0,0x0,0x2f,0x74,0x92,0x60,0x0,0x0,0x0,0x0,0x30,0x64, - 0x75,0x50,0x0,0x0,0x0,0x0,0x31,0x5d,0xae,0xe0,0x0,0x0,0x0,0x0,0x32,0x72, - 0x7b,0xd0,0x0,0x0,0x0,0x0,0x33,0x3d,0xbb,0x10,0x0,0x0,0x0,0x0,0x34,0x52, - 0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d,0x9d,0x10,0x0,0x0,0x0,0x0,0x36,0x32, - 0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd,0x7f,0x10,0x0,0x0,0x0,0x0,0x38,0x1b, - 0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd,0x61,0x10,0x0,0x0,0x0,0x0,0x39,0xfb, - 0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd,0x43,0x10,0x0,0x0,0x0,0x0,0x3b,0xdb, - 0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb, - 0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86,0x41,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b, - 0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66,0x23,0x90,0x0,0x0,0x0,0x0,0x41,0x84, - 0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46,0x5,0x90,0x0,0x0,0x0,0x0,0x43,0x64, - 0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25,0xe7,0x90,0x0,0x0,0x0,0x0,0x45,0x43, - 0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5,0xc9,0x90,0x0,0x0,0x0,0x0,0x47,0x23, - 0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee,0xe6,0x10,0x0,0x0,0x0,0x0,0x49,0x3, - 0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce,0xc8,0x10,0x0,0x0,0x0,0x0,0x4a,0xe3, - 0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae,0xaa,0x10,0x0,0x0,0x0,0x0,0x4c,0xcc, - 0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c,0x10,0x0,0x0,0x0,0x0,0x4e,0xac, - 0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e,0x10,0x0,0x0,0x0,0x0,0x50,0x8c, - 0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57,0x8a,0x90,0x0,0x0,0x0,0x0,0x52,0x6c, - 0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37,0x6c,0x90,0x0,0x0,0x0,0x0,0x54,0x4c, - 0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17,0x4e,0x90,0x0,0x0,0x0,0x0,0x56,0x2c, - 0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7,0x30,0x90,0x0,0x0,0x0,0x0,0x58,0x15, - 0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7,0x12,0x90,0x0,0x0,0x0,0x0,0x59,0xf5, - 0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4,0x90,0x0,0x0,0x0,0x0,0x5b,0xd5, - 0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0,0x11,0x10,0x0,0x0,0x0,0x0,0x5d,0xb4, - 0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3,0x10,0x0,0x0,0x0,0x0,0x5f,0x94, - 0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f,0xd5,0x10,0x0,0x0,0x0,0x0,0x61,0x7d, - 0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f,0xb7,0x10,0x0,0x0,0x0,0x0,0x63,0x5d, - 0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f,0x99,0x10,0x0,0x0,0x0,0x0,0x65,0x3d, - 0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8,0xb5,0x90,0x0,0x0,0x0,0x0,0x67,0x1d, - 0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8,0x97,0x90,0x0,0x0,0x0,0x0,0x68,0xfd, - 0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8,0x79,0x90,0x0,0x0,0x0,0x0,0x6a,0xdd, - 0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b,0x90,0x0,0x0,0x0,0x0,0x6c,0xc6, - 0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88,0x3d,0x90,0x0,0x0,0x0,0x0,0x6e,0xa6, - 0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68,0x1f,0x90,0x0,0x0,0x0,0x0,0x70,0x86, - 0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51,0x3c,0x10,0x0,0x0,0x0,0x0,0x72,0x66, - 0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31,0x1e,0x10,0x0,0x0,0x0,0x0,0x74,0x45, - 0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11,0x0,0x10,0x0,0x0,0x0,0x0,0x76,0x2f, - 0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0,0xe2,0x10,0x0,0x0,0x0,0x0,0x78,0xe, - 0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0,0xc4,0x10,0x0,0x0,0x0,0x0,0x79,0xee, - 0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6,0x10,0x0,0x0,0x0,0x0,0x7b,0xce, - 0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99,0xc2,0x90,0x0,0x0,0x0,0x0,0x7d,0xae, - 0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79,0xa4,0x90,0x0,0x0,0x0,0x0,0x7f,0x8e, - 0x7f,0x90,0x0,0x1,0x5,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x4,0x5,0x4,0x5,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x5,0x2,0x3, - 0x2,0x3,0x2,0x3,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x6,0x7,0x6,0x7,0x6, - 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, - 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, - 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, - 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, - 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x0,0x0,0x18, - 0x78,0x0,0x0,0x0,0x0,0x18,0x78,0x0,0x4,0x0,0x0,0x2a,0x30,0x1,0x8,0x0, - 0x0,0x1c,0x20,0x0,0xd,0x0,0x0,0x2a,0x30,0x1,0x8,0x0,0x0,0x1c,0x20,0x0, - 0xd,0x0,0x0,0x2a,0x30,0x1,0x8,0x0,0x0,0x1c,0x20,0x0,0xd,0x4c,0x4d,0x54, - 0x0,0x42,0x4d,0x54,0x0,0x45,0x45,0x53,0x54,0x0,0x45,0x45,0x54,0x0,0x0,0x0, - 0x1,0x1,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0xa,0x45, - 0x45,0x54,0x2d,0x32,0x45,0x45,0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2f, - 0x33,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30,0x2f,0x34,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Europe/San_Marino - 0x0,0x0,0xa,0x84, + 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x92, + 0xe6,0x92,0x48,0x0,0x1,0xff,0xff,0xfc,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x4,0x4c,0x4d,0x54,0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, + 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0x92,0xe6,0x92,0x48,0x0,0x1,0xff,0xff,0xfc,0x38,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x4c,0x4d,0x54,0x0,0x47,0x4d,0x54,0x0,0x0, + 0x0,0x0,0x0,0xa,0x47,0x4d,0x54,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Addis_Ababa + 0x0,0x0,0x1,0x1d, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xac,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0x9b, - 0x38,0xf8,0x70,0x9b,0xd5,0xcc,0xe0,0x9c,0xc5,0xcb,0xf0,0x9d,0xb7,0x0,0x60,0x9e, - 0x89,0xfe,0x70,0x9f,0xa0,0x1c,0xe0,0xa0,0x60,0xa5,0xf0,0xa1,0x7e,0xad,0x60,0xa2, - 0x5c,0x37,0x70,0xa3,0x4c,0x1a,0x60,0xc8,0x6c,0x35,0xf0,0xcc,0xe7,0x4b,0x10,0xcd, - 0xa9,0x17,0x90,0xce,0x82,0x74,0xe0,0xce,0xa2,0x43,0x10,0xcf,0x92,0x34,0x10,0xcf, - 0xe3,0xc6,0xe0,0xd0,0x6e,0x5e,0x90,0xd1,0x72,0x16,0x10,0xd2,0x4c,0xd2,0xf0,0xd3, - 0x3e,0x31,0x90,0xd4,0x49,0xd2,0x10,0xd5,0x1d,0xf7,0x70,0xd6,0x29,0x97,0xf0,0xd6, - 0xeb,0x80,0x90,0xd8,0x9,0x96,0x10,0xf9,0x33,0xb5,0xf0,0xf9,0xd9,0xc4,0xe0,0xfb, - 0x1c,0xd2,0x70,0xfb,0xb9,0xb4,0xf0,0xfc,0xfc,0xb4,0x70,0xfd,0x99,0x96,0xf0,0xfe, - 0xe5,0xd0,0xf0,0xff,0x82,0xb3,0x70,0x0,0xc5,0xb2,0xf0,0x1,0x62,0x95,0x70,0x2, - 0x9c,0x5a,0x70,0x3,0x42,0x77,0x70,0x4,0x85,0x76,0xf0,0x5,0x2b,0x93,0xf0,0x6, - 0x6e,0x93,0x70,0x7,0xb,0x75,0xf0,0x8,0x45,0x3a,0xf0,0x8,0xeb,0x57,0xf0,0xa, - 0x2e,0x57,0x70,0xa,0xcb,0x39,0xf0,0xc,0xe,0x39,0x70,0xc,0xab,0x1b,0xf0,0xd, - 0xe4,0xe0,0xf0,0xe,0x8a,0xfd,0xf0,0xf,0xcd,0xfd,0x70,0x10,0x74,0x1a,0x70,0x11, - 0xad,0xdf,0x70,0x12,0x53,0xfc,0x70,0x12,0xce,0x97,0xf0,0x13,0x4d,0x44,0x10,0x14, - 0x33,0xfa,0x90,0x15,0x23,0xeb,0x90,0x16,0x13,0xdc,0x90,0x17,0x3,0xcd,0x90,0x17, - 0xf3,0xbe,0x90,0x18,0xe3,0xaf,0x90,0x19,0xd3,0xa0,0x90,0x1a,0xc3,0x91,0x90,0x1b, - 0xbc,0xbd,0x10,0x1c,0xac,0xae,0x10,0x1d,0x9c,0x9f,0x10,0x1e,0x8c,0x90,0x10,0x1f, - 0x7c,0x81,0x10,0x20,0x6c,0x72,0x10,0x21,0x5c,0x63,0x10,0x22,0x4c,0x54,0x10,0x23, - 0x3c,0x45,0x10,0x24,0x2c,0x36,0x10,0x25,0x1c,0x27,0x10,0x26,0xc,0x18,0x10,0x27, - 0x5,0x43,0x90,0x27,0xf5,0x34,0x90,0x28,0xe5,0x25,0x90,0x29,0xd5,0x16,0x90,0x2a, - 0xc5,0x7,0x90,0x2b,0xb4,0xf8,0x90,0x2c,0xa4,0xe9,0x90,0x2d,0x94,0xda,0x90,0x2e, - 0x84,0xcb,0x90,0x2f,0x74,0xbc,0x90,0x30,0x64,0xad,0x90,0x31,0x5d,0xd9,0x10,0x32, - 0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34,0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36, - 0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39, - 0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b,0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d, - 0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f,0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41, - 0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43,0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45, - 0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49, - 0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c, - 0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e,0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50, - 0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54, - 0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56,0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58, - 0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59,0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b, - 0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d,0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f, - 0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61,0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63, - 0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65,0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67, - 0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68,0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a, - 0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c,0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e, - 0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70,0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72, - 0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74,0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76, - 0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79, - 0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d, - 0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x3,0x4,0x1,0x3,0x4,0x1,0x3,0x1,0x2, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x2,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x2,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x0,0x0,0xb,0xb4,0x0,0x0,0x0,0x0,0x1c, - 0x20,0x1,0x4,0x0,0x0,0xe,0x10,0x0,0x9,0x0,0x0,0xe,0x10,0x0,0x9,0x0, - 0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe,0x10,0x0, - 0x9,0x52,0x4d,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x43,0x45,0x54,0x0,0x0,0x0, - 0x0,0x1,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x54,0x5a,0x69,0x66, - 0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xae, - 0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x11,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0xff,0xff,0xff,0xff,0x3d,0xbe,0x1e,0xcc,0xff,0xff,0xff,0xff,0x70,0xbc,0x81,0x70, - 0xff,0xff,0xff,0xff,0x9b,0x38,0xf8,0x70,0xff,0xff,0xff,0xff,0x9b,0xd5,0xcc,0xe0, - 0xff,0xff,0xff,0xff,0x9c,0xc5,0xcb,0xf0,0xff,0xff,0xff,0xff,0x9d,0xb7,0x0,0x60, - 0xff,0xff,0xff,0xff,0x9e,0x89,0xfe,0x70,0xff,0xff,0xff,0xff,0x9f,0xa0,0x1c,0xe0, - 0xff,0xff,0xff,0xff,0xa0,0x60,0xa5,0xf0,0xff,0xff,0xff,0xff,0xa1,0x7e,0xad,0x60, - 0xff,0xff,0xff,0xff,0xa2,0x5c,0x37,0x70,0xff,0xff,0xff,0xff,0xa3,0x4c,0x1a,0x60, - 0xff,0xff,0xff,0xff,0xc8,0x6c,0x35,0xf0,0xff,0xff,0xff,0xff,0xcc,0xe7,0x4b,0x10, - 0xff,0xff,0xff,0xff,0xcd,0xa9,0x17,0x90,0xff,0xff,0xff,0xff,0xce,0x82,0x74,0xe0, - 0xff,0xff,0xff,0xff,0xce,0xa2,0x43,0x10,0xff,0xff,0xff,0xff,0xcf,0x92,0x34,0x10, - 0xff,0xff,0xff,0xff,0xcf,0xe3,0xc6,0xe0,0xff,0xff,0xff,0xff,0xd0,0x6e,0x5e,0x90, - 0xff,0xff,0xff,0xff,0xd1,0x72,0x16,0x10,0xff,0xff,0xff,0xff,0xd2,0x4c,0xd2,0xf0, - 0xff,0xff,0xff,0xff,0xd3,0x3e,0x31,0x90,0xff,0xff,0xff,0xff,0xd4,0x49,0xd2,0x10, - 0xff,0xff,0xff,0xff,0xd5,0x1d,0xf7,0x70,0xff,0xff,0xff,0xff,0xd6,0x29,0x97,0xf0, - 0xff,0xff,0xff,0xff,0xd6,0xeb,0x80,0x90,0xff,0xff,0xff,0xff,0xd8,0x9,0x96,0x10, - 0xff,0xff,0xff,0xff,0xf9,0x33,0xb5,0xf0,0xff,0xff,0xff,0xff,0xf9,0xd9,0xc4,0xe0, - 0xff,0xff,0xff,0xff,0xfb,0x1c,0xd2,0x70,0xff,0xff,0xff,0xff,0xfb,0xb9,0xb4,0xf0, - 0xff,0xff,0xff,0xff,0xfc,0xfc,0xb4,0x70,0xff,0xff,0xff,0xff,0xfd,0x99,0x96,0xf0, - 0xff,0xff,0xff,0xff,0xfe,0xe5,0xd0,0xf0,0xff,0xff,0xff,0xff,0xff,0x82,0xb3,0x70, - 0x0,0x0,0x0,0x0,0x0,0xc5,0xb2,0xf0,0x0,0x0,0x0,0x0,0x1,0x62,0x95,0x70, - 0x0,0x0,0x0,0x0,0x2,0x9c,0x5a,0x70,0x0,0x0,0x0,0x0,0x3,0x42,0x77,0x70, - 0x0,0x0,0x0,0x0,0x4,0x85,0x76,0xf0,0x0,0x0,0x0,0x0,0x5,0x2b,0x93,0xf0, - 0x0,0x0,0x0,0x0,0x6,0x6e,0x93,0x70,0x0,0x0,0x0,0x0,0x7,0xb,0x75,0xf0, - 0x0,0x0,0x0,0x0,0x8,0x45,0x3a,0xf0,0x0,0x0,0x0,0x0,0x8,0xeb,0x57,0xf0, - 0x0,0x0,0x0,0x0,0xa,0x2e,0x57,0x70,0x0,0x0,0x0,0x0,0xa,0xcb,0x39,0xf0, - 0x0,0x0,0x0,0x0,0xc,0xe,0x39,0x70,0x0,0x0,0x0,0x0,0xc,0xab,0x1b,0xf0, - 0x0,0x0,0x0,0x0,0xd,0xe4,0xe0,0xf0,0x0,0x0,0x0,0x0,0xe,0x8a,0xfd,0xf0, - 0x0,0x0,0x0,0x0,0xf,0xcd,0xfd,0x70,0x0,0x0,0x0,0x0,0x10,0x74,0x1a,0x70, - 0x0,0x0,0x0,0x0,0x11,0xad,0xdf,0x70,0x0,0x0,0x0,0x0,0x12,0x53,0xfc,0x70, - 0x0,0x0,0x0,0x0,0x12,0xce,0x97,0xf0,0x0,0x0,0x0,0x0,0x13,0x4d,0x44,0x10, - 0x0,0x0,0x0,0x0,0x14,0x33,0xfa,0x90,0x0,0x0,0x0,0x0,0x15,0x23,0xeb,0x90, - 0x0,0x0,0x0,0x0,0x16,0x13,0xdc,0x90,0x0,0x0,0x0,0x0,0x17,0x3,0xcd,0x90, - 0x0,0x0,0x0,0x0,0x17,0xf3,0xbe,0x90,0x0,0x0,0x0,0x0,0x18,0xe3,0xaf,0x90, - 0x0,0x0,0x0,0x0,0x19,0xd3,0xa0,0x90,0x0,0x0,0x0,0x0,0x1a,0xc3,0x91,0x90, - 0x0,0x0,0x0,0x0,0x1b,0xbc,0xbd,0x10,0x0,0x0,0x0,0x0,0x1c,0xac,0xae,0x10, - 0x0,0x0,0x0,0x0,0x1d,0x9c,0x9f,0x10,0x0,0x0,0x0,0x0,0x1e,0x8c,0x90,0x10, - 0x0,0x0,0x0,0x0,0x1f,0x7c,0x81,0x10,0x0,0x0,0x0,0x0,0x20,0x6c,0x72,0x10, - 0x0,0x0,0x0,0x0,0x21,0x5c,0x63,0x10,0x0,0x0,0x0,0x0,0x22,0x4c,0x54,0x10, - 0x0,0x0,0x0,0x0,0x23,0x3c,0x45,0x10,0x0,0x0,0x0,0x0,0x24,0x2c,0x36,0x10, - 0x0,0x0,0x0,0x0,0x25,0x1c,0x27,0x10,0x0,0x0,0x0,0x0,0x26,0xc,0x18,0x10, - 0x0,0x0,0x0,0x0,0x27,0x5,0x43,0x90,0x0,0x0,0x0,0x0,0x27,0xf5,0x34,0x90, - 0x0,0x0,0x0,0x0,0x28,0xe5,0x25,0x90,0x0,0x0,0x0,0x0,0x29,0xd5,0x16,0x90, - 0x0,0x0,0x0,0x0,0x2a,0xc5,0x7,0x90,0x0,0x0,0x0,0x0,0x2b,0xb4,0xf8,0x90, - 0x0,0x0,0x0,0x0,0x2c,0xa4,0xe9,0x90,0x0,0x0,0x0,0x0,0x2d,0x94,0xda,0x90, - 0x0,0x0,0x0,0x0,0x2e,0x84,0xcb,0x90,0x0,0x0,0x0,0x0,0x2f,0x74,0xbc,0x90, - 0x0,0x0,0x0,0x0,0x30,0x64,0xad,0x90,0x0,0x0,0x0,0x0,0x31,0x5d,0xd9,0x10, - 0x0,0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d,0xbb,0x10, - 0x0,0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d,0x9d,0x10, - 0x0,0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd,0x7f,0x10, - 0x0,0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd,0x61,0x10, - 0x0,0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd,0x43,0x10, - 0x0,0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f,0x90, - 0x0,0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86,0x41,0x90, - 0x0,0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66,0x23,0x90, - 0x0,0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46,0x5,0x90, - 0x0,0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25,0xe7,0x90, - 0x0,0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5,0xc9,0x90, - 0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee,0xe6,0x10, - 0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce,0xc8,0x10, - 0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae,0xaa,0x10, - 0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c,0x10, - 0x0,0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e,0x10, - 0x0,0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57,0x8a,0x90, - 0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37,0x6c,0x90, - 0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17,0x4e,0x90, - 0x0,0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7,0x30,0x90, - 0x0,0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7,0x12,0x90, - 0x0,0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4,0x90, - 0x0,0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0,0x11,0x10, - 0x0,0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3,0x10, - 0x0,0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f,0xd5,0x10, - 0x0,0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f,0xb7,0x10, - 0x0,0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f,0x99,0x10, - 0x0,0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8,0xb5,0x90, - 0x0,0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8,0x97,0x90, - 0x0,0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8,0x79,0x90, - 0x0,0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b,0x90, - 0x0,0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88,0x3d,0x90, - 0x0,0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68,0x1f,0x90, - 0x0,0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51,0x3c,0x10, - 0x0,0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31,0x1e,0x10, - 0x0,0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11,0x0,0x10, - 0x0,0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0,0xe2,0x10, - 0x0,0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0,0xc4,0x10, - 0x0,0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6,0x10, - 0x0,0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99,0xc2,0x90, - 0x0,0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79,0xa4,0x90, - 0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x1,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x4,0x5,0x2,0x4,0x5,0x2,0x4,0x2,0x3,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x3,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x3,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x0,0x0,0xb,0xb4,0x0,0x0,0x0,0x0,0xb,0xb4, - 0x0,0x4,0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0xe,0x10,0x0,0xd,0x0,0x0, - 0xe,0x10,0x0,0xd,0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0x1c,0x20,0x1,0x8, - 0x0,0x0,0xe,0x10,0x0,0xd,0x4c,0x4d,0x54,0x0,0x52,0x4d,0x54,0x0,0x43,0x45, - 0x53,0x54,0x0,0x43,0x45,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x0, - 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0xa,0x43,0x45,0x54,0x2d,0x31,0x43,0x45,0x53, - 0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30, - 0x2f,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Copenhagen - 0x0,0x0,0x8,0x70, + 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0xb1, + 0xee,0xda,0xfc,0xb4,0xc2,0x9a,0xd0,0xc7,0x91,0x47,0xd8,0xed,0x2f,0xe1,0xd4,0x0, + 0x1,0x2,0x3,0x1,0x0,0x0,0x22,0x84,0x0,0x0,0x0,0x0,0x2a,0x30,0x0,0x4, + 0x0,0x0,0x23,0x28,0x0,0x8,0x0,0x0,0x26,0xac,0x0,0xe,0x0,0x0,0x2a,0x30, + 0x0,0x4,0x4c,0x4d,0x54,0x0,0x45,0x41,0x54,0x0,0x2b,0x30,0x32,0x33,0x30,0x0, + 0x2b,0x30,0x32,0x34,0x35,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0xf8,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xb1,0xee,0xda,0xfc,0xff,0xff,0xff,0xff, + 0xb4,0xc2,0x9a,0xd0,0xff,0xff,0xff,0xff,0xc7,0x91,0x47,0xd8,0xff,0xff,0xff,0xff, + 0xed,0x2f,0xe1,0xd4,0x0,0x1,0x2,0x3,0x1,0x0,0x0,0x22,0x84,0x0,0x0,0x0, + 0x0,0x2a,0x30,0x0,0x4,0x0,0x0,0x23,0x28,0x0,0x8,0x0,0x0,0x26,0xac,0x0, + 0xe,0x0,0x0,0x2a,0x30,0x0,0x4,0x4c,0x4d,0x54,0x0,0x45,0x41,0x54,0x0,0x2b, + 0x30,0x32,0x33,0x30,0x0,0x2b,0x30,0x32,0x34,0x35,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0xa,0x45,0x41,0x54,0x2d,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Bamako + 0x0,0x0,0x0,0xaa, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x86,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0x9b, - 0x1e,0x8c,0x60,0x9b,0xd5,0xbe,0xd0,0xc8,0x43,0x57,0x70,0xcc,0xe7,0x4b,0x10,0xcd, - 0xa9,0x17,0x90,0xce,0xa2,0x43,0x10,0xcf,0x92,0x34,0x10,0xd0,0x82,0x25,0x10,0xd1, - 0x72,0x16,0x10,0xd2,0x24,0x10,0x90,0xd3,0x79,0x85,0x10,0xd4,0x1b,0xad,0x90,0xd5, - 0x5e,0xad,0x10,0xd5,0xdf,0xe0,0x10,0xd7,0x47,0xc9,0x90,0xd7,0xbf,0xc2,0x10,0x12, - 0xce,0x97,0xf0,0x13,0x4d,0x44,0x10,0x14,0x33,0xfa,0x90,0x15,0x23,0xeb,0x90,0x16, - 0x13,0xdc,0x90,0x17,0x3,0xcd,0x90,0x17,0xf3,0xbe,0x90,0x18,0xe3,0xaf,0x90,0x19, - 0xd3,0xa0,0x90,0x1a,0xc3,0x91,0x90,0x1b,0xbc,0xbd,0x10,0x1c,0xac,0xae,0x10,0x1d, - 0x9c,0x9f,0x10,0x1e,0x8c,0x90,0x10,0x1f,0x7c,0x81,0x10,0x20,0x6c,0x72,0x10,0x21, - 0x5c,0x63,0x10,0x22,0x4c,0x54,0x10,0x23,0x3c,0x45,0x10,0x24,0x2c,0x36,0x10,0x25, - 0x1c,0x27,0x10,0x26,0xc,0x18,0x10,0x27,0x5,0x43,0x90,0x27,0xf5,0x34,0x90,0x28, - 0xe5,0x25,0x90,0x29,0xd5,0x16,0x90,0x2a,0xc5,0x7,0x90,0x2b,0xb4,0xf8,0x90,0x2c, - 0xa4,0xe9,0x90,0x2d,0x94,0xda,0x90,0x2e,0x84,0xcb,0x90,0x2f,0x74,0xbc,0x90,0x30, - 0x64,0xad,0x90,0x31,0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34, - 0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38, - 0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b, - 0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f, - 0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43, - 0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47, - 0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a, - 0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e, - 0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52, - 0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56, - 0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59, - 0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d, - 0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61, - 0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65, - 0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68, - 0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c, - 0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70, - 0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74, - 0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78, - 0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b, - 0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f, - 0x8e,0x7f,0x90,0x2,0x1,0x2,0x1,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x2,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x0,0x0,0xb,0xcc,0x0,0x0,0x0, - 0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe,0x10,0x0,0x9,0x0,0x0,0xe,0x10,0x0, - 0x9,0x0,0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe, - 0x10,0x0,0x9,0x43,0x4d,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x43,0x45,0x54,0x0, - 0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x54,0x5a, - 0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x88,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x11,0xf8,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xff,0xff,0xff,0xff,0x69,0x86,0xcf,0xb4,0xff,0xff,0xff,0xff,0x71,0xc, - 0xef,0x34,0xff,0xff,0xff,0xff,0x9b,0x1e,0x8c,0x60,0xff,0xff,0xff,0xff,0x9b,0xd5, - 0xbe,0xd0,0xff,0xff,0xff,0xff,0xc8,0x43,0x57,0x70,0xff,0xff,0xff,0xff,0xcc,0xe7, - 0x4b,0x10,0xff,0xff,0xff,0xff,0xcd,0xa9,0x17,0x90,0xff,0xff,0xff,0xff,0xce,0xa2, - 0x43,0x10,0xff,0xff,0xff,0xff,0xcf,0x92,0x34,0x10,0xff,0xff,0xff,0xff,0xd0,0x82, - 0x25,0x10,0xff,0xff,0xff,0xff,0xd1,0x72,0x16,0x10,0xff,0xff,0xff,0xff,0xd2,0x24, - 0x10,0x90,0xff,0xff,0xff,0xff,0xd3,0x79,0x85,0x10,0xff,0xff,0xff,0xff,0xd4,0x1b, - 0xad,0x90,0xff,0xff,0xff,0xff,0xd5,0x5e,0xad,0x10,0xff,0xff,0xff,0xff,0xd5,0xdf, - 0xe0,0x10,0xff,0xff,0xff,0xff,0xd7,0x47,0xc9,0x90,0xff,0xff,0xff,0xff,0xd7,0xbf, - 0xc2,0x10,0x0,0x0,0x0,0x0,0x12,0xce,0x97,0xf0,0x0,0x0,0x0,0x0,0x13,0x4d, - 0x44,0x10,0x0,0x0,0x0,0x0,0x14,0x33,0xfa,0x90,0x0,0x0,0x0,0x0,0x15,0x23, - 0xeb,0x90,0x0,0x0,0x0,0x0,0x16,0x13,0xdc,0x90,0x0,0x0,0x0,0x0,0x17,0x3, - 0xcd,0x90,0x0,0x0,0x0,0x0,0x17,0xf3,0xbe,0x90,0x0,0x0,0x0,0x0,0x18,0xe3, - 0xaf,0x90,0x0,0x0,0x0,0x0,0x19,0xd3,0xa0,0x90,0x0,0x0,0x0,0x0,0x1a,0xc3, - 0x91,0x90,0x0,0x0,0x0,0x0,0x1b,0xbc,0xbd,0x10,0x0,0x0,0x0,0x0,0x1c,0xac, - 0xae,0x10,0x0,0x0,0x0,0x0,0x1d,0x9c,0x9f,0x10,0x0,0x0,0x0,0x0,0x1e,0x8c, - 0x90,0x10,0x0,0x0,0x0,0x0,0x1f,0x7c,0x81,0x10,0x0,0x0,0x0,0x0,0x20,0x6c, - 0x72,0x10,0x0,0x0,0x0,0x0,0x21,0x5c,0x63,0x10,0x0,0x0,0x0,0x0,0x22,0x4c, - 0x54,0x10,0x0,0x0,0x0,0x0,0x23,0x3c,0x45,0x10,0x0,0x0,0x0,0x0,0x24,0x2c, - 0x36,0x10,0x0,0x0,0x0,0x0,0x25,0x1c,0x27,0x10,0x0,0x0,0x0,0x0,0x26,0xc, - 0x18,0x10,0x0,0x0,0x0,0x0,0x27,0x5,0x43,0x90,0x0,0x0,0x0,0x0,0x27,0xf5, - 0x34,0x90,0x0,0x0,0x0,0x0,0x28,0xe5,0x25,0x90,0x0,0x0,0x0,0x0,0x29,0xd5, - 0x16,0x90,0x0,0x0,0x0,0x0,0x2a,0xc5,0x7,0x90,0x0,0x0,0x0,0x0,0x2b,0xb4, - 0xf8,0x90,0x0,0x0,0x0,0x0,0x2c,0xa4,0xe9,0x90,0x0,0x0,0x0,0x0,0x2d,0x94, - 0xda,0x90,0x0,0x0,0x0,0x0,0x2e,0x84,0xcb,0x90,0x0,0x0,0x0,0x0,0x2f,0x74, - 0xbc,0x90,0x0,0x0,0x0,0x0,0x30,0x64,0xad,0x90,0x0,0x0,0x0,0x0,0x31,0x5d, - 0xd9,0x10,0x0,0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d, - 0xbb,0x10,0x0,0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d, - 0x9d,0x10,0x0,0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd, - 0x7f,0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd, - 0x61,0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd, - 0x43,0x10,0x0,0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6, - 0x5f,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86, - 0x41,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66, - 0x23,0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46, - 0x5,0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25, - 0xe7,0x90,0x0,0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5, - 0xc9,0x90,0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee, - 0xe6,0x10,0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce, - 0xc8,0x10,0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae, - 0xaa,0x10,0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e, - 0x8c,0x10,0x0,0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e, - 0x6e,0x10,0x0,0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57, - 0x8a,0x90,0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37, - 0x6c,0x90,0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17, - 0x4e,0x90,0x0,0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7, - 0x30,0x90,0x0,0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7, - 0x12,0x90,0x0,0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6, - 0xf4,0x90,0x0,0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0, - 0x11,0x10,0x0,0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f, - 0xf3,0x10,0x0,0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f, - 0xd5,0x10,0x0,0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f, - 0xb7,0x10,0x0,0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f, - 0x99,0x10,0x0,0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8, - 0xb5,0x90,0x0,0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8, - 0x97,0x90,0x0,0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8, - 0x79,0x90,0x0,0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8, - 0x5b,0x90,0x0,0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88, - 0x3d,0x90,0x0,0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68, - 0x1f,0x90,0x0,0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51, - 0x3c,0x10,0x0,0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31, - 0x1e,0x10,0x0,0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11, - 0x0,0x10,0x0,0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0, - 0xe2,0x10,0x0,0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0, - 0xc4,0x10,0x0,0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0, - 0xa6,0x10,0x0,0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99, - 0xc2,0x90,0x0,0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79, - 0xa4,0x90,0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x1,0x3,0x2,0x3,0x2, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x3,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x0,0x0,0xb,0xcc,0x0,0x0,0x0,0x0,0xb,0xcc,0x0,0x4,0x0,0x0, - 0x1c,0x20,0x1,0x8,0x0,0x0,0xe,0x10,0x0,0xd,0x0,0x0,0xe,0x10,0x0,0xd, - 0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0xe,0x10, - 0x0,0xd,0x4c,0x4d,0x54,0x0,0x43,0x4d,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x43, - 0x45,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0, - 0x0,0x1,0x1,0xa,0x43,0x45,0x54,0x2d,0x31,0x43,0x45,0x53,0x54,0x2c,0x4d,0x33, - 0x2e,0x35,0x2e,0x30,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30,0x2f,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Berlin - 0x0,0x0,0x9,0x1f, + 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x92, + 0xe6,0x92,0x48,0x0,0x1,0xff,0xff,0xfc,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x4,0x4c,0x4d,0x54,0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, + 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0x92,0xe6,0x92,0x48,0x0,0x1,0xff,0xff,0xfc,0x38,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x4c,0x4d,0x54,0x0,0x47,0x4d,0x54,0x0,0x0, + 0x0,0x0,0x0,0xa,0x47,0x4d,0x54,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Libreville + 0x0,0x0,0x0,0xab, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x91,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x12,0x80,0x0,0x0,0x0,0x9b, - 0xc,0x17,0x60,0x9b,0xd5,0xda,0xf0,0x9c,0xd9,0xae,0x90,0x9d,0xa4,0xb5,0x90,0x9e, - 0xb9,0x90,0x90,0x9f,0x84,0x97,0x90,0xc8,0x9,0x71,0x90,0xcc,0xe7,0x4b,0x10,0xcd, - 0xa9,0x17,0x90,0xce,0xa2,0x43,0x10,0xcf,0x92,0x34,0x10,0xd0,0x82,0x25,0x10,0xd1, - 0x72,0x16,0x10,0xd1,0xb6,0x96,0x0,0xd2,0x58,0xbe,0x80,0xd2,0xa1,0x4f,0x10,0xd2, - 0xdb,0x34,0xf0,0xd3,0x63,0x1b,0x90,0xd4,0x4b,0x23,0x90,0xd5,0x39,0xd1,0x20,0xd5, - 0x67,0xe7,0x90,0xd5,0xa8,0x73,0x0,0xd6,0x29,0xb4,0x10,0xd7,0x2c,0x1a,0x10,0xd8, - 0x9,0x96,0x10,0xd9,0x2,0xc1,0x90,0xd9,0xe9,0x78,0x10,0x12,0xce,0x97,0xf0,0x13, - 0x4d,0x44,0x10,0x14,0x33,0xfa,0x90,0x15,0x23,0xeb,0x90,0x16,0x13,0xdc,0x90,0x17, - 0x3,0xcd,0x90,0x17,0xf3,0xbe,0x90,0x18,0xe3,0xaf,0x90,0x19,0xd3,0xa0,0x90,0x1a, - 0xc3,0x91,0x90,0x1b,0xbc,0xbd,0x10,0x1c,0xac,0xae,0x10,0x1d,0x9c,0x9f,0x10,0x1e, - 0x8c,0x90,0x10,0x1f,0x7c,0x81,0x10,0x20,0x6c,0x72,0x10,0x21,0x5c,0x63,0x10,0x22, - 0x4c,0x54,0x10,0x23,0x3c,0x45,0x10,0x24,0x2c,0x36,0x10,0x25,0x1c,0x27,0x10,0x26, - 0xc,0x18,0x10,0x27,0x5,0x43,0x90,0x27,0xf5,0x34,0x90,0x28,0xe5,0x25,0x90,0x29, - 0xd5,0x16,0x90,0x2a,0xc5,0x7,0x90,0x2b,0xb4,0xf8,0x90,0x2c,0xa4,0xe9,0x90,0x2d, - 0x94,0xda,0x90,0x2e,0x84,0xcb,0x90,0x2f,0x74,0xbc,0x90,0x30,0x64,0xad,0x90,0x31, - 0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34,0x52,0x96,0x10,0x35, - 0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x38, - 0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b,0xdb,0x58,0x90,0x3c, - 0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f,0x9b,0x1c,0x90,0x40, - 0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43,0x64,0x1b,0x10,0x44, - 0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47, - 0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b, - 0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e,0xac,0xa1,0x90,0x4f, - 0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53, - 0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56,0x2c,0x29,0x90,0x56, - 0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59,0xf5,0x28,0x10,0x5a, - 0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d,0xb4,0xec,0x10,0x5e, - 0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61,0x7d,0xea,0x90,0x62, - 0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65,0x3d,0xae,0x90,0x66, - 0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68,0xfd,0x72,0x90,0x69, - 0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c,0xc6,0x71,0x10,0x6d, - 0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70,0x86,0x35,0x10,0x71, - 0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74,0x45,0xf9,0x10,0x75, - 0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78, - 0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c, - 0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x2, - 0x1,0x2,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x5,0x1,0x4, - 0x2,0x3,0x4,0x3,0x6,0x1,0x4,0x3,0x4,0x3,0x4,0x2,0x7,0x8,0x7,0x8, - 0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8, - 0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8, - 0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8, - 0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8, - 0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8, - 0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8, - 0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8, - 0x0,0x0,0xc,0x88,0x0,0x0,0x0,0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe,0x10, - 0x0,0x9,0x0,0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe,0x10,0x0,0x9,0x0,0x0, - 0x2a,0x30,0x1,0xd,0x0,0x0,0x2a,0x30,0x1,0xd,0x0,0x0,0x1c,0x20,0x1,0x4, - 0x0,0x0,0xe,0x10,0x0,0x9,0x4c,0x4d,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x43, - 0x45,0x54,0x0,0x43,0x45,0x4d,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x1,0x1, - 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x54,0x5a,0x69,0x66,0x32,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x9,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0x0,0x0, - 0x0,0x9,0x0,0x0,0x0,0x12,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff, - 0xff,0xff,0x6f,0xa2,0x61,0xf8,0xff,0xff,0xff,0xff,0x9b,0xc,0x17,0x60,0xff,0xff, - 0xff,0xff,0x9b,0xd5,0xda,0xf0,0xff,0xff,0xff,0xff,0x9c,0xd9,0xae,0x90,0xff,0xff, - 0xff,0xff,0x9d,0xa4,0xb5,0x90,0xff,0xff,0xff,0xff,0x9e,0xb9,0x90,0x90,0xff,0xff, - 0xff,0xff,0x9f,0x84,0x97,0x90,0xff,0xff,0xff,0xff,0xc8,0x9,0x71,0x90,0xff,0xff, - 0xff,0xff,0xcc,0xe7,0x4b,0x10,0xff,0xff,0xff,0xff,0xcd,0xa9,0x17,0x90,0xff,0xff, - 0xff,0xff,0xce,0xa2,0x43,0x10,0xff,0xff,0xff,0xff,0xcf,0x92,0x34,0x10,0xff,0xff, - 0xff,0xff,0xd0,0x82,0x25,0x10,0xff,0xff,0xff,0xff,0xd1,0x72,0x16,0x10,0xff,0xff, - 0xff,0xff,0xd1,0xb6,0x96,0x0,0xff,0xff,0xff,0xff,0xd2,0x58,0xbe,0x80,0xff,0xff, - 0xff,0xff,0xd2,0xa1,0x4f,0x10,0xff,0xff,0xff,0xff,0xd2,0xdb,0x34,0xf0,0xff,0xff, - 0xff,0xff,0xd3,0x63,0x1b,0x90,0xff,0xff,0xff,0xff,0xd4,0x4b,0x23,0x90,0xff,0xff, - 0xff,0xff,0xd5,0x39,0xd1,0x20,0xff,0xff,0xff,0xff,0xd5,0x67,0xe7,0x90,0xff,0xff, - 0xff,0xff,0xd5,0xa8,0x73,0x0,0xff,0xff,0xff,0xff,0xd6,0x29,0xb4,0x10,0xff,0xff, - 0xff,0xff,0xd7,0x2c,0x1a,0x10,0xff,0xff,0xff,0xff,0xd8,0x9,0x96,0x10,0xff,0xff, - 0xff,0xff,0xd9,0x2,0xc1,0x90,0xff,0xff,0xff,0xff,0xd9,0xe9,0x78,0x10,0x0,0x0, - 0x0,0x0,0x12,0xce,0x97,0xf0,0x0,0x0,0x0,0x0,0x13,0x4d,0x44,0x10,0x0,0x0, - 0x0,0x0,0x14,0x33,0xfa,0x90,0x0,0x0,0x0,0x0,0x15,0x23,0xeb,0x90,0x0,0x0, - 0x0,0x0,0x16,0x13,0xdc,0x90,0x0,0x0,0x0,0x0,0x17,0x3,0xcd,0x90,0x0,0x0, - 0x0,0x0,0x17,0xf3,0xbe,0x90,0x0,0x0,0x0,0x0,0x18,0xe3,0xaf,0x90,0x0,0x0, - 0x0,0x0,0x19,0xd3,0xa0,0x90,0x0,0x0,0x0,0x0,0x1a,0xc3,0x91,0x90,0x0,0x0, - 0x0,0x0,0x1b,0xbc,0xbd,0x10,0x0,0x0,0x0,0x0,0x1c,0xac,0xae,0x10,0x0,0x0, - 0x0,0x0,0x1d,0x9c,0x9f,0x10,0x0,0x0,0x0,0x0,0x1e,0x8c,0x90,0x10,0x0,0x0, - 0x0,0x0,0x1f,0x7c,0x81,0x10,0x0,0x0,0x0,0x0,0x20,0x6c,0x72,0x10,0x0,0x0, - 0x0,0x0,0x21,0x5c,0x63,0x10,0x0,0x0,0x0,0x0,0x22,0x4c,0x54,0x10,0x0,0x0, - 0x0,0x0,0x23,0x3c,0x45,0x10,0x0,0x0,0x0,0x0,0x24,0x2c,0x36,0x10,0x0,0x0, - 0x0,0x0,0x25,0x1c,0x27,0x10,0x0,0x0,0x0,0x0,0x26,0xc,0x18,0x10,0x0,0x0, - 0x0,0x0,0x27,0x5,0x43,0x90,0x0,0x0,0x0,0x0,0x27,0xf5,0x34,0x90,0x0,0x0, - 0x0,0x0,0x28,0xe5,0x25,0x90,0x0,0x0,0x0,0x0,0x29,0xd5,0x16,0x90,0x0,0x0, - 0x0,0x0,0x2a,0xc5,0x7,0x90,0x0,0x0,0x0,0x0,0x2b,0xb4,0xf8,0x90,0x0,0x0, - 0x0,0x0,0x2c,0xa4,0xe9,0x90,0x0,0x0,0x0,0x0,0x2d,0x94,0xda,0x90,0x0,0x0, - 0x0,0x0,0x2e,0x84,0xcb,0x90,0x0,0x0,0x0,0x0,0x2f,0x74,0xbc,0x90,0x0,0x0, - 0x0,0x0,0x30,0x64,0xad,0x90,0x0,0x0,0x0,0x0,0x31,0x5d,0xd9,0x10,0x0,0x0, - 0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d,0xbb,0x10,0x0,0x0, - 0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d,0x9d,0x10,0x0,0x0, - 0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd,0x7f,0x10,0x0,0x0, - 0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd,0x61,0x10,0x0,0x0, - 0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd,0x43,0x10,0x0,0x0, - 0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f,0x90,0x0,0x0, - 0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86,0x41,0x90,0x0,0x0, - 0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66,0x23,0x90,0x0,0x0, - 0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46,0x5,0x90,0x0,0x0, - 0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25,0xe7,0x90,0x0,0x0, - 0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5,0xc9,0x90,0x0,0x0, - 0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee,0xe6,0x10,0x0,0x0, - 0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce,0xc8,0x10,0x0,0x0, - 0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae,0xaa,0x10,0x0,0x0, - 0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c,0x10,0x0,0x0, - 0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e,0x10,0x0,0x0, - 0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57,0x8a,0x90,0x0,0x0, - 0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37,0x6c,0x90,0x0,0x0, - 0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17,0x4e,0x90,0x0,0x0, - 0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7,0x30,0x90,0x0,0x0, - 0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7,0x12,0x90,0x0,0x0, - 0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4,0x90,0x0,0x0, - 0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0,0x11,0x10,0x0,0x0, - 0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3,0x10,0x0,0x0, - 0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f,0xd5,0x10,0x0,0x0, - 0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f,0xb7,0x10,0x0,0x0, - 0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f,0x99,0x10,0x0,0x0, - 0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8,0xb5,0x90,0x0,0x0, - 0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8,0x97,0x90,0x0,0x0, - 0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8,0x79,0x90,0x0,0x0, - 0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b,0x90,0x0,0x0, - 0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88,0x3d,0x90,0x0,0x0, - 0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68,0x1f,0x90,0x0,0x0, - 0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51,0x3c,0x10,0x0,0x0, - 0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31,0x1e,0x10,0x0,0x0, - 0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11,0x0,0x10,0x0,0x0, - 0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0,0xe2,0x10,0x0,0x0, - 0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0,0xc4,0x10,0x0,0x0, - 0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6,0x10,0x0,0x0, - 0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99,0xc2,0x90,0x0,0x0, - 0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79,0xa4,0x90,0x0,0x0, - 0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x2,0x1,0x2,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x5,0x1,0x4,0x2,0x3,0x4,0x3,0x6,0x1,0x4,0x3, - 0x4,0x3,0x4,0x2,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8, - 0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8, - 0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8, - 0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8, - 0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8, - 0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8, - 0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8, - 0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x0,0x0,0xc,0x88,0x0,0x0,0x0,0x0, - 0x1c,0x20,0x1,0x4,0x0,0x0,0xe,0x10,0x0,0x9,0x0,0x0,0x1c,0x20,0x1,0x4, - 0x0,0x0,0xe,0x10,0x0,0x9,0x0,0x0,0x2a,0x30,0x1,0xd,0x0,0x0,0x2a,0x30, - 0x1,0xd,0x0,0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe,0x10,0x0,0x9,0x4c,0x4d, - 0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x43,0x45,0x54,0x0,0x43,0x45,0x4d,0x54,0x0, - 0x0,0x0,0x0,0x1,0x1,0x0,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x1,0x1,0xa,0x43,0x45,0x54,0x2d,0x31,0x43,0x45,0x53,0x54,0x2c,0x4d,0x33,0x2e, - 0x35,0x2e,0x30,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30,0x2f,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Europe/London - 0x0,0x0,0xe,0x67, + 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0xa1, + 0x51,0xf3,0x50,0x0,0x1,0x0,0x0,0x3,0x30,0x0,0x0,0x0,0x0,0xe,0x10,0x0, + 0x4,0x4c,0x4d,0x54,0x0,0x57,0x41,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, + 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0xa1,0x51,0xf3,0x50,0x0,0x1,0x0,0x0,0x3,0x30,0x0, + 0x0,0x0,0x0,0xe,0x10,0x0,0x4,0x4c,0x4d,0x54,0x0,0x57,0x41,0x54,0x0,0x0, + 0x0,0x0,0x0,0xa,0x57,0x41,0x54,0x2d,0x31,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Djibouti + 0x0,0x0,0x1,0x1d, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xf3,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x11,0x80,0x0,0x0,0x0,0x9b, - 0x26,0xad,0xa0,0x9b,0xd6,0x5,0x20,0x9c,0xcf,0x30,0xa0,0x9d,0xa4,0xc3,0xa0,0x9e, - 0x9c,0x9d,0xa0,0x9f,0x97,0x1a,0xa0,0xa0,0x85,0xba,0x20,0xa1,0x76,0xfc,0xa0,0xa2, - 0x65,0x9c,0x20,0xa3,0x7b,0xc8,0xa0,0xa4,0x4e,0xb8,0xa0,0xa5,0x3f,0xfb,0x20,0xa6, - 0x25,0x60,0x20,0xa7,0x27,0xc6,0x20,0xa8,0x2a,0x2c,0x20,0xa8,0xeb,0xf8,0xa0,0xaa, - 0x0,0xd3,0xa0,0xaa,0xd5,0x15,0x20,0xab,0xe9,0xf0,0x20,0xac,0xc7,0x6c,0x20,0xad, - 0xc9,0xd2,0x20,0xae,0xa7,0x4e,0x20,0xaf,0xa0,0x79,0xa0,0xb0,0x87,0x30,0x20,0xb1, - 0x92,0xd0,0xa0,0xb2,0x70,0x4c,0xa0,0xb3,0x72,0xb2,0xa0,0xb4,0x50,0x2e,0xa0,0xb5, - 0x49,0x5a,0x20,0xb6,0x30,0x10,0xa0,0xb7,0x32,0x76,0xa0,0xb8,0xf,0xf2,0xa0,0xb9, - 0x12,0x58,0xa0,0xb9,0xef,0xd4,0xa0,0xba,0xe9,0x0,0x20,0xbb,0xd8,0xf1,0x20,0xbc, - 0xdb,0x57,0x20,0xbd,0xb8,0xd3,0x20,0xbe,0xb1,0xfe,0xa0,0xbf,0x98,0xb5,0x20,0xc0, - 0x9b,0x1b,0x20,0xc1,0x78,0x97,0x20,0xc2,0x7a,0xfd,0x20,0xc3,0x58,0x79,0x20,0xc4, - 0x51,0xa4,0xa0,0xc5,0x38,0x5b,0x20,0xc6,0x3a,0xc1,0x20,0xc7,0x58,0xd6,0xa0,0xc7, - 0xda,0x9,0xa0,0xca,0x16,0x26,0x90,0xca,0x97,0x59,0x90,0xcb,0xd1,0x1e,0x90,0xcc, - 0x77,0x3b,0x90,0xcd,0xb1,0x0,0x90,0xce,0x60,0x58,0x10,0xcf,0x90,0xe2,0x90,0xd0, - 0x6e,0x5e,0x90,0xd1,0x72,0x16,0x10,0xd1,0xfb,0x32,0x10,0xd2,0x69,0xfe,0x20,0xd3, - 0x63,0x29,0xa0,0xd4,0x49,0xe0,0x20,0xd5,0x1e,0x21,0xa0,0xd5,0x42,0xfd,0x90,0xd5, - 0xdf,0xe0,0x10,0xd6,0x4e,0xac,0x20,0xd6,0xfe,0x3,0xa0,0xd8,0x2e,0x8e,0x20,0xd8, - 0xf9,0x95,0x20,0xda,0xe,0x70,0x20,0xda,0xeb,0xec,0x20,0xdb,0xe5,0x17,0xa0,0xdc, - 0xcb,0xce,0x20,0xdd,0xc4,0xf9,0xa0,0xde,0xb4,0xea,0xa0,0xdf,0xae,0x16,0x20,0xe0, - 0x94,0xcc,0xa0,0xe1,0x72,0x48,0xa0,0xe2,0x6b,0x74,0x20,0xe3,0x52,0x2a,0xa0,0xe4, - 0x54,0x90,0xa0,0xe5,0x32,0xc,0xa0,0xe6,0x3d,0xad,0x20,0xe7,0x1b,0x29,0x20,0xe8, - 0x14,0x54,0xa0,0xe8,0xfb,0xb,0x20,0xe9,0xfd,0x71,0x20,0xea,0xda,0xed,0x20,0xeb, - 0xdd,0x53,0x20,0xec,0xba,0xcf,0x20,0xed,0xb3,0xfa,0xa0,0xee,0x9a,0xb1,0x20,0xef, - 0x81,0x67,0xa0,0xf0,0x9f,0x7d,0x20,0xf1,0x61,0x49,0xa0,0xf2,0x7f,0x5f,0x20,0xf3, - 0x4a,0x66,0x20,0xf4,0x5f,0x41,0x20,0xf5,0x21,0xd,0xa0,0xf6,0x3f,0x23,0x20,0xf7, - 0x0,0xef,0xa0,0xf8,0x1f,0x5,0x20,0xf8,0xe0,0xd1,0xa0,0xf9,0xfe,0xe7,0x20,0xfa, - 0xc0,0xb3,0xa0,0xfb,0xe8,0x3,0xa0,0xfc,0x7b,0xab,0xa0,0xfd,0xc7,0xbb,0x70,0x3, - 0x70,0xc6,0x20,0x4,0x29,0x58,0x20,0x5,0x50,0xa8,0x20,0x6,0x9,0x3a,0x20,0x7, - 0x30,0x8a,0x20,0x7,0xe9,0x1c,0x20,0x9,0x10,0x6c,0x20,0x9,0xc8,0xfe,0x20,0xa, - 0xf0,0x4e,0x20,0xb,0xb2,0x1a,0xa0,0xc,0xd0,0x30,0x20,0xd,0x91,0xfc,0xa0,0xe, - 0xb0,0x12,0x20,0xf,0x71,0xde,0xa0,0x10,0x99,0x2e,0xa0,0x11,0x51,0xc0,0xa0,0x12, - 0x79,0x10,0xa0,0x13,0x31,0xa2,0xa0,0x14,0x58,0xf2,0xa0,0x15,0x23,0xeb,0x90,0x16, - 0x38,0xc6,0x90,0x17,0x3,0xcd,0x90,0x18,0x18,0xa8,0x90,0x18,0xe3,0xaf,0x90,0x19, - 0xf8,0x8a,0x90,0x1a,0xc3,0x91,0x90,0x1b,0xe1,0xa7,0x10,0x1c,0xac,0xae,0x10,0x1d, - 0xc1,0x89,0x10,0x1e,0x8c,0x90,0x10,0x1f,0xa1,0x6b,0x10,0x20,0x6c,0x72,0x10,0x21, - 0x81,0x4d,0x10,0x22,0x4c,0x54,0x10,0x23,0x61,0x2f,0x10,0x24,0x2c,0x36,0x10,0x25, - 0x4a,0x4b,0x90,0x26,0xc,0x18,0x10,0x27,0x2a,0x2d,0x90,0x27,0xf5,0x34,0x90,0x29, - 0xa,0xf,0x90,0x29,0xd5,0x16,0x90,0x2a,0xe9,0xf1,0x90,0x2b,0xb4,0xf8,0x90,0x2c, - 0xc9,0xd3,0x90,0x2d,0x94,0xda,0x90,0x2e,0xa9,0xb5,0x90,0x2f,0x74,0xbc,0x90,0x30, - 0x89,0x97,0x90,0x30,0xe7,0x24,0x0,0x31,0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33, - 0x3d,0xbb,0x10,0x34,0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36, - 0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a, - 0xbd,0x43,0x10,0x3b,0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e, - 0x86,0x41,0x90,0x3f,0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42, - 0x46,0x5,0x90,0x43,0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46, - 0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49, - 0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d, - 0x8e,0x8c,0x10,0x4e,0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51, - 0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55, - 0x17,0x4e,0x90,0x56,0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58, - 0xd7,0x12,0x90,0x59,0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c, - 0xa0,0x11,0x10,0x5d,0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60, - 0x5f,0xd5,0x10,0x61,0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64, - 0x1f,0x99,0x10,0x65,0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67, - 0xe8,0x97,0x90,0x68,0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b, - 0xa8,0x5b,0x90,0x6c,0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f, - 0x68,0x1f,0x90,0x70,0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73, - 0x31,0x1e,0x10,0x74,0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76, - 0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a, - 0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e, - 0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0xb1, + 0xee,0xda,0xfc,0xb4,0xc2,0x9a,0xd0,0xc7,0x91,0x47,0xd8,0xed,0x2f,0xe1,0xd4,0x0, + 0x1,0x2,0x3,0x1,0x0,0x0,0x22,0x84,0x0,0x0,0x0,0x0,0x2a,0x30,0x0,0x4, + 0x0,0x0,0x23,0x28,0x0,0x8,0x0,0x0,0x26,0xac,0x0,0xe,0x0,0x0,0x2a,0x30, + 0x0,0x4,0x4c,0x4d,0x54,0x0,0x45,0x41,0x54,0x0,0x2b,0x30,0x32,0x33,0x30,0x0, + 0x2b,0x30,0x32,0x34,0x35,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0xf8,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xb1,0xee,0xda,0xfc,0xff,0xff,0xff,0xff, + 0xb4,0xc2,0x9a,0xd0,0xff,0xff,0xff,0xff,0xc7,0x91,0x47,0xd8,0xff,0xff,0xff,0xff, + 0xed,0x2f,0xe1,0xd4,0x0,0x1,0x2,0x3,0x1,0x0,0x0,0x22,0x84,0x0,0x0,0x0, + 0x0,0x2a,0x30,0x0,0x4,0x0,0x0,0x23,0x28,0x0,0x8,0x0,0x0,0x26,0xac,0x0, + 0xe,0x0,0x0,0x2a,0x30,0x0,0x4,0x4c,0x4d,0x54,0x0,0x45,0x41,0x54,0x0,0x2b, + 0x30,0x32,0x33,0x30,0x0,0x2b,0x30,0x32,0x34,0x35,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0xa,0x45,0x41,0x54,0x2d,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Africa/El_Aaiun + 0x0,0x0,0x5,0xc1, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x5a,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x11,0x80,0x0,0x0,0x0,0xbc, + 0x48,0xf0,0xe0,0xb,0xd1,0xb0,0x90,0xb,0xe8,0xc,0x0,0xc,0x61,0x47,0xf0,0xd, + 0xc9,0x3f,0x80,0xe,0x8e,0xf2,0x70,0xf,0xd3,0x51,0x80,0x10,0x27,0xa3,0x70,0x48, + 0x41,0xe6,0x80,0x48,0xbb,0x22,0x70,0x4a,0x23,0x1a,0x0,0x4a,0x8d,0xd5,0x70,0x4b, + 0xdc,0xc0,0x80,0x4c,0x5d,0xe5,0x70,0x4d,0x97,0xb8,0x80,0x4e,0x34,0x8c,0xf0,0x4f, + 0x9c,0xa0,0xa0,0x50,0x8,0xbb,0xa0,0x50,0x31,0x9a,0x20,0x50,0x67,0xa7,0xa0,0x51, + 0x7c,0x82,0xa0,0x51,0xd8,0xcb,0xa0,0x52,0x5,0x9e,0xa0,0x52,0x6c,0x73,0xa0,0x53, + 0x37,0x7a,0xa0,0x53,0xae,0x21,0xa0,0x53,0xdc,0x46,0x20,0x54,0x4c,0x55,0xa0,0x55, + 0x17,0x5c,0xa0,0x55,0x7c,0xe0,0x20,0x55,0xab,0x4,0xa0,0x56,0x2c,0x37,0xa0,0x56, + 0xf7,0x3e,0xa0,0x57,0x53,0x87,0xa0,0x57,0x81,0xac,0x20,0x58,0x15,0x54,0x20,0x58, + 0xd7,0x20,0xa0,0x59,0x20,0xf4,0xa0,0x59,0x58,0x53,0xa0,0x59,0xf5,0x36,0x20,0x5a, + 0xb7,0x2,0xa0,0x5a,0xf7,0x9c,0x20,0x5b,0x25,0xc0,0xa0,0x5b,0xd5,0x18,0x20,0x5c, + 0xa0,0x1f,0x20,0x5c,0xce,0x43,0xa0,0x5c,0xfc,0x68,0x20,0x5d,0xb4,0xfa,0x20,0x5e, + 0x80,0x1,0x20,0x5e,0x9b,0xb0,0xa0,0x5e,0xc9,0xd5,0x20,0x5f,0x94,0xdc,0x20,0x60, + 0x5f,0xe3,0x20,0x60,0x72,0x58,0x20,0x60,0xa0,0x7c,0xa0,0x61,0x7d,0xf8,0xa0,0x62, + 0x77,0x24,0x20,0x63,0x5d,0xda,0xa0,0x64,0x44,0x91,0x20,0x65,0x3d,0xbc,0xa0,0x66, + 0x1b,0x38,0xa0,0x67,0x1d,0x9e,0xa0,0x67,0xf1,0xe0,0x20,0x68,0xfd,0x80,0xa0,0x69, + 0xc8,0x87,0xa0,0x6a,0xdd,0x62,0xa0,0x6b,0xa8,0x69,0xa0,0x6c,0xc6,0x7f,0x20,0x6d, + 0x88,0x4b,0xa0,0x6e,0xa6,0x61,0x20,0x6f,0x68,0x2d,0xa0,0x70,0x86,0x43,0x20,0x71, + 0x51,0x4a,0x20,0x72,0x66,0x25,0x20,0x73,0x31,0x2c,0x20,0x74,0x46,0x7,0x20,0x75, + 0x11,0xe,0x20,0x76,0x2f,0x23,0xa0,0x76,0xf0,0xf0,0x20,0x78,0xf,0x5,0xa0,0x78, + 0xd0,0xd2,0x20,0x79,0xee,0xe7,0xa0,0x7a,0xb0,0xb4,0x20,0x7b,0xce,0xc9,0xa0,0x7c, + 0x99,0xd0,0xa0,0x7d,0xa5,0x71,0x20,0x7e,0x79,0xb2,0xa0,0x7f,0x72,0xde,0x20,0x7f, + 0x8e,0x9b,0xb0,0x0,0x1,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x3,0xff,0xff,0xf3, + 0xa0,0x0,0x0,0xff,0xff,0xf1,0xf0,0x0,0x4,0x0,0x0,0xe,0x10,0x1,0x8,0x0, + 0x0,0x0,0x0,0x0,0xd,0x4c,0x4d,0x54,0x0,0x2d,0x30,0x31,0x0,0x57,0x45,0x53, + 0x54,0x0,0x57,0x45,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a, + 0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x5a,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x11,0xf8,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xff,0xff,0xff,0xff,0xbc,0x48,0xf0,0xe0,0x0,0x0,0x0,0x0,0xb,0xd1, + 0xb0,0x90,0x0,0x0,0x0,0x0,0xb,0xe8,0xc,0x0,0x0,0x0,0x0,0x0,0xc,0x61, + 0x47,0xf0,0x0,0x0,0x0,0x0,0xd,0xc9,0x3f,0x80,0x0,0x0,0x0,0x0,0xe,0x8e, + 0xf2,0x70,0x0,0x0,0x0,0x0,0xf,0xd3,0x51,0x80,0x0,0x0,0x0,0x0,0x10,0x27, + 0xa3,0x70,0x0,0x0,0x0,0x0,0x48,0x41,0xe6,0x80,0x0,0x0,0x0,0x0,0x48,0xbb, + 0x22,0x70,0x0,0x0,0x0,0x0,0x4a,0x23,0x1a,0x0,0x0,0x0,0x0,0x0,0x4a,0x8d, + 0xd5,0x70,0x0,0x0,0x0,0x0,0x4b,0xdc,0xc0,0x80,0x0,0x0,0x0,0x0,0x4c,0x5d, + 0xe5,0x70,0x0,0x0,0x0,0x0,0x4d,0x97,0xb8,0x80,0x0,0x0,0x0,0x0,0x4e,0x34, + 0x8c,0xf0,0x0,0x0,0x0,0x0,0x4f,0x9c,0xa0,0xa0,0x0,0x0,0x0,0x0,0x50,0x8, + 0xbb,0xa0,0x0,0x0,0x0,0x0,0x50,0x31,0x9a,0x20,0x0,0x0,0x0,0x0,0x50,0x67, + 0xa7,0xa0,0x0,0x0,0x0,0x0,0x51,0x7c,0x82,0xa0,0x0,0x0,0x0,0x0,0x51,0xd8, + 0xcb,0xa0,0x0,0x0,0x0,0x0,0x52,0x5,0x9e,0xa0,0x0,0x0,0x0,0x0,0x52,0x6c, + 0x73,0xa0,0x0,0x0,0x0,0x0,0x53,0x37,0x7a,0xa0,0x0,0x0,0x0,0x0,0x53,0xae, + 0x21,0xa0,0x0,0x0,0x0,0x0,0x53,0xdc,0x46,0x20,0x0,0x0,0x0,0x0,0x54,0x4c, + 0x55,0xa0,0x0,0x0,0x0,0x0,0x55,0x17,0x5c,0xa0,0x0,0x0,0x0,0x0,0x55,0x7c, + 0xe0,0x20,0x0,0x0,0x0,0x0,0x55,0xab,0x4,0xa0,0x0,0x0,0x0,0x0,0x56,0x2c, + 0x37,0xa0,0x0,0x0,0x0,0x0,0x56,0xf7,0x3e,0xa0,0x0,0x0,0x0,0x0,0x57,0x53, + 0x87,0xa0,0x0,0x0,0x0,0x0,0x57,0x81,0xac,0x20,0x0,0x0,0x0,0x0,0x58,0x15, + 0x54,0x20,0x0,0x0,0x0,0x0,0x58,0xd7,0x20,0xa0,0x0,0x0,0x0,0x0,0x59,0x20, + 0xf4,0xa0,0x0,0x0,0x0,0x0,0x59,0x58,0x53,0xa0,0x0,0x0,0x0,0x0,0x59,0xf5, + 0x36,0x20,0x0,0x0,0x0,0x0,0x5a,0xb7,0x2,0xa0,0x0,0x0,0x0,0x0,0x5a,0xf7, + 0x9c,0x20,0x0,0x0,0x0,0x0,0x5b,0x25,0xc0,0xa0,0x0,0x0,0x0,0x0,0x5b,0xd5, + 0x18,0x20,0x0,0x0,0x0,0x0,0x5c,0xa0,0x1f,0x20,0x0,0x0,0x0,0x0,0x5c,0xce, + 0x43,0xa0,0x0,0x0,0x0,0x0,0x5c,0xfc,0x68,0x20,0x0,0x0,0x0,0x0,0x5d,0xb4, + 0xfa,0x20,0x0,0x0,0x0,0x0,0x5e,0x80,0x1,0x20,0x0,0x0,0x0,0x0,0x5e,0x9b, + 0xb0,0xa0,0x0,0x0,0x0,0x0,0x5e,0xc9,0xd5,0x20,0x0,0x0,0x0,0x0,0x5f,0x94, + 0xdc,0x20,0x0,0x0,0x0,0x0,0x60,0x5f,0xe3,0x20,0x0,0x0,0x0,0x0,0x60,0x72, + 0x58,0x20,0x0,0x0,0x0,0x0,0x60,0xa0,0x7c,0xa0,0x0,0x0,0x0,0x0,0x61,0x7d, + 0xf8,0xa0,0x0,0x0,0x0,0x0,0x62,0x77,0x24,0x20,0x0,0x0,0x0,0x0,0x63,0x5d, + 0xda,0xa0,0x0,0x0,0x0,0x0,0x64,0x44,0x91,0x20,0x0,0x0,0x0,0x0,0x65,0x3d, + 0xbc,0xa0,0x0,0x0,0x0,0x0,0x66,0x1b,0x38,0xa0,0x0,0x0,0x0,0x0,0x67,0x1d, + 0x9e,0xa0,0x0,0x0,0x0,0x0,0x67,0xf1,0xe0,0x20,0x0,0x0,0x0,0x0,0x68,0xfd, + 0x80,0xa0,0x0,0x0,0x0,0x0,0x69,0xc8,0x87,0xa0,0x0,0x0,0x0,0x0,0x6a,0xdd, + 0x62,0xa0,0x0,0x0,0x0,0x0,0x6b,0xa8,0x69,0xa0,0x0,0x0,0x0,0x0,0x6c,0xc6, + 0x7f,0x20,0x0,0x0,0x0,0x0,0x6d,0x88,0x4b,0xa0,0x0,0x0,0x0,0x0,0x6e,0xa6, + 0x61,0x20,0x0,0x0,0x0,0x0,0x6f,0x68,0x2d,0xa0,0x0,0x0,0x0,0x0,0x70,0x86, + 0x43,0x20,0x0,0x0,0x0,0x0,0x71,0x51,0x4a,0x20,0x0,0x0,0x0,0x0,0x72,0x66, + 0x25,0x20,0x0,0x0,0x0,0x0,0x73,0x31,0x2c,0x20,0x0,0x0,0x0,0x0,0x74,0x46, + 0x7,0x20,0x0,0x0,0x0,0x0,0x75,0x11,0xe,0x20,0x0,0x0,0x0,0x0,0x76,0x2f, + 0x23,0xa0,0x0,0x0,0x0,0x0,0x76,0xf0,0xf0,0x20,0x0,0x0,0x0,0x0,0x78,0xf, + 0x5,0xa0,0x0,0x0,0x0,0x0,0x78,0xd0,0xd2,0x20,0x0,0x0,0x0,0x0,0x79,0xee, + 0xe7,0xa0,0x0,0x0,0x0,0x0,0x7a,0xb0,0xb4,0x20,0x0,0x0,0x0,0x0,0x7b,0xce, + 0xc9,0xa0,0x0,0x0,0x0,0x0,0x7c,0x99,0xd0,0xa0,0x0,0x0,0x0,0x0,0x7d,0xa5, + 0x71,0x20,0x0,0x0,0x0,0x0,0x7e,0x79,0xb2,0xa0,0x0,0x0,0x0,0x0,0x7f,0x72, + 0xde,0x20,0x0,0x0,0x0,0x0,0x7f,0x8e,0x9b,0xb0,0x0,0x1,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x3,0xff,0xff,0xf3,0xa0,0x0,0x0,0xff,0xff,0xf1,0xf0,0x0,0x4, + 0x0,0x0,0xe,0x10,0x1,0x8,0x0,0x0,0x0,0x0,0x0,0xd,0x4c,0x4d,0x54,0x0, + 0x2d,0x30,0x31,0x0,0x57,0x45,0x53,0x54,0x0,0x57,0x45,0x54,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0xa,0x57,0x45,0x54,0x30,0x57,0x45,0x53,0x54,0x2c,0x4d, + 0x33,0x2e,0x35,0x2e,0x30,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30,0x2f,0x33,0xa, + + // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Niamey + 0x0,0x0,0x0,0xab, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0xa1, + 0x51,0xf3,0x50,0x0,0x1,0x0,0x0,0x3,0x30,0x0,0x0,0x0,0x0,0xe,0x10,0x0, + 0x4,0x4c,0x4d,0x54,0x0,0x57,0x41,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, + 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0xa1,0x51,0xf3,0x50,0x0,0x1,0x0,0x0,0x3,0x30,0x0, + 0x0,0x0,0x0,0xe,0x10,0x0,0x4,0x4c,0x4d,0x54,0x0,0x57,0x41,0x54,0x0,0x0, + 0x0,0x0,0x0,0xa,0x57,0x41,0x54,0x2d,0x31,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Tripoli + 0x0,0x0,0x2,0x8f, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x21,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x11,0x80,0x0,0x0,0x0,0xa1, + 0xf2,0xc1,0x24,0xdd,0xbb,0xb1,0x10,0xde,0x23,0xad,0x60,0xe1,0x78,0xd2,0x10,0xe1, + 0xe7,0x65,0xe0,0xe5,0x2f,0x3f,0x70,0xe5,0xa9,0xcc,0xe0,0xeb,0x4e,0xc6,0xf0,0x16, + 0x92,0x42,0x60,0x17,0x8,0xf7,0x70,0x17,0xfa,0x2b,0xe0,0x18,0xea,0x2a,0xf0,0x19, + 0xdb,0x5f,0x60,0x1a,0xcc,0xaf,0xf0,0x1b,0xbd,0xe4,0x60,0x1c,0xb4,0x7a,0xf0,0x1d, + 0x9f,0x17,0xe0,0x1e,0x93,0xb,0x70,0x1f,0x82,0xee,0x60,0x20,0x70,0x4a,0x70,0x21, + 0x61,0x7e,0xe0,0x22,0x52,0xcf,0x70,0x23,0x44,0x3,0xe0,0x24,0x34,0x2,0xf0,0x25, + 0x25,0x37,0x60,0x26,0x40,0xb7,0xf0,0x32,0x4e,0xf1,0x60,0x33,0x44,0x36,0x70,0x34, + 0x35,0x6a,0xe0,0x50,0x9d,0x99,0x0,0x51,0x54,0xd9,0x80,0x52,0x69,0xb4,0x80,0x0, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x2,0x1,0x3,0x2,0x1,0x3, + 0x0,0x0,0xc,0x5c,0x0,0x0,0x0,0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe,0x10, + 0x0,0x9,0x0,0x0,0x1c,0x20,0x0,0xd,0x4c,0x4d,0x54,0x0,0x43,0x45,0x53,0x54, + 0x0,0x43,0x45,0x54,0x0,0x45,0x45,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x11,0xf8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xa1,0xf2,0xc1,0x24,0xff,0xff,0xff, + 0xff,0xdd,0xbb,0xb1,0x10,0xff,0xff,0xff,0xff,0xde,0x23,0xad,0x60,0xff,0xff,0xff, + 0xff,0xe1,0x78,0xd2,0x10,0xff,0xff,0xff,0xff,0xe1,0xe7,0x65,0xe0,0xff,0xff,0xff, + 0xff,0xe5,0x2f,0x3f,0x70,0xff,0xff,0xff,0xff,0xe5,0xa9,0xcc,0xe0,0xff,0xff,0xff, + 0xff,0xeb,0x4e,0xc6,0xf0,0x0,0x0,0x0,0x0,0x16,0x92,0x42,0x60,0x0,0x0,0x0, + 0x0,0x17,0x8,0xf7,0x70,0x0,0x0,0x0,0x0,0x17,0xfa,0x2b,0xe0,0x0,0x0,0x0, + 0x0,0x18,0xea,0x2a,0xf0,0x0,0x0,0x0,0x0,0x19,0xdb,0x5f,0x60,0x0,0x0,0x0, + 0x0,0x1a,0xcc,0xaf,0xf0,0x0,0x0,0x0,0x0,0x1b,0xbd,0xe4,0x60,0x0,0x0,0x0, + 0x0,0x1c,0xb4,0x7a,0xf0,0x0,0x0,0x0,0x0,0x1d,0x9f,0x17,0xe0,0x0,0x0,0x0, + 0x0,0x1e,0x93,0xb,0x70,0x0,0x0,0x0,0x0,0x1f,0x82,0xee,0x60,0x0,0x0,0x0, + 0x0,0x20,0x70,0x4a,0x70,0x0,0x0,0x0,0x0,0x21,0x61,0x7e,0xe0,0x0,0x0,0x0, + 0x0,0x22,0x52,0xcf,0x70,0x0,0x0,0x0,0x0,0x23,0x44,0x3,0xe0,0x0,0x0,0x0, + 0x0,0x24,0x34,0x2,0xf0,0x0,0x0,0x0,0x0,0x25,0x25,0x37,0x60,0x0,0x0,0x0, + 0x0,0x26,0x40,0xb7,0xf0,0x0,0x0,0x0,0x0,0x32,0x4e,0xf1,0x60,0x0,0x0,0x0, + 0x0,0x33,0x44,0x36,0x70,0x0,0x0,0x0,0x0,0x34,0x35,0x6a,0xe0,0x0,0x0,0x0, + 0x0,0x50,0x9d,0x99,0x0,0x0,0x0,0x0,0x0,0x51,0x54,0xd9,0x80,0x0,0x0,0x0, + 0x0,0x52,0x69,0xb4,0x80,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3, + 0x2,0x1,0x3,0x2,0x1,0x3,0x0,0x0,0xc,0x5c,0x0,0x0,0x0,0x0,0x1c,0x20, + 0x1,0x4,0x0,0x0,0xe,0x10,0x0,0x9,0x0,0x0,0x1c,0x20,0x0,0xd,0x4c,0x4d, + 0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x43,0x45,0x54,0x0,0x45,0x45,0x54,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x45,0x45,0x54,0x2d,0x32,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Abidjan + 0x0,0x0,0x0,0xaa, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x92, + 0xe6,0x92,0x48,0x0,0x1,0xff,0xff,0xfc,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x4,0x4c,0x4d,0x54,0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, + 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0x92,0xe6,0x92,0x48,0x0,0x1,0xff,0xff,0xfc,0x38,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x4c,0x4d,0x54,0x0,0x47,0x4d,0x54,0x0,0x0, + 0x0,0x0,0x0,0xa,0x47,0x4d,0x54,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Conakry + 0x0,0x0,0x0,0xaa, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x92, + 0xe6,0x92,0x48,0x0,0x1,0xff,0xff,0xfc,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x4,0x4c,0x4d,0x54,0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, + 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0x92,0xe6,0x92,0x48,0x0,0x1,0xff,0xff,0xfc,0x38,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x4c,0x4d,0x54,0x0,0x47,0x4d,0x54,0x0,0x0, + 0x0,0x0,0x0,0xa,0x47,0x4d,0x54,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Gaborone + 0x0,0x0,0x0,0xab, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x82, + 0x46,0xc5,0xf4,0x0,0x1,0x0,0x0,0x1e,0x8c,0x0,0x0,0x0,0x0,0x1c,0x20,0x0, + 0x4,0x4c,0x4d,0x54,0x0,0x43,0x41,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, + 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0x82,0x46,0xc5,0xf4,0x0,0x1,0x0,0x0,0x1e,0x8c,0x0, + 0x0,0x0,0x0,0x1c,0x20,0x0,0x4,0x4c,0x4d,0x54,0x0,0x43,0x41,0x54,0x0,0x0, + 0x0,0x0,0x0,0xa,0x43,0x41,0x54,0x2d,0x32,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Sao_Tome + 0x0,0x0,0x0,0xaa, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x92, + 0xe6,0x92,0x48,0x0,0x1,0xff,0xff,0xfc,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x4,0x4c,0x4d,0x54,0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, + 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0x92,0xe6,0x92,0x48,0x0,0x1,0xff,0xff,0xfc,0x38,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x4c,0x4d,0x54,0x0,0x47,0x4d,0x54,0x0,0x0, + 0x0,0x0,0x0,0xa,0x47,0x4d,0x54,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Lusaka + 0x0,0x0,0x0,0xab, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x82, + 0x46,0xc5,0xf4,0x0,0x1,0x0,0x0,0x1e,0x8c,0x0,0x0,0x0,0x0,0x1c,0x20,0x0, + 0x4,0x4c,0x4d,0x54,0x0,0x43,0x41,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, + 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0x82,0x46,0xc5,0xf4,0x0,0x1,0x0,0x0,0x1e,0x8c,0x0, + 0x0,0x0,0x0,0x1c,0x20,0x0,0x4,0x4c,0x4d,0x54,0x0,0x43,0x41,0x54,0x0,0x0, + 0x0,0x0,0x0,0xa,0x43,0x41,0x54,0x2d,0x32,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Freetown + 0x0,0x0,0x0,0xaa, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x92, + 0xe6,0x92,0x48,0x0,0x1,0xff,0xff,0xfc,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x4,0x4c,0x4d,0x54,0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, + 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0x92,0xe6,0x92,0x48,0x0,0x1,0xff,0xff,0xfc,0x38,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x4c,0x4d,0x54,0x0,0x47,0x4d,0x54,0x0,0x0, + 0x0,0x0,0x0,0xa,0x47,0x4d,0x54,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Cairo + 0x0,0x0,0x7,0xb4, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x7f,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0xc8, + 0x93,0xb4,0xe0,0xc8,0xfa,0x7b,0xd0,0xc9,0xfc,0xef,0xe0,0xca,0xc7,0xe8,0xd0,0xcb, + 0xcb,0xae,0x60,0xcc,0xdf,0x29,0xd0,0xcd,0xac,0xe1,0xe0,0xce,0xc6,0xf4,0xd0,0xcf, + 0x8f,0x66,0xe0,0xd0,0xa9,0x79,0xd0,0xd1,0x84,0x60,0xe0,0xd2,0x8a,0xad,0x50,0xe8, + 0x36,0x63,0x60,0xe8,0xf4,0x2d,0x50,0xea,0xb,0xb9,0x60,0xea,0xd5,0x60,0xd0,0xeb, + 0xec,0xfa,0xf0,0xec,0xb5,0x6d,0x0,0xed,0xcf,0x7f,0xf0,0xee,0x97,0xf2,0x0,0xef, + 0xb0,0xb3,0x70,0xf0,0x79,0x25,0x80,0xf1,0x91,0xe6,0xf0,0xf2,0x5a,0x59,0x0,0xf3, + 0x73,0x1a,0x70,0xf4,0x3b,0x8c,0x80,0xf5,0x55,0x9f,0x70,0xf6,0x1e,0x11,0x80,0xf7, + 0x36,0xd2,0xf0,0xf7,0xff,0x45,0x0,0xf9,0x18,0x6,0x70,0xf9,0xe1,0xca,0x0,0xfa, + 0xf9,0x39,0xf0,0xfb,0xc2,0xfd,0x80,0xfc,0xdb,0xbe,0xf0,0xfd,0xa5,0x82,0x80,0xfe, + 0xbc,0xf2,0x70,0xff,0x86,0xb6,0x0,0x0,0x9e,0x25,0xf0,0x1,0x67,0xe9,0x80,0x2, + 0x7f,0x59,0x70,0x3,0x49,0x1d,0x0,0x4,0x61,0xde,0x70,0x5,0x2b,0xa2,0x0,0x6, + 0x43,0x11,0xf0,0x7,0xc,0xd5,0x80,0x8,0x24,0x45,0x70,0x8,0xee,0x9,0x0,0xa, + 0x5,0x78,0xf0,0xa,0xcf,0x3c,0x80,0xb,0xe7,0xfd,0xf0,0xc,0xb1,0xc1,0x80,0xd, + 0xc9,0x31,0x70,0xe,0x92,0xf5,0x0,0xf,0xaa,0x64,0xf0,0x10,0x74,0x28,0x80,0x11, + 0x8b,0x98,0x70,0x12,0x55,0x5c,0x0,0x13,0x6e,0x1d,0x70,0x14,0x37,0xe1,0x0,0x15, + 0x4f,0x50,0xf0,0x16,0x19,0x14,0x80,0x17,0xa0,0x93,0xf0,0x17,0xfa,0x48,0x0,0x19, + 0x70,0xa3,0xf0,0x19,0xdb,0x7b,0x80,0x1a,0xf4,0x3c,0xf0,0x1b,0xbe,0x0,0x80,0x1c, + 0xd5,0x70,0x70,0x1d,0x9f,0x34,0x0,0x1e,0xb6,0xa3,0xf0,0x1f,0x80,0x67,0x80,0x20, + 0x97,0xd7,0x70,0x21,0x61,0x9b,0x0,0x22,0x7a,0x5c,0x70,0x23,0x44,0x20,0x0,0x24, + 0x62,0x27,0x70,0x25,0x25,0x53,0x80,0x26,0x3c,0xc3,0x70,0x27,0x6,0x87,0x0,0x28, + 0x1d,0xf6,0xf0,0x28,0xe7,0xba,0x80,0x2a,0x0,0x7b,0xf0,0x2a,0xca,0x3f,0x80,0x2b, + 0xe1,0xaf,0x70,0x2c,0xab,0x73,0x0,0x2d,0xc2,0xe2,0xf0,0x2e,0x8c,0xa6,0x80,0x2f, + 0xa0,0x13,0xe0,0x30,0x6b,0xc,0xd0,0x31,0x7f,0xf5,0xe0,0x32,0x4a,0xee,0xd0,0x33, + 0x5f,0xd7,0xe0,0x34,0x2a,0xd0,0xd0,0x35,0x3f,0xb9,0xe0,0x36,0xa,0xb2,0xd0,0x37, + 0x28,0xd6,0x60,0x37,0xf3,0xcf,0x50,0x39,0x8,0xb8,0x60,0x39,0xd3,0xb1,0x50,0x3a, + 0xe8,0x9a,0x60,0x3b,0xb3,0x93,0x50,0x3c,0xc8,0x7c,0x60,0x3d,0x93,0x75,0x50,0x3e, + 0xa8,0x5e,0x60,0x3f,0x73,0x57,0x50,0x40,0x91,0x7a,0xe0,0x41,0x5c,0x73,0xd0,0x42, + 0x71,0x5c,0xe0,0x43,0x3c,0x55,0xd0,0x44,0x51,0x3e,0xe0,0x45,0x12,0xfd,0x50,0x46, + 0x31,0x20,0xe0,0x46,0xe0,0x6a,0x50,0x48,0x11,0x2,0xe0,0x48,0xb7,0x11,0xd0,0x49, + 0xf0,0xe4,0xe0,0x4a,0x8d,0xb9,0x50,0x4b,0xda,0x1,0x60,0x4c,0x61,0xbd,0xd0,0x4c, + 0x89,0x58,0xe0,0x4c,0xa4,0xfa,0x50,0x53,0x75,0x38,0xe0,0x53,0xac,0x89,0xd0,0x53, + 0xda,0xbc,0x60,0x54,0x24,0x82,0x50,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3, - 0x1,0x3,0x1,0x2,0x1,0x2,0x1,0x3,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x4,0x6,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x7,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0xff,0xff,0xff,0xb5,0x0,0x0, - 0x0,0x0,0xe,0x10,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x1c,0x20, - 0x1,0xc,0x0,0x0,0xe,0x10,0x0,0x4,0x0,0x0,0xe,0x10,0x1,0x4,0x0,0x0, - 0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x42,0x53, - 0x54,0x0,0x47,0x4d,0x54,0x0,0x42,0x44,0x53,0x54,0x0,0x0,0x1,0x1,0x1,0x0, - 0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x54,0x5a,0x69,0x66,0x32, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf4,0x0, - 0x0,0x0,0x8,0x0,0x0,0x0,0x11,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff, - 0xff,0xff,0xff,0x1a,0x5d,0x9,0xcb,0xff,0xff,0xff,0xff,0x9b,0x26,0xad,0xa0,0xff, - 0xff,0xff,0xff,0x9b,0xd6,0x5,0x20,0xff,0xff,0xff,0xff,0x9c,0xcf,0x30,0xa0,0xff, - 0xff,0xff,0xff,0x9d,0xa4,0xc3,0xa0,0xff,0xff,0xff,0xff,0x9e,0x9c,0x9d,0xa0,0xff, - 0xff,0xff,0xff,0x9f,0x97,0x1a,0xa0,0xff,0xff,0xff,0xff,0xa0,0x85,0xba,0x20,0xff, - 0xff,0xff,0xff,0xa1,0x76,0xfc,0xa0,0xff,0xff,0xff,0xff,0xa2,0x65,0x9c,0x20,0xff, - 0xff,0xff,0xff,0xa3,0x7b,0xc8,0xa0,0xff,0xff,0xff,0xff,0xa4,0x4e,0xb8,0xa0,0xff, - 0xff,0xff,0xff,0xa5,0x3f,0xfb,0x20,0xff,0xff,0xff,0xff,0xa6,0x25,0x60,0x20,0xff, - 0xff,0xff,0xff,0xa7,0x27,0xc6,0x20,0xff,0xff,0xff,0xff,0xa8,0x2a,0x2c,0x20,0xff, - 0xff,0xff,0xff,0xa8,0xeb,0xf8,0xa0,0xff,0xff,0xff,0xff,0xaa,0x0,0xd3,0xa0,0xff, - 0xff,0xff,0xff,0xaa,0xd5,0x15,0x20,0xff,0xff,0xff,0xff,0xab,0xe9,0xf0,0x20,0xff, - 0xff,0xff,0xff,0xac,0xc7,0x6c,0x20,0xff,0xff,0xff,0xff,0xad,0xc9,0xd2,0x20,0xff, - 0xff,0xff,0xff,0xae,0xa7,0x4e,0x20,0xff,0xff,0xff,0xff,0xaf,0xa0,0x79,0xa0,0xff, - 0xff,0xff,0xff,0xb0,0x87,0x30,0x20,0xff,0xff,0xff,0xff,0xb1,0x92,0xd0,0xa0,0xff, - 0xff,0xff,0xff,0xb2,0x70,0x4c,0xa0,0xff,0xff,0xff,0xff,0xb3,0x72,0xb2,0xa0,0xff, - 0xff,0xff,0xff,0xb4,0x50,0x2e,0xa0,0xff,0xff,0xff,0xff,0xb5,0x49,0x5a,0x20,0xff, - 0xff,0xff,0xff,0xb6,0x30,0x10,0xa0,0xff,0xff,0xff,0xff,0xb7,0x32,0x76,0xa0,0xff, - 0xff,0xff,0xff,0xb8,0xf,0xf2,0xa0,0xff,0xff,0xff,0xff,0xb9,0x12,0x58,0xa0,0xff, - 0xff,0xff,0xff,0xb9,0xef,0xd4,0xa0,0xff,0xff,0xff,0xff,0xba,0xe9,0x0,0x20,0xff, - 0xff,0xff,0xff,0xbb,0xd8,0xf1,0x20,0xff,0xff,0xff,0xff,0xbc,0xdb,0x57,0x20,0xff, - 0xff,0xff,0xff,0xbd,0xb8,0xd3,0x20,0xff,0xff,0xff,0xff,0xbe,0xb1,0xfe,0xa0,0xff, - 0xff,0xff,0xff,0xbf,0x98,0xb5,0x20,0xff,0xff,0xff,0xff,0xc0,0x9b,0x1b,0x20,0xff, - 0xff,0xff,0xff,0xc1,0x78,0x97,0x20,0xff,0xff,0xff,0xff,0xc2,0x7a,0xfd,0x20,0xff, - 0xff,0xff,0xff,0xc3,0x58,0x79,0x20,0xff,0xff,0xff,0xff,0xc4,0x51,0xa4,0xa0,0xff, - 0xff,0xff,0xff,0xc5,0x38,0x5b,0x20,0xff,0xff,0xff,0xff,0xc6,0x3a,0xc1,0x20,0xff, - 0xff,0xff,0xff,0xc7,0x58,0xd6,0xa0,0xff,0xff,0xff,0xff,0xc7,0xda,0x9,0xa0,0xff, - 0xff,0xff,0xff,0xca,0x16,0x26,0x90,0xff,0xff,0xff,0xff,0xca,0x97,0x59,0x90,0xff, - 0xff,0xff,0xff,0xcb,0xd1,0x1e,0x90,0xff,0xff,0xff,0xff,0xcc,0x77,0x3b,0x90,0xff, - 0xff,0xff,0xff,0xcd,0xb1,0x0,0x90,0xff,0xff,0xff,0xff,0xce,0x60,0x58,0x10,0xff, - 0xff,0xff,0xff,0xcf,0x90,0xe2,0x90,0xff,0xff,0xff,0xff,0xd0,0x6e,0x5e,0x90,0xff, - 0xff,0xff,0xff,0xd1,0x72,0x16,0x10,0xff,0xff,0xff,0xff,0xd1,0xfb,0x32,0x10,0xff, - 0xff,0xff,0xff,0xd2,0x69,0xfe,0x20,0xff,0xff,0xff,0xff,0xd3,0x63,0x29,0xa0,0xff, - 0xff,0xff,0xff,0xd4,0x49,0xe0,0x20,0xff,0xff,0xff,0xff,0xd5,0x1e,0x21,0xa0,0xff, - 0xff,0xff,0xff,0xd5,0x42,0xfd,0x90,0xff,0xff,0xff,0xff,0xd5,0xdf,0xe0,0x10,0xff, - 0xff,0xff,0xff,0xd6,0x4e,0xac,0x20,0xff,0xff,0xff,0xff,0xd6,0xfe,0x3,0xa0,0xff, - 0xff,0xff,0xff,0xd8,0x2e,0x8e,0x20,0xff,0xff,0xff,0xff,0xd8,0xf9,0x95,0x20,0xff, - 0xff,0xff,0xff,0xda,0xe,0x70,0x20,0xff,0xff,0xff,0xff,0xda,0xeb,0xec,0x20,0xff, - 0xff,0xff,0xff,0xdb,0xe5,0x17,0xa0,0xff,0xff,0xff,0xff,0xdc,0xcb,0xce,0x20,0xff, - 0xff,0xff,0xff,0xdd,0xc4,0xf9,0xa0,0xff,0xff,0xff,0xff,0xde,0xb4,0xea,0xa0,0xff, - 0xff,0xff,0xff,0xdf,0xae,0x16,0x20,0xff,0xff,0xff,0xff,0xe0,0x94,0xcc,0xa0,0xff, - 0xff,0xff,0xff,0xe1,0x72,0x48,0xa0,0xff,0xff,0xff,0xff,0xe2,0x6b,0x74,0x20,0xff, - 0xff,0xff,0xff,0xe3,0x52,0x2a,0xa0,0xff,0xff,0xff,0xff,0xe4,0x54,0x90,0xa0,0xff, - 0xff,0xff,0xff,0xe5,0x32,0xc,0xa0,0xff,0xff,0xff,0xff,0xe6,0x3d,0xad,0x20,0xff, - 0xff,0xff,0xff,0xe7,0x1b,0x29,0x20,0xff,0xff,0xff,0xff,0xe8,0x14,0x54,0xa0,0xff, - 0xff,0xff,0xff,0xe8,0xfb,0xb,0x20,0xff,0xff,0xff,0xff,0xe9,0xfd,0x71,0x20,0xff, - 0xff,0xff,0xff,0xea,0xda,0xed,0x20,0xff,0xff,0xff,0xff,0xeb,0xdd,0x53,0x20,0xff, - 0xff,0xff,0xff,0xec,0xba,0xcf,0x20,0xff,0xff,0xff,0xff,0xed,0xb3,0xfa,0xa0,0xff, - 0xff,0xff,0xff,0xee,0x9a,0xb1,0x20,0xff,0xff,0xff,0xff,0xef,0x81,0x67,0xa0,0xff, - 0xff,0xff,0xff,0xf0,0x9f,0x7d,0x20,0xff,0xff,0xff,0xff,0xf1,0x61,0x49,0xa0,0xff, - 0xff,0xff,0xff,0xf2,0x7f,0x5f,0x20,0xff,0xff,0xff,0xff,0xf3,0x4a,0x66,0x20,0xff, - 0xff,0xff,0xff,0xf4,0x5f,0x41,0x20,0xff,0xff,0xff,0xff,0xf5,0x21,0xd,0xa0,0xff, - 0xff,0xff,0xff,0xf6,0x3f,0x23,0x20,0xff,0xff,0xff,0xff,0xf7,0x0,0xef,0xa0,0xff, - 0xff,0xff,0xff,0xf8,0x1f,0x5,0x20,0xff,0xff,0xff,0xff,0xf8,0xe0,0xd1,0xa0,0xff, - 0xff,0xff,0xff,0xf9,0xfe,0xe7,0x20,0xff,0xff,0xff,0xff,0xfa,0xc0,0xb3,0xa0,0xff, - 0xff,0xff,0xff,0xfb,0xe8,0x3,0xa0,0xff,0xff,0xff,0xff,0xfc,0x7b,0xab,0xa0,0xff, - 0xff,0xff,0xff,0xfd,0xc7,0xbb,0x70,0x0,0x0,0x0,0x0,0x3,0x70,0xc6,0x20,0x0, - 0x0,0x0,0x0,0x4,0x29,0x58,0x20,0x0,0x0,0x0,0x0,0x5,0x50,0xa8,0x20,0x0, - 0x0,0x0,0x0,0x6,0x9,0x3a,0x20,0x0,0x0,0x0,0x0,0x7,0x30,0x8a,0x20,0x0, - 0x0,0x0,0x0,0x7,0xe9,0x1c,0x20,0x0,0x0,0x0,0x0,0x9,0x10,0x6c,0x20,0x0, - 0x0,0x0,0x0,0x9,0xc8,0xfe,0x20,0x0,0x0,0x0,0x0,0xa,0xf0,0x4e,0x20,0x0, - 0x0,0x0,0x0,0xb,0xb2,0x1a,0xa0,0x0,0x0,0x0,0x0,0xc,0xd0,0x30,0x20,0x0, - 0x0,0x0,0x0,0xd,0x91,0xfc,0xa0,0x0,0x0,0x0,0x0,0xe,0xb0,0x12,0x20,0x0, - 0x0,0x0,0x0,0xf,0x71,0xde,0xa0,0x0,0x0,0x0,0x0,0x10,0x99,0x2e,0xa0,0x0, - 0x0,0x0,0x0,0x11,0x51,0xc0,0xa0,0x0,0x0,0x0,0x0,0x12,0x79,0x10,0xa0,0x0, - 0x0,0x0,0x0,0x13,0x31,0xa2,0xa0,0x0,0x0,0x0,0x0,0x14,0x58,0xf2,0xa0,0x0, - 0x0,0x0,0x0,0x15,0x23,0xeb,0x90,0x0,0x0,0x0,0x0,0x16,0x38,0xc6,0x90,0x0, - 0x0,0x0,0x0,0x17,0x3,0xcd,0x90,0x0,0x0,0x0,0x0,0x18,0x18,0xa8,0x90,0x0, - 0x0,0x0,0x0,0x18,0xe3,0xaf,0x90,0x0,0x0,0x0,0x0,0x19,0xf8,0x8a,0x90,0x0, - 0x0,0x0,0x0,0x1a,0xc3,0x91,0x90,0x0,0x0,0x0,0x0,0x1b,0xe1,0xa7,0x10,0x0, - 0x0,0x0,0x0,0x1c,0xac,0xae,0x10,0x0,0x0,0x0,0x0,0x1d,0xc1,0x89,0x10,0x0, - 0x0,0x0,0x0,0x1e,0x8c,0x90,0x10,0x0,0x0,0x0,0x0,0x1f,0xa1,0x6b,0x10,0x0, - 0x0,0x0,0x0,0x20,0x6c,0x72,0x10,0x0,0x0,0x0,0x0,0x21,0x81,0x4d,0x10,0x0, - 0x0,0x0,0x0,0x22,0x4c,0x54,0x10,0x0,0x0,0x0,0x0,0x23,0x61,0x2f,0x10,0x0, - 0x0,0x0,0x0,0x24,0x2c,0x36,0x10,0x0,0x0,0x0,0x0,0x25,0x4a,0x4b,0x90,0x0, - 0x0,0x0,0x0,0x26,0xc,0x18,0x10,0x0,0x0,0x0,0x0,0x27,0x2a,0x2d,0x90,0x0, - 0x0,0x0,0x0,0x27,0xf5,0x34,0x90,0x0,0x0,0x0,0x0,0x29,0xa,0xf,0x90,0x0, - 0x0,0x0,0x0,0x29,0xd5,0x16,0x90,0x0,0x0,0x0,0x0,0x2a,0xe9,0xf1,0x90,0x0, - 0x0,0x0,0x0,0x2b,0xb4,0xf8,0x90,0x0,0x0,0x0,0x0,0x2c,0xc9,0xd3,0x90,0x0, - 0x0,0x0,0x0,0x2d,0x94,0xda,0x90,0x0,0x0,0x0,0x0,0x2e,0xa9,0xb5,0x90,0x0, - 0x0,0x0,0x0,0x2f,0x74,0xbc,0x90,0x0,0x0,0x0,0x0,0x30,0x89,0x97,0x90,0x0, - 0x0,0x0,0x0,0x30,0xe7,0x24,0x0,0x0,0x0,0x0,0x0,0x31,0x5d,0xd9,0x10,0x0, - 0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d,0xbb,0x10,0x0, - 0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d,0x9d,0x10,0x0, - 0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd,0x7f,0x10,0x0, - 0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd,0x61,0x10,0x0, - 0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd,0x43,0x10,0x0, - 0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f,0x90,0x0, - 0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86,0x41,0x90,0x0, - 0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66,0x23,0x90,0x0, - 0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46,0x5,0x90,0x0, - 0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25,0xe7,0x90,0x0, - 0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5,0xc9,0x90,0x0, - 0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee,0xe6,0x10,0x0, - 0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce,0xc8,0x10,0x0, - 0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae,0xaa,0x10,0x0, - 0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c,0x10,0x0, - 0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e,0x10,0x0, - 0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57,0x8a,0x90,0x0, - 0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37,0x6c,0x90,0x0, - 0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17,0x4e,0x90,0x0, - 0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7,0x30,0x90,0x0, - 0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7,0x12,0x90,0x0, - 0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4,0x90,0x0, - 0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0,0x11,0x10,0x0, - 0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3,0x10,0x0, - 0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f,0xd5,0x10,0x0, - 0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f,0xb7,0x10,0x0, - 0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f,0x99,0x10,0x0, - 0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8,0xb5,0x90,0x0, - 0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8,0x97,0x90,0x0, - 0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8,0x79,0x90,0x0, - 0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b,0x90,0x0, - 0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88,0x3d,0x90,0x0, - 0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68,0x1f,0x90,0x0, - 0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51,0x3c,0x10,0x0, - 0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31,0x1e,0x10,0x0, - 0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11,0x0,0x10,0x0, - 0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0,0xe2,0x10,0x0, - 0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0,0xc4,0x10,0x0, - 0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6,0x10,0x0, - 0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99,0xc2,0x90,0x0, - 0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79,0xa4,0x90,0x0, - 0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x0,0x0,0x1d,0x55,0x0,0x0,0x0,0x0,0x2a,0x30, + 0x1,0x4,0x0,0x0,0x1c,0x20,0x0,0x9,0x0,0x0,0x2a,0x30,0x1,0x4,0x4c,0x4d, + 0x54,0x0,0x45,0x45,0x53,0x54,0x0,0x45,0x45,0x54,0x0,0x0,0x0,0x0,0x1,0x0, + 0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0xd,0xf8, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x7d,0xbd,0x4d,0xab,0xff, + 0xff,0xff,0xff,0xc8,0x93,0xb4,0xe0,0xff,0xff,0xff,0xff,0xc8,0xfa,0x7b,0xd0,0xff, + 0xff,0xff,0xff,0xc9,0xfc,0xef,0xe0,0xff,0xff,0xff,0xff,0xca,0xc7,0xe8,0xd0,0xff, + 0xff,0xff,0xff,0xcb,0xcb,0xae,0x60,0xff,0xff,0xff,0xff,0xcc,0xdf,0x29,0xd0,0xff, + 0xff,0xff,0xff,0xcd,0xac,0xe1,0xe0,0xff,0xff,0xff,0xff,0xce,0xc6,0xf4,0xd0,0xff, + 0xff,0xff,0xff,0xcf,0x8f,0x66,0xe0,0xff,0xff,0xff,0xff,0xd0,0xa9,0x79,0xd0,0xff, + 0xff,0xff,0xff,0xd1,0x84,0x60,0xe0,0xff,0xff,0xff,0xff,0xd2,0x8a,0xad,0x50,0xff, + 0xff,0xff,0xff,0xe8,0x36,0x63,0x60,0xff,0xff,0xff,0xff,0xe8,0xf4,0x2d,0x50,0xff, + 0xff,0xff,0xff,0xea,0xb,0xb9,0x60,0xff,0xff,0xff,0xff,0xea,0xd5,0x60,0xd0,0xff, + 0xff,0xff,0xff,0xeb,0xec,0xfa,0xf0,0xff,0xff,0xff,0xff,0xec,0xb5,0x6d,0x0,0xff, + 0xff,0xff,0xff,0xed,0xcf,0x7f,0xf0,0xff,0xff,0xff,0xff,0xee,0x97,0xf2,0x0,0xff, + 0xff,0xff,0xff,0xef,0xb0,0xb3,0x70,0xff,0xff,0xff,0xff,0xf0,0x79,0x25,0x80,0xff, + 0xff,0xff,0xff,0xf1,0x91,0xe6,0xf0,0xff,0xff,0xff,0xff,0xf2,0x5a,0x59,0x0,0xff, + 0xff,0xff,0xff,0xf3,0x73,0x1a,0x70,0xff,0xff,0xff,0xff,0xf4,0x3b,0x8c,0x80,0xff, + 0xff,0xff,0xff,0xf5,0x55,0x9f,0x70,0xff,0xff,0xff,0xff,0xf6,0x1e,0x11,0x80,0xff, + 0xff,0xff,0xff,0xf7,0x36,0xd2,0xf0,0xff,0xff,0xff,0xff,0xf7,0xff,0x45,0x0,0xff, + 0xff,0xff,0xff,0xf9,0x18,0x6,0x70,0xff,0xff,0xff,0xff,0xf9,0xe1,0xca,0x0,0xff, + 0xff,0xff,0xff,0xfa,0xf9,0x39,0xf0,0xff,0xff,0xff,0xff,0xfb,0xc2,0xfd,0x80,0xff, + 0xff,0xff,0xff,0xfc,0xdb,0xbe,0xf0,0xff,0xff,0xff,0xff,0xfd,0xa5,0x82,0x80,0xff, + 0xff,0xff,0xff,0xfe,0xbc,0xf2,0x70,0xff,0xff,0xff,0xff,0xff,0x86,0xb6,0x0,0x0, + 0x0,0x0,0x0,0x0,0x9e,0x25,0xf0,0x0,0x0,0x0,0x0,0x1,0x67,0xe9,0x80,0x0, + 0x0,0x0,0x0,0x2,0x7f,0x59,0x70,0x0,0x0,0x0,0x0,0x3,0x49,0x1d,0x0,0x0, + 0x0,0x0,0x0,0x4,0x61,0xde,0x70,0x0,0x0,0x0,0x0,0x5,0x2b,0xa2,0x0,0x0, + 0x0,0x0,0x0,0x6,0x43,0x11,0xf0,0x0,0x0,0x0,0x0,0x7,0xc,0xd5,0x80,0x0, + 0x0,0x0,0x0,0x8,0x24,0x45,0x70,0x0,0x0,0x0,0x0,0x8,0xee,0x9,0x0,0x0, + 0x0,0x0,0x0,0xa,0x5,0x78,0xf0,0x0,0x0,0x0,0x0,0xa,0xcf,0x3c,0x80,0x0, + 0x0,0x0,0x0,0xb,0xe7,0xfd,0xf0,0x0,0x0,0x0,0x0,0xc,0xb1,0xc1,0x80,0x0, + 0x0,0x0,0x0,0xd,0xc9,0x31,0x70,0x0,0x0,0x0,0x0,0xe,0x92,0xf5,0x0,0x0, + 0x0,0x0,0x0,0xf,0xaa,0x64,0xf0,0x0,0x0,0x0,0x0,0x10,0x74,0x28,0x80,0x0, + 0x0,0x0,0x0,0x11,0x8b,0x98,0x70,0x0,0x0,0x0,0x0,0x12,0x55,0x5c,0x0,0x0, + 0x0,0x0,0x0,0x13,0x6e,0x1d,0x70,0x0,0x0,0x0,0x0,0x14,0x37,0xe1,0x0,0x0, + 0x0,0x0,0x0,0x15,0x4f,0x50,0xf0,0x0,0x0,0x0,0x0,0x16,0x19,0x14,0x80,0x0, + 0x0,0x0,0x0,0x17,0xa0,0x93,0xf0,0x0,0x0,0x0,0x0,0x17,0xfa,0x48,0x0,0x0, + 0x0,0x0,0x0,0x19,0x70,0xa3,0xf0,0x0,0x0,0x0,0x0,0x19,0xdb,0x7b,0x80,0x0, + 0x0,0x0,0x0,0x1a,0xf4,0x3c,0xf0,0x0,0x0,0x0,0x0,0x1b,0xbe,0x0,0x80,0x0, + 0x0,0x0,0x0,0x1c,0xd5,0x70,0x70,0x0,0x0,0x0,0x0,0x1d,0x9f,0x34,0x0,0x0, + 0x0,0x0,0x0,0x1e,0xb6,0xa3,0xf0,0x0,0x0,0x0,0x0,0x1f,0x80,0x67,0x80,0x0, + 0x0,0x0,0x0,0x20,0x97,0xd7,0x70,0x0,0x0,0x0,0x0,0x21,0x61,0x9b,0x0,0x0, + 0x0,0x0,0x0,0x22,0x7a,0x5c,0x70,0x0,0x0,0x0,0x0,0x23,0x44,0x20,0x0,0x0, + 0x0,0x0,0x0,0x24,0x62,0x27,0x70,0x0,0x0,0x0,0x0,0x25,0x25,0x53,0x80,0x0, + 0x0,0x0,0x0,0x26,0x3c,0xc3,0x70,0x0,0x0,0x0,0x0,0x27,0x6,0x87,0x0,0x0, + 0x0,0x0,0x0,0x28,0x1d,0xf6,0xf0,0x0,0x0,0x0,0x0,0x28,0xe7,0xba,0x80,0x0, + 0x0,0x0,0x0,0x2a,0x0,0x7b,0xf0,0x0,0x0,0x0,0x0,0x2a,0xca,0x3f,0x80,0x0, + 0x0,0x0,0x0,0x2b,0xe1,0xaf,0x70,0x0,0x0,0x0,0x0,0x2c,0xab,0x73,0x0,0x0, + 0x0,0x0,0x0,0x2d,0xc2,0xe2,0xf0,0x0,0x0,0x0,0x0,0x2e,0x8c,0xa6,0x80,0x0, + 0x0,0x0,0x0,0x2f,0xa0,0x13,0xe0,0x0,0x0,0x0,0x0,0x30,0x6b,0xc,0xd0,0x0, + 0x0,0x0,0x0,0x31,0x7f,0xf5,0xe0,0x0,0x0,0x0,0x0,0x32,0x4a,0xee,0xd0,0x0, + 0x0,0x0,0x0,0x33,0x5f,0xd7,0xe0,0x0,0x0,0x0,0x0,0x34,0x2a,0xd0,0xd0,0x0, + 0x0,0x0,0x0,0x35,0x3f,0xb9,0xe0,0x0,0x0,0x0,0x0,0x36,0xa,0xb2,0xd0,0x0, + 0x0,0x0,0x0,0x37,0x28,0xd6,0x60,0x0,0x0,0x0,0x0,0x37,0xf3,0xcf,0x50,0x0, + 0x0,0x0,0x0,0x39,0x8,0xb8,0x60,0x0,0x0,0x0,0x0,0x39,0xd3,0xb1,0x50,0x0, + 0x0,0x0,0x0,0x3a,0xe8,0x9a,0x60,0x0,0x0,0x0,0x0,0x3b,0xb3,0x93,0x50,0x0, + 0x0,0x0,0x0,0x3c,0xc8,0x7c,0x60,0x0,0x0,0x0,0x0,0x3d,0x93,0x75,0x50,0x0, + 0x0,0x0,0x0,0x3e,0xa8,0x5e,0x60,0x0,0x0,0x0,0x0,0x3f,0x73,0x57,0x50,0x0, + 0x0,0x0,0x0,0x40,0x91,0x7a,0xe0,0x0,0x0,0x0,0x0,0x41,0x5c,0x73,0xd0,0x0, + 0x0,0x0,0x0,0x42,0x71,0x5c,0xe0,0x0,0x0,0x0,0x0,0x43,0x3c,0x55,0xd0,0x0, + 0x0,0x0,0x0,0x44,0x51,0x3e,0xe0,0x0,0x0,0x0,0x0,0x45,0x12,0xfd,0x50,0x0, + 0x0,0x0,0x0,0x46,0x31,0x20,0xe0,0x0,0x0,0x0,0x0,0x46,0xe0,0x6a,0x50,0x0, + 0x0,0x0,0x0,0x48,0x11,0x2,0xe0,0x0,0x0,0x0,0x0,0x48,0xb7,0x11,0xd0,0x0, + 0x0,0x0,0x0,0x49,0xf0,0xe4,0xe0,0x0,0x0,0x0,0x0,0x4a,0x8d,0xb9,0x50,0x0, + 0x0,0x0,0x0,0x4b,0xda,0x1,0x60,0x0,0x0,0x0,0x0,0x4c,0x61,0xbd,0xd0,0x0, + 0x0,0x0,0x0,0x4c,0x89,0x58,0xe0,0x0,0x0,0x0,0x0,0x4c,0xa4,0xfa,0x50,0x0, + 0x0,0x0,0x0,0x53,0x75,0x38,0xe0,0x0,0x0,0x0,0x0,0x53,0xac,0x89,0xd0,0x0, + 0x0,0x0,0x0,0x53,0xda,0xbc,0x60,0x0,0x0,0x0,0x0,0x54,0x24,0x82,0x50,0x0, 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x3,0x1,0x3,0x1,0x3,0x1, - 0x3,0x1,0x3,0x1,0x2,0x1,0x2,0x1,0x3,0x1,0x2,0x1,0x2,0x1,0x2,0x1, 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x4,0x6,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x7,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0xff,0xff,0xff,0xb5,0x0, - 0x0,0x0,0x0,0xe,0x10,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x1c, - 0x20,0x1,0xc,0x0,0x0,0xe,0x10,0x0,0x4,0x0,0x0,0xe,0x10,0x1,0x4,0x0, - 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x42, - 0x53,0x54,0x0,0x47,0x4d,0x54,0x0,0x42,0x44,0x53,0x54,0x0,0x0,0x1,0x1,0x1, - 0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0xa,0x47,0x4d,0x54, - 0x30,0x42,0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2f,0x31,0x2c,0x4d,0x31, - 0x30,0x2e,0x35,0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Stockholm - 0x0,0x0,0x7,0x7e, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x0, + 0x0,0x1d,0x55,0x0,0x0,0x0,0x0,0x2a,0x30,0x1,0x4,0x0,0x0,0x1c,0x20,0x0, + 0x9,0x0,0x0,0x2a,0x30,0x1,0x4,0x4c,0x4d,0x54,0x0,0x45,0x45,0x53,0x54,0x0, + 0x45,0x45,0x54,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0xa,0x45,0x45,0x54, + 0x2d,0x32,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Nairobi + 0x0,0x0,0x1,0x1d, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x77,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0x9b, - 0x1e,0x8c,0x60,0x9b,0xd5,0xda,0xf0,0x13,0x4d,0x44,0x10,0x14,0x33,0xfa,0x90,0x15, - 0x23,0xeb,0x90,0x16,0x13,0xdc,0x90,0x17,0x3,0xcd,0x90,0x17,0xf3,0xbe,0x90,0x18, - 0xe3,0xaf,0x90,0x19,0xd3,0xa0,0x90,0x1a,0xc3,0x91,0x90,0x1b,0xbc,0xbd,0x10,0x1c, - 0xac,0xae,0x10,0x1d,0x9c,0x9f,0x10,0x1e,0x8c,0x90,0x10,0x1f,0x7c,0x81,0x10,0x20, - 0x6c,0x72,0x10,0x21,0x5c,0x63,0x10,0x22,0x4c,0x54,0x10,0x23,0x3c,0x45,0x10,0x24, - 0x2c,0x36,0x10,0x25,0x1c,0x27,0x10,0x26,0xc,0x18,0x10,0x27,0x5,0x43,0x90,0x27, - 0xf5,0x34,0x90,0x28,0xe5,0x25,0x90,0x29,0xd5,0x16,0x90,0x2a,0xc5,0x7,0x90,0x2b, - 0xb4,0xf8,0x90,0x2c,0xa4,0xe9,0x90,0x2d,0x94,0xda,0x90,0x2e,0x84,0xcb,0x90,0x2f, - 0x74,0xbc,0x90,0x30,0x64,0xad,0x90,0x31,0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33, - 0x3d,0xbb,0x10,0x34,0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36, - 0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a, - 0xbd,0x43,0x10,0x3b,0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e, - 0x86,0x41,0x90,0x3f,0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42, - 0x46,0x5,0x90,0x43,0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46, - 0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49, - 0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d, - 0x8e,0x8c,0x10,0x4e,0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51, - 0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55, - 0x17,0x4e,0x90,0x56,0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58, - 0xd7,0x12,0x90,0x59,0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c, - 0xa0,0x11,0x10,0x5d,0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60, - 0x5f,0xd5,0x10,0x61,0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64, - 0x1f,0x99,0x10,0x65,0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67, - 0xe8,0x97,0x90,0x68,0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b, - 0xa8,0x5b,0x90,0x6c,0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f, - 0x68,0x1f,0x90,0x70,0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73, - 0x31,0x1e,0x10,0x74,0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76, - 0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a, - 0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e, - 0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x1,0x2,0x1,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x0,0x0, - 0xe,0x1e,0x0,0x0,0x0,0x0,0xe,0x10,0x0,0x4,0x0,0x0,0x1c,0x20,0x1,0x8, - 0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0xe,0x10,0x0,0x4,0x53,0x45,0x54,0x0, - 0x43,0x45,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0, - 0x0,0x1,0x1,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x79,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0xf8, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x54,0xd5,0x9f,0x94,0xff, - 0xff,0xff,0xff,0x7c,0x55,0x73,0x62,0xff,0xff,0xff,0xff,0x9b,0x1e,0x8c,0x60,0xff, - 0xff,0xff,0xff,0x9b,0xd5,0xda,0xf0,0x0,0x0,0x0,0x0,0x13,0x4d,0x44,0x10,0x0, - 0x0,0x0,0x0,0x14,0x33,0xfa,0x90,0x0,0x0,0x0,0x0,0x15,0x23,0xeb,0x90,0x0, - 0x0,0x0,0x0,0x16,0x13,0xdc,0x90,0x0,0x0,0x0,0x0,0x17,0x3,0xcd,0x90,0x0, - 0x0,0x0,0x0,0x17,0xf3,0xbe,0x90,0x0,0x0,0x0,0x0,0x18,0xe3,0xaf,0x90,0x0, - 0x0,0x0,0x0,0x19,0xd3,0xa0,0x90,0x0,0x0,0x0,0x0,0x1a,0xc3,0x91,0x90,0x0, - 0x0,0x0,0x0,0x1b,0xbc,0xbd,0x10,0x0,0x0,0x0,0x0,0x1c,0xac,0xae,0x10,0x0, - 0x0,0x0,0x0,0x1d,0x9c,0x9f,0x10,0x0,0x0,0x0,0x0,0x1e,0x8c,0x90,0x10,0x0, - 0x0,0x0,0x0,0x1f,0x7c,0x81,0x10,0x0,0x0,0x0,0x0,0x20,0x6c,0x72,0x10,0x0, - 0x0,0x0,0x0,0x21,0x5c,0x63,0x10,0x0,0x0,0x0,0x0,0x22,0x4c,0x54,0x10,0x0, - 0x0,0x0,0x0,0x23,0x3c,0x45,0x10,0x0,0x0,0x0,0x0,0x24,0x2c,0x36,0x10,0x0, - 0x0,0x0,0x0,0x25,0x1c,0x27,0x10,0x0,0x0,0x0,0x0,0x26,0xc,0x18,0x10,0x0, - 0x0,0x0,0x0,0x27,0x5,0x43,0x90,0x0,0x0,0x0,0x0,0x27,0xf5,0x34,0x90,0x0, - 0x0,0x0,0x0,0x28,0xe5,0x25,0x90,0x0,0x0,0x0,0x0,0x29,0xd5,0x16,0x90,0x0, - 0x0,0x0,0x0,0x2a,0xc5,0x7,0x90,0x0,0x0,0x0,0x0,0x2b,0xb4,0xf8,0x90,0x0, - 0x0,0x0,0x0,0x2c,0xa4,0xe9,0x90,0x0,0x0,0x0,0x0,0x2d,0x94,0xda,0x90,0x0, - 0x0,0x0,0x0,0x2e,0x84,0xcb,0x90,0x0,0x0,0x0,0x0,0x2f,0x74,0xbc,0x90,0x0, - 0x0,0x0,0x0,0x30,0x64,0xad,0x90,0x0,0x0,0x0,0x0,0x31,0x5d,0xd9,0x10,0x0, - 0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d,0xbb,0x10,0x0, - 0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d,0x9d,0x10,0x0, - 0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd,0x7f,0x10,0x0, - 0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd,0x61,0x10,0x0, - 0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd,0x43,0x10,0x0, - 0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f,0x90,0x0, - 0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86,0x41,0x90,0x0, - 0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66,0x23,0x90,0x0, - 0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46,0x5,0x90,0x0, - 0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25,0xe7,0x90,0x0, - 0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5,0xc9,0x90,0x0, - 0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee,0xe6,0x10,0x0, - 0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce,0xc8,0x10,0x0, - 0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae,0xaa,0x10,0x0, - 0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c,0x10,0x0, - 0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e,0x10,0x0, - 0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57,0x8a,0x90,0x0, - 0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37,0x6c,0x90,0x0, - 0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17,0x4e,0x90,0x0, - 0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7,0x30,0x90,0x0, - 0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7,0x12,0x90,0x0, - 0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4,0x90,0x0, - 0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0,0x11,0x10,0x0, - 0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3,0x10,0x0, - 0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f,0xd5,0x10,0x0, - 0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f,0xb7,0x10,0x0, - 0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f,0x99,0x10,0x0, - 0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8,0xb5,0x90,0x0, - 0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8,0x97,0x90,0x0, - 0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8,0x79,0x90,0x0, - 0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b,0x90,0x0, - 0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88,0x3d,0x90,0x0, - 0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68,0x1f,0x90,0x0, - 0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51,0x3c,0x10,0x0, - 0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31,0x1e,0x10,0x0, - 0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11,0x0,0x10,0x0, - 0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0,0xe2,0x10,0x0, - 0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0,0xc4,0x10,0x0, - 0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6,0x10,0x0, - 0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99,0xc2,0x90,0x0, - 0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79,0xa4,0x90,0x0, - 0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x1,0x2,0x3,0x2,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x0,0x0,0x10,0xec,0x0,0x0,0x0,0x0,0xe,0x1e,0x0,0x4,0x0,0x0,0xe,0x10, - 0x0,0x8,0x0,0x0,0x1c,0x20,0x1,0xc,0x0,0x0,0x1c,0x20,0x1,0xc,0x0,0x0, - 0xe,0x10,0x0,0x8,0x4c,0x4d,0x54,0x0,0x53,0x45,0x54,0x0,0x43,0x45,0x54,0x0, - 0x43,0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x1, - 0x1,0xa,0x43,0x45,0x54,0x2d,0x31,0x43,0x45,0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35, - 0x2e,0x30,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30,0x2f,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Astrakhan - 0x0,0x0,0x4,0xad, + 0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0xb1, + 0xee,0xda,0xfc,0xb4,0xc2,0x9a,0xd0,0xc7,0x91,0x47,0xd8,0xed,0x2f,0xe1,0xd4,0x0, + 0x1,0x2,0x3,0x1,0x0,0x0,0x22,0x84,0x0,0x0,0x0,0x0,0x2a,0x30,0x0,0x4, + 0x0,0x0,0x23,0x28,0x0,0x8,0x0,0x0,0x26,0xac,0x0,0xe,0x0,0x0,0x2a,0x30, + 0x0,0x4,0x4c,0x4d,0x54,0x0,0x45,0x41,0x54,0x0,0x2b,0x30,0x32,0x33,0x30,0x0, + 0x2b,0x30,0x32,0x34,0x35,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0xf8,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xb1,0xee,0xda,0xfc,0xff,0xff,0xff,0xff, + 0xb4,0xc2,0x9a,0xd0,0xff,0xff,0xff,0xff,0xc7,0x91,0x47,0xd8,0xff,0xff,0xff,0xff, + 0xed,0x2f,0xe1,0xd4,0x0,0x1,0x2,0x3,0x1,0x0,0x0,0x22,0x84,0x0,0x0,0x0, + 0x0,0x2a,0x30,0x0,0x4,0x0,0x0,0x23,0x28,0x0,0x8,0x0,0x0,0x26,0xac,0x0, + 0xe,0x0,0x0,0x2a,0x30,0x0,0x4,0x4c,0x4d,0x54,0x0,0x45,0x41,0x54,0x0,0x2b, + 0x30,0x32,0x33,0x30,0x0,0x2b,0x30,0x32,0x34,0x35,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0xa,0x45,0x41,0x54,0x2d,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Lagos + 0x0,0x0,0x0,0xab, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x42,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x10,0x80,0x0,0x0,0x0,0xaa, - 0x18,0x45,0x74,0xb5,0xa4,0xb,0x50,0x15,0x27,0x99,0xc0,0x16,0x18,0xce,0x30,0x17, - 0x8,0xcd,0x40,0x17,0xfa,0x1,0xb0,0x18,0xea,0x0,0xc0,0x19,0xdb,0x35,0x30,0x1a, - 0xcc,0x85,0xc0,0x1b,0xbc,0x92,0xe0,0x1c,0xac,0x83,0xe0,0x1d,0x9c,0x74,0xe0,0x1e, - 0x8c,0x65,0xe0,0x1f,0x7c,0x56,0xe0,0x20,0x6c,0x47,0xe0,0x21,0x5c,0x38,0xe0,0x22, - 0x4c,0x29,0xe0,0x23,0x3c,0x1a,0xe0,0x24,0x2c,0xb,0xe0,0x25,0x1c,0xa,0xf0,0x26, - 0xb,0xfb,0xf0,0x27,0x5,0x27,0x70,0x27,0xf5,0x18,0x70,0x29,0xd4,0xec,0x60,0x2a, - 0xc4,0xeb,0x70,0x2b,0xb4,0xdc,0x70,0x2c,0xa4,0xcd,0x70,0x2d,0x94,0xbe,0x70,0x2e, - 0x84,0xaf,0x70,0x2f,0x74,0xa0,0x70,0x30,0x64,0x91,0x70,0x31,0x5d,0xbc,0xf0,0x32, - 0x72,0x97,0xf0,0x33,0x3d,0x9e,0xf0,0x34,0x52,0x79,0xf0,0x35,0x1d,0x80,0xf0,0x36, - 0x32,0x5b,0xf0,0x36,0xfd,0x62,0xf0,0x38,0x1b,0x78,0x70,0x38,0xdd,0x44,0xf0,0x39, - 0xfb,0x5a,0x70,0x3a,0xbd,0x26,0xf0,0x3b,0xdb,0x3c,0x70,0x3c,0xa6,0x43,0x70,0x3d, - 0xbb,0x1e,0x70,0x3e,0x86,0x25,0x70,0x3f,0x9b,0x0,0x70,0x40,0x66,0x7,0x70,0x41, - 0x84,0x1c,0xf0,0x42,0x45,0xe9,0x70,0x43,0x63,0xfe,0xf0,0x44,0x25,0xcb,0x70,0x45, - 0x43,0xe0,0xf0,0x46,0x5,0xad,0x70,0x47,0x23,0xc2,0xf0,0x47,0xee,0xc9,0xf0,0x49, - 0x3,0xa4,0xf0,0x49,0xce,0xab,0xf0,0x4a,0xe3,0x86,0xf0,0x4b,0xae,0x8d,0xf0,0x4c, - 0xcc,0xa3,0x70,0x4d,0x8e,0x6f,0xf0,0x54,0x4c,0x1d,0x60,0x56,0xf7,0x14,0x70,0x7f, - 0xff,0xff,0xff,0x0,0x1,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x6,0x7,0x6,0x7,0x4,0x6,0x7,0x6,0x7,0x6, - 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, - 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, - 0x7,0x4,0x7,0x4,0x4,0x0,0x0,0x2d,0xc,0x0,0x0,0x0,0x0,0x2a,0x30,0x0, - 0x4,0x0,0x0,0x46,0x50,0x1,0x8,0x0,0x0,0x38,0x40,0x0,0xc,0x0,0x0,0x38, - 0x40,0x0,0xc,0x0,0x0,0x46,0x50,0x1,0x8,0x0,0x0,0x38,0x40,0x1,0xc,0x0, - 0x0,0x2a,0x30,0x0,0x4,0x0,0x0,0x38,0x40,0x0,0xc,0x4c,0x4d,0x54,0x0,0x2b, - 0x30,0x33,0x0,0x2b,0x30,0x35,0x0,0x2b,0x30,0x34,0x0,0x0,0x0,0x0,0x0,0x1, - 0x1,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, + 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0xa1, + 0x51,0xf3,0x50,0x0,0x1,0x0,0x0,0x3,0x30,0x0,0x0,0x0,0x0,0xe,0x10,0x0, + 0x4,0x4c,0x4d,0x54,0x0,0x57,0x41,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x42,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x10,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0xaa,0x18,0x45,0x74,0xff,0xff,0xff,0xff,0xb5,0xa4,0xb, - 0x50,0x0,0x0,0x0,0x0,0x15,0x27,0x99,0xc0,0x0,0x0,0x0,0x0,0x16,0x18,0xce, - 0x30,0x0,0x0,0x0,0x0,0x17,0x8,0xcd,0x40,0x0,0x0,0x0,0x0,0x17,0xfa,0x1, - 0xb0,0x0,0x0,0x0,0x0,0x18,0xea,0x0,0xc0,0x0,0x0,0x0,0x0,0x19,0xdb,0x35, - 0x30,0x0,0x0,0x0,0x0,0x1a,0xcc,0x85,0xc0,0x0,0x0,0x0,0x0,0x1b,0xbc,0x92, - 0xe0,0x0,0x0,0x0,0x0,0x1c,0xac,0x83,0xe0,0x0,0x0,0x0,0x0,0x1d,0x9c,0x74, - 0xe0,0x0,0x0,0x0,0x0,0x1e,0x8c,0x65,0xe0,0x0,0x0,0x0,0x0,0x1f,0x7c,0x56, - 0xe0,0x0,0x0,0x0,0x0,0x20,0x6c,0x47,0xe0,0x0,0x0,0x0,0x0,0x21,0x5c,0x38, - 0xe0,0x0,0x0,0x0,0x0,0x22,0x4c,0x29,0xe0,0x0,0x0,0x0,0x0,0x23,0x3c,0x1a, - 0xe0,0x0,0x0,0x0,0x0,0x24,0x2c,0xb,0xe0,0x0,0x0,0x0,0x0,0x25,0x1c,0xa, - 0xf0,0x0,0x0,0x0,0x0,0x26,0xb,0xfb,0xf0,0x0,0x0,0x0,0x0,0x27,0x5,0x27, - 0x70,0x0,0x0,0x0,0x0,0x27,0xf5,0x18,0x70,0x0,0x0,0x0,0x0,0x29,0xd4,0xec, - 0x60,0x0,0x0,0x0,0x0,0x2a,0xc4,0xeb,0x70,0x0,0x0,0x0,0x0,0x2b,0xb4,0xdc, - 0x70,0x0,0x0,0x0,0x0,0x2c,0xa4,0xcd,0x70,0x0,0x0,0x0,0x0,0x2d,0x94,0xbe, - 0x70,0x0,0x0,0x0,0x0,0x2e,0x84,0xaf,0x70,0x0,0x0,0x0,0x0,0x2f,0x74,0xa0, - 0x70,0x0,0x0,0x0,0x0,0x30,0x64,0x91,0x70,0x0,0x0,0x0,0x0,0x31,0x5d,0xbc, - 0xf0,0x0,0x0,0x0,0x0,0x32,0x72,0x97,0xf0,0x0,0x0,0x0,0x0,0x33,0x3d,0x9e, - 0xf0,0x0,0x0,0x0,0x0,0x34,0x52,0x79,0xf0,0x0,0x0,0x0,0x0,0x35,0x1d,0x80, - 0xf0,0x0,0x0,0x0,0x0,0x36,0x32,0x5b,0xf0,0x0,0x0,0x0,0x0,0x36,0xfd,0x62, - 0xf0,0x0,0x0,0x0,0x0,0x38,0x1b,0x78,0x70,0x0,0x0,0x0,0x0,0x38,0xdd,0x44, - 0xf0,0x0,0x0,0x0,0x0,0x39,0xfb,0x5a,0x70,0x0,0x0,0x0,0x0,0x3a,0xbd,0x26, - 0xf0,0x0,0x0,0x0,0x0,0x3b,0xdb,0x3c,0x70,0x0,0x0,0x0,0x0,0x3c,0xa6,0x43, - 0x70,0x0,0x0,0x0,0x0,0x3d,0xbb,0x1e,0x70,0x0,0x0,0x0,0x0,0x3e,0x86,0x25, - 0x70,0x0,0x0,0x0,0x0,0x3f,0x9b,0x0,0x70,0x0,0x0,0x0,0x0,0x40,0x66,0x7, - 0x70,0x0,0x0,0x0,0x0,0x41,0x84,0x1c,0xf0,0x0,0x0,0x0,0x0,0x42,0x45,0xe9, - 0x70,0x0,0x0,0x0,0x0,0x43,0x63,0xfe,0xf0,0x0,0x0,0x0,0x0,0x44,0x25,0xcb, - 0x70,0x0,0x0,0x0,0x0,0x45,0x43,0xe0,0xf0,0x0,0x0,0x0,0x0,0x46,0x5,0xad, - 0x70,0x0,0x0,0x0,0x0,0x47,0x23,0xc2,0xf0,0x0,0x0,0x0,0x0,0x47,0xee,0xc9, - 0xf0,0x0,0x0,0x0,0x0,0x49,0x3,0xa4,0xf0,0x0,0x0,0x0,0x0,0x49,0xce,0xab, - 0xf0,0x0,0x0,0x0,0x0,0x4a,0xe3,0x86,0xf0,0x0,0x0,0x0,0x0,0x4b,0xae,0x8d, - 0xf0,0x0,0x0,0x0,0x0,0x4c,0xcc,0xa3,0x70,0x0,0x0,0x0,0x0,0x4d,0x8e,0x6f, - 0xf0,0x0,0x0,0x0,0x0,0x54,0x4c,0x1d,0x60,0x0,0x0,0x0,0x0,0x56,0xf7,0x14, - 0x70,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x6,0x7,0x6,0x7, - 0x4,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, - 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, - 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x4,0x7,0x4,0x4,0x0,0x0,0x2d,0xc,0x0, - 0x0,0x0,0x0,0x2a,0x30,0x0,0x4,0x0,0x0,0x46,0x50,0x1,0x8,0x0,0x0,0x38, - 0x40,0x0,0xc,0x0,0x0,0x38,0x40,0x0,0xc,0x0,0x0,0x46,0x50,0x1,0x8,0x0, - 0x0,0x38,0x40,0x1,0xc,0x0,0x0,0x2a,0x30,0x0,0x4,0x0,0x0,0x38,0x40,0x0, - 0xc,0x4c,0x4d,0x54,0x0,0x2b,0x30,0x33,0x0,0x2b,0x30,0x35,0x0,0x2b,0x30,0x34, - 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0xa,0x3c,0x2b,0x30,0x34,0x3e,0x2d,0x34,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Prague - 0x0,0x0,0x8,0xe0, + 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0xa1,0x51,0xf3,0x50,0x0,0x1,0x0,0x0,0x3,0x30,0x0, + 0x0,0x0,0x0,0xe,0x10,0x0,0x4,0x4c,0x4d,0x54,0x0,0x57,0x41,0x54,0x0,0x0, + 0x0,0x0,0x0,0xa,0x57,0x41,0x54,0x2d,0x31,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Bangui + 0x0,0x0,0x0,0xab, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x8e,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0x9b, - 0xc,0x17,0x60,0x9b,0xd5,0xda,0xf0,0x9c,0xd9,0xae,0x90,0x9d,0xa4,0xb5,0x90,0x9e, - 0xb9,0x90,0x90,0x9f,0x84,0x97,0x90,0xc8,0x9,0x71,0x90,0xcc,0xe7,0x4b,0x10,0xcd, - 0xa9,0x17,0x90,0xce,0xa2,0x43,0x10,0xcf,0x92,0x34,0x10,0xd0,0x6e,0x5e,0x90,0xd1, - 0x79,0xff,0x10,0xd2,0xa1,0x4f,0x10,0xd3,0x80,0x1c,0x90,0xd4,0x49,0xd2,0x10,0xd5, - 0x4c,0x38,0x10,0xd6,0x29,0xb4,0x10,0xd7,0x2c,0x1a,0x10,0xd8,0x9,0x96,0x10,0xd9, - 0x1,0x70,0x10,0xd9,0xe9,0x78,0x10,0x10,0xed,0x64,0x70,0x11,0x64,0x27,0x90,0x12, - 0x54,0x18,0x90,0x13,0x4d,0x44,0x10,0x14,0x33,0xfa,0x90,0x15,0x23,0xeb,0x90,0x16, - 0x13,0xdc,0x90,0x17,0x3,0xcd,0x90,0x17,0xf3,0xbe,0x90,0x18,0xe3,0xaf,0x90,0x19, - 0xd3,0xa0,0x90,0x1a,0xc3,0x91,0x90,0x1b,0xbc,0xbd,0x10,0x1c,0xac,0xae,0x10,0x1d, - 0x9c,0x9f,0x10,0x1e,0x8c,0x90,0x10,0x1f,0x7c,0x81,0x10,0x20,0x6c,0x72,0x10,0x21, - 0x5c,0x63,0x10,0x22,0x4c,0x54,0x10,0x23,0x3c,0x45,0x10,0x24,0x2c,0x36,0x10,0x25, - 0x1c,0x27,0x10,0x26,0xc,0x18,0x10,0x27,0x5,0x43,0x90,0x27,0xf5,0x34,0x90,0x28, - 0xe5,0x25,0x90,0x29,0xd5,0x16,0x90,0x2a,0xc5,0x7,0x90,0x2b,0xb4,0xf8,0x90,0x2c, - 0xa4,0xe9,0x90,0x2d,0x94,0xda,0x90,0x2e,0x84,0xcb,0x90,0x2f,0x74,0xbc,0x90,0x30, - 0x64,0xad,0x90,0x31,0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34, - 0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38, - 0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b, - 0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f, - 0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43, - 0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47, - 0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a, - 0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e, - 0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52, - 0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56, - 0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59, - 0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d, - 0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61, - 0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65, - 0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68, - 0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c, - 0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70, - 0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74, - 0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78, - 0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b, - 0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f, - 0x8e,0x7f,0x90,0x2,0x1,0x2,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x2,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x0,0x0,0xd,0x88,0x0,0x0,0x0,0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe, - 0x10,0x0,0x9,0x0,0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe,0x10,0x0,0x9,0x0, - 0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe,0x10,0x0,0x9,0x50,0x4d,0x54,0x0,0x43, - 0x45,0x53,0x54,0x0,0x43,0x45,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x0, - 0x0,0x0,0x0,0x0,0x1,0x1,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0, - 0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x90,0x0,0x0,0x0,0x8,0x0,0x0, - 0x0,0x11,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1e,0x49, - 0x92,0xf8,0xff,0xff,0xff,0xff,0x6c,0xcf,0xea,0xf8,0xff,0xff,0xff,0xff,0x9b,0xc, - 0x17,0x60,0xff,0xff,0xff,0xff,0x9b,0xd5,0xda,0xf0,0xff,0xff,0xff,0xff,0x9c,0xd9, - 0xae,0x90,0xff,0xff,0xff,0xff,0x9d,0xa4,0xb5,0x90,0xff,0xff,0xff,0xff,0x9e,0xb9, - 0x90,0x90,0xff,0xff,0xff,0xff,0x9f,0x84,0x97,0x90,0xff,0xff,0xff,0xff,0xc8,0x9, - 0x71,0x90,0xff,0xff,0xff,0xff,0xcc,0xe7,0x4b,0x10,0xff,0xff,0xff,0xff,0xcd,0xa9, - 0x17,0x90,0xff,0xff,0xff,0xff,0xce,0xa2,0x43,0x10,0xff,0xff,0xff,0xff,0xcf,0x92, - 0x34,0x10,0xff,0xff,0xff,0xff,0xd0,0x6e,0x5e,0x90,0xff,0xff,0xff,0xff,0xd1,0x79, - 0xff,0x10,0xff,0xff,0xff,0xff,0xd2,0xa1,0x4f,0x10,0xff,0xff,0xff,0xff,0xd3,0x80, - 0x1c,0x90,0xff,0xff,0xff,0xff,0xd4,0x49,0xd2,0x10,0xff,0xff,0xff,0xff,0xd5,0x4c, - 0x38,0x10,0xff,0xff,0xff,0xff,0xd6,0x29,0xb4,0x10,0xff,0xff,0xff,0xff,0xd7,0x2c, - 0x1a,0x10,0xff,0xff,0xff,0xff,0xd8,0x9,0x96,0x10,0xff,0xff,0xff,0xff,0xd9,0x1, - 0x70,0x10,0xff,0xff,0xff,0xff,0xd9,0xe9,0x78,0x10,0x0,0x0,0x0,0x0,0x10,0xed, - 0x64,0x70,0x0,0x0,0x0,0x0,0x11,0x64,0x27,0x90,0x0,0x0,0x0,0x0,0x12,0x54, - 0x18,0x90,0x0,0x0,0x0,0x0,0x13,0x4d,0x44,0x10,0x0,0x0,0x0,0x0,0x14,0x33, - 0xfa,0x90,0x0,0x0,0x0,0x0,0x15,0x23,0xeb,0x90,0x0,0x0,0x0,0x0,0x16,0x13, - 0xdc,0x90,0x0,0x0,0x0,0x0,0x17,0x3,0xcd,0x90,0x0,0x0,0x0,0x0,0x17,0xf3, - 0xbe,0x90,0x0,0x0,0x0,0x0,0x18,0xe3,0xaf,0x90,0x0,0x0,0x0,0x0,0x19,0xd3, - 0xa0,0x90,0x0,0x0,0x0,0x0,0x1a,0xc3,0x91,0x90,0x0,0x0,0x0,0x0,0x1b,0xbc, - 0xbd,0x10,0x0,0x0,0x0,0x0,0x1c,0xac,0xae,0x10,0x0,0x0,0x0,0x0,0x1d,0x9c, - 0x9f,0x10,0x0,0x0,0x0,0x0,0x1e,0x8c,0x90,0x10,0x0,0x0,0x0,0x0,0x1f,0x7c, - 0x81,0x10,0x0,0x0,0x0,0x0,0x20,0x6c,0x72,0x10,0x0,0x0,0x0,0x0,0x21,0x5c, - 0x63,0x10,0x0,0x0,0x0,0x0,0x22,0x4c,0x54,0x10,0x0,0x0,0x0,0x0,0x23,0x3c, - 0x45,0x10,0x0,0x0,0x0,0x0,0x24,0x2c,0x36,0x10,0x0,0x0,0x0,0x0,0x25,0x1c, - 0x27,0x10,0x0,0x0,0x0,0x0,0x26,0xc,0x18,0x10,0x0,0x0,0x0,0x0,0x27,0x5, - 0x43,0x90,0x0,0x0,0x0,0x0,0x27,0xf5,0x34,0x90,0x0,0x0,0x0,0x0,0x28,0xe5, - 0x25,0x90,0x0,0x0,0x0,0x0,0x29,0xd5,0x16,0x90,0x0,0x0,0x0,0x0,0x2a,0xc5, - 0x7,0x90,0x0,0x0,0x0,0x0,0x2b,0xb4,0xf8,0x90,0x0,0x0,0x0,0x0,0x2c,0xa4, - 0xe9,0x90,0x0,0x0,0x0,0x0,0x2d,0x94,0xda,0x90,0x0,0x0,0x0,0x0,0x2e,0x84, - 0xcb,0x90,0x0,0x0,0x0,0x0,0x2f,0x74,0xbc,0x90,0x0,0x0,0x0,0x0,0x30,0x64, - 0xad,0x90,0x0,0x0,0x0,0x0,0x31,0x5d,0xd9,0x10,0x0,0x0,0x0,0x0,0x32,0x72, - 0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d,0xbb,0x10,0x0,0x0,0x0,0x0,0x34,0x52, - 0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d,0x9d,0x10,0x0,0x0,0x0,0x0,0x36,0x32, - 0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd,0x7f,0x10,0x0,0x0,0x0,0x0,0x38,0x1b, - 0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd,0x61,0x10,0x0,0x0,0x0,0x0,0x39,0xfb, - 0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd,0x43,0x10,0x0,0x0,0x0,0x0,0x3b,0xdb, - 0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb, - 0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86,0x41,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b, - 0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66,0x23,0x90,0x0,0x0,0x0,0x0,0x41,0x84, - 0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46,0x5,0x90,0x0,0x0,0x0,0x0,0x43,0x64, - 0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25,0xe7,0x90,0x0,0x0,0x0,0x0,0x45,0x43, - 0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5,0xc9,0x90,0x0,0x0,0x0,0x0,0x47,0x23, - 0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee,0xe6,0x10,0x0,0x0,0x0,0x0,0x49,0x3, - 0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce,0xc8,0x10,0x0,0x0,0x0,0x0,0x4a,0xe3, - 0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae,0xaa,0x10,0x0,0x0,0x0,0x0,0x4c,0xcc, - 0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c,0x10,0x0,0x0,0x0,0x0,0x4e,0xac, - 0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e,0x10,0x0,0x0,0x0,0x0,0x50,0x8c, - 0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57,0x8a,0x90,0x0,0x0,0x0,0x0,0x52,0x6c, - 0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37,0x6c,0x90,0x0,0x0,0x0,0x0,0x54,0x4c, - 0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17,0x4e,0x90,0x0,0x0,0x0,0x0,0x56,0x2c, - 0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7,0x30,0x90,0x0,0x0,0x0,0x0,0x58,0x15, - 0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7,0x12,0x90,0x0,0x0,0x0,0x0,0x59,0xf5, - 0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4,0x90,0x0,0x0,0x0,0x0,0x5b,0xd5, - 0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0,0x11,0x10,0x0,0x0,0x0,0x0,0x5d,0xb4, - 0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3,0x10,0x0,0x0,0x0,0x0,0x5f,0x94, - 0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f,0xd5,0x10,0x0,0x0,0x0,0x0,0x61,0x7d, - 0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f,0xb7,0x10,0x0,0x0,0x0,0x0,0x63,0x5d, - 0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f,0x99,0x10,0x0,0x0,0x0,0x0,0x65,0x3d, - 0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8,0xb5,0x90,0x0,0x0,0x0,0x0,0x67,0x1d, - 0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8,0x97,0x90,0x0,0x0,0x0,0x0,0x68,0xfd, - 0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8,0x79,0x90,0x0,0x0,0x0,0x0,0x6a,0xdd, - 0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b,0x90,0x0,0x0,0x0,0x0,0x6c,0xc6, - 0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88,0x3d,0x90,0x0,0x0,0x0,0x0,0x6e,0xa6, - 0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68,0x1f,0x90,0x0,0x0,0x0,0x0,0x70,0x86, - 0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51,0x3c,0x10,0x0,0x0,0x0,0x0,0x72,0x66, - 0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31,0x1e,0x10,0x0,0x0,0x0,0x0,0x74,0x45, - 0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11,0x0,0x10,0x0,0x0,0x0,0x0,0x76,0x2f, - 0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0,0xe2,0x10,0x0,0x0,0x0,0x0,0x78,0xe, - 0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0,0xc4,0x10,0x0,0x0,0x0,0x0,0x79,0xee, - 0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6,0x10,0x0,0x0,0x0,0x0,0x7b,0xce, - 0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99,0xc2,0x90,0x0,0x0,0x0,0x0,0x7d,0xae, - 0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79,0xa4,0x90,0x0,0x0,0x0,0x0,0x7f,0x8e, - 0x7f,0x90,0x0,0x1,0x3,0x2,0x3,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x3,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x0,0x0,0xd,0x88,0x0,0x0,0x0,0x0,0xd,0x88,0x0,0x4,0x0,0x0, - 0x1c,0x20,0x1,0x8,0x0,0x0,0xe,0x10,0x0,0xd,0x0,0x0,0x1c,0x20,0x1,0x8, - 0x0,0x0,0xe,0x10,0x0,0xd,0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0xe,0x10, - 0x0,0xd,0x4c,0x4d,0x54,0x0,0x50,0x4d,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x43, - 0x45,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0, - 0x0,0x1,0x1,0xa,0x43,0x45,0x54,0x2d,0x31,0x43,0x45,0x53,0x54,0x2c,0x4d,0x33, - 0x2e,0x35,0x2e,0x30,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30,0x2f,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Skopje - 0x0,0x0,0x7,0xa5, + 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0xa1, + 0x51,0xf3,0x50,0x0,0x1,0x0,0x0,0x3,0x30,0x0,0x0,0x0,0x0,0xe,0x10,0x0, + 0x4,0x4c,0x4d,0x54,0x0,0x57,0x41,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, + 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0xa1,0x51,0xf3,0x50,0x0,0x1,0x0,0x0,0x3,0x30,0x0, + 0x0,0x0,0x0,0xe,0x10,0x0,0x4,0x4c,0x4d,0x54,0x0,0x57,0x41,0x54,0x0,0x0, + 0x0,0x0,0x0,0xa,0x57,0x41,0x54,0x2d,0x31,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Nouakchott + 0x0,0x0,0x0,0xaa, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x79,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0xca, - 0x2,0x35,0xe0,0xcc,0xe7,0x4b,0x10,0xcd,0xa9,0x17,0x90,0xce,0xa2,0x43,0x10,0xcf, - 0x92,0x34,0x10,0xd0,0x82,0x25,0x10,0xd0,0xfa,0x1,0x70,0xd1,0xa1,0x8c,0x10,0xd2, - 0x4e,0x40,0x90,0x18,0x45,0x5f,0x70,0x18,0xe3,0xaf,0x90,0x19,0xd3,0xa0,0x90,0x1a, - 0xc3,0x91,0x90,0x1b,0xbc,0xbd,0x10,0x1c,0xac,0xae,0x10,0x1d,0x9c,0x9f,0x10,0x1e, - 0x8c,0x90,0x10,0x1f,0x7c,0x81,0x10,0x20,0x6c,0x72,0x10,0x21,0x5c,0x63,0x10,0x22, - 0x4c,0x54,0x10,0x23,0x3c,0x45,0x10,0x24,0x2c,0x36,0x10,0x25,0x1c,0x27,0x10,0x26, - 0xc,0x18,0x10,0x27,0x5,0x43,0x90,0x27,0xf5,0x34,0x90,0x28,0xe5,0x25,0x90,0x29, - 0xd5,0x16,0x90,0x2a,0xc5,0x7,0x90,0x2b,0xb4,0xf8,0x90,0x2c,0xa4,0xe9,0x90,0x2d, - 0x94,0xda,0x90,0x2e,0x84,0xcb,0x90,0x2f,0x74,0xbc,0x90,0x30,0x64,0xad,0x90,0x31, - 0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34,0x52,0x96,0x10,0x35, - 0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x38, - 0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b,0xdb,0x58,0x90,0x3c, - 0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f,0x9b,0x1c,0x90,0x40, - 0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43,0x64,0x1b,0x10,0x44, - 0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47, - 0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b, - 0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e,0xac,0xa1,0x90,0x4f, - 0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53, - 0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56,0x2c,0x29,0x90,0x56, - 0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59,0xf5,0x28,0x10,0x5a, - 0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d,0xb4,0xec,0x10,0x5e, - 0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61,0x7d,0xea,0x90,0x62, - 0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65,0x3d,0xae,0x90,0x66, - 0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68,0xfd,0x72,0x90,0x69, - 0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c,0xc6,0x71,0x10,0x6d, - 0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70,0x86,0x35,0x10,0x71, - 0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74,0x45,0xf9,0x10,0x75, - 0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78, - 0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c, - 0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x1, - 0x4,0x2,0x3,0x2,0x3,0x2,0x1,0x3,0x2,0x1,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x0,0x0,0x13,0x38,0x0,0x0,0x0,0x0, - 0xe,0x10,0x0,0x4,0x0,0x0,0xe,0x10,0x0,0x4,0x0,0x0,0x1c,0x20,0x1,0x8, - 0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0xe,0x10, - 0x0,0x4,0x4c,0x4d,0x54,0x0,0x43,0x45,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x0, - 0x0,0x1,0x1,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x54,0x5a,0x69, + 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x92, + 0xe6,0x92,0x48,0x0,0x1,0xff,0xff,0xfc,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x4,0x4c,0x4d,0x54,0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x7a,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0xd,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0x5e,0x3c,0xf0,0x48,0xff,0xff,0xff,0xff,0xca,0x2,0x35, - 0xe0,0xff,0xff,0xff,0xff,0xcc,0xe7,0x4b,0x10,0xff,0xff,0xff,0xff,0xcd,0xa9,0x17, - 0x90,0xff,0xff,0xff,0xff,0xce,0xa2,0x43,0x10,0xff,0xff,0xff,0xff,0xcf,0x92,0x34, - 0x10,0xff,0xff,0xff,0xff,0xd0,0x82,0x25,0x10,0xff,0xff,0xff,0xff,0xd0,0xfa,0x1, - 0x70,0xff,0xff,0xff,0xff,0xd1,0xa1,0x8c,0x10,0xff,0xff,0xff,0xff,0xd2,0x4e,0x40, - 0x90,0x0,0x0,0x0,0x0,0x18,0x45,0x5f,0x70,0x0,0x0,0x0,0x0,0x18,0xe3,0xaf, - 0x90,0x0,0x0,0x0,0x0,0x19,0xd3,0xa0,0x90,0x0,0x0,0x0,0x0,0x1a,0xc3,0x91, - 0x90,0x0,0x0,0x0,0x0,0x1b,0xbc,0xbd,0x10,0x0,0x0,0x0,0x0,0x1c,0xac,0xae, - 0x10,0x0,0x0,0x0,0x0,0x1d,0x9c,0x9f,0x10,0x0,0x0,0x0,0x0,0x1e,0x8c,0x90, - 0x10,0x0,0x0,0x0,0x0,0x1f,0x7c,0x81,0x10,0x0,0x0,0x0,0x0,0x20,0x6c,0x72, - 0x10,0x0,0x0,0x0,0x0,0x21,0x5c,0x63,0x10,0x0,0x0,0x0,0x0,0x22,0x4c,0x54, - 0x10,0x0,0x0,0x0,0x0,0x23,0x3c,0x45,0x10,0x0,0x0,0x0,0x0,0x24,0x2c,0x36, - 0x10,0x0,0x0,0x0,0x0,0x25,0x1c,0x27,0x10,0x0,0x0,0x0,0x0,0x26,0xc,0x18, - 0x10,0x0,0x0,0x0,0x0,0x27,0x5,0x43,0x90,0x0,0x0,0x0,0x0,0x27,0xf5,0x34, - 0x90,0x0,0x0,0x0,0x0,0x28,0xe5,0x25,0x90,0x0,0x0,0x0,0x0,0x29,0xd5,0x16, - 0x90,0x0,0x0,0x0,0x0,0x2a,0xc5,0x7,0x90,0x0,0x0,0x0,0x0,0x2b,0xb4,0xf8, - 0x90,0x0,0x0,0x0,0x0,0x2c,0xa4,0xe9,0x90,0x0,0x0,0x0,0x0,0x2d,0x94,0xda, - 0x90,0x0,0x0,0x0,0x0,0x2e,0x84,0xcb,0x90,0x0,0x0,0x0,0x0,0x2f,0x74,0xbc, - 0x90,0x0,0x0,0x0,0x0,0x30,0x64,0xad,0x90,0x0,0x0,0x0,0x0,0x31,0x5d,0xd9, - 0x10,0x0,0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d,0xbb, - 0x10,0x0,0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d,0x9d, - 0x10,0x0,0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd,0x7f, - 0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd,0x61, - 0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd,0x43, - 0x10,0x0,0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f, - 0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86,0x41, - 0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66,0x23, - 0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46,0x5, - 0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25,0xe7, - 0x90,0x0,0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5,0xc9, - 0x90,0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee,0xe6, - 0x10,0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce,0xc8, - 0x10,0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae,0xaa, - 0x10,0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c, - 0x10,0x0,0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e, - 0x10,0x0,0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57,0x8a, - 0x90,0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37,0x6c, - 0x90,0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17,0x4e, - 0x90,0x0,0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7,0x30, - 0x90,0x0,0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7,0x12, - 0x90,0x0,0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4, - 0x90,0x0,0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0,0x11, - 0x10,0x0,0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3, - 0x10,0x0,0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f,0xd5, - 0x10,0x0,0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f,0xb7, - 0x10,0x0,0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f,0x99, - 0x10,0x0,0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8,0xb5, - 0x90,0x0,0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8,0x97, - 0x90,0x0,0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8,0x79, - 0x90,0x0,0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b, - 0x90,0x0,0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88,0x3d, - 0x90,0x0,0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68,0x1f, - 0x90,0x0,0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51,0x3c, - 0x10,0x0,0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31,0x1e, - 0x10,0x0,0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11,0x0, - 0x10,0x0,0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0,0xe2, - 0x10,0x0,0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0,0xc4, - 0x10,0x0,0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6, - 0x10,0x0,0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99,0xc2, - 0x90,0x0,0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79,0xa4, - 0x90,0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x1,0x4,0x2,0x3,0x2,0x3, - 0x2,0x1,0x3,0x2,0x1,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x0,0x0,0x13,0x38,0x0,0x0,0x0,0x0,0xe,0x10,0x0,0x4,0x0, - 0x0,0xe,0x10,0x0,0x4,0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0x1c,0x20,0x1, - 0x8,0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0xe,0x10,0x0,0x4,0x4c,0x4d,0x54, - 0x0,0x43,0x45,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x0,0x0,0x1,0x1,0x0,0x1, - 0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0xa,0x43,0x45,0x54,0x2d,0x31,0x43,0x45, - 0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e, - 0x30,0x2f,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Saratov - 0x0,0x0,0x4,0xad, + 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0x92,0xe6,0x92,0x48,0x0,0x1,0xff,0xff,0xfc,0x38,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x4c,0x4d,0x54,0x0,0x47,0x4d,0x54,0x0,0x0, + 0x0,0x0,0x0,0xa,0x47,0x4d,0x54,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Monrovia + 0x0,0x0,0x0,0xe9, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x42,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x10,0x80,0x0,0x0,0x0,0xa1, - 0x0,0x39,0x80,0xb5,0xa4,0xb,0x50,0x15,0x27,0x99,0xc0,0x16,0x18,0xce,0x30,0x17, - 0x8,0xcd,0x40,0x17,0xfa,0x1,0xb0,0x18,0xea,0x0,0xc0,0x19,0xdb,0x35,0x30,0x1a, - 0xcc,0x85,0xc0,0x1b,0xbc,0x92,0xe0,0x1c,0xac,0x83,0xe0,0x1d,0x9c,0x74,0xe0,0x1e, - 0x8c,0x65,0xe0,0x1f,0x7c,0x56,0xe0,0x20,0x6c,0x47,0xe0,0x21,0x5c,0x38,0xe0,0x22, - 0x4c,0x29,0xe0,0x23,0x3c,0x28,0xf0,0x24,0x2c,0x19,0xf0,0x25,0x1c,0xa,0xf0,0x26, - 0xb,0xfb,0xf0,0x27,0x5,0x27,0x70,0x27,0xf5,0x18,0x70,0x29,0xd4,0xec,0x60,0x2a, - 0xc4,0xeb,0x70,0x2b,0xb4,0xdc,0x70,0x2c,0xa4,0xcd,0x70,0x2d,0x94,0xbe,0x70,0x2e, - 0x84,0xaf,0x70,0x2f,0x74,0xa0,0x70,0x30,0x64,0x91,0x70,0x31,0x5d,0xbc,0xf0,0x32, - 0x72,0x97,0xf0,0x33,0x3d,0x9e,0xf0,0x34,0x52,0x79,0xf0,0x35,0x1d,0x80,0xf0,0x36, - 0x32,0x5b,0xf0,0x36,0xfd,0x62,0xf0,0x38,0x1b,0x78,0x70,0x38,0xdd,0x44,0xf0,0x39, - 0xfb,0x5a,0x70,0x3a,0xbd,0x26,0xf0,0x3b,0xdb,0x3c,0x70,0x3c,0xa6,0x43,0x70,0x3d, - 0xbb,0x1e,0x70,0x3e,0x86,0x25,0x70,0x3f,0x9b,0x0,0x70,0x40,0x66,0x7,0x70,0x41, - 0x84,0x1c,0xf0,0x42,0x45,0xe9,0x70,0x43,0x63,0xfe,0xf0,0x44,0x25,0xcb,0x70,0x45, - 0x43,0xe0,0xf0,0x46,0x5,0xad,0x70,0x47,0x23,0xc2,0xf0,0x47,0xee,0xc9,0xf0,0x49, - 0x3,0xa4,0xf0,0x49,0xce,0xab,0xf0,0x4a,0xe3,0x86,0xf0,0x4b,0xae,0x8d,0xf0,0x4c, - 0xcc,0xa3,0x70,0x4d,0x8e,0x6f,0xf0,0x54,0x4c,0x1d,0x60,0x58,0x43,0x4e,0x70,0x7f, - 0xff,0xff,0xff,0x0,0x1,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x6,0x7,0x6,0x7,0x6,0x7,0x4,0x6,0x7,0x6,0x7,0x6, - 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, - 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, - 0x7,0x4,0x7,0x4,0x4,0x0,0x0,0x2b,0x32,0x0,0x0,0x0,0x0,0x2a,0x30,0x0, - 0x4,0x0,0x0,0x46,0x50,0x1,0x8,0x0,0x0,0x38,0x40,0x0,0xc,0x0,0x0,0x38, - 0x40,0x0,0xc,0x0,0x0,0x46,0x50,0x1,0x8,0x0,0x0,0x38,0x40,0x1,0xc,0x0, - 0x0,0x2a,0x30,0x0,0x4,0x0,0x0,0x38,0x40,0x0,0xc,0x4c,0x4d,0x54,0x0,0x2b, - 0x30,0x33,0x0,0x2b,0x30,0x35,0x0,0x2b,0x30,0x34,0x0,0x0,0x1,0x0,0x0,0x1, - 0x1,0x1,0x1,0x1,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, + 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0xa0, + 0x5f,0x6c,0x9c,0x3,0xca,0x5a,0x6e,0x1,0x2,0x3,0xff,0xff,0xf5,0xe4,0x0,0x0, + 0xff,0xff,0xf5,0xe4,0x0,0x4,0xff,0xff,0xf5,0x92,0x0,0x4,0x0,0x0,0x0,0x0, + 0x0,0x8,0x4c,0x4d,0x54,0x0,0x4d,0x4d,0x54,0x0,0x47,0x4d,0x54,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0, + 0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0, + 0x0,0xc,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x5a,0x7a, + 0xa6,0x9c,0xff,0xff,0xff,0xff,0xa0,0x5f,0x6c,0x9c,0x0,0x0,0x0,0x0,0x3,0xca, + 0x5a,0x6e,0x0,0x1,0x2,0x3,0xff,0xff,0xf5,0xe4,0x0,0x0,0xff,0xff,0xf5,0xe4, + 0x0,0x4,0xff,0xff,0xf5,0x92,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x8,0x4c,0x4d, + 0x54,0x0,0x4d,0x4d,0x54,0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xa,0x47,0x4d,0x54,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Lome + 0x0,0x0,0x0,0xaa, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x92, + 0xe6,0x92,0x48,0x0,0x1,0xff,0xff,0xfc,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x4,0x4c,0x4d,0x54,0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x42,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x10,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0xa1,0x0,0x39,0x80,0xff,0xff,0xff,0xff,0xb5,0xa4,0xb, - 0x50,0x0,0x0,0x0,0x0,0x15,0x27,0x99,0xc0,0x0,0x0,0x0,0x0,0x16,0x18,0xce, - 0x30,0x0,0x0,0x0,0x0,0x17,0x8,0xcd,0x40,0x0,0x0,0x0,0x0,0x17,0xfa,0x1, - 0xb0,0x0,0x0,0x0,0x0,0x18,0xea,0x0,0xc0,0x0,0x0,0x0,0x0,0x19,0xdb,0x35, - 0x30,0x0,0x0,0x0,0x0,0x1a,0xcc,0x85,0xc0,0x0,0x0,0x0,0x0,0x1b,0xbc,0x92, - 0xe0,0x0,0x0,0x0,0x0,0x1c,0xac,0x83,0xe0,0x0,0x0,0x0,0x0,0x1d,0x9c,0x74, - 0xe0,0x0,0x0,0x0,0x0,0x1e,0x8c,0x65,0xe0,0x0,0x0,0x0,0x0,0x1f,0x7c,0x56, - 0xe0,0x0,0x0,0x0,0x0,0x20,0x6c,0x47,0xe0,0x0,0x0,0x0,0x0,0x21,0x5c,0x38, - 0xe0,0x0,0x0,0x0,0x0,0x22,0x4c,0x29,0xe0,0x0,0x0,0x0,0x0,0x23,0x3c,0x28, - 0xf0,0x0,0x0,0x0,0x0,0x24,0x2c,0x19,0xf0,0x0,0x0,0x0,0x0,0x25,0x1c,0xa, - 0xf0,0x0,0x0,0x0,0x0,0x26,0xb,0xfb,0xf0,0x0,0x0,0x0,0x0,0x27,0x5,0x27, - 0x70,0x0,0x0,0x0,0x0,0x27,0xf5,0x18,0x70,0x0,0x0,0x0,0x0,0x29,0xd4,0xec, - 0x60,0x0,0x0,0x0,0x0,0x2a,0xc4,0xeb,0x70,0x0,0x0,0x0,0x0,0x2b,0xb4,0xdc, - 0x70,0x0,0x0,0x0,0x0,0x2c,0xa4,0xcd,0x70,0x0,0x0,0x0,0x0,0x2d,0x94,0xbe, - 0x70,0x0,0x0,0x0,0x0,0x2e,0x84,0xaf,0x70,0x0,0x0,0x0,0x0,0x2f,0x74,0xa0, - 0x70,0x0,0x0,0x0,0x0,0x30,0x64,0x91,0x70,0x0,0x0,0x0,0x0,0x31,0x5d,0xbc, - 0xf0,0x0,0x0,0x0,0x0,0x32,0x72,0x97,0xf0,0x0,0x0,0x0,0x0,0x33,0x3d,0x9e, - 0xf0,0x0,0x0,0x0,0x0,0x34,0x52,0x79,0xf0,0x0,0x0,0x0,0x0,0x35,0x1d,0x80, - 0xf0,0x0,0x0,0x0,0x0,0x36,0x32,0x5b,0xf0,0x0,0x0,0x0,0x0,0x36,0xfd,0x62, - 0xf0,0x0,0x0,0x0,0x0,0x38,0x1b,0x78,0x70,0x0,0x0,0x0,0x0,0x38,0xdd,0x44, - 0xf0,0x0,0x0,0x0,0x0,0x39,0xfb,0x5a,0x70,0x0,0x0,0x0,0x0,0x3a,0xbd,0x26, - 0xf0,0x0,0x0,0x0,0x0,0x3b,0xdb,0x3c,0x70,0x0,0x0,0x0,0x0,0x3c,0xa6,0x43, - 0x70,0x0,0x0,0x0,0x0,0x3d,0xbb,0x1e,0x70,0x0,0x0,0x0,0x0,0x3e,0x86,0x25, - 0x70,0x0,0x0,0x0,0x0,0x3f,0x9b,0x0,0x70,0x0,0x0,0x0,0x0,0x40,0x66,0x7, - 0x70,0x0,0x0,0x0,0x0,0x41,0x84,0x1c,0xf0,0x0,0x0,0x0,0x0,0x42,0x45,0xe9, - 0x70,0x0,0x0,0x0,0x0,0x43,0x63,0xfe,0xf0,0x0,0x0,0x0,0x0,0x44,0x25,0xcb, - 0x70,0x0,0x0,0x0,0x0,0x45,0x43,0xe0,0xf0,0x0,0x0,0x0,0x0,0x46,0x5,0xad, - 0x70,0x0,0x0,0x0,0x0,0x47,0x23,0xc2,0xf0,0x0,0x0,0x0,0x0,0x47,0xee,0xc9, - 0xf0,0x0,0x0,0x0,0x0,0x49,0x3,0xa4,0xf0,0x0,0x0,0x0,0x0,0x49,0xce,0xab, - 0xf0,0x0,0x0,0x0,0x0,0x4a,0xe3,0x86,0xf0,0x0,0x0,0x0,0x0,0x4b,0xae,0x8d, - 0xf0,0x0,0x0,0x0,0x0,0x4c,0xcc,0xa3,0x70,0x0,0x0,0x0,0x0,0x4d,0x8e,0x6f, - 0xf0,0x0,0x0,0x0,0x0,0x54,0x4c,0x1d,0x60,0x0,0x0,0x0,0x0,0x58,0x43,0x4e, - 0x70,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x6,0x7,0x6,0x7,0x6,0x7, - 0x4,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, - 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, - 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x4,0x7,0x4,0x4,0x0,0x0,0x2b,0x32,0x0, - 0x0,0x0,0x0,0x2a,0x30,0x0,0x4,0x0,0x0,0x46,0x50,0x1,0x8,0x0,0x0,0x38, - 0x40,0x0,0xc,0x0,0x0,0x38,0x40,0x0,0xc,0x0,0x0,0x46,0x50,0x1,0x8,0x0, - 0x0,0x38,0x40,0x1,0xc,0x0,0x0,0x2a,0x30,0x0,0x4,0x0,0x0,0x38,0x40,0x0, - 0xc,0x4c,0x4d,0x54,0x0,0x2b,0x30,0x33,0x0,0x2b,0x30,0x35,0x0,0x2b,0x30,0x34, - 0x0,0x0,0x1,0x0,0x0,0x1,0x1,0x1,0x1,0x1,0x0,0x1,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0xa,0x3c,0x2b,0x30,0x34,0x3e,0x2d,0x34,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Lisbon - 0x0,0x0,0xd,0x7d, + 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0x92,0xe6,0x92,0x48,0x0,0x1,0xff,0xff,0xfc,0x38,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x4c,0x4d,0x54,0x0,0x47,0x4d,0x54,0x0,0x0, + 0x0,0x0,0x0,0xa,0x47,0x4d,0x54,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Banjul + 0x0,0x0,0x0,0xaa, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xde,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x1b,0x80,0x0,0x0,0x0,0x92, - 0xe6,0x97,0x1d,0x9b,0x4b,0x6d,0x70,0x9b,0xfe,0xc7,0x80,0x9c,0x9c,0xed,0x70,0x9d, - 0xc9,0x83,0x70,0x9e,0x7f,0x72,0x70,0x9f,0xaa,0xb6,0xf0,0xa0,0x5f,0x54,0x70,0xa1, - 0x8b,0xea,0x70,0xa2,0x41,0xd9,0x70,0xa3,0x6e,0x6f,0x70,0xa4,0x23,0xc,0xf0,0xa5, - 0x4f,0xa2,0xf0,0xaa,0x5,0xef,0x70,0xaa,0xf4,0x8e,0xf0,0xad,0xc9,0xa7,0xf0,0xae, - 0xa7,0x23,0xf0,0xaf,0xa0,0x4f,0x70,0xb0,0x87,0x5,0xf0,0xb1,0x89,0x6b,0xf0,0xb2, - 0x70,0x22,0x70,0xb3,0x72,0x88,0x70,0xb4,0x50,0x4,0x70,0xb7,0x32,0x4c,0x70,0xb8, - 0xf,0xc8,0x70,0xb8,0xff,0xb9,0x70,0xb9,0xef,0xaa,0x70,0xbc,0xc8,0xb7,0xf0,0xbd, - 0xb8,0xa8,0xf0,0xbe,0x9f,0x5f,0x70,0xbf,0x98,0x8a,0xf0,0xc0,0x9a,0xf0,0xf0,0xc1, - 0x78,0x6c,0xf0,0xc2,0x68,0x5d,0xf0,0xc3,0x58,0x4e,0xf0,0xc4,0x3f,0x5,0x70,0xc5, - 0x38,0x30,0xf0,0xc6,0x3a,0x96,0xf0,0xc7,0x58,0xac,0x70,0xc7,0xd9,0xdf,0x70,0xc9, - 0x1,0x2f,0x70,0xc9,0xf1,0x20,0x70,0xca,0xe2,0x62,0xf0,0xcb,0xb5,0x52,0xf0,0xcb, - 0xec,0xa3,0xe0,0xcc,0x80,0x4b,0xe0,0xcc,0xdc,0xa2,0xf0,0xcd,0x95,0x34,0xf0,0xcd, - 0xc3,0x4b,0x60,0xce,0x72,0xa2,0xe0,0xce,0xc5,0xbf,0x70,0xcf,0x75,0x16,0xf0,0xcf, - 0xac,0x67,0xe0,0xd0,0x52,0x84,0xe0,0xd0,0xa5,0xa1,0x70,0xd1,0x54,0xf8,0xf0,0xd1, - 0x8c,0x49,0xe0,0xd2,0x32,0x66,0xe0,0xd2,0x85,0x83,0x70,0xd3,0x59,0xc4,0xf0,0xd4, - 0x49,0xb5,0xf0,0xd5,0x39,0xd1,0x20,0xd6,0x29,0xc2,0x20,0xd7,0x19,0xb3,0x20,0xd8, - 0x9,0xa4,0x20,0xd8,0xf9,0x95,0x20,0xd9,0xe9,0x86,0x20,0xdc,0xb9,0x59,0x20,0xdd, - 0xb2,0x84,0xa0,0xde,0xa2,0x75,0xa0,0xdf,0x92,0x66,0xa0,0xe0,0x82,0x57,0xa0,0xe1, - 0x72,0x48,0xa0,0xe2,0x62,0x39,0xa0,0xe3,0x52,0x2a,0xa0,0xe4,0x42,0x1b,0xa0,0xe5, - 0x32,0xc,0xa0,0xe6,0x21,0xfd,0xa0,0xe7,0x1b,0x29,0x20,0xe8,0xb,0x1a,0x20,0xe8, - 0xfb,0xb,0x20,0xe9,0xea,0xfc,0x20,0xea,0xda,0xed,0x20,0xeb,0xca,0xde,0x20,0xec, - 0xba,0xcf,0x20,0xed,0xaa,0xc0,0x20,0xee,0x9a,0xb1,0x20,0xef,0x8a,0xa2,0x20,0xf0, - 0x7a,0x93,0x20,0xf1,0x6a,0x84,0x20,0xf2,0x63,0xaf,0xa0,0xf3,0x53,0xa0,0xa0,0xf4, - 0x43,0x91,0xa0,0xf5,0x33,0x82,0xa0,0xf6,0x23,0x73,0xa0,0xf7,0x13,0x64,0xa0,0xf8, - 0x3,0x55,0xa0,0xf8,0xf3,0x46,0xa0,0xc,0xab,0x2a,0x0,0xd,0x9b,0x1b,0x0,0xe, - 0x8b,0xc,0x0,0xf,0x84,0x37,0x80,0x10,0x74,0x28,0x80,0x11,0x64,0x19,0x80,0x12, - 0x54,0x18,0x90,0x13,0x43,0xfb,0x80,0x14,0x33,0xfa,0x90,0x15,0x23,0xeb,0x90,0x16, - 0x13,0xdc,0x90,0x17,0x3,0xcd,0x90,0x17,0xf3,0xbe,0x90,0x18,0xe3,0xbd,0xa0,0x19, - 0xd3,0xa0,0x90,0x1a,0xc3,0x91,0x90,0x1b,0xbc,0xbd,0x10,0x1c,0xac,0xae,0x10,0x1d, - 0x9c,0x9f,0x10,0x1e,0x8c,0x90,0x10,0x1f,0x7c,0x81,0x10,0x20,0x6c,0x72,0x10,0x21, - 0x5c,0x63,0x10,0x22,0x4c,0x54,0x10,0x23,0x3c,0x45,0x10,0x24,0x2c,0x36,0x10,0x25, - 0x1c,0x27,0x10,0x26,0xc,0x18,0x10,0x27,0x5,0x43,0x90,0x27,0xf5,0x34,0x90,0x28, - 0xe5,0x25,0x90,0x29,0xd5,0x16,0x90,0x2a,0xc5,0x7,0x90,0x2b,0xb4,0xf8,0x90,0x2c, - 0xa4,0xe9,0x90,0x2d,0x94,0xda,0x90,0x2e,0x84,0xcb,0x90,0x2f,0x74,0xbc,0x90,0x30, - 0x64,0xad,0x90,0x31,0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34, - 0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38, - 0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b, - 0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f, - 0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43, - 0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47, - 0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a, - 0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e, - 0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52, - 0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56, - 0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59, - 0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d, - 0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61, - 0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65, - 0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68, - 0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c, - 0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70, - 0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74, - 0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78, - 0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b, - 0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f, - 0x8e,0x7f,0x90,0x0,0x2,0x1,0x2,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x5,0x3,0x4,0x3,0x5,0x3,0x4,0x3,0x5,0x3,0x4,0x3,0x5,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x6,0x2,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x9,0xa,0x9, - 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9, - 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9, - 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9, - 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9, - 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9, - 0xa,0xff,0xff,0xf7,0x63,0x0,0x0,0x0,0x0,0xe,0x10,0x1,0x4,0x0,0x0,0x0, - 0x0,0x0,0x9,0x0,0x0,0xe,0x10,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x9,0x0, - 0x0,0x1c,0x20,0x1,0xd,0x0,0x0,0xe,0x10,0x0,0x12,0x0,0x0,0xe,0x10,0x0, - 0x12,0x0,0x0,0x1c,0x20,0x1,0x16,0x0,0x0,0xe,0x10,0x1,0x4,0x0,0x0,0x0, - 0x0,0x0,0x9,0x4c,0x4d,0x54,0x0,0x57,0x45,0x53,0x54,0x0,0x57,0x45,0x54,0x0, - 0x57,0x45,0x4d,0x54,0x0,0x43,0x45,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x0,0x0, - 0x0,0x1,0x1,0x1,0x0,0x1,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x1,0x1,0x1,0x1,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0xb, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xde,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x1b, - 0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x92,0xe6,0x97,0x1d, - 0xff,0xff,0xff,0xff,0x9b,0x4b,0x6d,0x70,0xff,0xff,0xff,0xff,0x9b,0xfe,0xc7,0x80, - 0xff,0xff,0xff,0xff,0x9c,0x9c,0xed,0x70,0xff,0xff,0xff,0xff,0x9d,0xc9,0x83,0x70, - 0xff,0xff,0xff,0xff,0x9e,0x7f,0x72,0x70,0xff,0xff,0xff,0xff,0x9f,0xaa,0xb6,0xf0, - 0xff,0xff,0xff,0xff,0xa0,0x5f,0x54,0x70,0xff,0xff,0xff,0xff,0xa1,0x8b,0xea,0x70, - 0xff,0xff,0xff,0xff,0xa2,0x41,0xd9,0x70,0xff,0xff,0xff,0xff,0xa3,0x6e,0x6f,0x70, - 0xff,0xff,0xff,0xff,0xa4,0x23,0xc,0xf0,0xff,0xff,0xff,0xff,0xa5,0x4f,0xa2,0xf0, - 0xff,0xff,0xff,0xff,0xaa,0x5,0xef,0x70,0xff,0xff,0xff,0xff,0xaa,0xf4,0x8e,0xf0, - 0xff,0xff,0xff,0xff,0xad,0xc9,0xa7,0xf0,0xff,0xff,0xff,0xff,0xae,0xa7,0x23,0xf0, - 0xff,0xff,0xff,0xff,0xaf,0xa0,0x4f,0x70,0xff,0xff,0xff,0xff,0xb0,0x87,0x5,0xf0, - 0xff,0xff,0xff,0xff,0xb1,0x89,0x6b,0xf0,0xff,0xff,0xff,0xff,0xb2,0x70,0x22,0x70, - 0xff,0xff,0xff,0xff,0xb3,0x72,0x88,0x70,0xff,0xff,0xff,0xff,0xb4,0x50,0x4,0x70, - 0xff,0xff,0xff,0xff,0xb7,0x32,0x4c,0x70,0xff,0xff,0xff,0xff,0xb8,0xf,0xc8,0x70, - 0xff,0xff,0xff,0xff,0xb8,0xff,0xb9,0x70,0xff,0xff,0xff,0xff,0xb9,0xef,0xaa,0x70, - 0xff,0xff,0xff,0xff,0xbc,0xc8,0xb7,0xf0,0xff,0xff,0xff,0xff,0xbd,0xb8,0xa8,0xf0, - 0xff,0xff,0xff,0xff,0xbe,0x9f,0x5f,0x70,0xff,0xff,0xff,0xff,0xbf,0x98,0x8a,0xf0, - 0xff,0xff,0xff,0xff,0xc0,0x9a,0xf0,0xf0,0xff,0xff,0xff,0xff,0xc1,0x78,0x6c,0xf0, - 0xff,0xff,0xff,0xff,0xc2,0x68,0x5d,0xf0,0xff,0xff,0xff,0xff,0xc3,0x58,0x4e,0xf0, - 0xff,0xff,0xff,0xff,0xc4,0x3f,0x5,0x70,0xff,0xff,0xff,0xff,0xc5,0x38,0x30,0xf0, - 0xff,0xff,0xff,0xff,0xc6,0x3a,0x96,0xf0,0xff,0xff,0xff,0xff,0xc7,0x58,0xac,0x70, - 0xff,0xff,0xff,0xff,0xc7,0xd9,0xdf,0x70,0xff,0xff,0xff,0xff,0xc9,0x1,0x2f,0x70, - 0xff,0xff,0xff,0xff,0xc9,0xf1,0x20,0x70,0xff,0xff,0xff,0xff,0xca,0xe2,0x62,0xf0, - 0xff,0xff,0xff,0xff,0xcb,0xb5,0x52,0xf0,0xff,0xff,0xff,0xff,0xcb,0xec,0xa3,0xe0, - 0xff,0xff,0xff,0xff,0xcc,0x80,0x4b,0xe0,0xff,0xff,0xff,0xff,0xcc,0xdc,0xa2,0xf0, - 0xff,0xff,0xff,0xff,0xcd,0x95,0x34,0xf0,0xff,0xff,0xff,0xff,0xcd,0xc3,0x4b,0x60, - 0xff,0xff,0xff,0xff,0xce,0x72,0xa2,0xe0,0xff,0xff,0xff,0xff,0xce,0xc5,0xbf,0x70, - 0xff,0xff,0xff,0xff,0xcf,0x75,0x16,0xf0,0xff,0xff,0xff,0xff,0xcf,0xac,0x67,0xe0, - 0xff,0xff,0xff,0xff,0xd0,0x52,0x84,0xe0,0xff,0xff,0xff,0xff,0xd0,0xa5,0xa1,0x70, - 0xff,0xff,0xff,0xff,0xd1,0x54,0xf8,0xf0,0xff,0xff,0xff,0xff,0xd1,0x8c,0x49,0xe0, - 0xff,0xff,0xff,0xff,0xd2,0x32,0x66,0xe0,0xff,0xff,0xff,0xff,0xd2,0x85,0x83,0x70, - 0xff,0xff,0xff,0xff,0xd3,0x59,0xc4,0xf0,0xff,0xff,0xff,0xff,0xd4,0x49,0xb5,0xf0, - 0xff,0xff,0xff,0xff,0xd5,0x39,0xd1,0x20,0xff,0xff,0xff,0xff,0xd6,0x29,0xc2,0x20, - 0xff,0xff,0xff,0xff,0xd7,0x19,0xb3,0x20,0xff,0xff,0xff,0xff,0xd8,0x9,0xa4,0x20, - 0xff,0xff,0xff,0xff,0xd8,0xf9,0x95,0x20,0xff,0xff,0xff,0xff,0xd9,0xe9,0x86,0x20, - 0xff,0xff,0xff,0xff,0xdc,0xb9,0x59,0x20,0xff,0xff,0xff,0xff,0xdd,0xb2,0x84,0xa0, - 0xff,0xff,0xff,0xff,0xde,0xa2,0x75,0xa0,0xff,0xff,0xff,0xff,0xdf,0x92,0x66,0xa0, - 0xff,0xff,0xff,0xff,0xe0,0x82,0x57,0xa0,0xff,0xff,0xff,0xff,0xe1,0x72,0x48,0xa0, - 0xff,0xff,0xff,0xff,0xe2,0x62,0x39,0xa0,0xff,0xff,0xff,0xff,0xe3,0x52,0x2a,0xa0, - 0xff,0xff,0xff,0xff,0xe4,0x42,0x1b,0xa0,0xff,0xff,0xff,0xff,0xe5,0x32,0xc,0xa0, - 0xff,0xff,0xff,0xff,0xe6,0x21,0xfd,0xa0,0xff,0xff,0xff,0xff,0xe7,0x1b,0x29,0x20, - 0xff,0xff,0xff,0xff,0xe8,0xb,0x1a,0x20,0xff,0xff,0xff,0xff,0xe8,0xfb,0xb,0x20, - 0xff,0xff,0xff,0xff,0xe9,0xea,0xfc,0x20,0xff,0xff,0xff,0xff,0xea,0xda,0xed,0x20, - 0xff,0xff,0xff,0xff,0xeb,0xca,0xde,0x20,0xff,0xff,0xff,0xff,0xec,0xba,0xcf,0x20, - 0xff,0xff,0xff,0xff,0xed,0xaa,0xc0,0x20,0xff,0xff,0xff,0xff,0xee,0x9a,0xb1,0x20, - 0xff,0xff,0xff,0xff,0xef,0x8a,0xa2,0x20,0xff,0xff,0xff,0xff,0xf0,0x7a,0x93,0x20, - 0xff,0xff,0xff,0xff,0xf1,0x6a,0x84,0x20,0xff,0xff,0xff,0xff,0xf2,0x63,0xaf,0xa0, - 0xff,0xff,0xff,0xff,0xf3,0x53,0xa0,0xa0,0xff,0xff,0xff,0xff,0xf4,0x43,0x91,0xa0, - 0xff,0xff,0xff,0xff,0xf5,0x33,0x82,0xa0,0xff,0xff,0xff,0xff,0xf6,0x23,0x73,0xa0, - 0xff,0xff,0xff,0xff,0xf7,0x13,0x64,0xa0,0xff,0xff,0xff,0xff,0xf8,0x3,0x55,0xa0, - 0xff,0xff,0xff,0xff,0xf8,0xf3,0x46,0xa0,0x0,0x0,0x0,0x0,0xc,0xab,0x2a,0x0, - 0x0,0x0,0x0,0x0,0xd,0x9b,0x1b,0x0,0x0,0x0,0x0,0x0,0xe,0x8b,0xc,0x0, - 0x0,0x0,0x0,0x0,0xf,0x84,0x37,0x80,0x0,0x0,0x0,0x0,0x10,0x74,0x28,0x80, - 0x0,0x0,0x0,0x0,0x11,0x64,0x19,0x80,0x0,0x0,0x0,0x0,0x12,0x54,0x18,0x90, - 0x0,0x0,0x0,0x0,0x13,0x43,0xfb,0x80,0x0,0x0,0x0,0x0,0x14,0x33,0xfa,0x90, - 0x0,0x0,0x0,0x0,0x15,0x23,0xeb,0x90,0x0,0x0,0x0,0x0,0x16,0x13,0xdc,0x90, - 0x0,0x0,0x0,0x0,0x17,0x3,0xcd,0x90,0x0,0x0,0x0,0x0,0x17,0xf3,0xbe,0x90, - 0x0,0x0,0x0,0x0,0x18,0xe3,0xbd,0xa0,0x0,0x0,0x0,0x0,0x19,0xd3,0xa0,0x90, - 0x0,0x0,0x0,0x0,0x1a,0xc3,0x91,0x90,0x0,0x0,0x0,0x0,0x1b,0xbc,0xbd,0x10, - 0x0,0x0,0x0,0x0,0x1c,0xac,0xae,0x10,0x0,0x0,0x0,0x0,0x1d,0x9c,0x9f,0x10, - 0x0,0x0,0x0,0x0,0x1e,0x8c,0x90,0x10,0x0,0x0,0x0,0x0,0x1f,0x7c,0x81,0x10, - 0x0,0x0,0x0,0x0,0x20,0x6c,0x72,0x10,0x0,0x0,0x0,0x0,0x21,0x5c,0x63,0x10, - 0x0,0x0,0x0,0x0,0x22,0x4c,0x54,0x10,0x0,0x0,0x0,0x0,0x23,0x3c,0x45,0x10, - 0x0,0x0,0x0,0x0,0x24,0x2c,0x36,0x10,0x0,0x0,0x0,0x0,0x25,0x1c,0x27,0x10, - 0x0,0x0,0x0,0x0,0x26,0xc,0x18,0x10,0x0,0x0,0x0,0x0,0x27,0x5,0x43,0x90, - 0x0,0x0,0x0,0x0,0x27,0xf5,0x34,0x90,0x0,0x0,0x0,0x0,0x28,0xe5,0x25,0x90, - 0x0,0x0,0x0,0x0,0x29,0xd5,0x16,0x90,0x0,0x0,0x0,0x0,0x2a,0xc5,0x7,0x90, - 0x0,0x0,0x0,0x0,0x2b,0xb4,0xf8,0x90,0x0,0x0,0x0,0x0,0x2c,0xa4,0xe9,0x90, - 0x0,0x0,0x0,0x0,0x2d,0x94,0xda,0x90,0x0,0x0,0x0,0x0,0x2e,0x84,0xcb,0x90, - 0x0,0x0,0x0,0x0,0x2f,0x74,0xbc,0x90,0x0,0x0,0x0,0x0,0x30,0x64,0xad,0x90, - 0x0,0x0,0x0,0x0,0x31,0x5d,0xd9,0x10,0x0,0x0,0x0,0x0,0x32,0x72,0xb4,0x10, - 0x0,0x0,0x0,0x0,0x33,0x3d,0xbb,0x10,0x0,0x0,0x0,0x0,0x34,0x52,0x96,0x10, - 0x0,0x0,0x0,0x0,0x35,0x1d,0x9d,0x10,0x0,0x0,0x0,0x0,0x36,0x32,0x78,0x10, - 0x0,0x0,0x0,0x0,0x36,0xfd,0x7f,0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0x94,0x90, - 0x0,0x0,0x0,0x0,0x38,0xdd,0x61,0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0x76,0x90, - 0x0,0x0,0x0,0x0,0x3a,0xbd,0x43,0x10,0x0,0x0,0x0,0x0,0x3b,0xdb,0x58,0x90, - 0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90, - 0x0,0x0,0x0,0x0,0x3e,0x86,0x41,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90, - 0x0,0x0,0x0,0x0,0x40,0x66,0x23,0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x39,0x10, - 0x0,0x0,0x0,0x0,0x42,0x46,0x5,0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x1b,0x10, - 0x0,0x0,0x0,0x0,0x44,0x25,0xe7,0x90,0x0,0x0,0x0,0x0,0x45,0x43,0xfd,0x10, - 0x0,0x0,0x0,0x0,0x46,0x5,0xc9,0x90,0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10, - 0x0,0x0,0x0,0x0,0x47,0xee,0xe6,0x10,0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10, - 0x0,0x0,0x0,0x0,0x49,0xce,0xc8,0x10,0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10, - 0x0,0x0,0x0,0x0,0x4b,0xae,0xaa,0x10,0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90, - 0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c,0x10,0x0,0x0,0x0,0x0,0x4e,0xac,0xa1,0x90, - 0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e,0x10,0x0,0x0,0x0,0x0,0x50,0x8c,0x83,0x90, - 0x0,0x0,0x0,0x0,0x51,0x57,0x8a,0x90,0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90, - 0x0,0x0,0x0,0x0,0x53,0x37,0x6c,0x90,0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90, - 0x0,0x0,0x0,0x0,0x55,0x17,0x4e,0x90,0x0,0x0,0x0,0x0,0x56,0x2c,0x29,0x90, - 0x0,0x0,0x0,0x0,0x56,0xf7,0x30,0x90,0x0,0x0,0x0,0x0,0x58,0x15,0x46,0x10, - 0x0,0x0,0x0,0x0,0x58,0xd7,0x12,0x90,0x0,0x0,0x0,0x0,0x59,0xf5,0x28,0x10, - 0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4,0x90,0x0,0x0,0x0,0x0,0x5b,0xd5,0xa,0x10, - 0x0,0x0,0x0,0x0,0x5c,0xa0,0x11,0x10,0x0,0x0,0x0,0x0,0x5d,0xb4,0xec,0x10, - 0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3,0x10,0x0,0x0,0x0,0x0,0x5f,0x94,0xce,0x10, - 0x0,0x0,0x0,0x0,0x60,0x5f,0xd5,0x10,0x0,0x0,0x0,0x0,0x61,0x7d,0xea,0x90, - 0x0,0x0,0x0,0x0,0x62,0x3f,0xb7,0x10,0x0,0x0,0x0,0x0,0x63,0x5d,0xcc,0x90, - 0x0,0x0,0x0,0x0,0x64,0x1f,0x99,0x10,0x0,0x0,0x0,0x0,0x65,0x3d,0xae,0x90, - 0x0,0x0,0x0,0x0,0x66,0x8,0xb5,0x90,0x0,0x0,0x0,0x0,0x67,0x1d,0x90,0x90, - 0x0,0x0,0x0,0x0,0x67,0xe8,0x97,0x90,0x0,0x0,0x0,0x0,0x68,0xfd,0x72,0x90, - 0x0,0x0,0x0,0x0,0x69,0xc8,0x79,0x90,0x0,0x0,0x0,0x0,0x6a,0xdd,0x54,0x90, - 0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b,0x90,0x0,0x0,0x0,0x0,0x6c,0xc6,0x71,0x10, - 0x0,0x0,0x0,0x0,0x6d,0x88,0x3d,0x90,0x0,0x0,0x0,0x0,0x6e,0xa6,0x53,0x10, - 0x0,0x0,0x0,0x0,0x6f,0x68,0x1f,0x90,0x0,0x0,0x0,0x0,0x70,0x86,0x35,0x10, - 0x0,0x0,0x0,0x0,0x71,0x51,0x3c,0x10,0x0,0x0,0x0,0x0,0x72,0x66,0x17,0x10, - 0x0,0x0,0x0,0x0,0x73,0x31,0x1e,0x10,0x0,0x0,0x0,0x0,0x74,0x45,0xf9,0x10, - 0x0,0x0,0x0,0x0,0x75,0x11,0x0,0x10,0x0,0x0,0x0,0x0,0x76,0x2f,0x15,0x90, - 0x0,0x0,0x0,0x0,0x76,0xf0,0xe2,0x10,0x0,0x0,0x0,0x0,0x78,0xe,0xf7,0x90, - 0x0,0x0,0x0,0x0,0x78,0xd0,0xc4,0x10,0x0,0x0,0x0,0x0,0x79,0xee,0xd9,0x90, - 0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6,0x10,0x0,0x0,0x0,0x0,0x7b,0xce,0xbb,0x90, - 0x0,0x0,0x0,0x0,0x7c,0x99,0xc2,0x90,0x0,0x0,0x0,0x0,0x7d,0xae,0x9d,0x90, - 0x0,0x0,0x0,0x0,0x7e,0x79,0xa4,0x90,0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90, - 0x0,0x2,0x1,0x2,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x5,0x3,0x4, - 0x3,0x5,0x3,0x4,0x3,0x5,0x3,0x4,0x3,0x5,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x6,0x2,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x9,0xa,0x9,0xa,0x9,0xa, - 0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa, - 0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa, - 0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa, - 0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa, - 0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0xff,0xff, - 0xf7,0x63,0x0,0x0,0x0,0x0,0xe,0x10,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x9, - 0x0,0x0,0xe,0x10,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x1c,0x20, - 0x1,0xd,0x0,0x0,0xe,0x10,0x0,0x12,0x0,0x0,0xe,0x10,0x0,0x12,0x0,0x0, - 0x1c,0x20,0x1,0x16,0x0,0x0,0xe,0x10,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x9, - 0x4c,0x4d,0x54,0x0,0x57,0x45,0x53,0x54,0x0,0x57,0x45,0x54,0x0,0x57,0x45,0x4d, - 0x54,0x0,0x43,0x45,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x1,0x1, - 0x1,0x0,0x1,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, - 0x1,0xa,0x57,0x45,0x54,0x30,0x57,0x45,0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e, - 0x30,0x2f,0x31,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Paris - 0x0,0x0,0xb,0x9b, + 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x92, + 0xe6,0x92,0x48,0x0,0x1,0xff,0xff,0xfc,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x4,0x4c,0x4d,0x54,0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, + 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0x92,0xe6,0x92,0x48,0x0,0x1,0xff,0xff,0xfc,0x38,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x4c,0x4d,0x54,0x0,0x47,0x4d,0x54,0x0,0x0, + 0x0,0x0,0x0,0xa,0x47,0x4d,0x54,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Maputo + 0x0,0x0,0x0,0xab, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xb8,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x1f,0x80,0x0,0x0,0x0,0x91, - 0x60,0x50,0x8b,0x9b,0x47,0x78,0xf0,0x9b,0xd7,0x2c,0x70,0x9c,0xbc,0x91,0x70,0x9d, - 0xc0,0x48,0xf0,0x9e,0x89,0xfe,0x70,0x9f,0xa0,0x2a,0xf0,0xa0,0x60,0xa5,0xf0,0xa1, - 0x80,0xc,0xf0,0xa2,0x2e,0x12,0xf0,0xa3,0x7a,0x4c,0xf0,0xa4,0x35,0x81,0xf0,0xa5, - 0x5e,0x23,0x70,0xa6,0x25,0x35,0xf0,0xa7,0x27,0x9b,0xf0,0xa8,0x58,0x26,0x70,0xa9, - 0x7,0x7d,0xf0,0xa9,0xee,0x34,0x70,0xaa,0xe7,0x5f,0xf0,0xab,0xd7,0x50,0xf0,0xac, - 0xc7,0x41,0xf0,0xad,0xc9,0xa7,0xf0,0xae,0xa7,0x23,0xf0,0xaf,0xa0,0x4f,0x70,0xb0, - 0x87,0x5,0xf0,0xb1,0x89,0x6b,0xf0,0xb2,0x70,0x22,0x70,0xb3,0x72,0x88,0x70,0xb4, - 0x50,0x4,0x70,0xb5,0x49,0x2f,0xf0,0xb6,0x2f,0xe6,0x70,0xb7,0x32,0x4c,0x70,0xb8, - 0xf,0xc8,0x70,0xb8,0xff,0xb9,0x70,0xb9,0xef,0xaa,0x70,0xba,0xd6,0x60,0xf0,0xbb, - 0xd8,0xc6,0xf0,0xbc,0xc8,0xb7,0xf0,0xbd,0xb8,0xa8,0xf0,0xbe,0x9f,0x5f,0x70,0xbf, - 0x98,0x8a,0xf0,0xc0,0x9a,0xf0,0xf0,0xc1,0x78,0x6c,0xf0,0xc2,0x68,0x5d,0xf0,0xc3, - 0x58,0x4e,0xf0,0xc4,0x3f,0x5,0x70,0xc5,0x38,0x30,0xf0,0xc6,0x3a,0x96,0xf0,0xc7, - 0x58,0xac,0x70,0xc7,0xda,0x9,0xa0,0xc8,0x6c,0x27,0xe0,0xcc,0xe7,0x4b,0x10,0xcd, - 0xa9,0x17,0x90,0xce,0xa2,0x43,0x10,0xcf,0x92,0x34,0x10,0xd0,0x4f,0xe1,0xe0,0xd0, - 0x89,0xf1,0xf0,0xd1,0x72,0x16,0x10,0xd2,0x4e,0x40,0x90,0xb,0xbb,0x39,0x0,0xc, - 0xab,0x1b,0xf0,0xd,0xa4,0x63,0x90,0xe,0x8b,0x1a,0x10,0xf,0x84,0x45,0x90,0x10, - 0x74,0x36,0x90,0x11,0x64,0x27,0x90,0x12,0x54,0x18,0x90,0x13,0x4d,0x44,0x10,0x14, - 0x33,0xfa,0x90,0x15,0x23,0xeb,0x90,0x16,0x13,0xdc,0x90,0x17,0x3,0xcd,0x90,0x17, - 0xf3,0xbe,0x90,0x18,0xe3,0xaf,0x90,0x19,0xd3,0xa0,0x90,0x1a,0xc3,0x91,0x90,0x1b, - 0xbc,0xbd,0x10,0x1c,0xac,0xae,0x10,0x1d,0x9c,0x9f,0x10,0x1e,0x8c,0x90,0x10,0x1f, - 0x7c,0x81,0x10,0x20,0x6c,0x72,0x10,0x21,0x5c,0x63,0x10,0x22,0x4c,0x54,0x10,0x23, - 0x3c,0x45,0x10,0x24,0x2c,0x36,0x10,0x25,0x1c,0x27,0x10,0x26,0xc,0x18,0x10,0x27, - 0x5,0x43,0x90,0x27,0xf5,0x34,0x90,0x28,0xe5,0x25,0x90,0x29,0xd5,0x16,0x90,0x2a, - 0xc5,0x7,0x90,0x2b,0xb4,0xf8,0x90,0x2c,0xa4,0xe9,0x90,0x2d,0x94,0xda,0x90,0x2e, - 0x84,0xcb,0x90,0x2f,0x74,0xbc,0x90,0x30,0x64,0xad,0x90,0x31,0x5d,0xd9,0x10,0x32, - 0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34,0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36, - 0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39, - 0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b,0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d, - 0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f,0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41, - 0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43,0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45, - 0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49, - 0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c, - 0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e,0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50, - 0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54, - 0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56,0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58, - 0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59,0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b, - 0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d,0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f, - 0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61,0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63, - 0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65,0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67, - 0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68,0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a, - 0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c,0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e, - 0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70,0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72, - 0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74,0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76, - 0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79, - 0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d, - 0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x1,0x5,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x4,0x8,0x6, - 0x7,0x6,0x7,0x9,0x4,0x9,0xa,0x8,0xa,0xb,0xc,0xb,0xc,0xb,0xc,0xb, - 0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb, - 0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb, - 0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb, - 0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb, - 0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb, - 0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb, - 0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb, - 0xc,0xb,0xc,0x0,0x0,0x2,0x31,0x0,0x0,0x0,0x0,0x2,0x31,0x0,0x4,0x0, - 0x0,0xe,0x10,0x1,0x8,0x0,0x0,0x0,0x0,0x0,0xd,0x0,0x0,0xe,0x10,0x1, - 0x8,0x0,0x0,0x0,0x0,0x0,0xd,0x0,0x0,0xe,0x10,0x0,0x11,0x0,0x0,0x1c, - 0x20,0x1,0x15,0x0,0x0,0x1c,0x20,0x1,0x15,0x0,0x0,0x1c,0x20,0x1,0x1a,0x0, - 0x0,0xe,0x10,0x0,0x11,0x0,0x0,0x1c,0x20,0x1,0x15,0x0,0x0,0xe,0x10,0x0, - 0x11,0x4c,0x4d,0x54,0x0,0x50,0x4d,0x54,0x0,0x57,0x45,0x53,0x54,0x0,0x57,0x45, - 0x54,0x0,0x43,0x45,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x57,0x45,0x4d,0x54,0x0, - 0x0,0x0,0x1,0x1,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x54,0x5a,0x69,0x66,0x32,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xd,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb9,0x0,0x0, - 0x0,0xd,0x0,0x0,0x0,0x1f,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff, - 0xff,0xff,0x6b,0xc8,0x4a,0x8b,0xff,0xff,0xff,0xff,0x91,0x60,0x50,0x8b,0xff,0xff, - 0xff,0xff,0x9b,0x47,0x78,0xf0,0xff,0xff,0xff,0xff,0x9b,0xd7,0x2c,0x70,0xff,0xff, - 0xff,0xff,0x9c,0xbc,0x91,0x70,0xff,0xff,0xff,0xff,0x9d,0xc0,0x48,0xf0,0xff,0xff, - 0xff,0xff,0x9e,0x89,0xfe,0x70,0xff,0xff,0xff,0xff,0x9f,0xa0,0x2a,0xf0,0xff,0xff, - 0xff,0xff,0xa0,0x60,0xa5,0xf0,0xff,0xff,0xff,0xff,0xa1,0x80,0xc,0xf0,0xff,0xff, - 0xff,0xff,0xa2,0x2e,0x12,0xf0,0xff,0xff,0xff,0xff,0xa3,0x7a,0x4c,0xf0,0xff,0xff, - 0xff,0xff,0xa4,0x35,0x81,0xf0,0xff,0xff,0xff,0xff,0xa5,0x5e,0x23,0x70,0xff,0xff, - 0xff,0xff,0xa6,0x25,0x35,0xf0,0xff,0xff,0xff,0xff,0xa7,0x27,0x9b,0xf0,0xff,0xff, - 0xff,0xff,0xa8,0x58,0x26,0x70,0xff,0xff,0xff,0xff,0xa9,0x7,0x7d,0xf0,0xff,0xff, - 0xff,0xff,0xa9,0xee,0x34,0x70,0xff,0xff,0xff,0xff,0xaa,0xe7,0x5f,0xf0,0xff,0xff, - 0xff,0xff,0xab,0xd7,0x50,0xf0,0xff,0xff,0xff,0xff,0xac,0xc7,0x41,0xf0,0xff,0xff, - 0xff,0xff,0xad,0xc9,0xa7,0xf0,0xff,0xff,0xff,0xff,0xae,0xa7,0x23,0xf0,0xff,0xff, - 0xff,0xff,0xaf,0xa0,0x4f,0x70,0xff,0xff,0xff,0xff,0xb0,0x87,0x5,0xf0,0xff,0xff, - 0xff,0xff,0xb1,0x89,0x6b,0xf0,0xff,0xff,0xff,0xff,0xb2,0x70,0x22,0x70,0xff,0xff, - 0xff,0xff,0xb3,0x72,0x88,0x70,0xff,0xff,0xff,0xff,0xb4,0x50,0x4,0x70,0xff,0xff, - 0xff,0xff,0xb5,0x49,0x2f,0xf0,0xff,0xff,0xff,0xff,0xb6,0x2f,0xe6,0x70,0xff,0xff, - 0xff,0xff,0xb7,0x32,0x4c,0x70,0xff,0xff,0xff,0xff,0xb8,0xf,0xc8,0x70,0xff,0xff, - 0xff,0xff,0xb8,0xff,0xb9,0x70,0xff,0xff,0xff,0xff,0xb9,0xef,0xaa,0x70,0xff,0xff, - 0xff,0xff,0xba,0xd6,0x60,0xf0,0xff,0xff,0xff,0xff,0xbb,0xd8,0xc6,0xf0,0xff,0xff, - 0xff,0xff,0xbc,0xc8,0xb7,0xf0,0xff,0xff,0xff,0xff,0xbd,0xb8,0xa8,0xf0,0xff,0xff, - 0xff,0xff,0xbe,0x9f,0x5f,0x70,0xff,0xff,0xff,0xff,0xbf,0x98,0x8a,0xf0,0xff,0xff, - 0xff,0xff,0xc0,0x9a,0xf0,0xf0,0xff,0xff,0xff,0xff,0xc1,0x78,0x6c,0xf0,0xff,0xff, - 0xff,0xff,0xc2,0x68,0x5d,0xf0,0xff,0xff,0xff,0xff,0xc3,0x58,0x4e,0xf0,0xff,0xff, - 0xff,0xff,0xc4,0x3f,0x5,0x70,0xff,0xff,0xff,0xff,0xc5,0x38,0x30,0xf0,0xff,0xff, - 0xff,0xff,0xc6,0x3a,0x96,0xf0,0xff,0xff,0xff,0xff,0xc7,0x58,0xac,0x70,0xff,0xff, - 0xff,0xff,0xc7,0xda,0x9,0xa0,0xff,0xff,0xff,0xff,0xc8,0x6c,0x27,0xe0,0xff,0xff, - 0xff,0xff,0xcc,0xe7,0x4b,0x10,0xff,0xff,0xff,0xff,0xcd,0xa9,0x17,0x90,0xff,0xff, - 0xff,0xff,0xce,0xa2,0x43,0x10,0xff,0xff,0xff,0xff,0xcf,0x92,0x34,0x10,0xff,0xff, - 0xff,0xff,0xd0,0x4f,0xe1,0xe0,0xff,0xff,0xff,0xff,0xd0,0x89,0xf1,0xf0,0xff,0xff, - 0xff,0xff,0xd1,0x72,0x16,0x10,0xff,0xff,0xff,0xff,0xd2,0x4e,0x40,0x90,0x0,0x0, - 0x0,0x0,0xb,0xbb,0x39,0x0,0x0,0x0,0x0,0x0,0xc,0xab,0x1b,0xf0,0x0,0x0, - 0x0,0x0,0xd,0xa4,0x63,0x90,0x0,0x0,0x0,0x0,0xe,0x8b,0x1a,0x10,0x0,0x0, - 0x0,0x0,0xf,0x84,0x45,0x90,0x0,0x0,0x0,0x0,0x10,0x74,0x36,0x90,0x0,0x0, - 0x0,0x0,0x11,0x64,0x27,0x90,0x0,0x0,0x0,0x0,0x12,0x54,0x18,0x90,0x0,0x0, - 0x0,0x0,0x13,0x4d,0x44,0x10,0x0,0x0,0x0,0x0,0x14,0x33,0xfa,0x90,0x0,0x0, - 0x0,0x0,0x15,0x23,0xeb,0x90,0x0,0x0,0x0,0x0,0x16,0x13,0xdc,0x90,0x0,0x0, - 0x0,0x0,0x17,0x3,0xcd,0x90,0x0,0x0,0x0,0x0,0x17,0xf3,0xbe,0x90,0x0,0x0, - 0x0,0x0,0x18,0xe3,0xaf,0x90,0x0,0x0,0x0,0x0,0x19,0xd3,0xa0,0x90,0x0,0x0, - 0x0,0x0,0x1a,0xc3,0x91,0x90,0x0,0x0,0x0,0x0,0x1b,0xbc,0xbd,0x10,0x0,0x0, - 0x0,0x0,0x1c,0xac,0xae,0x10,0x0,0x0,0x0,0x0,0x1d,0x9c,0x9f,0x10,0x0,0x0, - 0x0,0x0,0x1e,0x8c,0x90,0x10,0x0,0x0,0x0,0x0,0x1f,0x7c,0x81,0x10,0x0,0x0, - 0x0,0x0,0x20,0x6c,0x72,0x10,0x0,0x0,0x0,0x0,0x21,0x5c,0x63,0x10,0x0,0x0, - 0x0,0x0,0x22,0x4c,0x54,0x10,0x0,0x0,0x0,0x0,0x23,0x3c,0x45,0x10,0x0,0x0, - 0x0,0x0,0x24,0x2c,0x36,0x10,0x0,0x0,0x0,0x0,0x25,0x1c,0x27,0x10,0x0,0x0, - 0x0,0x0,0x26,0xc,0x18,0x10,0x0,0x0,0x0,0x0,0x27,0x5,0x43,0x90,0x0,0x0, - 0x0,0x0,0x27,0xf5,0x34,0x90,0x0,0x0,0x0,0x0,0x28,0xe5,0x25,0x90,0x0,0x0, - 0x0,0x0,0x29,0xd5,0x16,0x90,0x0,0x0,0x0,0x0,0x2a,0xc5,0x7,0x90,0x0,0x0, - 0x0,0x0,0x2b,0xb4,0xf8,0x90,0x0,0x0,0x0,0x0,0x2c,0xa4,0xe9,0x90,0x0,0x0, - 0x0,0x0,0x2d,0x94,0xda,0x90,0x0,0x0,0x0,0x0,0x2e,0x84,0xcb,0x90,0x0,0x0, - 0x0,0x0,0x2f,0x74,0xbc,0x90,0x0,0x0,0x0,0x0,0x30,0x64,0xad,0x90,0x0,0x0, - 0x0,0x0,0x31,0x5d,0xd9,0x10,0x0,0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0, - 0x0,0x0,0x33,0x3d,0xbb,0x10,0x0,0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0, - 0x0,0x0,0x35,0x1d,0x9d,0x10,0x0,0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0, - 0x0,0x0,0x36,0xfd,0x7f,0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0, - 0x0,0x0,0x38,0xdd,0x61,0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0, - 0x0,0x0,0x3a,0xbd,0x43,0x10,0x0,0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0, - 0x0,0x0,0x3c,0xa6,0x5f,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0, - 0x0,0x0,0x3e,0x86,0x41,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0, - 0x0,0x0,0x40,0x66,0x23,0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0, - 0x0,0x0,0x42,0x46,0x5,0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0, - 0x0,0x0,0x44,0x25,0xe7,0x90,0x0,0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0, - 0x0,0x0,0x46,0x5,0xc9,0x90,0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0, - 0x0,0x0,0x47,0xee,0xe6,0x10,0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0, - 0x0,0x0,0x49,0xce,0xc8,0x10,0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0, - 0x0,0x0,0x4b,0xae,0xaa,0x10,0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0, - 0x0,0x0,0x4d,0x8e,0x8c,0x10,0x0,0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0, - 0x0,0x0,0x4f,0x6e,0x6e,0x10,0x0,0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0, - 0x0,0x0,0x51,0x57,0x8a,0x90,0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0, - 0x0,0x0,0x53,0x37,0x6c,0x90,0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0, - 0x0,0x0,0x55,0x17,0x4e,0x90,0x0,0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0, - 0x0,0x0,0x56,0xf7,0x30,0x90,0x0,0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0, - 0x0,0x0,0x58,0xd7,0x12,0x90,0x0,0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0, - 0x0,0x0,0x5a,0xb6,0xf4,0x90,0x0,0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0, - 0x0,0x0,0x5c,0xa0,0x11,0x10,0x0,0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0, - 0x0,0x0,0x5e,0x7f,0xf3,0x10,0x0,0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0, - 0x0,0x0,0x60,0x5f,0xd5,0x10,0x0,0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0, - 0x0,0x0,0x62,0x3f,0xb7,0x10,0x0,0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0, - 0x0,0x0,0x64,0x1f,0x99,0x10,0x0,0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0, - 0x0,0x0,0x66,0x8,0xb5,0x90,0x0,0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0, - 0x0,0x0,0x67,0xe8,0x97,0x90,0x0,0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0, - 0x0,0x0,0x69,0xc8,0x79,0x90,0x0,0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0, - 0x0,0x0,0x6b,0xa8,0x5b,0x90,0x0,0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0, - 0x0,0x0,0x6d,0x88,0x3d,0x90,0x0,0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0, - 0x0,0x0,0x6f,0x68,0x1f,0x90,0x0,0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0, - 0x0,0x0,0x71,0x51,0x3c,0x10,0x0,0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0, - 0x0,0x0,0x73,0x31,0x1e,0x10,0x0,0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0, - 0x0,0x0,0x75,0x11,0x0,0x10,0x0,0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0, - 0x0,0x0,0x76,0xf0,0xe2,0x10,0x0,0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0, - 0x0,0x0,0x78,0xd0,0xc4,0x10,0x0,0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0, - 0x0,0x0,0x7a,0xb0,0xa6,0x10,0x0,0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0, - 0x0,0x0,0x7c,0x99,0xc2,0x90,0x0,0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0, - 0x0,0x0,0x7e,0x79,0xa4,0x90,0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x1, - 0x5,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x4,0x8,0x6,0x7,0x6,0x7,0x9,0x4,0x9,0xa,0x8,0xa,0xb,0xc,0xb, - 0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb, - 0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb, - 0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb, - 0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb, - 0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb, - 0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb, - 0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb, - 0xc,0xb,0xc,0xb,0xc,0xb,0xc,0x0,0x0,0x2,0x31,0x0,0x0,0x0,0x0,0x2, - 0x31,0x0,0x4,0x0,0x0,0xe,0x10,0x1,0x8,0x0,0x0,0x0,0x0,0x0,0xd,0x0, - 0x0,0xe,0x10,0x1,0x8,0x0,0x0,0x0,0x0,0x0,0xd,0x0,0x0,0xe,0x10,0x0, - 0x11,0x0,0x0,0x1c,0x20,0x1,0x15,0x0,0x0,0x1c,0x20,0x1,0x15,0x0,0x0,0x1c, - 0x20,0x1,0x1a,0x0,0x0,0xe,0x10,0x0,0x11,0x0,0x0,0x1c,0x20,0x1,0x15,0x0, - 0x0,0xe,0x10,0x0,0x11,0x4c,0x4d,0x54,0x0,0x50,0x4d,0x54,0x0,0x57,0x45,0x53, - 0x54,0x0,0x57,0x45,0x54,0x0,0x43,0x45,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x57, - 0x45,0x4d,0x54,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x1, - 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0xa,0x43, - 0x45,0x54,0x2d,0x31,0x43,0x45,0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2c, - 0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30,0x2f,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Tiraspol - 0x0,0x0,0x9,0x8d, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x8e,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x26,0x80,0x0,0x0,0x0,0x9e, - 0x6b,0x9f,0xc,0xb7,0xb0,0xd2,0x8,0xb9,0x3e,0xf3,0x60,0xb9,0xef,0x9c,0x60,0xba, - 0xdf,0x8d,0x60,0xbb,0xcf,0x7e,0x60,0xbc,0xc8,0xa9,0xe0,0xbd,0xb8,0x9a,0xe0,0xbe, - 0xa8,0x8b,0xe0,0xbf,0x98,0x7c,0xe0,0xc0,0x88,0x6d,0xe0,0xc1,0x78,0x5e,0xe0,0xc2, - 0x68,0x4f,0xe0,0xc3,0x58,0x40,0xe0,0xc4,0x48,0x31,0xe0,0xc5,0x38,0x22,0xe0,0xc6, - 0x28,0x13,0xe0,0xc7,0x18,0x4,0xe0,0xc8,0xbc,0x93,0x60,0xca,0x77,0x7d,0x50,0xcc, - 0xe7,0x4b,0x10,0xcd,0xa9,0x17,0x90,0xce,0xa2,0x43,0x10,0xcf,0x92,0x34,0x10,0xd0, - 0x4e,0x90,0x60,0x15,0x27,0xa7,0xd0,0x16,0x18,0xdc,0x40,0x17,0x8,0xdb,0x50,0x17, - 0xfa,0xf,0xc0,0x18,0xea,0xe,0xd0,0x19,0xdb,0x43,0x40,0x1a,0xcc,0x93,0xd0,0x1b, - 0xbc,0xa0,0xf0,0x1c,0xac,0x91,0xf0,0x1d,0x9c,0x82,0xf0,0x1e,0x8c,0x73,0xf0,0x1f, - 0x7c,0x64,0xf0,0x20,0x6c,0x55,0xf0,0x21,0x5c,0x46,0xf0,0x22,0x4c,0x37,0xf0,0x23, - 0x3c,0x28,0xf0,0x24,0x2c,0x19,0xf0,0x25,0x1c,0xa,0xf0,0x26,0xb,0xfb,0xf0,0x26, - 0x43,0x4c,0xe0,0x27,0x5,0x35,0x80,0x27,0xf5,0x26,0x80,0x28,0xe5,0x17,0x80,0x29, - 0x60,0xe8,0x60,0x29,0xd4,0xec,0x60,0x2a,0xc4,0xcf,0x50,0x2b,0xb4,0xce,0x60,0x2c, - 0xa4,0xb1,0x50,0x2d,0x94,0xb0,0x60,0x2e,0x84,0x93,0x50,0x2f,0x74,0x92,0x60,0x30, - 0x64,0x75,0x50,0x31,0x5d,0xae,0xe0,0x32,0x72,0x7b,0xd0,0x33,0x3d,0xad,0x0,0x34, - 0x52,0x88,0x0,0x35,0x1d,0x8f,0x0,0x36,0x32,0x6a,0x0,0x36,0xfd,0x71,0x0,0x38, - 0x1b,0x86,0x80,0x38,0xdd,0x53,0x0,0x39,0xfb,0x68,0x80,0x3a,0xbd,0x35,0x0,0x3b, - 0xdb,0x4a,0x80,0x3c,0xa6,0x51,0x80,0x3d,0xbb,0x2c,0x80,0x3e,0x86,0x33,0x80,0x3f, - 0x9b,0xe,0x80,0x40,0x66,0x15,0x80,0x41,0x84,0x2b,0x0,0x42,0x45,0xf7,0x80,0x43, - 0x64,0xd,0x0,0x44,0x25,0xd9,0x80,0x45,0x43,0xef,0x0,0x46,0x5,0xbb,0x80,0x47, - 0x23,0xd1,0x0,0x47,0xee,0xd8,0x0,0x49,0x3,0xb3,0x0,0x49,0xce,0xba,0x0,0x4a, - 0xe3,0x95,0x0,0x4b,0xae,0x9c,0x0,0x4c,0xcc,0xb1,0x80,0x4d,0x8e,0x7e,0x0,0x4e, - 0xac,0x93,0x80,0x4f,0x6e,0x60,0x0,0x50,0x8c,0x75,0x80,0x51,0x57,0x7c,0x80,0x52, - 0x6c,0x57,0x80,0x53,0x37,0x5e,0x80,0x54,0x4c,0x39,0x80,0x55,0x17,0x40,0x80,0x56, - 0x2c,0x1b,0x80,0x56,0xf7,0x22,0x80,0x58,0x15,0x38,0x0,0x58,0xd7,0x4,0x80,0x59, - 0xf5,0x1a,0x0,0x5a,0xb6,0xe6,0x80,0x5b,0xd4,0xfc,0x0,0x5c,0xa0,0x3,0x0,0x5d, - 0xb4,0xde,0x0,0x5e,0x7f,0xe5,0x0,0x5f,0x94,0xc0,0x0,0x60,0x5f,0xc7,0x0,0x61, - 0x7d,0xdc,0x80,0x62,0x3f,0xa9,0x0,0x63,0x5d,0xbe,0x80,0x64,0x1f,0x8b,0x0,0x65, - 0x3d,0xa0,0x80,0x66,0x8,0xa7,0x80,0x67,0x1d,0x82,0x80,0x67,0xe8,0x89,0x80,0x68, - 0xfd,0x64,0x80,0x69,0xc8,0x6b,0x80,0x6a,0xdd,0x46,0x80,0x6b,0xa8,0x4d,0x80,0x6c, - 0xc6,0x63,0x0,0x6d,0x88,0x2f,0x80,0x6e,0xa6,0x45,0x0,0x6f,0x68,0x11,0x80,0x70, - 0x86,0x27,0x0,0x71,0x51,0x2e,0x0,0x72,0x66,0x9,0x0,0x73,0x31,0x10,0x0,0x74, - 0x45,0xeb,0x0,0x75,0x10,0xf2,0x0,0x76,0x2f,0x7,0x80,0x76,0xf0,0xd4,0x0,0x78, - 0xe,0xe9,0x80,0x78,0xd0,0xb6,0x0,0x79,0xee,0xcb,0x80,0x7a,0xb0,0x98,0x0,0x7b, - 0xce,0xad,0x80,0x7c,0x99,0xb4,0x80,0x7d,0xae,0x8f,0x80,0x7e,0x79,0x96,0x80,0x7f, - 0x8e,0x71,0x80,0x1,0x2,0x5,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x6,0x9,0x7,0x8,0x7,0x8,0xb,0xa,0xb,0xa, - 0xb,0xa,0xb,0xa,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd, - 0x6,0x4,0x3,0x4,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x0,0x0,0x1b,0x8,0x0,0x0,0x0,0x0,0x1a,0xf4,0x0,0x4,0x0,0x0,0x18, - 0x78,0x0,0x8,0x0,0x0,0x2a,0x30,0x1,0xc,0x0,0x0,0x1c,0x20,0x0,0x11,0x0, - 0x0,0x1c,0x20,0x0,0x11,0x0,0x0,0x2a,0x30,0x1,0xc,0x0,0x0,0xe,0x10,0x0, - 0x15,0x0,0x0,0x1c,0x20,0x1,0x19,0x0,0x0,0x1c,0x20,0x1,0x19,0x0,0x0,0x38, - 0x40,0x1,0x1e,0x0,0x0,0x2a,0x30,0x0,0x22,0x0,0x0,0x2a,0x30,0x0,0x22,0x0, - 0x0,0x38,0x40,0x1,0x1e,0x0,0x0,0x2a,0x30,0x1,0xc,0x0,0x0,0x1c,0x20,0x0, - 0x11,0x4c,0x4d,0x54,0x0,0x43,0x4d,0x54,0x0,0x42,0x4d,0x54,0x0,0x45,0x45,0x53, - 0x54,0x0,0x45,0x45,0x54,0x0,0x43,0x45,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x4d, - 0x53,0x44,0x0,0x4d,0x53,0x4b,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x1,0x1, - 0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x10,0x0, - 0x0,0x0,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0x0,0x0,0x0,0x10,0x0, - 0x0,0x0,0x26,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x56, - 0xb6,0xc8,0xf8,0xff,0xff,0xff,0xff,0x9e,0x6b,0x9f,0xc,0xff,0xff,0xff,0xff,0xb7, - 0xb0,0xd2,0x8,0xff,0xff,0xff,0xff,0xb9,0x3e,0xf3,0x60,0xff,0xff,0xff,0xff,0xb9, - 0xef,0x9c,0x60,0xff,0xff,0xff,0xff,0xba,0xdf,0x8d,0x60,0xff,0xff,0xff,0xff,0xbb, - 0xcf,0x7e,0x60,0xff,0xff,0xff,0xff,0xbc,0xc8,0xa9,0xe0,0xff,0xff,0xff,0xff,0xbd, - 0xb8,0x9a,0xe0,0xff,0xff,0xff,0xff,0xbe,0xa8,0x8b,0xe0,0xff,0xff,0xff,0xff,0xbf, - 0x98,0x7c,0xe0,0xff,0xff,0xff,0xff,0xc0,0x88,0x6d,0xe0,0xff,0xff,0xff,0xff,0xc1, - 0x78,0x5e,0xe0,0xff,0xff,0xff,0xff,0xc2,0x68,0x4f,0xe0,0xff,0xff,0xff,0xff,0xc3, - 0x58,0x40,0xe0,0xff,0xff,0xff,0xff,0xc4,0x48,0x31,0xe0,0xff,0xff,0xff,0xff,0xc5, - 0x38,0x22,0xe0,0xff,0xff,0xff,0xff,0xc6,0x28,0x13,0xe0,0xff,0xff,0xff,0xff,0xc7, - 0x18,0x4,0xe0,0xff,0xff,0xff,0xff,0xc8,0xbc,0x93,0x60,0xff,0xff,0xff,0xff,0xca, - 0x77,0x7d,0x50,0xff,0xff,0xff,0xff,0xcc,0xe7,0x4b,0x10,0xff,0xff,0xff,0xff,0xcd, - 0xa9,0x17,0x90,0xff,0xff,0xff,0xff,0xce,0xa2,0x43,0x10,0xff,0xff,0xff,0xff,0xcf, - 0x92,0x34,0x10,0xff,0xff,0xff,0xff,0xd0,0x4e,0x90,0x60,0x0,0x0,0x0,0x0,0x15, - 0x27,0xa7,0xd0,0x0,0x0,0x0,0x0,0x16,0x18,0xdc,0x40,0x0,0x0,0x0,0x0,0x17, - 0x8,0xdb,0x50,0x0,0x0,0x0,0x0,0x17,0xfa,0xf,0xc0,0x0,0x0,0x0,0x0,0x18, - 0xea,0xe,0xd0,0x0,0x0,0x0,0x0,0x19,0xdb,0x43,0x40,0x0,0x0,0x0,0x0,0x1a, - 0xcc,0x93,0xd0,0x0,0x0,0x0,0x0,0x1b,0xbc,0xa0,0xf0,0x0,0x0,0x0,0x0,0x1c, - 0xac,0x91,0xf0,0x0,0x0,0x0,0x0,0x1d,0x9c,0x82,0xf0,0x0,0x0,0x0,0x0,0x1e, - 0x8c,0x73,0xf0,0x0,0x0,0x0,0x0,0x1f,0x7c,0x64,0xf0,0x0,0x0,0x0,0x0,0x20, - 0x6c,0x55,0xf0,0x0,0x0,0x0,0x0,0x21,0x5c,0x46,0xf0,0x0,0x0,0x0,0x0,0x22, - 0x4c,0x37,0xf0,0x0,0x0,0x0,0x0,0x23,0x3c,0x28,0xf0,0x0,0x0,0x0,0x0,0x24, - 0x2c,0x19,0xf0,0x0,0x0,0x0,0x0,0x25,0x1c,0xa,0xf0,0x0,0x0,0x0,0x0,0x26, - 0xb,0xfb,0xf0,0x0,0x0,0x0,0x0,0x26,0x43,0x4c,0xe0,0x0,0x0,0x0,0x0,0x27, - 0x5,0x35,0x80,0x0,0x0,0x0,0x0,0x27,0xf5,0x26,0x80,0x0,0x0,0x0,0x0,0x28, - 0xe5,0x17,0x80,0x0,0x0,0x0,0x0,0x29,0x60,0xe8,0x60,0x0,0x0,0x0,0x0,0x29, - 0xd4,0xec,0x60,0x0,0x0,0x0,0x0,0x2a,0xc4,0xcf,0x50,0x0,0x0,0x0,0x0,0x2b, - 0xb4,0xce,0x60,0x0,0x0,0x0,0x0,0x2c,0xa4,0xb1,0x50,0x0,0x0,0x0,0x0,0x2d, - 0x94,0xb0,0x60,0x0,0x0,0x0,0x0,0x2e,0x84,0x93,0x50,0x0,0x0,0x0,0x0,0x2f, - 0x74,0x92,0x60,0x0,0x0,0x0,0x0,0x30,0x64,0x75,0x50,0x0,0x0,0x0,0x0,0x31, - 0x5d,0xae,0xe0,0x0,0x0,0x0,0x0,0x32,0x72,0x7b,0xd0,0x0,0x0,0x0,0x0,0x33, - 0x3d,0xad,0x0,0x0,0x0,0x0,0x0,0x34,0x52,0x88,0x0,0x0,0x0,0x0,0x0,0x35, - 0x1d,0x8f,0x0,0x0,0x0,0x0,0x0,0x36,0x32,0x6a,0x0,0x0,0x0,0x0,0x0,0x36, - 0xfd,0x71,0x0,0x0,0x0,0x0,0x0,0x38,0x1b,0x86,0x80,0x0,0x0,0x0,0x0,0x38, - 0xdd,0x53,0x0,0x0,0x0,0x0,0x0,0x39,0xfb,0x68,0x80,0x0,0x0,0x0,0x0,0x3a, - 0xbd,0x35,0x0,0x0,0x0,0x0,0x0,0x3b,0xdb,0x4a,0x80,0x0,0x0,0x0,0x0,0x3c, - 0xa6,0x51,0x80,0x0,0x0,0x0,0x0,0x3d,0xbb,0x2c,0x80,0x0,0x0,0x0,0x0,0x3e, - 0x86,0x33,0x80,0x0,0x0,0x0,0x0,0x3f,0x9b,0xe,0x80,0x0,0x0,0x0,0x0,0x40, - 0x66,0x15,0x80,0x0,0x0,0x0,0x0,0x41,0x84,0x2b,0x0,0x0,0x0,0x0,0x0,0x42, - 0x45,0xf7,0x80,0x0,0x0,0x0,0x0,0x43,0x64,0xd,0x0,0x0,0x0,0x0,0x0,0x44, - 0x25,0xd9,0x80,0x0,0x0,0x0,0x0,0x45,0x43,0xef,0x0,0x0,0x0,0x0,0x0,0x46, - 0x5,0xbb,0x80,0x0,0x0,0x0,0x0,0x47,0x23,0xd1,0x0,0x0,0x0,0x0,0x0,0x47, - 0xee,0xd8,0x0,0x0,0x0,0x0,0x0,0x49,0x3,0xb3,0x0,0x0,0x0,0x0,0x0,0x49, - 0xce,0xba,0x0,0x0,0x0,0x0,0x0,0x4a,0xe3,0x95,0x0,0x0,0x0,0x0,0x0,0x4b, - 0xae,0x9c,0x0,0x0,0x0,0x0,0x0,0x4c,0xcc,0xb1,0x80,0x0,0x0,0x0,0x0,0x4d, - 0x8e,0x7e,0x0,0x0,0x0,0x0,0x0,0x4e,0xac,0x93,0x80,0x0,0x0,0x0,0x0,0x4f, - 0x6e,0x60,0x0,0x0,0x0,0x0,0x0,0x50,0x8c,0x75,0x80,0x0,0x0,0x0,0x0,0x51, - 0x57,0x7c,0x80,0x0,0x0,0x0,0x0,0x52,0x6c,0x57,0x80,0x0,0x0,0x0,0x0,0x53, - 0x37,0x5e,0x80,0x0,0x0,0x0,0x0,0x54,0x4c,0x39,0x80,0x0,0x0,0x0,0x0,0x55, - 0x17,0x40,0x80,0x0,0x0,0x0,0x0,0x56,0x2c,0x1b,0x80,0x0,0x0,0x0,0x0,0x56, - 0xf7,0x22,0x80,0x0,0x0,0x0,0x0,0x58,0x15,0x38,0x0,0x0,0x0,0x0,0x0,0x58, - 0xd7,0x4,0x80,0x0,0x0,0x0,0x0,0x59,0xf5,0x1a,0x0,0x0,0x0,0x0,0x0,0x5a, - 0xb6,0xe6,0x80,0x0,0x0,0x0,0x0,0x5b,0xd4,0xfc,0x0,0x0,0x0,0x0,0x0,0x5c, - 0xa0,0x3,0x0,0x0,0x0,0x0,0x0,0x5d,0xb4,0xde,0x0,0x0,0x0,0x0,0x0,0x5e, - 0x7f,0xe5,0x0,0x0,0x0,0x0,0x0,0x5f,0x94,0xc0,0x0,0x0,0x0,0x0,0x0,0x60, - 0x5f,0xc7,0x0,0x0,0x0,0x0,0x0,0x61,0x7d,0xdc,0x80,0x0,0x0,0x0,0x0,0x62, - 0x3f,0xa9,0x0,0x0,0x0,0x0,0x0,0x63,0x5d,0xbe,0x80,0x0,0x0,0x0,0x0,0x64, - 0x1f,0x8b,0x0,0x0,0x0,0x0,0x0,0x65,0x3d,0xa0,0x80,0x0,0x0,0x0,0x0,0x66, - 0x8,0xa7,0x80,0x0,0x0,0x0,0x0,0x67,0x1d,0x82,0x80,0x0,0x0,0x0,0x0,0x67, - 0xe8,0x89,0x80,0x0,0x0,0x0,0x0,0x68,0xfd,0x64,0x80,0x0,0x0,0x0,0x0,0x69, - 0xc8,0x6b,0x80,0x0,0x0,0x0,0x0,0x6a,0xdd,0x46,0x80,0x0,0x0,0x0,0x0,0x6b, - 0xa8,0x4d,0x80,0x0,0x0,0x0,0x0,0x6c,0xc6,0x63,0x0,0x0,0x0,0x0,0x0,0x6d, - 0x88,0x2f,0x80,0x0,0x0,0x0,0x0,0x6e,0xa6,0x45,0x0,0x0,0x0,0x0,0x0,0x6f, - 0x68,0x11,0x80,0x0,0x0,0x0,0x0,0x70,0x86,0x27,0x0,0x0,0x0,0x0,0x0,0x71, - 0x51,0x2e,0x0,0x0,0x0,0x0,0x0,0x72,0x66,0x9,0x0,0x0,0x0,0x0,0x0,0x73, - 0x31,0x10,0x0,0x0,0x0,0x0,0x0,0x74,0x45,0xeb,0x0,0x0,0x0,0x0,0x0,0x75, - 0x10,0xf2,0x0,0x0,0x0,0x0,0x0,0x76,0x2f,0x7,0x80,0x0,0x0,0x0,0x0,0x76, - 0xf0,0xd4,0x0,0x0,0x0,0x0,0x0,0x78,0xe,0xe9,0x80,0x0,0x0,0x0,0x0,0x78, - 0xd0,0xb6,0x0,0x0,0x0,0x0,0x0,0x79,0xee,0xcb,0x80,0x0,0x0,0x0,0x0,0x7a, - 0xb0,0x98,0x0,0x0,0x0,0x0,0x0,0x7b,0xce,0xad,0x80,0x0,0x0,0x0,0x0,0x7c, - 0x99,0xb4,0x80,0x0,0x0,0x0,0x0,0x7d,0xae,0x8f,0x80,0x0,0x0,0x0,0x0,0x7e, - 0x79,0x96,0x80,0x0,0x0,0x0,0x0,0x7f,0x8e,0x71,0x80,0x0,0x1,0x2,0x5,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x6, - 0x9,0x7,0x8,0x7,0x8,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xc,0xd,0xc, - 0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0x6,0x4,0x3,0x4,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x0,0x0,0x1b,0x8,0x0,0x0, - 0x0,0x0,0x1a,0xf4,0x0,0x4,0x0,0x0,0x18,0x78,0x0,0x8,0x0,0x0,0x2a,0x30, - 0x1,0xc,0x0,0x0,0x1c,0x20,0x0,0x11,0x0,0x0,0x1c,0x20,0x0,0x11,0x0,0x0, - 0x2a,0x30,0x1,0xc,0x0,0x0,0xe,0x10,0x0,0x15,0x0,0x0,0x1c,0x20,0x1,0x19, - 0x0,0x0,0x1c,0x20,0x1,0x19,0x0,0x0,0x38,0x40,0x1,0x1e,0x0,0x0,0x2a,0x30, - 0x0,0x22,0x0,0x0,0x2a,0x30,0x0,0x22,0x0,0x0,0x38,0x40,0x1,0x1e,0x0,0x0, - 0x2a,0x30,0x1,0xc,0x0,0x0,0x1c,0x20,0x0,0x11,0x4c,0x4d,0x54,0x0,0x43,0x4d, - 0x54,0x0,0x42,0x4d,0x54,0x0,0x45,0x45,0x53,0x54,0x0,0x45,0x45,0x54,0x0,0x43, - 0x45,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x4d,0x53,0x44,0x0,0x4d,0x53,0x4b,0x0, - 0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x1,0x1,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0xa,0x45,0x45,0x54,0x2d,0x32,0x45,0x45,0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e, - 0x30,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30,0x2f,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Monaco - 0x0,0x0,0xb,0x89, + 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x82, + 0x46,0xc5,0xf4,0x0,0x1,0x0,0x0,0x1e,0x8c,0x0,0x0,0x0,0x0,0x1c,0x20,0x0, + 0x4,0x4c,0x4d,0x54,0x0,0x43,0x41,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, + 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0x82,0x46,0xc5,0xf4,0x0,0x1,0x0,0x0,0x1e,0x8c,0x0, + 0x0,0x0,0x0,0x1c,0x20,0x0,0x4,0x4c,0x4d,0x54,0x0,0x43,0x41,0x54,0x0,0x0, + 0x0,0x0,0x0,0xa,0x43,0x41,0x54,0x2d,0x32,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Algiers + 0x0,0x0,0x2,0xf8, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xb9,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x1f,0x80,0x0,0x0,0x0,0x91, + 0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x22,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x1a,0x80,0x0,0x0,0x0,0x91, 0x60,0x50,0x4f,0x9b,0x47,0x78,0xf0,0x9b,0xd7,0x2c,0x70,0x9c,0xbc,0x91,0x70,0x9d, 0xc0,0x48,0xf0,0x9e,0x89,0xfe,0x70,0x9f,0xa0,0x2a,0xf0,0xa0,0x60,0xa5,0xf0,0xa1, - 0x80,0xc,0xf0,0xa2,0x2e,0x12,0xf0,0xa3,0x7a,0x4c,0xf0,0xa4,0x35,0x81,0xf0,0xa5, - 0x5e,0x23,0x70,0xa6,0x25,0x35,0xf0,0xa7,0x27,0x9b,0xf0,0xa8,0x58,0x26,0x70,0xa9, - 0x7,0x7d,0xf0,0xa9,0xee,0x34,0x70,0xaa,0xe7,0x5f,0xf0,0xab,0xd7,0x50,0xf0,0xac, - 0xc7,0x41,0xf0,0xad,0xc9,0xa7,0xf0,0xae,0xa7,0x23,0xf0,0xaf,0xa0,0x4f,0x70,0xb0, - 0x87,0x5,0xf0,0xb1,0x89,0x6b,0xf0,0xb2,0x70,0x22,0x70,0xb3,0x72,0x88,0x70,0xb4, - 0x50,0x4,0x70,0xb5,0x49,0x2f,0xf0,0xb6,0x2f,0xe6,0x70,0xb7,0x32,0x4c,0x70,0xb8, - 0xf,0xc8,0x70,0xb8,0xff,0xb9,0x70,0xb9,0xef,0xaa,0x70,0xba,0xd6,0x60,0xf0,0xbb, - 0xd8,0xc6,0xf0,0xbc,0xc8,0xb7,0xf0,0xbd,0xb8,0xa8,0xf0,0xbe,0x9f,0x5f,0x70,0xbf, - 0x98,0x8a,0xf0,0xc0,0x9a,0xf0,0xf0,0xc1,0x78,0x6c,0xf0,0xc2,0x68,0x5d,0xf0,0xc3, - 0x58,0x4e,0xf0,0xc4,0x3f,0x5,0x70,0xc5,0x38,0x30,0xf0,0xc6,0x3a,0x96,0xf0,0xc7, - 0x58,0xac,0x70,0xc7,0xda,0x9,0xa0,0xca,0x17,0x5b,0xf0,0xca,0xe2,0x54,0xe0,0xcb, - 0xad,0x69,0xf0,0xcc,0xe7,0x4b,0x10,0xcd,0xa9,0x17,0x90,0xce,0xa2,0x43,0x10,0xcf, - 0x92,0x34,0x10,0xd0,0x89,0xf1,0xf0,0xd1,0x72,0x16,0x10,0xd2,0x4e,0x40,0x90,0xb, - 0xbb,0x39,0x0,0xc,0xab,0x1b,0xf0,0xd,0xa4,0x63,0x90,0xe,0x8b,0x1a,0x10,0xf, - 0x84,0x45,0x90,0x10,0x74,0x36,0x90,0x11,0x64,0x27,0x90,0x12,0x54,0x18,0x90,0x13, - 0x4d,0x44,0x10,0x14,0x33,0xfa,0x90,0x15,0x23,0xeb,0x90,0x16,0x13,0xdc,0x90,0x17, - 0x3,0xcd,0x90,0x17,0xf3,0xbe,0x90,0x18,0xe3,0xaf,0x90,0x19,0xd3,0xa0,0x90,0x1a, - 0xc3,0x91,0x90,0x1b,0xbc,0xbd,0x10,0x1c,0xac,0xae,0x10,0x1d,0x9c,0x9f,0x10,0x1e, - 0x8c,0x90,0x10,0x1f,0x7c,0x81,0x10,0x20,0x6c,0x72,0x10,0x21,0x5c,0x63,0x10,0x22, - 0x4c,0x54,0x10,0x23,0x3c,0x45,0x10,0x24,0x2c,0x36,0x10,0x25,0x1c,0x27,0x10,0x26, - 0xc,0x18,0x10,0x27,0x5,0x43,0x90,0x27,0xf5,0x34,0x90,0x28,0xe5,0x25,0x90,0x29, - 0xd5,0x16,0x90,0x2a,0xc5,0x7,0x90,0x2b,0xb4,0xf8,0x90,0x2c,0xa4,0xe9,0x90,0x2d, - 0x94,0xda,0x90,0x2e,0x84,0xcb,0x90,0x2f,0x74,0xbc,0x90,0x30,0x64,0xad,0x90,0x31, - 0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34,0x52,0x96,0x10,0x35, - 0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x38, - 0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b,0xdb,0x58,0x90,0x3c, - 0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f,0x9b,0x1c,0x90,0x40, - 0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43,0x64,0x1b,0x10,0x44, - 0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47, - 0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b, - 0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e,0xac,0xa1,0x90,0x4f, - 0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53, - 0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56,0x2c,0x29,0x90,0x56, - 0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59,0xf5,0x28,0x10,0x5a, - 0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d,0xb4,0xec,0x10,0x5e, - 0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61,0x7d,0xea,0x90,0x62, - 0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65,0x3d,0xae,0x90,0x66, - 0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68,0xfd,0x72,0x90,0x69, - 0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c,0xc6,0x71,0x10,0x6d, - 0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70,0x86,0x35,0x10,0x71, - 0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74,0x45,0xf9,0x10,0x75, - 0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78, - 0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c, - 0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x1, - 0x6,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x8,0x7,0x8,0x9,0xa, - 0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa, - 0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa, - 0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa, - 0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa, - 0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa, - 0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa, - 0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa, - 0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x0,0x0,0x6,0xec,0x0,0x0,0x0,0x0, - 0x2,0x31,0x0,0x4,0x0,0x0,0xe,0x10,0x1,0x8,0x0,0x0,0x0,0x0,0x0,0xd, - 0x0,0x0,0xe,0x10,0x1,0x8,0x0,0x0,0x1c,0x20,0x1,0x11,0x0,0x0,0x0,0x0, - 0x0,0xd,0x0,0x0,0x1c,0x20,0x1,0x16,0x0,0x0,0xe,0x10,0x0,0x1b,0x0,0x0, - 0x1c,0x20,0x1,0x16,0x0,0x0,0xe,0x10,0x0,0x1b,0x4c,0x4d,0x54,0x0,0x50,0x4d, - 0x54,0x0,0x57,0x45,0x53,0x54,0x0,0x57,0x45,0x54,0x0,0x57,0x45,0x4d,0x54,0x0, - 0x43,0x45,0x53,0x54,0x0,0x43,0x45,0x54,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0, - 0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x54, + 0x80,0xc,0xf0,0xa2,0x2e,0x12,0xf0,0xa3,0x7a,0x4c,0xf0,0xa4,0x35,0x81,0xf0,0xa4, + 0xb8,0x6,0x70,0xc6,0xff,0x6,0x70,0xc7,0x58,0xba,0x80,0xc7,0xda,0x9,0xa0,0xcf, + 0x92,0x34,0x10,0xd0,0x8a,0x0,0x0,0xd1,0x72,0x16,0x10,0xd2,0x4e,0x24,0x70,0xd4, + 0x4b,0x7,0x70,0xe5,0xce,0xd3,0x0,0xf3,0x5c,0xb0,0xf0,0x2,0x78,0xc1,0xf0,0x3, + 0x43,0xc8,0xf0,0xd,0xcf,0xd7,0x0,0xe,0xad,0x44,0xf0,0xf,0x78,0x5a,0x0,0x10, + 0x68,0x59,0x10,0x12,0x76,0x43,0x70,0x13,0x66,0x42,0x80,0x14,0x5f,0x7c,0x10,0x15, + 0x4f,0x5f,0x0,0x1,0x4,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x4,0x6,0x5,0x6,0x5,0x6,0x4,0x6,0x4,0x2,0x3,0x7,0x6,0x5, + 0x6,0x4,0x7,0x4,0x6,0x0,0x0,0x2,0xdc,0x0,0x0,0x0,0x0,0x2,0x31,0x0, + 0x4,0x0,0x0,0xe,0x10,0x1,0x8,0x0,0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0, + 0x0,0x0,0xd,0x0,0x0,0x1c,0x20,0x1,0x11,0x0,0x0,0xe,0x10,0x0,0x16,0x0, + 0x0,0xe,0x10,0x1,0x8,0x4c,0x4d,0x54,0x0,0x50,0x4d,0x54,0x0,0x57,0x45,0x53, + 0x54,0x0,0x57,0x45,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x43,0x45,0x54,0x0,0x0, + 0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xba,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x1f,0xf8,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x6b,0xc8,0x45,0x94,0xff,0xff,0xff,0xff,0x91, + 0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x23,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x1a,0xf8,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x6b,0xc8,0x49,0xe0,0xff,0xff,0xff,0xff,0x91, 0x60,0x50,0x4f,0xff,0xff,0xff,0xff,0x9b,0x47,0x78,0xf0,0xff,0xff,0xff,0xff,0x9b, 0xd7,0x2c,0x70,0xff,0xff,0xff,0xff,0x9c,0xbc,0x91,0x70,0xff,0xff,0xff,0xff,0x9d, 0xc0,0x48,0xf0,0xff,0xff,0xff,0xff,0x9e,0x89,0xfe,0x70,0xff,0xff,0xff,0xff,0x9f, 0xa0,0x2a,0xf0,0xff,0xff,0xff,0xff,0xa0,0x60,0xa5,0xf0,0xff,0xff,0xff,0xff,0xa1, 0x80,0xc,0xf0,0xff,0xff,0xff,0xff,0xa2,0x2e,0x12,0xf0,0xff,0xff,0xff,0xff,0xa3, - 0x7a,0x4c,0xf0,0xff,0xff,0xff,0xff,0xa4,0x35,0x81,0xf0,0xff,0xff,0xff,0xff,0xa5, - 0x5e,0x23,0x70,0xff,0xff,0xff,0xff,0xa6,0x25,0x35,0xf0,0xff,0xff,0xff,0xff,0xa7, - 0x27,0x9b,0xf0,0xff,0xff,0xff,0xff,0xa8,0x58,0x26,0x70,0xff,0xff,0xff,0xff,0xa9, - 0x7,0x7d,0xf0,0xff,0xff,0xff,0xff,0xa9,0xee,0x34,0x70,0xff,0xff,0xff,0xff,0xaa, - 0xe7,0x5f,0xf0,0xff,0xff,0xff,0xff,0xab,0xd7,0x50,0xf0,0xff,0xff,0xff,0xff,0xac, - 0xc7,0x41,0xf0,0xff,0xff,0xff,0xff,0xad,0xc9,0xa7,0xf0,0xff,0xff,0xff,0xff,0xae, - 0xa7,0x23,0xf0,0xff,0xff,0xff,0xff,0xaf,0xa0,0x4f,0x70,0xff,0xff,0xff,0xff,0xb0, - 0x87,0x5,0xf0,0xff,0xff,0xff,0xff,0xb1,0x89,0x6b,0xf0,0xff,0xff,0xff,0xff,0xb2, - 0x70,0x22,0x70,0xff,0xff,0xff,0xff,0xb3,0x72,0x88,0x70,0xff,0xff,0xff,0xff,0xb4, - 0x50,0x4,0x70,0xff,0xff,0xff,0xff,0xb5,0x49,0x2f,0xf0,0xff,0xff,0xff,0xff,0xb6, - 0x2f,0xe6,0x70,0xff,0xff,0xff,0xff,0xb7,0x32,0x4c,0x70,0xff,0xff,0xff,0xff,0xb8, - 0xf,0xc8,0x70,0xff,0xff,0xff,0xff,0xb8,0xff,0xb9,0x70,0xff,0xff,0xff,0xff,0xb9, - 0xef,0xaa,0x70,0xff,0xff,0xff,0xff,0xba,0xd6,0x60,0xf0,0xff,0xff,0xff,0xff,0xbb, - 0xd8,0xc6,0xf0,0xff,0xff,0xff,0xff,0xbc,0xc8,0xb7,0xf0,0xff,0xff,0xff,0xff,0xbd, - 0xb8,0xa8,0xf0,0xff,0xff,0xff,0xff,0xbe,0x9f,0x5f,0x70,0xff,0xff,0xff,0xff,0xbf, - 0x98,0x8a,0xf0,0xff,0xff,0xff,0xff,0xc0,0x9a,0xf0,0xf0,0xff,0xff,0xff,0xff,0xc1, - 0x78,0x6c,0xf0,0xff,0xff,0xff,0xff,0xc2,0x68,0x5d,0xf0,0xff,0xff,0xff,0xff,0xc3, - 0x58,0x4e,0xf0,0xff,0xff,0xff,0xff,0xc4,0x3f,0x5,0x70,0xff,0xff,0xff,0xff,0xc5, - 0x38,0x30,0xf0,0xff,0xff,0xff,0xff,0xc6,0x3a,0x96,0xf0,0xff,0xff,0xff,0xff,0xc7, - 0x58,0xac,0x70,0xff,0xff,0xff,0xff,0xc7,0xda,0x9,0xa0,0xff,0xff,0xff,0xff,0xca, - 0x17,0x5b,0xf0,0xff,0xff,0xff,0xff,0xca,0xe2,0x54,0xe0,0xff,0xff,0xff,0xff,0xcb, - 0xad,0x69,0xf0,0xff,0xff,0xff,0xff,0xcc,0xe7,0x4b,0x10,0xff,0xff,0xff,0xff,0xcd, - 0xa9,0x17,0x90,0xff,0xff,0xff,0xff,0xce,0xa2,0x43,0x10,0xff,0xff,0xff,0xff,0xcf, - 0x92,0x34,0x10,0xff,0xff,0xff,0xff,0xd0,0x89,0xf1,0xf0,0xff,0xff,0xff,0xff,0xd1, - 0x72,0x16,0x10,0xff,0xff,0xff,0xff,0xd2,0x4e,0x40,0x90,0x0,0x0,0x0,0x0,0xb, - 0xbb,0x39,0x0,0x0,0x0,0x0,0x0,0xc,0xab,0x1b,0xf0,0x0,0x0,0x0,0x0,0xd, - 0xa4,0x63,0x90,0x0,0x0,0x0,0x0,0xe,0x8b,0x1a,0x10,0x0,0x0,0x0,0x0,0xf, - 0x84,0x45,0x90,0x0,0x0,0x0,0x0,0x10,0x74,0x36,0x90,0x0,0x0,0x0,0x0,0x11, - 0x64,0x27,0x90,0x0,0x0,0x0,0x0,0x12,0x54,0x18,0x90,0x0,0x0,0x0,0x0,0x13, - 0x4d,0x44,0x10,0x0,0x0,0x0,0x0,0x14,0x33,0xfa,0x90,0x0,0x0,0x0,0x0,0x15, - 0x23,0xeb,0x90,0x0,0x0,0x0,0x0,0x16,0x13,0xdc,0x90,0x0,0x0,0x0,0x0,0x17, - 0x3,0xcd,0x90,0x0,0x0,0x0,0x0,0x17,0xf3,0xbe,0x90,0x0,0x0,0x0,0x0,0x18, - 0xe3,0xaf,0x90,0x0,0x0,0x0,0x0,0x19,0xd3,0xa0,0x90,0x0,0x0,0x0,0x0,0x1a, - 0xc3,0x91,0x90,0x0,0x0,0x0,0x0,0x1b,0xbc,0xbd,0x10,0x0,0x0,0x0,0x0,0x1c, - 0xac,0xae,0x10,0x0,0x0,0x0,0x0,0x1d,0x9c,0x9f,0x10,0x0,0x0,0x0,0x0,0x1e, - 0x8c,0x90,0x10,0x0,0x0,0x0,0x0,0x1f,0x7c,0x81,0x10,0x0,0x0,0x0,0x0,0x20, - 0x6c,0x72,0x10,0x0,0x0,0x0,0x0,0x21,0x5c,0x63,0x10,0x0,0x0,0x0,0x0,0x22, - 0x4c,0x54,0x10,0x0,0x0,0x0,0x0,0x23,0x3c,0x45,0x10,0x0,0x0,0x0,0x0,0x24, - 0x2c,0x36,0x10,0x0,0x0,0x0,0x0,0x25,0x1c,0x27,0x10,0x0,0x0,0x0,0x0,0x26, - 0xc,0x18,0x10,0x0,0x0,0x0,0x0,0x27,0x5,0x43,0x90,0x0,0x0,0x0,0x0,0x27, - 0xf5,0x34,0x90,0x0,0x0,0x0,0x0,0x28,0xe5,0x25,0x90,0x0,0x0,0x0,0x0,0x29, - 0xd5,0x16,0x90,0x0,0x0,0x0,0x0,0x2a,0xc5,0x7,0x90,0x0,0x0,0x0,0x0,0x2b, - 0xb4,0xf8,0x90,0x0,0x0,0x0,0x0,0x2c,0xa4,0xe9,0x90,0x0,0x0,0x0,0x0,0x2d, - 0x94,0xda,0x90,0x0,0x0,0x0,0x0,0x2e,0x84,0xcb,0x90,0x0,0x0,0x0,0x0,0x2f, - 0x74,0xbc,0x90,0x0,0x0,0x0,0x0,0x30,0x64,0xad,0x90,0x0,0x0,0x0,0x0,0x31, - 0x5d,0xd9,0x10,0x0,0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0,0x0,0x0,0x33, - 0x3d,0xbb,0x10,0x0,0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35, - 0x1d,0x9d,0x10,0x0,0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36, - 0xfd,0x7f,0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38, - 0xdd,0x61,0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0,0x0,0x0,0x3a, - 0xbd,0x43,0x10,0x0,0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0,0x0,0x3c, - 0xa6,0x5f,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0,0x0,0x3e, - 0x86,0x41,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40, - 0x66,0x23,0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42, - 0x46,0x5,0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44, - 0x25,0xe7,0x90,0x0,0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46, - 0x5,0xc9,0x90,0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47, - 0xee,0xe6,0x10,0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49, - 0xce,0xc8,0x10,0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b, - 0xae,0xaa,0x10,0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d, - 0x8e,0x8c,0x10,0x0,0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f, - 0x6e,0x6e,0x10,0x0,0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51, - 0x57,0x8a,0x90,0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53, - 0x37,0x6c,0x90,0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55, - 0x17,0x4e,0x90,0x0,0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56, - 0xf7,0x30,0x90,0x0,0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58, - 0xd7,0x12,0x90,0x0,0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a, - 0xb6,0xf4,0x90,0x0,0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c, - 0xa0,0x11,0x10,0x0,0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e, - 0x7f,0xf3,0x10,0x0,0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60, - 0x5f,0xd5,0x10,0x0,0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62, - 0x3f,0xb7,0x10,0x0,0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64, - 0x1f,0x99,0x10,0x0,0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66, - 0x8,0xb5,0x90,0x0,0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67, - 0xe8,0x97,0x90,0x0,0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69, - 0xc8,0x79,0x90,0x0,0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b, - 0xa8,0x5b,0x90,0x0,0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d, - 0x88,0x3d,0x90,0x0,0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f, - 0x68,0x1f,0x90,0x0,0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71, - 0x51,0x3c,0x10,0x0,0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73, - 0x31,0x1e,0x10,0x0,0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75, - 0x11,0x0,0x10,0x0,0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76, - 0xf0,0xe2,0x10,0x0,0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78, - 0xd0,0xc4,0x10,0x0,0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a, - 0xb0,0xa6,0x10,0x0,0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c, - 0x99,0xc2,0x90,0x0,0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e, - 0x79,0xa4,0x90,0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x1,0x6,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x8,0x7,0x8,0x9,0xa,0x9,0xa,0x9, - 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9, - 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9, - 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9, - 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9, - 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9, - 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9, - 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9, - 0xa,0x9,0xa,0x9,0xa,0x0,0x0,0x6,0xec,0x0,0x0,0x0,0x0,0x2,0x31,0x0, - 0x4,0x0,0x0,0xe,0x10,0x1,0x8,0x0,0x0,0x0,0x0,0x0,0xd,0x0,0x0,0xe, - 0x10,0x1,0x8,0x0,0x0,0x1c,0x20,0x1,0x11,0x0,0x0,0x0,0x0,0x0,0xd,0x0, - 0x0,0x1c,0x20,0x1,0x16,0x0,0x0,0xe,0x10,0x0,0x1b,0x0,0x0,0x1c,0x20,0x1, - 0x16,0x0,0x0,0xe,0x10,0x0,0x1b,0x4c,0x4d,0x54,0x0,0x50,0x4d,0x54,0x0,0x57, - 0x45,0x53,0x54,0x0,0x57,0x45,0x54,0x0,0x57,0x45,0x4d,0x54,0x0,0x43,0x45,0x53, - 0x54,0x0,0x43,0x45,0x54,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x1, - 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0xa,0x43,0x45,0x54, - 0x2d,0x31,0x43,0x45,0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2c,0x4d,0x31, - 0x30,0x2e,0x35,0x2e,0x30,0x2f,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Athens - 0x0,0x0,0x8,0xdf, + 0x7a,0x4c,0xf0,0xff,0xff,0xff,0xff,0xa4,0x35,0x81,0xf0,0xff,0xff,0xff,0xff,0xa4, + 0xb8,0x6,0x70,0xff,0xff,0xff,0xff,0xc6,0xff,0x6,0x70,0xff,0xff,0xff,0xff,0xc7, + 0x58,0xba,0x80,0xff,0xff,0xff,0xff,0xc7,0xda,0x9,0xa0,0xff,0xff,0xff,0xff,0xcf, + 0x92,0x34,0x10,0xff,0xff,0xff,0xff,0xd0,0x8a,0x0,0x0,0xff,0xff,0xff,0xff,0xd1, + 0x72,0x16,0x10,0xff,0xff,0xff,0xff,0xd2,0x4e,0x24,0x70,0xff,0xff,0xff,0xff,0xd4, + 0x4b,0x7,0x70,0xff,0xff,0xff,0xff,0xe5,0xce,0xd3,0x0,0xff,0xff,0xff,0xff,0xf3, + 0x5c,0xb0,0xf0,0x0,0x0,0x0,0x0,0x2,0x78,0xc1,0xf0,0x0,0x0,0x0,0x0,0x3, + 0x43,0xc8,0xf0,0x0,0x0,0x0,0x0,0xd,0xcf,0xd7,0x0,0x0,0x0,0x0,0x0,0xe, + 0xad,0x44,0xf0,0x0,0x0,0x0,0x0,0xf,0x78,0x5a,0x0,0x0,0x0,0x0,0x0,0x10, + 0x68,0x59,0x10,0x0,0x0,0x0,0x0,0x12,0x76,0x43,0x70,0x0,0x0,0x0,0x0,0x13, + 0x66,0x42,0x80,0x0,0x0,0x0,0x0,0x14,0x5f,0x7c,0x10,0x0,0x0,0x0,0x0,0x15, + 0x4f,0x5f,0x0,0x0,0x1,0x4,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x4,0x6,0x5,0x6,0x5,0x6,0x4,0x6,0x4,0x2,0x3,0x7,0x6, + 0x5,0x6,0x4,0x7,0x4,0x6,0x0,0x0,0x2,0xdc,0x0,0x0,0x0,0x0,0x2,0x31, + 0x0,0x4,0x0,0x0,0xe,0x10,0x1,0x8,0x0,0x0,0x0,0x0,0x0,0xd,0x0,0x0, + 0x0,0x0,0x0,0xd,0x0,0x0,0x1c,0x20,0x1,0x11,0x0,0x0,0xe,0x10,0x0,0x16, + 0x0,0x0,0xe,0x10,0x1,0x8,0x4c,0x4d,0x54,0x0,0x50,0x4d,0x54,0x0,0x57,0x45, + 0x53,0x54,0x0,0x57,0x45,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x43,0x45,0x54,0x0, + 0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xa,0x43,0x45,0x54,0x2d,0x31,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Ouagadougou + 0x0,0x0,0x0,0xaa, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x8a,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x1a,0x80,0x0,0x0,0x0,0x9b, - 0x80,0x21,0x80,0xb9,0x7c,0xe9,0xe0,0xb9,0xc6,0xaf,0xd0,0xc9,0xf2,0x63,0xe0,0xca, - 0x10,0xa8,0x50,0xcc,0xe7,0x4b,0x10,0xcd,0xaa,0x4c,0xf0,0xce,0xa2,0x18,0xe0,0xcf, - 0x93,0x69,0x70,0xdf,0x13,0x9e,0x60,0xdf,0xb7,0xa,0x50,0x9,0xec,0x5e,0x60,0xb, - 0x18,0xf4,0x60,0xb,0xcd,0xae,0x0,0xc,0xbd,0x9f,0x0,0xd,0xa4,0x55,0x80,0xe, - 0x8c,0x5d,0x80,0xf,0x84,0x37,0x80,0x10,0x6a,0xfc,0x10,0x11,0x64,0x7b,0xf0,0x12, - 0x52,0xaa,0xf0,0x13,0x46,0x82,0x60,0x14,0x33,0xc2,0x50,0x15,0x23,0xeb,0x90,0x16, - 0x13,0xdc,0x90,0x17,0x3,0xcd,0x90,0x17,0xf3,0xbe,0x90,0x18,0xe3,0xaf,0x90,0x19, - 0xd3,0xa0,0x90,0x1a,0xc3,0x91,0x90,0x1b,0xbc,0xbd,0x10,0x1c,0xac,0xae,0x10,0x1d, - 0x9c,0x9f,0x10,0x1e,0x8c,0x90,0x10,0x1f,0x7c,0x81,0x10,0x20,0x6c,0x72,0x10,0x21, - 0x5c,0x63,0x10,0x22,0x4c,0x54,0x10,0x23,0x3c,0x45,0x10,0x24,0x2c,0x36,0x10,0x25, - 0x1c,0x27,0x10,0x26,0xc,0x18,0x10,0x27,0x5,0x43,0x90,0x27,0xf5,0x34,0x90,0x28, - 0xe5,0x25,0x90,0x29,0xd5,0x16,0x90,0x2a,0xc5,0x7,0x90,0x2b,0xb4,0xf8,0x90,0x2c, - 0xa4,0xe9,0x90,0x2d,0x94,0xda,0x90,0x2e,0x84,0xcb,0x90,0x2f,0x74,0xbc,0x90,0x30, - 0x64,0xad,0x90,0x31,0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34, - 0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38, - 0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b, - 0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f, - 0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43, - 0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47, - 0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a, - 0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e, - 0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52, - 0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56, - 0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59, - 0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d, - 0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61, - 0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65, - 0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68, - 0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c, - 0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70, - 0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74, - 0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78, - 0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b, - 0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f, - 0x8e,0x7f,0x90,0x1,0x3,0x2,0x3,0x2,0x5,0x4,0x5,0x4,0x3,0x2,0x3,0x6, - 0x7,0x6,0x7,0x6,0x7,0x6,0x3,0x2,0x3,0x2,0x3,0x8,0x9,0x8,0x9,0x8, - 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, - 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, - 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, - 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, - 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, - 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, - 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x0,0x0,0x16, - 0x3c,0x0,0x0,0x0,0x0,0x16,0x3c,0x0,0x4,0x0,0x0,0x2a,0x30,0x1,0x8,0x0, - 0x0,0x1c,0x20,0x0,0xd,0x0,0x0,0xe,0x10,0x0,0x11,0x0,0x0,0x1c,0x20,0x1, - 0x15,0x0,0x0,0x2a,0x30,0x1,0x8,0x0,0x0,0x1c,0x20,0x0,0xd,0x0,0x0,0x2a, - 0x30,0x1,0x8,0x0,0x0,0x1c,0x20,0x0,0xd,0x4c,0x4d,0x54,0x0,0x41,0x4d,0x54, - 0x0,0x45,0x45,0x53,0x54,0x0,0x45,0x45,0x54,0x0,0x43,0x45,0x54,0x0,0x43,0x45, - 0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x0, - 0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8b,0x0,0x0,0x0,0xa,0x0, - 0x0,0x0,0x1a,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x74, - 0x3f,0x98,0x44,0xff,0xff,0xff,0xff,0x9b,0x80,0x21,0x80,0xff,0xff,0xff,0xff,0xb9, - 0x7c,0xe9,0xe0,0xff,0xff,0xff,0xff,0xb9,0xc6,0xaf,0xd0,0xff,0xff,0xff,0xff,0xc9, - 0xf2,0x63,0xe0,0xff,0xff,0xff,0xff,0xca,0x10,0xa8,0x50,0xff,0xff,0xff,0xff,0xcc, - 0xe7,0x4b,0x10,0xff,0xff,0xff,0xff,0xcd,0xaa,0x4c,0xf0,0xff,0xff,0xff,0xff,0xce, - 0xa2,0x18,0xe0,0xff,0xff,0xff,0xff,0xcf,0x93,0x69,0x70,0xff,0xff,0xff,0xff,0xdf, - 0x13,0x9e,0x60,0xff,0xff,0xff,0xff,0xdf,0xb7,0xa,0x50,0x0,0x0,0x0,0x0,0x9, - 0xec,0x5e,0x60,0x0,0x0,0x0,0x0,0xb,0x18,0xf4,0x60,0x0,0x0,0x0,0x0,0xb, - 0xcd,0xae,0x0,0x0,0x0,0x0,0x0,0xc,0xbd,0x9f,0x0,0x0,0x0,0x0,0x0,0xd, - 0xa4,0x55,0x80,0x0,0x0,0x0,0x0,0xe,0x8c,0x5d,0x80,0x0,0x0,0x0,0x0,0xf, - 0x84,0x37,0x80,0x0,0x0,0x0,0x0,0x10,0x6a,0xfc,0x10,0x0,0x0,0x0,0x0,0x11, - 0x64,0x7b,0xf0,0x0,0x0,0x0,0x0,0x12,0x52,0xaa,0xf0,0x0,0x0,0x0,0x0,0x13, - 0x46,0x82,0x60,0x0,0x0,0x0,0x0,0x14,0x33,0xc2,0x50,0x0,0x0,0x0,0x0,0x15, - 0x23,0xeb,0x90,0x0,0x0,0x0,0x0,0x16,0x13,0xdc,0x90,0x0,0x0,0x0,0x0,0x17, - 0x3,0xcd,0x90,0x0,0x0,0x0,0x0,0x17,0xf3,0xbe,0x90,0x0,0x0,0x0,0x0,0x18, - 0xe3,0xaf,0x90,0x0,0x0,0x0,0x0,0x19,0xd3,0xa0,0x90,0x0,0x0,0x0,0x0,0x1a, - 0xc3,0x91,0x90,0x0,0x0,0x0,0x0,0x1b,0xbc,0xbd,0x10,0x0,0x0,0x0,0x0,0x1c, - 0xac,0xae,0x10,0x0,0x0,0x0,0x0,0x1d,0x9c,0x9f,0x10,0x0,0x0,0x0,0x0,0x1e, - 0x8c,0x90,0x10,0x0,0x0,0x0,0x0,0x1f,0x7c,0x81,0x10,0x0,0x0,0x0,0x0,0x20, - 0x6c,0x72,0x10,0x0,0x0,0x0,0x0,0x21,0x5c,0x63,0x10,0x0,0x0,0x0,0x0,0x22, - 0x4c,0x54,0x10,0x0,0x0,0x0,0x0,0x23,0x3c,0x45,0x10,0x0,0x0,0x0,0x0,0x24, - 0x2c,0x36,0x10,0x0,0x0,0x0,0x0,0x25,0x1c,0x27,0x10,0x0,0x0,0x0,0x0,0x26, - 0xc,0x18,0x10,0x0,0x0,0x0,0x0,0x27,0x5,0x43,0x90,0x0,0x0,0x0,0x0,0x27, - 0xf5,0x34,0x90,0x0,0x0,0x0,0x0,0x28,0xe5,0x25,0x90,0x0,0x0,0x0,0x0,0x29, - 0xd5,0x16,0x90,0x0,0x0,0x0,0x0,0x2a,0xc5,0x7,0x90,0x0,0x0,0x0,0x0,0x2b, - 0xb4,0xf8,0x90,0x0,0x0,0x0,0x0,0x2c,0xa4,0xe9,0x90,0x0,0x0,0x0,0x0,0x2d, - 0x94,0xda,0x90,0x0,0x0,0x0,0x0,0x2e,0x84,0xcb,0x90,0x0,0x0,0x0,0x0,0x2f, - 0x74,0xbc,0x90,0x0,0x0,0x0,0x0,0x30,0x64,0xad,0x90,0x0,0x0,0x0,0x0,0x31, - 0x5d,0xd9,0x10,0x0,0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0,0x0,0x0,0x33, - 0x3d,0xbb,0x10,0x0,0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35, - 0x1d,0x9d,0x10,0x0,0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36, - 0xfd,0x7f,0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38, - 0xdd,0x61,0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0,0x0,0x0,0x3a, - 0xbd,0x43,0x10,0x0,0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0,0x0,0x3c, - 0xa6,0x5f,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0,0x0,0x3e, - 0x86,0x41,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40, - 0x66,0x23,0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42, - 0x46,0x5,0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44, - 0x25,0xe7,0x90,0x0,0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46, - 0x5,0xc9,0x90,0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47, - 0xee,0xe6,0x10,0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49, - 0xce,0xc8,0x10,0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b, - 0xae,0xaa,0x10,0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d, - 0x8e,0x8c,0x10,0x0,0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f, - 0x6e,0x6e,0x10,0x0,0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51, - 0x57,0x8a,0x90,0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53, - 0x37,0x6c,0x90,0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55, - 0x17,0x4e,0x90,0x0,0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56, - 0xf7,0x30,0x90,0x0,0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58, - 0xd7,0x12,0x90,0x0,0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a, - 0xb6,0xf4,0x90,0x0,0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c, - 0xa0,0x11,0x10,0x0,0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e, - 0x7f,0xf3,0x10,0x0,0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60, - 0x5f,0xd5,0x10,0x0,0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62, - 0x3f,0xb7,0x10,0x0,0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64, - 0x1f,0x99,0x10,0x0,0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66, - 0x8,0xb5,0x90,0x0,0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67, - 0xe8,0x97,0x90,0x0,0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69, - 0xc8,0x79,0x90,0x0,0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b, - 0xa8,0x5b,0x90,0x0,0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d, - 0x88,0x3d,0x90,0x0,0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f, - 0x68,0x1f,0x90,0x0,0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71, - 0x51,0x3c,0x10,0x0,0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73, - 0x31,0x1e,0x10,0x0,0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75, - 0x11,0x0,0x10,0x0,0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76, - 0xf0,0xe2,0x10,0x0,0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78, - 0xd0,0xc4,0x10,0x0,0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a, - 0xb0,0xa6,0x10,0x0,0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c, - 0x99,0xc2,0x90,0x0,0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e, - 0x79,0xa4,0x90,0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x1,0x3,0x2,0x3, - 0x2,0x5,0x4,0x5,0x4,0x3,0x2,0x3,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x3, - 0x2,0x3,0x2,0x3,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, - 0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, - 0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, - 0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, - 0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, - 0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, - 0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, - 0x8,0x9,0x8,0x9,0x8,0x9,0x0,0x0,0x16,0x3c,0x0,0x0,0x0,0x0,0x16,0x3c, - 0x0,0x4,0x0,0x0,0x2a,0x30,0x1,0x8,0x0,0x0,0x1c,0x20,0x0,0xd,0x0,0x0, - 0xe,0x10,0x0,0x11,0x0,0x0,0x1c,0x20,0x1,0x15,0x0,0x0,0x2a,0x30,0x1,0x8, - 0x0,0x0,0x1c,0x20,0x0,0xd,0x0,0x0,0x2a,0x30,0x1,0x8,0x0,0x0,0x1c,0x20, - 0x0,0xd,0x4c,0x4d,0x54,0x0,0x41,0x4d,0x54,0x0,0x45,0x45,0x53,0x54,0x0,0x45, - 0x45,0x54,0x0,0x43,0x45,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x1,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, - 0xa,0x45,0x45,0x54,0x2d,0x32,0x45,0x45,0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e, - 0x30,0x2f,0x33,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30,0x2f,0x34,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Warsaw - 0x0,0x0,0xa,0x91, + 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x92, + 0xe6,0x92,0x48,0x0,0x1,0xff,0xff,0xfc,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x4,0x4c,0x4d,0x54,0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, + 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0x92,0xe6,0x92,0x48,0x0,0x1,0xff,0xff,0xfc,0x38,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x4c,0x4d,0x54,0x0,0x47,0x4d,0x54,0x0,0x0, + 0x0,0x0,0x0,0xa,0x47,0x4d,0x54,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Asmara + 0x0,0x0,0x1,0x1d, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xa8,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x1a,0x80,0x0,0x0,0x0,0x99, - 0xa8,0x2a,0xd0,0x9b,0xc,0x17,0x60,0x9b,0xd5,0xda,0xf0,0x9c,0xd9,0xae,0x90,0x9d, - 0xa4,0xb5,0x90,0x9e,0xb9,0x90,0x90,0x9f,0x84,0x97,0x90,0xa0,0x9a,0xb6,0x0,0xa1, - 0x65,0xbd,0x0,0xa6,0x7d,0x7c,0x60,0xc8,0x76,0xde,0x10,0xcc,0xe7,0x4b,0x10,0xcd, - 0xa9,0x17,0x90,0xce,0xa2,0x43,0x10,0xcf,0x92,0x34,0x10,0xd0,0x80,0xa9,0x60,0xd0, - 0x84,0xba,0x0,0xd1,0x95,0x92,0x70,0xd2,0x8a,0xbb,0x60,0xd3,0x62,0xff,0x70,0xd4, - 0x4b,0x23,0x90,0xd5,0x5e,0xad,0x10,0xd6,0x29,0xb4,0x10,0xd7,0x2c,0x1a,0x10,0xd8, - 0x9,0x96,0x10,0xd9,0x2,0xc1,0x90,0xd9,0xe9,0x78,0x10,0xe8,0x54,0xd2,0x0,0xe8, - 0xf1,0xb4,0x80,0xe9,0xe1,0xa5,0x80,0xea,0xd1,0x96,0x80,0xec,0x14,0x96,0x0,0xec, - 0xba,0xb3,0x0,0xed,0xaa,0xa4,0x0,0xee,0x9a,0x95,0x0,0xef,0xd4,0x5a,0x0,0xf0, - 0x7a,0x77,0x0,0xf1,0xb4,0x3c,0x0,0xf2,0x5a,0x59,0x0,0xf3,0x94,0x1e,0x0,0xf4, - 0x3a,0x3b,0x0,0xf5,0x7d,0x3a,0x80,0xf6,0x1a,0x1d,0x0,0xd,0x2a,0xfd,0x70,0xd, - 0xa4,0x55,0x80,0xe,0x8b,0xc,0x0,0xf,0x84,0x37,0x80,0x10,0x74,0x28,0x80,0x11, - 0x64,0x19,0x80,0x12,0x54,0xa,0x80,0x13,0x4d,0x36,0x0,0x14,0x33,0xec,0x80,0x15, - 0x23,0xdd,0x80,0x16,0x13,0xce,0x80,0x17,0x3,0xbf,0x80,0x17,0xf3,0xb0,0x80,0x18, - 0xe3,0xa1,0x80,0x19,0xd3,0x92,0x80,0x1a,0xc3,0x83,0x80,0x1b,0xbc,0xaf,0x0,0x1c, - 0xac,0xa0,0x0,0x1d,0x9c,0x91,0x0,0x1e,0x8c,0x82,0x0,0x1f,0x7c,0x73,0x0,0x20, - 0x6c,0x64,0x0,0x21,0x5c,0x55,0x0,0x21,0xda,0xd6,0xf0,0x22,0x4c,0x54,0x10,0x23, - 0x3c,0x45,0x10,0x24,0x2c,0x36,0x10,0x25,0x1c,0x27,0x10,0x26,0xc,0x18,0x10,0x27, - 0x5,0x43,0x90,0x27,0xf5,0x34,0x90,0x28,0xe5,0x25,0x90,0x29,0xd5,0x16,0x90,0x2a, - 0xc5,0x7,0x90,0x2b,0xb4,0xf8,0x90,0x2c,0xa4,0xe9,0x90,0x2d,0x94,0xda,0x90,0x2e, - 0x84,0xcb,0x90,0x2f,0x74,0xbc,0x90,0x30,0x64,0xad,0x90,0x31,0x5d,0xd9,0x10,0x32, - 0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34,0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36, - 0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39, - 0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b,0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d, - 0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f,0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41, - 0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43,0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45, - 0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49, - 0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c, - 0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e,0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50, - 0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54, - 0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56,0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58, - 0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59,0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b, - 0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d,0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f, - 0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61,0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63, - 0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65,0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67, - 0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68,0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a, - 0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c,0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e, - 0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70,0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72, - 0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74,0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76, - 0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79, - 0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d, - 0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x1,0x3,0x2,0x3,0x4, - 0x5,0x4,0x8,0x6,0x7,0x3,0x2,0x5,0x4,0x5,0x4,0x2,0x3,0x2,0x3,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x3,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x3,0x9, - 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9, - 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9, - 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9, - 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9, - 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9, - 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9, - 0xa,0x9,0xa,0x0,0x0,0x13,0xb0,0x0,0x0,0x0,0x0,0x13,0xb0,0x0,0x4,0x0, - 0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0xe,0x10,0x0,0xd,0x0,0x0,0x1c,0x20,0x1, - 0x8,0x0,0x0,0xe,0x10,0x0,0xd,0x0,0x0,0x2a,0x30,0x1,0x11,0x0,0x0,0x1c, - 0x20,0x0,0x16,0x0,0x0,0x1c,0x20,0x0,0x16,0x0,0x0,0x1c,0x20,0x1,0x8,0x0, - 0x0,0xe,0x10,0x0,0xd,0x4c,0x4d,0x54,0x0,0x57,0x4d,0x54,0x0,0x43,0x45,0x53, - 0x54,0x0,0x43,0x45,0x54,0x0,0x45,0x45,0x53,0x54,0x0,0x45,0x45,0x54,0x0,0x0, - 0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x1,0x1,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0, - 0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa9,0x0,0x0,0x0,0xb,0x0,0x0,0x0, - 0x1a,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x56,0xb6,0xd0, - 0x50,0xff,0xff,0xff,0xff,0x99,0xa8,0x2a,0xd0,0xff,0xff,0xff,0xff,0x9b,0xc,0x17, - 0x60,0xff,0xff,0xff,0xff,0x9b,0xd5,0xda,0xf0,0xff,0xff,0xff,0xff,0x9c,0xd9,0xae, - 0x90,0xff,0xff,0xff,0xff,0x9d,0xa4,0xb5,0x90,0xff,0xff,0xff,0xff,0x9e,0xb9,0x90, - 0x90,0xff,0xff,0xff,0xff,0x9f,0x84,0x97,0x90,0xff,0xff,0xff,0xff,0xa0,0x9a,0xb6, - 0x0,0xff,0xff,0xff,0xff,0xa1,0x65,0xbd,0x0,0xff,0xff,0xff,0xff,0xa6,0x7d,0x7c, - 0x60,0xff,0xff,0xff,0xff,0xc8,0x76,0xde,0x10,0xff,0xff,0xff,0xff,0xcc,0xe7,0x4b, - 0x10,0xff,0xff,0xff,0xff,0xcd,0xa9,0x17,0x90,0xff,0xff,0xff,0xff,0xce,0xa2,0x43, - 0x10,0xff,0xff,0xff,0xff,0xcf,0x92,0x34,0x10,0xff,0xff,0xff,0xff,0xd0,0x80,0xa9, - 0x60,0xff,0xff,0xff,0xff,0xd0,0x84,0xba,0x0,0xff,0xff,0xff,0xff,0xd1,0x95,0x92, - 0x70,0xff,0xff,0xff,0xff,0xd2,0x8a,0xbb,0x60,0xff,0xff,0xff,0xff,0xd3,0x62,0xff, - 0x70,0xff,0xff,0xff,0xff,0xd4,0x4b,0x23,0x90,0xff,0xff,0xff,0xff,0xd5,0x5e,0xad, - 0x10,0xff,0xff,0xff,0xff,0xd6,0x29,0xb4,0x10,0xff,0xff,0xff,0xff,0xd7,0x2c,0x1a, - 0x10,0xff,0xff,0xff,0xff,0xd8,0x9,0x96,0x10,0xff,0xff,0xff,0xff,0xd9,0x2,0xc1, - 0x90,0xff,0xff,0xff,0xff,0xd9,0xe9,0x78,0x10,0xff,0xff,0xff,0xff,0xe8,0x54,0xd2, - 0x0,0xff,0xff,0xff,0xff,0xe8,0xf1,0xb4,0x80,0xff,0xff,0xff,0xff,0xe9,0xe1,0xa5, - 0x80,0xff,0xff,0xff,0xff,0xea,0xd1,0x96,0x80,0xff,0xff,0xff,0xff,0xec,0x14,0x96, - 0x0,0xff,0xff,0xff,0xff,0xec,0xba,0xb3,0x0,0xff,0xff,0xff,0xff,0xed,0xaa,0xa4, - 0x0,0xff,0xff,0xff,0xff,0xee,0x9a,0x95,0x0,0xff,0xff,0xff,0xff,0xef,0xd4,0x5a, - 0x0,0xff,0xff,0xff,0xff,0xf0,0x7a,0x77,0x0,0xff,0xff,0xff,0xff,0xf1,0xb4,0x3c, - 0x0,0xff,0xff,0xff,0xff,0xf2,0x5a,0x59,0x0,0xff,0xff,0xff,0xff,0xf3,0x94,0x1e, - 0x0,0xff,0xff,0xff,0xff,0xf4,0x3a,0x3b,0x0,0xff,0xff,0xff,0xff,0xf5,0x7d,0x3a, - 0x80,0xff,0xff,0xff,0xff,0xf6,0x1a,0x1d,0x0,0x0,0x0,0x0,0x0,0xd,0x2a,0xfd, - 0x70,0x0,0x0,0x0,0x0,0xd,0xa4,0x55,0x80,0x0,0x0,0x0,0x0,0xe,0x8b,0xc, - 0x0,0x0,0x0,0x0,0x0,0xf,0x84,0x37,0x80,0x0,0x0,0x0,0x0,0x10,0x74,0x28, - 0x80,0x0,0x0,0x0,0x0,0x11,0x64,0x19,0x80,0x0,0x0,0x0,0x0,0x12,0x54,0xa, - 0x80,0x0,0x0,0x0,0x0,0x13,0x4d,0x36,0x0,0x0,0x0,0x0,0x0,0x14,0x33,0xec, - 0x80,0x0,0x0,0x0,0x0,0x15,0x23,0xdd,0x80,0x0,0x0,0x0,0x0,0x16,0x13,0xce, - 0x80,0x0,0x0,0x0,0x0,0x17,0x3,0xbf,0x80,0x0,0x0,0x0,0x0,0x17,0xf3,0xb0, - 0x80,0x0,0x0,0x0,0x0,0x18,0xe3,0xa1,0x80,0x0,0x0,0x0,0x0,0x19,0xd3,0x92, - 0x80,0x0,0x0,0x0,0x0,0x1a,0xc3,0x83,0x80,0x0,0x0,0x0,0x0,0x1b,0xbc,0xaf, - 0x0,0x0,0x0,0x0,0x0,0x1c,0xac,0xa0,0x0,0x0,0x0,0x0,0x0,0x1d,0x9c,0x91, - 0x0,0x0,0x0,0x0,0x0,0x1e,0x8c,0x82,0x0,0x0,0x0,0x0,0x0,0x1f,0x7c,0x73, - 0x0,0x0,0x0,0x0,0x0,0x20,0x6c,0x64,0x0,0x0,0x0,0x0,0x0,0x21,0x5c,0x55, - 0x0,0x0,0x0,0x0,0x0,0x21,0xda,0xd6,0xf0,0x0,0x0,0x0,0x0,0x22,0x4c,0x54, - 0x10,0x0,0x0,0x0,0x0,0x23,0x3c,0x45,0x10,0x0,0x0,0x0,0x0,0x24,0x2c,0x36, - 0x10,0x0,0x0,0x0,0x0,0x25,0x1c,0x27,0x10,0x0,0x0,0x0,0x0,0x26,0xc,0x18, - 0x10,0x0,0x0,0x0,0x0,0x27,0x5,0x43,0x90,0x0,0x0,0x0,0x0,0x27,0xf5,0x34, - 0x90,0x0,0x0,0x0,0x0,0x28,0xe5,0x25,0x90,0x0,0x0,0x0,0x0,0x29,0xd5,0x16, - 0x90,0x0,0x0,0x0,0x0,0x2a,0xc5,0x7,0x90,0x0,0x0,0x0,0x0,0x2b,0xb4,0xf8, - 0x90,0x0,0x0,0x0,0x0,0x2c,0xa4,0xe9,0x90,0x0,0x0,0x0,0x0,0x2d,0x94,0xda, - 0x90,0x0,0x0,0x0,0x0,0x2e,0x84,0xcb,0x90,0x0,0x0,0x0,0x0,0x2f,0x74,0xbc, - 0x90,0x0,0x0,0x0,0x0,0x30,0x64,0xad,0x90,0x0,0x0,0x0,0x0,0x31,0x5d,0xd9, - 0x10,0x0,0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d,0xbb, - 0x10,0x0,0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d,0x9d, - 0x10,0x0,0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd,0x7f, - 0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd,0x61, - 0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd,0x43, - 0x10,0x0,0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f, - 0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86,0x41, - 0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66,0x23, - 0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46,0x5, - 0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25,0xe7, - 0x90,0x0,0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5,0xc9, - 0x90,0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee,0xe6, - 0x10,0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce,0xc8, - 0x10,0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae,0xaa, - 0x10,0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c, - 0x10,0x0,0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e, - 0x10,0x0,0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57,0x8a, - 0x90,0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37,0x6c, - 0x90,0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17,0x4e, - 0x90,0x0,0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7,0x30, - 0x90,0x0,0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7,0x12, - 0x90,0x0,0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4, - 0x90,0x0,0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0,0x11, - 0x10,0x0,0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3, - 0x10,0x0,0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f,0xd5, - 0x10,0x0,0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f,0xb7, - 0x10,0x0,0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f,0x99, - 0x10,0x0,0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8,0xb5, - 0x90,0x0,0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8,0x97, - 0x90,0x0,0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8,0x79, - 0x90,0x0,0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b, - 0x90,0x0,0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88,0x3d, - 0x90,0x0,0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68,0x1f, - 0x90,0x0,0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51,0x3c, - 0x10,0x0,0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31,0x1e, - 0x10,0x0,0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11,0x0, - 0x10,0x0,0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0,0xe2, - 0x10,0x0,0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0,0xc4, - 0x10,0x0,0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6, - 0x10,0x0,0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99,0xc2, - 0x90,0x0,0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79,0xa4, - 0x90,0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x1,0x3,0x2,0x3,0x4,0x5, - 0x4,0x8,0x6,0x7,0x3,0x2,0x5,0x4,0x5,0x4,0x2,0x3,0x2,0x3,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x3,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x3,0x9,0xa, - 0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa, - 0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa, - 0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa, - 0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa, - 0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa, - 0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa, - 0x9,0xa,0x0,0x0,0x13,0xb0,0x0,0x0,0x0,0x0,0x13,0xb0,0x0,0x4,0x0,0x0, - 0x1c,0x20,0x1,0x8,0x0,0x0,0xe,0x10,0x0,0xd,0x0,0x0,0x1c,0x20,0x1,0x8, - 0x0,0x0,0xe,0x10,0x0,0xd,0x0,0x0,0x2a,0x30,0x1,0x11,0x0,0x0,0x1c,0x20, - 0x0,0x16,0x0,0x0,0x1c,0x20,0x0,0x16,0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0, - 0xe,0x10,0x0,0xd,0x4c,0x4d,0x54,0x0,0x57,0x4d,0x54,0x0,0x43,0x45,0x53,0x54, - 0x0,0x43,0x45,0x54,0x0,0x45,0x45,0x53,0x54,0x0,0x45,0x45,0x54,0x0,0x0,0x0, - 0x0,0x0,0x1,0x1,0x1,0x1,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x1,0x1,0xa,0x43,0x45,0x54,0x2d,0x31,0x43,0x45,0x53,0x54,0x2c,0x4d, - 0x33,0x2e,0x35,0x2e,0x30,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30,0x2f,0x33,0xa, - - // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Malta - 0x0,0x0,0xa,0x45, + 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0xb1, + 0xee,0xda,0xfc,0xb4,0xc2,0x9a,0xd0,0xc7,0x91,0x47,0xd8,0xed,0x2f,0xe1,0xd4,0x0, + 0x1,0x2,0x3,0x1,0x0,0x0,0x22,0x84,0x0,0x0,0x0,0x0,0x2a,0x30,0x0,0x4, + 0x0,0x0,0x23,0x28,0x0,0x8,0x0,0x0,0x26,0xac,0x0,0xe,0x0,0x0,0x2a,0x30, + 0x0,0x4,0x4c,0x4d,0x54,0x0,0x45,0x41,0x54,0x0,0x2b,0x30,0x32,0x33,0x30,0x0, + 0x2b,0x30,0x32,0x34,0x35,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0xf8,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xb1,0xee,0xda,0xfc,0xff,0xff,0xff,0xff, + 0xb4,0xc2,0x9a,0xd0,0xff,0xff,0xff,0xff,0xc7,0x91,0x47,0xd8,0xff,0xff,0xff,0xff, + 0xed,0x2f,0xe1,0xd4,0x0,0x1,0x2,0x3,0x1,0x0,0x0,0x22,0x84,0x0,0x0,0x0, + 0x0,0x2a,0x30,0x0,0x4,0x0,0x0,0x23,0x28,0x0,0x8,0x0,0x0,0x26,0xac,0x0, + 0xe,0x0,0x0,0x2a,0x30,0x0,0x4,0x4c,0x4d,0x54,0x0,0x45,0x41,0x54,0x0,0x2b, + 0x30,0x32,0x33,0x30,0x0,0x2b,0x30,0x32,0x34,0x35,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0xa,0x45,0x41,0x54,0x2d,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Kinshasa + 0x0,0x0,0x0,0xab, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xa9,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0x9b, - 0x38,0xf8,0x70,0x9b,0xd5,0xcc,0xe0,0x9c,0xc5,0xcb,0xf0,0x9d,0xb7,0x0,0x60,0x9e, - 0x89,0xfe,0x70,0x9f,0xa0,0x1c,0xe0,0xa0,0x60,0xa5,0xf0,0xa1,0x7e,0xad,0x60,0xa2, - 0x5c,0x37,0x70,0xa3,0x4c,0x1a,0x60,0xc8,0x6c,0x35,0xf0,0xcc,0xe7,0x4b,0x10,0xcd, - 0xa9,0x17,0x90,0xce,0xa2,0x43,0x10,0xcf,0x90,0xe2,0x90,0xd0,0x6e,0x5e,0x90,0xd1, - 0x72,0x16,0x10,0xd2,0x4c,0xd2,0xf0,0xd3,0x3e,0x31,0x90,0xd4,0x49,0xd2,0x10,0xd5, - 0x1d,0xf7,0x70,0xd6,0x29,0x97,0xf0,0xd6,0xeb,0x80,0x90,0xd8,0x9,0x96,0x10,0xf9, - 0x33,0xb5,0xf0,0xf9,0xd9,0xc4,0xe0,0xfb,0x1c,0xd2,0x70,0xfb,0xb9,0xb4,0xf0,0xfc, - 0xfc,0xb4,0x70,0xfd,0x99,0x96,0xf0,0xfe,0xe5,0xd0,0xf0,0xff,0x82,0xb3,0x70,0x0, - 0xc5,0xb2,0xf0,0x1,0x62,0x95,0x70,0x2,0x9c,0x5a,0x70,0x3,0x42,0x77,0x70,0x4, - 0x85,0x76,0xf0,0x5,0x2b,0x93,0xf0,0x6,0x1a,0x33,0x70,0x7,0xa,0x24,0x70,0x8, - 0x17,0x16,0x70,0x8,0xda,0x34,0x70,0x9,0xf7,0x14,0x90,0xa,0xc2,0xd,0x80,0xb, - 0xd6,0xf6,0x90,0xc,0xa1,0xef,0x80,0xd,0xb6,0xd8,0x90,0xe,0x81,0xd1,0x80,0xf, - 0x96,0xba,0x90,0x10,0x61,0xb3,0x80,0x11,0x76,0x9c,0x90,0x12,0x41,0x95,0x80,0x13, - 0x45,0x5b,0x10,0x14,0x2a,0xb2,0x0,0x15,0x23,0xeb,0x90,0x16,0x13,0xdc,0x90,0x17, - 0x3,0xcd,0x90,0x17,0xf3,0xbe,0x90,0x18,0xe3,0xaf,0x90,0x19,0xd3,0xa0,0x90,0x1a, - 0xc3,0x91,0x90,0x1b,0xbc,0xbd,0x10,0x1c,0xac,0xae,0x10,0x1d,0x9c,0x9f,0x10,0x1e, - 0x8c,0x90,0x10,0x1f,0x7c,0x81,0x10,0x20,0x6c,0x72,0x10,0x21,0x5c,0x63,0x10,0x22, - 0x4c,0x54,0x10,0x23,0x3c,0x45,0x10,0x24,0x2c,0x36,0x10,0x25,0x1c,0x27,0x10,0x26, - 0xc,0x18,0x10,0x27,0x5,0x43,0x90,0x27,0xf5,0x34,0x90,0x28,0xe5,0x25,0x90,0x29, - 0xd5,0x16,0x90,0x2a,0xc5,0x7,0x90,0x2b,0xb4,0xf8,0x90,0x2c,0xa4,0xe9,0x90,0x2d, - 0x94,0xda,0x90,0x2e,0x84,0xcb,0x90,0x2f,0x74,0xbc,0x90,0x30,0x64,0xad,0x90,0x31, - 0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34,0x52,0x96,0x10,0x35, - 0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x38, - 0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b,0xdb,0x58,0x90,0x3c, - 0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f,0x9b,0x1c,0x90,0x40, - 0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43,0x64,0x1b,0x10,0x44, - 0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47, - 0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b, - 0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e,0xac,0xa1,0x90,0x4f, - 0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53, - 0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56,0x2c,0x29,0x90,0x56, - 0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59,0xf5,0x28,0x10,0x5a, - 0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d,0xb4,0xec,0x10,0x5e, - 0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61,0x7d,0xea,0x90,0x62, - 0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65,0x3d,0xae,0x90,0x66, - 0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68,0xfd,0x72,0x90,0x69, - 0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c,0xc6,0x71,0x10,0x6d, - 0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70,0x86,0x35,0x10,0x71, - 0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74,0x45,0xf9,0x10,0x75, - 0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78, - 0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c, - 0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x3, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x3,0x4,0x3,0x4,0x3, - 0x1,0x2,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x2,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x0,0x0,0xd,0x9c,0x0,0x0,0x0,0x0, - 0x1c,0x20,0x1,0x4,0x0,0x0,0xe,0x10,0x0,0x9,0x0,0x0,0xe,0x10,0x0,0x9, - 0x0,0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe,0x10, - 0x0,0x9,0x4c,0x4d,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x43,0x45,0x54,0x0,0x0, - 0x0,0x0,0x1,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x54,0x5a,0x69, + 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0xa1, + 0x51,0xf3,0x50,0x0,0x1,0x0,0x0,0x3,0x30,0x0,0x0,0x0,0x0,0xe,0x10,0x0, + 0x4,0x4c,0x4d,0x54,0x0,0x57,0x41,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0xaa,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0xd,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0x70,0xbd,0xd3,0x64,0xff,0xff,0xff,0xff,0x9b,0x38,0xf8, - 0x70,0xff,0xff,0xff,0xff,0x9b,0xd5,0xcc,0xe0,0xff,0xff,0xff,0xff,0x9c,0xc5,0xcb, - 0xf0,0xff,0xff,0xff,0xff,0x9d,0xb7,0x0,0x60,0xff,0xff,0xff,0xff,0x9e,0x89,0xfe, - 0x70,0xff,0xff,0xff,0xff,0x9f,0xa0,0x1c,0xe0,0xff,0xff,0xff,0xff,0xa0,0x60,0xa5, - 0xf0,0xff,0xff,0xff,0xff,0xa1,0x7e,0xad,0x60,0xff,0xff,0xff,0xff,0xa2,0x5c,0x37, - 0x70,0xff,0xff,0xff,0xff,0xa3,0x4c,0x1a,0x60,0xff,0xff,0xff,0xff,0xc8,0x6c,0x35, - 0xf0,0xff,0xff,0xff,0xff,0xcc,0xe7,0x4b,0x10,0xff,0xff,0xff,0xff,0xcd,0xa9,0x17, - 0x90,0xff,0xff,0xff,0xff,0xce,0xa2,0x43,0x10,0xff,0xff,0xff,0xff,0xcf,0x90,0xe2, - 0x90,0xff,0xff,0xff,0xff,0xd0,0x6e,0x5e,0x90,0xff,0xff,0xff,0xff,0xd1,0x72,0x16, - 0x10,0xff,0xff,0xff,0xff,0xd2,0x4c,0xd2,0xf0,0xff,0xff,0xff,0xff,0xd3,0x3e,0x31, - 0x90,0xff,0xff,0xff,0xff,0xd4,0x49,0xd2,0x10,0xff,0xff,0xff,0xff,0xd5,0x1d,0xf7, - 0x70,0xff,0xff,0xff,0xff,0xd6,0x29,0x97,0xf0,0xff,0xff,0xff,0xff,0xd6,0xeb,0x80, - 0x90,0xff,0xff,0xff,0xff,0xd8,0x9,0x96,0x10,0xff,0xff,0xff,0xff,0xf9,0x33,0xb5, - 0xf0,0xff,0xff,0xff,0xff,0xf9,0xd9,0xc4,0xe0,0xff,0xff,0xff,0xff,0xfb,0x1c,0xd2, - 0x70,0xff,0xff,0xff,0xff,0xfb,0xb9,0xb4,0xf0,0xff,0xff,0xff,0xff,0xfc,0xfc,0xb4, - 0x70,0xff,0xff,0xff,0xff,0xfd,0x99,0x96,0xf0,0xff,0xff,0xff,0xff,0xfe,0xe5,0xd0, - 0xf0,0xff,0xff,0xff,0xff,0xff,0x82,0xb3,0x70,0x0,0x0,0x0,0x0,0x0,0xc5,0xb2, - 0xf0,0x0,0x0,0x0,0x0,0x1,0x62,0x95,0x70,0x0,0x0,0x0,0x0,0x2,0x9c,0x5a, - 0x70,0x0,0x0,0x0,0x0,0x3,0x42,0x77,0x70,0x0,0x0,0x0,0x0,0x4,0x85,0x76, - 0xf0,0x0,0x0,0x0,0x0,0x5,0x2b,0x93,0xf0,0x0,0x0,0x0,0x0,0x6,0x1a,0x33, - 0x70,0x0,0x0,0x0,0x0,0x7,0xa,0x24,0x70,0x0,0x0,0x0,0x0,0x8,0x17,0x16, - 0x70,0x0,0x0,0x0,0x0,0x8,0xda,0x34,0x70,0x0,0x0,0x0,0x0,0x9,0xf7,0x14, - 0x90,0x0,0x0,0x0,0x0,0xa,0xc2,0xd,0x80,0x0,0x0,0x0,0x0,0xb,0xd6,0xf6, - 0x90,0x0,0x0,0x0,0x0,0xc,0xa1,0xef,0x80,0x0,0x0,0x0,0x0,0xd,0xb6,0xd8, - 0x90,0x0,0x0,0x0,0x0,0xe,0x81,0xd1,0x80,0x0,0x0,0x0,0x0,0xf,0x96,0xba, - 0x90,0x0,0x0,0x0,0x0,0x10,0x61,0xb3,0x80,0x0,0x0,0x0,0x0,0x11,0x76,0x9c, - 0x90,0x0,0x0,0x0,0x0,0x12,0x41,0x95,0x80,0x0,0x0,0x0,0x0,0x13,0x45,0x5b, - 0x10,0x0,0x0,0x0,0x0,0x14,0x2a,0xb2,0x0,0x0,0x0,0x0,0x0,0x15,0x23,0xeb, - 0x90,0x0,0x0,0x0,0x0,0x16,0x13,0xdc,0x90,0x0,0x0,0x0,0x0,0x17,0x3,0xcd, - 0x90,0x0,0x0,0x0,0x0,0x17,0xf3,0xbe,0x90,0x0,0x0,0x0,0x0,0x18,0xe3,0xaf, - 0x90,0x0,0x0,0x0,0x0,0x19,0xd3,0xa0,0x90,0x0,0x0,0x0,0x0,0x1a,0xc3,0x91, - 0x90,0x0,0x0,0x0,0x0,0x1b,0xbc,0xbd,0x10,0x0,0x0,0x0,0x0,0x1c,0xac,0xae, - 0x10,0x0,0x0,0x0,0x0,0x1d,0x9c,0x9f,0x10,0x0,0x0,0x0,0x0,0x1e,0x8c,0x90, - 0x10,0x0,0x0,0x0,0x0,0x1f,0x7c,0x81,0x10,0x0,0x0,0x0,0x0,0x20,0x6c,0x72, - 0x10,0x0,0x0,0x0,0x0,0x21,0x5c,0x63,0x10,0x0,0x0,0x0,0x0,0x22,0x4c,0x54, - 0x10,0x0,0x0,0x0,0x0,0x23,0x3c,0x45,0x10,0x0,0x0,0x0,0x0,0x24,0x2c,0x36, - 0x10,0x0,0x0,0x0,0x0,0x25,0x1c,0x27,0x10,0x0,0x0,0x0,0x0,0x26,0xc,0x18, - 0x10,0x0,0x0,0x0,0x0,0x27,0x5,0x43,0x90,0x0,0x0,0x0,0x0,0x27,0xf5,0x34, - 0x90,0x0,0x0,0x0,0x0,0x28,0xe5,0x25,0x90,0x0,0x0,0x0,0x0,0x29,0xd5,0x16, - 0x90,0x0,0x0,0x0,0x0,0x2a,0xc5,0x7,0x90,0x0,0x0,0x0,0x0,0x2b,0xb4,0xf8, - 0x90,0x0,0x0,0x0,0x0,0x2c,0xa4,0xe9,0x90,0x0,0x0,0x0,0x0,0x2d,0x94,0xda, - 0x90,0x0,0x0,0x0,0x0,0x2e,0x84,0xcb,0x90,0x0,0x0,0x0,0x0,0x2f,0x74,0xbc, - 0x90,0x0,0x0,0x0,0x0,0x30,0x64,0xad,0x90,0x0,0x0,0x0,0x0,0x31,0x5d,0xd9, - 0x10,0x0,0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d,0xbb, - 0x10,0x0,0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d,0x9d, - 0x10,0x0,0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd,0x7f, - 0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd,0x61, - 0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd,0x43, - 0x10,0x0,0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f, - 0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86,0x41, - 0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66,0x23, - 0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46,0x5, - 0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25,0xe7, - 0x90,0x0,0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5,0xc9, - 0x90,0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee,0xe6, - 0x10,0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce,0xc8, - 0x10,0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae,0xaa, - 0x10,0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c, - 0x10,0x0,0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e, - 0x10,0x0,0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57,0x8a, - 0x90,0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37,0x6c, - 0x90,0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17,0x4e, - 0x90,0x0,0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7,0x30, - 0x90,0x0,0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7,0x12, - 0x90,0x0,0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4, - 0x90,0x0,0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0,0x11, - 0x10,0x0,0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3, - 0x10,0x0,0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f,0xd5, - 0x10,0x0,0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f,0xb7, - 0x10,0x0,0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f,0x99, - 0x10,0x0,0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8,0xb5, - 0x90,0x0,0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8,0x97, - 0x90,0x0,0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8,0x79, - 0x90,0x0,0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b, - 0x90,0x0,0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88,0x3d, - 0x90,0x0,0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68,0x1f, - 0x90,0x0,0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51,0x3c, - 0x10,0x0,0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31,0x1e, - 0x10,0x0,0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11,0x0, - 0x10,0x0,0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0,0xe2, - 0x10,0x0,0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0,0xc4, - 0x10,0x0,0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6, - 0x10,0x0,0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99,0xc2, - 0x90,0x0,0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79,0xa4, - 0x90,0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x3,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x3,0x4,0x3,0x4,0x3,0x1,0x2,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x2,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x0,0x0,0xd,0x9c,0x0,0x0,0x0,0x0,0x1c,0x20,0x1,0x4,0x0, - 0x0,0xe,0x10,0x0,0x9,0x0,0x0,0xe,0x10,0x0,0x9,0x0,0x0,0x1c,0x20,0x1, - 0x4,0x0,0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe,0x10,0x0,0x9,0x4c,0x4d,0x54, - 0x0,0x43,0x45,0x53,0x54,0x0,0x43,0x45,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x1, - 0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0xa,0x43,0x45,0x54,0x2d,0x31,0x43,0x45, - 0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e, - 0x30,0x2f,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Ulyanovsk - 0x0,0x0,0x5,0x1, + 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0xa1,0x51,0xf3,0x50,0x0,0x1,0x0,0x0,0x3,0x30,0x0, + 0x0,0x0,0x0,0xe,0x10,0x0,0x4,0x4c,0x4d,0x54,0x0,0x57,0x41,0x54,0x0,0x0, + 0x0,0x0,0x0,0xa,0x57,0x41,0x54,0x2d,0x31,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Accra + 0x0,0x0,0x3,0x4a, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x44,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0xa1, - 0x0,0x39,0x80,0xb5,0xa4,0xb,0x50,0x15,0x27,0x99,0xc0,0x16,0x18,0xce,0x30,0x17, - 0x8,0xcd,0x40,0x17,0xfa,0x1,0xb0,0x18,0xea,0x0,0xc0,0x19,0xdb,0x35,0x30,0x1a, - 0xcc,0x85,0xc0,0x1b,0xbc,0x92,0xe0,0x1c,0xac,0x83,0xe0,0x1d,0x9c,0x74,0xe0,0x1e, - 0x8c,0x65,0xe0,0x1f,0x7c,0x56,0xe0,0x20,0x6c,0x47,0xe0,0x21,0x5c,0x38,0xe0,0x22, - 0x4c,0x29,0xe0,0x23,0x3c,0x1a,0xe0,0x24,0x2c,0xb,0xe0,0x25,0x1c,0xa,0xf0,0x26, - 0xb,0xfb,0xf0,0x27,0x5,0x27,0x70,0x27,0xf5,0x18,0x70,0x28,0xe5,0x17,0x80,0x29, - 0x78,0xbf,0x80,0x29,0xd4,0xfa,0x70,0x2a,0xc4,0xeb,0x70,0x2b,0xb4,0xdc,0x70,0x2c, - 0xa4,0xcd,0x70,0x2d,0x94,0xbe,0x70,0x2e,0x84,0xaf,0x70,0x2f,0x74,0xa0,0x70,0x30, - 0x64,0x91,0x70,0x31,0x5d,0xbc,0xf0,0x32,0x72,0x97,0xf0,0x33,0x3d,0x9e,0xf0,0x34, - 0x52,0x79,0xf0,0x35,0x1d,0x80,0xf0,0x36,0x32,0x5b,0xf0,0x36,0xfd,0x62,0xf0,0x38, - 0x1b,0x78,0x70,0x38,0xdd,0x44,0xf0,0x39,0xfb,0x5a,0x70,0x3a,0xbd,0x26,0xf0,0x3b, - 0xdb,0x3c,0x70,0x3c,0xa6,0x43,0x70,0x3d,0xbb,0x1e,0x70,0x3e,0x86,0x25,0x70,0x3f, - 0x9b,0x0,0x70,0x40,0x66,0x7,0x70,0x41,0x84,0x1c,0xf0,0x42,0x45,0xe9,0x70,0x43, - 0x63,0xfe,0xf0,0x44,0x25,0xcb,0x70,0x45,0x43,0xe0,0xf0,0x46,0x5,0xad,0x70,0x47, - 0x23,0xc2,0xf0,0x47,0xee,0xc9,0xf0,0x49,0x3,0xa4,0xf0,0x49,0xce,0xab,0xf0,0x4a, - 0xe3,0x86,0xf0,0x4b,0xae,0x8d,0xf0,0x4c,0xcc,0xa3,0x70,0x4d,0x8e,0x6f,0xf0,0x54, - 0x4c,0x1d,0x60,0x56,0xf7,0x14,0x70,0x7f,0xff,0xff,0xff,0x0,0x1,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x6,0x7, - 0x6,0x7,0x8,0x9,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, - 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, - 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x4,0x7,0x4,0x4,0x0, - 0x0,0x2d,0x60,0x0,0x0,0x0,0x0,0x2a,0x30,0x0,0x4,0x0,0x0,0x46,0x50,0x1, - 0x8,0x0,0x0,0x38,0x40,0x0,0xc,0x0,0x0,0x38,0x40,0x0,0xc,0x0,0x0,0x46, - 0x50,0x1,0x8,0x0,0x0,0x38,0x40,0x1,0xc,0x0,0x0,0x2a,0x30,0x0,0x4,0x0, - 0x0,0x2a,0x30,0x1,0x4,0x0,0x0,0x1c,0x20,0x0,0x10,0x0,0x0,0x38,0x40,0x1, - 0xc,0x0,0x0,0x38,0x40,0x0,0xc,0x4c,0x4d,0x54,0x0,0x2b,0x30,0x33,0x0,0x2b, - 0x30,0x35,0x0,0x2b,0x30,0x34,0x0,0x2b,0x30,0x32,0x0,0x0,0x1,0x0,0x0,0x1, - 0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0xc,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x44,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x14,0xf8, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xa1,0x0,0x39,0x80,0xff, - 0xff,0xff,0xff,0xb5,0xa4,0xb,0x50,0x0,0x0,0x0,0x0,0x15,0x27,0x99,0xc0,0x0, - 0x0,0x0,0x0,0x16,0x18,0xce,0x30,0x0,0x0,0x0,0x0,0x17,0x8,0xcd,0x40,0x0, - 0x0,0x0,0x0,0x17,0xfa,0x1,0xb0,0x0,0x0,0x0,0x0,0x18,0xea,0x0,0xc0,0x0, - 0x0,0x0,0x0,0x19,0xdb,0x35,0x30,0x0,0x0,0x0,0x0,0x1a,0xcc,0x85,0xc0,0x0, - 0x0,0x0,0x0,0x1b,0xbc,0x92,0xe0,0x0,0x0,0x0,0x0,0x1c,0xac,0x83,0xe0,0x0, - 0x0,0x0,0x0,0x1d,0x9c,0x74,0xe0,0x0,0x0,0x0,0x0,0x1e,0x8c,0x65,0xe0,0x0, - 0x0,0x0,0x0,0x1f,0x7c,0x56,0xe0,0x0,0x0,0x0,0x0,0x20,0x6c,0x47,0xe0,0x0, - 0x0,0x0,0x0,0x21,0x5c,0x38,0xe0,0x0,0x0,0x0,0x0,0x22,0x4c,0x29,0xe0,0x0, - 0x0,0x0,0x0,0x23,0x3c,0x1a,0xe0,0x0,0x0,0x0,0x0,0x24,0x2c,0xb,0xe0,0x0, - 0x0,0x0,0x0,0x25,0x1c,0xa,0xf0,0x0,0x0,0x0,0x0,0x26,0xb,0xfb,0xf0,0x0, - 0x0,0x0,0x0,0x27,0x5,0x27,0x70,0x0,0x0,0x0,0x0,0x27,0xf5,0x18,0x70,0x0, - 0x0,0x0,0x0,0x28,0xe5,0x17,0x80,0x0,0x0,0x0,0x0,0x29,0x78,0xbf,0x80,0x0, - 0x0,0x0,0x0,0x29,0xd4,0xfa,0x70,0x0,0x0,0x0,0x0,0x2a,0xc4,0xeb,0x70,0x0, - 0x0,0x0,0x0,0x2b,0xb4,0xdc,0x70,0x0,0x0,0x0,0x0,0x2c,0xa4,0xcd,0x70,0x0, - 0x0,0x0,0x0,0x2d,0x94,0xbe,0x70,0x0,0x0,0x0,0x0,0x2e,0x84,0xaf,0x70,0x0, - 0x0,0x0,0x0,0x2f,0x74,0xa0,0x70,0x0,0x0,0x0,0x0,0x30,0x64,0x91,0x70,0x0, - 0x0,0x0,0x0,0x31,0x5d,0xbc,0xf0,0x0,0x0,0x0,0x0,0x32,0x72,0x97,0xf0,0x0, - 0x0,0x0,0x0,0x33,0x3d,0x9e,0xf0,0x0,0x0,0x0,0x0,0x34,0x52,0x79,0xf0,0x0, - 0x0,0x0,0x0,0x35,0x1d,0x80,0xf0,0x0,0x0,0x0,0x0,0x36,0x32,0x5b,0xf0,0x0, - 0x0,0x0,0x0,0x36,0xfd,0x62,0xf0,0x0,0x0,0x0,0x0,0x38,0x1b,0x78,0x70,0x0, - 0x0,0x0,0x0,0x38,0xdd,0x44,0xf0,0x0,0x0,0x0,0x0,0x39,0xfb,0x5a,0x70,0x0, - 0x0,0x0,0x0,0x3a,0xbd,0x26,0xf0,0x0,0x0,0x0,0x0,0x3b,0xdb,0x3c,0x70,0x0, - 0x0,0x0,0x0,0x3c,0xa6,0x43,0x70,0x0,0x0,0x0,0x0,0x3d,0xbb,0x1e,0x70,0x0, - 0x0,0x0,0x0,0x3e,0x86,0x25,0x70,0x0,0x0,0x0,0x0,0x3f,0x9b,0x0,0x70,0x0, - 0x0,0x0,0x0,0x40,0x66,0x7,0x70,0x0,0x0,0x0,0x0,0x41,0x84,0x1c,0xf0,0x0, - 0x0,0x0,0x0,0x42,0x45,0xe9,0x70,0x0,0x0,0x0,0x0,0x43,0x63,0xfe,0xf0,0x0, - 0x0,0x0,0x0,0x44,0x25,0xcb,0x70,0x0,0x0,0x0,0x0,0x45,0x43,0xe0,0xf0,0x0, - 0x0,0x0,0x0,0x46,0x5,0xad,0x70,0x0,0x0,0x0,0x0,0x47,0x23,0xc2,0xf0,0x0, - 0x0,0x0,0x0,0x47,0xee,0xc9,0xf0,0x0,0x0,0x0,0x0,0x49,0x3,0xa4,0xf0,0x0, - 0x0,0x0,0x0,0x49,0xce,0xab,0xf0,0x0,0x0,0x0,0x0,0x4a,0xe3,0x86,0xf0,0x0, - 0x0,0x0,0x0,0x4b,0xae,0x8d,0xf0,0x0,0x0,0x0,0x0,0x4c,0xcc,0xa3,0x70,0x0, - 0x0,0x0,0x0,0x4d,0x8e,0x6f,0xf0,0x0,0x0,0x0,0x0,0x54,0x4c,0x1d,0x60,0x0, - 0x0,0x0,0x0,0x56,0xf7,0x14,0x70,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0, - 0x1,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x6,0x7,0x6,0x7,0x8,0x9,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, - 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, - 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x4, - 0x7,0x4,0x4,0x0,0x0,0x2d,0x60,0x0,0x0,0x0,0x0,0x2a,0x30,0x0,0x4,0x0, - 0x0,0x46,0x50,0x1,0x8,0x0,0x0,0x38,0x40,0x0,0xc,0x0,0x0,0x38,0x40,0x0, - 0xc,0x0,0x0,0x46,0x50,0x1,0x8,0x0,0x0,0x38,0x40,0x1,0xc,0x0,0x0,0x2a, - 0x30,0x0,0x4,0x0,0x0,0x2a,0x30,0x1,0x4,0x0,0x0,0x1c,0x20,0x0,0x10,0x0, - 0x0,0x38,0x40,0x1,0xc,0x0,0x0,0x38,0x40,0x0,0xc,0x4c,0x4d,0x54,0x0,0x2b, - 0x30,0x33,0x0,0x2b,0x30,0x35,0x0,0x2b,0x30,0x34,0x0,0x2b,0x30,0x32,0x0,0x0, - 0x1,0x0,0x0,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x0,0x1,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2b,0x30,0x34,0x3e,0x2d,0x34,0xa, - - // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Vienna - 0x0,0x0,0x8,0xbd, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x30,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xe,0x80,0x0,0x0,0x0,0x9e, + 0x30,0x66,0xb4,0xa3,0x34,0x7b,0x80,0xa3,0xd3,0xfc,0x50,0xa5,0x15,0xaf,0x0,0xa5, + 0xb5,0x2f,0xd0,0xa6,0xf6,0xe2,0x80,0xa7,0x96,0x63,0x50,0xa8,0xd8,0x16,0x0,0xa9, + 0x77,0x96,0xd0,0xaa,0xba,0x9b,0x0,0xab,0x5a,0x1b,0xd0,0xac,0x9b,0xce,0x80,0xad, + 0x3b,0x4f,0x50,0xae,0x7d,0x2,0x0,0xaf,0x1c,0x82,0xd0,0xb0,0x5e,0x35,0x80,0xb0, + 0xfd,0xb6,0x50,0xb2,0x40,0xba,0x80,0xb2,0xe0,0x3b,0x50,0xb4,0x21,0xee,0x0,0xb4, + 0xc1,0x6e,0xd0,0xb6,0x3,0x21,0x80,0xb6,0xa2,0xa2,0x50,0xb7,0xe4,0x55,0x0,0xb8, + 0x83,0xd5,0xd0,0xb9,0xc6,0xda,0x0,0xba,0x66,0x5a,0xd0,0xbb,0xa8,0xd,0x80,0xbc, + 0x47,0x8e,0x50,0xbd,0x89,0x41,0x0,0xbe,0x28,0xc1,0xd0,0xbf,0x6a,0x74,0x80,0xc0, + 0x9,0xf5,0x50,0xc1,0x4c,0xf9,0x80,0xc1,0xec,0x7a,0x50,0xc3,0x2e,0x2d,0x0,0xc3, + 0xcd,0xad,0xd0,0xc5,0xf,0x60,0x80,0xc5,0xae,0xe1,0x50,0xc6,0xf0,0x94,0x0,0xc7, + 0x90,0x14,0xd0,0xc8,0xd3,0x19,0x0,0xc9,0x72,0x99,0xd0,0xca,0xb4,0x4c,0x80,0xcb, + 0x53,0xcd,0x50,0xcc,0x95,0x80,0x0,0xcd,0x35,0x0,0xd0,0x0,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0xff,0xcc,0x0, + 0x0,0x0,0x0,0x4,0xb0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0xa,0x4c,0x4d,0x54, + 0x0,0x2b,0x30,0x30,0x32,0x30,0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x30,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xe,0xf8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x9e,0x30,0x66,0xb4,0xff,0xff,0xff, + 0xff,0xa3,0x34,0x7b,0x80,0xff,0xff,0xff,0xff,0xa3,0xd3,0xfc,0x50,0xff,0xff,0xff, + 0xff,0xa5,0x15,0xaf,0x0,0xff,0xff,0xff,0xff,0xa5,0xb5,0x2f,0xd0,0xff,0xff,0xff, + 0xff,0xa6,0xf6,0xe2,0x80,0xff,0xff,0xff,0xff,0xa7,0x96,0x63,0x50,0xff,0xff,0xff, + 0xff,0xa8,0xd8,0x16,0x0,0xff,0xff,0xff,0xff,0xa9,0x77,0x96,0xd0,0xff,0xff,0xff, + 0xff,0xaa,0xba,0x9b,0x0,0xff,0xff,0xff,0xff,0xab,0x5a,0x1b,0xd0,0xff,0xff,0xff, + 0xff,0xac,0x9b,0xce,0x80,0xff,0xff,0xff,0xff,0xad,0x3b,0x4f,0x50,0xff,0xff,0xff, + 0xff,0xae,0x7d,0x2,0x0,0xff,0xff,0xff,0xff,0xaf,0x1c,0x82,0xd0,0xff,0xff,0xff, + 0xff,0xb0,0x5e,0x35,0x80,0xff,0xff,0xff,0xff,0xb0,0xfd,0xb6,0x50,0xff,0xff,0xff, + 0xff,0xb2,0x40,0xba,0x80,0xff,0xff,0xff,0xff,0xb2,0xe0,0x3b,0x50,0xff,0xff,0xff, + 0xff,0xb4,0x21,0xee,0x0,0xff,0xff,0xff,0xff,0xb4,0xc1,0x6e,0xd0,0xff,0xff,0xff, + 0xff,0xb6,0x3,0x21,0x80,0xff,0xff,0xff,0xff,0xb6,0xa2,0xa2,0x50,0xff,0xff,0xff, + 0xff,0xb7,0xe4,0x55,0x0,0xff,0xff,0xff,0xff,0xb8,0x83,0xd5,0xd0,0xff,0xff,0xff, + 0xff,0xb9,0xc6,0xda,0x0,0xff,0xff,0xff,0xff,0xba,0x66,0x5a,0xd0,0xff,0xff,0xff, + 0xff,0xbb,0xa8,0xd,0x80,0xff,0xff,0xff,0xff,0xbc,0x47,0x8e,0x50,0xff,0xff,0xff, + 0xff,0xbd,0x89,0x41,0x0,0xff,0xff,0xff,0xff,0xbe,0x28,0xc1,0xd0,0xff,0xff,0xff, + 0xff,0xbf,0x6a,0x74,0x80,0xff,0xff,0xff,0xff,0xc0,0x9,0xf5,0x50,0xff,0xff,0xff, + 0xff,0xc1,0x4c,0xf9,0x80,0xff,0xff,0xff,0xff,0xc1,0xec,0x7a,0x50,0xff,0xff,0xff, + 0xff,0xc3,0x2e,0x2d,0x0,0xff,0xff,0xff,0xff,0xc3,0xcd,0xad,0xd0,0xff,0xff,0xff, + 0xff,0xc5,0xf,0x60,0x80,0xff,0xff,0xff,0xff,0xc5,0xae,0xe1,0x50,0xff,0xff,0xff, + 0xff,0xc6,0xf0,0x94,0x0,0xff,0xff,0xff,0xff,0xc7,0x90,0x14,0xd0,0xff,0xff,0xff, + 0xff,0xc8,0xd3,0x19,0x0,0xff,0xff,0xff,0xff,0xc9,0x72,0x99,0xd0,0xff,0xff,0xff, + 0xff,0xca,0xb4,0x4c,0x80,0xff,0xff,0xff,0xff,0xcb,0x53,0xcd,0x50,0xff,0xff,0xff, + 0xff,0xcc,0x95,0x80,0x0,0xff,0xff,0xff,0xff,0xcd,0x35,0x0,0xd0,0x0,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0xff, + 0xcc,0x0,0x0,0x0,0x0,0x4,0xb0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0xa,0x4c, + 0x4d,0x54,0x0,0x2b,0x30,0x30,0x32,0x30,0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0xa,0x47,0x4d,0x54,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Kampala + 0x0,0x0,0x1,0x1d, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x8d,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0x9b, - 0xc,0x17,0x60,0x9b,0xd5,0xda,0xf0,0x9c,0xd9,0xae,0x90,0x9d,0xa4,0xb5,0x90,0x9e, - 0xb9,0x90,0x90,0x9f,0x84,0x97,0x90,0xa1,0xf2,0xbf,0x70,0xa2,0x70,0x1a,0x10,0xa3, - 0x44,0x5b,0x90,0xc8,0x9,0x71,0x90,0xcc,0xe7,0x4b,0x10,0xcd,0xa9,0x17,0x90,0xce, - 0xa2,0x43,0x10,0xcf,0x92,0x34,0x10,0xd0,0x82,0x25,0x10,0xd1,0x72,0x16,0x10,0xd1, - 0x7f,0x45,0x10,0xd2,0xdb,0x34,0xf0,0xd3,0x63,0x1b,0x90,0xd4,0x49,0xd2,0x10,0xd5, - 0x39,0xc3,0x10,0xd6,0x29,0xb4,0x10,0xd7,0x2c,0x1a,0x10,0xd8,0x9,0x96,0x10,0x13, - 0x4d,0x27,0xf0,0x14,0x33,0xd0,0x60,0x15,0x23,0xeb,0x90,0x16,0x13,0xdc,0x90,0x17, - 0x3,0xcd,0x90,0x17,0xf3,0xbe,0x90,0x18,0xe3,0xaf,0x90,0x19,0xd3,0xa0,0x90,0x1a, - 0xc3,0x91,0x90,0x1b,0xbc,0xbd,0x10,0x1c,0xac,0xae,0x10,0x1d,0x9c,0x9f,0x10,0x1e, - 0x8c,0x90,0x10,0x1f,0x7c,0x81,0x10,0x20,0x6c,0x72,0x10,0x21,0x5c,0x63,0x10,0x22, - 0x4c,0x54,0x10,0x23,0x3c,0x45,0x10,0x24,0x2c,0x36,0x10,0x25,0x1c,0x27,0x10,0x26, - 0xc,0x18,0x10,0x27,0x5,0x43,0x90,0x27,0xf5,0x34,0x90,0x28,0xe5,0x25,0x90,0x29, - 0xd5,0x16,0x90,0x2a,0xc5,0x7,0x90,0x2b,0xb4,0xf8,0x90,0x2c,0xa4,0xe9,0x90,0x2d, - 0x94,0xda,0x90,0x2e,0x84,0xcb,0x90,0x2f,0x74,0xbc,0x90,0x30,0x64,0xad,0x90,0x31, - 0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34,0x52,0x96,0x10,0x35, - 0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x38, - 0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b,0xdb,0x58,0x90,0x3c, - 0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f,0x9b,0x1c,0x90,0x40, - 0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43,0x64,0x1b,0x10,0x44, - 0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47, - 0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b, - 0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e,0xac,0xa1,0x90,0x4f, - 0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53, - 0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56,0x2c,0x29,0x90,0x56, - 0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59,0xf5,0x28,0x10,0x5a, - 0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d,0xb4,0xec,0x10,0x5e, - 0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61,0x7d,0xea,0x90,0x62, - 0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65,0x3d,0xae,0x90,0x66, - 0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68,0xfd,0x72,0x90,0x69, - 0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c,0xc6,0x71,0x10,0x6d, - 0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70,0x86,0x35,0x10,0x71, - 0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74,0x45,0xf9,0x10,0x75, - 0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78, - 0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c, - 0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x2, - 0x1,0x2,0x3,0x4,0x3,0x4,0x2,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x2,0x3,0x4,0x3,0x4,0x3,0x4,0x1,0x2,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x0,0x0,0xf,0x51, - 0x0,0x0,0x0,0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe,0x10,0x0,0x9,0x0,0x0, - 0x1c,0x20,0x1,0x4,0x0,0x0,0xe,0x10,0x0,0x9,0x0,0x0,0x1c,0x20,0x1,0x4, - 0x0,0x0,0xe,0x10,0x0,0x9,0x4c,0x4d,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x43, - 0x45,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x1, - 0x1,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x8e,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0xd,0xf8,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x6f,0xa2,0x5f,0x2f,0xff,0xff,0xff, - 0xff,0x9b,0xc,0x17,0x60,0xff,0xff,0xff,0xff,0x9b,0xd5,0xda,0xf0,0xff,0xff,0xff, - 0xff,0x9c,0xd9,0xae,0x90,0xff,0xff,0xff,0xff,0x9d,0xa4,0xb5,0x90,0xff,0xff,0xff, - 0xff,0x9e,0xb9,0x90,0x90,0xff,0xff,0xff,0xff,0x9f,0x84,0x97,0x90,0xff,0xff,0xff, - 0xff,0xa1,0xf2,0xbf,0x70,0xff,0xff,0xff,0xff,0xa2,0x70,0x1a,0x10,0xff,0xff,0xff, - 0xff,0xa3,0x44,0x5b,0x90,0xff,0xff,0xff,0xff,0xc8,0x9,0x71,0x90,0xff,0xff,0xff, - 0xff,0xcc,0xe7,0x4b,0x10,0xff,0xff,0xff,0xff,0xcd,0xa9,0x17,0x90,0xff,0xff,0xff, - 0xff,0xce,0xa2,0x43,0x10,0xff,0xff,0xff,0xff,0xcf,0x92,0x34,0x10,0xff,0xff,0xff, - 0xff,0xd0,0x82,0x25,0x10,0xff,0xff,0xff,0xff,0xd1,0x72,0x16,0x10,0xff,0xff,0xff, - 0xff,0xd1,0x7f,0x45,0x10,0xff,0xff,0xff,0xff,0xd2,0xdb,0x34,0xf0,0xff,0xff,0xff, - 0xff,0xd3,0x63,0x1b,0x90,0xff,0xff,0xff,0xff,0xd4,0x49,0xd2,0x10,0xff,0xff,0xff, - 0xff,0xd5,0x39,0xc3,0x10,0xff,0xff,0xff,0xff,0xd6,0x29,0xb4,0x10,0xff,0xff,0xff, - 0xff,0xd7,0x2c,0x1a,0x10,0xff,0xff,0xff,0xff,0xd8,0x9,0x96,0x10,0x0,0x0,0x0, - 0x0,0x13,0x4d,0x27,0xf0,0x0,0x0,0x0,0x0,0x14,0x33,0xd0,0x60,0x0,0x0,0x0, - 0x0,0x15,0x23,0xeb,0x90,0x0,0x0,0x0,0x0,0x16,0x13,0xdc,0x90,0x0,0x0,0x0, - 0x0,0x17,0x3,0xcd,0x90,0x0,0x0,0x0,0x0,0x17,0xf3,0xbe,0x90,0x0,0x0,0x0, - 0x0,0x18,0xe3,0xaf,0x90,0x0,0x0,0x0,0x0,0x19,0xd3,0xa0,0x90,0x0,0x0,0x0, - 0x0,0x1a,0xc3,0x91,0x90,0x0,0x0,0x0,0x0,0x1b,0xbc,0xbd,0x10,0x0,0x0,0x0, - 0x0,0x1c,0xac,0xae,0x10,0x0,0x0,0x0,0x0,0x1d,0x9c,0x9f,0x10,0x0,0x0,0x0, - 0x0,0x1e,0x8c,0x90,0x10,0x0,0x0,0x0,0x0,0x1f,0x7c,0x81,0x10,0x0,0x0,0x0, - 0x0,0x20,0x6c,0x72,0x10,0x0,0x0,0x0,0x0,0x21,0x5c,0x63,0x10,0x0,0x0,0x0, - 0x0,0x22,0x4c,0x54,0x10,0x0,0x0,0x0,0x0,0x23,0x3c,0x45,0x10,0x0,0x0,0x0, - 0x0,0x24,0x2c,0x36,0x10,0x0,0x0,0x0,0x0,0x25,0x1c,0x27,0x10,0x0,0x0,0x0, - 0x0,0x26,0xc,0x18,0x10,0x0,0x0,0x0,0x0,0x27,0x5,0x43,0x90,0x0,0x0,0x0, - 0x0,0x27,0xf5,0x34,0x90,0x0,0x0,0x0,0x0,0x28,0xe5,0x25,0x90,0x0,0x0,0x0, - 0x0,0x29,0xd5,0x16,0x90,0x0,0x0,0x0,0x0,0x2a,0xc5,0x7,0x90,0x0,0x0,0x0, - 0x0,0x2b,0xb4,0xf8,0x90,0x0,0x0,0x0,0x0,0x2c,0xa4,0xe9,0x90,0x0,0x0,0x0, - 0x0,0x2d,0x94,0xda,0x90,0x0,0x0,0x0,0x0,0x2e,0x84,0xcb,0x90,0x0,0x0,0x0, - 0x0,0x2f,0x74,0xbc,0x90,0x0,0x0,0x0,0x0,0x30,0x64,0xad,0x90,0x0,0x0,0x0, - 0x0,0x31,0x5d,0xd9,0x10,0x0,0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0,0x0, - 0x0,0x33,0x3d,0xbb,0x10,0x0,0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0,0x0, - 0x0,0x35,0x1d,0x9d,0x10,0x0,0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0, - 0x0,0x36,0xfd,0x7f,0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0, - 0x0,0x38,0xdd,0x61,0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0,0x0, - 0x0,0x3a,0xbd,0x43,0x10,0x0,0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0, - 0x0,0x3c,0xa6,0x5f,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0, - 0x0,0x3e,0x86,0x41,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0, - 0x0,0x40,0x66,0x23,0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0, - 0x0,0x42,0x46,0x5,0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0, - 0x0,0x44,0x25,0xe7,0x90,0x0,0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0, - 0x0,0x46,0x5,0xc9,0x90,0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0, - 0x0,0x47,0xee,0xe6,0x10,0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0, - 0x0,0x49,0xce,0xc8,0x10,0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0, - 0x0,0x4b,0xae,0xaa,0x10,0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0, - 0x0,0x4d,0x8e,0x8c,0x10,0x0,0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0, - 0x0,0x4f,0x6e,0x6e,0x10,0x0,0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0, - 0x0,0x51,0x57,0x8a,0x90,0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0, - 0x0,0x53,0x37,0x6c,0x90,0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0, - 0x0,0x55,0x17,0x4e,0x90,0x0,0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0, - 0x0,0x56,0xf7,0x30,0x90,0x0,0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0, - 0x0,0x58,0xd7,0x12,0x90,0x0,0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0, - 0x0,0x5a,0xb6,0xf4,0x90,0x0,0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0, - 0x0,0x5c,0xa0,0x11,0x10,0x0,0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0, - 0x0,0x5e,0x7f,0xf3,0x10,0x0,0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0, - 0x0,0x60,0x5f,0xd5,0x10,0x0,0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0, - 0x0,0x62,0x3f,0xb7,0x10,0x0,0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0, - 0x0,0x64,0x1f,0x99,0x10,0x0,0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0, - 0x0,0x66,0x8,0xb5,0x90,0x0,0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0, - 0x0,0x67,0xe8,0x97,0x90,0x0,0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0, - 0x0,0x69,0xc8,0x79,0x90,0x0,0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0, - 0x0,0x6b,0xa8,0x5b,0x90,0x0,0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0, - 0x0,0x6d,0x88,0x3d,0x90,0x0,0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0, - 0x0,0x6f,0x68,0x1f,0x90,0x0,0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0, - 0x0,0x71,0x51,0x3c,0x10,0x0,0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0, - 0x0,0x73,0x31,0x1e,0x10,0x0,0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0, - 0x0,0x75,0x11,0x0,0x10,0x0,0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0, - 0x0,0x76,0xf0,0xe2,0x10,0x0,0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0, - 0x0,0x78,0xd0,0xc4,0x10,0x0,0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0, - 0x0,0x7a,0xb0,0xa6,0x10,0x0,0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0, - 0x0,0x7c,0x99,0xc2,0x90,0x0,0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0, - 0x0,0x7e,0x79,0xa4,0x90,0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x2,0x1, - 0x2,0x3,0x4,0x3,0x4,0x2,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x2,0x3,0x4,0x3,0x4,0x3,0x4,0x1,0x2,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x0,0x0,0xf,0x51,0x0, - 0x0,0x0,0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe,0x10,0x0,0x9,0x0,0x0,0x1c, - 0x20,0x1,0x4,0x0,0x0,0xe,0x10,0x0,0x9,0x0,0x0,0x1c,0x20,0x1,0x4,0x0, - 0x0,0xe,0x10,0x0,0x9,0x4c,0x4d,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x43,0x45, - 0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x1, - 0xa,0x43,0x45,0x54,0x2d,0x31,0x43,0x45,0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e, - 0x30,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30,0x2f,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Gibraltar - 0x0,0x0,0xb,0xf5, + 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0xb1, + 0xee,0xda,0xfc,0xb4,0xc2,0x9a,0xd0,0xc7,0x91,0x47,0xd8,0xed,0x2f,0xe1,0xd4,0x0, + 0x1,0x2,0x3,0x1,0x0,0x0,0x22,0x84,0x0,0x0,0x0,0x0,0x2a,0x30,0x0,0x4, + 0x0,0x0,0x23,0x28,0x0,0x8,0x0,0x0,0x26,0xac,0x0,0xe,0x0,0x0,0x2a,0x30, + 0x0,0x4,0x4c,0x4d,0x54,0x0,0x45,0x41,0x54,0x0,0x2b,0x30,0x32,0x33,0x30,0x0, + 0x2b,0x30,0x32,0x34,0x35,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0xf8,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xb1,0xee,0xda,0xfc,0xff,0xff,0xff,0xff, + 0xb4,0xc2,0x9a,0xd0,0xff,0xff,0xff,0xff,0xc7,0x91,0x47,0xd8,0xff,0xff,0xff,0xff, + 0xed,0x2f,0xe1,0xd4,0x0,0x1,0x2,0x3,0x1,0x0,0x0,0x22,0x84,0x0,0x0,0x0, + 0x0,0x2a,0x30,0x0,0x4,0x0,0x0,0x23,0x28,0x0,0x8,0x0,0x0,0x26,0xac,0x0, + 0xe,0x0,0x0,0x2a,0x30,0x0,0x4,0x4c,0x4d,0x54,0x0,0x45,0x41,0x54,0x0,0x2b, + 0x30,0x32,0x33,0x30,0x0,0x2b,0x30,0x32,0x34,0x35,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0xa,0x45,0x41,0x54,0x2d,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Brazzaville + 0x0,0x0,0x0,0xab, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0xa1, + 0x51,0xf3,0x50,0x0,0x1,0x0,0x0,0x3,0x30,0x0,0x0,0x0,0x0,0xe,0x10,0x0, + 0x4,0x4c,0x4d,0x54,0x0,0x57,0x41,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, + 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0xa1,0x51,0xf3,0x50,0x0,0x1,0x0,0x0,0x3,0x30,0x0, + 0x0,0x0,0x0,0xe,0x10,0x0,0x4,0x4c,0x4d,0x54,0x0,0x57,0x41,0x54,0x0,0x0, + 0x0,0x0,0x0,0xa,0x57,0x41,0x54,0x2d,0x31,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Douala + 0x0,0x0,0x0,0xab, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0xa1, + 0x51,0xf3,0x50,0x0,0x1,0x0,0x0,0x3,0x30,0x0,0x0,0x0,0x0,0xe,0x10,0x0, + 0x4,0x4c,0x4d,0x54,0x0,0x57,0x41,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, + 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0xa1,0x51,0xf3,0x50,0x0,0x1,0x0,0x0,0x3,0x30,0x0, + 0x0,0x0,0x0,0xe,0x10,0x0,0x4,0x4c,0x4d,0x54,0x0,0x57,0x41,0x54,0x0,0x0, + 0x0,0x0,0x0,0xa,0x57,0x41,0x54,0x2d,0x31,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/US/Hawaii + 0x0,0x0,0x1,0x14, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0xbb, + 0x5,0x43,0x48,0xbb,0x21,0x71,0x58,0xcb,0x89,0x3d,0xc8,0xd2,0x61,0x49,0x38,0xd5, + 0x8d,0x73,0x48,0x1,0x2,0x1,0x2,0x1,0x3,0xff,0xff,0x6c,0x2,0x0,0x0,0xff, + 0xff,0x6c,0x58,0x0,0x4,0xff,0xff,0x7a,0x68,0x1,0x8,0xff,0xff,0x73,0x60,0x0, + 0x4,0x4c,0x4d,0x54,0x0,0x48,0x53,0x54,0x0,0x48,0x44,0x54,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0, + 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x4,0x0,0x0,0x0, + 0xc,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x74,0xe0,0x70, + 0xbe,0xff,0xff,0xff,0xff,0xbb,0x5,0x43,0x48,0xff,0xff,0xff,0xff,0xbb,0x21,0x71, + 0x58,0xff,0xff,0xff,0xff,0xcb,0x89,0x3d,0xc8,0xff,0xff,0xff,0xff,0xd2,0x61,0x49, + 0x38,0xff,0xff,0xff,0xff,0xd5,0x8d,0x73,0x48,0x0,0x1,0x2,0x1,0x2,0x1,0x3, + 0xff,0xff,0x6c,0x2,0x0,0x0,0xff,0xff,0x6c,0x58,0x0,0x4,0xff,0xff,0x7a,0x68, + 0x1,0x8,0xff,0xff,0x73,0x60,0x0,0x4,0x4c,0x4d,0x54,0x0,0x48,0x53,0x54,0x0, + 0x48,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x48,0x53,0x54, + 0x31,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/US/Central + 0x0,0x0,0xe,0x1, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xc6,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x1a,0x80,0x0,0x0,0x0,0x9b, - 0x26,0xad,0xa0,0x9b,0xd6,0x5,0x20,0x9c,0xcf,0x30,0xa0,0x9d,0xa4,0xc3,0xa0,0x9e, - 0x9c,0x9d,0xa0,0x9f,0x97,0x1a,0xa0,0xa0,0x85,0xba,0x20,0xa1,0x76,0xfc,0xa0,0xa2, - 0x65,0x9c,0x20,0xa3,0x7b,0xc8,0xa0,0xa4,0x4e,0xb8,0xa0,0xa5,0x3f,0xfb,0x20,0xa6, - 0x25,0x60,0x20,0xa7,0x27,0xc6,0x20,0xa8,0x2a,0x2c,0x20,0xa8,0xeb,0xf8,0xa0,0xaa, - 0x0,0xd3,0xa0,0xaa,0xd5,0x15,0x20,0xab,0xe9,0xf0,0x20,0xac,0xc7,0x6c,0x20,0xad, - 0xc9,0xd2,0x20,0xae,0xa7,0x4e,0x20,0xaf,0xa0,0x79,0xa0,0xb0,0x87,0x30,0x20,0xb1, - 0x92,0xd0,0xa0,0xb2,0x70,0x4c,0xa0,0xb3,0x72,0xb2,0xa0,0xb4,0x50,0x2e,0xa0,0xb5, - 0x49,0x5a,0x20,0xb6,0x30,0x10,0xa0,0xb7,0x32,0x76,0xa0,0xb8,0xf,0xf2,0xa0,0xb9, - 0x12,0x58,0xa0,0xb9,0xef,0xd4,0xa0,0xba,0xe9,0x0,0x20,0xbb,0xd8,0xf1,0x20,0xbc, - 0xdb,0x57,0x20,0xbd,0xb8,0xd3,0x20,0xbe,0xb1,0xfe,0xa0,0xbf,0x98,0xb5,0x20,0xc0, - 0x9b,0x1b,0x20,0xc1,0x78,0x97,0x20,0xc2,0x7a,0xfd,0x20,0xc3,0x58,0x79,0x20,0xc4, - 0x51,0xa4,0xa0,0xc5,0x38,0x5b,0x20,0xc6,0x3a,0xc1,0x20,0xc7,0x58,0xd6,0xa0,0xc7, - 0xda,0x9,0xa0,0xca,0x16,0x26,0x90,0xca,0x97,0x59,0x90,0xcb,0xd1,0x1e,0x90,0xcc, - 0x77,0x3b,0x90,0xcd,0xb1,0x0,0x90,0xce,0x60,0x58,0x10,0xcf,0x90,0xe2,0x90,0xd0, - 0x6e,0x5e,0x90,0xd1,0x72,0x16,0x10,0xd1,0xfb,0x32,0x10,0xd2,0x69,0xfe,0x20,0xd3, - 0x63,0x29,0xa0,0xd4,0x49,0xe0,0x20,0xd5,0x1e,0x21,0xa0,0xd5,0x42,0xfd,0x90,0xd5, - 0xdf,0xe0,0x10,0xd6,0x4e,0xac,0x20,0xd6,0xfe,0x3,0xa0,0xd8,0x2e,0x8e,0x20,0xd8, - 0xf9,0x95,0x20,0xda,0xe,0x70,0x20,0xda,0xeb,0xec,0x20,0xdb,0xe5,0x17,0xa0,0xdc, - 0xcb,0xce,0x20,0xdd,0xc4,0xf9,0xa0,0xde,0xb4,0xea,0xa0,0xdf,0xae,0x16,0x20,0xe0, - 0x94,0xcc,0xa0,0xe1,0x72,0x48,0xa0,0xe2,0x6b,0x74,0x20,0xe3,0x52,0x2a,0xa0,0xe4, - 0x54,0x90,0xa0,0xe5,0x32,0xc,0xa0,0xe6,0x3d,0xad,0x20,0xe7,0x1b,0x29,0x20,0xe8, - 0x14,0x54,0xa0,0x17,0x3,0xcd,0x90,0x17,0xf3,0xbe,0x90,0x18,0xe3,0xaf,0x90,0x19, - 0xd3,0xa0,0x90,0x1a,0xc3,0x91,0x90,0x1b,0xbc,0xbd,0x10,0x1c,0xac,0xae,0x10,0x1d, - 0x9c,0x9f,0x10,0x1e,0x8c,0x90,0x10,0x1f,0x7c,0x81,0x10,0x20,0x6c,0x72,0x10,0x21, - 0x5c,0x63,0x10,0x22,0x4c,0x54,0x10,0x23,0x3c,0x45,0x10,0x24,0x2c,0x36,0x10,0x25, - 0x1c,0x27,0x10,0x26,0xc,0x18,0x10,0x27,0x5,0x43,0x90,0x27,0xf5,0x34,0x90,0x28, - 0xe5,0x25,0x90,0x29,0xd5,0x16,0x90,0x2a,0xc5,0x7,0x90,0x2b,0xb4,0xf8,0x90,0x2c, - 0xa4,0xe9,0x90,0x2d,0x94,0xda,0x90,0x2e,0x84,0xcb,0x90,0x2f,0x74,0xbc,0x90,0x30, - 0x64,0xad,0x90,0x31,0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34, - 0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38, - 0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b, - 0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f, - 0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43, - 0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47, - 0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a, - 0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e, - 0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52, - 0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56, - 0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59, - 0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d, - 0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61, - 0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65, - 0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68, - 0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c, - 0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70, - 0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74, - 0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78, - 0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b, - 0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f, - 0x8e,0x7f,0x90,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x0,0x0,0xec,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x18,0x80,0x0,0x0,0x0,0x9e, + 0xa6,0x2c,0x80,0x9f,0xba,0xf9,0x70,0xa0,0x86,0xe,0x80,0xa1,0x9a,0xdb,0x70,0xa2, + 0xcb,0x74,0x0,0xa3,0x83,0xf7,0xf0,0xa4,0x45,0xd2,0x80,0xa5,0x63,0xd9,0xf0,0xa6, + 0x53,0xd9,0x0,0xa7,0x15,0x97,0x70,0xa8,0x33,0xbb,0x0,0xa8,0xfe,0xb3,0xf0,0xaa, + 0x13,0x9d,0x0,0xaa,0xde,0x95,0xf0,0xab,0xf3,0x7f,0x0,0xac,0xbe,0x77,0xf0,0xad, + 0xd3,0x61,0x0,0xae,0x9e,0x59,0xf0,0xaf,0xb3,0x43,0x0,0xb0,0x7e,0x3b,0xf0,0xb1, + 0x9c,0x5f,0x80,0xb2,0x67,0x58,0x70,0xb3,0x7c,0x41,0x80,0xb4,0x47,0x3a,0x70,0xb5, + 0x5c,0x23,0x80,0xb6,0x27,0x1c,0x70,0xb7,0x3c,0x5,0x80,0xb8,0x6,0xfe,0x70,0xb9, + 0x1b,0xe7,0x80,0xb9,0xe6,0xe0,0x70,0xbb,0x5,0x4,0x0,0xbb,0xc6,0xc2,0x70,0xbc, + 0xe4,0xe6,0x0,0xbd,0xaf,0xde,0xf0,0xbe,0xc4,0xc8,0x0,0xbf,0x8f,0xc0,0xf0,0xc0, + 0x5a,0xd6,0x0,0xc1,0xb0,0x3c,0x70,0xc2,0x84,0x8c,0x0,0xc3,0x4f,0x84,0xf0,0xc4, + 0x64,0x6e,0x0,0xc5,0x2f,0x66,0xf0,0xc6,0x4d,0x8a,0x80,0xc7,0xf,0x48,0xf0,0xc8, + 0x2d,0x6c,0x80,0xc8,0xf8,0x65,0x70,0xca,0xd,0x4e,0x80,0xca,0xd8,0x47,0x70,0xcb, + 0x88,0xfe,0x80,0xd2,0x23,0xf4,0x70,0xd2,0x61,0x9,0xf0,0xd3,0x75,0xf3,0x0,0xd4, + 0x40,0xeb,0xf0,0xd5,0x55,0xd5,0x0,0xd6,0x20,0xcd,0xf0,0xd7,0x35,0xb7,0x0,0xd8, + 0x0,0xaf,0xf0,0xd9,0x15,0x99,0x0,0xd9,0xe0,0x91,0xf0,0xda,0xfe,0xb5,0x80,0xdb, + 0xc0,0x73,0xf0,0xdc,0xde,0x97,0x80,0xdd,0xa9,0x90,0x70,0xde,0xbe,0x79,0x80,0xdf, + 0x89,0x72,0x70,0xe0,0x9e,0x5b,0x80,0xe1,0x69,0x54,0x70,0xe2,0x7e,0x3d,0x80,0xe3, + 0x49,0x36,0x70,0xe4,0x5e,0x1f,0x80,0xe5,0x57,0x3c,0xf0,0xe6,0x47,0x3c,0x0,0xe7, + 0x37,0x1e,0xf0,0xe8,0x27,0x1e,0x0,0xe9,0x17,0x0,0xf0,0xea,0x7,0x0,0x0,0xea, + 0xf6,0xe2,0xf0,0xeb,0xe6,0xe2,0x0,0xec,0xd6,0xc4,0xf0,0xed,0xc6,0xc4,0x0,0xee, + 0xbf,0xe1,0x70,0xef,0xaf,0xe0,0x80,0xf0,0x9f,0xc3,0x70,0xf1,0x8f,0xc2,0x80,0xf2, + 0x7f,0xa5,0x70,0xf3,0x6f,0xa4,0x80,0xf4,0x5f,0x87,0x70,0xf5,0x4f,0x86,0x80,0xf6, + 0x3f,0x69,0x70,0xf7,0x2f,0x68,0x80,0xf8,0x28,0x85,0xf0,0xf9,0xf,0x4a,0x80,0xfa, + 0x8,0x67,0xf0,0xfa,0xf8,0x67,0x0,0xfb,0xe8,0x49,0xf0,0xfc,0xd8,0x49,0x0,0xfd, + 0xc8,0x2b,0xf0,0xfe,0xb8,0x2b,0x0,0xff,0xa8,0xd,0xf0,0x0,0x98,0xd,0x0,0x1, + 0x87,0xef,0xf0,0x2,0x77,0xef,0x0,0x3,0x71,0xc,0x70,0x4,0x61,0xb,0x80,0x5, + 0x50,0xee,0x70,0x6,0x40,0xed,0x80,0x7,0x30,0xd0,0x70,0x7,0x8d,0x27,0x80,0x9, + 0x10,0xb2,0x70,0x9,0xad,0xa3,0x0,0xa,0xf0,0x94,0x70,0xb,0xe0,0x93,0x80,0xc, + 0xd9,0xb0,0xf0,0xd,0xc0,0x75,0x80,0xe,0xb9,0x92,0xf0,0xf,0xa9,0x92,0x0,0x10, + 0x99,0x74,0xf0,0x11,0x89,0x74,0x0,0x12,0x79,0x56,0xf0,0x13,0x69,0x56,0x0,0x14, + 0x59,0x38,0xf0,0x15,0x49,0x38,0x0,0x16,0x39,0x1a,0xf0,0x17,0x29,0x1a,0x0,0x18, + 0x22,0x37,0x70,0x19,0x8,0xfc,0x0,0x1a,0x2,0x19,0x70,0x1a,0xf2,0x18,0x80,0x1b, + 0xe1,0xfb,0x70,0x1c,0xd1,0xfa,0x80,0x1d,0xc1,0xdd,0x70,0x1e,0xb1,0xdc,0x80,0x1f, + 0xa1,0xbf,0x70,0x20,0x76,0xf,0x0,0x21,0x81,0xa1,0x70,0x22,0x55,0xf1,0x0,0x23, + 0x6a,0xbd,0xf0,0x24,0x35,0xd3,0x0,0x25,0x4a,0x9f,0xf0,0x26,0x15,0xb5,0x0,0x27, + 0x2a,0x81,0xf0,0x27,0xfe,0xd1,0x80,0x29,0xa,0x63,0xf0,0x29,0xde,0xb3,0x80,0x2a, + 0xea,0x45,0xf0,0x2b,0xbe,0x95,0x80,0x2c,0xd3,0x62,0x70,0x2d,0x9e,0x77,0x80,0x2e, + 0xb3,0x44,0x70,0x2f,0x7e,0x59,0x80,0x30,0x93,0x26,0x70,0x31,0x67,0x76,0x0,0x32, + 0x73,0x8,0x70,0x33,0x47,0x58,0x0,0x34,0x52,0xea,0x70,0x35,0x27,0x3a,0x0,0x36, + 0x32,0xcc,0x70,0x37,0x7,0x1c,0x0,0x38,0x1b,0xe8,0xf0,0x38,0xe6,0xfe,0x0,0x39, + 0xfb,0xca,0xf0,0x3a,0xc6,0xe0,0x0,0x3b,0xdb,0xac,0xf0,0x3c,0xaf,0xfc,0x80,0x3d, + 0xbb,0x8e,0xf0,0x3e,0x8f,0xde,0x80,0x3f,0x9b,0x70,0xf0,0x40,0x6f,0xc0,0x80,0x41, + 0x84,0x8d,0x70,0x42,0x4f,0xa2,0x80,0x43,0x64,0x6f,0x70,0x44,0x2f,0x84,0x80,0x45, + 0x44,0x51,0x70,0x45,0xf3,0xb7,0x0,0x47,0x2d,0x6d,0xf0,0x47,0xd3,0x99,0x0,0x49, + 0xd,0x4f,0xf0,0x49,0xb3,0x7b,0x0,0x4a,0xed,0x31,0xf0,0x4b,0x9c,0x97,0x80,0x4c, + 0xd6,0x4e,0x70,0x4d,0x7c,0x79,0x80,0x4e,0xb6,0x30,0x70,0x4f,0x5c,0x5b,0x80,0x50, + 0x96,0x12,0x70,0x51,0x3c,0x3d,0x80,0x52,0x75,0xf4,0x70,0x53,0x1c,0x1f,0x80,0x54, + 0x55,0xd6,0x70,0x54,0xfc,0x1,0x80,0x56,0x35,0xb8,0x70,0x56,0xe5,0x1e,0x0,0x58, + 0x1e,0xd4,0xf0,0x58,0xc5,0x0,0x0,0x59,0xfe,0xb6,0xf0,0x5a,0xa4,0xe2,0x0,0x5b, + 0xde,0x98,0xf0,0x5c,0x84,0xc4,0x0,0x5d,0xbe,0x7a,0xf0,0x5e,0x64,0xa6,0x0,0x5f, + 0x9e,0x5c,0xf0,0x60,0x4d,0xc2,0x80,0x61,0x87,0x79,0x70,0x62,0x2d,0xa4,0x80,0x63, + 0x67,0x5b,0x70,0x64,0xd,0x86,0x80,0x65,0x47,0x3d,0x70,0x65,0xed,0x68,0x80,0x67, + 0x27,0x1f,0x70,0x67,0xcd,0x4a,0x80,0x69,0x7,0x1,0x70,0x69,0xad,0x2c,0x80,0x6a, + 0xe6,0xe3,0x70,0x6b,0x96,0x49,0x0,0x6c,0xcf,0xff,0xf0,0x6d,0x76,0x2b,0x0,0x6e, + 0xaf,0xe1,0xf0,0x6f,0x56,0xd,0x0,0x70,0x8f,0xc3,0xf0,0x71,0x35,0xef,0x0,0x72, + 0x6f,0xa5,0xf0,0x73,0x15,0xd1,0x0,0x74,0x4f,0x87,0xf0,0x74,0xfe,0xed,0x80,0x76, + 0x38,0xa4,0x70,0x76,0xde,0xcf,0x80,0x78,0x18,0x86,0x70,0x78,0xbe,0xb1,0x80,0x79, + 0xf8,0x68,0x70,0x7a,0x9e,0x93,0x80,0x7b,0xd8,0x4a,0x70,0x7c,0x7e,0x75,0x80,0x7d, + 0xb8,0x2c,0x70,0x7e,0x5e,0x57,0x80,0x7f,0x98,0xe,0x70,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x2, - 0x1,0x2,0x1,0x3,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x4,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0xff,0xff,0xfa,0xfc,0x0,0x0,0x0, - 0x0,0xe,0x10,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x1c,0x20,0x1, - 0xc,0x0,0x0,0xe,0x10,0x0,0x11,0x0,0x0,0x1c,0x20,0x1,0x15,0x0,0x0,0xe, - 0x10,0x0,0x11,0x4c,0x4d,0x54,0x0,0x42,0x53,0x54,0x0,0x47,0x4d,0x54,0x0,0x42, - 0x44,0x53,0x54,0x0,0x43,0x45,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x0,0x1,0x1, - 0x1,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x54,0x5a,0x69,0x66,0x32, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc7,0x0, - 0x0,0x0,0x7,0x0,0x0,0x0,0x1a,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff, - 0xff,0xff,0xff,0x57,0xd1,0xa,0x4,0xff,0xff,0xff,0xff,0x9b,0x26,0xad,0xa0,0xff, - 0xff,0xff,0xff,0x9b,0xd6,0x5,0x20,0xff,0xff,0xff,0xff,0x9c,0xcf,0x30,0xa0,0xff, - 0xff,0xff,0xff,0x9d,0xa4,0xc3,0xa0,0xff,0xff,0xff,0xff,0x9e,0x9c,0x9d,0xa0,0xff, - 0xff,0xff,0xff,0x9f,0x97,0x1a,0xa0,0xff,0xff,0xff,0xff,0xa0,0x85,0xba,0x20,0xff, - 0xff,0xff,0xff,0xa1,0x76,0xfc,0xa0,0xff,0xff,0xff,0xff,0xa2,0x65,0x9c,0x20,0xff, - 0xff,0xff,0xff,0xa3,0x7b,0xc8,0xa0,0xff,0xff,0xff,0xff,0xa4,0x4e,0xb8,0xa0,0xff, - 0xff,0xff,0xff,0xa5,0x3f,0xfb,0x20,0xff,0xff,0xff,0xff,0xa6,0x25,0x60,0x20,0xff, - 0xff,0xff,0xff,0xa7,0x27,0xc6,0x20,0xff,0xff,0xff,0xff,0xa8,0x2a,0x2c,0x20,0xff, - 0xff,0xff,0xff,0xa8,0xeb,0xf8,0xa0,0xff,0xff,0xff,0xff,0xaa,0x0,0xd3,0xa0,0xff, - 0xff,0xff,0xff,0xaa,0xd5,0x15,0x20,0xff,0xff,0xff,0xff,0xab,0xe9,0xf0,0x20,0xff, - 0xff,0xff,0xff,0xac,0xc7,0x6c,0x20,0xff,0xff,0xff,0xff,0xad,0xc9,0xd2,0x20,0xff, - 0xff,0xff,0xff,0xae,0xa7,0x4e,0x20,0xff,0xff,0xff,0xff,0xaf,0xa0,0x79,0xa0,0xff, - 0xff,0xff,0xff,0xb0,0x87,0x30,0x20,0xff,0xff,0xff,0xff,0xb1,0x92,0xd0,0xa0,0xff, - 0xff,0xff,0xff,0xb2,0x70,0x4c,0xa0,0xff,0xff,0xff,0xff,0xb3,0x72,0xb2,0xa0,0xff, - 0xff,0xff,0xff,0xb4,0x50,0x2e,0xa0,0xff,0xff,0xff,0xff,0xb5,0x49,0x5a,0x20,0xff, - 0xff,0xff,0xff,0xb6,0x30,0x10,0xa0,0xff,0xff,0xff,0xff,0xb7,0x32,0x76,0xa0,0xff, - 0xff,0xff,0xff,0xb8,0xf,0xf2,0xa0,0xff,0xff,0xff,0xff,0xb9,0x12,0x58,0xa0,0xff, - 0xff,0xff,0xff,0xb9,0xef,0xd4,0xa0,0xff,0xff,0xff,0xff,0xba,0xe9,0x0,0x20,0xff, - 0xff,0xff,0xff,0xbb,0xd8,0xf1,0x20,0xff,0xff,0xff,0xff,0xbc,0xdb,0x57,0x20,0xff, - 0xff,0xff,0xff,0xbd,0xb8,0xd3,0x20,0xff,0xff,0xff,0xff,0xbe,0xb1,0xfe,0xa0,0xff, - 0xff,0xff,0xff,0xbf,0x98,0xb5,0x20,0xff,0xff,0xff,0xff,0xc0,0x9b,0x1b,0x20,0xff, - 0xff,0xff,0xff,0xc1,0x78,0x97,0x20,0xff,0xff,0xff,0xff,0xc2,0x7a,0xfd,0x20,0xff, - 0xff,0xff,0xff,0xc3,0x58,0x79,0x20,0xff,0xff,0xff,0xff,0xc4,0x51,0xa4,0xa0,0xff, - 0xff,0xff,0xff,0xc5,0x38,0x5b,0x20,0xff,0xff,0xff,0xff,0xc6,0x3a,0xc1,0x20,0xff, - 0xff,0xff,0xff,0xc7,0x58,0xd6,0xa0,0xff,0xff,0xff,0xff,0xc7,0xda,0x9,0xa0,0xff, - 0xff,0xff,0xff,0xca,0x16,0x26,0x90,0xff,0xff,0xff,0xff,0xca,0x97,0x59,0x90,0xff, - 0xff,0xff,0xff,0xcb,0xd1,0x1e,0x90,0xff,0xff,0xff,0xff,0xcc,0x77,0x3b,0x90,0xff, - 0xff,0xff,0xff,0xcd,0xb1,0x0,0x90,0xff,0xff,0xff,0xff,0xce,0x60,0x58,0x10,0xff, - 0xff,0xff,0xff,0xcf,0x90,0xe2,0x90,0xff,0xff,0xff,0xff,0xd0,0x6e,0x5e,0x90,0xff, - 0xff,0xff,0xff,0xd1,0x72,0x16,0x10,0xff,0xff,0xff,0xff,0xd1,0xfb,0x32,0x10,0xff, - 0xff,0xff,0xff,0xd2,0x69,0xfe,0x20,0xff,0xff,0xff,0xff,0xd3,0x63,0x29,0xa0,0xff, - 0xff,0xff,0xff,0xd4,0x49,0xe0,0x20,0xff,0xff,0xff,0xff,0xd5,0x1e,0x21,0xa0,0xff, - 0xff,0xff,0xff,0xd5,0x42,0xfd,0x90,0xff,0xff,0xff,0xff,0xd5,0xdf,0xe0,0x10,0xff, - 0xff,0xff,0xff,0xd6,0x4e,0xac,0x20,0xff,0xff,0xff,0xff,0xd6,0xfe,0x3,0xa0,0xff, - 0xff,0xff,0xff,0xd8,0x2e,0x8e,0x20,0xff,0xff,0xff,0xff,0xd8,0xf9,0x95,0x20,0xff, - 0xff,0xff,0xff,0xda,0xe,0x70,0x20,0xff,0xff,0xff,0xff,0xda,0xeb,0xec,0x20,0xff, - 0xff,0xff,0xff,0xdb,0xe5,0x17,0xa0,0xff,0xff,0xff,0xff,0xdc,0xcb,0xce,0x20,0xff, - 0xff,0xff,0xff,0xdd,0xc4,0xf9,0xa0,0xff,0xff,0xff,0xff,0xde,0xb4,0xea,0xa0,0xff, - 0xff,0xff,0xff,0xdf,0xae,0x16,0x20,0xff,0xff,0xff,0xff,0xe0,0x94,0xcc,0xa0,0xff, - 0xff,0xff,0xff,0xe1,0x72,0x48,0xa0,0xff,0xff,0xff,0xff,0xe2,0x6b,0x74,0x20,0xff, - 0xff,0xff,0xff,0xe3,0x52,0x2a,0xa0,0xff,0xff,0xff,0xff,0xe4,0x54,0x90,0xa0,0xff, - 0xff,0xff,0xff,0xe5,0x32,0xc,0xa0,0xff,0xff,0xff,0xff,0xe6,0x3d,0xad,0x20,0xff, - 0xff,0xff,0xff,0xe7,0x1b,0x29,0x20,0xff,0xff,0xff,0xff,0xe8,0x14,0x54,0xa0,0x0, - 0x0,0x0,0x0,0x17,0x3,0xcd,0x90,0x0,0x0,0x0,0x0,0x17,0xf3,0xbe,0x90,0x0, - 0x0,0x0,0x0,0x18,0xe3,0xaf,0x90,0x0,0x0,0x0,0x0,0x19,0xd3,0xa0,0x90,0x0, - 0x0,0x0,0x0,0x1a,0xc3,0x91,0x90,0x0,0x0,0x0,0x0,0x1b,0xbc,0xbd,0x10,0x0, - 0x0,0x0,0x0,0x1c,0xac,0xae,0x10,0x0,0x0,0x0,0x0,0x1d,0x9c,0x9f,0x10,0x0, - 0x0,0x0,0x0,0x1e,0x8c,0x90,0x10,0x0,0x0,0x0,0x0,0x1f,0x7c,0x81,0x10,0x0, - 0x0,0x0,0x0,0x20,0x6c,0x72,0x10,0x0,0x0,0x0,0x0,0x21,0x5c,0x63,0x10,0x0, - 0x0,0x0,0x0,0x22,0x4c,0x54,0x10,0x0,0x0,0x0,0x0,0x23,0x3c,0x45,0x10,0x0, - 0x0,0x0,0x0,0x24,0x2c,0x36,0x10,0x0,0x0,0x0,0x0,0x25,0x1c,0x27,0x10,0x0, - 0x0,0x0,0x0,0x26,0xc,0x18,0x10,0x0,0x0,0x0,0x0,0x27,0x5,0x43,0x90,0x0, - 0x0,0x0,0x0,0x27,0xf5,0x34,0x90,0x0,0x0,0x0,0x0,0x28,0xe5,0x25,0x90,0x0, - 0x0,0x0,0x0,0x29,0xd5,0x16,0x90,0x0,0x0,0x0,0x0,0x2a,0xc5,0x7,0x90,0x0, - 0x0,0x0,0x0,0x2b,0xb4,0xf8,0x90,0x0,0x0,0x0,0x0,0x2c,0xa4,0xe9,0x90,0x0, - 0x0,0x0,0x0,0x2d,0x94,0xda,0x90,0x0,0x0,0x0,0x0,0x2e,0x84,0xcb,0x90,0x0, - 0x0,0x0,0x0,0x2f,0x74,0xbc,0x90,0x0,0x0,0x0,0x0,0x30,0x64,0xad,0x90,0x0, - 0x0,0x0,0x0,0x31,0x5d,0xd9,0x10,0x0,0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0, - 0x0,0x0,0x0,0x33,0x3d,0xbb,0x10,0x0,0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0, - 0x0,0x0,0x0,0x35,0x1d,0x9d,0x10,0x0,0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0, - 0x0,0x0,0x0,0x36,0xfd,0x7f,0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0, - 0x0,0x0,0x0,0x38,0xdd,0x61,0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0, - 0x0,0x0,0x0,0x3a,0xbd,0x43,0x10,0x0,0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0, - 0x0,0x0,0x0,0x3c,0xa6,0x5f,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0, - 0x0,0x0,0x0,0x3e,0x86,0x41,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0, - 0x0,0x0,0x0,0x40,0x66,0x23,0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0, - 0x0,0x0,0x0,0x42,0x46,0x5,0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0, - 0x0,0x0,0x0,0x44,0x25,0xe7,0x90,0x0,0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0, - 0x0,0x0,0x0,0x46,0x5,0xc9,0x90,0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0, - 0x0,0x0,0x0,0x47,0xee,0xe6,0x10,0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0, - 0x0,0x0,0x0,0x49,0xce,0xc8,0x10,0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0, - 0x0,0x0,0x0,0x4b,0xae,0xaa,0x10,0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0, - 0x0,0x0,0x0,0x4d,0x8e,0x8c,0x10,0x0,0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0, - 0x0,0x0,0x0,0x4f,0x6e,0x6e,0x10,0x0,0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0, - 0x0,0x0,0x0,0x51,0x57,0x8a,0x90,0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0, - 0x0,0x0,0x0,0x53,0x37,0x6c,0x90,0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0, - 0x0,0x0,0x0,0x55,0x17,0x4e,0x90,0x0,0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0, - 0x0,0x0,0x0,0x56,0xf7,0x30,0x90,0x0,0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0, - 0x0,0x0,0x0,0x58,0xd7,0x12,0x90,0x0,0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0, - 0x0,0x0,0x0,0x5a,0xb6,0xf4,0x90,0x0,0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0, - 0x0,0x0,0x0,0x5c,0xa0,0x11,0x10,0x0,0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0, - 0x0,0x0,0x0,0x5e,0x7f,0xf3,0x10,0x0,0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0, - 0x0,0x0,0x0,0x60,0x5f,0xd5,0x10,0x0,0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0, - 0x0,0x0,0x0,0x62,0x3f,0xb7,0x10,0x0,0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0, - 0x0,0x0,0x0,0x64,0x1f,0x99,0x10,0x0,0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0, - 0x0,0x0,0x0,0x66,0x8,0xb5,0x90,0x0,0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0, - 0x0,0x0,0x0,0x67,0xe8,0x97,0x90,0x0,0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0, - 0x0,0x0,0x0,0x69,0xc8,0x79,0x90,0x0,0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0, - 0x0,0x0,0x0,0x6b,0xa8,0x5b,0x90,0x0,0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0, - 0x0,0x0,0x0,0x6d,0x88,0x3d,0x90,0x0,0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0, - 0x0,0x0,0x0,0x6f,0x68,0x1f,0x90,0x0,0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0, - 0x0,0x0,0x0,0x71,0x51,0x3c,0x10,0x0,0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0, - 0x0,0x0,0x0,0x73,0x31,0x1e,0x10,0x0,0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0, - 0x0,0x0,0x0,0x75,0x11,0x0,0x10,0x0,0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0, - 0x0,0x0,0x0,0x76,0xf0,0xe2,0x10,0x0,0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0, - 0x0,0x0,0x0,0x78,0xd0,0xc4,0x10,0x0,0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0, - 0x0,0x0,0x0,0x7a,0xb0,0xa6,0x10,0x0,0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0, - 0x0,0x0,0x0,0x7c,0x99,0xc2,0x90,0x0,0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0, - 0x0,0x0,0x0,0x7e,0x79,0xa4,0x90,0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0, + 0x3,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x4,0x5,0x2,0x1, 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x2,0x1,0x2,0x1, - 0x3,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x4,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0xff,0xff,0xfa,0xfc,0x0,0x0,0x0,0x0,0xe,0x10, - 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x1c,0x20,0x1,0xc,0x0,0x0, - 0xe,0x10,0x0,0x11,0x0,0x0,0x1c,0x20,0x1,0x15,0x0,0x0,0xe,0x10,0x0,0x11, - 0x4c,0x4d,0x54,0x0,0x42,0x53,0x54,0x0,0x47,0x4d,0x54,0x0,0x42,0x44,0x53,0x54, - 0x0,0x43,0x45,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x0,0x1,0x1,0x1,0x0,0x1, - 0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0xa,0x43,0x45,0x54,0x2d,0x31,0x43,0x45, - 0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e, - 0x30,0x2f,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Samara - 0x0,0x0,0x4,0xe5, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x42,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0xa1, - 0x0,0x39,0x80,0xb5,0xa4,0xb,0x50,0x15,0x27,0x99,0xc0,0x16,0x18,0xce,0x30,0x17, - 0x8,0xcd,0x40,0x17,0xfa,0x1,0xb0,0x18,0xea,0x0,0xc0,0x19,0xdb,0x35,0x30,0x1a, - 0xcc,0x85,0xc0,0x1b,0xbc,0x92,0xe0,0x1c,0xac,0x83,0xe0,0x1d,0x9c,0x74,0xe0,0x1e, - 0x8c,0x65,0xe0,0x1f,0x7c,0x56,0xe0,0x20,0x6c,0x47,0xe0,0x21,0x5c,0x38,0xe0,0x22, - 0x4c,0x29,0xe0,0x23,0x3c,0x1a,0xe0,0x24,0x2c,0xb,0xe0,0x25,0x1c,0xa,0xf0,0x26, - 0xb,0xfb,0xf0,0x27,0x5,0x27,0x70,0x27,0xf5,0x18,0x70,0x28,0xe5,0x17,0x80,0x29, - 0x0,0xc7,0x0,0x29,0xd4,0xec,0x60,0x2a,0xc4,0xdd,0x60,0x2b,0xb4,0xce,0x60,0x2c, - 0xa4,0xbf,0x60,0x2d,0x94,0xb0,0x60,0x2e,0x84,0xa1,0x60,0x2f,0x74,0x92,0x60,0x30, - 0x64,0x83,0x60,0x31,0x5d,0xae,0xe0,0x32,0x72,0x89,0xe0,0x33,0x3d,0x90,0xe0,0x34, - 0x52,0x6b,0xe0,0x35,0x1d,0x72,0xe0,0x36,0x32,0x4d,0xe0,0x36,0xfd,0x54,0xe0,0x38, - 0x1b,0x6a,0x60,0x38,0xdd,0x36,0xe0,0x39,0xfb,0x4c,0x60,0x3a,0xbd,0x18,0xe0,0x3b, - 0xdb,0x2e,0x60,0x3c,0xa6,0x35,0x60,0x3d,0xbb,0x10,0x60,0x3e,0x86,0x17,0x60,0x3f, - 0x9a,0xf2,0x60,0x40,0x65,0xf9,0x60,0x41,0x84,0xe,0xe0,0x42,0x45,0xdb,0x60,0x43, - 0x63,0xf0,0xe0,0x44,0x25,0xbd,0x60,0x45,0x43,0xd2,0xe0,0x46,0x5,0x9f,0x60,0x47, - 0x23,0xb4,0xe0,0x47,0xee,0xbb,0xe0,0x49,0x3,0x96,0xe0,0x49,0xce,0x9d,0xe0,0x4a, - 0xe3,0x78,0xe0,0x4b,0xae,0x7f,0xe0,0x4c,0xcc,0xa3,0x70,0x4d,0x8e,0x6f,0xf0,0x7f, - 0xff,0xff,0xff,0x0,0x1,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x6,0x7,0x6,0x7,0x8,0x7,0x2,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x6,0x7,0x4,0x4,0x0,0x0,0x2e,0xf4,0x0,0x0,0x0,0x0,0x2a,0x30,0x0, - 0x4,0x0,0x0,0x38,0x40,0x0,0x8,0x0,0x0,0x46,0x50,0x1,0xc,0x0,0x0,0x38, - 0x40,0x0,0x8,0x0,0x0,0x46,0x50,0x1,0xc,0x0,0x0,0x38,0x40,0x1,0x8,0x0, - 0x0,0x2a,0x30,0x0,0x4,0x0,0x0,0x2a,0x30,0x1,0x4,0x0,0x0,0x1c,0x20,0x0, - 0x10,0x0,0x0,0x38,0x40,0x1,0x8,0x0,0x0,0x38,0x40,0x0,0x8,0x4c,0x4d,0x54, - 0x0,0x2b,0x30,0x33,0x0,0x2b,0x30,0x34,0x0,0x2b,0x30,0x35,0x0,0x2b,0x30,0x32, - 0x0,0x0,0x1,0x0,0x0,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x0,0x1,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0xc,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x42,0x0,0x0,0x0, - 0xc,0x0,0x0,0x0,0x14,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff, - 0xff,0xa1,0x0,0x39,0x80,0xff,0xff,0xff,0xff,0xb5,0xa4,0xb,0x50,0x0,0x0,0x0, - 0x0,0x15,0x27,0x99,0xc0,0x0,0x0,0x0,0x0,0x16,0x18,0xce,0x30,0x0,0x0,0x0, - 0x0,0x17,0x8,0xcd,0x40,0x0,0x0,0x0,0x0,0x17,0xfa,0x1,0xb0,0x0,0x0,0x0, - 0x0,0x18,0xea,0x0,0xc0,0x0,0x0,0x0,0x0,0x19,0xdb,0x35,0x30,0x0,0x0,0x0, - 0x0,0x1a,0xcc,0x85,0xc0,0x0,0x0,0x0,0x0,0x1b,0xbc,0x92,0xe0,0x0,0x0,0x0, - 0x0,0x1c,0xac,0x83,0xe0,0x0,0x0,0x0,0x0,0x1d,0x9c,0x74,0xe0,0x0,0x0,0x0, - 0x0,0x1e,0x8c,0x65,0xe0,0x0,0x0,0x0,0x0,0x1f,0x7c,0x56,0xe0,0x0,0x0,0x0, - 0x0,0x20,0x6c,0x47,0xe0,0x0,0x0,0x0,0x0,0x21,0x5c,0x38,0xe0,0x0,0x0,0x0, - 0x0,0x22,0x4c,0x29,0xe0,0x0,0x0,0x0,0x0,0x23,0x3c,0x1a,0xe0,0x0,0x0,0x0, - 0x0,0x24,0x2c,0xb,0xe0,0x0,0x0,0x0,0x0,0x25,0x1c,0xa,0xf0,0x0,0x0,0x0, - 0x0,0x26,0xb,0xfb,0xf0,0x0,0x0,0x0,0x0,0x27,0x5,0x27,0x70,0x0,0x0,0x0, - 0x0,0x27,0xf5,0x18,0x70,0x0,0x0,0x0,0x0,0x28,0xe5,0x17,0x80,0x0,0x0,0x0, - 0x0,0x29,0x0,0xc7,0x0,0x0,0x0,0x0,0x0,0x29,0xd4,0xec,0x60,0x0,0x0,0x0, - 0x0,0x2a,0xc4,0xdd,0x60,0x0,0x0,0x0,0x0,0x2b,0xb4,0xce,0x60,0x0,0x0,0x0, - 0x0,0x2c,0xa4,0xbf,0x60,0x0,0x0,0x0,0x0,0x2d,0x94,0xb0,0x60,0x0,0x0,0x0, - 0x0,0x2e,0x84,0xa1,0x60,0x0,0x0,0x0,0x0,0x2f,0x74,0x92,0x60,0x0,0x0,0x0, - 0x0,0x30,0x64,0x83,0x60,0x0,0x0,0x0,0x0,0x31,0x5d,0xae,0xe0,0x0,0x0,0x0, - 0x0,0x32,0x72,0x89,0xe0,0x0,0x0,0x0,0x0,0x33,0x3d,0x90,0xe0,0x0,0x0,0x0, - 0x0,0x34,0x52,0x6b,0xe0,0x0,0x0,0x0,0x0,0x35,0x1d,0x72,0xe0,0x0,0x0,0x0, - 0x0,0x36,0x32,0x4d,0xe0,0x0,0x0,0x0,0x0,0x36,0xfd,0x54,0xe0,0x0,0x0,0x0, - 0x0,0x38,0x1b,0x6a,0x60,0x0,0x0,0x0,0x0,0x38,0xdd,0x36,0xe0,0x0,0x0,0x0, - 0x0,0x39,0xfb,0x4c,0x60,0x0,0x0,0x0,0x0,0x3a,0xbd,0x18,0xe0,0x0,0x0,0x0, - 0x0,0x3b,0xdb,0x2e,0x60,0x0,0x0,0x0,0x0,0x3c,0xa6,0x35,0x60,0x0,0x0,0x0, - 0x0,0x3d,0xbb,0x10,0x60,0x0,0x0,0x0,0x0,0x3e,0x86,0x17,0x60,0x0,0x0,0x0, - 0x0,0x3f,0x9a,0xf2,0x60,0x0,0x0,0x0,0x0,0x40,0x65,0xf9,0x60,0x0,0x0,0x0, - 0x0,0x41,0x84,0xe,0xe0,0x0,0x0,0x0,0x0,0x42,0x45,0xdb,0x60,0x0,0x0,0x0, - 0x0,0x43,0x63,0xf0,0xe0,0x0,0x0,0x0,0x0,0x44,0x25,0xbd,0x60,0x0,0x0,0x0, - 0x0,0x45,0x43,0xd2,0xe0,0x0,0x0,0x0,0x0,0x46,0x5,0x9f,0x60,0x0,0x0,0x0, - 0x0,0x47,0x23,0xb4,0xe0,0x0,0x0,0x0,0x0,0x47,0xee,0xbb,0xe0,0x0,0x0,0x0, - 0x0,0x49,0x3,0x96,0xe0,0x0,0x0,0x0,0x0,0x49,0xce,0x9d,0xe0,0x0,0x0,0x0, - 0x0,0x4a,0xe3,0x78,0xe0,0x0,0x0,0x0,0x0,0x4b,0xae,0x7f,0xe0,0x0,0x0,0x0, - 0x0,0x4c,0xcc,0xa3,0x70,0x0,0x0,0x0,0x0,0x4d,0x8e,0x6f,0xf0,0x0,0x0,0x0, - 0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x6,0x7,0x6,0x7,0x8,0x7,0x2,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x6,0x7,0x4,0x4,0x0,0x0,0x2e,0xf4,0x0,0x0,0x0,0x0,0x2a, - 0x30,0x0,0x4,0x0,0x0,0x38,0x40,0x0,0x8,0x0,0x0,0x46,0x50,0x1,0xc,0x0, - 0x0,0x38,0x40,0x0,0x8,0x0,0x0,0x46,0x50,0x1,0xc,0x0,0x0,0x38,0x40,0x1, - 0x8,0x0,0x0,0x2a,0x30,0x0,0x4,0x0,0x0,0x2a,0x30,0x1,0x4,0x0,0x0,0x1c, - 0x20,0x0,0x10,0x0,0x0,0x38,0x40,0x1,0x8,0x0,0x0,0x38,0x40,0x0,0x8,0x4c, - 0x4d,0x54,0x0,0x2b,0x30,0x33,0x0,0x2b,0x30,0x34,0x0,0x2b,0x30,0x35,0x0,0x2b, - 0x30,0x32,0x0,0x0,0x1,0x0,0x0,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x0, - 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2b,0x30,0x34, - 0x3e,0x2d,0x34,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Istanbul - 0x0,0x0,0x8,0x76, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x83,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x19,0x80,0x0,0x0,0x0,0x90, - 0x8b,0xf5,0x98,0x9b,0xc,0x17,0x60,0x9b,0xd5,0xbe,0xd0,0xa2,0x65,0x63,0xe0,0xa3, - 0x7b,0x82,0x50,0xa4,0x4e,0x80,0x60,0xa5,0x3f,0xb4,0xd0,0xa6,0x25,0x27,0xe0,0xa7, - 0x27,0x7f,0xd0,0xaa,0x28,0x28,0x60,0xaa,0xe1,0xfd,0xd0,0xab,0xf9,0x89,0xe0,0xac, - 0xc3,0x31,0x50,0xc8,0x7f,0xee,0x60,0xc8,0xff,0xc1,0xd0,0xc9,0x4a,0xf5,0x60,0xca, - 0xce,0x80,0x50,0xcb,0xcb,0xae,0x60,0xcc,0xe5,0xc1,0x50,0xd1,0x71,0xeb,0xe0,0xd2, - 0x6b,0x9,0x50,0xd3,0xa2,0x39,0x60,0xd4,0x43,0x2,0x50,0xd5,0x4c,0xd,0xe0,0xd6, - 0x29,0x7b,0xd0,0xd7,0x2b,0xef,0xe0,0xd8,0x9,0x5d,0xd0,0xd9,0x2,0x97,0x60,0xd9, - 0xe9,0x3f,0xd0,0xda,0xef,0xa8,0x60,0xdb,0xd2,0x5c,0x50,0xdc,0xd4,0xd0,0x60,0xdd, - 0xb3,0x8f,0xd0,0xf1,0xf4,0xb9,0x60,0xf2,0x64,0xba,0xd0,0xf5,0x68,0x6,0x60,0xf6, - 0x1f,0x38,0xd0,0x0,0xa0,0xba,0xe0,0x1,0x6b,0xb3,0xd0,0x2,0x80,0x9c,0xe0,0x3, - 0x4b,0x95,0xd0,0x4,0x69,0xb9,0x60,0x5,0x34,0xb2,0x50,0x6,0x6e,0x93,0x70,0x7, - 0x39,0xa8,0x80,0x7,0xfb,0x75,0x0,0x9,0x19,0xa6,0xa0,0x9,0xdb,0x3a,0xe0,0xa, - 0xf0,0x7,0xd0,0xc,0x10,0xce,0x60,0xc,0xd9,0x24,0x50,0xd,0xa4,0x39,0x60,0xe, - 0xa6,0x91,0x50,0xf,0x84,0x1b,0x60,0x10,0x86,0x73,0x50,0x12,0x67,0x98,0xc0,0x13, - 0x4d,0x36,0x0,0x14,0x47,0x7a,0xc0,0x15,0x23,0xdd,0x80,0x16,0x27,0x5c,0xc0,0x17, - 0x3,0xbf,0x80,0x18,0x7,0x3e,0xc0,0x19,0x89,0x94,0x50,0x19,0xdc,0x94,0xc0,0x1c, - 0xc6,0xd3,0xd0,0x1d,0x9b,0x15,0x50,0x1e,0x8c,0x73,0xf0,0x1f,0x7c,0x64,0xf0,0x20, - 0x6c,0x55,0xf0,0x21,0x5c,0x46,0xf0,0x22,0x4c,0x37,0xf0,0x23,0x3c,0x28,0xf0,0x24, - 0x2c,0x19,0xf0,0x25,0x1c,0xa,0xf0,0x26,0xb,0xfb,0xf0,0x27,0x5,0x27,0x70,0x27, - 0xf5,0x18,0x70,0x28,0xe5,0x9,0x70,0x29,0xd4,0xfa,0x70,0x2a,0xc4,0xeb,0x70,0x2b, - 0xb4,0xdc,0x70,0x2c,0xa4,0xcd,0x70,0x2d,0x8b,0x83,0xf0,0x2e,0x84,0xaf,0x70,0x2f, - 0x74,0xa0,0x70,0x30,0x64,0x91,0x70,0x31,0x5d,0xbc,0xf0,0x32,0x72,0x97,0xf0,0x33, - 0x3d,0x9e,0xf0,0x34,0x52,0x79,0xf0,0x35,0x1d,0x80,0xf0,0x36,0x32,0x5b,0xf0,0x36, - 0xfd,0x62,0xf0,0x38,0x1b,0x78,0x70,0x38,0xdd,0x44,0xf0,0x39,0xfb,0x5a,0x70,0x3a, - 0xbd,0x26,0xf0,0x3b,0xdb,0x3c,0x70,0x3c,0xa6,0x43,0x70,0x3d,0xbb,0x1e,0x70,0x3e, - 0x86,0x25,0x70,0x3f,0x9b,0x0,0x70,0x40,0x66,0x7,0x70,0x41,0x84,0x1c,0xf0,0x42, - 0x45,0xe9,0x70,0x43,0x63,0xfe,0xf0,0x44,0x25,0xcb,0x70,0x45,0x43,0xe0,0xf0,0x45, - 0x98,0x32,0xe0,0x46,0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49, - 0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c, - 0xcc,0xbf,0x90,0x4d,0x8f,0xdd,0x90,0x4e,0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50, - 0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53,0x38,0xbe,0x10,0x54, - 0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56,0x3e,0x9e,0x90,0x56,0xf7,0x30,0x90,0x57, - 0xcf,0x2e,0x50,0x7f,0xff,0xff,0xff,0x1,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x2,0x3,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x3,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, - 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x5,0x5,0x0,0x0,0x1b,0x28,0x0,0x0, - 0x0,0x0,0x1b,0x68,0x0,0x4,0x0,0x0,0x2a,0x30,0x1,0x8,0x0,0x0,0x1c,0x20, - 0x0,0xd,0x0,0x0,0x38,0x40,0x1,0x11,0x0,0x0,0x2a,0x30,0x0,0x15,0x0,0x0, - 0x2a,0x30,0x1,0x8,0x0,0x0,0x1c,0x20,0x0,0xd,0x0,0x0,0x2a,0x30,0x1,0x8, - 0x0,0x0,0x1c,0x20,0x0,0xd,0x0,0x0,0x2a,0x30,0x0,0x15,0x4c,0x4d,0x54,0x0, - 0x49,0x4d,0x54,0x0,0x45,0x45,0x53,0x54,0x0,0x45,0x45,0x54,0x0,0x2b,0x30,0x34, - 0x0,0x2b,0x30,0x33,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x54,0x5a,0x69,0x66,0x32, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xb,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x84,0x0, - 0x0,0x0,0xb,0x0,0x0,0x0,0x19,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff, - 0xff,0xff,0xff,0x56,0xb6,0xc8,0xd8,0xff,0xff,0xff,0xff,0x90,0x8b,0xf5,0x98,0xff, - 0xff,0xff,0xff,0x9b,0xc,0x17,0x60,0xff,0xff,0xff,0xff,0x9b,0xd5,0xbe,0xd0,0xff, - 0xff,0xff,0xff,0xa2,0x65,0x63,0xe0,0xff,0xff,0xff,0xff,0xa3,0x7b,0x82,0x50,0xff, - 0xff,0xff,0xff,0xa4,0x4e,0x80,0x60,0xff,0xff,0xff,0xff,0xa5,0x3f,0xb4,0xd0,0xff, - 0xff,0xff,0xff,0xa6,0x25,0x27,0xe0,0xff,0xff,0xff,0xff,0xa7,0x27,0x7f,0xd0,0xff, - 0xff,0xff,0xff,0xaa,0x28,0x28,0x60,0xff,0xff,0xff,0xff,0xaa,0xe1,0xfd,0xd0,0xff, - 0xff,0xff,0xff,0xab,0xf9,0x89,0xe0,0xff,0xff,0xff,0xff,0xac,0xc3,0x31,0x50,0xff, - 0xff,0xff,0xff,0xc8,0x7f,0xee,0x60,0xff,0xff,0xff,0xff,0xc8,0xff,0xc1,0xd0,0xff, - 0xff,0xff,0xff,0xc9,0x4a,0xf5,0x60,0xff,0xff,0xff,0xff,0xca,0xce,0x80,0x50,0xff, - 0xff,0xff,0xff,0xcb,0xcb,0xae,0x60,0xff,0xff,0xff,0xff,0xcc,0xe5,0xc1,0x50,0xff, - 0xff,0xff,0xff,0xd1,0x71,0xeb,0xe0,0xff,0xff,0xff,0xff,0xd2,0x6b,0x9,0x50,0xff, - 0xff,0xff,0xff,0xd3,0xa2,0x39,0x60,0xff,0xff,0xff,0xff,0xd4,0x43,0x2,0x50,0xff, - 0xff,0xff,0xff,0xd5,0x4c,0xd,0xe0,0xff,0xff,0xff,0xff,0xd6,0x29,0x7b,0xd0,0xff, - 0xff,0xff,0xff,0xd7,0x2b,0xef,0xe0,0xff,0xff,0xff,0xff,0xd8,0x9,0x5d,0xd0,0xff, - 0xff,0xff,0xff,0xd9,0x2,0x97,0x60,0xff,0xff,0xff,0xff,0xd9,0xe9,0x3f,0xd0,0xff, - 0xff,0xff,0xff,0xda,0xef,0xa8,0x60,0xff,0xff,0xff,0xff,0xdb,0xd2,0x5c,0x50,0xff, - 0xff,0xff,0xff,0xdc,0xd4,0xd0,0x60,0xff,0xff,0xff,0xff,0xdd,0xb3,0x8f,0xd0,0xff, - 0xff,0xff,0xff,0xf1,0xf4,0xb9,0x60,0xff,0xff,0xff,0xff,0xf2,0x64,0xba,0xd0,0xff, - 0xff,0xff,0xff,0xf5,0x68,0x6,0x60,0xff,0xff,0xff,0xff,0xf6,0x1f,0x38,0xd0,0x0, - 0x0,0x0,0x0,0x0,0xa0,0xba,0xe0,0x0,0x0,0x0,0x0,0x1,0x6b,0xb3,0xd0,0x0, - 0x0,0x0,0x0,0x2,0x80,0x9c,0xe0,0x0,0x0,0x0,0x0,0x3,0x4b,0x95,0xd0,0x0, - 0x0,0x0,0x0,0x4,0x69,0xb9,0x60,0x0,0x0,0x0,0x0,0x5,0x34,0xb2,0x50,0x0, - 0x0,0x0,0x0,0x6,0x6e,0x93,0x70,0x0,0x0,0x0,0x0,0x7,0x39,0xa8,0x80,0x0, - 0x0,0x0,0x0,0x7,0xfb,0x75,0x0,0x0,0x0,0x0,0x0,0x9,0x19,0xa6,0xa0,0x0, - 0x0,0x0,0x0,0x9,0xdb,0x3a,0xe0,0x0,0x0,0x0,0x0,0xa,0xf0,0x7,0xd0,0x0, - 0x0,0x0,0x0,0xc,0x10,0xce,0x60,0x0,0x0,0x0,0x0,0xc,0xd9,0x24,0x50,0x0, - 0x0,0x0,0x0,0xd,0xa4,0x39,0x60,0x0,0x0,0x0,0x0,0xe,0xa6,0x91,0x50,0x0, - 0x0,0x0,0x0,0xf,0x84,0x1b,0x60,0x0,0x0,0x0,0x0,0x10,0x86,0x73,0x50,0x0, - 0x0,0x0,0x0,0x12,0x67,0x98,0xc0,0x0,0x0,0x0,0x0,0x13,0x4d,0x36,0x0,0x0, - 0x0,0x0,0x0,0x14,0x47,0x7a,0xc0,0x0,0x0,0x0,0x0,0x15,0x23,0xdd,0x80,0x0, - 0x0,0x0,0x0,0x16,0x27,0x5c,0xc0,0x0,0x0,0x0,0x0,0x17,0x3,0xbf,0x80,0x0, - 0x0,0x0,0x0,0x18,0x7,0x3e,0xc0,0x0,0x0,0x0,0x0,0x19,0x89,0x94,0x50,0x0, - 0x0,0x0,0x0,0x19,0xdc,0x94,0xc0,0x0,0x0,0x0,0x0,0x1c,0xc6,0xd3,0xd0,0x0, - 0x0,0x0,0x0,0x1d,0x9b,0x15,0x50,0x0,0x0,0x0,0x0,0x1e,0x8c,0x73,0xf0,0x0, - 0x0,0x0,0x0,0x1f,0x7c,0x64,0xf0,0x0,0x0,0x0,0x0,0x20,0x6c,0x55,0xf0,0x0, - 0x0,0x0,0x0,0x21,0x5c,0x46,0xf0,0x0,0x0,0x0,0x0,0x22,0x4c,0x37,0xf0,0x0, - 0x0,0x0,0x0,0x23,0x3c,0x28,0xf0,0x0,0x0,0x0,0x0,0x24,0x2c,0x19,0xf0,0x0, - 0x0,0x0,0x0,0x25,0x1c,0xa,0xf0,0x0,0x0,0x0,0x0,0x26,0xb,0xfb,0xf0,0x0, - 0x0,0x0,0x0,0x27,0x5,0x27,0x70,0x0,0x0,0x0,0x0,0x27,0xf5,0x18,0x70,0x0, - 0x0,0x0,0x0,0x28,0xe5,0x9,0x70,0x0,0x0,0x0,0x0,0x29,0xd4,0xfa,0x70,0x0, - 0x0,0x0,0x0,0x2a,0xc4,0xeb,0x70,0x0,0x0,0x0,0x0,0x2b,0xb4,0xdc,0x70,0x0, - 0x0,0x0,0x0,0x2c,0xa4,0xcd,0x70,0x0,0x0,0x0,0x0,0x2d,0x8b,0x83,0xf0,0x0, - 0x0,0x0,0x0,0x2e,0x84,0xaf,0x70,0x0,0x0,0x0,0x0,0x2f,0x74,0xa0,0x70,0x0, - 0x0,0x0,0x0,0x30,0x64,0x91,0x70,0x0,0x0,0x0,0x0,0x31,0x5d,0xbc,0xf0,0x0, - 0x0,0x0,0x0,0x32,0x72,0x97,0xf0,0x0,0x0,0x0,0x0,0x33,0x3d,0x9e,0xf0,0x0, - 0x0,0x0,0x0,0x34,0x52,0x79,0xf0,0x0,0x0,0x0,0x0,0x35,0x1d,0x80,0xf0,0x0, - 0x0,0x0,0x0,0x36,0x32,0x5b,0xf0,0x0,0x0,0x0,0x0,0x36,0xfd,0x62,0xf0,0x0, - 0x0,0x0,0x0,0x38,0x1b,0x78,0x70,0x0,0x0,0x0,0x0,0x38,0xdd,0x44,0xf0,0x0, - 0x0,0x0,0x0,0x39,0xfb,0x5a,0x70,0x0,0x0,0x0,0x0,0x3a,0xbd,0x26,0xf0,0x0, - 0x0,0x0,0x0,0x3b,0xdb,0x3c,0x70,0x0,0x0,0x0,0x0,0x3c,0xa6,0x43,0x70,0x0, - 0x0,0x0,0x0,0x3d,0xbb,0x1e,0x70,0x0,0x0,0x0,0x0,0x3e,0x86,0x25,0x70,0x0, - 0x0,0x0,0x0,0x3f,0x9b,0x0,0x70,0x0,0x0,0x0,0x0,0x40,0x66,0x7,0x70,0x0, - 0x0,0x0,0x0,0x41,0x84,0x1c,0xf0,0x0,0x0,0x0,0x0,0x42,0x45,0xe9,0x70,0x0, - 0x0,0x0,0x0,0x43,0x63,0xfe,0xf0,0x0,0x0,0x0,0x0,0x44,0x25,0xcb,0x70,0x0, - 0x0,0x0,0x0,0x45,0x43,0xe0,0xf0,0x0,0x0,0x0,0x0,0x45,0x98,0x32,0xe0,0x0, - 0x0,0x0,0x0,0x46,0x5,0xc9,0x90,0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0, - 0x0,0x0,0x0,0x47,0xee,0xe6,0x10,0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0, - 0x0,0x0,0x0,0x49,0xce,0xc8,0x10,0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0, - 0x0,0x0,0x0,0x4b,0xae,0xaa,0x10,0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0, - 0x0,0x0,0x0,0x4d,0x8f,0xdd,0x90,0x0,0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0, - 0x0,0x0,0x0,0x4f,0x6e,0x6e,0x10,0x0,0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0, - 0x0,0x0,0x0,0x51,0x57,0x8a,0x90,0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0, - 0x0,0x0,0x0,0x53,0x38,0xbe,0x10,0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0, - 0x0,0x0,0x0,0x55,0x17,0x4e,0x90,0x0,0x0,0x0,0x0,0x56,0x3e,0x9e,0x90,0x0, - 0x0,0x0,0x0,0x56,0xf7,0x30,0x90,0x0,0x0,0x0,0x0,0x57,0xcf,0x2e,0x50,0x0, - 0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x2,0x3,0x6,0x7,0x6,0x7,0x6, - 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, - 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, - 0x7,0x6,0x7,0x6,0x7,0x3,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, - 0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x5,0x5,0x0,0x0,0x1b,0x28,0x0, - 0x0,0x0,0x0,0x1b,0x68,0x0,0x4,0x0,0x0,0x2a,0x30,0x1,0x8,0x0,0x0,0x1c, - 0x20,0x0,0xd,0x0,0x0,0x38,0x40,0x1,0x11,0x0,0x0,0x2a,0x30,0x0,0x15,0x0, - 0x0,0x2a,0x30,0x1,0x8,0x0,0x0,0x1c,0x20,0x0,0xd,0x0,0x0,0x2a,0x30,0x1, - 0x8,0x0,0x0,0x1c,0x20,0x0,0xd,0x0,0x0,0x2a,0x30,0x0,0x15,0x4c,0x4d,0x54, - 0x0,0x49,0x4d,0x54,0x0,0x45,0x45,0x53,0x54,0x0,0x45,0x45,0x54,0x0,0x2b,0x30, - 0x34,0x0,0x2b,0x30,0x33,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0xa,0x3c,0x2b,0x30, - 0x33,0x3e,0x2d,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Guernsey - 0x0,0x0,0xe,0x67, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xf3,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x11,0x80,0x0,0x0,0x0,0x9b, - 0x26,0xad,0xa0,0x9b,0xd6,0x5,0x20,0x9c,0xcf,0x30,0xa0,0x9d,0xa4,0xc3,0xa0,0x9e, - 0x9c,0x9d,0xa0,0x9f,0x97,0x1a,0xa0,0xa0,0x85,0xba,0x20,0xa1,0x76,0xfc,0xa0,0xa2, - 0x65,0x9c,0x20,0xa3,0x7b,0xc8,0xa0,0xa4,0x4e,0xb8,0xa0,0xa5,0x3f,0xfb,0x20,0xa6, - 0x25,0x60,0x20,0xa7,0x27,0xc6,0x20,0xa8,0x2a,0x2c,0x20,0xa8,0xeb,0xf8,0xa0,0xaa, - 0x0,0xd3,0xa0,0xaa,0xd5,0x15,0x20,0xab,0xe9,0xf0,0x20,0xac,0xc7,0x6c,0x20,0xad, - 0xc9,0xd2,0x20,0xae,0xa7,0x4e,0x20,0xaf,0xa0,0x79,0xa0,0xb0,0x87,0x30,0x20,0xb1, - 0x92,0xd0,0xa0,0xb2,0x70,0x4c,0xa0,0xb3,0x72,0xb2,0xa0,0xb4,0x50,0x2e,0xa0,0xb5, - 0x49,0x5a,0x20,0xb6,0x30,0x10,0xa0,0xb7,0x32,0x76,0xa0,0xb8,0xf,0xf2,0xa0,0xb9, - 0x12,0x58,0xa0,0xb9,0xef,0xd4,0xa0,0xba,0xe9,0x0,0x20,0xbb,0xd8,0xf1,0x20,0xbc, - 0xdb,0x57,0x20,0xbd,0xb8,0xd3,0x20,0xbe,0xb1,0xfe,0xa0,0xbf,0x98,0xb5,0x20,0xc0, - 0x9b,0x1b,0x20,0xc1,0x78,0x97,0x20,0xc2,0x7a,0xfd,0x20,0xc3,0x58,0x79,0x20,0xc4, - 0x51,0xa4,0xa0,0xc5,0x38,0x5b,0x20,0xc6,0x3a,0xc1,0x20,0xc7,0x58,0xd6,0xa0,0xc7, - 0xda,0x9,0xa0,0xca,0x16,0x26,0x90,0xca,0x97,0x59,0x90,0xcb,0xd1,0x1e,0x90,0xcc, - 0x77,0x3b,0x90,0xcd,0xb1,0x0,0x90,0xce,0x60,0x58,0x10,0xcf,0x90,0xe2,0x90,0xd0, - 0x6e,0x5e,0x90,0xd1,0x72,0x16,0x10,0xd1,0xfb,0x32,0x10,0xd2,0x69,0xfe,0x20,0xd3, - 0x63,0x29,0xa0,0xd4,0x49,0xe0,0x20,0xd5,0x1e,0x21,0xa0,0xd5,0x42,0xfd,0x90,0xd5, - 0xdf,0xe0,0x10,0xd6,0x4e,0xac,0x20,0xd6,0xfe,0x3,0xa0,0xd8,0x2e,0x8e,0x20,0xd8, - 0xf9,0x95,0x20,0xda,0xe,0x70,0x20,0xda,0xeb,0xec,0x20,0xdb,0xe5,0x17,0xa0,0xdc, - 0xcb,0xce,0x20,0xdd,0xc4,0xf9,0xa0,0xde,0xb4,0xea,0xa0,0xdf,0xae,0x16,0x20,0xe0, - 0x94,0xcc,0xa0,0xe1,0x72,0x48,0xa0,0xe2,0x6b,0x74,0x20,0xe3,0x52,0x2a,0xa0,0xe4, - 0x54,0x90,0xa0,0xe5,0x32,0xc,0xa0,0xe6,0x3d,0xad,0x20,0xe7,0x1b,0x29,0x20,0xe8, - 0x14,0x54,0xa0,0xe8,0xfb,0xb,0x20,0xe9,0xfd,0x71,0x20,0xea,0xda,0xed,0x20,0xeb, - 0xdd,0x53,0x20,0xec,0xba,0xcf,0x20,0xed,0xb3,0xfa,0xa0,0xee,0x9a,0xb1,0x20,0xef, - 0x81,0x67,0xa0,0xf0,0x9f,0x7d,0x20,0xf1,0x61,0x49,0xa0,0xf2,0x7f,0x5f,0x20,0xf3, - 0x4a,0x66,0x20,0xf4,0x5f,0x41,0x20,0xf5,0x21,0xd,0xa0,0xf6,0x3f,0x23,0x20,0xf7, - 0x0,0xef,0xa0,0xf8,0x1f,0x5,0x20,0xf8,0xe0,0xd1,0xa0,0xf9,0xfe,0xe7,0x20,0xfa, - 0xc0,0xb3,0xa0,0xfb,0xe8,0x3,0xa0,0xfc,0x7b,0xab,0xa0,0xfd,0xc7,0xbb,0x70,0x3, - 0x70,0xc6,0x20,0x4,0x29,0x58,0x20,0x5,0x50,0xa8,0x20,0x6,0x9,0x3a,0x20,0x7, - 0x30,0x8a,0x20,0x7,0xe9,0x1c,0x20,0x9,0x10,0x6c,0x20,0x9,0xc8,0xfe,0x20,0xa, - 0xf0,0x4e,0x20,0xb,0xb2,0x1a,0xa0,0xc,0xd0,0x30,0x20,0xd,0x91,0xfc,0xa0,0xe, - 0xb0,0x12,0x20,0xf,0x71,0xde,0xa0,0x10,0x99,0x2e,0xa0,0x11,0x51,0xc0,0xa0,0x12, - 0x79,0x10,0xa0,0x13,0x31,0xa2,0xa0,0x14,0x58,0xf2,0xa0,0x15,0x23,0xeb,0x90,0x16, - 0x38,0xc6,0x90,0x17,0x3,0xcd,0x90,0x18,0x18,0xa8,0x90,0x18,0xe3,0xaf,0x90,0x19, - 0xf8,0x8a,0x90,0x1a,0xc3,0x91,0x90,0x1b,0xe1,0xa7,0x10,0x1c,0xac,0xae,0x10,0x1d, - 0xc1,0x89,0x10,0x1e,0x8c,0x90,0x10,0x1f,0xa1,0x6b,0x10,0x20,0x6c,0x72,0x10,0x21, - 0x81,0x4d,0x10,0x22,0x4c,0x54,0x10,0x23,0x61,0x2f,0x10,0x24,0x2c,0x36,0x10,0x25, - 0x4a,0x4b,0x90,0x26,0xc,0x18,0x10,0x27,0x2a,0x2d,0x90,0x27,0xf5,0x34,0x90,0x29, - 0xa,0xf,0x90,0x29,0xd5,0x16,0x90,0x2a,0xe9,0xf1,0x90,0x2b,0xb4,0xf8,0x90,0x2c, - 0xc9,0xd3,0x90,0x2d,0x94,0xda,0x90,0x2e,0xa9,0xb5,0x90,0x2f,0x74,0xbc,0x90,0x30, - 0x89,0x97,0x90,0x30,0xe7,0x24,0x0,0x31,0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33, - 0x3d,0xbb,0x10,0x34,0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36, - 0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a, - 0xbd,0x43,0x10,0x3b,0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e, - 0x86,0x41,0x90,0x3f,0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42, - 0x46,0x5,0x90,0x43,0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46, - 0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49, - 0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d, - 0x8e,0x8c,0x10,0x4e,0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51, - 0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55, - 0x17,0x4e,0x90,0x56,0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58, - 0xd7,0x12,0x90,0x59,0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c, - 0xa0,0x11,0x10,0x5d,0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60, - 0x5f,0xd5,0x10,0x61,0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64, - 0x1f,0x99,0x10,0x65,0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67, - 0xe8,0x97,0x90,0x68,0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b, - 0xa8,0x5b,0x90,0x6c,0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f, - 0x68,0x1f,0x90,0x70,0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73, - 0x31,0x1e,0x10,0x74,0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76, - 0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a, - 0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e, - 0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0xad,0xd4,0x0,0x0,0xff,0xff,0xb9, + 0xb0,0x1,0x4,0xff,0xff,0xab,0xa0,0x0,0x8,0xff,0xff,0xb9,0xb0,0x0,0xc,0xff, + 0xff,0xb9,0xb0,0x1,0x10,0xff,0xff,0xb9,0xb0,0x1,0x14,0xff,0xff,0xab,0xa0,0x0, + 0x8,0x4c,0x4d,0x54,0x0,0x43,0x44,0x54,0x0,0x43,0x53,0x54,0x0,0x45,0x53,0x54, + 0x0,0x43,0x57,0x54,0x0,0x43,0x50,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0, + 0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0, + 0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xed,0x0,0x0,0x0,0x7,0x0, + 0x0,0x0,0x18,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x5e, + 0x3,0xfe,0xa0,0xff,0xff,0xff,0xff,0x9e,0xa6,0x2c,0x80,0xff,0xff,0xff,0xff,0x9f, + 0xba,0xf9,0x70,0xff,0xff,0xff,0xff,0xa0,0x86,0xe,0x80,0xff,0xff,0xff,0xff,0xa1, + 0x9a,0xdb,0x70,0xff,0xff,0xff,0xff,0xa2,0xcb,0x74,0x0,0xff,0xff,0xff,0xff,0xa3, + 0x83,0xf7,0xf0,0xff,0xff,0xff,0xff,0xa4,0x45,0xd2,0x80,0xff,0xff,0xff,0xff,0xa5, + 0x63,0xd9,0xf0,0xff,0xff,0xff,0xff,0xa6,0x53,0xd9,0x0,0xff,0xff,0xff,0xff,0xa7, + 0x15,0x97,0x70,0xff,0xff,0xff,0xff,0xa8,0x33,0xbb,0x0,0xff,0xff,0xff,0xff,0xa8, + 0xfe,0xb3,0xf0,0xff,0xff,0xff,0xff,0xaa,0x13,0x9d,0x0,0xff,0xff,0xff,0xff,0xaa, + 0xde,0x95,0xf0,0xff,0xff,0xff,0xff,0xab,0xf3,0x7f,0x0,0xff,0xff,0xff,0xff,0xac, + 0xbe,0x77,0xf0,0xff,0xff,0xff,0xff,0xad,0xd3,0x61,0x0,0xff,0xff,0xff,0xff,0xae, + 0x9e,0x59,0xf0,0xff,0xff,0xff,0xff,0xaf,0xb3,0x43,0x0,0xff,0xff,0xff,0xff,0xb0, + 0x7e,0x3b,0xf0,0xff,0xff,0xff,0xff,0xb1,0x9c,0x5f,0x80,0xff,0xff,0xff,0xff,0xb2, + 0x67,0x58,0x70,0xff,0xff,0xff,0xff,0xb3,0x7c,0x41,0x80,0xff,0xff,0xff,0xff,0xb4, + 0x47,0x3a,0x70,0xff,0xff,0xff,0xff,0xb5,0x5c,0x23,0x80,0xff,0xff,0xff,0xff,0xb6, + 0x27,0x1c,0x70,0xff,0xff,0xff,0xff,0xb7,0x3c,0x5,0x80,0xff,0xff,0xff,0xff,0xb8, + 0x6,0xfe,0x70,0xff,0xff,0xff,0xff,0xb9,0x1b,0xe7,0x80,0xff,0xff,0xff,0xff,0xb9, + 0xe6,0xe0,0x70,0xff,0xff,0xff,0xff,0xbb,0x5,0x4,0x0,0xff,0xff,0xff,0xff,0xbb, + 0xc6,0xc2,0x70,0xff,0xff,0xff,0xff,0xbc,0xe4,0xe6,0x0,0xff,0xff,0xff,0xff,0xbd, + 0xaf,0xde,0xf0,0xff,0xff,0xff,0xff,0xbe,0xc4,0xc8,0x0,0xff,0xff,0xff,0xff,0xbf, + 0x8f,0xc0,0xf0,0xff,0xff,0xff,0xff,0xc0,0x5a,0xd6,0x0,0xff,0xff,0xff,0xff,0xc1, + 0xb0,0x3c,0x70,0xff,0xff,0xff,0xff,0xc2,0x84,0x8c,0x0,0xff,0xff,0xff,0xff,0xc3, + 0x4f,0x84,0xf0,0xff,0xff,0xff,0xff,0xc4,0x64,0x6e,0x0,0xff,0xff,0xff,0xff,0xc5, + 0x2f,0x66,0xf0,0xff,0xff,0xff,0xff,0xc6,0x4d,0x8a,0x80,0xff,0xff,0xff,0xff,0xc7, + 0xf,0x48,0xf0,0xff,0xff,0xff,0xff,0xc8,0x2d,0x6c,0x80,0xff,0xff,0xff,0xff,0xc8, + 0xf8,0x65,0x70,0xff,0xff,0xff,0xff,0xca,0xd,0x4e,0x80,0xff,0xff,0xff,0xff,0xca, + 0xd8,0x47,0x70,0xff,0xff,0xff,0xff,0xcb,0x88,0xfe,0x80,0xff,0xff,0xff,0xff,0xd2, + 0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x61,0x9,0xf0,0xff,0xff,0xff,0xff,0xd3, + 0x75,0xf3,0x0,0xff,0xff,0xff,0xff,0xd4,0x40,0xeb,0xf0,0xff,0xff,0xff,0xff,0xd5, + 0x55,0xd5,0x0,0xff,0xff,0xff,0xff,0xd6,0x20,0xcd,0xf0,0xff,0xff,0xff,0xff,0xd7, + 0x35,0xb7,0x0,0xff,0xff,0xff,0xff,0xd8,0x0,0xaf,0xf0,0xff,0xff,0xff,0xff,0xd9, + 0x15,0x99,0x0,0xff,0xff,0xff,0xff,0xd9,0xe0,0x91,0xf0,0xff,0xff,0xff,0xff,0xda, + 0xfe,0xb5,0x80,0xff,0xff,0xff,0xff,0xdb,0xc0,0x73,0xf0,0xff,0xff,0xff,0xff,0xdc, + 0xde,0x97,0x80,0xff,0xff,0xff,0xff,0xdd,0xa9,0x90,0x70,0xff,0xff,0xff,0xff,0xde, + 0xbe,0x79,0x80,0xff,0xff,0xff,0xff,0xdf,0x89,0x72,0x70,0xff,0xff,0xff,0xff,0xe0, + 0x9e,0x5b,0x80,0xff,0xff,0xff,0xff,0xe1,0x69,0x54,0x70,0xff,0xff,0xff,0xff,0xe2, + 0x7e,0x3d,0x80,0xff,0xff,0xff,0xff,0xe3,0x49,0x36,0x70,0xff,0xff,0xff,0xff,0xe4, + 0x5e,0x1f,0x80,0xff,0xff,0xff,0xff,0xe5,0x57,0x3c,0xf0,0xff,0xff,0xff,0xff,0xe6, + 0x47,0x3c,0x0,0xff,0xff,0xff,0xff,0xe7,0x37,0x1e,0xf0,0xff,0xff,0xff,0xff,0xe8, + 0x27,0x1e,0x0,0xff,0xff,0xff,0xff,0xe9,0x17,0x0,0xf0,0xff,0xff,0xff,0xff,0xea, + 0x7,0x0,0x0,0xff,0xff,0xff,0xff,0xea,0xf6,0xe2,0xf0,0xff,0xff,0xff,0xff,0xeb, + 0xe6,0xe2,0x0,0xff,0xff,0xff,0xff,0xec,0xd6,0xc4,0xf0,0xff,0xff,0xff,0xff,0xed, + 0xc6,0xc4,0x0,0xff,0xff,0xff,0xff,0xee,0xbf,0xe1,0x70,0xff,0xff,0xff,0xff,0xef, + 0xaf,0xe0,0x80,0xff,0xff,0xff,0xff,0xf0,0x9f,0xc3,0x70,0xff,0xff,0xff,0xff,0xf1, + 0x8f,0xc2,0x80,0xff,0xff,0xff,0xff,0xf2,0x7f,0xa5,0x70,0xff,0xff,0xff,0xff,0xf3, + 0x6f,0xa4,0x80,0xff,0xff,0xff,0xff,0xf4,0x5f,0x87,0x70,0xff,0xff,0xff,0xff,0xf5, + 0x4f,0x86,0x80,0xff,0xff,0xff,0xff,0xf6,0x3f,0x69,0x70,0xff,0xff,0xff,0xff,0xf7, + 0x2f,0x68,0x80,0xff,0xff,0xff,0xff,0xf8,0x28,0x85,0xf0,0xff,0xff,0xff,0xff,0xf9, + 0xf,0x4a,0x80,0xff,0xff,0xff,0xff,0xfa,0x8,0x67,0xf0,0xff,0xff,0xff,0xff,0xfa, + 0xf8,0x67,0x0,0xff,0xff,0xff,0xff,0xfb,0xe8,0x49,0xf0,0xff,0xff,0xff,0xff,0xfc, + 0xd8,0x49,0x0,0xff,0xff,0xff,0xff,0xfd,0xc8,0x2b,0xf0,0xff,0xff,0xff,0xff,0xfe, + 0xb8,0x2b,0x0,0xff,0xff,0xff,0xff,0xff,0xa8,0xd,0xf0,0x0,0x0,0x0,0x0,0x0, + 0x98,0xd,0x0,0x0,0x0,0x0,0x0,0x1,0x87,0xef,0xf0,0x0,0x0,0x0,0x0,0x2, + 0x77,0xef,0x0,0x0,0x0,0x0,0x0,0x3,0x71,0xc,0x70,0x0,0x0,0x0,0x0,0x4, + 0x61,0xb,0x80,0x0,0x0,0x0,0x0,0x5,0x50,0xee,0x70,0x0,0x0,0x0,0x0,0x6, + 0x40,0xed,0x80,0x0,0x0,0x0,0x0,0x7,0x30,0xd0,0x70,0x0,0x0,0x0,0x0,0x7, + 0x8d,0x27,0x80,0x0,0x0,0x0,0x0,0x9,0x10,0xb2,0x70,0x0,0x0,0x0,0x0,0x9, + 0xad,0xa3,0x0,0x0,0x0,0x0,0x0,0xa,0xf0,0x94,0x70,0x0,0x0,0x0,0x0,0xb, + 0xe0,0x93,0x80,0x0,0x0,0x0,0x0,0xc,0xd9,0xb0,0xf0,0x0,0x0,0x0,0x0,0xd, + 0xc0,0x75,0x80,0x0,0x0,0x0,0x0,0xe,0xb9,0x92,0xf0,0x0,0x0,0x0,0x0,0xf, + 0xa9,0x92,0x0,0x0,0x0,0x0,0x0,0x10,0x99,0x74,0xf0,0x0,0x0,0x0,0x0,0x11, + 0x89,0x74,0x0,0x0,0x0,0x0,0x0,0x12,0x79,0x56,0xf0,0x0,0x0,0x0,0x0,0x13, + 0x69,0x56,0x0,0x0,0x0,0x0,0x0,0x14,0x59,0x38,0xf0,0x0,0x0,0x0,0x0,0x15, + 0x49,0x38,0x0,0x0,0x0,0x0,0x0,0x16,0x39,0x1a,0xf0,0x0,0x0,0x0,0x0,0x17, + 0x29,0x1a,0x0,0x0,0x0,0x0,0x0,0x18,0x22,0x37,0x70,0x0,0x0,0x0,0x0,0x19, + 0x8,0xfc,0x0,0x0,0x0,0x0,0x0,0x1a,0x2,0x19,0x70,0x0,0x0,0x0,0x0,0x1a, + 0xf2,0x18,0x80,0x0,0x0,0x0,0x0,0x1b,0xe1,0xfb,0x70,0x0,0x0,0x0,0x0,0x1c, + 0xd1,0xfa,0x80,0x0,0x0,0x0,0x0,0x1d,0xc1,0xdd,0x70,0x0,0x0,0x0,0x0,0x1e, + 0xb1,0xdc,0x80,0x0,0x0,0x0,0x0,0x1f,0xa1,0xbf,0x70,0x0,0x0,0x0,0x0,0x20, + 0x76,0xf,0x0,0x0,0x0,0x0,0x0,0x21,0x81,0xa1,0x70,0x0,0x0,0x0,0x0,0x22, + 0x55,0xf1,0x0,0x0,0x0,0x0,0x0,0x23,0x6a,0xbd,0xf0,0x0,0x0,0x0,0x0,0x24, + 0x35,0xd3,0x0,0x0,0x0,0x0,0x0,0x25,0x4a,0x9f,0xf0,0x0,0x0,0x0,0x0,0x26, + 0x15,0xb5,0x0,0x0,0x0,0x0,0x0,0x27,0x2a,0x81,0xf0,0x0,0x0,0x0,0x0,0x27, + 0xfe,0xd1,0x80,0x0,0x0,0x0,0x0,0x29,0xa,0x63,0xf0,0x0,0x0,0x0,0x0,0x29, + 0xde,0xb3,0x80,0x0,0x0,0x0,0x0,0x2a,0xea,0x45,0xf0,0x0,0x0,0x0,0x0,0x2b, + 0xbe,0x95,0x80,0x0,0x0,0x0,0x0,0x2c,0xd3,0x62,0x70,0x0,0x0,0x0,0x0,0x2d, + 0x9e,0x77,0x80,0x0,0x0,0x0,0x0,0x2e,0xb3,0x44,0x70,0x0,0x0,0x0,0x0,0x2f, + 0x7e,0x59,0x80,0x0,0x0,0x0,0x0,0x30,0x93,0x26,0x70,0x0,0x0,0x0,0x0,0x31, + 0x67,0x76,0x0,0x0,0x0,0x0,0x0,0x32,0x73,0x8,0x70,0x0,0x0,0x0,0x0,0x33, + 0x47,0x58,0x0,0x0,0x0,0x0,0x0,0x34,0x52,0xea,0x70,0x0,0x0,0x0,0x0,0x35, + 0x27,0x3a,0x0,0x0,0x0,0x0,0x0,0x36,0x32,0xcc,0x70,0x0,0x0,0x0,0x0,0x37, + 0x7,0x1c,0x0,0x0,0x0,0x0,0x0,0x38,0x1b,0xe8,0xf0,0x0,0x0,0x0,0x0,0x38, + 0xe6,0xfe,0x0,0x0,0x0,0x0,0x0,0x39,0xfb,0xca,0xf0,0x0,0x0,0x0,0x0,0x3a, + 0xc6,0xe0,0x0,0x0,0x0,0x0,0x0,0x3b,0xdb,0xac,0xf0,0x0,0x0,0x0,0x0,0x3c, + 0xaf,0xfc,0x80,0x0,0x0,0x0,0x0,0x3d,0xbb,0x8e,0xf0,0x0,0x0,0x0,0x0,0x3e, + 0x8f,0xde,0x80,0x0,0x0,0x0,0x0,0x3f,0x9b,0x70,0xf0,0x0,0x0,0x0,0x0,0x40, + 0x6f,0xc0,0x80,0x0,0x0,0x0,0x0,0x41,0x84,0x8d,0x70,0x0,0x0,0x0,0x0,0x42, + 0x4f,0xa2,0x80,0x0,0x0,0x0,0x0,0x43,0x64,0x6f,0x70,0x0,0x0,0x0,0x0,0x44, + 0x2f,0x84,0x80,0x0,0x0,0x0,0x0,0x45,0x44,0x51,0x70,0x0,0x0,0x0,0x0,0x45, + 0xf3,0xb7,0x0,0x0,0x0,0x0,0x0,0x47,0x2d,0x6d,0xf0,0x0,0x0,0x0,0x0,0x47, + 0xd3,0x99,0x0,0x0,0x0,0x0,0x0,0x49,0xd,0x4f,0xf0,0x0,0x0,0x0,0x0,0x49, + 0xb3,0x7b,0x0,0x0,0x0,0x0,0x0,0x4a,0xed,0x31,0xf0,0x0,0x0,0x0,0x0,0x4b, + 0x9c,0x97,0x80,0x0,0x0,0x0,0x0,0x4c,0xd6,0x4e,0x70,0x0,0x0,0x0,0x0,0x4d, + 0x7c,0x79,0x80,0x0,0x0,0x0,0x0,0x4e,0xb6,0x30,0x70,0x0,0x0,0x0,0x0,0x4f, + 0x5c,0x5b,0x80,0x0,0x0,0x0,0x0,0x50,0x96,0x12,0x70,0x0,0x0,0x0,0x0,0x51, + 0x3c,0x3d,0x80,0x0,0x0,0x0,0x0,0x52,0x75,0xf4,0x70,0x0,0x0,0x0,0x0,0x53, + 0x1c,0x1f,0x80,0x0,0x0,0x0,0x0,0x54,0x55,0xd6,0x70,0x0,0x0,0x0,0x0,0x54, + 0xfc,0x1,0x80,0x0,0x0,0x0,0x0,0x56,0x35,0xb8,0x70,0x0,0x0,0x0,0x0,0x56, + 0xe5,0x1e,0x0,0x0,0x0,0x0,0x0,0x58,0x1e,0xd4,0xf0,0x0,0x0,0x0,0x0,0x58, + 0xc5,0x0,0x0,0x0,0x0,0x0,0x0,0x59,0xfe,0xb6,0xf0,0x0,0x0,0x0,0x0,0x5a, + 0xa4,0xe2,0x0,0x0,0x0,0x0,0x0,0x5b,0xde,0x98,0xf0,0x0,0x0,0x0,0x0,0x5c, + 0x84,0xc4,0x0,0x0,0x0,0x0,0x0,0x5d,0xbe,0x7a,0xf0,0x0,0x0,0x0,0x0,0x5e, + 0x64,0xa6,0x0,0x0,0x0,0x0,0x0,0x5f,0x9e,0x5c,0xf0,0x0,0x0,0x0,0x0,0x60, + 0x4d,0xc2,0x80,0x0,0x0,0x0,0x0,0x61,0x87,0x79,0x70,0x0,0x0,0x0,0x0,0x62, + 0x2d,0xa4,0x80,0x0,0x0,0x0,0x0,0x63,0x67,0x5b,0x70,0x0,0x0,0x0,0x0,0x64, + 0xd,0x86,0x80,0x0,0x0,0x0,0x0,0x65,0x47,0x3d,0x70,0x0,0x0,0x0,0x0,0x65, + 0xed,0x68,0x80,0x0,0x0,0x0,0x0,0x67,0x27,0x1f,0x70,0x0,0x0,0x0,0x0,0x67, + 0xcd,0x4a,0x80,0x0,0x0,0x0,0x0,0x69,0x7,0x1,0x70,0x0,0x0,0x0,0x0,0x69, + 0xad,0x2c,0x80,0x0,0x0,0x0,0x0,0x6a,0xe6,0xe3,0x70,0x0,0x0,0x0,0x0,0x6b, + 0x96,0x49,0x0,0x0,0x0,0x0,0x0,0x6c,0xcf,0xff,0xf0,0x0,0x0,0x0,0x0,0x6d, + 0x76,0x2b,0x0,0x0,0x0,0x0,0x0,0x6e,0xaf,0xe1,0xf0,0x0,0x0,0x0,0x0,0x6f, + 0x56,0xd,0x0,0x0,0x0,0x0,0x0,0x70,0x8f,0xc3,0xf0,0x0,0x0,0x0,0x0,0x71, + 0x35,0xef,0x0,0x0,0x0,0x0,0x0,0x72,0x6f,0xa5,0xf0,0x0,0x0,0x0,0x0,0x73, + 0x15,0xd1,0x0,0x0,0x0,0x0,0x0,0x74,0x4f,0x87,0xf0,0x0,0x0,0x0,0x0,0x74, + 0xfe,0xed,0x80,0x0,0x0,0x0,0x0,0x76,0x38,0xa4,0x70,0x0,0x0,0x0,0x0,0x76, + 0xde,0xcf,0x80,0x0,0x0,0x0,0x0,0x78,0x18,0x86,0x70,0x0,0x0,0x0,0x0,0x78, + 0xbe,0xb1,0x80,0x0,0x0,0x0,0x0,0x79,0xf8,0x68,0x70,0x0,0x0,0x0,0x0,0x7a, + 0x9e,0x93,0x80,0x0,0x0,0x0,0x0,0x7b,0xd8,0x4a,0x70,0x0,0x0,0x0,0x0,0x7c, + 0x7e,0x75,0x80,0x0,0x0,0x0,0x0,0x7d,0xb8,0x2c,0x70,0x0,0x0,0x0,0x0,0x7e, + 0x5e,0x57,0x80,0x0,0x0,0x0,0x0,0x7f,0x98,0xe,0x70,0x0,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x3,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x4,0x5,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3, - 0x1,0x3,0x1,0x2,0x1,0x2,0x1,0x3,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x4,0x6,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x7,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0xff,0xff,0xff,0xb5,0x0,0x0, - 0x0,0x0,0xe,0x10,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x1c,0x20, - 0x1,0xc,0x0,0x0,0xe,0x10,0x0,0x4,0x0,0x0,0xe,0x10,0x1,0x4,0x0,0x0, - 0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x42,0x53, - 0x54,0x0,0x47,0x4d,0x54,0x0,0x42,0x44,0x53,0x54,0x0,0x0,0x1,0x1,0x1,0x0, - 0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x54,0x5a,0x69,0x66,0x32, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf4,0x0, - 0x0,0x0,0x8,0x0,0x0,0x0,0x11,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff, - 0xff,0xff,0xff,0x1a,0x5d,0x9,0xcb,0xff,0xff,0xff,0xff,0x9b,0x26,0xad,0xa0,0xff, - 0xff,0xff,0xff,0x9b,0xd6,0x5,0x20,0xff,0xff,0xff,0xff,0x9c,0xcf,0x30,0xa0,0xff, - 0xff,0xff,0xff,0x9d,0xa4,0xc3,0xa0,0xff,0xff,0xff,0xff,0x9e,0x9c,0x9d,0xa0,0xff, - 0xff,0xff,0xff,0x9f,0x97,0x1a,0xa0,0xff,0xff,0xff,0xff,0xa0,0x85,0xba,0x20,0xff, - 0xff,0xff,0xff,0xa1,0x76,0xfc,0xa0,0xff,0xff,0xff,0xff,0xa2,0x65,0x9c,0x20,0xff, - 0xff,0xff,0xff,0xa3,0x7b,0xc8,0xa0,0xff,0xff,0xff,0xff,0xa4,0x4e,0xb8,0xa0,0xff, - 0xff,0xff,0xff,0xa5,0x3f,0xfb,0x20,0xff,0xff,0xff,0xff,0xa6,0x25,0x60,0x20,0xff, - 0xff,0xff,0xff,0xa7,0x27,0xc6,0x20,0xff,0xff,0xff,0xff,0xa8,0x2a,0x2c,0x20,0xff, - 0xff,0xff,0xff,0xa8,0xeb,0xf8,0xa0,0xff,0xff,0xff,0xff,0xaa,0x0,0xd3,0xa0,0xff, - 0xff,0xff,0xff,0xaa,0xd5,0x15,0x20,0xff,0xff,0xff,0xff,0xab,0xe9,0xf0,0x20,0xff, - 0xff,0xff,0xff,0xac,0xc7,0x6c,0x20,0xff,0xff,0xff,0xff,0xad,0xc9,0xd2,0x20,0xff, - 0xff,0xff,0xff,0xae,0xa7,0x4e,0x20,0xff,0xff,0xff,0xff,0xaf,0xa0,0x79,0xa0,0xff, - 0xff,0xff,0xff,0xb0,0x87,0x30,0x20,0xff,0xff,0xff,0xff,0xb1,0x92,0xd0,0xa0,0xff, - 0xff,0xff,0xff,0xb2,0x70,0x4c,0xa0,0xff,0xff,0xff,0xff,0xb3,0x72,0xb2,0xa0,0xff, - 0xff,0xff,0xff,0xb4,0x50,0x2e,0xa0,0xff,0xff,0xff,0xff,0xb5,0x49,0x5a,0x20,0xff, - 0xff,0xff,0xff,0xb6,0x30,0x10,0xa0,0xff,0xff,0xff,0xff,0xb7,0x32,0x76,0xa0,0xff, - 0xff,0xff,0xff,0xb8,0xf,0xf2,0xa0,0xff,0xff,0xff,0xff,0xb9,0x12,0x58,0xa0,0xff, - 0xff,0xff,0xff,0xb9,0xef,0xd4,0xa0,0xff,0xff,0xff,0xff,0xba,0xe9,0x0,0x20,0xff, - 0xff,0xff,0xff,0xbb,0xd8,0xf1,0x20,0xff,0xff,0xff,0xff,0xbc,0xdb,0x57,0x20,0xff, - 0xff,0xff,0xff,0xbd,0xb8,0xd3,0x20,0xff,0xff,0xff,0xff,0xbe,0xb1,0xfe,0xa0,0xff, - 0xff,0xff,0xff,0xbf,0x98,0xb5,0x20,0xff,0xff,0xff,0xff,0xc0,0x9b,0x1b,0x20,0xff, - 0xff,0xff,0xff,0xc1,0x78,0x97,0x20,0xff,0xff,0xff,0xff,0xc2,0x7a,0xfd,0x20,0xff, - 0xff,0xff,0xff,0xc3,0x58,0x79,0x20,0xff,0xff,0xff,0xff,0xc4,0x51,0xa4,0xa0,0xff, - 0xff,0xff,0xff,0xc5,0x38,0x5b,0x20,0xff,0xff,0xff,0xff,0xc6,0x3a,0xc1,0x20,0xff, - 0xff,0xff,0xff,0xc7,0x58,0xd6,0xa0,0xff,0xff,0xff,0xff,0xc7,0xda,0x9,0xa0,0xff, - 0xff,0xff,0xff,0xca,0x16,0x26,0x90,0xff,0xff,0xff,0xff,0xca,0x97,0x59,0x90,0xff, - 0xff,0xff,0xff,0xcb,0xd1,0x1e,0x90,0xff,0xff,0xff,0xff,0xcc,0x77,0x3b,0x90,0xff, - 0xff,0xff,0xff,0xcd,0xb1,0x0,0x90,0xff,0xff,0xff,0xff,0xce,0x60,0x58,0x10,0xff, - 0xff,0xff,0xff,0xcf,0x90,0xe2,0x90,0xff,0xff,0xff,0xff,0xd0,0x6e,0x5e,0x90,0xff, - 0xff,0xff,0xff,0xd1,0x72,0x16,0x10,0xff,0xff,0xff,0xff,0xd1,0xfb,0x32,0x10,0xff, - 0xff,0xff,0xff,0xd2,0x69,0xfe,0x20,0xff,0xff,0xff,0xff,0xd3,0x63,0x29,0xa0,0xff, - 0xff,0xff,0xff,0xd4,0x49,0xe0,0x20,0xff,0xff,0xff,0xff,0xd5,0x1e,0x21,0xa0,0xff, - 0xff,0xff,0xff,0xd5,0x42,0xfd,0x90,0xff,0xff,0xff,0xff,0xd5,0xdf,0xe0,0x10,0xff, - 0xff,0xff,0xff,0xd6,0x4e,0xac,0x20,0xff,0xff,0xff,0xff,0xd6,0xfe,0x3,0xa0,0xff, - 0xff,0xff,0xff,0xd8,0x2e,0x8e,0x20,0xff,0xff,0xff,0xff,0xd8,0xf9,0x95,0x20,0xff, - 0xff,0xff,0xff,0xda,0xe,0x70,0x20,0xff,0xff,0xff,0xff,0xda,0xeb,0xec,0x20,0xff, - 0xff,0xff,0xff,0xdb,0xe5,0x17,0xa0,0xff,0xff,0xff,0xff,0xdc,0xcb,0xce,0x20,0xff, - 0xff,0xff,0xff,0xdd,0xc4,0xf9,0xa0,0xff,0xff,0xff,0xff,0xde,0xb4,0xea,0xa0,0xff, - 0xff,0xff,0xff,0xdf,0xae,0x16,0x20,0xff,0xff,0xff,0xff,0xe0,0x94,0xcc,0xa0,0xff, - 0xff,0xff,0xff,0xe1,0x72,0x48,0xa0,0xff,0xff,0xff,0xff,0xe2,0x6b,0x74,0x20,0xff, - 0xff,0xff,0xff,0xe3,0x52,0x2a,0xa0,0xff,0xff,0xff,0xff,0xe4,0x54,0x90,0xa0,0xff, - 0xff,0xff,0xff,0xe5,0x32,0xc,0xa0,0xff,0xff,0xff,0xff,0xe6,0x3d,0xad,0x20,0xff, - 0xff,0xff,0xff,0xe7,0x1b,0x29,0x20,0xff,0xff,0xff,0xff,0xe8,0x14,0x54,0xa0,0xff, - 0xff,0xff,0xff,0xe8,0xfb,0xb,0x20,0xff,0xff,0xff,0xff,0xe9,0xfd,0x71,0x20,0xff, - 0xff,0xff,0xff,0xea,0xda,0xed,0x20,0xff,0xff,0xff,0xff,0xeb,0xdd,0x53,0x20,0xff, - 0xff,0xff,0xff,0xec,0xba,0xcf,0x20,0xff,0xff,0xff,0xff,0xed,0xb3,0xfa,0xa0,0xff, - 0xff,0xff,0xff,0xee,0x9a,0xb1,0x20,0xff,0xff,0xff,0xff,0xef,0x81,0x67,0xa0,0xff, - 0xff,0xff,0xff,0xf0,0x9f,0x7d,0x20,0xff,0xff,0xff,0xff,0xf1,0x61,0x49,0xa0,0xff, - 0xff,0xff,0xff,0xf2,0x7f,0x5f,0x20,0xff,0xff,0xff,0xff,0xf3,0x4a,0x66,0x20,0xff, - 0xff,0xff,0xff,0xf4,0x5f,0x41,0x20,0xff,0xff,0xff,0xff,0xf5,0x21,0xd,0xa0,0xff, - 0xff,0xff,0xff,0xf6,0x3f,0x23,0x20,0xff,0xff,0xff,0xff,0xf7,0x0,0xef,0xa0,0xff, - 0xff,0xff,0xff,0xf8,0x1f,0x5,0x20,0xff,0xff,0xff,0xff,0xf8,0xe0,0xd1,0xa0,0xff, - 0xff,0xff,0xff,0xf9,0xfe,0xe7,0x20,0xff,0xff,0xff,0xff,0xfa,0xc0,0xb3,0xa0,0xff, - 0xff,0xff,0xff,0xfb,0xe8,0x3,0xa0,0xff,0xff,0xff,0xff,0xfc,0x7b,0xab,0xa0,0xff, - 0xff,0xff,0xff,0xfd,0xc7,0xbb,0x70,0x0,0x0,0x0,0x0,0x3,0x70,0xc6,0x20,0x0, - 0x0,0x0,0x0,0x4,0x29,0x58,0x20,0x0,0x0,0x0,0x0,0x5,0x50,0xa8,0x20,0x0, - 0x0,0x0,0x0,0x6,0x9,0x3a,0x20,0x0,0x0,0x0,0x0,0x7,0x30,0x8a,0x20,0x0, - 0x0,0x0,0x0,0x7,0xe9,0x1c,0x20,0x0,0x0,0x0,0x0,0x9,0x10,0x6c,0x20,0x0, - 0x0,0x0,0x0,0x9,0xc8,0xfe,0x20,0x0,0x0,0x0,0x0,0xa,0xf0,0x4e,0x20,0x0, - 0x0,0x0,0x0,0xb,0xb2,0x1a,0xa0,0x0,0x0,0x0,0x0,0xc,0xd0,0x30,0x20,0x0, - 0x0,0x0,0x0,0xd,0x91,0xfc,0xa0,0x0,0x0,0x0,0x0,0xe,0xb0,0x12,0x20,0x0, - 0x0,0x0,0x0,0xf,0x71,0xde,0xa0,0x0,0x0,0x0,0x0,0x10,0x99,0x2e,0xa0,0x0, - 0x0,0x0,0x0,0x11,0x51,0xc0,0xa0,0x0,0x0,0x0,0x0,0x12,0x79,0x10,0xa0,0x0, - 0x0,0x0,0x0,0x13,0x31,0xa2,0xa0,0x0,0x0,0x0,0x0,0x14,0x58,0xf2,0xa0,0x0, - 0x0,0x0,0x0,0x15,0x23,0xeb,0x90,0x0,0x0,0x0,0x0,0x16,0x38,0xc6,0x90,0x0, - 0x0,0x0,0x0,0x17,0x3,0xcd,0x90,0x0,0x0,0x0,0x0,0x18,0x18,0xa8,0x90,0x0, - 0x0,0x0,0x0,0x18,0xe3,0xaf,0x90,0x0,0x0,0x0,0x0,0x19,0xf8,0x8a,0x90,0x0, - 0x0,0x0,0x0,0x1a,0xc3,0x91,0x90,0x0,0x0,0x0,0x0,0x1b,0xe1,0xa7,0x10,0x0, - 0x0,0x0,0x0,0x1c,0xac,0xae,0x10,0x0,0x0,0x0,0x0,0x1d,0xc1,0x89,0x10,0x0, - 0x0,0x0,0x0,0x1e,0x8c,0x90,0x10,0x0,0x0,0x0,0x0,0x1f,0xa1,0x6b,0x10,0x0, - 0x0,0x0,0x0,0x20,0x6c,0x72,0x10,0x0,0x0,0x0,0x0,0x21,0x81,0x4d,0x10,0x0, - 0x0,0x0,0x0,0x22,0x4c,0x54,0x10,0x0,0x0,0x0,0x0,0x23,0x61,0x2f,0x10,0x0, - 0x0,0x0,0x0,0x24,0x2c,0x36,0x10,0x0,0x0,0x0,0x0,0x25,0x4a,0x4b,0x90,0x0, - 0x0,0x0,0x0,0x26,0xc,0x18,0x10,0x0,0x0,0x0,0x0,0x27,0x2a,0x2d,0x90,0x0, - 0x0,0x0,0x0,0x27,0xf5,0x34,0x90,0x0,0x0,0x0,0x0,0x29,0xa,0xf,0x90,0x0, - 0x0,0x0,0x0,0x29,0xd5,0x16,0x90,0x0,0x0,0x0,0x0,0x2a,0xe9,0xf1,0x90,0x0, - 0x0,0x0,0x0,0x2b,0xb4,0xf8,0x90,0x0,0x0,0x0,0x0,0x2c,0xc9,0xd3,0x90,0x0, - 0x0,0x0,0x0,0x2d,0x94,0xda,0x90,0x0,0x0,0x0,0x0,0x2e,0xa9,0xb5,0x90,0x0, - 0x0,0x0,0x0,0x2f,0x74,0xbc,0x90,0x0,0x0,0x0,0x0,0x30,0x89,0x97,0x90,0x0, - 0x0,0x0,0x0,0x30,0xe7,0x24,0x0,0x0,0x0,0x0,0x0,0x31,0x5d,0xd9,0x10,0x0, - 0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d,0xbb,0x10,0x0, - 0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d,0x9d,0x10,0x0, - 0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd,0x7f,0x10,0x0, - 0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd,0x61,0x10,0x0, - 0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd,0x43,0x10,0x0, - 0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f,0x90,0x0, - 0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86,0x41,0x90,0x0, - 0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66,0x23,0x90,0x0, - 0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46,0x5,0x90,0x0, - 0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25,0xe7,0x90,0x0, - 0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5,0xc9,0x90,0x0, - 0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee,0xe6,0x10,0x0, - 0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce,0xc8,0x10,0x0, - 0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae,0xaa,0x10,0x0, - 0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c,0x10,0x0, - 0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e,0x10,0x0, - 0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57,0x8a,0x90,0x0, - 0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37,0x6c,0x90,0x0, - 0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17,0x4e,0x90,0x0, - 0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7,0x30,0x90,0x0, - 0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7,0x12,0x90,0x0, - 0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4,0x90,0x0, - 0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0,0x11,0x10,0x0, - 0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3,0x10,0x0, - 0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f,0xd5,0x10,0x0, - 0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f,0xb7,0x10,0x0, - 0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f,0x99,0x10,0x0, - 0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8,0xb5,0x90,0x0, - 0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8,0x97,0x90,0x0, - 0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8,0x79,0x90,0x0, - 0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b,0x90,0x0, - 0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88,0x3d,0x90,0x0, - 0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68,0x1f,0x90,0x0, - 0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51,0x3c,0x10,0x0, - 0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31,0x1e,0x10,0x0, - 0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11,0x0,0x10,0x0, - 0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0,0xe2,0x10,0x0, - 0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0,0xc4,0x10,0x0, - 0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6,0x10,0x0, - 0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99,0xc2,0x90,0x0, - 0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79,0xa4,0x90,0x0, - 0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0xad,0xd4,0x0,0x0,0xff,0xff, + 0xb9,0xb0,0x1,0x4,0xff,0xff,0xab,0xa0,0x0,0x8,0xff,0xff,0xb9,0xb0,0x0,0xc, + 0xff,0xff,0xb9,0xb0,0x1,0x10,0xff,0xff,0xb9,0xb0,0x1,0x14,0xff,0xff,0xab,0xa0, + 0x0,0x8,0x4c,0x4d,0x54,0x0,0x43,0x44,0x54,0x0,0x43,0x53,0x54,0x0,0x45,0x53, + 0x54,0x0,0x43,0x57,0x54,0x0,0x43,0x50,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x1, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0x43,0x53,0x54,0x36,0x43,0x44,0x54, + 0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, + + // /home/konrad/src/smoke/tzone/zoneinfo/US/Eastern + 0x0,0x0,0xd,0xd9, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xec,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0x9e, + 0xa6,0x1e,0x70,0x9f,0xba,0xeb,0x60,0xa0,0x86,0x0,0x70,0xa1,0x9a,0xcd,0x60,0xa2, + 0x65,0xe2,0x70,0xa3,0x83,0xe9,0xe0,0xa4,0x6a,0xae,0x70,0xa5,0x35,0xa7,0x60,0xa6, + 0x53,0xca,0xf0,0xa7,0x15,0x89,0x60,0xa8,0x33,0xac,0xf0,0xa8,0xfe,0xa5,0xe0,0xaa, + 0x13,0x8e,0xf0,0xaa,0xde,0x87,0xe0,0xab,0xf3,0x70,0xf0,0xac,0xbe,0x69,0xe0,0xad, + 0xd3,0x52,0xf0,0xae,0x9e,0x4b,0xe0,0xaf,0xb3,0x34,0xf0,0xb0,0x7e,0x2d,0xe0,0xb1, + 0x9c,0x51,0x70,0xb2,0x67,0x4a,0x60,0xb3,0x7c,0x33,0x70,0xb4,0x47,0x2c,0x60,0xb5, + 0x5c,0x15,0x70,0xb6,0x27,0xe,0x60,0xb7,0x3b,0xf7,0x70,0xb8,0x6,0xf0,0x60,0xb9, + 0x1b,0xd9,0x70,0xb9,0xe6,0xd2,0x60,0xbb,0x4,0xf5,0xf0,0xbb,0xc6,0xb4,0x60,0xbc, + 0xe4,0xd7,0xf0,0xbd,0xaf,0xd0,0xe0,0xbe,0xc4,0xb9,0xf0,0xbf,0x8f,0xb2,0xe0,0xc0, + 0xa4,0x9b,0xf0,0xc1,0x6f,0x94,0xe0,0xc2,0x84,0x7d,0xf0,0xc3,0x4f,0x76,0xe0,0xc4, + 0x64,0x5f,0xf0,0xc5,0x2f,0x58,0xe0,0xc6,0x4d,0x7c,0x70,0xc7,0xf,0x3a,0xe0,0xc8, + 0x2d,0x5e,0x70,0xc8,0xf8,0x57,0x60,0xca,0xd,0x40,0x70,0xca,0xd8,0x39,0x60,0xcb, + 0x88,0xf0,0x70,0xd2,0x23,0xf4,0x70,0xd2,0x60,0xfb,0xe0,0xd3,0x75,0xe4,0xf0,0xd4, + 0x40,0xdd,0xe0,0xd5,0x55,0xc6,0xf0,0xd6,0x20,0xbf,0xe0,0xd7,0x35,0xa8,0xf0,0xd8, + 0x0,0xa1,0xe0,0xd9,0x15,0x8a,0xf0,0xd9,0xe0,0x83,0xe0,0xda,0xfe,0xa7,0x70,0xdb, + 0xc0,0x65,0xe0,0xdc,0xde,0x89,0x70,0xdd,0xa9,0x82,0x60,0xde,0xbe,0x6b,0x70,0xdf, + 0x89,0x64,0x60,0xe0,0x9e,0x4d,0x70,0xe1,0x69,0x46,0x60,0xe2,0x7e,0x2f,0x70,0xe3, + 0x49,0x28,0x60,0xe4,0x5e,0x11,0x70,0xe5,0x57,0x2e,0xe0,0xe6,0x47,0x2d,0xf0,0xe7, + 0x37,0x10,0xe0,0xe8,0x27,0xf,0xf0,0xe9,0x16,0xf2,0xe0,0xea,0x6,0xf1,0xf0,0xea, + 0xf6,0xd4,0xe0,0xeb,0xe6,0xd3,0xf0,0xec,0xd6,0xb6,0xe0,0xed,0xc6,0xb5,0xf0,0xee, + 0xbf,0xd3,0x60,0xef,0xaf,0xd2,0x70,0xf0,0x9f,0xb5,0x60,0xf1,0x8f,0xb4,0x70,0xf2, + 0x7f,0x97,0x60,0xf3,0x6f,0x96,0x70,0xf4,0x5f,0x79,0x60,0xf5,0x4f,0x78,0x70,0xf6, + 0x3f,0x5b,0x60,0xf7,0x2f,0x5a,0x70,0xf8,0x28,0x77,0xe0,0xf9,0xf,0x3c,0x70,0xfa, + 0x8,0x59,0xe0,0xfa,0xf8,0x58,0xf0,0xfb,0xe8,0x3b,0xe0,0xfc,0xd8,0x3a,0xf0,0xfd, + 0xc8,0x1d,0xe0,0xfe,0xb8,0x1c,0xf0,0xff,0xa7,0xff,0xe0,0x0,0x97,0xfe,0xf0,0x1, + 0x87,0xe1,0xe0,0x2,0x77,0xe0,0xf0,0x3,0x70,0xfe,0x60,0x4,0x60,0xfd,0x70,0x5, + 0x50,0xe0,0x60,0x6,0x40,0xdf,0x70,0x7,0x30,0xc2,0x60,0x7,0x8d,0x19,0x70,0x9, + 0x10,0xa4,0x60,0x9,0xad,0x94,0xf0,0xa,0xf0,0x86,0x60,0xb,0xe0,0x85,0x70,0xc, + 0xd9,0xa2,0xe0,0xd,0xc0,0x67,0x70,0xe,0xb9,0x84,0xe0,0xf,0xa9,0x83,0xf0,0x10, + 0x99,0x66,0xe0,0x11,0x89,0x65,0xf0,0x12,0x79,0x48,0xe0,0x13,0x69,0x47,0xf0,0x14, + 0x59,0x2a,0xe0,0x15,0x49,0x29,0xf0,0x16,0x39,0xc,0xe0,0x17,0x29,0xb,0xf0,0x18, + 0x22,0x29,0x60,0x19,0x8,0xed,0xf0,0x1a,0x2,0xb,0x60,0x1a,0xf2,0xa,0x70,0x1b, + 0xe1,0xed,0x60,0x1c,0xd1,0xec,0x70,0x1d,0xc1,0xcf,0x60,0x1e,0xb1,0xce,0x70,0x1f, + 0xa1,0xb1,0x60,0x20,0x76,0x0,0xf0,0x21,0x81,0x93,0x60,0x22,0x55,0xe2,0xf0,0x23, + 0x6a,0xaf,0xe0,0x24,0x35,0xc4,0xf0,0x25,0x4a,0x91,0xe0,0x26,0x15,0xa6,0xf0,0x27, + 0x2a,0x73,0xe0,0x27,0xfe,0xc3,0x70,0x29,0xa,0x55,0xe0,0x29,0xde,0xa5,0x70,0x2a, + 0xea,0x37,0xe0,0x2b,0xbe,0x87,0x70,0x2c,0xd3,0x54,0x60,0x2d,0x9e,0x69,0x70,0x2e, + 0xb3,0x36,0x60,0x2f,0x7e,0x4b,0x70,0x30,0x93,0x18,0x60,0x31,0x67,0x67,0xf0,0x32, + 0x72,0xfa,0x60,0x33,0x47,0x49,0xf0,0x34,0x52,0xdc,0x60,0x35,0x27,0x2b,0xf0,0x36, + 0x32,0xbe,0x60,0x37,0x7,0xd,0xf0,0x38,0x1b,0xda,0xe0,0x38,0xe6,0xef,0xf0,0x39, + 0xfb,0xbc,0xe0,0x3a,0xc6,0xd1,0xf0,0x3b,0xdb,0x9e,0xe0,0x3c,0xaf,0xee,0x70,0x3d, + 0xbb,0x80,0xe0,0x3e,0x8f,0xd0,0x70,0x3f,0x9b,0x62,0xe0,0x40,0x6f,0xb2,0x70,0x41, + 0x84,0x7f,0x60,0x42,0x4f,0x94,0x70,0x43,0x64,0x61,0x60,0x44,0x2f,0x76,0x70,0x45, + 0x44,0x43,0x60,0x45,0xf3,0xa8,0xf0,0x47,0x2d,0x5f,0xe0,0x47,0xd3,0x8a,0xf0,0x49, + 0xd,0x41,0xe0,0x49,0xb3,0x6c,0xf0,0x4a,0xed,0x23,0xe0,0x4b,0x9c,0x89,0x70,0x4c, + 0xd6,0x40,0x60,0x4d,0x7c,0x6b,0x70,0x4e,0xb6,0x22,0x60,0x4f,0x5c,0x4d,0x70,0x50, + 0x96,0x4,0x60,0x51,0x3c,0x2f,0x70,0x52,0x75,0xe6,0x60,0x53,0x1c,0x11,0x70,0x54, + 0x55,0xc8,0x60,0x54,0xfb,0xf3,0x70,0x56,0x35,0xaa,0x60,0x56,0xe5,0xf,0xf0,0x58, + 0x1e,0xc6,0xe0,0x58,0xc4,0xf1,0xf0,0x59,0xfe,0xa8,0xe0,0x5a,0xa4,0xd3,0xf0,0x5b, + 0xde,0x8a,0xe0,0x5c,0x84,0xb5,0xf0,0x5d,0xbe,0x6c,0xe0,0x5e,0x64,0x97,0xf0,0x5f, + 0x9e,0x4e,0xe0,0x60,0x4d,0xb4,0x70,0x61,0x87,0x6b,0x60,0x62,0x2d,0x96,0x70,0x63, + 0x67,0x4d,0x60,0x64,0xd,0x78,0x70,0x65,0x47,0x2f,0x60,0x65,0xed,0x5a,0x70,0x67, + 0x27,0x11,0x60,0x67,0xcd,0x3c,0x70,0x69,0x6,0xf3,0x60,0x69,0xad,0x1e,0x70,0x6a, + 0xe6,0xd5,0x60,0x6b,0x96,0x3a,0xf0,0x6c,0xcf,0xf1,0xe0,0x6d,0x76,0x1c,0xf0,0x6e, + 0xaf,0xd3,0xe0,0x6f,0x55,0xfe,0xf0,0x70,0x8f,0xb5,0xe0,0x71,0x35,0xe0,0xf0,0x72, + 0x6f,0x97,0xe0,0x73,0x15,0xc2,0xf0,0x74,0x4f,0x79,0xe0,0x74,0xfe,0xdf,0x70,0x76, + 0x38,0x96,0x60,0x76,0xde,0xc1,0x70,0x78,0x18,0x78,0x60,0x78,0xbe,0xa3,0x70,0x79, + 0xf8,0x5a,0x60,0x7a,0x9e,0x85,0x70,0x7b,0xd8,0x3c,0x60,0x7c,0x7e,0x67,0x70,0x7d, + 0xb8,0x1e,0x60,0x7e,0x5e,0x49,0x70,0x7f,0x98,0x0,0x60,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x2,0x1, 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x3,0x1,0x3,0x1,0x3,0x1, - 0x3,0x1,0x3,0x1,0x2,0x1,0x2,0x1,0x3,0x1,0x2,0x1,0x2,0x1,0x2,0x1, 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x4,0x6,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x7,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0xff,0xff,0xff,0xb5,0x0, - 0x0,0x0,0x0,0xe,0x10,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x1c, - 0x20,0x1,0xc,0x0,0x0,0xe,0x10,0x0,0x4,0x0,0x0,0xe,0x10,0x1,0x4,0x0, - 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x42, - 0x53,0x54,0x0,0x47,0x4d,0x54,0x0,0x42,0x44,0x53,0x54,0x0,0x0,0x1,0x1,0x1, - 0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0xa,0x47,0x4d,0x54, - 0x30,0x42,0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2f,0x31,0x2c,0x4d,0x31, - 0x30,0x2e,0x35,0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Volgograd - 0x0,0x0,0x4,0x8f, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x41,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x10,0x80,0x0,0x0,0x0,0xa1, - 0xf5,0x46,0xdc,0xb5,0xa4,0xb,0x50,0x15,0x27,0x99,0xc0,0x16,0x18,0xce,0x30,0x17, - 0x8,0xcd,0x40,0x17,0xfa,0x1,0xb0,0x18,0xea,0x0,0xc0,0x19,0xdb,0x35,0x30,0x1a, - 0xcc,0x85,0xc0,0x1b,0xbc,0x92,0xe0,0x1c,0xac,0x83,0xe0,0x1d,0x9c,0x74,0xe0,0x1e, - 0x8c,0x65,0xe0,0x1f,0x7c,0x56,0xe0,0x20,0x6c,0x47,0xe0,0x21,0x5c,0x38,0xe0,0x22, - 0x4c,0x29,0xe0,0x23,0x3c,0x28,0xf0,0x24,0x2c,0x19,0xf0,0x25,0x1c,0xa,0xf0,0x26, - 0xb,0xfb,0xf0,0x27,0x5,0x27,0x70,0x27,0xf5,0x18,0x70,0x29,0xd4,0xec,0x60,0x2a, - 0xc4,0xeb,0x70,0x2b,0xb4,0xdc,0x70,0x2c,0xa4,0xcd,0x70,0x2d,0x94,0xbe,0x70,0x2e, - 0x84,0xaf,0x70,0x2f,0x74,0xa0,0x70,0x30,0x64,0x91,0x70,0x31,0x5d,0xbc,0xf0,0x32, - 0x72,0x97,0xf0,0x33,0x3d,0x9e,0xf0,0x34,0x52,0x79,0xf0,0x35,0x1d,0x80,0xf0,0x36, - 0x32,0x5b,0xf0,0x36,0xfd,0x62,0xf0,0x38,0x1b,0x78,0x70,0x38,0xdd,0x44,0xf0,0x39, - 0xfb,0x5a,0x70,0x3a,0xbd,0x26,0xf0,0x3b,0xdb,0x3c,0x70,0x3c,0xa6,0x43,0x70,0x3d, - 0xbb,0x1e,0x70,0x3e,0x86,0x25,0x70,0x3f,0x9b,0x0,0x70,0x40,0x66,0x7,0x70,0x41, - 0x84,0x1c,0xf0,0x42,0x45,0xe9,0x70,0x43,0x63,0xfe,0xf0,0x44,0x25,0xcb,0x70,0x45, - 0x43,0xe0,0xf0,0x46,0x5,0xad,0x70,0x47,0x23,0xc2,0xf0,0x47,0xee,0xc9,0xf0,0x49, - 0x3,0xa4,0xf0,0x49,0xce,0xab,0xf0,0x4a,0xe3,0x86,0xf0,0x4b,0xae,0x8d,0xf0,0x4c, - 0xcc,0xa3,0x70,0x4d,0x8e,0x6f,0xf0,0x54,0x4c,0x1d,0x60,0x7f,0xff,0xff,0xff,0x0, - 0x1,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x6,0x7,0x6,0x7,0x6,0x7,0x4,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, - 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, - 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x4,0x7,0x7, - 0x0,0x0,0x29,0xa4,0x0,0x0,0x0,0x0,0x2a,0x30,0x0,0x4,0x0,0x0,0x38,0x40, - 0x0,0x8,0x0,0x0,0x46,0x50,0x1,0xc,0x0,0x0,0x38,0x40,0x0,0x8,0x0,0x0, - 0x46,0x50,0x1,0xc,0x0,0x0,0x38,0x40,0x1,0x8,0x0,0x0,0x2a,0x30,0x0,0x4, - 0x4c,0x4d,0x54,0x0,0x2b,0x30,0x33,0x0,0x2b,0x30,0x34,0x0,0x2b,0x30,0x35,0x0, - 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x41,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x10,0xf8,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xa1,0xf5,0x46,0xdc,0xff,0xff,0xff,0xff, - 0xb5,0xa4,0xb,0x50,0x0,0x0,0x0,0x0,0x15,0x27,0x99,0xc0,0x0,0x0,0x0,0x0, - 0x16,0x18,0xce,0x30,0x0,0x0,0x0,0x0,0x17,0x8,0xcd,0x40,0x0,0x0,0x0,0x0, - 0x17,0xfa,0x1,0xb0,0x0,0x0,0x0,0x0,0x18,0xea,0x0,0xc0,0x0,0x0,0x0,0x0, - 0x19,0xdb,0x35,0x30,0x0,0x0,0x0,0x0,0x1a,0xcc,0x85,0xc0,0x0,0x0,0x0,0x0, - 0x1b,0xbc,0x92,0xe0,0x0,0x0,0x0,0x0,0x1c,0xac,0x83,0xe0,0x0,0x0,0x0,0x0, - 0x1d,0x9c,0x74,0xe0,0x0,0x0,0x0,0x0,0x1e,0x8c,0x65,0xe0,0x0,0x0,0x0,0x0, - 0x1f,0x7c,0x56,0xe0,0x0,0x0,0x0,0x0,0x20,0x6c,0x47,0xe0,0x0,0x0,0x0,0x0, - 0x21,0x5c,0x38,0xe0,0x0,0x0,0x0,0x0,0x22,0x4c,0x29,0xe0,0x0,0x0,0x0,0x0, - 0x23,0x3c,0x28,0xf0,0x0,0x0,0x0,0x0,0x24,0x2c,0x19,0xf0,0x0,0x0,0x0,0x0, - 0x25,0x1c,0xa,0xf0,0x0,0x0,0x0,0x0,0x26,0xb,0xfb,0xf0,0x0,0x0,0x0,0x0, - 0x27,0x5,0x27,0x70,0x0,0x0,0x0,0x0,0x27,0xf5,0x18,0x70,0x0,0x0,0x0,0x0, - 0x29,0xd4,0xec,0x60,0x0,0x0,0x0,0x0,0x2a,0xc4,0xeb,0x70,0x0,0x0,0x0,0x0, - 0x2b,0xb4,0xdc,0x70,0x0,0x0,0x0,0x0,0x2c,0xa4,0xcd,0x70,0x0,0x0,0x0,0x0, - 0x2d,0x94,0xbe,0x70,0x0,0x0,0x0,0x0,0x2e,0x84,0xaf,0x70,0x0,0x0,0x0,0x0, - 0x2f,0x74,0xa0,0x70,0x0,0x0,0x0,0x0,0x30,0x64,0x91,0x70,0x0,0x0,0x0,0x0, - 0x31,0x5d,0xbc,0xf0,0x0,0x0,0x0,0x0,0x32,0x72,0x97,0xf0,0x0,0x0,0x0,0x0, - 0x33,0x3d,0x9e,0xf0,0x0,0x0,0x0,0x0,0x34,0x52,0x79,0xf0,0x0,0x0,0x0,0x0, - 0x35,0x1d,0x80,0xf0,0x0,0x0,0x0,0x0,0x36,0x32,0x5b,0xf0,0x0,0x0,0x0,0x0, - 0x36,0xfd,0x62,0xf0,0x0,0x0,0x0,0x0,0x38,0x1b,0x78,0x70,0x0,0x0,0x0,0x0, - 0x38,0xdd,0x44,0xf0,0x0,0x0,0x0,0x0,0x39,0xfb,0x5a,0x70,0x0,0x0,0x0,0x0, - 0x3a,0xbd,0x26,0xf0,0x0,0x0,0x0,0x0,0x3b,0xdb,0x3c,0x70,0x0,0x0,0x0,0x0, - 0x3c,0xa6,0x43,0x70,0x0,0x0,0x0,0x0,0x3d,0xbb,0x1e,0x70,0x0,0x0,0x0,0x0, - 0x3e,0x86,0x25,0x70,0x0,0x0,0x0,0x0,0x3f,0x9b,0x0,0x70,0x0,0x0,0x0,0x0, - 0x40,0x66,0x7,0x70,0x0,0x0,0x0,0x0,0x41,0x84,0x1c,0xf0,0x0,0x0,0x0,0x0, - 0x42,0x45,0xe9,0x70,0x0,0x0,0x0,0x0,0x43,0x63,0xfe,0xf0,0x0,0x0,0x0,0x0, - 0x44,0x25,0xcb,0x70,0x0,0x0,0x0,0x0,0x45,0x43,0xe0,0xf0,0x0,0x0,0x0,0x0, - 0x46,0x5,0xad,0x70,0x0,0x0,0x0,0x0,0x47,0x23,0xc2,0xf0,0x0,0x0,0x0,0x0, - 0x47,0xee,0xc9,0xf0,0x0,0x0,0x0,0x0,0x49,0x3,0xa4,0xf0,0x0,0x0,0x0,0x0, - 0x49,0xce,0xab,0xf0,0x0,0x0,0x0,0x0,0x4a,0xe3,0x86,0xf0,0x0,0x0,0x0,0x0, - 0x4b,0xae,0x8d,0xf0,0x0,0x0,0x0,0x0,0x4c,0xcc,0xa3,0x70,0x0,0x0,0x0,0x0, - 0x4d,0x8e,0x6f,0xf0,0x0,0x0,0x0,0x0,0x54,0x4c,0x1d,0x60,0x0,0x0,0x0,0x0, - 0x7f,0xff,0xff,0xff,0x0,0x1,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x6,0x7,0x6,0x7,0x6,0x7,0x4,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x4,0x7,0x7,0x0,0x0,0x29,0xa4,0x0,0x0,0x0,0x0,0x2a,0x30,0x0, - 0x4,0x0,0x0,0x38,0x40,0x0,0x8,0x0,0x0,0x46,0x50,0x1,0xc,0x0,0x0,0x38, - 0x40,0x0,0x8,0x0,0x0,0x46,0x50,0x1,0xc,0x0,0x0,0x38,0x40,0x1,0x8,0x0, - 0x0,0x2a,0x30,0x0,0x4,0x4c,0x4d,0x54,0x0,0x2b,0x30,0x33,0x0,0x2b,0x30,0x34, - 0x0,0x2b,0x30,0x35,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2b,0x30,0x33,0x3e,0x2d,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Zaporozhye - 0x0,0x0,0x8,0x3f, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0xba,0x9e,0x0,0x0,0xff,0xff,0xc7, + 0xc0,0x1,0x4,0xff,0xff,0xb9,0xb0,0x0,0x8,0xff,0xff,0xc7,0xc0,0x1,0xc,0xff, + 0xff,0xc7,0xc0,0x1,0x10,0x4c,0x4d,0x54,0x0,0x45,0x44,0x54,0x0,0x45,0x53,0x54, + 0x0,0x45,0x57,0x54,0x0,0x45,0x50,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0, + 0x0,0x0,0x1,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xed,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0xf8, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x5e,0x3,0xf0,0x90,0xff, + 0xff,0xff,0xff,0x9e,0xa6,0x1e,0x70,0xff,0xff,0xff,0xff,0x9f,0xba,0xeb,0x60,0xff, + 0xff,0xff,0xff,0xa0,0x86,0x0,0x70,0xff,0xff,0xff,0xff,0xa1,0x9a,0xcd,0x60,0xff, + 0xff,0xff,0xff,0xa2,0x65,0xe2,0x70,0xff,0xff,0xff,0xff,0xa3,0x83,0xe9,0xe0,0xff, + 0xff,0xff,0xff,0xa4,0x6a,0xae,0x70,0xff,0xff,0xff,0xff,0xa5,0x35,0xa7,0x60,0xff, + 0xff,0xff,0xff,0xa6,0x53,0xca,0xf0,0xff,0xff,0xff,0xff,0xa7,0x15,0x89,0x60,0xff, + 0xff,0xff,0xff,0xa8,0x33,0xac,0xf0,0xff,0xff,0xff,0xff,0xa8,0xfe,0xa5,0xe0,0xff, + 0xff,0xff,0xff,0xaa,0x13,0x8e,0xf0,0xff,0xff,0xff,0xff,0xaa,0xde,0x87,0xe0,0xff, + 0xff,0xff,0xff,0xab,0xf3,0x70,0xf0,0xff,0xff,0xff,0xff,0xac,0xbe,0x69,0xe0,0xff, + 0xff,0xff,0xff,0xad,0xd3,0x52,0xf0,0xff,0xff,0xff,0xff,0xae,0x9e,0x4b,0xe0,0xff, + 0xff,0xff,0xff,0xaf,0xb3,0x34,0xf0,0xff,0xff,0xff,0xff,0xb0,0x7e,0x2d,0xe0,0xff, + 0xff,0xff,0xff,0xb1,0x9c,0x51,0x70,0xff,0xff,0xff,0xff,0xb2,0x67,0x4a,0x60,0xff, + 0xff,0xff,0xff,0xb3,0x7c,0x33,0x70,0xff,0xff,0xff,0xff,0xb4,0x47,0x2c,0x60,0xff, + 0xff,0xff,0xff,0xb5,0x5c,0x15,0x70,0xff,0xff,0xff,0xff,0xb6,0x27,0xe,0x60,0xff, + 0xff,0xff,0xff,0xb7,0x3b,0xf7,0x70,0xff,0xff,0xff,0xff,0xb8,0x6,0xf0,0x60,0xff, + 0xff,0xff,0xff,0xb9,0x1b,0xd9,0x70,0xff,0xff,0xff,0xff,0xb9,0xe6,0xd2,0x60,0xff, + 0xff,0xff,0xff,0xbb,0x4,0xf5,0xf0,0xff,0xff,0xff,0xff,0xbb,0xc6,0xb4,0x60,0xff, + 0xff,0xff,0xff,0xbc,0xe4,0xd7,0xf0,0xff,0xff,0xff,0xff,0xbd,0xaf,0xd0,0xe0,0xff, + 0xff,0xff,0xff,0xbe,0xc4,0xb9,0xf0,0xff,0xff,0xff,0xff,0xbf,0x8f,0xb2,0xe0,0xff, + 0xff,0xff,0xff,0xc0,0xa4,0x9b,0xf0,0xff,0xff,0xff,0xff,0xc1,0x6f,0x94,0xe0,0xff, + 0xff,0xff,0xff,0xc2,0x84,0x7d,0xf0,0xff,0xff,0xff,0xff,0xc3,0x4f,0x76,0xe0,0xff, + 0xff,0xff,0xff,0xc4,0x64,0x5f,0xf0,0xff,0xff,0xff,0xff,0xc5,0x2f,0x58,0xe0,0xff, + 0xff,0xff,0xff,0xc6,0x4d,0x7c,0x70,0xff,0xff,0xff,0xff,0xc7,0xf,0x3a,0xe0,0xff, + 0xff,0xff,0xff,0xc8,0x2d,0x5e,0x70,0xff,0xff,0xff,0xff,0xc8,0xf8,0x57,0x60,0xff, + 0xff,0xff,0xff,0xca,0xd,0x40,0x70,0xff,0xff,0xff,0xff,0xca,0xd8,0x39,0x60,0xff, + 0xff,0xff,0xff,0xcb,0x88,0xf0,0x70,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff, + 0xff,0xff,0xff,0xd2,0x60,0xfb,0xe0,0xff,0xff,0xff,0xff,0xd3,0x75,0xe4,0xf0,0xff, + 0xff,0xff,0xff,0xd4,0x40,0xdd,0xe0,0xff,0xff,0xff,0xff,0xd5,0x55,0xc6,0xf0,0xff, + 0xff,0xff,0xff,0xd6,0x20,0xbf,0xe0,0xff,0xff,0xff,0xff,0xd7,0x35,0xa8,0xf0,0xff, + 0xff,0xff,0xff,0xd8,0x0,0xa1,0xe0,0xff,0xff,0xff,0xff,0xd9,0x15,0x8a,0xf0,0xff, + 0xff,0xff,0xff,0xd9,0xe0,0x83,0xe0,0xff,0xff,0xff,0xff,0xda,0xfe,0xa7,0x70,0xff, + 0xff,0xff,0xff,0xdb,0xc0,0x65,0xe0,0xff,0xff,0xff,0xff,0xdc,0xde,0x89,0x70,0xff, + 0xff,0xff,0xff,0xdd,0xa9,0x82,0x60,0xff,0xff,0xff,0xff,0xde,0xbe,0x6b,0x70,0xff, + 0xff,0xff,0xff,0xdf,0x89,0x64,0x60,0xff,0xff,0xff,0xff,0xe0,0x9e,0x4d,0x70,0xff, + 0xff,0xff,0xff,0xe1,0x69,0x46,0x60,0xff,0xff,0xff,0xff,0xe2,0x7e,0x2f,0x70,0xff, + 0xff,0xff,0xff,0xe3,0x49,0x28,0x60,0xff,0xff,0xff,0xff,0xe4,0x5e,0x11,0x70,0xff, + 0xff,0xff,0xff,0xe5,0x57,0x2e,0xe0,0xff,0xff,0xff,0xff,0xe6,0x47,0x2d,0xf0,0xff, + 0xff,0xff,0xff,0xe7,0x37,0x10,0xe0,0xff,0xff,0xff,0xff,0xe8,0x27,0xf,0xf0,0xff, + 0xff,0xff,0xff,0xe9,0x16,0xf2,0xe0,0xff,0xff,0xff,0xff,0xea,0x6,0xf1,0xf0,0xff, + 0xff,0xff,0xff,0xea,0xf6,0xd4,0xe0,0xff,0xff,0xff,0xff,0xeb,0xe6,0xd3,0xf0,0xff, + 0xff,0xff,0xff,0xec,0xd6,0xb6,0xe0,0xff,0xff,0xff,0xff,0xed,0xc6,0xb5,0xf0,0xff, + 0xff,0xff,0xff,0xee,0xbf,0xd3,0x60,0xff,0xff,0xff,0xff,0xef,0xaf,0xd2,0x70,0xff, + 0xff,0xff,0xff,0xf0,0x9f,0xb5,0x60,0xff,0xff,0xff,0xff,0xf1,0x8f,0xb4,0x70,0xff, + 0xff,0xff,0xff,0xf2,0x7f,0x97,0x60,0xff,0xff,0xff,0xff,0xf3,0x6f,0x96,0x70,0xff, + 0xff,0xff,0xff,0xf4,0x5f,0x79,0x60,0xff,0xff,0xff,0xff,0xf5,0x4f,0x78,0x70,0xff, + 0xff,0xff,0xff,0xf6,0x3f,0x5b,0x60,0xff,0xff,0xff,0xff,0xf7,0x2f,0x5a,0x70,0xff, + 0xff,0xff,0xff,0xf8,0x28,0x77,0xe0,0xff,0xff,0xff,0xff,0xf9,0xf,0x3c,0x70,0xff, + 0xff,0xff,0xff,0xfa,0x8,0x59,0xe0,0xff,0xff,0xff,0xff,0xfa,0xf8,0x58,0xf0,0xff, + 0xff,0xff,0xff,0xfb,0xe8,0x3b,0xe0,0xff,0xff,0xff,0xff,0xfc,0xd8,0x3a,0xf0,0xff, + 0xff,0xff,0xff,0xfd,0xc8,0x1d,0xe0,0xff,0xff,0xff,0xff,0xfe,0xb8,0x1c,0xf0,0xff, + 0xff,0xff,0xff,0xff,0xa7,0xff,0xe0,0x0,0x0,0x0,0x0,0x0,0x97,0xfe,0xf0,0x0, + 0x0,0x0,0x0,0x1,0x87,0xe1,0xe0,0x0,0x0,0x0,0x0,0x2,0x77,0xe0,0xf0,0x0, + 0x0,0x0,0x0,0x3,0x70,0xfe,0x60,0x0,0x0,0x0,0x0,0x4,0x60,0xfd,0x70,0x0, + 0x0,0x0,0x0,0x5,0x50,0xe0,0x60,0x0,0x0,0x0,0x0,0x6,0x40,0xdf,0x70,0x0, + 0x0,0x0,0x0,0x7,0x30,0xc2,0x60,0x0,0x0,0x0,0x0,0x7,0x8d,0x19,0x70,0x0, + 0x0,0x0,0x0,0x9,0x10,0xa4,0x60,0x0,0x0,0x0,0x0,0x9,0xad,0x94,0xf0,0x0, + 0x0,0x0,0x0,0xa,0xf0,0x86,0x60,0x0,0x0,0x0,0x0,0xb,0xe0,0x85,0x70,0x0, + 0x0,0x0,0x0,0xc,0xd9,0xa2,0xe0,0x0,0x0,0x0,0x0,0xd,0xc0,0x67,0x70,0x0, + 0x0,0x0,0x0,0xe,0xb9,0x84,0xe0,0x0,0x0,0x0,0x0,0xf,0xa9,0x83,0xf0,0x0, + 0x0,0x0,0x0,0x10,0x99,0x66,0xe0,0x0,0x0,0x0,0x0,0x11,0x89,0x65,0xf0,0x0, + 0x0,0x0,0x0,0x12,0x79,0x48,0xe0,0x0,0x0,0x0,0x0,0x13,0x69,0x47,0xf0,0x0, + 0x0,0x0,0x0,0x14,0x59,0x2a,0xe0,0x0,0x0,0x0,0x0,0x15,0x49,0x29,0xf0,0x0, + 0x0,0x0,0x0,0x16,0x39,0xc,0xe0,0x0,0x0,0x0,0x0,0x17,0x29,0xb,0xf0,0x0, + 0x0,0x0,0x0,0x18,0x22,0x29,0x60,0x0,0x0,0x0,0x0,0x19,0x8,0xed,0xf0,0x0, + 0x0,0x0,0x0,0x1a,0x2,0xb,0x60,0x0,0x0,0x0,0x0,0x1a,0xf2,0xa,0x70,0x0, + 0x0,0x0,0x0,0x1b,0xe1,0xed,0x60,0x0,0x0,0x0,0x0,0x1c,0xd1,0xec,0x70,0x0, + 0x0,0x0,0x0,0x1d,0xc1,0xcf,0x60,0x0,0x0,0x0,0x0,0x1e,0xb1,0xce,0x70,0x0, + 0x0,0x0,0x0,0x1f,0xa1,0xb1,0x60,0x0,0x0,0x0,0x0,0x20,0x76,0x0,0xf0,0x0, + 0x0,0x0,0x0,0x21,0x81,0x93,0x60,0x0,0x0,0x0,0x0,0x22,0x55,0xe2,0xf0,0x0, + 0x0,0x0,0x0,0x23,0x6a,0xaf,0xe0,0x0,0x0,0x0,0x0,0x24,0x35,0xc4,0xf0,0x0, + 0x0,0x0,0x0,0x25,0x4a,0x91,0xe0,0x0,0x0,0x0,0x0,0x26,0x15,0xa6,0xf0,0x0, + 0x0,0x0,0x0,0x27,0x2a,0x73,0xe0,0x0,0x0,0x0,0x0,0x27,0xfe,0xc3,0x70,0x0, + 0x0,0x0,0x0,0x29,0xa,0x55,0xe0,0x0,0x0,0x0,0x0,0x29,0xde,0xa5,0x70,0x0, + 0x0,0x0,0x0,0x2a,0xea,0x37,0xe0,0x0,0x0,0x0,0x0,0x2b,0xbe,0x87,0x70,0x0, + 0x0,0x0,0x0,0x2c,0xd3,0x54,0x60,0x0,0x0,0x0,0x0,0x2d,0x9e,0x69,0x70,0x0, + 0x0,0x0,0x0,0x2e,0xb3,0x36,0x60,0x0,0x0,0x0,0x0,0x2f,0x7e,0x4b,0x70,0x0, + 0x0,0x0,0x0,0x30,0x93,0x18,0x60,0x0,0x0,0x0,0x0,0x31,0x67,0x67,0xf0,0x0, + 0x0,0x0,0x0,0x32,0x72,0xfa,0x60,0x0,0x0,0x0,0x0,0x33,0x47,0x49,0xf0,0x0, + 0x0,0x0,0x0,0x34,0x52,0xdc,0x60,0x0,0x0,0x0,0x0,0x35,0x27,0x2b,0xf0,0x0, + 0x0,0x0,0x0,0x36,0x32,0xbe,0x60,0x0,0x0,0x0,0x0,0x37,0x7,0xd,0xf0,0x0, + 0x0,0x0,0x0,0x38,0x1b,0xda,0xe0,0x0,0x0,0x0,0x0,0x38,0xe6,0xef,0xf0,0x0, + 0x0,0x0,0x0,0x39,0xfb,0xbc,0xe0,0x0,0x0,0x0,0x0,0x3a,0xc6,0xd1,0xf0,0x0, + 0x0,0x0,0x0,0x3b,0xdb,0x9e,0xe0,0x0,0x0,0x0,0x0,0x3c,0xaf,0xee,0x70,0x0, + 0x0,0x0,0x0,0x3d,0xbb,0x80,0xe0,0x0,0x0,0x0,0x0,0x3e,0x8f,0xd0,0x70,0x0, + 0x0,0x0,0x0,0x3f,0x9b,0x62,0xe0,0x0,0x0,0x0,0x0,0x40,0x6f,0xb2,0x70,0x0, + 0x0,0x0,0x0,0x41,0x84,0x7f,0x60,0x0,0x0,0x0,0x0,0x42,0x4f,0x94,0x70,0x0, + 0x0,0x0,0x0,0x43,0x64,0x61,0x60,0x0,0x0,0x0,0x0,0x44,0x2f,0x76,0x70,0x0, + 0x0,0x0,0x0,0x45,0x44,0x43,0x60,0x0,0x0,0x0,0x0,0x45,0xf3,0xa8,0xf0,0x0, + 0x0,0x0,0x0,0x47,0x2d,0x5f,0xe0,0x0,0x0,0x0,0x0,0x47,0xd3,0x8a,0xf0,0x0, + 0x0,0x0,0x0,0x49,0xd,0x41,0xe0,0x0,0x0,0x0,0x0,0x49,0xb3,0x6c,0xf0,0x0, + 0x0,0x0,0x0,0x4a,0xed,0x23,0xe0,0x0,0x0,0x0,0x0,0x4b,0x9c,0x89,0x70,0x0, + 0x0,0x0,0x0,0x4c,0xd6,0x40,0x60,0x0,0x0,0x0,0x0,0x4d,0x7c,0x6b,0x70,0x0, + 0x0,0x0,0x0,0x4e,0xb6,0x22,0x60,0x0,0x0,0x0,0x0,0x4f,0x5c,0x4d,0x70,0x0, + 0x0,0x0,0x0,0x50,0x96,0x4,0x60,0x0,0x0,0x0,0x0,0x51,0x3c,0x2f,0x70,0x0, + 0x0,0x0,0x0,0x52,0x75,0xe6,0x60,0x0,0x0,0x0,0x0,0x53,0x1c,0x11,0x70,0x0, + 0x0,0x0,0x0,0x54,0x55,0xc8,0x60,0x0,0x0,0x0,0x0,0x54,0xfb,0xf3,0x70,0x0, + 0x0,0x0,0x0,0x56,0x35,0xaa,0x60,0x0,0x0,0x0,0x0,0x56,0xe5,0xf,0xf0,0x0, + 0x0,0x0,0x0,0x58,0x1e,0xc6,0xe0,0x0,0x0,0x0,0x0,0x58,0xc4,0xf1,0xf0,0x0, + 0x0,0x0,0x0,0x59,0xfe,0xa8,0xe0,0x0,0x0,0x0,0x0,0x5a,0xa4,0xd3,0xf0,0x0, + 0x0,0x0,0x0,0x5b,0xde,0x8a,0xe0,0x0,0x0,0x0,0x0,0x5c,0x84,0xb5,0xf0,0x0, + 0x0,0x0,0x0,0x5d,0xbe,0x6c,0xe0,0x0,0x0,0x0,0x0,0x5e,0x64,0x97,0xf0,0x0, + 0x0,0x0,0x0,0x5f,0x9e,0x4e,0xe0,0x0,0x0,0x0,0x0,0x60,0x4d,0xb4,0x70,0x0, + 0x0,0x0,0x0,0x61,0x87,0x6b,0x60,0x0,0x0,0x0,0x0,0x62,0x2d,0x96,0x70,0x0, + 0x0,0x0,0x0,0x63,0x67,0x4d,0x60,0x0,0x0,0x0,0x0,0x64,0xd,0x78,0x70,0x0, + 0x0,0x0,0x0,0x65,0x47,0x2f,0x60,0x0,0x0,0x0,0x0,0x65,0xed,0x5a,0x70,0x0, + 0x0,0x0,0x0,0x67,0x27,0x11,0x60,0x0,0x0,0x0,0x0,0x67,0xcd,0x3c,0x70,0x0, + 0x0,0x0,0x0,0x69,0x6,0xf3,0x60,0x0,0x0,0x0,0x0,0x69,0xad,0x1e,0x70,0x0, + 0x0,0x0,0x0,0x6a,0xe6,0xd5,0x60,0x0,0x0,0x0,0x0,0x6b,0x96,0x3a,0xf0,0x0, + 0x0,0x0,0x0,0x6c,0xcf,0xf1,0xe0,0x0,0x0,0x0,0x0,0x6d,0x76,0x1c,0xf0,0x0, + 0x0,0x0,0x0,0x6e,0xaf,0xd3,0xe0,0x0,0x0,0x0,0x0,0x6f,0x55,0xfe,0xf0,0x0, + 0x0,0x0,0x0,0x70,0x8f,0xb5,0xe0,0x0,0x0,0x0,0x0,0x71,0x35,0xe0,0xf0,0x0, + 0x0,0x0,0x0,0x72,0x6f,0x97,0xe0,0x0,0x0,0x0,0x0,0x73,0x15,0xc2,0xf0,0x0, + 0x0,0x0,0x0,0x74,0x4f,0x79,0xe0,0x0,0x0,0x0,0x0,0x74,0xfe,0xdf,0x70,0x0, + 0x0,0x0,0x0,0x76,0x38,0x96,0x60,0x0,0x0,0x0,0x0,0x76,0xde,0xc1,0x70,0x0, + 0x0,0x0,0x0,0x78,0x18,0x78,0x60,0x0,0x0,0x0,0x0,0x78,0xbe,0xa3,0x70,0x0, + 0x0,0x0,0x0,0x79,0xf8,0x5a,0x60,0x0,0x0,0x0,0x0,0x7a,0x9e,0x85,0x70,0x0, + 0x0,0x0,0x0,0x7b,0xd8,0x3c,0x60,0x0,0x0,0x0,0x0,0x7c,0x7e,0x67,0x70,0x0, + 0x0,0x0,0x0,0x7d,0xb8,0x1e,0x60,0x0,0x0,0x0,0x0,0x7e,0x5e,0x49,0x70,0x0, + 0x0,0x0,0x0,0x7f,0x98,0x0,0x60,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0xff,0xff,0xba,0x9e,0x0,0x0,0xff,0xff,0xc7,0xc0,0x1,0x4, + 0xff,0xff,0xb9,0xb0,0x0,0x8,0xff,0xff,0xc7,0xc0,0x1,0xc,0xff,0xff,0xc7,0xc0, + 0x1,0x10,0x4c,0x4d,0x54,0x0,0x45,0x44,0x54,0x0,0x45,0x53,0x54,0x0,0x45,0x57, + 0x54,0x0,0x45,0x50,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x1, + 0xa,0x45,0x53,0x54,0x35,0x45,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30,0x2c, + 0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/US/Michigan + 0x0,0x0,0x8,0x8c, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x7a,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x22,0x80,0x0,0x0,0x0,0xaa, - 0x19,0xa3,0x30,0xb5,0xa4,0x19,0x60,0xca,0xaa,0xe7,0xd0,0xcc,0xe7,0x4b,0x10,0xcd, - 0xa9,0x17,0x90,0xce,0xa2,0x43,0x10,0xce,0xbd,0xd6,0x70,0x15,0x27,0xa7,0xd0,0x16, - 0x18,0xdc,0x40,0x17,0x8,0xdb,0x50,0x17,0xfa,0xf,0xc0,0x18,0xea,0xe,0xd0,0x19, - 0xdb,0x43,0x40,0x1a,0xcc,0x93,0xd0,0x1b,0xbc,0xa0,0xf0,0x1c,0xac,0x91,0xf0,0x1d, - 0x9c,0x82,0xf0,0x1e,0x8c,0x73,0xf0,0x1f,0x7c,0x64,0xf0,0x20,0x6c,0x55,0xf0,0x21, - 0x5c,0x46,0xf0,0x22,0x4c,0x37,0xf0,0x23,0x3c,0x28,0xf0,0x24,0x2c,0x19,0xf0,0x25, - 0x1c,0xa,0xf0,0x26,0xb,0xfb,0xf0,0x27,0x5,0x27,0x70,0x27,0xf5,0x18,0x70,0x28, - 0xe4,0xed,0x50,0x29,0xd4,0xec,0x60,0x2a,0xc4,0xcf,0x50,0x2b,0xb4,0xce,0x60,0x2c, - 0xa4,0xb1,0x50,0x2d,0x94,0xb0,0x60,0x2e,0x84,0x93,0x50,0x2f,0x74,0xbc,0x90,0x30, - 0x64,0xad,0x90,0x31,0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34, - 0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38, - 0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b, - 0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f, - 0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43, - 0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47, - 0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a, - 0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e, - 0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52, - 0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56, - 0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59, - 0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d, - 0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61, - 0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65, - 0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68, - 0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c, - 0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70, - 0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74, - 0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78, - 0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b, - 0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f, - 0x8e,0x7f,0x90,0x1,0x2,0x3,0x6,0x4,0x5,0x4,0x3,0x7,0x3,0x7,0x3,0x7, - 0x3,0x7,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0xa, - 0x2,0xa,0x2,0xa,0x2,0xa,0x2,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb, - 0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb, - 0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb, - 0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb, - 0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb, - 0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0x0,0x0,0x20, - 0xf8,0x0,0x0,0x0,0x0,0x20,0xd0,0x0,0x4,0x0,0x0,0x1c,0x20,0x0,0x8,0x0, - 0x0,0x2a,0x30,0x0,0xc,0x0,0x0,0xe,0x10,0x0,0x10,0x0,0x0,0x1c,0x20,0x1, - 0x14,0x0,0x0,0x1c,0x20,0x1,0x14,0x0,0x0,0x38,0x40,0x1,0x19,0x0,0x0,0x2a, - 0x30,0x0,0xc,0x0,0x0,0x38,0x40,0x1,0x19,0x0,0x0,0x2a,0x30,0x1,0x1d,0x0, - 0x0,0x2a,0x30,0x1,0x1d,0x0,0x0,0x1c,0x20,0x0,0x8,0x4c,0x4d,0x54,0x0,0x43, - 0x55,0x54,0x0,0x45,0x45,0x54,0x0,0x4d,0x53,0x4b,0x0,0x43,0x45,0x54,0x0,0x43, - 0x45,0x53,0x54,0x0,0x4d,0x53,0x44,0x0,0x45,0x45,0x53,0x54,0x0,0x0,0x0,0x0, - 0x0,0x1,0x1,0x0,0x0,0x1,0x1,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd,0x0, - 0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7b,0x0,0x0,0x0,0xd,0x0, - 0x0,0x0,0x22,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x56, - 0xb6,0xc3,0x8,0xff,0xff,0xff,0xff,0xaa,0x19,0xa3,0x30,0xff,0xff,0xff,0xff,0xb5, - 0xa4,0x19,0x60,0xff,0xff,0xff,0xff,0xca,0xaa,0xe7,0xd0,0xff,0xff,0xff,0xff,0xcc, - 0xe7,0x4b,0x10,0xff,0xff,0xff,0xff,0xcd,0xa9,0x17,0x90,0xff,0xff,0xff,0xff,0xce, - 0xa2,0x43,0x10,0xff,0xff,0xff,0xff,0xce,0xbd,0xd6,0x70,0x0,0x0,0x0,0x0,0x15, - 0x27,0xa7,0xd0,0x0,0x0,0x0,0x0,0x16,0x18,0xdc,0x40,0x0,0x0,0x0,0x0,0x17, - 0x8,0xdb,0x50,0x0,0x0,0x0,0x0,0x17,0xfa,0xf,0xc0,0x0,0x0,0x0,0x0,0x18, - 0xea,0xe,0xd0,0x0,0x0,0x0,0x0,0x19,0xdb,0x43,0x40,0x0,0x0,0x0,0x0,0x1a, - 0xcc,0x93,0xd0,0x0,0x0,0x0,0x0,0x1b,0xbc,0xa0,0xf0,0x0,0x0,0x0,0x0,0x1c, - 0xac,0x91,0xf0,0x0,0x0,0x0,0x0,0x1d,0x9c,0x82,0xf0,0x0,0x0,0x0,0x0,0x1e, - 0x8c,0x73,0xf0,0x0,0x0,0x0,0x0,0x1f,0x7c,0x64,0xf0,0x0,0x0,0x0,0x0,0x20, - 0x6c,0x55,0xf0,0x0,0x0,0x0,0x0,0x21,0x5c,0x46,0xf0,0x0,0x0,0x0,0x0,0x22, - 0x4c,0x37,0xf0,0x0,0x0,0x0,0x0,0x23,0x3c,0x28,0xf0,0x0,0x0,0x0,0x0,0x24, - 0x2c,0x19,0xf0,0x0,0x0,0x0,0x0,0x25,0x1c,0xa,0xf0,0x0,0x0,0x0,0x0,0x26, - 0xb,0xfb,0xf0,0x0,0x0,0x0,0x0,0x27,0x5,0x27,0x70,0x0,0x0,0x0,0x0,0x27, - 0xf5,0x18,0x70,0x0,0x0,0x0,0x0,0x28,0xe4,0xed,0x50,0x0,0x0,0x0,0x0,0x29, - 0xd4,0xec,0x60,0x0,0x0,0x0,0x0,0x2a,0xc4,0xcf,0x50,0x0,0x0,0x0,0x0,0x2b, - 0xb4,0xce,0x60,0x0,0x0,0x0,0x0,0x2c,0xa4,0xb1,0x50,0x0,0x0,0x0,0x0,0x2d, - 0x94,0xb0,0x60,0x0,0x0,0x0,0x0,0x2e,0x84,0x93,0x50,0x0,0x0,0x0,0x0,0x2f, - 0x74,0xbc,0x90,0x0,0x0,0x0,0x0,0x30,0x64,0xad,0x90,0x0,0x0,0x0,0x0,0x31, - 0x5d,0xd9,0x10,0x0,0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0,0x0,0x0,0x33, - 0x3d,0xbb,0x10,0x0,0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35, - 0x1d,0x9d,0x10,0x0,0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36, - 0xfd,0x7f,0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38, - 0xdd,0x61,0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0,0x0,0x0,0x3a, - 0xbd,0x43,0x10,0x0,0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0,0x0,0x3c, - 0xa6,0x5f,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0,0x0,0x3e, - 0x86,0x41,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40, - 0x66,0x23,0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42, - 0x46,0x5,0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44, - 0x25,0xe7,0x90,0x0,0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46, - 0x5,0xc9,0x90,0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47, - 0xee,0xe6,0x10,0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49, - 0xce,0xc8,0x10,0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b, - 0xae,0xaa,0x10,0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d, - 0x8e,0x8c,0x10,0x0,0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f, - 0x6e,0x6e,0x10,0x0,0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51, - 0x57,0x8a,0x90,0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53, - 0x37,0x6c,0x90,0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55, - 0x17,0x4e,0x90,0x0,0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56, - 0xf7,0x30,0x90,0x0,0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58, - 0xd7,0x12,0x90,0x0,0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a, - 0xb6,0xf4,0x90,0x0,0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c, - 0xa0,0x11,0x10,0x0,0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e, - 0x7f,0xf3,0x10,0x0,0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60, - 0x5f,0xd5,0x10,0x0,0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62, - 0x3f,0xb7,0x10,0x0,0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64, - 0x1f,0x99,0x10,0x0,0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66, - 0x8,0xb5,0x90,0x0,0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67, - 0xe8,0x97,0x90,0x0,0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69, - 0xc8,0x79,0x90,0x0,0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b, - 0xa8,0x5b,0x90,0x0,0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d, - 0x88,0x3d,0x90,0x0,0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f, - 0x68,0x1f,0x90,0x0,0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71, - 0x51,0x3c,0x10,0x0,0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73, - 0x31,0x1e,0x10,0x0,0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75, - 0x11,0x0,0x10,0x0,0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76, - 0xf0,0xe2,0x10,0x0,0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78, - 0xd0,0xc4,0x10,0x0,0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a, - 0xb0,0xa6,0x10,0x0,0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c, - 0x99,0xc2,0x90,0x0,0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e, - 0x79,0xa4,0x90,0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x1,0x2,0x3,0x6, - 0x4,0x5,0x4,0x3,0x7,0x3,0x7,0x3,0x7,0x3,0x7,0x8,0x9,0x8,0x9,0x8, - 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0xa,0x2,0xa,0x2,0xa,0x2,0xa,0x2, - 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, - 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, - 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, - 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, - 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, - 0xb,0xc,0xb,0xc,0xb,0xc,0x0,0x0,0x20,0xf8,0x0,0x0,0x0,0x0,0x20,0xd0, - 0x0,0x4,0x0,0x0,0x1c,0x20,0x0,0x8,0x0,0x0,0x2a,0x30,0x0,0xc,0x0,0x0, - 0xe,0x10,0x0,0x10,0x0,0x0,0x1c,0x20,0x1,0x14,0x0,0x0,0x1c,0x20,0x1,0x14, - 0x0,0x0,0x38,0x40,0x1,0x19,0x0,0x0,0x2a,0x30,0x0,0xc,0x0,0x0,0x38,0x40, - 0x1,0x19,0x0,0x0,0x2a,0x30,0x1,0x1d,0x0,0x0,0x2a,0x30,0x1,0x1d,0x0,0x0, - 0x1c,0x20,0x0,0x8,0x4c,0x4d,0x54,0x0,0x43,0x55,0x54,0x0,0x45,0x45,0x54,0x0, - 0x4d,0x53,0x4b,0x0,0x43,0x45,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x4d,0x53,0x44, - 0x0,0x45,0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x1,0x1, - 0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, - 0xa,0x45,0x45,0x54,0x2d,0x32,0x45,0x45,0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e, - 0x30,0x2f,0x33,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30,0x2f,0x34,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Vaduz - 0x0,0x0,0x7,0x7e, + 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x8a,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x80,0x0,0x0,0x0,0x85, + 0xbd,0x22,0x5b,0x99,0x3c,0x94,0x0,0xcb,0x88,0xf0,0x70,0xd2,0x23,0xf4,0x70,0xd2, + 0x60,0xfb,0xe0,0xd7,0x35,0xa8,0xf0,0xd8,0x0,0xa1,0xe0,0x6,0x40,0xdf,0x70,0x7, + 0x30,0xc2,0x60,0x7,0x8d,0x19,0x70,0x9,0x10,0xa4,0x60,0xa,0x0,0xa3,0x70,0xa, + 0xf0,0x86,0x60,0xb,0xe0,0x85,0x70,0xc,0xd9,0xa2,0xe0,0xd,0xc0,0x67,0x70,0xe, + 0xb9,0x84,0xe0,0xf,0xa9,0x83,0xf0,0x10,0x99,0x66,0xe0,0x11,0x89,0x65,0xf0,0x12, + 0x79,0x48,0xe0,0x13,0x69,0x47,0xf0,0x14,0x59,0x2a,0xe0,0x15,0x49,0x29,0xf0,0x16, + 0x39,0xc,0xe0,0x17,0x29,0xb,0xf0,0x18,0x22,0x29,0x60,0x19,0x8,0xed,0xf0,0x1a, + 0x2,0xb,0x60,0x1a,0xf2,0xa,0x70,0x1b,0xe1,0xed,0x60,0x1c,0xd1,0xec,0x70,0x1d, + 0xc1,0xcf,0x60,0x1e,0xb1,0xce,0x70,0x1f,0xa1,0xb1,0x60,0x20,0x76,0x0,0xf0,0x21, + 0x81,0x93,0x60,0x22,0x55,0xe2,0xf0,0x23,0x6a,0xaf,0xe0,0x24,0x35,0xc4,0xf0,0x25, + 0x4a,0x91,0xe0,0x26,0x15,0xa6,0xf0,0x27,0x2a,0x73,0xe0,0x27,0xfe,0xc3,0x70,0x29, + 0xa,0x55,0xe0,0x29,0xde,0xa5,0x70,0x2a,0xea,0x37,0xe0,0x2b,0xbe,0x87,0x70,0x2c, + 0xd3,0x54,0x60,0x2d,0x9e,0x69,0x70,0x2e,0xb3,0x36,0x60,0x2f,0x7e,0x4b,0x70,0x30, + 0x93,0x18,0x60,0x31,0x67,0x67,0xf0,0x32,0x72,0xfa,0x60,0x33,0x47,0x49,0xf0,0x34, + 0x52,0xdc,0x60,0x35,0x27,0x2b,0xf0,0x36,0x32,0xbe,0x60,0x37,0x7,0xd,0xf0,0x38, + 0x1b,0xda,0xe0,0x38,0xe6,0xef,0xf0,0x39,0xfb,0xbc,0xe0,0x3a,0xc6,0xd1,0xf0,0x3b, + 0xdb,0x9e,0xe0,0x3c,0xaf,0xee,0x70,0x3d,0xbb,0x80,0xe0,0x3e,0x8f,0xd0,0x70,0x3f, + 0x9b,0x62,0xe0,0x40,0x6f,0xb2,0x70,0x41,0x84,0x7f,0x60,0x42,0x4f,0x94,0x70,0x43, + 0x64,0x61,0x60,0x44,0x2f,0x76,0x70,0x45,0x44,0x43,0x60,0x45,0xf3,0xa8,0xf0,0x47, + 0x2d,0x5f,0xe0,0x47,0xd3,0x8a,0xf0,0x49,0xd,0x41,0xe0,0x49,0xb3,0x6c,0xf0,0x4a, + 0xed,0x23,0xe0,0x4b,0x9c,0x89,0x70,0x4c,0xd6,0x40,0x60,0x4d,0x7c,0x6b,0x70,0x4e, + 0xb6,0x22,0x60,0x4f,0x5c,0x4d,0x70,0x50,0x96,0x4,0x60,0x51,0x3c,0x2f,0x70,0x52, + 0x75,0xe6,0x60,0x53,0x1c,0x11,0x70,0x54,0x55,0xc8,0x60,0x54,0xfb,0xf3,0x70,0x56, + 0x35,0xaa,0x60,0x56,0xe5,0xf,0xf0,0x58,0x1e,0xc6,0xe0,0x58,0xc4,0xf1,0xf0,0x59, + 0xfe,0xa8,0xe0,0x5a,0xa4,0xd3,0xf0,0x5b,0xde,0x8a,0xe0,0x5c,0x84,0xb5,0xf0,0x5d, + 0xbe,0x6c,0xe0,0x5e,0x64,0x97,0xf0,0x5f,0x9e,0x4e,0xe0,0x60,0x4d,0xb4,0x70,0x61, + 0x87,0x6b,0x60,0x62,0x2d,0x96,0x70,0x63,0x67,0x4d,0x60,0x64,0xd,0x78,0x70,0x65, + 0x47,0x2f,0x60,0x65,0xed,0x5a,0x70,0x67,0x27,0x11,0x60,0x67,0xcd,0x3c,0x70,0x69, + 0x6,0xf3,0x60,0x69,0xad,0x1e,0x70,0x6a,0xe6,0xd5,0x60,0x6b,0x96,0x3a,0xf0,0x6c, + 0xcf,0xf1,0xe0,0x6d,0x76,0x1c,0xf0,0x6e,0xaf,0xd3,0xe0,0x6f,0x55,0xfe,0xf0,0x70, + 0x8f,0xb5,0xe0,0x71,0x35,0xe0,0xf0,0x72,0x6f,0x97,0xe0,0x73,0x15,0xc2,0xf0,0x74, + 0x4f,0x79,0xe0,0x74,0xfe,0xdf,0x70,0x76,0x38,0x96,0x60,0x76,0xde,0xc1,0x70,0x78, + 0x18,0x78,0x60,0x78,0xbe,0xa3,0x70,0x79,0xf8,0x5a,0x60,0x7a,0x9e,0x85,0x70,0x7b, + 0xd8,0x3c,0x60,0x7c,0x7e,0x67,0x70,0x7d,0xb8,0x1e,0x60,0x7e,0x5e,0x49,0x70,0x7f, + 0x98,0x0,0x60,0x0,0x1,0x2,0x3,0x4,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, + 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, + 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, + 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, + 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, + 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, + 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, + 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, + 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0xff,0xff,0xb2, + 0x25,0x0,0x0,0xff,0xff,0xab,0xa0,0x0,0x4,0xff,0xff,0xb9,0xb0,0x0,0x8,0xff, + 0xff,0xc7,0xc0,0x1,0xc,0xff,0xff,0xc7,0xc0,0x1,0x10,0xff,0xff,0xc7,0xc0,0x1, + 0x14,0x4c,0x4d,0x54,0x0,0x43,0x53,0x54,0x0,0x45,0x53,0x54,0x0,0x45,0x57,0x54, + 0x0,0x45,0x50,0x54,0x0,0x45,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0, + 0x0,0x0,0x0,0x1,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x18,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x85,0xbd,0x22, + 0x5b,0xff,0xff,0xff,0xff,0x99,0x3c,0x94,0x0,0xff,0xff,0xff,0xff,0xcb,0x88,0xf0, + 0x70,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x60,0xfb, + 0xe0,0xff,0xff,0xff,0xff,0xd7,0x35,0xa8,0xf0,0xff,0xff,0xff,0xff,0xd8,0x0,0xa1, + 0xe0,0x0,0x0,0x0,0x0,0x6,0x40,0xdf,0x70,0x0,0x0,0x0,0x0,0x7,0x30,0xc2, + 0x60,0x0,0x0,0x0,0x0,0x7,0x8d,0x19,0x70,0x0,0x0,0x0,0x0,0x9,0x10,0xa4, + 0x60,0x0,0x0,0x0,0x0,0xa,0x0,0xa3,0x70,0x0,0x0,0x0,0x0,0xa,0xf0,0x86, + 0x60,0x0,0x0,0x0,0x0,0xb,0xe0,0x85,0x70,0x0,0x0,0x0,0x0,0xc,0xd9,0xa2, + 0xe0,0x0,0x0,0x0,0x0,0xd,0xc0,0x67,0x70,0x0,0x0,0x0,0x0,0xe,0xb9,0x84, + 0xe0,0x0,0x0,0x0,0x0,0xf,0xa9,0x83,0xf0,0x0,0x0,0x0,0x0,0x10,0x99,0x66, + 0xe0,0x0,0x0,0x0,0x0,0x11,0x89,0x65,0xf0,0x0,0x0,0x0,0x0,0x12,0x79,0x48, + 0xe0,0x0,0x0,0x0,0x0,0x13,0x69,0x47,0xf0,0x0,0x0,0x0,0x0,0x14,0x59,0x2a, + 0xe0,0x0,0x0,0x0,0x0,0x15,0x49,0x29,0xf0,0x0,0x0,0x0,0x0,0x16,0x39,0xc, + 0xe0,0x0,0x0,0x0,0x0,0x17,0x29,0xb,0xf0,0x0,0x0,0x0,0x0,0x18,0x22,0x29, + 0x60,0x0,0x0,0x0,0x0,0x19,0x8,0xed,0xf0,0x0,0x0,0x0,0x0,0x1a,0x2,0xb, + 0x60,0x0,0x0,0x0,0x0,0x1a,0xf2,0xa,0x70,0x0,0x0,0x0,0x0,0x1b,0xe1,0xed, + 0x60,0x0,0x0,0x0,0x0,0x1c,0xd1,0xec,0x70,0x0,0x0,0x0,0x0,0x1d,0xc1,0xcf, + 0x60,0x0,0x0,0x0,0x0,0x1e,0xb1,0xce,0x70,0x0,0x0,0x0,0x0,0x1f,0xa1,0xb1, + 0x60,0x0,0x0,0x0,0x0,0x20,0x76,0x0,0xf0,0x0,0x0,0x0,0x0,0x21,0x81,0x93, + 0x60,0x0,0x0,0x0,0x0,0x22,0x55,0xe2,0xf0,0x0,0x0,0x0,0x0,0x23,0x6a,0xaf, + 0xe0,0x0,0x0,0x0,0x0,0x24,0x35,0xc4,0xf0,0x0,0x0,0x0,0x0,0x25,0x4a,0x91, + 0xe0,0x0,0x0,0x0,0x0,0x26,0x15,0xa6,0xf0,0x0,0x0,0x0,0x0,0x27,0x2a,0x73, + 0xe0,0x0,0x0,0x0,0x0,0x27,0xfe,0xc3,0x70,0x0,0x0,0x0,0x0,0x29,0xa,0x55, + 0xe0,0x0,0x0,0x0,0x0,0x29,0xde,0xa5,0x70,0x0,0x0,0x0,0x0,0x2a,0xea,0x37, + 0xe0,0x0,0x0,0x0,0x0,0x2b,0xbe,0x87,0x70,0x0,0x0,0x0,0x0,0x2c,0xd3,0x54, + 0x60,0x0,0x0,0x0,0x0,0x2d,0x9e,0x69,0x70,0x0,0x0,0x0,0x0,0x2e,0xb3,0x36, + 0x60,0x0,0x0,0x0,0x0,0x2f,0x7e,0x4b,0x70,0x0,0x0,0x0,0x0,0x30,0x93,0x18, + 0x60,0x0,0x0,0x0,0x0,0x31,0x67,0x67,0xf0,0x0,0x0,0x0,0x0,0x32,0x72,0xfa, + 0x60,0x0,0x0,0x0,0x0,0x33,0x47,0x49,0xf0,0x0,0x0,0x0,0x0,0x34,0x52,0xdc, + 0x60,0x0,0x0,0x0,0x0,0x35,0x27,0x2b,0xf0,0x0,0x0,0x0,0x0,0x36,0x32,0xbe, + 0x60,0x0,0x0,0x0,0x0,0x37,0x7,0xd,0xf0,0x0,0x0,0x0,0x0,0x38,0x1b,0xda, + 0xe0,0x0,0x0,0x0,0x0,0x38,0xe6,0xef,0xf0,0x0,0x0,0x0,0x0,0x39,0xfb,0xbc, + 0xe0,0x0,0x0,0x0,0x0,0x3a,0xc6,0xd1,0xf0,0x0,0x0,0x0,0x0,0x3b,0xdb,0x9e, + 0xe0,0x0,0x0,0x0,0x0,0x3c,0xaf,0xee,0x70,0x0,0x0,0x0,0x0,0x3d,0xbb,0x80, + 0xe0,0x0,0x0,0x0,0x0,0x3e,0x8f,0xd0,0x70,0x0,0x0,0x0,0x0,0x3f,0x9b,0x62, + 0xe0,0x0,0x0,0x0,0x0,0x40,0x6f,0xb2,0x70,0x0,0x0,0x0,0x0,0x41,0x84,0x7f, + 0x60,0x0,0x0,0x0,0x0,0x42,0x4f,0x94,0x70,0x0,0x0,0x0,0x0,0x43,0x64,0x61, + 0x60,0x0,0x0,0x0,0x0,0x44,0x2f,0x76,0x70,0x0,0x0,0x0,0x0,0x45,0x44,0x43, + 0x60,0x0,0x0,0x0,0x0,0x45,0xf3,0xa8,0xf0,0x0,0x0,0x0,0x0,0x47,0x2d,0x5f, + 0xe0,0x0,0x0,0x0,0x0,0x47,0xd3,0x8a,0xf0,0x0,0x0,0x0,0x0,0x49,0xd,0x41, + 0xe0,0x0,0x0,0x0,0x0,0x49,0xb3,0x6c,0xf0,0x0,0x0,0x0,0x0,0x4a,0xed,0x23, + 0xe0,0x0,0x0,0x0,0x0,0x4b,0x9c,0x89,0x70,0x0,0x0,0x0,0x0,0x4c,0xd6,0x40, + 0x60,0x0,0x0,0x0,0x0,0x4d,0x7c,0x6b,0x70,0x0,0x0,0x0,0x0,0x4e,0xb6,0x22, + 0x60,0x0,0x0,0x0,0x0,0x4f,0x5c,0x4d,0x70,0x0,0x0,0x0,0x0,0x50,0x96,0x4, + 0x60,0x0,0x0,0x0,0x0,0x51,0x3c,0x2f,0x70,0x0,0x0,0x0,0x0,0x52,0x75,0xe6, + 0x60,0x0,0x0,0x0,0x0,0x53,0x1c,0x11,0x70,0x0,0x0,0x0,0x0,0x54,0x55,0xc8, + 0x60,0x0,0x0,0x0,0x0,0x54,0xfb,0xf3,0x70,0x0,0x0,0x0,0x0,0x56,0x35,0xaa, + 0x60,0x0,0x0,0x0,0x0,0x56,0xe5,0xf,0xf0,0x0,0x0,0x0,0x0,0x58,0x1e,0xc6, + 0xe0,0x0,0x0,0x0,0x0,0x58,0xc4,0xf1,0xf0,0x0,0x0,0x0,0x0,0x59,0xfe,0xa8, + 0xe0,0x0,0x0,0x0,0x0,0x5a,0xa4,0xd3,0xf0,0x0,0x0,0x0,0x0,0x5b,0xde,0x8a, + 0xe0,0x0,0x0,0x0,0x0,0x5c,0x84,0xb5,0xf0,0x0,0x0,0x0,0x0,0x5d,0xbe,0x6c, + 0xe0,0x0,0x0,0x0,0x0,0x5e,0x64,0x97,0xf0,0x0,0x0,0x0,0x0,0x5f,0x9e,0x4e, + 0xe0,0x0,0x0,0x0,0x0,0x60,0x4d,0xb4,0x70,0x0,0x0,0x0,0x0,0x61,0x87,0x6b, + 0x60,0x0,0x0,0x0,0x0,0x62,0x2d,0x96,0x70,0x0,0x0,0x0,0x0,0x63,0x67,0x4d, + 0x60,0x0,0x0,0x0,0x0,0x64,0xd,0x78,0x70,0x0,0x0,0x0,0x0,0x65,0x47,0x2f, + 0x60,0x0,0x0,0x0,0x0,0x65,0xed,0x5a,0x70,0x0,0x0,0x0,0x0,0x67,0x27,0x11, + 0x60,0x0,0x0,0x0,0x0,0x67,0xcd,0x3c,0x70,0x0,0x0,0x0,0x0,0x69,0x6,0xf3, + 0x60,0x0,0x0,0x0,0x0,0x69,0xad,0x1e,0x70,0x0,0x0,0x0,0x0,0x6a,0xe6,0xd5, + 0x60,0x0,0x0,0x0,0x0,0x6b,0x96,0x3a,0xf0,0x0,0x0,0x0,0x0,0x6c,0xcf,0xf1, + 0xe0,0x0,0x0,0x0,0x0,0x6d,0x76,0x1c,0xf0,0x0,0x0,0x0,0x0,0x6e,0xaf,0xd3, + 0xe0,0x0,0x0,0x0,0x0,0x6f,0x55,0xfe,0xf0,0x0,0x0,0x0,0x0,0x70,0x8f,0xb5, + 0xe0,0x0,0x0,0x0,0x0,0x71,0x35,0xe0,0xf0,0x0,0x0,0x0,0x0,0x72,0x6f,0x97, + 0xe0,0x0,0x0,0x0,0x0,0x73,0x15,0xc2,0xf0,0x0,0x0,0x0,0x0,0x74,0x4f,0x79, + 0xe0,0x0,0x0,0x0,0x0,0x74,0xfe,0xdf,0x70,0x0,0x0,0x0,0x0,0x76,0x38,0x96, + 0x60,0x0,0x0,0x0,0x0,0x76,0xde,0xc1,0x70,0x0,0x0,0x0,0x0,0x78,0x18,0x78, + 0x60,0x0,0x0,0x0,0x0,0x78,0xbe,0xa3,0x70,0x0,0x0,0x0,0x0,0x79,0xf8,0x5a, + 0x60,0x0,0x0,0x0,0x0,0x7a,0x9e,0x85,0x70,0x0,0x0,0x0,0x0,0x7b,0xd8,0x3c, + 0x60,0x0,0x0,0x0,0x0,0x7c,0x7e,0x67,0x70,0x0,0x0,0x0,0x0,0x7d,0xb8,0x1e, + 0x60,0x0,0x0,0x0,0x0,0x7e,0x5e,0x49,0x70,0x0,0x0,0x0,0x0,0x7f,0x98,0x0, + 0x60,0x0,0x1,0x2,0x3,0x4,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, + 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, + 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, + 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, + 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, + 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, + 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, + 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, + 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0xff,0xff,0xb2,0x25,0x0, + 0x0,0xff,0xff,0xab,0xa0,0x0,0x4,0xff,0xff,0xb9,0xb0,0x0,0x8,0xff,0xff,0xc7, + 0xc0,0x1,0xc,0xff,0xff,0xc7,0xc0,0x1,0x10,0xff,0xff,0xc7,0xc0,0x1,0x14,0x4c, + 0x4d,0x54,0x0,0x43,0x53,0x54,0x0,0x45,0x53,0x54,0x0,0x45,0x57,0x54,0x0,0x45, + 0x50,0x54,0x0,0x45,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0, + 0x0,0x1,0x0,0xa,0x45,0x53,0x54,0x35,0x45,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32, + 0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/US/Alaska + 0x0,0x0,0x9,0x4c, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x77,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0xca, - 0x17,0x6a,0x0,0xca,0xe2,0x71,0x0,0xcb,0xf7,0x4c,0x0,0xcc,0xc2,0x53,0x0,0x15, - 0x23,0xeb,0x90,0x16,0x13,0xdc,0x90,0x17,0x3,0xcd,0x90,0x17,0xf3,0xbe,0x90,0x18, - 0xe3,0xaf,0x90,0x19,0xd3,0xa0,0x90,0x1a,0xc3,0x91,0x90,0x1b,0xbc,0xbd,0x10,0x1c, - 0xac,0xae,0x10,0x1d,0x9c,0x9f,0x10,0x1e,0x8c,0x90,0x10,0x1f,0x7c,0x81,0x10,0x20, - 0x6c,0x72,0x10,0x21,0x5c,0x63,0x10,0x22,0x4c,0x54,0x10,0x23,0x3c,0x45,0x10,0x24, - 0x2c,0x36,0x10,0x25,0x1c,0x27,0x10,0x26,0xc,0x18,0x10,0x27,0x5,0x43,0x90,0x27, - 0xf5,0x34,0x90,0x28,0xe5,0x25,0x90,0x29,0xd5,0x16,0x90,0x2a,0xc5,0x7,0x90,0x2b, - 0xb4,0xf8,0x90,0x2c,0xa4,0xe9,0x90,0x2d,0x94,0xda,0x90,0x2e,0x84,0xcb,0x90,0x2f, - 0x74,0xbc,0x90,0x30,0x64,0xad,0x90,0x31,0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33, - 0x3d,0xbb,0x10,0x34,0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36, - 0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a, - 0xbd,0x43,0x10,0x3b,0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e, - 0x86,0x41,0x90,0x3f,0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42, - 0x46,0x5,0x90,0x43,0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46, - 0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49, - 0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d, - 0x8e,0x8c,0x10,0x4e,0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51, - 0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55, - 0x17,0x4e,0x90,0x56,0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58, - 0xd7,0x12,0x90,0x59,0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c, - 0xa0,0x11,0x10,0x5d,0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60, - 0x5f,0xd5,0x10,0x61,0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64, - 0x1f,0x99,0x10,0x65,0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67, - 0xe8,0x97,0x90,0x68,0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b, - 0xa8,0x5b,0x90,0x6c,0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f, - 0x68,0x1f,0x90,0x70,0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73, - 0x31,0x1e,0x10,0x74,0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76, - 0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a, - 0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e, - 0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x0,0x0, - 0x6,0xfa,0x0,0x0,0x0,0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe,0x10,0x0,0x9, - 0x0,0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe,0x10,0x0,0x9,0x42,0x4d,0x54,0x0, - 0x43,0x45,0x53,0x54,0x0,0x43,0x45,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0, - 0x0,0x1,0x1,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x79,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0xf8, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x24,0xf0,0xea,0x80,0xff, - 0xff,0xff,0xff,0x71,0xd4,0x6,0x86,0xff,0xff,0xff,0xff,0xca,0x17,0x6a,0x0,0xff, - 0xff,0xff,0xff,0xca,0xe2,0x71,0x0,0xff,0xff,0xff,0xff,0xcb,0xf7,0x4c,0x0,0xff, - 0xff,0xff,0xff,0xcc,0xc2,0x53,0x0,0x0,0x0,0x0,0x0,0x15,0x23,0xeb,0x90,0x0, - 0x0,0x0,0x0,0x16,0x13,0xdc,0x90,0x0,0x0,0x0,0x0,0x17,0x3,0xcd,0x90,0x0, - 0x0,0x0,0x0,0x17,0xf3,0xbe,0x90,0x0,0x0,0x0,0x0,0x18,0xe3,0xaf,0x90,0x0, - 0x0,0x0,0x0,0x19,0xd3,0xa0,0x90,0x0,0x0,0x0,0x0,0x1a,0xc3,0x91,0x90,0x0, - 0x0,0x0,0x0,0x1b,0xbc,0xbd,0x10,0x0,0x0,0x0,0x0,0x1c,0xac,0xae,0x10,0x0, - 0x0,0x0,0x0,0x1d,0x9c,0x9f,0x10,0x0,0x0,0x0,0x0,0x1e,0x8c,0x90,0x10,0x0, - 0x0,0x0,0x0,0x1f,0x7c,0x81,0x10,0x0,0x0,0x0,0x0,0x20,0x6c,0x72,0x10,0x0, - 0x0,0x0,0x0,0x21,0x5c,0x63,0x10,0x0,0x0,0x0,0x0,0x22,0x4c,0x54,0x10,0x0, - 0x0,0x0,0x0,0x23,0x3c,0x45,0x10,0x0,0x0,0x0,0x0,0x24,0x2c,0x36,0x10,0x0, - 0x0,0x0,0x0,0x25,0x1c,0x27,0x10,0x0,0x0,0x0,0x0,0x26,0xc,0x18,0x10,0x0, - 0x0,0x0,0x0,0x27,0x5,0x43,0x90,0x0,0x0,0x0,0x0,0x27,0xf5,0x34,0x90,0x0, - 0x0,0x0,0x0,0x28,0xe5,0x25,0x90,0x0,0x0,0x0,0x0,0x29,0xd5,0x16,0x90,0x0, - 0x0,0x0,0x0,0x2a,0xc5,0x7,0x90,0x0,0x0,0x0,0x0,0x2b,0xb4,0xf8,0x90,0x0, - 0x0,0x0,0x0,0x2c,0xa4,0xe9,0x90,0x0,0x0,0x0,0x0,0x2d,0x94,0xda,0x90,0x0, - 0x0,0x0,0x0,0x2e,0x84,0xcb,0x90,0x0,0x0,0x0,0x0,0x2f,0x74,0xbc,0x90,0x0, - 0x0,0x0,0x0,0x30,0x64,0xad,0x90,0x0,0x0,0x0,0x0,0x31,0x5d,0xd9,0x10,0x0, - 0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d,0xbb,0x10,0x0, - 0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d,0x9d,0x10,0x0, - 0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd,0x7f,0x10,0x0, - 0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd,0x61,0x10,0x0, - 0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd,0x43,0x10,0x0, - 0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f,0x90,0x0, - 0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86,0x41,0x90,0x0, - 0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66,0x23,0x90,0x0, - 0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46,0x5,0x90,0x0, - 0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25,0xe7,0x90,0x0, - 0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5,0xc9,0x90,0x0, - 0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee,0xe6,0x10,0x0, - 0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce,0xc8,0x10,0x0, - 0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae,0xaa,0x10,0x0, - 0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c,0x10,0x0, - 0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e,0x10,0x0, - 0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57,0x8a,0x90,0x0, - 0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37,0x6c,0x90,0x0, - 0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17,0x4e,0x90,0x0, - 0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7,0x30,0x90,0x0, - 0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7,0x12,0x90,0x0, - 0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4,0x90,0x0, - 0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0,0x11,0x10,0x0, - 0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3,0x10,0x0, - 0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f,0xd5,0x10,0x0, - 0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f,0xb7,0x10,0x0, - 0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f,0x99,0x10,0x0, - 0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8,0xb5,0x90,0x0, - 0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8,0x97,0x90,0x0, - 0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8,0x79,0x90,0x0, - 0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b,0x90,0x0, - 0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88,0x3d,0x90,0x0, - 0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68,0x1f,0x90,0x0, - 0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51,0x3c,0x10,0x0, - 0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31,0x1e,0x10,0x0, - 0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11,0x0,0x10,0x0, - 0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0,0xe2,0x10,0x0, - 0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0,0xc4,0x10,0x0, - 0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6,0x10,0x0, - 0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99,0xc2,0x90,0x0, - 0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79,0xa4,0x90,0x0, - 0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x1,0x3,0x2,0x3,0x2,0x3,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x6,0xfa,0x0,0x4,0x0,0x0,0x1c,0x20, - 0x1,0x8,0x0,0x0,0xe,0x10,0x0,0xd,0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0, - 0xe,0x10,0x0,0xd,0x4c,0x4d,0x54,0x0,0x42,0x4d,0x54,0x0,0x43,0x45,0x53,0x54, - 0x0,0x43,0x45,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x1, - 0x1,0xa,0x43,0x45,0x54,0x2d,0x31,0x43,0x45,0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35, - 0x2e,0x30,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30,0x2f,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Ljubljana - 0x0,0x0,0x7,0xa5, + 0x0,0x0,0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x90,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x28,0x80,0x0,0x0,0x0,0xcb, + 0x89,0x36,0xc0,0xd2,0x23,0xf4,0x70,0xd2,0x61,0x42,0x30,0xfa,0xd2,0x47,0xa0,0xfe, + 0xb8,0x63,0x40,0xff,0xa8,0x46,0x30,0x0,0x98,0x45,0x40,0x1,0x88,0x28,0x30,0x2, + 0x78,0x27,0x40,0x3,0x71,0x44,0xb0,0x4,0x61,0x43,0xc0,0x5,0x51,0x26,0xb0,0x6, + 0x41,0x25,0xc0,0x7,0x31,0x8,0xb0,0x7,0x8d,0x5f,0xc0,0x9,0x10,0xea,0xb0,0x9, + 0xad,0xdb,0x40,0xa,0xf0,0xcc,0xb0,0xb,0xe0,0xcb,0xc0,0xc,0xd9,0xe9,0x30,0xd, + 0xc0,0xad,0xc0,0xe,0xb9,0xcb,0x30,0xf,0xa9,0xca,0x40,0x10,0x99,0xad,0x30,0x11, + 0x89,0xac,0x40,0x12,0x79,0x8f,0x30,0x13,0x69,0x8e,0x40,0x14,0x59,0x71,0x30,0x15, + 0x49,0x70,0x40,0x16,0x39,0x53,0x30,0x17,0x29,0x52,0x40,0x18,0x22,0x6f,0xb0,0x19, + 0x9,0x34,0x40,0x1a,0x2,0x51,0xb0,0x1a,0x2b,0x14,0x10,0x1a,0xf2,0x42,0xb0,0x1b, + 0xe2,0x25,0xa0,0x1c,0xd2,0x24,0xb0,0x1d,0xc2,0x7,0xa0,0x1e,0xb2,0x6,0xb0,0x1f, + 0xa1,0xe9,0xa0,0x20,0x76,0x39,0x30,0x21,0x81,0xcb,0xa0,0x22,0x56,0x1b,0x30,0x23, + 0x6a,0xe8,0x20,0x24,0x35,0xfd,0x30,0x25,0x4a,0xca,0x20,0x26,0x15,0xdf,0x30,0x27, + 0x2a,0xac,0x20,0x27,0xfe,0xfb,0xb0,0x29,0xa,0x8e,0x20,0x29,0xde,0xdd,0xb0,0x2a, + 0xea,0x70,0x20,0x2b,0xbe,0xbf,0xb0,0x2c,0xd3,0x8c,0xa0,0x2d,0x9e,0xa1,0xb0,0x2e, + 0xb3,0x6e,0xa0,0x2f,0x7e,0x83,0xb0,0x30,0x93,0x50,0xa0,0x31,0x67,0xa0,0x30,0x32, + 0x73,0x32,0xa0,0x33,0x47,0x82,0x30,0x34,0x53,0x14,0xa0,0x35,0x27,0x64,0x30,0x36, + 0x32,0xf6,0xa0,0x37,0x7,0x46,0x30,0x38,0x1c,0x13,0x20,0x38,0xe7,0x28,0x30,0x39, + 0xfb,0xf5,0x20,0x3a,0xc7,0xa,0x30,0x3b,0xdb,0xd7,0x20,0x3c,0xb0,0x26,0xb0,0x3d, + 0xbb,0xb9,0x20,0x3e,0x90,0x8,0xb0,0x3f,0x9b,0x9b,0x20,0x40,0x6f,0xea,0xb0,0x41, + 0x84,0xb7,0xa0,0x42,0x4f,0xcc,0xb0,0x43,0x64,0x99,0xa0,0x44,0x2f,0xae,0xb0,0x45, + 0x44,0x7b,0xa0,0x45,0xf3,0xe1,0x30,0x47,0x2d,0x98,0x20,0x47,0xd3,0xc3,0x30,0x49, + 0xd,0x7a,0x20,0x49,0xb3,0xa5,0x30,0x4a,0xed,0x5c,0x20,0x4b,0x9c,0xc1,0xb0,0x4c, + 0xd6,0x78,0xa0,0x4d,0x7c,0xa3,0xb0,0x4e,0xb6,0x5a,0xa0,0x4f,0x5c,0x85,0xb0,0x50, + 0x96,0x3c,0xa0,0x51,0x3c,0x67,0xb0,0x52,0x76,0x1e,0xa0,0x53,0x1c,0x49,0xb0,0x54, + 0x56,0x0,0xa0,0x54,0xfc,0x2b,0xb0,0x56,0x35,0xe2,0xa0,0x56,0xe5,0x48,0x30,0x58, + 0x1e,0xff,0x20,0x58,0xc5,0x2a,0x30,0x59,0xfe,0xe1,0x20,0x5a,0xa5,0xc,0x30,0x5b, + 0xde,0xc3,0x20,0x5c,0x84,0xee,0x30,0x5d,0xbe,0xa5,0x20,0x5e,0x64,0xd0,0x30,0x5f, + 0x9e,0x87,0x20,0x60,0x4d,0xec,0xb0,0x61,0x87,0xa3,0xa0,0x62,0x2d,0xce,0xb0,0x63, + 0x67,0x85,0xa0,0x64,0xd,0xb0,0xb0,0x65,0x47,0x67,0xa0,0x65,0xed,0x92,0xb0,0x67, + 0x27,0x49,0xa0,0x67,0xcd,0x74,0xb0,0x69,0x7,0x2b,0xa0,0x69,0xad,0x56,0xb0,0x6a, + 0xe7,0xd,0xa0,0x6b,0x96,0x73,0x30,0x6c,0xd0,0x2a,0x20,0x6d,0x76,0x55,0x30,0x6e, + 0xb0,0xc,0x20,0x6f,0x56,0x37,0x30,0x70,0x8f,0xee,0x20,0x71,0x36,0x19,0x30,0x72, + 0x6f,0xd0,0x20,0x73,0x15,0xfb,0x30,0x74,0x4f,0xb2,0x20,0x74,0xff,0x17,0xb0,0x76, + 0x38,0xce,0xa0,0x76,0xde,0xf9,0xb0,0x78,0x18,0xb0,0xa0,0x78,0xbe,0xdb,0xb0,0x79, + 0xf8,0x92,0xa0,0x7a,0x9e,0xbd,0xb0,0x7b,0xd8,0x74,0xa0,0x7c,0x7e,0x9f,0xb0,0x7d, + 0xb8,0x56,0xa0,0x7e,0x5e,0x81,0xb0,0x7f,0x98,0x38,0xa0,0x1,0x2,0x3,0x1,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x6,0x8,0x7, + 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, + 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, + 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, + 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, + 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, + 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, + 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0xff,0xff,0x73,0x78,0x0, + 0x0,0xff,0xff,0x73,0x60,0x0,0x4,0xff,0xff,0x81,0x70,0x1,0x8,0xff,0xff,0x81, + 0x70,0x1,0xc,0xff,0xff,0x73,0x60,0x0,0x10,0xff,0xff,0x81,0x70,0x1,0x15,0xff, + 0xff,0x81,0x70,0x0,0x1a,0xff,0xff,0x8f,0x80,0x1,0x1e,0xff,0xff,0x81,0x70,0x0, + 0x23,0x4c,0x4d,0x54,0x0,0x41,0x53,0x54,0x0,0x41,0x57,0x54,0x0,0x41,0x50,0x54, + 0x0,0x41,0x48,0x53,0x54,0x0,0x41,0x48,0x44,0x54,0x0,0x59,0x53,0x54,0x0,0x41, + 0x4b,0x44,0x54,0x0,0x41,0x4b,0x53,0x54,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xa,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0x0, + 0x0,0x0,0xa,0x0,0x0,0x0,0x28,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff, + 0xff,0xff,0xff,0x3f,0xc2,0xfd,0xd1,0xff,0xff,0xff,0xff,0x7d,0x87,0x41,0x48,0xff, + 0xff,0xff,0xff,0xcb,0x89,0x36,0xc0,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff, + 0xff,0xff,0xff,0xd2,0x61,0x42,0x30,0xff,0xff,0xff,0xff,0xfa,0xd2,0x47,0xa0,0xff, + 0xff,0xff,0xff,0xfe,0xb8,0x63,0x40,0xff,0xff,0xff,0xff,0xff,0xa8,0x46,0x30,0x0, + 0x0,0x0,0x0,0x0,0x98,0x45,0x40,0x0,0x0,0x0,0x0,0x1,0x88,0x28,0x30,0x0, + 0x0,0x0,0x0,0x2,0x78,0x27,0x40,0x0,0x0,0x0,0x0,0x3,0x71,0x44,0xb0,0x0, + 0x0,0x0,0x0,0x4,0x61,0x43,0xc0,0x0,0x0,0x0,0x0,0x5,0x51,0x26,0xb0,0x0, + 0x0,0x0,0x0,0x6,0x41,0x25,0xc0,0x0,0x0,0x0,0x0,0x7,0x31,0x8,0xb0,0x0, + 0x0,0x0,0x0,0x7,0x8d,0x5f,0xc0,0x0,0x0,0x0,0x0,0x9,0x10,0xea,0xb0,0x0, + 0x0,0x0,0x0,0x9,0xad,0xdb,0x40,0x0,0x0,0x0,0x0,0xa,0xf0,0xcc,0xb0,0x0, + 0x0,0x0,0x0,0xb,0xe0,0xcb,0xc0,0x0,0x0,0x0,0x0,0xc,0xd9,0xe9,0x30,0x0, + 0x0,0x0,0x0,0xd,0xc0,0xad,0xc0,0x0,0x0,0x0,0x0,0xe,0xb9,0xcb,0x30,0x0, + 0x0,0x0,0x0,0xf,0xa9,0xca,0x40,0x0,0x0,0x0,0x0,0x10,0x99,0xad,0x30,0x0, + 0x0,0x0,0x0,0x11,0x89,0xac,0x40,0x0,0x0,0x0,0x0,0x12,0x79,0x8f,0x30,0x0, + 0x0,0x0,0x0,0x13,0x69,0x8e,0x40,0x0,0x0,0x0,0x0,0x14,0x59,0x71,0x30,0x0, + 0x0,0x0,0x0,0x15,0x49,0x70,0x40,0x0,0x0,0x0,0x0,0x16,0x39,0x53,0x30,0x0, + 0x0,0x0,0x0,0x17,0x29,0x52,0x40,0x0,0x0,0x0,0x0,0x18,0x22,0x6f,0xb0,0x0, + 0x0,0x0,0x0,0x19,0x9,0x34,0x40,0x0,0x0,0x0,0x0,0x1a,0x2,0x51,0xb0,0x0, + 0x0,0x0,0x0,0x1a,0x2b,0x14,0x10,0x0,0x0,0x0,0x0,0x1a,0xf2,0x42,0xb0,0x0, + 0x0,0x0,0x0,0x1b,0xe2,0x25,0xa0,0x0,0x0,0x0,0x0,0x1c,0xd2,0x24,0xb0,0x0, + 0x0,0x0,0x0,0x1d,0xc2,0x7,0xa0,0x0,0x0,0x0,0x0,0x1e,0xb2,0x6,0xb0,0x0, + 0x0,0x0,0x0,0x1f,0xa1,0xe9,0xa0,0x0,0x0,0x0,0x0,0x20,0x76,0x39,0x30,0x0, + 0x0,0x0,0x0,0x21,0x81,0xcb,0xa0,0x0,0x0,0x0,0x0,0x22,0x56,0x1b,0x30,0x0, + 0x0,0x0,0x0,0x23,0x6a,0xe8,0x20,0x0,0x0,0x0,0x0,0x24,0x35,0xfd,0x30,0x0, + 0x0,0x0,0x0,0x25,0x4a,0xca,0x20,0x0,0x0,0x0,0x0,0x26,0x15,0xdf,0x30,0x0, + 0x0,0x0,0x0,0x27,0x2a,0xac,0x20,0x0,0x0,0x0,0x0,0x27,0xfe,0xfb,0xb0,0x0, + 0x0,0x0,0x0,0x29,0xa,0x8e,0x20,0x0,0x0,0x0,0x0,0x29,0xde,0xdd,0xb0,0x0, + 0x0,0x0,0x0,0x2a,0xea,0x70,0x20,0x0,0x0,0x0,0x0,0x2b,0xbe,0xbf,0xb0,0x0, + 0x0,0x0,0x0,0x2c,0xd3,0x8c,0xa0,0x0,0x0,0x0,0x0,0x2d,0x9e,0xa1,0xb0,0x0, + 0x0,0x0,0x0,0x2e,0xb3,0x6e,0xa0,0x0,0x0,0x0,0x0,0x2f,0x7e,0x83,0xb0,0x0, + 0x0,0x0,0x0,0x30,0x93,0x50,0xa0,0x0,0x0,0x0,0x0,0x31,0x67,0xa0,0x30,0x0, + 0x0,0x0,0x0,0x32,0x73,0x32,0xa0,0x0,0x0,0x0,0x0,0x33,0x47,0x82,0x30,0x0, + 0x0,0x0,0x0,0x34,0x53,0x14,0xa0,0x0,0x0,0x0,0x0,0x35,0x27,0x64,0x30,0x0, + 0x0,0x0,0x0,0x36,0x32,0xf6,0xa0,0x0,0x0,0x0,0x0,0x37,0x7,0x46,0x30,0x0, + 0x0,0x0,0x0,0x38,0x1c,0x13,0x20,0x0,0x0,0x0,0x0,0x38,0xe7,0x28,0x30,0x0, + 0x0,0x0,0x0,0x39,0xfb,0xf5,0x20,0x0,0x0,0x0,0x0,0x3a,0xc7,0xa,0x30,0x0, + 0x0,0x0,0x0,0x3b,0xdb,0xd7,0x20,0x0,0x0,0x0,0x0,0x3c,0xb0,0x26,0xb0,0x0, + 0x0,0x0,0x0,0x3d,0xbb,0xb9,0x20,0x0,0x0,0x0,0x0,0x3e,0x90,0x8,0xb0,0x0, + 0x0,0x0,0x0,0x3f,0x9b,0x9b,0x20,0x0,0x0,0x0,0x0,0x40,0x6f,0xea,0xb0,0x0, + 0x0,0x0,0x0,0x41,0x84,0xb7,0xa0,0x0,0x0,0x0,0x0,0x42,0x4f,0xcc,0xb0,0x0, + 0x0,0x0,0x0,0x43,0x64,0x99,0xa0,0x0,0x0,0x0,0x0,0x44,0x2f,0xae,0xb0,0x0, + 0x0,0x0,0x0,0x45,0x44,0x7b,0xa0,0x0,0x0,0x0,0x0,0x45,0xf3,0xe1,0x30,0x0, + 0x0,0x0,0x0,0x47,0x2d,0x98,0x20,0x0,0x0,0x0,0x0,0x47,0xd3,0xc3,0x30,0x0, + 0x0,0x0,0x0,0x49,0xd,0x7a,0x20,0x0,0x0,0x0,0x0,0x49,0xb3,0xa5,0x30,0x0, + 0x0,0x0,0x0,0x4a,0xed,0x5c,0x20,0x0,0x0,0x0,0x0,0x4b,0x9c,0xc1,0xb0,0x0, + 0x0,0x0,0x0,0x4c,0xd6,0x78,0xa0,0x0,0x0,0x0,0x0,0x4d,0x7c,0xa3,0xb0,0x0, + 0x0,0x0,0x0,0x4e,0xb6,0x5a,0xa0,0x0,0x0,0x0,0x0,0x4f,0x5c,0x85,0xb0,0x0, + 0x0,0x0,0x0,0x50,0x96,0x3c,0xa0,0x0,0x0,0x0,0x0,0x51,0x3c,0x67,0xb0,0x0, + 0x0,0x0,0x0,0x52,0x76,0x1e,0xa0,0x0,0x0,0x0,0x0,0x53,0x1c,0x49,0xb0,0x0, + 0x0,0x0,0x0,0x54,0x56,0x0,0xa0,0x0,0x0,0x0,0x0,0x54,0xfc,0x2b,0xb0,0x0, + 0x0,0x0,0x0,0x56,0x35,0xe2,0xa0,0x0,0x0,0x0,0x0,0x56,0xe5,0x48,0x30,0x0, + 0x0,0x0,0x0,0x58,0x1e,0xff,0x20,0x0,0x0,0x0,0x0,0x58,0xc5,0x2a,0x30,0x0, + 0x0,0x0,0x0,0x59,0xfe,0xe1,0x20,0x0,0x0,0x0,0x0,0x5a,0xa5,0xc,0x30,0x0, + 0x0,0x0,0x0,0x5b,0xde,0xc3,0x20,0x0,0x0,0x0,0x0,0x5c,0x84,0xee,0x30,0x0, + 0x0,0x0,0x0,0x5d,0xbe,0xa5,0x20,0x0,0x0,0x0,0x0,0x5e,0x64,0xd0,0x30,0x0, + 0x0,0x0,0x0,0x5f,0x9e,0x87,0x20,0x0,0x0,0x0,0x0,0x60,0x4d,0xec,0xb0,0x0, + 0x0,0x0,0x0,0x61,0x87,0xa3,0xa0,0x0,0x0,0x0,0x0,0x62,0x2d,0xce,0xb0,0x0, + 0x0,0x0,0x0,0x63,0x67,0x85,0xa0,0x0,0x0,0x0,0x0,0x64,0xd,0xb0,0xb0,0x0, + 0x0,0x0,0x0,0x65,0x47,0x67,0xa0,0x0,0x0,0x0,0x0,0x65,0xed,0x92,0xb0,0x0, + 0x0,0x0,0x0,0x67,0x27,0x49,0xa0,0x0,0x0,0x0,0x0,0x67,0xcd,0x74,0xb0,0x0, + 0x0,0x0,0x0,0x69,0x7,0x2b,0xa0,0x0,0x0,0x0,0x0,0x69,0xad,0x56,0xb0,0x0, + 0x0,0x0,0x0,0x6a,0xe7,0xd,0xa0,0x0,0x0,0x0,0x0,0x6b,0x96,0x73,0x30,0x0, + 0x0,0x0,0x0,0x6c,0xd0,0x2a,0x20,0x0,0x0,0x0,0x0,0x6d,0x76,0x55,0x30,0x0, + 0x0,0x0,0x0,0x6e,0xb0,0xc,0x20,0x0,0x0,0x0,0x0,0x6f,0x56,0x37,0x30,0x0, + 0x0,0x0,0x0,0x70,0x8f,0xee,0x20,0x0,0x0,0x0,0x0,0x71,0x36,0x19,0x30,0x0, + 0x0,0x0,0x0,0x72,0x6f,0xd0,0x20,0x0,0x0,0x0,0x0,0x73,0x15,0xfb,0x30,0x0, + 0x0,0x0,0x0,0x74,0x4f,0xb2,0x20,0x0,0x0,0x0,0x0,0x74,0xff,0x17,0xb0,0x0, + 0x0,0x0,0x0,0x76,0x38,0xce,0xa0,0x0,0x0,0x0,0x0,0x76,0xde,0xf9,0xb0,0x0, + 0x0,0x0,0x0,0x78,0x18,0xb0,0xa0,0x0,0x0,0x0,0x0,0x78,0xbe,0xdb,0xb0,0x0, + 0x0,0x0,0x0,0x79,0xf8,0x92,0xa0,0x0,0x0,0x0,0x0,0x7a,0x9e,0xbd,0xb0,0x0, + 0x0,0x0,0x0,0x7b,0xd8,0x74,0xa0,0x0,0x0,0x0,0x0,0x7c,0x7e,0x9f,0xb0,0x0, + 0x0,0x0,0x0,0x7d,0xb8,0x56,0xa0,0x0,0x0,0x0,0x0,0x7e,0x5e,0x81,0xb0,0x0, + 0x0,0x0,0x0,0x7f,0x98,0x38,0xa0,0x0,0x1,0x2,0x3,0x4,0x2,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x7,0x9,0x8,0x9,0x8, + 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, + 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, + 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, + 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, + 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, + 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, + 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x0,0x0,0xc4,0xf8,0x0,0x0,0xff, + 0xff,0x73,0x78,0x0,0x0,0xff,0xff,0x73,0x60,0x0,0x4,0xff,0xff,0x81,0x70,0x1, + 0x8,0xff,0xff,0x81,0x70,0x1,0xc,0xff,0xff,0x73,0x60,0x0,0x10,0xff,0xff,0x81, + 0x70,0x1,0x15,0xff,0xff,0x81,0x70,0x0,0x1a,0xff,0xff,0x8f,0x80,0x1,0x1e,0xff, + 0xff,0x81,0x70,0x0,0x23,0x4c,0x4d,0x54,0x0,0x41,0x53,0x54,0x0,0x41,0x57,0x54, + 0x0,0x41,0x50,0x54,0x0,0x41,0x48,0x53,0x54,0x0,0x41,0x48,0x44,0x54,0x0,0x59, + 0x53,0x54,0x0,0x41,0x4b,0x44,0x54,0x0,0x41,0x4b,0x53,0x54,0x0,0x0,0x0,0x0, + 0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0, + 0x0,0xa,0x41,0x4b,0x53,0x54,0x39,0x41,0x4b,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32, + 0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/US/Samoa + 0x0,0x0,0x0,0xc4, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x91, + 0x5,0xfb,0x8,0x1,0x2,0x0,0x0,0xb1,0x78,0x0,0x0,0xff,0xff,0x5f,0xf8,0x0, + 0x0,0xff,0xff,0x65,0x50,0x0,0x4,0x4c,0x4d,0x54,0x0,0x53,0x53,0x54,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0, + 0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0, + 0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x6e,0x3d,0xc8, + 0x8,0xff,0xff,0xff,0xff,0x91,0x5,0xfb,0x8,0x0,0x1,0x2,0x0,0x0,0xb1,0x78, + 0x0,0x0,0xff,0xff,0x5f,0xf8,0x0,0x0,0xff,0xff,0x65,0x50,0x0,0x4,0x4c,0x4d, + 0x54,0x0,0x53,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x53,0x53,0x54, + 0x31,0x31,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/US/Indiana-Starke + 0x0,0x0,0x9,0x85, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x79,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0xca, - 0x2,0x35,0xe0,0xcc,0xe7,0x4b,0x10,0xcd,0xa9,0x17,0x90,0xce,0xa2,0x43,0x10,0xcf, - 0x92,0x34,0x10,0xd0,0x82,0x25,0x10,0xd0,0xfa,0x1,0x70,0xd1,0xa1,0x8c,0x10,0xd2, - 0x4e,0x40,0x90,0x18,0x45,0x5f,0x70,0x18,0xe3,0xaf,0x90,0x19,0xd3,0xa0,0x90,0x1a, - 0xc3,0x91,0x90,0x1b,0xbc,0xbd,0x10,0x1c,0xac,0xae,0x10,0x1d,0x9c,0x9f,0x10,0x1e, - 0x8c,0x90,0x10,0x1f,0x7c,0x81,0x10,0x20,0x6c,0x72,0x10,0x21,0x5c,0x63,0x10,0x22, - 0x4c,0x54,0x10,0x23,0x3c,0x45,0x10,0x24,0x2c,0x36,0x10,0x25,0x1c,0x27,0x10,0x26, - 0xc,0x18,0x10,0x27,0x5,0x43,0x90,0x27,0xf5,0x34,0x90,0x28,0xe5,0x25,0x90,0x29, - 0xd5,0x16,0x90,0x2a,0xc5,0x7,0x90,0x2b,0xb4,0xf8,0x90,0x2c,0xa4,0xe9,0x90,0x2d, - 0x94,0xda,0x90,0x2e,0x84,0xcb,0x90,0x2f,0x74,0xbc,0x90,0x30,0x64,0xad,0x90,0x31, - 0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34,0x52,0x96,0x10,0x35, - 0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x38, - 0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b,0xdb,0x58,0x90,0x3c, - 0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f,0x9b,0x1c,0x90,0x40, - 0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43,0x64,0x1b,0x10,0x44, - 0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47, - 0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b, - 0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e,0xac,0xa1,0x90,0x4f, - 0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53, - 0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56,0x2c,0x29,0x90,0x56, - 0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59,0xf5,0x28,0x10,0x5a, - 0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d,0xb4,0xec,0x10,0x5e, - 0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61,0x7d,0xea,0x90,0x62, - 0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65,0x3d,0xae,0x90,0x66, - 0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68,0xfd,0x72,0x90,0x69, - 0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c,0xc6,0x71,0x10,0x6d, - 0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70,0x86,0x35,0x10,0x71, - 0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74,0x45,0xf9,0x10,0x75, - 0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78, - 0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c, - 0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x1, - 0x4,0x2,0x3,0x2,0x3,0x2,0x1,0x3,0x2,0x1,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x0,0x0,0x13,0x38,0x0,0x0,0x0,0x0, - 0xe,0x10,0x0,0x4,0x0,0x0,0xe,0x10,0x0,0x4,0x0,0x0,0x1c,0x20,0x1,0x8, - 0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0xe,0x10, - 0x0,0x4,0x4c,0x4d,0x54,0x0,0x43,0x45,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x0, - 0x0,0x1,0x1,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x54,0x5a,0x69, + 0x0,0x0,0x9a,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x18,0x80,0x0,0x0,0x0,0x9e, + 0xa6,0x2c,0x80,0x9f,0xba,0xf9,0x70,0xa0,0x86,0xe,0x80,0xa1,0x9a,0xdb,0x70,0xcb, + 0x88,0xfe,0x80,0xd2,0x23,0xf4,0x70,0xd2,0x61,0x9,0xf0,0xd5,0x55,0xd5,0x0,0xd6, + 0x20,0xcd,0xf0,0xd7,0x35,0xb7,0x0,0xd8,0x0,0xaf,0xf0,0xd9,0x15,0x99,0x0,0xd9, + 0xe0,0x91,0xf0,0xda,0xfe,0xb5,0x80,0xdb,0xc0,0x73,0xf0,0xdc,0xde,0x97,0x80,0xdd, + 0xa9,0x90,0x70,0xde,0xbe,0x79,0x80,0xdf,0x89,0x72,0x70,0xe0,0x9e,0x5b,0x80,0xe1, + 0x69,0x54,0x70,0xe2,0x7e,0x3d,0x80,0xe3,0x49,0x36,0x70,0xe4,0x5e,0x1f,0x80,0xe5, + 0x57,0x3c,0xf0,0xe6,0x47,0x3c,0x0,0xe7,0x37,0x1e,0xf0,0xe8,0x27,0x1e,0x0,0xe8, + 0xf2,0x16,0xf0,0xea,0x7,0x0,0x0,0xea,0xd1,0xf8,0xf0,0xeb,0xe6,0xe2,0x0,0xec, + 0xd6,0xc4,0xf0,0xed,0xc6,0xc4,0x0,0xee,0xbf,0xe1,0x70,0xef,0xaf,0xe0,0x80,0xf0, + 0x9f,0xc3,0x70,0xf1,0x8f,0xc2,0x80,0xf4,0x5f,0x87,0x70,0xfa,0xf8,0x67,0x0,0xfb, + 0xe8,0x49,0xf0,0xfc,0xd8,0x49,0x0,0xfd,0xc8,0x2b,0xf0,0xfe,0xb8,0x2b,0x0,0xff, + 0xa8,0xd,0xf0,0x0,0x98,0xd,0x0,0x1,0x87,0xef,0xf0,0x2,0x77,0xef,0x0,0x3, + 0x71,0xc,0x70,0x4,0x61,0xb,0x80,0x5,0x50,0xee,0x70,0x6,0x40,0xed,0x80,0x7, + 0x30,0xd0,0x70,0x7,0x8d,0x27,0x80,0x9,0x10,0xb2,0x70,0x9,0xad,0xa3,0x0,0xa, + 0xf0,0x94,0x70,0xb,0xe0,0x93,0x80,0xc,0xd9,0xb0,0xf0,0xd,0xc0,0x75,0x80,0xe, + 0xb9,0x92,0xf0,0xf,0xa9,0x92,0x0,0x10,0x99,0x74,0xf0,0x11,0x89,0x74,0x0,0x12, + 0x79,0x56,0xf0,0x13,0x69,0x56,0x0,0x14,0x59,0x38,0xf0,0x15,0x49,0x38,0x0,0x16, + 0x39,0x1a,0xf0,0x17,0x29,0x1a,0x0,0x18,0x22,0x37,0x70,0x19,0x8,0xfc,0x0,0x1a, + 0x2,0x19,0x70,0x1a,0xf2,0x18,0x80,0x1b,0xe1,0xfb,0x70,0x1c,0xd1,0xfa,0x80,0x1d, + 0xc1,0xdd,0x70,0x1e,0xb1,0xdc,0x80,0x1f,0xa1,0xbf,0x70,0x20,0x76,0xf,0x0,0x21, + 0x81,0xa1,0x70,0x22,0x55,0xf1,0x0,0x23,0x6a,0xbd,0xf0,0x24,0x35,0xd3,0x0,0x25, + 0x4a,0x9f,0xf0,0x26,0x15,0xb5,0x0,0x27,0x2a,0x81,0xf0,0x27,0xfe,0xd1,0x80,0x29, + 0xa,0x63,0xf0,0x44,0x2f,0x76,0x70,0x45,0x44,0x51,0x70,0x45,0xf3,0xb7,0x0,0x47, + 0x2d,0x6d,0xf0,0x47,0xd3,0x99,0x0,0x49,0xd,0x4f,0xf0,0x49,0xb3,0x7b,0x0,0x4a, + 0xed,0x31,0xf0,0x4b,0x9c,0x97,0x80,0x4c,0xd6,0x4e,0x70,0x4d,0x7c,0x79,0x80,0x4e, + 0xb6,0x30,0x70,0x4f,0x5c,0x5b,0x80,0x50,0x96,0x12,0x70,0x51,0x3c,0x3d,0x80,0x52, + 0x75,0xf4,0x70,0x53,0x1c,0x1f,0x80,0x54,0x55,0xd6,0x70,0x54,0xfc,0x1,0x80,0x56, + 0x35,0xb8,0x70,0x56,0xe5,0x1e,0x0,0x58,0x1e,0xd4,0xf0,0x58,0xc5,0x0,0x0,0x59, + 0xfe,0xb6,0xf0,0x5a,0xa4,0xe2,0x0,0x5b,0xde,0x98,0xf0,0x5c,0x84,0xc4,0x0,0x5d, + 0xbe,0x7a,0xf0,0x5e,0x64,0xa6,0x0,0x5f,0x9e,0x5c,0xf0,0x60,0x4d,0xc2,0x80,0x61, + 0x87,0x79,0x70,0x62,0x2d,0xa4,0x80,0x63,0x67,0x5b,0x70,0x64,0xd,0x86,0x80,0x65, + 0x47,0x3d,0x70,0x65,0xed,0x68,0x80,0x67,0x27,0x1f,0x70,0x67,0xcd,0x4a,0x80,0x69, + 0x7,0x1,0x70,0x69,0xad,0x2c,0x80,0x6a,0xe6,0xe3,0x70,0x6b,0x96,0x49,0x0,0x6c, + 0xcf,0xff,0xf0,0x6d,0x76,0x2b,0x0,0x6e,0xaf,0xe1,0xf0,0x6f,0x56,0xd,0x0,0x70, + 0x8f,0xc3,0xf0,0x71,0x35,0xef,0x0,0x72,0x6f,0xa5,0xf0,0x73,0x15,0xd1,0x0,0x74, + 0x4f,0x87,0xf0,0x74,0xfe,0xed,0x80,0x76,0x38,0xa4,0x70,0x76,0xde,0xcf,0x80,0x78, + 0x18,0x86,0x70,0x78,0xbe,0xb1,0x80,0x79,0xf8,0x68,0x70,0x7a,0x9e,0x93,0x80,0x7b, + 0xd8,0x4a,0x70,0x7c,0x7e,0x75,0x80,0x7d,0xb8,0x2c,0x70,0x7e,0x5e,0x57,0x80,0x7f, + 0x98,0xe,0x70,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x5,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x5,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0xae, + 0xca,0x0,0x0,0xff,0xff,0xb9,0xb0,0x1,0x4,0xff,0xff,0xab,0xa0,0x0,0x8,0xff, + 0xff,0xb9,0xb0,0x1,0xc,0xff,0xff,0xb9,0xb0,0x1,0x10,0xff,0xff,0xb9,0xb0,0x0, + 0x14,0xff,0xff,0xab,0xa0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x43,0x44,0x54,0x0,0x43, + 0x53,0x54,0x0,0x43,0x57,0x54,0x0,0x43,0x50,0x54,0x0,0x45,0x53,0x54,0x0,0x0, + 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x54,0x5a,0x69, 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x7a,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0xd,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0x5e,0x3c,0xf0,0x48,0xff,0xff,0xff,0xff,0xca,0x2,0x35, - 0xe0,0xff,0xff,0xff,0xff,0xcc,0xe7,0x4b,0x10,0xff,0xff,0xff,0xff,0xcd,0xa9,0x17, - 0x90,0xff,0xff,0xff,0xff,0xce,0xa2,0x43,0x10,0xff,0xff,0xff,0xff,0xcf,0x92,0x34, - 0x10,0xff,0xff,0xff,0xff,0xd0,0x82,0x25,0x10,0xff,0xff,0xff,0xff,0xd0,0xfa,0x1, - 0x70,0xff,0xff,0xff,0xff,0xd1,0xa1,0x8c,0x10,0xff,0xff,0xff,0xff,0xd2,0x4e,0x40, - 0x90,0x0,0x0,0x0,0x0,0x18,0x45,0x5f,0x70,0x0,0x0,0x0,0x0,0x18,0xe3,0xaf, - 0x90,0x0,0x0,0x0,0x0,0x19,0xd3,0xa0,0x90,0x0,0x0,0x0,0x0,0x1a,0xc3,0x91, - 0x90,0x0,0x0,0x0,0x0,0x1b,0xbc,0xbd,0x10,0x0,0x0,0x0,0x0,0x1c,0xac,0xae, - 0x10,0x0,0x0,0x0,0x0,0x1d,0x9c,0x9f,0x10,0x0,0x0,0x0,0x0,0x1e,0x8c,0x90, - 0x10,0x0,0x0,0x0,0x0,0x1f,0x7c,0x81,0x10,0x0,0x0,0x0,0x0,0x20,0x6c,0x72, - 0x10,0x0,0x0,0x0,0x0,0x21,0x5c,0x63,0x10,0x0,0x0,0x0,0x0,0x22,0x4c,0x54, - 0x10,0x0,0x0,0x0,0x0,0x23,0x3c,0x45,0x10,0x0,0x0,0x0,0x0,0x24,0x2c,0x36, - 0x10,0x0,0x0,0x0,0x0,0x25,0x1c,0x27,0x10,0x0,0x0,0x0,0x0,0x26,0xc,0x18, - 0x10,0x0,0x0,0x0,0x0,0x27,0x5,0x43,0x90,0x0,0x0,0x0,0x0,0x27,0xf5,0x34, - 0x90,0x0,0x0,0x0,0x0,0x28,0xe5,0x25,0x90,0x0,0x0,0x0,0x0,0x29,0xd5,0x16, - 0x90,0x0,0x0,0x0,0x0,0x2a,0xc5,0x7,0x90,0x0,0x0,0x0,0x0,0x2b,0xb4,0xf8, - 0x90,0x0,0x0,0x0,0x0,0x2c,0xa4,0xe9,0x90,0x0,0x0,0x0,0x0,0x2d,0x94,0xda, - 0x90,0x0,0x0,0x0,0x0,0x2e,0x84,0xcb,0x90,0x0,0x0,0x0,0x0,0x2f,0x74,0xbc, - 0x90,0x0,0x0,0x0,0x0,0x30,0x64,0xad,0x90,0x0,0x0,0x0,0x0,0x31,0x5d,0xd9, - 0x10,0x0,0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d,0xbb, - 0x10,0x0,0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d,0x9d, - 0x10,0x0,0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd,0x7f, - 0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd,0x61, - 0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd,0x43, - 0x10,0x0,0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f, - 0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86,0x41, - 0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66,0x23, - 0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46,0x5, - 0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25,0xe7, - 0x90,0x0,0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5,0xc9, - 0x90,0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee,0xe6, - 0x10,0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce,0xc8, - 0x10,0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae,0xaa, - 0x10,0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c, - 0x10,0x0,0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e, - 0x10,0x0,0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57,0x8a, - 0x90,0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37,0x6c, - 0x90,0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17,0x4e, - 0x90,0x0,0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7,0x30, - 0x90,0x0,0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7,0x12, - 0x90,0x0,0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4, - 0x90,0x0,0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0,0x11, - 0x10,0x0,0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3, - 0x10,0x0,0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f,0xd5, - 0x10,0x0,0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f,0xb7, - 0x10,0x0,0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f,0x99, - 0x10,0x0,0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8,0xb5, - 0x90,0x0,0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8,0x97, - 0x90,0x0,0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8,0x79, - 0x90,0x0,0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b, - 0x90,0x0,0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88,0x3d, - 0x90,0x0,0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68,0x1f, - 0x90,0x0,0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51,0x3c, - 0x10,0x0,0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31,0x1e, - 0x10,0x0,0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11,0x0, - 0x10,0x0,0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0,0xe2, - 0x10,0x0,0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0,0xc4, - 0x10,0x0,0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6, - 0x10,0x0,0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99,0xc2, - 0x90,0x0,0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79,0xa4, - 0x90,0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x1,0x4,0x2,0x3,0x2,0x3, - 0x2,0x1,0x3,0x2,0x1,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x0,0x0,0x13,0x38,0x0,0x0,0x0,0x0,0xe,0x10,0x0,0x4,0x0, - 0x0,0xe,0x10,0x0,0x4,0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0x1c,0x20,0x1, - 0x8,0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0xe,0x10,0x0,0x4,0x4c,0x4d,0x54, - 0x0,0x43,0x45,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x0,0x0,0x1,0x1,0x0,0x1, - 0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0xa,0x43,0x45,0x54,0x2d,0x31,0x43,0x45, - 0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e, - 0x30,0x2f,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Brussels - 0x0,0x0,0xb,0x9a, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xba,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x16,0x80,0x0,0x0,0x0,0x98, - 0x44,0x49,0x80,0x9b,0xc,0x25,0x70,0x9b,0xd5,0xda,0xf0,0x9c,0xd9,0xae,0x90,0x9d, - 0xa4,0xb5,0x90,0x9e,0xb9,0x90,0x90,0x9f,0x84,0x97,0x90,0x9f,0xce,0xf8,0x30,0xa0, - 0x60,0xa5,0xf0,0xa1,0x7e,0xbb,0x70,0xa2,0x2e,0x12,0xf0,0xa3,0x7a,0x4c,0xf0,0xa4, - 0x35,0x81,0xf0,0xa5,0x5e,0x23,0x70,0xa6,0x25,0x35,0xf0,0xa7,0x27,0x9b,0xf0,0xa8, - 0x2a,0x1,0xf0,0xa9,0x7,0x7d,0xf0,0xa9,0xee,0x34,0x70,0xaa,0xe7,0x5f,0xf0,0xab, - 0xd7,0x50,0xf0,0xac,0xc7,0x41,0xf0,0xad,0xc9,0xa7,0xf0,0xae,0xa7,0x23,0xf0,0xaf, - 0xa0,0x4f,0x70,0xb0,0x87,0x5,0xf0,0xb1,0x89,0x6b,0xf0,0xb2,0x70,0x4c,0xa0,0xb3, - 0x72,0xb2,0xa0,0xb4,0x50,0x2e,0xa0,0xb5,0x49,0x5a,0x20,0xb6,0x30,0x10,0xa0,0xb7, - 0x32,0x76,0xa0,0xb8,0xf,0xf2,0xa0,0xb8,0xff,0xe3,0xa0,0xb9,0xef,0xd4,0xa0,0xba, - 0xd6,0x8b,0x20,0xbb,0xd8,0xf1,0x20,0xbc,0xc8,0xe2,0x20,0xbd,0xb8,0xd3,0x20,0xbe, - 0x9f,0x89,0xa0,0xbf,0x98,0xb5,0x20,0xc0,0x9b,0x1b,0x20,0xc1,0x78,0x97,0x20,0xc2, - 0x68,0x88,0x20,0xc3,0x58,0x79,0x20,0xc4,0x3f,0x2f,0xa0,0xc5,0x38,0x5b,0x20,0xc6, - 0x3a,0xc1,0x20,0xc7,0x58,0xd6,0xa0,0xc7,0xda,0x9,0xa0,0xc8,0x4a,0x19,0x20,0xcc, - 0xe7,0x4b,0x10,0xcd,0xa9,0x17,0x90,0xce,0xa2,0x43,0x10,0xcf,0x92,0x34,0x10,0xd0, - 0x5b,0xbf,0x60,0xd0,0x6e,0x5e,0x90,0xd1,0x72,0x16,0x10,0xd2,0x4e,0x40,0x90,0xd3, - 0x91,0x40,0x10,0xd4,0x4b,0x23,0x90,0xd,0x2a,0xfd,0x70,0xd,0xa4,0x63,0x90,0xe, - 0x8b,0x1a,0x10,0xf,0x84,0x45,0x90,0x10,0x74,0x36,0x90,0x11,0x64,0x27,0x90,0x12, - 0x54,0x18,0x90,0x13,0x4d,0x44,0x10,0x14,0x33,0xfa,0x90,0x15,0x23,0xeb,0x90,0x16, - 0x13,0xdc,0x90,0x17,0x3,0xcd,0x90,0x17,0xf3,0xbe,0x90,0x18,0xe3,0xaf,0x90,0x19, - 0xd3,0xa0,0x90,0x1a,0xc3,0x91,0x90,0x1b,0xbc,0xbd,0x10,0x1c,0xac,0xae,0x10,0x1d, - 0x9c,0x9f,0x10,0x1e,0x8c,0x90,0x10,0x1f,0x7c,0x81,0x10,0x20,0x6c,0x72,0x10,0x21, - 0x5c,0x63,0x10,0x22,0x4c,0x54,0x10,0x23,0x3c,0x45,0x10,0x24,0x2c,0x36,0x10,0x25, - 0x1c,0x27,0x10,0x26,0xc,0x18,0x10,0x27,0x5,0x43,0x90,0x27,0xf5,0x34,0x90,0x28, - 0xe5,0x25,0x90,0x29,0xd5,0x16,0x90,0x2a,0xc5,0x7,0x90,0x2b,0xb4,0xf8,0x90,0x2c, - 0xa4,0xe9,0x90,0x2d,0x94,0xda,0x90,0x2e,0x84,0xcb,0x90,0x2f,0x74,0xbc,0x90,0x30, - 0x64,0xad,0x90,0x31,0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34, - 0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38, - 0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b, - 0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f, - 0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43, - 0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47, - 0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a, - 0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e, - 0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52, - 0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56, - 0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59, - 0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d, - 0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61, - 0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65, - 0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68, - 0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c, - 0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70, - 0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74, - 0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78, - 0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b, - 0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f, - 0x8e,0x7f,0x90,0x1,0x2,0x5,0x2,0x3,0x4,0x3,0x4,0x8,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x3,0x4,0x3,0x4,0x3,0x5,0x4,0x3,0x4, - 0x3,0x4,0x2,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9, - 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9, - 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9, - 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9, - 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9, - 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9, - 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9, - 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x0,0x0,0x4, - 0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0xe,0x10,0x0,0x8,0x0, - 0x0,0x1c,0x20,0x1,0xc,0x0,0x0,0xe,0x10,0x0,0x8,0x0,0x0,0x1c,0x20,0x1, - 0xc,0x0,0x0,0xe,0x10,0x1,0x11,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0, - 0x0,0x0,0x4,0x0,0x0,0x1c,0x20,0x1,0xc,0x0,0x0,0xe,0x10,0x0,0x8,0x42, - 0x4d,0x54,0x0,0x57,0x45,0x54,0x0,0x43,0x45,0x54,0x0,0x43,0x45,0x53,0x54,0x0, - 0x57,0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x1,0x1,0x1,0x1,0x1, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x54,0x5a,0x69,0x66,0x32, + 0x9b,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x18,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0x5e,0x3,0xfe,0xa0,0xff,0xff,0xff,0xff,0x9e,0xa6,0x2c, + 0x80,0xff,0xff,0xff,0xff,0x9f,0xba,0xf9,0x70,0xff,0xff,0xff,0xff,0xa0,0x86,0xe, + 0x80,0xff,0xff,0xff,0xff,0xa1,0x9a,0xdb,0x70,0xff,0xff,0xff,0xff,0xcb,0x88,0xfe, + 0x80,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x61,0x9, + 0xf0,0xff,0xff,0xff,0xff,0xd5,0x55,0xd5,0x0,0xff,0xff,0xff,0xff,0xd6,0x20,0xcd, + 0xf0,0xff,0xff,0xff,0xff,0xd7,0x35,0xb7,0x0,0xff,0xff,0xff,0xff,0xd8,0x0,0xaf, + 0xf0,0xff,0xff,0xff,0xff,0xd9,0x15,0x99,0x0,0xff,0xff,0xff,0xff,0xd9,0xe0,0x91, + 0xf0,0xff,0xff,0xff,0xff,0xda,0xfe,0xb5,0x80,0xff,0xff,0xff,0xff,0xdb,0xc0,0x73, + 0xf0,0xff,0xff,0xff,0xff,0xdc,0xde,0x97,0x80,0xff,0xff,0xff,0xff,0xdd,0xa9,0x90, + 0x70,0xff,0xff,0xff,0xff,0xde,0xbe,0x79,0x80,0xff,0xff,0xff,0xff,0xdf,0x89,0x72, + 0x70,0xff,0xff,0xff,0xff,0xe0,0x9e,0x5b,0x80,0xff,0xff,0xff,0xff,0xe1,0x69,0x54, + 0x70,0xff,0xff,0xff,0xff,0xe2,0x7e,0x3d,0x80,0xff,0xff,0xff,0xff,0xe3,0x49,0x36, + 0x70,0xff,0xff,0xff,0xff,0xe4,0x5e,0x1f,0x80,0xff,0xff,0xff,0xff,0xe5,0x57,0x3c, + 0xf0,0xff,0xff,0xff,0xff,0xe6,0x47,0x3c,0x0,0xff,0xff,0xff,0xff,0xe7,0x37,0x1e, + 0xf0,0xff,0xff,0xff,0xff,0xe8,0x27,0x1e,0x0,0xff,0xff,0xff,0xff,0xe8,0xf2,0x16, + 0xf0,0xff,0xff,0xff,0xff,0xea,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0xea,0xd1,0xf8, + 0xf0,0xff,0xff,0xff,0xff,0xeb,0xe6,0xe2,0x0,0xff,0xff,0xff,0xff,0xec,0xd6,0xc4, + 0xf0,0xff,0xff,0xff,0xff,0xed,0xc6,0xc4,0x0,0xff,0xff,0xff,0xff,0xee,0xbf,0xe1, + 0x70,0xff,0xff,0xff,0xff,0xef,0xaf,0xe0,0x80,0xff,0xff,0xff,0xff,0xf0,0x9f,0xc3, + 0x70,0xff,0xff,0xff,0xff,0xf1,0x8f,0xc2,0x80,0xff,0xff,0xff,0xff,0xf4,0x5f,0x87, + 0x70,0xff,0xff,0xff,0xff,0xfa,0xf8,0x67,0x0,0xff,0xff,0xff,0xff,0xfb,0xe8,0x49, + 0xf0,0xff,0xff,0xff,0xff,0xfc,0xd8,0x49,0x0,0xff,0xff,0xff,0xff,0xfd,0xc8,0x2b, + 0xf0,0xff,0xff,0xff,0xff,0xfe,0xb8,0x2b,0x0,0xff,0xff,0xff,0xff,0xff,0xa8,0xd, + 0xf0,0x0,0x0,0x0,0x0,0x0,0x98,0xd,0x0,0x0,0x0,0x0,0x0,0x1,0x87,0xef, + 0xf0,0x0,0x0,0x0,0x0,0x2,0x77,0xef,0x0,0x0,0x0,0x0,0x0,0x3,0x71,0xc, + 0x70,0x0,0x0,0x0,0x0,0x4,0x61,0xb,0x80,0x0,0x0,0x0,0x0,0x5,0x50,0xee, + 0x70,0x0,0x0,0x0,0x0,0x6,0x40,0xed,0x80,0x0,0x0,0x0,0x0,0x7,0x30,0xd0, + 0x70,0x0,0x0,0x0,0x0,0x7,0x8d,0x27,0x80,0x0,0x0,0x0,0x0,0x9,0x10,0xb2, + 0x70,0x0,0x0,0x0,0x0,0x9,0xad,0xa3,0x0,0x0,0x0,0x0,0x0,0xa,0xf0,0x94, + 0x70,0x0,0x0,0x0,0x0,0xb,0xe0,0x93,0x80,0x0,0x0,0x0,0x0,0xc,0xd9,0xb0, + 0xf0,0x0,0x0,0x0,0x0,0xd,0xc0,0x75,0x80,0x0,0x0,0x0,0x0,0xe,0xb9,0x92, + 0xf0,0x0,0x0,0x0,0x0,0xf,0xa9,0x92,0x0,0x0,0x0,0x0,0x0,0x10,0x99,0x74, + 0xf0,0x0,0x0,0x0,0x0,0x11,0x89,0x74,0x0,0x0,0x0,0x0,0x0,0x12,0x79,0x56, + 0xf0,0x0,0x0,0x0,0x0,0x13,0x69,0x56,0x0,0x0,0x0,0x0,0x0,0x14,0x59,0x38, + 0xf0,0x0,0x0,0x0,0x0,0x15,0x49,0x38,0x0,0x0,0x0,0x0,0x0,0x16,0x39,0x1a, + 0xf0,0x0,0x0,0x0,0x0,0x17,0x29,0x1a,0x0,0x0,0x0,0x0,0x0,0x18,0x22,0x37, + 0x70,0x0,0x0,0x0,0x0,0x19,0x8,0xfc,0x0,0x0,0x0,0x0,0x0,0x1a,0x2,0x19, + 0x70,0x0,0x0,0x0,0x0,0x1a,0xf2,0x18,0x80,0x0,0x0,0x0,0x0,0x1b,0xe1,0xfb, + 0x70,0x0,0x0,0x0,0x0,0x1c,0xd1,0xfa,0x80,0x0,0x0,0x0,0x0,0x1d,0xc1,0xdd, + 0x70,0x0,0x0,0x0,0x0,0x1e,0xb1,0xdc,0x80,0x0,0x0,0x0,0x0,0x1f,0xa1,0xbf, + 0x70,0x0,0x0,0x0,0x0,0x20,0x76,0xf,0x0,0x0,0x0,0x0,0x0,0x21,0x81,0xa1, + 0x70,0x0,0x0,0x0,0x0,0x22,0x55,0xf1,0x0,0x0,0x0,0x0,0x0,0x23,0x6a,0xbd, + 0xf0,0x0,0x0,0x0,0x0,0x24,0x35,0xd3,0x0,0x0,0x0,0x0,0x0,0x25,0x4a,0x9f, + 0xf0,0x0,0x0,0x0,0x0,0x26,0x15,0xb5,0x0,0x0,0x0,0x0,0x0,0x27,0x2a,0x81, + 0xf0,0x0,0x0,0x0,0x0,0x27,0xfe,0xd1,0x80,0x0,0x0,0x0,0x0,0x29,0xa,0x63, + 0xf0,0x0,0x0,0x0,0x0,0x44,0x2f,0x76,0x70,0x0,0x0,0x0,0x0,0x45,0x44,0x51, + 0x70,0x0,0x0,0x0,0x0,0x45,0xf3,0xb7,0x0,0x0,0x0,0x0,0x0,0x47,0x2d,0x6d, + 0xf0,0x0,0x0,0x0,0x0,0x47,0xd3,0x99,0x0,0x0,0x0,0x0,0x0,0x49,0xd,0x4f, + 0xf0,0x0,0x0,0x0,0x0,0x49,0xb3,0x7b,0x0,0x0,0x0,0x0,0x0,0x4a,0xed,0x31, + 0xf0,0x0,0x0,0x0,0x0,0x4b,0x9c,0x97,0x80,0x0,0x0,0x0,0x0,0x4c,0xd6,0x4e, + 0x70,0x0,0x0,0x0,0x0,0x4d,0x7c,0x79,0x80,0x0,0x0,0x0,0x0,0x4e,0xb6,0x30, + 0x70,0x0,0x0,0x0,0x0,0x4f,0x5c,0x5b,0x80,0x0,0x0,0x0,0x0,0x50,0x96,0x12, + 0x70,0x0,0x0,0x0,0x0,0x51,0x3c,0x3d,0x80,0x0,0x0,0x0,0x0,0x52,0x75,0xf4, + 0x70,0x0,0x0,0x0,0x0,0x53,0x1c,0x1f,0x80,0x0,0x0,0x0,0x0,0x54,0x55,0xd6, + 0x70,0x0,0x0,0x0,0x0,0x54,0xfc,0x1,0x80,0x0,0x0,0x0,0x0,0x56,0x35,0xb8, + 0x70,0x0,0x0,0x0,0x0,0x56,0xe5,0x1e,0x0,0x0,0x0,0x0,0x0,0x58,0x1e,0xd4, + 0xf0,0x0,0x0,0x0,0x0,0x58,0xc5,0x0,0x0,0x0,0x0,0x0,0x0,0x59,0xfe,0xb6, + 0xf0,0x0,0x0,0x0,0x0,0x5a,0xa4,0xe2,0x0,0x0,0x0,0x0,0x0,0x5b,0xde,0x98, + 0xf0,0x0,0x0,0x0,0x0,0x5c,0x84,0xc4,0x0,0x0,0x0,0x0,0x0,0x5d,0xbe,0x7a, + 0xf0,0x0,0x0,0x0,0x0,0x5e,0x64,0xa6,0x0,0x0,0x0,0x0,0x0,0x5f,0x9e,0x5c, + 0xf0,0x0,0x0,0x0,0x0,0x60,0x4d,0xc2,0x80,0x0,0x0,0x0,0x0,0x61,0x87,0x79, + 0x70,0x0,0x0,0x0,0x0,0x62,0x2d,0xa4,0x80,0x0,0x0,0x0,0x0,0x63,0x67,0x5b, + 0x70,0x0,0x0,0x0,0x0,0x64,0xd,0x86,0x80,0x0,0x0,0x0,0x0,0x65,0x47,0x3d, + 0x70,0x0,0x0,0x0,0x0,0x65,0xed,0x68,0x80,0x0,0x0,0x0,0x0,0x67,0x27,0x1f, + 0x70,0x0,0x0,0x0,0x0,0x67,0xcd,0x4a,0x80,0x0,0x0,0x0,0x0,0x69,0x7,0x1, + 0x70,0x0,0x0,0x0,0x0,0x69,0xad,0x2c,0x80,0x0,0x0,0x0,0x0,0x6a,0xe6,0xe3, + 0x70,0x0,0x0,0x0,0x0,0x6b,0x96,0x49,0x0,0x0,0x0,0x0,0x0,0x6c,0xcf,0xff, + 0xf0,0x0,0x0,0x0,0x0,0x6d,0x76,0x2b,0x0,0x0,0x0,0x0,0x0,0x6e,0xaf,0xe1, + 0xf0,0x0,0x0,0x0,0x0,0x6f,0x56,0xd,0x0,0x0,0x0,0x0,0x0,0x70,0x8f,0xc3, + 0xf0,0x0,0x0,0x0,0x0,0x71,0x35,0xef,0x0,0x0,0x0,0x0,0x0,0x72,0x6f,0xa5, + 0xf0,0x0,0x0,0x0,0x0,0x73,0x15,0xd1,0x0,0x0,0x0,0x0,0x0,0x74,0x4f,0x87, + 0xf0,0x0,0x0,0x0,0x0,0x74,0xfe,0xed,0x80,0x0,0x0,0x0,0x0,0x76,0x38,0xa4, + 0x70,0x0,0x0,0x0,0x0,0x76,0xde,0xcf,0x80,0x0,0x0,0x0,0x0,0x78,0x18,0x86, + 0x70,0x0,0x0,0x0,0x0,0x78,0xbe,0xb1,0x80,0x0,0x0,0x0,0x0,0x79,0xf8,0x68, + 0x70,0x0,0x0,0x0,0x0,0x7a,0x9e,0x93,0x80,0x0,0x0,0x0,0x0,0x7b,0xd8,0x4a, + 0x70,0x0,0x0,0x0,0x0,0x7c,0x7e,0x75,0x80,0x0,0x0,0x0,0x0,0x7d,0xb8,0x2c, + 0x70,0x0,0x0,0x0,0x0,0x7e,0x5e,0x57,0x80,0x0,0x0,0x0,0x0,0x7f,0x98,0xe, + 0x70,0x0,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x5,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x5,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0xae,0xca, + 0x0,0x0,0xff,0xff,0xb9,0xb0,0x1,0x4,0xff,0xff,0xab,0xa0,0x0,0x8,0xff,0xff, + 0xb9,0xb0,0x1,0xc,0xff,0xff,0xb9,0xb0,0x1,0x10,0xff,0xff,0xb9,0xb0,0x0,0x14, + 0xff,0xff,0xab,0xa0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x43,0x44,0x54,0x0,0x43,0x53, + 0x54,0x0,0x43,0x57,0x54,0x0,0x43,0x50,0x54,0x0,0x45,0x53,0x54,0x0,0x0,0x0, + 0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0xa,0x43,0x53,0x54, + 0x36,0x43,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e, + 0x31,0x2e,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/US/Pacific + 0x0,0x0,0xb,0x1d, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xba,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0x9e, + 0xa6,0x48,0xa0,0x9f,0xbb,0x15,0x90,0xa0,0x86,0x2a,0xa0,0xa1,0x9a,0xf7,0x90,0xcb, + 0x89,0x1a,0xa0,0xd2,0x23,0xf4,0x70,0xd2,0x61,0x26,0x10,0xd6,0xfe,0x74,0x5c,0xd8, + 0x80,0xad,0x90,0xda,0xfe,0xc3,0x90,0xdb,0xc0,0x90,0x10,0xdc,0xde,0xa5,0x90,0xdd, + 0xa9,0xac,0x90,0xde,0xbe,0x87,0x90,0xdf,0x89,0x8e,0x90,0xe0,0x9e,0x69,0x90,0xe1, + 0x69,0x70,0x90,0xe2,0x7e,0x4b,0x90,0xe3,0x49,0x52,0x90,0xe4,0x5e,0x2d,0x90,0xe5, + 0x29,0x34,0x90,0xe6,0x47,0x4a,0x10,0xe7,0x12,0x51,0x10,0xe8,0x27,0x2c,0x10,0xe8, + 0xf2,0x33,0x10,0xea,0x7,0xe,0x10,0xea,0xd2,0x15,0x10,0xeb,0xe6,0xf0,0x10,0xec, + 0xb1,0xf7,0x10,0xed,0xc6,0xd2,0x10,0xee,0x91,0xd9,0x10,0xef,0xaf,0xee,0x90,0xf0, + 0x71,0xbb,0x10,0xf1,0x8f,0xd0,0x90,0xf2,0x7f,0xc1,0x90,0xf3,0x6f,0xb2,0x90,0xf4, + 0x5f,0xa3,0x90,0xf5,0x4f,0x94,0x90,0xf6,0x3f,0x85,0x90,0xf7,0x2f,0x76,0x90,0xf8, + 0x28,0xa2,0x10,0xf9,0xf,0x58,0x90,0xfa,0x8,0x84,0x10,0xfa,0xf8,0x83,0x20,0xfb, + 0xe8,0x66,0x10,0xfc,0xd8,0x65,0x20,0xfd,0xc8,0x48,0x10,0xfe,0xb8,0x47,0x20,0xff, + 0xa8,0x2a,0x10,0x0,0x98,0x29,0x20,0x1,0x88,0xc,0x10,0x2,0x78,0xb,0x20,0x3, + 0x71,0x28,0x90,0x4,0x61,0x27,0xa0,0x5,0x51,0xa,0x90,0x6,0x41,0x9,0xa0,0x7, + 0x30,0xec,0x90,0x7,0x8d,0x43,0xa0,0x9,0x10,0xce,0x90,0x9,0xad,0xbf,0x20,0xa, + 0xf0,0xb0,0x90,0xb,0xe0,0xaf,0xa0,0xc,0xd9,0xcd,0x10,0xd,0xc0,0x91,0xa0,0xe, + 0xb9,0xaf,0x10,0xf,0xa9,0xae,0x20,0x10,0x99,0x91,0x10,0x11,0x89,0x90,0x20,0x12, + 0x79,0x73,0x10,0x13,0x69,0x72,0x20,0x14,0x59,0x55,0x10,0x15,0x49,0x54,0x20,0x16, + 0x39,0x37,0x10,0x17,0x29,0x36,0x20,0x18,0x22,0x53,0x90,0x19,0x9,0x18,0x20,0x1a, + 0x2,0x35,0x90,0x1a,0xf2,0x34,0xa0,0x1b,0xe2,0x17,0x90,0x1c,0xd2,0x16,0xa0,0x1d, + 0xc1,0xf9,0x90,0x1e,0xb1,0xf8,0xa0,0x1f,0xa1,0xdb,0x90,0x20,0x76,0x2b,0x20,0x21, + 0x81,0xbd,0x90,0x22,0x56,0xd,0x20,0x23,0x6a,0xda,0x10,0x24,0x35,0xef,0x20,0x25, + 0x4a,0xbc,0x10,0x26,0x15,0xd1,0x20,0x27,0x2a,0x9e,0x10,0x27,0xfe,0xed,0xa0,0x29, + 0xa,0x80,0x10,0x29,0xde,0xcf,0xa0,0x2a,0xea,0x62,0x10,0x2b,0xbe,0xb1,0xa0,0x2c, + 0xd3,0x7e,0x90,0x2d,0x9e,0x93,0xa0,0x2e,0xb3,0x60,0x90,0x2f,0x7e,0x75,0xa0,0x30, + 0x93,0x42,0x90,0x31,0x67,0x92,0x20,0x32,0x73,0x24,0x90,0x33,0x47,0x74,0x20,0x34, + 0x53,0x6,0x90,0x35,0x27,0x56,0x20,0x36,0x32,0xe8,0x90,0x37,0x7,0x38,0x20,0x38, + 0x1c,0x5,0x10,0x38,0xe7,0x1a,0x20,0x39,0xfb,0xe7,0x10,0x3a,0xc6,0xfc,0x20,0x3b, + 0xdb,0xc9,0x10,0x3c,0xb0,0x18,0xa0,0x3d,0xbb,0xab,0x10,0x3e,0x8f,0xfa,0xa0,0x3f, + 0x9b,0x8d,0x10,0x40,0x6f,0xdc,0xa0,0x41,0x84,0xa9,0x90,0x42,0x4f,0xbe,0xa0,0x43, + 0x64,0x8b,0x90,0x44,0x2f,0xa0,0xa0,0x45,0x44,0x6d,0x90,0x45,0xf3,0xd3,0x20,0x47, + 0x2d,0x8a,0x10,0x47,0xd3,0xb5,0x20,0x49,0xd,0x6c,0x10,0x49,0xb3,0x97,0x20,0x4a, + 0xed,0x4e,0x10,0x4b,0x9c,0xb3,0xa0,0x4c,0xd6,0x6a,0x90,0x4d,0x7c,0x95,0xa0,0x4e, + 0xb6,0x4c,0x90,0x4f,0x5c,0x77,0xa0,0x50,0x96,0x2e,0x90,0x51,0x3c,0x59,0xa0,0x52, + 0x76,0x10,0x90,0x53,0x1c,0x3b,0xa0,0x54,0x55,0xf2,0x90,0x54,0xfc,0x1d,0xa0,0x56, + 0x35,0xd4,0x90,0x56,0xe5,0x3a,0x20,0x58,0x1e,0xf1,0x10,0x58,0xc5,0x1c,0x20,0x59, + 0xfe,0xd3,0x10,0x5a,0xa4,0xfe,0x20,0x5b,0xde,0xb5,0x10,0x5c,0x84,0xe0,0x20,0x5d, + 0xbe,0x97,0x10,0x5e,0x64,0xc2,0x20,0x5f,0x9e,0x79,0x10,0x60,0x4d,0xde,0xa0,0x61, + 0x87,0x95,0x90,0x62,0x2d,0xc0,0xa0,0x63,0x67,0x77,0x90,0x64,0xd,0xa2,0xa0,0x65, + 0x47,0x59,0x90,0x65,0xed,0x84,0xa0,0x67,0x27,0x3b,0x90,0x67,0xcd,0x66,0xa0,0x69, + 0x7,0x1d,0x90,0x69,0xad,0x48,0xa0,0x6a,0xe6,0xff,0x90,0x6b,0x96,0x65,0x20,0x6c, + 0xd0,0x1c,0x10,0x6d,0x76,0x47,0x20,0x6e,0xaf,0xfe,0x10,0x6f,0x56,0x29,0x20,0x70, + 0x8f,0xe0,0x10,0x71,0x36,0xb,0x20,0x72,0x6f,0xc2,0x10,0x73,0x15,0xed,0x20,0x74, + 0x4f,0xa4,0x10,0x74,0xff,0x9,0xa0,0x76,0x38,0xc0,0x90,0x76,0xde,0xeb,0xa0,0x78, + 0x18,0xa2,0x90,0x78,0xbe,0xcd,0xa0,0x79,0xf8,0x84,0x90,0x7a,0x9e,0xaf,0xa0,0x7b, + 0xd8,0x66,0x90,0x7c,0x7e,0x91,0xa0,0x7d,0xb8,0x48,0x90,0x7e,0x5e,0x73,0xa0,0x7f, + 0x98,0x2a,0x90,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0x91, + 0x26,0x0,0x0,0xff,0xff,0x9d,0x90,0x1,0x4,0xff,0xff,0x8f,0x80,0x0,0x8,0xff, + 0xff,0x9d,0x90,0x1,0xc,0xff,0xff,0x9d,0x90,0x1,0x10,0x4c,0x4d,0x54,0x0,0x50, + 0x44,0x54,0x0,0x50,0x53,0x54,0x0,0x50,0x57,0x54,0x0,0x50,0x50,0x54,0x0,0x0, + 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x1,0x54,0x5a,0x69,0x66,0x32,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xc,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbc,0x0, - 0x0,0x0,0xc,0x0,0x0,0x0,0x1a,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff, - 0xff,0xff,0xff,0x56,0xb6,0xdf,0xe6,0xff,0xff,0xff,0xff,0x6d,0xe9,0x6c,0xa6,0xff, - 0xff,0xff,0xff,0x98,0x44,0x49,0x80,0xff,0xff,0xff,0xff,0x9b,0xc,0x25,0x70,0xff, - 0xff,0xff,0xff,0x9b,0xd5,0xda,0xf0,0xff,0xff,0xff,0xff,0x9c,0xd9,0xae,0x90,0xff, - 0xff,0xff,0xff,0x9d,0xa4,0xb5,0x90,0xff,0xff,0xff,0xff,0x9e,0xb9,0x90,0x90,0xff, - 0xff,0xff,0xff,0x9f,0x84,0x97,0x90,0xff,0xff,0xff,0xff,0x9f,0xce,0xf8,0x30,0xff, - 0xff,0xff,0xff,0xa0,0x60,0xa5,0xf0,0xff,0xff,0xff,0xff,0xa1,0x7e,0xbb,0x70,0xff, - 0xff,0xff,0xff,0xa2,0x2e,0x12,0xf0,0xff,0xff,0xff,0xff,0xa3,0x7a,0x4c,0xf0,0xff, - 0xff,0xff,0xff,0xa4,0x35,0x81,0xf0,0xff,0xff,0xff,0xff,0xa5,0x5e,0x23,0x70,0xff, - 0xff,0xff,0xff,0xa6,0x25,0x35,0xf0,0xff,0xff,0xff,0xff,0xa7,0x27,0x9b,0xf0,0xff, - 0xff,0xff,0xff,0xa8,0x2a,0x1,0xf0,0xff,0xff,0xff,0xff,0xa9,0x7,0x7d,0xf0,0xff, - 0xff,0xff,0xff,0xa9,0xee,0x34,0x70,0xff,0xff,0xff,0xff,0xaa,0xe7,0x5f,0xf0,0xff, - 0xff,0xff,0xff,0xab,0xd7,0x50,0xf0,0xff,0xff,0xff,0xff,0xac,0xc7,0x41,0xf0,0xff, - 0xff,0xff,0xff,0xad,0xc9,0xa7,0xf0,0xff,0xff,0xff,0xff,0xae,0xa7,0x23,0xf0,0xff, - 0xff,0xff,0xff,0xaf,0xa0,0x4f,0x70,0xff,0xff,0xff,0xff,0xb0,0x87,0x5,0xf0,0xff, - 0xff,0xff,0xff,0xb1,0x89,0x6b,0xf0,0xff,0xff,0xff,0xff,0xb2,0x70,0x4c,0xa0,0xff, - 0xff,0xff,0xff,0xb3,0x72,0xb2,0xa0,0xff,0xff,0xff,0xff,0xb4,0x50,0x2e,0xa0,0xff, - 0xff,0xff,0xff,0xb5,0x49,0x5a,0x20,0xff,0xff,0xff,0xff,0xb6,0x30,0x10,0xa0,0xff, - 0xff,0xff,0xff,0xb7,0x32,0x76,0xa0,0xff,0xff,0xff,0xff,0xb8,0xf,0xf2,0xa0,0xff, - 0xff,0xff,0xff,0xb8,0xff,0xe3,0xa0,0xff,0xff,0xff,0xff,0xb9,0xef,0xd4,0xa0,0xff, - 0xff,0xff,0xff,0xba,0xd6,0x8b,0x20,0xff,0xff,0xff,0xff,0xbb,0xd8,0xf1,0x20,0xff, - 0xff,0xff,0xff,0xbc,0xc8,0xe2,0x20,0xff,0xff,0xff,0xff,0xbd,0xb8,0xd3,0x20,0xff, - 0xff,0xff,0xff,0xbe,0x9f,0x89,0xa0,0xff,0xff,0xff,0xff,0xbf,0x98,0xb5,0x20,0xff, - 0xff,0xff,0xff,0xc0,0x9b,0x1b,0x20,0xff,0xff,0xff,0xff,0xc1,0x78,0x97,0x20,0xff, - 0xff,0xff,0xff,0xc2,0x68,0x88,0x20,0xff,0xff,0xff,0xff,0xc3,0x58,0x79,0x20,0xff, - 0xff,0xff,0xff,0xc4,0x3f,0x2f,0xa0,0xff,0xff,0xff,0xff,0xc5,0x38,0x5b,0x20,0xff, - 0xff,0xff,0xff,0xc6,0x3a,0xc1,0x20,0xff,0xff,0xff,0xff,0xc7,0x58,0xd6,0xa0,0xff, - 0xff,0xff,0xff,0xc7,0xda,0x9,0xa0,0xff,0xff,0xff,0xff,0xc8,0x4a,0x19,0x20,0xff, - 0xff,0xff,0xff,0xcc,0xe7,0x4b,0x10,0xff,0xff,0xff,0xff,0xcd,0xa9,0x17,0x90,0xff, - 0xff,0xff,0xff,0xce,0xa2,0x43,0x10,0xff,0xff,0xff,0xff,0xcf,0x92,0x34,0x10,0xff, - 0xff,0xff,0xff,0xd0,0x5b,0xbf,0x60,0xff,0xff,0xff,0xff,0xd0,0x6e,0x5e,0x90,0xff, - 0xff,0xff,0xff,0xd1,0x72,0x16,0x10,0xff,0xff,0xff,0xff,0xd2,0x4e,0x40,0x90,0xff, - 0xff,0xff,0xff,0xd3,0x91,0x40,0x10,0xff,0xff,0xff,0xff,0xd4,0x4b,0x23,0x90,0x0, - 0x0,0x0,0x0,0xd,0x2a,0xfd,0x70,0x0,0x0,0x0,0x0,0xd,0xa4,0x63,0x90,0x0, - 0x0,0x0,0x0,0xe,0x8b,0x1a,0x10,0x0,0x0,0x0,0x0,0xf,0x84,0x45,0x90,0x0, - 0x0,0x0,0x0,0x10,0x74,0x36,0x90,0x0,0x0,0x0,0x0,0x11,0x64,0x27,0x90,0x0, - 0x0,0x0,0x0,0x12,0x54,0x18,0x90,0x0,0x0,0x0,0x0,0x13,0x4d,0x44,0x10,0x0, - 0x0,0x0,0x0,0x14,0x33,0xfa,0x90,0x0,0x0,0x0,0x0,0x15,0x23,0xeb,0x90,0x0, - 0x0,0x0,0x0,0x16,0x13,0xdc,0x90,0x0,0x0,0x0,0x0,0x17,0x3,0xcd,0x90,0x0, - 0x0,0x0,0x0,0x17,0xf3,0xbe,0x90,0x0,0x0,0x0,0x0,0x18,0xe3,0xaf,0x90,0x0, - 0x0,0x0,0x0,0x19,0xd3,0xa0,0x90,0x0,0x0,0x0,0x0,0x1a,0xc3,0x91,0x90,0x0, - 0x0,0x0,0x0,0x1b,0xbc,0xbd,0x10,0x0,0x0,0x0,0x0,0x1c,0xac,0xae,0x10,0x0, - 0x0,0x0,0x0,0x1d,0x9c,0x9f,0x10,0x0,0x0,0x0,0x0,0x1e,0x8c,0x90,0x10,0x0, - 0x0,0x0,0x0,0x1f,0x7c,0x81,0x10,0x0,0x0,0x0,0x0,0x20,0x6c,0x72,0x10,0x0, - 0x0,0x0,0x0,0x21,0x5c,0x63,0x10,0x0,0x0,0x0,0x0,0x22,0x4c,0x54,0x10,0x0, - 0x0,0x0,0x0,0x23,0x3c,0x45,0x10,0x0,0x0,0x0,0x0,0x24,0x2c,0x36,0x10,0x0, - 0x0,0x0,0x0,0x25,0x1c,0x27,0x10,0x0,0x0,0x0,0x0,0x26,0xc,0x18,0x10,0x0, - 0x0,0x0,0x0,0x27,0x5,0x43,0x90,0x0,0x0,0x0,0x0,0x27,0xf5,0x34,0x90,0x0, - 0x0,0x0,0x0,0x28,0xe5,0x25,0x90,0x0,0x0,0x0,0x0,0x29,0xd5,0x16,0x90,0x0, - 0x0,0x0,0x0,0x2a,0xc5,0x7,0x90,0x0,0x0,0x0,0x0,0x2b,0xb4,0xf8,0x90,0x0, - 0x0,0x0,0x0,0x2c,0xa4,0xe9,0x90,0x0,0x0,0x0,0x0,0x2d,0x94,0xda,0x90,0x0, - 0x0,0x0,0x0,0x2e,0x84,0xcb,0x90,0x0,0x0,0x0,0x0,0x2f,0x74,0xbc,0x90,0x0, - 0x0,0x0,0x0,0x30,0x64,0xad,0x90,0x0,0x0,0x0,0x0,0x31,0x5d,0xd9,0x10,0x0, - 0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d,0xbb,0x10,0x0, - 0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d,0x9d,0x10,0x0, - 0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd,0x7f,0x10,0x0, - 0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd,0x61,0x10,0x0, - 0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd,0x43,0x10,0x0, - 0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f,0x90,0x0, - 0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86,0x41,0x90,0x0, - 0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66,0x23,0x90,0x0, - 0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46,0x5,0x90,0x0, - 0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25,0xe7,0x90,0x0, - 0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5,0xc9,0x90,0x0, - 0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee,0xe6,0x10,0x0, - 0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce,0xc8,0x10,0x0, - 0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae,0xaa,0x10,0x0, - 0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c,0x10,0x0, - 0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e,0x10,0x0, - 0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57,0x8a,0x90,0x0, - 0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37,0x6c,0x90,0x0, - 0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17,0x4e,0x90,0x0, - 0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7,0x30,0x90,0x0, - 0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7,0x12,0x90,0x0, - 0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4,0x90,0x0, - 0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0,0x11,0x10,0x0, - 0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3,0x10,0x0, - 0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f,0xd5,0x10,0x0, - 0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f,0xb7,0x10,0x0, - 0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f,0x99,0x10,0x0, - 0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8,0xb5,0x90,0x0, - 0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8,0x97,0x90,0x0, - 0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8,0x79,0x90,0x0, - 0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b,0x90,0x0, - 0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88,0x3d,0x90,0x0, - 0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68,0x1f,0x90,0x0, - 0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51,0x3c,0x10,0x0, - 0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31,0x1e,0x10,0x0, - 0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11,0x0,0x10,0x0, - 0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0,0xe2,0x10,0x0, - 0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0,0xc4,0x10,0x0, - 0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6,0x10,0x0, - 0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99,0xc2,0x90,0x0, - 0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79,0xa4,0x90,0x0, - 0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x1,0x2,0x3,0x6,0x3,0x4,0x5,0x4, - 0x5,0x9,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8, - 0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8, - 0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x4,0x5,0x4, - 0x5,0x4,0x6,0x5,0x4,0x5,0x4,0x5,0x3,0xa,0xb,0xa,0xb,0xa,0xb,0xa, - 0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa, - 0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa, - 0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa, - 0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa, - 0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa, - 0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa, - 0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa, - 0xb,0xa,0xb,0x0,0x0,0x4,0x1a,0x0,0x0,0x0,0x0,0x4,0x1a,0x0,0x4,0x0, - 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0xe,0x10,0x0,0xc,0x0,0x0,0x1c,0x20,0x1, - 0x10,0x0,0x0,0xe,0x10,0x0,0xc,0x0,0x0,0x1c,0x20,0x1,0x10,0x0,0x0,0xe, - 0x10,0x1,0x15,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x8,0x0, - 0x0,0x1c,0x20,0x1,0x10,0x0,0x0,0xe,0x10,0x0,0xc,0x4c,0x4d,0x54,0x0,0x42, - 0x4d,0x54,0x0,0x57,0x45,0x54,0x0,0x43,0x45,0x54,0x0,0x43,0x45,0x53,0x54,0x0, - 0x57,0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x1,0x1,0x1,0x1, - 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0xa,0x43,0x45, - 0x54,0x2d,0x31,0x43,0x45,0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2c,0x4d, - 0x31,0x30,0x2e,0x35,0x2e,0x30,0x2f,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Sofia - 0x0,0x0,0x8,0x52, + 0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbb,0x0,0x0,0x0, + 0x5,0x0,0x0,0x0,0x14,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff, + 0xff,0x5e,0x4,0x1a,0xc0,0xff,0xff,0xff,0xff,0x9e,0xa6,0x48,0xa0,0xff,0xff,0xff, + 0xff,0x9f,0xbb,0x15,0x90,0xff,0xff,0xff,0xff,0xa0,0x86,0x2a,0xa0,0xff,0xff,0xff, + 0xff,0xa1,0x9a,0xf7,0x90,0xff,0xff,0xff,0xff,0xcb,0x89,0x1a,0xa0,0xff,0xff,0xff, + 0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x61,0x26,0x10,0xff,0xff,0xff, + 0xff,0xd6,0xfe,0x74,0x5c,0xff,0xff,0xff,0xff,0xd8,0x80,0xad,0x90,0xff,0xff,0xff, + 0xff,0xda,0xfe,0xc3,0x90,0xff,0xff,0xff,0xff,0xdb,0xc0,0x90,0x10,0xff,0xff,0xff, + 0xff,0xdc,0xde,0xa5,0x90,0xff,0xff,0xff,0xff,0xdd,0xa9,0xac,0x90,0xff,0xff,0xff, + 0xff,0xde,0xbe,0x87,0x90,0xff,0xff,0xff,0xff,0xdf,0x89,0x8e,0x90,0xff,0xff,0xff, + 0xff,0xe0,0x9e,0x69,0x90,0xff,0xff,0xff,0xff,0xe1,0x69,0x70,0x90,0xff,0xff,0xff, + 0xff,0xe2,0x7e,0x4b,0x90,0xff,0xff,0xff,0xff,0xe3,0x49,0x52,0x90,0xff,0xff,0xff, + 0xff,0xe4,0x5e,0x2d,0x90,0xff,0xff,0xff,0xff,0xe5,0x29,0x34,0x90,0xff,0xff,0xff, + 0xff,0xe6,0x47,0x4a,0x10,0xff,0xff,0xff,0xff,0xe7,0x12,0x51,0x10,0xff,0xff,0xff, + 0xff,0xe8,0x27,0x2c,0x10,0xff,0xff,0xff,0xff,0xe8,0xf2,0x33,0x10,0xff,0xff,0xff, + 0xff,0xea,0x7,0xe,0x10,0xff,0xff,0xff,0xff,0xea,0xd2,0x15,0x10,0xff,0xff,0xff, + 0xff,0xeb,0xe6,0xf0,0x10,0xff,0xff,0xff,0xff,0xec,0xb1,0xf7,0x10,0xff,0xff,0xff, + 0xff,0xed,0xc6,0xd2,0x10,0xff,0xff,0xff,0xff,0xee,0x91,0xd9,0x10,0xff,0xff,0xff, + 0xff,0xef,0xaf,0xee,0x90,0xff,0xff,0xff,0xff,0xf0,0x71,0xbb,0x10,0xff,0xff,0xff, + 0xff,0xf1,0x8f,0xd0,0x90,0xff,0xff,0xff,0xff,0xf2,0x7f,0xc1,0x90,0xff,0xff,0xff, + 0xff,0xf3,0x6f,0xb2,0x90,0xff,0xff,0xff,0xff,0xf4,0x5f,0xa3,0x90,0xff,0xff,0xff, + 0xff,0xf5,0x4f,0x94,0x90,0xff,0xff,0xff,0xff,0xf6,0x3f,0x85,0x90,0xff,0xff,0xff, + 0xff,0xf7,0x2f,0x76,0x90,0xff,0xff,0xff,0xff,0xf8,0x28,0xa2,0x10,0xff,0xff,0xff, + 0xff,0xf9,0xf,0x58,0x90,0xff,0xff,0xff,0xff,0xfa,0x8,0x84,0x10,0xff,0xff,0xff, + 0xff,0xfa,0xf8,0x83,0x20,0xff,0xff,0xff,0xff,0xfb,0xe8,0x66,0x10,0xff,0xff,0xff, + 0xff,0xfc,0xd8,0x65,0x20,0xff,0xff,0xff,0xff,0xfd,0xc8,0x48,0x10,0xff,0xff,0xff, + 0xff,0xfe,0xb8,0x47,0x20,0xff,0xff,0xff,0xff,0xff,0xa8,0x2a,0x10,0x0,0x0,0x0, + 0x0,0x0,0x98,0x29,0x20,0x0,0x0,0x0,0x0,0x1,0x88,0xc,0x10,0x0,0x0,0x0, + 0x0,0x2,0x78,0xb,0x20,0x0,0x0,0x0,0x0,0x3,0x71,0x28,0x90,0x0,0x0,0x0, + 0x0,0x4,0x61,0x27,0xa0,0x0,0x0,0x0,0x0,0x5,0x51,0xa,0x90,0x0,0x0,0x0, + 0x0,0x6,0x41,0x9,0xa0,0x0,0x0,0x0,0x0,0x7,0x30,0xec,0x90,0x0,0x0,0x0, + 0x0,0x7,0x8d,0x43,0xa0,0x0,0x0,0x0,0x0,0x9,0x10,0xce,0x90,0x0,0x0,0x0, + 0x0,0x9,0xad,0xbf,0x20,0x0,0x0,0x0,0x0,0xa,0xf0,0xb0,0x90,0x0,0x0,0x0, + 0x0,0xb,0xe0,0xaf,0xa0,0x0,0x0,0x0,0x0,0xc,0xd9,0xcd,0x10,0x0,0x0,0x0, + 0x0,0xd,0xc0,0x91,0xa0,0x0,0x0,0x0,0x0,0xe,0xb9,0xaf,0x10,0x0,0x0,0x0, + 0x0,0xf,0xa9,0xae,0x20,0x0,0x0,0x0,0x0,0x10,0x99,0x91,0x10,0x0,0x0,0x0, + 0x0,0x11,0x89,0x90,0x20,0x0,0x0,0x0,0x0,0x12,0x79,0x73,0x10,0x0,0x0,0x0, + 0x0,0x13,0x69,0x72,0x20,0x0,0x0,0x0,0x0,0x14,0x59,0x55,0x10,0x0,0x0,0x0, + 0x0,0x15,0x49,0x54,0x20,0x0,0x0,0x0,0x0,0x16,0x39,0x37,0x10,0x0,0x0,0x0, + 0x0,0x17,0x29,0x36,0x20,0x0,0x0,0x0,0x0,0x18,0x22,0x53,0x90,0x0,0x0,0x0, + 0x0,0x19,0x9,0x18,0x20,0x0,0x0,0x0,0x0,0x1a,0x2,0x35,0x90,0x0,0x0,0x0, + 0x0,0x1a,0xf2,0x34,0xa0,0x0,0x0,0x0,0x0,0x1b,0xe2,0x17,0x90,0x0,0x0,0x0, + 0x0,0x1c,0xd2,0x16,0xa0,0x0,0x0,0x0,0x0,0x1d,0xc1,0xf9,0x90,0x0,0x0,0x0, + 0x0,0x1e,0xb1,0xf8,0xa0,0x0,0x0,0x0,0x0,0x1f,0xa1,0xdb,0x90,0x0,0x0,0x0, + 0x0,0x20,0x76,0x2b,0x20,0x0,0x0,0x0,0x0,0x21,0x81,0xbd,0x90,0x0,0x0,0x0, + 0x0,0x22,0x56,0xd,0x20,0x0,0x0,0x0,0x0,0x23,0x6a,0xda,0x10,0x0,0x0,0x0, + 0x0,0x24,0x35,0xef,0x20,0x0,0x0,0x0,0x0,0x25,0x4a,0xbc,0x10,0x0,0x0,0x0, + 0x0,0x26,0x15,0xd1,0x20,0x0,0x0,0x0,0x0,0x27,0x2a,0x9e,0x10,0x0,0x0,0x0, + 0x0,0x27,0xfe,0xed,0xa0,0x0,0x0,0x0,0x0,0x29,0xa,0x80,0x10,0x0,0x0,0x0, + 0x0,0x29,0xde,0xcf,0xa0,0x0,0x0,0x0,0x0,0x2a,0xea,0x62,0x10,0x0,0x0,0x0, + 0x0,0x2b,0xbe,0xb1,0xa0,0x0,0x0,0x0,0x0,0x2c,0xd3,0x7e,0x90,0x0,0x0,0x0, + 0x0,0x2d,0x9e,0x93,0xa0,0x0,0x0,0x0,0x0,0x2e,0xb3,0x60,0x90,0x0,0x0,0x0, + 0x0,0x2f,0x7e,0x75,0xa0,0x0,0x0,0x0,0x0,0x30,0x93,0x42,0x90,0x0,0x0,0x0, + 0x0,0x31,0x67,0x92,0x20,0x0,0x0,0x0,0x0,0x32,0x73,0x24,0x90,0x0,0x0,0x0, + 0x0,0x33,0x47,0x74,0x20,0x0,0x0,0x0,0x0,0x34,0x53,0x6,0x90,0x0,0x0,0x0, + 0x0,0x35,0x27,0x56,0x20,0x0,0x0,0x0,0x0,0x36,0x32,0xe8,0x90,0x0,0x0,0x0, + 0x0,0x37,0x7,0x38,0x20,0x0,0x0,0x0,0x0,0x38,0x1c,0x5,0x10,0x0,0x0,0x0, + 0x0,0x38,0xe7,0x1a,0x20,0x0,0x0,0x0,0x0,0x39,0xfb,0xe7,0x10,0x0,0x0,0x0, + 0x0,0x3a,0xc6,0xfc,0x20,0x0,0x0,0x0,0x0,0x3b,0xdb,0xc9,0x10,0x0,0x0,0x0, + 0x0,0x3c,0xb0,0x18,0xa0,0x0,0x0,0x0,0x0,0x3d,0xbb,0xab,0x10,0x0,0x0,0x0, + 0x0,0x3e,0x8f,0xfa,0xa0,0x0,0x0,0x0,0x0,0x3f,0x9b,0x8d,0x10,0x0,0x0,0x0, + 0x0,0x40,0x6f,0xdc,0xa0,0x0,0x0,0x0,0x0,0x41,0x84,0xa9,0x90,0x0,0x0,0x0, + 0x0,0x42,0x4f,0xbe,0xa0,0x0,0x0,0x0,0x0,0x43,0x64,0x8b,0x90,0x0,0x0,0x0, + 0x0,0x44,0x2f,0xa0,0xa0,0x0,0x0,0x0,0x0,0x45,0x44,0x6d,0x90,0x0,0x0,0x0, + 0x0,0x45,0xf3,0xd3,0x20,0x0,0x0,0x0,0x0,0x47,0x2d,0x8a,0x10,0x0,0x0,0x0, + 0x0,0x47,0xd3,0xb5,0x20,0x0,0x0,0x0,0x0,0x49,0xd,0x6c,0x10,0x0,0x0,0x0, + 0x0,0x49,0xb3,0x97,0x20,0x0,0x0,0x0,0x0,0x4a,0xed,0x4e,0x10,0x0,0x0,0x0, + 0x0,0x4b,0x9c,0xb3,0xa0,0x0,0x0,0x0,0x0,0x4c,0xd6,0x6a,0x90,0x0,0x0,0x0, + 0x0,0x4d,0x7c,0x95,0xa0,0x0,0x0,0x0,0x0,0x4e,0xb6,0x4c,0x90,0x0,0x0,0x0, + 0x0,0x4f,0x5c,0x77,0xa0,0x0,0x0,0x0,0x0,0x50,0x96,0x2e,0x90,0x0,0x0,0x0, + 0x0,0x51,0x3c,0x59,0xa0,0x0,0x0,0x0,0x0,0x52,0x76,0x10,0x90,0x0,0x0,0x0, + 0x0,0x53,0x1c,0x3b,0xa0,0x0,0x0,0x0,0x0,0x54,0x55,0xf2,0x90,0x0,0x0,0x0, + 0x0,0x54,0xfc,0x1d,0xa0,0x0,0x0,0x0,0x0,0x56,0x35,0xd4,0x90,0x0,0x0,0x0, + 0x0,0x56,0xe5,0x3a,0x20,0x0,0x0,0x0,0x0,0x58,0x1e,0xf1,0x10,0x0,0x0,0x0, + 0x0,0x58,0xc5,0x1c,0x20,0x0,0x0,0x0,0x0,0x59,0xfe,0xd3,0x10,0x0,0x0,0x0, + 0x0,0x5a,0xa4,0xfe,0x20,0x0,0x0,0x0,0x0,0x5b,0xde,0xb5,0x10,0x0,0x0,0x0, + 0x0,0x5c,0x84,0xe0,0x20,0x0,0x0,0x0,0x0,0x5d,0xbe,0x97,0x10,0x0,0x0,0x0, + 0x0,0x5e,0x64,0xc2,0x20,0x0,0x0,0x0,0x0,0x5f,0x9e,0x79,0x10,0x0,0x0,0x0, + 0x0,0x60,0x4d,0xde,0xa0,0x0,0x0,0x0,0x0,0x61,0x87,0x95,0x90,0x0,0x0,0x0, + 0x0,0x62,0x2d,0xc0,0xa0,0x0,0x0,0x0,0x0,0x63,0x67,0x77,0x90,0x0,0x0,0x0, + 0x0,0x64,0xd,0xa2,0xa0,0x0,0x0,0x0,0x0,0x65,0x47,0x59,0x90,0x0,0x0,0x0, + 0x0,0x65,0xed,0x84,0xa0,0x0,0x0,0x0,0x0,0x67,0x27,0x3b,0x90,0x0,0x0,0x0, + 0x0,0x67,0xcd,0x66,0xa0,0x0,0x0,0x0,0x0,0x69,0x7,0x1d,0x90,0x0,0x0,0x0, + 0x0,0x69,0xad,0x48,0xa0,0x0,0x0,0x0,0x0,0x6a,0xe6,0xff,0x90,0x0,0x0,0x0, + 0x0,0x6b,0x96,0x65,0x20,0x0,0x0,0x0,0x0,0x6c,0xd0,0x1c,0x10,0x0,0x0,0x0, + 0x0,0x6d,0x76,0x47,0x20,0x0,0x0,0x0,0x0,0x6e,0xaf,0xfe,0x10,0x0,0x0,0x0, + 0x0,0x6f,0x56,0x29,0x20,0x0,0x0,0x0,0x0,0x70,0x8f,0xe0,0x10,0x0,0x0,0x0, + 0x0,0x71,0x36,0xb,0x20,0x0,0x0,0x0,0x0,0x72,0x6f,0xc2,0x10,0x0,0x0,0x0, + 0x0,0x73,0x15,0xed,0x20,0x0,0x0,0x0,0x0,0x74,0x4f,0xa4,0x10,0x0,0x0,0x0, + 0x0,0x74,0xff,0x9,0xa0,0x0,0x0,0x0,0x0,0x76,0x38,0xc0,0x90,0x0,0x0,0x0, + 0x0,0x76,0xde,0xeb,0xa0,0x0,0x0,0x0,0x0,0x78,0x18,0xa2,0x90,0x0,0x0,0x0, + 0x0,0x78,0xbe,0xcd,0xa0,0x0,0x0,0x0,0x0,0x79,0xf8,0x84,0x90,0x0,0x0,0x0, + 0x0,0x7a,0x9e,0xaf,0xa0,0x0,0x0,0x0,0x0,0x7b,0xd8,0x66,0x90,0x0,0x0,0x0, + 0x0,0x7c,0x7e,0x91,0xa0,0x0,0x0,0x0,0x0,0x7d,0xb8,0x48,0x90,0x0,0x0,0x0, + 0x0,0x7e,0x5e,0x73,0xa0,0x0,0x0,0x0,0x0,0x7f,0x98,0x2a,0x90,0x0,0x2,0x1, + 0x2,0x1,0x2,0x3,0x4,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0x91,0x26,0x0,0x0,0xff,0xff, + 0x9d,0x90,0x1,0x4,0xff,0xff,0x8f,0x80,0x0,0x8,0xff,0xff,0x9d,0x90,0x1,0xc, + 0xff,0xff,0x9d,0x90,0x1,0x10,0x4c,0x4d,0x54,0x0,0x50,0x44,0x54,0x0,0x50,0x53, + 0x54,0x0,0x50,0x57,0x54,0x0,0x50,0x50,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0, + 0x0,0x0,0x0,0x1,0xa,0x50,0x53,0x54,0x38,0x50,0x44,0x54,0x2c,0x4d,0x33,0x2e, + 0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/US/Pacific-New + 0x0,0x0,0xb,0x1d, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x7f,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x16,0x80,0x0,0x0,0x0,0xcc, - 0xe7,0x4b,0x10,0xcd,0xa9,0x17,0x90,0xce,0xa2,0x43,0x10,0xcf,0x92,0x34,0x10,0xd0, - 0x82,0x25,0x10,0xd0,0xfa,0x1,0x70,0xd1,0x72,0x24,0x20,0x11,0x63,0xef,0x50,0x12, - 0x55,0x3f,0xe0,0x13,0x4d,0xb,0xd0,0x14,0x35,0x21,0xe0,0x15,0x2c,0xed,0xd0,0x16, - 0x13,0xc0,0x70,0x17,0xc,0xcf,0xd0,0x17,0xf3,0xb0,0x80,0x18,0xe3,0xa1,0x80,0x19, - 0xd3,0x92,0x80,0x1a,0xc3,0x83,0x80,0x1b,0xbc,0xaf,0x0,0x1c,0xac,0xa0,0x0,0x1d, - 0x9c,0x91,0x0,0x1e,0x8c,0x82,0x0,0x1f,0x7c,0x73,0x0,0x20,0x6c,0x64,0x0,0x21, - 0x5c,0x55,0x0,0x22,0x4c,0x46,0x0,0x23,0x3c,0x37,0x0,0x24,0x2c,0x28,0x0,0x25, - 0x1c,0x19,0x0,0x26,0xc,0xa,0x0,0x27,0x5,0x35,0x80,0x27,0x7f,0xb4,0xe0,0x27, - 0xf5,0xa,0x60,0x28,0xe4,0xed,0x50,0x29,0xd4,0xec,0x60,0x2a,0xc4,0xcf,0x50,0x2b, - 0xb4,0xce,0x60,0x2c,0xa4,0xb1,0x50,0x2d,0x94,0xb0,0x60,0x2e,0x84,0x93,0x50,0x2f, - 0x74,0x92,0x60,0x30,0x64,0x75,0x50,0x31,0x5d,0xae,0xe0,0x32,0x72,0x7b,0xd0,0x33, - 0x3d,0xbb,0x10,0x34,0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36, - 0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a, - 0xbd,0x43,0x10,0x3b,0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e, - 0x86,0x41,0x90,0x3f,0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42, - 0x46,0x5,0x90,0x43,0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46, - 0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49, - 0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d, - 0x8e,0x8c,0x10,0x4e,0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51, - 0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55, - 0x17,0x4e,0x90,0x56,0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58, - 0xd7,0x12,0x90,0x59,0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c, - 0xa0,0x11,0x10,0x5d,0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60, - 0x5f,0xd5,0x10,0x61,0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64, - 0x1f,0x99,0x10,0x65,0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67, - 0xe8,0x97,0x90,0x68,0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b, - 0xa8,0x5b,0x90,0x6c,0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f, - 0x68,0x1f,0x90,0x70,0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73, - 0x31,0x1e,0x10,0x74,0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76, - 0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a, - 0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e, - 0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x1,0x2,0x3,0x2,0x3,0x2,0x4,0x1,0x5, - 0x1,0x5,0x1,0x5,0x1,0x5,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x1,0x5,0x1,0x5,0x1,0x5,0x1,0x5,0x1, - 0x5,0x1,0x5,0x1,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, - 0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, - 0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, - 0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, - 0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, - 0x8,0x9,0x8,0x9,0x8,0x9,0x0,0x0,0x1b,0x68,0x0,0x0,0x0,0x0,0x1c,0x20, - 0x0,0x4,0x0,0x0,0xe,0x10,0x0,0x8,0x0,0x0,0x1c,0x20,0x1,0xc,0x0,0x0, - 0xe,0x10,0x0,0x8,0x0,0x0,0x2a,0x30,0x1,0x11,0x0,0x0,0x1c,0x20,0x0,0x4, - 0x0,0x0,0x2a,0x30,0x1,0x11,0x0,0x0,0x2a,0x30,0x1,0x11,0x0,0x0,0x1c,0x20, - 0x0,0x4,0x49,0x4d,0x54,0x0,0x45,0x45,0x54,0x0,0x43,0x45,0x54,0x0,0x43,0x45, - 0x53,0x54,0x0,0x45,0x45,0x53,0x54,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x1,0x1, - 0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x54,0x5a,0x69,0x66, - 0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0xb,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x81, - 0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x1a,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0xff,0xff,0xff,0xff,0x56,0xb6,0xce,0x24,0xff,0xff,0xff,0xff,0x72,0xc3,0xe3,0x18, - 0xff,0xff,0xff,0xff,0xcc,0xe7,0x4b,0x10,0xff,0xff,0xff,0xff,0xcd,0xa9,0x17,0x90, - 0xff,0xff,0xff,0xff,0xce,0xa2,0x43,0x10,0xff,0xff,0xff,0xff,0xcf,0x92,0x34,0x10, - 0xff,0xff,0xff,0xff,0xd0,0x82,0x25,0x10,0xff,0xff,0xff,0xff,0xd0,0xfa,0x1,0x70, - 0xff,0xff,0xff,0xff,0xd1,0x72,0x24,0x20,0x0,0x0,0x0,0x0,0x11,0x63,0xef,0x50, - 0x0,0x0,0x0,0x0,0x12,0x55,0x3f,0xe0,0x0,0x0,0x0,0x0,0x13,0x4d,0xb,0xd0, - 0x0,0x0,0x0,0x0,0x14,0x35,0x21,0xe0,0x0,0x0,0x0,0x0,0x15,0x2c,0xed,0xd0, - 0x0,0x0,0x0,0x0,0x16,0x13,0xc0,0x70,0x0,0x0,0x0,0x0,0x17,0xc,0xcf,0xd0, - 0x0,0x0,0x0,0x0,0x17,0xf3,0xb0,0x80,0x0,0x0,0x0,0x0,0x18,0xe3,0xa1,0x80, - 0x0,0x0,0x0,0x0,0x19,0xd3,0x92,0x80,0x0,0x0,0x0,0x0,0x1a,0xc3,0x83,0x80, - 0x0,0x0,0x0,0x0,0x1b,0xbc,0xaf,0x0,0x0,0x0,0x0,0x0,0x1c,0xac,0xa0,0x0, - 0x0,0x0,0x0,0x0,0x1d,0x9c,0x91,0x0,0x0,0x0,0x0,0x0,0x1e,0x8c,0x82,0x0, - 0x0,0x0,0x0,0x0,0x1f,0x7c,0x73,0x0,0x0,0x0,0x0,0x0,0x20,0x6c,0x64,0x0, - 0x0,0x0,0x0,0x0,0x21,0x5c,0x55,0x0,0x0,0x0,0x0,0x0,0x22,0x4c,0x46,0x0, - 0x0,0x0,0x0,0x0,0x23,0x3c,0x37,0x0,0x0,0x0,0x0,0x0,0x24,0x2c,0x28,0x0, - 0x0,0x0,0x0,0x0,0x25,0x1c,0x19,0x0,0x0,0x0,0x0,0x0,0x26,0xc,0xa,0x0, - 0x0,0x0,0x0,0x0,0x27,0x5,0x35,0x80,0x0,0x0,0x0,0x0,0x27,0x7f,0xb4,0xe0, - 0x0,0x0,0x0,0x0,0x27,0xf5,0xa,0x60,0x0,0x0,0x0,0x0,0x28,0xe4,0xed,0x50, - 0x0,0x0,0x0,0x0,0x29,0xd4,0xec,0x60,0x0,0x0,0x0,0x0,0x2a,0xc4,0xcf,0x50, - 0x0,0x0,0x0,0x0,0x2b,0xb4,0xce,0x60,0x0,0x0,0x0,0x0,0x2c,0xa4,0xb1,0x50, - 0x0,0x0,0x0,0x0,0x2d,0x94,0xb0,0x60,0x0,0x0,0x0,0x0,0x2e,0x84,0x93,0x50, - 0x0,0x0,0x0,0x0,0x2f,0x74,0x92,0x60,0x0,0x0,0x0,0x0,0x30,0x64,0x75,0x50, - 0x0,0x0,0x0,0x0,0x31,0x5d,0xae,0xe0,0x0,0x0,0x0,0x0,0x32,0x72,0x7b,0xd0, - 0x0,0x0,0x0,0x0,0x33,0x3d,0xbb,0x10,0x0,0x0,0x0,0x0,0x34,0x52,0x96,0x10, - 0x0,0x0,0x0,0x0,0x35,0x1d,0x9d,0x10,0x0,0x0,0x0,0x0,0x36,0x32,0x78,0x10, - 0x0,0x0,0x0,0x0,0x36,0xfd,0x7f,0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0x94,0x90, - 0x0,0x0,0x0,0x0,0x38,0xdd,0x61,0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0x76,0x90, - 0x0,0x0,0x0,0x0,0x3a,0xbd,0x43,0x10,0x0,0x0,0x0,0x0,0x3b,0xdb,0x58,0x90, - 0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90, - 0x0,0x0,0x0,0x0,0x3e,0x86,0x41,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90, - 0x0,0x0,0x0,0x0,0x40,0x66,0x23,0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x39,0x10, - 0x0,0x0,0x0,0x0,0x42,0x46,0x5,0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x1b,0x10, - 0x0,0x0,0x0,0x0,0x44,0x25,0xe7,0x90,0x0,0x0,0x0,0x0,0x45,0x43,0xfd,0x10, - 0x0,0x0,0x0,0x0,0x46,0x5,0xc9,0x90,0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10, - 0x0,0x0,0x0,0x0,0x47,0xee,0xe6,0x10,0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10, - 0x0,0x0,0x0,0x0,0x49,0xce,0xc8,0x10,0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10, - 0x0,0x0,0x0,0x0,0x4b,0xae,0xaa,0x10,0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90, - 0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c,0x10,0x0,0x0,0x0,0x0,0x4e,0xac,0xa1,0x90, - 0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e,0x10,0x0,0x0,0x0,0x0,0x50,0x8c,0x83,0x90, - 0x0,0x0,0x0,0x0,0x51,0x57,0x8a,0x90,0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90, - 0x0,0x0,0x0,0x0,0x53,0x37,0x6c,0x90,0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90, - 0x0,0x0,0x0,0x0,0x55,0x17,0x4e,0x90,0x0,0x0,0x0,0x0,0x56,0x2c,0x29,0x90, - 0x0,0x0,0x0,0x0,0x56,0xf7,0x30,0x90,0x0,0x0,0x0,0x0,0x58,0x15,0x46,0x10, - 0x0,0x0,0x0,0x0,0x58,0xd7,0x12,0x90,0x0,0x0,0x0,0x0,0x59,0xf5,0x28,0x10, - 0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4,0x90,0x0,0x0,0x0,0x0,0x5b,0xd5,0xa,0x10, - 0x0,0x0,0x0,0x0,0x5c,0xa0,0x11,0x10,0x0,0x0,0x0,0x0,0x5d,0xb4,0xec,0x10, - 0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3,0x10,0x0,0x0,0x0,0x0,0x5f,0x94,0xce,0x10, - 0x0,0x0,0x0,0x0,0x60,0x5f,0xd5,0x10,0x0,0x0,0x0,0x0,0x61,0x7d,0xea,0x90, - 0x0,0x0,0x0,0x0,0x62,0x3f,0xb7,0x10,0x0,0x0,0x0,0x0,0x63,0x5d,0xcc,0x90, - 0x0,0x0,0x0,0x0,0x64,0x1f,0x99,0x10,0x0,0x0,0x0,0x0,0x65,0x3d,0xae,0x90, - 0x0,0x0,0x0,0x0,0x66,0x8,0xb5,0x90,0x0,0x0,0x0,0x0,0x67,0x1d,0x90,0x90, - 0x0,0x0,0x0,0x0,0x67,0xe8,0x97,0x90,0x0,0x0,0x0,0x0,0x68,0xfd,0x72,0x90, - 0x0,0x0,0x0,0x0,0x69,0xc8,0x79,0x90,0x0,0x0,0x0,0x0,0x6a,0xdd,0x54,0x90, - 0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b,0x90,0x0,0x0,0x0,0x0,0x6c,0xc6,0x71,0x10, - 0x0,0x0,0x0,0x0,0x6d,0x88,0x3d,0x90,0x0,0x0,0x0,0x0,0x6e,0xa6,0x53,0x10, - 0x0,0x0,0x0,0x0,0x6f,0x68,0x1f,0x90,0x0,0x0,0x0,0x0,0x70,0x86,0x35,0x10, - 0x0,0x0,0x0,0x0,0x71,0x51,0x3c,0x10,0x0,0x0,0x0,0x0,0x72,0x66,0x17,0x10, - 0x0,0x0,0x0,0x0,0x73,0x31,0x1e,0x10,0x0,0x0,0x0,0x0,0x74,0x45,0xf9,0x10, - 0x0,0x0,0x0,0x0,0x75,0x11,0x0,0x10,0x0,0x0,0x0,0x0,0x76,0x2f,0x15,0x90, - 0x0,0x0,0x0,0x0,0x76,0xf0,0xe2,0x10,0x0,0x0,0x0,0x0,0x78,0xe,0xf7,0x90, - 0x0,0x0,0x0,0x0,0x78,0xd0,0xc4,0x10,0x0,0x0,0x0,0x0,0x79,0xee,0xd9,0x90, - 0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6,0x10,0x0,0x0,0x0,0x0,0x7b,0xce,0xbb,0x90, - 0x0,0x0,0x0,0x0,0x7c,0x99,0xc2,0x90,0x0,0x0,0x0,0x0,0x7d,0xae,0x9d,0x90, - 0x0,0x0,0x0,0x0,0x7e,0x79,0xa4,0x90,0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90, - 0x0,0x1,0x2,0x3,0x4,0x3,0x4,0x3,0x5,0x2,0x6,0x2,0x6,0x2,0x6,0x2, - 0x6,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, - 0x8,0x7,0x2,0x6,0x2,0x6,0x2,0x6,0x2,0x6,0x2,0x6,0x2,0x6,0x2,0x9, - 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9, - 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9, - 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9, - 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9, - 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9, - 0xa,0x0,0x0,0x15,0xdc,0x0,0x0,0x0,0x0,0x1b,0x68,0x0,0x4,0x0,0x0,0x1c, - 0x20,0x0,0x8,0x0,0x0,0xe,0x10,0x0,0xc,0x0,0x0,0x1c,0x20,0x1,0x10,0x0, - 0x0,0xe,0x10,0x0,0xc,0x0,0x0,0x2a,0x30,0x1,0x15,0x0,0x0,0x1c,0x20,0x0, - 0x8,0x0,0x0,0x2a,0x30,0x1,0x15,0x0,0x0,0x2a,0x30,0x1,0x15,0x0,0x0,0x1c, - 0x20,0x0,0x8,0x4c,0x4d,0x54,0x0,0x49,0x4d,0x54,0x0,0x45,0x45,0x54,0x0,0x43, - 0x45,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x45,0x45,0x53,0x54,0x0,0x0,0x0,0x0, - 0x1,0x1,0x0,0x0,0x1,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x1,0x1,0xa,0x45,0x45,0x54,0x2d,0x32,0x45,0x45,0x53,0x54,0x2c,0x4d,0x33, - 0x2e,0x35,0x2e,0x30,0x2f,0x33,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30,0x2f,0x34, - 0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Vilnius - 0x0,0x0,0x8,0x97, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x7a,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x26,0x80,0x0,0x0,0x0,0x9c, - 0x4f,0x1f,0x50,0xa1,0x85,0x4a,0x98,0xa2,0xf1,0x30,0xf0,0xa3,0x66,0x78,0x60,0xc8, - 0xac,0xcf,0x70,0xca,0x59,0x2a,0xd0,0xcc,0xe7,0x4b,0x10,0xcd,0xa9,0x17,0x90,0xce, - 0xa2,0x43,0x10,0xcf,0x92,0x34,0x10,0xd0,0x30,0x3d,0xe0,0x15,0x27,0xa7,0xd0,0x16, - 0x18,0xdc,0x40,0x17,0x8,0xdb,0x50,0x17,0xfa,0xf,0xc0,0x18,0xea,0xe,0xd0,0x19, - 0xdb,0x43,0x40,0x1a,0xcc,0x93,0xd0,0x1b,0xbc,0xa0,0xf0,0x1c,0xac,0x91,0xf0,0x1d, - 0x9c,0x82,0xf0,0x1e,0x8c,0x73,0xf0,0x1f,0x7c,0x64,0xf0,0x20,0x6c,0x55,0xf0,0x21, - 0x5c,0x46,0xf0,0x22,0x4c,0x37,0xf0,0x23,0x3c,0x28,0xf0,0x24,0x2c,0x19,0xf0,0x25, - 0x1c,0x19,0x0,0x26,0xc,0xa,0x0,0x27,0x5,0x35,0x80,0x27,0xf5,0x26,0x80,0x28, - 0xe5,0x17,0x80,0x29,0xd5,0x8,0x80,0x2a,0xc4,0xf9,0x80,0x2b,0xb4,0xea,0x80,0x2c, - 0xa4,0xdb,0x80,0x2d,0x94,0xcc,0x80,0x2e,0x84,0xbd,0x80,0x2f,0x74,0xae,0x80,0x30, - 0x64,0x9f,0x80,0x31,0x5d,0xcb,0x0,0x32,0x72,0xa6,0x0,0x33,0x3d,0xad,0x0,0x34, - 0x52,0x88,0x0,0x34,0xaa,0xc0,0x60,0x35,0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36, - 0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x3e,0x12,0x13,0x60,0x3e,0x86,0x41,0x90,0x3f, - 0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43, - 0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47, - 0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a, - 0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e, - 0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52, - 0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56, - 0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59, - 0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d, - 0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61, - 0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65, - 0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68, - 0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c, - 0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70, - 0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74, - 0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78, - 0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b, - 0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f, - 0x8e,0x7f,0x90,0x1,0x2,0x3,0x4,0x3,0x5,0x8,0x6,0x7,0x6,0x7,0x5,0x9, - 0x5,0x9,0x5,0x9,0x5,0x9,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xc, - 0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc, - 0xd,0x4,0xe,0xf,0xe,0x10,0x4,0x11,0x10,0x11,0x10,0x11,0x10,0x11,0x10,0x11, - 0x10,0x11,0x10,0x11,0x10,0x11,0x10,0x11,0x10,0x11,0x10,0x11,0x10,0x11,0x10,0x11, - 0x10,0x11,0x10,0x11,0x10,0x11,0x10,0x11,0x10,0x11,0x10,0x11,0x10,0x11,0x10,0x11, - 0x10,0x11,0x10,0x11,0x10,0x11,0x10,0x11,0x10,0x11,0x10,0x11,0x10,0x11,0x10,0x11, - 0x10,0x11,0x10,0x11,0x10,0x11,0x10,0x11,0x10,0x11,0x10,0x11,0x10,0x0,0x0,0x17, - 0xbc,0x0,0x0,0x0,0x0,0x13,0xb0,0x0,0x4,0x0,0x0,0x16,0x68,0x0,0x8,0x0, - 0x0,0xe,0x10,0x0,0xc,0x0,0x0,0x1c,0x20,0x0,0x10,0x0,0x0,0x2a,0x30,0x0, - 0x14,0x0,0x0,0xe,0x10,0x0,0xc,0x0,0x0,0x1c,0x20,0x1,0x18,0x0,0x0,0x1c, - 0x20,0x1,0x18,0x0,0x0,0x38,0x40,0x1,0x1d,0x0,0x0,0x2a,0x30,0x0,0x14,0x0, - 0x0,0x38,0x40,0x1,0x1d,0x0,0x0,0x2a,0x30,0x1,0x21,0x0,0x0,0x1c,0x20,0x0, - 0x10,0x0,0x0,0x1c,0x20,0x1,0x18,0x0,0x0,0xe,0x10,0x0,0xc,0x0,0x0,0x1c, - 0x20,0x0,0x10,0x0,0x0,0x2a,0x30,0x1,0x21,0x4c,0x4d,0x54,0x0,0x57,0x4d,0x54, - 0x0,0x4b,0x4d,0x54,0x0,0x43,0x45,0x54,0x0,0x45,0x45,0x54,0x0,0x4d,0x53,0x4b, - 0x0,0x43,0x45,0x53,0x54,0x0,0x4d,0x53,0x44,0x0,0x45,0x45,0x53,0x54,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x1,0x1,0x1,0x1,0x1,0x1,0x1, - 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, - 0x1,0x1,0x1,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x12,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x7b,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x26,0xf8, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x56,0xb6,0xcc,0x44,0xff, - 0xff,0xff,0xff,0x9c,0x4f,0x1f,0x50,0xff,0xff,0xff,0xff,0xa1,0x85,0x4a,0x98,0xff, - 0xff,0xff,0xff,0xa2,0xf1,0x30,0xf0,0xff,0xff,0xff,0xff,0xa3,0x66,0x78,0x60,0xff, - 0xff,0xff,0xff,0xc8,0xac,0xcf,0x70,0xff,0xff,0xff,0xff,0xca,0x59,0x2a,0xd0,0xff, - 0xff,0xff,0xff,0xcc,0xe7,0x4b,0x10,0xff,0xff,0xff,0xff,0xcd,0xa9,0x17,0x90,0xff, - 0xff,0xff,0xff,0xce,0xa2,0x43,0x10,0xff,0xff,0xff,0xff,0xcf,0x92,0x34,0x10,0xff, - 0xff,0xff,0xff,0xd0,0x30,0x3d,0xe0,0x0,0x0,0x0,0x0,0x15,0x27,0xa7,0xd0,0x0, - 0x0,0x0,0x0,0x16,0x18,0xdc,0x40,0x0,0x0,0x0,0x0,0x17,0x8,0xdb,0x50,0x0, - 0x0,0x0,0x0,0x17,0xfa,0xf,0xc0,0x0,0x0,0x0,0x0,0x18,0xea,0xe,0xd0,0x0, - 0x0,0x0,0x0,0x19,0xdb,0x43,0x40,0x0,0x0,0x0,0x0,0x1a,0xcc,0x93,0xd0,0x0, - 0x0,0x0,0x0,0x1b,0xbc,0xa0,0xf0,0x0,0x0,0x0,0x0,0x1c,0xac,0x91,0xf0,0x0, - 0x0,0x0,0x0,0x1d,0x9c,0x82,0xf0,0x0,0x0,0x0,0x0,0x1e,0x8c,0x73,0xf0,0x0, - 0x0,0x0,0x0,0x1f,0x7c,0x64,0xf0,0x0,0x0,0x0,0x0,0x20,0x6c,0x55,0xf0,0x0, - 0x0,0x0,0x0,0x21,0x5c,0x46,0xf0,0x0,0x0,0x0,0x0,0x22,0x4c,0x37,0xf0,0x0, - 0x0,0x0,0x0,0x23,0x3c,0x28,0xf0,0x0,0x0,0x0,0x0,0x24,0x2c,0x19,0xf0,0x0, - 0x0,0x0,0x0,0x25,0x1c,0x19,0x0,0x0,0x0,0x0,0x0,0x26,0xc,0xa,0x0,0x0, - 0x0,0x0,0x0,0x27,0x5,0x35,0x80,0x0,0x0,0x0,0x0,0x27,0xf5,0x26,0x80,0x0, - 0x0,0x0,0x0,0x28,0xe5,0x17,0x80,0x0,0x0,0x0,0x0,0x29,0xd5,0x8,0x80,0x0, - 0x0,0x0,0x0,0x2a,0xc4,0xf9,0x80,0x0,0x0,0x0,0x0,0x2b,0xb4,0xea,0x80,0x0, - 0x0,0x0,0x0,0x2c,0xa4,0xdb,0x80,0x0,0x0,0x0,0x0,0x2d,0x94,0xcc,0x80,0x0, - 0x0,0x0,0x0,0x2e,0x84,0xbd,0x80,0x0,0x0,0x0,0x0,0x2f,0x74,0xae,0x80,0x0, - 0x0,0x0,0x0,0x30,0x64,0x9f,0x80,0x0,0x0,0x0,0x0,0x31,0x5d,0xcb,0x0,0x0, - 0x0,0x0,0x0,0x32,0x72,0xa6,0x0,0x0,0x0,0x0,0x0,0x33,0x3d,0xad,0x0,0x0, - 0x0,0x0,0x0,0x34,0x52,0x88,0x0,0x0,0x0,0x0,0x0,0x34,0xaa,0xc0,0x60,0x0, - 0x0,0x0,0x0,0x35,0x1d,0x9d,0x10,0x0,0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0, - 0x0,0x0,0x0,0x36,0xfd,0x7f,0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0, - 0x0,0x0,0x0,0x3e,0x12,0x13,0x60,0x0,0x0,0x0,0x0,0x3e,0x86,0x41,0x90,0x0, - 0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66,0x23,0x90,0x0, - 0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46,0x5,0x90,0x0, - 0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25,0xe7,0x90,0x0, - 0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5,0xc9,0x90,0x0, - 0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee,0xe6,0x10,0x0, - 0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce,0xc8,0x10,0x0, - 0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae,0xaa,0x10,0x0, - 0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c,0x10,0x0, - 0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e,0x10,0x0, - 0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57,0x8a,0x90,0x0, - 0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37,0x6c,0x90,0x0, - 0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17,0x4e,0x90,0x0, - 0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7,0x30,0x90,0x0, - 0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7,0x12,0x90,0x0, - 0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4,0x90,0x0, - 0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0,0x11,0x10,0x0, - 0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3,0x10,0x0, - 0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f,0xd5,0x10,0x0, - 0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f,0xb7,0x10,0x0, - 0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f,0x99,0x10,0x0, - 0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8,0xb5,0x90,0x0, - 0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8,0x97,0x90,0x0, - 0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8,0x79,0x90,0x0, - 0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b,0x90,0x0, - 0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88,0x3d,0x90,0x0, - 0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68,0x1f,0x90,0x0, - 0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51,0x3c,0x10,0x0, - 0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31,0x1e,0x10,0x0, - 0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11,0x0,0x10,0x0, - 0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0,0xe2,0x10,0x0, - 0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0,0xc4,0x10,0x0, - 0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6,0x10,0x0, - 0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99,0xc2,0x90,0x0, - 0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79,0xa4,0x90,0x0, - 0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x1,0x2,0x3,0x4,0x3,0x5,0x8,0x6, - 0x7,0x6,0x7,0x5,0x9,0x5,0x9,0x5,0x9,0x5,0x9,0xa,0xb,0xa,0xb,0xa, - 0xb,0xa,0xb,0xa,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd, - 0xc,0xd,0xc,0xd,0xc,0xd,0x4,0xe,0xf,0xe,0x10,0x4,0x11,0x10,0x11,0x10, - 0x11,0x10,0x11,0x10,0x11,0x10,0x11,0x10,0x11,0x10,0x11,0x10,0x11,0x10,0x11,0x10, - 0x11,0x10,0x11,0x10,0x11,0x10,0x11,0x10,0x11,0x10,0x11,0x10,0x11,0x10,0x11,0x10, - 0x11,0x10,0x11,0x10,0x11,0x10,0x11,0x10,0x11,0x10,0x11,0x10,0x11,0x10,0x11,0x10, - 0x11,0x10,0x11,0x10,0x11,0x10,0x11,0x10,0x11,0x10,0x11,0x10,0x11,0x10,0x11,0x10, - 0x11,0x10,0x0,0x0,0x17,0xbc,0x0,0x0,0x0,0x0,0x13,0xb0,0x0,0x4,0x0,0x0, - 0x16,0x68,0x0,0x8,0x0,0x0,0xe,0x10,0x0,0xc,0x0,0x0,0x1c,0x20,0x0,0x10, - 0x0,0x0,0x2a,0x30,0x0,0x14,0x0,0x0,0xe,0x10,0x0,0xc,0x0,0x0,0x1c,0x20, - 0x1,0x18,0x0,0x0,0x1c,0x20,0x1,0x18,0x0,0x0,0x38,0x40,0x1,0x1d,0x0,0x0, - 0x2a,0x30,0x0,0x14,0x0,0x0,0x38,0x40,0x1,0x1d,0x0,0x0,0x2a,0x30,0x1,0x21, - 0x0,0x0,0x1c,0x20,0x0,0x10,0x0,0x0,0x1c,0x20,0x1,0x18,0x0,0x0,0xe,0x10, - 0x0,0xc,0x0,0x0,0x1c,0x20,0x0,0x10,0x0,0x0,0x2a,0x30,0x1,0x21,0x4c,0x4d, - 0x54,0x0,0x57,0x4d,0x54,0x0,0x4b,0x4d,0x54,0x0,0x43,0x45,0x54,0x0,0x45,0x45, - 0x54,0x0,0x4d,0x53,0x4b,0x0,0x43,0x45,0x53,0x54,0x0,0x4d,0x53,0x44,0x0,0x45, - 0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x1,0x1, - 0x1,0x1,0x1,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1,0xa,0x45,0x45,0x54,0x2d,0x32,0x45,0x45, - 0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2f,0x33,0x2c,0x4d,0x31,0x30,0x2e, - 0x35,0x2e,0x30,0x2f,0x34,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Isle_of_Man - 0x0,0x0,0xe,0x67, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xf3,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x11,0x80,0x0,0x0,0x0,0x9b, - 0x26,0xad,0xa0,0x9b,0xd6,0x5,0x20,0x9c,0xcf,0x30,0xa0,0x9d,0xa4,0xc3,0xa0,0x9e, - 0x9c,0x9d,0xa0,0x9f,0x97,0x1a,0xa0,0xa0,0x85,0xba,0x20,0xa1,0x76,0xfc,0xa0,0xa2, - 0x65,0x9c,0x20,0xa3,0x7b,0xc8,0xa0,0xa4,0x4e,0xb8,0xa0,0xa5,0x3f,0xfb,0x20,0xa6, - 0x25,0x60,0x20,0xa7,0x27,0xc6,0x20,0xa8,0x2a,0x2c,0x20,0xa8,0xeb,0xf8,0xa0,0xaa, - 0x0,0xd3,0xa0,0xaa,0xd5,0x15,0x20,0xab,0xe9,0xf0,0x20,0xac,0xc7,0x6c,0x20,0xad, - 0xc9,0xd2,0x20,0xae,0xa7,0x4e,0x20,0xaf,0xa0,0x79,0xa0,0xb0,0x87,0x30,0x20,0xb1, - 0x92,0xd0,0xa0,0xb2,0x70,0x4c,0xa0,0xb3,0x72,0xb2,0xa0,0xb4,0x50,0x2e,0xa0,0xb5, - 0x49,0x5a,0x20,0xb6,0x30,0x10,0xa0,0xb7,0x32,0x76,0xa0,0xb8,0xf,0xf2,0xa0,0xb9, - 0x12,0x58,0xa0,0xb9,0xef,0xd4,0xa0,0xba,0xe9,0x0,0x20,0xbb,0xd8,0xf1,0x20,0xbc, - 0xdb,0x57,0x20,0xbd,0xb8,0xd3,0x20,0xbe,0xb1,0xfe,0xa0,0xbf,0x98,0xb5,0x20,0xc0, - 0x9b,0x1b,0x20,0xc1,0x78,0x97,0x20,0xc2,0x7a,0xfd,0x20,0xc3,0x58,0x79,0x20,0xc4, - 0x51,0xa4,0xa0,0xc5,0x38,0x5b,0x20,0xc6,0x3a,0xc1,0x20,0xc7,0x58,0xd6,0xa0,0xc7, - 0xda,0x9,0xa0,0xca,0x16,0x26,0x90,0xca,0x97,0x59,0x90,0xcb,0xd1,0x1e,0x90,0xcc, - 0x77,0x3b,0x90,0xcd,0xb1,0x0,0x90,0xce,0x60,0x58,0x10,0xcf,0x90,0xe2,0x90,0xd0, - 0x6e,0x5e,0x90,0xd1,0x72,0x16,0x10,0xd1,0xfb,0x32,0x10,0xd2,0x69,0xfe,0x20,0xd3, - 0x63,0x29,0xa0,0xd4,0x49,0xe0,0x20,0xd5,0x1e,0x21,0xa0,0xd5,0x42,0xfd,0x90,0xd5, - 0xdf,0xe0,0x10,0xd6,0x4e,0xac,0x20,0xd6,0xfe,0x3,0xa0,0xd8,0x2e,0x8e,0x20,0xd8, - 0xf9,0x95,0x20,0xda,0xe,0x70,0x20,0xda,0xeb,0xec,0x20,0xdb,0xe5,0x17,0xa0,0xdc, - 0xcb,0xce,0x20,0xdd,0xc4,0xf9,0xa0,0xde,0xb4,0xea,0xa0,0xdf,0xae,0x16,0x20,0xe0, - 0x94,0xcc,0xa0,0xe1,0x72,0x48,0xa0,0xe2,0x6b,0x74,0x20,0xe3,0x52,0x2a,0xa0,0xe4, - 0x54,0x90,0xa0,0xe5,0x32,0xc,0xa0,0xe6,0x3d,0xad,0x20,0xe7,0x1b,0x29,0x20,0xe8, - 0x14,0x54,0xa0,0xe8,0xfb,0xb,0x20,0xe9,0xfd,0x71,0x20,0xea,0xda,0xed,0x20,0xeb, - 0xdd,0x53,0x20,0xec,0xba,0xcf,0x20,0xed,0xb3,0xfa,0xa0,0xee,0x9a,0xb1,0x20,0xef, - 0x81,0x67,0xa0,0xf0,0x9f,0x7d,0x20,0xf1,0x61,0x49,0xa0,0xf2,0x7f,0x5f,0x20,0xf3, - 0x4a,0x66,0x20,0xf4,0x5f,0x41,0x20,0xf5,0x21,0xd,0xa0,0xf6,0x3f,0x23,0x20,0xf7, - 0x0,0xef,0xa0,0xf8,0x1f,0x5,0x20,0xf8,0xe0,0xd1,0xa0,0xf9,0xfe,0xe7,0x20,0xfa, - 0xc0,0xb3,0xa0,0xfb,0xe8,0x3,0xa0,0xfc,0x7b,0xab,0xa0,0xfd,0xc7,0xbb,0x70,0x3, - 0x70,0xc6,0x20,0x4,0x29,0x58,0x20,0x5,0x50,0xa8,0x20,0x6,0x9,0x3a,0x20,0x7, - 0x30,0x8a,0x20,0x7,0xe9,0x1c,0x20,0x9,0x10,0x6c,0x20,0x9,0xc8,0xfe,0x20,0xa, - 0xf0,0x4e,0x20,0xb,0xb2,0x1a,0xa0,0xc,0xd0,0x30,0x20,0xd,0x91,0xfc,0xa0,0xe, - 0xb0,0x12,0x20,0xf,0x71,0xde,0xa0,0x10,0x99,0x2e,0xa0,0x11,0x51,0xc0,0xa0,0x12, - 0x79,0x10,0xa0,0x13,0x31,0xa2,0xa0,0x14,0x58,0xf2,0xa0,0x15,0x23,0xeb,0x90,0x16, - 0x38,0xc6,0x90,0x17,0x3,0xcd,0x90,0x18,0x18,0xa8,0x90,0x18,0xe3,0xaf,0x90,0x19, - 0xf8,0x8a,0x90,0x1a,0xc3,0x91,0x90,0x1b,0xe1,0xa7,0x10,0x1c,0xac,0xae,0x10,0x1d, - 0xc1,0x89,0x10,0x1e,0x8c,0x90,0x10,0x1f,0xa1,0x6b,0x10,0x20,0x6c,0x72,0x10,0x21, - 0x81,0x4d,0x10,0x22,0x4c,0x54,0x10,0x23,0x61,0x2f,0x10,0x24,0x2c,0x36,0x10,0x25, - 0x4a,0x4b,0x90,0x26,0xc,0x18,0x10,0x27,0x2a,0x2d,0x90,0x27,0xf5,0x34,0x90,0x29, - 0xa,0xf,0x90,0x29,0xd5,0x16,0x90,0x2a,0xe9,0xf1,0x90,0x2b,0xb4,0xf8,0x90,0x2c, - 0xc9,0xd3,0x90,0x2d,0x94,0xda,0x90,0x2e,0xa9,0xb5,0x90,0x2f,0x74,0xbc,0x90,0x30, - 0x89,0x97,0x90,0x30,0xe7,0x24,0x0,0x31,0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33, - 0x3d,0xbb,0x10,0x34,0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36, - 0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a, - 0xbd,0x43,0x10,0x3b,0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e, - 0x86,0x41,0x90,0x3f,0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42, - 0x46,0x5,0x90,0x43,0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46, - 0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49, - 0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d, - 0x8e,0x8c,0x10,0x4e,0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51, - 0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55, - 0x17,0x4e,0x90,0x56,0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58, - 0xd7,0x12,0x90,0x59,0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c, - 0xa0,0x11,0x10,0x5d,0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60, - 0x5f,0xd5,0x10,0x61,0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64, - 0x1f,0x99,0x10,0x65,0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67, - 0xe8,0x97,0x90,0x68,0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b, - 0xa8,0x5b,0x90,0x6c,0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f, - 0x68,0x1f,0x90,0x70,0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73, - 0x31,0x1e,0x10,0x74,0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76, - 0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a, - 0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e, - 0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3, - 0x1,0x3,0x1,0x2,0x1,0x2,0x1,0x3,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x4,0x6,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x7,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0xff,0xff,0xff,0xb5,0x0,0x0, - 0x0,0x0,0xe,0x10,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x1c,0x20, - 0x1,0xc,0x0,0x0,0xe,0x10,0x0,0x4,0x0,0x0,0xe,0x10,0x1,0x4,0x0,0x0, - 0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x42,0x53, - 0x54,0x0,0x47,0x4d,0x54,0x0,0x42,0x44,0x53,0x54,0x0,0x0,0x1,0x1,0x1,0x0, - 0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x54,0x5a,0x69,0x66,0x32, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf4,0x0, - 0x0,0x0,0x8,0x0,0x0,0x0,0x11,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff, - 0xff,0xff,0xff,0x1a,0x5d,0x9,0xcb,0xff,0xff,0xff,0xff,0x9b,0x26,0xad,0xa0,0xff, - 0xff,0xff,0xff,0x9b,0xd6,0x5,0x20,0xff,0xff,0xff,0xff,0x9c,0xcf,0x30,0xa0,0xff, - 0xff,0xff,0xff,0x9d,0xa4,0xc3,0xa0,0xff,0xff,0xff,0xff,0x9e,0x9c,0x9d,0xa0,0xff, - 0xff,0xff,0xff,0x9f,0x97,0x1a,0xa0,0xff,0xff,0xff,0xff,0xa0,0x85,0xba,0x20,0xff, - 0xff,0xff,0xff,0xa1,0x76,0xfc,0xa0,0xff,0xff,0xff,0xff,0xa2,0x65,0x9c,0x20,0xff, - 0xff,0xff,0xff,0xa3,0x7b,0xc8,0xa0,0xff,0xff,0xff,0xff,0xa4,0x4e,0xb8,0xa0,0xff, - 0xff,0xff,0xff,0xa5,0x3f,0xfb,0x20,0xff,0xff,0xff,0xff,0xa6,0x25,0x60,0x20,0xff, - 0xff,0xff,0xff,0xa7,0x27,0xc6,0x20,0xff,0xff,0xff,0xff,0xa8,0x2a,0x2c,0x20,0xff, - 0xff,0xff,0xff,0xa8,0xeb,0xf8,0xa0,0xff,0xff,0xff,0xff,0xaa,0x0,0xd3,0xa0,0xff, - 0xff,0xff,0xff,0xaa,0xd5,0x15,0x20,0xff,0xff,0xff,0xff,0xab,0xe9,0xf0,0x20,0xff, - 0xff,0xff,0xff,0xac,0xc7,0x6c,0x20,0xff,0xff,0xff,0xff,0xad,0xc9,0xd2,0x20,0xff, - 0xff,0xff,0xff,0xae,0xa7,0x4e,0x20,0xff,0xff,0xff,0xff,0xaf,0xa0,0x79,0xa0,0xff, - 0xff,0xff,0xff,0xb0,0x87,0x30,0x20,0xff,0xff,0xff,0xff,0xb1,0x92,0xd0,0xa0,0xff, - 0xff,0xff,0xff,0xb2,0x70,0x4c,0xa0,0xff,0xff,0xff,0xff,0xb3,0x72,0xb2,0xa0,0xff, - 0xff,0xff,0xff,0xb4,0x50,0x2e,0xa0,0xff,0xff,0xff,0xff,0xb5,0x49,0x5a,0x20,0xff, - 0xff,0xff,0xff,0xb6,0x30,0x10,0xa0,0xff,0xff,0xff,0xff,0xb7,0x32,0x76,0xa0,0xff, - 0xff,0xff,0xff,0xb8,0xf,0xf2,0xa0,0xff,0xff,0xff,0xff,0xb9,0x12,0x58,0xa0,0xff, - 0xff,0xff,0xff,0xb9,0xef,0xd4,0xa0,0xff,0xff,0xff,0xff,0xba,0xe9,0x0,0x20,0xff, - 0xff,0xff,0xff,0xbb,0xd8,0xf1,0x20,0xff,0xff,0xff,0xff,0xbc,0xdb,0x57,0x20,0xff, - 0xff,0xff,0xff,0xbd,0xb8,0xd3,0x20,0xff,0xff,0xff,0xff,0xbe,0xb1,0xfe,0xa0,0xff, - 0xff,0xff,0xff,0xbf,0x98,0xb5,0x20,0xff,0xff,0xff,0xff,0xc0,0x9b,0x1b,0x20,0xff, - 0xff,0xff,0xff,0xc1,0x78,0x97,0x20,0xff,0xff,0xff,0xff,0xc2,0x7a,0xfd,0x20,0xff, - 0xff,0xff,0xff,0xc3,0x58,0x79,0x20,0xff,0xff,0xff,0xff,0xc4,0x51,0xa4,0xa0,0xff, - 0xff,0xff,0xff,0xc5,0x38,0x5b,0x20,0xff,0xff,0xff,0xff,0xc6,0x3a,0xc1,0x20,0xff, - 0xff,0xff,0xff,0xc7,0x58,0xd6,0xa0,0xff,0xff,0xff,0xff,0xc7,0xda,0x9,0xa0,0xff, - 0xff,0xff,0xff,0xca,0x16,0x26,0x90,0xff,0xff,0xff,0xff,0xca,0x97,0x59,0x90,0xff, - 0xff,0xff,0xff,0xcb,0xd1,0x1e,0x90,0xff,0xff,0xff,0xff,0xcc,0x77,0x3b,0x90,0xff, - 0xff,0xff,0xff,0xcd,0xb1,0x0,0x90,0xff,0xff,0xff,0xff,0xce,0x60,0x58,0x10,0xff, - 0xff,0xff,0xff,0xcf,0x90,0xe2,0x90,0xff,0xff,0xff,0xff,0xd0,0x6e,0x5e,0x90,0xff, - 0xff,0xff,0xff,0xd1,0x72,0x16,0x10,0xff,0xff,0xff,0xff,0xd1,0xfb,0x32,0x10,0xff, - 0xff,0xff,0xff,0xd2,0x69,0xfe,0x20,0xff,0xff,0xff,0xff,0xd3,0x63,0x29,0xa0,0xff, - 0xff,0xff,0xff,0xd4,0x49,0xe0,0x20,0xff,0xff,0xff,0xff,0xd5,0x1e,0x21,0xa0,0xff, - 0xff,0xff,0xff,0xd5,0x42,0xfd,0x90,0xff,0xff,0xff,0xff,0xd5,0xdf,0xe0,0x10,0xff, - 0xff,0xff,0xff,0xd6,0x4e,0xac,0x20,0xff,0xff,0xff,0xff,0xd6,0xfe,0x3,0xa0,0xff, - 0xff,0xff,0xff,0xd8,0x2e,0x8e,0x20,0xff,0xff,0xff,0xff,0xd8,0xf9,0x95,0x20,0xff, - 0xff,0xff,0xff,0xda,0xe,0x70,0x20,0xff,0xff,0xff,0xff,0xda,0xeb,0xec,0x20,0xff, - 0xff,0xff,0xff,0xdb,0xe5,0x17,0xa0,0xff,0xff,0xff,0xff,0xdc,0xcb,0xce,0x20,0xff, - 0xff,0xff,0xff,0xdd,0xc4,0xf9,0xa0,0xff,0xff,0xff,0xff,0xde,0xb4,0xea,0xa0,0xff, - 0xff,0xff,0xff,0xdf,0xae,0x16,0x20,0xff,0xff,0xff,0xff,0xe0,0x94,0xcc,0xa0,0xff, - 0xff,0xff,0xff,0xe1,0x72,0x48,0xa0,0xff,0xff,0xff,0xff,0xe2,0x6b,0x74,0x20,0xff, - 0xff,0xff,0xff,0xe3,0x52,0x2a,0xa0,0xff,0xff,0xff,0xff,0xe4,0x54,0x90,0xa0,0xff, - 0xff,0xff,0xff,0xe5,0x32,0xc,0xa0,0xff,0xff,0xff,0xff,0xe6,0x3d,0xad,0x20,0xff, - 0xff,0xff,0xff,0xe7,0x1b,0x29,0x20,0xff,0xff,0xff,0xff,0xe8,0x14,0x54,0xa0,0xff, - 0xff,0xff,0xff,0xe8,0xfb,0xb,0x20,0xff,0xff,0xff,0xff,0xe9,0xfd,0x71,0x20,0xff, - 0xff,0xff,0xff,0xea,0xda,0xed,0x20,0xff,0xff,0xff,0xff,0xeb,0xdd,0x53,0x20,0xff, - 0xff,0xff,0xff,0xec,0xba,0xcf,0x20,0xff,0xff,0xff,0xff,0xed,0xb3,0xfa,0xa0,0xff, - 0xff,0xff,0xff,0xee,0x9a,0xb1,0x20,0xff,0xff,0xff,0xff,0xef,0x81,0x67,0xa0,0xff, - 0xff,0xff,0xff,0xf0,0x9f,0x7d,0x20,0xff,0xff,0xff,0xff,0xf1,0x61,0x49,0xa0,0xff, - 0xff,0xff,0xff,0xf2,0x7f,0x5f,0x20,0xff,0xff,0xff,0xff,0xf3,0x4a,0x66,0x20,0xff, - 0xff,0xff,0xff,0xf4,0x5f,0x41,0x20,0xff,0xff,0xff,0xff,0xf5,0x21,0xd,0xa0,0xff, - 0xff,0xff,0xff,0xf6,0x3f,0x23,0x20,0xff,0xff,0xff,0xff,0xf7,0x0,0xef,0xa0,0xff, - 0xff,0xff,0xff,0xf8,0x1f,0x5,0x20,0xff,0xff,0xff,0xff,0xf8,0xe0,0xd1,0xa0,0xff, - 0xff,0xff,0xff,0xf9,0xfe,0xe7,0x20,0xff,0xff,0xff,0xff,0xfa,0xc0,0xb3,0xa0,0xff, - 0xff,0xff,0xff,0xfb,0xe8,0x3,0xa0,0xff,0xff,0xff,0xff,0xfc,0x7b,0xab,0xa0,0xff, - 0xff,0xff,0xff,0xfd,0xc7,0xbb,0x70,0x0,0x0,0x0,0x0,0x3,0x70,0xc6,0x20,0x0, - 0x0,0x0,0x0,0x4,0x29,0x58,0x20,0x0,0x0,0x0,0x0,0x5,0x50,0xa8,0x20,0x0, - 0x0,0x0,0x0,0x6,0x9,0x3a,0x20,0x0,0x0,0x0,0x0,0x7,0x30,0x8a,0x20,0x0, - 0x0,0x0,0x0,0x7,0xe9,0x1c,0x20,0x0,0x0,0x0,0x0,0x9,0x10,0x6c,0x20,0x0, - 0x0,0x0,0x0,0x9,0xc8,0xfe,0x20,0x0,0x0,0x0,0x0,0xa,0xf0,0x4e,0x20,0x0, - 0x0,0x0,0x0,0xb,0xb2,0x1a,0xa0,0x0,0x0,0x0,0x0,0xc,0xd0,0x30,0x20,0x0, - 0x0,0x0,0x0,0xd,0x91,0xfc,0xa0,0x0,0x0,0x0,0x0,0xe,0xb0,0x12,0x20,0x0, - 0x0,0x0,0x0,0xf,0x71,0xde,0xa0,0x0,0x0,0x0,0x0,0x10,0x99,0x2e,0xa0,0x0, - 0x0,0x0,0x0,0x11,0x51,0xc0,0xa0,0x0,0x0,0x0,0x0,0x12,0x79,0x10,0xa0,0x0, - 0x0,0x0,0x0,0x13,0x31,0xa2,0xa0,0x0,0x0,0x0,0x0,0x14,0x58,0xf2,0xa0,0x0, - 0x0,0x0,0x0,0x15,0x23,0xeb,0x90,0x0,0x0,0x0,0x0,0x16,0x38,0xc6,0x90,0x0, - 0x0,0x0,0x0,0x17,0x3,0xcd,0x90,0x0,0x0,0x0,0x0,0x18,0x18,0xa8,0x90,0x0, - 0x0,0x0,0x0,0x18,0xe3,0xaf,0x90,0x0,0x0,0x0,0x0,0x19,0xf8,0x8a,0x90,0x0, - 0x0,0x0,0x0,0x1a,0xc3,0x91,0x90,0x0,0x0,0x0,0x0,0x1b,0xe1,0xa7,0x10,0x0, - 0x0,0x0,0x0,0x1c,0xac,0xae,0x10,0x0,0x0,0x0,0x0,0x1d,0xc1,0x89,0x10,0x0, - 0x0,0x0,0x0,0x1e,0x8c,0x90,0x10,0x0,0x0,0x0,0x0,0x1f,0xa1,0x6b,0x10,0x0, - 0x0,0x0,0x0,0x20,0x6c,0x72,0x10,0x0,0x0,0x0,0x0,0x21,0x81,0x4d,0x10,0x0, - 0x0,0x0,0x0,0x22,0x4c,0x54,0x10,0x0,0x0,0x0,0x0,0x23,0x61,0x2f,0x10,0x0, - 0x0,0x0,0x0,0x24,0x2c,0x36,0x10,0x0,0x0,0x0,0x0,0x25,0x4a,0x4b,0x90,0x0, - 0x0,0x0,0x0,0x26,0xc,0x18,0x10,0x0,0x0,0x0,0x0,0x27,0x2a,0x2d,0x90,0x0, - 0x0,0x0,0x0,0x27,0xf5,0x34,0x90,0x0,0x0,0x0,0x0,0x29,0xa,0xf,0x90,0x0, - 0x0,0x0,0x0,0x29,0xd5,0x16,0x90,0x0,0x0,0x0,0x0,0x2a,0xe9,0xf1,0x90,0x0, - 0x0,0x0,0x0,0x2b,0xb4,0xf8,0x90,0x0,0x0,0x0,0x0,0x2c,0xc9,0xd3,0x90,0x0, - 0x0,0x0,0x0,0x2d,0x94,0xda,0x90,0x0,0x0,0x0,0x0,0x2e,0xa9,0xb5,0x90,0x0, - 0x0,0x0,0x0,0x2f,0x74,0xbc,0x90,0x0,0x0,0x0,0x0,0x30,0x89,0x97,0x90,0x0, - 0x0,0x0,0x0,0x30,0xe7,0x24,0x0,0x0,0x0,0x0,0x0,0x31,0x5d,0xd9,0x10,0x0, - 0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d,0xbb,0x10,0x0, - 0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d,0x9d,0x10,0x0, - 0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd,0x7f,0x10,0x0, - 0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd,0x61,0x10,0x0, - 0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd,0x43,0x10,0x0, - 0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f,0x90,0x0, - 0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86,0x41,0x90,0x0, - 0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66,0x23,0x90,0x0, - 0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46,0x5,0x90,0x0, - 0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25,0xe7,0x90,0x0, - 0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5,0xc9,0x90,0x0, - 0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee,0xe6,0x10,0x0, - 0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce,0xc8,0x10,0x0, - 0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae,0xaa,0x10,0x0, - 0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c,0x10,0x0, - 0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e,0x10,0x0, - 0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57,0x8a,0x90,0x0, - 0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37,0x6c,0x90,0x0, - 0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17,0x4e,0x90,0x0, - 0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7,0x30,0x90,0x0, - 0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7,0x12,0x90,0x0, - 0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4,0x90,0x0, - 0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0,0x11,0x10,0x0, - 0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3,0x10,0x0, - 0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f,0xd5,0x10,0x0, - 0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f,0xb7,0x10,0x0, - 0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f,0x99,0x10,0x0, - 0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8,0xb5,0x90,0x0, - 0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8,0x97,0x90,0x0, - 0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8,0x79,0x90,0x0, - 0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b,0x90,0x0, - 0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88,0x3d,0x90,0x0, - 0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68,0x1f,0x90,0x0, - 0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51,0x3c,0x10,0x0, - 0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31,0x1e,0x10,0x0, - 0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11,0x0,0x10,0x0, - 0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0,0xe2,0x10,0x0, - 0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0,0xc4,0x10,0x0, - 0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6,0x10,0x0, - 0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99,0xc2,0x90,0x0, - 0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79,0xa4,0x90,0x0, - 0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xba,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0x9e, + 0xa6,0x48,0xa0,0x9f,0xbb,0x15,0x90,0xa0,0x86,0x2a,0xa0,0xa1,0x9a,0xf7,0x90,0xcb, + 0x89,0x1a,0xa0,0xd2,0x23,0xf4,0x70,0xd2,0x61,0x26,0x10,0xd6,0xfe,0x74,0x5c,0xd8, + 0x80,0xad,0x90,0xda,0xfe,0xc3,0x90,0xdb,0xc0,0x90,0x10,0xdc,0xde,0xa5,0x90,0xdd, + 0xa9,0xac,0x90,0xde,0xbe,0x87,0x90,0xdf,0x89,0x8e,0x90,0xe0,0x9e,0x69,0x90,0xe1, + 0x69,0x70,0x90,0xe2,0x7e,0x4b,0x90,0xe3,0x49,0x52,0x90,0xe4,0x5e,0x2d,0x90,0xe5, + 0x29,0x34,0x90,0xe6,0x47,0x4a,0x10,0xe7,0x12,0x51,0x10,0xe8,0x27,0x2c,0x10,0xe8, + 0xf2,0x33,0x10,0xea,0x7,0xe,0x10,0xea,0xd2,0x15,0x10,0xeb,0xe6,0xf0,0x10,0xec, + 0xb1,0xf7,0x10,0xed,0xc6,0xd2,0x10,0xee,0x91,0xd9,0x10,0xef,0xaf,0xee,0x90,0xf0, + 0x71,0xbb,0x10,0xf1,0x8f,0xd0,0x90,0xf2,0x7f,0xc1,0x90,0xf3,0x6f,0xb2,0x90,0xf4, + 0x5f,0xa3,0x90,0xf5,0x4f,0x94,0x90,0xf6,0x3f,0x85,0x90,0xf7,0x2f,0x76,0x90,0xf8, + 0x28,0xa2,0x10,0xf9,0xf,0x58,0x90,0xfa,0x8,0x84,0x10,0xfa,0xf8,0x83,0x20,0xfb, + 0xe8,0x66,0x10,0xfc,0xd8,0x65,0x20,0xfd,0xc8,0x48,0x10,0xfe,0xb8,0x47,0x20,0xff, + 0xa8,0x2a,0x10,0x0,0x98,0x29,0x20,0x1,0x88,0xc,0x10,0x2,0x78,0xb,0x20,0x3, + 0x71,0x28,0x90,0x4,0x61,0x27,0xa0,0x5,0x51,0xa,0x90,0x6,0x41,0x9,0xa0,0x7, + 0x30,0xec,0x90,0x7,0x8d,0x43,0xa0,0x9,0x10,0xce,0x90,0x9,0xad,0xbf,0x20,0xa, + 0xf0,0xb0,0x90,0xb,0xe0,0xaf,0xa0,0xc,0xd9,0xcd,0x10,0xd,0xc0,0x91,0xa0,0xe, + 0xb9,0xaf,0x10,0xf,0xa9,0xae,0x20,0x10,0x99,0x91,0x10,0x11,0x89,0x90,0x20,0x12, + 0x79,0x73,0x10,0x13,0x69,0x72,0x20,0x14,0x59,0x55,0x10,0x15,0x49,0x54,0x20,0x16, + 0x39,0x37,0x10,0x17,0x29,0x36,0x20,0x18,0x22,0x53,0x90,0x19,0x9,0x18,0x20,0x1a, + 0x2,0x35,0x90,0x1a,0xf2,0x34,0xa0,0x1b,0xe2,0x17,0x90,0x1c,0xd2,0x16,0xa0,0x1d, + 0xc1,0xf9,0x90,0x1e,0xb1,0xf8,0xa0,0x1f,0xa1,0xdb,0x90,0x20,0x76,0x2b,0x20,0x21, + 0x81,0xbd,0x90,0x22,0x56,0xd,0x20,0x23,0x6a,0xda,0x10,0x24,0x35,0xef,0x20,0x25, + 0x4a,0xbc,0x10,0x26,0x15,0xd1,0x20,0x27,0x2a,0x9e,0x10,0x27,0xfe,0xed,0xa0,0x29, + 0xa,0x80,0x10,0x29,0xde,0xcf,0xa0,0x2a,0xea,0x62,0x10,0x2b,0xbe,0xb1,0xa0,0x2c, + 0xd3,0x7e,0x90,0x2d,0x9e,0x93,0xa0,0x2e,0xb3,0x60,0x90,0x2f,0x7e,0x75,0xa0,0x30, + 0x93,0x42,0x90,0x31,0x67,0x92,0x20,0x32,0x73,0x24,0x90,0x33,0x47,0x74,0x20,0x34, + 0x53,0x6,0x90,0x35,0x27,0x56,0x20,0x36,0x32,0xe8,0x90,0x37,0x7,0x38,0x20,0x38, + 0x1c,0x5,0x10,0x38,0xe7,0x1a,0x20,0x39,0xfb,0xe7,0x10,0x3a,0xc6,0xfc,0x20,0x3b, + 0xdb,0xc9,0x10,0x3c,0xb0,0x18,0xa0,0x3d,0xbb,0xab,0x10,0x3e,0x8f,0xfa,0xa0,0x3f, + 0x9b,0x8d,0x10,0x40,0x6f,0xdc,0xa0,0x41,0x84,0xa9,0x90,0x42,0x4f,0xbe,0xa0,0x43, + 0x64,0x8b,0x90,0x44,0x2f,0xa0,0xa0,0x45,0x44,0x6d,0x90,0x45,0xf3,0xd3,0x20,0x47, + 0x2d,0x8a,0x10,0x47,0xd3,0xb5,0x20,0x49,0xd,0x6c,0x10,0x49,0xb3,0x97,0x20,0x4a, + 0xed,0x4e,0x10,0x4b,0x9c,0xb3,0xa0,0x4c,0xd6,0x6a,0x90,0x4d,0x7c,0x95,0xa0,0x4e, + 0xb6,0x4c,0x90,0x4f,0x5c,0x77,0xa0,0x50,0x96,0x2e,0x90,0x51,0x3c,0x59,0xa0,0x52, + 0x76,0x10,0x90,0x53,0x1c,0x3b,0xa0,0x54,0x55,0xf2,0x90,0x54,0xfc,0x1d,0xa0,0x56, + 0x35,0xd4,0x90,0x56,0xe5,0x3a,0x20,0x58,0x1e,0xf1,0x10,0x58,0xc5,0x1c,0x20,0x59, + 0xfe,0xd3,0x10,0x5a,0xa4,0xfe,0x20,0x5b,0xde,0xb5,0x10,0x5c,0x84,0xe0,0x20,0x5d, + 0xbe,0x97,0x10,0x5e,0x64,0xc2,0x20,0x5f,0x9e,0x79,0x10,0x60,0x4d,0xde,0xa0,0x61, + 0x87,0x95,0x90,0x62,0x2d,0xc0,0xa0,0x63,0x67,0x77,0x90,0x64,0xd,0xa2,0xa0,0x65, + 0x47,0x59,0x90,0x65,0xed,0x84,0xa0,0x67,0x27,0x3b,0x90,0x67,0xcd,0x66,0xa0,0x69, + 0x7,0x1d,0x90,0x69,0xad,0x48,0xa0,0x6a,0xe6,0xff,0x90,0x6b,0x96,0x65,0x20,0x6c, + 0xd0,0x1c,0x10,0x6d,0x76,0x47,0x20,0x6e,0xaf,0xfe,0x10,0x6f,0x56,0x29,0x20,0x70, + 0x8f,0xe0,0x10,0x71,0x36,0xb,0x20,0x72,0x6f,0xc2,0x10,0x73,0x15,0xed,0x20,0x74, + 0x4f,0xa4,0x10,0x74,0xff,0x9,0xa0,0x76,0x38,0xc0,0x90,0x76,0xde,0xeb,0xa0,0x78, + 0x18,0xa2,0x90,0x78,0xbe,0xcd,0xa0,0x79,0xf8,0x84,0x90,0x7a,0x9e,0xaf,0xa0,0x7b, + 0xd8,0x66,0x90,0x7c,0x7e,0x91,0xa0,0x7d,0xb8,0x48,0x90,0x7e,0x5e,0x73,0xa0,0x7f, + 0x98,0x2a,0x90,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x2,0x1,0x2,0x1,0x2,0x1, 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x3,0x1,0x3,0x1,0x3,0x1, - 0x3,0x1,0x3,0x1,0x2,0x1,0x2,0x1,0x3,0x1,0x2,0x1,0x2,0x1,0x2,0x1, 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x4,0x6,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x7,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0xff,0xff,0xff,0xb5,0x0, - 0x0,0x0,0x0,0xe,0x10,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x1c, - 0x20,0x1,0xc,0x0,0x0,0xe,0x10,0x0,0x4,0x0,0x0,0xe,0x10,0x1,0x4,0x0, - 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x42, - 0x53,0x54,0x0,0x47,0x4d,0x54,0x0,0x42,0x44,0x53,0x54,0x0,0x0,0x1,0x1,0x1, - 0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0xa,0x47,0x4d,0x54, - 0x30,0x42,0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2f,0x31,0x2c,0x4d,0x31, - 0x30,0x2e,0x35,0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Chisinau - 0x0,0x0,0x9,0x8d, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x8e,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x26,0x80,0x0,0x0,0x0,0x9e, - 0x6b,0x9f,0xc,0xb7,0xb0,0xd2,0x8,0xb9,0x3e,0xf3,0x60,0xb9,0xef,0x9c,0x60,0xba, - 0xdf,0x8d,0x60,0xbb,0xcf,0x7e,0x60,0xbc,0xc8,0xa9,0xe0,0xbd,0xb8,0x9a,0xe0,0xbe, - 0xa8,0x8b,0xe0,0xbf,0x98,0x7c,0xe0,0xc0,0x88,0x6d,0xe0,0xc1,0x78,0x5e,0xe0,0xc2, - 0x68,0x4f,0xe0,0xc3,0x58,0x40,0xe0,0xc4,0x48,0x31,0xe0,0xc5,0x38,0x22,0xe0,0xc6, - 0x28,0x13,0xe0,0xc7,0x18,0x4,0xe0,0xc8,0xbc,0x93,0x60,0xca,0x77,0x7d,0x50,0xcc, - 0xe7,0x4b,0x10,0xcd,0xa9,0x17,0x90,0xce,0xa2,0x43,0x10,0xcf,0x92,0x34,0x10,0xd0, - 0x4e,0x90,0x60,0x15,0x27,0xa7,0xd0,0x16,0x18,0xdc,0x40,0x17,0x8,0xdb,0x50,0x17, - 0xfa,0xf,0xc0,0x18,0xea,0xe,0xd0,0x19,0xdb,0x43,0x40,0x1a,0xcc,0x93,0xd0,0x1b, - 0xbc,0xa0,0xf0,0x1c,0xac,0x91,0xf0,0x1d,0x9c,0x82,0xf0,0x1e,0x8c,0x73,0xf0,0x1f, - 0x7c,0x64,0xf0,0x20,0x6c,0x55,0xf0,0x21,0x5c,0x46,0xf0,0x22,0x4c,0x37,0xf0,0x23, - 0x3c,0x28,0xf0,0x24,0x2c,0x19,0xf0,0x25,0x1c,0xa,0xf0,0x26,0xb,0xfb,0xf0,0x26, - 0x43,0x4c,0xe0,0x27,0x5,0x35,0x80,0x27,0xf5,0x26,0x80,0x28,0xe5,0x17,0x80,0x29, - 0x60,0xe8,0x60,0x29,0xd4,0xec,0x60,0x2a,0xc4,0xcf,0x50,0x2b,0xb4,0xce,0x60,0x2c, - 0xa4,0xb1,0x50,0x2d,0x94,0xb0,0x60,0x2e,0x84,0x93,0x50,0x2f,0x74,0x92,0x60,0x30, - 0x64,0x75,0x50,0x31,0x5d,0xae,0xe0,0x32,0x72,0x7b,0xd0,0x33,0x3d,0xad,0x0,0x34, - 0x52,0x88,0x0,0x35,0x1d,0x8f,0x0,0x36,0x32,0x6a,0x0,0x36,0xfd,0x71,0x0,0x38, - 0x1b,0x86,0x80,0x38,0xdd,0x53,0x0,0x39,0xfb,0x68,0x80,0x3a,0xbd,0x35,0x0,0x3b, - 0xdb,0x4a,0x80,0x3c,0xa6,0x51,0x80,0x3d,0xbb,0x2c,0x80,0x3e,0x86,0x33,0x80,0x3f, - 0x9b,0xe,0x80,0x40,0x66,0x15,0x80,0x41,0x84,0x2b,0x0,0x42,0x45,0xf7,0x80,0x43, - 0x64,0xd,0x0,0x44,0x25,0xd9,0x80,0x45,0x43,0xef,0x0,0x46,0x5,0xbb,0x80,0x47, - 0x23,0xd1,0x0,0x47,0xee,0xd8,0x0,0x49,0x3,0xb3,0x0,0x49,0xce,0xba,0x0,0x4a, - 0xe3,0x95,0x0,0x4b,0xae,0x9c,0x0,0x4c,0xcc,0xb1,0x80,0x4d,0x8e,0x7e,0x0,0x4e, - 0xac,0x93,0x80,0x4f,0x6e,0x60,0x0,0x50,0x8c,0x75,0x80,0x51,0x57,0x7c,0x80,0x52, - 0x6c,0x57,0x80,0x53,0x37,0x5e,0x80,0x54,0x4c,0x39,0x80,0x55,0x17,0x40,0x80,0x56, - 0x2c,0x1b,0x80,0x56,0xf7,0x22,0x80,0x58,0x15,0x38,0x0,0x58,0xd7,0x4,0x80,0x59, - 0xf5,0x1a,0x0,0x5a,0xb6,0xe6,0x80,0x5b,0xd4,0xfc,0x0,0x5c,0xa0,0x3,0x0,0x5d, - 0xb4,0xde,0x0,0x5e,0x7f,0xe5,0x0,0x5f,0x94,0xc0,0x0,0x60,0x5f,0xc7,0x0,0x61, - 0x7d,0xdc,0x80,0x62,0x3f,0xa9,0x0,0x63,0x5d,0xbe,0x80,0x64,0x1f,0x8b,0x0,0x65, - 0x3d,0xa0,0x80,0x66,0x8,0xa7,0x80,0x67,0x1d,0x82,0x80,0x67,0xe8,0x89,0x80,0x68, - 0xfd,0x64,0x80,0x69,0xc8,0x6b,0x80,0x6a,0xdd,0x46,0x80,0x6b,0xa8,0x4d,0x80,0x6c, - 0xc6,0x63,0x0,0x6d,0x88,0x2f,0x80,0x6e,0xa6,0x45,0x0,0x6f,0x68,0x11,0x80,0x70, - 0x86,0x27,0x0,0x71,0x51,0x2e,0x0,0x72,0x66,0x9,0x0,0x73,0x31,0x10,0x0,0x74, - 0x45,0xeb,0x0,0x75,0x10,0xf2,0x0,0x76,0x2f,0x7,0x80,0x76,0xf0,0xd4,0x0,0x78, - 0xe,0xe9,0x80,0x78,0xd0,0xb6,0x0,0x79,0xee,0xcb,0x80,0x7a,0xb0,0x98,0x0,0x7b, - 0xce,0xad,0x80,0x7c,0x99,0xb4,0x80,0x7d,0xae,0x8f,0x80,0x7e,0x79,0x96,0x80,0x7f, - 0x8e,0x71,0x80,0x1,0x2,0x5,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x6,0x9,0x7,0x8,0x7,0x8,0xb,0xa,0xb,0xa, - 0xb,0xa,0xb,0xa,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd, - 0x6,0x4,0x3,0x4,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x0,0x0,0x1b,0x8,0x0,0x0,0x0,0x0,0x1a,0xf4,0x0,0x4,0x0,0x0,0x18, - 0x78,0x0,0x8,0x0,0x0,0x2a,0x30,0x1,0xc,0x0,0x0,0x1c,0x20,0x0,0x11,0x0, - 0x0,0x1c,0x20,0x0,0x11,0x0,0x0,0x2a,0x30,0x1,0xc,0x0,0x0,0xe,0x10,0x0, - 0x15,0x0,0x0,0x1c,0x20,0x1,0x19,0x0,0x0,0x1c,0x20,0x1,0x19,0x0,0x0,0x38, - 0x40,0x1,0x1e,0x0,0x0,0x2a,0x30,0x0,0x22,0x0,0x0,0x2a,0x30,0x0,0x22,0x0, - 0x0,0x38,0x40,0x1,0x1e,0x0,0x0,0x2a,0x30,0x1,0xc,0x0,0x0,0x1c,0x20,0x0, - 0x11,0x4c,0x4d,0x54,0x0,0x43,0x4d,0x54,0x0,0x42,0x4d,0x54,0x0,0x45,0x45,0x53, - 0x54,0x0,0x45,0x45,0x54,0x0,0x43,0x45,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x4d, - 0x53,0x44,0x0,0x4d,0x53,0x4b,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x1,0x1, - 0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x10,0x0, - 0x0,0x0,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0x0,0x0,0x0,0x10,0x0, - 0x0,0x0,0x26,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x56, - 0xb6,0xc8,0xf8,0xff,0xff,0xff,0xff,0x9e,0x6b,0x9f,0xc,0xff,0xff,0xff,0xff,0xb7, - 0xb0,0xd2,0x8,0xff,0xff,0xff,0xff,0xb9,0x3e,0xf3,0x60,0xff,0xff,0xff,0xff,0xb9, - 0xef,0x9c,0x60,0xff,0xff,0xff,0xff,0xba,0xdf,0x8d,0x60,0xff,0xff,0xff,0xff,0xbb, - 0xcf,0x7e,0x60,0xff,0xff,0xff,0xff,0xbc,0xc8,0xa9,0xe0,0xff,0xff,0xff,0xff,0xbd, - 0xb8,0x9a,0xe0,0xff,0xff,0xff,0xff,0xbe,0xa8,0x8b,0xe0,0xff,0xff,0xff,0xff,0xbf, - 0x98,0x7c,0xe0,0xff,0xff,0xff,0xff,0xc0,0x88,0x6d,0xe0,0xff,0xff,0xff,0xff,0xc1, - 0x78,0x5e,0xe0,0xff,0xff,0xff,0xff,0xc2,0x68,0x4f,0xe0,0xff,0xff,0xff,0xff,0xc3, - 0x58,0x40,0xe0,0xff,0xff,0xff,0xff,0xc4,0x48,0x31,0xe0,0xff,0xff,0xff,0xff,0xc5, - 0x38,0x22,0xe0,0xff,0xff,0xff,0xff,0xc6,0x28,0x13,0xe0,0xff,0xff,0xff,0xff,0xc7, - 0x18,0x4,0xe0,0xff,0xff,0xff,0xff,0xc8,0xbc,0x93,0x60,0xff,0xff,0xff,0xff,0xca, - 0x77,0x7d,0x50,0xff,0xff,0xff,0xff,0xcc,0xe7,0x4b,0x10,0xff,0xff,0xff,0xff,0xcd, - 0xa9,0x17,0x90,0xff,0xff,0xff,0xff,0xce,0xa2,0x43,0x10,0xff,0xff,0xff,0xff,0xcf, - 0x92,0x34,0x10,0xff,0xff,0xff,0xff,0xd0,0x4e,0x90,0x60,0x0,0x0,0x0,0x0,0x15, - 0x27,0xa7,0xd0,0x0,0x0,0x0,0x0,0x16,0x18,0xdc,0x40,0x0,0x0,0x0,0x0,0x17, - 0x8,0xdb,0x50,0x0,0x0,0x0,0x0,0x17,0xfa,0xf,0xc0,0x0,0x0,0x0,0x0,0x18, - 0xea,0xe,0xd0,0x0,0x0,0x0,0x0,0x19,0xdb,0x43,0x40,0x0,0x0,0x0,0x0,0x1a, - 0xcc,0x93,0xd0,0x0,0x0,0x0,0x0,0x1b,0xbc,0xa0,0xf0,0x0,0x0,0x0,0x0,0x1c, - 0xac,0x91,0xf0,0x0,0x0,0x0,0x0,0x1d,0x9c,0x82,0xf0,0x0,0x0,0x0,0x0,0x1e, - 0x8c,0x73,0xf0,0x0,0x0,0x0,0x0,0x1f,0x7c,0x64,0xf0,0x0,0x0,0x0,0x0,0x20, - 0x6c,0x55,0xf0,0x0,0x0,0x0,0x0,0x21,0x5c,0x46,0xf0,0x0,0x0,0x0,0x0,0x22, - 0x4c,0x37,0xf0,0x0,0x0,0x0,0x0,0x23,0x3c,0x28,0xf0,0x0,0x0,0x0,0x0,0x24, - 0x2c,0x19,0xf0,0x0,0x0,0x0,0x0,0x25,0x1c,0xa,0xf0,0x0,0x0,0x0,0x0,0x26, - 0xb,0xfb,0xf0,0x0,0x0,0x0,0x0,0x26,0x43,0x4c,0xe0,0x0,0x0,0x0,0x0,0x27, - 0x5,0x35,0x80,0x0,0x0,0x0,0x0,0x27,0xf5,0x26,0x80,0x0,0x0,0x0,0x0,0x28, - 0xe5,0x17,0x80,0x0,0x0,0x0,0x0,0x29,0x60,0xe8,0x60,0x0,0x0,0x0,0x0,0x29, - 0xd4,0xec,0x60,0x0,0x0,0x0,0x0,0x2a,0xc4,0xcf,0x50,0x0,0x0,0x0,0x0,0x2b, - 0xb4,0xce,0x60,0x0,0x0,0x0,0x0,0x2c,0xa4,0xb1,0x50,0x0,0x0,0x0,0x0,0x2d, - 0x94,0xb0,0x60,0x0,0x0,0x0,0x0,0x2e,0x84,0x93,0x50,0x0,0x0,0x0,0x0,0x2f, - 0x74,0x92,0x60,0x0,0x0,0x0,0x0,0x30,0x64,0x75,0x50,0x0,0x0,0x0,0x0,0x31, - 0x5d,0xae,0xe0,0x0,0x0,0x0,0x0,0x32,0x72,0x7b,0xd0,0x0,0x0,0x0,0x0,0x33, - 0x3d,0xad,0x0,0x0,0x0,0x0,0x0,0x34,0x52,0x88,0x0,0x0,0x0,0x0,0x0,0x35, - 0x1d,0x8f,0x0,0x0,0x0,0x0,0x0,0x36,0x32,0x6a,0x0,0x0,0x0,0x0,0x0,0x36, - 0xfd,0x71,0x0,0x0,0x0,0x0,0x0,0x38,0x1b,0x86,0x80,0x0,0x0,0x0,0x0,0x38, - 0xdd,0x53,0x0,0x0,0x0,0x0,0x0,0x39,0xfb,0x68,0x80,0x0,0x0,0x0,0x0,0x3a, - 0xbd,0x35,0x0,0x0,0x0,0x0,0x0,0x3b,0xdb,0x4a,0x80,0x0,0x0,0x0,0x0,0x3c, - 0xa6,0x51,0x80,0x0,0x0,0x0,0x0,0x3d,0xbb,0x2c,0x80,0x0,0x0,0x0,0x0,0x3e, - 0x86,0x33,0x80,0x0,0x0,0x0,0x0,0x3f,0x9b,0xe,0x80,0x0,0x0,0x0,0x0,0x40, - 0x66,0x15,0x80,0x0,0x0,0x0,0x0,0x41,0x84,0x2b,0x0,0x0,0x0,0x0,0x0,0x42, - 0x45,0xf7,0x80,0x0,0x0,0x0,0x0,0x43,0x64,0xd,0x0,0x0,0x0,0x0,0x0,0x44, - 0x25,0xd9,0x80,0x0,0x0,0x0,0x0,0x45,0x43,0xef,0x0,0x0,0x0,0x0,0x0,0x46, - 0x5,0xbb,0x80,0x0,0x0,0x0,0x0,0x47,0x23,0xd1,0x0,0x0,0x0,0x0,0x0,0x47, - 0xee,0xd8,0x0,0x0,0x0,0x0,0x0,0x49,0x3,0xb3,0x0,0x0,0x0,0x0,0x0,0x49, - 0xce,0xba,0x0,0x0,0x0,0x0,0x0,0x4a,0xe3,0x95,0x0,0x0,0x0,0x0,0x0,0x4b, - 0xae,0x9c,0x0,0x0,0x0,0x0,0x0,0x4c,0xcc,0xb1,0x80,0x0,0x0,0x0,0x0,0x4d, - 0x8e,0x7e,0x0,0x0,0x0,0x0,0x0,0x4e,0xac,0x93,0x80,0x0,0x0,0x0,0x0,0x4f, - 0x6e,0x60,0x0,0x0,0x0,0x0,0x0,0x50,0x8c,0x75,0x80,0x0,0x0,0x0,0x0,0x51, - 0x57,0x7c,0x80,0x0,0x0,0x0,0x0,0x52,0x6c,0x57,0x80,0x0,0x0,0x0,0x0,0x53, - 0x37,0x5e,0x80,0x0,0x0,0x0,0x0,0x54,0x4c,0x39,0x80,0x0,0x0,0x0,0x0,0x55, - 0x17,0x40,0x80,0x0,0x0,0x0,0x0,0x56,0x2c,0x1b,0x80,0x0,0x0,0x0,0x0,0x56, - 0xf7,0x22,0x80,0x0,0x0,0x0,0x0,0x58,0x15,0x38,0x0,0x0,0x0,0x0,0x0,0x58, - 0xd7,0x4,0x80,0x0,0x0,0x0,0x0,0x59,0xf5,0x1a,0x0,0x0,0x0,0x0,0x0,0x5a, - 0xb6,0xe6,0x80,0x0,0x0,0x0,0x0,0x5b,0xd4,0xfc,0x0,0x0,0x0,0x0,0x0,0x5c, - 0xa0,0x3,0x0,0x0,0x0,0x0,0x0,0x5d,0xb4,0xde,0x0,0x0,0x0,0x0,0x0,0x5e, - 0x7f,0xe5,0x0,0x0,0x0,0x0,0x0,0x5f,0x94,0xc0,0x0,0x0,0x0,0x0,0x0,0x60, - 0x5f,0xc7,0x0,0x0,0x0,0x0,0x0,0x61,0x7d,0xdc,0x80,0x0,0x0,0x0,0x0,0x62, - 0x3f,0xa9,0x0,0x0,0x0,0x0,0x0,0x63,0x5d,0xbe,0x80,0x0,0x0,0x0,0x0,0x64, - 0x1f,0x8b,0x0,0x0,0x0,0x0,0x0,0x65,0x3d,0xa0,0x80,0x0,0x0,0x0,0x0,0x66, - 0x8,0xa7,0x80,0x0,0x0,0x0,0x0,0x67,0x1d,0x82,0x80,0x0,0x0,0x0,0x0,0x67, - 0xe8,0x89,0x80,0x0,0x0,0x0,0x0,0x68,0xfd,0x64,0x80,0x0,0x0,0x0,0x0,0x69, - 0xc8,0x6b,0x80,0x0,0x0,0x0,0x0,0x6a,0xdd,0x46,0x80,0x0,0x0,0x0,0x0,0x6b, - 0xa8,0x4d,0x80,0x0,0x0,0x0,0x0,0x6c,0xc6,0x63,0x0,0x0,0x0,0x0,0x0,0x6d, - 0x88,0x2f,0x80,0x0,0x0,0x0,0x0,0x6e,0xa6,0x45,0x0,0x0,0x0,0x0,0x0,0x6f, - 0x68,0x11,0x80,0x0,0x0,0x0,0x0,0x70,0x86,0x27,0x0,0x0,0x0,0x0,0x0,0x71, - 0x51,0x2e,0x0,0x0,0x0,0x0,0x0,0x72,0x66,0x9,0x0,0x0,0x0,0x0,0x0,0x73, - 0x31,0x10,0x0,0x0,0x0,0x0,0x0,0x74,0x45,0xeb,0x0,0x0,0x0,0x0,0x0,0x75, - 0x10,0xf2,0x0,0x0,0x0,0x0,0x0,0x76,0x2f,0x7,0x80,0x0,0x0,0x0,0x0,0x76, - 0xf0,0xd4,0x0,0x0,0x0,0x0,0x0,0x78,0xe,0xe9,0x80,0x0,0x0,0x0,0x0,0x78, - 0xd0,0xb6,0x0,0x0,0x0,0x0,0x0,0x79,0xee,0xcb,0x80,0x0,0x0,0x0,0x0,0x7a, - 0xb0,0x98,0x0,0x0,0x0,0x0,0x0,0x7b,0xce,0xad,0x80,0x0,0x0,0x0,0x0,0x7c, - 0x99,0xb4,0x80,0x0,0x0,0x0,0x0,0x7d,0xae,0x8f,0x80,0x0,0x0,0x0,0x0,0x7e, - 0x79,0x96,0x80,0x0,0x0,0x0,0x0,0x7f,0x8e,0x71,0x80,0x0,0x1,0x2,0x5,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x6, - 0x9,0x7,0x8,0x7,0x8,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xc,0xd,0xc, - 0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0x6,0x4,0x3,0x4,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x0,0x0,0x1b,0x8,0x0,0x0, - 0x0,0x0,0x1a,0xf4,0x0,0x4,0x0,0x0,0x18,0x78,0x0,0x8,0x0,0x0,0x2a,0x30, - 0x1,0xc,0x0,0x0,0x1c,0x20,0x0,0x11,0x0,0x0,0x1c,0x20,0x0,0x11,0x0,0x0, - 0x2a,0x30,0x1,0xc,0x0,0x0,0xe,0x10,0x0,0x15,0x0,0x0,0x1c,0x20,0x1,0x19, - 0x0,0x0,0x1c,0x20,0x1,0x19,0x0,0x0,0x38,0x40,0x1,0x1e,0x0,0x0,0x2a,0x30, - 0x0,0x22,0x0,0x0,0x2a,0x30,0x0,0x22,0x0,0x0,0x38,0x40,0x1,0x1e,0x0,0x0, - 0x2a,0x30,0x1,0xc,0x0,0x0,0x1c,0x20,0x0,0x11,0x4c,0x4d,0x54,0x0,0x43,0x4d, - 0x54,0x0,0x42,0x4d,0x54,0x0,0x45,0x45,0x53,0x54,0x0,0x45,0x45,0x54,0x0,0x43, - 0x45,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x4d,0x53,0x44,0x0,0x4d,0x53,0x4b,0x0, - 0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x1,0x1,0x0,0x0, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0x91, + 0x26,0x0,0x0,0xff,0xff,0x9d,0x90,0x1,0x4,0xff,0xff,0x8f,0x80,0x0,0x8,0xff, + 0xff,0x9d,0x90,0x1,0xc,0xff,0xff,0x9d,0x90,0x1,0x10,0x4c,0x4d,0x54,0x0,0x50, + 0x44,0x54,0x0,0x50,0x53,0x54,0x0,0x50,0x57,0x54,0x0,0x50,0x50,0x54,0x0,0x0, + 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x1,0x54,0x5a,0x69,0x66,0x32,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0xa,0x45,0x45,0x54,0x2d,0x32,0x45,0x45,0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e, - 0x30,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30,0x2f,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Budapest - 0x0,0x0,0x9,0x65, + 0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbb,0x0,0x0,0x0, + 0x5,0x0,0x0,0x0,0x14,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff, + 0xff,0x5e,0x4,0x1a,0xc0,0xff,0xff,0xff,0xff,0x9e,0xa6,0x48,0xa0,0xff,0xff,0xff, + 0xff,0x9f,0xbb,0x15,0x90,0xff,0xff,0xff,0xff,0xa0,0x86,0x2a,0xa0,0xff,0xff,0xff, + 0xff,0xa1,0x9a,0xf7,0x90,0xff,0xff,0xff,0xff,0xcb,0x89,0x1a,0xa0,0xff,0xff,0xff, + 0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x61,0x26,0x10,0xff,0xff,0xff, + 0xff,0xd6,0xfe,0x74,0x5c,0xff,0xff,0xff,0xff,0xd8,0x80,0xad,0x90,0xff,0xff,0xff, + 0xff,0xda,0xfe,0xc3,0x90,0xff,0xff,0xff,0xff,0xdb,0xc0,0x90,0x10,0xff,0xff,0xff, + 0xff,0xdc,0xde,0xa5,0x90,0xff,0xff,0xff,0xff,0xdd,0xa9,0xac,0x90,0xff,0xff,0xff, + 0xff,0xde,0xbe,0x87,0x90,0xff,0xff,0xff,0xff,0xdf,0x89,0x8e,0x90,0xff,0xff,0xff, + 0xff,0xe0,0x9e,0x69,0x90,0xff,0xff,0xff,0xff,0xe1,0x69,0x70,0x90,0xff,0xff,0xff, + 0xff,0xe2,0x7e,0x4b,0x90,0xff,0xff,0xff,0xff,0xe3,0x49,0x52,0x90,0xff,0xff,0xff, + 0xff,0xe4,0x5e,0x2d,0x90,0xff,0xff,0xff,0xff,0xe5,0x29,0x34,0x90,0xff,0xff,0xff, + 0xff,0xe6,0x47,0x4a,0x10,0xff,0xff,0xff,0xff,0xe7,0x12,0x51,0x10,0xff,0xff,0xff, + 0xff,0xe8,0x27,0x2c,0x10,0xff,0xff,0xff,0xff,0xe8,0xf2,0x33,0x10,0xff,0xff,0xff, + 0xff,0xea,0x7,0xe,0x10,0xff,0xff,0xff,0xff,0xea,0xd2,0x15,0x10,0xff,0xff,0xff, + 0xff,0xeb,0xe6,0xf0,0x10,0xff,0xff,0xff,0xff,0xec,0xb1,0xf7,0x10,0xff,0xff,0xff, + 0xff,0xed,0xc6,0xd2,0x10,0xff,0xff,0xff,0xff,0xee,0x91,0xd9,0x10,0xff,0xff,0xff, + 0xff,0xef,0xaf,0xee,0x90,0xff,0xff,0xff,0xff,0xf0,0x71,0xbb,0x10,0xff,0xff,0xff, + 0xff,0xf1,0x8f,0xd0,0x90,0xff,0xff,0xff,0xff,0xf2,0x7f,0xc1,0x90,0xff,0xff,0xff, + 0xff,0xf3,0x6f,0xb2,0x90,0xff,0xff,0xff,0xff,0xf4,0x5f,0xa3,0x90,0xff,0xff,0xff, + 0xff,0xf5,0x4f,0x94,0x90,0xff,0xff,0xff,0xff,0xf6,0x3f,0x85,0x90,0xff,0xff,0xff, + 0xff,0xf7,0x2f,0x76,0x90,0xff,0xff,0xff,0xff,0xf8,0x28,0xa2,0x10,0xff,0xff,0xff, + 0xff,0xf9,0xf,0x58,0x90,0xff,0xff,0xff,0xff,0xfa,0x8,0x84,0x10,0xff,0xff,0xff, + 0xff,0xfa,0xf8,0x83,0x20,0xff,0xff,0xff,0xff,0xfb,0xe8,0x66,0x10,0xff,0xff,0xff, + 0xff,0xfc,0xd8,0x65,0x20,0xff,0xff,0xff,0xff,0xfd,0xc8,0x48,0x10,0xff,0xff,0xff, + 0xff,0xfe,0xb8,0x47,0x20,0xff,0xff,0xff,0xff,0xff,0xa8,0x2a,0x10,0x0,0x0,0x0, + 0x0,0x0,0x98,0x29,0x20,0x0,0x0,0x0,0x0,0x1,0x88,0xc,0x10,0x0,0x0,0x0, + 0x0,0x2,0x78,0xb,0x20,0x0,0x0,0x0,0x0,0x3,0x71,0x28,0x90,0x0,0x0,0x0, + 0x0,0x4,0x61,0x27,0xa0,0x0,0x0,0x0,0x0,0x5,0x51,0xa,0x90,0x0,0x0,0x0, + 0x0,0x6,0x41,0x9,0xa0,0x0,0x0,0x0,0x0,0x7,0x30,0xec,0x90,0x0,0x0,0x0, + 0x0,0x7,0x8d,0x43,0xa0,0x0,0x0,0x0,0x0,0x9,0x10,0xce,0x90,0x0,0x0,0x0, + 0x0,0x9,0xad,0xbf,0x20,0x0,0x0,0x0,0x0,0xa,0xf0,0xb0,0x90,0x0,0x0,0x0, + 0x0,0xb,0xe0,0xaf,0xa0,0x0,0x0,0x0,0x0,0xc,0xd9,0xcd,0x10,0x0,0x0,0x0, + 0x0,0xd,0xc0,0x91,0xa0,0x0,0x0,0x0,0x0,0xe,0xb9,0xaf,0x10,0x0,0x0,0x0, + 0x0,0xf,0xa9,0xae,0x20,0x0,0x0,0x0,0x0,0x10,0x99,0x91,0x10,0x0,0x0,0x0, + 0x0,0x11,0x89,0x90,0x20,0x0,0x0,0x0,0x0,0x12,0x79,0x73,0x10,0x0,0x0,0x0, + 0x0,0x13,0x69,0x72,0x20,0x0,0x0,0x0,0x0,0x14,0x59,0x55,0x10,0x0,0x0,0x0, + 0x0,0x15,0x49,0x54,0x20,0x0,0x0,0x0,0x0,0x16,0x39,0x37,0x10,0x0,0x0,0x0, + 0x0,0x17,0x29,0x36,0x20,0x0,0x0,0x0,0x0,0x18,0x22,0x53,0x90,0x0,0x0,0x0, + 0x0,0x19,0x9,0x18,0x20,0x0,0x0,0x0,0x0,0x1a,0x2,0x35,0x90,0x0,0x0,0x0, + 0x0,0x1a,0xf2,0x34,0xa0,0x0,0x0,0x0,0x0,0x1b,0xe2,0x17,0x90,0x0,0x0,0x0, + 0x0,0x1c,0xd2,0x16,0xa0,0x0,0x0,0x0,0x0,0x1d,0xc1,0xf9,0x90,0x0,0x0,0x0, + 0x0,0x1e,0xb1,0xf8,0xa0,0x0,0x0,0x0,0x0,0x1f,0xa1,0xdb,0x90,0x0,0x0,0x0, + 0x0,0x20,0x76,0x2b,0x20,0x0,0x0,0x0,0x0,0x21,0x81,0xbd,0x90,0x0,0x0,0x0, + 0x0,0x22,0x56,0xd,0x20,0x0,0x0,0x0,0x0,0x23,0x6a,0xda,0x10,0x0,0x0,0x0, + 0x0,0x24,0x35,0xef,0x20,0x0,0x0,0x0,0x0,0x25,0x4a,0xbc,0x10,0x0,0x0,0x0, + 0x0,0x26,0x15,0xd1,0x20,0x0,0x0,0x0,0x0,0x27,0x2a,0x9e,0x10,0x0,0x0,0x0, + 0x0,0x27,0xfe,0xed,0xa0,0x0,0x0,0x0,0x0,0x29,0xa,0x80,0x10,0x0,0x0,0x0, + 0x0,0x29,0xde,0xcf,0xa0,0x0,0x0,0x0,0x0,0x2a,0xea,0x62,0x10,0x0,0x0,0x0, + 0x0,0x2b,0xbe,0xb1,0xa0,0x0,0x0,0x0,0x0,0x2c,0xd3,0x7e,0x90,0x0,0x0,0x0, + 0x0,0x2d,0x9e,0x93,0xa0,0x0,0x0,0x0,0x0,0x2e,0xb3,0x60,0x90,0x0,0x0,0x0, + 0x0,0x2f,0x7e,0x75,0xa0,0x0,0x0,0x0,0x0,0x30,0x93,0x42,0x90,0x0,0x0,0x0, + 0x0,0x31,0x67,0x92,0x20,0x0,0x0,0x0,0x0,0x32,0x73,0x24,0x90,0x0,0x0,0x0, + 0x0,0x33,0x47,0x74,0x20,0x0,0x0,0x0,0x0,0x34,0x53,0x6,0x90,0x0,0x0,0x0, + 0x0,0x35,0x27,0x56,0x20,0x0,0x0,0x0,0x0,0x36,0x32,0xe8,0x90,0x0,0x0,0x0, + 0x0,0x37,0x7,0x38,0x20,0x0,0x0,0x0,0x0,0x38,0x1c,0x5,0x10,0x0,0x0,0x0, + 0x0,0x38,0xe7,0x1a,0x20,0x0,0x0,0x0,0x0,0x39,0xfb,0xe7,0x10,0x0,0x0,0x0, + 0x0,0x3a,0xc6,0xfc,0x20,0x0,0x0,0x0,0x0,0x3b,0xdb,0xc9,0x10,0x0,0x0,0x0, + 0x0,0x3c,0xb0,0x18,0xa0,0x0,0x0,0x0,0x0,0x3d,0xbb,0xab,0x10,0x0,0x0,0x0, + 0x0,0x3e,0x8f,0xfa,0xa0,0x0,0x0,0x0,0x0,0x3f,0x9b,0x8d,0x10,0x0,0x0,0x0, + 0x0,0x40,0x6f,0xdc,0xa0,0x0,0x0,0x0,0x0,0x41,0x84,0xa9,0x90,0x0,0x0,0x0, + 0x0,0x42,0x4f,0xbe,0xa0,0x0,0x0,0x0,0x0,0x43,0x64,0x8b,0x90,0x0,0x0,0x0, + 0x0,0x44,0x2f,0xa0,0xa0,0x0,0x0,0x0,0x0,0x45,0x44,0x6d,0x90,0x0,0x0,0x0, + 0x0,0x45,0xf3,0xd3,0x20,0x0,0x0,0x0,0x0,0x47,0x2d,0x8a,0x10,0x0,0x0,0x0, + 0x0,0x47,0xd3,0xb5,0x20,0x0,0x0,0x0,0x0,0x49,0xd,0x6c,0x10,0x0,0x0,0x0, + 0x0,0x49,0xb3,0x97,0x20,0x0,0x0,0x0,0x0,0x4a,0xed,0x4e,0x10,0x0,0x0,0x0, + 0x0,0x4b,0x9c,0xb3,0xa0,0x0,0x0,0x0,0x0,0x4c,0xd6,0x6a,0x90,0x0,0x0,0x0, + 0x0,0x4d,0x7c,0x95,0xa0,0x0,0x0,0x0,0x0,0x4e,0xb6,0x4c,0x90,0x0,0x0,0x0, + 0x0,0x4f,0x5c,0x77,0xa0,0x0,0x0,0x0,0x0,0x50,0x96,0x2e,0x90,0x0,0x0,0x0, + 0x0,0x51,0x3c,0x59,0xa0,0x0,0x0,0x0,0x0,0x52,0x76,0x10,0x90,0x0,0x0,0x0, + 0x0,0x53,0x1c,0x3b,0xa0,0x0,0x0,0x0,0x0,0x54,0x55,0xf2,0x90,0x0,0x0,0x0, + 0x0,0x54,0xfc,0x1d,0xa0,0x0,0x0,0x0,0x0,0x56,0x35,0xd4,0x90,0x0,0x0,0x0, + 0x0,0x56,0xe5,0x3a,0x20,0x0,0x0,0x0,0x0,0x58,0x1e,0xf1,0x10,0x0,0x0,0x0, + 0x0,0x58,0xc5,0x1c,0x20,0x0,0x0,0x0,0x0,0x59,0xfe,0xd3,0x10,0x0,0x0,0x0, + 0x0,0x5a,0xa4,0xfe,0x20,0x0,0x0,0x0,0x0,0x5b,0xde,0xb5,0x10,0x0,0x0,0x0, + 0x0,0x5c,0x84,0xe0,0x20,0x0,0x0,0x0,0x0,0x5d,0xbe,0x97,0x10,0x0,0x0,0x0, + 0x0,0x5e,0x64,0xc2,0x20,0x0,0x0,0x0,0x0,0x5f,0x9e,0x79,0x10,0x0,0x0,0x0, + 0x0,0x60,0x4d,0xde,0xa0,0x0,0x0,0x0,0x0,0x61,0x87,0x95,0x90,0x0,0x0,0x0, + 0x0,0x62,0x2d,0xc0,0xa0,0x0,0x0,0x0,0x0,0x63,0x67,0x77,0x90,0x0,0x0,0x0, + 0x0,0x64,0xd,0xa2,0xa0,0x0,0x0,0x0,0x0,0x65,0x47,0x59,0x90,0x0,0x0,0x0, + 0x0,0x65,0xed,0x84,0xa0,0x0,0x0,0x0,0x0,0x67,0x27,0x3b,0x90,0x0,0x0,0x0, + 0x0,0x67,0xcd,0x66,0xa0,0x0,0x0,0x0,0x0,0x69,0x7,0x1d,0x90,0x0,0x0,0x0, + 0x0,0x69,0xad,0x48,0xa0,0x0,0x0,0x0,0x0,0x6a,0xe6,0xff,0x90,0x0,0x0,0x0, + 0x0,0x6b,0x96,0x65,0x20,0x0,0x0,0x0,0x0,0x6c,0xd0,0x1c,0x10,0x0,0x0,0x0, + 0x0,0x6d,0x76,0x47,0x20,0x0,0x0,0x0,0x0,0x6e,0xaf,0xfe,0x10,0x0,0x0,0x0, + 0x0,0x6f,0x56,0x29,0x20,0x0,0x0,0x0,0x0,0x70,0x8f,0xe0,0x10,0x0,0x0,0x0, + 0x0,0x71,0x36,0xb,0x20,0x0,0x0,0x0,0x0,0x72,0x6f,0xc2,0x10,0x0,0x0,0x0, + 0x0,0x73,0x15,0xed,0x20,0x0,0x0,0x0,0x0,0x74,0x4f,0xa4,0x10,0x0,0x0,0x0, + 0x0,0x74,0xff,0x9,0xa0,0x0,0x0,0x0,0x0,0x76,0x38,0xc0,0x90,0x0,0x0,0x0, + 0x0,0x76,0xde,0xeb,0xa0,0x0,0x0,0x0,0x0,0x78,0x18,0xa2,0x90,0x0,0x0,0x0, + 0x0,0x78,0xbe,0xcd,0xa0,0x0,0x0,0x0,0x0,0x79,0xf8,0x84,0x90,0x0,0x0,0x0, + 0x0,0x7a,0x9e,0xaf,0xa0,0x0,0x0,0x0,0x0,0x7b,0xd8,0x66,0x90,0x0,0x0,0x0, + 0x0,0x7c,0x7e,0x91,0xa0,0x0,0x0,0x0,0x0,0x7d,0xb8,0x48,0x90,0x0,0x0,0x0, + 0x0,0x7e,0x5e,0x73,0xa0,0x0,0x0,0x0,0x0,0x7f,0x98,0x2a,0x90,0x0,0x2,0x1, + 0x2,0x1,0x2,0x3,0x4,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0x91,0x26,0x0,0x0,0xff,0xff, + 0x9d,0x90,0x1,0x4,0xff,0xff,0x8f,0x80,0x0,0x8,0xff,0xff,0x9d,0x90,0x1,0xc, + 0xff,0xff,0x9d,0x90,0x1,0x10,0x4c,0x4d,0x54,0x0,0x50,0x44,0x54,0x0,0x50,0x53, + 0x54,0x0,0x50,0x57,0x54,0x0,0x50,0x50,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0, + 0x0,0x0,0x0,0x1,0xa,0x50,0x53,0x54,0x38,0x50,0x44,0x54,0x2c,0x4d,0x33,0x2e, + 0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/US/Mountain + 0x0,0x0,0x9,0x95, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x9e,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0x9e, + 0xa6,0x3a,0x90,0x9f,0xbb,0x7,0x80,0xa0,0x86,0x1c,0x90,0xa1,0x9a,0xe9,0x80,0xa2, + 0x65,0xfe,0x90,0xa3,0x84,0x6,0x0,0xa4,0x45,0xe0,0x90,0xa4,0x8f,0xa6,0x80,0xcb, + 0x89,0xc,0x90,0xd2,0x23,0xf4,0x70,0xd2,0x61,0x18,0x0,0xf7,0x2f,0x76,0x90,0xf8, + 0x28,0x94,0x0,0xf9,0xf,0x58,0x90,0xfa,0x8,0x76,0x0,0xfa,0xf8,0x75,0x10,0xfb, + 0xe8,0x58,0x0,0xfc,0xd8,0x57,0x10,0xfd,0xc8,0x3a,0x0,0xfe,0xb8,0x39,0x10,0xff, + 0xa8,0x1c,0x0,0x0,0x98,0x1b,0x10,0x1,0x87,0xfe,0x0,0x2,0x77,0xfd,0x10,0x3, + 0x71,0x1a,0x80,0x4,0x61,0x19,0x90,0x5,0x50,0xfc,0x80,0x6,0x40,0xfb,0x90,0x7, + 0x30,0xde,0x80,0x7,0x8d,0x35,0x90,0x9,0x10,0xc0,0x80,0x9,0xad,0xb1,0x10,0xa, + 0xf0,0xa2,0x80,0xb,0xe0,0xa1,0x90,0xc,0xd9,0xbf,0x0,0xd,0xc0,0x83,0x90,0xe, + 0xb9,0xa1,0x0,0xf,0xa9,0xa0,0x10,0x10,0x99,0x83,0x0,0x11,0x89,0x82,0x10,0x12, + 0x79,0x65,0x0,0x13,0x69,0x64,0x10,0x14,0x59,0x47,0x0,0x15,0x49,0x46,0x10,0x16, + 0x39,0x29,0x0,0x17,0x29,0x28,0x10,0x18,0x22,0x45,0x80,0x19,0x9,0xa,0x10,0x1a, + 0x2,0x27,0x80,0x1a,0xf2,0x26,0x90,0x1b,0xe2,0x9,0x80,0x1c,0xd2,0x8,0x90,0x1d, + 0xc1,0xeb,0x80,0x1e,0xb1,0xea,0x90,0x1f,0xa1,0xcd,0x80,0x20,0x76,0x1d,0x10,0x21, + 0x81,0xaf,0x80,0x22,0x55,0xff,0x10,0x23,0x6a,0xcc,0x0,0x24,0x35,0xe1,0x10,0x25, + 0x4a,0xae,0x0,0x26,0x15,0xc3,0x10,0x27,0x2a,0x90,0x0,0x27,0xfe,0xdf,0x90,0x29, + 0xa,0x72,0x0,0x29,0xde,0xc1,0x90,0x2a,0xea,0x54,0x0,0x2b,0xbe,0xa3,0x90,0x2c, + 0xd3,0x70,0x80,0x2d,0x9e,0x85,0x90,0x2e,0xb3,0x52,0x80,0x2f,0x7e,0x67,0x90,0x30, + 0x93,0x34,0x80,0x31,0x67,0x84,0x10,0x32,0x73,0x16,0x80,0x33,0x47,0x66,0x10,0x34, + 0x52,0xf8,0x80,0x35,0x27,0x48,0x10,0x36,0x32,0xda,0x80,0x37,0x7,0x2a,0x10,0x38, + 0x1b,0xf7,0x0,0x38,0xe7,0xc,0x10,0x39,0xfb,0xd9,0x0,0x3a,0xc6,0xee,0x10,0x3b, + 0xdb,0xbb,0x0,0x3c,0xb0,0xa,0x90,0x3d,0xbb,0x9d,0x0,0x3e,0x8f,0xec,0x90,0x3f, + 0x9b,0x7f,0x0,0x40,0x6f,0xce,0x90,0x41,0x84,0x9b,0x80,0x42,0x4f,0xb0,0x90,0x43, + 0x64,0x7d,0x80,0x44,0x2f,0x92,0x90,0x45,0x44,0x5f,0x80,0x45,0xf3,0xc5,0x10,0x47, + 0x2d,0x7c,0x0,0x47,0xd3,0xa7,0x10,0x49,0xd,0x5e,0x0,0x49,0xb3,0x89,0x10,0x4a, + 0xed,0x40,0x0,0x4b,0x9c,0xa5,0x90,0x4c,0xd6,0x5c,0x80,0x4d,0x7c,0x87,0x90,0x4e, + 0xb6,0x3e,0x80,0x4f,0x5c,0x69,0x90,0x50,0x96,0x20,0x80,0x51,0x3c,0x4b,0x90,0x52, + 0x76,0x2,0x80,0x53,0x1c,0x2d,0x90,0x54,0x55,0xe4,0x80,0x54,0xfc,0xf,0x90,0x56, + 0x35,0xc6,0x80,0x56,0xe5,0x2c,0x10,0x58,0x1e,0xe3,0x0,0x58,0xc5,0xe,0x10,0x59, + 0xfe,0xc5,0x0,0x5a,0xa4,0xf0,0x10,0x5b,0xde,0xa7,0x0,0x5c,0x84,0xd2,0x10,0x5d, + 0xbe,0x89,0x0,0x5e,0x64,0xb4,0x10,0x5f,0x9e,0x6b,0x0,0x60,0x4d,0xd0,0x90,0x61, + 0x87,0x87,0x80,0x62,0x2d,0xb2,0x90,0x63,0x67,0x69,0x80,0x64,0xd,0x94,0x90,0x65, + 0x47,0x4b,0x80,0x65,0xed,0x76,0x90,0x67,0x27,0x2d,0x80,0x67,0xcd,0x58,0x90,0x69, + 0x7,0xf,0x80,0x69,0xad,0x3a,0x90,0x6a,0xe6,0xf1,0x80,0x6b,0x96,0x57,0x10,0x6c, + 0xd0,0xe,0x0,0x6d,0x76,0x39,0x10,0x6e,0xaf,0xf0,0x0,0x6f,0x56,0x1b,0x10,0x70, + 0x8f,0xd2,0x0,0x71,0x35,0xfd,0x10,0x72,0x6f,0xb4,0x0,0x73,0x15,0xdf,0x10,0x74, + 0x4f,0x96,0x0,0x74,0xfe,0xfb,0x90,0x76,0x38,0xb2,0x80,0x76,0xde,0xdd,0x90,0x78, + 0x18,0x94,0x80,0x78,0xbe,0xbf,0x90,0x79,0xf8,0x76,0x80,0x7a,0x9e,0xa1,0x90,0x7b, + 0xd8,0x58,0x80,0x7c,0x7e,0x83,0x90,0x7d,0xb8,0x3a,0x80,0x7e,0x5e,0x65,0x90,0x7f, + 0x98,0x1c,0x80,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0xff,0xff,0x9d,0x94,0x0,0x0,0xff,0xff,0xab,0xa0,0x1,0x4,0xff,0xff,0x9d, + 0x90,0x0,0x8,0xff,0xff,0xab,0xa0,0x1,0xc,0xff,0xff,0xab,0xa0,0x1,0x10,0x4c, + 0x4d,0x54,0x0,0x4d,0x44,0x54,0x0,0x4d,0x53,0x54,0x0,0x4d,0x57,0x54,0x0,0x4d, + 0x50,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x1,0x54,0x5a,0x69, + 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x9f,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0x5e,0x4,0xc,0xb0,0xff,0xff,0xff,0xff,0x9e,0xa6,0x3a, + 0x90,0xff,0xff,0xff,0xff,0x9f,0xbb,0x7,0x80,0xff,0xff,0xff,0xff,0xa0,0x86,0x1c, + 0x90,0xff,0xff,0xff,0xff,0xa1,0x9a,0xe9,0x80,0xff,0xff,0xff,0xff,0xa2,0x65,0xfe, + 0x90,0xff,0xff,0xff,0xff,0xa3,0x84,0x6,0x0,0xff,0xff,0xff,0xff,0xa4,0x45,0xe0, + 0x90,0xff,0xff,0xff,0xff,0xa4,0x8f,0xa6,0x80,0xff,0xff,0xff,0xff,0xcb,0x89,0xc, + 0x90,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x61,0x18, + 0x0,0xff,0xff,0xff,0xff,0xf7,0x2f,0x76,0x90,0xff,0xff,0xff,0xff,0xf8,0x28,0x94, + 0x0,0xff,0xff,0xff,0xff,0xf9,0xf,0x58,0x90,0xff,0xff,0xff,0xff,0xfa,0x8,0x76, + 0x0,0xff,0xff,0xff,0xff,0xfa,0xf8,0x75,0x10,0xff,0xff,0xff,0xff,0xfb,0xe8,0x58, + 0x0,0xff,0xff,0xff,0xff,0xfc,0xd8,0x57,0x10,0xff,0xff,0xff,0xff,0xfd,0xc8,0x3a, + 0x0,0xff,0xff,0xff,0xff,0xfe,0xb8,0x39,0x10,0xff,0xff,0xff,0xff,0xff,0xa8,0x1c, + 0x0,0x0,0x0,0x0,0x0,0x0,0x98,0x1b,0x10,0x0,0x0,0x0,0x0,0x1,0x87,0xfe, + 0x0,0x0,0x0,0x0,0x0,0x2,0x77,0xfd,0x10,0x0,0x0,0x0,0x0,0x3,0x71,0x1a, + 0x80,0x0,0x0,0x0,0x0,0x4,0x61,0x19,0x90,0x0,0x0,0x0,0x0,0x5,0x50,0xfc, + 0x80,0x0,0x0,0x0,0x0,0x6,0x40,0xfb,0x90,0x0,0x0,0x0,0x0,0x7,0x30,0xde, + 0x80,0x0,0x0,0x0,0x0,0x7,0x8d,0x35,0x90,0x0,0x0,0x0,0x0,0x9,0x10,0xc0, + 0x80,0x0,0x0,0x0,0x0,0x9,0xad,0xb1,0x10,0x0,0x0,0x0,0x0,0xa,0xf0,0xa2, + 0x80,0x0,0x0,0x0,0x0,0xb,0xe0,0xa1,0x90,0x0,0x0,0x0,0x0,0xc,0xd9,0xbf, + 0x0,0x0,0x0,0x0,0x0,0xd,0xc0,0x83,0x90,0x0,0x0,0x0,0x0,0xe,0xb9,0xa1, + 0x0,0x0,0x0,0x0,0x0,0xf,0xa9,0xa0,0x10,0x0,0x0,0x0,0x0,0x10,0x99,0x83, + 0x0,0x0,0x0,0x0,0x0,0x11,0x89,0x82,0x10,0x0,0x0,0x0,0x0,0x12,0x79,0x65, + 0x0,0x0,0x0,0x0,0x0,0x13,0x69,0x64,0x10,0x0,0x0,0x0,0x0,0x14,0x59,0x47, + 0x0,0x0,0x0,0x0,0x0,0x15,0x49,0x46,0x10,0x0,0x0,0x0,0x0,0x16,0x39,0x29, + 0x0,0x0,0x0,0x0,0x0,0x17,0x29,0x28,0x10,0x0,0x0,0x0,0x0,0x18,0x22,0x45, + 0x80,0x0,0x0,0x0,0x0,0x19,0x9,0xa,0x10,0x0,0x0,0x0,0x0,0x1a,0x2,0x27, + 0x80,0x0,0x0,0x0,0x0,0x1a,0xf2,0x26,0x90,0x0,0x0,0x0,0x0,0x1b,0xe2,0x9, + 0x80,0x0,0x0,0x0,0x0,0x1c,0xd2,0x8,0x90,0x0,0x0,0x0,0x0,0x1d,0xc1,0xeb, + 0x80,0x0,0x0,0x0,0x0,0x1e,0xb1,0xea,0x90,0x0,0x0,0x0,0x0,0x1f,0xa1,0xcd, + 0x80,0x0,0x0,0x0,0x0,0x20,0x76,0x1d,0x10,0x0,0x0,0x0,0x0,0x21,0x81,0xaf, + 0x80,0x0,0x0,0x0,0x0,0x22,0x55,0xff,0x10,0x0,0x0,0x0,0x0,0x23,0x6a,0xcc, + 0x0,0x0,0x0,0x0,0x0,0x24,0x35,0xe1,0x10,0x0,0x0,0x0,0x0,0x25,0x4a,0xae, + 0x0,0x0,0x0,0x0,0x0,0x26,0x15,0xc3,0x10,0x0,0x0,0x0,0x0,0x27,0x2a,0x90, + 0x0,0x0,0x0,0x0,0x0,0x27,0xfe,0xdf,0x90,0x0,0x0,0x0,0x0,0x29,0xa,0x72, + 0x0,0x0,0x0,0x0,0x0,0x29,0xde,0xc1,0x90,0x0,0x0,0x0,0x0,0x2a,0xea,0x54, + 0x0,0x0,0x0,0x0,0x0,0x2b,0xbe,0xa3,0x90,0x0,0x0,0x0,0x0,0x2c,0xd3,0x70, + 0x80,0x0,0x0,0x0,0x0,0x2d,0x9e,0x85,0x90,0x0,0x0,0x0,0x0,0x2e,0xb3,0x52, + 0x80,0x0,0x0,0x0,0x0,0x2f,0x7e,0x67,0x90,0x0,0x0,0x0,0x0,0x30,0x93,0x34, + 0x80,0x0,0x0,0x0,0x0,0x31,0x67,0x84,0x10,0x0,0x0,0x0,0x0,0x32,0x73,0x16, + 0x80,0x0,0x0,0x0,0x0,0x33,0x47,0x66,0x10,0x0,0x0,0x0,0x0,0x34,0x52,0xf8, + 0x80,0x0,0x0,0x0,0x0,0x35,0x27,0x48,0x10,0x0,0x0,0x0,0x0,0x36,0x32,0xda, + 0x80,0x0,0x0,0x0,0x0,0x37,0x7,0x2a,0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0xf7, + 0x0,0x0,0x0,0x0,0x0,0x38,0xe7,0xc,0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0xd9, + 0x0,0x0,0x0,0x0,0x0,0x3a,0xc6,0xee,0x10,0x0,0x0,0x0,0x0,0x3b,0xdb,0xbb, + 0x0,0x0,0x0,0x0,0x0,0x3c,0xb0,0xa,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x9d, + 0x0,0x0,0x0,0x0,0x0,0x3e,0x8f,0xec,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x7f, + 0x0,0x0,0x0,0x0,0x0,0x40,0x6f,0xce,0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x9b, + 0x80,0x0,0x0,0x0,0x0,0x42,0x4f,0xb0,0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x7d, + 0x80,0x0,0x0,0x0,0x0,0x44,0x2f,0x92,0x90,0x0,0x0,0x0,0x0,0x45,0x44,0x5f, + 0x80,0x0,0x0,0x0,0x0,0x45,0xf3,0xc5,0x10,0x0,0x0,0x0,0x0,0x47,0x2d,0x7c, + 0x0,0x0,0x0,0x0,0x0,0x47,0xd3,0xa7,0x10,0x0,0x0,0x0,0x0,0x49,0xd,0x5e, + 0x0,0x0,0x0,0x0,0x0,0x49,0xb3,0x89,0x10,0x0,0x0,0x0,0x0,0x4a,0xed,0x40, + 0x0,0x0,0x0,0x0,0x0,0x4b,0x9c,0xa5,0x90,0x0,0x0,0x0,0x0,0x4c,0xd6,0x5c, + 0x80,0x0,0x0,0x0,0x0,0x4d,0x7c,0x87,0x90,0x0,0x0,0x0,0x0,0x4e,0xb6,0x3e, + 0x80,0x0,0x0,0x0,0x0,0x4f,0x5c,0x69,0x90,0x0,0x0,0x0,0x0,0x50,0x96,0x20, + 0x80,0x0,0x0,0x0,0x0,0x51,0x3c,0x4b,0x90,0x0,0x0,0x0,0x0,0x52,0x76,0x2, + 0x80,0x0,0x0,0x0,0x0,0x53,0x1c,0x2d,0x90,0x0,0x0,0x0,0x0,0x54,0x55,0xe4, + 0x80,0x0,0x0,0x0,0x0,0x54,0xfc,0xf,0x90,0x0,0x0,0x0,0x0,0x56,0x35,0xc6, + 0x80,0x0,0x0,0x0,0x0,0x56,0xe5,0x2c,0x10,0x0,0x0,0x0,0x0,0x58,0x1e,0xe3, + 0x0,0x0,0x0,0x0,0x0,0x58,0xc5,0xe,0x10,0x0,0x0,0x0,0x0,0x59,0xfe,0xc5, + 0x0,0x0,0x0,0x0,0x0,0x5a,0xa4,0xf0,0x10,0x0,0x0,0x0,0x0,0x5b,0xde,0xa7, + 0x0,0x0,0x0,0x0,0x0,0x5c,0x84,0xd2,0x10,0x0,0x0,0x0,0x0,0x5d,0xbe,0x89, + 0x0,0x0,0x0,0x0,0x0,0x5e,0x64,0xb4,0x10,0x0,0x0,0x0,0x0,0x5f,0x9e,0x6b, + 0x0,0x0,0x0,0x0,0x0,0x60,0x4d,0xd0,0x90,0x0,0x0,0x0,0x0,0x61,0x87,0x87, + 0x80,0x0,0x0,0x0,0x0,0x62,0x2d,0xb2,0x90,0x0,0x0,0x0,0x0,0x63,0x67,0x69, + 0x80,0x0,0x0,0x0,0x0,0x64,0xd,0x94,0x90,0x0,0x0,0x0,0x0,0x65,0x47,0x4b, + 0x80,0x0,0x0,0x0,0x0,0x65,0xed,0x76,0x90,0x0,0x0,0x0,0x0,0x67,0x27,0x2d, + 0x80,0x0,0x0,0x0,0x0,0x67,0xcd,0x58,0x90,0x0,0x0,0x0,0x0,0x69,0x7,0xf, + 0x80,0x0,0x0,0x0,0x0,0x69,0xad,0x3a,0x90,0x0,0x0,0x0,0x0,0x6a,0xe6,0xf1, + 0x80,0x0,0x0,0x0,0x0,0x6b,0x96,0x57,0x10,0x0,0x0,0x0,0x0,0x6c,0xd0,0xe, + 0x0,0x0,0x0,0x0,0x0,0x6d,0x76,0x39,0x10,0x0,0x0,0x0,0x0,0x6e,0xaf,0xf0, + 0x0,0x0,0x0,0x0,0x0,0x6f,0x56,0x1b,0x10,0x0,0x0,0x0,0x0,0x70,0x8f,0xd2, + 0x0,0x0,0x0,0x0,0x0,0x71,0x35,0xfd,0x10,0x0,0x0,0x0,0x0,0x72,0x6f,0xb4, + 0x0,0x0,0x0,0x0,0x0,0x73,0x15,0xdf,0x10,0x0,0x0,0x0,0x0,0x74,0x4f,0x96, + 0x0,0x0,0x0,0x0,0x0,0x74,0xfe,0xfb,0x90,0x0,0x0,0x0,0x0,0x76,0x38,0xb2, + 0x80,0x0,0x0,0x0,0x0,0x76,0xde,0xdd,0x90,0x0,0x0,0x0,0x0,0x78,0x18,0x94, + 0x80,0x0,0x0,0x0,0x0,0x78,0xbe,0xbf,0x90,0x0,0x0,0x0,0x0,0x79,0xf8,0x76, + 0x80,0x0,0x0,0x0,0x0,0x7a,0x9e,0xa1,0x90,0x0,0x0,0x0,0x0,0x7b,0xd8,0x58, + 0x80,0x0,0x0,0x0,0x0,0x7c,0x7e,0x83,0x90,0x0,0x0,0x0,0x0,0x7d,0xb8,0x3a, + 0x80,0x0,0x0,0x0,0x0,0x7e,0x5e,0x65,0x90,0x0,0x0,0x0,0x0,0x7f,0x98,0x1c, + 0x80,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0xff,0xff,0x9d,0x94,0x0,0x0,0xff,0xff,0xab,0xa0,0x1,0x4,0xff,0xff,0x9d,0x90, + 0x0,0x8,0xff,0xff,0xab,0xa0,0x1,0xc,0xff,0xff,0xab,0xa0,0x1,0x10,0x4c,0x4d, + 0x54,0x0,0x4d,0x44,0x54,0x0,0x4d,0x53,0x54,0x0,0x4d,0x57,0x54,0x0,0x4d,0x50, + 0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x1,0xa,0x4d,0x53,0x54, + 0x37,0x4d,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e, + 0x31,0x2e,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/US/Arizona + 0x0,0x0,0x1,0x61, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xb,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x10,0x80,0x0,0x0,0x0,0x9e, + 0xa6,0x3a,0x90,0x9f,0xbb,0x7,0x80,0xa0,0x86,0x1c,0x90,0xa1,0x9a,0xe9,0x80,0xcb, + 0x89,0xc,0x90,0xcf,0x17,0xdf,0x1c,0xcf,0x8f,0xe5,0xac,0xd0,0x81,0x1a,0x1c,0xfa, + 0xf8,0x75,0x10,0xfb,0xe8,0x58,0x0,0x2,0x1,0x2,0x1,0x2,0x3,0x2,0x3,0x2, + 0x1,0x2,0xff,0xff,0x96,0xee,0x0,0x0,0xff,0xff,0xab,0xa0,0x1,0x4,0xff,0xff, + 0x9d,0x90,0x0,0x8,0xff,0xff,0xab,0xa0,0x1,0xc,0x4c,0x4d,0x54,0x0,0x4d,0x44, + 0x54,0x0,0x4d,0x53,0x54,0x0,0x4d,0x57,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x10,0xf8,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x5e,0x4,0xc,0xb0,0xff,0xff, + 0xff,0xff,0x9e,0xa6,0x3a,0x90,0xff,0xff,0xff,0xff,0x9f,0xbb,0x7,0x80,0xff,0xff, + 0xff,0xff,0xa0,0x86,0x1c,0x90,0xff,0xff,0xff,0xff,0xa1,0x9a,0xe9,0x80,0xff,0xff, + 0xff,0xff,0xcb,0x89,0xc,0x90,0xff,0xff,0xff,0xff,0xcf,0x17,0xdf,0x1c,0xff,0xff, + 0xff,0xff,0xcf,0x8f,0xe5,0xac,0xff,0xff,0xff,0xff,0xd0,0x81,0x1a,0x1c,0xff,0xff, + 0xff,0xff,0xfa,0xf8,0x75,0x10,0xff,0xff,0xff,0xff,0xfb,0xe8,0x58,0x0,0x0,0x2, + 0x1,0x2,0x1,0x2,0x3,0x2,0x3,0x2,0x1,0x2,0xff,0xff,0x96,0xee,0x0,0x0, + 0xff,0xff,0xab,0xa0,0x1,0x4,0xff,0xff,0x9d,0x90,0x0,0x8,0xff,0xff,0xab,0xa0, + 0x1,0xc,0x4c,0x4d,0x54,0x0,0x4d,0x44,0x54,0x0,0x4d,0x53,0x54,0x0,0x4d,0x57, + 0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x4d,0x53,0x54,0x37,0xa, + + // /home/konrad/src/smoke/tzone/zoneinfo/US/East-Indiana + 0x0,0x0,0x6,0x8b, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x99,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0x9b, - 0xc,0x17,0x60,0x9b,0xd5,0xda,0xf0,0x9c,0xd9,0xae,0x90,0x9d,0xa4,0xb5,0x90,0x9e, - 0x30,0x58,0x70,0x9e,0xa7,0x29,0xa0,0x9f,0x84,0x97,0x90,0xa0,0x9a,0xd2,0x20,0xa1, - 0xc0,0xc2,0x90,0xc9,0xf3,0xc3,0x70,0xcc,0xe7,0x4b,0x10,0xcd,0xa9,0x17,0x90,0xce, - 0xa2,0x43,0x10,0xcf,0x92,0x34,0x10,0xd0,0x82,0x25,0x10,0xd0,0xfa,0x1,0x70,0xd1, - 0x99,0x78,0xe0,0xd2,0x8a,0xbb,0x60,0xd3,0x50,0xa6,0x90,0xd4,0x49,0xd2,0x10,0xd5, - 0x39,0xc3,0x10,0xd6,0x29,0xb4,0x10,0xd7,0x19,0xa5,0x10,0xd8,0x9,0x96,0x10,0xd9, - 0x2,0xc1,0x90,0xd9,0xe9,0x78,0x10,0xda,0xed,0x2f,0x90,0xdb,0xe6,0x5b,0x10,0xe2, - 0xa2,0xa8,0xf0,0xe3,0x51,0xf2,0x60,0xe4,0x83,0xdc,0x70,0xe5,0x33,0x25,0xe0,0xe6, - 0x74,0xe1,0xf0,0xe7,0x11,0xb6,0x60,0xe8,0x54,0xd2,0x0,0xe8,0xf1,0xc2,0x90,0x13, - 0x4d,0x36,0x0,0x14,0x33,0xfa,0x90,0x15,0x23,0xeb,0x90,0x16,0x13,0xdc,0x90,0x17, - 0x3,0xcd,0x90,0x17,0xf3,0xbe,0x90,0x18,0xe3,0xaf,0x90,0x19,0xd3,0xa0,0x90,0x1a, - 0xc3,0x91,0x90,0x1b,0xbc,0xbd,0x10,0x1c,0xac,0xae,0x10,0x1d,0x9c,0x9f,0x10,0x1e, - 0x8c,0x90,0x10,0x1f,0x7c,0x81,0x10,0x20,0x6c,0x72,0x10,0x21,0x5c,0x63,0x10,0x22, - 0x4c,0x54,0x10,0x23,0x3c,0x45,0x10,0x24,0x2c,0x36,0x10,0x25,0x1c,0x27,0x10,0x26, - 0xc,0x18,0x10,0x27,0x5,0x43,0x90,0x27,0xf5,0x34,0x90,0x28,0xe5,0x25,0x90,0x29, - 0xd5,0x16,0x90,0x2a,0xc5,0x7,0x90,0x2b,0xb4,0xf8,0x90,0x2c,0xa4,0xe9,0x90,0x2d, - 0x94,0xda,0x90,0x2e,0x84,0xcb,0x90,0x2f,0x74,0xbc,0x90,0x30,0x64,0xad,0x90,0x31, - 0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34,0x52,0x96,0x10,0x35, - 0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x38, - 0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b,0xdb,0x58,0x90,0x3c, - 0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f,0x9b,0x1c,0x90,0x40, - 0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43,0x64,0x1b,0x10,0x44, - 0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47, - 0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b, - 0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e,0xac,0xa1,0x90,0x4f, - 0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53, - 0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56,0x2c,0x29,0x90,0x56, - 0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59,0xf5,0x28,0x10,0x5a, - 0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d,0xb4,0xec,0x10,0x5e, - 0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61,0x7d,0xea,0x90,0x62, - 0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65,0x3d,0xae,0x90,0x66, - 0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68,0xfd,0x72,0x90,0x69, - 0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c,0xc6,0x71,0x10,0x6d, - 0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70,0x86,0x35,0x10,0x71, - 0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74,0x45,0xf9,0x10,0x75, - 0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78, - 0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c, - 0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x2, - 0x1,0x2,0x3,0x4,0x2,0x1,0x2,0x1,0x2,0x1,0x4,0x3,0x4,0x3,0x4,0x2, - 0x1,0x2,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x0,0x0,0x63,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x1c,0x80,0x0,0x0,0x0,0x9e, + 0xa6,0x2c,0x80,0x9f,0xba,0xf9,0x70,0xa0,0x86,0xe,0x80,0xa1,0x9a,0xdb,0x70,0xca, + 0x57,0x22,0x80,0xca,0xd8,0x47,0x70,0xcb,0x88,0xfe,0x80,0xd2,0x23,0xf4,0x70,0xd2, + 0x61,0x9,0xf0,0xd3,0x75,0xf3,0x0,0xd4,0x40,0xeb,0xf0,0xd5,0x55,0xd5,0x0,0xd6, + 0x20,0xcd,0xf0,0xd7,0x35,0xb7,0x0,0xd8,0x0,0xaf,0xf0,0xd9,0x15,0x99,0x0,0xd9, + 0xe0,0x91,0xf0,0xda,0xfe,0xb5,0x80,0xdb,0xc0,0x73,0xf0,0xdc,0xde,0x97,0x80,0xdd, + 0xa9,0x90,0x70,0xde,0xbe,0x79,0x80,0xdf,0x89,0x72,0x70,0xe0,0x9e,0x5b,0x80,0xe1, + 0x69,0x54,0x70,0xe2,0x7e,0x3d,0x80,0xe3,0x49,0x36,0x70,0xe4,0x5e,0x1f,0x80,0xe8, + 0xf2,0x16,0xf0,0xea,0x7,0x0,0x0,0xfe,0xb8,0x1c,0xf0,0xff,0xa7,0xff,0xe0,0x0, + 0x97,0xfe,0xf0,0x1,0x87,0xe1,0xe0,0x44,0x2f,0x76,0x70,0x45,0x44,0x43,0x60,0x45, + 0xf3,0xa8,0xf0,0x47,0x2d,0x5f,0xe0,0x47,0xd3,0x8a,0xf0,0x49,0xd,0x41,0xe0,0x49, + 0xb3,0x6c,0xf0,0x4a,0xed,0x23,0xe0,0x4b,0x9c,0x89,0x70,0x4c,0xd6,0x40,0x60,0x4d, + 0x7c,0x6b,0x70,0x4e,0xb6,0x22,0x60,0x4f,0x5c,0x4d,0x70,0x50,0x96,0x4,0x60,0x51, + 0x3c,0x2f,0x70,0x52,0x75,0xe6,0x60,0x53,0x1c,0x11,0x70,0x54,0x55,0xc8,0x60,0x54, + 0xfb,0xf3,0x70,0x56,0x35,0xaa,0x60,0x56,0xe5,0xf,0xf0,0x58,0x1e,0xc6,0xe0,0x58, + 0xc4,0xf1,0xf0,0x59,0xfe,0xa8,0xe0,0x5a,0xa4,0xd3,0xf0,0x5b,0xde,0x8a,0xe0,0x5c, + 0x84,0xb5,0xf0,0x5d,0xbe,0x6c,0xe0,0x5e,0x64,0x97,0xf0,0x5f,0x9e,0x4e,0xe0,0x60, + 0x4d,0xb4,0x70,0x61,0x87,0x6b,0x60,0x62,0x2d,0x96,0x70,0x63,0x67,0x4d,0x60,0x64, + 0xd,0x78,0x70,0x65,0x47,0x2f,0x60,0x65,0xed,0x5a,0x70,0x67,0x27,0x11,0x60,0x67, + 0xcd,0x3c,0x70,0x69,0x6,0xf3,0x60,0x69,0xad,0x1e,0x70,0x6a,0xe6,0xd5,0x60,0x6b, + 0x96,0x3a,0xf0,0x6c,0xcf,0xf1,0xe0,0x6d,0x76,0x1c,0xf0,0x6e,0xaf,0xd3,0xe0,0x6f, + 0x55,0xfe,0xf0,0x70,0x8f,0xb5,0xe0,0x71,0x35,0xe0,0xf0,0x72,0x6f,0x97,0xe0,0x73, + 0x15,0xc2,0xf0,0x74,0x4f,0x79,0xe0,0x74,0xfe,0xdf,0x70,0x76,0x38,0x96,0x60,0x76, + 0xde,0xc1,0x70,0x78,0x18,0x78,0x60,0x78,0xbe,0xa3,0x70,0x79,0xf8,0x5a,0x60,0x7a, + 0x9e,0x85,0x70,0x7b,0xd8,0x3c,0x60,0x7c,0x7e,0x67,0x70,0x7d,0xb8,0x1e,0x60,0x7e, + 0x5e,0x49,0x70,0x7f,0x98,0x0,0x60,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x5,0x2,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x0,0x0,0x11,0xe4,0x0,0x0,0x0,0x0, - 0x1c,0x20,0x1,0x4,0x0,0x0,0xe,0x10,0x0,0x9,0x0,0x0,0x1c,0x20,0x1,0x4, - 0x0,0x0,0xe,0x10,0x0,0x9,0x0,0x0,0xe,0x10,0x0,0x9,0x0,0x0,0x1c,0x20, - 0x1,0x4,0x4c,0x4d,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x43,0x45,0x54,0x0,0x0, - 0x0,0x0,0x1,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x54,0x5a,0x69, - 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x9a,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0xd,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0x6a,0xee,0xb3,0x1c,0xff,0xff,0xff,0xff,0x9b,0xc,0x17, - 0x60,0xff,0xff,0xff,0xff,0x9b,0xd5,0xda,0xf0,0xff,0xff,0xff,0xff,0x9c,0xd9,0xae, - 0x90,0xff,0xff,0xff,0xff,0x9d,0xa4,0xb5,0x90,0xff,0xff,0xff,0xff,0x9e,0x30,0x58, - 0x70,0xff,0xff,0xff,0xff,0x9e,0xa7,0x29,0xa0,0xff,0xff,0xff,0xff,0x9f,0x84,0x97, - 0x90,0xff,0xff,0xff,0xff,0xa0,0x9a,0xd2,0x20,0xff,0xff,0xff,0xff,0xa1,0xc0,0xc2, - 0x90,0xff,0xff,0xff,0xff,0xc9,0xf3,0xc3,0x70,0xff,0xff,0xff,0xff,0xcc,0xe7,0x4b, - 0x10,0xff,0xff,0xff,0xff,0xcd,0xa9,0x17,0x90,0xff,0xff,0xff,0xff,0xce,0xa2,0x43, - 0x10,0xff,0xff,0xff,0xff,0xcf,0x92,0x34,0x10,0xff,0xff,0xff,0xff,0xd0,0x82,0x25, - 0x10,0xff,0xff,0xff,0xff,0xd0,0xfa,0x1,0x70,0xff,0xff,0xff,0xff,0xd1,0x99,0x78, - 0xe0,0xff,0xff,0xff,0xff,0xd2,0x8a,0xbb,0x60,0xff,0xff,0xff,0xff,0xd3,0x50,0xa6, - 0x90,0xff,0xff,0xff,0xff,0xd4,0x49,0xd2,0x10,0xff,0xff,0xff,0xff,0xd5,0x39,0xc3, - 0x10,0xff,0xff,0xff,0xff,0xd6,0x29,0xb4,0x10,0xff,0xff,0xff,0xff,0xd7,0x19,0xa5, - 0x10,0xff,0xff,0xff,0xff,0xd8,0x9,0x96,0x10,0xff,0xff,0xff,0xff,0xd9,0x2,0xc1, - 0x90,0xff,0xff,0xff,0xff,0xd9,0xe9,0x78,0x10,0xff,0xff,0xff,0xff,0xda,0xed,0x2f, - 0x90,0xff,0xff,0xff,0xff,0xdb,0xe6,0x5b,0x10,0xff,0xff,0xff,0xff,0xe2,0xa2,0xa8, - 0xf0,0xff,0xff,0xff,0xff,0xe3,0x51,0xf2,0x60,0xff,0xff,0xff,0xff,0xe4,0x83,0xdc, - 0x70,0xff,0xff,0xff,0xff,0xe5,0x33,0x25,0xe0,0xff,0xff,0xff,0xff,0xe6,0x74,0xe1, - 0xf0,0xff,0xff,0xff,0xff,0xe7,0x11,0xb6,0x60,0xff,0xff,0xff,0xff,0xe8,0x54,0xd2, - 0x0,0xff,0xff,0xff,0xff,0xe8,0xf1,0xc2,0x90,0x0,0x0,0x0,0x0,0x13,0x4d,0x36, - 0x0,0x0,0x0,0x0,0x0,0x14,0x33,0xfa,0x90,0x0,0x0,0x0,0x0,0x15,0x23,0xeb, - 0x90,0x0,0x0,0x0,0x0,0x16,0x13,0xdc,0x90,0x0,0x0,0x0,0x0,0x17,0x3,0xcd, - 0x90,0x0,0x0,0x0,0x0,0x17,0xf3,0xbe,0x90,0x0,0x0,0x0,0x0,0x18,0xe3,0xaf, - 0x90,0x0,0x0,0x0,0x0,0x19,0xd3,0xa0,0x90,0x0,0x0,0x0,0x0,0x1a,0xc3,0x91, - 0x90,0x0,0x0,0x0,0x0,0x1b,0xbc,0xbd,0x10,0x0,0x0,0x0,0x0,0x1c,0xac,0xae, - 0x10,0x0,0x0,0x0,0x0,0x1d,0x9c,0x9f,0x10,0x0,0x0,0x0,0x0,0x1e,0x8c,0x90, - 0x10,0x0,0x0,0x0,0x0,0x1f,0x7c,0x81,0x10,0x0,0x0,0x0,0x0,0x20,0x6c,0x72, - 0x10,0x0,0x0,0x0,0x0,0x21,0x5c,0x63,0x10,0x0,0x0,0x0,0x0,0x22,0x4c,0x54, - 0x10,0x0,0x0,0x0,0x0,0x23,0x3c,0x45,0x10,0x0,0x0,0x0,0x0,0x24,0x2c,0x36, - 0x10,0x0,0x0,0x0,0x0,0x25,0x1c,0x27,0x10,0x0,0x0,0x0,0x0,0x26,0xc,0x18, - 0x10,0x0,0x0,0x0,0x0,0x27,0x5,0x43,0x90,0x0,0x0,0x0,0x0,0x27,0xf5,0x34, - 0x90,0x0,0x0,0x0,0x0,0x28,0xe5,0x25,0x90,0x0,0x0,0x0,0x0,0x29,0xd5,0x16, - 0x90,0x0,0x0,0x0,0x0,0x2a,0xc5,0x7,0x90,0x0,0x0,0x0,0x0,0x2b,0xb4,0xf8, - 0x90,0x0,0x0,0x0,0x0,0x2c,0xa4,0xe9,0x90,0x0,0x0,0x0,0x0,0x2d,0x94,0xda, - 0x90,0x0,0x0,0x0,0x0,0x2e,0x84,0xcb,0x90,0x0,0x0,0x0,0x0,0x2f,0x74,0xbc, - 0x90,0x0,0x0,0x0,0x0,0x30,0x64,0xad,0x90,0x0,0x0,0x0,0x0,0x31,0x5d,0xd9, - 0x10,0x0,0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d,0xbb, - 0x10,0x0,0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d,0x9d, - 0x10,0x0,0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd,0x7f, - 0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd,0x61, - 0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd,0x43, - 0x10,0x0,0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f, - 0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86,0x41, - 0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66,0x23, - 0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46,0x5, - 0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25,0xe7, - 0x90,0x0,0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5,0xc9, - 0x90,0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee,0xe6, - 0x10,0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce,0xc8, - 0x10,0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae,0xaa, - 0x10,0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c, - 0x10,0x0,0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e, - 0x10,0x0,0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57,0x8a, - 0x90,0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37,0x6c, - 0x90,0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17,0x4e, - 0x90,0x0,0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7,0x30, - 0x90,0x0,0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7,0x12, - 0x90,0x0,0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4, - 0x90,0x0,0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0,0x11, - 0x10,0x0,0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3, - 0x10,0x0,0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f,0xd5, - 0x10,0x0,0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f,0xb7, - 0x10,0x0,0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f,0x99, - 0x10,0x0,0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8,0xb5, - 0x90,0x0,0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8,0x97, - 0x90,0x0,0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8,0x79, - 0x90,0x0,0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b, - 0x90,0x0,0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88,0x3d, - 0x90,0x0,0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68,0x1f, - 0x90,0x0,0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51,0x3c, - 0x10,0x0,0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31,0x1e, - 0x10,0x0,0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11,0x0, - 0x10,0x0,0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0,0xe2, - 0x10,0x0,0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0,0xc4, - 0x10,0x0,0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6, - 0x10,0x0,0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99,0xc2, - 0x90,0x0,0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79,0xa4, - 0x90,0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x2,0x1,0x2,0x3,0x4,0x2, - 0x1,0x2,0x1,0x2,0x1,0x4,0x3,0x4,0x3,0x4,0x2,0x1,0x2,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0xff,0xff,0xaf,0x3a,0x0,0x0, + 0xff,0xff,0xb9,0xb0,0x1,0x4,0xff,0xff,0xab,0xa0,0x0,0x8,0xff,0xff,0xb9,0xb0, + 0x1,0xc,0xff,0xff,0xb9,0xb0,0x1,0x10,0xff,0xff,0xb9,0xb0,0x0,0x14,0xff,0xff, + 0xc7,0xc0,0x1,0x18,0x4c,0x4d,0x54,0x0,0x43,0x44,0x54,0x0,0x43,0x53,0x54,0x0, + 0x43,0x57,0x54,0x0,0x43,0x50,0x54,0x0,0x45,0x53,0x54,0x0,0x45,0x44,0x54,0x0, + 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x54,0x5a, + 0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x64,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x1c,0xf8,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xff,0xff,0xff,0xff,0x5e,0x3,0xfe,0xa0,0xff,0xff,0xff,0xff,0x9e,0xa6, + 0x2c,0x80,0xff,0xff,0xff,0xff,0x9f,0xba,0xf9,0x70,0xff,0xff,0xff,0xff,0xa0,0x86, + 0xe,0x80,0xff,0xff,0xff,0xff,0xa1,0x9a,0xdb,0x70,0xff,0xff,0xff,0xff,0xca,0x57, + 0x22,0x80,0xff,0xff,0xff,0xff,0xca,0xd8,0x47,0x70,0xff,0xff,0xff,0xff,0xcb,0x88, + 0xfe,0x80,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x61, + 0x9,0xf0,0xff,0xff,0xff,0xff,0xd3,0x75,0xf3,0x0,0xff,0xff,0xff,0xff,0xd4,0x40, + 0xeb,0xf0,0xff,0xff,0xff,0xff,0xd5,0x55,0xd5,0x0,0xff,0xff,0xff,0xff,0xd6,0x20, + 0xcd,0xf0,0xff,0xff,0xff,0xff,0xd7,0x35,0xb7,0x0,0xff,0xff,0xff,0xff,0xd8,0x0, + 0xaf,0xf0,0xff,0xff,0xff,0xff,0xd9,0x15,0x99,0x0,0xff,0xff,0xff,0xff,0xd9,0xe0, + 0x91,0xf0,0xff,0xff,0xff,0xff,0xda,0xfe,0xb5,0x80,0xff,0xff,0xff,0xff,0xdb,0xc0, + 0x73,0xf0,0xff,0xff,0xff,0xff,0xdc,0xde,0x97,0x80,0xff,0xff,0xff,0xff,0xdd,0xa9, + 0x90,0x70,0xff,0xff,0xff,0xff,0xde,0xbe,0x79,0x80,0xff,0xff,0xff,0xff,0xdf,0x89, + 0x72,0x70,0xff,0xff,0xff,0xff,0xe0,0x9e,0x5b,0x80,0xff,0xff,0xff,0xff,0xe1,0x69, + 0x54,0x70,0xff,0xff,0xff,0xff,0xe2,0x7e,0x3d,0x80,0xff,0xff,0xff,0xff,0xe3,0x49, + 0x36,0x70,0xff,0xff,0xff,0xff,0xe4,0x5e,0x1f,0x80,0xff,0xff,0xff,0xff,0xe8,0xf2, + 0x16,0xf0,0xff,0xff,0xff,0xff,0xea,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0xfe,0xb8, + 0x1c,0xf0,0xff,0xff,0xff,0xff,0xff,0xa7,0xff,0xe0,0x0,0x0,0x0,0x0,0x0,0x97, + 0xfe,0xf0,0x0,0x0,0x0,0x0,0x1,0x87,0xe1,0xe0,0x0,0x0,0x0,0x0,0x44,0x2f, + 0x76,0x70,0x0,0x0,0x0,0x0,0x45,0x44,0x43,0x60,0x0,0x0,0x0,0x0,0x45,0xf3, + 0xa8,0xf0,0x0,0x0,0x0,0x0,0x47,0x2d,0x5f,0xe0,0x0,0x0,0x0,0x0,0x47,0xd3, + 0x8a,0xf0,0x0,0x0,0x0,0x0,0x49,0xd,0x41,0xe0,0x0,0x0,0x0,0x0,0x49,0xb3, + 0x6c,0xf0,0x0,0x0,0x0,0x0,0x4a,0xed,0x23,0xe0,0x0,0x0,0x0,0x0,0x4b,0x9c, + 0x89,0x70,0x0,0x0,0x0,0x0,0x4c,0xd6,0x40,0x60,0x0,0x0,0x0,0x0,0x4d,0x7c, + 0x6b,0x70,0x0,0x0,0x0,0x0,0x4e,0xb6,0x22,0x60,0x0,0x0,0x0,0x0,0x4f,0x5c, + 0x4d,0x70,0x0,0x0,0x0,0x0,0x50,0x96,0x4,0x60,0x0,0x0,0x0,0x0,0x51,0x3c, + 0x2f,0x70,0x0,0x0,0x0,0x0,0x52,0x75,0xe6,0x60,0x0,0x0,0x0,0x0,0x53,0x1c, + 0x11,0x70,0x0,0x0,0x0,0x0,0x54,0x55,0xc8,0x60,0x0,0x0,0x0,0x0,0x54,0xfb, + 0xf3,0x70,0x0,0x0,0x0,0x0,0x56,0x35,0xaa,0x60,0x0,0x0,0x0,0x0,0x56,0xe5, + 0xf,0xf0,0x0,0x0,0x0,0x0,0x58,0x1e,0xc6,0xe0,0x0,0x0,0x0,0x0,0x58,0xc4, + 0xf1,0xf0,0x0,0x0,0x0,0x0,0x59,0xfe,0xa8,0xe0,0x0,0x0,0x0,0x0,0x5a,0xa4, + 0xd3,0xf0,0x0,0x0,0x0,0x0,0x5b,0xde,0x8a,0xe0,0x0,0x0,0x0,0x0,0x5c,0x84, + 0xb5,0xf0,0x0,0x0,0x0,0x0,0x5d,0xbe,0x6c,0xe0,0x0,0x0,0x0,0x0,0x5e,0x64, + 0x97,0xf0,0x0,0x0,0x0,0x0,0x5f,0x9e,0x4e,0xe0,0x0,0x0,0x0,0x0,0x60,0x4d, + 0xb4,0x70,0x0,0x0,0x0,0x0,0x61,0x87,0x6b,0x60,0x0,0x0,0x0,0x0,0x62,0x2d, + 0x96,0x70,0x0,0x0,0x0,0x0,0x63,0x67,0x4d,0x60,0x0,0x0,0x0,0x0,0x64,0xd, + 0x78,0x70,0x0,0x0,0x0,0x0,0x65,0x47,0x2f,0x60,0x0,0x0,0x0,0x0,0x65,0xed, + 0x5a,0x70,0x0,0x0,0x0,0x0,0x67,0x27,0x11,0x60,0x0,0x0,0x0,0x0,0x67,0xcd, + 0x3c,0x70,0x0,0x0,0x0,0x0,0x69,0x6,0xf3,0x60,0x0,0x0,0x0,0x0,0x69,0xad, + 0x1e,0x70,0x0,0x0,0x0,0x0,0x6a,0xe6,0xd5,0x60,0x0,0x0,0x0,0x0,0x6b,0x96, + 0x3a,0xf0,0x0,0x0,0x0,0x0,0x6c,0xcf,0xf1,0xe0,0x0,0x0,0x0,0x0,0x6d,0x76, + 0x1c,0xf0,0x0,0x0,0x0,0x0,0x6e,0xaf,0xd3,0xe0,0x0,0x0,0x0,0x0,0x6f,0x55, + 0xfe,0xf0,0x0,0x0,0x0,0x0,0x70,0x8f,0xb5,0xe0,0x0,0x0,0x0,0x0,0x71,0x35, + 0xe0,0xf0,0x0,0x0,0x0,0x0,0x72,0x6f,0x97,0xe0,0x0,0x0,0x0,0x0,0x73,0x15, + 0xc2,0xf0,0x0,0x0,0x0,0x0,0x74,0x4f,0x79,0xe0,0x0,0x0,0x0,0x0,0x74,0xfe, + 0xdf,0x70,0x0,0x0,0x0,0x0,0x76,0x38,0x96,0x60,0x0,0x0,0x0,0x0,0x76,0xde, + 0xc1,0x70,0x0,0x0,0x0,0x0,0x78,0x18,0x78,0x60,0x0,0x0,0x0,0x0,0x78,0xbe, + 0xa3,0x70,0x0,0x0,0x0,0x0,0x79,0xf8,0x5a,0x60,0x0,0x0,0x0,0x0,0x7a,0x9e, + 0x85,0x70,0x0,0x0,0x0,0x0,0x7b,0xd8,0x3c,0x60,0x0,0x0,0x0,0x0,0x7c,0x7e, + 0x67,0x70,0x0,0x0,0x0,0x0,0x7d,0xb8,0x1e,0x60,0x0,0x0,0x0,0x0,0x7e,0x5e, + 0x49,0x70,0x0,0x0,0x0,0x0,0x7f,0x98,0x0,0x60,0x0,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x3,0x4,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x5,0x2,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0xff,0xff, + 0xaf,0x3a,0x0,0x0,0xff,0xff,0xb9,0xb0,0x1,0x4,0xff,0xff,0xab,0xa0,0x0,0x8, + 0xff,0xff,0xb9,0xb0,0x1,0xc,0xff,0xff,0xb9,0xb0,0x1,0x10,0xff,0xff,0xb9,0xb0, + 0x0,0x14,0xff,0xff,0xc7,0xc0,0x1,0x18,0x4c,0x4d,0x54,0x0,0x43,0x44,0x54,0x0, + 0x43,0x53,0x54,0x0,0x43,0x57,0x54,0x0,0x43,0x50,0x54,0x0,0x45,0x53,0x54,0x0, + 0x45,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1, + 0x0,0x0,0xa,0x45,0x53,0x54,0x35,0x45,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e, + 0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/US/Aleutian + 0x0,0x0,0x9,0x3d, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x90,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x21,0x80,0x0,0x0,0x0,0xcb, + 0x89,0x44,0xd0,0xd2,0x23,0xf4,0x70,0xd2,0x61,0x50,0x40,0xfa,0xd2,0x55,0xb0,0xfe, + 0xb8,0x71,0x50,0xff,0xa8,0x54,0x40,0x0,0x98,0x53,0x50,0x1,0x88,0x36,0x40,0x2, + 0x78,0x35,0x50,0x3,0x71,0x52,0xc0,0x4,0x61,0x51,0xd0,0x5,0x51,0x34,0xc0,0x6, + 0x41,0x33,0xd0,0x7,0x31,0x16,0xc0,0x7,0x8d,0x6d,0xd0,0x9,0x10,0xf8,0xc0,0x9, + 0xad,0xe9,0x50,0xa,0xf0,0xda,0xc0,0xb,0xe0,0xd9,0xd0,0xc,0xd9,0xf7,0x40,0xd, + 0xc0,0xbb,0xd0,0xe,0xb9,0xd9,0x40,0xf,0xa9,0xd8,0x50,0x10,0x99,0xbb,0x40,0x11, + 0x89,0xba,0x50,0x12,0x79,0x9d,0x40,0x13,0x69,0x9c,0x50,0x14,0x59,0x7f,0x40,0x15, + 0x49,0x7e,0x50,0x16,0x39,0x61,0x40,0x17,0x29,0x60,0x50,0x18,0x22,0x7d,0xc0,0x19, + 0x9,0x42,0x50,0x1a,0x2,0x5f,0xc0,0x1a,0x2b,0x22,0x20,0x1a,0xf2,0x50,0xc0,0x1b, + 0xe2,0x33,0xb0,0x1c,0xd2,0x32,0xc0,0x1d,0xc2,0x15,0xb0,0x1e,0xb2,0x14,0xc0,0x1f, + 0xa1,0xf7,0xb0,0x20,0x76,0x47,0x40,0x21,0x81,0xd9,0xb0,0x22,0x56,0x29,0x40,0x23, + 0x6a,0xf6,0x30,0x24,0x36,0xb,0x40,0x25,0x4a,0xd8,0x30,0x26,0x15,0xed,0x40,0x27, + 0x2a,0xba,0x30,0x27,0xff,0x9,0xc0,0x29,0xa,0x9c,0x30,0x29,0xde,0xeb,0xc0,0x2a, + 0xea,0x7e,0x30,0x2b,0xbe,0xcd,0xc0,0x2c,0xd3,0x9a,0xb0,0x2d,0x9e,0xaf,0xc0,0x2e, + 0xb3,0x7c,0xb0,0x2f,0x7e,0x91,0xc0,0x30,0x93,0x5e,0xb0,0x31,0x67,0xae,0x40,0x32, + 0x73,0x40,0xb0,0x33,0x47,0x90,0x40,0x34,0x53,0x22,0xb0,0x35,0x27,0x72,0x40,0x36, + 0x33,0x4,0xb0,0x37,0x7,0x54,0x40,0x38,0x1c,0x21,0x30,0x38,0xe7,0x36,0x40,0x39, + 0xfc,0x3,0x30,0x3a,0xc7,0x18,0x40,0x3b,0xdb,0xe5,0x30,0x3c,0xb0,0x34,0xc0,0x3d, + 0xbb,0xc7,0x30,0x3e,0x90,0x16,0xc0,0x3f,0x9b,0xa9,0x30,0x40,0x6f,0xf8,0xc0,0x41, + 0x84,0xc5,0xb0,0x42,0x4f,0xda,0xc0,0x43,0x64,0xa7,0xb0,0x44,0x2f,0xbc,0xc0,0x45, + 0x44,0x89,0xb0,0x45,0xf3,0xef,0x40,0x47,0x2d,0xa6,0x30,0x47,0xd3,0xd1,0x40,0x49, + 0xd,0x88,0x30,0x49,0xb3,0xb3,0x40,0x4a,0xed,0x6a,0x30,0x4b,0x9c,0xcf,0xc0,0x4c, + 0xd6,0x86,0xb0,0x4d,0x7c,0xb1,0xc0,0x4e,0xb6,0x68,0xb0,0x4f,0x5c,0x93,0xc0,0x50, + 0x96,0x4a,0xb0,0x51,0x3c,0x75,0xc0,0x52,0x76,0x2c,0xb0,0x53,0x1c,0x57,0xc0,0x54, + 0x56,0xe,0xb0,0x54,0xfc,0x39,0xc0,0x56,0x35,0xf0,0xb0,0x56,0xe5,0x56,0x40,0x58, + 0x1f,0xd,0x30,0x58,0xc5,0x38,0x40,0x59,0xfe,0xef,0x30,0x5a,0xa5,0x1a,0x40,0x5b, + 0xde,0xd1,0x30,0x5c,0x84,0xfc,0x40,0x5d,0xbe,0xb3,0x30,0x5e,0x64,0xde,0x40,0x5f, + 0x9e,0x95,0x30,0x60,0x4d,0xfa,0xc0,0x61,0x87,0xb1,0xb0,0x62,0x2d,0xdc,0xc0,0x63, + 0x67,0x93,0xb0,0x64,0xd,0xbe,0xc0,0x65,0x47,0x75,0xb0,0x65,0xed,0xa0,0xc0,0x67, + 0x27,0x57,0xb0,0x67,0xcd,0x82,0xc0,0x69,0x7,0x39,0xb0,0x69,0xad,0x64,0xc0,0x6a, + 0xe7,0x1b,0xb0,0x6b,0x96,0x81,0x40,0x6c,0xd0,0x38,0x30,0x6d,0x76,0x63,0x40,0x6e, + 0xb0,0x1a,0x30,0x6f,0x56,0x45,0x40,0x70,0x8f,0xfc,0x30,0x71,0x36,0x27,0x40,0x72, + 0x6f,0xde,0x30,0x73,0x16,0x9,0x40,0x74,0x4f,0xc0,0x30,0x74,0xff,0x25,0xc0,0x76, + 0x38,0xdc,0xb0,0x76,0xdf,0x7,0xc0,0x78,0x18,0xbe,0xb0,0x78,0xbe,0xe9,0xc0,0x79, + 0xf8,0xa0,0xb0,0x7a,0x9e,0xcb,0xc0,0x7b,0xd8,0x82,0xb0,0x7c,0x7e,0xad,0xc0,0x7d, + 0xb8,0x64,0xb0,0x7e,0x5e,0x8f,0xc0,0x7f,0x98,0x46,0xb0,0x1,0x2,0x3,0x1,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x6,0x8,0x7, + 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, + 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, + 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, + 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, + 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, + 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, + 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0xff,0xff,0x5a,0x62,0x0, + 0x0,0xff,0xff,0x65,0x50,0x0,0x4,0xff,0xff,0x73,0x60,0x1,0x8,0xff,0xff,0x73, + 0x60,0x1,0xc,0xff,0xff,0x65,0x50,0x0,0x10,0xff,0xff,0x73,0x60,0x1,0x14,0xff, + 0xff,0x73,0x60,0x0,0x18,0xff,0xff,0x81,0x70,0x1,0x1d,0xff,0xff,0x73,0x60,0x0, + 0x19,0x4c,0x4d,0x54,0x0,0x4e,0x53,0x54,0x0,0x4e,0x57,0x54,0x0,0x4e,0x50,0x54, + 0x0,0x42,0x53,0x54,0x0,0x42,0x44,0x54,0x0,0x41,0x48,0x53,0x54,0x0,0x48,0x44, + 0x54,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0, + 0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0xa, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x21, + 0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x3f,0xc2,0xfd,0xd1, + 0xff,0xff,0xff,0xff,0x7d,0x87,0x5a,0x5e,0xff,0xff,0xff,0xff,0xcb,0x89,0x44,0xd0, + 0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x61,0x50,0x40, + 0xff,0xff,0xff,0xff,0xfa,0xd2,0x55,0xb0,0xff,0xff,0xff,0xff,0xfe,0xb8,0x71,0x50, + 0xff,0xff,0xff,0xff,0xff,0xa8,0x54,0x40,0x0,0x0,0x0,0x0,0x0,0x98,0x53,0x50, + 0x0,0x0,0x0,0x0,0x1,0x88,0x36,0x40,0x0,0x0,0x0,0x0,0x2,0x78,0x35,0x50, + 0x0,0x0,0x0,0x0,0x3,0x71,0x52,0xc0,0x0,0x0,0x0,0x0,0x4,0x61,0x51,0xd0, + 0x0,0x0,0x0,0x0,0x5,0x51,0x34,0xc0,0x0,0x0,0x0,0x0,0x6,0x41,0x33,0xd0, + 0x0,0x0,0x0,0x0,0x7,0x31,0x16,0xc0,0x0,0x0,0x0,0x0,0x7,0x8d,0x6d,0xd0, + 0x0,0x0,0x0,0x0,0x9,0x10,0xf8,0xc0,0x0,0x0,0x0,0x0,0x9,0xad,0xe9,0x50, + 0x0,0x0,0x0,0x0,0xa,0xf0,0xda,0xc0,0x0,0x0,0x0,0x0,0xb,0xe0,0xd9,0xd0, + 0x0,0x0,0x0,0x0,0xc,0xd9,0xf7,0x40,0x0,0x0,0x0,0x0,0xd,0xc0,0xbb,0xd0, + 0x0,0x0,0x0,0x0,0xe,0xb9,0xd9,0x40,0x0,0x0,0x0,0x0,0xf,0xa9,0xd8,0x50, + 0x0,0x0,0x0,0x0,0x10,0x99,0xbb,0x40,0x0,0x0,0x0,0x0,0x11,0x89,0xba,0x50, + 0x0,0x0,0x0,0x0,0x12,0x79,0x9d,0x40,0x0,0x0,0x0,0x0,0x13,0x69,0x9c,0x50, + 0x0,0x0,0x0,0x0,0x14,0x59,0x7f,0x40,0x0,0x0,0x0,0x0,0x15,0x49,0x7e,0x50, + 0x0,0x0,0x0,0x0,0x16,0x39,0x61,0x40,0x0,0x0,0x0,0x0,0x17,0x29,0x60,0x50, + 0x0,0x0,0x0,0x0,0x18,0x22,0x7d,0xc0,0x0,0x0,0x0,0x0,0x19,0x9,0x42,0x50, + 0x0,0x0,0x0,0x0,0x1a,0x2,0x5f,0xc0,0x0,0x0,0x0,0x0,0x1a,0x2b,0x22,0x20, + 0x0,0x0,0x0,0x0,0x1a,0xf2,0x50,0xc0,0x0,0x0,0x0,0x0,0x1b,0xe2,0x33,0xb0, + 0x0,0x0,0x0,0x0,0x1c,0xd2,0x32,0xc0,0x0,0x0,0x0,0x0,0x1d,0xc2,0x15,0xb0, + 0x0,0x0,0x0,0x0,0x1e,0xb2,0x14,0xc0,0x0,0x0,0x0,0x0,0x1f,0xa1,0xf7,0xb0, + 0x0,0x0,0x0,0x0,0x20,0x76,0x47,0x40,0x0,0x0,0x0,0x0,0x21,0x81,0xd9,0xb0, + 0x0,0x0,0x0,0x0,0x22,0x56,0x29,0x40,0x0,0x0,0x0,0x0,0x23,0x6a,0xf6,0x30, + 0x0,0x0,0x0,0x0,0x24,0x36,0xb,0x40,0x0,0x0,0x0,0x0,0x25,0x4a,0xd8,0x30, + 0x0,0x0,0x0,0x0,0x26,0x15,0xed,0x40,0x0,0x0,0x0,0x0,0x27,0x2a,0xba,0x30, + 0x0,0x0,0x0,0x0,0x27,0xff,0x9,0xc0,0x0,0x0,0x0,0x0,0x29,0xa,0x9c,0x30, + 0x0,0x0,0x0,0x0,0x29,0xde,0xeb,0xc0,0x0,0x0,0x0,0x0,0x2a,0xea,0x7e,0x30, + 0x0,0x0,0x0,0x0,0x2b,0xbe,0xcd,0xc0,0x0,0x0,0x0,0x0,0x2c,0xd3,0x9a,0xb0, + 0x0,0x0,0x0,0x0,0x2d,0x9e,0xaf,0xc0,0x0,0x0,0x0,0x0,0x2e,0xb3,0x7c,0xb0, + 0x0,0x0,0x0,0x0,0x2f,0x7e,0x91,0xc0,0x0,0x0,0x0,0x0,0x30,0x93,0x5e,0xb0, + 0x0,0x0,0x0,0x0,0x31,0x67,0xae,0x40,0x0,0x0,0x0,0x0,0x32,0x73,0x40,0xb0, + 0x0,0x0,0x0,0x0,0x33,0x47,0x90,0x40,0x0,0x0,0x0,0x0,0x34,0x53,0x22,0xb0, + 0x0,0x0,0x0,0x0,0x35,0x27,0x72,0x40,0x0,0x0,0x0,0x0,0x36,0x33,0x4,0xb0, + 0x0,0x0,0x0,0x0,0x37,0x7,0x54,0x40,0x0,0x0,0x0,0x0,0x38,0x1c,0x21,0x30, + 0x0,0x0,0x0,0x0,0x38,0xe7,0x36,0x40,0x0,0x0,0x0,0x0,0x39,0xfc,0x3,0x30, + 0x0,0x0,0x0,0x0,0x3a,0xc7,0x18,0x40,0x0,0x0,0x0,0x0,0x3b,0xdb,0xe5,0x30, + 0x0,0x0,0x0,0x0,0x3c,0xb0,0x34,0xc0,0x0,0x0,0x0,0x0,0x3d,0xbb,0xc7,0x30, + 0x0,0x0,0x0,0x0,0x3e,0x90,0x16,0xc0,0x0,0x0,0x0,0x0,0x3f,0x9b,0xa9,0x30, + 0x0,0x0,0x0,0x0,0x40,0x6f,0xf8,0xc0,0x0,0x0,0x0,0x0,0x41,0x84,0xc5,0xb0, + 0x0,0x0,0x0,0x0,0x42,0x4f,0xda,0xc0,0x0,0x0,0x0,0x0,0x43,0x64,0xa7,0xb0, + 0x0,0x0,0x0,0x0,0x44,0x2f,0xbc,0xc0,0x0,0x0,0x0,0x0,0x45,0x44,0x89,0xb0, + 0x0,0x0,0x0,0x0,0x45,0xf3,0xef,0x40,0x0,0x0,0x0,0x0,0x47,0x2d,0xa6,0x30, + 0x0,0x0,0x0,0x0,0x47,0xd3,0xd1,0x40,0x0,0x0,0x0,0x0,0x49,0xd,0x88,0x30, + 0x0,0x0,0x0,0x0,0x49,0xb3,0xb3,0x40,0x0,0x0,0x0,0x0,0x4a,0xed,0x6a,0x30, + 0x0,0x0,0x0,0x0,0x4b,0x9c,0xcf,0xc0,0x0,0x0,0x0,0x0,0x4c,0xd6,0x86,0xb0, + 0x0,0x0,0x0,0x0,0x4d,0x7c,0xb1,0xc0,0x0,0x0,0x0,0x0,0x4e,0xb6,0x68,0xb0, + 0x0,0x0,0x0,0x0,0x4f,0x5c,0x93,0xc0,0x0,0x0,0x0,0x0,0x50,0x96,0x4a,0xb0, + 0x0,0x0,0x0,0x0,0x51,0x3c,0x75,0xc0,0x0,0x0,0x0,0x0,0x52,0x76,0x2c,0xb0, + 0x0,0x0,0x0,0x0,0x53,0x1c,0x57,0xc0,0x0,0x0,0x0,0x0,0x54,0x56,0xe,0xb0, + 0x0,0x0,0x0,0x0,0x54,0xfc,0x39,0xc0,0x0,0x0,0x0,0x0,0x56,0x35,0xf0,0xb0, + 0x0,0x0,0x0,0x0,0x56,0xe5,0x56,0x40,0x0,0x0,0x0,0x0,0x58,0x1f,0xd,0x30, + 0x0,0x0,0x0,0x0,0x58,0xc5,0x38,0x40,0x0,0x0,0x0,0x0,0x59,0xfe,0xef,0x30, + 0x0,0x0,0x0,0x0,0x5a,0xa5,0x1a,0x40,0x0,0x0,0x0,0x0,0x5b,0xde,0xd1,0x30, + 0x0,0x0,0x0,0x0,0x5c,0x84,0xfc,0x40,0x0,0x0,0x0,0x0,0x5d,0xbe,0xb3,0x30, + 0x0,0x0,0x0,0x0,0x5e,0x64,0xde,0x40,0x0,0x0,0x0,0x0,0x5f,0x9e,0x95,0x30, + 0x0,0x0,0x0,0x0,0x60,0x4d,0xfa,0xc0,0x0,0x0,0x0,0x0,0x61,0x87,0xb1,0xb0, + 0x0,0x0,0x0,0x0,0x62,0x2d,0xdc,0xc0,0x0,0x0,0x0,0x0,0x63,0x67,0x93,0xb0, + 0x0,0x0,0x0,0x0,0x64,0xd,0xbe,0xc0,0x0,0x0,0x0,0x0,0x65,0x47,0x75,0xb0, + 0x0,0x0,0x0,0x0,0x65,0xed,0xa0,0xc0,0x0,0x0,0x0,0x0,0x67,0x27,0x57,0xb0, + 0x0,0x0,0x0,0x0,0x67,0xcd,0x82,0xc0,0x0,0x0,0x0,0x0,0x69,0x7,0x39,0xb0, + 0x0,0x0,0x0,0x0,0x69,0xad,0x64,0xc0,0x0,0x0,0x0,0x0,0x6a,0xe7,0x1b,0xb0, + 0x0,0x0,0x0,0x0,0x6b,0x96,0x81,0x40,0x0,0x0,0x0,0x0,0x6c,0xd0,0x38,0x30, + 0x0,0x0,0x0,0x0,0x6d,0x76,0x63,0x40,0x0,0x0,0x0,0x0,0x6e,0xb0,0x1a,0x30, + 0x0,0x0,0x0,0x0,0x6f,0x56,0x45,0x40,0x0,0x0,0x0,0x0,0x70,0x8f,0xfc,0x30, + 0x0,0x0,0x0,0x0,0x71,0x36,0x27,0x40,0x0,0x0,0x0,0x0,0x72,0x6f,0xde,0x30, + 0x0,0x0,0x0,0x0,0x73,0x16,0x9,0x40,0x0,0x0,0x0,0x0,0x74,0x4f,0xc0,0x30, + 0x0,0x0,0x0,0x0,0x74,0xff,0x25,0xc0,0x0,0x0,0x0,0x0,0x76,0x38,0xdc,0xb0, + 0x0,0x0,0x0,0x0,0x76,0xdf,0x7,0xc0,0x0,0x0,0x0,0x0,0x78,0x18,0xbe,0xb0, + 0x0,0x0,0x0,0x0,0x78,0xbe,0xe9,0xc0,0x0,0x0,0x0,0x0,0x79,0xf8,0xa0,0xb0, + 0x0,0x0,0x0,0x0,0x7a,0x9e,0xcb,0xc0,0x0,0x0,0x0,0x0,0x7b,0xd8,0x82,0xb0, + 0x0,0x0,0x0,0x0,0x7c,0x7e,0xad,0xc0,0x0,0x0,0x0,0x0,0x7d,0xb8,0x64,0xb0, + 0x0,0x0,0x0,0x0,0x7e,0x5e,0x8f,0xc0,0x0,0x0,0x0,0x0,0x7f,0x98,0x46,0xb0, + 0x0,0x1,0x2,0x3,0x4,0x2,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x7,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, + 0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, + 0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, + 0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, + 0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, + 0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, + 0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, + 0x8,0x9,0x0,0x0,0xab,0xe2,0x0,0x0,0xff,0xff,0x5a,0x62,0x0,0x0,0xff,0xff, + 0x65,0x50,0x0,0x4,0xff,0xff,0x73,0x60,0x1,0x8,0xff,0xff,0x73,0x60,0x1,0xc, + 0xff,0xff,0x65,0x50,0x0,0x10,0xff,0xff,0x73,0x60,0x1,0x14,0xff,0xff,0x73,0x60, + 0x0,0x18,0xff,0xff,0x81,0x70,0x1,0x1d,0xff,0xff,0x73,0x60,0x0,0x19,0x4c,0x4d, + 0x54,0x0,0x4e,0x53,0x54,0x0,0x4e,0x57,0x54,0x0,0x4e,0x50,0x54,0x0,0x42,0x53, + 0x54,0x0,0x42,0x44,0x54,0x0,0x41,0x48,0x53,0x54,0x0,0x48,0x44,0x54,0x0,0x0, + 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0, + 0x0,0x0,0x0,0xa,0x48,0x53,0x54,0x31,0x30,0x48,0x44,0x54,0x2c,0x4d,0x33,0x2e, + 0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Chile/Continental + 0x0,0x0,0x9,0xea, + 0x54, + 0x5a,0x69,0x66,0x33,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xa0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0x8f, + 0x30,0x47,0x46,0x9b,0x5c,0xe5,0x50,0x9f,0x7c,0xe2,0xc6,0xa1,0x0,0x71,0xc0,0xb0, + 0x5e,0x77,0xc6,0xb1,0x77,0x3d,0x40,0xb2,0x41,0x0,0xd0,0xb3,0x58,0x70,0xc0,0xb4, + 0x22,0x34,0x50,0xb5,0x39,0xa4,0x40,0xb6,0x3,0x67,0xd0,0xb7,0x1a,0xd7,0xc0,0xb7, + 0xe4,0x9b,0x50,0xb8,0xfd,0x5c,0xc0,0xb9,0xc7,0x20,0x50,0xcc,0x1c,0x6e,0x40,0xcc, + 0x6c,0xe7,0xd0,0xd3,0xdc,0x8f,0xc0,0xd4,0x1b,0xc9,0xb0,0xd5,0x33,0x55,0xc0,0xd5, + 0x76,0x92,0x40,0xfd,0xd1,0x3c,0x40,0xfe,0x92,0xfa,0xb0,0xff,0xcc,0xcd,0xc0,0x0, + 0x72,0xdc,0xb0,0x1,0x75,0x50,0xc0,0x2,0x40,0x49,0xb0,0x3,0x55,0x32,0xc0,0x4, + 0x20,0x2b,0xb0,0x5,0x3e,0x4f,0x40,0x6,0x0,0xd,0xb0,0x7,0xb,0xbc,0x40,0x7, + 0xdf,0xef,0xb0,0x8,0xfe,0x13,0x40,0x9,0xbf,0xd1,0xb0,0xa,0xdd,0xf5,0x40,0xb, + 0xa8,0xee,0x30,0xc,0xbd,0xd7,0x40,0xd,0x88,0xd0,0x30,0xe,0x9d,0xb9,0x40,0xf, + 0x68,0xb2,0x30,0x10,0x86,0xd5,0xc0,0x11,0x48,0x94,0x30,0x12,0x66,0xb7,0xc0,0x13, + 0x28,0x76,0x30,0x14,0x46,0x99,0xc0,0x15,0x11,0x92,0xb0,0x16,0x26,0x7b,0xc0,0x16, + 0xf1,0x74,0xb0,0x18,0x6,0x5d,0xc0,0x18,0xd1,0x56,0xb0,0x19,0xe6,0x3f,0xc0,0x1a, + 0xb1,0x38,0xb0,0x1b,0xcf,0x5c,0x40,0x1c,0x91,0x1a,0xb0,0x1d,0xaf,0x3e,0x40,0x1e, + 0x70,0xfc,0xb0,0x1f,0x8f,0x20,0x40,0x20,0x7f,0x3,0x30,0x21,0x6f,0x2,0x40,0x22, + 0x39,0xfb,0x30,0x23,0x4e,0xe4,0x40,0x24,0x19,0xdd,0x30,0x25,0x38,0x0,0xc0,0x25, + 0xf9,0xbf,0x30,0x26,0xf2,0xf8,0xc0,0x27,0xd9,0xa1,0x30,0x28,0xf7,0xc4,0xc0,0x29, + 0xc2,0xbd,0xb0,0x2a,0xd7,0xa6,0xc0,0x2b,0xa2,0x9f,0xb0,0x2c,0xb7,0x88,0xc0,0x2d, + 0x82,0x81,0xb0,0x2e,0x97,0x6a,0xc0,0x2f,0x62,0x63,0xb0,0x30,0x80,0x87,0x40,0x31, + 0x42,0x45,0xb0,0x32,0x60,0x69,0x40,0x33,0x3d,0xd7,0x30,0x34,0x40,0x4b,0x40,0x35, + 0xb,0x44,0x30,0x36,0xd,0xb8,0x40,0x37,0x6,0xd5,0xb0,0x38,0x0,0xf,0x40,0x38, + 0xcb,0x8,0x30,0x39,0xe9,0x2b,0xc0,0x3a,0xaa,0xea,0x30,0x3b,0xc9,0xd,0xc0,0x3c, + 0x8a,0xcc,0x30,0x3d,0xa8,0xef,0xc0,0x3e,0x6a,0xae,0x30,0x3f,0x88,0xd1,0xc0,0x40, + 0x53,0xca,0xb0,0x41,0x68,0xb3,0xc0,0x42,0x33,0xac,0xb0,0x43,0x48,0x95,0xc0,0x44, + 0x13,0x8e,0xb0,0x45,0x31,0xb2,0x40,0x45,0xf3,0x70,0xb0,0x47,0x11,0x94,0x40,0x47, + 0xef,0x2,0x30,0x48,0xf1,0x76,0x40,0x49,0xbc,0x6f,0x30,0x4a,0xd1,0x58,0x40,0x4b, + 0xb8,0x0,0xb0,0x4c,0xb1,0x3a,0x40,0x4d,0xc6,0x7,0x30,0x4e,0x50,0x82,0xc0,0x4f, + 0x9c,0xae,0xb0,0x50,0x42,0xd9,0xc0,0x51,0x7c,0x90,0xb0,0x52,0x2b,0xf6,0x40,0x53, + 0x5c,0x72,0xb0,0x54,0xb,0xd8,0x40,0x57,0x37,0xe6,0x30,0x57,0xaf,0xec,0xc0,0x59, + 0x17,0xc8,0x30,0x59,0x8f,0xce,0xc0,0x5a,0xf7,0xaa,0x30,0x5b,0x6f,0xb0,0xc0,0x5c, + 0xd7,0x8c,0x30,0x5d,0x4f,0x92,0xc0,0x5e,0xb7,0x6e,0x30,0x5f,0x2f,0x74,0xc0,0x60, + 0x97,0x50,0x30,0x61,0x18,0x91,0x40,0x62,0x80,0x6c,0xb0,0x62,0xf8,0x73,0x40,0x64, + 0x60,0x4e,0xb0,0x64,0xd8,0x55,0x40,0x66,0x40,0x30,0xb0,0x66,0xb8,0x37,0x40,0x68, + 0x20,0x12,0xb0,0x68,0x98,0x19,0x40,0x69,0xff,0xf4,0xb0,0x6a,0x77,0xfb,0x40,0x6b, + 0xdf,0xd6,0xb0,0x6c,0x61,0x17,0xc0,0x6d,0xc8,0xf3,0x30,0x6e,0x40,0xf9,0xc0,0x6f, + 0xa8,0xd5,0x30,0x70,0x20,0xdb,0xc0,0x71,0x88,0xb7,0x30,0x72,0x0,0xbd,0xc0,0x73, + 0x68,0x99,0x30,0x73,0xe0,0x9f,0xc0,0x75,0x48,0x7b,0x30,0x75,0xc9,0xbc,0x40,0x77, + 0x31,0x97,0xb0,0x77,0xa9,0x9e,0x40,0x79,0x11,0x79,0xb0,0x79,0x89,0x80,0x40,0x7a, + 0xf1,0x5b,0xb0,0x7b,0x69,0x62,0x40,0x7c,0xd1,0x3d,0xb0,0x7d,0x49,0x44,0x40,0x7e, + 0xb1,0x1f,0xb0,0x7f,0x29,0x26,0x40,0x7f,0xff,0xff,0xff,0x1,0x2,0x1,0x3,0x1, + 0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x3,0x2,0x3,0x5,0x3,0x2, + 0x3,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, + 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, + 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, + 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, + 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, + 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, + 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, + 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, + 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x6,0xff,0xff,0xbd,0xba,0x0, + 0x0,0xff,0xff,0xbd,0xba,0x0,0x4,0xff,0xff,0xb9,0xb0,0x0,0x8,0xff,0xff,0xc7, + 0xc0,0x0,0xc,0xff,0xff,0xc7,0xc0,0x1,0xc,0xff,0xff,0xd5,0xd0,0x1,0x10,0xff, + 0xff,0xd5,0xd0,0x1,0x10,0xff,0xff,0xc7,0xc0,0x0,0xc,0x4c,0x4d,0x54,0x0,0x53, + 0x4d,0x54,0x0,0x2d,0x30,0x35,0x0,0x2d,0x30,0x34,0x0,0x2d,0x30,0x33,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x54, + 0x5a,0x69,0x66,0x33,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xa1,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x14,0xf8,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x69,0x87,0x1d,0xc6,0xff,0xff,0xff,0xff,0x8f, + 0x30,0x47,0x46,0xff,0xff,0xff,0xff,0x9b,0x5c,0xe5,0x50,0xff,0xff,0xff,0xff,0x9f, + 0x7c,0xe2,0xc6,0xff,0xff,0xff,0xff,0xa1,0x0,0x71,0xc0,0xff,0xff,0xff,0xff,0xb0, + 0x5e,0x77,0xc6,0xff,0xff,0xff,0xff,0xb1,0x77,0x3d,0x40,0xff,0xff,0xff,0xff,0xb2, + 0x41,0x0,0xd0,0xff,0xff,0xff,0xff,0xb3,0x58,0x70,0xc0,0xff,0xff,0xff,0xff,0xb4, + 0x22,0x34,0x50,0xff,0xff,0xff,0xff,0xb5,0x39,0xa4,0x40,0xff,0xff,0xff,0xff,0xb6, + 0x3,0x67,0xd0,0xff,0xff,0xff,0xff,0xb7,0x1a,0xd7,0xc0,0xff,0xff,0xff,0xff,0xb7, + 0xe4,0x9b,0x50,0xff,0xff,0xff,0xff,0xb8,0xfd,0x5c,0xc0,0xff,0xff,0xff,0xff,0xb9, + 0xc7,0x20,0x50,0xff,0xff,0xff,0xff,0xcc,0x1c,0x6e,0x40,0xff,0xff,0xff,0xff,0xcc, + 0x6c,0xe7,0xd0,0xff,0xff,0xff,0xff,0xd3,0xdc,0x8f,0xc0,0xff,0xff,0xff,0xff,0xd4, + 0x1b,0xc9,0xb0,0xff,0xff,0xff,0xff,0xd5,0x33,0x55,0xc0,0xff,0xff,0xff,0xff,0xd5, + 0x76,0x92,0x40,0xff,0xff,0xff,0xff,0xfd,0xd1,0x3c,0x40,0xff,0xff,0xff,0xff,0xfe, + 0x92,0xfa,0xb0,0xff,0xff,0xff,0xff,0xff,0xcc,0xcd,0xc0,0x0,0x0,0x0,0x0,0x0, + 0x72,0xdc,0xb0,0x0,0x0,0x0,0x0,0x1,0x75,0x50,0xc0,0x0,0x0,0x0,0x0,0x2, + 0x40,0x49,0xb0,0x0,0x0,0x0,0x0,0x3,0x55,0x32,0xc0,0x0,0x0,0x0,0x0,0x4, + 0x20,0x2b,0xb0,0x0,0x0,0x0,0x0,0x5,0x3e,0x4f,0x40,0x0,0x0,0x0,0x0,0x6, + 0x0,0xd,0xb0,0x0,0x0,0x0,0x0,0x7,0xb,0xbc,0x40,0x0,0x0,0x0,0x0,0x7, + 0xdf,0xef,0xb0,0x0,0x0,0x0,0x0,0x8,0xfe,0x13,0x40,0x0,0x0,0x0,0x0,0x9, + 0xbf,0xd1,0xb0,0x0,0x0,0x0,0x0,0xa,0xdd,0xf5,0x40,0x0,0x0,0x0,0x0,0xb, + 0xa8,0xee,0x30,0x0,0x0,0x0,0x0,0xc,0xbd,0xd7,0x40,0x0,0x0,0x0,0x0,0xd, + 0x88,0xd0,0x30,0x0,0x0,0x0,0x0,0xe,0x9d,0xb9,0x40,0x0,0x0,0x0,0x0,0xf, + 0x68,0xb2,0x30,0x0,0x0,0x0,0x0,0x10,0x86,0xd5,0xc0,0x0,0x0,0x0,0x0,0x11, + 0x48,0x94,0x30,0x0,0x0,0x0,0x0,0x12,0x66,0xb7,0xc0,0x0,0x0,0x0,0x0,0x13, + 0x28,0x76,0x30,0x0,0x0,0x0,0x0,0x14,0x46,0x99,0xc0,0x0,0x0,0x0,0x0,0x15, + 0x11,0x92,0xb0,0x0,0x0,0x0,0x0,0x16,0x26,0x7b,0xc0,0x0,0x0,0x0,0x0,0x16, + 0xf1,0x74,0xb0,0x0,0x0,0x0,0x0,0x18,0x6,0x5d,0xc0,0x0,0x0,0x0,0x0,0x18, + 0xd1,0x56,0xb0,0x0,0x0,0x0,0x0,0x19,0xe6,0x3f,0xc0,0x0,0x0,0x0,0x0,0x1a, + 0xb1,0x38,0xb0,0x0,0x0,0x0,0x0,0x1b,0xcf,0x5c,0x40,0x0,0x0,0x0,0x0,0x1c, + 0x91,0x1a,0xb0,0x0,0x0,0x0,0x0,0x1d,0xaf,0x3e,0x40,0x0,0x0,0x0,0x0,0x1e, + 0x70,0xfc,0xb0,0x0,0x0,0x0,0x0,0x1f,0x8f,0x20,0x40,0x0,0x0,0x0,0x0,0x20, + 0x7f,0x3,0x30,0x0,0x0,0x0,0x0,0x21,0x6f,0x2,0x40,0x0,0x0,0x0,0x0,0x22, + 0x39,0xfb,0x30,0x0,0x0,0x0,0x0,0x23,0x4e,0xe4,0x40,0x0,0x0,0x0,0x0,0x24, + 0x19,0xdd,0x30,0x0,0x0,0x0,0x0,0x25,0x38,0x0,0xc0,0x0,0x0,0x0,0x0,0x25, + 0xf9,0xbf,0x30,0x0,0x0,0x0,0x0,0x26,0xf2,0xf8,0xc0,0x0,0x0,0x0,0x0,0x27, + 0xd9,0xa1,0x30,0x0,0x0,0x0,0x0,0x28,0xf7,0xc4,0xc0,0x0,0x0,0x0,0x0,0x29, + 0xc2,0xbd,0xb0,0x0,0x0,0x0,0x0,0x2a,0xd7,0xa6,0xc0,0x0,0x0,0x0,0x0,0x2b, + 0xa2,0x9f,0xb0,0x0,0x0,0x0,0x0,0x2c,0xb7,0x88,0xc0,0x0,0x0,0x0,0x0,0x2d, + 0x82,0x81,0xb0,0x0,0x0,0x0,0x0,0x2e,0x97,0x6a,0xc0,0x0,0x0,0x0,0x0,0x2f, + 0x62,0x63,0xb0,0x0,0x0,0x0,0x0,0x30,0x80,0x87,0x40,0x0,0x0,0x0,0x0,0x31, + 0x42,0x45,0xb0,0x0,0x0,0x0,0x0,0x32,0x60,0x69,0x40,0x0,0x0,0x0,0x0,0x33, + 0x3d,0xd7,0x30,0x0,0x0,0x0,0x0,0x34,0x40,0x4b,0x40,0x0,0x0,0x0,0x0,0x35, + 0xb,0x44,0x30,0x0,0x0,0x0,0x0,0x36,0xd,0xb8,0x40,0x0,0x0,0x0,0x0,0x37, + 0x6,0xd5,0xb0,0x0,0x0,0x0,0x0,0x38,0x0,0xf,0x40,0x0,0x0,0x0,0x0,0x38, + 0xcb,0x8,0x30,0x0,0x0,0x0,0x0,0x39,0xe9,0x2b,0xc0,0x0,0x0,0x0,0x0,0x3a, + 0xaa,0xea,0x30,0x0,0x0,0x0,0x0,0x3b,0xc9,0xd,0xc0,0x0,0x0,0x0,0x0,0x3c, + 0x8a,0xcc,0x30,0x0,0x0,0x0,0x0,0x3d,0xa8,0xef,0xc0,0x0,0x0,0x0,0x0,0x3e, + 0x6a,0xae,0x30,0x0,0x0,0x0,0x0,0x3f,0x88,0xd1,0xc0,0x0,0x0,0x0,0x0,0x40, + 0x53,0xca,0xb0,0x0,0x0,0x0,0x0,0x41,0x68,0xb3,0xc0,0x0,0x0,0x0,0x0,0x42, + 0x33,0xac,0xb0,0x0,0x0,0x0,0x0,0x43,0x48,0x95,0xc0,0x0,0x0,0x0,0x0,0x44, + 0x13,0x8e,0xb0,0x0,0x0,0x0,0x0,0x45,0x31,0xb2,0x40,0x0,0x0,0x0,0x0,0x45, + 0xf3,0x70,0xb0,0x0,0x0,0x0,0x0,0x47,0x11,0x94,0x40,0x0,0x0,0x0,0x0,0x47, + 0xef,0x2,0x30,0x0,0x0,0x0,0x0,0x48,0xf1,0x76,0x40,0x0,0x0,0x0,0x0,0x49, + 0xbc,0x6f,0x30,0x0,0x0,0x0,0x0,0x4a,0xd1,0x58,0x40,0x0,0x0,0x0,0x0,0x4b, + 0xb8,0x0,0xb0,0x0,0x0,0x0,0x0,0x4c,0xb1,0x3a,0x40,0x0,0x0,0x0,0x0,0x4d, + 0xc6,0x7,0x30,0x0,0x0,0x0,0x0,0x4e,0x50,0x82,0xc0,0x0,0x0,0x0,0x0,0x4f, + 0x9c,0xae,0xb0,0x0,0x0,0x0,0x0,0x50,0x42,0xd9,0xc0,0x0,0x0,0x0,0x0,0x51, + 0x7c,0x90,0xb0,0x0,0x0,0x0,0x0,0x52,0x2b,0xf6,0x40,0x0,0x0,0x0,0x0,0x53, + 0x5c,0x72,0xb0,0x0,0x0,0x0,0x0,0x54,0xb,0xd8,0x40,0x0,0x0,0x0,0x0,0x57, + 0x37,0xe6,0x30,0x0,0x0,0x0,0x0,0x57,0xaf,0xec,0xc0,0x0,0x0,0x0,0x0,0x59, + 0x17,0xc8,0x30,0x0,0x0,0x0,0x0,0x59,0x8f,0xce,0xc0,0x0,0x0,0x0,0x0,0x5a, + 0xf7,0xaa,0x30,0x0,0x0,0x0,0x0,0x5b,0x6f,0xb0,0xc0,0x0,0x0,0x0,0x0,0x5c, + 0xd7,0x8c,0x30,0x0,0x0,0x0,0x0,0x5d,0x4f,0x92,0xc0,0x0,0x0,0x0,0x0,0x5e, + 0xb7,0x6e,0x30,0x0,0x0,0x0,0x0,0x5f,0x2f,0x74,0xc0,0x0,0x0,0x0,0x0,0x60, + 0x97,0x50,0x30,0x0,0x0,0x0,0x0,0x61,0x18,0x91,0x40,0x0,0x0,0x0,0x0,0x62, + 0x80,0x6c,0xb0,0x0,0x0,0x0,0x0,0x62,0xf8,0x73,0x40,0x0,0x0,0x0,0x0,0x64, + 0x60,0x4e,0xb0,0x0,0x0,0x0,0x0,0x64,0xd8,0x55,0x40,0x0,0x0,0x0,0x0,0x66, + 0x40,0x30,0xb0,0x0,0x0,0x0,0x0,0x66,0xb8,0x37,0x40,0x0,0x0,0x0,0x0,0x68, + 0x20,0x12,0xb0,0x0,0x0,0x0,0x0,0x68,0x98,0x19,0x40,0x0,0x0,0x0,0x0,0x69, + 0xff,0xf4,0xb0,0x0,0x0,0x0,0x0,0x6a,0x77,0xfb,0x40,0x0,0x0,0x0,0x0,0x6b, + 0xdf,0xd6,0xb0,0x0,0x0,0x0,0x0,0x6c,0x61,0x17,0xc0,0x0,0x0,0x0,0x0,0x6d, + 0xc8,0xf3,0x30,0x0,0x0,0x0,0x0,0x6e,0x40,0xf9,0xc0,0x0,0x0,0x0,0x0,0x6f, + 0xa8,0xd5,0x30,0x0,0x0,0x0,0x0,0x70,0x20,0xdb,0xc0,0x0,0x0,0x0,0x0,0x71, + 0x88,0xb7,0x30,0x0,0x0,0x0,0x0,0x72,0x0,0xbd,0xc0,0x0,0x0,0x0,0x0,0x73, + 0x68,0x99,0x30,0x0,0x0,0x0,0x0,0x73,0xe0,0x9f,0xc0,0x0,0x0,0x0,0x0,0x75, + 0x48,0x7b,0x30,0x0,0x0,0x0,0x0,0x75,0xc9,0xbc,0x40,0x0,0x0,0x0,0x0,0x77, + 0x31,0x97,0xb0,0x0,0x0,0x0,0x0,0x77,0xa9,0x9e,0x40,0x0,0x0,0x0,0x0,0x79, + 0x11,0x79,0xb0,0x0,0x0,0x0,0x0,0x79,0x89,0x80,0x40,0x0,0x0,0x0,0x0,0x7a, + 0xf1,0x5b,0xb0,0x0,0x0,0x0,0x0,0x7b,0x69,0x62,0x40,0x0,0x0,0x0,0x0,0x7c, + 0xd1,0x3d,0xb0,0x0,0x0,0x0,0x0,0x7d,0x49,0x44,0x40,0x0,0x0,0x0,0x0,0x7e, + 0xb1,0x1f,0xb0,0x0,0x0,0x0,0x0,0x7f,0x29,0x26,0x40,0x0,0x0,0x0,0x0,0x7f, + 0xff,0xff,0xff,0x0,0x1,0x2,0x1,0x3,0x1,0x4,0x2,0x4,0x2,0x4,0x2,0x4, + 0x2,0x4,0x2,0x3,0x2,0x3,0x5,0x3,0x2,0x3,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x6,0xff,0xff,0xbd,0xba,0x0,0x0,0xff,0xff,0xbd,0xba,0x0,0x4, + 0xff,0xff,0xb9,0xb0,0x0,0x8,0xff,0xff,0xc7,0xc0,0x0,0xc,0xff,0xff,0xc7,0xc0, + 0x1,0xc,0xff,0xff,0xd5,0xd0,0x1,0x10,0xff,0xff,0xd5,0xd0,0x1,0x10,0xff,0xff, + 0xc7,0xc0,0x0,0xc,0x4c,0x4d,0x54,0x0,0x53,0x4d,0x54,0x0,0x2d,0x30,0x35,0x0, + 0x2d,0x30,0x34,0x0,0x2d,0x30,0x33,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0xa,0x3c,0x2d,0x30,0x34,0x3e,0x34,0x3c, + 0x2d,0x30,0x33,0x3e,0x2c,0x4d,0x38,0x2e,0x32,0x2e,0x36,0x2f,0x32,0x34,0x2c,0x4d, + 0x35,0x2e,0x32,0x2e,0x36,0x2f,0x32,0x34,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Chile/EasterIsland + 0x0,0x0,0x8,0xc2, + 0x54, + 0x5a,0x69,0x66,0x33,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x8c,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0xb9, + 0xc7,0x40,0x88,0xfd,0xd1,0x3c,0x40,0xfe,0x92,0xfa,0xb0,0xff,0xcc,0xcd,0xc0,0x0, + 0x72,0xdc,0xb0,0x1,0x75,0x50,0xc0,0x2,0x40,0x49,0xb0,0x3,0x55,0x32,0xc0,0x4, + 0x20,0x2b,0xb0,0x5,0x3e,0x4f,0x40,0x6,0x0,0xd,0xb0,0x7,0xb,0xbc,0x40,0x7, + 0xdf,0xef,0xb0,0x8,0xfe,0x13,0x40,0x9,0xbf,0xd1,0xb0,0xa,0xdd,0xf5,0x40,0xb, + 0xa8,0xee,0x30,0xc,0xbd,0xd7,0x40,0xd,0x88,0xd0,0x30,0xe,0x9d,0xb9,0x40,0xf, + 0x68,0xb2,0x30,0x10,0x86,0xd5,0xc0,0x11,0x48,0x94,0x30,0x12,0x66,0xb7,0xc0,0x13, + 0x28,0x76,0x30,0x14,0x46,0x99,0xc0,0x15,0x11,0x92,0xb0,0x16,0x26,0x7b,0xc0,0x16, + 0xf1,0x74,0xb0,0x18,0x6,0x5d,0xc0,0x18,0xd1,0x56,0xb0,0x19,0xe6,0x3f,0xc0,0x1a, + 0xb1,0x38,0xb0,0x1b,0xcf,0x5c,0x40,0x1c,0x91,0x1a,0xb0,0x1d,0xaf,0x3e,0x40,0x1e, + 0x70,0xfc,0xb0,0x1f,0x8f,0x20,0x40,0x20,0x7f,0x3,0x30,0x21,0x6f,0x2,0x40,0x22, + 0x39,0xfb,0x30,0x23,0x4e,0xe4,0x40,0x24,0x19,0xdd,0x30,0x25,0x38,0x0,0xc0,0x25, + 0xf9,0xbf,0x30,0x26,0xf2,0xf8,0xc0,0x27,0xd9,0xa1,0x30,0x28,0xf7,0xc4,0xc0,0x29, + 0xc2,0xbd,0xb0,0x2a,0xd7,0xa6,0xc0,0x2b,0xa2,0x9f,0xb0,0x2c,0xb7,0x88,0xc0,0x2d, + 0x82,0x81,0xb0,0x2e,0x97,0x6a,0xc0,0x2f,0x62,0x63,0xb0,0x30,0x80,0x87,0x40,0x31, + 0x42,0x45,0xb0,0x32,0x60,0x69,0x40,0x33,0x3d,0xd7,0x30,0x34,0x40,0x4b,0x40,0x35, + 0xb,0x44,0x30,0x36,0xd,0xb8,0x40,0x37,0x6,0xd5,0xb0,0x38,0x0,0xf,0x40,0x38, + 0xcb,0x8,0x30,0x39,0xe9,0x2b,0xc0,0x3a,0xaa,0xea,0x30,0x3b,0xc9,0xd,0xc0,0x3c, + 0x8a,0xcc,0x30,0x3d,0xa8,0xef,0xc0,0x3e,0x6a,0xae,0x30,0x3f,0x88,0xd1,0xc0,0x40, + 0x53,0xca,0xb0,0x41,0x68,0xb3,0xc0,0x42,0x33,0xac,0xb0,0x43,0x48,0x95,0xc0,0x44, + 0x13,0x8e,0xb0,0x45,0x31,0xb2,0x40,0x45,0xf3,0x70,0xb0,0x47,0x11,0x94,0x40,0x47, + 0xef,0x2,0x30,0x48,0xf1,0x76,0x40,0x49,0xbc,0x6f,0x30,0x4a,0xd1,0x58,0x40,0x4b, + 0xb8,0x0,0xb0,0x4c,0xb1,0x3a,0x40,0x4d,0xc6,0x7,0x30,0x4e,0x50,0x82,0xc0,0x4f, + 0x9c,0xae,0xb0,0x50,0x42,0xd9,0xc0,0x51,0x7c,0x90,0xb0,0x52,0x2b,0xf6,0x40,0x53, + 0x5c,0x72,0xb0,0x54,0xb,0xd8,0x40,0x57,0x37,0xe6,0x30,0x57,0xaf,0xec,0xc0,0x59, + 0x17,0xc8,0x30,0x59,0x8f,0xce,0xc0,0x5a,0xf7,0xaa,0x30,0x5b,0x6f,0xb0,0xc0,0x5c, + 0xd7,0x8c,0x30,0x5d,0x4f,0x92,0xc0,0x5e,0xb7,0x6e,0x30,0x5f,0x2f,0x74,0xc0,0x60, + 0x97,0x50,0x30,0x61,0x18,0x91,0x40,0x62,0x80,0x6c,0xb0,0x62,0xf8,0x73,0x40,0x64, + 0x60,0x4e,0xb0,0x64,0xd8,0x55,0x40,0x66,0x40,0x30,0xb0,0x66,0xb8,0x37,0x40,0x68, + 0x20,0x12,0xb0,0x68,0x98,0x19,0x40,0x69,0xff,0xf4,0xb0,0x6a,0x77,0xfb,0x40,0x6b, + 0xdf,0xd6,0xb0,0x6c,0x61,0x17,0xc0,0x6d,0xc8,0xf3,0x30,0x6e,0x40,0xf9,0xc0,0x6f, + 0xa8,0xd5,0x30,0x70,0x20,0xdb,0xc0,0x71,0x88,0xb7,0x30,0x72,0x0,0xbd,0xc0,0x73, + 0x68,0x99,0x30,0x73,0xe0,0x9f,0xc0,0x75,0x48,0x7b,0x30,0x75,0xc9,0xbc,0x40,0x77, + 0x31,0x97,0xb0,0x77,0xa9,0x9e,0x40,0x79,0x11,0x79,0xb0,0x79,0x89,0x80,0x40,0x7a, + 0xf1,0x5b,0xb0,0x7b,0x69,0x62,0x40,0x7c,0xd1,0x3d,0xb0,0x7d,0x49,0x44,0x40,0x7e, + 0xb1,0x1f,0xb0,0x7f,0x29,0x26,0x40,0x7f,0xff,0xff,0xff,0x1,0x4,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x0,0x0,0x11,0xe4,0x0,0x0,0x0,0x0,0x1c,0x20,0x1,0x4,0x0, - 0x0,0xe,0x10,0x0,0x9,0x0,0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe,0x10,0x0, - 0x9,0x0,0x0,0xe,0x10,0x0,0x9,0x0,0x0,0x1c,0x20,0x1,0x4,0x4c,0x4d,0x54, - 0x0,0x43,0x45,0x53,0x54,0x0,0x43,0x45,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x1, - 0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0xa,0x43,0x45,0x54,0x2d,0x31,0x43,0x45, - 0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e, - 0x30,0x2f,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Kiev - 0x0,0x0,0x8,0x31, + 0x5,0x6,0x5,0x6,0x5,0x6,0x6,0xff,0xff,0x99,0x78,0x0,0x0,0xff,0xff,0x99, + 0x78,0x0,0x4,0xff,0xff,0xab,0xa0,0x1,0x8,0xff,0xff,0x9d,0x90,0x0,0xc,0xff, + 0xff,0x9d,0x90,0x0,0xc,0xff,0xff,0xab,0xa0,0x0,0x8,0xff,0xff,0xb9,0xb0,0x1, + 0x10,0x4c,0x4d,0x54,0x0,0x45,0x4d,0x54,0x0,0x2d,0x30,0x36,0x0,0x2d,0x30,0x37, + 0x0,0x2d,0x30,0x35,0x0,0x0,0x0,0x1,0x1,0x0,0x1,0x1,0x0,0x0,0x1,0x1, + 0x0,0x1,0x1,0x54,0x5a,0x69,0x66,0x33,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x8d,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x14,0xf8, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x69,0x87,0x42,0x8,0xff, + 0xff,0xff,0xff,0xb9,0xc7,0x40,0x88,0xff,0xff,0xff,0xff,0xfd,0xd1,0x3c,0x40,0xff, + 0xff,0xff,0xff,0xfe,0x92,0xfa,0xb0,0xff,0xff,0xff,0xff,0xff,0xcc,0xcd,0xc0,0x0, + 0x0,0x0,0x0,0x0,0x72,0xdc,0xb0,0x0,0x0,0x0,0x0,0x1,0x75,0x50,0xc0,0x0, + 0x0,0x0,0x0,0x2,0x40,0x49,0xb0,0x0,0x0,0x0,0x0,0x3,0x55,0x32,0xc0,0x0, + 0x0,0x0,0x0,0x4,0x20,0x2b,0xb0,0x0,0x0,0x0,0x0,0x5,0x3e,0x4f,0x40,0x0, + 0x0,0x0,0x0,0x6,0x0,0xd,0xb0,0x0,0x0,0x0,0x0,0x7,0xb,0xbc,0x40,0x0, + 0x0,0x0,0x0,0x7,0xdf,0xef,0xb0,0x0,0x0,0x0,0x0,0x8,0xfe,0x13,0x40,0x0, + 0x0,0x0,0x0,0x9,0xbf,0xd1,0xb0,0x0,0x0,0x0,0x0,0xa,0xdd,0xf5,0x40,0x0, + 0x0,0x0,0x0,0xb,0xa8,0xee,0x30,0x0,0x0,0x0,0x0,0xc,0xbd,0xd7,0x40,0x0, + 0x0,0x0,0x0,0xd,0x88,0xd0,0x30,0x0,0x0,0x0,0x0,0xe,0x9d,0xb9,0x40,0x0, + 0x0,0x0,0x0,0xf,0x68,0xb2,0x30,0x0,0x0,0x0,0x0,0x10,0x86,0xd5,0xc0,0x0, + 0x0,0x0,0x0,0x11,0x48,0x94,0x30,0x0,0x0,0x0,0x0,0x12,0x66,0xb7,0xc0,0x0, + 0x0,0x0,0x0,0x13,0x28,0x76,0x30,0x0,0x0,0x0,0x0,0x14,0x46,0x99,0xc0,0x0, + 0x0,0x0,0x0,0x15,0x11,0x92,0xb0,0x0,0x0,0x0,0x0,0x16,0x26,0x7b,0xc0,0x0, + 0x0,0x0,0x0,0x16,0xf1,0x74,0xb0,0x0,0x0,0x0,0x0,0x18,0x6,0x5d,0xc0,0x0, + 0x0,0x0,0x0,0x18,0xd1,0x56,0xb0,0x0,0x0,0x0,0x0,0x19,0xe6,0x3f,0xc0,0x0, + 0x0,0x0,0x0,0x1a,0xb1,0x38,0xb0,0x0,0x0,0x0,0x0,0x1b,0xcf,0x5c,0x40,0x0, + 0x0,0x0,0x0,0x1c,0x91,0x1a,0xb0,0x0,0x0,0x0,0x0,0x1d,0xaf,0x3e,0x40,0x0, + 0x0,0x0,0x0,0x1e,0x70,0xfc,0xb0,0x0,0x0,0x0,0x0,0x1f,0x8f,0x20,0x40,0x0, + 0x0,0x0,0x0,0x20,0x7f,0x3,0x30,0x0,0x0,0x0,0x0,0x21,0x6f,0x2,0x40,0x0, + 0x0,0x0,0x0,0x22,0x39,0xfb,0x30,0x0,0x0,0x0,0x0,0x23,0x4e,0xe4,0x40,0x0, + 0x0,0x0,0x0,0x24,0x19,0xdd,0x30,0x0,0x0,0x0,0x0,0x25,0x38,0x0,0xc0,0x0, + 0x0,0x0,0x0,0x25,0xf9,0xbf,0x30,0x0,0x0,0x0,0x0,0x26,0xf2,0xf8,0xc0,0x0, + 0x0,0x0,0x0,0x27,0xd9,0xa1,0x30,0x0,0x0,0x0,0x0,0x28,0xf7,0xc4,0xc0,0x0, + 0x0,0x0,0x0,0x29,0xc2,0xbd,0xb0,0x0,0x0,0x0,0x0,0x2a,0xd7,0xa6,0xc0,0x0, + 0x0,0x0,0x0,0x2b,0xa2,0x9f,0xb0,0x0,0x0,0x0,0x0,0x2c,0xb7,0x88,0xc0,0x0, + 0x0,0x0,0x0,0x2d,0x82,0x81,0xb0,0x0,0x0,0x0,0x0,0x2e,0x97,0x6a,0xc0,0x0, + 0x0,0x0,0x0,0x2f,0x62,0x63,0xb0,0x0,0x0,0x0,0x0,0x30,0x80,0x87,0x40,0x0, + 0x0,0x0,0x0,0x31,0x42,0x45,0xb0,0x0,0x0,0x0,0x0,0x32,0x60,0x69,0x40,0x0, + 0x0,0x0,0x0,0x33,0x3d,0xd7,0x30,0x0,0x0,0x0,0x0,0x34,0x40,0x4b,0x40,0x0, + 0x0,0x0,0x0,0x35,0xb,0x44,0x30,0x0,0x0,0x0,0x0,0x36,0xd,0xb8,0x40,0x0, + 0x0,0x0,0x0,0x37,0x6,0xd5,0xb0,0x0,0x0,0x0,0x0,0x38,0x0,0xf,0x40,0x0, + 0x0,0x0,0x0,0x38,0xcb,0x8,0x30,0x0,0x0,0x0,0x0,0x39,0xe9,0x2b,0xc0,0x0, + 0x0,0x0,0x0,0x3a,0xaa,0xea,0x30,0x0,0x0,0x0,0x0,0x3b,0xc9,0xd,0xc0,0x0, + 0x0,0x0,0x0,0x3c,0x8a,0xcc,0x30,0x0,0x0,0x0,0x0,0x3d,0xa8,0xef,0xc0,0x0, + 0x0,0x0,0x0,0x3e,0x6a,0xae,0x30,0x0,0x0,0x0,0x0,0x3f,0x88,0xd1,0xc0,0x0, + 0x0,0x0,0x0,0x40,0x53,0xca,0xb0,0x0,0x0,0x0,0x0,0x41,0x68,0xb3,0xc0,0x0, + 0x0,0x0,0x0,0x42,0x33,0xac,0xb0,0x0,0x0,0x0,0x0,0x43,0x48,0x95,0xc0,0x0, + 0x0,0x0,0x0,0x44,0x13,0x8e,0xb0,0x0,0x0,0x0,0x0,0x45,0x31,0xb2,0x40,0x0, + 0x0,0x0,0x0,0x45,0xf3,0x70,0xb0,0x0,0x0,0x0,0x0,0x47,0x11,0x94,0x40,0x0, + 0x0,0x0,0x0,0x47,0xef,0x2,0x30,0x0,0x0,0x0,0x0,0x48,0xf1,0x76,0x40,0x0, + 0x0,0x0,0x0,0x49,0xbc,0x6f,0x30,0x0,0x0,0x0,0x0,0x4a,0xd1,0x58,0x40,0x0, + 0x0,0x0,0x0,0x4b,0xb8,0x0,0xb0,0x0,0x0,0x0,0x0,0x4c,0xb1,0x3a,0x40,0x0, + 0x0,0x0,0x0,0x4d,0xc6,0x7,0x30,0x0,0x0,0x0,0x0,0x4e,0x50,0x82,0xc0,0x0, + 0x0,0x0,0x0,0x4f,0x9c,0xae,0xb0,0x0,0x0,0x0,0x0,0x50,0x42,0xd9,0xc0,0x0, + 0x0,0x0,0x0,0x51,0x7c,0x90,0xb0,0x0,0x0,0x0,0x0,0x52,0x2b,0xf6,0x40,0x0, + 0x0,0x0,0x0,0x53,0x5c,0x72,0xb0,0x0,0x0,0x0,0x0,0x54,0xb,0xd8,0x40,0x0, + 0x0,0x0,0x0,0x57,0x37,0xe6,0x30,0x0,0x0,0x0,0x0,0x57,0xaf,0xec,0xc0,0x0, + 0x0,0x0,0x0,0x59,0x17,0xc8,0x30,0x0,0x0,0x0,0x0,0x59,0x8f,0xce,0xc0,0x0, + 0x0,0x0,0x0,0x5a,0xf7,0xaa,0x30,0x0,0x0,0x0,0x0,0x5b,0x6f,0xb0,0xc0,0x0, + 0x0,0x0,0x0,0x5c,0xd7,0x8c,0x30,0x0,0x0,0x0,0x0,0x5d,0x4f,0x92,0xc0,0x0, + 0x0,0x0,0x0,0x5e,0xb7,0x6e,0x30,0x0,0x0,0x0,0x0,0x5f,0x2f,0x74,0xc0,0x0, + 0x0,0x0,0x0,0x60,0x97,0x50,0x30,0x0,0x0,0x0,0x0,0x61,0x18,0x91,0x40,0x0, + 0x0,0x0,0x0,0x62,0x80,0x6c,0xb0,0x0,0x0,0x0,0x0,0x62,0xf8,0x73,0x40,0x0, + 0x0,0x0,0x0,0x64,0x60,0x4e,0xb0,0x0,0x0,0x0,0x0,0x64,0xd8,0x55,0x40,0x0, + 0x0,0x0,0x0,0x66,0x40,0x30,0xb0,0x0,0x0,0x0,0x0,0x66,0xb8,0x37,0x40,0x0, + 0x0,0x0,0x0,0x68,0x20,0x12,0xb0,0x0,0x0,0x0,0x0,0x68,0x98,0x19,0x40,0x0, + 0x0,0x0,0x0,0x69,0xff,0xf4,0xb0,0x0,0x0,0x0,0x0,0x6a,0x77,0xfb,0x40,0x0, + 0x0,0x0,0x0,0x6b,0xdf,0xd6,0xb0,0x0,0x0,0x0,0x0,0x6c,0x61,0x17,0xc0,0x0, + 0x0,0x0,0x0,0x6d,0xc8,0xf3,0x30,0x0,0x0,0x0,0x0,0x6e,0x40,0xf9,0xc0,0x0, + 0x0,0x0,0x0,0x6f,0xa8,0xd5,0x30,0x0,0x0,0x0,0x0,0x70,0x20,0xdb,0xc0,0x0, + 0x0,0x0,0x0,0x71,0x88,0xb7,0x30,0x0,0x0,0x0,0x0,0x72,0x0,0xbd,0xc0,0x0, + 0x0,0x0,0x0,0x73,0x68,0x99,0x30,0x0,0x0,0x0,0x0,0x73,0xe0,0x9f,0xc0,0x0, + 0x0,0x0,0x0,0x75,0x48,0x7b,0x30,0x0,0x0,0x0,0x0,0x75,0xc9,0xbc,0x40,0x0, + 0x0,0x0,0x0,0x77,0x31,0x97,0xb0,0x0,0x0,0x0,0x0,0x77,0xa9,0x9e,0x40,0x0, + 0x0,0x0,0x0,0x79,0x11,0x79,0xb0,0x0,0x0,0x0,0x0,0x79,0x89,0x80,0x40,0x0, + 0x0,0x0,0x0,0x7a,0xf1,0x5b,0xb0,0x0,0x0,0x0,0x0,0x7b,0x69,0x62,0x40,0x0, + 0x0,0x0,0x0,0x7c,0xd1,0x3d,0xb0,0x0,0x0,0x0,0x0,0x7d,0x49,0x44,0x40,0x0, + 0x0,0x0,0x0,0x7e,0xb1,0x1f,0xb0,0x0,0x0,0x0,0x0,0x7f,0x29,0x26,0x40,0x0, + 0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x4,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x6,0xff,0xff,0x99,0x78,0x0,0x0,0xff,0xff,0x99,0x78,0x0,0x4, + 0xff,0xff,0xab,0xa0,0x1,0x8,0xff,0xff,0x9d,0x90,0x0,0xc,0xff,0xff,0x9d,0x90, + 0x0,0xc,0xff,0xff,0xab,0xa0,0x0,0x8,0xff,0xff,0xb9,0xb0,0x1,0x10,0x4c,0x4d, + 0x54,0x0,0x45,0x4d,0x54,0x0,0x2d,0x30,0x36,0x0,0x2d,0x30,0x37,0x0,0x2d,0x30, + 0x35,0x0,0x0,0x0,0x1,0x1,0x0,0x1,0x1,0x0,0x0,0x1,0x1,0x0,0x1,0x1, + 0xa,0x3c,0x2d,0x30,0x36,0x3e,0x36,0x3c,0x2d,0x30,0x35,0x3e,0x2c,0x4d,0x38,0x2e, + 0x32,0x2e,0x36,0x2f,0x32,0x32,0x2c,0x4d,0x35,0x2e,0x32,0x2e,0x36,0x2f,0x32,0x32, + 0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Atlantic/Stanley + 0x0,0x0,0x4,0xe3, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x79,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x22,0x80,0x0,0x0,0x0,0xaa, - 0x19,0xa7,0x64,0xb5,0xa4,0x19,0x60,0xca,0xcd,0x2e,0xd0,0xcc,0xe7,0x4b,0x10,0xcd, - 0xa9,0x17,0x90,0xce,0xa2,0x43,0x10,0xce,0xcd,0xa8,0x70,0x15,0x27,0xa7,0xd0,0x16, - 0x18,0xdc,0x40,0x17,0x8,0xdb,0x50,0x17,0xfa,0xf,0xc0,0x18,0xea,0xe,0xd0,0x19, - 0xdb,0x43,0x40,0x1a,0xcc,0x93,0xd0,0x1b,0xbc,0xa0,0xf0,0x1c,0xac,0x91,0xf0,0x1d, - 0x9c,0x82,0xf0,0x1e,0x8c,0x73,0xf0,0x1f,0x7c,0x64,0xf0,0x20,0x6c,0x55,0xf0,0x21, - 0x5c,0x46,0xf0,0x22,0x4c,0x37,0xf0,0x23,0x3c,0x28,0xf0,0x24,0x2c,0x19,0xf0,0x25, - 0x1c,0xa,0xf0,0x26,0xb,0xfb,0xf0,0x26,0x8d,0x20,0xe0,0x28,0xe5,0x17,0x80,0x29, - 0xd4,0xec,0x60,0x2a,0xc4,0xcf,0x50,0x2b,0xb4,0xce,0x60,0x2c,0xa4,0xb1,0x50,0x2d, - 0x94,0xb0,0x60,0x2e,0x84,0x93,0x50,0x2f,0x74,0xbc,0x90,0x30,0x64,0xad,0x90,0x31, - 0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34,0x52,0x96,0x10,0x35, - 0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x38, - 0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b,0xdb,0x58,0x90,0x3c, - 0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f,0x9b,0x1c,0x90,0x40, - 0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43,0x64,0x1b,0x10,0x44, - 0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47, - 0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b, - 0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e,0xac,0xa1,0x90,0x4f, - 0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53, - 0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56,0x2c,0x29,0x90,0x56, - 0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59,0xf5,0x28,0x10,0x5a, - 0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d,0xb4,0xec,0x10,0x5e, - 0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61,0x7d,0xea,0x90,0x62, - 0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65,0x3d,0xae,0x90,0x66, - 0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68,0xfd,0x72,0x90,0x69, - 0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c,0xc6,0x71,0x10,0x6d, - 0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70,0x86,0x35,0x10,0x71, - 0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74,0x45,0xf9,0x10,0x75, - 0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78, - 0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c, - 0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x1, - 0x2,0x3,0x6,0x4,0x5,0x4,0x3,0x7,0x3,0x7,0x3,0x7,0x3,0x7,0x8,0x9, - 0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0xa,0x2,0xa,0x2,0xa,0x2, - 0xa,0x2,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, - 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, - 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, - 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, - 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, - 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0x0,0x0,0x1c,0x9c,0x0,0x0,0x0,0x0, - 0x1c,0x9c,0x0,0x4,0x0,0x0,0x1c,0x20,0x0,0x8,0x0,0x0,0x2a,0x30,0x0,0xc, - 0x0,0x0,0xe,0x10,0x0,0x10,0x0,0x0,0x1c,0x20,0x1,0x14,0x0,0x0,0x1c,0x20, - 0x1,0x14,0x0,0x0,0x38,0x40,0x1,0x19,0x0,0x0,0x2a,0x30,0x0,0xc,0x0,0x0, - 0x38,0x40,0x1,0x19,0x0,0x0,0x2a,0x30,0x1,0x1d,0x0,0x0,0x2a,0x30,0x1,0x1d, - 0x0,0x0,0x1c,0x20,0x0,0x8,0x4c,0x4d,0x54,0x0,0x4b,0x4d,0x54,0x0,0x45,0x45, - 0x54,0x0,0x4d,0x53,0x4b,0x0,0x43,0x45,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x4d, - 0x53,0x44,0x0,0x45,0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0, - 0x1,0x1,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x1,0x1,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0xd,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x7a,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x22,0xf8,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x56,0xb6,0xc7,0x64,0xff,0xff, - 0xff,0xff,0xaa,0x19,0xa7,0x64,0xff,0xff,0xff,0xff,0xb5,0xa4,0x19,0x60,0xff,0xff, - 0xff,0xff,0xca,0xcd,0x2e,0xd0,0xff,0xff,0xff,0xff,0xcc,0xe7,0x4b,0x10,0xff,0xff, - 0xff,0xff,0xcd,0xa9,0x17,0x90,0xff,0xff,0xff,0xff,0xce,0xa2,0x43,0x10,0xff,0xff, - 0xff,0xff,0xce,0xcd,0xa8,0x70,0x0,0x0,0x0,0x0,0x15,0x27,0xa7,0xd0,0x0,0x0, - 0x0,0x0,0x16,0x18,0xdc,0x40,0x0,0x0,0x0,0x0,0x17,0x8,0xdb,0x50,0x0,0x0, - 0x0,0x0,0x17,0xfa,0xf,0xc0,0x0,0x0,0x0,0x0,0x18,0xea,0xe,0xd0,0x0,0x0, - 0x0,0x0,0x19,0xdb,0x43,0x40,0x0,0x0,0x0,0x0,0x1a,0xcc,0x93,0xd0,0x0,0x0, - 0x0,0x0,0x1b,0xbc,0xa0,0xf0,0x0,0x0,0x0,0x0,0x1c,0xac,0x91,0xf0,0x0,0x0, - 0x0,0x0,0x1d,0x9c,0x82,0xf0,0x0,0x0,0x0,0x0,0x1e,0x8c,0x73,0xf0,0x0,0x0, - 0x0,0x0,0x1f,0x7c,0x64,0xf0,0x0,0x0,0x0,0x0,0x20,0x6c,0x55,0xf0,0x0,0x0, - 0x0,0x0,0x21,0x5c,0x46,0xf0,0x0,0x0,0x0,0x0,0x22,0x4c,0x37,0xf0,0x0,0x0, - 0x0,0x0,0x23,0x3c,0x28,0xf0,0x0,0x0,0x0,0x0,0x24,0x2c,0x19,0xf0,0x0,0x0, - 0x0,0x0,0x25,0x1c,0xa,0xf0,0x0,0x0,0x0,0x0,0x26,0xb,0xfb,0xf0,0x0,0x0, - 0x0,0x0,0x26,0x8d,0x20,0xe0,0x0,0x0,0x0,0x0,0x28,0xe5,0x17,0x80,0x0,0x0, - 0x0,0x0,0x29,0xd4,0xec,0x60,0x0,0x0,0x0,0x0,0x2a,0xc4,0xcf,0x50,0x0,0x0, - 0x0,0x0,0x2b,0xb4,0xce,0x60,0x0,0x0,0x0,0x0,0x2c,0xa4,0xb1,0x50,0x0,0x0, - 0x0,0x0,0x2d,0x94,0xb0,0x60,0x0,0x0,0x0,0x0,0x2e,0x84,0x93,0x50,0x0,0x0, - 0x0,0x0,0x2f,0x74,0xbc,0x90,0x0,0x0,0x0,0x0,0x30,0x64,0xad,0x90,0x0,0x0, - 0x0,0x0,0x31,0x5d,0xd9,0x10,0x0,0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0, - 0x0,0x0,0x33,0x3d,0xbb,0x10,0x0,0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0, - 0x0,0x0,0x35,0x1d,0x9d,0x10,0x0,0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0, - 0x0,0x0,0x36,0xfd,0x7f,0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0, - 0x0,0x0,0x38,0xdd,0x61,0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0, - 0x0,0x0,0x3a,0xbd,0x43,0x10,0x0,0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0, - 0x0,0x0,0x3c,0xa6,0x5f,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0, - 0x0,0x0,0x3e,0x86,0x41,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0, - 0x0,0x0,0x40,0x66,0x23,0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0, - 0x0,0x0,0x42,0x46,0x5,0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0, - 0x0,0x0,0x44,0x25,0xe7,0x90,0x0,0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0, - 0x0,0x0,0x46,0x5,0xc9,0x90,0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0, - 0x0,0x0,0x47,0xee,0xe6,0x10,0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0, - 0x0,0x0,0x49,0xce,0xc8,0x10,0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0, - 0x0,0x0,0x4b,0xae,0xaa,0x10,0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0, - 0x0,0x0,0x4d,0x8e,0x8c,0x10,0x0,0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0, - 0x0,0x0,0x4f,0x6e,0x6e,0x10,0x0,0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0, - 0x0,0x0,0x51,0x57,0x8a,0x90,0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0, - 0x0,0x0,0x53,0x37,0x6c,0x90,0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0, - 0x0,0x0,0x55,0x17,0x4e,0x90,0x0,0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0, - 0x0,0x0,0x56,0xf7,0x30,0x90,0x0,0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0, - 0x0,0x0,0x58,0xd7,0x12,0x90,0x0,0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0, - 0x0,0x0,0x5a,0xb6,0xf4,0x90,0x0,0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0, - 0x0,0x0,0x5c,0xa0,0x11,0x10,0x0,0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0, - 0x0,0x0,0x5e,0x7f,0xf3,0x10,0x0,0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0, - 0x0,0x0,0x60,0x5f,0xd5,0x10,0x0,0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0, - 0x0,0x0,0x62,0x3f,0xb7,0x10,0x0,0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0, - 0x0,0x0,0x64,0x1f,0x99,0x10,0x0,0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0, - 0x0,0x0,0x66,0x8,0xb5,0x90,0x0,0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0, - 0x0,0x0,0x67,0xe8,0x97,0x90,0x0,0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0, - 0x0,0x0,0x69,0xc8,0x79,0x90,0x0,0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0, - 0x0,0x0,0x6b,0xa8,0x5b,0x90,0x0,0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0, - 0x0,0x0,0x6d,0x88,0x3d,0x90,0x0,0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0, - 0x0,0x0,0x6f,0x68,0x1f,0x90,0x0,0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0, - 0x0,0x0,0x71,0x51,0x3c,0x10,0x0,0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0, - 0x0,0x0,0x73,0x31,0x1e,0x10,0x0,0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0, - 0x0,0x0,0x75,0x11,0x0,0x10,0x0,0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0, - 0x0,0x0,0x76,0xf0,0xe2,0x10,0x0,0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0, - 0x0,0x0,0x78,0xd0,0xc4,0x10,0x0,0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0, - 0x0,0x0,0x7a,0xb0,0xa6,0x10,0x0,0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0, - 0x0,0x0,0x7c,0x99,0xc2,0x90,0x0,0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0, - 0x0,0x0,0x7e,0x79,0xa4,0x90,0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x1, - 0x2,0x3,0x6,0x4,0x5,0x4,0x3,0x7,0x3,0x7,0x3,0x7,0x3,0x7,0x8,0x9, - 0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0xa,0x2,0xa,0x2,0xa,0x2, - 0xa,0x2,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, - 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, - 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, - 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, - 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, - 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0x0,0x0,0x1c,0x9c,0x0,0x0,0x0,0x0, - 0x1c,0x9c,0x0,0x4,0x0,0x0,0x1c,0x20,0x0,0x8,0x0,0x0,0x2a,0x30,0x0,0xc, - 0x0,0x0,0xe,0x10,0x0,0x10,0x0,0x0,0x1c,0x20,0x1,0x14,0x0,0x0,0x1c,0x20, - 0x1,0x14,0x0,0x0,0x38,0x40,0x1,0x19,0x0,0x0,0x2a,0x30,0x0,0xc,0x0,0x0, - 0x38,0x40,0x1,0x19,0x0,0x0,0x2a,0x30,0x1,0x1d,0x0,0x0,0x2a,0x30,0x1,0x1d, - 0x0,0x0,0x1c,0x20,0x0,0x8,0x4c,0x4d,0x54,0x0,0x4b,0x4d,0x54,0x0,0x45,0x45, - 0x54,0x0,0x4d,0x53,0x4b,0x0,0x43,0x45,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x4d, - 0x53,0x44,0x0,0x45,0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0, - 0x1,0x1,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x1,0x1,0xa,0x45,0x45,0x54,0x2d,0x32,0x45,0x45,0x53,0x54,0x2c,0x4d,0x33,0x2e, - 0x35,0x2e,0x30,0x2f,0x33,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30,0x2f,0x34,0xa, - - // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Rome - 0x0,0x0,0xa,0x84, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x47,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0x93, + 0x44,0x5f,0x3c,0xc3,0x4f,0x5a,0xc0,0xc4,0x36,0x3,0x30,0xc5,0x2f,0x3c,0xc0,0xc6, + 0x15,0xe5,0x30,0xc7,0x18,0x59,0x40,0xc7,0xff,0x1,0xb0,0xc8,0xf8,0x3b,0x40,0xc9, + 0xde,0xe3,0xb0,0xca,0xd8,0x1d,0x40,0xcb,0xbe,0xc5,0xb0,0xcc,0xb7,0xff,0x40,0xcd, + 0x36,0x81,0x30,0x19,0x11,0xfe,0x40,0x19,0xd3,0xbc,0xb0,0x1a,0xf1,0xc4,0x20,0x1b, + 0xaa,0x64,0x30,0x1c,0xd1,0xa6,0x20,0x1d,0x8a,0x46,0x30,0x1e,0xa8,0x5b,0xb0,0x1f, + 0x6a,0x36,0x40,0x20,0x88,0x3d,0xb0,0x21,0x4a,0x18,0x40,0x22,0x68,0x1f,0xb0,0x23, + 0x29,0xfa,0x40,0x24,0x48,0x1,0xb0,0x25,0x9,0xdc,0x40,0x26,0x31,0x1e,0x30,0x26, + 0xe9,0xbe,0x40,0x28,0x11,0x0,0x30,0x28,0xd2,0xda,0xc0,0x29,0xf0,0xe2,0x30,0x2a, + 0xb2,0xbc,0xc0,0x2b,0xd0,0xc4,0x30,0x2c,0x92,0x9e,0xc0,0x2d,0xb0,0xa6,0x30,0x2e, + 0x72,0x80,0xc0,0x2f,0x90,0x88,0x30,0x30,0x52,0x62,0xc0,0x31,0x79,0xa4,0xb0,0x32, + 0x3b,0x7f,0x40,0x33,0x59,0x86,0xb0,0x34,0x1b,0x61,0x40,0x35,0x39,0x68,0xb0,0x35, + 0xfb,0x43,0x40,0x37,0x19,0x4a,0xb0,0x37,0xdb,0x25,0x40,0x38,0xf9,0x2c,0xb0,0x39, + 0xbb,0x7,0x40,0x3a,0xd9,0x2a,0xd0,0x3b,0x91,0xca,0xe0,0x3c,0xc2,0x47,0x50,0x3d, + 0x71,0xac,0xe0,0x3e,0xa2,0x29,0x50,0x3f,0x5a,0xc9,0x60,0x40,0x82,0xb,0x50,0x41, + 0x3a,0xab,0x60,0x42,0x61,0xed,0x50,0x43,0x1a,0x8d,0x60,0x44,0x41,0xcf,0x50,0x44, + 0xfa,0x6f,0x60,0x46,0x21,0xb1,0x50,0x46,0xda,0x51,0x60,0x48,0xa,0xcd,0xd0,0x48, + 0xc3,0x6d,0xe0,0x49,0xea,0xaf,0xd0,0x4a,0xa3,0x4f,0xe0,0x4b,0xca,0x91,0xd0,0x4c, + 0x83,0x31,0xe0,0x7f,0xff,0xff,0xff,0x1,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x5,0x4,0x5,0x4,0x5,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x5,0x5,0xff,0xff, + 0xc9,0xc4,0x0,0x0,0xff,0xff,0xc9,0xc4,0x0,0x4,0xff,0xff,0xd5,0xd0,0x1,0x8, + 0xff,0xff,0xc7,0xc0,0x0,0xc,0xff,0xff,0xe3,0xe0,0x1,0x10,0xff,0xff,0xd5,0xd0, + 0x0,0x8,0xff,0xff,0xd5,0xd0,0x1,0x8,0x4c,0x4d,0x54,0x0,0x53,0x4d,0x54,0x0, + 0x2d,0x30,0x33,0x0,0x2d,0x30,0x34,0x0,0x2d,0x30,0x32,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x48,0x0,0x0, + 0x0,0x7,0x0,0x0,0x0,0x14,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff, + 0xff,0xff,0x69,0x87,0x11,0xbc,0xff,0xff,0xff,0xff,0x93,0x44,0x5f,0x3c,0xff,0xff, + 0xff,0xff,0xc3,0x4f,0x5a,0xc0,0xff,0xff,0xff,0xff,0xc4,0x36,0x3,0x30,0xff,0xff, + 0xff,0xff,0xc5,0x2f,0x3c,0xc0,0xff,0xff,0xff,0xff,0xc6,0x15,0xe5,0x30,0xff,0xff, + 0xff,0xff,0xc7,0x18,0x59,0x40,0xff,0xff,0xff,0xff,0xc7,0xff,0x1,0xb0,0xff,0xff, + 0xff,0xff,0xc8,0xf8,0x3b,0x40,0xff,0xff,0xff,0xff,0xc9,0xde,0xe3,0xb0,0xff,0xff, + 0xff,0xff,0xca,0xd8,0x1d,0x40,0xff,0xff,0xff,0xff,0xcb,0xbe,0xc5,0xb0,0xff,0xff, + 0xff,0xff,0xcc,0xb7,0xff,0x40,0xff,0xff,0xff,0xff,0xcd,0x36,0x81,0x30,0x0,0x0, + 0x0,0x0,0x19,0x11,0xfe,0x40,0x0,0x0,0x0,0x0,0x19,0xd3,0xbc,0xb0,0x0,0x0, + 0x0,0x0,0x1a,0xf1,0xc4,0x20,0x0,0x0,0x0,0x0,0x1b,0xaa,0x64,0x30,0x0,0x0, + 0x0,0x0,0x1c,0xd1,0xa6,0x20,0x0,0x0,0x0,0x0,0x1d,0x8a,0x46,0x30,0x0,0x0, + 0x0,0x0,0x1e,0xa8,0x5b,0xb0,0x0,0x0,0x0,0x0,0x1f,0x6a,0x36,0x40,0x0,0x0, + 0x0,0x0,0x20,0x88,0x3d,0xb0,0x0,0x0,0x0,0x0,0x21,0x4a,0x18,0x40,0x0,0x0, + 0x0,0x0,0x22,0x68,0x1f,0xb0,0x0,0x0,0x0,0x0,0x23,0x29,0xfa,0x40,0x0,0x0, + 0x0,0x0,0x24,0x48,0x1,0xb0,0x0,0x0,0x0,0x0,0x25,0x9,0xdc,0x40,0x0,0x0, + 0x0,0x0,0x26,0x31,0x1e,0x30,0x0,0x0,0x0,0x0,0x26,0xe9,0xbe,0x40,0x0,0x0, + 0x0,0x0,0x28,0x11,0x0,0x30,0x0,0x0,0x0,0x0,0x28,0xd2,0xda,0xc0,0x0,0x0, + 0x0,0x0,0x29,0xf0,0xe2,0x30,0x0,0x0,0x0,0x0,0x2a,0xb2,0xbc,0xc0,0x0,0x0, + 0x0,0x0,0x2b,0xd0,0xc4,0x30,0x0,0x0,0x0,0x0,0x2c,0x92,0x9e,0xc0,0x0,0x0, + 0x0,0x0,0x2d,0xb0,0xa6,0x30,0x0,0x0,0x0,0x0,0x2e,0x72,0x80,0xc0,0x0,0x0, + 0x0,0x0,0x2f,0x90,0x88,0x30,0x0,0x0,0x0,0x0,0x30,0x52,0x62,0xc0,0x0,0x0, + 0x0,0x0,0x31,0x79,0xa4,0xb0,0x0,0x0,0x0,0x0,0x32,0x3b,0x7f,0x40,0x0,0x0, + 0x0,0x0,0x33,0x59,0x86,0xb0,0x0,0x0,0x0,0x0,0x34,0x1b,0x61,0x40,0x0,0x0, + 0x0,0x0,0x35,0x39,0x68,0xb0,0x0,0x0,0x0,0x0,0x35,0xfb,0x43,0x40,0x0,0x0, + 0x0,0x0,0x37,0x19,0x4a,0xb0,0x0,0x0,0x0,0x0,0x37,0xdb,0x25,0x40,0x0,0x0, + 0x0,0x0,0x38,0xf9,0x2c,0xb0,0x0,0x0,0x0,0x0,0x39,0xbb,0x7,0x40,0x0,0x0, + 0x0,0x0,0x3a,0xd9,0x2a,0xd0,0x0,0x0,0x0,0x0,0x3b,0x91,0xca,0xe0,0x0,0x0, + 0x0,0x0,0x3c,0xc2,0x47,0x50,0x0,0x0,0x0,0x0,0x3d,0x71,0xac,0xe0,0x0,0x0, + 0x0,0x0,0x3e,0xa2,0x29,0x50,0x0,0x0,0x0,0x0,0x3f,0x5a,0xc9,0x60,0x0,0x0, + 0x0,0x0,0x40,0x82,0xb,0x50,0x0,0x0,0x0,0x0,0x41,0x3a,0xab,0x60,0x0,0x0, + 0x0,0x0,0x42,0x61,0xed,0x50,0x0,0x0,0x0,0x0,0x43,0x1a,0x8d,0x60,0x0,0x0, + 0x0,0x0,0x44,0x41,0xcf,0x50,0x0,0x0,0x0,0x0,0x44,0xfa,0x6f,0x60,0x0,0x0, + 0x0,0x0,0x46,0x21,0xb1,0x50,0x0,0x0,0x0,0x0,0x46,0xda,0x51,0x60,0x0,0x0, + 0x0,0x0,0x48,0xa,0xcd,0xd0,0x0,0x0,0x0,0x0,0x48,0xc3,0x6d,0xe0,0x0,0x0, + 0x0,0x0,0x49,0xea,0xaf,0xd0,0x0,0x0,0x0,0x0,0x4a,0xa3,0x4f,0xe0,0x0,0x0, + 0x0,0x0,0x4b,0xca,0x91,0xd0,0x0,0x0,0x0,0x0,0x4c,0x83,0x31,0xe0,0x0,0x0, + 0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x5,0x4,0x5,0x4,0x5,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x5,0x5,0xff,0xff, + 0xc9,0xc4,0x0,0x0,0xff,0xff,0xc9,0xc4,0x0,0x4,0xff,0xff,0xd5,0xd0,0x1,0x8, + 0xff,0xff,0xc7,0xc0,0x0,0xc,0xff,0xff,0xe3,0xe0,0x1,0x10,0xff,0xff,0xd5,0xd0, + 0x0,0x8,0xff,0xff,0xd5,0xd0,0x1,0x8,0x4c,0x4d,0x54,0x0,0x53,0x4d,0x54,0x0, + 0x2d,0x30,0x33,0x0,0x2d,0x30,0x34,0x0,0x2d,0x30,0x32,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2d,0x30,0x33,0x3e, + 0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Atlantic/Canary + 0x0,0x0,0x7,0x77, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xac,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0x9b, - 0x38,0xf8,0x70,0x9b,0xd5,0xcc,0xe0,0x9c,0xc5,0xcb,0xf0,0x9d,0xb7,0x0,0x60,0x9e, - 0x89,0xfe,0x70,0x9f,0xa0,0x1c,0xe0,0xa0,0x60,0xa5,0xf0,0xa1,0x7e,0xad,0x60,0xa2, - 0x5c,0x37,0x70,0xa3,0x4c,0x1a,0x60,0xc8,0x6c,0x35,0xf0,0xcc,0xe7,0x4b,0x10,0xcd, - 0xa9,0x17,0x90,0xce,0x82,0x74,0xe0,0xce,0xa2,0x43,0x10,0xcf,0x92,0x34,0x10,0xcf, - 0xe3,0xc6,0xe0,0xd0,0x6e,0x5e,0x90,0xd1,0x72,0x16,0x10,0xd2,0x4c,0xd2,0xf0,0xd3, - 0x3e,0x31,0x90,0xd4,0x49,0xd2,0x10,0xd5,0x1d,0xf7,0x70,0xd6,0x29,0x97,0xf0,0xd6, - 0xeb,0x80,0x90,0xd8,0x9,0x96,0x10,0xf9,0x33,0xb5,0xf0,0xf9,0xd9,0xc4,0xe0,0xfb, - 0x1c,0xd2,0x70,0xfb,0xb9,0xb4,0xf0,0xfc,0xfc,0xb4,0x70,0xfd,0x99,0x96,0xf0,0xfe, - 0xe5,0xd0,0xf0,0xff,0x82,0xb3,0x70,0x0,0xc5,0xb2,0xf0,0x1,0x62,0x95,0x70,0x2, - 0x9c,0x5a,0x70,0x3,0x42,0x77,0x70,0x4,0x85,0x76,0xf0,0x5,0x2b,0x93,0xf0,0x6, - 0x6e,0x93,0x70,0x7,0xb,0x75,0xf0,0x8,0x45,0x3a,0xf0,0x8,0xeb,0x57,0xf0,0xa, - 0x2e,0x57,0x70,0xa,0xcb,0x39,0xf0,0xc,0xe,0x39,0x70,0xc,0xab,0x1b,0xf0,0xd, - 0xe4,0xe0,0xf0,0xe,0x8a,0xfd,0xf0,0xf,0xcd,0xfd,0x70,0x10,0x74,0x1a,0x70,0x11, - 0xad,0xdf,0x70,0x12,0x53,0xfc,0x70,0x12,0xce,0x97,0xf0,0x13,0x4d,0x44,0x10,0x14, - 0x33,0xfa,0x90,0x15,0x23,0xeb,0x90,0x16,0x13,0xdc,0x90,0x17,0x3,0xcd,0x90,0x17, + 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x77,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x80,0x0,0x0,0x0,0xa6, + 0x4,0x5c,0xf0,0xd4,0x41,0xf7,0x20,0x13,0x4d,0x36,0x0,0x14,0x33,0xfa,0x90,0x15, + 0x23,0xeb,0x90,0x16,0x13,0xdc,0x90,0x17,0x3,0xcd,0x90,0x17,0xf3,0xbe,0x90,0x18, + 0xe3,0xaf,0x90,0x19,0xd3,0xa0,0x90,0x1a,0xc3,0x91,0x90,0x1b,0xbc,0xbd,0x10,0x1c, + 0xac,0xae,0x10,0x1d,0x9c,0x9f,0x10,0x1e,0x8c,0x90,0x10,0x1f,0x7c,0x81,0x10,0x20, + 0x6c,0x72,0x10,0x21,0x5c,0x63,0x10,0x22,0x4c,0x54,0x10,0x23,0x3c,0x45,0x10,0x24, + 0x2c,0x36,0x10,0x25,0x1c,0x27,0x10,0x26,0xc,0x18,0x10,0x27,0x5,0x43,0x90,0x27, + 0xf5,0x34,0x90,0x28,0xe5,0x25,0x90,0x29,0xd5,0x16,0x90,0x2a,0xc5,0x7,0x90,0x2b, + 0xb4,0xf8,0x90,0x2c,0xa4,0xe9,0x90,0x2d,0x94,0xda,0x90,0x2e,0x84,0xcb,0x90,0x2f, + 0x74,0xbc,0x90,0x30,0x64,0xad,0x90,0x31,0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33, + 0x3d,0xbb,0x10,0x34,0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36, + 0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a, + 0xbd,0x43,0x10,0x3b,0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e, + 0x86,0x41,0x90,0x3f,0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42, + 0x46,0x5,0x90,0x43,0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46, + 0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49, + 0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d, + 0x8e,0x8c,0x10,0x4e,0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51, + 0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55, + 0x17,0x4e,0x90,0x56,0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58, + 0xd7,0x12,0x90,0x59,0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c, + 0xa0,0x11,0x10,0x5d,0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60, + 0x5f,0xd5,0x10,0x61,0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64, + 0x1f,0x99,0x10,0x65,0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67, + 0xe8,0x97,0x90,0x68,0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b, + 0xa8,0x5b,0x90,0x6c,0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f, + 0x68,0x1f,0x90,0x70,0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73, + 0x31,0x1e,0x10,0x74,0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76, + 0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a, + 0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e, + 0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x0,0x1,0x2,0x3,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0xff,0xff, + 0xf1,0x90,0x0,0x0,0xff,0xff,0xf1,0xf0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x8, + 0x0,0x0,0xe,0x10,0x1,0xc,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0xe,0x10, + 0x1,0xc,0x4c,0x4d,0x54,0x0,0x2d,0x30,0x31,0x0,0x57,0x45,0x54,0x0,0x57,0x45, + 0x53,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x1,0x1,0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x77,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0xf8,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xa6,0x4,0x5c,0xf0,0xff,0xff,0xff,0xff,0xd4, + 0x41,0xf7,0x20,0x0,0x0,0x0,0x0,0x13,0x4d,0x36,0x0,0x0,0x0,0x0,0x0,0x14, + 0x33,0xfa,0x90,0x0,0x0,0x0,0x0,0x15,0x23,0xeb,0x90,0x0,0x0,0x0,0x0,0x16, + 0x13,0xdc,0x90,0x0,0x0,0x0,0x0,0x17,0x3,0xcd,0x90,0x0,0x0,0x0,0x0,0x17, + 0xf3,0xbe,0x90,0x0,0x0,0x0,0x0,0x18,0xe3,0xaf,0x90,0x0,0x0,0x0,0x0,0x19, + 0xd3,0xa0,0x90,0x0,0x0,0x0,0x0,0x1a,0xc3,0x91,0x90,0x0,0x0,0x0,0x0,0x1b, + 0xbc,0xbd,0x10,0x0,0x0,0x0,0x0,0x1c,0xac,0xae,0x10,0x0,0x0,0x0,0x0,0x1d, + 0x9c,0x9f,0x10,0x0,0x0,0x0,0x0,0x1e,0x8c,0x90,0x10,0x0,0x0,0x0,0x0,0x1f, + 0x7c,0x81,0x10,0x0,0x0,0x0,0x0,0x20,0x6c,0x72,0x10,0x0,0x0,0x0,0x0,0x21, + 0x5c,0x63,0x10,0x0,0x0,0x0,0x0,0x22,0x4c,0x54,0x10,0x0,0x0,0x0,0x0,0x23, + 0x3c,0x45,0x10,0x0,0x0,0x0,0x0,0x24,0x2c,0x36,0x10,0x0,0x0,0x0,0x0,0x25, + 0x1c,0x27,0x10,0x0,0x0,0x0,0x0,0x26,0xc,0x18,0x10,0x0,0x0,0x0,0x0,0x27, + 0x5,0x43,0x90,0x0,0x0,0x0,0x0,0x27,0xf5,0x34,0x90,0x0,0x0,0x0,0x0,0x28, + 0xe5,0x25,0x90,0x0,0x0,0x0,0x0,0x29,0xd5,0x16,0x90,0x0,0x0,0x0,0x0,0x2a, + 0xc5,0x7,0x90,0x0,0x0,0x0,0x0,0x2b,0xb4,0xf8,0x90,0x0,0x0,0x0,0x0,0x2c, + 0xa4,0xe9,0x90,0x0,0x0,0x0,0x0,0x2d,0x94,0xda,0x90,0x0,0x0,0x0,0x0,0x2e, + 0x84,0xcb,0x90,0x0,0x0,0x0,0x0,0x2f,0x74,0xbc,0x90,0x0,0x0,0x0,0x0,0x30, + 0x64,0xad,0x90,0x0,0x0,0x0,0x0,0x31,0x5d,0xd9,0x10,0x0,0x0,0x0,0x0,0x32, + 0x72,0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d,0xbb,0x10,0x0,0x0,0x0,0x0,0x34, + 0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d,0x9d,0x10,0x0,0x0,0x0,0x0,0x36, + 0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd,0x7f,0x10,0x0,0x0,0x0,0x0,0x38, + 0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd,0x61,0x10,0x0,0x0,0x0,0x0,0x39, + 0xfb,0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd,0x43,0x10,0x0,0x0,0x0,0x0,0x3b, + 0xdb,0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f,0x90,0x0,0x0,0x0,0x0,0x3d, + 0xbb,0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86,0x41,0x90,0x0,0x0,0x0,0x0,0x3f, + 0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66,0x23,0x90,0x0,0x0,0x0,0x0,0x41, + 0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46,0x5,0x90,0x0,0x0,0x0,0x0,0x43, + 0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25,0xe7,0x90,0x0,0x0,0x0,0x0,0x45, + 0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5,0xc9,0x90,0x0,0x0,0x0,0x0,0x47, + 0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee,0xe6,0x10,0x0,0x0,0x0,0x0,0x49, + 0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce,0xc8,0x10,0x0,0x0,0x0,0x0,0x4a, + 0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae,0xaa,0x10,0x0,0x0,0x0,0x0,0x4c, + 0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c,0x10,0x0,0x0,0x0,0x0,0x4e, + 0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e,0x10,0x0,0x0,0x0,0x0,0x50, + 0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57,0x8a,0x90,0x0,0x0,0x0,0x0,0x52, + 0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37,0x6c,0x90,0x0,0x0,0x0,0x0,0x54, + 0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17,0x4e,0x90,0x0,0x0,0x0,0x0,0x56, + 0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7,0x30,0x90,0x0,0x0,0x0,0x0,0x58, + 0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7,0x12,0x90,0x0,0x0,0x0,0x0,0x59, + 0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4,0x90,0x0,0x0,0x0,0x0,0x5b, + 0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0,0x11,0x10,0x0,0x0,0x0,0x0,0x5d, + 0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3,0x10,0x0,0x0,0x0,0x0,0x5f, + 0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f,0xd5,0x10,0x0,0x0,0x0,0x0,0x61, + 0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f,0xb7,0x10,0x0,0x0,0x0,0x0,0x63, + 0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f,0x99,0x10,0x0,0x0,0x0,0x0,0x65, + 0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8,0xb5,0x90,0x0,0x0,0x0,0x0,0x67, + 0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8,0x97,0x90,0x0,0x0,0x0,0x0,0x68, + 0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8,0x79,0x90,0x0,0x0,0x0,0x0,0x6a, + 0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b,0x90,0x0,0x0,0x0,0x0,0x6c, + 0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88,0x3d,0x90,0x0,0x0,0x0,0x0,0x6e, + 0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68,0x1f,0x90,0x0,0x0,0x0,0x0,0x70, + 0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51,0x3c,0x10,0x0,0x0,0x0,0x0,0x72, + 0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31,0x1e,0x10,0x0,0x0,0x0,0x0,0x74, + 0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11,0x0,0x10,0x0,0x0,0x0,0x0,0x76, + 0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0,0xe2,0x10,0x0,0x0,0x0,0x0,0x78, + 0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0,0xc4,0x10,0x0,0x0,0x0,0x0,0x79, + 0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6,0x10,0x0,0x0,0x0,0x0,0x7b, + 0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99,0xc2,0x90,0x0,0x0,0x0,0x0,0x7d, + 0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79,0xa4,0x90,0x0,0x0,0x0,0x0,0x7f, + 0x8e,0x7f,0x90,0x0,0x1,0x2,0x3,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0xff,0xff,0xf1,0x90,0x0,0x0, + 0xff,0xff,0xf1,0xf0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0xe,0x10, + 0x1,0xc,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0xe,0x10,0x1,0xc,0x4c,0x4d, + 0x54,0x0,0x2d,0x30,0x31,0x0,0x57,0x45,0x54,0x0,0x57,0x45,0x53,0x54,0x0,0x0, + 0x0,0x0,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x1,0x1,0xa,0x57,0x45,0x54,0x30, + 0x57,0x45,0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2f,0x31,0x2c,0x4d,0x31, + 0x30,0x2e,0x35,0x2e,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Atlantic/Azores + 0x0,0x0,0xd,0x95, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xde,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x18,0x80,0x0,0x0,0x0,0x92, + 0xe6,0xa9,0x58,0x9b,0x4b,0x89,0x90,0x9b,0xfe,0xe3,0xa0,0x9c,0x9d,0x9,0x90,0x9d, + 0xc9,0x9f,0x90,0x9e,0x7f,0x8e,0x90,0x9f,0xaa,0xd3,0x10,0xa0,0x5f,0x70,0x90,0xa1, + 0x8c,0x6,0x90,0xa2,0x41,0xf5,0x90,0xa3,0x6e,0x8b,0x90,0xa4,0x23,0x29,0x10,0xa5, + 0x4f,0xbf,0x10,0xaa,0x6,0xb,0x90,0xaa,0xf4,0xab,0x10,0xad,0xc9,0xc4,0x10,0xae, + 0xa7,0x40,0x10,0xaf,0xa0,0x6b,0x90,0xb0,0x87,0x22,0x10,0xb1,0x89,0x88,0x10,0xb2, + 0x70,0x3e,0x90,0xb3,0x72,0xa4,0x90,0xb4,0x50,0x20,0x90,0xb7,0x32,0x68,0x90,0xb8, + 0xf,0xe4,0x90,0xb8,0xff,0xd5,0x90,0xb9,0xef,0xc6,0x90,0xbc,0xc8,0xd4,0x10,0xbd, + 0xb8,0xc5,0x10,0xbe,0x9f,0x7b,0x90,0xbf,0x98,0xa7,0x10,0xc0,0x9b,0xd,0x10,0xc1, + 0x78,0x89,0x10,0xc2,0x68,0x7a,0x10,0xc3,0x58,0x6b,0x10,0xc4,0x3f,0x21,0x90,0xc5, + 0x38,0x4d,0x10,0xc6,0x3a,0xb3,0x10,0xc7,0x58,0xc8,0x90,0xc7,0xd9,0xfb,0x90,0xc9, + 0x1,0x4b,0x90,0xc9,0xf1,0x3c,0x90,0xca,0xe2,0x7f,0x10,0xcb,0xb5,0x6f,0x10,0xcb, + 0xec,0xc0,0x0,0xcc,0x80,0x68,0x0,0xcc,0xdc,0xbf,0x10,0xcd,0x95,0x51,0x10,0xcd, + 0xc3,0x67,0x80,0xce,0x72,0xbf,0x0,0xce,0xc5,0xdb,0x90,0xcf,0x75,0x33,0x10,0xcf, + 0xac,0x84,0x0,0xd0,0x52,0xa1,0x0,0xd0,0xa5,0xbd,0x90,0xd1,0x55,0x15,0x10,0xd1, + 0x8c,0x66,0x0,0xd2,0x32,0x83,0x0,0xd2,0x85,0x9f,0x90,0xd3,0x59,0xe1,0x10,0xd4, + 0x49,0xd2,0x10,0xd5,0x39,0xed,0x40,0xd6,0x29,0xde,0x40,0xd7,0x19,0xcf,0x40,0xd8, + 0x9,0xc0,0x40,0xd8,0xf9,0xb1,0x40,0xd9,0xe9,0xa2,0x40,0xdc,0xb9,0x75,0x40,0xdd, + 0xb2,0xa0,0xc0,0xde,0xa2,0x91,0xc0,0xdf,0x92,0x82,0xc0,0xe0,0x82,0x73,0xc0,0xe1, + 0x72,0x64,0xc0,0xe2,0x62,0x55,0xc0,0xe3,0x52,0x46,0xc0,0xe4,0x42,0x37,0xc0,0xe5, + 0x32,0x28,0xc0,0xe6,0x22,0x19,0xc0,0xe7,0x1b,0x45,0x40,0xe8,0xb,0x36,0x40,0xe8, + 0xfb,0x27,0x40,0xe9,0xeb,0x18,0x40,0xea,0xdb,0x9,0x40,0xeb,0xca,0xfa,0x40,0xec, + 0xba,0xeb,0x40,0xed,0xaa,0xdc,0x40,0xee,0x9a,0xcd,0x40,0xef,0x8a,0xbe,0x40,0xf0, + 0x7a,0xaf,0x40,0xf1,0x6a,0xa0,0x40,0xf2,0x63,0xcb,0xc0,0xf3,0x53,0xbc,0xc0,0xf4, + 0x43,0xad,0xc0,0xf5,0x33,0x9e,0xc0,0xf6,0x23,0x8f,0xc0,0xf7,0x13,0x80,0xc0,0xf8, + 0x3,0x71,0xc0,0xf8,0xf3,0x62,0xc0,0xd,0x9b,0x29,0x10,0xe,0x8b,0x1a,0x10,0xf, + 0x84,0x45,0x90,0x10,0x74,0x36,0x90,0x11,0x64,0x27,0x90,0x12,0x54,0x26,0xa0,0x13, + 0x44,0x9,0x90,0x14,0x34,0x8,0xa0,0x15,0x23,0xf9,0xa0,0x16,0x13,0xea,0xa0,0x17, + 0x3,0xdb,0xa0,0x17,0xf3,0xcc,0xa0,0x18,0xe3,0xcb,0xb0,0x19,0xd3,0xae,0xa0,0x1a, + 0xc3,0x9f,0xa0,0x1b,0xbc,0xcb,0x20,0x1c,0xac,0xbc,0x20,0x1d,0x9c,0xad,0x20,0x1e, + 0x8c,0x9e,0x20,0x1f,0x7c,0x8f,0x20,0x20,0x6c,0x80,0x20,0x21,0x5c,0x71,0x20,0x22, + 0x4c,0x62,0x20,0x23,0x3c,0x53,0x20,0x24,0x2c,0x44,0x20,0x25,0x1c,0x35,0x20,0x26, + 0xc,0x26,0x20,0x27,0x5,0x51,0xa0,0x27,0xf5,0x42,0xa0,0x28,0xe5,0x33,0xa0,0x29, + 0xd5,0x24,0xa0,0x2a,0xc5,0x15,0xa0,0x2b,0xb4,0xf8,0x90,0x2c,0xa4,0xe9,0x90,0x2d, + 0x94,0xda,0x90,0x2e,0x84,0xcb,0x90,0x2f,0x74,0xbc,0x90,0x30,0x64,0xad,0x90,0x31, + 0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34,0x52,0x96,0x10,0x35, + 0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x38, + 0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b,0xdb,0x58,0x90,0x3c, + 0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f,0x9b,0x1c,0x90,0x40, + 0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43,0x64,0x1b,0x10,0x44, + 0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47, + 0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b, + 0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e,0xac,0xa1,0x90,0x4f, + 0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53, + 0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56,0x2c,0x29,0x90,0x56, + 0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59,0xf5,0x28,0x10,0x5a, + 0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d,0xb4,0xec,0x10,0x5e, + 0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61,0x7d,0xea,0x90,0x62, + 0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65,0x3d,0xae,0x90,0x66, + 0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68,0xfd,0x72,0x90,0x69, + 0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c,0xc6,0x71,0x10,0x6d, + 0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70,0x86,0x35,0x10,0x71, + 0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74,0x45,0xf9,0x10,0x75, + 0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78, + 0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c, + 0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x7f, + 0xff,0xff,0xff,0x1,0x3,0x2,0x3,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x6,0x4,0x5,0x4,0x6,0x4,0x5,0x4,0x6,0x4,0x5,0x4,0x6,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x8,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x9,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb, + 0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb, + 0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb, + 0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb, + 0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb, + 0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb, + 0xb,0xff,0xff,0xe7,0xf0,0x0,0x0,0xff,0xff,0xe5,0x28,0x0,0x4,0xff,0xff,0xf1, + 0xf0,0x1,0x8,0xff,0xff,0xe3,0xe0,0x0,0xc,0xff,0xff,0xf1,0xf0,0x1,0x8,0xff, + 0xff,0xe3,0xe0,0x0,0xc,0x0,0x0,0x0,0x0,0x1,0x10,0xff,0xff,0xf1,0xf0,0x0, + 0x8,0xff,0xff,0xf1,0xf0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x14,0x0,0x0,0x0, + 0x0,0x1,0x10,0xff,0xff,0xf1,0xf0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x48,0x4d,0x54, + 0x0,0x2d,0x30,0x31,0x0,0x2d,0x30,0x32,0x0,0x2b,0x30,0x30,0x0,0x57,0x45,0x54, + 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x0,0x1,0x1,0x1,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x54,0x5a,0x69,0x66,0x32,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xc,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xdf,0x0,0x0,0x0, + 0xc,0x0,0x0,0x0,0x18,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff, + 0xff,0x5e,0x3d,0x1b,0x90,0xff,0xff,0xff,0xff,0x92,0xe6,0xa9,0x58,0xff,0xff,0xff, + 0xff,0x9b,0x4b,0x89,0x90,0xff,0xff,0xff,0xff,0x9b,0xfe,0xe3,0xa0,0xff,0xff,0xff, + 0xff,0x9c,0x9d,0x9,0x90,0xff,0xff,0xff,0xff,0x9d,0xc9,0x9f,0x90,0xff,0xff,0xff, + 0xff,0x9e,0x7f,0x8e,0x90,0xff,0xff,0xff,0xff,0x9f,0xaa,0xd3,0x10,0xff,0xff,0xff, + 0xff,0xa0,0x5f,0x70,0x90,0xff,0xff,0xff,0xff,0xa1,0x8c,0x6,0x90,0xff,0xff,0xff, + 0xff,0xa2,0x41,0xf5,0x90,0xff,0xff,0xff,0xff,0xa3,0x6e,0x8b,0x90,0xff,0xff,0xff, + 0xff,0xa4,0x23,0x29,0x10,0xff,0xff,0xff,0xff,0xa5,0x4f,0xbf,0x10,0xff,0xff,0xff, + 0xff,0xaa,0x6,0xb,0x90,0xff,0xff,0xff,0xff,0xaa,0xf4,0xab,0x10,0xff,0xff,0xff, + 0xff,0xad,0xc9,0xc4,0x10,0xff,0xff,0xff,0xff,0xae,0xa7,0x40,0x10,0xff,0xff,0xff, + 0xff,0xaf,0xa0,0x6b,0x90,0xff,0xff,0xff,0xff,0xb0,0x87,0x22,0x10,0xff,0xff,0xff, + 0xff,0xb1,0x89,0x88,0x10,0xff,0xff,0xff,0xff,0xb2,0x70,0x3e,0x90,0xff,0xff,0xff, + 0xff,0xb3,0x72,0xa4,0x90,0xff,0xff,0xff,0xff,0xb4,0x50,0x20,0x90,0xff,0xff,0xff, + 0xff,0xb7,0x32,0x68,0x90,0xff,0xff,0xff,0xff,0xb8,0xf,0xe4,0x90,0xff,0xff,0xff, + 0xff,0xb8,0xff,0xd5,0x90,0xff,0xff,0xff,0xff,0xb9,0xef,0xc6,0x90,0xff,0xff,0xff, + 0xff,0xbc,0xc8,0xd4,0x10,0xff,0xff,0xff,0xff,0xbd,0xb8,0xc5,0x10,0xff,0xff,0xff, + 0xff,0xbe,0x9f,0x7b,0x90,0xff,0xff,0xff,0xff,0xbf,0x98,0xa7,0x10,0xff,0xff,0xff, + 0xff,0xc0,0x9b,0xd,0x10,0xff,0xff,0xff,0xff,0xc1,0x78,0x89,0x10,0xff,0xff,0xff, + 0xff,0xc2,0x68,0x7a,0x10,0xff,0xff,0xff,0xff,0xc3,0x58,0x6b,0x10,0xff,0xff,0xff, + 0xff,0xc4,0x3f,0x21,0x90,0xff,0xff,0xff,0xff,0xc5,0x38,0x4d,0x10,0xff,0xff,0xff, + 0xff,0xc6,0x3a,0xb3,0x10,0xff,0xff,0xff,0xff,0xc7,0x58,0xc8,0x90,0xff,0xff,0xff, + 0xff,0xc7,0xd9,0xfb,0x90,0xff,0xff,0xff,0xff,0xc9,0x1,0x4b,0x90,0xff,0xff,0xff, + 0xff,0xc9,0xf1,0x3c,0x90,0xff,0xff,0xff,0xff,0xca,0xe2,0x7f,0x10,0xff,0xff,0xff, + 0xff,0xcb,0xb5,0x6f,0x10,0xff,0xff,0xff,0xff,0xcb,0xec,0xc0,0x0,0xff,0xff,0xff, + 0xff,0xcc,0x80,0x68,0x0,0xff,0xff,0xff,0xff,0xcc,0xdc,0xbf,0x10,0xff,0xff,0xff, + 0xff,0xcd,0x95,0x51,0x10,0xff,0xff,0xff,0xff,0xcd,0xc3,0x67,0x80,0xff,0xff,0xff, + 0xff,0xce,0x72,0xbf,0x0,0xff,0xff,0xff,0xff,0xce,0xc5,0xdb,0x90,0xff,0xff,0xff, + 0xff,0xcf,0x75,0x33,0x10,0xff,0xff,0xff,0xff,0xcf,0xac,0x84,0x0,0xff,0xff,0xff, + 0xff,0xd0,0x52,0xa1,0x0,0xff,0xff,0xff,0xff,0xd0,0xa5,0xbd,0x90,0xff,0xff,0xff, + 0xff,0xd1,0x55,0x15,0x10,0xff,0xff,0xff,0xff,0xd1,0x8c,0x66,0x0,0xff,0xff,0xff, + 0xff,0xd2,0x32,0x83,0x0,0xff,0xff,0xff,0xff,0xd2,0x85,0x9f,0x90,0xff,0xff,0xff, + 0xff,0xd3,0x59,0xe1,0x10,0xff,0xff,0xff,0xff,0xd4,0x49,0xd2,0x10,0xff,0xff,0xff, + 0xff,0xd5,0x39,0xed,0x40,0xff,0xff,0xff,0xff,0xd6,0x29,0xde,0x40,0xff,0xff,0xff, + 0xff,0xd7,0x19,0xcf,0x40,0xff,0xff,0xff,0xff,0xd8,0x9,0xc0,0x40,0xff,0xff,0xff, + 0xff,0xd8,0xf9,0xb1,0x40,0xff,0xff,0xff,0xff,0xd9,0xe9,0xa2,0x40,0xff,0xff,0xff, + 0xff,0xdc,0xb9,0x75,0x40,0xff,0xff,0xff,0xff,0xdd,0xb2,0xa0,0xc0,0xff,0xff,0xff, + 0xff,0xde,0xa2,0x91,0xc0,0xff,0xff,0xff,0xff,0xdf,0x92,0x82,0xc0,0xff,0xff,0xff, + 0xff,0xe0,0x82,0x73,0xc0,0xff,0xff,0xff,0xff,0xe1,0x72,0x64,0xc0,0xff,0xff,0xff, + 0xff,0xe2,0x62,0x55,0xc0,0xff,0xff,0xff,0xff,0xe3,0x52,0x46,0xc0,0xff,0xff,0xff, + 0xff,0xe4,0x42,0x37,0xc0,0xff,0xff,0xff,0xff,0xe5,0x32,0x28,0xc0,0xff,0xff,0xff, + 0xff,0xe6,0x22,0x19,0xc0,0xff,0xff,0xff,0xff,0xe7,0x1b,0x45,0x40,0xff,0xff,0xff, + 0xff,0xe8,0xb,0x36,0x40,0xff,0xff,0xff,0xff,0xe8,0xfb,0x27,0x40,0xff,0xff,0xff, + 0xff,0xe9,0xeb,0x18,0x40,0xff,0xff,0xff,0xff,0xea,0xdb,0x9,0x40,0xff,0xff,0xff, + 0xff,0xeb,0xca,0xfa,0x40,0xff,0xff,0xff,0xff,0xec,0xba,0xeb,0x40,0xff,0xff,0xff, + 0xff,0xed,0xaa,0xdc,0x40,0xff,0xff,0xff,0xff,0xee,0x9a,0xcd,0x40,0xff,0xff,0xff, + 0xff,0xef,0x8a,0xbe,0x40,0xff,0xff,0xff,0xff,0xf0,0x7a,0xaf,0x40,0xff,0xff,0xff, + 0xff,0xf1,0x6a,0xa0,0x40,0xff,0xff,0xff,0xff,0xf2,0x63,0xcb,0xc0,0xff,0xff,0xff, + 0xff,0xf3,0x53,0xbc,0xc0,0xff,0xff,0xff,0xff,0xf4,0x43,0xad,0xc0,0xff,0xff,0xff, + 0xff,0xf5,0x33,0x9e,0xc0,0xff,0xff,0xff,0xff,0xf6,0x23,0x8f,0xc0,0xff,0xff,0xff, + 0xff,0xf7,0x13,0x80,0xc0,0xff,0xff,0xff,0xff,0xf8,0x3,0x71,0xc0,0xff,0xff,0xff, + 0xff,0xf8,0xf3,0x62,0xc0,0x0,0x0,0x0,0x0,0xd,0x9b,0x29,0x10,0x0,0x0,0x0, + 0x0,0xe,0x8b,0x1a,0x10,0x0,0x0,0x0,0x0,0xf,0x84,0x45,0x90,0x0,0x0,0x0, + 0x0,0x10,0x74,0x36,0x90,0x0,0x0,0x0,0x0,0x11,0x64,0x27,0x90,0x0,0x0,0x0, + 0x0,0x12,0x54,0x26,0xa0,0x0,0x0,0x0,0x0,0x13,0x44,0x9,0x90,0x0,0x0,0x0, + 0x0,0x14,0x34,0x8,0xa0,0x0,0x0,0x0,0x0,0x15,0x23,0xf9,0xa0,0x0,0x0,0x0, + 0x0,0x16,0x13,0xea,0xa0,0x0,0x0,0x0,0x0,0x17,0x3,0xdb,0xa0,0x0,0x0,0x0, + 0x0,0x17,0xf3,0xcc,0xa0,0x0,0x0,0x0,0x0,0x18,0xe3,0xcb,0xb0,0x0,0x0,0x0, + 0x0,0x19,0xd3,0xae,0xa0,0x0,0x0,0x0,0x0,0x1a,0xc3,0x9f,0xa0,0x0,0x0,0x0, + 0x0,0x1b,0xbc,0xcb,0x20,0x0,0x0,0x0,0x0,0x1c,0xac,0xbc,0x20,0x0,0x0,0x0, + 0x0,0x1d,0x9c,0xad,0x20,0x0,0x0,0x0,0x0,0x1e,0x8c,0x9e,0x20,0x0,0x0,0x0, + 0x0,0x1f,0x7c,0x8f,0x20,0x0,0x0,0x0,0x0,0x20,0x6c,0x80,0x20,0x0,0x0,0x0, + 0x0,0x21,0x5c,0x71,0x20,0x0,0x0,0x0,0x0,0x22,0x4c,0x62,0x20,0x0,0x0,0x0, + 0x0,0x23,0x3c,0x53,0x20,0x0,0x0,0x0,0x0,0x24,0x2c,0x44,0x20,0x0,0x0,0x0, + 0x0,0x25,0x1c,0x35,0x20,0x0,0x0,0x0,0x0,0x26,0xc,0x26,0x20,0x0,0x0,0x0, + 0x0,0x27,0x5,0x51,0xa0,0x0,0x0,0x0,0x0,0x27,0xf5,0x42,0xa0,0x0,0x0,0x0, + 0x0,0x28,0xe5,0x33,0xa0,0x0,0x0,0x0,0x0,0x29,0xd5,0x24,0xa0,0x0,0x0,0x0, + 0x0,0x2a,0xc5,0x15,0xa0,0x0,0x0,0x0,0x0,0x2b,0xb4,0xf8,0x90,0x0,0x0,0x0, + 0x0,0x2c,0xa4,0xe9,0x90,0x0,0x0,0x0,0x0,0x2d,0x94,0xda,0x90,0x0,0x0,0x0, + 0x0,0x2e,0x84,0xcb,0x90,0x0,0x0,0x0,0x0,0x2f,0x74,0xbc,0x90,0x0,0x0,0x0, + 0x0,0x30,0x64,0xad,0x90,0x0,0x0,0x0,0x0,0x31,0x5d,0xd9,0x10,0x0,0x0,0x0, + 0x0,0x32,0x72,0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d,0xbb,0x10,0x0,0x0,0x0, + 0x0,0x34,0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d,0x9d,0x10,0x0,0x0,0x0, + 0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd,0x7f,0x10,0x0,0x0,0x0, + 0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd,0x61,0x10,0x0,0x0,0x0, + 0x0,0x39,0xfb,0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd,0x43,0x10,0x0,0x0,0x0, + 0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f,0x90,0x0,0x0,0x0, + 0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86,0x41,0x90,0x0,0x0,0x0, + 0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66,0x23,0x90,0x0,0x0,0x0, + 0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46,0x5,0x90,0x0,0x0,0x0, + 0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25,0xe7,0x90,0x0,0x0,0x0, + 0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5,0xc9,0x90,0x0,0x0,0x0, + 0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee,0xe6,0x10,0x0,0x0,0x0, + 0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce,0xc8,0x10,0x0,0x0,0x0, + 0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae,0xaa,0x10,0x0,0x0,0x0, + 0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c,0x10,0x0,0x0,0x0, + 0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e,0x10,0x0,0x0,0x0, + 0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57,0x8a,0x90,0x0,0x0,0x0, + 0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37,0x6c,0x90,0x0,0x0,0x0, + 0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17,0x4e,0x90,0x0,0x0,0x0, + 0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7,0x30,0x90,0x0,0x0,0x0, + 0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7,0x12,0x90,0x0,0x0,0x0, + 0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4,0x90,0x0,0x0,0x0, + 0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0,0x11,0x10,0x0,0x0,0x0, + 0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3,0x10,0x0,0x0,0x0, + 0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f,0xd5,0x10,0x0,0x0,0x0, + 0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f,0xb7,0x10,0x0,0x0,0x0, + 0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f,0x99,0x10,0x0,0x0,0x0, + 0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8,0xb5,0x90,0x0,0x0,0x0, + 0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8,0x97,0x90,0x0,0x0,0x0, + 0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8,0x79,0x90,0x0,0x0,0x0, + 0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b,0x90,0x0,0x0,0x0, + 0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88,0x3d,0x90,0x0,0x0,0x0, + 0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68,0x1f,0x90,0x0,0x0,0x0, + 0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51,0x3c,0x10,0x0,0x0,0x0, + 0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31,0x1e,0x10,0x0,0x0,0x0, + 0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11,0x0,0x10,0x0,0x0,0x0, + 0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0,0xe2,0x10,0x0,0x0,0x0, + 0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0,0xc4,0x10,0x0,0x0,0x0, + 0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6,0x10,0x0,0x0,0x0, + 0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99,0xc2,0x90,0x0,0x0,0x0, + 0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79,0xa4,0x90,0x0,0x0,0x0, + 0x0,0x7f,0x8e,0x7f,0x90,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x3, + 0x2,0x3,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x6,0x4,0x5,0x4,0x6, + 0x4,0x5,0x4,0x6,0x4,0x5,0x4,0x6,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x8,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, + 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, + 0x9,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa, + 0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa, + 0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa, + 0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa, + 0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa, + 0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xb,0xff,0xff,0xe7,0xf0, + 0x0,0x0,0xff,0xff,0xe5,0x28,0x0,0x4,0xff,0xff,0xf1,0xf0,0x1,0x8,0xff,0xff, + 0xe3,0xe0,0x0,0xc,0xff,0xff,0xf1,0xf0,0x1,0x8,0xff,0xff,0xe3,0xe0,0x0,0xc, + 0x0,0x0,0x0,0x0,0x1,0x10,0xff,0xff,0xf1,0xf0,0x0,0x8,0xff,0xff,0xf1,0xf0, + 0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x0,0x1,0x10,0xff,0xff, + 0xf1,0xf0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x48,0x4d,0x54,0x0,0x2d,0x30,0x31,0x0, + 0x2d,0x30,0x32,0x0,0x2b,0x30,0x30,0x0,0x57,0x45,0x54,0x0,0x0,0x0,0x0,0x0, + 0x1,0x1,0x1,0x1,0x0,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x1,0x1,0xa,0x3c,0x2d,0x30,0x31,0x3e,0x31,0x3c,0x2b,0x30,0x30,0x3e, + 0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2f,0x30,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e, + 0x30,0x2f,0x31,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Atlantic/Faroe + 0x0,0x0,0x7,0x25, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x74,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0x8b, + 0x6d,0xa4,0x58,0x15,0x23,0xeb,0x90,0x16,0x13,0xdc,0x90,0x17,0x3,0xcd,0x90,0x17, 0xf3,0xbe,0x90,0x18,0xe3,0xaf,0x90,0x19,0xd3,0xa0,0x90,0x1a,0xc3,0x91,0x90,0x1b, 0xbc,0xbd,0x10,0x1c,0xac,0xae,0x10,0x1d,0x9c,0x9f,0x10,0x1e,0x8c,0x90,0x10,0x1f, 0x7c,0x81,0x10,0x20,0x6c,0x72,0x10,0x21,0x5c,0x63,0x10,0x22,0x4c,0x54,0x10,0x23, @@ -15266,55 +12795,21 @@ static const unsigned char qt_resource_data[] = { 0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74,0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76, 0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79, 0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d, - 0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x3,0x4,0x1,0x3,0x4,0x1,0x3,0x1,0x2, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x2,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x2,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x0,0x0,0xb,0xb4,0x0,0x0,0x0,0x0,0x1c, - 0x20,0x1,0x4,0x0,0x0,0xe,0x10,0x0,0x9,0x0,0x0,0xe,0x10,0x0,0x9,0x0, - 0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe,0x10,0x0, - 0x9,0x52,0x4d,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x43,0x45,0x54,0x0,0x0,0x0, - 0x0,0x1,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x54,0x5a,0x69,0x66, + 0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x0,0x1,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0xff, + 0xff,0xf9,0xa8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0xe,0x10,0x1, + 0x8,0x0,0x0,0x0,0x0,0x0,0x4,0x4c,0x4d,0x54,0x0,0x57,0x45,0x54,0x0,0x57, + 0x45,0x53,0x54,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x1,0x1,0x54,0x5a,0x69,0x66, 0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xae, - 0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x11,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0xff,0xff,0xff,0xff,0x3d,0xbe,0x1e,0xcc,0xff,0xff,0xff,0xff,0x70,0xbc,0x81,0x70, - 0xff,0xff,0xff,0xff,0x9b,0x38,0xf8,0x70,0xff,0xff,0xff,0xff,0x9b,0xd5,0xcc,0xe0, - 0xff,0xff,0xff,0xff,0x9c,0xc5,0xcb,0xf0,0xff,0xff,0xff,0xff,0x9d,0xb7,0x0,0x60, - 0xff,0xff,0xff,0xff,0x9e,0x89,0xfe,0x70,0xff,0xff,0xff,0xff,0x9f,0xa0,0x1c,0xe0, - 0xff,0xff,0xff,0xff,0xa0,0x60,0xa5,0xf0,0xff,0xff,0xff,0xff,0xa1,0x7e,0xad,0x60, - 0xff,0xff,0xff,0xff,0xa2,0x5c,0x37,0x70,0xff,0xff,0xff,0xff,0xa3,0x4c,0x1a,0x60, - 0xff,0xff,0xff,0xff,0xc8,0x6c,0x35,0xf0,0xff,0xff,0xff,0xff,0xcc,0xe7,0x4b,0x10, - 0xff,0xff,0xff,0xff,0xcd,0xa9,0x17,0x90,0xff,0xff,0xff,0xff,0xce,0x82,0x74,0xe0, - 0xff,0xff,0xff,0xff,0xce,0xa2,0x43,0x10,0xff,0xff,0xff,0xff,0xcf,0x92,0x34,0x10, - 0xff,0xff,0xff,0xff,0xcf,0xe3,0xc6,0xe0,0xff,0xff,0xff,0xff,0xd0,0x6e,0x5e,0x90, - 0xff,0xff,0xff,0xff,0xd1,0x72,0x16,0x10,0xff,0xff,0xff,0xff,0xd2,0x4c,0xd2,0xf0, - 0xff,0xff,0xff,0xff,0xd3,0x3e,0x31,0x90,0xff,0xff,0xff,0xff,0xd4,0x49,0xd2,0x10, - 0xff,0xff,0xff,0xff,0xd5,0x1d,0xf7,0x70,0xff,0xff,0xff,0xff,0xd6,0x29,0x97,0xf0, - 0xff,0xff,0xff,0xff,0xd6,0xeb,0x80,0x90,0xff,0xff,0xff,0xff,0xd8,0x9,0x96,0x10, - 0xff,0xff,0xff,0xff,0xf9,0x33,0xb5,0xf0,0xff,0xff,0xff,0xff,0xf9,0xd9,0xc4,0xe0, - 0xff,0xff,0xff,0xff,0xfb,0x1c,0xd2,0x70,0xff,0xff,0xff,0xff,0xfb,0xb9,0xb4,0xf0, - 0xff,0xff,0xff,0xff,0xfc,0xfc,0xb4,0x70,0xff,0xff,0xff,0xff,0xfd,0x99,0x96,0xf0, - 0xff,0xff,0xff,0xff,0xfe,0xe5,0xd0,0xf0,0xff,0xff,0xff,0xff,0xff,0x82,0xb3,0x70, - 0x0,0x0,0x0,0x0,0x0,0xc5,0xb2,0xf0,0x0,0x0,0x0,0x0,0x1,0x62,0x95,0x70, - 0x0,0x0,0x0,0x0,0x2,0x9c,0x5a,0x70,0x0,0x0,0x0,0x0,0x3,0x42,0x77,0x70, - 0x0,0x0,0x0,0x0,0x4,0x85,0x76,0xf0,0x0,0x0,0x0,0x0,0x5,0x2b,0x93,0xf0, - 0x0,0x0,0x0,0x0,0x6,0x6e,0x93,0x70,0x0,0x0,0x0,0x0,0x7,0xb,0x75,0xf0, - 0x0,0x0,0x0,0x0,0x8,0x45,0x3a,0xf0,0x0,0x0,0x0,0x0,0x8,0xeb,0x57,0xf0, - 0x0,0x0,0x0,0x0,0xa,0x2e,0x57,0x70,0x0,0x0,0x0,0x0,0xa,0xcb,0x39,0xf0, - 0x0,0x0,0x0,0x0,0xc,0xe,0x39,0x70,0x0,0x0,0x0,0x0,0xc,0xab,0x1b,0xf0, - 0x0,0x0,0x0,0x0,0xd,0xe4,0xe0,0xf0,0x0,0x0,0x0,0x0,0xe,0x8a,0xfd,0xf0, - 0x0,0x0,0x0,0x0,0xf,0xcd,0xfd,0x70,0x0,0x0,0x0,0x0,0x10,0x74,0x1a,0x70, - 0x0,0x0,0x0,0x0,0x11,0xad,0xdf,0x70,0x0,0x0,0x0,0x0,0x12,0x53,0xfc,0x70, - 0x0,0x0,0x0,0x0,0x12,0xce,0x97,0xf0,0x0,0x0,0x0,0x0,0x13,0x4d,0x44,0x10, - 0x0,0x0,0x0,0x0,0x14,0x33,0xfa,0x90,0x0,0x0,0x0,0x0,0x15,0x23,0xeb,0x90, + 0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x74, + 0x0,0x0,0x0,0x4,0x0,0x0,0x0,0xd,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0x8b,0x6d,0xa4,0x58,0x0,0x0,0x0,0x0,0x15,0x23,0xeb,0x90, 0x0,0x0,0x0,0x0,0x16,0x13,0xdc,0x90,0x0,0x0,0x0,0x0,0x17,0x3,0xcd,0x90, 0x0,0x0,0x0,0x0,0x17,0xf3,0xbe,0x90,0x0,0x0,0x0,0x0,0x18,0xe3,0xaf,0x90, 0x0,0x0,0x0,0x0,0x19,0xd3,0xa0,0x90,0x0,0x0,0x0,0x0,0x1a,0xc3,0x91,0x90, @@ -15371,68 +12866,40 @@ static const unsigned char qt_resource_data[] = { 0x0,0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6,0x10, 0x0,0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99,0xc2,0x90, 0x0,0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79,0xa4,0x90, - 0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x1,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x4,0x5,0x2,0x4,0x5,0x2,0x4,0x2,0x3,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x3,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x3,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x0,0x0,0xb,0xb4,0x0,0x0,0x0,0x0,0xb,0xb4, - 0x0,0x4,0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0xe,0x10,0x0,0xd,0x0,0x0, - 0xe,0x10,0x0,0xd,0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0x1c,0x20,0x1,0x8, - 0x0,0x0,0xe,0x10,0x0,0xd,0x4c,0x4d,0x54,0x0,0x52,0x4d,0x54,0x0,0x43,0x45, - 0x53,0x54,0x0,0x43,0x45,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x0, - 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0xa,0x43,0x45,0x54,0x2d,0x31,0x43,0x45,0x53, - 0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30, - 0x2f,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Dublin - 0x0,0x0,0xd,0xe7, + 0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x1,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0xff,0xff,0xf9,0xa8, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0xe,0x10,0x1,0x8,0x0,0x0, + 0x0,0x0,0x0,0x4,0x4c,0x4d,0x54,0x0,0x57,0x45,0x54,0x0,0x57,0x45,0x53,0x54, + 0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x1,0x1,0xa,0x57,0x45,0x54,0x30,0x57,0x45, + 0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2f,0x31,0x2c,0x4d,0x31,0x30,0x2e, + 0x35,0x2e,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Atlantic/Jan_Mayen + 0x0,0x0,0x8,0xcb, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xe6,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0x9b, - 0x26,0xb3,0x91,0x9b,0xd6,0xb,0x11,0x9c,0xcf,0x30,0xa0,0x9d,0xa4,0xc3,0xa0,0x9e, - 0x9c,0x9d,0xa0,0x9f,0x97,0x1a,0xa0,0xa0,0x85,0xba,0x20,0xa1,0x76,0xfc,0xa0,0xa2, - 0x65,0x9c,0x20,0xa3,0x7b,0xc8,0xa0,0xa4,0x4e,0xb8,0xa0,0xa5,0x3f,0xfb,0x20,0xa5, - 0x94,0x3f,0x0,0xa6,0x25,0x60,0x20,0xa7,0x27,0xc6,0x20,0xa8,0x2a,0x2c,0x20,0xa8, - 0xeb,0xf8,0xa0,0xaa,0x0,0xd3,0xa0,0xaa,0xd5,0x15,0x20,0xab,0xe9,0xf0,0x20,0xac, - 0xc7,0x6c,0x20,0xad,0xc9,0xd2,0x20,0xae,0xa7,0x4e,0x20,0xaf,0xa0,0x79,0xa0,0xb0, - 0x87,0x30,0x20,0xb1,0x92,0xd0,0xa0,0xb2,0x70,0x4c,0xa0,0xb3,0x72,0xb2,0xa0,0xb4, - 0x50,0x2e,0xa0,0xb5,0x49,0x5a,0x20,0xb6,0x30,0x10,0xa0,0xb7,0x32,0x76,0xa0,0xb8, - 0xf,0xf2,0xa0,0xb9,0x12,0x58,0xa0,0xb9,0xef,0xd4,0xa0,0xba,0xe9,0x0,0x20,0xbb, - 0xd8,0xf1,0x20,0xbc,0xdb,0x57,0x20,0xbd,0xb8,0xd3,0x20,0xbe,0xb1,0xfe,0xa0,0xbf, - 0x98,0xb5,0x20,0xc0,0x9b,0x1b,0x20,0xc1,0x78,0x97,0x20,0xc2,0x7a,0xfd,0x20,0xc3, - 0x58,0x79,0x20,0xc4,0x51,0xa4,0xa0,0xc5,0x38,0x5b,0x20,0xc6,0x3a,0xc1,0x20,0xc7, - 0x58,0xd6,0xa0,0xc7,0xda,0x9,0xa0,0xd4,0x49,0xd2,0x10,0xd5,0x1e,0x21,0xa0,0xd6, - 0x4e,0x9e,0x10,0xd7,0x2c,0x28,0x20,0xd8,0x2e,0x8e,0x20,0xd8,0xf9,0x95,0x20,0xda, - 0xe,0x70,0x20,0xda,0xeb,0xec,0x20,0xdb,0xe5,0x17,0xa0,0xdc,0xcb,0xce,0x20,0xdd, - 0xc4,0xf9,0xa0,0xde,0xb4,0xea,0xa0,0xdf,0xae,0x16,0x20,0xe0,0x94,0xcc,0xa0,0xe1, - 0x72,0x48,0xa0,0xe2,0x6b,0x74,0x20,0xe3,0x52,0x2a,0xa0,0xe4,0x54,0x90,0xa0,0xe5, - 0x32,0xc,0xa0,0xe6,0x3d,0xad,0x20,0xe7,0x1b,0x29,0x20,0xe8,0x14,0x54,0xa0,0xe8, - 0xfb,0xb,0x20,0xe9,0xfd,0x71,0x20,0xea,0xda,0xed,0x20,0xeb,0xdd,0x53,0x20,0xec, - 0xba,0xcf,0x20,0xed,0xb3,0xfa,0xa0,0xee,0x9a,0xb1,0x20,0xef,0x81,0x67,0xa0,0xf0, - 0x9f,0x7d,0x20,0xf1,0x61,0x49,0xa0,0xf2,0x7f,0x5f,0x20,0xf3,0x4a,0x66,0x20,0xf4, - 0x5f,0x41,0x20,0xf5,0x21,0xd,0xa0,0xf6,0x3f,0x23,0x20,0xf7,0x0,0xef,0xa0,0xf8, - 0x1f,0x5,0x20,0xf8,0xe0,0xd1,0xa0,0xf9,0xfe,0xe7,0x20,0xfa,0xc0,0xb3,0xa0,0xfb, - 0xe8,0x3,0xa0,0xfc,0x7b,0xab,0xa0,0xfd,0xc7,0xbb,0x70,0x3,0x70,0xc6,0x20,0x4, - 0x29,0x58,0x20,0x5,0x50,0xa8,0x20,0x6,0x9,0x3a,0x20,0x7,0x30,0x8a,0x20,0x7, - 0xe9,0x1c,0x20,0x9,0x10,0x6c,0x20,0x9,0xc8,0xfe,0x20,0xa,0xf0,0x4e,0x20,0xb, - 0xb2,0x1a,0xa0,0xc,0xd0,0x30,0x20,0xd,0x91,0xfc,0xa0,0xe,0xb0,0x12,0x20,0xf, - 0x71,0xde,0xa0,0x10,0x99,0x2e,0xa0,0x11,0x51,0xc0,0xa0,0x12,0x79,0x10,0xa0,0x13, - 0x31,0xa2,0xa0,0x14,0x58,0xf2,0xa0,0x15,0x23,0xeb,0x90,0x16,0x38,0xc6,0x90,0x17, - 0x3,0xcd,0x90,0x18,0x18,0xa8,0x90,0x18,0xe3,0xaf,0x90,0x19,0xf8,0x8a,0x90,0x1a, - 0xc3,0x91,0x90,0x1b,0xe1,0xa7,0x10,0x1c,0xac,0xae,0x10,0x1d,0xc1,0x89,0x10,0x1e, - 0x8c,0x90,0x10,0x1f,0xa1,0x6b,0x10,0x20,0x6c,0x72,0x10,0x21,0x81,0x4d,0x10,0x22, - 0x4c,0x54,0x10,0x23,0x61,0x2f,0x10,0x24,0x2c,0x36,0x10,0x25,0x4a,0x4b,0x90,0x26, - 0xc,0x18,0x10,0x27,0x2a,0x2d,0x90,0x27,0xf5,0x34,0x90,0x29,0xa,0xf,0x90,0x29, - 0xd5,0x16,0x90,0x2a,0xe9,0xf1,0x90,0x2b,0xb4,0xf8,0x90,0x2c,0xc9,0xd3,0x90,0x2d, - 0x94,0xda,0x90,0x2e,0xa9,0xb5,0x90,0x2f,0x74,0xbc,0x90,0x30,0x89,0x97,0x90,0x30, - 0xe7,0x24,0x0,0x31,0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x8e,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0x9b, + 0x27,0xe3,0x0,0x9b,0xd4,0x7b,0x60,0xc8,0xb7,0x4d,0x60,0xcc,0xe7,0x4b,0x10,0xcd, + 0xa9,0x17,0x90,0xce,0xa2,0x43,0x10,0xcf,0x92,0x34,0x10,0xd0,0x82,0x25,0x10,0xd1, + 0x72,0x16,0x10,0xd2,0x62,0x7,0x10,0xeb,0xaf,0x20,0x90,0xec,0xa8,0x4c,0x10,0xed, + 0x98,0x3d,0x10,0xee,0x88,0x2e,0x10,0xef,0x78,0x1f,0x10,0xf0,0x68,0x10,0x10,0xf1, + 0x58,0x1,0x10,0xf2,0x47,0xf2,0x10,0xf3,0x37,0xe3,0x10,0xf4,0x27,0xd4,0x10,0xf5, + 0x17,0xc5,0x10,0xf6,0x10,0xf0,0x90,0xf7,0x2f,0x6,0x10,0xf7,0xf0,0xd2,0x90,0x12, + 0xce,0x97,0xf0,0x13,0x4d,0x44,0x10,0x14,0x33,0xfa,0x90,0x15,0x23,0xeb,0x90,0x16, + 0x13,0xdc,0x90,0x17,0x3,0xcd,0x90,0x17,0xf3,0xbe,0x90,0x18,0xe3,0xaf,0x90,0x19, + 0xd3,0xa0,0x90,0x1a,0xc3,0x91,0x90,0x1b,0xbc,0xbd,0x10,0x1c,0xac,0xae,0x10,0x1d, + 0x9c,0x9f,0x10,0x1e,0x8c,0x90,0x10,0x1f,0x7c,0x81,0x10,0x20,0x6c,0x72,0x10,0x21, + 0x5c,0x63,0x10,0x22,0x4c,0x54,0x10,0x23,0x3c,0x45,0x10,0x24,0x2c,0x36,0x10,0x25, + 0x1c,0x27,0x10,0x26,0xc,0x18,0x10,0x27,0x5,0x43,0x90,0x27,0xf5,0x34,0x90,0x28, + 0xe5,0x25,0x90,0x29,0xd5,0x16,0x90,0x2a,0xc5,0x7,0x90,0x2b,0xb4,0xf8,0x90,0x2c, + 0xa4,0xe9,0x90,0x2d,0x94,0xda,0x90,0x2e,0x84,0xcb,0x90,0x2f,0x74,0xbc,0x90,0x30, + 0x64,0xad,0x90,0x31,0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34, 0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38, 0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b, 0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f, @@ -15453,318 +12920,178 @@ static const unsigned char qt_resource_data[] = { 0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78, 0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b, 0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f, - 0x8e,0x7f,0x90,0x1,0x2,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x6,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x7,0x6,0x7,0x6,0x7,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x8,0xa,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa, - 0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa, - 0x9,0xa,0x9,0xa,0x6,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9, - 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9, - 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9, - 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9, - 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9, - 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0xff,0xff,0xfa,0x24,0x0,0x0,0xff, - 0xff,0xfa,0xf,0x0,0x4,0x0,0x0,0x8,0x1f,0x1,0x8,0x0,0x0,0xe,0x10,0x1, - 0xc,0x0,0x0,0x0,0x0,0x0,0x10,0x0,0x0,0xe,0x10,0x1,0x8,0x0,0x0,0x0, - 0x0,0x0,0x10,0x0,0x0,0xe,0x10,0x1,0x8,0x0,0x0,0xe,0x10,0x0,0x8,0x0, - 0x0,0xe,0x10,0x1,0x8,0x0,0x0,0x0,0x0,0x0,0x10,0x4c,0x4d,0x54,0x0,0x44, - 0x4d,0x54,0x0,0x49,0x53,0x54,0x0,0x42,0x53,0x54,0x0,0x47,0x4d,0x54,0x0,0x0, - 0x0,0x0,0x1,0x1,0x1,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x1,0x1,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0, - 0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe7,0x0,0x0,0x0,0xb,0x0,0x0,0x0, - 0x14,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x57,0xd1,0xa, - 0xdc,0xff,0xff,0xff,0xff,0x9b,0x26,0xb3,0x91,0xff,0xff,0xff,0xff,0x9b,0xd6,0xb, - 0x11,0xff,0xff,0xff,0xff,0x9c,0xcf,0x30,0xa0,0xff,0xff,0xff,0xff,0x9d,0xa4,0xc3, - 0xa0,0xff,0xff,0xff,0xff,0x9e,0x9c,0x9d,0xa0,0xff,0xff,0xff,0xff,0x9f,0x97,0x1a, - 0xa0,0xff,0xff,0xff,0xff,0xa0,0x85,0xba,0x20,0xff,0xff,0xff,0xff,0xa1,0x76,0xfc, - 0xa0,0xff,0xff,0xff,0xff,0xa2,0x65,0x9c,0x20,0xff,0xff,0xff,0xff,0xa3,0x7b,0xc8, - 0xa0,0xff,0xff,0xff,0xff,0xa4,0x4e,0xb8,0xa0,0xff,0xff,0xff,0xff,0xa5,0x3f,0xfb, - 0x20,0xff,0xff,0xff,0xff,0xa5,0x94,0x3f,0x0,0xff,0xff,0xff,0xff,0xa6,0x25,0x60, - 0x20,0xff,0xff,0xff,0xff,0xa7,0x27,0xc6,0x20,0xff,0xff,0xff,0xff,0xa8,0x2a,0x2c, - 0x20,0xff,0xff,0xff,0xff,0xa8,0xeb,0xf8,0xa0,0xff,0xff,0xff,0xff,0xaa,0x0,0xd3, - 0xa0,0xff,0xff,0xff,0xff,0xaa,0xd5,0x15,0x20,0xff,0xff,0xff,0xff,0xab,0xe9,0xf0, - 0x20,0xff,0xff,0xff,0xff,0xac,0xc7,0x6c,0x20,0xff,0xff,0xff,0xff,0xad,0xc9,0xd2, - 0x20,0xff,0xff,0xff,0xff,0xae,0xa7,0x4e,0x20,0xff,0xff,0xff,0xff,0xaf,0xa0,0x79, - 0xa0,0xff,0xff,0xff,0xff,0xb0,0x87,0x30,0x20,0xff,0xff,0xff,0xff,0xb1,0x92,0xd0, - 0xa0,0xff,0xff,0xff,0xff,0xb2,0x70,0x4c,0xa0,0xff,0xff,0xff,0xff,0xb3,0x72,0xb2, - 0xa0,0xff,0xff,0xff,0xff,0xb4,0x50,0x2e,0xa0,0xff,0xff,0xff,0xff,0xb5,0x49,0x5a, - 0x20,0xff,0xff,0xff,0xff,0xb6,0x30,0x10,0xa0,0xff,0xff,0xff,0xff,0xb7,0x32,0x76, - 0xa0,0xff,0xff,0xff,0xff,0xb8,0xf,0xf2,0xa0,0xff,0xff,0xff,0xff,0xb9,0x12,0x58, - 0xa0,0xff,0xff,0xff,0xff,0xb9,0xef,0xd4,0xa0,0xff,0xff,0xff,0xff,0xba,0xe9,0x0, - 0x20,0xff,0xff,0xff,0xff,0xbb,0xd8,0xf1,0x20,0xff,0xff,0xff,0xff,0xbc,0xdb,0x57, - 0x20,0xff,0xff,0xff,0xff,0xbd,0xb8,0xd3,0x20,0xff,0xff,0xff,0xff,0xbe,0xb1,0xfe, - 0xa0,0xff,0xff,0xff,0xff,0xbf,0x98,0xb5,0x20,0xff,0xff,0xff,0xff,0xc0,0x9b,0x1b, - 0x20,0xff,0xff,0xff,0xff,0xc1,0x78,0x97,0x20,0xff,0xff,0xff,0xff,0xc2,0x7a,0xfd, - 0x20,0xff,0xff,0xff,0xff,0xc3,0x58,0x79,0x20,0xff,0xff,0xff,0xff,0xc4,0x51,0xa4, - 0xa0,0xff,0xff,0xff,0xff,0xc5,0x38,0x5b,0x20,0xff,0xff,0xff,0xff,0xc6,0x3a,0xc1, - 0x20,0xff,0xff,0xff,0xff,0xc7,0x58,0xd6,0xa0,0xff,0xff,0xff,0xff,0xc7,0xda,0x9, - 0xa0,0xff,0xff,0xff,0xff,0xd4,0x49,0xd2,0x10,0xff,0xff,0xff,0xff,0xd5,0x1e,0x21, - 0xa0,0xff,0xff,0xff,0xff,0xd6,0x4e,0x9e,0x10,0xff,0xff,0xff,0xff,0xd7,0x2c,0x28, - 0x20,0xff,0xff,0xff,0xff,0xd8,0x2e,0x8e,0x20,0xff,0xff,0xff,0xff,0xd8,0xf9,0x95, - 0x20,0xff,0xff,0xff,0xff,0xda,0xe,0x70,0x20,0xff,0xff,0xff,0xff,0xda,0xeb,0xec, - 0x20,0xff,0xff,0xff,0xff,0xdb,0xe5,0x17,0xa0,0xff,0xff,0xff,0xff,0xdc,0xcb,0xce, - 0x20,0xff,0xff,0xff,0xff,0xdd,0xc4,0xf9,0xa0,0xff,0xff,0xff,0xff,0xde,0xb4,0xea, - 0xa0,0xff,0xff,0xff,0xff,0xdf,0xae,0x16,0x20,0xff,0xff,0xff,0xff,0xe0,0x94,0xcc, - 0xa0,0xff,0xff,0xff,0xff,0xe1,0x72,0x48,0xa0,0xff,0xff,0xff,0xff,0xe2,0x6b,0x74, - 0x20,0xff,0xff,0xff,0xff,0xe3,0x52,0x2a,0xa0,0xff,0xff,0xff,0xff,0xe4,0x54,0x90, - 0xa0,0xff,0xff,0xff,0xff,0xe5,0x32,0xc,0xa0,0xff,0xff,0xff,0xff,0xe6,0x3d,0xad, - 0x20,0xff,0xff,0xff,0xff,0xe7,0x1b,0x29,0x20,0xff,0xff,0xff,0xff,0xe8,0x14,0x54, - 0xa0,0xff,0xff,0xff,0xff,0xe8,0xfb,0xb,0x20,0xff,0xff,0xff,0xff,0xe9,0xfd,0x71, - 0x20,0xff,0xff,0xff,0xff,0xea,0xda,0xed,0x20,0xff,0xff,0xff,0xff,0xeb,0xdd,0x53, - 0x20,0xff,0xff,0xff,0xff,0xec,0xba,0xcf,0x20,0xff,0xff,0xff,0xff,0xed,0xb3,0xfa, - 0xa0,0xff,0xff,0xff,0xff,0xee,0x9a,0xb1,0x20,0xff,0xff,0xff,0xff,0xef,0x81,0x67, - 0xa0,0xff,0xff,0xff,0xff,0xf0,0x9f,0x7d,0x20,0xff,0xff,0xff,0xff,0xf1,0x61,0x49, - 0xa0,0xff,0xff,0xff,0xff,0xf2,0x7f,0x5f,0x20,0xff,0xff,0xff,0xff,0xf3,0x4a,0x66, - 0x20,0xff,0xff,0xff,0xff,0xf4,0x5f,0x41,0x20,0xff,0xff,0xff,0xff,0xf5,0x21,0xd, - 0xa0,0xff,0xff,0xff,0xff,0xf6,0x3f,0x23,0x20,0xff,0xff,0xff,0xff,0xf7,0x0,0xef, - 0xa0,0xff,0xff,0xff,0xff,0xf8,0x1f,0x5,0x20,0xff,0xff,0xff,0xff,0xf8,0xe0,0xd1, - 0xa0,0xff,0xff,0xff,0xff,0xf9,0xfe,0xe7,0x20,0xff,0xff,0xff,0xff,0xfa,0xc0,0xb3, - 0xa0,0xff,0xff,0xff,0xff,0xfb,0xe8,0x3,0xa0,0xff,0xff,0xff,0xff,0xfc,0x7b,0xab, - 0xa0,0xff,0xff,0xff,0xff,0xfd,0xc7,0xbb,0x70,0x0,0x0,0x0,0x0,0x3,0x70,0xc6, - 0x20,0x0,0x0,0x0,0x0,0x4,0x29,0x58,0x20,0x0,0x0,0x0,0x0,0x5,0x50,0xa8, - 0x20,0x0,0x0,0x0,0x0,0x6,0x9,0x3a,0x20,0x0,0x0,0x0,0x0,0x7,0x30,0x8a, - 0x20,0x0,0x0,0x0,0x0,0x7,0xe9,0x1c,0x20,0x0,0x0,0x0,0x0,0x9,0x10,0x6c, - 0x20,0x0,0x0,0x0,0x0,0x9,0xc8,0xfe,0x20,0x0,0x0,0x0,0x0,0xa,0xf0,0x4e, - 0x20,0x0,0x0,0x0,0x0,0xb,0xb2,0x1a,0xa0,0x0,0x0,0x0,0x0,0xc,0xd0,0x30, - 0x20,0x0,0x0,0x0,0x0,0xd,0x91,0xfc,0xa0,0x0,0x0,0x0,0x0,0xe,0xb0,0x12, - 0x20,0x0,0x0,0x0,0x0,0xf,0x71,0xde,0xa0,0x0,0x0,0x0,0x0,0x10,0x99,0x2e, - 0xa0,0x0,0x0,0x0,0x0,0x11,0x51,0xc0,0xa0,0x0,0x0,0x0,0x0,0x12,0x79,0x10, - 0xa0,0x0,0x0,0x0,0x0,0x13,0x31,0xa2,0xa0,0x0,0x0,0x0,0x0,0x14,0x58,0xf2, - 0xa0,0x0,0x0,0x0,0x0,0x15,0x23,0xeb,0x90,0x0,0x0,0x0,0x0,0x16,0x38,0xc6, - 0x90,0x0,0x0,0x0,0x0,0x17,0x3,0xcd,0x90,0x0,0x0,0x0,0x0,0x18,0x18,0xa8, - 0x90,0x0,0x0,0x0,0x0,0x18,0xe3,0xaf,0x90,0x0,0x0,0x0,0x0,0x19,0xf8,0x8a, - 0x90,0x0,0x0,0x0,0x0,0x1a,0xc3,0x91,0x90,0x0,0x0,0x0,0x0,0x1b,0xe1,0xa7, - 0x10,0x0,0x0,0x0,0x0,0x1c,0xac,0xae,0x10,0x0,0x0,0x0,0x0,0x1d,0xc1,0x89, - 0x10,0x0,0x0,0x0,0x0,0x1e,0x8c,0x90,0x10,0x0,0x0,0x0,0x0,0x1f,0xa1,0x6b, - 0x10,0x0,0x0,0x0,0x0,0x20,0x6c,0x72,0x10,0x0,0x0,0x0,0x0,0x21,0x81,0x4d, - 0x10,0x0,0x0,0x0,0x0,0x22,0x4c,0x54,0x10,0x0,0x0,0x0,0x0,0x23,0x61,0x2f, - 0x10,0x0,0x0,0x0,0x0,0x24,0x2c,0x36,0x10,0x0,0x0,0x0,0x0,0x25,0x4a,0x4b, - 0x90,0x0,0x0,0x0,0x0,0x26,0xc,0x18,0x10,0x0,0x0,0x0,0x0,0x27,0x2a,0x2d, - 0x90,0x0,0x0,0x0,0x0,0x27,0xf5,0x34,0x90,0x0,0x0,0x0,0x0,0x29,0xa,0xf, - 0x90,0x0,0x0,0x0,0x0,0x29,0xd5,0x16,0x90,0x0,0x0,0x0,0x0,0x2a,0xe9,0xf1, - 0x90,0x0,0x0,0x0,0x0,0x2b,0xb4,0xf8,0x90,0x0,0x0,0x0,0x0,0x2c,0xc9,0xd3, - 0x90,0x0,0x0,0x0,0x0,0x2d,0x94,0xda,0x90,0x0,0x0,0x0,0x0,0x2e,0xa9,0xb5, - 0x90,0x0,0x0,0x0,0x0,0x2f,0x74,0xbc,0x90,0x0,0x0,0x0,0x0,0x30,0x89,0x97, - 0x90,0x0,0x0,0x0,0x0,0x30,0xe7,0x24,0x0,0x0,0x0,0x0,0x0,0x31,0x5d,0xd9, - 0x10,0x0,0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d,0xbb, - 0x10,0x0,0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d,0x9d, - 0x10,0x0,0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd,0x7f, - 0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd,0x61, - 0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd,0x43, - 0x10,0x0,0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f, - 0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86,0x41, - 0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66,0x23, - 0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46,0x5, - 0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25,0xe7, - 0x90,0x0,0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5,0xc9, - 0x90,0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee,0xe6, - 0x10,0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce,0xc8, - 0x10,0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae,0xaa, - 0x10,0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c, - 0x10,0x0,0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e, - 0x10,0x0,0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57,0x8a, - 0x90,0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37,0x6c, - 0x90,0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17,0x4e, - 0x90,0x0,0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7,0x30, - 0x90,0x0,0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7,0x12, - 0x90,0x0,0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4, - 0x90,0x0,0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0,0x11, - 0x10,0x0,0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3, - 0x10,0x0,0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f,0xd5, - 0x10,0x0,0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f,0xb7, - 0x10,0x0,0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f,0x99, - 0x10,0x0,0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8,0xb5, - 0x90,0x0,0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8,0x97, - 0x90,0x0,0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8,0x79, - 0x90,0x0,0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b, - 0x90,0x0,0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88,0x3d, - 0x90,0x0,0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68,0x1f, - 0x90,0x0,0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51,0x3c, - 0x10,0x0,0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31,0x1e, - 0x10,0x0,0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11,0x0, - 0x10,0x0,0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0,0xe2, - 0x10,0x0,0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0,0xc4, - 0x10,0x0,0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6, - 0x10,0x0,0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99,0xc2, - 0x90,0x0,0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79,0xa4, - 0x90,0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x1,0x2,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x6,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x7,0x6,0x7,0x6, - 0x7,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x8,0xa,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x9,0xa,0x9, - 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9, - 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x6,0x9,0xa,0x9,0xa, - 0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa, - 0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa, - 0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa, - 0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa, - 0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa, - 0xff,0xff,0xfa,0x24,0x0,0x0,0xff,0xff,0xfa,0xf,0x0,0x4,0x0,0x0,0x8,0x1f, - 0x1,0x8,0x0,0x0,0xe,0x10,0x1,0xc,0x0,0x0,0x0,0x0,0x0,0x10,0x0,0x0, - 0xe,0x10,0x1,0x8,0x0,0x0,0x0,0x0,0x0,0x10,0x0,0x0,0xe,0x10,0x1,0x8, - 0x0,0x0,0xe,0x10,0x0,0x8,0x0,0x0,0xe,0x10,0x1,0x8,0x0,0x0,0x0,0x0, - 0x0,0x10,0x4c,0x4d,0x54,0x0,0x44,0x4d,0x54,0x0,0x49,0x53,0x54,0x0,0x42,0x53, - 0x54,0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x0,0x0,0x0,0x1, - 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0xa,0x47,0x4d,0x54, - 0x30,0x49,0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2f,0x31,0x2c,0x4d,0x31, - 0x30,0x2e,0x35,0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Tallinn - 0x0,0x0,0x8,0x8b, + 0x8e,0x7f,0x90,0x2,0x1,0x2,0x1,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x2,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x0,0x0,0xa,0x14,0x0,0x0,0x0,0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe, + 0x10,0x0,0x9,0x0,0x0,0xe,0x10,0x0,0x9,0x0,0x0,0x1c,0x20,0x1,0x4,0x0, + 0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe,0x10,0x0,0x9,0x4c,0x4d,0x54,0x0,0x43, + 0x45,0x53,0x54,0x0,0x43,0x45,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x0, + 0x0,0x0,0x0,0x0,0x1,0x1,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0, + 0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0x0,0x0,0x0,0x7,0x0,0x0, + 0x0,0xd,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x72,0xee, + 0x24,0x6c,0xff,0xff,0xff,0xff,0x9b,0x27,0xe3,0x0,0xff,0xff,0xff,0xff,0x9b,0xd4, + 0x7b,0x60,0xff,0xff,0xff,0xff,0xc8,0xb7,0x4d,0x60,0xff,0xff,0xff,0xff,0xcc,0xe7, + 0x4b,0x10,0xff,0xff,0xff,0xff,0xcd,0xa9,0x17,0x90,0xff,0xff,0xff,0xff,0xce,0xa2, + 0x43,0x10,0xff,0xff,0xff,0xff,0xcf,0x92,0x34,0x10,0xff,0xff,0xff,0xff,0xd0,0x82, + 0x25,0x10,0xff,0xff,0xff,0xff,0xd1,0x72,0x16,0x10,0xff,0xff,0xff,0xff,0xd2,0x62, + 0x7,0x10,0xff,0xff,0xff,0xff,0xeb,0xaf,0x20,0x90,0xff,0xff,0xff,0xff,0xec,0xa8, + 0x4c,0x10,0xff,0xff,0xff,0xff,0xed,0x98,0x3d,0x10,0xff,0xff,0xff,0xff,0xee,0x88, + 0x2e,0x10,0xff,0xff,0xff,0xff,0xef,0x78,0x1f,0x10,0xff,0xff,0xff,0xff,0xf0,0x68, + 0x10,0x10,0xff,0xff,0xff,0xff,0xf1,0x58,0x1,0x10,0xff,0xff,0xff,0xff,0xf2,0x47, + 0xf2,0x10,0xff,0xff,0xff,0xff,0xf3,0x37,0xe3,0x10,0xff,0xff,0xff,0xff,0xf4,0x27, + 0xd4,0x10,0xff,0xff,0xff,0xff,0xf5,0x17,0xc5,0x10,0xff,0xff,0xff,0xff,0xf6,0x10, + 0xf0,0x90,0xff,0xff,0xff,0xff,0xf7,0x2f,0x6,0x10,0xff,0xff,0xff,0xff,0xf7,0xf0, + 0xd2,0x90,0x0,0x0,0x0,0x0,0x12,0xce,0x97,0xf0,0x0,0x0,0x0,0x0,0x13,0x4d, + 0x44,0x10,0x0,0x0,0x0,0x0,0x14,0x33,0xfa,0x90,0x0,0x0,0x0,0x0,0x15,0x23, + 0xeb,0x90,0x0,0x0,0x0,0x0,0x16,0x13,0xdc,0x90,0x0,0x0,0x0,0x0,0x17,0x3, + 0xcd,0x90,0x0,0x0,0x0,0x0,0x17,0xf3,0xbe,0x90,0x0,0x0,0x0,0x0,0x18,0xe3, + 0xaf,0x90,0x0,0x0,0x0,0x0,0x19,0xd3,0xa0,0x90,0x0,0x0,0x0,0x0,0x1a,0xc3, + 0x91,0x90,0x0,0x0,0x0,0x0,0x1b,0xbc,0xbd,0x10,0x0,0x0,0x0,0x0,0x1c,0xac, + 0xae,0x10,0x0,0x0,0x0,0x0,0x1d,0x9c,0x9f,0x10,0x0,0x0,0x0,0x0,0x1e,0x8c, + 0x90,0x10,0x0,0x0,0x0,0x0,0x1f,0x7c,0x81,0x10,0x0,0x0,0x0,0x0,0x20,0x6c, + 0x72,0x10,0x0,0x0,0x0,0x0,0x21,0x5c,0x63,0x10,0x0,0x0,0x0,0x0,0x22,0x4c, + 0x54,0x10,0x0,0x0,0x0,0x0,0x23,0x3c,0x45,0x10,0x0,0x0,0x0,0x0,0x24,0x2c, + 0x36,0x10,0x0,0x0,0x0,0x0,0x25,0x1c,0x27,0x10,0x0,0x0,0x0,0x0,0x26,0xc, + 0x18,0x10,0x0,0x0,0x0,0x0,0x27,0x5,0x43,0x90,0x0,0x0,0x0,0x0,0x27,0xf5, + 0x34,0x90,0x0,0x0,0x0,0x0,0x28,0xe5,0x25,0x90,0x0,0x0,0x0,0x0,0x29,0xd5, + 0x16,0x90,0x0,0x0,0x0,0x0,0x2a,0xc5,0x7,0x90,0x0,0x0,0x0,0x0,0x2b,0xb4, + 0xf8,0x90,0x0,0x0,0x0,0x0,0x2c,0xa4,0xe9,0x90,0x0,0x0,0x0,0x0,0x2d,0x94, + 0xda,0x90,0x0,0x0,0x0,0x0,0x2e,0x84,0xcb,0x90,0x0,0x0,0x0,0x0,0x2f,0x74, + 0xbc,0x90,0x0,0x0,0x0,0x0,0x30,0x64,0xad,0x90,0x0,0x0,0x0,0x0,0x31,0x5d, + 0xd9,0x10,0x0,0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d, + 0xbb,0x10,0x0,0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d, + 0x9d,0x10,0x0,0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd, + 0x7f,0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd, + 0x61,0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd, + 0x43,0x10,0x0,0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6, + 0x5f,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86, + 0x41,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66, + 0x23,0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46, + 0x5,0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25, + 0xe7,0x90,0x0,0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5, + 0xc9,0x90,0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee, + 0xe6,0x10,0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce, + 0xc8,0x10,0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae, + 0xaa,0x10,0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e, + 0x8c,0x10,0x0,0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e, + 0x6e,0x10,0x0,0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57, + 0x8a,0x90,0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37, + 0x6c,0x90,0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17, + 0x4e,0x90,0x0,0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7, + 0x30,0x90,0x0,0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7, + 0x12,0x90,0x0,0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6, + 0xf4,0x90,0x0,0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0, + 0x11,0x10,0x0,0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f, + 0xf3,0x10,0x0,0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f, + 0xd5,0x10,0x0,0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f, + 0xb7,0x10,0x0,0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f, + 0x99,0x10,0x0,0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8, + 0xb5,0x90,0x0,0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8, + 0x97,0x90,0x0,0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8, + 0x79,0x90,0x0,0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8, + 0x5b,0x90,0x0,0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88, + 0x3d,0x90,0x0,0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68, + 0x1f,0x90,0x0,0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51, + 0x3c,0x10,0x0,0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31, + 0x1e,0x10,0x0,0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11, + 0x0,0x10,0x0,0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0, + 0xe2,0x10,0x0,0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0, + 0xc4,0x10,0x0,0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0, + 0xa6,0x10,0x0,0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99, + 0xc2,0x90,0x0,0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79, + 0xa4,0x90,0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x2,0x1,0x2,0x1,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x2,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x0,0x0,0xa,0x14,0x0,0x0,0x0, + 0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe,0x10,0x0,0x9,0x0,0x0,0xe,0x10,0x0, + 0x9,0x0,0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe, + 0x10,0x0,0x9,0x4c,0x4d,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x43,0x45,0x54,0x0, + 0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0xa,0x43, + 0x45,0x54,0x2d,0x31,0x43,0x45,0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2c, + 0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30,0x2f,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Atlantic/Cape_Verde + 0x0,0x0,0x1,0xc, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x7c,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x22,0x80,0x0,0x0,0x0,0x9e, - 0x59,0x2d,0xcc,0x9e,0xb9,0x90,0x90,0x9f,0x84,0x97,0x90,0xa1,0x0,0x2b,0x70,0xa4, - 0x73,0x6f,0x4c,0xc8,0xb0,0xb5,0xe0,0xca,0xc6,0x97,0x50,0xcc,0xe7,0x4b,0x10,0xcd, - 0xa9,0x17,0x90,0xce,0xa2,0x43,0x10,0xcf,0x92,0x34,0x10,0xd0,0x74,0xcb,0xe0,0x15, - 0x27,0xa7,0xd0,0x16,0x18,0xdc,0x40,0x17,0x8,0xdb,0x50,0x17,0xfa,0xf,0xc0,0x18, - 0xea,0xe,0xd0,0x19,0xdb,0x43,0x40,0x1a,0xcc,0x93,0xd0,0x1b,0xbc,0xa0,0xf0,0x1c, - 0xac,0x91,0xf0,0x1d,0x9c,0x82,0xf0,0x1e,0x8c,0x73,0xf0,0x1f,0x7c,0x64,0xf0,0x20, - 0x6c,0x55,0xf0,0x21,0x5c,0x46,0xf0,0x22,0x4c,0x37,0xf0,0x23,0x3c,0x28,0xf0,0x24, - 0x2c,0x19,0xf0,0x25,0x1c,0x19,0x0,0x26,0xc,0xa,0x0,0x27,0x5,0x35,0x80,0x27, - 0xf5,0x26,0x80,0x28,0xe5,0x17,0x80,0x29,0xd5,0x8,0x80,0x2a,0xc4,0xf9,0x80,0x2b, - 0xb4,0xea,0x80,0x2c,0xa4,0xdb,0x80,0x2d,0x94,0xcc,0x80,0x2e,0x84,0xbd,0x80,0x2f, - 0x74,0xae,0x80,0x30,0x64,0x9f,0x80,0x31,0x5d,0xcb,0x0,0x32,0x72,0xa6,0x0,0x33, - 0x3d,0xad,0x0,0x34,0x52,0x88,0x0,0x35,0x1d,0x8f,0x0,0x36,0x6,0xbe,0x50,0x36, - 0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x3c,0xa6,0x5f,0x90,0x3d, - 0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f,0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41, - 0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43,0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45, - 0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49, - 0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c, - 0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e,0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50, - 0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54, - 0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56,0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58, - 0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59,0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b, - 0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d,0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f, - 0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61,0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63, - 0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65,0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67, - 0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68,0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a, - 0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c,0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e, - 0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70,0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72, - 0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74,0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76, - 0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79, - 0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d, - 0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x1,0x4,0x2,0x3,0x1, - 0x5,0x6,0x7,0x3,0x2,0x3,0x2,0x6,0x8,0x6,0x8,0x6,0x8,0x6,0x8,0x9, - 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, - 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xf,0xd,0xe,0x5,0xe, - 0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe, - 0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe, - 0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe, - 0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe, - 0xd,0xe,0xd,0xe,0xd,0xe,0xd,0x0,0x0,0x17,0x34,0x0,0x0,0x0,0x0,0x17, - 0x34,0x0,0x4,0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0xe,0x10,0x0,0xd,0x0, - 0x0,0xe,0x10,0x0,0xd,0x0,0x0,0x1c,0x20,0x0,0x11,0x0,0x0,0x2a,0x30,0x0, - 0x15,0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0x38,0x40,0x1,0x19,0x0,0x0,0x2a, - 0x30,0x0,0x15,0x0,0x0,0x38,0x40,0x1,0x19,0x0,0x0,0x2a,0x30,0x1,0x1d,0x0, - 0x0,0x1c,0x20,0x0,0x11,0x0,0x0,0x1c,0x20,0x0,0x11,0x0,0x0,0x2a,0x30,0x1, - 0x1d,0x0,0x0,0x2a,0x30,0x1,0x1d,0x4c,0x4d,0x54,0x0,0x54,0x4d,0x54,0x0,0x43, - 0x45,0x53,0x54,0x0,0x43,0x45,0x54,0x0,0x45,0x45,0x54,0x0,0x4d,0x53,0x4b,0x0, - 0x4d,0x53,0x44,0x0,0x45,0x45,0x53,0x54,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0, - 0x0,0x0,0x1,0x1,0x1,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x10,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7d,0x0,0x0,0x0, - 0x10,0x0,0x0,0x0,0x22,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff, - 0xff,0x56,0xb6,0xcc,0xcc,0xff,0xff,0xff,0xff,0x9e,0x59,0x2d,0xcc,0xff,0xff,0xff, - 0xff,0x9e,0xb9,0x90,0x90,0xff,0xff,0xff,0xff,0x9f,0x84,0x97,0x90,0xff,0xff,0xff, - 0xff,0xa1,0x0,0x2b,0x70,0xff,0xff,0xff,0xff,0xa4,0x73,0x6f,0x4c,0xff,0xff,0xff, - 0xff,0xc8,0xb0,0xb5,0xe0,0xff,0xff,0xff,0xff,0xca,0xc6,0x97,0x50,0xff,0xff,0xff, - 0xff,0xcc,0xe7,0x4b,0x10,0xff,0xff,0xff,0xff,0xcd,0xa9,0x17,0x90,0xff,0xff,0xff, - 0xff,0xce,0xa2,0x43,0x10,0xff,0xff,0xff,0xff,0xcf,0x92,0x34,0x10,0xff,0xff,0xff, - 0xff,0xd0,0x74,0xcb,0xe0,0x0,0x0,0x0,0x0,0x15,0x27,0xa7,0xd0,0x0,0x0,0x0, - 0x0,0x16,0x18,0xdc,0x40,0x0,0x0,0x0,0x0,0x17,0x8,0xdb,0x50,0x0,0x0,0x0, - 0x0,0x17,0xfa,0xf,0xc0,0x0,0x0,0x0,0x0,0x18,0xea,0xe,0xd0,0x0,0x0,0x0, - 0x0,0x19,0xdb,0x43,0x40,0x0,0x0,0x0,0x0,0x1a,0xcc,0x93,0xd0,0x0,0x0,0x0, - 0x0,0x1b,0xbc,0xa0,0xf0,0x0,0x0,0x0,0x0,0x1c,0xac,0x91,0xf0,0x0,0x0,0x0, - 0x0,0x1d,0x9c,0x82,0xf0,0x0,0x0,0x0,0x0,0x1e,0x8c,0x73,0xf0,0x0,0x0,0x0, - 0x0,0x1f,0x7c,0x64,0xf0,0x0,0x0,0x0,0x0,0x20,0x6c,0x55,0xf0,0x0,0x0,0x0, - 0x0,0x21,0x5c,0x46,0xf0,0x0,0x0,0x0,0x0,0x22,0x4c,0x37,0xf0,0x0,0x0,0x0, - 0x0,0x23,0x3c,0x28,0xf0,0x0,0x0,0x0,0x0,0x24,0x2c,0x19,0xf0,0x0,0x0,0x0, - 0x0,0x25,0x1c,0x19,0x0,0x0,0x0,0x0,0x0,0x26,0xc,0xa,0x0,0x0,0x0,0x0, - 0x0,0x27,0x5,0x35,0x80,0x0,0x0,0x0,0x0,0x27,0xf5,0x26,0x80,0x0,0x0,0x0, - 0x0,0x28,0xe5,0x17,0x80,0x0,0x0,0x0,0x0,0x29,0xd5,0x8,0x80,0x0,0x0,0x0, - 0x0,0x2a,0xc4,0xf9,0x80,0x0,0x0,0x0,0x0,0x2b,0xb4,0xea,0x80,0x0,0x0,0x0, - 0x0,0x2c,0xa4,0xdb,0x80,0x0,0x0,0x0,0x0,0x2d,0x94,0xcc,0x80,0x0,0x0,0x0, - 0x0,0x2e,0x84,0xbd,0x80,0x0,0x0,0x0,0x0,0x2f,0x74,0xae,0x80,0x0,0x0,0x0, - 0x0,0x30,0x64,0x9f,0x80,0x0,0x0,0x0,0x0,0x31,0x5d,0xcb,0x0,0x0,0x0,0x0, - 0x0,0x32,0x72,0xa6,0x0,0x0,0x0,0x0,0x0,0x33,0x3d,0xad,0x0,0x0,0x0,0x0, - 0x0,0x34,0x52,0x88,0x0,0x0,0x0,0x0,0x0,0x35,0x1d,0x8f,0x0,0x0,0x0,0x0, - 0x0,0x36,0x6,0xbe,0x50,0x0,0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0, - 0x0,0x36,0xfd,0x7f,0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0, - 0x0,0x3c,0xa6,0x5f,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0, - 0x0,0x3e,0x86,0x41,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0, - 0x0,0x40,0x66,0x23,0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0, - 0x0,0x42,0x46,0x5,0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0, - 0x0,0x44,0x25,0xe7,0x90,0x0,0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0, - 0x0,0x46,0x5,0xc9,0x90,0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0, - 0x0,0x47,0xee,0xe6,0x10,0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0, - 0x0,0x49,0xce,0xc8,0x10,0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0, - 0x0,0x4b,0xae,0xaa,0x10,0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0, - 0x0,0x4d,0x8e,0x8c,0x10,0x0,0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0, - 0x0,0x4f,0x6e,0x6e,0x10,0x0,0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0, - 0x0,0x51,0x57,0x8a,0x90,0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0, - 0x0,0x53,0x37,0x6c,0x90,0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0, - 0x0,0x55,0x17,0x4e,0x90,0x0,0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0, - 0x0,0x56,0xf7,0x30,0x90,0x0,0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0, - 0x0,0x58,0xd7,0x12,0x90,0x0,0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0, - 0x0,0x5a,0xb6,0xf4,0x90,0x0,0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0, - 0x0,0x5c,0xa0,0x11,0x10,0x0,0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0, - 0x0,0x5e,0x7f,0xf3,0x10,0x0,0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0, - 0x0,0x60,0x5f,0xd5,0x10,0x0,0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0, - 0x0,0x62,0x3f,0xb7,0x10,0x0,0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0, - 0x0,0x64,0x1f,0x99,0x10,0x0,0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0, - 0x0,0x66,0x8,0xb5,0x90,0x0,0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0, - 0x0,0x67,0xe8,0x97,0x90,0x0,0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0, - 0x0,0x69,0xc8,0x79,0x90,0x0,0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0, - 0x0,0x6b,0xa8,0x5b,0x90,0x0,0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0, - 0x0,0x6d,0x88,0x3d,0x90,0x0,0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0, - 0x0,0x6f,0x68,0x1f,0x90,0x0,0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0, - 0x0,0x71,0x51,0x3c,0x10,0x0,0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0, - 0x0,0x73,0x31,0x1e,0x10,0x0,0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0, - 0x0,0x75,0x11,0x0,0x10,0x0,0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0, - 0x0,0x76,0xf0,0xe2,0x10,0x0,0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0, - 0x0,0x78,0xd0,0xc4,0x10,0x0,0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0, - 0x0,0x7a,0xb0,0xa6,0x10,0x0,0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0, - 0x0,0x7c,0x99,0xc2,0x90,0x0,0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0, - 0x0,0x7e,0x79,0xa4,0x90,0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x1,0x4, - 0x2,0x3,0x1,0x5,0x6,0x7,0x3,0x2,0x3,0x2,0x6,0x8,0x6,0x8,0x6,0x8, - 0x6,0x8,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xb,0xc,0xb,0xc,0xb, - 0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xf,0xd, - 0xe,0x5,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd, - 0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd, - 0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd, - 0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd, - 0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0x0,0x0,0x17,0x34,0x0,0x0, - 0x0,0x0,0x17,0x34,0x0,0x4,0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0xe,0x10, - 0x0,0xd,0x0,0x0,0xe,0x10,0x0,0xd,0x0,0x0,0x1c,0x20,0x0,0x11,0x0,0x0, - 0x2a,0x30,0x0,0x15,0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0x38,0x40,0x1,0x19, - 0x0,0x0,0x2a,0x30,0x0,0x15,0x0,0x0,0x38,0x40,0x1,0x19,0x0,0x0,0x2a,0x30, - 0x1,0x1d,0x0,0x0,0x1c,0x20,0x0,0x11,0x0,0x0,0x1c,0x20,0x0,0x11,0x0,0x0, - 0x2a,0x30,0x1,0x1d,0x0,0x0,0x2a,0x30,0x1,0x1d,0x4c,0x4d,0x54,0x0,0x54,0x4d, - 0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x43,0x45,0x54,0x0,0x45,0x45,0x54,0x0,0x4d, - 0x53,0x4b,0x0,0x4d,0x53,0x44,0x0,0x45,0x45,0x53,0x54,0x0,0x0,0x0,0x1,0x1, - 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0xa,0x45,0x45,0x54, - 0x2d,0x32,0x45,0x45,0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2f,0x33,0x2c, - 0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30,0x2f,0x34,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Sarajevo - 0x0,0x0,0x7,0xa5, + 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0x89, + 0x7f,0x51,0x8c,0xcc,0x95,0x9c,0x20,0xd2,0x74,0x7c,0x10,0xb,0x17,0xf7,0x40,0x7f, + 0xff,0xff,0xff,0x0,0x1,0x2,0x1,0x3,0x3,0xff,0xff,0xe9,0xf4,0x0,0x0,0xff, + 0xff,0xe3,0xe0,0x0,0x4,0xff,0xff,0xf1,0xf0,0x1,0x8,0xff,0xff,0xf1,0xf0,0x0, + 0x8,0x4c,0x4d,0x54,0x0,0x2d,0x30,0x32,0x0,0x2d,0x30,0x31,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0, + 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x0,0x0,0x0, + 0xc,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x89,0x7f,0x51, + 0x8c,0xff,0xff,0xff,0xff,0xcc,0x95,0x9c,0x20,0xff,0xff,0xff,0xff,0xd2,0x74,0x7c, + 0x10,0x0,0x0,0x0,0x0,0xb,0x17,0xf7,0x40,0x0,0x0,0x0,0x0,0x7f,0xff,0xff, + 0xff,0x0,0x1,0x2,0x1,0x3,0x3,0xff,0xff,0xe9,0xf4,0x0,0x0,0xff,0xff,0xe3, + 0xe0,0x0,0x4,0xff,0xff,0xf1,0xf0,0x1,0x8,0xff,0xff,0xf1,0xf0,0x0,0x8,0x4c, + 0x4d,0x54,0x0,0x2d,0x30,0x32,0x0,0x2d,0x30,0x31,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0xa,0x3c,0x2d,0x30,0x31,0x3e,0x31,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Atlantic/South_Georgia + 0x0,0x0,0x0,0xb5, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x79,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0xca, - 0x2,0x35,0xe0,0xcc,0xe7,0x4b,0x10,0xcd,0xa9,0x17,0x90,0xce,0xa2,0x43,0x10,0xcf, - 0x92,0x34,0x10,0xd0,0x82,0x25,0x10,0xd0,0xfa,0x1,0x70,0xd1,0xa1,0x8c,0x10,0xd2, - 0x4e,0x40,0x90,0x18,0x45,0x5f,0x70,0x18,0xe3,0xaf,0x90,0x19,0xd3,0xa0,0x90,0x1a, + 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x7f, + 0xff,0xff,0xff,0x1,0x1,0xff,0xff,0xdd,0xc0,0x0,0x0,0xff,0xff,0xe3,0xe0,0x0, + 0x4,0x4c,0x4d,0x54,0x0,0x2d,0x30,0x32,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, + 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x3,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0x69,0x86,0xfd,0xc0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff, + 0xff,0x0,0x1,0x1,0xff,0xff,0xdd,0xc0,0x0,0x0,0xff,0xff,0xe3,0xe0,0x0,0x4, + 0x4c,0x4d,0x54,0x0,0x2d,0x30,0x32,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2d,0x30, + 0x32,0x3e,0x32,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Atlantic/Madeira + 0x0,0x0,0xd,0x8c, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xdd,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x1d,0x80,0x0,0x0,0x0,0x92, + 0xe6,0x9e,0x58,0x9b,0x4b,0x7b,0x80,0x9b,0xfe,0xd5,0x90,0x9c,0x9c,0xfb,0x80,0x9d, + 0xc9,0x91,0x80,0x9e,0x7f,0x80,0x80,0x9f,0xaa,0xc5,0x0,0xa0,0x5f,0x62,0x80,0xa1, + 0x8b,0xf8,0x80,0xa2,0x41,0xe7,0x80,0xa3,0x6e,0x7d,0x80,0xa4,0x23,0x1b,0x0,0xa5, + 0x4f,0xb1,0x0,0xaa,0x5,0xfd,0x80,0xaa,0xf4,0x9d,0x0,0xad,0xc9,0xb6,0x0,0xae, + 0xa7,0x32,0x0,0xaf,0xa0,0x5d,0x80,0xb0,0x87,0x14,0x0,0xb1,0x89,0x7a,0x0,0xb2, + 0x70,0x30,0x80,0xb3,0x72,0x96,0x80,0xb4,0x50,0x12,0x80,0xb7,0x32,0x5a,0x80,0xb8, + 0xf,0xd6,0x80,0xb8,0xff,0xc7,0x80,0xb9,0xef,0xb8,0x80,0xbc,0xc8,0xc6,0x0,0xbd, + 0xb8,0xb7,0x0,0xbe,0x9f,0x6d,0x80,0xbf,0x98,0x99,0x0,0xc0,0x9a,0xff,0x0,0xc1, + 0x78,0x7b,0x0,0xc2,0x68,0x6c,0x0,0xc3,0x58,0x5d,0x0,0xc4,0x3f,0x13,0x80,0xc5, + 0x38,0x3f,0x0,0xc6,0x3a,0xa5,0x0,0xc7,0x58,0xba,0x80,0xc7,0xd9,0xed,0x80,0xc9, + 0x1,0x3d,0x80,0xc9,0xf1,0x2e,0x80,0xca,0xe2,0x71,0x0,0xcb,0xb5,0x61,0x0,0xcb, + 0xec,0xb1,0xf0,0xcc,0x80,0x59,0xf0,0xcc,0xdc,0xb1,0x0,0xcd,0x95,0x43,0x0,0xcd, + 0xc3,0x59,0x70,0xce,0x72,0xb0,0xf0,0xce,0xc5,0xcd,0x80,0xcf,0x75,0x25,0x0,0xcf, + 0xac,0x75,0xf0,0xd0,0x52,0x92,0xf0,0xd0,0xa5,0xaf,0x80,0xd1,0x55,0x7,0x0,0xd1, + 0x8c,0x57,0xf0,0xd2,0x32,0x74,0xf0,0xd2,0x85,0x91,0x80,0xd3,0x59,0xd3,0x0,0xd4, + 0x49,0xc4,0x0,0xd5,0x39,0xdf,0x30,0xd6,0x29,0xd0,0x30,0xd7,0x19,0xc1,0x30,0xd8, + 0x9,0xb2,0x30,0xd8,0xf9,0xa3,0x30,0xd9,0xe9,0x94,0x30,0xdc,0xb9,0x67,0x30,0xdd, + 0xb2,0x92,0xb0,0xde,0xa2,0x83,0xb0,0xdf,0x92,0x74,0xb0,0xe0,0x82,0x65,0xb0,0xe1, + 0x72,0x56,0xb0,0xe2,0x62,0x47,0xb0,0xe3,0x52,0x38,0xb0,0xe4,0x42,0x29,0xb0,0xe5, + 0x32,0x1a,0xb0,0xe6,0x22,0xb,0xb0,0xe7,0x1b,0x37,0x30,0xe8,0xb,0x28,0x30,0xe8, + 0xfb,0x19,0x30,0xe9,0xeb,0xa,0x30,0xea,0xda,0xfb,0x30,0xeb,0xca,0xec,0x30,0xec, + 0xba,0xdd,0x30,0xed,0xaa,0xce,0x30,0xee,0x9a,0xbf,0x30,0xef,0x8a,0xb0,0x30,0xf0, + 0x7a,0xa1,0x30,0xf1,0x6a,0x92,0x30,0xf2,0x63,0xbd,0xb0,0xf3,0x53,0xae,0xb0,0xf4, + 0x43,0x9f,0xb0,0xf5,0x33,0x90,0xb0,0xf6,0x23,0x81,0xb0,0xf7,0x13,0x72,0xb0,0xf8, + 0x3,0x63,0xb0,0xf8,0xf3,0x54,0xb0,0xd,0x9b,0x1b,0x0,0xe,0x8b,0xc,0x0,0xf, + 0x84,0x37,0x80,0x10,0x74,0x28,0x80,0x11,0x64,0x19,0x80,0x12,0x54,0x18,0x90,0x13, + 0x43,0xfb,0x80,0x14,0x33,0xfa,0x90,0x15,0x23,0xeb,0x90,0x16,0x13,0xdc,0x90,0x17, + 0x3,0xcd,0x90,0x17,0xf3,0xbe,0x90,0x18,0xe3,0xbd,0xa0,0x19,0xd3,0xa0,0x90,0x1a, 0xc3,0x91,0x90,0x1b,0xbc,0xbd,0x10,0x1c,0xac,0xae,0x10,0x1d,0x9c,0x9f,0x10,0x1e, 0x8c,0x90,0x10,0x1f,0x7c,0x81,0x10,0x20,0x6c,0x72,0x10,0x21,0x5c,0x63,0x10,0x22, 0x4c,0x54,0x10,0x23,0x3c,0x45,0x10,0x24,0x2c,0x36,0x10,0x25,0x1c,0x27,0x10,0x26, @@ -15792,229 +13119,325 @@ static const unsigned char qt_resource_data[] = { 0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78, 0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c, 0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x1, - 0x4,0x2,0x3,0x2,0x3,0x2,0x1,0x3,0x2,0x1,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x0,0x0,0x13,0x38,0x0,0x0,0x0,0x0, - 0xe,0x10,0x0,0x4,0x0,0x0,0xe,0x10,0x0,0x4,0x0,0x0,0x1c,0x20,0x1,0x8, - 0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0xe,0x10, - 0x0,0x4,0x4c,0x4d,0x54,0x0,0x43,0x45,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x0, - 0x0,0x1,0x1,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x54,0x5a,0x69, - 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x7a,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0xd,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0x5e,0x3c,0xf0,0x48,0xff,0xff,0xff,0xff,0xca,0x2,0x35, - 0xe0,0xff,0xff,0xff,0xff,0xcc,0xe7,0x4b,0x10,0xff,0xff,0xff,0xff,0xcd,0xa9,0x17, - 0x90,0xff,0xff,0xff,0xff,0xce,0xa2,0x43,0x10,0xff,0xff,0xff,0xff,0xcf,0x92,0x34, - 0x10,0xff,0xff,0xff,0xff,0xd0,0x82,0x25,0x10,0xff,0xff,0xff,0xff,0xd0,0xfa,0x1, - 0x70,0xff,0xff,0xff,0xff,0xd1,0xa1,0x8c,0x10,0xff,0xff,0xff,0xff,0xd2,0x4e,0x40, - 0x90,0x0,0x0,0x0,0x0,0x18,0x45,0x5f,0x70,0x0,0x0,0x0,0x0,0x18,0xe3,0xaf, - 0x90,0x0,0x0,0x0,0x0,0x19,0xd3,0xa0,0x90,0x0,0x0,0x0,0x0,0x1a,0xc3,0x91, - 0x90,0x0,0x0,0x0,0x0,0x1b,0xbc,0xbd,0x10,0x0,0x0,0x0,0x0,0x1c,0xac,0xae, - 0x10,0x0,0x0,0x0,0x0,0x1d,0x9c,0x9f,0x10,0x0,0x0,0x0,0x0,0x1e,0x8c,0x90, - 0x10,0x0,0x0,0x0,0x0,0x1f,0x7c,0x81,0x10,0x0,0x0,0x0,0x0,0x20,0x6c,0x72, - 0x10,0x0,0x0,0x0,0x0,0x21,0x5c,0x63,0x10,0x0,0x0,0x0,0x0,0x22,0x4c,0x54, - 0x10,0x0,0x0,0x0,0x0,0x23,0x3c,0x45,0x10,0x0,0x0,0x0,0x0,0x24,0x2c,0x36, - 0x10,0x0,0x0,0x0,0x0,0x25,0x1c,0x27,0x10,0x0,0x0,0x0,0x0,0x26,0xc,0x18, - 0x10,0x0,0x0,0x0,0x0,0x27,0x5,0x43,0x90,0x0,0x0,0x0,0x0,0x27,0xf5,0x34, - 0x90,0x0,0x0,0x0,0x0,0x28,0xe5,0x25,0x90,0x0,0x0,0x0,0x0,0x29,0xd5,0x16, - 0x90,0x0,0x0,0x0,0x0,0x2a,0xc5,0x7,0x90,0x0,0x0,0x0,0x0,0x2b,0xb4,0xf8, - 0x90,0x0,0x0,0x0,0x0,0x2c,0xa4,0xe9,0x90,0x0,0x0,0x0,0x0,0x2d,0x94,0xda, - 0x90,0x0,0x0,0x0,0x0,0x2e,0x84,0xcb,0x90,0x0,0x0,0x0,0x0,0x2f,0x74,0xbc, - 0x90,0x0,0x0,0x0,0x0,0x30,0x64,0xad,0x90,0x0,0x0,0x0,0x0,0x31,0x5d,0xd9, - 0x10,0x0,0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d,0xbb, - 0x10,0x0,0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d,0x9d, - 0x10,0x0,0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd,0x7f, - 0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd,0x61, - 0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd,0x43, - 0x10,0x0,0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f, - 0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86,0x41, - 0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66,0x23, - 0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46,0x5, - 0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25,0xe7, - 0x90,0x0,0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5,0xc9, - 0x90,0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee,0xe6, - 0x10,0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce,0xc8, - 0x10,0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae,0xaa, - 0x10,0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c, - 0x10,0x0,0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e, - 0x10,0x0,0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57,0x8a, - 0x90,0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37,0x6c, - 0x90,0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17,0x4e, - 0x90,0x0,0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7,0x30, - 0x90,0x0,0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7,0x12, - 0x90,0x0,0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4, - 0x90,0x0,0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0,0x11, - 0x10,0x0,0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3, - 0x10,0x0,0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f,0xd5, - 0x10,0x0,0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f,0xb7, - 0x10,0x0,0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f,0x99, - 0x10,0x0,0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8,0xb5, - 0x90,0x0,0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8,0x97, - 0x90,0x0,0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8,0x79, - 0x90,0x0,0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b, - 0x90,0x0,0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88,0x3d, - 0x90,0x0,0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68,0x1f, - 0x90,0x0,0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51,0x3c, - 0x10,0x0,0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31,0x1e, - 0x10,0x0,0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11,0x0, - 0x10,0x0,0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0,0xe2, - 0x10,0x0,0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0,0xc4, - 0x10,0x0,0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6, - 0x10,0x0,0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99,0xc2, - 0x90,0x0,0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79,0xa4, - 0x90,0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x1,0x4,0x2,0x3,0x2,0x3, - 0x2,0x1,0x3,0x2,0x1,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x0,0x0,0x13,0x38,0x0,0x0,0x0,0x0,0xe,0x10,0x0,0x4,0x0, - 0x0,0xe,0x10,0x0,0x4,0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0x1c,0x20,0x1, - 0x8,0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0xe,0x10,0x0,0x4,0x4c,0x4d,0x54, - 0x0,0x43,0x45,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x0,0x0,0x1,0x1,0x0,0x1, - 0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0xa,0x43,0x45,0x54,0x2d,0x31,0x43,0x45, - 0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e, - 0x30,0x2f,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Andorra - 0x0,0x0,0x6,0xd7, + 0x3,0x2,0x3,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x6,0x4,0x5,0x4, + 0x6,0x4,0x5,0x4,0x6,0x4,0x5,0x4,0x6,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x9,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0xa, + 0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa, + 0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa, + 0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa, + 0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa, + 0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa, + 0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa, + 0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xff,0xff,0xf0,0x28, + 0x0,0x0,0xff,0xff,0xf0,0x28,0x0,0x4,0x0,0x0,0x0,0x0,0x1,0x8,0xff,0xff, + 0xf1,0xf0,0x0,0xc,0x0,0x0,0x0,0x0,0x1,0x8,0xff,0xff,0xf1,0xf0,0x0,0xc, + 0x0,0x0,0xe,0x10,0x1,0x10,0x0,0x0,0xe,0x10,0x1,0x14,0x0,0x0,0x0,0x0, + 0x0,0x19,0x0,0x0,0x0,0x0,0x0,0x19,0x0,0x0,0x0,0x0,0x0,0x19,0x0,0x0, + 0xe,0x10,0x1,0x14,0x4c,0x4d,0x54,0x0,0x46,0x4d,0x54,0x0,0x2b,0x30,0x30,0x0, + 0x2d,0x30,0x31,0x0,0x2b,0x30,0x31,0x0,0x57,0x45,0x53,0x54,0x0,0x57,0x45,0x54, + 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x1,0x0,0x1,0x1,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x54,0x5a,0x69,0x66,0x32,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xc,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xde,0x0,0x0,0x0, + 0xc,0x0,0x0,0x0,0x1d,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff, + 0xff,0x5e,0x3d,0x13,0x58,0xff,0xff,0xff,0xff,0x92,0xe6,0x9e,0x58,0xff,0xff,0xff, + 0xff,0x9b,0x4b,0x7b,0x80,0xff,0xff,0xff,0xff,0x9b,0xfe,0xd5,0x90,0xff,0xff,0xff, + 0xff,0x9c,0x9c,0xfb,0x80,0xff,0xff,0xff,0xff,0x9d,0xc9,0x91,0x80,0xff,0xff,0xff, + 0xff,0x9e,0x7f,0x80,0x80,0xff,0xff,0xff,0xff,0x9f,0xaa,0xc5,0x0,0xff,0xff,0xff, + 0xff,0xa0,0x5f,0x62,0x80,0xff,0xff,0xff,0xff,0xa1,0x8b,0xf8,0x80,0xff,0xff,0xff, + 0xff,0xa2,0x41,0xe7,0x80,0xff,0xff,0xff,0xff,0xa3,0x6e,0x7d,0x80,0xff,0xff,0xff, + 0xff,0xa4,0x23,0x1b,0x0,0xff,0xff,0xff,0xff,0xa5,0x4f,0xb1,0x0,0xff,0xff,0xff, + 0xff,0xaa,0x5,0xfd,0x80,0xff,0xff,0xff,0xff,0xaa,0xf4,0x9d,0x0,0xff,0xff,0xff, + 0xff,0xad,0xc9,0xb6,0x0,0xff,0xff,0xff,0xff,0xae,0xa7,0x32,0x0,0xff,0xff,0xff, + 0xff,0xaf,0xa0,0x5d,0x80,0xff,0xff,0xff,0xff,0xb0,0x87,0x14,0x0,0xff,0xff,0xff, + 0xff,0xb1,0x89,0x7a,0x0,0xff,0xff,0xff,0xff,0xb2,0x70,0x30,0x80,0xff,0xff,0xff, + 0xff,0xb3,0x72,0x96,0x80,0xff,0xff,0xff,0xff,0xb4,0x50,0x12,0x80,0xff,0xff,0xff, + 0xff,0xb7,0x32,0x5a,0x80,0xff,0xff,0xff,0xff,0xb8,0xf,0xd6,0x80,0xff,0xff,0xff, + 0xff,0xb8,0xff,0xc7,0x80,0xff,0xff,0xff,0xff,0xb9,0xef,0xb8,0x80,0xff,0xff,0xff, + 0xff,0xbc,0xc8,0xc6,0x0,0xff,0xff,0xff,0xff,0xbd,0xb8,0xb7,0x0,0xff,0xff,0xff, + 0xff,0xbe,0x9f,0x6d,0x80,0xff,0xff,0xff,0xff,0xbf,0x98,0x99,0x0,0xff,0xff,0xff, + 0xff,0xc0,0x9a,0xff,0x0,0xff,0xff,0xff,0xff,0xc1,0x78,0x7b,0x0,0xff,0xff,0xff, + 0xff,0xc2,0x68,0x6c,0x0,0xff,0xff,0xff,0xff,0xc3,0x58,0x5d,0x0,0xff,0xff,0xff, + 0xff,0xc4,0x3f,0x13,0x80,0xff,0xff,0xff,0xff,0xc5,0x38,0x3f,0x0,0xff,0xff,0xff, + 0xff,0xc6,0x3a,0xa5,0x0,0xff,0xff,0xff,0xff,0xc7,0x58,0xba,0x80,0xff,0xff,0xff, + 0xff,0xc7,0xd9,0xed,0x80,0xff,0xff,0xff,0xff,0xc9,0x1,0x3d,0x80,0xff,0xff,0xff, + 0xff,0xc9,0xf1,0x2e,0x80,0xff,0xff,0xff,0xff,0xca,0xe2,0x71,0x0,0xff,0xff,0xff, + 0xff,0xcb,0xb5,0x61,0x0,0xff,0xff,0xff,0xff,0xcb,0xec,0xb1,0xf0,0xff,0xff,0xff, + 0xff,0xcc,0x80,0x59,0xf0,0xff,0xff,0xff,0xff,0xcc,0xdc,0xb1,0x0,0xff,0xff,0xff, + 0xff,0xcd,0x95,0x43,0x0,0xff,0xff,0xff,0xff,0xcd,0xc3,0x59,0x70,0xff,0xff,0xff, + 0xff,0xce,0x72,0xb0,0xf0,0xff,0xff,0xff,0xff,0xce,0xc5,0xcd,0x80,0xff,0xff,0xff, + 0xff,0xcf,0x75,0x25,0x0,0xff,0xff,0xff,0xff,0xcf,0xac,0x75,0xf0,0xff,0xff,0xff, + 0xff,0xd0,0x52,0x92,0xf0,0xff,0xff,0xff,0xff,0xd0,0xa5,0xaf,0x80,0xff,0xff,0xff, + 0xff,0xd1,0x55,0x7,0x0,0xff,0xff,0xff,0xff,0xd1,0x8c,0x57,0xf0,0xff,0xff,0xff, + 0xff,0xd2,0x32,0x74,0xf0,0xff,0xff,0xff,0xff,0xd2,0x85,0x91,0x80,0xff,0xff,0xff, + 0xff,0xd3,0x59,0xd3,0x0,0xff,0xff,0xff,0xff,0xd4,0x49,0xc4,0x0,0xff,0xff,0xff, + 0xff,0xd5,0x39,0xdf,0x30,0xff,0xff,0xff,0xff,0xd6,0x29,0xd0,0x30,0xff,0xff,0xff, + 0xff,0xd7,0x19,0xc1,0x30,0xff,0xff,0xff,0xff,0xd8,0x9,0xb2,0x30,0xff,0xff,0xff, + 0xff,0xd8,0xf9,0xa3,0x30,0xff,0xff,0xff,0xff,0xd9,0xe9,0x94,0x30,0xff,0xff,0xff, + 0xff,0xdc,0xb9,0x67,0x30,0xff,0xff,0xff,0xff,0xdd,0xb2,0x92,0xb0,0xff,0xff,0xff, + 0xff,0xde,0xa2,0x83,0xb0,0xff,0xff,0xff,0xff,0xdf,0x92,0x74,0xb0,0xff,0xff,0xff, + 0xff,0xe0,0x82,0x65,0xb0,0xff,0xff,0xff,0xff,0xe1,0x72,0x56,0xb0,0xff,0xff,0xff, + 0xff,0xe2,0x62,0x47,0xb0,0xff,0xff,0xff,0xff,0xe3,0x52,0x38,0xb0,0xff,0xff,0xff, + 0xff,0xe4,0x42,0x29,0xb0,0xff,0xff,0xff,0xff,0xe5,0x32,0x1a,0xb0,0xff,0xff,0xff, + 0xff,0xe6,0x22,0xb,0xb0,0xff,0xff,0xff,0xff,0xe7,0x1b,0x37,0x30,0xff,0xff,0xff, + 0xff,0xe8,0xb,0x28,0x30,0xff,0xff,0xff,0xff,0xe8,0xfb,0x19,0x30,0xff,0xff,0xff, + 0xff,0xe9,0xeb,0xa,0x30,0xff,0xff,0xff,0xff,0xea,0xda,0xfb,0x30,0xff,0xff,0xff, + 0xff,0xeb,0xca,0xec,0x30,0xff,0xff,0xff,0xff,0xec,0xba,0xdd,0x30,0xff,0xff,0xff, + 0xff,0xed,0xaa,0xce,0x30,0xff,0xff,0xff,0xff,0xee,0x9a,0xbf,0x30,0xff,0xff,0xff, + 0xff,0xef,0x8a,0xb0,0x30,0xff,0xff,0xff,0xff,0xf0,0x7a,0xa1,0x30,0xff,0xff,0xff, + 0xff,0xf1,0x6a,0x92,0x30,0xff,0xff,0xff,0xff,0xf2,0x63,0xbd,0xb0,0xff,0xff,0xff, + 0xff,0xf3,0x53,0xae,0xb0,0xff,0xff,0xff,0xff,0xf4,0x43,0x9f,0xb0,0xff,0xff,0xff, + 0xff,0xf5,0x33,0x90,0xb0,0xff,0xff,0xff,0xff,0xf6,0x23,0x81,0xb0,0xff,0xff,0xff, + 0xff,0xf7,0x13,0x72,0xb0,0xff,0xff,0xff,0xff,0xf8,0x3,0x63,0xb0,0xff,0xff,0xff, + 0xff,0xf8,0xf3,0x54,0xb0,0x0,0x0,0x0,0x0,0xd,0x9b,0x1b,0x0,0x0,0x0,0x0, + 0x0,0xe,0x8b,0xc,0x0,0x0,0x0,0x0,0x0,0xf,0x84,0x37,0x80,0x0,0x0,0x0, + 0x0,0x10,0x74,0x28,0x80,0x0,0x0,0x0,0x0,0x11,0x64,0x19,0x80,0x0,0x0,0x0, + 0x0,0x12,0x54,0x18,0x90,0x0,0x0,0x0,0x0,0x13,0x43,0xfb,0x80,0x0,0x0,0x0, + 0x0,0x14,0x33,0xfa,0x90,0x0,0x0,0x0,0x0,0x15,0x23,0xeb,0x90,0x0,0x0,0x0, + 0x0,0x16,0x13,0xdc,0x90,0x0,0x0,0x0,0x0,0x17,0x3,0xcd,0x90,0x0,0x0,0x0, + 0x0,0x17,0xf3,0xbe,0x90,0x0,0x0,0x0,0x0,0x18,0xe3,0xbd,0xa0,0x0,0x0,0x0, + 0x0,0x19,0xd3,0xa0,0x90,0x0,0x0,0x0,0x0,0x1a,0xc3,0x91,0x90,0x0,0x0,0x0, + 0x0,0x1b,0xbc,0xbd,0x10,0x0,0x0,0x0,0x0,0x1c,0xac,0xae,0x10,0x0,0x0,0x0, + 0x0,0x1d,0x9c,0x9f,0x10,0x0,0x0,0x0,0x0,0x1e,0x8c,0x90,0x10,0x0,0x0,0x0, + 0x0,0x1f,0x7c,0x81,0x10,0x0,0x0,0x0,0x0,0x20,0x6c,0x72,0x10,0x0,0x0,0x0, + 0x0,0x21,0x5c,0x63,0x10,0x0,0x0,0x0,0x0,0x22,0x4c,0x54,0x10,0x0,0x0,0x0, + 0x0,0x23,0x3c,0x45,0x10,0x0,0x0,0x0,0x0,0x24,0x2c,0x36,0x10,0x0,0x0,0x0, + 0x0,0x25,0x1c,0x27,0x10,0x0,0x0,0x0,0x0,0x26,0xc,0x18,0x10,0x0,0x0,0x0, + 0x0,0x27,0x5,0x43,0x90,0x0,0x0,0x0,0x0,0x27,0xf5,0x34,0x90,0x0,0x0,0x0, + 0x0,0x28,0xe5,0x25,0x90,0x0,0x0,0x0,0x0,0x29,0xd5,0x16,0x90,0x0,0x0,0x0, + 0x0,0x2a,0xc5,0x7,0x90,0x0,0x0,0x0,0x0,0x2b,0xb4,0xf8,0x90,0x0,0x0,0x0, + 0x0,0x2c,0xa4,0xe9,0x90,0x0,0x0,0x0,0x0,0x2d,0x94,0xda,0x90,0x0,0x0,0x0, + 0x0,0x2e,0x84,0xcb,0x90,0x0,0x0,0x0,0x0,0x2f,0x74,0xbc,0x90,0x0,0x0,0x0, + 0x0,0x30,0x64,0xad,0x90,0x0,0x0,0x0,0x0,0x31,0x5d,0xd9,0x10,0x0,0x0,0x0, + 0x0,0x32,0x72,0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d,0xbb,0x10,0x0,0x0,0x0, + 0x0,0x34,0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d,0x9d,0x10,0x0,0x0,0x0, + 0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd,0x7f,0x10,0x0,0x0,0x0, + 0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd,0x61,0x10,0x0,0x0,0x0, + 0x0,0x39,0xfb,0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd,0x43,0x10,0x0,0x0,0x0, + 0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f,0x90,0x0,0x0,0x0, + 0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86,0x41,0x90,0x0,0x0,0x0, + 0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66,0x23,0x90,0x0,0x0,0x0, + 0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46,0x5,0x90,0x0,0x0,0x0, + 0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25,0xe7,0x90,0x0,0x0,0x0, + 0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5,0xc9,0x90,0x0,0x0,0x0, + 0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee,0xe6,0x10,0x0,0x0,0x0, + 0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce,0xc8,0x10,0x0,0x0,0x0, + 0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae,0xaa,0x10,0x0,0x0,0x0, + 0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c,0x10,0x0,0x0,0x0, + 0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e,0x10,0x0,0x0,0x0, + 0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57,0x8a,0x90,0x0,0x0,0x0, + 0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37,0x6c,0x90,0x0,0x0,0x0, + 0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17,0x4e,0x90,0x0,0x0,0x0, + 0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7,0x30,0x90,0x0,0x0,0x0, + 0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7,0x12,0x90,0x0,0x0,0x0, + 0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4,0x90,0x0,0x0,0x0, + 0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0,0x11,0x10,0x0,0x0,0x0, + 0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3,0x10,0x0,0x0,0x0, + 0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f,0xd5,0x10,0x0,0x0,0x0, + 0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f,0xb7,0x10,0x0,0x0,0x0, + 0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f,0x99,0x10,0x0,0x0,0x0, + 0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8,0xb5,0x90,0x0,0x0,0x0, + 0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8,0x97,0x90,0x0,0x0,0x0, + 0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8,0x79,0x90,0x0,0x0,0x0, + 0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b,0x90,0x0,0x0,0x0, + 0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88,0x3d,0x90,0x0,0x0,0x0, + 0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68,0x1f,0x90,0x0,0x0,0x0, + 0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51,0x3c,0x10,0x0,0x0,0x0, + 0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31,0x1e,0x10,0x0,0x0,0x0, + 0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11,0x0,0x10,0x0,0x0,0x0, + 0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0,0xe2,0x10,0x0,0x0,0x0, + 0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0,0xc4,0x10,0x0,0x0,0x0, + 0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6,0x10,0x0,0x0,0x0, + 0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99,0xc2,0x90,0x0,0x0,0x0, + 0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79,0xa4,0x90,0x0,0x0,0x0, + 0x0,0x7f,0x8e,0x7f,0x90,0x0,0x1,0x3,0x2,0x3,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x6,0x4,0x5,0x4,0x6,0x4,0x5,0x4,0x6,0x4,0x5,0x4,0x6, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x9,0x7,0x8,0x7,0x8,0x7,0x8,0x7, + 0x8,0x7,0x8,0x7,0x8,0x7,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb, + 0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb, + 0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb, + 0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb, + 0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb, + 0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb, + 0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb, + 0xa,0xb,0xa,0xff,0xff,0xf0,0x28,0x0,0x0,0xff,0xff,0xf0,0x28,0x0,0x4,0x0, + 0x0,0x0,0x0,0x1,0x8,0xff,0xff,0xf1,0xf0,0x0,0xc,0x0,0x0,0x0,0x0,0x1, + 0x8,0xff,0xff,0xf1,0xf0,0x0,0xc,0x0,0x0,0xe,0x10,0x1,0x10,0x0,0x0,0xe, + 0x10,0x1,0x14,0x0,0x0,0x0,0x0,0x0,0x19,0x0,0x0,0x0,0x0,0x0,0x19,0x0, + 0x0,0x0,0x0,0x0,0x19,0x0,0x0,0xe,0x10,0x1,0x14,0x4c,0x4d,0x54,0x0,0x46, + 0x4d,0x54,0x0,0x2b,0x30,0x30,0x0,0x2d,0x30,0x31,0x0,0x2b,0x30,0x31,0x0,0x57, + 0x45,0x53,0x54,0x0,0x57,0x45,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1, + 0x1,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, + 0xa,0x57,0x45,0x54,0x30,0x57,0x45,0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30, + 0x2f,0x31,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Atlantic/Bermuda + 0x0,0x0,0x7,0xd4, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x6c,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x11,0x80,0x0,0x0,0x0,0xd4, - 0x41,0xdb,0x0,0x1c,0xac,0xae,0x10,0x1d,0x9c,0x9f,0x10,0x1e,0x8c,0x90,0x10,0x1f, - 0x7c,0x81,0x10,0x20,0x6c,0x72,0x10,0x21,0x5c,0x63,0x10,0x22,0x4c,0x54,0x10,0x23, - 0x3c,0x45,0x10,0x24,0x2c,0x36,0x10,0x25,0x1c,0x27,0x10,0x26,0xc,0x18,0x10,0x27, - 0x5,0x43,0x90,0x27,0xf5,0x34,0x90,0x28,0xe5,0x25,0x90,0x29,0xd5,0x16,0x90,0x2a, - 0xc5,0x7,0x90,0x2b,0xb4,0xf8,0x90,0x2c,0xa4,0xe9,0x90,0x2d,0x94,0xda,0x90,0x2e, - 0x84,0xcb,0x90,0x2f,0x74,0xbc,0x90,0x30,0x64,0xad,0x90,0x31,0x5d,0xd9,0x10,0x32, - 0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34,0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36, - 0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39, - 0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b,0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d, - 0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f,0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41, - 0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43,0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45, - 0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49, - 0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c, - 0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e,0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50, - 0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54, - 0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56,0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58, - 0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59,0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b, - 0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d,0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f, - 0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61,0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63, - 0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65,0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67, - 0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68,0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a, - 0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c,0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e, - 0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70,0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72, - 0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74,0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76, - 0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79, - 0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d, - 0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x1,0x2,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x0,0x0,0x1,0x6c,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x4,0x0,0x0,0xe,0x10,0x0,0x8,0x0,0x0,0x1c,0x20,0x1,0xc,0x0, - 0x0,0xe,0x10,0x0,0x8,0x4c,0x4d,0x54,0x0,0x57,0x45,0x54,0x0,0x43,0x45,0x54, - 0x0,0x43,0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x1,0x1, - 0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x6d,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x11,0xf8,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x7e,0x36,0xb3,0x94,0xff,0xff,0xff,0xff, - 0xd4,0x41,0xdb,0x0,0x0,0x0,0x0,0x0,0x1c,0xac,0xae,0x10,0x0,0x0,0x0,0x0, - 0x1d,0x9c,0x9f,0x10,0x0,0x0,0x0,0x0,0x1e,0x8c,0x90,0x10,0x0,0x0,0x0,0x0, - 0x1f,0x7c,0x81,0x10,0x0,0x0,0x0,0x0,0x20,0x6c,0x72,0x10,0x0,0x0,0x0,0x0, - 0x21,0x5c,0x63,0x10,0x0,0x0,0x0,0x0,0x22,0x4c,0x54,0x10,0x0,0x0,0x0,0x0, - 0x23,0x3c,0x45,0x10,0x0,0x0,0x0,0x0,0x24,0x2c,0x36,0x10,0x0,0x0,0x0,0x0, - 0x25,0x1c,0x27,0x10,0x0,0x0,0x0,0x0,0x26,0xc,0x18,0x10,0x0,0x0,0x0,0x0, - 0x27,0x5,0x43,0x90,0x0,0x0,0x0,0x0,0x27,0xf5,0x34,0x90,0x0,0x0,0x0,0x0, - 0x28,0xe5,0x25,0x90,0x0,0x0,0x0,0x0,0x29,0xd5,0x16,0x90,0x0,0x0,0x0,0x0, - 0x2a,0xc5,0x7,0x90,0x0,0x0,0x0,0x0,0x2b,0xb4,0xf8,0x90,0x0,0x0,0x0,0x0, - 0x2c,0xa4,0xe9,0x90,0x0,0x0,0x0,0x0,0x2d,0x94,0xda,0x90,0x0,0x0,0x0,0x0, - 0x2e,0x84,0xcb,0x90,0x0,0x0,0x0,0x0,0x2f,0x74,0xbc,0x90,0x0,0x0,0x0,0x0, - 0x30,0x64,0xad,0x90,0x0,0x0,0x0,0x0,0x31,0x5d,0xd9,0x10,0x0,0x0,0x0,0x0, - 0x32,0x72,0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d,0xbb,0x10,0x0,0x0,0x0,0x0, - 0x34,0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d,0x9d,0x10,0x0,0x0,0x0,0x0, - 0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd,0x7f,0x10,0x0,0x0,0x0,0x0, - 0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd,0x61,0x10,0x0,0x0,0x0,0x0, - 0x39,0xfb,0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd,0x43,0x10,0x0,0x0,0x0,0x0, - 0x3b,0xdb,0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f,0x90,0x0,0x0,0x0,0x0, - 0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86,0x41,0x90,0x0,0x0,0x0,0x0, - 0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66,0x23,0x90,0x0,0x0,0x0,0x0, - 0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46,0x5,0x90,0x0,0x0,0x0,0x0, - 0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25,0xe7,0x90,0x0,0x0,0x0,0x0, - 0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5,0xc9,0x90,0x0,0x0,0x0,0x0, - 0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee,0xe6,0x10,0x0,0x0,0x0,0x0, - 0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce,0xc8,0x10,0x0,0x0,0x0,0x0, - 0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae,0xaa,0x10,0x0,0x0,0x0,0x0, - 0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c,0x10,0x0,0x0,0x0,0x0, - 0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e,0x10,0x0,0x0,0x0,0x0, - 0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57,0x8a,0x90,0x0,0x0,0x0,0x0, - 0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37,0x6c,0x90,0x0,0x0,0x0,0x0, - 0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17,0x4e,0x90,0x0,0x0,0x0,0x0, - 0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7,0x30,0x90,0x0,0x0,0x0,0x0, - 0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7,0x12,0x90,0x0,0x0,0x0,0x0, - 0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4,0x90,0x0,0x0,0x0,0x0, - 0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0,0x11,0x10,0x0,0x0,0x0,0x0, - 0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3,0x10,0x0,0x0,0x0,0x0, - 0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f,0xd5,0x10,0x0,0x0,0x0,0x0, - 0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f,0xb7,0x10,0x0,0x0,0x0,0x0, - 0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f,0x99,0x10,0x0,0x0,0x0,0x0, - 0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8,0xb5,0x90,0x0,0x0,0x0,0x0, - 0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8,0x97,0x90,0x0,0x0,0x0,0x0, - 0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8,0x79,0x90,0x0,0x0,0x0,0x0, - 0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b,0x90,0x0,0x0,0x0,0x0, - 0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88,0x3d,0x90,0x0,0x0,0x0,0x0, - 0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68,0x1f,0x90,0x0,0x0,0x0,0x0, - 0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51,0x3c,0x10,0x0,0x0,0x0,0x0, - 0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31,0x1e,0x10,0x0,0x0,0x0,0x0, - 0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11,0x0,0x10,0x0,0x0,0x0,0x0, - 0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0,0xe2,0x10,0x0,0x0,0x0,0x0, - 0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0,0xc4,0x10,0x0,0x0,0x0,0x0, - 0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6,0x10,0x0,0x0,0x0,0x0, - 0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99,0xc2,0x90,0x0,0x0,0x0,0x0, - 0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79,0xa4,0x90,0x0,0x0,0x0,0x0, - 0x7f,0x8e,0x7f,0x90,0x0,0x1,0x2,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x0,0x0,0x1,0x6c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0xe, - 0x10,0x0,0x8,0x0,0x0,0x1c,0x20,0x1,0xc,0x0,0x0,0xe,0x10,0x0,0x8,0x4c, - 0x4d,0x54,0x0,0x57,0x45,0x54,0x0,0x43,0x45,0x54,0x0,0x43,0x45,0x53,0x54,0x0, - 0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x1,0x1,0xa,0x43,0x45,0x54,0x2d,0x31, - 0x43,0x45,0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2c,0x4d,0x31,0x30,0x2e, - 0x35,0x2e,0x30,0x2f,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Riga - 0x0,0x0,0x8,0xbb, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x82,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0xb4, + 0xc3,0x1d,0xe6,0x8,0x20,0xb3,0x60,0x9,0x10,0x96,0x50,0xa,0x0,0x95,0x60,0xa, + 0xf0,0x78,0x50,0xb,0xe0,0x77,0x60,0xc,0xd9,0x94,0xd0,0xd,0xc0,0x59,0x60,0xe, + 0xb9,0x76,0xd0,0xf,0xa9,0x75,0xe0,0x10,0x99,0x58,0xd0,0x11,0x89,0x57,0xe0,0x12, + 0x79,0x3a,0xd0,0x13,0x69,0x39,0xe0,0x14,0x59,0x1c,0xd0,0x15,0x49,0x1b,0xe0,0x16, + 0x38,0xfe,0xd0,0x17,0x28,0xfd,0xe0,0x18,0x22,0x1b,0x50,0x19,0x8,0xdf,0xe0,0x1a, + 0x1,0xfd,0x50,0x1a,0xf1,0xfc,0x60,0x1b,0xe1,0xdf,0x50,0x1c,0xd1,0xde,0x60,0x1d, + 0xc1,0xc1,0x50,0x1e,0xb1,0xc0,0x60,0x1f,0xa1,0xa3,0x50,0x20,0x75,0xf2,0xe0,0x21, + 0x81,0x85,0x50,0x22,0x55,0xd4,0xe0,0x23,0x6a,0xa1,0xd0,0x24,0x35,0xb6,0xe0,0x25, + 0x4a,0x83,0xd0,0x26,0x15,0x98,0xe0,0x27,0x2a,0x65,0xd0,0x27,0xfe,0xb5,0x60,0x29, + 0xa,0x47,0xd0,0x29,0xde,0x97,0x60,0x2a,0xea,0x29,0xd0,0x2b,0xbe,0x79,0x60,0x2c, + 0xd3,0x46,0x50,0x2d,0x9e,0x5b,0x60,0x2e,0xb3,0x28,0x50,0x2f,0x7e,0x3d,0x60,0x30, + 0x93,0xa,0x50,0x31,0x67,0x59,0xe0,0x32,0x72,0xec,0x50,0x33,0x47,0x3b,0xe0,0x34, + 0x52,0xce,0x50,0x35,0x27,0x1d,0xe0,0x36,0x32,0xb0,0x50,0x37,0x6,0xff,0xe0,0x38, + 0x1b,0xcc,0xd0,0x38,0xe6,0xe1,0xe0,0x39,0xfb,0xae,0xd0,0x3a,0xc6,0xc3,0xe0,0x3b, + 0xdb,0x90,0xd0,0x3c,0xaf,0xe0,0x60,0x3d,0xbb,0x72,0xd0,0x3e,0x8f,0xc2,0x60,0x3f, + 0x9b,0x54,0xd0,0x40,0x6f,0xa4,0x60,0x41,0x84,0x71,0x50,0x42,0x4f,0x86,0x60,0x43, + 0x64,0x53,0x50,0x44,0x2f,0x68,0x60,0x45,0x44,0x35,0x50,0x45,0xf3,0x9a,0xe0,0x47, + 0x2d,0x51,0xd0,0x47,0xd3,0x7c,0xe0,0x49,0xd,0x33,0xd0,0x49,0xb3,0x5e,0xe0,0x4a, + 0xed,0x15,0xd0,0x4b,0x9c,0x7b,0x60,0x4c,0xd6,0x32,0x50,0x4d,0x7c,0x5d,0x60,0x4e, + 0xb6,0x14,0x50,0x4f,0x5c,0x3f,0x60,0x50,0x95,0xf6,0x50,0x51,0x3c,0x21,0x60,0x52, + 0x75,0xd8,0x50,0x53,0x1c,0x3,0x60,0x54,0x55,0xba,0x50,0x54,0xfb,0xe5,0x60,0x56, + 0x35,0x9c,0x50,0x56,0xe5,0x1,0xe0,0x58,0x1e,0xb8,0xd0,0x58,0xc4,0xe3,0xe0,0x59, + 0xfe,0x9a,0xd0,0x5a,0xa4,0xc5,0xe0,0x5b,0xde,0x7c,0xd0,0x5c,0x84,0xa7,0xe0,0x5d, + 0xbe,0x5e,0xd0,0x5e,0x64,0x89,0xe0,0x5f,0x9e,0x40,0xd0,0x60,0x4d,0xa6,0x60,0x61, + 0x87,0x5d,0x50,0x62,0x2d,0x88,0x60,0x63,0x67,0x3f,0x50,0x64,0xd,0x6a,0x60,0x65, + 0x47,0x21,0x50,0x65,0xed,0x4c,0x60,0x67,0x27,0x3,0x50,0x67,0xcd,0x2e,0x60,0x69, + 0x6,0xe5,0x50,0x69,0xad,0x10,0x60,0x6a,0xe6,0xc7,0x50,0x6b,0x96,0x2c,0xe0,0x6c, + 0xcf,0xe3,0xd0,0x6d,0x76,0xe,0xe0,0x6e,0xaf,0xc5,0xd0,0x6f,0x55,0xf0,0xe0,0x70, + 0x8f,0xa7,0xd0,0x71,0x35,0xd2,0xe0,0x72,0x6f,0x89,0xd0,0x73,0x15,0xb4,0xe0,0x74, + 0x4f,0x6b,0xd0,0x74,0xfe,0xd1,0x60,0x76,0x38,0x88,0x50,0x76,0xde,0xb3,0x60,0x78, + 0x18,0x6a,0x50,0x78,0xbe,0x95,0x60,0x79,0xf8,0x4c,0x50,0x7a,0x9e,0x77,0x60,0x7b, + 0xd8,0x2e,0x50,0x7c,0x7e,0x59,0x60,0x7d,0xb8,0x10,0x50,0x7e,0x5e,0x3b,0x60,0x7f, + 0x97,0xf2,0x50,0x0,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0xff,0xff,0xc3,0x3a,0x0,0x0,0xff,0xff,0xc7,0xc0,0x0, + 0x4,0xff,0xff,0xd5,0xd0,0x1,0x8,0x4c,0x4d,0x54,0x0,0x41,0x53,0x54,0x0,0x41, + 0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x82,0x0,0x0,0x0, + 0x3,0x0,0x0,0x0,0xc,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff, + 0xff,0xb4,0xc3,0x1d,0xe6,0x0,0x0,0x0,0x0,0x8,0x20,0xb3,0x60,0x0,0x0,0x0, + 0x0,0x9,0x10,0x96,0x50,0x0,0x0,0x0,0x0,0xa,0x0,0x95,0x60,0x0,0x0,0x0, + 0x0,0xa,0xf0,0x78,0x50,0x0,0x0,0x0,0x0,0xb,0xe0,0x77,0x60,0x0,0x0,0x0, + 0x0,0xc,0xd9,0x94,0xd0,0x0,0x0,0x0,0x0,0xd,0xc0,0x59,0x60,0x0,0x0,0x0, + 0x0,0xe,0xb9,0x76,0xd0,0x0,0x0,0x0,0x0,0xf,0xa9,0x75,0xe0,0x0,0x0,0x0, + 0x0,0x10,0x99,0x58,0xd0,0x0,0x0,0x0,0x0,0x11,0x89,0x57,0xe0,0x0,0x0,0x0, + 0x0,0x12,0x79,0x3a,0xd0,0x0,0x0,0x0,0x0,0x13,0x69,0x39,0xe0,0x0,0x0,0x0, + 0x0,0x14,0x59,0x1c,0xd0,0x0,0x0,0x0,0x0,0x15,0x49,0x1b,0xe0,0x0,0x0,0x0, + 0x0,0x16,0x38,0xfe,0xd0,0x0,0x0,0x0,0x0,0x17,0x28,0xfd,0xe0,0x0,0x0,0x0, + 0x0,0x18,0x22,0x1b,0x50,0x0,0x0,0x0,0x0,0x19,0x8,0xdf,0xe0,0x0,0x0,0x0, + 0x0,0x1a,0x1,0xfd,0x50,0x0,0x0,0x0,0x0,0x1a,0xf1,0xfc,0x60,0x0,0x0,0x0, + 0x0,0x1b,0xe1,0xdf,0x50,0x0,0x0,0x0,0x0,0x1c,0xd1,0xde,0x60,0x0,0x0,0x0, + 0x0,0x1d,0xc1,0xc1,0x50,0x0,0x0,0x0,0x0,0x1e,0xb1,0xc0,0x60,0x0,0x0,0x0, + 0x0,0x1f,0xa1,0xa3,0x50,0x0,0x0,0x0,0x0,0x20,0x75,0xf2,0xe0,0x0,0x0,0x0, + 0x0,0x21,0x81,0x85,0x50,0x0,0x0,0x0,0x0,0x22,0x55,0xd4,0xe0,0x0,0x0,0x0, + 0x0,0x23,0x6a,0xa1,0xd0,0x0,0x0,0x0,0x0,0x24,0x35,0xb6,0xe0,0x0,0x0,0x0, + 0x0,0x25,0x4a,0x83,0xd0,0x0,0x0,0x0,0x0,0x26,0x15,0x98,0xe0,0x0,0x0,0x0, + 0x0,0x27,0x2a,0x65,0xd0,0x0,0x0,0x0,0x0,0x27,0xfe,0xb5,0x60,0x0,0x0,0x0, + 0x0,0x29,0xa,0x47,0xd0,0x0,0x0,0x0,0x0,0x29,0xde,0x97,0x60,0x0,0x0,0x0, + 0x0,0x2a,0xea,0x29,0xd0,0x0,0x0,0x0,0x0,0x2b,0xbe,0x79,0x60,0x0,0x0,0x0, + 0x0,0x2c,0xd3,0x46,0x50,0x0,0x0,0x0,0x0,0x2d,0x9e,0x5b,0x60,0x0,0x0,0x0, + 0x0,0x2e,0xb3,0x28,0x50,0x0,0x0,0x0,0x0,0x2f,0x7e,0x3d,0x60,0x0,0x0,0x0, + 0x0,0x30,0x93,0xa,0x50,0x0,0x0,0x0,0x0,0x31,0x67,0x59,0xe0,0x0,0x0,0x0, + 0x0,0x32,0x72,0xec,0x50,0x0,0x0,0x0,0x0,0x33,0x47,0x3b,0xe0,0x0,0x0,0x0, + 0x0,0x34,0x52,0xce,0x50,0x0,0x0,0x0,0x0,0x35,0x27,0x1d,0xe0,0x0,0x0,0x0, + 0x0,0x36,0x32,0xb0,0x50,0x0,0x0,0x0,0x0,0x37,0x6,0xff,0xe0,0x0,0x0,0x0, + 0x0,0x38,0x1b,0xcc,0xd0,0x0,0x0,0x0,0x0,0x38,0xe6,0xe1,0xe0,0x0,0x0,0x0, + 0x0,0x39,0xfb,0xae,0xd0,0x0,0x0,0x0,0x0,0x3a,0xc6,0xc3,0xe0,0x0,0x0,0x0, + 0x0,0x3b,0xdb,0x90,0xd0,0x0,0x0,0x0,0x0,0x3c,0xaf,0xe0,0x60,0x0,0x0,0x0, + 0x0,0x3d,0xbb,0x72,0xd0,0x0,0x0,0x0,0x0,0x3e,0x8f,0xc2,0x60,0x0,0x0,0x0, + 0x0,0x3f,0x9b,0x54,0xd0,0x0,0x0,0x0,0x0,0x40,0x6f,0xa4,0x60,0x0,0x0,0x0, + 0x0,0x41,0x84,0x71,0x50,0x0,0x0,0x0,0x0,0x42,0x4f,0x86,0x60,0x0,0x0,0x0, + 0x0,0x43,0x64,0x53,0x50,0x0,0x0,0x0,0x0,0x44,0x2f,0x68,0x60,0x0,0x0,0x0, + 0x0,0x45,0x44,0x35,0x50,0x0,0x0,0x0,0x0,0x45,0xf3,0x9a,0xe0,0x0,0x0,0x0, + 0x0,0x47,0x2d,0x51,0xd0,0x0,0x0,0x0,0x0,0x47,0xd3,0x7c,0xe0,0x0,0x0,0x0, + 0x0,0x49,0xd,0x33,0xd0,0x0,0x0,0x0,0x0,0x49,0xb3,0x5e,0xe0,0x0,0x0,0x0, + 0x0,0x4a,0xed,0x15,0xd0,0x0,0x0,0x0,0x0,0x4b,0x9c,0x7b,0x60,0x0,0x0,0x0, + 0x0,0x4c,0xd6,0x32,0x50,0x0,0x0,0x0,0x0,0x4d,0x7c,0x5d,0x60,0x0,0x0,0x0, + 0x0,0x4e,0xb6,0x14,0x50,0x0,0x0,0x0,0x0,0x4f,0x5c,0x3f,0x60,0x0,0x0,0x0, + 0x0,0x50,0x95,0xf6,0x50,0x0,0x0,0x0,0x0,0x51,0x3c,0x21,0x60,0x0,0x0,0x0, + 0x0,0x52,0x75,0xd8,0x50,0x0,0x0,0x0,0x0,0x53,0x1c,0x3,0x60,0x0,0x0,0x0, + 0x0,0x54,0x55,0xba,0x50,0x0,0x0,0x0,0x0,0x54,0xfb,0xe5,0x60,0x0,0x0,0x0, + 0x0,0x56,0x35,0x9c,0x50,0x0,0x0,0x0,0x0,0x56,0xe5,0x1,0xe0,0x0,0x0,0x0, + 0x0,0x58,0x1e,0xb8,0xd0,0x0,0x0,0x0,0x0,0x58,0xc4,0xe3,0xe0,0x0,0x0,0x0, + 0x0,0x59,0xfe,0x9a,0xd0,0x0,0x0,0x0,0x0,0x5a,0xa4,0xc5,0xe0,0x0,0x0,0x0, + 0x0,0x5b,0xde,0x7c,0xd0,0x0,0x0,0x0,0x0,0x5c,0x84,0xa7,0xe0,0x0,0x0,0x0, + 0x0,0x5d,0xbe,0x5e,0xd0,0x0,0x0,0x0,0x0,0x5e,0x64,0x89,0xe0,0x0,0x0,0x0, + 0x0,0x5f,0x9e,0x40,0xd0,0x0,0x0,0x0,0x0,0x60,0x4d,0xa6,0x60,0x0,0x0,0x0, + 0x0,0x61,0x87,0x5d,0x50,0x0,0x0,0x0,0x0,0x62,0x2d,0x88,0x60,0x0,0x0,0x0, + 0x0,0x63,0x67,0x3f,0x50,0x0,0x0,0x0,0x0,0x64,0xd,0x6a,0x60,0x0,0x0,0x0, + 0x0,0x65,0x47,0x21,0x50,0x0,0x0,0x0,0x0,0x65,0xed,0x4c,0x60,0x0,0x0,0x0, + 0x0,0x67,0x27,0x3,0x50,0x0,0x0,0x0,0x0,0x67,0xcd,0x2e,0x60,0x0,0x0,0x0, + 0x0,0x69,0x6,0xe5,0x50,0x0,0x0,0x0,0x0,0x69,0xad,0x10,0x60,0x0,0x0,0x0, + 0x0,0x6a,0xe6,0xc7,0x50,0x0,0x0,0x0,0x0,0x6b,0x96,0x2c,0xe0,0x0,0x0,0x0, + 0x0,0x6c,0xcf,0xe3,0xd0,0x0,0x0,0x0,0x0,0x6d,0x76,0xe,0xe0,0x0,0x0,0x0, + 0x0,0x6e,0xaf,0xc5,0xd0,0x0,0x0,0x0,0x0,0x6f,0x55,0xf0,0xe0,0x0,0x0,0x0, + 0x0,0x70,0x8f,0xa7,0xd0,0x0,0x0,0x0,0x0,0x71,0x35,0xd2,0xe0,0x0,0x0,0x0, + 0x0,0x72,0x6f,0x89,0xd0,0x0,0x0,0x0,0x0,0x73,0x15,0xb4,0xe0,0x0,0x0,0x0, + 0x0,0x74,0x4f,0x6b,0xd0,0x0,0x0,0x0,0x0,0x74,0xfe,0xd1,0x60,0x0,0x0,0x0, + 0x0,0x76,0x38,0x88,0x50,0x0,0x0,0x0,0x0,0x76,0xde,0xb3,0x60,0x0,0x0,0x0, + 0x0,0x78,0x18,0x6a,0x50,0x0,0x0,0x0,0x0,0x78,0xbe,0x95,0x60,0x0,0x0,0x0, + 0x0,0x79,0xf8,0x4c,0x50,0x0,0x0,0x0,0x0,0x7a,0x9e,0x77,0x60,0x0,0x0,0x0, + 0x0,0x7b,0xd8,0x2e,0x50,0x0,0x0,0x0,0x0,0x7c,0x7e,0x59,0x60,0x0,0x0,0x0, + 0x0,0x7d,0xb8,0x10,0x50,0x0,0x0,0x0,0x0,0x7e,0x5e,0x3b,0x60,0x0,0x0,0x0, + 0x0,0x7f,0x97,0xf2,0x50,0x0,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0xff,0xff,0xc3,0x3a,0x0,0x0,0xff,0xff,0xc7, + 0xc0,0x0,0x4,0xff,0xff,0xd5,0xd0,0x1,0x8,0x4c,0x4d,0x54,0x0,0x41,0x53,0x54, + 0x0,0x41,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x41,0x53,0x54,0x34, + 0x41,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31, + 0x2e,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Atlantic/St_Helena + 0x0,0x0,0x0,0xaa, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x80,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x26,0x80,0x0,0x0,0x0,0x9e, - 0xb9,0x87,0xfe,0x9f,0x84,0x8e,0xfe,0xa0,0x88,0x46,0x7e,0xa0,0xcb,0x82,0xfe,0xad, - 0xe7,0xf1,0xde,0xc8,0xaf,0x64,0x60,0xca,0x62,0x65,0x50,0xcc,0xe7,0x4b,0x10,0xcd, - 0xa9,0x17,0x90,0xce,0xa2,0x43,0x10,0xcf,0x92,0x34,0x10,0xd0,0x82,0x25,0x10,0xd0, - 0x90,0x89,0x70,0x15,0x27,0xa7,0xd0,0x16,0x18,0xdc,0x40,0x17,0x8,0xdb,0x50,0x17, - 0xfa,0xf,0xc0,0x18,0xea,0xe,0xd0,0x19,0xdb,0x43,0x40,0x1a,0xcc,0x93,0xd0,0x1b, - 0xbc,0xa0,0xf0,0x1c,0xac,0x91,0xf0,0x1d,0x9c,0x82,0xf0,0x1e,0x8c,0x73,0xf0,0x1f, - 0x7c,0x64,0xf0,0x20,0x6c,0x55,0xf0,0x21,0x5c,0x46,0xf0,0x22,0x4c,0x37,0xf0,0x23, - 0x3c,0x28,0xf0,0x24,0x2c,0x19,0xf0,0x25,0x1c,0x19,0x0,0x26,0xc,0xa,0x0,0x27, - 0x5,0x35,0x80,0x27,0xf5,0x26,0x80,0x28,0xe5,0x17,0x80,0x29,0xd5,0x8,0x80,0x2a, - 0xc4,0xf9,0x80,0x2b,0xb4,0xea,0x80,0x2c,0xa4,0xdb,0x80,0x2d,0x94,0xcc,0x80,0x2e, - 0x84,0xbd,0x80,0x2f,0x74,0xae,0x80,0x30,0x64,0x9f,0x80,0x31,0x5d,0xcb,0x0,0x32, - 0x4d,0xbc,0x0,0x32,0xe3,0xea,0xe0,0x33,0x3d,0xbb,0x10,0x34,0x52,0x96,0x10,0x35, - 0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x38, - 0xba,0xef,0xe0,0x3a,0xbd,0x43,0x10,0x3b,0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d, + 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x92, + 0xe6,0x92,0x48,0x0,0x1,0xff,0xff,0xfc,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x4,0x4c,0x4d,0x54,0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, + 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0x92,0xe6,0x92,0x48,0x0,0x1,0xff,0xff,0xfc,0x38,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x4c,0x4d,0x54,0x0,0x47,0x4d,0x54,0x0,0x0, + 0x0,0x0,0x0,0xa,0x47,0x4d,0x54,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Atlantic/Faeroe + 0x0,0x0,0x7,0x25, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x74,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0x8b, + 0x6d,0xa4,0x58,0x15,0x23,0xeb,0x90,0x16,0x13,0xdc,0x90,0x17,0x3,0xcd,0x90,0x17, + 0xf3,0xbe,0x90,0x18,0xe3,0xaf,0x90,0x19,0xd3,0xa0,0x90,0x1a,0xc3,0x91,0x90,0x1b, + 0xbc,0xbd,0x10,0x1c,0xac,0xae,0x10,0x1d,0x9c,0x9f,0x10,0x1e,0x8c,0x90,0x10,0x1f, + 0x7c,0x81,0x10,0x20,0x6c,0x72,0x10,0x21,0x5c,0x63,0x10,0x22,0x4c,0x54,0x10,0x23, + 0x3c,0x45,0x10,0x24,0x2c,0x36,0x10,0x25,0x1c,0x27,0x10,0x26,0xc,0x18,0x10,0x27, + 0x5,0x43,0x90,0x27,0xf5,0x34,0x90,0x28,0xe5,0x25,0x90,0x29,0xd5,0x16,0x90,0x2a, + 0xc5,0x7,0x90,0x2b,0xb4,0xf8,0x90,0x2c,0xa4,0xe9,0x90,0x2d,0x94,0xda,0x90,0x2e, + 0x84,0xcb,0x90,0x2f,0x74,0xbc,0x90,0x30,0x64,0xad,0x90,0x31,0x5d,0xd9,0x10,0x32, + 0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34,0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36, + 0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39, + 0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b,0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d, 0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f,0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41, 0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43,0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45, 0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49, @@ -16032,1447 +13455,1020 @@ static const unsigned char qt_resource_data[] = { 0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74,0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76, 0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79, 0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d, - 0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x1,0x2,0x1,0x2,0x1, - 0x3,0x4,0x7,0x5,0x6,0x5,0x6,0x5,0x4,0x8,0x4,0x8,0x4,0x8,0x4,0x8, - 0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xb,0xc,0xb,0xc,0xb,0xc,0xb, - 0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0x3,0xd,0xe,0xd,0xe,0xd,0xe, - 0x3,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd, - 0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd, - 0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd, - 0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd, - 0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0x0,0x0,0x16,0xa2,0x0, - 0x0,0x0,0x0,0x16,0xa2,0x0,0x4,0x0,0x0,0x24,0xb2,0x1,0x8,0x0,0x0,0x1c, - 0x20,0x0,0xc,0x0,0x0,0x2a,0x30,0x0,0x10,0x0,0x0,0xe,0x10,0x0,0x14,0x0, - 0x0,0x1c,0x20,0x1,0x18,0x0,0x0,0x1c,0x20,0x1,0x18,0x0,0x0,0x38,0x40,0x1, - 0x1d,0x0,0x0,0x2a,0x30,0x0,0x10,0x0,0x0,0x38,0x40,0x1,0x1d,0x0,0x0,0x2a, - 0x30,0x1,0x21,0x0,0x0,0x1c,0x20,0x0,0xc,0x0,0x0,0x2a,0x30,0x1,0x21,0x0, - 0x0,0x1c,0x20,0x0,0xc,0x4c,0x4d,0x54,0x0,0x52,0x4d,0x54,0x0,0x4c,0x53,0x54, - 0x0,0x45,0x45,0x54,0x0,0x4d,0x53,0x4b,0x0,0x43,0x45,0x54,0x0,0x43,0x45,0x53, - 0x54,0x0,0x4d,0x53,0x44,0x0,0x45,0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0, - 0x1,0x1,0x0,0x0,0x1,0x1,0x1,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x54,0x5a,0x69,0x66,0x32,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0xf,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x81,0x0,0x0,0x0, - 0xf,0x0,0x0,0x0,0x26,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff, - 0xff,0x56,0xb6,0xcd,0x5e,0xff,0xff,0xff,0xff,0x9e,0xb9,0x87,0xfe,0xff,0xff,0xff, - 0xff,0x9f,0x84,0x8e,0xfe,0xff,0xff,0xff,0xff,0xa0,0x88,0x46,0x7e,0xff,0xff,0xff, - 0xff,0xa0,0xcb,0x82,0xfe,0xff,0xff,0xff,0xff,0xad,0xe7,0xf1,0xde,0xff,0xff,0xff, - 0xff,0xc8,0xaf,0x64,0x60,0xff,0xff,0xff,0xff,0xca,0x62,0x65,0x50,0xff,0xff,0xff, - 0xff,0xcc,0xe7,0x4b,0x10,0xff,0xff,0xff,0xff,0xcd,0xa9,0x17,0x90,0xff,0xff,0xff, - 0xff,0xce,0xa2,0x43,0x10,0xff,0xff,0xff,0xff,0xcf,0x92,0x34,0x10,0xff,0xff,0xff, - 0xff,0xd0,0x82,0x25,0x10,0xff,0xff,0xff,0xff,0xd0,0x90,0x89,0x70,0x0,0x0,0x0, - 0x0,0x15,0x27,0xa7,0xd0,0x0,0x0,0x0,0x0,0x16,0x18,0xdc,0x40,0x0,0x0,0x0, - 0x0,0x17,0x8,0xdb,0x50,0x0,0x0,0x0,0x0,0x17,0xfa,0xf,0xc0,0x0,0x0,0x0, - 0x0,0x18,0xea,0xe,0xd0,0x0,0x0,0x0,0x0,0x19,0xdb,0x43,0x40,0x0,0x0,0x0, - 0x0,0x1a,0xcc,0x93,0xd0,0x0,0x0,0x0,0x0,0x1b,0xbc,0xa0,0xf0,0x0,0x0,0x0, - 0x0,0x1c,0xac,0x91,0xf0,0x0,0x0,0x0,0x0,0x1d,0x9c,0x82,0xf0,0x0,0x0,0x0, - 0x0,0x1e,0x8c,0x73,0xf0,0x0,0x0,0x0,0x0,0x1f,0x7c,0x64,0xf0,0x0,0x0,0x0, - 0x0,0x20,0x6c,0x55,0xf0,0x0,0x0,0x0,0x0,0x21,0x5c,0x46,0xf0,0x0,0x0,0x0, - 0x0,0x22,0x4c,0x37,0xf0,0x0,0x0,0x0,0x0,0x23,0x3c,0x28,0xf0,0x0,0x0,0x0, - 0x0,0x24,0x2c,0x19,0xf0,0x0,0x0,0x0,0x0,0x25,0x1c,0x19,0x0,0x0,0x0,0x0, - 0x0,0x26,0xc,0xa,0x0,0x0,0x0,0x0,0x0,0x27,0x5,0x35,0x80,0x0,0x0,0x0, - 0x0,0x27,0xf5,0x26,0x80,0x0,0x0,0x0,0x0,0x28,0xe5,0x17,0x80,0x0,0x0,0x0, - 0x0,0x29,0xd5,0x8,0x80,0x0,0x0,0x0,0x0,0x2a,0xc4,0xf9,0x80,0x0,0x0,0x0, - 0x0,0x2b,0xb4,0xea,0x80,0x0,0x0,0x0,0x0,0x2c,0xa4,0xdb,0x80,0x0,0x0,0x0, - 0x0,0x2d,0x94,0xcc,0x80,0x0,0x0,0x0,0x0,0x2e,0x84,0xbd,0x80,0x0,0x0,0x0, - 0x0,0x2f,0x74,0xae,0x80,0x0,0x0,0x0,0x0,0x30,0x64,0x9f,0x80,0x0,0x0,0x0, - 0x0,0x31,0x5d,0xcb,0x0,0x0,0x0,0x0,0x0,0x32,0x4d,0xbc,0x0,0x0,0x0,0x0, - 0x0,0x32,0xe3,0xea,0xe0,0x0,0x0,0x0,0x0,0x33,0x3d,0xbb,0x10,0x0,0x0,0x0, - 0x0,0x34,0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d,0x9d,0x10,0x0,0x0,0x0, - 0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd,0x7f,0x10,0x0,0x0,0x0, - 0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xba,0xef,0xe0,0x0,0x0,0x0, - 0x0,0x3a,0xbd,0x43,0x10,0x0,0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0, - 0x0,0x3c,0xa6,0x5f,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0, - 0x0,0x3e,0x86,0x41,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0, - 0x0,0x40,0x66,0x23,0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0, - 0x0,0x42,0x46,0x5,0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0, - 0x0,0x44,0x25,0xe7,0x90,0x0,0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0, - 0x0,0x46,0x5,0xc9,0x90,0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0, - 0x0,0x47,0xee,0xe6,0x10,0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0, - 0x0,0x49,0xce,0xc8,0x10,0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0, - 0x0,0x4b,0xae,0xaa,0x10,0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0, - 0x0,0x4d,0x8e,0x8c,0x10,0x0,0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0, - 0x0,0x4f,0x6e,0x6e,0x10,0x0,0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0, - 0x0,0x51,0x57,0x8a,0x90,0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0, - 0x0,0x53,0x37,0x6c,0x90,0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0, - 0x0,0x55,0x17,0x4e,0x90,0x0,0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0, - 0x0,0x56,0xf7,0x30,0x90,0x0,0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0, - 0x0,0x58,0xd7,0x12,0x90,0x0,0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0, - 0x0,0x5a,0xb6,0xf4,0x90,0x0,0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0, - 0x0,0x5c,0xa0,0x11,0x10,0x0,0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0, - 0x0,0x5e,0x7f,0xf3,0x10,0x0,0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0, - 0x0,0x60,0x5f,0xd5,0x10,0x0,0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0, - 0x0,0x62,0x3f,0xb7,0x10,0x0,0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0, - 0x0,0x64,0x1f,0x99,0x10,0x0,0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0, - 0x0,0x66,0x8,0xb5,0x90,0x0,0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0, - 0x0,0x67,0xe8,0x97,0x90,0x0,0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0, - 0x0,0x69,0xc8,0x79,0x90,0x0,0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0, - 0x0,0x6b,0xa8,0x5b,0x90,0x0,0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0, - 0x0,0x6d,0x88,0x3d,0x90,0x0,0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0, - 0x0,0x6f,0x68,0x1f,0x90,0x0,0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0, - 0x0,0x71,0x51,0x3c,0x10,0x0,0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0, - 0x0,0x73,0x31,0x1e,0x10,0x0,0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0, - 0x0,0x75,0x11,0x0,0x10,0x0,0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0, - 0x0,0x76,0xf0,0xe2,0x10,0x0,0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0, - 0x0,0x78,0xd0,0xc4,0x10,0x0,0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0, - 0x0,0x7a,0xb0,0xa6,0x10,0x0,0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0, - 0x0,0x7c,0x99,0xc2,0x90,0x0,0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0, - 0x0,0x7e,0x79,0xa4,0x90,0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x1,0x2, - 0x1,0x2,0x1,0x3,0x4,0x7,0x5,0x6,0x5,0x6,0x5,0x4,0x8,0x4,0x8,0x4, - 0x8,0x4,0x8,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xb,0xc,0xb,0xc, - 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0x3,0xd,0xe,0xd, - 0xe,0xd,0xe,0x3,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe, - 0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe, - 0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe, - 0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe, - 0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0x0,0x0, - 0x16,0xa2,0x0,0x0,0x0,0x0,0x16,0xa2,0x0,0x4,0x0,0x0,0x24,0xb2,0x1,0x8, - 0x0,0x0,0x1c,0x20,0x0,0xc,0x0,0x0,0x2a,0x30,0x0,0x10,0x0,0x0,0xe,0x10, - 0x0,0x14,0x0,0x0,0x1c,0x20,0x1,0x18,0x0,0x0,0x1c,0x20,0x1,0x18,0x0,0x0, - 0x38,0x40,0x1,0x1d,0x0,0x0,0x2a,0x30,0x0,0x10,0x0,0x0,0x38,0x40,0x1,0x1d, - 0x0,0x0,0x2a,0x30,0x1,0x21,0x0,0x0,0x1c,0x20,0x0,0xc,0x0,0x0,0x2a,0x30, - 0x1,0x21,0x0,0x0,0x1c,0x20,0x0,0xc,0x4c,0x4d,0x54,0x0,0x52,0x4d,0x54,0x0, - 0x4c,0x53,0x54,0x0,0x45,0x45,0x54,0x0,0x4d,0x53,0x4b,0x0,0x43,0x45,0x54,0x0, - 0x43,0x45,0x53,0x54,0x0,0x4d,0x53,0x44,0x0,0x45,0x45,0x53,0x54,0x0,0x0,0x0, - 0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x1,0x1,0x1,0x1,0x1,0x1,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0xa,0x45,0x45,0x54, - 0x2d,0x32,0x45,0x45,0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2f,0x33,0x2c, - 0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30,0x2f,0x34,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Belgrade - 0x0,0x0,0x7,0xa5, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x79,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0xca, - 0x2,0x35,0xe0,0xcc,0xe7,0x4b,0x10,0xcd,0xa9,0x17,0x90,0xce,0xa2,0x43,0x10,0xcf, - 0x92,0x34,0x10,0xd0,0x82,0x25,0x10,0xd0,0xfa,0x1,0x70,0xd1,0xa1,0x8c,0x10,0xd2, - 0x4e,0x40,0x90,0x18,0x45,0x5f,0x70,0x18,0xe3,0xaf,0x90,0x19,0xd3,0xa0,0x90,0x1a, - 0xc3,0x91,0x90,0x1b,0xbc,0xbd,0x10,0x1c,0xac,0xae,0x10,0x1d,0x9c,0x9f,0x10,0x1e, - 0x8c,0x90,0x10,0x1f,0x7c,0x81,0x10,0x20,0x6c,0x72,0x10,0x21,0x5c,0x63,0x10,0x22, - 0x4c,0x54,0x10,0x23,0x3c,0x45,0x10,0x24,0x2c,0x36,0x10,0x25,0x1c,0x27,0x10,0x26, - 0xc,0x18,0x10,0x27,0x5,0x43,0x90,0x27,0xf5,0x34,0x90,0x28,0xe5,0x25,0x90,0x29, - 0xd5,0x16,0x90,0x2a,0xc5,0x7,0x90,0x2b,0xb4,0xf8,0x90,0x2c,0xa4,0xe9,0x90,0x2d, - 0x94,0xda,0x90,0x2e,0x84,0xcb,0x90,0x2f,0x74,0xbc,0x90,0x30,0x64,0xad,0x90,0x31, - 0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34,0x52,0x96,0x10,0x35, - 0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x38, - 0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b,0xdb,0x58,0x90,0x3c, - 0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f,0x9b,0x1c,0x90,0x40, - 0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43,0x64,0x1b,0x10,0x44, - 0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47, - 0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b, - 0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e,0xac,0xa1,0x90,0x4f, - 0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53, - 0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56,0x2c,0x29,0x90,0x56, - 0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59,0xf5,0x28,0x10,0x5a, - 0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d,0xb4,0xec,0x10,0x5e, - 0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61,0x7d,0xea,0x90,0x62, - 0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65,0x3d,0xae,0x90,0x66, - 0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68,0xfd,0x72,0x90,0x69, - 0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c,0xc6,0x71,0x10,0x6d, - 0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70,0x86,0x35,0x10,0x71, - 0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74,0x45,0xf9,0x10,0x75, - 0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78, - 0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c, - 0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x1, - 0x4,0x2,0x3,0x2,0x3,0x2,0x1,0x3,0x2,0x1,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x0,0x0,0x13,0x38,0x0,0x0,0x0,0x0, - 0xe,0x10,0x0,0x4,0x0,0x0,0xe,0x10,0x0,0x4,0x0,0x0,0x1c,0x20,0x1,0x8, - 0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0xe,0x10, - 0x0,0x4,0x4c,0x4d,0x54,0x0,0x43,0x45,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x0, - 0x0,0x1,0x1,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x54,0x5a,0x69, - 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x7a,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0xd,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0x5e,0x3c,0xf0,0x48,0xff,0xff,0xff,0xff,0xca,0x2,0x35, - 0xe0,0xff,0xff,0xff,0xff,0xcc,0xe7,0x4b,0x10,0xff,0xff,0xff,0xff,0xcd,0xa9,0x17, - 0x90,0xff,0xff,0xff,0xff,0xce,0xa2,0x43,0x10,0xff,0xff,0xff,0xff,0xcf,0x92,0x34, - 0x10,0xff,0xff,0xff,0xff,0xd0,0x82,0x25,0x10,0xff,0xff,0xff,0xff,0xd0,0xfa,0x1, - 0x70,0xff,0xff,0xff,0xff,0xd1,0xa1,0x8c,0x10,0xff,0xff,0xff,0xff,0xd2,0x4e,0x40, - 0x90,0x0,0x0,0x0,0x0,0x18,0x45,0x5f,0x70,0x0,0x0,0x0,0x0,0x18,0xe3,0xaf, - 0x90,0x0,0x0,0x0,0x0,0x19,0xd3,0xa0,0x90,0x0,0x0,0x0,0x0,0x1a,0xc3,0x91, - 0x90,0x0,0x0,0x0,0x0,0x1b,0xbc,0xbd,0x10,0x0,0x0,0x0,0x0,0x1c,0xac,0xae, - 0x10,0x0,0x0,0x0,0x0,0x1d,0x9c,0x9f,0x10,0x0,0x0,0x0,0x0,0x1e,0x8c,0x90, - 0x10,0x0,0x0,0x0,0x0,0x1f,0x7c,0x81,0x10,0x0,0x0,0x0,0x0,0x20,0x6c,0x72, - 0x10,0x0,0x0,0x0,0x0,0x21,0x5c,0x63,0x10,0x0,0x0,0x0,0x0,0x22,0x4c,0x54, - 0x10,0x0,0x0,0x0,0x0,0x23,0x3c,0x45,0x10,0x0,0x0,0x0,0x0,0x24,0x2c,0x36, - 0x10,0x0,0x0,0x0,0x0,0x25,0x1c,0x27,0x10,0x0,0x0,0x0,0x0,0x26,0xc,0x18, - 0x10,0x0,0x0,0x0,0x0,0x27,0x5,0x43,0x90,0x0,0x0,0x0,0x0,0x27,0xf5,0x34, - 0x90,0x0,0x0,0x0,0x0,0x28,0xe5,0x25,0x90,0x0,0x0,0x0,0x0,0x29,0xd5,0x16, - 0x90,0x0,0x0,0x0,0x0,0x2a,0xc5,0x7,0x90,0x0,0x0,0x0,0x0,0x2b,0xb4,0xf8, - 0x90,0x0,0x0,0x0,0x0,0x2c,0xa4,0xe9,0x90,0x0,0x0,0x0,0x0,0x2d,0x94,0xda, - 0x90,0x0,0x0,0x0,0x0,0x2e,0x84,0xcb,0x90,0x0,0x0,0x0,0x0,0x2f,0x74,0xbc, - 0x90,0x0,0x0,0x0,0x0,0x30,0x64,0xad,0x90,0x0,0x0,0x0,0x0,0x31,0x5d,0xd9, - 0x10,0x0,0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d,0xbb, - 0x10,0x0,0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d,0x9d, - 0x10,0x0,0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd,0x7f, - 0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd,0x61, - 0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd,0x43, - 0x10,0x0,0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f, - 0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86,0x41, - 0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66,0x23, - 0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46,0x5, - 0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25,0xe7, - 0x90,0x0,0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5,0xc9, - 0x90,0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee,0xe6, - 0x10,0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce,0xc8, - 0x10,0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae,0xaa, - 0x10,0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c, - 0x10,0x0,0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e, - 0x10,0x0,0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57,0x8a, - 0x90,0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37,0x6c, - 0x90,0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17,0x4e, - 0x90,0x0,0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7,0x30, - 0x90,0x0,0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7,0x12, - 0x90,0x0,0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4, - 0x90,0x0,0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0,0x11, - 0x10,0x0,0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3, - 0x10,0x0,0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f,0xd5, - 0x10,0x0,0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f,0xb7, - 0x10,0x0,0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f,0x99, - 0x10,0x0,0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8,0xb5, - 0x90,0x0,0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8,0x97, - 0x90,0x0,0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8,0x79, - 0x90,0x0,0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b, - 0x90,0x0,0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88,0x3d, - 0x90,0x0,0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68,0x1f, - 0x90,0x0,0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51,0x3c, - 0x10,0x0,0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31,0x1e, - 0x10,0x0,0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11,0x0, - 0x10,0x0,0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0,0xe2, - 0x10,0x0,0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0,0xc4, - 0x10,0x0,0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6, - 0x10,0x0,0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99,0xc2, - 0x90,0x0,0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79,0xa4, - 0x90,0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x1,0x4,0x2,0x3,0x2,0x3, - 0x2,0x1,0x3,0x2,0x1,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x0,0x0,0x13,0x38,0x0,0x0,0x0,0x0,0xe,0x10,0x0,0x4,0x0, - 0x0,0xe,0x10,0x0,0x4,0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0x1c,0x20,0x1, - 0x8,0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0xe,0x10,0x0,0x4,0x4c,0x4d,0x54, - 0x0,0x43,0x45,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x0,0x0,0x1,0x1,0x0,0x1, - 0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0xa,0x43,0x45,0x54,0x2d,0x31,0x43,0x45, - 0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e, - 0x30,0x2f,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Kirov - 0x0,0x0,0x4,0x8f, + 0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x0,0x1,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0xff, + 0xff,0xf9,0xa8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0xe,0x10,0x1, + 0x8,0x0,0x0,0x0,0x0,0x0,0x4,0x4c,0x4d,0x54,0x0,0x57,0x45,0x54,0x0,0x57, + 0x45,0x53,0x54,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x1,0x1,0x54,0x5a,0x69,0x66, + 0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x74, + 0x0,0x0,0x0,0x4,0x0,0x0,0x0,0xd,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0x8b,0x6d,0xa4,0x58,0x0,0x0,0x0,0x0,0x15,0x23,0xeb,0x90, + 0x0,0x0,0x0,0x0,0x16,0x13,0xdc,0x90,0x0,0x0,0x0,0x0,0x17,0x3,0xcd,0x90, + 0x0,0x0,0x0,0x0,0x17,0xf3,0xbe,0x90,0x0,0x0,0x0,0x0,0x18,0xe3,0xaf,0x90, + 0x0,0x0,0x0,0x0,0x19,0xd3,0xa0,0x90,0x0,0x0,0x0,0x0,0x1a,0xc3,0x91,0x90, + 0x0,0x0,0x0,0x0,0x1b,0xbc,0xbd,0x10,0x0,0x0,0x0,0x0,0x1c,0xac,0xae,0x10, + 0x0,0x0,0x0,0x0,0x1d,0x9c,0x9f,0x10,0x0,0x0,0x0,0x0,0x1e,0x8c,0x90,0x10, + 0x0,0x0,0x0,0x0,0x1f,0x7c,0x81,0x10,0x0,0x0,0x0,0x0,0x20,0x6c,0x72,0x10, + 0x0,0x0,0x0,0x0,0x21,0x5c,0x63,0x10,0x0,0x0,0x0,0x0,0x22,0x4c,0x54,0x10, + 0x0,0x0,0x0,0x0,0x23,0x3c,0x45,0x10,0x0,0x0,0x0,0x0,0x24,0x2c,0x36,0x10, + 0x0,0x0,0x0,0x0,0x25,0x1c,0x27,0x10,0x0,0x0,0x0,0x0,0x26,0xc,0x18,0x10, + 0x0,0x0,0x0,0x0,0x27,0x5,0x43,0x90,0x0,0x0,0x0,0x0,0x27,0xf5,0x34,0x90, + 0x0,0x0,0x0,0x0,0x28,0xe5,0x25,0x90,0x0,0x0,0x0,0x0,0x29,0xd5,0x16,0x90, + 0x0,0x0,0x0,0x0,0x2a,0xc5,0x7,0x90,0x0,0x0,0x0,0x0,0x2b,0xb4,0xf8,0x90, + 0x0,0x0,0x0,0x0,0x2c,0xa4,0xe9,0x90,0x0,0x0,0x0,0x0,0x2d,0x94,0xda,0x90, + 0x0,0x0,0x0,0x0,0x2e,0x84,0xcb,0x90,0x0,0x0,0x0,0x0,0x2f,0x74,0xbc,0x90, + 0x0,0x0,0x0,0x0,0x30,0x64,0xad,0x90,0x0,0x0,0x0,0x0,0x31,0x5d,0xd9,0x10, + 0x0,0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d,0xbb,0x10, + 0x0,0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d,0x9d,0x10, + 0x0,0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd,0x7f,0x10, + 0x0,0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd,0x61,0x10, + 0x0,0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd,0x43,0x10, + 0x0,0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f,0x90, + 0x0,0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86,0x41,0x90, + 0x0,0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66,0x23,0x90, + 0x0,0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46,0x5,0x90, + 0x0,0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25,0xe7,0x90, + 0x0,0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5,0xc9,0x90, + 0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee,0xe6,0x10, + 0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce,0xc8,0x10, + 0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae,0xaa,0x10, + 0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c,0x10, + 0x0,0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e,0x10, + 0x0,0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57,0x8a,0x90, + 0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37,0x6c,0x90, + 0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17,0x4e,0x90, + 0x0,0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7,0x30,0x90, + 0x0,0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7,0x12,0x90, + 0x0,0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4,0x90, + 0x0,0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0,0x11,0x10, + 0x0,0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3,0x10, + 0x0,0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f,0xd5,0x10, + 0x0,0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f,0xb7,0x10, + 0x0,0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f,0x99,0x10, + 0x0,0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8,0xb5,0x90, + 0x0,0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8,0x97,0x90, + 0x0,0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8,0x79,0x90, + 0x0,0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b,0x90, + 0x0,0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88,0x3d,0x90, + 0x0,0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68,0x1f,0x90, + 0x0,0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51,0x3c,0x10, + 0x0,0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31,0x1e,0x10, + 0x0,0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11,0x0,0x10, + 0x0,0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0,0xe2,0x10, + 0x0,0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0,0xc4,0x10, + 0x0,0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6,0x10, + 0x0,0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99,0xc2,0x90, + 0x0,0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79,0xa4,0x90, + 0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x1,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0xff,0xff,0xf9,0xa8, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0xe,0x10,0x1,0x8,0x0,0x0, + 0x0,0x0,0x0,0x4,0x4c,0x4d,0x54,0x0,0x57,0x45,0x54,0x0,0x57,0x45,0x53,0x54, + 0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x1,0x1,0xa,0x57,0x45,0x54,0x30,0x57,0x45, + 0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2f,0x31,0x2c,0x4d,0x31,0x30,0x2e, + 0x35,0x2e,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Atlantic/Reykjavik + 0x0,0x0,0x4,0xa4, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x41,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x10,0x80,0x0,0x0,0x0,0xa1, - 0x0,0x39,0x80,0xb5,0xa4,0xb,0x50,0x15,0x27,0x99,0xc0,0x16,0x18,0xce,0x30,0x17, - 0x8,0xcd,0x40,0x17,0xfa,0x1,0xb0,0x18,0xea,0x0,0xc0,0x19,0xdb,0x35,0x30,0x1a, - 0xcc,0x85,0xc0,0x1b,0xbc,0x92,0xe0,0x1c,0xac,0x83,0xe0,0x1d,0x9c,0x74,0xe0,0x1e, - 0x8c,0x65,0xe0,0x1f,0x7c,0x56,0xe0,0x20,0x6c,0x47,0xe0,0x21,0x5c,0x38,0xe0,0x22, - 0x4c,0x29,0xe0,0x23,0x3c,0x1a,0xe0,0x24,0x2c,0xb,0xe0,0x25,0x1c,0xa,0xf0,0x26, - 0xb,0xfb,0xf0,0x27,0x5,0x27,0x70,0x27,0xf5,0x18,0x70,0x29,0xd4,0xec,0x60,0x2a, - 0xc4,0xeb,0x70,0x2b,0xb4,0xdc,0x70,0x2c,0xa4,0xcd,0x70,0x2d,0x94,0xbe,0x70,0x2e, - 0x84,0xaf,0x70,0x2f,0x74,0xa0,0x70,0x30,0x64,0x91,0x70,0x31,0x5d,0xbc,0xf0,0x32, - 0x72,0x97,0xf0,0x33,0x3d,0x9e,0xf0,0x34,0x52,0x79,0xf0,0x35,0x1d,0x80,0xf0,0x36, - 0x32,0x5b,0xf0,0x36,0xfd,0x62,0xf0,0x38,0x1b,0x78,0x70,0x38,0xdd,0x44,0xf0,0x39, - 0xfb,0x5a,0x70,0x3a,0xbd,0x26,0xf0,0x3b,0xdb,0x3c,0x70,0x3c,0xa6,0x43,0x70,0x3d, - 0xbb,0x1e,0x70,0x3e,0x86,0x25,0x70,0x3f,0x9b,0x0,0x70,0x40,0x66,0x7,0x70,0x41, - 0x84,0x1c,0xf0,0x42,0x45,0xe9,0x70,0x43,0x63,0xfe,0xf0,0x44,0x25,0xcb,0x70,0x45, - 0x43,0xe0,0xf0,0x46,0x5,0xad,0x70,0x47,0x23,0xc2,0xf0,0x47,0xee,0xc9,0xf0,0x49, - 0x3,0xa4,0xf0,0x49,0xce,0xab,0xf0,0x4a,0xe3,0x86,0xf0,0x4b,0xae,0x8d,0xf0,0x4c, - 0xcc,0xa3,0x70,0x4d,0x8e,0x6f,0xf0,0x54,0x4c,0x1d,0x60,0x7f,0xff,0xff,0xff,0x0, - 0x1,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x6,0x7,0x6,0x7,0x4,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, - 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, - 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x4,0x7,0x7, - 0x0,0x0,0x2e,0x98,0x0,0x0,0x0,0x0,0x2a,0x30,0x0,0x4,0x0,0x0,0x46,0x50, - 0x1,0x8,0x0,0x0,0x38,0x40,0x0,0xc,0x0,0x0,0x38,0x40,0x0,0xc,0x0,0x0, - 0x46,0x50,0x1,0x8,0x0,0x0,0x38,0x40,0x1,0xc,0x0,0x0,0x2a,0x30,0x0,0x4, - 0x4c,0x4d,0x54,0x0,0x2b,0x30,0x33,0x0,0x2b,0x30,0x35,0x0,0x2b,0x30,0x34,0x0, - 0x0,0x1,0x0,0x0,0x1,0x1,0x1,0x1,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0, - 0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x41,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x10,0xf8,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xa1,0x0,0x39,0x80,0xff,0xff,0xff,0xff, - 0xb5,0xa4,0xb,0x50,0x0,0x0,0x0,0x0,0x15,0x27,0x99,0xc0,0x0,0x0,0x0,0x0, - 0x16,0x18,0xce,0x30,0x0,0x0,0x0,0x0,0x17,0x8,0xcd,0x40,0x0,0x0,0x0,0x0, - 0x17,0xfa,0x1,0xb0,0x0,0x0,0x0,0x0,0x18,0xea,0x0,0xc0,0x0,0x0,0x0,0x0, - 0x19,0xdb,0x35,0x30,0x0,0x0,0x0,0x0,0x1a,0xcc,0x85,0xc0,0x0,0x0,0x0,0x0, - 0x1b,0xbc,0x92,0xe0,0x0,0x0,0x0,0x0,0x1c,0xac,0x83,0xe0,0x0,0x0,0x0,0x0, - 0x1d,0x9c,0x74,0xe0,0x0,0x0,0x0,0x0,0x1e,0x8c,0x65,0xe0,0x0,0x0,0x0,0x0, - 0x1f,0x7c,0x56,0xe0,0x0,0x0,0x0,0x0,0x20,0x6c,0x47,0xe0,0x0,0x0,0x0,0x0, - 0x21,0x5c,0x38,0xe0,0x0,0x0,0x0,0x0,0x22,0x4c,0x29,0xe0,0x0,0x0,0x0,0x0, - 0x23,0x3c,0x1a,0xe0,0x0,0x0,0x0,0x0,0x24,0x2c,0xb,0xe0,0x0,0x0,0x0,0x0, - 0x25,0x1c,0xa,0xf0,0x0,0x0,0x0,0x0,0x26,0xb,0xfb,0xf0,0x0,0x0,0x0,0x0, - 0x27,0x5,0x27,0x70,0x0,0x0,0x0,0x0,0x27,0xf5,0x18,0x70,0x0,0x0,0x0,0x0, - 0x29,0xd4,0xec,0x60,0x0,0x0,0x0,0x0,0x2a,0xc4,0xeb,0x70,0x0,0x0,0x0,0x0, - 0x2b,0xb4,0xdc,0x70,0x0,0x0,0x0,0x0,0x2c,0xa4,0xcd,0x70,0x0,0x0,0x0,0x0, - 0x2d,0x94,0xbe,0x70,0x0,0x0,0x0,0x0,0x2e,0x84,0xaf,0x70,0x0,0x0,0x0,0x0, - 0x2f,0x74,0xa0,0x70,0x0,0x0,0x0,0x0,0x30,0x64,0x91,0x70,0x0,0x0,0x0,0x0, - 0x31,0x5d,0xbc,0xf0,0x0,0x0,0x0,0x0,0x32,0x72,0x97,0xf0,0x0,0x0,0x0,0x0, - 0x33,0x3d,0x9e,0xf0,0x0,0x0,0x0,0x0,0x34,0x52,0x79,0xf0,0x0,0x0,0x0,0x0, - 0x35,0x1d,0x80,0xf0,0x0,0x0,0x0,0x0,0x36,0x32,0x5b,0xf0,0x0,0x0,0x0,0x0, - 0x36,0xfd,0x62,0xf0,0x0,0x0,0x0,0x0,0x38,0x1b,0x78,0x70,0x0,0x0,0x0,0x0, - 0x38,0xdd,0x44,0xf0,0x0,0x0,0x0,0x0,0x39,0xfb,0x5a,0x70,0x0,0x0,0x0,0x0, - 0x3a,0xbd,0x26,0xf0,0x0,0x0,0x0,0x0,0x3b,0xdb,0x3c,0x70,0x0,0x0,0x0,0x0, - 0x3c,0xa6,0x43,0x70,0x0,0x0,0x0,0x0,0x3d,0xbb,0x1e,0x70,0x0,0x0,0x0,0x0, - 0x3e,0x86,0x25,0x70,0x0,0x0,0x0,0x0,0x3f,0x9b,0x0,0x70,0x0,0x0,0x0,0x0, - 0x40,0x66,0x7,0x70,0x0,0x0,0x0,0x0,0x41,0x84,0x1c,0xf0,0x0,0x0,0x0,0x0, - 0x42,0x45,0xe9,0x70,0x0,0x0,0x0,0x0,0x43,0x63,0xfe,0xf0,0x0,0x0,0x0,0x0, - 0x44,0x25,0xcb,0x70,0x0,0x0,0x0,0x0,0x45,0x43,0xe0,0xf0,0x0,0x0,0x0,0x0, - 0x46,0x5,0xad,0x70,0x0,0x0,0x0,0x0,0x47,0x23,0xc2,0xf0,0x0,0x0,0x0,0x0, - 0x47,0xee,0xc9,0xf0,0x0,0x0,0x0,0x0,0x49,0x3,0xa4,0xf0,0x0,0x0,0x0,0x0, - 0x49,0xce,0xab,0xf0,0x0,0x0,0x0,0x0,0x4a,0xe3,0x86,0xf0,0x0,0x0,0x0,0x0, - 0x4b,0xae,0x8d,0xf0,0x0,0x0,0x0,0x0,0x4c,0xcc,0xa3,0x70,0x0,0x0,0x0,0x0, - 0x4d,0x8e,0x6f,0xf0,0x0,0x0,0x0,0x0,0x54,0x4c,0x1d,0x60,0x0,0x0,0x0,0x0, - 0x7f,0xff,0xff,0xff,0x0,0x1,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x6,0x7,0x6,0x7,0x4,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x4,0x7,0x7,0x0,0x0,0x2e,0x98,0x0,0x0,0x0,0x0,0x2a,0x30,0x0, - 0x4,0x0,0x0,0x46,0x50,0x1,0x8,0x0,0x0,0x38,0x40,0x0,0xc,0x0,0x0,0x38, - 0x40,0x0,0xc,0x0,0x0,0x46,0x50,0x1,0x8,0x0,0x0,0x38,0x40,0x1,0xc,0x0, - 0x0,0x2a,0x30,0x0,0x4,0x4c,0x4d,0x54,0x0,0x2b,0x30,0x33,0x0,0x2b,0x30,0x35, - 0x0,0x2b,0x30,0x34,0x0,0x0,0x1,0x0,0x0,0x1,0x1,0x1,0x1,0x0,0x1,0x0, - 0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2b,0x30,0x33,0x3e,0x2d,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Oslo - 0x0,0x0,0x8,0xcb, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x8e,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0x9b, - 0x27,0xe3,0x0,0x9b,0xd4,0x7b,0x60,0xc8,0xb7,0x4d,0x60,0xcc,0xe7,0x4b,0x10,0xcd, - 0xa9,0x17,0x90,0xce,0xa2,0x43,0x10,0xcf,0x92,0x34,0x10,0xd0,0x82,0x25,0x10,0xd1, - 0x72,0x16,0x10,0xd2,0x62,0x7,0x10,0xeb,0xaf,0x20,0x90,0xec,0xa8,0x4c,0x10,0xed, - 0x98,0x3d,0x10,0xee,0x88,0x2e,0x10,0xef,0x78,0x1f,0x10,0xf0,0x68,0x10,0x10,0xf1, - 0x58,0x1,0x10,0xf2,0x47,0xf2,0x10,0xf3,0x37,0xe3,0x10,0xf4,0x27,0xd4,0x10,0xf5, - 0x17,0xc5,0x10,0xf6,0x10,0xf0,0x90,0xf7,0x2f,0x6,0x10,0xf7,0xf0,0xd2,0x90,0x12, - 0xce,0x97,0xf0,0x13,0x4d,0x44,0x10,0x14,0x33,0xfa,0x90,0x15,0x23,0xeb,0x90,0x16, - 0x13,0xdc,0x90,0x17,0x3,0xcd,0x90,0x17,0xf3,0xbe,0x90,0x18,0xe3,0xaf,0x90,0x19, - 0xd3,0xa0,0x90,0x1a,0xc3,0x91,0x90,0x1b,0xbc,0xbd,0x10,0x1c,0xac,0xae,0x10,0x1d, - 0x9c,0x9f,0x10,0x1e,0x8c,0x90,0x10,0x1f,0x7c,0x81,0x10,0x20,0x6c,0x72,0x10,0x21, - 0x5c,0x63,0x10,0x22,0x4c,0x54,0x10,0x23,0x3c,0x45,0x10,0x24,0x2c,0x36,0x10,0x25, - 0x1c,0x27,0x10,0x26,0xc,0x18,0x10,0x27,0x5,0x43,0x90,0x27,0xf5,0x34,0x90,0x28, - 0xe5,0x25,0x90,0x29,0xd5,0x16,0x90,0x2a,0xc5,0x7,0x90,0x2b,0xb4,0xf8,0x90,0x2c, - 0xa4,0xe9,0x90,0x2d,0x94,0xda,0x90,0x2e,0x84,0xcb,0x90,0x2f,0x74,0xbc,0x90,0x30, - 0x64,0xad,0x90,0x31,0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34, - 0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38, - 0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b, - 0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f, - 0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43, - 0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47, - 0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a, - 0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e, - 0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52, - 0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56, - 0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59, - 0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d, - 0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61, - 0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65, - 0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68, - 0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c, - 0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70, - 0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74, - 0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78, - 0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b, - 0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f, - 0x8e,0x7f,0x90,0x2,0x1,0x2,0x1,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x2,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x0,0x0,0xa,0x14,0x0,0x0,0x0,0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe, - 0x10,0x0,0x9,0x0,0x0,0xe,0x10,0x0,0x9,0x0,0x0,0x1c,0x20,0x1,0x4,0x0, - 0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe,0x10,0x0,0x9,0x4c,0x4d,0x54,0x0,0x43, - 0x45,0x53,0x54,0x0,0x43,0x45,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x0, - 0x0,0x0,0x0,0x0,0x1,0x1,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0, - 0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0x0,0x0,0x0,0x7,0x0,0x0, - 0x0,0xd,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x72,0xee, - 0x24,0x6c,0xff,0xff,0xff,0xff,0x9b,0x27,0xe3,0x0,0xff,0xff,0xff,0xff,0x9b,0xd4, - 0x7b,0x60,0xff,0xff,0xff,0xff,0xc8,0xb7,0x4d,0x60,0xff,0xff,0xff,0xff,0xcc,0xe7, - 0x4b,0x10,0xff,0xff,0xff,0xff,0xcd,0xa9,0x17,0x90,0xff,0xff,0xff,0xff,0xce,0xa2, - 0x43,0x10,0xff,0xff,0xff,0xff,0xcf,0x92,0x34,0x10,0xff,0xff,0xff,0xff,0xd0,0x82, - 0x25,0x10,0xff,0xff,0xff,0xff,0xd1,0x72,0x16,0x10,0xff,0xff,0xff,0xff,0xd2,0x62, - 0x7,0x10,0xff,0xff,0xff,0xff,0xeb,0xaf,0x20,0x90,0xff,0xff,0xff,0xff,0xec,0xa8, - 0x4c,0x10,0xff,0xff,0xff,0xff,0xed,0x98,0x3d,0x10,0xff,0xff,0xff,0xff,0xee,0x88, - 0x2e,0x10,0xff,0xff,0xff,0xff,0xef,0x78,0x1f,0x10,0xff,0xff,0xff,0xff,0xf0,0x68, - 0x10,0x10,0xff,0xff,0xff,0xff,0xf1,0x58,0x1,0x10,0xff,0xff,0xff,0xff,0xf2,0x47, - 0xf2,0x10,0xff,0xff,0xff,0xff,0xf3,0x37,0xe3,0x10,0xff,0xff,0xff,0xff,0xf4,0x27, - 0xd4,0x10,0xff,0xff,0xff,0xff,0xf5,0x17,0xc5,0x10,0xff,0xff,0xff,0xff,0xf6,0x10, - 0xf0,0x90,0xff,0xff,0xff,0xff,0xf7,0x2f,0x6,0x10,0xff,0xff,0xff,0xff,0xf7,0xf0, - 0xd2,0x90,0x0,0x0,0x0,0x0,0x12,0xce,0x97,0xf0,0x0,0x0,0x0,0x0,0x13,0x4d, - 0x44,0x10,0x0,0x0,0x0,0x0,0x14,0x33,0xfa,0x90,0x0,0x0,0x0,0x0,0x15,0x23, - 0xeb,0x90,0x0,0x0,0x0,0x0,0x16,0x13,0xdc,0x90,0x0,0x0,0x0,0x0,0x17,0x3, - 0xcd,0x90,0x0,0x0,0x0,0x0,0x17,0xf3,0xbe,0x90,0x0,0x0,0x0,0x0,0x18,0xe3, - 0xaf,0x90,0x0,0x0,0x0,0x0,0x19,0xd3,0xa0,0x90,0x0,0x0,0x0,0x0,0x1a,0xc3, - 0x91,0x90,0x0,0x0,0x0,0x0,0x1b,0xbc,0xbd,0x10,0x0,0x0,0x0,0x0,0x1c,0xac, - 0xae,0x10,0x0,0x0,0x0,0x0,0x1d,0x9c,0x9f,0x10,0x0,0x0,0x0,0x0,0x1e,0x8c, - 0x90,0x10,0x0,0x0,0x0,0x0,0x1f,0x7c,0x81,0x10,0x0,0x0,0x0,0x0,0x20,0x6c, - 0x72,0x10,0x0,0x0,0x0,0x0,0x21,0x5c,0x63,0x10,0x0,0x0,0x0,0x0,0x22,0x4c, - 0x54,0x10,0x0,0x0,0x0,0x0,0x23,0x3c,0x45,0x10,0x0,0x0,0x0,0x0,0x24,0x2c, - 0x36,0x10,0x0,0x0,0x0,0x0,0x25,0x1c,0x27,0x10,0x0,0x0,0x0,0x0,0x26,0xc, - 0x18,0x10,0x0,0x0,0x0,0x0,0x27,0x5,0x43,0x90,0x0,0x0,0x0,0x0,0x27,0xf5, - 0x34,0x90,0x0,0x0,0x0,0x0,0x28,0xe5,0x25,0x90,0x0,0x0,0x0,0x0,0x29,0xd5, - 0x16,0x90,0x0,0x0,0x0,0x0,0x2a,0xc5,0x7,0x90,0x0,0x0,0x0,0x0,0x2b,0xb4, - 0xf8,0x90,0x0,0x0,0x0,0x0,0x2c,0xa4,0xe9,0x90,0x0,0x0,0x0,0x0,0x2d,0x94, - 0xda,0x90,0x0,0x0,0x0,0x0,0x2e,0x84,0xcb,0x90,0x0,0x0,0x0,0x0,0x2f,0x74, - 0xbc,0x90,0x0,0x0,0x0,0x0,0x30,0x64,0xad,0x90,0x0,0x0,0x0,0x0,0x31,0x5d, - 0xd9,0x10,0x0,0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d, - 0xbb,0x10,0x0,0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d, - 0x9d,0x10,0x0,0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd, - 0x7f,0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd, - 0x61,0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd, - 0x43,0x10,0x0,0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6, - 0x5f,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86, - 0x41,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66, - 0x23,0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46, - 0x5,0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25, - 0xe7,0x90,0x0,0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5, - 0xc9,0x90,0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee, - 0xe6,0x10,0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce, - 0xc8,0x10,0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae, - 0xaa,0x10,0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e, - 0x8c,0x10,0x0,0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e, - 0x6e,0x10,0x0,0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57, - 0x8a,0x90,0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37, - 0x6c,0x90,0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17, - 0x4e,0x90,0x0,0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7, - 0x30,0x90,0x0,0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7, - 0x12,0x90,0x0,0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6, - 0xf4,0x90,0x0,0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0, - 0x11,0x10,0x0,0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f, - 0xf3,0x10,0x0,0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f, - 0xd5,0x10,0x0,0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f, - 0xb7,0x10,0x0,0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f, - 0x99,0x10,0x0,0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8, - 0xb5,0x90,0x0,0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8, - 0x97,0x90,0x0,0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8, - 0x79,0x90,0x0,0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8, - 0x5b,0x90,0x0,0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88, - 0x3d,0x90,0x0,0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68, - 0x1f,0x90,0x0,0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51, - 0x3c,0x10,0x0,0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31, - 0x1e,0x10,0x0,0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11, - 0x0,0x10,0x0,0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0, - 0xe2,0x10,0x0,0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0, - 0xc4,0x10,0x0,0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0, - 0xa6,0x10,0x0,0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99, - 0xc2,0x90,0x0,0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79, - 0xa4,0x90,0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x2,0x1,0x2,0x1,0x3, + 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x45,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x80,0x0,0x0,0x0,0x8b, + 0x60,0x83,0xa0,0x9c,0x91,0x1e,0x0,0x9d,0xd1,0x88,0x90,0x9e,0x72,0x51,0x80,0x9f, + 0xd5,0x3,0x10,0xa0,0x53,0x85,0x0,0xa1,0xb6,0x36,0x90,0xa4,0x3c,0x27,0x80,0xa4, + 0xb9,0x74,0x10,0xc6,0x4d,0x1a,0x0,0xc7,0x3d,0x27,0x20,0xc7,0xda,0x17,0xb0,0xc9, + 0x26,0x43,0xa0,0xc9,0xc3,0x26,0x20,0xcb,0x6,0x25,0xa0,0xcb,0xac,0x42,0xa0,0xcc, + 0xdc,0xcd,0x20,0xcd,0x8c,0x24,0xa0,0xce,0xbc,0xaf,0x20,0xcf,0x6c,0x6,0xa0,0xd0, + 0x9c,0x91,0x20,0xd1,0x4b,0xe8,0xa0,0xd2,0x85,0xad,0xa0,0xd3,0x2b,0xca,0xa0,0xd4, + 0x65,0x8f,0xa0,0xd5,0x39,0xd1,0x20,0xd6,0x45,0x71,0xa0,0xd7,0x19,0xb3,0x20,0xd8, + 0x25,0x53,0xa0,0xd8,0xf9,0x95,0x20,0xda,0xe,0x70,0x20,0xda,0xd9,0x77,0x20,0xdb, + 0xe5,0x17,0xa0,0xdc,0xb9,0x59,0x20,0xdd,0xce,0x34,0x20,0xde,0xa2,0x75,0xa0,0xdf, + 0xae,0x16,0x20,0xe0,0x82,0x57,0xa0,0xe1,0x8d,0xf8,0x20,0xe2,0x62,0x39,0xa0,0xe3, + 0x6d,0xda,0x20,0xe4,0x42,0x1b,0xa0,0xe5,0x4d,0xbc,0x20,0xe6,0x21,0xfd,0xa0,0xe7, + 0x36,0xd8,0xa0,0xe8,0xb,0x1a,0x20,0xe9,0x16,0xba,0xa0,0xe9,0xea,0xfc,0x20,0xea, + 0xf6,0x9c,0xa0,0xeb,0xca,0xde,0x20,0xec,0xd6,0x7e,0xa0,0xed,0xaa,0xc0,0x20,0xee, + 0xb6,0x60,0xa0,0xef,0x8a,0xa2,0x20,0xf0,0x96,0x42,0xa0,0xf1,0x6a,0x84,0x20,0xf2, + 0x7f,0x5f,0x20,0xf3,0x53,0xa0,0xa0,0xf4,0x5f,0x41,0x20,0xf5,0x33,0x82,0xa0,0xf6, + 0x3f,0x23,0x20,0xf7,0x13,0x64,0xa0,0xf8,0x1f,0x5,0x20,0xf8,0xf3,0x46,0xa0,0xf9, + 0xfe,0xe7,0x20,0xfa,0xd3,0x28,0xa0,0xfb,0xe8,0x3,0xa0,0xfc,0xbc,0x45,0x20,0x0, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x5,0xff,0xff,0xeb,0x60,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x4, + 0xff,0xff,0xf1,0xf0,0x0,0x8,0xff,0xff,0xf1,0xf0,0x0,0x8,0x0,0x0,0x0,0x0, + 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0xc,0x4c,0x4d,0x54,0x0,0x2b,0x30,0x30,0x0, + 0x2d,0x30,0x31,0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x0,0x0, + 0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10, + 0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x8b,0x60,0x83,0xa0, + 0xff,0xff,0xff,0xff,0x9c,0x91,0x1e,0x0,0xff,0xff,0xff,0xff,0x9d,0xd1,0x88,0x90, + 0xff,0xff,0xff,0xff,0x9e,0x72,0x51,0x80,0xff,0xff,0xff,0xff,0x9f,0xd5,0x3,0x10, + 0xff,0xff,0xff,0xff,0xa0,0x53,0x85,0x0,0xff,0xff,0xff,0xff,0xa1,0xb6,0x36,0x90, + 0xff,0xff,0xff,0xff,0xa4,0x3c,0x27,0x80,0xff,0xff,0xff,0xff,0xa4,0xb9,0x74,0x10, + 0xff,0xff,0xff,0xff,0xc6,0x4d,0x1a,0x0,0xff,0xff,0xff,0xff,0xc7,0x3d,0x27,0x20, + 0xff,0xff,0xff,0xff,0xc7,0xda,0x17,0xb0,0xff,0xff,0xff,0xff,0xc9,0x26,0x43,0xa0, + 0xff,0xff,0xff,0xff,0xc9,0xc3,0x26,0x20,0xff,0xff,0xff,0xff,0xcb,0x6,0x25,0xa0, + 0xff,0xff,0xff,0xff,0xcb,0xac,0x42,0xa0,0xff,0xff,0xff,0xff,0xcc,0xdc,0xcd,0x20, + 0xff,0xff,0xff,0xff,0xcd,0x8c,0x24,0xa0,0xff,0xff,0xff,0xff,0xce,0xbc,0xaf,0x20, + 0xff,0xff,0xff,0xff,0xcf,0x6c,0x6,0xa0,0xff,0xff,0xff,0xff,0xd0,0x9c,0x91,0x20, + 0xff,0xff,0xff,0xff,0xd1,0x4b,0xe8,0xa0,0xff,0xff,0xff,0xff,0xd2,0x85,0xad,0xa0, + 0xff,0xff,0xff,0xff,0xd3,0x2b,0xca,0xa0,0xff,0xff,0xff,0xff,0xd4,0x65,0x8f,0xa0, + 0xff,0xff,0xff,0xff,0xd5,0x39,0xd1,0x20,0xff,0xff,0xff,0xff,0xd6,0x45,0x71,0xa0, + 0xff,0xff,0xff,0xff,0xd7,0x19,0xb3,0x20,0xff,0xff,0xff,0xff,0xd8,0x25,0x53,0xa0, + 0xff,0xff,0xff,0xff,0xd8,0xf9,0x95,0x20,0xff,0xff,0xff,0xff,0xda,0xe,0x70,0x20, + 0xff,0xff,0xff,0xff,0xda,0xd9,0x77,0x20,0xff,0xff,0xff,0xff,0xdb,0xe5,0x17,0xa0, + 0xff,0xff,0xff,0xff,0xdc,0xb9,0x59,0x20,0xff,0xff,0xff,0xff,0xdd,0xce,0x34,0x20, + 0xff,0xff,0xff,0xff,0xde,0xa2,0x75,0xa0,0xff,0xff,0xff,0xff,0xdf,0xae,0x16,0x20, + 0xff,0xff,0xff,0xff,0xe0,0x82,0x57,0xa0,0xff,0xff,0xff,0xff,0xe1,0x8d,0xf8,0x20, + 0xff,0xff,0xff,0xff,0xe2,0x62,0x39,0xa0,0xff,0xff,0xff,0xff,0xe3,0x6d,0xda,0x20, + 0xff,0xff,0xff,0xff,0xe4,0x42,0x1b,0xa0,0xff,0xff,0xff,0xff,0xe5,0x4d,0xbc,0x20, + 0xff,0xff,0xff,0xff,0xe6,0x21,0xfd,0xa0,0xff,0xff,0xff,0xff,0xe7,0x36,0xd8,0xa0, + 0xff,0xff,0xff,0xff,0xe8,0xb,0x1a,0x20,0xff,0xff,0xff,0xff,0xe9,0x16,0xba,0xa0, + 0xff,0xff,0xff,0xff,0xe9,0xea,0xfc,0x20,0xff,0xff,0xff,0xff,0xea,0xf6,0x9c,0xa0, + 0xff,0xff,0xff,0xff,0xeb,0xca,0xde,0x20,0xff,0xff,0xff,0xff,0xec,0xd6,0x7e,0xa0, + 0xff,0xff,0xff,0xff,0xed,0xaa,0xc0,0x20,0xff,0xff,0xff,0xff,0xee,0xb6,0x60,0xa0, + 0xff,0xff,0xff,0xff,0xef,0x8a,0xa2,0x20,0xff,0xff,0xff,0xff,0xf0,0x96,0x42,0xa0, + 0xff,0xff,0xff,0xff,0xf1,0x6a,0x84,0x20,0xff,0xff,0xff,0xff,0xf2,0x7f,0x5f,0x20, + 0xff,0xff,0xff,0xff,0xf3,0x53,0xa0,0xa0,0xff,0xff,0xff,0xff,0xf4,0x5f,0x41,0x20, + 0xff,0xff,0xff,0xff,0xf5,0x33,0x82,0xa0,0xff,0xff,0xff,0xff,0xf6,0x3f,0x23,0x20, + 0xff,0xff,0xff,0xff,0xf7,0x13,0x64,0xa0,0xff,0xff,0xff,0xff,0xf8,0x1f,0x5,0x20, + 0xff,0xff,0xff,0xff,0xf8,0xf3,0x46,0xa0,0xff,0xff,0xff,0xff,0xf9,0xfe,0xe7,0x20, + 0xff,0xff,0xff,0xff,0xfa,0xd3,0x28,0xa0,0xff,0xff,0xff,0xff,0xfb,0xe8,0x3,0xa0, + 0xff,0xff,0xff,0xff,0xfc,0xbc,0x45,0x20,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x2,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x0,0x0,0xa,0x14,0x0,0x0,0x0, - 0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe,0x10,0x0,0x9,0x0,0x0,0xe,0x10,0x0, - 0x9,0x0,0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe, - 0x10,0x0,0x9,0x4c,0x4d,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x43,0x45,0x54,0x0, - 0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0xa,0x43, - 0x45,0x54,0x2d,0x31,0x43,0x45,0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2c, - 0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30,0x2f,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Belfast - 0x0,0x0,0xe,0x67, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x5,0xff,0xff,0xeb, + 0x60,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x4,0xff,0xff,0xf1,0xf0,0x0,0x8,0xff, + 0xff,0xf1,0xf0,0x0,0x8,0x0,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0,0x0, + 0xc,0x4c,0x4d,0x54,0x0,0x2b,0x30,0x30,0x0,0x2d,0x30,0x31,0x0,0x47,0x4d,0x54, + 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x47,0x4d, + 0x54,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Brazil/Acre + 0x0,0x0,0x2,0x96, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xf3,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x11,0x80,0x0,0x0,0x0,0x9b, - 0x26,0xad,0xa0,0x9b,0xd6,0x5,0x20,0x9c,0xcf,0x30,0xa0,0x9d,0xa4,0xc3,0xa0,0x9e, - 0x9c,0x9d,0xa0,0x9f,0x97,0x1a,0xa0,0xa0,0x85,0xba,0x20,0xa1,0x76,0xfc,0xa0,0xa2, - 0x65,0x9c,0x20,0xa3,0x7b,0xc8,0xa0,0xa4,0x4e,0xb8,0xa0,0xa5,0x3f,0xfb,0x20,0xa6, - 0x25,0x60,0x20,0xa7,0x27,0xc6,0x20,0xa8,0x2a,0x2c,0x20,0xa8,0xeb,0xf8,0xa0,0xaa, - 0x0,0xd3,0xa0,0xaa,0xd5,0x15,0x20,0xab,0xe9,0xf0,0x20,0xac,0xc7,0x6c,0x20,0xad, - 0xc9,0xd2,0x20,0xae,0xa7,0x4e,0x20,0xaf,0xa0,0x79,0xa0,0xb0,0x87,0x30,0x20,0xb1, - 0x92,0xd0,0xa0,0xb2,0x70,0x4c,0xa0,0xb3,0x72,0xb2,0xa0,0xb4,0x50,0x2e,0xa0,0xb5, - 0x49,0x5a,0x20,0xb6,0x30,0x10,0xa0,0xb7,0x32,0x76,0xa0,0xb8,0xf,0xf2,0xa0,0xb9, - 0x12,0x58,0xa0,0xb9,0xef,0xd4,0xa0,0xba,0xe9,0x0,0x20,0xbb,0xd8,0xf1,0x20,0xbc, - 0xdb,0x57,0x20,0xbd,0xb8,0xd3,0x20,0xbe,0xb1,0xfe,0xa0,0xbf,0x98,0xb5,0x20,0xc0, - 0x9b,0x1b,0x20,0xc1,0x78,0x97,0x20,0xc2,0x7a,0xfd,0x20,0xc3,0x58,0x79,0x20,0xc4, - 0x51,0xa4,0xa0,0xc5,0x38,0x5b,0x20,0xc6,0x3a,0xc1,0x20,0xc7,0x58,0xd6,0xa0,0xc7, - 0xda,0x9,0xa0,0xca,0x16,0x26,0x90,0xca,0x97,0x59,0x90,0xcb,0xd1,0x1e,0x90,0xcc, - 0x77,0x3b,0x90,0xcd,0xb1,0x0,0x90,0xce,0x60,0x58,0x10,0xcf,0x90,0xe2,0x90,0xd0, - 0x6e,0x5e,0x90,0xd1,0x72,0x16,0x10,0xd1,0xfb,0x32,0x10,0xd2,0x69,0xfe,0x20,0xd3, - 0x63,0x29,0xa0,0xd4,0x49,0xe0,0x20,0xd5,0x1e,0x21,0xa0,0xd5,0x42,0xfd,0x90,0xd5, - 0xdf,0xe0,0x10,0xd6,0x4e,0xac,0x20,0xd6,0xfe,0x3,0xa0,0xd8,0x2e,0x8e,0x20,0xd8, - 0xf9,0x95,0x20,0xda,0xe,0x70,0x20,0xda,0xeb,0xec,0x20,0xdb,0xe5,0x17,0xa0,0xdc, - 0xcb,0xce,0x20,0xdd,0xc4,0xf9,0xa0,0xde,0xb4,0xea,0xa0,0xdf,0xae,0x16,0x20,0xe0, - 0x94,0xcc,0xa0,0xe1,0x72,0x48,0xa0,0xe2,0x6b,0x74,0x20,0xe3,0x52,0x2a,0xa0,0xe4, - 0x54,0x90,0xa0,0xe5,0x32,0xc,0xa0,0xe6,0x3d,0xad,0x20,0xe7,0x1b,0x29,0x20,0xe8, - 0x14,0x54,0xa0,0xe8,0xfb,0xb,0x20,0xe9,0xfd,0x71,0x20,0xea,0xda,0xed,0x20,0xeb, - 0xdd,0x53,0x20,0xec,0xba,0xcf,0x20,0xed,0xb3,0xfa,0xa0,0xee,0x9a,0xb1,0x20,0xef, - 0x81,0x67,0xa0,0xf0,0x9f,0x7d,0x20,0xf1,0x61,0x49,0xa0,0xf2,0x7f,0x5f,0x20,0xf3, - 0x4a,0x66,0x20,0xf4,0x5f,0x41,0x20,0xf5,0x21,0xd,0xa0,0xf6,0x3f,0x23,0x20,0xf7, - 0x0,0xef,0xa0,0xf8,0x1f,0x5,0x20,0xf8,0xe0,0xd1,0xa0,0xf9,0xfe,0xe7,0x20,0xfa, - 0xc0,0xb3,0xa0,0xfb,0xe8,0x3,0xa0,0xfc,0x7b,0xab,0xa0,0xfd,0xc7,0xbb,0x70,0x3, - 0x70,0xc6,0x20,0x4,0x29,0x58,0x20,0x5,0x50,0xa8,0x20,0x6,0x9,0x3a,0x20,0x7, - 0x30,0x8a,0x20,0x7,0xe9,0x1c,0x20,0x9,0x10,0x6c,0x20,0x9,0xc8,0xfe,0x20,0xa, - 0xf0,0x4e,0x20,0xb,0xb2,0x1a,0xa0,0xc,0xd0,0x30,0x20,0xd,0x91,0xfc,0xa0,0xe, - 0xb0,0x12,0x20,0xf,0x71,0xde,0xa0,0x10,0x99,0x2e,0xa0,0x11,0x51,0xc0,0xa0,0x12, - 0x79,0x10,0xa0,0x13,0x31,0xa2,0xa0,0x14,0x58,0xf2,0xa0,0x15,0x23,0xeb,0x90,0x16, - 0x38,0xc6,0x90,0x17,0x3,0xcd,0x90,0x18,0x18,0xa8,0x90,0x18,0xe3,0xaf,0x90,0x19, - 0xf8,0x8a,0x90,0x1a,0xc3,0x91,0x90,0x1b,0xe1,0xa7,0x10,0x1c,0xac,0xae,0x10,0x1d, - 0xc1,0x89,0x10,0x1e,0x8c,0x90,0x10,0x1f,0xa1,0x6b,0x10,0x20,0x6c,0x72,0x10,0x21, - 0x81,0x4d,0x10,0x22,0x4c,0x54,0x10,0x23,0x61,0x2f,0x10,0x24,0x2c,0x36,0x10,0x25, - 0x4a,0x4b,0x90,0x26,0xc,0x18,0x10,0x27,0x2a,0x2d,0x90,0x27,0xf5,0x34,0x90,0x29, - 0xa,0xf,0x90,0x29,0xd5,0x16,0x90,0x2a,0xe9,0xf1,0x90,0x2b,0xb4,0xf8,0x90,0x2c, - 0xc9,0xd3,0x90,0x2d,0x94,0xda,0x90,0x2e,0xa9,0xb5,0x90,0x2f,0x74,0xbc,0x90,0x30, - 0x89,0x97,0x90,0x30,0xe7,0x24,0x0,0x31,0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33, - 0x3d,0xbb,0x10,0x34,0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36, - 0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a, - 0xbd,0x43,0x10,0x3b,0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e, - 0x86,0x41,0x90,0x3f,0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42, - 0x46,0x5,0x90,0x43,0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46, - 0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49, - 0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d, - 0x8e,0x8c,0x10,0x4e,0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51, - 0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55, - 0x17,0x4e,0x90,0x56,0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58, - 0xd7,0x12,0x90,0x59,0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c, - 0xa0,0x11,0x10,0x5d,0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60, - 0x5f,0xd5,0x10,0x61,0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64, - 0x1f,0x99,0x10,0x65,0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67, - 0xe8,0x97,0x90,0x68,0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b, - 0xa8,0x5b,0x90,0x6c,0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f, - 0x68,0x1f,0x90,0x70,0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73, - 0x31,0x1e,0x10,0x74,0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76, - 0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a, - 0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e, - 0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3, - 0x1,0x3,0x1,0x2,0x1,0x2,0x1,0x3,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x21,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0x96, + 0xaa,0x86,0x90,0xb8,0xf,0x66,0x0,0xb8,0xfd,0x5c,0xc0,0xb9,0xf1,0x50,0x50,0xba, + 0xde,0x90,0x40,0xda,0x38,0xca,0x50,0xda,0xec,0x16,0x50,0xdc,0x19,0xfd,0xd0,0xdc, + 0xb9,0x75,0x40,0xdd,0xfb,0x31,0x50,0xde,0x9b,0xfa,0x40,0xdf,0xdd,0xb6,0x50,0xe0, + 0x54,0x4f,0x40,0xf4,0x98,0x1b,0xd0,0xf5,0x5,0x7a,0x40,0xf6,0xc0,0x80,0x50,0xf7, + 0xe,0x3a,0xc0,0xf8,0x51,0x48,0x50,0xf8,0xc7,0xe1,0x40,0xfa,0xa,0xee,0xd0,0xfa, + 0xa9,0x14,0xc0,0xfb,0xec,0x22,0x50,0xfc,0x8b,0x99,0xc0,0x1d,0xc9,0xaa,0x50,0x1e, + 0x78,0xf3,0xc0,0x1f,0xa0,0x51,0xd0,0x20,0x33,0xeb,0xc0,0x21,0x81,0x85,0x50,0x22, + 0xb,0xe4,0xc0,0x48,0x60,0x7f,0x50,0x52,0x7f,0x4,0xc0,0x7f,0xff,0xff,0xff,0x0, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x2,0x2, + 0xff,0xff,0xc0,0x70,0x0,0x0,0xff,0xff,0xc7,0xc0,0x1,0x4,0xff,0xff,0xb9,0xb0, + 0x0,0x8,0xff,0xff,0xc7,0xc0,0x0,0x4,0xff,0xff,0xb9,0xb0,0x0,0x8,0x4c,0x4d, + 0x54,0x0,0x2d,0x30,0x34,0x0,0x2d,0x30,0x35,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xc, + 0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x96,0xaa,0x86,0x90, + 0xff,0xff,0xff,0xff,0xb8,0xf,0x66,0x0,0xff,0xff,0xff,0xff,0xb8,0xfd,0x5c,0xc0, + 0xff,0xff,0xff,0xff,0xb9,0xf1,0x50,0x50,0xff,0xff,0xff,0xff,0xba,0xde,0x90,0x40, + 0xff,0xff,0xff,0xff,0xda,0x38,0xca,0x50,0xff,0xff,0xff,0xff,0xda,0xec,0x16,0x50, + 0xff,0xff,0xff,0xff,0xdc,0x19,0xfd,0xd0,0xff,0xff,0xff,0xff,0xdc,0xb9,0x75,0x40, + 0xff,0xff,0xff,0xff,0xdd,0xfb,0x31,0x50,0xff,0xff,0xff,0xff,0xde,0x9b,0xfa,0x40, + 0xff,0xff,0xff,0xff,0xdf,0xdd,0xb6,0x50,0xff,0xff,0xff,0xff,0xe0,0x54,0x4f,0x40, + 0xff,0xff,0xff,0xff,0xf4,0x98,0x1b,0xd0,0xff,0xff,0xff,0xff,0xf5,0x5,0x7a,0x40, + 0xff,0xff,0xff,0xff,0xf6,0xc0,0x80,0x50,0xff,0xff,0xff,0xff,0xf7,0xe,0x3a,0xc0, + 0xff,0xff,0xff,0xff,0xf8,0x51,0x48,0x50,0xff,0xff,0xff,0xff,0xf8,0xc7,0xe1,0x40, + 0xff,0xff,0xff,0xff,0xfa,0xa,0xee,0xd0,0xff,0xff,0xff,0xff,0xfa,0xa9,0x14,0xc0, + 0xff,0xff,0xff,0xff,0xfb,0xec,0x22,0x50,0xff,0xff,0xff,0xff,0xfc,0x8b,0x99,0xc0, + 0x0,0x0,0x0,0x0,0x1d,0xc9,0xaa,0x50,0x0,0x0,0x0,0x0,0x1e,0x78,0xf3,0xc0, + 0x0,0x0,0x0,0x0,0x1f,0xa0,0x51,0xd0,0x0,0x0,0x0,0x0,0x20,0x33,0xeb,0xc0, + 0x0,0x0,0x0,0x0,0x21,0x81,0x85,0x50,0x0,0x0,0x0,0x0,0x22,0xb,0xe4,0xc0, + 0x0,0x0,0x0,0x0,0x48,0x60,0x7f,0x50,0x0,0x0,0x0,0x0,0x52,0x7f,0x4,0xc0, + 0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x4,0x6,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x7,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0xff,0xff,0xff,0xb5,0x0,0x0, - 0x0,0x0,0xe,0x10,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x1c,0x20, - 0x1,0xc,0x0,0x0,0xe,0x10,0x0,0x4,0x0,0x0,0xe,0x10,0x1,0x4,0x0,0x0, - 0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x42,0x53, - 0x54,0x0,0x47,0x4d,0x54,0x0,0x42,0x44,0x53,0x54,0x0,0x0,0x1,0x1,0x1,0x0, - 0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x54,0x5a,0x69,0x66,0x32, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf4,0x0, - 0x0,0x0,0x8,0x0,0x0,0x0,0x11,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff, - 0xff,0xff,0xff,0x1a,0x5d,0x9,0xcb,0xff,0xff,0xff,0xff,0x9b,0x26,0xad,0xa0,0xff, - 0xff,0xff,0xff,0x9b,0xd6,0x5,0x20,0xff,0xff,0xff,0xff,0x9c,0xcf,0x30,0xa0,0xff, - 0xff,0xff,0xff,0x9d,0xa4,0xc3,0xa0,0xff,0xff,0xff,0xff,0x9e,0x9c,0x9d,0xa0,0xff, - 0xff,0xff,0xff,0x9f,0x97,0x1a,0xa0,0xff,0xff,0xff,0xff,0xa0,0x85,0xba,0x20,0xff, - 0xff,0xff,0xff,0xa1,0x76,0xfc,0xa0,0xff,0xff,0xff,0xff,0xa2,0x65,0x9c,0x20,0xff, - 0xff,0xff,0xff,0xa3,0x7b,0xc8,0xa0,0xff,0xff,0xff,0xff,0xa4,0x4e,0xb8,0xa0,0xff, - 0xff,0xff,0xff,0xa5,0x3f,0xfb,0x20,0xff,0xff,0xff,0xff,0xa6,0x25,0x60,0x20,0xff, - 0xff,0xff,0xff,0xa7,0x27,0xc6,0x20,0xff,0xff,0xff,0xff,0xa8,0x2a,0x2c,0x20,0xff, - 0xff,0xff,0xff,0xa8,0xeb,0xf8,0xa0,0xff,0xff,0xff,0xff,0xaa,0x0,0xd3,0xa0,0xff, - 0xff,0xff,0xff,0xaa,0xd5,0x15,0x20,0xff,0xff,0xff,0xff,0xab,0xe9,0xf0,0x20,0xff, - 0xff,0xff,0xff,0xac,0xc7,0x6c,0x20,0xff,0xff,0xff,0xff,0xad,0xc9,0xd2,0x20,0xff, - 0xff,0xff,0xff,0xae,0xa7,0x4e,0x20,0xff,0xff,0xff,0xff,0xaf,0xa0,0x79,0xa0,0xff, - 0xff,0xff,0xff,0xb0,0x87,0x30,0x20,0xff,0xff,0xff,0xff,0xb1,0x92,0xd0,0xa0,0xff, - 0xff,0xff,0xff,0xb2,0x70,0x4c,0xa0,0xff,0xff,0xff,0xff,0xb3,0x72,0xb2,0xa0,0xff, - 0xff,0xff,0xff,0xb4,0x50,0x2e,0xa0,0xff,0xff,0xff,0xff,0xb5,0x49,0x5a,0x20,0xff, - 0xff,0xff,0xff,0xb6,0x30,0x10,0xa0,0xff,0xff,0xff,0xff,0xb7,0x32,0x76,0xa0,0xff, - 0xff,0xff,0xff,0xb8,0xf,0xf2,0xa0,0xff,0xff,0xff,0xff,0xb9,0x12,0x58,0xa0,0xff, - 0xff,0xff,0xff,0xb9,0xef,0xd4,0xa0,0xff,0xff,0xff,0xff,0xba,0xe9,0x0,0x20,0xff, - 0xff,0xff,0xff,0xbb,0xd8,0xf1,0x20,0xff,0xff,0xff,0xff,0xbc,0xdb,0x57,0x20,0xff, - 0xff,0xff,0xff,0xbd,0xb8,0xd3,0x20,0xff,0xff,0xff,0xff,0xbe,0xb1,0xfe,0xa0,0xff, - 0xff,0xff,0xff,0xbf,0x98,0xb5,0x20,0xff,0xff,0xff,0xff,0xc0,0x9b,0x1b,0x20,0xff, - 0xff,0xff,0xff,0xc1,0x78,0x97,0x20,0xff,0xff,0xff,0xff,0xc2,0x7a,0xfd,0x20,0xff, - 0xff,0xff,0xff,0xc3,0x58,0x79,0x20,0xff,0xff,0xff,0xff,0xc4,0x51,0xa4,0xa0,0xff, - 0xff,0xff,0xff,0xc5,0x38,0x5b,0x20,0xff,0xff,0xff,0xff,0xc6,0x3a,0xc1,0x20,0xff, - 0xff,0xff,0xff,0xc7,0x58,0xd6,0xa0,0xff,0xff,0xff,0xff,0xc7,0xda,0x9,0xa0,0xff, - 0xff,0xff,0xff,0xca,0x16,0x26,0x90,0xff,0xff,0xff,0xff,0xca,0x97,0x59,0x90,0xff, - 0xff,0xff,0xff,0xcb,0xd1,0x1e,0x90,0xff,0xff,0xff,0xff,0xcc,0x77,0x3b,0x90,0xff, - 0xff,0xff,0xff,0xcd,0xb1,0x0,0x90,0xff,0xff,0xff,0xff,0xce,0x60,0x58,0x10,0xff, - 0xff,0xff,0xff,0xcf,0x90,0xe2,0x90,0xff,0xff,0xff,0xff,0xd0,0x6e,0x5e,0x90,0xff, - 0xff,0xff,0xff,0xd1,0x72,0x16,0x10,0xff,0xff,0xff,0xff,0xd1,0xfb,0x32,0x10,0xff, - 0xff,0xff,0xff,0xd2,0x69,0xfe,0x20,0xff,0xff,0xff,0xff,0xd3,0x63,0x29,0xa0,0xff, - 0xff,0xff,0xff,0xd4,0x49,0xe0,0x20,0xff,0xff,0xff,0xff,0xd5,0x1e,0x21,0xa0,0xff, - 0xff,0xff,0xff,0xd5,0x42,0xfd,0x90,0xff,0xff,0xff,0xff,0xd5,0xdf,0xe0,0x10,0xff, - 0xff,0xff,0xff,0xd6,0x4e,0xac,0x20,0xff,0xff,0xff,0xff,0xd6,0xfe,0x3,0xa0,0xff, - 0xff,0xff,0xff,0xd8,0x2e,0x8e,0x20,0xff,0xff,0xff,0xff,0xd8,0xf9,0x95,0x20,0xff, - 0xff,0xff,0xff,0xda,0xe,0x70,0x20,0xff,0xff,0xff,0xff,0xda,0xeb,0xec,0x20,0xff, - 0xff,0xff,0xff,0xdb,0xe5,0x17,0xa0,0xff,0xff,0xff,0xff,0xdc,0xcb,0xce,0x20,0xff, - 0xff,0xff,0xff,0xdd,0xc4,0xf9,0xa0,0xff,0xff,0xff,0xff,0xde,0xb4,0xea,0xa0,0xff, - 0xff,0xff,0xff,0xdf,0xae,0x16,0x20,0xff,0xff,0xff,0xff,0xe0,0x94,0xcc,0xa0,0xff, - 0xff,0xff,0xff,0xe1,0x72,0x48,0xa0,0xff,0xff,0xff,0xff,0xe2,0x6b,0x74,0x20,0xff, - 0xff,0xff,0xff,0xe3,0x52,0x2a,0xa0,0xff,0xff,0xff,0xff,0xe4,0x54,0x90,0xa0,0xff, - 0xff,0xff,0xff,0xe5,0x32,0xc,0xa0,0xff,0xff,0xff,0xff,0xe6,0x3d,0xad,0x20,0xff, - 0xff,0xff,0xff,0xe7,0x1b,0x29,0x20,0xff,0xff,0xff,0xff,0xe8,0x14,0x54,0xa0,0xff, - 0xff,0xff,0xff,0xe8,0xfb,0xb,0x20,0xff,0xff,0xff,0xff,0xe9,0xfd,0x71,0x20,0xff, - 0xff,0xff,0xff,0xea,0xda,0xed,0x20,0xff,0xff,0xff,0xff,0xeb,0xdd,0x53,0x20,0xff, - 0xff,0xff,0xff,0xec,0xba,0xcf,0x20,0xff,0xff,0xff,0xff,0xed,0xb3,0xfa,0xa0,0xff, - 0xff,0xff,0xff,0xee,0x9a,0xb1,0x20,0xff,0xff,0xff,0xff,0xef,0x81,0x67,0xa0,0xff, - 0xff,0xff,0xff,0xf0,0x9f,0x7d,0x20,0xff,0xff,0xff,0xff,0xf1,0x61,0x49,0xa0,0xff, - 0xff,0xff,0xff,0xf2,0x7f,0x5f,0x20,0xff,0xff,0xff,0xff,0xf3,0x4a,0x66,0x20,0xff, - 0xff,0xff,0xff,0xf4,0x5f,0x41,0x20,0xff,0xff,0xff,0xff,0xf5,0x21,0xd,0xa0,0xff, - 0xff,0xff,0xff,0xf6,0x3f,0x23,0x20,0xff,0xff,0xff,0xff,0xf7,0x0,0xef,0xa0,0xff, - 0xff,0xff,0xff,0xf8,0x1f,0x5,0x20,0xff,0xff,0xff,0xff,0xf8,0xe0,0xd1,0xa0,0xff, - 0xff,0xff,0xff,0xf9,0xfe,0xe7,0x20,0xff,0xff,0xff,0xff,0xfa,0xc0,0xb3,0xa0,0xff, - 0xff,0xff,0xff,0xfb,0xe8,0x3,0xa0,0xff,0xff,0xff,0xff,0xfc,0x7b,0xab,0xa0,0xff, - 0xff,0xff,0xff,0xfd,0xc7,0xbb,0x70,0x0,0x0,0x0,0x0,0x3,0x70,0xc6,0x20,0x0, - 0x0,0x0,0x0,0x4,0x29,0x58,0x20,0x0,0x0,0x0,0x0,0x5,0x50,0xa8,0x20,0x0, - 0x0,0x0,0x0,0x6,0x9,0x3a,0x20,0x0,0x0,0x0,0x0,0x7,0x30,0x8a,0x20,0x0, - 0x0,0x0,0x0,0x7,0xe9,0x1c,0x20,0x0,0x0,0x0,0x0,0x9,0x10,0x6c,0x20,0x0, - 0x0,0x0,0x0,0x9,0xc8,0xfe,0x20,0x0,0x0,0x0,0x0,0xa,0xf0,0x4e,0x20,0x0, - 0x0,0x0,0x0,0xb,0xb2,0x1a,0xa0,0x0,0x0,0x0,0x0,0xc,0xd0,0x30,0x20,0x0, - 0x0,0x0,0x0,0xd,0x91,0xfc,0xa0,0x0,0x0,0x0,0x0,0xe,0xb0,0x12,0x20,0x0, - 0x0,0x0,0x0,0xf,0x71,0xde,0xa0,0x0,0x0,0x0,0x0,0x10,0x99,0x2e,0xa0,0x0, - 0x0,0x0,0x0,0x11,0x51,0xc0,0xa0,0x0,0x0,0x0,0x0,0x12,0x79,0x10,0xa0,0x0, - 0x0,0x0,0x0,0x13,0x31,0xa2,0xa0,0x0,0x0,0x0,0x0,0x14,0x58,0xf2,0xa0,0x0, - 0x0,0x0,0x0,0x15,0x23,0xeb,0x90,0x0,0x0,0x0,0x0,0x16,0x38,0xc6,0x90,0x0, - 0x0,0x0,0x0,0x17,0x3,0xcd,0x90,0x0,0x0,0x0,0x0,0x18,0x18,0xa8,0x90,0x0, - 0x0,0x0,0x0,0x18,0xe3,0xaf,0x90,0x0,0x0,0x0,0x0,0x19,0xf8,0x8a,0x90,0x0, - 0x0,0x0,0x0,0x1a,0xc3,0x91,0x90,0x0,0x0,0x0,0x0,0x1b,0xe1,0xa7,0x10,0x0, - 0x0,0x0,0x0,0x1c,0xac,0xae,0x10,0x0,0x0,0x0,0x0,0x1d,0xc1,0x89,0x10,0x0, - 0x0,0x0,0x0,0x1e,0x8c,0x90,0x10,0x0,0x0,0x0,0x0,0x1f,0xa1,0x6b,0x10,0x0, - 0x0,0x0,0x0,0x20,0x6c,0x72,0x10,0x0,0x0,0x0,0x0,0x21,0x81,0x4d,0x10,0x0, - 0x0,0x0,0x0,0x22,0x4c,0x54,0x10,0x0,0x0,0x0,0x0,0x23,0x61,0x2f,0x10,0x0, - 0x0,0x0,0x0,0x24,0x2c,0x36,0x10,0x0,0x0,0x0,0x0,0x25,0x4a,0x4b,0x90,0x0, - 0x0,0x0,0x0,0x26,0xc,0x18,0x10,0x0,0x0,0x0,0x0,0x27,0x2a,0x2d,0x90,0x0, - 0x0,0x0,0x0,0x27,0xf5,0x34,0x90,0x0,0x0,0x0,0x0,0x29,0xa,0xf,0x90,0x0, - 0x0,0x0,0x0,0x29,0xd5,0x16,0x90,0x0,0x0,0x0,0x0,0x2a,0xe9,0xf1,0x90,0x0, - 0x0,0x0,0x0,0x2b,0xb4,0xf8,0x90,0x0,0x0,0x0,0x0,0x2c,0xc9,0xd3,0x90,0x0, - 0x0,0x0,0x0,0x2d,0x94,0xda,0x90,0x0,0x0,0x0,0x0,0x2e,0xa9,0xb5,0x90,0x0, - 0x0,0x0,0x0,0x2f,0x74,0xbc,0x90,0x0,0x0,0x0,0x0,0x30,0x89,0x97,0x90,0x0, - 0x0,0x0,0x0,0x30,0xe7,0x24,0x0,0x0,0x0,0x0,0x0,0x31,0x5d,0xd9,0x10,0x0, - 0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d,0xbb,0x10,0x0, - 0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d,0x9d,0x10,0x0, - 0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd,0x7f,0x10,0x0, - 0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd,0x61,0x10,0x0, - 0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd,0x43,0x10,0x0, - 0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f,0x90,0x0, - 0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86,0x41,0x90,0x0, - 0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66,0x23,0x90,0x0, - 0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46,0x5,0x90,0x0, - 0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25,0xe7,0x90,0x0, - 0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5,0xc9,0x90,0x0, - 0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee,0xe6,0x10,0x0, - 0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce,0xc8,0x10,0x0, - 0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae,0xaa,0x10,0x0, - 0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c,0x10,0x0, - 0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e,0x10,0x0, - 0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57,0x8a,0x90,0x0, - 0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37,0x6c,0x90,0x0, - 0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17,0x4e,0x90,0x0, - 0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7,0x30,0x90,0x0, - 0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7,0x12,0x90,0x0, - 0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4,0x90,0x0, - 0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0,0x11,0x10,0x0, - 0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3,0x10,0x0, - 0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f,0xd5,0x10,0x0, - 0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f,0xb7,0x10,0x0, - 0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f,0x99,0x10,0x0, - 0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8,0xb5,0x90,0x0, - 0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8,0x97,0x90,0x0, - 0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8,0x79,0x90,0x0, - 0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b,0x90,0x0, - 0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88,0x3d,0x90,0x0, - 0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68,0x1f,0x90,0x0, - 0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51,0x3c,0x10,0x0, - 0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31,0x1e,0x10,0x0, - 0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11,0x0,0x10,0x0, - 0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0,0xe2,0x10,0x0, - 0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0,0xc4,0x10,0x0, - 0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6,0x10,0x0, - 0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99,0xc2,0x90,0x0, - 0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79,0xa4,0x90,0x0, - 0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x2,0x2,0xff,0xff,0xc0,0x70,0x0,0x0,0xff, + 0xff,0xc7,0xc0,0x1,0x4,0xff,0xff,0xb9,0xb0,0x0,0x8,0xff,0xff,0xc7,0xc0,0x0, + 0x4,0xff,0xff,0xb9,0xb0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x2d,0x30,0x34,0x0,0x2d, + 0x30,0x35,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2d, + 0x30,0x35,0x3e,0x35,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Brazil/East + 0x0,0x0,0x7,0xe0, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x81,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0x96, + 0xaa,0x72,0xb4,0xb8,0xf,0x49,0xe0,0xb8,0xfd,0x40,0xa0,0xb9,0xf1,0x34,0x30,0xba, + 0xde,0x74,0x20,0xda,0x38,0xae,0x30,0xda,0xeb,0xfa,0x30,0xdc,0x19,0xe1,0xb0,0xdc, + 0xb9,0x59,0x20,0xdd,0xfb,0x15,0x30,0xde,0x9b,0xde,0x20,0xdf,0xdd,0x9a,0x30,0xe0, + 0x54,0x33,0x20,0xf4,0x5a,0x9,0x30,0xf5,0x5,0x5e,0x20,0xf6,0xc0,0x64,0x30,0xf7, + 0xe,0x1e,0xa0,0xf8,0x51,0x2c,0x30,0xf8,0xc7,0xc5,0x20,0xfa,0xa,0xd2,0xb0,0xfa, + 0xa8,0xf8,0xa0,0xfb,0xec,0x6,0x30,0xfc,0x8b,0x7d,0xa0,0x1d,0xc9,0x8e,0x30,0x1e, + 0x78,0xd7,0xa0,0x1f,0xa0,0x35,0xb0,0x20,0x33,0xcf,0xa0,0x21,0x81,0x69,0x30,0x22, + 0xb,0xc8,0xa0,0x23,0x58,0x10,0xb0,0x23,0xe2,0x70,0x20,0x25,0x37,0xf2,0xb0,0x25, + 0xd4,0xc7,0x20,0x27,0x21,0xf,0x30,0x27,0xbd,0xe3,0xa0,0x29,0x0,0xf1,0x30,0x29, + 0x94,0x8b,0x20,0x2a,0xea,0xd,0xb0,0x2b,0x6b,0x32,0xa0,0x2c,0xc0,0xb5,0x30,0x2d, + 0x66,0xc4,0x20,0x2e,0xa0,0x97,0x30,0x2f,0x46,0xa6,0x20,0x30,0x80,0x79,0x30,0x31, + 0x1d,0x4d,0xa0,0x32,0x57,0x20,0xb0,0x33,0x6,0x6a,0x20,0x34,0x38,0x54,0x30,0x34, + 0xf8,0xc1,0x20,0x36,0x20,0x1f,0x30,0x36,0xcf,0x68,0xa0,0x37,0xf6,0xc6,0xb0,0x38, + 0xb8,0x85,0x20,0x39,0xdf,0xe3,0x30,0x3a,0x8f,0x2c,0xa0,0x3b,0xc8,0xff,0xb0,0x3c, + 0x6f,0xe,0xa0,0x3d,0xc4,0x91,0x30,0x3e,0x4e,0xf0,0xa0,0x3f,0x91,0xfe,0x30,0x40, + 0x2e,0xd2,0xa0,0x41,0x86,0xf8,0x30,0x42,0x17,0xef,0x20,0x43,0x51,0xc2,0x30,0x43, + 0xf7,0xd1,0x20,0x45,0x4d,0x53,0xb0,0x45,0xe0,0xed,0xa0,0x47,0x11,0x86,0x30,0x47, + 0xb7,0x95,0x20,0x48,0xfa,0xa2,0xb0,0x49,0x97,0x77,0x20,0x4a,0xda,0x84,0xb0,0x4b, + 0x80,0x93,0xa0,0x4c,0xba,0x66,0xb0,0x4d,0x60,0x75,0xa0,0x4e,0x9a,0x48,0xb0,0x4f, + 0x49,0x92,0x20,0x50,0x83,0x65,0x30,0x51,0x20,0x39,0xa0,0x52,0x63,0x47,0x30,0x53, + 0x0,0x1b,0xa0,0x54,0x43,0x29,0x30,0x54,0xe9,0x38,0x20,0x56,0x23,0xb,0x30,0x56, + 0xc9,0x1a,0x20,0x58,0x2,0xed,0x30,0x58,0xa8,0xfc,0x20,0x59,0xe2,0xcf,0x30,0x5a, + 0x88,0xde,0x20,0x5b,0xcb,0xeb,0xb0,0x5c,0x68,0xc0,0x20,0x5d,0xab,0xcd,0xb0,0x5e, + 0x48,0xa2,0x20,0x5f,0x8b,0xaf,0xb0,0x60,0x31,0xbe,0xa0,0x61,0x6b,0x91,0xb0,0x62, + 0x11,0xa0,0xa0,0x63,0x4b,0x73,0xb0,0x63,0xfa,0xbd,0x20,0x65,0x2b,0x55,0xb0,0x65, + 0xd1,0x64,0xa0,0x67,0x14,0x72,0x30,0x67,0xb1,0x46,0xa0,0x68,0xf4,0x54,0x30,0x69, + 0x9a,0x63,0x20,0x6a,0xd4,0x36,0x30,0x6b,0x7a,0x45,0x20,0x6c,0xb4,0x18,0x30,0x6d, + 0x5a,0x27,0x20,0x6e,0x93,0xfa,0x30,0x6f,0x3a,0x9,0x20,0x70,0x7d,0x16,0xb0,0x71, + 0x19,0xeb,0x20,0x72,0x5c,0xf8,0xb0,0x72,0xf9,0xcd,0x20,0x74,0x3c,0xda,0xb0,0x74, + 0xd9,0xaf,0x20,0x76,0x1c,0xbc,0xb0,0x76,0xc2,0xcb,0xa0,0x77,0xfc,0x9e,0xb0,0x78, + 0xab,0xe8,0x20,0x79,0xdc,0x80,0xb0,0x7a,0x82,0x8f,0xa0,0x7b,0xc5,0x9d,0x30,0x7c, + 0x62,0x71,0xa0,0x7d,0xa5,0x7f,0x30,0x7e,0x4b,0x8e,0x20,0x7f,0x85,0x61,0x30,0x0, 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x3,0x1,0x3,0x1,0x3,0x1, - 0x3,0x1,0x3,0x1,0x2,0x1,0x2,0x1,0x3,0x1,0x2,0x1,0x2,0x1,0x2,0x1, 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x4,0x6,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x7,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0xff,0xff,0xff,0xb5,0x0, - 0x0,0x0,0x0,0xe,0x10,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x1c, - 0x20,0x1,0xc,0x0,0x0,0xe,0x10,0x0,0x4,0x0,0x0,0xe,0x10,0x1,0x4,0x0, - 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x42, - 0x53,0x54,0x0,0x47,0x4d,0x54,0x0,0x42,0x44,0x53,0x54,0x0,0x0,0x1,0x1,0x1, - 0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0xa,0x47,0x4d,0x54, - 0x30,0x42,0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2f,0x31,0x2c,0x4d,0x31, - 0x30,0x2e,0x35,0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Zagreb - 0x0,0x0,0x7,0xa5, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0xff,0xff,0xd4,0x4c,0x0,0x0,0xff,0xff,0xe3,0xe0,0x1,0x4,0xff,0xff,0xd5,0xd0, + 0x0,0x8,0x4c,0x4d,0x54,0x0,0x2d,0x30,0x32,0x0,0x2d,0x30,0x33,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc, + 0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x96,0xaa,0x72,0xb4, + 0xff,0xff,0xff,0xff,0xb8,0xf,0x49,0xe0,0xff,0xff,0xff,0xff,0xb8,0xfd,0x40,0xa0, + 0xff,0xff,0xff,0xff,0xb9,0xf1,0x34,0x30,0xff,0xff,0xff,0xff,0xba,0xde,0x74,0x20, + 0xff,0xff,0xff,0xff,0xda,0x38,0xae,0x30,0xff,0xff,0xff,0xff,0xda,0xeb,0xfa,0x30, + 0xff,0xff,0xff,0xff,0xdc,0x19,0xe1,0xb0,0xff,0xff,0xff,0xff,0xdc,0xb9,0x59,0x20, + 0xff,0xff,0xff,0xff,0xdd,0xfb,0x15,0x30,0xff,0xff,0xff,0xff,0xde,0x9b,0xde,0x20, + 0xff,0xff,0xff,0xff,0xdf,0xdd,0x9a,0x30,0xff,0xff,0xff,0xff,0xe0,0x54,0x33,0x20, + 0xff,0xff,0xff,0xff,0xf4,0x5a,0x9,0x30,0xff,0xff,0xff,0xff,0xf5,0x5,0x5e,0x20, + 0xff,0xff,0xff,0xff,0xf6,0xc0,0x64,0x30,0xff,0xff,0xff,0xff,0xf7,0xe,0x1e,0xa0, + 0xff,0xff,0xff,0xff,0xf8,0x51,0x2c,0x30,0xff,0xff,0xff,0xff,0xf8,0xc7,0xc5,0x20, + 0xff,0xff,0xff,0xff,0xfa,0xa,0xd2,0xb0,0xff,0xff,0xff,0xff,0xfa,0xa8,0xf8,0xa0, + 0xff,0xff,0xff,0xff,0xfb,0xec,0x6,0x30,0xff,0xff,0xff,0xff,0xfc,0x8b,0x7d,0xa0, + 0x0,0x0,0x0,0x0,0x1d,0xc9,0x8e,0x30,0x0,0x0,0x0,0x0,0x1e,0x78,0xd7,0xa0, + 0x0,0x0,0x0,0x0,0x1f,0xa0,0x35,0xb0,0x0,0x0,0x0,0x0,0x20,0x33,0xcf,0xa0, + 0x0,0x0,0x0,0x0,0x21,0x81,0x69,0x30,0x0,0x0,0x0,0x0,0x22,0xb,0xc8,0xa0, + 0x0,0x0,0x0,0x0,0x23,0x58,0x10,0xb0,0x0,0x0,0x0,0x0,0x23,0xe2,0x70,0x20, + 0x0,0x0,0x0,0x0,0x25,0x37,0xf2,0xb0,0x0,0x0,0x0,0x0,0x25,0xd4,0xc7,0x20, + 0x0,0x0,0x0,0x0,0x27,0x21,0xf,0x30,0x0,0x0,0x0,0x0,0x27,0xbd,0xe3,0xa0, + 0x0,0x0,0x0,0x0,0x29,0x0,0xf1,0x30,0x0,0x0,0x0,0x0,0x29,0x94,0x8b,0x20, + 0x0,0x0,0x0,0x0,0x2a,0xea,0xd,0xb0,0x0,0x0,0x0,0x0,0x2b,0x6b,0x32,0xa0, + 0x0,0x0,0x0,0x0,0x2c,0xc0,0xb5,0x30,0x0,0x0,0x0,0x0,0x2d,0x66,0xc4,0x20, + 0x0,0x0,0x0,0x0,0x2e,0xa0,0x97,0x30,0x0,0x0,0x0,0x0,0x2f,0x46,0xa6,0x20, + 0x0,0x0,0x0,0x0,0x30,0x80,0x79,0x30,0x0,0x0,0x0,0x0,0x31,0x1d,0x4d,0xa0, + 0x0,0x0,0x0,0x0,0x32,0x57,0x20,0xb0,0x0,0x0,0x0,0x0,0x33,0x6,0x6a,0x20, + 0x0,0x0,0x0,0x0,0x34,0x38,0x54,0x30,0x0,0x0,0x0,0x0,0x34,0xf8,0xc1,0x20, + 0x0,0x0,0x0,0x0,0x36,0x20,0x1f,0x30,0x0,0x0,0x0,0x0,0x36,0xcf,0x68,0xa0, + 0x0,0x0,0x0,0x0,0x37,0xf6,0xc6,0xb0,0x0,0x0,0x0,0x0,0x38,0xb8,0x85,0x20, + 0x0,0x0,0x0,0x0,0x39,0xdf,0xe3,0x30,0x0,0x0,0x0,0x0,0x3a,0x8f,0x2c,0xa0, + 0x0,0x0,0x0,0x0,0x3b,0xc8,0xff,0xb0,0x0,0x0,0x0,0x0,0x3c,0x6f,0xe,0xa0, + 0x0,0x0,0x0,0x0,0x3d,0xc4,0x91,0x30,0x0,0x0,0x0,0x0,0x3e,0x4e,0xf0,0xa0, + 0x0,0x0,0x0,0x0,0x3f,0x91,0xfe,0x30,0x0,0x0,0x0,0x0,0x40,0x2e,0xd2,0xa0, + 0x0,0x0,0x0,0x0,0x41,0x86,0xf8,0x30,0x0,0x0,0x0,0x0,0x42,0x17,0xef,0x20, + 0x0,0x0,0x0,0x0,0x43,0x51,0xc2,0x30,0x0,0x0,0x0,0x0,0x43,0xf7,0xd1,0x20, + 0x0,0x0,0x0,0x0,0x45,0x4d,0x53,0xb0,0x0,0x0,0x0,0x0,0x45,0xe0,0xed,0xa0, + 0x0,0x0,0x0,0x0,0x47,0x11,0x86,0x30,0x0,0x0,0x0,0x0,0x47,0xb7,0x95,0x20, + 0x0,0x0,0x0,0x0,0x48,0xfa,0xa2,0xb0,0x0,0x0,0x0,0x0,0x49,0x97,0x77,0x20, + 0x0,0x0,0x0,0x0,0x4a,0xda,0x84,0xb0,0x0,0x0,0x0,0x0,0x4b,0x80,0x93,0xa0, + 0x0,0x0,0x0,0x0,0x4c,0xba,0x66,0xb0,0x0,0x0,0x0,0x0,0x4d,0x60,0x75,0xa0, + 0x0,0x0,0x0,0x0,0x4e,0x9a,0x48,0xb0,0x0,0x0,0x0,0x0,0x4f,0x49,0x92,0x20, + 0x0,0x0,0x0,0x0,0x50,0x83,0x65,0x30,0x0,0x0,0x0,0x0,0x51,0x20,0x39,0xa0, + 0x0,0x0,0x0,0x0,0x52,0x63,0x47,0x30,0x0,0x0,0x0,0x0,0x53,0x0,0x1b,0xa0, + 0x0,0x0,0x0,0x0,0x54,0x43,0x29,0x30,0x0,0x0,0x0,0x0,0x54,0xe9,0x38,0x20, + 0x0,0x0,0x0,0x0,0x56,0x23,0xb,0x30,0x0,0x0,0x0,0x0,0x56,0xc9,0x1a,0x20, + 0x0,0x0,0x0,0x0,0x58,0x2,0xed,0x30,0x0,0x0,0x0,0x0,0x58,0xa8,0xfc,0x20, + 0x0,0x0,0x0,0x0,0x59,0xe2,0xcf,0x30,0x0,0x0,0x0,0x0,0x5a,0x88,0xde,0x20, + 0x0,0x0,0x0,0x0,0x5b,0xcb,0xeb,0xb0,0x0,0x0,0x0,0x0,0x5c,0x68,0xc0,0x20, + 0x0,0x0,0x0,0x0,0x5d,0xab,0xcd,0xb0,0x0,0x0,0x0,0x0,0x5e,0x48,0xa2,0x20, + 0x0,0x0,0x0,0x0,0x5f,0x8b,0xaf,0xb0,0x0,0x0,0x0,0x0,0x60,0x31,0xbe,0xa0, + 0x0,0x0,0x0,0x0,0x61,0x6b,0x91,0xb0,0x0,0x0,0x0,0x0,0x62,0x11,0xa0,0xa0, + 0x0,0x0,0x0,0x0,0x63,0x4b,0x73,0xb0,0x0,0x0,0x0,0x0,0x63,0xfa,0xbd,0x20, + 0x0,0x0,0x0,0x0,0x65,0x2b,0x55,0xb0,0x0,0x0,0x0,0x0,0x65,0xd1,0x64,0xa0, + 0x0,0x0,0x0,0x0,0x67,0x14,0x72,0x30,0x0,0x0,0x0,0x0,0x67,0xb1,0x46,0xa0, + 0x0,0x0,0x0,0x0,0x68,0xf4,0x54,0x30,0x0,0x0,0x0,0x0,0x69,0x9a,0x63,0x20, + 0x0,0x0,0x0,0x0,0x6a,0xd4,0x36,0x30,0x0,0x0,0x0,0x0,0x6b,0x7a,0x45,0x20, + 0x0,0x0,0x0,0x0,0x6c,0xb4,0x18,0x30,0x0,0x0,0x0,0x0,0x6d,0x5a,0x27,0x20, + 0x0,0x0,0x0,0x0,0x6e,0x93,0xfa,0x30,0x0,0x0,0x0,0x0,0x6f,0x3a,0x9,0x20, + 0x0,0x0,0x0,0x0,0x70,0x7d,0x16,0xb0,0x0,0x0,0x0,0x0,0x71,0x19,0xeb,0x20, + 0x0,0x0,0x0,0x0,0x72,0x5c,0xf8,0xb0,0x0,0x0,0x0,0x0,0x72,0xf9,0xcd,0x20, + 0x0,0x0,0x0,0x0,0x74,0x3c,0xda,0xb0,0x0,0x0,0x0,0x0,0x74,0xd9,0xaf,0x20, + 0x0,0x0,0x0,0x0,0x76,0x1c,0xbc,0xb0,0x0,0x0,0x0,0x0,0x76,0xc2,0xcb,0xa0, + 0x0,0x0,0x0,0x0,0x77,0xfc,0x9e,0xb0,0x0,0x0,0x0,0x0,0x78,0xab,0xe8,0x20, + 0x0,0x0,0x0,0x0,0x79,0xdc,0x80,0xb0,0x0,0x0,0x0,0x0,0x7a,0x82,0x8f,0xa0, + 0x0,0x0,0x0,0x0,0x7b,0xc5,0x9d,0x30,0x0,0x0,0x0,0x0,0x7c,0x62,0x71,0xa0, + 0x0,0x0,0x0,0x0,0x7d,0xa5,0x7f,0x30,0x0,0x0,0x0,0x0,0x7e,0x4b,0x8e,0x20, + 0x0,0x0,0x0,0x0,0x7f,0x85,0x61,0x30,0x0,0x0,0x0,0x0,0x80,0x2b,0x70,0x20, + 0x0,0x0,0x0,0x0,0x81,0x65,0x43,0x30,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0xff,0xff,0xd4,0x4c,0x0, + 0x0,0xff,0xff,0xe3,0xe0,0x1,0x4,0xff,0xff,0xd5,0xd0,0x0,0x8,0x4c,0x4d,0x54, + 0x0,0x2d,0x30,0x32,0x0,0x2d,0x30,0x33,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa, + 0x3c,0x2d,0x30,0x33,0x3e,0x33,0x3c,0x2d,0x30,0x32,0x3e,0x2c,0x4d,0x31,0x30,0x2e, + 0x33,0x2e,0x30,0x2f,0x30,0x2c,0x4d,0x32,0x2e,0x33,0x2e,0x30,0x2f,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Brazil/West + 0x0,0x0,0x2,0x76, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x21,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0x96, + 0xaa,0x7f,0x44,0xb8,0xf,0x57,0xf0,0xb8,0xfd,0x4e,0xb0,0xb9,0xf1,0x42,0x40,0xba, + 0xde,0x82,0x30,0xda,0x38,0xbc,0x40,0xda,0xec,0x8,0x40,0xdc,0x19,0xef,0xc0,0xdc, + 0xb9,0x67,0x30,0xdd,0xfb,0x23,0x40,0xde,0x9b,0xec,0x30,0xdf,0xdd,0xa8,0x40,0xe0, + 0x54,0x41,0x30,0xf4,0x98,0xd,0xc0,0xf5,0x5,0x6c,0x30,0xf6,0xc0,0x72,0x40,0xf7, + 0xe,0x2c,0xb0,0xf8,0x51,0x3a,0x40,0xf8,0xc7,0xd3,0x30,0xfa,0xa,0xe0,0xc0,0xfa, + 0xa9,0x6,0xb0,0xfb,0xec,0x14,0x40,0xfc,0x8b,0x8b,0xb0,0x1d,0xc9,0x9c,0x40,0x1e, + 0x78,0xe5,0xb0,0x1f,0xa0,0x43,0xc0,0x20,0x33,0xdd,0xb0,0x21,0x81,0x77,0x40,0x22, + 0xb,0xd6,0xb0,0x2c,0xc0,0xc3,0x40,0x2d,0x66,0xd2,0x30,0x7f,0xff,0xff,0xff,0x0, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x2, + 0xff,0xff,0xc7,0xbc,0x0,0x0,0xff,0xff,0xd5,0xd0,0x1,0x4,0xff,0xff,0xc7,0xc0, + 0x0,0x8,0x4c,0x4d,0x54,0x0,0x2d,0x30,0x33,0x0,0x2d,0x30,0x34,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc, + 0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x96,0xaa,0x7f,0x44, + 0xff,0xff,0xff,0xff,0xb8,0xf,0x57,0xf0,0xff,0xff,0xff,0xff,0xb8,0xfd,0x4e,0xb0, + 0xff,0xff,0xff,0xff,0xb9,0xf1,0x42,0x40,0xff,0xff,0xff,0xff,0xba,0xde,0x82,0x30, + 0xff,0xff,0xff,0xff,0xda,0x38,0xbc,0x40,0xff,0xff,0xff,0xff,0xda,0xec,0x8,0x40, + 0xff,0xff,0xff,0xff,0xdc,0x19,0xef,0xc0,0xff,0xff,0xff,0xff,0xdc,0xb9,0x67,0x30, + 0xff,0xff,0xff,0xff,0xdd,0xfb,0x23,0x40,0xff,0xff,0xff,0xff,0xde,0x9b,0xec,0x30, + 0xff,0xff,0xff,0xff,0xdf,0xdd,0xa8,0x40,0xff,0xff,0xff,0xff,0xe0,0x54,0x41,0x30, + 0xff,0xff,0xff,0xff,0xf4,0x98,0xd,0xc0,0xff,0xff,0xff,0xff,0xf5,0x5,0x6c,0x30, + 0xff,0xff,0xff,0xff,0xf6,0xc0,0x72,0x40,0xff,0xff,0xff,0xff,0xf7,0xe,0x2c,0xb0, + 0xff,0xff,0xff,0xff,0xf8,0x51,0x3a,0x40,0xff,0xff,0xff,0xff,0xf8,0xc7,0xd3,0x30, + 0xff,0xff,0xff,0xff,0xfa,0xa,0xe0,0xc0,0xff,0xff,0xff,0xff,0xfa,0xa9,0x6,0xb0, + 0xff,0xff,0xff,0xff,0xfb,0xec,0x14,0x40,0xff,0xff,0xff,0xff,0xfc,0x8b,0x8b,0xb0, + 0x0,0x0,0x0,0x0,0x1d,0xc9,0x9c,0x40,0x0,0x0,0x0,0x0,0x1e,0x78,0xe5,0xb0, + 0x0,0x0,0x0,0x0,0x1f,0xa0,0x43,0xc0,0x0,0x0,0x0,0x0,0x20,0x33,0xdd,0xb0, + 0x0,0x0,0x0,0x0,0x21,0x81,0x77,0x40,0x0,0x0,0x0,0x0,0x22,0xb,0xd6,0xb0, + 0x0,0x0,0x0,0x0,0x2c,0xc0,0xc3,0x40,0x0,0x0,0x0,0x0,0x2d,0x66,0xd2,0x30, + 0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x2,0xff,0xff,0xc7,0xbc,0x0,0x0,0xff, + 0xff,0xd5,0xd0,0x1,0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x2d, + 0x30,0x33,0x0,0x2d,0x30,0x34,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2d, + 0x30,0x34,0x3e,0x34,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Brazil/DeNoronha + 0x0,0x0,0x2,0xe6, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x29,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0x96, + 0xaa,0x65,0x64,0xb8,0xf,0x3b,0xd0,0xb8,0xfd,0x32,0x90,0xb9,0xf1,0x26,0x20,0xba, + 0xde,0x66,0x10,0xda,0x38,0xa0,0x20,0xda,0xeb,0xec,0x20,0xdc,0x19,0xd3,0xa0,0xdc, + 0xb9,0x4b,0x10,0xdd,0xfb,0x7,0x20,0xde,0x9b,0xd0,0x10,0xdf,0xdd,0x8c,0x20,0xe0, + 0x54,0x25,0x10,0xf4,0x97,0xf1,0xa0,0xf5,0x5,0x50,0x10,0xf6,0xc0,0x56,0x20,0xf7, + 0xe,0x10,0x90,0xf8,0x51,0x1e,0x20,0xf8,0xc7,0xb7,0x10,0xfa,0xa,0xc4,0xa0,0xfa, + 0xa8,0xea,0x90,0xfb,0xeb,0xf8,0x20,0xfc,0x8b,0x6f,0x90,0x1d,0xc9,0x80,0x20,0x1e, + 0x78,0xc9,0x90,0x1f,0xa0,0x27,0xa0,0x20,0x33,0xc1,0x90,0x21,0x81,0x5b,0x20,0x22, + 0xb,0xba,0x90,0x23,0x58,0x2,0xa0,0x23,0xe2,0x62,0x10,0x25,0x37,0xe4,0xa0,0x25, + 0xd4,0xb9,0x10,0x37,0xf6,0xb8,0xa0,0x38,0xb8,0x77,0x10,0x39,0xdf,0xd5,0x20,0x39, + 0xe9,0x1,0x90,0x3b,0xc8,0xf1,0xa0,0x3c,0x6f,0x0,0x90,0x7f,0xff,0xff,0xff,0x0, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x2,0xff,0xff,0xe1,0x9c,0x0,0x0,0xff,0xff, + 0xf1,0xf0,0x1,0x4,0xff,0xff,0xe3,0xe0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x2d,0x30, + 0x31,0x0,0x2d,0x30,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66, + 0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x29, + 0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0x96,0xaa,0x65,0x64,0xff,0xff,0xff,0xff,0xb8,0xf,0x3b,0xd0, + 0xff,0xff,0xff,0xff,0xb8,0xfd,0x32,0x90,0xff,0xff,0xff,0xff,0xb9,0xf1,0x26,0x20, + 0xff,0xff,0xff,0xff,0xba,0xde,0x66,0x10,0xff,0xff,0xff,0xff,0xda,0x38,0xa0,0x20, + 0xff,0xff,0xff,0xff,0xda,0xeb,0xec,0x20,0xff,0xff,0xff,0xff,0xdc,0x19,0xd3,0xa0, + 0xff,0xff,0xff,0xff,0xdc,0xb9,0x4b,0x10,0xff,0xff,0xff,0xff,0xdd,0xfb,0x7,0x20, + 0xff,0xff,0xff,0xff,0xde,0x9b,0xd0,0x10,0xff,0xff,0xff,0xff,0xdf,0xdd,0x8c,0x20, + 0xff,0xff,0xff,0xff,0xe0,0x54,0x25,0x10,0xff,0xff,0xff,0xff,0xf4,0x97,0xf1,0xa0, + 0xff,0xff,0xff,0xff,0xf5,0x5,0x50,0x10,0xff,0xff,0xff,0xff,0xf6,0xc0,0x56,0x20, + 0xff,0xff,0xff,0xff,0xf7,0xe,0x10,0x90,0xff,0xff,0xff,0xff,0xf8,0x51,0x1e,0x20, + 0xff,0xff,0xff,0xff,0xf8,0xc7,0xb7,0x10,0xff,0xff,0xff,0xff,0xfa,0xa,0xc4,0xa0, + 0xff,0xff,0xff,0xff,0xfa,0xa8,0xea,0x90,0xff,0xff,0xff,0xff,0xfb,0xeb,0xf8,0x20, + 0xff,0xff,0xff,0xff,0xfc,0x8b,0x6f,0x90,0x0,0x0,0x0,0x0,0x1d,0xc9,0x80,0x20, + 0x0,0x0,0x0,0x0,0x1e,0x78,0xc9,0x90,0x0,0x0,0x0,0x0,0x1f,0xa0,0x27,0xa0, + 0x0,0x0,0x0,0x0,0x20,0x33,0xc1,0x90,0x0,0x0,0x0,0x0,0x21,0x81,0x5b,0x20, + 0x0,0x0,0x0,0x0,0x22,0xb,0xba,0x90,0x0,0x0,0x0,0x0,0x23,0x58,0x2,0xa0, + 0x0,0x0,0x0,0x0,0x23,0xe2,0x62,0x10,0x0,0x0,0x0,0x0,0x25,0x37,0xe4,0xa0, + 0x0,0x0,0x0,0x0,0x25,0xd4,0xb9,0x10,0x0,0x0,0x0,0x0,0x37,0xf6,0xb8,0xa0, + 0x0,0x0,0x0,0x0,0x38,0xb8,0x77,0x10,0x0,0x0,0x0,0x0,0x39,0xdf,0xd5,0x20, + 0x0,0x0,0x0,0x0,0x39,0xe9,0x1,0x90,0x0,0x0,0x0,0x0,0x3b,0xc8,0xf1,0xa0, + 0x0,0x0,0x0,0x0,0x3c,0x6f,0x0,0x90,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff, + 0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x2,0xff,0xff,0xe1,0x9c,0x0,0x0,0xff, + 0xff,0xf1,0xf0,0x1,0x4,0xff,0xff,0xe3,0xe0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x2d, + 0x30,0x31,0x0,0x2d,0x30,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2d, + 0x30,0x32,0x3e,0x32,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Antarctica/Vostok + 0x0,0x0,0x0,0xbb, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0xe9, + 0x58,0x89,0x80,0x7f,0xff,0xff,0xff,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x54,0x60,0x0,0x4,0x2d,0x30,0x30,0x0,0x2b,0x30,0x36,0x0,0x0,0x0, + 0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xe9,0x58,0x89,0x80,0x0,0x0, + 0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x54,0x60,0x0,0x4,0x2d,0x30,0x30,0x0,0x2b,0x30,0x36,0x0,0x0,0x0,0x0, + 0x0,0xa,0x3c,0x2b,0x30,0x36,0x3e,0x2d,0x36,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Antarctica/McMurdo + 0x0,0x0,0x9,0x9c, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x79,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0xca, - 0x2,0x35,0xe0,0xcc,0xe7,0x4b,0x10,0xcd,0xa9,0x17,0x90,0xce,0xa2,0x43,0x10,0xcf, - 0x92,0x34,0x10,0xd0,0x82,0x25,0x10,0xd0,0xfa,0x1,0x70,0xd1,0xa1,0x8c,0x10,0xd2, - 0x4e,0x40,0x90,0x18,0x45,0x5f,0x70,0x18,0xe3,0xaf,0x90,0x19,0xd3,0xa0,0x90,0x1a, - 0xc3,0x91,0x90,0x1b,0xbc,0xbd,0x10,0x1c,0xac,0xae,0x10,0x1d,0x9c,0x9f,0x10,0x1e, - 0x8c,0x90,0x10,0x1f,0x7c,0x81,0x10,0x20,0x6c,0x72,0x10,0x21,0x5c,0x63,0x10,0x22, - 0x4c,0x54,0x10,0x23,0x3c,0x45,0x10,0x24,0x2c,0x36,0x10,0x25,0x1c,0x27,0x10,0x26, - 0xc,0x18,0x10,0x27,0x5,0x43,0x90,0x27,0xf5,0x34,0x90,0x28,0xe5,0x25,0x90,0x29, - 0xd5,0x16,0x90,0x2a,0xc5,0x7,0x90,0x2b,0xb4,0xf8,0x90,0x2c,0xa4,0xe9,0x90,0x2d, - 0x94,0xda,0x90,0x2e,0x84,0xcb,0x90,0x2f,0x74,0xbc,0x90,0x30,0x64,0xad,0x90,0x31, - 0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34,0x52,0x96,0x10,0x35, - 0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x38, - 0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b,0xdb,0x58,0x90,0x3c, - 0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f,0x9b,0x1c,0x90,0x40, - 0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43,0x64,0x1b,0x10,0x44, - 0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47, - 0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b, - 0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e,0xac,0xa1,0x90,0x4f, - 0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53, - 0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56,0x2c,0x29,0x90,0x56, - 0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59,0xf5,0x28,0x10,0x5a, - 0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d,0xb4,0xec,0x10,0x5e, - 0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61,0x7d,0xea,0x90,0x62, - 0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65,0x3d,0xae,0x90,0x66, - 0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68,0xfd,0x72,0x90,0x69, - 0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c,0xc6,0x71,0x10,0x6d, - 0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70,0x86,0x35,0x10,0x71, - 0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74,0x45,0xf9,0x10,0x75, - 0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78, - 0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c, - 0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x1, - 0x4,0x2,0x3,0x2,0x3,0x2,0x1,0x3,0x2,0x1,0x5,0x6,0x5,0x6,0x5,0x6, + 0x0,0x0,0x9c,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x13,0x80,0x0,0x0,0x0,0xb0, + 0xb4,0xb2,0xe8,0xb1,0x51,0x87,0x58,0xb2,0x78,0xe5,0x68,0xb3,0x43,0xe5,0x60,0xb4, + 0x58,0xc7,0x68,0xb5,0x23,0xc7,0x60,0xb6,0x38,0xa9,0x68,0xb7,0x3,0xa9,0x60,0xb8, + 0x18,0x8b,0x68,0xb8,0xec,0xc5,0xe0,0xb9,0xf8,0x6d,0x68,0xba,0xcc,0xa7,0xe0,0xbb, + 0xd8,0x4f,0x68,0xbc,0xe3,0xe8,0xe0,0xbd,0xae,0xf6,0xe8,0xbe,0xc3,0xca,0xe0,0xbf, + 0x8e,0xd8,0xe8,0xc0,0xa3,0xac,0xe0,0xc1,0x6e,0xba,0xe8,0xc2,0x83,0x8e,0xe0,0xc3, + 0x4e,0x9c,0xe8,0xc4,0x63,0x70,0xe0,0xc5,0x2e,0x7e,0xe8,0xc6,0x4c,0x8d,0x60,0xc7, + 0xe,0x60,0xe8,0xc8,0x2c,0x6f,0x60,0xc8,0xf7,0x7d,0x68,0xd2,0xda,0x9a,0x40,0x9, + 0x18,0xfd,0xe0,0x9,0xac,0xa5,0xe0,0xa,0xef,0xa5,0x60,0xb,0x9e,0xfc,0xe0,0xc, + 0xd8,0xc1,0xe0,0xd,0x7e,0xde,0xe0,0xe,0xb8,0xa3,0xe0,0xf,0x5e,0xc0,0xe0,0x10, + 0x98,0x85,0xe0,0x11,0x3e,0xa2,0xe0,0x12,0x78,0x67,0xe0,0x13,0x1e,0x84,0xe0,0x14, + 0x58,0x49,0xe0,0x14,0xfe,0x66,0xe0,0x16,0x38,0x2b,0xe0,0x16,0xe7,0x83,0x60,0x18, + 0x21,0x48,0x60,0x18,0xc7,0x65,0x60,0x1a,0x1,0x2a,0x60,0x1a,0xa7,0x47,0x60,0x1b, + 0xe1,0xc,0x60,0x1c,0x87,0x29,0x60,0x1d,0xc0,0xee,0x60,0x1e,0x67,0xb,0x60,0x1f, + 0xa0,0xd0,0x60,0x20,0x46,0xed,0x60,0x21,0x80,0xb2,0x60,0x22,0x30,0x9,0xe0,0x23, + 0x69,0xce,0xe0,0x24,0xf,0xeb,0xe0,0x25,0x2e,0x1,0x60,0x26,0x2,0x42,0xe0,0x27, + 0xd,0xe3,0x60,0x27,0xe2,0x24,0xe0,0x28,0xed,0xc5,0x60,0x29,0xc2,0x6,0xe0,0x2a, + 0xcd,0xa7,0x60,0x2b,0xab,0x23,0x60,0x2c,0xad,0x89,0x60,0x2d,0x8b,0x5,0x60,0x2e, + 0x8d,0x6b,0x60,0x2f,0x6a,0xe7,0x60,0x30,0x6d,0x4d,0x60,0x31,0x4a,0xc9,0x60,0x32, + 0x56,0x69,0xe0,0x33,0x2a,0xab,0x60,0x34,0x36,0x4b,0xe0,0x35,0xa,0x8d,0x60,0x36, + 0x16,0x2d,0xe0,0x36,0xf3,0xa9,0xe0,0x37,0xf6,0xf,0xe0,0x38,0xd3,0x8b,0xe0,0x39, + 0xd5,0xf1,0xe0,0x3a,0xb3,0x6d,0xe0,0x3b,0xbf,0xe,0x60,0x3c,0x93,0x4f,0xe0,0x3d, + 0x9e,0xf0,0x60,0x3e,0x73,0x31,0xe0,0x3f,0x7e,0xd2,0x60,0x40,0x5c,0x4e,0x60,0x41, + 0x5e,0xb4,0x60,0x42,0x3c,0x30,0x60,0x43,0x3e,0x96,0x60,0x44,0x1c,0x12,0x60,0x45, + 0x1e,0x78,0x60,0x45,0xfb,0xf4,0x60,0x46,0xfe,0x5a,0x60,0x47,0xf7,0x85,0xe0,0x48, + 0xde,0x3c,0x60,0x49,0xd7,0x67,0xe0,0x4a,0xbe,0x1e,0x60,0x4b,0xb7,0x49,0xe0,0x4c, + 0x9e,0x0,0x60,0x4d,0x97,0x2b,0xe0,0x4e,0x7d,0xe2,0x60,0x4f,0x77,0xd,0xe0,0x50, + 0x66,0xfe,0xe0,0x51,0x60,0x2a,0x60,0x52,0x46,0xe0,0xe0,0x53,0x40,0xc,0x60,0x54, + 0x26,0xc2,0xe0,0x55,0x1f,0xee,0x60,0x56,0x6,0xa4,0xe0,0x56,0xff,0xd0,0x60,0x57, + 0xe6,0x86,0xe0,0x58,0xdf,0xb2,0x60,0x59,0xc6,0x68,0xe0,0x5a,0xbf,0x94,0x60,0x5b, + 0xaf,0x85,0x60,0x5c,0xa8,0xb0,0xe0,0x5d,0x8f,0x67,0x60,0x5e,0x88,0x92,0xe0,0x5f, + 0x6f,0x49,0x60,0x60,0x68,0x74,0xe0,0x61,0x4f,0x2b,0x60,0x62,0x48,0x56,0xe0,0x63, + 0x2f,0xd,0x60,0x64,0x28,0x38,0xe0,0x65,0xe,0xef,0x60,0x66,0x11,0x55,0x60,0x66, + 0xf8,0xb,0xe0,0x67,0xf1,0x37,0x60,0x68,0xd7,0xed,0xe0,0x69,0xd1,0x19,0x60,0x6a, + 0xb7,0xcf,0xe0,0x6b,0xb0,0xfb,0x60,0x6c,0x97,0xb1,0xe0,0x6d,0x90,0xdd,0x60,0x6e, + 0x77,0x93,0xe0,0x6f,0x70,0xbf,0x60,0x70,0x60,0xb0,0x60,0x71,0x59,0xdb,0xe0,0x72, + 0x40,0x92,0x60,0x73,0x39,0xbd,0xe0,0x74,0x20,0x74,0x60,0x75,0x19,0x9f,0xe0,0x76, + 0x0,0x56,0x60,0x76,0xf9,0x81,0xe0,0x77,0xe0,0x38,0x60,0x78,0xd9,0x63,0xe0,0x79, + 0xc0,0x1a,0x60,0x7a,0xb9,0x45,0xe0,0x7b,0xa9,0x36,0xe0,0x7c,0xa2,0x62,0x60,0x7d, + 0x89,0x18,0xe0,0x7e,0x82,0x44,0x60,0x7f,0x68,0xfa,0xe0,0x2,0x1,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x6,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x0,0x0,0xa3,0xd8,0x0,0x0,0x0,0x0,0xaf, + 0xc8,0x1,0x4,0x0,0x0,0xa1,0xb8,0x0,0x9,0x0,0x0,0xa8,0xc0,0x1,0x4,0x0, + 0x0,0xb6,0xd0,0x1,0xe,0x0,0x0,0xa8,0xc0,0x0,0x4,0x0,0x0,0xa8,0xc0,0x0, + 0x4,0x4c,0x4d,0x54,0x0,0x4e,0x5a,0x53,0x54,0x0,0x4e,0x5a,0x4d,0x54,0x0,0x4e, + 0x5a,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x9d,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x13,0xf8,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x41,0xb7,0x4c,0xa8,0xff,0xff, + 0xff,0xff,0xb0,0xb4,0xb2,0xe8,0xff,0xff,0xff,0xff,0xb1,0x51,0x87,0x58,0xff,0xff, + 0xff,0xff,0xb2,0x78,0xe5,0x68,0xff,0xff,0xff,0xff,0xb3,0x43,0xe5,0x60,0xff,0xff, + 0xff,0xff,0xb4,0x58,0xc7,0x68,0xff,0xff,0xff,0xff,0xb5,0x23,0xc7,0x60,0xff,0xff, + 0xff,0xff,0xb6,0x38,0xa9,0x68,0xff,0xff,0xff,0xff,0xb7,0x3,0xa9,0x60,0xff,0xff, + 0xff,0xff,0xb8,0x18,0x8b,0x68,0xff,0xff,0xff,0xff,0xb8,0xec,0xc5,0xe0,0xff,0xff, + 0xff,0xff,0xb9,0xf8,0x6d,0x68,0xff,0xff,0xff,0xff,0xba,0xcc,0xa7,0xe0,0xff,0xff, + 0xff,0xff,0xbb,0xd8,0x4f,0x68,0xff,0xff,0xff,0xff,0xbc,0xe3,0xe8,0xe0,0xff,0xff, + 0xff,0xff,0xbd,0xae,0xf6,0xe8,0xff,0xff,0xff,0xff,0xbe,0xc3,0xca,0xe0,0xff,0xff, + 0xff,0xff,0xbf,0x8e,0xd8,0xe8,0xff,0xff,0xff,0xff,0xc0,0xa3,0xac,0xe0,0xff,0xff, + 0xff,0xff,0xc1,0x6e,0xba,0xe8,0xff,0xff,0xff,0xff,0xc2,0x83,0x8e,0xe0,0xff,0xff, + 0xff,0xff,0xc3,0x4e,0x9c,0xe8,0xff,0xff,0xff,0xff,0xc4,0x63,0x70,0xe0,0xff,0xff, + 0xff,0xff,0xc5,0x2e,0x7e,0xe8,0xff,0xff,0xff,0xff,0xc6,0x4c,0x8d,0x60,0xff,0xff, + 0xff,0xff,0xc7,0xe,0x60,0xe8,0xff,0xff,0xff,0xff,0xc8,0x2c,0x6f,0x60,0xff,0xff, + 0xff,0xff,0xc8,0xf7,0x7d,0x68,0xff,0xff,0xff,0xff,0xd2,0xda,0x9a,0x40,0x0,0x0, + 0x0,0x0,0x9,0x18,0xfd,0xe0,0x0,0x0,0x0,0x0,0x9,0xac,0xa5,0xe0,0x0,0x0, + 0x0,0x0,0xa,0xef,0xa5,0x60,0x0,0x0,0x0,0x0,0xb,0x9e,0xfc,0xe0,0x0,0x0, + 0x0,0x0,0xc,0xd8,0xc1,0xe0,0x0,0x0,0x0,0x0,0xd,0x7e,0xde,0xe0,0x0,0x0, + 0x0,0x0,0xe,0xb8,0xa3,0xe0,0x0,0x0,0x0,0x0,0xf,0x5e,0xc0,0xe0,0x0,0x0, + 0x0,0x0,0x10,0x98,0x85,0xe0,0x0,0x0,0x0,0x0,0x11,0x3e,0xa2,0xe0,0x0,0x0, + 0x0,0x0,0x12,0x78,0x67,0xe0,0x0,0x0,0x0,0x0,0x13,0x1e,0x84,0xe0,0x0,0x0, + 0x0,0x0,0x14,0x58,0x49,0xe0,0x0,0x0,0x0,0x0,0x14,0xfe,0x66,0xe0,0x0,0x0, + 0x0,0x0,0x16,0x38,0x2b,0xe0,0x0,0x0,0x0,0x0,0x16,0xe7,0x83,0x60,0x0,0x0, + 0x0,0x0,0x18,0x21,0x48,0x60,0x0,0x0,0x0,0x0,0x18,0xc7,0x65,0x60,0x0,0x0, + 0x0,0x0,0x1a,0x1,0x2a,0x60,0x0,0x0,0x0,0x0,0x1a,0xa7,0x47,0x60,0x0,0x0, + 0x0,0x0,0x1b,0xe1,0xc,0x60,0x0,0x0,0x0,0x0,0x1c,0x87,0x29,0x60,0x0,0x0, + 0x0,0x0,0x1d,0xc0,0xee,0x60,0x0,0x0,0x0,0x0,0x1e,0x67,0xb,0x60,0x0,0x0, + 0x0,0x0,0x1f,0xa0,0xd0,0x60,0x0,0x0,0x0,0x0,0x20,0x46,0xed,0x60,0x0,0x0, + 0x0,0x0,0x21,0x80,0xb2,0x60,0x0,0x0,0x0,0x0,0x22,0x30,0x9,0xe0,0x0,0x0, + 0x0,0x0,0x23,0x69,0xce,0xe0,0x0,0x0,0x0,0x0,0x24,0xf,0xeb,0xe0,0x0,0x0, + 0x0,0x0,0x25,0x2e,0x1,0x60,0x0,0x0,0x0,0x0,0x26,0x2,0x42,0xe0,0x0,0x0, + 0x0,0x0,0x27,0xd,0xe3,0x60,0x0,0x0,0x0,0x0,0x27,0xe2,0x24,0xe0,0x0,0x0, + 0x0,0x0,0x28,0xed,0xc5,0x60,0x0,0x0,0x0,0x0,0x29,0xc2,0x6,0xe0,0x0,0x0, + 0x0,0x0,0x2a,0xcd,0xa7,0x60,0x0,0x0,0x0,0x0,0x2b,0xab,0x23,0x60,0x0,0x0, + 0x0,0x0,0x2c,0xad,0x89,0x60,0x0,0x0,0x0,0x0,0x2d,0x8b,0x5,0x60,0x0,0x0, + 0x0,0x0,0x2e,0x8d,0x6b,0x60,0x0,0x0,0x0,0x0,0x2f,0x6a,0xe7,0x60,0x0,0x0, + 0x0,0x0,0x30,0x6d,0x4d,0x60,0x0,0x0,0x0,0x0,0x31,0x4a,0xc9,0x60,0x0,0x0, + 0x0,0x0,0x32,0x56,0x69,0xe0,0x0,0x0,0x0,0x0,0x33,0x2a,0xab,0x60,0x0,0x0, + 0x0,0x0,0x34,0x36,0x4b,0xe0,0x0,0x0,0x0,0x0,0x35,0xa,0x8d,0x60,0x0,0x0, + 0x0,0x0,0x36,0x16,0x2d,0xe0,0x0,0x0,0x0,0x0,0x36,0xf3,0xa9,0xe0,0x0,0x0, + 0x0,0x0,0x37,0xf6,0xf,0xe0,0x0,0x0,0x0,0x0,0x38,0xd3,0x8b,0xe0,0x0,0x0, + 0x0,0x0,0x39,0xd5,0xf1,0xe0,0x0,0x0,0x0,0x0,0x3a,0xb3,0x6d,0xe0,0x0,0x0, + 0x0,0x0,0x3b,0xbf,0xe,0x60,0x0,0x0,0x0,0x0,0x3c,0x93,0x4f,0xe0,0x0,0x0, + 0x0,0x0,0x3d,0x9e,0xf0,0x60,0x0,0x0,0x0,0x0,0x3e,0x73,0x31,0xe0,0x0,0x0, + 0x0,0x0,0x3f,0x7e,0xd2,0x60,0x0,0x0,0x0,0x0,0x40,0x5c,0x4e,0x60,0x0,0x0, + 0x0,0x0,0x41,0x5e,0xb4,0x60,0x0,0x0,0x0,0x0,0x42,0x3c,0x30,0x60,0x0,0x0, + 0x0,0x0,0x43,0x3e,0x96,0x60,0x0,0x0,0x0,0x0,0x44,0x1c,0x12,0x60,0x0,0x0, + 0x0,0x0,0x45,0x1e,0x78,0x60,0x0,0x0,0x0,0x0,0x45,0xfb,0xf4,0x60,0x0,0x0, + 0x0,0x0,0x46,0xfe,0x5a,0x60,0x0,0x0,0x0,0x0,0x47,0xf7,0x85,0xe0,0x0,0x0, + 0x0,0x0,0x48,0xde,0x3c,0x60,0x0,0x0,0x0,0x0,0x49,0xd7,0x67,0xe0,0x0,0x0, + 0x0,0x0,0x4a,0xbe,0x1e,0x60,0x0,0x0,0x0,0x0,0x4b,0xb7,0x49,0xe0,0x0,0x0, + 0x0,0x0,0x4c,0x9e,0x0,0x60,0x0,0x0,0x0,0x0,0x4d,0x97,0x2b,0xe0,0x0,0x0, + 0x0,0x0,0x4e,0x7d,0xe2,0x60,0x0,0x0,0x0,0x0,0x4f,0x77,0xd,0xe0,0x0,0x0, + 0x0,0x0,0x50,0x66,0xfe,0xe0,0x0,0x0,0x0,0x0,0x51,0x60,0x2a,0x60,0x0,0x0, + 0x0,0x0,0x52,0x46,0xe0,0xe0,0x0,0x0,0x0,0x0,0x53,0x40,0xc,0x60,0x0,0x0, + 0x0,0x0,0x54,0x26,0xc2,0xe0,0x0,0x0,0x0,0x0,0x55,0x1f,0xee,0x60,0x0,0x0, + 0x0,0x0,0x56,0x6,0xa4,0xe0,0x0,0x0,0x0,0x0,0x56,0xff,0xd0,0x60,0x0,0x0, + 0x0,0x0,0x57,0xe6,0x86,0xe0,0x0,0x0,0x0,0x0,0x58,0xdf,0xb2,0x60,0x0,0x0, + 0x0,0x0,0x59,0xc6,0x68,0xe0,0x0,0x0,0x0,0x0,0x5a,0xbf,0x94,0x60,0x0,0x0, + 0x0,0x0,0x5b,0xaf,0x85,0x60,0x0,0x0,0x0,0x0,0x5c,0xa8,0xb0,0xe0,0x0,0x0, + 0x0,0x0,0x5d,0x8f,0x67,0x60,0x0,0x0,0x0,0x0,0x5e,0x88,0x92,0xe0,0x0,0x0, + 0x0,0x0,0x5f,0x6f,0x49,0x60,0x0,0x0,0x0,0x0,0x60,0x68,0x74,0xe0,0x0,0x0, + 0x0,0x0,0x61,0x4f,0x2b,0x60,0x0,0x0,0x0,0x0,0x62,0x48,0x56,0xe0,0x0,0x0, + 0x0,0x0,0x63,0x2f,0xd,0x60,0x0,0x0,0x0,0x0,0x64,0x28,0x38,0xe0,0x0,0x0, + 0x0,0x0,0x65,0xe,0xef,0x60,0x0,0x0,0x0,0x0,0x66,0x11,0x55,0x60,0x0,0x0, + 0x0,0x0,0x66,0xf8,0xb,0xe0,0x0,0x0,0x0,0x0,0x67,0xf1,0x37,0x60,0x0,0x0, + 0x0,0x0,0x68,0xd7,0xed,0xe0,0x0,0x0,0x0,0x0,0x69,0xd1,0x19,0x60,0x0,0x0, + 0x0,0x0,0x6a,0xb7,0xcf,0xe0,0x0,0x0,0x0,0x0,0x6b,0xb0,0xfb,0x60,0x0,0x0, + 0x0,0x0,0x6c,0x97,0xb1,0xe0,0x0,0x0,0x0,0x0,0x6d,0x90,0xdd,0x60,0x0,0x0, + 0x0,0x0,0x6e,0x77,0x93,0xe0,0x0,0x0,0x0,0x0,0x6f,0x70,0xbf,0x60,0x0,0x0, + 0x0,0x0,0x70,0x60,0xb0,0x60,0x0,0x0,0x0,0x0,0x71,0x59,0xdb,0xe0,0x0,0x0, + 0x0,0x0,0x72,0x40,0x92,0x60,0x0,0x0,0x0,0x0,0x73,0x39,0xbd,0xe0,0x0,0x0, + 0x0,0x0,0x74,0x20,0x74,0x60,0x0,0x0,0x0,0x0,0x75,0x19,0x9f,0xe0,0x0,0x0, + 0x0,0x0,0x76,0x0,0x56,0x60,0x0,0x0,0x0,0x0,0x76,0xf9,0x81,0xe0,0x0,0x0, + 0x0,0x0,0x77,0xe0,0x38,0x60,0x0,0x0,0x0,0x0,0x78,0xd9,0x63,0xe0,0x0,0x0, + 0x0,0x0,0x79,0xc0,0x1a,0x60,0x0,0x0,0x0,0x0,0x7a,0xb9,0x45,0xe0,0x0,0x0, + 0x0,0x0,0x7b,0xa9,0x36,0xe0,0x0,0x0,0x0,0x0,0x7c,0xa2,0x62,0x60,0x0,0x0, + 0x0,0x0,0x7d,0x89,0x18,0xe0,0x0,0x0,0x0,0x0,0x7e,0x82,0x44,0x60,0x0,0x0, + 0x0,0x0,0x7f,0x68,0xfa,0xe0,0x0,0x2,0x1,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x6,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x0,0x0,0xa3,0xd8,0x0,0x0,0x0,0x0,0xaf,0xc8,0x1,0x4,0x0, + 0x0,0xa1,0xb8,0x0,0x9,0x0,0x0,0xa8,0xc0,0x1,0x4,0x0,0x0,0xb6,0xd0,0x1, + 0xe,0x0,0x0,0xa8,0xc0,0x0,0x4,0x0,0x0,0xa8,0xc0,0x0,0x4,0x4c,0x4d,0x54, + 0x0,0x4e,0x5a,0x53,0x54,0x0,0x4e,0x5a,0x4d,0x54,0x0,0x4e,0x5a,0x44,0x54,0x0, + 0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x4e, + 0x5a,0x53,0x54,0x2d,0x31,0x32,0x4e,0x5a,0x44,0x54,0x2c,0x4d,0x39,0x2e,0x35,0x2e, + 0x30,0x2c,0x4d,0x34,0x2e,0x31,0x2e,0x30,0x2f,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Antarctica/Troll + 0x0,0x0,0x4,0x98, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x45,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0x42, + 0xd,0x47,0x0,0x42,0x46,0x5,0x90,0x43,0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45, + 0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49, + 0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c, + 0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e,0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50, + 0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54, + 0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56,0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58, + 0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59,0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b, + 0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d,0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f, + 0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61,0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63, + 0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65,0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67, + 0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68,0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a, + 0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c,0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e, + 0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70,0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72, + 0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74,0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76, + 0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79, + 0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d, + 0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x7f,0xff,0xff,0xff,0x0, + 0x3,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1c,0x20,0x1,0x4, + 0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x8,0x2d,0x30,0x30,0x0, + 0x2b,0x30,0x32,0x0,0x2b,0x30,0x30,0x0,0x0,0x1,0x1,0x0,0x0,0x1,0x1,0x0, + 0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x45,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0xc,0xf8,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x42,0xd,0x47,0x0,0x0,0x0,0x0,0x0, + 0x42,0x46,0x5,0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0, + 0x44,0x25,0xe7,0x90,0x0,0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0, + 0x46,0x5,0xc9,0x90,0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0, + 0x47,0xee,0xe6,0x10,0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0, + 0x49,0xce,0xc8,0x10,0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0, + 0x4b,0xae,0xaa,0x10,0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0, + 0x4d,0x8e,0x8c,0x10,0x0,0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0, + 0x4f,0x6e,0x6e,0x10,0x0,0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0, + 0x51,0x57,0x8a,0x90,0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0, + 0x53,0x37,0x6c,0x90,0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0, + 0x55,0x17,0x4e,0x90,0x0,0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0, + 0x56,0xf7,0x30,0x90,0x0,0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0, + 0x58,0xd7,0x12,0x90,0x0,0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0, + 0x5a,0xb6,0xf4,0x90,0x0,0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0, + 0x5c,0xa0,0x11,0x10,0x0,0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0, + 0x5e,0x7f,0xf3,0x10,0x0,0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0, + 0x60,0x5f,0xd5,0x10,0x0,0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0, + 0x62,0x3f,0xb7,0x10,0x0,0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0, + 0x64,0x1f,0x99,0x10,0x0,0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0, + 0x66,0x8,0xb5,0x90,0x0,0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0, + 0x67,0xe8,0x97,0x90,0x0,0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0, + 0x69,0xc8,0x79,0x90,0x0,0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0, + 0x6b,0xa8,0x5b,0x90,0x0,0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0, + 0x6d,0x88,0x3d,0x90,0x0,0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0, + 0x6f,0x68,0x1f,0x90,0x0,0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0, + 0x71,0x51,0x3c,0x10,0x0,0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0, + 0x73,0x31,0x1e,0x10,0x0,0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0, + 0x75,0x11,0x0,0x10,0x0,0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0, + 0x76,0xf0,0xe2,0x10,0x0,0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0, + 0x78,0xd0,0xc4,0x10,0x0,0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0, + 0x7a,0xb0,0xa6,0x10,0x0,0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0, + 0x7c,0x99,0xc2,0x90,0x0,0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0, + 0x7e,0x79,0xa4,0x90,0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x0,0x0,0x0, + 0x7f,0xff,0xff,0xff,0x0,0x3,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0, + 0x8,0x2d,0x30,0x30,0x0,0x2b,0x30,0x32,0x0,0x2b,0x30,0x30,0x0,0x0,0x1,0x1, + 0x0,0x0,0x1,0x1,0x0,0xa,0x3c,0x2b,0x30,0x30,0x3e,0x30,0x3c,0x2b,0x30,0x32, + 0x3e,0x2d,0x32,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2f,0x31,0x2c,0x4d,0x31,0x30, + 0x2e,0x35,0x2e,0x30,0x2f,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Antarctica/Mawson + 0x0,0x0,0x0,0xe1, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x4,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0xe2, + 0x20,0x32,0x80,0x4a,0xda,0x22,0x40,0x7f,0xff,0xff,0xff,0x0,0x1,0x2,0x2,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x60,0x0,0x4,0x0,0x0,0x46,0x50,0x0, + 0x8,0x2d,0x30,0x30,0x0,0x2b,0x30,0x36,0x0,0x2b,0x30,0x35,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0xf8, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xe2,0x20,0x32,0x80,0x0, + 0x0,0x0,0x0,0x4a,0xda,0x22,0x40,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0, + 0x1,0x2,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x60,0x0,0x4,0x0, + 0x0,0x46,0x50,0x0,0x8,0x2d,0x30,0x30,0x0,0x2b,0x30,0x36,0x0,0x2b,0x30,0x35, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2b,0x30,0x35,0x3e,0x2d,0x35,0xa, + + // /home/konrad/src/smoke/tzone/zoneinfo/Antarctica/Rothera + 0x0,0x0,0x0,0xba, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0xd, + 0x2,0x2d,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0, + 0xff,0xff,0xd5,0xd0,0x0,0x4,0x2d,0x30,0x30,0x0,0x2d,0x30,0x33,0x0,0x0,0x0, + 0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd,0x2,0x2d,0x0,0x0,0x0, + 0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xff, + 0xff,0xd5,0xd0,0x0,0x4,0x2d,0x30,0x30,0x0,0x2d,0x30,0x33,0x0,0x0,0x0,0x0, + 0x0,0xa,0x3c,0x2d,0x30,0x33,0x3e,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Antarctica/Casey + 0x0,0x0,0x1,0x3a, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x8,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0xfe, + 0x1e,0xcc,0x80,0x4a,0xda,0x6,0x20,0x4b,0x8f,0xca,0xf0,0x4e,0xa9,0x9c,0x20,0x4f, + 0x43,0xcd,0x90,0x58,0xa,0x3b,0x80,0x7f,0xff,0xff,0xff,0x0,0x1,0x2,0x1,0x2, + 0x3,0x2,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x70,0x80,0x0,0x4,0x0, + 0x0,0x9a,0xb0,0x0,0x8,0x0,0x0,0x70,0x80,0x0,0x4,0x0,0x0,0x9a,0xb0,0x0, + 0x8,0x2d,0x30,0x30,0x0,0x2b,0x30,0x38,0x0,0x2b,0x31,0x31,0x0,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x1,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0, + 0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x5,0x0, + 0x0,0x0,0xc,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xfe, + 0x1e,0xcc,0x80,0x0,0x0,0x0,0x0,0x4a,0xda,0x6,0x20,0x0,0x0,0x0,0x0,0x4b, + 0x8f,0xca,0xf0,0x0,0x0,0x0,0x0,0x4e,0xa9,0x9c,0x20,0x0,0x0,0x0,0x0,0x4f, + 0x43,0xcd,0x90,0x0,0x0,0x0,0x0,0x58,0xa,0x3b,0x80,0x0,0x0,0x0,0x0,0x7f, + 0xff,0xff,0xff,0x0,0x1,0x2,0x1,0x2,0x3,0x2,0x2,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x70,0x80,0x0,0x4,0x0,0x0,0x9a,0xb0,0x0,0x8,0x0,0x0,0x70, + 0x80,0x0,0x4,0x0,0x0,0x9a,0xb0,0x0,0x8,0x2d,0x30,0x30,0x0,0x2b,0x30,0x38, + 0x0,0x2b,0x31,0x31,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x1,0x0,0xa, + 0x3c,0x2b,0x31,0x31,0x3e,0x2d,0x31,0x31,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Antarctica/DumontDUrville + 0x0,0x0,0x0,0xd8, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x5,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0xd4, + 0xbc,0x76,0x80,0xde,0x34,0x60,0x60,0xe7,0x3c,0x2,0x80,0x7f,0xff,0xff,0xff,0x0, + 0x1,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8c,0xa0,0x0,0x4, + 0x2d,0x30,0x30,0x0,0x2b,0x31,0x30,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66, + 0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5, + 0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0xd4,0xbc,0x76,0x80,0xff,0xff,0xff,0xff,0xde,0x34,0x60,0x60, + 0xff,0xff,0xff,0xff,0xe7,0x3c,0x2,0x80,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff, + 0x0,0x1,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8c,0xa0,0x0, + 0x4,0x2d,0x30,0x30,0x0,0x2b,0x31,0x30,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2b, + 0x31,0x30,0x3e,0x2d,0x31,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Antarctica/Davis + 0x0,0x0,0x1,0x37, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x9,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0xe7, + 0x9c,0x40,0x0,0xf6,0x47,0xdf,0x10,0xfe,0x47,0xab,0x0,0x4a,0xda,0x14,0x30,0x4b, + 0x97,0xfa,0x40,0x4e,0xa9,0xaa,0x30,0x4f,0x43,0xf7,0xc0,0x7f,0xff,0xff,0xff,0x0, + 0x1,0x0,0x1,0x2,0x3,0x2,0x3,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x62,0x70,0x0,0x4,0x0,0x0,0x46,0x50,0x0,0x8,0x0,0x0,0x62,0x70,0x0,0x4, + 0x2d,0x30,0x30,0x0,0x2b,0x30,0x37,0x0,0x2b,0x30,0x35,0x0,0x0,0x0,0x0,0x1, + 0x0,0x0,0x0,0x1,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0xc, + 0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xe7,0x9c,0x40,0x0, + 0xff,0xff,0xff,0xff,0xf6,0x47,0xdf,0x10,0xff,0xff,0xff,0xff,0xfe,0x47,0xab,0x0, + 0x0,0x0,0x0,0x0,0x4a,0xda,0x14,0x30,0x0,0x0,0x0,0x0,0x4b,0x97,0xfa,0x40, + 0x0,0x0,0x0,0x0,0x4e,0xa9,0xaa,0x30,0x0,0x0,0x0,0x0,0x4f,0x43,0xf7,0xc0, + 0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x0,0x1,0x2,0x3,0x2,0x3, + 0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x62,0x70,0x0,0x4,0x0,0x0,0x46, + 0x50,0x0,0x8,0x0,0x0,0x62,0x70,0x0,0x4,0x2d,0x30,0x30,0x0,0x2b,0x30,0x37, + 0x0,0x2b,0x30,0x35,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0xa,0x3c,0x2b, + 0x30,0x37,0x3e,0x2d,0x37,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Antarctica/Palmer + 0x0,0x0,0x5,0x98, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x54,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x10,0x80,0x0,0x0,0x0,0xf6, + 0x98,0xad,0x0,0xf6,0xe6,0x9f,0xb0,0xf8,0x13,0x43,0xc0,0xf8,0xc7,0xd3,0x30,0xf9, + 0xf4,0x77,0x40,0xfa,0xd3,0x36,0xb0,0xfb,0xc3,0x35,0xc0,0xfc,0xbc,0x53,0x30,0xfd, + 0xac,0x52,0x40,0xfe,0x9c,0x35,0x30,0xff,0x8c,0x34,0x40,0x7,0xa3,0x4a,0xb0,0x8, + 0x24,0x6f,0xa0,0x17,0x30,0xbc,0xb0,0x18,0x6,0x5d,0xc0,0x18,0xd1,0x56,0xb0,0x19, + 0xe6,0x3f,0xc0,0x1a,0xb1,0x38,0xb0,0x1b,0xcf,0x5c,0x40,0x1c,0x91,0x1a,0xb0,0x1d, + 0xaf,0x3e,0x40,0x1e,0x70,0xfc,0xb0,0x1f,0x8f,0x20,0x40,0x20,0x7f,0x3,0x30,0x21, + 0x6f,0x2,0x40,0x22,0x39,0xfb,0x30,0x23,0x4e,0xe4,0x40,0x24,0x19,0xdd,0x30,0x25, + 0x38,0x0,0xc0,0x25,0xf9,0xbf,0x30,0x26,0xf2,0xf8,0xc0,0x27,0xd9,0xa1,0x30,0x28, + 0xf7,0xc4,0xc0,0x29,0xc2,0xbd,0xb0,0x2a,0xd7,0xa6,0xc0,0x2b,0xa2,0x9f,0xb0,0x2c, + 0xb7,0x88,0xc0,0x2d,0x82,0x81,0xb0,0x2e,0x97,0x6a,0xc0,0x2f,0x62,0x63,0xb0,0x30, + 0x80,0x87,0x40,0x31,0x42,0x45,0xb0,0x32,0x60,0x69,0x40,0x33,0x3d,0xd7,0x30,0x34, + 0x40,0x4b,0x40,0x35,0xb,0x44,0x30,0x36,0xd,0xb8,0x40,0x37,0x6,0xd5,0xb0,0x38, + 0x0,0xf,0x40,0x38,0xcb,0x8,0x30,0x39,0xe9,0x2b,0xc0,0x3a,0xaa,0xea,0x30,0x3b, + 0xc9,0xd,0xc0,0x3c,0x8a,0xcc,0x30,0x3d,0xa8,0xef,0xc0,0x3e,0x6a,0xae,0x30,0x3f, + 0x88,0xd1,0xc0,0x40,0x53,0xca,0xb0,0x41,0x68,0xb3,0xc0,0x42,0x33,0xac,0xb0,0x43, + 0x48,0x95,0xc0,0x44,0x13,0x8e,0xb0,0x45,0x31,0xb2,0x40,0x45,0xf3,0x70,0xb0,0x47, + 0x11,0x94,0x40,0x47,0xef,0x2,0x30,0x48,0xf1,0x76,0x40,0x49,0xbc,0x6f,0x30,0x4a, + 0xd1,0x58,0x40,0x4b,0xb8,0x0,0xb0,0x4c,0xb1,0x3a,0x40,0x4d,0xc6,0x7,0x30,0x4e, + 0x50,0x82,0xc0,0x4f,0x9c,0xae,0xb0,0x50,0x42,0xd9,0xc0,0x51,0x7c,0x90,0xb0,0x52, + 0x2b,0xf6,0x40,0x53,0x5c,0x72,0xb0,0x54,0xb,0xd8,0x40,0x57,0x37,0xe6,0x30,0x57, + 0xaf,0xec,0xc0,0x58,0x43,0x86,0xb0,0x7f,0xff,0xff,0xff,0x0,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x4,0x3,0x4,0x1,0x5,0x6,0x5,0x6,0x5,0x6, 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x4,0x4,0x0, + 0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xc7,0xc0,0x0,0x4,0xff,0xff,0xd5,0xd0,0x1, + 0x8,0xff,0xff,0xe3,0xe0,0x1,0xc,0xff,0xff,0xd5,0xd0,0x0,0x8,0xff,0xff,0xd5, + 0xd0,0x1,0x8,0xff,0xff,0xc7,0xc0,0x0,0x4,0xff,0xff,0xd5,0xd0,0x0,0x8,0x2d, + 0x30,0x30,0x0,0x2d,0x30,0x34,0x0,0x2d,0x30,0x33,0x0,0x2d,0x30,0x32,0x0,0x0, + 0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x54,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x10,0xf8,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xf6,0x98,0xad,0x0,0xff,0xff,0xff,0xff,0xf6, + 0xe6,0x9f,0xb0,0xff,0xff,0xff,0xff,0xf8,0x13,0x43,0xc0,0xff,0xff,0xff,0xff,0xf8, + 0xc7,0xd3,0x30,0xff,0xff,0xff,0xff,0xf9,0xf4,0x77,0x40,0xff,0xff,0xff,0xff,0xfa, + 0xd3,0x36,0xb0,0xff,0xff,0xff,0xff,0xfb,0xc3,0x35,0xc0,0xff,0xff,0xff,0xff,0xfc, + 0xbc,0x53,0x30,0xff,0xff,0xff,0xff,0xfd,0xac,0x52,0x40,0xff,0xff,0xff,0xff,0xfe, + 0x9c,0x35,0x30,0xff,0xff,0xff,0xff,0xff,0x8c,0x34,0x40,0x0,0x0,0x0,0x0,0x7, + 0xa3,0x4a,0xb0,0x0,0x0,0x0,0x0,0x8,0x24,0x6f,0xa0,0x0,0x0,0x0,0x0,0x17, + 0x30,0xbc,0xb0,0x0,0x0,0x0,0x0,0x18,0x6,0x5d,0xc0,0x0,0x0,0x0,0x0,0x18, + 0xd1,0x56,0xb0,0x0,0x0,0x0,0x0,0x19,0xe6,0x3f,0xc0,0x0,0x0,0x0,0x0,0x1a, + 0xb1,0x38,0xb0,0x0,0x0,0x0,0x0,0x1b,0xcf,0x5c,0x40,0x0,0x0,0x0,0x0,0x1c, + 0x91,0x1a,0xb0,0x0,0x0,0x0,0x0,0x1d,0xaf,0x3e,0x40,0x0,0x0,0x0,0x0,0x1e, + 0x70,0xfc,0xb0,0x0,0x0,0x0,0x0,0x1f,0x8f,0x20,0x40,0x0,0x0,0x0,0x0,0x20, + 0x7f,0x3,0x30,0x0,0x0,0x0,0x0,0x21,0x6f,0x2,0x40,0x0,0x0,0x0,0x0,0x22, + 0x39,0xfb,0x30,0x0,0x0,0x0,0x0,0x23,0x4e,0xe4,0x40,0x0,0x0,0x0,0x0,0x24, + 0x19,0xdd,0x30,0x0,0x0,0x0,0x0,0x25,0x38,0x0,0xc0,0x0,0x0,0x0,0x0,0x25, + 0xf9,0xbf,0x30,0x0,0x0,0x0,0x0,0x26,0xf2,0xf8,0xc0,0x0,0x0,0x0,0x0,0x27, + 0xd9,0xa1,0x30,0x0,0x0,0x0,0x0,0x28,0xf7,0xc4,0xc0,0x0,0x0,0x0,0x0,0x29, + 0xc2,0xbd,0xb0,0x0,0x0,0x0,0x0,0x2a,0xd7,0xa6,0xc0,0x0,0x0,0x0,0x0,0x2b, + 0xa2,0x9f,0xb0,0x0,0x0,0x0,0x0,0x2c,0xb7,0x88,0xc0,0x0,0x0,0x0,0x0,0x2d, + 0x82,0x81,0xb0,0x0,0x0,0x0,0x0,0x2e,0x97,0x6a,0xc0,0x0,0x0,0x0,0x0,0x2f, + 0x62,0x63,0xb0,0x0,0x0,0x0,0x0,0x30,0x80,0x87,0x40,0x0,0x0,0x0,0x0,0x31, + 0x42,0x45,0xb0,0x0,0x0,0x0,0x0,0x32,0x60,0x69,0x40,0x0,0x0,0x0,0x0,0x33, + 0x3d,0xd7,0x30,0x0,0x0,0x0,0x0,0x34,0x40,0x4b,0x40,0x0,0x0,0x0,0x0,0x35, + 0xb,0x44,0x30,0x0,0x0,0x0,0x0,0x36,0xd,0xb8,0x40,0x0,0x0,0x0,0x0,0x37, + 0x6,0xd5,0xb0,0x0,0x0,0x0,0x0,0x38,0x0,0xf,0x40,0x0,0x0,0x0,0x0,0x38, + 0xcb,0x8,0x30,0x0,0x0,0x0,0x0,0x39,0xe9,0x2b,0xc0,0x0,0x0,0x0,0x0,0x3a, + 0xaa,0xea,0x30,0x0,0x0,0x0,0x0,0x3b,0xc9,0xd,0xc0,0x0,0x0,0x0,0x0,0x3c, + 0x8a,0xcc,0x30,0x0,0x0,0x0,0x0,0x3d,0xa8,0xef,0xc0,0x0,0x0,0x0,0x0,0x3e, + 0x6a,0xae,0x30,0x0,0x0,0x0,0x0,0x3f,0x88,0xd1,0xc0,0x0,0x0,0x0,0x0,0x40, + 0x53,0xca,0xb0,0x0,0x0,0x0,0x0,0x41,0x68,0xb3,0xc0,0x0,0x0,0x0,0x0,0x42, + 0x33,0xac,0xb0,0x0,0x0,0x0,0x0,0x43,0x48,0x95,0xc0,0x0,0x0,0x0,0x0,0x44, + 0x13,0x8e,0xb0,0x0,0x0,0x0,0x0,0x45,0x31,0xb2,0x40,0x0,0x0,0x0,0x0,0x45, + 0xf3,0x70,0xb0,0x0,0x0,0x0,0x0,0x47,0x11,0x94,0x40,0x0,0x0,0x0,0x0,0x47, + 0xef,0x2,0x30,0x0,0x0,0x0,0x0,0x48,0xf1,0x76,0x40,0x0,0x0,0x0,0x0,0x49, + 0xbc,0x6f,0x30,0x0,0x0,0x0,0x0,0x4a,0xd1,0x58,0x40,0x0,0x0,0x0,0x0,0x4b, + 0xb8,0x0,0xb0,0x0,0x0,0x0,0x0,0x4c,0xb1,0x3a,0x40,0x0,0x0,0x0,0x0,0x4d, + 0xc6,0x7,0x30,0x0,0x0,0x0,0x0,0x4e,0x50,0x82,0xc0,0x0,0x0,0x0,0x0,0x4f, + 0x9c,0xae,0xb0,0x0,0x0,0x0,0x0,0x50,0x42,0xd9,0xc0,0x0,0x0,0x0,0x0,0x51, + 0x7c,0x90,0xb0,0x0,0x0,0x0,0x0,0x52,0x2b,0xf6,0x40,0x0,0x0,0x0,0x0,0x53, + 0x5c,0x72,0xb0,0x0,0x0,0x0,0x0,0x54,0xb,0xd8,0x40,0x0,0x0,0x0,0x0,0x57, + 0x37,0xe6,0x30,0x0,0x0,0x0,0x0,0x57,0xaf,0xec,0xc0,0x0,0x0,0x0,0x0,0x58, + 0x43,0x86,0xb0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x4,0x3,0x4,0x1,0x5,0x6,0x5,0x6,0x5,0x6, 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x0,0x0,0x13,0x38,0x0,0x0,0x0,0x0, - 0xe,0x10,0x0,0x4,0x0,0x0,0xe,0x10,0x0,0x4,0x0,0x0,0x1c,0x20,0x1,0x8, - 0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0xe,0x10, - 0x0,0x4,0x4c,0x4d,0x54,0x0,0x43,0x45,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x0, - 0x0,0x1,0x1,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x54,0x5a,0x69, - 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x7a,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0xd,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0x5e,0x3c,0xf0,0x48,0xff,0xff,0xff,0xff,0xca,0x2,0x35, - 0xe0,0xff,0xff,0xff,0xff,0xcc,0xe7,0x4b,0x10,0xff,0xff,0xff,0xff,0xcd,0xa9,0x17, - 0x90,0xff,0xff,0xff,0xff,0xce,0xa2,0x43,0x10,0xff,0xff,0xff,0xff,0xcf,0x92,0x34, - 0x10,0xff,0xff,0xff,0xff,0xd0,0x82,0x25,0x10,0xff,0xff,0xff,0xff,0xd0,0xfa,0x1, - 0x70,0xff,0xff,0xff,0xff,0xd1,0xa1,0x8c,0x10,0xff,0xff,0xff,0xff,0xd2,0x4e,0x40, - 0x90,0x0,0x0,0x0,0x0,0x18,0x45,0x5f,0x70,0x0,0x0,0x0,0x0,0x18,0xe3,0xaf, - 0x90,0x0,0x0,0x0,0x0,0x19,0xd3,0xa0,0x90,0x0,0x0,0x0,0x0,0x1a,0xc3,0x91, - 0x90,0x0,0x0,0x0,0x0,0x1b,0xbc,0xbd,0x10,0x0,0x0,0x0,0x0,0x1c,0xac,0xae, - 0x10,0x0,0x0,0x0,0x0,0x1d,0x9c,0x9f,0x10,0x0,0x0,0x0,0x0,0x1e,0x8c,0x90, - 0x10,0x0,0x0,0x0,0x0,0x1f,0x7c,0x81,0x10,0x0,0x0,0x0,0x0,0x20,0x6c,0x72, - 0x10,0x0,0x0,0x0,0x0,0x21,0x5c,0x63,0x10,0x0,0x0,0x0,0x0,0x22,0x4c,0x54, - 0x10,0x0,0x0,0x0,0x0,0x23,0x3c,0x45,0x10,0x0,0x0,0x0,0x0,0x24,0x2c,0x36, - 0x10,0x0,0x0,0x0,0x0,0x25,0x1c,0x27,0x10,0x0,0x0,0x0,0x0,0x26,0xc,0x18, - 0x10,0x0,0x0,0x0,0x0,0x27,0x5,0x43,0x90,0x0,0x0,0x0,0x0,0x27,0xf5,0x34, - 0x90,0x0,0x0,0x0,0x0,0x28,0xe5,0x25,0x90,0x0,0x0,0x0,0x0,0x29,0xd5,0x16, - 0x90,0x0,0x0,0x0,0x0,0x2a,0xc5,0x7,0x90,0x0,0x0,0x0,0x0,0x2b,0xb4,0xf8, - 0x90,0x0,0x0,0x0,0x0,0x2c,0xa4,0xe9,0x90,0x0,0x0,0x0,0x0,0x2d,0x94,0xda, - 0x90,0x0,0x0,0x0,0x0,0x2e,0x84,0xcb,0x90,0x0,0x0,0x0,0x0,0x2f,0x74,0xbc, - 0x90,0x0,0x0,0x0,0x0,0x30,0x64,0xad,0x90,0x0,0x0,0x0,0x0,0x31,0x5d,0xd9, - 0x10,0x0,0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d,0xbb, - 0x10,0x0,0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d,0x9d, - 0x10,0x0,0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd,0x7f, - 0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd,0x61, - 0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd,0x43, - 0x10,0x0,0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f, - 0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86,0x41, - 0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66,0x23, - 0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46,0x5, - 0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25,0xe7, - 0x90,0x0,0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5,0xc9, - 0x90,0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee,0xe6, - 0x10,0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce,0xc8, - 0x10,0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae,0xaa, - 0x10,0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c, - 0x10,0x0,0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e, - 0x10,0x0,0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57,0x8a, - 0x90,0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37,0x6c, - 0x90,0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17,0x4e, - 0x90,0x0,0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7,0x30, - 0x90,0x0,0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7,0x12, - 0x90,0x0,0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4, - 0x90,0x0,0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0,0x11, - 0x10,0x0,0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3, - 0x10,0x0,0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f,0xd5, - 0x10,0x0,0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f,0xb7, - 0x10,0x0,0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f,0x99, - 0x10,0x0,0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8,0xb5, - 0x90,0x0,0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8,0x97, - 0x90,0x0,0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8,0x79, - 0x90,0x0,0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b, - 0x90,0x0,0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88,0x3d, - 0x90,0x0,0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68,0x1f, - 0x90,0x0,0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51,0x3c, - 0x10,0x0,0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31,0x1e, - 0x10,0x0,0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11,0x0, - 0x10,0x0,0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0,0xe2, - 0x10,0x0,0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0,0xc4, - 0x10,0x0,0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6, - 0x10,0x0,0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99,0xc2, - 0x90,0x0,0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79,0xa4, - 0x90,0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x1,0x4,0x2,0x3,0x2,0x3, - 0x2,0x1,0x3,0x2,0x1,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x0,0x0,0x13,0x38,0x0,0x0,0x0,0x0,0xe,0x10,0x0,0x4,0x0, - 0x0,0xe,0x10,0x0,0x4,0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0x1c,0x20,0x1, - 0x8,0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0xe,0x10,0x0,0x4,0x4c,0x4d,0x54, - 0x0,0x43,0x45,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x0,0x0,0x1,0x1,0x0,0x1, - 0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0xa,0x43,0x45,0x54,0x2d,0x31,0x43,0x45, - 0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e, - 0x30,0x2f,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Podgorica - 0x0,0x0,0x7,0xa5, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x4,0x4,0x0, + 0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xc7,0xc0,0x0,0x4,0xff,0xff,0xd5,0xd0,0x1, + 0x8,0xff,0xff,0xe3,0xe0,0x1,0xc,0xff,0xff,0xd5,0xd0,0x0,0x8,0xff,0xff,0xd5, + 0xd0,0x1,0x8,0xff,0xff,0xc7,0xc0,0x0,0x4,0xff,0xff,0xd5,0xd0,0x0,0x8,0x2d, + 0x30,0x30,0x0,0x2d,0x30,0x34,0x0,0x2d,0x30,0x33,0x0,0x2d,0x30,0x32,0x0,0x0, + 0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0xa, + 0x3c,0x2d,0x30,0x33,0x3e,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Antarctica/Macquarie + 0x0,0x0,0x6,0x7, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x79,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0xca, - 0x2,0x35,0xe0,0xcc,0xe7,0x4b,0x10,0xcd,0xa9,0x17,0x90,0xce,0xa2,0x43,0x10,0xcf, - 0x92,0x34,0x10,0xd0,0x82,0x25,0x10,0xd0,0xfa,0x1,0x70,0xd1,0xa1,0x8c,0x10,0xd2, - 0x4e,0x40,0x90,0x18,0x45,0x5f,0x70,0x18,0xe3,0xaf,0x90,0x19,0xd3,0xa0,0x90,0x1a, - 0xc3,0x91,0x90,0x1b,0xbc,0xbd,0x10,0x1c,0xac,0xae,0x10,0x1d,0x9c,0x9f,0x10,0x1e, - 0x8c,0x90,0x10,0x1f,0x7c,0x81,0x10,0x20,0x6c,0x72,0x10,0x21,0x5c,0x63,0x10,0x22, - 0x4c,0x54,0x10,0x23,0x3c,0x45,0x10,0x24,0x2c,0x36,0x10,0x25,0x1c,0x27,0x10,0x26, - 0xc,0x18,0x10,0x27,0x5,0x43,0x90,0x27,0xf5,0x34,0x90,0x28,0xe5,0x25,0x90,0x29, - 0xd5,0x16,0x90,0x2a,0xc5,0x7,0x90,0x2b,0xb4,0xf8,0x90,0x2c,0xa4,0xe9,0x90,0x2d, - 0x94,0xda,0x90,0x2e,0x84,0xcb,0x90,0x2f,0x74,0xbc,0x90,0x30,0x64,0xad,0x90,0x31, - 0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34,0x52,0x96,0x10,0x35, - 0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x38, - 0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b,0xdb,0x58,0x90,0x3c, - 0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f,0x9b,0x1c,0x90,0x40, - 0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43,0x64,0x1b,0x10,0x44, - 0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47, - 0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b, - 0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e,0xac,0xa1,0x90,0x4f, - 0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53, - 0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56,0x2c,0x29,0x90,0x56, - 0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59,0xf5,0x28,0x10,0x5a, - 0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d,0xb4,0xec,0x10,0x5e, - 0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61,0x7d,0xea,0x90,0x62, - 0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65,0x3d,0xae,0x90,0x66, - 0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68,0xfd,0x72,0x90,0x69, - 0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c,0xc6,0x71,0x10,0x6d, - 0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70,0x86,0x35,0x10,0x71, - 0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74,0x45,0xf9,0x10,0x75, - 0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78, - 0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c, - 0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x1, - 0x4,0x2,0x3,0x2,0x3,0x2,0x1,0x3,0x2,0x1,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x0,0x0,0x13,0x38,0x0,0x0,0x0,0x0, - 0xe,0x10,0x0,0x4,0x0,0x0,0xe,0x10,0x0,0x4,0x0,0x0,0x1c,0x20,0x1,0x8, - 0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0xe,0x10, - 0x0,0x4,0x4c,0x4d,0x54,0x0,0x43,0x45,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x0, - 0x0,0x1,0x1,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x54,0x5a,0x69, - 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x7a,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0xd,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0x5e,0x3c,0xf0,0x48,0xff,0xff,0xff,0xff,0xca,0x2,0x35, - 0xe0,0xff,0xff,0xff,0xff,0xcc,0xe7,0x4b,0x10,0xff,0xff,0xff,0xff,0xcd,0xa9,0x17, - 0x90,0xff,0xff,0xff,0xff,0xce,0xa2,0x43,0x10,0xff,0xff,0xff,0xff,0xcf,0x92,0x34, - 0x10,0xff,0xff,0xff,0xff,0xd0,0x82,0x25,0x10,0xff,0xff,0xff,0xff,0xd0,0xfa,0x1, - 0x70,0xff,0xff,0xff,0xff,0xd1,0xa1,0x8c,0x10,0xff,0xff,0xff,0xff,0xd2,0x4e,0x40, - 0x90,0x0,0x0,0x0,0x0,0x18,0x45,0x5f,0x70,0x0,0x0,0x0,0x0,0x18,0xe3,0xaf, - 0x90,0x0,0x0,0x0,0x0,0x19,0xd3,0xa0,0x90,0x0,0x0,0x0,0x0,0x1a,0xc3,0x91, - 0x90,0x0,0x0,0x0,0x0,0x1b,0xbc,0xbd,0x10,0x0,0x0,0x0,0x0,0x1c,0xac,0xae, - 0x10,0x0,0x0,0x0,0x0,0x1d,0x9c,0x9f,0x10,0x0,0x0,0x0,0x0,0x1e,0x8c,0x90, - 0x10,0x0,0x0,0x0,0x0,0x1f,0x7c,0x81,0x10,0x0,0x0,0x0,0x0,0x20,0x6c,0x72, - 0x10,0x0,0x0,0x0,0x0,0x21,0x5c,0x63,0x10,0x0,0x0,0x0,0x0,0x22,0x4c,0x54, - 0x10,0x0,0x0,0x0,0x0,0x23,0x3c,0x45,0x10,0x0,0x0,0x0,0x0,0x24,0x2c,0x36, - 0x10,0x0,0x0,0x0,0x0,0x25,0x1c,0x27,0x10,0x0,0x0,0x0,0x0,0x26,0xc,0x18, - 0x10,0x0,0x0,0x0,0x0,0x27,0x5,0x43,0x90,0x0,0x0,0x0,0x0,0x27,0xf5,0x34, - 0x90,0x0,0x0,0x0,0x0,0x28,0xe5,0x25,0x90,0x0,0x0,0x0,0x0,0x29,0xd5,0x16, - 0x90,0x0,0x0,0x0,0x0,0x2a,0xc5,0x7,0x90,0x0,0x0,0x0,0x0,0x2b,0xb4,0xf8, - 0x90,0x0,0x0,0x0,0x0,0x2c,0xa4,0xe9,0x90,0x0,0x0,0x0,0x0,0x2d,0x94,0xda, - 0x90,0x0,0x0,0x0,0x0,0x2e,0x84,0xcb,0x90,0x0,0x0,0x0,0x0,0x2f,0x74,0xbc, - 0x90,0x0,0x0,0x0,0x0,0x30,0x64,0xad,0x90,0x0,0x0,0x0,0x0,0x31,0x5d,0xd9, - 0x10,0x0,0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d,0xbb, - 0x10,0x0,0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d,0x9d, - 0x10,0x0,0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd,0x7f, - 0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd,0x61, - 0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd,0x43, - 0x10,0x0,0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f, - 0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86,0x41, - 0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66,0x23, - 0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46,0x5, - 0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25,0xe7, - 0x90,0x0,0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5,0xc9, - 0x90,0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee,0xe6, - 0x10,0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce,0xc8, - 0x10,0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae,0xaa, - 0x10,0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c, - 0x10,0x0,0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e, - 0x10,0x0,0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57,0x8a, - 0x90,0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37,0x6c, - 0x90,0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17,0x4e, - 0x90,0x0,0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7,0x30, - 0x90,0x0,0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7,0x12, - 0x90,0x0,0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4, - 0x90,0x0,0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0,0x11, - 0x10,0x0,0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3, - 0x10,0x0,0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f,0xd5, - 0x10,0x0,0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f,0xb7, - 0x10,0x0,0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f,0x99, - 0x10,0x0,0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8,0xb5, - 0x90,0x0,0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8,0x97, - 0x90,0x0,0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8,0x79, - 0x90,0x0,0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b, - 0x90,0x0,0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88,0x3d, - 0x90,0x0,0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68,0x1f, - 0x90,0x0,0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51,0x3c, - 0x10,0x0,0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31,0x1e, - 0x10,0x0,0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11,0x0, - 0x10,0x0,0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0,0xe2, - 0x10,0x0,0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0,0xc4, - 0x10,0x0,0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6, - 0x10,0x0,0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99,0xc2, - 0x90,0x0,0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79,0xa4, - 0x90,0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x1,0x4,0x2,0x3,0x2,0x3, - 0x2,0x1,0x3,0x2,0x1,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x0,0x0,0x13,0x38,0x0,0x0,0x0,0x0,0xe,0x10,0x0,0x4,0x0, - 0x0,0xe,0x10,0x0,0x4,0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0x1c,0x20,0x1, - 0x8,0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0xe,0x10,0x0,0x4,0x4c,0x4d,0x54, - 0x0,0x43,0x45,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x0,0x0,0x1,0x1,0x0,0x1, - 0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0xa,0x43,0x45,0x54,0x2d,0x31,0x43,0x45, - 0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e, - 0x30,0x2f,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Tirane - 0x0,0x0,0x8,0x32, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x86,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0x96, - 0xaa,0x34,0x68,0xc8,0x6d,0x87,0x70,0xcc,0xe7,0x4b,0x10,0xcd,0xa9,0x17,0x90,0xcd, - 0xb8,0xe9,0x90,0x8,0x28,0x39,0xf0,0x8,0xef,0x3e,0x60,0xa,0x5,0x78,0xf0,0xa, - 0xd0,0x71,0xe0,0xb,0xe9,0x4f,0x70,0xc,0xb4,0x48,0x60,0xd,0xd2,0x6b,0xf0,0xe, - 0x94,0x2a,0x60,0xf,0xb0,0xfc,0x70,0x10,0x74,0xc,0x60,0x11,0x90,0xde,0x70,0x12, - 0x53,0xee,0x60,0x13,0x70,0xc0,0x70,0x14,0x3b,0xb9,0x60,0x15,0x48,0xb9,0x70,0x16, - 0x13,0xb2,0x60,0x17,0x31,0xd5,0xf0,0x17,0xfc,0xce,0xe0,0x19,0x0,0x94,0x70,0x19, - 0xdb,0x5f,0x60,0x1a,0xcc,0xaf,0xf0,0x1b,0xbc,0xbd,0x10,0x1c,0xac,0xae,0x10,0x1d, - 0x9c,0x9f,0x10,0x1e,0x8c,0x90,0x10,0x1f,0x7c,0x81,0x10,0x20,0x6c,0x72,0x10,0x21, - 0x5c,0x63,0x10,0x22,0x4c,0x54,0x10,0x23,0x3c,0x45,0x10,0x24,0x2c,0x36,0x10,0x25, - 0x1c,0x27,0x10,0x26,0xc,0x18,0x10,0x27,0x5,0x43,0x90,0x27,0xf5,0x34,0x90,0x28, - 0xe5,0x25,0x90,0x29,0xd5,0x16,0x90,0x2a,0xc5,0x7,0x90,0x2b,0xb4,0xf8,0x90,0x2c, - 0xa4,0xe9,0x90,0x2d,0x94,0xda,0x90,0x2e,0x84,0xcb,0x90,0x2f,0x74,0xbc,0x90,0x30, - 0x64,0xad,0x90,0x31,0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34, - 0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38, - 0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b, - 0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f, - 0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43, - 0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47, - 0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a, - 0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e, - 0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52, - 0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56, - 0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59, - 0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d, - 0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61, - 0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65, - 0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68, - 0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c, - 0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70, - 0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74, - 0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78, - 0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b, - 0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f, - 0x8e,0x7f,0x90,0x0,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x0,0x0,0x12,0x98,0x0,0x0,0x0, - 0x0,0xe,0x10,0x0,0x4,0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0xe,0x10,0x0, - 0x4,0x0,0x0,0x1c,0x20,0x1,0x8,0x4c,0x4d,0x54,0x0,0x43,0x45,0x54,0x0,0x43, - 0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x1,0x1,0x54,0x5a, - 0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x86,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xd,0xf8,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xff,0xff,0xff,0xff,0x96,0xaa,0x34,0x68,0xff,0xff,0xff,0xff,0xc8,0x6d, - 0x87,0x70,0xff,0xff,0xff,0xff,0xcc,0xe7,0x4b,0x10,0xff,0xff,0xff,0xff,0xcd,0xa9, - 0x17,0x90,0xff,0xff,0xff,0xff,0xcd,0xb8,0xe9,0x90,0x0,0x0,0x0,0x0,0x8,0x28, - 0x39,0xf0,0x0,0x0,0x0,0x0,0x8,0xef,0x3e,0x60,0x0,0x0,0x0,0x0,0xa,0x5, - 0x78,0xf0,0x0,0x0,0x0,0x0,0xa,0xd0,0x71,0xe0,0x0,0x0,0x0,0x0,0xb,0xe9, - 0x4f,0x70,0x0,0x0,0x0,0x0,0xc,0xb4,0x48,0x60,0x0,0x0,0x0,0x0,0xd,0xd2, - 0x6b,0xf0,0x0,0x0,0x0,0x0,0xe,0x94,0x2a,0x60,0x0,0x0,0x0,0x0,0xf,0xb0, - 0xfc,0x70,0x0,0x0,0x0,0x0,0x10,0x74,0xc,0x60,0x0,0x0,0x0,0x0,0x11,0x90, - 0xde,0x70,0x0,0x0,0x0,0x0,0x12,0x53,0xee,0x60,0x0,0x0,0x0,0x0,0x13,0x70, - 0xc0,0x70,0x0,0x0,0x0,0x0,0x14,0x3b,0xb9,0x60,0x0,0x0,0x0,0x0,0x15,0x48, - 0xb9,0x70,0x0,0x0,0x0,0x0,0x16,0x13,0xb2,0x60,0x0,0x0,0x0,0x0,0x17,0x31, - 0xd5,0xf0,0x0,0x0,0x0,0x0,0x17,0xfc,0xce,0xe0,0x0,0x0,0x0,0x0,0x19,0x0, - 0x94,0x70,0x0,0x0,0x0,0x0,0x19,0xdb,0x5f,0x60,0x0,0x0,0x0,0x0,0x1a,0xcc, - 0xaf,0xf0,0x0,0x0,0x0,0x0,0x1b,0xbc,0xbd,0x10,0x0,0x0,0x0,0x0,0x1c,0xac, - 0xae,0x10,0x0,0x0,0x0,0x0,0x1d,0x9c,0x9f,0x10,0x0,0x0,0x0,0x0,0x1e,0x8c, - 0x90,0x10,0x0,0x0,0x0,0x0,0x1f,0x7c,0x81,0x10,0x0,0x0,0x0,0x0,0x20,0x6c, - 0x72,0x10,0x0,0x0,0x0,0x0,0x21,0x5c,0x63,0x10,0x0,0x0,0x0,0x0,0x22,0x4c, - 0x54,0x10,0x0,0x0,0x0,0x0,0x23,0x3c,0x45,0x10,0x0,0x0,0x0,0x0,0x24,0x2c, - 0x36,0x10,0x0,0x0,0x0,0x0,0x25,0x1c,0x27,0x10,0x0,0x0,0x0,0x0,0x26,0xc, - 0x18,0x10,0x0,0x0,0x0,0x0,0x27,0x5,0x43,0x90,0x0,0x0,0x0,0x0,0x27,0xf5, - 0x34,0x90,0x0,0x0,0x0,0x0,0x28,0xe5,0x25,0x90,0x0,0x0,0x0,0x0,0x29,0xd5, - 0x16,0x90,0x0,0x0,0x0,0x0,0x2a,0xc5,0x7,0x90,0x0,0x0,0x0,0x0,0x2b,0xb4, - 0xf8,0x90,0x0,0x0,0x0,0x0,0x2c,0xa4,0xe9,0x90,0x0,0x0,0x0,0x0,0x2d,0x94, - 0xda,0x90,0x0,0x0,0x0,0x0,0x2e,0x84,0xcb,0x90,0x0,0x0,0x0,0x0,0x2f,0x74, - 0xbc,0x90,0x0,0x0,0x0,0x0,0x30,0x64,0xad,0x90,0x0,0x0,0x0,0x0,0x31,0x5d, - 0xd9,0x10,0x0,0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d, - 0xbb,0x10,0x0,0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d, - 0x9d,0x10,0x0,0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd, - 0x7f,0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd, - 0x61,0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd, - 0x43,0x10,0x0,0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6, - 0x5f,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86, - 0x41,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66, - 0x23,0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46, - 0x5,0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25, - 0xe7,0x90,0x0,0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5, - 0xc9,0x90,0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee, - 0xe6,0x10,0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce, - 0xc8,0x10,0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae, - 0xaa,0x10,0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e, - 0x8c,0x10,0x0,0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e, - 0x6e,0x10,0x0,0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57, - 0x8a,0x90,0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37, - 0x6c,0x90,0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17, - 0x4e,0x90,0x0,0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7, - 0x30,0x90,0x0,0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7, - 0x12,0x90,0x0,0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6, - 0xf4,0x90,0x0,0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0, - 0x11,0x10,0x0,0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f, - 0xf3,0x10,0x0,0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f, - 0xd5,0x10,0x0,0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f, - 0xb7,0x10,0x0,0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f, - 0x99,0x10,0x0,0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8, - 0xb5,0x90,0x0,0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8, - 0x97,0x90,0x0,0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8, - 0x79,0x90,0x0,0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8, - 0x5b,0x90,0x0,0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88, - 0x3d,0x90,0x0,0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68, - 0x1f,0x90,0x0,0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51, - 0x3c,0x10,0x0,0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31, - 0x1e,0x10,0x0,0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11, - 0x0,0x10,0x0,0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0, - 0xe2,0x10,0x0,0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0, - 0xc4,0x10,0x0,0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0, - 0xa6,0x10,0x0,0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99, - 0xc2,0x90,0x0,0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79, - 0xa4,0x90,0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x0,0x0,0x12,0x98,0x0,0x0,0x0,0x0,0xe,0x10,0x0,0x4,0x0,0x0,0x1c,0x20, - 0x1,0x8,0x0,0x0,0xe,0x10,0x0,0x4,0x0,0x0,0x1c,0x20,0x1,0x8,0x4c,0x4d, - 0x54,0x0,0x43,0x45,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x1,0x1, - 0x0,0x0,0x0,0x1,0x1,0xa,0x43,0x45,0x54,0x2d,0x31,0x43,0x45,0x53,0x54,0x2c, - 0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30,0x2f,0x33, - 0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Helsinki - 0x0,0x0,0x7,0x75, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x76,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x80,0x0,0x0,0x0,0xa4, - 0x73,0x6f,0x1b,0xcb,0xce,0x51,0x60,0xcc,0xc0,0xe5,0x60,0x15,0x23,0xdd,0x80,0x16, - 0x13,0xce,0x80,0x17,0x3,0xbf,0x80,0x17,0xf3,0xb0,0x80,0x18,0xe3,0xaf,0x90,0x19, - 0xd3,0xa0,0x90,0x1a,0xc3,0x91,0x90,0x1b,0xbc,0xbd,0x10,0x1c,0xac,0xae,0x10,0x1d, - 0x9c,0x9f,0x10,0x1e,0x8c,0x90,0x10,0x1f,0x7c,0x81,0x10,0x20,0x6c,0x72,0x10,0x21, - 0x5c,0x63,0x10,0x22,0x4c,0x54,0x10,0x23,0x3c,0x45,0x10,0x24,0x2c,0x36,0x10,0x25, - 0x1c,0x27,0x10,0x26,0xc,0x18,0x10,0x27,0x5,0x43,0x90,0x27,0xf5,0x34,0x90,0x28, - 0xe5,0x25,0x90,0x29,0xd5,0x16,0x90,0x2a,0xc5,0x7,0x90,0x2b,0xb4,0xf8,0x90,0x2c, - 0xa4,0xe9,0x90,0x2d,0x94,0xda,0x90,0x2e,0x84,0xcb,0x90,0x2f,0x74,0xbc,0x90,0x30, - 0x64,0xad,0x90,0x31,0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34, - 0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38, - 0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b, - 0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f, - 0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43, - 0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47, - 0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a, - 0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e, - 0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52, - 0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56, - 0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59, - 0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d, - 0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61, - 0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65, - 0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68, - 0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c, - 0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70, - 0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74, - 0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78, - 0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b, - 0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f, - 0x8e,0x7f,0x90,0x1,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x0,0x0,0x17,0x65,0x0,0x0,0x0, - 0x0,0x17,0x65,0x0,0x4,0x0,0x0,0x2a,0x30,0x1,0x8,0x0,0x0,0x1c,0x20,0x0, - 0xd,0x0,0x0,0x2a,0x30,0x1,0x8,0x0,0x0,0x1c,0x20,0x0,0xd,0x4c,0x4d,0x54, - 0x0,0x48,0x4d,0x54,0x0,0x45,0x45,0x53,0x54,0x0,0x45,0x45,0x54,0x0,0x0,0x0, - 0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x1,0x1,0x54,0x5a,0x69,0x66,0x32,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x77,0x0,0x0, - 0x0,0x6,0x0,0x0,0x0,0x11,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff, - 0xff,0xff,0x53,0xba,0x26,0x9b,0xff,0xff,0xff,0xff,0xa4,0x73,0x6f,0x1b,0xff,0xff, - 0xff,0xff,0xcb,0xce,0x51,0x60,0xff,0xff,0xff,0xff,0xcc,0xc0,0xe5,0x60,0x0,0x0, - 0x0,0x0,0x15,0x23,0xdd,0x80,0x0,0x0,0x0,0x0,0x16,0x13,0xce,0x80,0x0,0x0, - 0x0,0x0,0x17,0x3,0xbf,0x80,0x0,0x0,0x0,0x0,0x17,0xf3,0xb0,0x80,0x0,0x0, - 0x0,0x0,0x18,0xe3,0xaf,0x90,0x0,0x0,0x0,0x0,0x19,0xd3,0xa0,0x90,0x0,0x0, - 0x0,0x0,0x1a,0xc3,0x91,0x90,0x0,0x0,0x0,0x0,0x1b,0xbc,0xbd,0x10,0x0,0x0, - 0x0,0x0,0x1c,0xac,0xae,0x10,0x0,0x0,0x0,0x0,0x1d,0x9c,0x9f,0x10,0x0,0x0, - 0x0,0x0,0x1e,0x8c,0x90,0x10,0x0,0x0,0x0,0x0,0x1f,0x7c,0x81,0x10,0x0,0x0, - 0x0,0x0,0x20,0x6c,0x72,0x10,0x0,0x0,0x0,0x0,0x21,0x5c,0x63,0x10,0x0,0x0, - 0x0,0x0,0x22,0x4c,0x54,0x10,0x0,0x0,0x0,0x0,0x23,0x3c,0x45,0x10,0x0,0x0, - 0x0,0x0,0x24,0x2c,0x36,0x10,0x0,0x0,0x0,0x0,0x25,0x1c,0x27,0x10,0x0,0x0, - 0x0,0x0,0x26,0xc,0x18,0x10,0x0,0x0,0x0,0x0,0x27,0x5,0x43,0x90,0x0,0x0, - 0x0,0x0,0x27,0xf5,0x34,0x90,0x0,0x0,0x0,0x0,0x28,0xe5,0x25,0x90,0x0,0x0, - 0x0,0x0,0x29,0xd5,0x16,0x90,0x0,0x0,0x0,0x0,0x2a,0xc5,0x7,0x90,0x0,0x0, - 0x0,0x0,0x2b,0xb4,0xf8,0x90,0x0,0x0,0x0,0x0,0x2c,0xa4,0xe9,0x90,0x0,0x0, - 0x0,0x0,0x2d,0x94,0xda,0x90,0x0,0x0,0x0,0x0,0x2e,0x84,0xcb,0x90,0x0,0x0, - 0x0,0x0,0x2f,0x74,0xbc,0x90,0x0,0x0,0x0,0x0,0x30,0x64,0xad,0x90,0x0,0x0, - 0x0,0x0,0x31,0x5d,0xd9,0x10,0x0,0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0, - 0x0,0x0,0x33,0x3d,0xbb,0x10,0x0,0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0, - 0x0,0x0,0x35,0x1d,0x9d,0x10,0x0,0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0, - 0x0,0x0,0x36,0xfd,0x7f,0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0, - 0x0,0x0,0x38,0xdd,0x61,0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0, - 0x0,0x0,0x3a,0xbd,0x43,0x10,0x0,0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0, - 0x0,0x0,0x3c,0xa6,0x5f,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0, - 0x0,0x0,0x3e,0x86,0x41,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0, - 0x0,0x0,0x40,0x66,0x23,0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0, - 0x0,0x0,0x42,0x46,0x5,0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0, - 0x0,0x0,0x44,0x25,0xe7,0x90,0x0,0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0, - 0x0,0x0,0x46,0x5,0xc9,0x90,0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0, - 0x0,0x0,0x47,0xee,0xe6,0x10,0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0, - 0x0,0x0,0x49,0xce,0xc8,0x10,0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0, - 0x0,0x0,0x4b,0xae,0xaa,0x10,0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0, - 0x0,0x0,0x4d,0x8e,0x8c,0x10,0x0,0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0, - 0x0,0x0,0x4f,0x6e,0x6e,0x10,0x0,0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0, - 0x0,0x0,0x51,0x57,0x8a,0x90,0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0, - 0x0,0x0,0x53,0x37,0x6c,0x90,0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0, - 0x0,0x0,0x55,0x17,0x4e,0x90,0x0,0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0, - 0x0,0x0,0x56,0xf7,0x30,0x90,0x0,0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0, - 0x0,0x0,0x58,0xd7,0x12,0x90,0x0,0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0, - 0x0,0x0,0x5a,0xb6,0xf4,0x90,0x0,0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0, - 0x0,0x0,0x5c,0xa0,0x11,0x10,0x0,0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0, - 0x0,0x0,0x5e,0x7f,0xf3,0x10,0x0,0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0, - 0x0,0x0,0x60,0x5f,0xd5,0x10,0x0,0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0, - 0x0,0x0,0x62,0x3f,0xb7,0x10,0x0,0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0, - 0x0,0x0,0x64,0x1f,0x99,0x10,0x0,0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0, - 0x0,0x0,0x66,0x8,0xb5,0x90,0x0,0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0, - 0x0,0x0,0x67,0xe8,0x97,0x90,0x0,0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0, - 0x0,0x0,0x69,0xc8,0x79,0x90,0x0,0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0, - 0x0,0x0,0x6b,0xa8,0x5b,0x90,0x0,0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0, - 0x0,0x0,0x6d,0x88,0x3d,0x90,0x0,0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0, - 0x0,0x0,0x6f,0x68,0x1f,0x90,0x0,0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0, - 0x0,0x0,0x71,0x51,0x3c,0x10,0x0,0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0, - 0x0,0x0,0x73,0x31,0x1e,0x10,0x0,0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0, - 0x0,0x0,0x75,0x11,0x0,0x10,0x0,0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0, - 0x0,0x0,0x76,0xf0,0xe2,0x10,0x0,0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0, - 0x0,0x0,0x78,0xd0,0xc4,0x10,0x0,0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0, - 0x0,0x0,0x7a,0xb0,0xa6,0x10,0x0,0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0, - 0x0,0x0,0x7c,0x99,0xc2,0x90,0x0,0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0, - 0x0,0x0,0x7e,0x79,0xa4,0x90,0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x1, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x0,0x0,0x5c,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x12,0x80,0x0,0x0,0x0,0x9b, + 0xd5,0x78,0x80,0x9c,0xbc,0x20,0xf0,0xa0,0x87,0xb4,0x60,0xd7,0xc,0x68,0x0,0xfb, + 0xc2,0x8d,0x0,0xfc,0xb2,0x7e,0x0,0xfd,0xc7,0x59,0x0,0xfe,0x76,0xb0,0x80,0xff, + 0xa7,0x3b,0x0,0x0,0x56,0x92,0x80,0x1,0x87,0x1d,0x0,0x2,0x3f,0xaf,0x0,0x3, + 0x70,0x39,0x80,0x4,0xd,0x1c,0x0,0x5,0x50,0x1b,0x80,0x5,0xf6,0x38,0x80,0x7, + 0x2f,0xfd,0x80,0x7,0xd6,0x1a,0x80,0x9,0xf,0xdf,0x80,0x9,0xb5,0xfc,0x80,0xa, + 0xef,0xc1,0x80,0xb,0x9f,0x19,0x0,0xc,0xd8,0xde,0x0,0xd,0x7e,0xfb,0x0,0xe, + 0xb8,0xc0,0x0,0xf,0x5e,0xdd,0x0,0x10,0x98,0xa2,0x0,0x11,0x3e,0xbf,0x0,0x12, + 0x78,0x84,0x0,0x13,0x1e,0xa1,0x0,0x14,0x58,0x66,0x0,0x14,0xfe,0x83,0x0,0x16, + 0x38,0x48,0x0,0x17,0x3,0x4f,0x0,0x18,0x21,0x64,0x80,0x18,0xe3,0x31,0x0,0x1a, + 0x1,0x46,0x80,0x1a,0xa7,0x63,0x80,0x1b,0xe1,0x28,0x80,0x1c,0x87,0x45,0x80,0x1d, + 0xc1,0xa,0x80,0x1e,0x67,0x27,0x80,0x1f,0x97,0xb2,0x0,0x20,0x59,0x7e,0x80,0x21, + 0x80,0xce,0x80,0x22,0x42,0x9b,0x0,0x23,0x69,0xeb,0x0,0x24,0x22,0x7d,0x0,0x25, + 0x49,0xcd,0x0,0x26,0x2,0x5f,0x0,0x27,0x29,0xaf,0x0,0x27,0xf4,0xb6,0x0,0x28, + 0xed,0xe1,0x80,0x29,0xd4,0x98,0x0,0x2a,0xcd,0xc3,0x80,0x2b,0xb4,0x7a,0x0,0x2c, + 0xad,0xa5,0x80,0x2d,0x94,0x5c,0x0,0x2e,0x8d,0x87,0x80,0x2f,0x74,0x3e,0x0,0x30, + 0x6d,0x69,0x80,0x31,0x5d,0x5a,0x80,0x32,0x56,0x86,0x0,0x33,0x3d,0x3c,0x80,0x34, + 0x36,0x68,0x0,0x35,0x1d,0x1e,0x80,0x36,0x16,0x4a,0x0,0x36,0xfd,0x0,0x80,0x37, + 0xf6,0x2c,0x0,0x38,0xdc,0xe2,0x80,0x39,0xa7,0xe9,0x80,0x3a,0xbc,0xc4,0x80,0x3b, + 0xbf,0x2a,0x80,0x3c,0xa5,0xe1,0x0,0x3d,0x9f,0xc,0x80,0x3e,0x85,0xc3,0x0,0x3f, + 0x7e,0xee,0x80,0x40,0x65,0xa5,0x0,0x41,0x5e,0xd0,0x80,0x42,0x45,0x87,0x0,0x43, + 0x3e,0xb2,0x80,0x44,0x2e,0xa3,0x80,0x45,0x1e,0x94,0x80,0x46,0x5,0x4b,0x0,0x47, + 0x7,0xb1,0x0,0x47,0xf7,0xa2,0x0,0x48,0xe7,0x93,0x0,0x49,0xd7,0x84,0x0,0x4a, + 0xc7,0x75,0x0,0x4b,0xb7,0x66,0x0,0x7f,0xff,0xff,0xff,0x1,0x2,0x1,0x3,0x1, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x6,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8c, + 0xa0,0x0,0x4,0x0,0x0,0x9a,0xb0,0x1,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x9a,0xb0,0x1,0x9,0x0,0x0,0x8c,0xa0,0x0,0x4,0x0,0x0,0x9a,0xb0,0x0, + 0xe,0x2d,0x30,0x30,0x0,0x41,0x45,0x53,0x54,0x0,0x41,0x45,0x44,0x54,0x0,0x2b, + 0x31,0x31,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x5d,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x12,0xf8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x7c,0x5,0x16,0x0,0xff,0xff,0xff, + 0xff,0x9b,0xd5,0x78,0x80,0xff,0xff,0xff,0xff,0x9c,0xbc,0x20,0xf0,0xff,0xff,0xff, + 0xff,0xa0,0x87,0xb4,0x60,0xff,0xff,0xff,0xff,0xd7,0xc,0x68,0x0,0xff,0xff,0xff, + 0xff,0xfb,0xc2,0x8d,0x0,0xff,0xff,0xff,0xff,0xfc,0xb2,0x7e,0x0,0xff,0xff,0xff, + 0xff,0xfd,0xc7,0x59,0x0,0xff,0xff,0xff,0xff,0xfe,0x76,0xb0,0x80,0xff,0xff,0xff, + 0xff,0xff,0xa7,0x3b,0x0,0x0,0x0,0x0,0x0,0x0,0x56,0x92,0x80,0x0,0x0,0x0, + 0x0,0x1,0x87,0x1d,0x0,0x0,0x0,0x0,0x0,0x2,0x3f,0xaf,0x0,0x0,0x0,0x0, + 0x0,0x3,0x70,0x39,0x80,0x0,0x0,0x0,0x0,0x4,0xd,0x1c,0x0,0x0,0x0,0x0, + 0x0,0x5,0x50,0x1b,0x80,0x0,0x0,0x0,0x0,0x5,0xf6,0x38,0x80,0x0,0x0,0x0, + 0x0,0x7,0x2f,0xfd,0x80,0x0,0x0,0x0,0x0,0x7,0xd6,0x1a,0x80,0x0,0x0,0x0, + 0x0,0x9,0xf,0xdf,0x80,0x0,0x0,0x0,0x0,0x9,0xb5,0xfc,0x80,0x0,0x0,0x0, + 0x0,0xa,0xef,0xc1,0x80,0x0,0x0,0x0,0x0,0xb,0x9f,0x19,0x0,0x0,0x0,0x0, + 0x0,0xc,0xd8,0xde,0x0,0x0,0x0,0x0,0x0,0xd,0x7e,0xfb,0x0,0x0,0x0,0x0, + 0x0,0xe,0xb8,0xc0,0x0,0x0,0x0,0x0,0x0,0xf,0x5e,0xdd,0x0,0x0,0x0,0x0, + 0x0,0x10,0x98,0xa2,0x0,0x0,0x0,0x0,0x0,0x11,0x3e,0xbf,0x0,0x0,0x0,0x0, + 0x0,0x12,0x78,0x84,0x0,0x0,0x0,0x0,0x0,0x13,0x1e,0xa1,0x0,0x0,0x0,0x0, + 0x0,0x14,0x58,0x66,0x0,0x0,0x0,0x0,0x0,0x14,0xfe,0x83,0x0,0x0,0x0,0x0, + 0x0,0x16,0x38,0x48,0x0,0x0,0x0,0x0,0x0,0x17,0x3,0x4f,0x0,0x0,0x0,0x0, + 0x0,0x18,0x21,0x64,0x80,0x0,0x0,0x0,0x0,0x18,0xe3,0x31,0x0,0x0,0x0,0x0, + 0x0,0x1a,0x1,0x46,0x80,0x0,0x0,0x0,0x0,0x1a,0xa7,0x63,0x80,0x0,0x0,0x0, + 0x0,0x1b,0xe1,0x28,0x80,0x0,0x0,0x0,0x0,0x1c,0x87,0x45,0x80,0x0,0x0,0x0, + 0x0,0x1d,0xc1,0xa,0x80,0x0,0x0,0x0,0x0,0x1e,0x67,0x27,0x80,0x0,0x0,0x0, + 0x0,0x1f,0x97,0xb2,0x0,0x0,0x0,0x0,0x0,0x20,0x59,0x7e,0x80,0x0,0x0,0x0, + 0x0,0x21,0x80,0xce,0x80,0x0,0x0,0x0,0x0,0x22,0x42,0x9b,0x0,0x0,0x0,0x0, + 0x0,0x23,0x69,0xeb,0x0,0x0,0x0,0x0,0x0,0x24,0x22,0x7d,0x0,0x0,0x0,0x0, + 0x0,0x25,0x49,0xcd,0x0,0x0,0x0,0x0,0x0,0x26,0x2,0x5f,0x0,0x0,0x0,0x0, + 0x0,0x27,0x29,0xaf,0x0,0x0,0x0,0x0,0x0,0x27,0xf4,0xb6,0x0,0x0,0x0,0x0, + 0x0,0x28,0xed,0xe1,0x80,0x0,0x0,0x0,0x0,0x29,0xd4,0x98,0x0,0x0,0x0,0x0, + 0x0,0x2a,0xcd,0xc3,0x80,0x0,0x0,0x0,0x0,0x2b,0xb4,0x7a,0x0,0x0,0x0,0x0, + 0x0,0x2c,0xad,0xa5,0x80,0x0,0x0,0x0,0x0,0x2d,0x94,0x5c,0x0,0x0,0x0,0x0, + 0x0,0x2e,0x8d,0x87,0x80,0x0,0x0,0x0,0x0,0x2f,0x74,0x3e,0x0,0x0,0x0,0x0, + 0x0,0x30,0x6d,0x69,0x80,0x0,0x0,0x0,0x0,0x31,0x5d,0x5a,0x80,0x0,0x0,0x0, + 0x0,0x32,0x56,0x86,0x0,0x0,0x0,0x0,0x0,0x33,0x3d,0x3c,0x80,0x0,0x0,0x0, + 0x0,0x34,0x36,0x68,0x0,0x0,0x0,0x0,0x0,0x35,0x1d,0x1e,0x80,0x0,0x0,0x0, + 0x0,0x36,0x16,0x4a,0x0,0x0,0x0,0x0,0x0,0x36,0xfd,0x0,0x80,0x0,0x0,0x0, + 0x0,0x37,0xf6,0x2c,0x0,0x0,0x0,0x0,0x0,0x38,0xdc,0xe2,0x80,0x0,0x0,0x0, + 0x0,0x39,0xa7,0xe9,0x80,0x0,0x0,0x0,0x0,0x3a,0xbc,0xc4,0x80,0x0,0x0,0x0, + 0x0,0x3b,0xbf,0x2a,0x80,0x0,0x0,0x0,0x0,0x3c,0xa5,0xe1,0x0,0x0,0x0,0x0, + 0x0,0x3d,0x9f,0xc,0x80,0x0,0x0,0x0,0x0,0x3e,0x85,0xc3,0x0,0x0,0x0,0x0, + 0x0,0x3f,0x7e,0xee,0x80,0x0,0x0,0x0,0x0,0x40,0x65,0xa5,0x0,0x0,0x0,0x0, + 0x0,0x41,0x5e,0xd0,0x80,0x0,0x0,0x0,0x0,0x42,0x45,0x87,0x0,0x0,0x0,0x0, + 0x0,0x43,0x3e,0xb2,0x80,0x0,0x0,0x0,0x0,0x44,0x2e,0xa3,0x80,0x0,0x0,0x0, + 0x0,0x45,0x1e,0x94,0x80,0x0,0x0,0x0,0x0,0x46,0x5,0x4b,0x0,0x0,0x0,0x0, + 0x0,0x47,0x7,0xb1,0x0,0x0,0x0,0x0,0x0,0x47,0xf7,0xa2,0x0,0x0,0x0,0x0, + 0x0,0x48,0xe7,0x93,0x0,0x0,0x0,0x0,0x0,0x49,0xd7,0x84,0x0,0x0,0x0,0x0, + 0x0,0x4a,0xc7,0x75,0x0,0x0,0x0,0x0,0x0,0x4b,0xb7,0x66,0x0,0x0,0x0,0x0, + 0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x2,0x1,0x3,0x1,0x4,0x5,0x4,0x5,0x4, 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x0,0x0,0x17,0x65,0x0,0x0,0x0,0x0,0x17,0x65,0x0, - 0x4,0x0,0x0,0x2a,0x30,0x1,0x8,0x0,0x0,0x1c,0x20,0x0,0xd,0x0,0x0,0x2a, - 0x30,0x1,0x8,0x0,0x0,0x1c,0x20,0x0,0xd,0x4c,0x4d,0x54,0x0,0x48,0x4d,0x54, - 0x0,0x45,0x45,0x53,0x54,0x0,0x45,0x45,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x1, - 0x0,0x0,0x0,0x0,0x1,0x1,0xa,0x45,0x45,0x54,0x2d,0x32,0x45,0x45,0x53,0x54, - 0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2f,0x33,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e, - 0x30,0x2f,0x34,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Uzhgorod - 0x0,0x0,0x8,0x37, + 0x6,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8c,0xa0,0x0,0x4,0x0,0x0, + 0x9a,0xb0,0x1,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9a,0xb0,0x1,0x9, + 0x0,0x0,0x8c,0xa0,0x0,0x4,0x0,0x0,0x9a,0xb0,0x0,0xe,0x2d,0x30,0x30,0x0, + 0x41,0x45,0x53,0x54,0x0,0x41,0x45,0x44,0x54,0x0,0x2b,0x31,0x31,0x0,0x0,0x0, + 0x0,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2b,0x31, + 0x31,0x3e,0x2d,0x31,0x31,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Antarctica/South_Pole + 0x0,0x0,0x9,0x9c, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x7a,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x1e,0x80,0x0,0x0,0x0,0xc8, - 0x9,0x71,0x90,0xcc,0xe7,0x4b,0x10,0xcd,0xa9,0x17,0x90,0xce,0xa2,0x43,0x10,0xcf, - 0x92,0x34,0x10,0xd0,0x80,0xa9,0x60,0xd0,0xa1,0x9e,0xe0,0xd1,0xe5,0xfd,0xf0,0x15, - 0x27,0xa7,0xd0,0x16,0x18,0xdc,0x40,0x17,0x8,0xdb,0x50,0x17,0xfa,0xf,0xc0,0x18, - 0xea,0xe,0xd0,0x19,0xdb,0x43,0x40,0x1a,0xcc,0x93,0xd0,0x1b,0xbc,0xa0,0xf0,0x1c, - 0xac,0x91,0xf0,0x1d,0x9c,0x82,0xf0,0x1e,0x8c,0x73,0xf0,0x1f,0x7c,0x64,0xf0,0x20, - 0x6c,0x55,0xf0,0x21,0x5c,0x46,0xf0,0x22,0x4c,0x37,0xf0,0x23,0x3c,0x28,0xf0,0x24, - 0x2c,0x19,0xf0,0x25,0x1c,0xa,0xf0,0x25,0x9e,0x73,0x50,0x26,0x8d,0x2e,0xf0,0x27, - 0xf5,0x42,0xa0,0x29,0xd4,0xec,0x60,0x2a,0xc4,0xcf,0x50,0x2b,0xb4,0xce,0x60,0x2c, - 0xa4,0xb1,0x50,0x2d,0x94,0xb0,0x60,0x2e,0x84,0x93,0x50,0x2f,0x74,0xbc,0x90,0x30, - 0x64,0xad,0x90,0x31,0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34, - 0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38, - 0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b, - 0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f, - 0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43, - 0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47, - 0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a, - 0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e, - 0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52, - 0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56, - 0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59, - 0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d, - 0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61, - 0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65, - 0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68, - 0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c, - 0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70, - 0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74, - 0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78, - 0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b, - 0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f, - 0x8e,0x7f,0x90,0x1,0x2,0x3,0x2,0x3,0x2,0x4,0x1,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x6,0x1, - 0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb, - 0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb, - 0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb, - 0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb, - 0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb, - 0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0x0,0x0,0x14, - 0xe8,0x0,0x0,0x0,0x0,0xe,0x10,0x0,0x4,0x0,0x0,0x1c,0x20,0x1,0x8,0x0, - 0x0,0xe,0x10,0x0,0x4,0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0x38,0x40,0x1, - 0xd,0x0,0x0,0x2a,0x30,0x0,0x11,0x0,0x0,0x2a,0x30,0x0,0x11,0x0,0x0,0x38, - 0x40,0x1,0xd,0x0,0x0,0x1c,0x20,0x0,0x15,0x0,0x0,0x2a,0x30,0x1,0x19,0x0, - 0x0,0x2a,0x30,0x1,0x19,0x0,0x0,0x1c,0x20,0x0,0x15,0x4c,0x4d,0x54,0x0,0x43, - 0x45,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x4d,0x53,0x44,0x0,0x4d,0x53,0x4b,0x0, - 0x45,0x45,0x54,0x0,0x45,0x45,0x53,0x54,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0, - 0x1,0x1,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x1,0x1,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0xd,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x7b,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x1e,0xf8, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x6a,0xee,0xb0,0x18,0xff, - 0xff,0xff,0xff,0xc8,0x9,0x71,0x90,0xff,0xff,0xff,0xff,0xcc,0xe7,0x4b,0x10,0xff, - 0xff,0xff,0xff,0xcd,0xa9,0x17,0x90,0xff,0xff,0xff,0xff,0xce,0xa2,0x43,0x10,0xff, - 0xff,0xff,0xff,0xcf,0x92,0x34,0x10,0xff,0xff,0xff,0xff,0xd0,0x80,0xa9,0x60,0xff, - 0xff,0xff,0xff,0xd0,0xa1,0x9e,0xe0,0xff,0xff,0xff,0xff,0xd1,0xe5,0xfd,0xf0,0x0, - 0x0,0x0,0x0,0x15,0x27,0xa7,0xd0,0x0,0x0,0x0,0x0,0x16,0x18,0xdc,0x40,0x0, - 0x0,0x0,0x0,0x17,0x8,0xdb,0x50,0x0,0x0,0x0,0x0,0x17,0xfa,0xf,0xc0,0x0, - 0x0,0x0,0x0,0x18,0xea,0xe,0xd0,0x0,0x0,0x0,0x0,0x19,0xdb,0x43,0x40,0x0, - 0x0,0x0,0x0,0x1a,0xcc,0x93,0xd0,0x0,0x0,0x0,0x0,0x1b,0xbc,0xa0,0xf0,0x0, - 0x0,0x0,0x0,0x1c,0xac,0x91,0xf0,0x0,0x0,0x0,0x0,0x1d,0x9c,0x82,0xf0,0x0, - 0x0,0x0,0x0,0x1e,0x8c,0x73,0xf0,0x0,0x0,0x0,0x0,0x1f,0x7c,0x64,0xf0,0x0, - 0x0,0x0,0x0,0x20,0x6c,0x55,0xf0,0x0,0x0,0x0,0x0,0x21,0x5c,0x46,0xf0,0x0, - 0x0,0x0,0x0,0x22,0x4c,0x37,0xf0,0x0,0x0,0x0,0x0,0x23,0x3c,0x28,0xf0,0x0, - 0x0,0x0,0x0,0x24,0x2c,0x19,0xf0,0x0,0x0,0x0,0x0,0x25,0x1c,0xa,0xf0,0x0, - 0x0,0x0,0x0,0x25,0x9e,0x73,0x50,0x0,0x0,0x0,0x0,0x26,0x8d,0x2e,0xf0,0x0, - 0x0,0x0,0x0,0x27,0xf5,0x42,0xa0,0x0,0x0,0x0,0x0,0x29,0xd4,0xec,0x60,0x0, - 0x0,0x0,0x0,0x2a,0xc4,0xcf,0x50,0x0,0x0,0x0,0x0,0x2b,0xb4,0xce,0x60,0x0, - 0x0,0x0,0x0,0x2c,0xa4,0xb1,0x50,0x0,0x0,0x0,0x0,0x2d,0x94,0xb0,0x60,0x0, - 0x0,0x0,0x0,0x2e,0x84,0x93,0x50,0x0,0x0,0x0,0x0,0x2f,0x74,0xbc,0x90,0x0, - 0x0,0x0,0x0,0x30,0x64,0xad,0x90,0x0,0x0,0x0,0x0,0x31,0x5d,0xd9,0x10,0x0, - 0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d,0xbb,0x10,0x0, - 0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d,0x9d,0x10,0x0, - 0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd,0x7f,0x10,0x0, - 0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd,0x61,0x10,0x0, - 0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd,0x43,0x10,0x0, - 0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f,0x90,0x0, - 0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86,0x41,0x90,0x0, - 0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66,0x23,0x90,0x0, - 0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46,0x5,0x90,0x0, - 0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25,0xe7,0x90,0x0, - 0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5,0xc9,0x90,0x0, - 0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee,0xe6,0x10,0x0, - 0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce,0xc8,0x10,0x0, - 0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae,0xaa,0x10,0x0, - 0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c,0x10,0x0, - 0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e,0x10,0x0, - 0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57,0x8a,0x90,0x0, - 0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37,0x6c,0x90,0x0, - 0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17,0x4e,0x90,0x0, - 0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7,0x30,0x90,0x0, - 0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7,0x12,0x90,0x0, - 0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4,0x90,0x0, - 0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0,0x11,0x10,0x0, - 0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3,0x10,0x0, - 0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f,0xd5,0x10,0x0, - 0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f,0xb7,0x10,0x0, - 0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f,0x99,0x10,0x0, - 0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8,0xb5,0x90,0x0, - 0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8,0x97,0x90,0x0, - 0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8,0x79,0x90,0x0, - 0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b,0x90,0x0, - 0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88,0x3d,0x90,0x0, - 0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68,0x1f,0x90,0x0, - 0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51,0x3c,0x10,0x0, - 0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31,0x1e,0x10,0x0, - 0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11,0x0,0x10,0x0, - 0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0,0xe2,0x10,0x0, - 0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0,0xc4,0x10,0x0, - 0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6,0x10,0x0, - 0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99,0xc2,0x90,0x0, - 0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79,0xa4,0x90,0x0, - 0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x1,0x2,0x3,0x2,0x3,0x2,0x4,0x1, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8, - 0x7,0x8,0x7,0x6,0x1,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xb,0xc,0xb,0xc, - 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, - 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, - 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, - 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, - 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, - 0xb,0xc,0x0,0x0,0x14,0xe8,0x0,0x0,0x0,0x0,0xe,0x10,0x0,0x4,0x0,0x0, - 0x1c,0x20,0x1,0x8,0x0,0x0,0xe,0x10,0x0,0x4,0x0,0x0,0x1c,0x20,0x1,0x8, - 0x0,0x0,0x38,0x40,0x1,0xd,0x0,0x0,0x2a,0x30,0x0,0x11,0x0,0x0,0x2a,0x30, - 0x0,0x11,0x0,0x0,0x38,0x40,0x1,0xd,0x0,0x0,0x1c,0x20,0x0,0x15,0x0,0x0, - 0x2a,0x30,0x1,0x19,0x0,0x0,0x2a,0x30,0x1,0x19,0x0,0x0,0x1c,0x20,0x0,0x15, - 0x4c,0x4d,0x54,0x0,0x43,0x45,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x4d,0x53,0x44, - 0x0,0x4d,0x53,0x4b,0x0,0x45,0x45,0x54,0x0,0x45,0x45,0x53,0x54,0x0,0x0,0x0, - 0x1,0x1,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0xa,0x45,0x45,0x54,0x2d,0x32,0x45,0x45, - 0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2f,0x33,0x2c,0x4d,0x31,0x30,0x2e, - 0x35,0x2e,0x30,0x2f,0x34,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Zurich - 0x0,0x0,0x7,0x7e, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x77,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0xca, - 0x17,0x6a,0x0,0xca,0xe2,0x71,0x0,0xcb,0xf7,0x4c,0x0,0xcc,0xc2,0x53,0x0,0x15, - 0x23,0xeb,0x90,0x16,0x13,0xdc,0x90,0x17,0x3,0xcd,0x90,0x17,0xf3,0xbe,0x90,0x18, - 0xe3,0xaf,0x90,0x19,0xd3,0xa0,0x90,0x1a,0xc3,0x91,0x90,0x1b,0xbc,0xbd,0x10,0x1c, - 0xac,0xae,0x10,0x1d,0x9c,0x9f,0x10,0x1e,0x8c,0x90,0x10,0x1f,0x7c,0x81,0x10,0x20, - 0x6c,0x72,0x10,0x21,0x5c,0x63,0x10,0x22,0x4c,0x54,0x10,0x23,0x3c,0x45,0x10,0x24, - 0x2c,0x36,0x10,0x25,0x1c,0x27,0x10,0x26,0xc,0x18,0x10,0x27,0x5,0x43,0x90,0x27, - 0xf5,0x34,0x90,0x28,0xe5,0x25,0x90,0x29,0xd5,0x16,0x90,0x2a,0xc5,0x7,0x90,0x2b, - 0xb4,0xf8,0x90,0x2c,0xa4,0xe9,0x90,0x2d,0x94,0xda,0x90,0x2e,0x84,0xcb,0x90,0x2f, - 0x74,0xbc,0x90,0x30,0x64,0xad,0x90,0x31,0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33, - 0x3d,0xbb,0x10,0x34,0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36, - 0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a, - 0xbd,0x43,0x10,0x3b,0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e, - 0x86,0x41,0x90,0x3f,0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42, - 0x46,0x5,0x90,0x43,0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46, - 0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49, - 0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d, - 0x8e,0x8c,0x10,0x4e,0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51, - 0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55, - 0x17,0x4e,0x90,0x56,0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58, - 0xd7,0x12,0x90,0x59,0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c, - 0xa0,0x11,0x10,0x5d,0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60, - 0x5f,0xd5,0x10,0x61,0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64, - 0x1f,0x99,0x10,0x65,0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67, - 0xe8,0x97,0x90,0x68,0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b, - 0xa8,0x5b,0x90,0x6c,0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f, - 0x68,0x1f,0x90,0x70,0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73, - 0x31,0x1e,0x10,0x74,0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76, - 0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a, - 0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e, - 0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x0,0x0, - 0x6,0xfa,0x0,0x0,0x0,0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe,0x10,0x0,0x9, - 0x0,0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe,0x10,0x0,0x9,0x42,0x4d,0x54,0x0, - 0x43,0x45,0x53,0x54,0x0,0x43,0x45,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0, - 0x0,0x1,0x1,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x79,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0xf8, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x24,0xf0,0xea,0x80,0xff, - 0xff,0xff,0xff,0x71,0xd4,0x6,0x86,0xff,0xff,0xff,0xff,0xca,0x17,0x6a,0x0,0xff, - 0xff,0xff,0xff,0xca,0xe2,0x71,0x0,0xff,0xff,0xff,0xff,0xcb,0xf7,0x4c,0x0,0xff, - 0xff,0xff,0xff,0xcc,0xc2,0x53,0x0,0x0,0x0,0x0,0x0,0x15,0x23,0xeb,0x90,0x0, - 0x0,0x0,0x0,0x16,0x13,0xdc,0x90,0x0,0x0,0x0,0x0,0x17,0x3,0xcd,0x90,0x0, - 0x0,0x0,0x0,0x17,0xf3,0xbe,0x90,0x0,0x0,0x0,0x0,0x18,0xe3,0xaf,0x90,0x0, - 0x0,0x0,0x0,0x19,0xd3,0xa0,0x90,0x0,0x0,0x0,0x0,0x1a,0xc3,0x91,0x90,0x0, - 0x0,0x0,0x0,0x1b,0xbc,0xbd,0x10,0x0,0x0,0x0,0x0,0x1c,0xac,0xae,0x10,0x0, - 0x0,0x0,0x0,0x1d,0x9c,0x9f,0x10,0x0,0x0,0x0,0x0,0x1e,0x8c,0x90,0x10,0x0, - 0x0,0x0,0x0,0x1f,0x7c,0x81,0x10,0x0,0x0,0x0,0x0,0x20,0x6c,0x72,0x10,0x0, - 0x0,0x0,0x0,0x21,0x5c,0x63,0x10,0x0,0x0,0x0,0x0,0x22,0x4c,0x54,0x10,0x0, - 0x0,0x0,0x0,0x23,0x3c,0x45,0x10,0x0,0x0,0x0,0x0,0x24,0x2c,0x36,0x10,0x0, - 0x0,0x0,0x0,0x25,0x1c,0x27,0x10,0x0,0x0,0x0,0x0,0x26,0xc,0x18,0x10,0x0, - 0x0,0x0,0x0,0x27,0x5,0x43,0x90,0x0,0x0,0x0,0x0,0x27,0xf5,0x34,0x90,0x0, - 0x0,0x0,0x0,0x28,0xe5,0x25,0x90,0x0,0x0,0x0,0x0,0x29,0xd5,0x16,0x90,0x0, - 0x0,0x0,0x0,0x2a,0xc5,0x7,0x90,0x0,0x0,0x0,0x0,0x2b,0xb4,0xf8,0x90,0x0, - 0x0,0x0,0x0,0x2c,0xa4,0xe9,0x90,0x0,0x0,0x0,0x0,0x2d,0x94,0xda,0x90,0x0, - 0x0,0x0,0x0,0x2e,0x84,0xcb,0x90,0x0,0x0,0x0,0x0,0x2f,0x74,0xbc,0x90,0x0, - 0x0,0x0,0x0,0x30,0x64,0xad,0x90,0x0,0x0,0x0,0x0,0x31,0x5d,0xd9,0x10,0x0, - 0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d,0xbb,0x10,0x0, - 0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d,0x9d,0x10,0x0, - 0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd,0x7f,0x10,0x0, - 0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd,0x61,0x10,0x0, - 0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd,0x43,0x10,0x0, - 0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f,0x90,0x0, - 0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86,0x41,0x90,0x0, - 0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66,0x23,0x90,0x0, - 0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46,0x5,0x90,0x0, - 0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25,0xe7,0x90,0x0, - 0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5,0xc9,0x90,0x0, - 0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee,0xe6,0x10,0x0, - 0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce,0xc8,0x10,0x0, - 0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae,0xaa,0x10,0x0, - 0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c,0x10,0x0, - 0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e,0x10,0x0, - 0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57,0x8a,0x90,0x0, - 0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37,0x6c,0x90,0x0, - 0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17,0x4e,0x90,0x0, - 0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7,0x30,0x90,0x0, - 0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7,0x12,0x90,0x0, - 0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4,0x90,0x0, - 0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0,0x11,0x10,0x0, - 0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3,0x10,0x0, - 0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f,0xd5,0x10,0x0, - 0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f,0xb7,0x10,0x0, - 0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f,0x99,0x10,0x0, - 0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8,0xb5,0x90,0x0, - 0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8,0x97,0x90,0x0, - 0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8,0x79,0x90,0x0, - 0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b,0x90,0x0, - 0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88,0x3d,0x90,0x0, - 0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68,0x1f,0x90,0x0, - 0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51,0x3c,0x10,0x0, - 0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31,0x1e,0x10,0x0, - 0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11,0x0,0x10,0x0, - 0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0,0xe2,0x10,0x0, - 0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0,0xc4,0x10,0x0, - 0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6,0x10,0x0, - 0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99,0xc2,0x90,0x0, - 0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79,0xa4,0x90,0x0, - 0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x1,0x3,0x2,0x3,0x2,0x3,0x4,0x5, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x9c,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x13,0x80,0x0,0x0,0x0,0xb0, + 0xb4,0xb2,0xe8,0xb1,0x51,0x87,0x58,0xb2,0x78,0xe5,0x68,0xb3,0x43,0xe5,0x60,0xb4, + 0x58,0xc7,0x68,0xb5,0x23,0xc7,0x60,0xb6,0x38,0xa9,0x68,0xb7,0x3,0xa9,0x60,0xb8, + 0x18,0x8b,0x68,0xb8,0xec,0xc5,0xe0,0xb9,0xf8,0x6d,0x68,0xba,0xcc,0xa7,0xe0,0xbb, + 0xd8,0x4f,0x68,0xbc,0xe3,0xe8,0xe0,0xbd,0xae,0xf6,0xe8,0xbe,0xc3,0xca,0xe0,0xbf, + 0x8e,0xd8,0xe8,0xc0,0xa3,0xac,0xe0,0xc1,0x6e,0xba,0xe8,0xc2,0x83,0x8e,0xe0,0xc3, + 0x4e,0x9c,0xe8,0xc4,0x63,0x70,0xe0,0xc5,0x2e,0x7e,0xe8,0xc6,0x4c,0x8d,0x60,0xc7, + 0xe,0x60,0xe8,0xc8,0x2c,0x6f,0x60,0xc8,0xf7,0x7d,0x68,0xd2,0xda,0x9a,0x40,0x9, + 0x18,0xfd,0xe0,0x9,0xac,0xa5,0xe0,0xa,0xef,0xa5,0x60,0xb,0x9e,0xfc,0xe0,0xc, + 0xd8,0xc1,0xe0,0xd,0x7e,0xde,0xe0,0xe,0xb8,0xa3,0xe0,0xf,0x5e,0xc0,0xe0,0x10, + 0x98,0x85,0xe0,0x11,0x3e,0xa2,0xe0,0x12,0x78,0x67,0xe0,0x13,0x1e,0x84,0xe0,0x14, + 0x58,0x49,0xe0,0x14,0xfe,0x66,0xe0,0x16,0x38,0x2b,0xe0,0x16,0xe7,0x83,0x60,0x18, + 0x21,0x48,0x60,0x18,0xc7,0x65,0x60,0x1a,0x1,0x2a,0x60,0x1a,0xa7,0x47,0x60,0x1b, + 0xe1,0xc,0x60,0x1c,0x87,0x29,0x60,0x1d,0xc0,0xee,0x60,0x1e,0x67,0xb,0x60,0x1f, + 0xa0,0xd0,0x60,0x20,0x46,0xed,0x60,0x21,0x80,0xb2,0x60,0x22,0x30,0x9,0xe0,0x23, + 0x69,0xce,0xe0,0x24,0xf,0xeb,0xe0,0x25,0x2e,0x1,0x60,0x26,0x2,0x42,0xe0,0x27, + 0xd,0xe3,0x60,0x27,0xe2,0x24,0xe0,0x28,0xed,0xc5,0x60,0x29,0xc2,0x6,0xe0,0x2a, + 0xcd,0xa7,0x60,0x2b,0xab,0x23,0x60,0x2c,0xad,0x89,0x60,0x2d,0x8b,0x5,0x60,0x2e, + 0x8d,0x6b,0x60,0x2f,0x6a,0xe7,0x60,0x30,0x6d,0x4d,0x60,0x31,0x4a,0xc9,0x60,0x32, + 0x56,0x69,0xe0,0x33,0x2a,0xab,0x60,0x34,0x36,0x4b,0xe0,0x35,0xa,0x8d,0x60,0x36, + 0x16,0x2d,0xe0,0x36,0xf3,0xa9,0xe0,0x37,0xf6,0xf,0xe0,0x38,0xd3,0x8b,0xe0,0x39, + 0xd5,0xf1,0xe0,0x3a,0xb3,0x6d,0xe0,0x3b,0xbf,0xe,0x60,0x3c,0x93,0x4f,0xe0,0x3d, + 0x9e,0xf0,0x60,0x3e,0x73,0x31,0xe0,0x3f,0x7e,0xd2,0x60,0x40,0x5c,0x4e,0x60,0x41, + 0x5e,0xb4,0x60,0x42,0x3c,0x30,0x60,0x43,0x3e,0x96,0x60,0x44,0x1c,0x12,0x60,0x45, + 0x1e,0x78,0x60,0x45,0xfb,0xf4,0x60,0x46,0xfe,0x5a,0x60,0x47,0xf7,0x85,0xe0,0x48, + 0xde,0x3c,0x60,0x49,0xd7,0x67,0xe0,0x4a,0xbe,0x1e,0x60,0x4b,0xb7,0x49,0xe0,0x4c, + 0x9e,0x0,0x60,0x4d,0x97,0x2b,0xe0,0x4e,0x7d,0xe2,0x60,0x4f,0x77,0xd,0xe0,0x50, + 0x66,0xfe,0xe0,0x51,0x60,0x2a,0x60,0x52,0x46,0xe0,0xe0,0x53,0x40,0xc,0x60,0x54, + 0x26,0xc2,0xe0,0x55,0x1f,0xee,0x60,0x56,0x6,0xa4,0xe0,0x56,0xff,0xd0,0x60,0x57, + 0xe6,0x86,0xe0,0x58,0xdf,0xb2,0x60,0x59,0xc6,0x68,0xe0,0x5a,0xbf,0x94,0x60,0x5b, + 0xaf,0x85,0x60,0x5c,0xa8,0xb0,0xe0,0x5d,0x8f,0x67,0x60,0x5e,0x88,0x92,0xe0,0x5f, + 0x6f,0x49,0x60,0x60,0x68,0x74,0xe0,0x61,0x4f,0x2b,0x60,0x62,0x48,0x56,0xe0,0x63, + 0x2f,0xd,0x60,0x64,0x28,0x38,0xe0,0x65,0xe,0xef,0x60,0x66,0x11,0x55,0x60,0x66, + 0xf8,0xb,0xe0,0x67,0xf1,0x37,0x60,0x68,0xd7,0xed,0xe0,0x69,0xd1,0x19,0x60,0x6a, + 0xb7,0xcf,0xe0,0x6b,0xb0,0xfb,0x60,0x6c,0x97,0xb1,0xe0,0x6d,0x90,0xdd,0x60,0x6e, + 0x77,0x93,0xe0,0x6f,0x70,0xbf,0x60,0x70,0x60,0xb0,0x60,0x71,0x59,0xdb,0xe0,0x72, + 0x40,0x92,0x60,0x73,0x39,0xbd,0xe0,0x74,0x20,0x74,0x60,0x75,0x19,0x9f,0xe0,0x76, + 0x0,0x56,0x60,0x76,0xf9,0x81,0xe0,0x77,0xe0,0x38,0x60,0x78,0xd9,0x63,0xe0,0x79, + 0xc0,0x1a,0x60,0x7a,0xb9,0x45,0xe0,0x7b,0xa9,0x36,0xe0,0x7c,0xa2,0x62,0x60,0x7d, + 0x89,0x18,0xe0,0x7e,0x82,0x44,0x60,0x7f,0x68,0xfa,0xe0,0x2,0x1,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x6,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, @@ -17480,2504 +14476,2049 @@ static const unsigned char qt_resource_data[] = { 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x6,0xfa,0x0,0x4,0x0,0x0,0x1c,0x20, - 0x1,0x8,0x0,0x0,0xe,0x10,0x0,0xd,0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0, - 0xe,0x10,0x0,0xd,0x4c,0x4d,0x54,0x0,0x42,0x4d,0x54,0x0,0x43,0x45,0x53,0x54, - 0x0,0x43,0x45,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x1, - 0x1,0xa,0x43,0x45,0x54,0x2d,0x31,0x43,0x45,0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35, - 0x2e,0x30,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30,0x2f,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Madrid - 0x0,0x0,0xa,0x3b, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x0,0x0,0xa3,0xd8,0x0,0x0,0x0,0x0,0xaf, + 0xc8,0x1,0x4,0x0,0x0,0xa1,0xb8,0x0,0x9,0x0,0x0,0xa8,0xc0,0x1,0x4,0x0, + 0x0,0xb6,0xd0,0x1,0xe,0x0,0x0,0xa8,0xc0,0x0,0x4,0x0,0x0,0xa8,0xc0,0x0, + 0x4,0x4c,0x4d,0x54,0x0,0x4e,0x5a,0x53,0x54,0x0,0x4e,0x5a,0x4d,0x54,0x0,0x4e, + 0x5a,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x9d,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x13,0xf8,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x41,0xb7,0x4c,0xa8,0xff,0xff, + 0xff,0xff,0xb0,0xb4,0xb2,0xe8,0xff,0xff,0xff,0xff,0xb1,0x51,0x87,0x58,0xff,0xff, + 0xff,0xff,0xb2,0x78,0xe5,0x68,0xff,0xff,0xff,0xff,0xb3,0x43,0xe5,0x60,0xff,0xff, + 0xff,0xff,0xb4,0x58,0xc7,0x68,0xff,0xff,0xff,0xff,0xb5,0x23,0xc7,0x60,0xff,0xff, + 0xff,0xff,0xb6,0x38,0xa9,0x68,0xff,0xff,0xff,0xff,0xb7,0x3,0xa9,0x60,0xff,0xff, + 0xff,0xff,0xb8,0x18,0x8b,0x68,0xff,0xff,0xff,0xff,0xb8,0xec,0xc5,0xe0,0xff,0xff, + 0xff,0xff,0xb9,0xf8,0x6d,0x68,0xff,0xff,0xff,0xff,0xba,0xcc,0xa7,0xe0,0xff,0xff, + 0xff,0xff,0xbb,0xd8,0x4f,0x68,0xff,0xff,0xff,0xff,0xbc,0xe3,0xe8,0xe0,0xff,0xff, + 0xff,0xff,0xbd,0xae,0xf6,0xe8,0xff,0xff,0xff,0xff,0xbe,0xc3,0xca,0xe0,0xff,0xff, + 0xff,0xff,0xbf,0x8e,0xd8,0xe8,0xff,0xff,0xff,0xff,0xc0,0xa3,0xac,0xe0,0xff,0xff, + 0xff,0xff,0xc1,0x6e,0xba,0xe8,0xff,0xff,0xff,0xff,0xc2,0x83,0x8e,0xe0,0xff,0xff, + 0xff,0xff,0xc3,0x4e,0x9c,0xe8,0xff,0xff,0xff,0xff,0xc4,0x63,0x70,0xe0,0xff,0xff, + 0xff,0xff,0xc5,0x2e,0x7e,0xe8,0xff,0xff,0xff,0xff,0xc6,0x4c,0x8d,0x60,0xff,0xff, + 0xff,0xff,0xc7,0xe,0x60,0xe8,0xff,0xff,0xff,0xff,0xc8,0x2c,0x6f,0x60,0xff,0xff, + 0xff,0xff,0xc8,0xf7,0x7d,0x68,0xff,0xff,0xff,0xff,0xd2,0xda,0x9a,0x40,0x0,0x0, + 0x0,0x0,0x9,0x18,0xfd,0xe0,0x0,0x0,0x0,0x0,0x9,0xac,0xa5,0xe0,0x0,0x0, + 0x0,0x0,0xa,0xef,0xa5,0x60,0x0,0x0,0x0,0x0,0xb,0x9e,0xfc,0xe0,0x0,0x0, + 0x0,0x0,0xc,0xd8,0xc1,0xe0,0x0,0x0,0x0,0x0,0xd,0x7e,0xde,0xe0,0x0,0x0, + 0x0,0x0,0xe,0xb8,0xa3,0xe0,0x0,0x0,0x0,0x0,0xf,0x5e,0xc0,0xe0,0x0,0x0, + 0x0,0x0,0x10,0x98,0x85,0xe0,0x0,0x0,0x0,0x0,0x11,0x3e,0xa2,0xe0,0x0,0x0, + 0x0,0x0,0x12,0x78,0x67,0xe0,0x0,0x0,0x0,0x0,0x13,0x1e,0x84,0xe0,0x0,0x0, + 0x0,0x0,0x14,0x58,0x49,0xe0,0x0,0x0,0x0,0x0,0x14,0xfe,0x66,0xe0,0x0,0x0, + 0x0,0x0,0x16,0x38,0x2b,0xe0,0x0,0x0,0x0,0x0,0x16,0xe7,0x83,0x60,0x0,0x0, + 0x0,0x0,0x18,0x21,0x48,0x60,0x0,0x0,0x0,0x0,0x18,0xc7,0x65,0x60,0x0,0x0, + 0x0,0x0,0x1a,0x1,0x2a,0x60,0x0,0x0,0x0,0x0,0x1a,0xa7,0x47,0x60,0x0,0x0, + 0x0,0x0,0x1b,0xe1,0xc,0x60,0x0,0x0,0x0,0x0,0x1c,0x87,0x29,0x60,0x0,0x0, + 0x0,0x0,0x1d,0xc0,0xee,0x60,0x0,0x0,0x0,0x0,0x1e,0x67,0xb,0x60,0x0,0x0, + 0x0,0x0,0x1f,0xa0,0xd0,0x60,0x0,0x0,0x0,0x0,0x20,0x46,0xed,0x60,0x0,0x0, + 0x0,0x0,0x21,0x80,0xb2,0x60,0x0,0x0,0x0,0x0,0x22,0x30,0x9,0xe0,0x0,0x0, + 0x0,0x0,0x23,0x69,0xce,0xe0,0x0,0x0,0x0,0x0,0x24,0xf,0xeb,0xe0,0x0,0x0, + 0x0,0x0,0x25,0x2e,0x1,0x60,0x0,0x0,0x0,0x0,0x26,0x2,0x42,0xe0,0x0,0x0, + 0x0,0x0,0x27,0xd,0xe3,0x60,0x0,0x0,0x0,0x0,0x27,0xe2,0x24,0xe0,0x0,0x0, + 0x0,0x0,0x28,0xed,0xc5,0x60,0x0,0x0,0x0,0x0,0x29,0xc2,0x6,0xe0,0x0,0x0, + 0x0,0x0,0x2a,0xcd,0xa7,0x60,0x0,0x0,0x0,0x0,0x2b,0xab,0x23,0x60,0x0,0x0, + 0x0,0x0,0x2c,0xad,0x89,0x60,0x0,0x0,0x0,0x0,0x2d,0x8b,0x5,0x60,0x0,0x0, + 0x0,0x0,0x2e,0x8d,0x6b,0x60,0x0,0x0,0x0,0x0,0x2f,0x6a,0xe7,0x60,0x0,0x0, + 0x0,0x0,0x30,0x6d,0x4d,0x60,0x0,0x0,0x0,0x0,0x31,0x4a,0xc9,0x60,0x0,0x0, + 0x0,0x0,0x32,0x56,0x69,0xe0,0x0,0x0,0x0,0x0,0x33,0x2a,0xab,0x60,0x0,0x0, + 0x0,0x0,0x34,0x36,0x4b,0xe0,0x0,0x0,0x0,0x0,0x35,0xa,0x8d,0x60,0x0,0x0, + 0x0,0x0,0x36,0x16,0x2d,0xe0,0x0,0x0,0x0,0x0,0x36,0xf3,0xa9,0xe0,0x0,0x0, + 0x0,0x0,0x37,0xf6,0xf,0xe0,0x0,0x0,0x0,0x0,0x38,0xd3,0x8b,0xe0,0x0,0x0, + 0x0,0x0,0x39,0xd5,0xf1,0xe0,0x0,0x0,0x0,0x0,0x3a,0xb3,0x6d,0xe0,0x0,0x0, + 0x0,0x0,0x3b,0xbf,0xe,0x60,0x0,0x0,0x0,0x0,0x3c,0x93,0x4f,0xe0,0x0,0x0, + 0x0,0x0,0x3d,0x9e,0xf0,0x60,0x0,0x0,0x0,0x0,0x3e,0x73,0x31,0xe0,0x0,0x0, + 0x0,0x0,0x3f,0x7e,0xd2,0x60,0x0,0x0,0x0,0x0,0x40,0x5c,0x4e,0x60,0x0,0x0, + 0x0,0x0,0x41,0x5e,0xb4,0x60,0x0,0x0,0x0,0x0,0x42,0x3c,0x30,0x60,0x0,0x0, + 0x0,0x0,0x43,0x3e,0x96,0x60,0x0,0x0,0x0,0x0,0x44,0x1c,0x12,0x60,0x0,0x0, + 0x0,0x0,0x45,0x1e,0x78,0x60,0x0,0x0,0x0,0x0,0x45,0xfb,0xf4,0x60,0x0,0x0, + 0x0,0x0,0x46,0xfe,0x5a,0x60,0x0,0x0,0x0,0x0,0x47,0xf7,0x85,0xe0,0x0,0x0, + 0x0,0x0,0x48,0xde,0x3c,0x60,0x0,0x0,0x0,0x0,0x49,0xd7,0x67,0xe0,0x0,0x0, + 0x0,0x0,0x4a,0xbe,0x1e,0x60,0x0,0x0,0x0,0x0,0x4b,0xb7,0x49,0xe0,0x0,0x0, + 0x0,0x0,0x4c,0x9e,0x0,0x60,0x0,0x0,0x0,0x0,0x4d,0x97,0x2b,0xe0,0x0,0x0, + 0x0,0x0,0x4e,0x7d,0xe2,0x60,0x0,0x0,0x0,0x0,0x4f,0x77,0xd,0xe0,0x0,0x0, + 0x0,0x0,0x50,0x66,0xfe,0xe0,0x0,0x0,0x0,0x0,0x51,0x60,0x2a,0x60,0x0,0x0, + 0x0,0x0,0x52,0x46,0xe0,0xe0,0x0,0x0,0x0,0x0,0x53,0x40,0xc,0x60,0x0,0x0, + 0x0,0x0,0x54,0x26,0xc2,0xe0,0x0,0x0,0x0,0x0,0x55,0x1f,0xee,0x60,0x0,0x0, + 0x0,0x0,0x56,0x6,0xa4,0xe0,0x0,0x0,0x0,0x0,0x56,0xff,0xd0,0x60,0x0,0x0, + 0x0,0x0,0x57,0xe6,0x86,0xe0,0x0,0x0,0x0,0x0,0x58,0xdf,0xb2,0x60,0x0,0x0, + 0x0,0x0,0x59,0xc6,0x68,0xe0,0x0,0x0,0x0,0x0,0x5a,0xbf,0x94,0x60,0x0,0x0, + 0x0,0x0,0x5b,0xaf,0x85,0x60,0x0,0x0,0x0,0x0,0x5c,0xa8,0xb0,0xe0,0x0,0x0, + 0x0,0x0,0x5d,0x8f,0x67,0x60,0x0,0x0,0x0,0x0,0x5e,0x88,0x92,0xe0,0x0,0x0, + 0x0,0x0,0x5f,0x6f,0x49,0x60,0x0,0x0,0x0,0x0,0x60,0x68,0x74,0xe0,0x0,0x0, + 0x0,0x0,0x61,0x4f,0x2b,0x60,0x0,0x0,0x0,0x0,0x62,0x48,0x56,0xe0,0x0,0x0, + 0x0,0x0,0x63,0x2f,0xd,0x60,0x0,0x0,0x0,0x0,0x64,0x28,0x38,0xe0,0x0,0x0, + 0x0,0x0,0x65,0xe,0xef,0x60,0x0,0x0,0x0,0x0,0x66,0x11,0x55,0x60,0x0,0x0, + 0x0,0x0,0x66,0xf8,0xb,0xe0,0x0,0x0,0x0,0x0,0x67,0xf1,0x37,0x60,0x0,0x0, + 0x0,0x0,0x68,0xd7,0xed,0xe0,0x0,0x0,0x0,0x0,0x69,0xd1,0x19,0x60,0x0,0x0, + 0x0,0x0,0x6a,0xb7,0xcf,0xe0,0x0,0x0,0x0,0x0,0x6b,0xb0,0xfb,0x60,0x0,0x0, + 0x0,0x0,0x6c,0x97,0xb1,0xe0,0x0,0x0,0x0,0x0,0x6d,0x90,0xdd,0x60,0x0,0x0, + 0x0,0x0,0x6e,0x77,0x93,0xe0,0x0,0x0,0x0,0x0,0x6f,0x70,0xbf,0x60,0x0,0x0, + 0x0,0x0,0x70,0x60,0xb0,0x60,0x0,0x0,0x0,0x0,0x71,0x59,0xdb,0xe0,0x0,0x0, + 0x0,0x0,0x72,0x40,0x92,0x60,0x0,0x0,0x0,0x0,0x73,0x39,0xbd,0xe0,0x0,0x0, + 0x0,0x0,0x74,0x20,0x74,0x60,0x0,0x0,0x0,0x0,0x75,0x19,0x9f,0xe0,0x0,0x0, + 0x0,0x0,0x76,0x0,0x56,0x60,0x0,0x0,0x0,0x0,0x76,0xf9,0x81,0xe0,0x0,0x0, + 0x0,0x0,0x77,0xe0,0x38,0x60,0x0,0x0,0x0,0x0,0x78,0xd9,0x63,0xe0,0x0,0x0, + 0x0,0x0,0x79,0xc0,0x1a,0x60,0x0,0x0,0x0,0x0,0x7a,0xb9,0x45,0xe0,0x0,0x0, + 0x0,0x0,0x7b,0xa9,0x36,0xe0,0x0,0x0,0x0,0x0,0x7c,0xa2,0x62,0x60,0x0,0x0, + 0x0,0x0,0x7d,0x89,0x18,0xe0,0x0,0x0,0x0,0x0,0x7e,0x82,0x44,0x60,0x0,0x0, + 0x0,0x0,0x7f,0x68,0xfa,0xe0,0x0,0x2,0x1,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x6,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x0,0x0,0xa3,0xd8,0x0,0x0,0x0,0x0,0xaf,0xc8,0x1,0x4,0x0, + 0x0,0xa1,0xb8,0x0,0x9,0x0,0x0,0xa8,0xc0,0x1,0x4,0x0,0x0,0xb6,0xd0,0x1, + 0xe,0x0,0x0,0xa8,0xc0,0x0,0x4,0x0,0x0,0xa8,0xc0,0x0,0x4,0x4c,0x4d,0x54, + 0x0,0x4e,0x5a,0x53,0x54,0x0,0x4e,0x5a,0x4d,0x54,0x0,0x4e,0x5a,0x44,0x54,0x0, + 0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x4e, + 0x5a,0x53,0x54,0x2d,0x31,0x32,0x4e,0x5a,0x44,0x54,0x2c,0x4d,0x39,0x2e,0x35,0x2e, + 0x30,0x2c,0x4d,0x34,0x2e,0x31,0x2e,0x30,0x2f,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Antarctica/Syowa + 0x0,0x0,0x0,0xbb, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xa4,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x1b,0x80,0x0,0x0,0x0,0x9c, - 0xf3,0xf0,0x70,0x9d,0xbe,0xf7,0x70,0x9e,0xba,0xc5,0xf0,0x9f,0xa0,0x2a,0xf0,0xa0, - 0x8e,0xca,0x70,0xa1,0x81,0x5e,0x70,0xaa,0x5,0xef,0x70,0xaa,0xe7,0x5f,0xf0,0xad, - 0xc9,0xa7,0xf0,0xae,0xa7,0x23,0xf0,0xaf,0xa0,0x4f,0x70,0xb0,0x87,0x5,0xf0,0xb1, - 0x89,0x6b,0xf0,0xb2,0x70,0x22,0x70,0xb3,0x72,0x88,0x70,0xb4,0x50,0x4,0x70,0xc2, - 0xa8,0xf7,0x70,0xc3,0x58,0x4e,0xf0,0xc4,0x39,0xbf,0x70,0xc5,0x38,0x30,0xf0,0xc6, - 0x3a,0x96,0xf0,0xc7,0x21,0x4d,0x70,0xc7,0xf5,0x8e,0xf0,0xcb,0xf5,0xde,0x60,0xcc, - 0x96,0xb5,0x60,0xcd,0xc3,0x4b,0x60,0xce,0xa2,0x18,0xe0,0xcf,0xa3,0x2d,0x60,0xd0, - 0x8d,0xd8,0x60,0xd1,0x83,0xf,0x60,0xd2,0x60,0x99,0x70,0xd3,0x62,0xf1,0x60,0xd4, - 0x41,0xbe,0xe0,0xd9,0x1e,0x46,0xe0,0xd9,0xe6,0xb8,0xf0,0x8,0xd,0xcd,0xe0,0x8, - 0xf4,0x92,0x70,0x9,0xf6,0xea,0x60,0xa,0xd4,0x74,0x70,0xb,0xbb,0x1c,0xe0,0xc, - 0xab,0x1b,0xf0,0xd,0xa4,0x39,0x60,0xe,0x8a,0xfd,0xf0,0xf,0x85,0x6c,0xe0,0x10, - 0x74,0x1a,0x70,0x11,0x64,0x27,0x90,0x12,0x54,0x18,0x90,0x13,0x4d,0x44,0x10,0x14, - 0x33,0xfa,0x90,0x15,0x23,0xeb,0x90,0x16,0x13,0xdc,0x90,0x17,0x3,0xcd,0x90,0x17, - 0xf3,0xbe,0x90,0x18,0xe3,0xaf,0x90,0x19,0xd3,0xa0,0x90,0x1a,0xc3,0x91,0x90,0x1b, - 0xbc,0xbd,0x10,0x1c,0xac,0xae,0x10,0x1d,0x9c,0x9f,0x10,0x1e,0x8c,0x90,0x10,0x1f, - 0x7c,0x81,0x10,0x20,0x6c,0x72,0x10,0x21,0x5c,0x63,0x10,0x22,0x4c,0x54,0x10,0x23, - 0x3c,0x45,0x10,0x24,0x2c,0x36,0x10,0x25,0x1c,0x27,0x10,0x26,0xc,0x18,0x10,0x27, - 0x5,0x43,0x90,0x27,0xf5,0x34,0x90,0x28,0xe5,0x25,0x90,0x29,0xd5,0x16,0x90,0x2a, - 0xc5,0x7,0x90,0x2b,0xb4,0xf8,0x90,0x2c,0xa4,0xe9,0x90,0x2d,0x94,0xda,0x90,0x2e, - 0x84,0xcb,0x90,0x2f,0x74,0xbc,0x90,0x30,0x64,0xad,0x90,0x31,0x5d,0xd9,0x10,0x32, - 0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34,0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36, - 0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39, - 0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b,0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d, - 0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f,0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41, - 0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43,0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45, - 0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49, - 0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c, - 0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e,0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50, - 0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54, - 0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56,0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58, - 0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59,0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b, - 0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d,0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f, - 0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61,0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63, - 0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65,0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67, - 0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68,0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a, - 0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c,0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e, - 0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70,0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72, - 0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74,0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76, - 0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79, - 0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d, - 0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x4,0x3,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x7,0x8,0x7,0x8,0x7,0x8,0x7, - 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, - 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, - 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, - 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, - 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, - 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, - 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0xff, - 0xff,0xfc,0x8c,0x0,0x0,0x0,0x0,0xe,0x10,0x1,0x4,0x0,0x0,0x0,0x0,0x0, - 0x9,0x0,0x0,0x1c,0x20,0x1,0xd,0x0,0x0,0xe,0x10,0x1,0x4,0x0,0x0,0x1c, - 0x20,0x1,0x12,0x0,0x0,0xe,0x10,0x0,0x17,0x0,0x0,0x1c,0x20,0x1,0x12,0x0, - 0x0,0xe,0x10,0x0,0x17,0x4c,0x4d,0x54,0x0,0x57,0x45,0x53,0x54,0x0,0x57,0x45, - 0x54,0x0,0x57,0x45,0x4d,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x43,0x45,0x54,0x0, - 0x0,0x1,0x1,0x1,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x1,0x1,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x9,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0xa5,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x1b,0xf8,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x7e,0x36,0xb8,0x74,0xff,0xff, - 0xff,0xff,0x9c,0xf3,0xf0,0x70,0xff,0xff,0xff,0xff,0x9d,0xbe,0xf7,0x70,0xff,0xff, - 0xff,0xff,0x9e,0xba,0xc5,0xf0,0xff,0xff,0xff,0xff,0x9f,0xa0,0x2a,0xf0,0xff,0xff, - 0xff,0xff,0xa0,0x8e,0xca,0x70,0xff,0xff,0xff,0xff,0xa1,0x81,0x5e,0x70,0xff,0xff, - 0xff,0xff,0xaa,0x5,0xef,0x70,0xff,0xff,0xff,0xff,0xaa,0xe7,0x5f,0xf0,0xff,0xff, - 0xff,0xff,0xad,0xc9,0xa7,0xf0,0xff,0xff,0xff,0xff,0xae,0xa7,0x23,0xf0,0xff,0xff, - 0xff,0xff,0xaf,0xa0,0x4f,0x70,0xff,0xff,0xff,0xff,0xb0,0x87,0x5,0xf0,0xff,0xff, - 0xff,0xff,0xb1,0x89,0x6b,0xf0,0xff,0xff,0xff,0xff,0xb2,0x70,0x22,0x70,0xff,0xff, - 0xff,0xff,0xb3,0x72,0x88,0x70,0xff,0xff,0xff,0xff,0xb4,0x50,0x4,0x70,0xff,0xff, - 0xff,0xff,0xc2,0xa8,0xf7,0x70,0xff,0xff,0xff,0xff,0xc3,0x58,0x4e,0xf0,0xff,0xff, - 0xff,0xff,0xc4,0x39,0xbf,0x70,0xff,0xff,0xff,0xff,0xc5,0x38,0x30,0xf0,0xff,0xff, - 0xff,0xff,0xc6,0x3a,0x96,0xf0,0xff,0xff,0xff,0xff,0xc7,0x21,0x4d,0x70,0xff,0xff, - 0xff,0xff,0xc7,0xf5,0x8e,0xf0,0xff,0xff,0xff,0xff,0xcb,0xf5,0xde,0x60,0xff,0xff, - 0xff,0xff,0xcc,0x96,0xb5,0x60,0xff,0xff,0xff,0xff,0xcd,0xc3,0x4b,0x60,0xff,0xff, - 0xff,0xff,0xce,0xa2,0x18,0xe0,0xff,0xff,0xff,0xff,0xcf,0xa3,0x2d,0x60,0xff,0xff, - 0xff,0xff,0xd0,0x8d,0xd8,0x60,0xff,0xff,0xff,0xff,0xd1,0x83,0xf,0x60,0xff,0xff, - 0xff,0xff,0xd2,0x60,0x99,0x70,0xff,0xff,0xff,0xff,0xd3,0x62,0xf1,0x60,0xff,0xff, - 0xff,0xff,0xd4,0x41,0xbe,0xe0,0xff,0xff,0xff,0xff,0xd9,0x1e,0x46,0xe0,0xff,0xff, - 0xff,0xff,0xd9,0xe6,0xb8,0xf0,0x0,0x0,0x0,0x0,0x8,0xd,0xcd,0xe0,0x0,0x0, - 0x0,0x0,0x8,0xf4,0x92,0x70,0x0,0x0,0x0,0x0,0x9,0xf6,0xea,0x60,0x0,0x0, - 0x0,0x0,0xa,0xd4,0x74,0x70,0x0,0x0,0x0,0x0,0xb,0xbb,0x1c,0xe0,0x0,0x0, - 0x0,0x0,0xc,0xab,0x1b,0xf0,0x0,0x0,0x0,0x0,0xd,0xa4,0x39,0x60,0x0,0x0, - 0x0,0x0,0xe,0x8a,0xfd,0xf0,0x0,0x0,0x0,0x0,0xf,0x85,0x6c,0xe0,0x0,0x0, - 0x0,0x0,0x10,0x74,0x1a,0x70,0x0,0x0,0x0,0x0,0x11,0x64,0x27,0x90,0x0,0x0, - 0x0,0x0,0x12,0x54,0x18,0x90,0x0,0x0,0x0,0x0,0x13,0x4d,0x44,0x10,0x0,0x0, - 0x0,0x0,0x14,0x33,0xfa,0x90,0x0,0x0,0x0,0x0,0x15,0x23,0xeb,0x90,0x0,0x0, - 0x0,0x0,0x16,0x13,0xdc,0x90,0x0,0x0,0x0,0x0,0x17,0x3,0xcd,0x90,0x0,0x0, - 0x0,0x0,0x17,0xf3,0xbe,0x90,0x0,0x0,0x0,0x0,0x18,0xe3,0xaf,0x90,0x0,0x0, - 0x0,0x0,0x19,0xd3,0xa0,0x90,0x0,0x0,0x0,0x0,0x1a,0xc3,0x91,0x90,0x0,0x0, - 0x0,0x0,0x1b,0xbc,0xbd,0x10,0x0,0x0,0x0,0x0,0x1c,0xac,0xae,0x10,0x0,0x0, - 0x0,0x0,0x1d,0x9c,0x9f,0x10,0x0,0x0,0x0,0x0,0x1e,0x8c,0x90,0x10,0x0,0x0, - 0x0,0x0,0x1f,0x7c,0x81,0x10,0x0,0x0,0x0,0x0,0x20,0x6c,0x72,0x10,0x0,0x0, - 0x0,0x0,0x21,0x5c,0x63,0x10,0x0,0x0,0x0,0x0,0x22,0x4c,0x54,0x10,0x0,0x0, - 0x0,0x0,0x23,0x3c,0x45,0x10,0x0,0x0,0x0,0x0,0x24,0x2c,0x36,0x10,0x0,0x0, - 0x0,0x0,0x25,0x1c,0x27,0x10,0x0,0x0,0x0,0x0,0x26,0xc,0x18,0x10,0x0,0x0, - 0x0,0x0,0x27,0x5,0x43,0x90,0x0,0x0,0x0,0x0,0x27,0xf5,0x34,0x90,0x0,0x0, - 0x0,0x0,0x28,0xe5,0x25,0x90,0x0,0x0,0x0,0x0,0x29,0xd5,0x16,0x90,0x0,0x0, - 0x0,0x0,0x2a,0xc5,0x7,0x90,0x0,0x0,0x0,0x0,0x2b,0xb4,0xf8,0x90,0x0,0x0, - 0x0,0x0,0x2c,0xa4,0xe9,0x90,0x0,0x0,0x0,0x0,0x2d,0x94,0xda,0x90,0x0,0x0, - 0x0,0x0,0x2e,0x84,0xcb,0x90,0x0,0x0,0x0,0x0,0x2f,0x74,0xbc,0x90,0x0,0x0, - 0x0,0x0,0x30,0x64,0xad,0x90,0x0,0x0,0x0,0x0,0x31,0x5d,0xd9,0x10,0x0,0x0, - 0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d,0xbb,0x10,0x0,0x0, - 0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d,0x9d,0x10,0x0,0x0, - 0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd,0x7f,0x10,0x0,0x0, - 0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd,0x61,0x10,0x0,0x0, - 0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd,0x43,0x10,0x0,0x0, - 0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f,0x90,0x0,0x0, - 0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86,0x41,0x90,0x0,0x0, - 0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66,0x23,0x90,0x0,0x0, - 0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46,0x5,0x90,0x0,0x0, - 0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25,0xe7,0x90,0x0,0x0, - 0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5,0xc9,0x90,0x0,0x0, - 0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee,0xe6,0x10,0x0,0x0, - 0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce,0xc8,0x10,0x0,0x0, - 0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae,0xaa,0x10,0x0,0x0, - 0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c,0x10,0x0,0x0, - 0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e,0x10,0x0,0x0, - 0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57,0x8a,0x90,0x0,0x0, - 0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37,0x6c,0x90,0x0,0x0, - 0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17,0x4e,0x90,0x0,0x0, - 0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7,0x30,0x90,0x0,0x0, - 0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7,0x12,0x90,0x0,0x0, - 0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4,0x90,0x0,0x0, - 0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0,0x11,0x10,0x0,0x0, - 0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3,0x10,0x0,0x0, - 0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f,0xd5,0x10,0x0,0x0, - 0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f,0xb7,0x10,0x0,0x0, - 0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f,0x99,0x10,0x0,0x0, - 0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8,0xb5,0x90,0x0,0x0, - 0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8,0x97,0x90,0x0,0x0, - 0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8,0x79,0x90,0x0,0x0, - 0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b,0x90,0x0,0x0, - 0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88,0x3d,0x90,0x0,0x0, - 0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68,0x1f,0x90,0x0,0x0, - 0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51,0x3c,0x10,0x0,0x0, - 0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31,0x1e,0x10,0x0,0x0, - 0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11,0x0,0x10,0x0,0x0, - 0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0,0xe2,0x10,0x0,0x0, - 0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0,0xc4,0x10,0x0,0x0, - 0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6,0x10,0x0,0x0, - 0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99,0xc2,0x90,0x0,0x0, - 0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79,0xa4,0x90,0x0,0x0, - 0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x3, - 0x1,0x3,0x1,0x3,0x1,0x3,0x4,0x3,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, - 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, - 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, - 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, - 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, - 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, - 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, - 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0xff,0xff,0xfc,0x8c,0x0, - 0x0,0x0,0x0,0xe,0x10,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x1c, - 0x20,0x1,0xd,0x0,0x0,0xe,0x10,0x1,0x4,0x0,0x0,0x1c,0x20,0x1,0x12,0x0, - 0x0,0xe,0x10,0x0,0x17,0x0,0x0,0x1c,0x20,0x1,0x12,0x0,0x0,0xe,0x10,0x0, - 0x17,0x4c,0x4d,0x54,0x0,0x57,0x45,0x53,0x54,0x0,0x57,0x45,0x54,0x0,0x57,0x45, - 0x4d,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x43,0x45,0x54,0x0,0x0,0x1,0x1,0x1, - 0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0xa,0x43, - 0x45,0x54,0x2d,0x31,0x43,0x45,0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2c, - 0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30,0x2f,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Simferopol - 0x0,0x0,0x5,0xd2, + 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0xe7, + 0xb1,0x58,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2a,0x30,0x0,0x4,0x2d,0x30,0x30,0x0,0x2b,0x30,0x33,0x0,0x0,0x0, + 0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xe7,0xb1,0x58,0x0,0x0,0x0, + 0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x2a,0x30,0x0,0x4,0x2d,0x30,0x30,0x0,0x2b,0x30,0x33,0x0,0x0,0x0,0x0, + 0x0,0xa,0x3c,0x2b,0x30,0x33,0x3e,0x2d,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Guatemala + 0x0,0x0,0x1,0x32, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x4d,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x22,0x80,0x0,0x0,0x0,0xaa, - 0x19,0xa4,0x20,0xb5,0xa4,0x19,0x60,0xcb,0x4,0x8d,0xd0,0xcc,0xe7,0x4b,0x10,0xcd, - 0xa9,0x17,0x90,0xce,0xa2,0x43,0x10,0xcf,0x92,0x34,0x10,0xcf,0x9f,0x38,0xe0,0x15, - 0x27,0xa7,0xd0,0x16,0x18,0xdc,0x40,0x17,0x8,0xdb,0x50,0x17,0xfa,0xf,0xc0,0x18, - 0xea,0xe,0xd0,0x19,0xdb,0x43,0x40,0x1a,0xcc,0x93,0xd0,0x1b,0xbc,0xa0,0xf0,0x1c, - 0xac,0x91,0xf0,0x1d,0x9c,0x82,0xf0,0x1e,0x8c,0x73,0xf0,0x1f,0x7c,0x64,0xf0,0x20, - 0x6c,0x55,0xf0,0x21,0x5c,0x46,0xf0,0x22,0x4c,0x37,0xf0,0x23,0x3c,0x28,0xf0,0x24, - 0x2c,0x19,0xf0,0x25,0x1c,0xa,0xf0,0x25,0x9e,0x73,0x50,0x26,0x8d,0x2e,0xf0,0x29, - 0xd4,0xec,0x60,0x2a,0xc4,0xcf,0x50,0x2b,0xb4,0xce,0x60,0x2c,0xa4,0xb1,0x50,0x2d, - 0x94,0xb0,0x60,0x2d,0xc2,0xc6,0xd0,0x2e,0x84,0x85,0x40,0x2f,0x74,0x84,0x50,0x30, - 0x64,0x67,0x40,0x31,0x5d,0xa0,0xd0,0x32,0x72,0xa6,0x0,0x32,0xc9,0x7e,0xd0,0x33, - 0x3d,0xbb,0x10,0x34,0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36, - 0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a, - 0xbd,0x43,0x10,0x3b,0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e, - 0x86,0x41,0x90,0x3f,0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42, - 0x46,0x5,0x90,0x43,0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46, - 0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49, - 0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d, - 0x8e,0x8c,0x10,0x4e,0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51, - 0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53,0x37,0x5e,0x80,0x54,0x4c,0x1d,0x60,0x1, - 0x2,0x3,0x6,0x4,0x5,0x4,0x5,0x3,0x7,0x3,0x7,0x3,0x7,0x3,0x7,0x8, - 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x3,0x2,0xa,0x2,0xa,0x2, - 0xa,0x7,0x3,0x7,0x3,0x9,0x8,0x3,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, - 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, - 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xd,0x8,0x0,0x0,0x1f,0xf8, - 0x0,0x0,0x0,0x0,0x1f,0xe0,0x0,0x4,0x0,0x0,0x1c,0x20,0x0,0x8,0x0,0x0, - 0x2a,0x30,0x0,0xc,0x0,0x0,0xe,0x10,0x0,0x10,0x0,0x0,0x1c,0x20,0x1,0x14, - 0x0,0x0,0x1c,0x20,0x1,0x14,0x0,0x0,0x38,0x40,0x1,0x19,0x0,0x0,0x2a,0x30, - 0x0,0xc,0x0,0x0,0x38,0x40,0x1,0x19,0x0,0x0,0x2a,0x30,0x1,0x1d,0x0,0x0, - 0x2a,0x30,0x1,0x1d,0x0,0x0,0x1c,0x20,0x0,0x8,0x0,0x0,0x38,0x40,0x0,0xc, - 0x0,0x0,0x2a,0x30,0x0,0xc,0x4c,0x4d,0x54,0x0,0x53,0x4d,0x54,0x0,0x45,0x45, - 0x54,0x0,0x4d,0x53,0x4b,0x0,0x43,0x45,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x4d, - 0x53,0x44,0x0,0x45,0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0, - 0x1,0x1,0x0,0x1,0x1,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x1,0x1,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x0,0x0, - 0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4e,0x0,0x0,0x0,0xf,0x0,0x0, - 0x0,0x22,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x56,0xb6, - 0xc4,0x8,0xff,0xff,0xff,0xff,0xaa,0x19,0xa4,0x20,0xff,0xff,0xff,0xff,0xb5,0xa4, - 0x19,0x60,0xff,0xff,0xff,0xff,0xcb,0x4,0x8d,0xd0,0xff,0xff,0xff,0xff,0xcc,0xe7, - 0x4b,0x10,0xff,0xff,0xff,0xff,0xcd,0xa9,0x17,0x90,0xff,0xff,0xff,0xff,0xce,0xa2, - 0x43,0x10,0xff,0xff,0xff,0xff,0xcf,0x92,0x34,0x10,0xff,0xff,0xff,0xff,0xcf,0x9f, - 0x38,0xe0,0x0,0x0,0x0,0x0,0x15,0x27,0xa7,0xd0,0x0,0x0,0x0,0x0,0x16,0x18, - 0xdc,0x40,0x0,0x0,0x0,0x0,0x17,0x8,0xdb,0x50,0x0,0x0,0x0,0x0,0x17,0xfa, - 0xf,0xc0,0x0,0x0,0x0,0x0,0x18,0xea,0xe,0xd0,0x0,0x0,0x0,0x0,0x19,0xdb, - 0x43,0x40,0x0,0x0,0x0,0x0,0x1a,0xcc,0x93,0xd0,0x0,0x0,0x0,0x0,0x1b,0xbc, - 0xa0,0xf0,0x0,0x0,0x0,0x0,0x1c,0xac,0x91,0xf0,0x0,0x0,0x0,0x0,0x1d,0x9c, - 0x82,0xf0,0x0,0x0,0x0,0x0,0x1e,0x8c,0x73,0xf0,0x0,0x0,0x0,0x0,0x1f,0x7c, - 0x64,0xf0,0x0,0x0,0x0,0x0,0x20,0x6c,0x55,0xf0,0x0,0x0,0x0,0x0,0x21,0x5c, - 0x46,0xf0,0x0,0x0,0x0,0x0,0x22,0x4c,0x37,0xf0,0x0,0x0,0x0,0x0,0x23,0x3c, - 0x28,0xf0,0x0,0x0,0x0,0x0,0x24,0x2c,0x19,0xf0,0x0,0x0,0x0,0x0,0x25,0x1c, - 0xa,0xf0,0x0,0x0,0x0,0x0,0x25,0x9e,0x73,0x50,0x0,0x0,0x0,0x0,0x26,0x8d, - 0x2e,0xf0,0x0,0x0,0x0,0x0,0x29,0xd4,0xec,0x60,0x0,0x0,0x0,0x0,0x2a,0xc4, - 0xcf,0x50,0x0,0x0,0x0,0x0,0x2b,0xb4,0xce,0x60,0x0,0x0,0x0,0x0,0x2c,0xa4, - 0xb1,0x50,0x0,0x0,0x0,0x0,0x2d,0x94,0xb0,0x60,0x0,0x0,0x0,0x0,0x2d,0xc2, - 0xc6,0xd0,0x0,0x0,0x0,0x0,0x2e,0x84,0x85,0x40,0x0,0x0,0x0,0x0,0x2f,0x74, - 0x84,0x50,0x0,0x0,0x0,0x0,0x30,0x64,0x67,0x40,0x0,0x0,0x0,0x0,0x31,0x5d, - 0xa0,0xd0,0x0,0x0,0x0,0x0,0x32,0x72,0xa6,0x0,0x0,0x0,0x0,0x0,0x32,0xc9, - 0x7e,0xd0,0x0,0x0,0x0,0x0,0x33,0x3d,0xbb,0x10,0x0,0x0,0x0,0x0,0x34,0x52, - 0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d,0x9d,0x10,0x0,0x0,0x0,0x0,0x36,0x32, - 0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd,0x7f,0x10,0x0,0x0,0x0,0x0,0x38,0x1b, - 0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd,0x61,0x10,0x0,0x0,0x0,0x0,0x39,0xfb, - 0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd,0x43,0x10,0x0,0x0,0x0,0x0,0x3b,0xdb, - 0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb, - 0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86,0x41,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b, - 0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66,0x23,0x90,0x0,0x0,0x0,0x0,0x41,0x84, - 0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46,0x5,0x90,0x0,0x0,0x0,0x0,0x43,0x64, - 0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25,0xe7,0x90,0x0,0x0,0x0,0x0,0x45,0x43, - 0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5,0xc9,0x90,0x0,0x0,0x0,0x0,0x47,0x23, - 0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee,0xe6,0x10,0x0,0x0,0x0,0x0,0x49,0x3, - 0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce,0xc8,0x10,0x0,0x0,0x0,0x0,0x4a,0xe3, - 0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae,0xaa,0x10,0x0,0x0,0x0,0x0,0x4c,0xcc, - 0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c,0x10,0x0,0x0,0x0,0x0,0x4e,0xac, - 0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e,0x10,0x0,0x0,0x0,0x0,0x50,0x8c, - 0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57,0x8a,0x90,0x0,0x0,0x0,0x0,0x52,0x6c, - 0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37,0x5e,0x80,0x0,0x0,0x0,0x0,0x54,0x4c, - 0x1d,0x60,0x0,0x1,0x2,0x3,0x6,0x4,0x5,0x4,0x5,0x3,0x7,0x3,0x7,0x3, - 0x7,0x3,0x7,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x3,0x2, - 0xa,0x2,0xa,0x2,0xa,0x7,0x3,0x7,0x3,0x9,0x8,0x3,0xb,0xc,0xb,0xc, - 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, - 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xd,0x8, - 0x0,0x0,0x1f,0xf8,0x0,0x0,0x0,0x0,0x1f,0xe0,0x0,0x4,0x0,0x0,0x1c,0x20, - 0x0,0x8,0x0,0x0,0x2a,0x30,0x0,0xc,0x0,0x0,0xe,0x10,0x0,0x10,0x0,0x0, - 0x1c,0x20,0x1,0x14,0x0,0x0,0x1c,0x20,0x1,0x14,0x0,0x0,0x38,0x40,0x1,0x19, - 0x0,0x0,0x2a,0x30,0x0,0xc,0x0,0x0,0x38,0x40,0x1,0x19,0x0,0x0,0x2a,0x30, - 0x1,0x1d,0x0,0x0,0x2a,0x30,0x1,0x1d,0x0,0x0,0x1c,0x20,0x0,0x8,0x0,0x0, - 0x38,0x40,0x0,0xc,0x0,0x0,0x2a,0x30,0x0,0xc,0x4c,0x4d,0x54,0x0,0x53,0x4d, - 0x54,0x0,0x45,0x45,0x54,0x0,0x4d,0x53,0x4b,0x0,0x43,0x45,0x54,0x0,0x43,0x45, - 0x53,0x54,0x0,0x4d,0x53,0x44,0x0,0x45,0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x0, - 0x1,0x1,0x0,0x0,0x1,0x1,0x0,0x1,0x1,0x0,0x1,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0xa,0x4d,0x53,0x4b,0x2d,0x33, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xa,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0x9f, + 0x9d,0xea,0xdc,0x7,0x55,0xac,0x60,0x7,0xcd,0x96,0xd0,0x19,0x2c,0x78,0x60,0x19, + 0xcf,0xe4,0x50,0x27,0xea,0xee,0xe0,0x28,0xc8,0x5c,0xd0,0x44,0x54,0x52,0x60,0x45, + 0x1f,0x4b,0x50,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0xab, + 0x24,0x0,0x0,0xff,0xff,0xb9,0xb0,0x1,0x4,0xff,0xff,0xab,0xa0,0x0,0x8,0x4c, + 0x4d,0x54,0x0,0x43,0x44,0x54,0x0,0x43,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0xf8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x9f,0x9d,0xea,0xdc,0x0,0x0,0x0, + 0x0,0x7,0x55,0xac,0x60,0x0,0x0,0x0,0x0,0x7,0xcd,0x96,0xd0,0x0,0x0,0x0, + 0x0,0x19,0x2c,0x78,0x60,0x0,0x0,0x0,0x0,0x19,0xcf,0xe4,0x50,0x0,0x0,0x0, + 0x0,0x27,0xea,0xee,0xe0,0x0,0x0,0x0,0x0,0x28,0xc8,0x5c,0xd0,0x0,0x0,0x0, + 0x0,0x44,0x54,0x52,0x60,0x0,0x0,0x0,0x0,0x45,0x1f,0x4b,0x50,0x0,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0xab,0x24,0x0,0x0,0xff,0xff,0xb9, + 0xb0,0x1,0x4,0xff,0xff,0xab,0xa0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x43,0x44,0x54, + 0x0,0x43,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x43,0x53,0x54,0x36, 0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Minsk - 0x0,0x0,0x5,0x5a, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x46,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x26,0x80,0x0,0x0,0x0,0xaa, - 0x19,0xaa,0x38,0xb5,0xa4,0x19,0x60,0xca,0x5e,0x70,0xd0,0xcc,0xe7,0x4b,0x10,0xcd, - 0xa9,0x17,0x90,0xce,0xa2,0x43,0x10,0xcf,0x92,0x34,0x10,0xd0,0xa,0x2,0x60,0x15, - 0x27,0xa7,0xd0,0x16,0x18,0xdc,0x40,0x17,0x8,0xdb,0x50,0x17,0xfa,0xf,0xc0,0x18, - 0xea,0xe,0xd0,0x19,0xdb,0x43,0x40,0x1a,0xcc,0x93,0xd0,0x1b,0xbc,0xa0,0xf0,0x1c, - 0xac,0x91,0xf0,0x1d,0x9c,0x82,0xf0,0x1e,0x8c,0x73,0xf0,0x1f,0x7c,0x64,0xf0,0x20, - 0x6c,0x55,0xf0,0x21,0x5c,0x46,0xf0,0x22,0x4c,0x37,0xf0,0x23,0x3c,0x28,0xf0,0x24, - 0x2c,0x19,0xf0,0x25,0x1c,0xa,0xf0,0x25,0x9e,0x73,0x50,0x27,0xf5,0x18,0x70,0x28, - 0xe5,0x17,0x80,0x29,0xd5,0x8,0x80,0x2a,0xc4,0xf9,0x80,0x2b,0xb4,0xea,0x80,0x2c, - 0xa4,0xdb,0x80,0x2d,0x94,0xcc,0x80,0x2e,0x84,0xbd,0x80,0x2f,0x74,0xae,0x80,0x30, - 0x64,0x9f,0x80,0x31,0x5d,0xcb,0x0,0x32,0x72,0xa6,0x0,0x33,0x3d,0xad,0x0,0x34, - 0x52,0x88,0x0,0x35,0x1d,0x8f,0x0,0x36,0x32,0x6a,0x0,0x36,0xfd,0x71,0x0,0x38, - 0x1b,0x86,0x80,0x38,0xdd,0x53,0x0,0x39,0xfb,0x68,0x80,0x3a,0xbd,0x35,0x0,0x3b, - 0xdb,0x4a,0x80,0x3c,0xa6,0x51,0x80,0x3d,0xbb,0x2c,0x80,0x3e,0x86,0x33,0x80,0x3f, - 0x9b,0xe,0x80,0x40,0x66,0x15,0x80,0x41,0x84,0x2b,0x0,0x42,0x45,0xf7,0x80,0x43, - 0x64,0xd,0x0,0x44,0x25,0xd9,0x80,0x45,0x43,0xef,0x0,0x46,0x5,0xbb,0x80,0x47, - 0x23,0xd1,0x0,0x47,0xee,0xd8,0x0,0x49,0x3,0xb3,0x0,0x49,0xce,0xba,0x0,0x4a, - 0xe3,0x95,0x0,0x4b,0xae,0x9c,0x0,0x4c,0xcc,0xb1,0x80,0x4d,0x8e,0x7e,0x0,0x7f, - 0xff,0xff,0xff,0x1,0x2,0x3,0x6,0x4,0x5,0x4,0x5,0x3,0x7,0x3,0x7,0x3, - 0x7,0x3,0x7,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x3,0xa, - 0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa, - 0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa, - 0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xc,0xc,0x0,0x0,0x19,0xd8,0x0,0x0,0x0, - 0x0,0x19,0xc8,0x0,0x4,0x0,0x0,0x1c,0x20,0x0,0x8,0x0,0x0,0x2a,0x30,0x0, - 0xc,0x0,0x0,0xe,0x10,0x0,0x10,0x0,0x0,0x1c,0x20,0x1,0x14,0x0,0x0,0x1c, - 0x20,0x1,0x14,0x0,0x0,0x38,0x40,0x1,0x19,0x0,0x0,0x2a,0x30,0x0,0xc,0x0, - 0x0,0x38,0x40,0x1,0x19,0x0,0x0,0x2a,0x30,0x1,0x1d,0x0,0x0,0x1c,0x20,0x0, - 0x8,0x0,0x0,0x2a,0x30,0x0,0x22,0x4c,0x4d,0x54,0x0,0x4d,0x4d,0x54,0x0,0x45, - 0x45,0x54,0x0,0x4d,0x53,0x4b,0x0,0x43,0x45,0x54,0x0,0x43,0x45,0x53,0x54,0x0, - 0x4d,0x53,0x44,0x0,0x45,0x45,0x53,0x54,0x0,0x2b,0x30,0x33,0x0,0x0,0x0,0x0, - 0x0,0x1,0x1,0x0,0x0,0x1,0x1,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd,0x0, - 0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0x0,0x0,0x0,0xd,0x0, - 0x0,0x0,0x26,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x56, - 0xb6,0xca,0x28,0xff,0xff,0xff,0xff,0xaa,0x19,0xaa,0x38,0xff,0xff,0xff,0xff,0xb5, - 0xa4,0x19,0x60,0xff,0xff,0xff,0xff,0xca,0x5e,0x70,0xd0,0xff,0xff,0xff,0xff,0xcc, - 0xe7,0x4b,0x10,0xff,0xff,0xff,0xff,0xcd,0xa9,0x17,0x90,0xff,0xff,0xff,0xff,0xce, - 0xa2,0x43,0x10,0xff,0xff,0xff,0xff,0xcf,0x92,0x34,0x10,0xff,0xff,0xff,0xff,0xd0, - 0xa,0x2,0x60,0x0,0x0,0x0,0x0,0x15,0x27,0xa7,0xd0,0x0,0x0,0x0,0x0,0x16, - 0x18,0xdc,0x40,0x0,0x0,0x0,0x0,0x17,0x8,0xdb,0x50,0x0,0x0,0x0,0x0,0x17, - 0xfa,0xf,0xc0,0x0,0x0,0x0,0x0,0x18,0xea,0xe,0xd0,0x0,0x0,0x0,0x0,0x19, - 0xdb,0x43,0x40,0x0,0x0,0x0,0x0,0x1a,0xcc,0x93,0xd0,0x0,0x0,0x0,0x0,0x1b, - 0xbc,0xa0,0xf0,0x0,0x0,0x0,0x0,0x1c,0xac,0x91,0xf0,0x0,0x0,0x0,0x0,0x1d, - 0x9c,0x82,0xf0,0x0,0x0,0x0,0x0,0x1e,0x8c,0x73,0xf0,0x0,0x0,0x0,0x0,0x1f, - 0x7c,0x64,0xf0,0x0,0x0,0x0,0x0,0x20,0x6c,0x55,0xf0,0x0,0x0,0x0,0x0,0x21, - 0x5c,0x46,0xf0,0x0,0x0,0x0,0x0,0x22,0x4c,0x37,0xf0,0x0,0x0,0x0,0x0,0x23, - 0x3c,0x28,0xf0,0x0,0x0,0x0,0x0,0x24,0x2c,0x19,0xf0,0x0,0x0,0x0,0x0,0x25, - 0x1c,0xa,0xf0,0x0,0x0,0x0,0x0,0x25,0x9e,0x73,0x50,0x0,0x0,0x0,0x0,0x27, - 0xf5,0x18,0x70,0x0,0x0,0x0,0x0,0x28,0xe5,0x17,0x80,0x0,0x0,0x0,0x0,0x29, - 0xd5,0x8,0x80,0x0,0x0,0x0,0x0,0x2a,0xc4,0xf9,0x80,0x0,0x0,0x0,0x0,0x2b, - 0xb4,0xea,0x80,0x0,0x0,0x0,0x0,0x2c,0xa4,0xdb,0x80,0x0,0x0,0x0,0x0,0x2d, - 0x94,0xcc,0x80,0x0,0x0,0x0,0x0,0x2e,0x84,0xbd,0x80,0x0,0x0,0x0,0x0,0x2f, - 0x74,0xae,0x80,0x0,0x0,0x0,0x0,0x30,0x64,0x9f,0x80,0x0,0x0,0x0,0x0,0x31, - 0x5d,0xcb,0x0,0x0,0x0,0x0,0x0,0x32,0x72,0xa6,0x0,0x0,0x0,0x0,0x0,0x33, - 0x3d,0xad,0x0,0x0,0x0,0x0,0x0,0x34,0x52,0x88,0x0,0x0,0x0,0x0,0x0,0x35, - 0x1d,0x8f,0x0,0x0,0x0,0x0,0x0,0x36,0x32,0x6a,0x0,0x0,0x0,0x0,0x0,0x36, - 0xfd,0x71,0x0,0x0,0x0,0x0,0x0,0x38,0x1b,0x86,0x80,0x0,0x0,0x0,0x0,0x38, - 0xdd,0x53,0x0,0x0,0x0,0x0,0x0,0x39,0xfb,0x68,0x80,0x0,0x0,0x0,0x0,0x3a, - 0xbd,0x35,0x0,0x0,0x0,0x0,0x0,0x3b,0xdb,0x4a,0x80,0x0,0x0,0x0,0x0,0x3c, - 0xa6,0x51,0x80,0x0,0x0,0x0,0x0,0x3d,0xbb,0x2c,0x80,0x0,0x0,0x0,0x0,0x3e, - 0x86,0x33,0x80,0x0,0x0,0x0,0x0,0x3f,0x9b,0xe,0x80,0x0,0x0,0x0,0x0,0x40, - 0x66,0x15,0x80,0x0,0x0,0x0,0x0,0x41,0x84,0x2b,0x0,0x0,0x0,0x0,0x0,0x42, - 0x45,0xf7,0x80,0x0,0x0,0x0,0x0,0x43,0x64,0xd,0x0,0x0,0x0,0x0,0x0,0x44, - 0x25,0xd9,0x80,0x0,0x0,0x0,0x0,0x45,0x43,0xef,0x0,0x0,0x0,0x0,0x0,0x46, - 0x5,0xbb,0x80,0x0,0x0,0x0,0x0,0x47,0x23,0xd1,0x0,0x0,0x0,0x0,0x0,0x47, - 0xee,0xd8,0x0,0x0,0x0,0x0,0x0,0x49,0x3,0xb3,0x0,0x0,0x0,0x0,0x0,0x49, - 0xce,0xba,0x0,0x0,0x0,0x0,0x0,0x4a,0xe3,0x95,0x0,0x0,0x0,0x0,0x0,0x4b, - 0xae,0x9c,0x0,0x0,0x0,0x0,0x0,0x4c,0xcc,0xb1,0x80,0x0,0x0,0x0,0x0,0x4d, - 0x8e,0x7e,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x2,0x3,0x6, - 0x4,0x5,0x4,0x5,0x3,0x7,0x3,0x7,0x3,0x7,0x3,0x7,0x8,0x9,0x8,0x9, - 0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x3,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb, - 0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb, - 0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb, - 0xc,0xc,0x0,0x0,0x19,0xd8,0x0,0x0,0x0,0x0,0x19,0xc8,0x0,0x4,0x0,0x0, - 0x1c,0x20,0x0,0x8,0x0,0x0,0x2a,0x30,0x0,0xc,0x0,0x0,0xe,0x10,0x0,0x10, - 0x0,0x0,0x1c,0x20,0x1,0x14,0x0,0x0,0x1c,0x20,0x1,0x14,0x0,0x0,0x38,0x40, - 0x1,0x19,0x0,0x0,0x2a,0x30,0x0,0xc,0x0,0x0,0x38,0x40,0x1,0x19,0x0,0x0, - 0x2a,0x30,0x1,0x1d,0x0,0x0,0x1c,0x20,0x0,0x8,0x0,0x0,0x2a,0x30,0x0,0x22, - 0x4c,0x4d,0x54,0x0,0x4d,0x4d,0x54,0x0,0x45,0x45,0x54,0x0,0x4d,0x53,0x4b,0x0, - 0x43,0x45,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x4d,0x53,0x44,0x0,0x45,0x45,0x53, - 0x54,0x0,0x2b,0x30,0x33,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x1,0x1, - 0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0xa,0x3c,0x2b,0x30,0x33,0x3e,0x2d,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Luxembourg - 0x0,0x0,0xb,0x9e, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Santo_Domingo + 0x0,0x0,0x1,0xeb, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xb9,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x16,0x80,0x0,0x0,0x0,0x84, - 0xa2,0xad,0xbc,0x9b,0x1e,0x8c,0x60,0x9b,0xd5,0xda,0xf0,0x9c,0xea,0xa7,0xe0,0x9d, - 0xa4,0x99,0x70,0x9e,0xb9,0x90,0x90,0x9f,0x84,0x97,0x90,0x9f,0xe0,0xc4,0x70,0xa0, - 0x60,0xa5,0xf0,0xa1,0x7e,0xe5,0xa0,0xa2,0x2e,0x12,0xf0,0xa3,0x7a,0x69,0x10,0xa4, - 0x35,0x81,0xf0,0xa5,0x5e,0x3f,0x90,0xa6,0x25,0x35,0xf0,0xa7,0x27,0xaa,0x0,0xa8, - 0x2a,0x1,0xf0,0xa9,0x7,0x9a,0x10,0xa9,0xee,0x34,0x70,0xaa,0xe7,0x6e,0x0,0xab, - 0xd8,0xa2,0x70,0xac,0xc7,0x50,0x0,0xad,0xc9,0xa7,0xf0,0xae,0xa7,0x32,0x0,0xaf, - 0xa0,0x4f,0x70,0xb0,0x87,0x14,0x0,0xb1,0x89,0x6b,0xf0,0xb2,0x70,0x30,0x80,0xb3, - 0x72,0x88,0x70,0xb4,0x50,0x2e,0xa0,0xb5,0x49,0x5a,0x20,0xb6,0x30,0x10,0xa0,0xb7, - 0x32,0x76,0xa0,0xb8,0xf,0xf2,0xa0,0xb8,0xff,0xe3,0xa0,0xb9,0xef,0xd4,0xa0,0xba, - 0xd6,0x8b,0x20,0xbb,0xd8,0xf1,0x20,0xbc,0xc8,0xe2,0x20,0xbd,0xb8,0xd3,0x20,0xbe, - 0x9f,0x89,0xa0,0xbf,0x98,0xb5,0x20,0xc0,0x9b,0x1b,0x20,0xc1,0x78,0x97,0x20,0xc2, - 0x68,0x88,0x20,0xc3,0x58,0x79,0x20,0xc4,0x3f,0x2f,0xa0,0xc5,0x38,0x5b,0x20,0xc6, - 0x3a,0xc1,0x20,0xc7,0x58,0xd6,0xa0,0xc7,0xda,0x9,0xa0,0xc8,0x42,0x30,0x20,0xcc, - 0xe7,0x4b,0x10,0xcd,0xa9,0x17,0x90,0xce,0xa2,0x43,0x10,0xcf,0x92,0x34,0x10,0xd0, - 0x6f,0xb0,0x10,0xd1,0x72,0x16,0x10,0xd2,0x4e,0x40,0x90,0xd3,0x91,0x40,0x10,0xd4, - 0x4b,0x23,0x90,0xd,0x2a,0xfd,0x70,0xd,0xa4,0x63,0x90,0xe,0x8b,0x1a,0x10,0xf, - 0x84,0x45,0x90,0x10,0x74,0x36,0x90,0x11,0x64,0x27,0x90,0x12,0x54,0x18,0x90,0x13, - 0x4d,0x44,0x10,0x14,0x33,0xfa,0x90,0x15,0x23,0xeb,0x90,0x16,0x13,0xdc,0x90,0x17, - 0x3,0xcd,0x90,0x17,0xf3,0xbe,0x90,0x18,0xe3,0xaf,0x90,0x19,0xd3,0xa0,0x90,0x1a, - 0xc3,0x91,0x90,0x1b,0xbc,0xbd,0x10,0x1c,0xac,0xae,0x10,0x1d,0x9c,0x9f,0x10,0x1e, - 0x8c,0x90,0x10,0x1f,0x7c,0x81,0x10,0x20,0x6c,0x72,0x10,0x21,0x5c,0x63,0x10,0x22, - 0x4c,0x54,0x10,0x23,0x3c,0x45,0x10,0x24,0x2c,0x36,0x10,0x25,0x1c,0x27,0x10,0x26, - 0xc,0x18,0x10,0x27,0x5,0x43,0x90,0x27,0xf5,0x34,0x90,0x28,0xe5,0x25,0x90,0x29, - 0xd5,0x16,0x90,0x2a,0xc5,0x7,0x90,0x2b,0xb4,0xf8,0x90,0x2c,0xa4,0xe9,0x90,0x2d, - 0x94,0xda,0x90,0x2e,0x84,0xcb,0x90,0x2f,0x74,0xbc,0x90,0x30,0x64,0xad,0x90,0x31, - 0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34,0x52,0x96,0x10,0x35, - 0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x38, - 0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b,0xdb,0x58,0x90,0x3c, - 0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f,0x9b,0x1c,0x90,0x40, - 0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43,0x64,0x1b,0x10,0x44, - 0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47, - 0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b, - 0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e,0xac,0xa1,0x90,0x4f, - 0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53, - 0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56,0x2c,0x29,0x90,0x56, - 0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59,0xf5,0x28,0x10,0x5a, - 0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d,0xb4,0xec,0x10,0x5e, - 0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61,0x7d,0xea,0x90,0x62, - 0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65,0x3d,0xae,0x90,0x66, - 0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68,0xfd,0x72,0x90,0x69, - 0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c,0xc6,0x71,0x10,0x6d, - 0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70,0x86,0x35,0x10,0x71, - 0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74,0x45,0xf9,0x10,0x75, - 0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78, - 0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c, - 0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x0, - 0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x7,0x8,0x7, - 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, - 0x8,0x7,0x8,0xb,0x9,0xa,0x9,0xa,0x2,0x3,0x4,0x3,0x4,0x2,0xc,0xd, - 0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd, - 0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd, - 0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd, - 0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd, - 0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd, - 0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd, - 0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd, - 0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0x0,0x0,0x5,0xc4,0x0,0x0,0x0,0x0, - 0x1c,0x20,0x1,0x4,0x0,0x0,0xe,0x10,0x0,0x9,0x0,0x0,0x1c,0x20,0x1,0x4, - 0x0,0x0,0xe,0x10,0x0,0x9,0x0,0x0,0xe,0x10,0x1,0xd,0x0,0x0,0x0,0x0, - 0x0,0x12,0x0,0x0,0x0,0x0,0x0,0x12,0x0,0x0,0xe,0x10,0x1,0xd,0x0,0x0, - 0xe,0x10,0x0,0x12,0x0,0x0,0x1c,0x20,0x1,0xd,0x0,0x0,0x1c,0x20,0x1,0xd, - 0x0,0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe,0x10,0x0,0x9,0x4c,0x4d,0x54,0x0, - 0x43,0x45,0x53,0x54,0x0,0x43,0x45,0x54,0x0,0x57,0x45,0x53,0x54,0x0,0x57,0x45, - 0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x1,0x1,0x1,0x1,0x0,0x1,0x1, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x54,0x5a, - 0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xb9,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x16,0xf8,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xff,0xff,0xff,0xff,0x84,0xa2,0xad,0xbc,0xff,0xff,0xff,0xff,0x9b,0x1e, - 0x8c,0x60,0xff,0xff,0xff,0xff,0x9b,0xd5,0xda,0xf0,0xff,0xff,0xff,0xff,0x9c,0xea, - 0xa7,0xe0,0xff,0xff,0xff,0xff,0x9d,0xa4,0x99,0x70,0xff,0xff,0xff,0xff,0x9e,0xb9, - 0x90,0x90,0xff,0xff,0xff,0xff,0x9f,0x84,0x97,0x90,0xff,0xff,0xff,0xff,0x9f,0xe0, - 0xc4,0x70,0xff,0xff,0xff,0xff,0xa0,0x60,0xa5,0xf0,0xff,0xff,0xff,0xff,0xa1,0x7e, - 0xe5,0xa0,0xff,0xff,0xff,0xff,0xa2,0x2e,0x12,0xf0,0xff,0xff,0xff,0xff,0xa3,0x7a, - 0x69,0x10,0xff,0xff,0xff,0xff,0xa4,0x35,0x81,0xf0,0xff,0xff,0xff,0xff,0xa5,0x5e, - 0x3f,0x90,0xff,0xff,0xff,0xff,0xa6,0x25,0x35,0xf0,0xff,0xff,0xff,0xff,0xa7,0x27, - 0xaa,0x0,0xff,0xff,0xff,0xff,0xa8,0x2a,0x1,0xf0,0xff,0xff,0xff,0xff,0xa9,0x7, - 0x9a,0x10,0xff,0xff,0xff,0xff,0xa9,0xee,0x34,0x70,0xff,0xff,0xff,0xff,0xaa,0xe7, - 0x6e,0x0,0xff,0xff,0xff,0xff,0xab,0xd8,0xa2,0x70,0xff,0xff,0xff,0xff,0xac,0xc7, - 0x50,0x0,0xff,0xff,0xff,0xff,0xad,0xc9,0xa7,0xf0,0xff,0xff,0xff,0xff,0xae,0xa7, - 0x32,0x0,0xff,0xff,0xff,0xff,0xaf,0xa0,0x4f,0x70,0xff,0xff,0xff,0xff,0xb0,0x87, - 0x14,0x0,0xff,0xff,0xff,0xff,0xb1,0x89,0x6b,0xf0,0xff,0xff,0xff,0xff,0xb2,0x70, - 0x30,0x80,0xff,0xff,0xff,0xff,0xb3,0x72,0x88,0x70,0xff,0xff,0xff,0xff,0xb4,0x50, - 0x2e,0xa0,0xff,0xff,0xff,0xff,0xb5,0x49,0x5a,0x20,0xff,0xff,0xff,0xff,0xb6,0x30, - 0x10,0xa0,0xff,0xff,0xff,0xff,0xb7,0x32,0x76,0xa0,0xff,0xff,0xff,0xff,0xb8,0xf, - 0xf2,0xa0,0xff,0xff,0xff,0xff,0xb8,0xff,0xe3,0xa0,0xff,0xff,0xff,0xff,0xb9,0xef, - 0xd4,0xa0,0xff,0xff,0xff,0xff,0xba,0xd6,0x8b,0x20,0xff,0xff,0xff,0xff,0xbb,0xd8, - 0xf1,0x20,0xff,0xff,0xff,0xff,0xbc,0xc8,0xe2,0x20,0xff,0xff,0xff,0xff,0xbd,0xb8, - 0xd3,0x20,0xff,0xff,0xff,0xff,0xbe,0x9f,0x89,0xa0,0xff,0xff,0xff,0xff,0xbf,0x98, - 0xb5,0x20,0xff,0xff,0xff,0xff,0xc0,0x9b,0x1b,0x20,0xff,0xff,0xff,0xff,0xc1,0x78, - 0x97,0x20,0xff,0xff,0xff,0xff,0xc2,0x68,0x88,0x20,0xff,0xff,0xff,0xff,0xc3,0x58, - 0x79,0x20,0xff,0xff,0xff,0xff,0xc4,0x3f,0x2f,0xa0,0xff,0xff,0xff,0xff,0xc5,0x38, - 0x5b,0x20,0xff,0xff,0xff,0xff,0xc6,0x3a,0xc1,0x20,0xff,0xff,0xff,0xff,0xc7,0x58, - 0xd6,0xa0,0xff,0xff,0xff,0xff,0xc7,0xda,0x9,0xa0,0xff,0xff,0xff,0xff,0xc8,0x42, - 0x30,0x20,0xff,0xff,0xff,0xff,0xcc,0xe7,0x4b,0x10,0xff,0xff,0xff,0xff,0xcd,0xa9, - 0x17,0x90,0xff,0xff,0xff,0xff,0xce,0xa2,0x43,0x10,0xff,0xff,0xff,0xff,0xcf,0x92, - 0x34,0x10,0xff,0xff,0xff,0xff,0xd0,0x6f,0xb0,0x10,0xff,0xff,0xff,0xff,0xd1,0x72, - 0x16,0x10,0xff,0xff,0xff,0xff,0xd2,0x4e,0x40,0x90,0xff,0xff,0xff,0xff,0xd3,0x91, - 0x40,0x10,0xff,0xff,0xff,0xff,0xd4,0x4b,0x23,0x90,0x0,0x0,0x0,0x0,0xd,0x2a, - 0xfd,0x70,0x0,0x0,0x0,0x0,0xd,0xa4,0x63,0x90,0x0,0x0,0x0,0x0,0xe,0x8b, - 0x1a,0x10,0x0,0x0,0x0,0x0,0xf,0x84,0x45,0x90,0x0,0x0,0x0,0x0,0x10,0x74, - 0x36,0x90,0x0,0x0,0x0,0x0,0x11,0x64,0x27,0x90,0x0,0x0,0x0,0x0,0x12,0x54, - 0x18,0x90,0x0,0x0,0x0,0x0,0x13,0x4d,0x44,0x10,0x0,0x0,0x0,0x0,0x14,0x33, - 0xfa,0x90,0x0,0x0,0x0,0x0,0x15,0x23,0xeb,0x90,0x0,0x0,0x0,0x0,0x16,0x13, - 0xdc,0x90,0x0,0x0,0x0,0x0,0x17,0x3,0xcd,0x90,0x0,0x0,0x0,0x0,0x17,0xf3, - 0xbe,0x90,0x0,0x0,0x0,0x0,0x18,0xe3,0xaf,0x90,0x0,0x0,0x0,0x0,0x19,0xd3, - 0xa0,0x90,0x0,0x0,0x0,0x0,0x1a,0xc3,0x91,0x90,0x0,0x0,0x0,0x0,0x1b,0xbc, - 0xbd,0x10,0x0,0x0,0x0,0x0,0x1c,0xac,0xae,0x10,0x0,0x0,0x0,0x0,0x1d,0x9c, - 0x9f,0x10,0x0,0x0,0x0,0x0,0x1e,0x8c,0x90,0x10,0x0,0x0,0x0,0x0,0x1f,0x7c, - 0x81,0x10,0x0,0x0,0x0,0x0,0x20,0x6c,0x72,0x10,0x0,0x0,0x0,0x0,0x21,0x5c, - 0x63,0x10,0x0,0x0,0x0,0x0,0x22,0x4c,0x54,0x10,0x0,0x0,0x0,0x0,0x23,0x3c, - 0x45,0x10,0x0,0x0,0x0,0x0,0x24,0x2c,0x36,0x10,0x0,0x0,0x0,0x0,0x25,0x1c, - 0x27,0x10,0x0,0x0,0x0,0x0,0x26,0xc,0x18,0x10,0x0,0x0,0x0,0x0,0x27,0x5, - 0x43,0x90,0x0,0x0,0x0,0x0,0x27,0xf5,0x34,0x90,0x0,0x0,0x0,0x0,0x28,0xe5, - 0x25,0x90,0x0,0x0,0x0,0x0,0x29,0xd5,0x16,0x90,0x0,0x0,0x0,0x0,0x2a,0xc5, - 0x7,0x90,0x0,0x0,0x0,0x0,0x2b,0xb4,0xf8,0x90,0x0,0x0,0x0,0x0,0x2c,0xa4, - 0xe9,0x90,0x0,0x0,0x0,0x0,0x2d,0x94,0xda,0x90,0x0,0x0,0x0,0x0,0x2e,0x84, - 0xcb,0x90,0x0,0x0,0x0,0x0,0x2f,0x74,0xbc,0x90,0x0,0x0,0x0,0x0,0x30,0x64, - 0xad,0x90,0x0,0x0,0x0,0x0,0x31,0x5d,0xd9,0x10,0x0,0x0,0x0,0x0,0x32,0x72, - 0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d,0xbb,0x10,0x0,0x0,0x0,0x0,0x34,0x52, - 0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d,0x9d,0x10,0x0,0x0,0x0,0x0,0x36,0x32, - 0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd,0x7f,0x10,0x0,0x0,0x0,0x0,0x38,0x1b, - 0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd,0x61,0x10,0x0,0x0,0x0,0x0,0x39,0xfb, - 0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd,0x43,0x10,0x0,0x0,0x0,0x0,0x3b,0xdb, - 0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb, - 0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86,0x41,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b, - 0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66,0x23,0x90,0x0,0x0,0x0,0x0,0x41,0x84, - 0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46,0x5,0x90,0x0,0x0,0x0,0x0,0x43,0x64, - 0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25,0xe7,0x90,0x0,0x0,0x0,0x0,0x45,0x43, - 0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5,0xc9,0x90,0x0,0x0,0x0,0x0,0x47,0x23, - 0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee,0xe6,0x10,0x0,0x0,0x0,0x0,0x49,0x3, - 0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce,0xc8,0x10,0x0,0x0,0x0,0x0,0x4a,0xe3, - 0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae,0xaa,0x10,0x0,0x0,0x0,0x0,0x4c,0xcc, - 0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c,0x10,0x0,0x0,0x0,0x0,0x4e,0xac, - 0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e,0x10,0x0,0x0,0x0,0x0,0x50,0x8c, - 0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57,0x8a,0x90,0x0,0x0,0x0,0x0,0x52,0x6c, - 0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37,0x6c,0x90,0x0,0x0,0x0,0x0,0x54,0x4c, - 0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17,0x4e,0x90,0x0,0x0,0x0,0x0,0x56,0x2c, - 0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7,0x30,0x90,0x0,0x0,0x0,0x0,0x58,0x15, - 0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7,0x12,0x90,0x0,0x0,0x0,0x0,0x59,0xf5, - 0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4,0x90,0x0,0x0,0x0,0x0,0x5b,0xd5, - 0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0,0x11,0x10,0x0,0x0,0x0,0x0,0x5d,0xb4, - 0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3,0x10,0x0,0x0,0x0,0x0,0x5f,0x94, - 0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f,0xd5,0x10,0x0,0x0,0x0,0x0,0x61,0x7d, - 0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f,0xb7,0x10,0x0,0x0,0x0,0x0,0x63,0x5d, - 0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f,0x99,0x10,0x0,0x0,0x0,0x0,0x65,0x3d, - 0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8,0xb5,0x90,0x0,0x0,0x0,0x0,0x67,0x1d, - 0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8,0x97,0x90,0x0,0x0,0x0,0x0,0x68,0xfd, - 0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8,0x79,0x90,0x0,0x0,0x0,0x0,0x6a,0xdd, - 0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b,0x90,0x0,0x0,0x0,0x0,0x6c,0xc6, - 0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88,0x3d,0x90,0x0,0x0,0x0,0x0,0x6e,0xa6, - 0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68,0x1f,0x90,0x0,0x0,0x0,0x0,0x70,0x86, - 0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51,0x3c,0x10,0x0,0x0,0x0,0x0,0x72,0x66, - 0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31,0x1e,0x10,0x0,0x0,0x0,0x0,0x74,0x45, - 0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11,0x0,0x10,0x0,0x0,0x0,0x0,0x76,0x2f, - 0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0,0xe2,0x10,0x0,0x0,0x0,0x0,0x78,0xe, - 0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0,0xc4,0x10,0x0,0x0,0x0,0x0,0x79,0xee, - 0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6,0x10,0x0,0x0,0x0,0x0,0x7b,0xce, - 0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99,0xc2,0x90,0x0,0x0,0x0,0x0,0x7d,0xae, - 0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79,0xa4,0x90,0x0,0x0,0x0,0x0,0x7f,0x8e, - 0x7f,0x90,0x0,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8, - 0x7,0x8,0x7,0x8,0x7,0x8,0xb,0x9,0xa,0x9,0xa,0x2,0x3,0x4,0x3,0x4, - 0x2,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc, - 0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc, - 0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc, - 0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc, - 0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc, - 0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc, - 0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc, - 0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0x0,0x0,0x5,0xc4,0x0, - 0x0,0x0,0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe,0x10,0x0,0x9,0x0,0x0,0x1c, - 0x20,0x1,0x4,0x0,0x0,0xe,0x10,0x0,0x9,0x0,0x0,0xe,0x10,0x1,0xd,0x0, - 0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x0,0x0,0x12,0x0,0x0,0xe,0x10,0x1, - 0xd,0x0,0x0,0xe,0x10,0x0,0x12,0x0,0x0,0x1c,0x20,0x1,0xd,0x0,0x0,0x1c, - 0x20,0x1,0xd,0x0,0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe,0x10,0x0,0x9,0x4c, - 0x4d,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x43,0x45,0x54,0x0,0x57,0x45,0x53,0x54, - 0x0,0x57,0x45,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x1,0x1,0x1,0x1, - 0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, - 0x1,0xa,0x43,0x45,0x54,0x2d,0x31,0x43,0x45,0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35, - 0x2e,0x30,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30,0x2f,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Moscow - 0x0,0x0,0x6,0x8, + 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x11,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1b,0x80,0x0,0x0,0x0,0xba, + 0xdf,0x42,0x60,0xfa,0x8,0x4b,0xd0,0xfa,0xa7,0xc3,0x40,0xff,0xa7,0xf1,0xd0,0x0, + 0x43,0x7b,0xc8,0x1,0x87,0xd3,0xd0,0x1,0xfa,0x7f,0x48,0x3,0x70,0xf0,0x50,0x3, + 0xdd,0x4,0x48,0x5,0x50,0xd2,0x50,0x5,0xbf,0x89,0x48,0x7,0x30,0xb4,0x50,0x7, + 0xa0,0xbc,0xc8,0x9,0x10,0x96,0x50,0x39,0xfb,0xbc,0xe0,0x3a,0x29,0xe1,0x60,0x1, + 0x3,0x2,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x5,0x3,0x5, + 0xff,0xff,0xbe,0x78,0x0,0x0,0xff,0xff,0xbe,0x60,0x0,0x4,0xff,0xff,0xc7,0xc0, + 0x1,0x9,0xff,0xff,0xb9,0xb0,0x0,0xd,0xff,0xff,0xc0,0xb8,0x1,0x11,0xff,0xff, + 0xc7,0xc0,0x0,0x17,0x4c,0x4d,0x54,0x0,0x53,0x44,0x4d,0x54,0x0,0x45,0x44,0x54, + 0x0,0x45,0x53,0x54,0x0,0x2d,0x30,0x34,0x33,0x30,0x0,0x41,0x53,0x54,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x12,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x1b,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff, + 0xff,0xff,0xff,0x69,0x87,0x1d,0x8,0xff,0xff,0xff,0xff,0xba,0xdf,0x42,0x60,0xff, + 0xff,0xff,0xff,0xfa,0x8,0x4b,0xd0,0xff,0xff,0xff,0xff,0xfa,0xa7,0xc3,0x40,0xff, + 0xff,0xff,0xff,0xff,0xa7,0xf1,0xd0,0x0,0x0,0x0,0x0,0x0,0x43,0x7b,0xc8,0x0, + 0x0,0x0,0x0,0x1,0x87,0xd3,0xd0,0x0,0x0,0x0,0x0,0x1,0xfa,0x7f,0x48,0x0, + 0x0,0x0,0x0,0x3,0x70,0xf0,0x50,0x0,0x0,0x0,0x0,0x3,0xdd,0x4,0x48,0x0, + 0x0,0x0,0x0,0x5,0x50,0xd2,0x50,0x0,0x0,0x0,0x0,0x5,0xbf,0x89,0x48,0x0, + 0x0,0x0,0x0,0x7,0x30,0xb4,0x50,0x0,0x0,0x0,0x0,0x7,0xa0,0xbc,0xc8,0x0, + 0x0,0x0,0x0,0x9,0x10,0x96,0x50,0x0,0x0,0x0,0x0,0x39,0xfb,0xbc,0xe0,0x0, + 0x0,0x0,0x0,0x3a,0x29,0xe1,0x60,0x0,0x1,0x3,0x2,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x5,0x3,0x5,0xff,0xff,0xbe,0x78,0x0,0x0,0xff, + 0xff,0xbe,0x60,0x0,0x4,0xff,0xff,0xc7,0xc0,0x1,0x9,0xff,0xff,0xb9,0xb0,0x0, + 0xd,0xff,0xff,0xc0,0xb8,0x1,0x11,0xff,0xff,0xc7,0xc0,0x0,0x17,0x4c,0x4d,0x54, + 0x0,0x53,0x44,0x4d,0x54,0x0,0x45,0x44,0x54,0x0,0x45,0x53,0x54,0x0,0x2d,0x30, + 0x34,0x33,0x30,0x0,0x41,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xa,0x41,0x53,0x54,0x34,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Porto_Acre + 0x0,0x0,0x2,0x96, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x4e,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x26,0x80,0x0,0x0,0x0,0x9b, - 0x5f,0x1e,0xc7,0x9d,0x3e,0xf2,0x79,0x9e,0x2a,0xee,0xf9,0x9e,0xf7,0x39,0x69,0x9f, - 0x84,0x57,0xf9,0xa0,0xd8,0x6c,0xe9,0xa1,0x0,0x39,0x80,0xa1,0x3c,0xa6,0x40,0xa4, - 0x10,0x6d,0xc0,0xa4,0x3d,0x32,0xb0,0xa5,0x15,0x68,0xb0,0xa5,0x3d,0x3,0xc0,0xa7, - 0x1e,0x45,0x50,0xb5,0xa4,0x19,0x60,0x15,0x27,0xa7,0xd0,0x16,0x18,0xdc,0x40,0x17, - 0x8,0xdb,0x50,0x17,0xfa,0xf,0xc0,0x18,0xea,0xe,0xd0,0x19,0xdb,0x43,0x40,0x1a, - 0xcc,0x93,0xd0,0x1b,0xbc,0xa0,0xf0,0x1c,0xac,0x91,0xf0,0x1d,0x9c,0x82,0xf0,0x1e, - 0x8c,0x73,0xf0,0x1f,0x7c,0x64,0xf0,0x20,0x6c,0x55,0xf0,0x21,0x5c,0x46,0xf0,0x22, - 0x4c,0x37,0xf0,0x23,0x3c,0x28,0xf0,0x24,0x2c,0x19,0xf0,0x25,0x1c,0xa,0xf0,0x26, - 0xb,0xfb,0xf0,0x27,0x5,0x27,0x70,0x27,0xf5,0x18,0x70,0x28,0xe5,0x17,0x80,0x29, - 0x78,0xbf,0x80,0x29,0xd4,0xfa,0x70,0x2a,0xc4,0xeb,0x70,0x2b,0xb4,0xdc,0x70,0x2c, - 0xa4,0xcd,0x70,0x2d,0x94,0xbe,0x70,0x2e,0x84,0xaf,0x70,0x2f,0x74,0xa0,0x70,0x30, - 0x64,0x91,0x70,0x31,0x5d,0xbc,0xf0,0x32,0x72,0x97,0xf0,0x33,0x3d,0x9e,0xf0,0x34, - 0x52,0x79,0xf0,0x35,0x1d,0x80,0xf0,0x36,0x32,0x5b,0xf0,0x36,0xfd,0x62,0xf0,0x38, - 0x1b,0x78,0x70,0x38,0xdd,0x44,0xf0,0x39,0xfb,0x5a,0x70,0x3a,0xbd,0x26,0xf0,0x3b, - 0xdb,0x3c,0x70,0x3c,0xa6,0x43,0x70,0x3d,0xbb,0x1e,0x70,0x3e,0x86,0x25,0x70,0x3f, - 0x9b,0x0,0x70,0x40,0x66,0x7,0x70,0x41,0x84,0x1c,0xf0,0x42,0x45,0xe9,0x70,0x43, - 0x63,0xfe,0xf0,0x44,0x25,0xcb,0x70,0x45,0x43,0xe0,0xf0,0x46,0x5,0xad,0x70,0x47, - 0x23,0xc2,0xf0,0x47,0xee,0xc9,0xf0,0x49,0x3,0xa4,0xf0,0x49,0xce,0xab,0xf0,0x4a, - 0xe3,0x86,0xf0,0x4b,0xae,0x8d,0xf0,0x4c,0xcc,0xa3,0x70,0x4d,0x8e,0x6f,0xf0,0x54, - 0x4c,0x1d,0x60,0x1,0x3,0x2,0x3,0x4,0x2,0x4,0x5,0x6,0x7,0x8,0x7,0x6, - 0x9,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0xa,0xb,0xa,0xb,0xa,0xb,0xa, - 0xb,0xa,0xb,0xa,0xb,0xa,0xc,0xd,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb, - 0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb, - 0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xe, - 0xa,0x0,0x0,0x23,0x39,0x0,0x0,0x0,0x0,0x23,0x39,0x0,0x4,0x0,0x0,0x31, - 0x87,0x1,0x8,0x0,0x0,0x23,0x77,0x0,0x4,0x0,0x0,0x3f,0x97,0x1,0xc,0x0, - 0x0,0x38,0x40,0x1,0x11,0x0,0x0,0x2a,0x30,0x0,0x15,0x0,0x0,0x38,0x40,0x1, - 0x11,0x0,0x0,0x46,0x50,0x1,0x19,0x0,0x0,0x1c,0x20,0x0,0x1d,0x0,0x0,0x2a, - 0x30,0x0,0x15,0x0,0x0,0x38,0x40,0x1,0x11,0x0,0x0,0x2a,0x30,0x1,0x21,0x0, - 0x0,0x1c,0x20,0x0,0x1d,0x0,0x0,0x38,0x40,0x0,0x15,0x0,0x0,0x38,0x40,0x1, - 0x11,0x0,0x0,0x2a,0x30,0x0,0x15,0x4c,0x4d,0x54,0x0,0x4d,0x4d,0x54,0x0,0x4d, - 0x53,0x54,0x0,0x4d,0x44,0x53,0x54,0x0,0x4d,0x53,0x44,0x0,0x4d,0x53,0x4b,0x0, - 0x2b,0x30,0x35,0x0,0x45,0x45,0x54,0x0,0x45,0x45,0x53,0x54,0x0,0x0,0x0,0x0, - 0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x0,0x0, - 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x4f,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x26,0xf8,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x56,0xb6,0xc0,0xc7,0xff,0xff,0xff,0xff,0x9b, - 0x5f,0x1e,0xc7,0xff,0xff,0xff,0xff,0x9d,0x3e,0xf2,0x79,0xff,0xff,0xff,0xff,0x9e, - 0x2a,0xee,0xf9,0xff,0xff,0xff,0xff,0x9e,0xf7,0x39,0x69,0xff,0xff,0xff,0xff,0x9f, - 0x84,0x57,0xf9,0xff,0xff,0xff,0xff,0xa0,0xd8,0x6c,0xe9,0xff,0xff,0xff,0xff,0xa1, - 0x0,0x39,0x80,0xff,0xff,0xff,0xff,0xa1,0x3c,0xa6,0x40,0xff,0xff,0xff,0xff,0xa4, - 0x10,0x6d,0xc0,0xff,0xff,0xff,0xff,0xa4,0x3d,0x32,0xb0,0xff,0xff,0xff,0xff,0xa5, - 0x15,0x68,0xb0,0xff,0xff,0xff,0xff,0xa5,0x3d,0x3,0xc0,0xff,0xff,0xff,0xff,0xa7, - 0x1e,0x45,0x50,0xff,0xff,0xff,0xff,0xb5,0xa4,0x19,0x60,0x0,0x0,0x0,0x0,0x15, - 0x27,0xa7,0xd0,0x0,0x0,0x0,0x0,0x16,0x18,0xdc,0x40,0x0,0x0,0x0,0x0,0x17, - 0x8,0xdb,0x50,0x0,0x0,0x0,0x0,0x17,0xfa,0xf,0xc0,0x0,0x0,0x0,0x0,0x18, - 0xea,0xe,0xd0,0x0,0x0,0x0,0x0,0x19,0xdb,0x43,0x40,0x0,0x0,0x0,0x0,0x1a, - 0xcc,0x93,0xd0,0x0,0x0,0x0,0x0,0x1b,0xbc,0xa0,0xf0,0x0,0x0,0x0,0x0,0x1c, - 0xac,0x91,0xf0,0x0,0x0,0x0,0x0,0x1d,0x9c,0x82,0xf0,0x0,0x0,0x0,0x0,0x1e, - 0x8c,0x73,0xf0,0x0,0x0,0x0,0x0,0x1f,0x7c,0x64,0xf0,0x0,0x0,0x0,0x0,0x20, - 0x6c,0x55,0xf0,0x0,0x0,0x0,0x0,0x21,0x5c,0x46,0xf0,0x0,0x0,0x0,0x0,0x22, - 0x4c,0x37,0xf0,0x0,0x0,0x0,0x0,0x23,0x3c,0x28,0xf0,0x0,0x0,0x0,0x0,0x24, - 0x2c,0x19,0xf0,0x0,0x0,0x0,0x0,0x25,0x1c,0xa,0xf0,0x0,0x0,0x0,0x0,0x26, - 0xb,0xfb,0xf0,0x0,0x0,0x0,0x0,0x27,0x5,0x27,0x70,0x0,0x0,0x0,0x0,0x27, - 0xf5,0x18,0x70,0x0,0x0,0x0,0x0,0x28,0xe5,0x17,0x80,0x0,0x0,0x0,0x0,0x29, - 0x78,0xbf,0x80,0x0,0x0,0x0,0x0,0x29,0xd4,0xfa,0x70,0x0,0x0,0x0,0x0,0x2a, - 0xc4,0xeb,0x70,0x0,0x0,0x0,0x0,0x2b,0xb4,0xdc,0x70,0x0,0x0,0x0,0x0,0x2c, - 0xa4,0xcd,0x70,0x0,0x0,0x0,0x0,0x2d,0x94,0xbe,0x70,0x0,0x0,0x0,0x0,0x2e, - 0x84,0xaf,0x70,0x0,0x0,0x0,0x0,0x2f,0x74,0xa0,0x70,0x0,0x0,0x0,0x0,0x30, - 0x64,0x91,0x70,0x0,0x0,0x0,0x0,0x31,0x5d,0xbc,0xf0,0x0,0x0,0x0,0x0,0x32, - 0x72,0x97,0xf0,0x0,0x0,0x0,0x0,0x33,0x3d,0x9e,0xf0,0x0,0x0,0x0,0x0,0x34, - 0x52,0x79,0xf0,0x0,0x0,0x0,0x0,0x35,0x1d,0x80,0xf0,0x0,0x0,0x0,0x0,0x36, - 0x32,0x5b,0xf0,0x0,0x0,0x0,0x0,0x36,0xfd,0x62,0xf0,0x0,0x0,0x0,0x0,0x38, - 0x1b,0x78,0x70,0x0,0x0,0x0,0x0,0x38,0xdd,0x44,0xf0,0x0,0x0,0x0,0x0,0x39, - 0xfb,0x5a,0x70,0x0,0x0,0x0,0x0,0x3a,0xbd,0x26,0xf0,0x0,0x0,0x0,0x0,0x3b, - 0xdb,0x3c,0x70,0x0,0x0,0x0,0x0,0x3c,0xa6,0x43,0x70,0x0,0x0,0x0,0x0,0x3d, - 0xbb,0x1e,0x70,0x0,0x0,0x0,0x0,0x3e,0x86,0x25,0x70,0x0,0x0,0x0,0x0,0x3f, - 0x9b,0x0,0x70,0x0,0x0,0x0,0x0,0x40,0x66,0x7,0x70,0x0,0x0,0x0,0x0,0x41, - 0x84,0x1c,0xf0,0x0,0x0,0x0,0x0,0x42,0x45,0xe9,0x70,0x0,0x0,0x0,0x0,0x43, - 0x63,0xfe,0xf0,0x0,0x0,0x0,0x0,0x44,0x25,0xcb,0x70,0x0,0x0,0x0,0x0,0x45, - 0x43,0xe0,0xf0,0x0,0x0,0x0,0x0,0x46,0x5,0xad,0x70,0x0,0x0,0x0,0x0,0x47, - 0x23,0xc2,0xf0,0x0,0x0,0x0,0x0,0x47,0xee,0xc9,0xf0,0x0,0x0,0x0,0x0,0x49, - 0x3,0xa4,0xf0,0x0,0x0,0x0,0x0,0x49,0xce,0xab,0xf0,0x0,0x0,0x0,0x0,0x4a, - 0xe3,0x86,0xf0,0x0,0x0,0x0,0x0,0x4b,0xae,0x8d,0xf0,0x0,0x0,0x0,0x0,0x4c, - 0xcc,0xa3,0x70,0x0,0x0,0x0,0x0,0x4d,0x8e,0x6f,0xf0,0x0,0x0,0x0,0x0,0x54, - 0x4c,0x1d,0x60,0x0,0x1,0x3,0x2,0x3,0x4,0x2,0x4,0x5,0x6,0x7,0x8,0x7, - 0x6,0x9,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0xa,0xb,0xa,0xb,0xa,0xb, - 0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xc,0xd,0xa,0xb,0xa,0xb,0xa,0xb,0xa, - 0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa, - 0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa, - 0xe,0xa,0x0,0x0,0x23,0x39,0x0,0x0,0x0,0x0,0x23,0x39,0x0,0x4,0x0,0x0, - 0x31,0x87,0x1,0x8,0x0,0x0,0x23,0x77,0x0,0x4,0x0,0x0,0x3f,0x97,0x1,0xc, - 0x0,0x0,0x38,0x40,0x1,0x11,0x0,0x0,0x2a,0x30,0x0,0x15,0x0,0x0,0x38,0x40, - 0x1,0x11,0x0,0x0,0x46,0x50,0x1,0x19,0x0,0x0,0x1c,0x20,0x0,0x1d,0x0,0x0, - 0x2a,0x30,0x0,0x15,0x0,0x0,0x38,0x40,0x1,0x11,0x0,0x0,0x2a,0x30,0x1,0x21, - 0x0,0x0,0x1c,0x20,0x0,0x1d,0x0,0x0,0x38,0x40,0x0,0x15,0x0,0x0,0x38,0x40, - 0x1,0x11,0x0,0x0,0x2a,0x30,0x0,0x15,0x4c,0x4d,0x54,0x0,0x4d,0x4d,0x54,0x0, - 0x4d,0x53,0x54,0x0,0x4d,0x44,0x53,0x54,0x0,0x4d,0x53,0x44,0x0,0x4d,0x53,0x4b, - 0x0,0x2b,0x30,0x35,0x0,0x45,0x45,0x54,0x0,0x45,0x45,0x53,0x54,0x0,0x0,0x0, - 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x0, - 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0xa,0x4d,0x53,0x4b,0x2d,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Jersey - 0x0,0x0,0xe,0x67, + 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x21,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0x96, + 0xaa,0x86,0x90,0xb8,0xf,0x66,0x0,0xb8,0xfd,0x5c,0xc0,0xb9,0xf1,0x50,0x50,0xba, + 0xde,0x90,0x40,0xda,0x38,0xca,0x50,0xda,0xec,0x16,0x50,0xdc,0x19,0xfd,0xd0,0xdc, + 0xb9,0x75,0x40,0xdd,0xfb,0x31,0x50,0xde,0x9b,0xfa,0x40,0xdf,0xdd,0xb6,0x50,0xe0, + 0x54,0x4f,0x40,0xf4,0x98,0x1b,0xd0,0xf5,0x5,0x7a,0x40,0xf6,0xc0,0x80,0x50,0xf7, + 0xe,0x3a,0xc0,0xf8,0x51,0x48,0x50,0xf8,0xc7,0xe1,0x40,0xfa,0xa,0xee,0xd0,0xfa, + 0xa9,0x14,0xc0,0xfb,0xec,0x22,0x50,0xfc,0x8b,0x99,0xc0,0x1d,0xc9,0xaa,0x50,0x1e, + 0x78,0xf3,0xc0,0x1f,0xa0,0x51,0xd0,0x20,0x33,0xeb,0xc0,0x21,0x81,0x85,0x50,0x22, + 0xb,0xe4,0xc0,0x48,0x60,0x7f,0x50,0x52,0x7f,0x4,0xc0,0x7f,0xff,0xff,0xff,0x0, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x2,0x2, + 0xff,0xff,0xc0,0x70,0x0,0x0,0xff,0xff,0xc7,0xc0,0x1,0x4,0xff,0xff,0xb9,0xb0, + 0x0,0x8,0xff,0xff,0xc7,0xc0,0x0,0x4,0xff,0xff,0xb9,0xb0,0x0,0x8,0x4c,0x4d, + 0x54,0x0,0x2d,0x30,0x34,0x0,0x2d,0x30,0x35,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xc, + 0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x96,0xaa,0x86,0x90, + 0xff,0xff,0xff,0xff,0xb8,0xf,0x66,0x0,0xff,0xff,0xff,0xff,0xb8,0xfd,0x5c,0xc0, + 0xff,0xff,0xff,0xff,0xb9,0xf1,0x50,0x50,0xff,0xff,0xff,0xff,0xba,0xde,0x90,0x40, + 0xff,0xff,0xff,0xff,0xda,0x38,0xca,0x50,0xff,0xff,0xff,0xff,0xda,0xec,0x16,0x50, + 0xff,0xff,0xff,0xff,0xdc,0x19,0xfd,0xd0,0xff,0xff,0xff,0xff,0xdc,0xb9,0x75,0x40, + 0xff,0xff,0xff,0xff,0xdd,0xfb,0x31,0x50,0xff,0xff,0xff,0xff,0xde,0x9b,0xfa,0x40, + 0xff,0xff,0xff,0xff,0xdf,0xdd,0xb6,0x50,0xff,0xff,0xff,0xff,0xe0,0x54,0x4f,0x40, + 0xff,0xff,0xff,0xff,0xf4,0x98,0x1b,0xd0,0xff,0xff,0xff,0xff,0xf5,0x5,0x7a,0x40, + 0xff,0xff,0xff,0xff,0xf6,0xc0,0x80,0x50,0xff,0xff,0xff,0xff,0xf7,0xe,0x3a,0xc0, + 0xff,0xff,0xff,0xff,0xf8,0x51,0x48,0x50,0xff,0xff,0xff,0xff,0xf8,0xc7,0xe1,0x40, + 0xff,0xff,0xff,0xff,0xfa,0xa,0xee,0xd0,0xff,0xff,0xff,0xff,0xfa,0xa9,0x14,0xc0, + 0xff,0xff,0xff,0xff,0xfb,0xec,0x22,0x50,0xff,0xff,0xff,0xff,0xfc,0x8b,0x99,0xc0, + 0x0,0x0,0x0,0x0,0x1d,0xc9,0xaa,0x50,0x0,0x0,0x0,0x0,0x1e,0x78,0xf3,0xc0, + 0x0,0x0,0x0,0x0,0x1f,0xa0,0x51,0xd0,0x0,0x0,0x0,0x0,0x20,0x33,0xeb,0xc0, + 0x0,0x0,0x0,0x0,0x21,0x81,0x85,0x50,0x0,0x0,0x0,0x0,0x22,0xb,0xe4,0xc0, + 0x0,0x0,0x0,0x0,0x48,0x60,0x7f,0x50,0x0,0x0,0x0,0x0,0x52,0x7f,0x4,0xc0, + 0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x2,0x2,0xff,0xff,0xc0,0x70,0x0,0x0,0xff, + 0xff,0xc7,0xc0,0x1,0x4,0xff,0xff,0xb9,0xb0,0x0,0x8,0xff,0xff,0xc7,0xc0,0x0, + 0x4,0xff,0xff,0xb9,0xb0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x2d,0x30,0x34,0x0,0x2d, + 0x30,0x35,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2d, + 0x30,0x35,0x3e,0x35,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Yakutat + 0x0,0x0,0x9,0xa, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xf3,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x11,0x80,0x0,0x0,0x0,0x9b, - 0x26,0xad,0xa0,0x9b,0xd6,0x5,0x20,0x9c,0xcf,0x30,0xa0,0x9d,0xa4,0xc3,0xa0,0x9e, - 0x9c,0x9d,0xa0,0x9f,0x97,0x1a,0xa0,0xa0,0x85,0xba,0x20,0xa1,0x76,0xfc,0xa0,0xa2, - 0x65,0x9c,0x20,0xa3,0x7b,0xc8,0xa0,0xa4,0x4e,0xb8,0xa0,0xa5,0x3f,0xfb,0x20,0xa6, - 0x25,0x60,0x20,0xa7,0x27,0xc6,0x20,0xa8,0x2a,0x2c,0x20,0xa8,0xeb,0xf8,0xa0,0xaa, - 0x0,0xd3,0xa0,0xaa,0xd5,0x15,0x20,0xab,0xe9,0xf0,0x20,0xac,0xc7,0x6c,0x20,0xad, - 0xc9,0xd2,0x20,0xae,0xa7,0x4e,0x20,0xaf,0xa0,0x79,0xa0,0xb0,0x87,0x30,0x20,0xb1, - 0x92,0xd0,0xa0,0xb2,0x70,0x4c,0xa0,0xb3,0x72,0xb2,0xa0,0xb4,0x50,0x2e,0xa0,0xb5, - 0x49,0x5a,0x20,0xb6,0x30,0x10,0xa0,0xb7,0x32,0x76,0xa0,0xb8,0xf,0xf2,0xa0,0xb9, - 0x12,0x58,0xa0,0xb9,0xef,0xd4,0xa0,0xba,0xe9,0x0,0x20,0xbb,0xd8,0xf1,0x20,0xbc, - 0xdb,0x57,0x20,0xbd,0xb8,0xd3,0x20,0xbe,0xb1,0xfe,0xa0,0xbf,0x98,0xb5,0x20,0xc0, - 0x9b,0x1b,0x20,0xc1,0x78,0x97,0x20,0xc2,0x7a,0xfd,0x20,0xc3,0x58,0x79,0x20,0xc4, - 0x51,0xa4,0xa0,0xc5,0x38,0x5b,0x20,0xc6,0x3a,0xc1,0x20,0xc7,0x58,0xd6,0xa0,0xc7, - 0xda,0x9,0xa0,0xca,0x16,0x26,0x90,0xca,0x97,0x59,0x90,0xcb,0xd1,0x1e,0x90,0xcc, - 0x77,0x3b,0x90,0xcd,0xb1,0x0,0x90,0xce,0x60,0x58,0x10,0xcf,0x90,0xe2,0x90,0xd0, - 0x6e,0x5e,0x90,0xd1,0x72,0x16,0x10,0xd1,0xfb,0x32,0x10,0xd2,0x69,0xfe,0x20,0xd3, - 0x63,0x29,0xa0,0xd4,0x49,0xe0,0x20,0xd5,0x1e,0x21,0xa0,0xd5,0x42,0xfd,0x90,0xd5, - 0xdf,0xe0,0x10,0xd6,0x4e,0xac,0x20,0xd6,0xfe,0x3,0xa0,0xd8,0x2e,0x8e,0x20,0xd8, - 0xf9,0x95,0x20,0xda,0xe,0x70,0x20,0xda,0xeb,0xec,0x20,0xdb,0xe5,0x17,0xa0,0xdc, - 0xcb,0xce,0x20,0xdd,0xc4,0xf9,0xa0,0xde,0xb4,0xea,0xa0,0xdf,0xae,0x16,0x20,0xe0, - 0x94,0xcc,0xa0,0xe1,0x72,0x48,0xa0,0xe2,0x6b,0x74,0x20,0xe3,0x52,0x2a,0xa0,0xe4, - 0x54,0x90,0xa0,0xe5,0x32,0xc,0xa0,0xe6,0x3d,0xad,0x20,0xe7,0x1b,0x29,0x20,0xe8, - 0x14,0x54,0xa0,0xe8,0xfb,0xb,0x20,0xe9,0xfd,0x71,0x20,0xea,0xda,0xed,0x20,0xeb, - 0xdd,0x53,0x20,0xec,0xba,0xcf,0x20,0xed,0xb3,0xfa,0xa0,0xee,0x9a,0xb1,0x20,0xef, - 0x81,0x67,0xa0,0xf0,0x9f,0x7d,0x20,0xf1,0x61,0x49,0xa0,0xf2,0x7f,0x5f,0x20,0xf3, - 0x4a,0x66,0x20,0xf4,0x5f,0x41,0x20,0xf5,0x21,0xd,0xa0,0xf6,0x3f,0x23,0x20,0xf7, - 0x0,0xef,0xa0,0xf8,0x1f,0x5,0x20,0xf8,0xe0,0xd1,0xa0,0xf9,0xfe,0xe7,0x20,0xfa, - 0xc0,0xb3,0xa0,0xfb,0xe8,0x3,0xa0,0xfc,0x7b,0xab,0xa0,0xfd,0xc7,0xbb,0x70,0x3, - 0x70,0xc6,0x20,0x4,0x29,0x58,0x20,0x5,0x50,0xa8,0x20,0x6,0x9,0x3a,0x20,0x7, - 0x30,0x8a,0x20,0x7,0xe9,0x1c,0x20,0x9,0x10,0x6c,0x20,0x9,0xc8,0xfe,0x20,0xa, - 0xf0,0x4e,0x20,0xb,0xb2,0x1a,0xa0,0xc,0xd0,0x30,0x20,0xd,0x91,0xfc,0xa0,0xe, - 0xb0,0x12,0x20,0xf,0x71,0xde,0xa0,0x10,0x99,0x2e,0xa0,0x11,0x51,0xc0,0xa0,0x12, - 0x79,0x10,0xa0,0x13,0x31,0xa2,0xa0,0x14,0x58,0xf2,0xa0,0x15,0x23,0xeb,0x90,0x16, - 0x38,0xc6,0x90,0x17,0x3,0xcd,0x90,0x18,0x18,0xa8,0x90,0x18,0xe3,0xaf,0x90,0x19, - 0xf8,0x8a,0x90,0x1a,0xc3,0x91,0x90,0x1b,0xe1,0xa7,0x10,0x1c,0xac,0xae,0x10,0x1d, - 0xc1,0x89,0x10,0x1e,0x8c,0x90,0x10,0x1f,0xa1,0x6b,0x10,0x20,0x6c,0x72,0x10,0x21, - 0x81,0x4d,0x10,0x22,0x4c,0x54,0x10,0x23,0x61,0x2f,0x10,0x24,0x2c,0x36,0x10,0x25, - 0x4a,0x4b,0x90,0x26,0xc,0x18,0x10,0x27,0x2a,0x2d,0x90,0x27,0xf5,0x34,0x90,0x29, - 0xa,0xf,0x90,0x29,0xd5,0x16,0x90,0x2a,0xe9,0xf1,0x90,0x2b,0xb4,0xf8,0x90,0x2c, - 0xc9,0xd3,0x90,0x2d,0x94,0xda,0x90,0x2e,0xa9,0xb5,0x90,0x2f,0x74,0xbc,0x90,0x30, - 0x89,0x97,0x90,0x30,0xe7,0x24,0x0,0x31,0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33, - 0x3d,0xbb,0x10,0x34,0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36, - 0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a, - 0xbd,0x43,0x10,0x3b,0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e, - 0x86,0x41,0x90,0x3f,0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42, - 0x46,0x5,0x90,0x43,0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46, - 0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49, - 0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d, - 0x8e,0x8c,0x10,0x4e,0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51, - 0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55, - 0x17,0x4e,0x90,0x56,0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58, - 0xd7,0x12,0x90,0x59,0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c, - 0xa0,0x11,0x10,0x5d,0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60, - 0x5f,0xd5,0x10,0x61,0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64, - 0x1f,0x99,0x10,0x65,0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67, - 0xe8,0x97,0x90,0x68,0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b, - 0xa8,0x5b,0x90,0x6c,0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f, - 0x68,0x1f,0x90,0x70,0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73, - 0x31,0x1e,0x10,0x74,0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76, - 0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a, - 0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e, - 0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3, - 0x1,0x3,0x1,0x2,0x1,0x2,0x1,0x3,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x4,0x6,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x7,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x8f,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x1e,0x80,0x0,0x0,0x0,0xcb, + 0x89,0x28,0xb0,0xd2,0x23,0xf4,0x70,0xd2,0x61,0x34,0x20,0xfe,0xb8,0x55,0x30,0xff, + 0xa8,0x38,0x20,0x0,0x98,0x37,0x30,0x1,0x88,0x1a,0x20,0x2,0x78,0x19,0x30,0x3, + 0x71,0x36,0xa0,0x4,0x61,0x35,0xb0,0x5,0x51,0x18,0xa0,0x6,0x41,0x17,0xb0,0x7, + 0x30,0xfa,0xa0,0x7,0x8d,0x51,0xb0,0x9,0x10,0xdc,0xa0,0x9,0xad,0xcd,0x30,0xa, + 0xf0,0xbe,0xa0,0xb,0xe0,0xbd,0xb0,0xc,0xd9,0xdb,0x20,0xd,0xc0,0x9f,0xb0,0xe, + 0xb9,0xbd,0x20,0xf,0xa9,0xbc,0x30,0x10,0x99,0x9f,0x20,0x11,0x89,0x9e,0x30,0x12, + 0x79,0x81,0x20,0x13,0x69,0x80,0x30,0x14,0x59,0x63,0x20,0x15,0x49,0x62,0x30,0x16, + 0x39,0x45,0x20,0x17,0x29,0x44,0x30,0x18,0x22,0x61,0xa0,0x19,0x9,0x26,0x30,0x1a, + 0x2,0x43,0xa0,0x1a,0x2b,0x14,0x10,0x1a,0xf2,0x42,0xb0,0x1b,0xe2,0x25,0xa0,0x1c, + 0xd2,0x24,0xb0,0x1d,0xc2,0x7,0xa0,0x1e,0xb2,0x6,0xb0,0x1f,0xa1,0xe9,0xa0,0x20, + 0x76,0x39,0x30,0x21,0x81,0xcb,0xa0,0x22,0x56,0x1b,0x30,0x23,0x6a,0xe8,0x20,0x24, + 0x35,0xfd,0x30,0x25,0x4a,0xca,0x20,0x26,0x15,0xdf,0x30,0x27,0x2a,0xac,0x20,0x27, + 0xfe,0xfb,0xb0,0x29,0xa,0x8e,0x20,0x29,0xde,0xdd,0xb0,0x2a,0xea,0x70,0x20,0x2b, + 0xbe,0xbf,0xb0,0x2c,0xd3,0x8c,0xa0,0x2d,0x9e,0xa1,0xb0,0x2e,0xb3,0x6e,0xa0,0x2f, + 0x7e,0x83,0xb0,0x30,0x93,0x50,0xa0,0x31,0x67,0xa0,0x30,0x32,0x73,0x32,0xa0,0x33, + 0x47,0x82,0x30,0x34,0x53,0x14,0xa0,0x35,0x27,0x64,0x30,0x36,0x32,0xf6,0xa0,0x37, + 0x7,0x46,0x30,0x38,0x1c,0x13,0x20,0x38,0xe7,0x28,0x30,0x39,0xfb,0xf5,0x20,0x3a, + 0xc7,0xa,0x30,0x3b,0xdb,0xd7,0x20,0x3c,0xb0,0x26,0xb0,0x3d,0xbb,0xb9,0x20,0x3e, + 0x90,0x8,0xb0,0x3f,0x9b,0x9b,0x20,0x40,0x6f,0xea,0xb0,0x41,0x84,0xb7,0xa0,0x42, + 0x4f,0xcc,0xb0,0x43,0x64,0x99,0xa0,0x44,0x2f,0xae,0xb0,0x45,0x44,0x7b,0xa0,0x45, + 0xf3,0xe1,0x30,0x47,0x2d,0x98,0x20,0x47,0xd3,0xc3,0x30,0x49,0xd,0x7a,0x20,0x49, + 0xb3,0xa5,0x30,0x4a,0xed,0x5c,0x20,0x4b,0x9c,0xc1,0xb0,0x4c,0xd6,0x78,0xa0,0x4d, + 0x7c,0xa3,0xb0,0x4e,0xb6,0x5a,0xa0,0x4f,0x5c,0x85,0xb0,0x50,0x96,0x3c,0xa0,0x51, + 0x3c,0x67,0xb0,0x52,0x76,0x1e,0xa0,0x53,0x1c,0x49,0xb0,0x54,0x56,0x0,0xa0,0x54, + 0xfc,0x2b,0xb0,0x56,0x35,0xe2,0xa0,0x56,0xe5,0x48,0x30,0x58,0x1e,0xff,0x20,0x58, + 0xc5,0x2a,0x30,0x59,0xfe,0xe1,0x20,0x5a,0xa5,0xc,0x30,0x5b,0xde,0xc3,0x20,0x5c, + 0x84,0xee,0x30,0x5d,0xbe,0xa5,0x20,0x5e,0x64,0xd0,0x30,0x5f,0x9e,0x87,0x20,0x60, + 0x4d,0xec,0xb0,0x61,0x87,0xa3,0xa0,0x62,0x2d,0xce,0xb0,0x63,0x67,0x85,0xa0,0x64, + 0xd,0xb0,0xb0,0x65,0x47,0x67,0xa0,0x65,0xed,0x92,0xb0,0x67,0x27,0x49,0xa0,0x67, + 0xcd,0x74,0xb0,0x69,0x7,0x2b,0xa0,0x69,0xad,0x56,0xb0,0x6a,0xe7,0xd,0xa0,0x6b, + 0x96,0x73,0x30,0x6c,0xd0,0x2a,0x20,0x6d,0x76,0x55,0x30,0x6e,0xb0,0xc,0x20,0x6f, + 0x56,0x37,0x30,0x70,0x8f,0xee,0x20,0x71,0x36,0x19,0x30,0x72,0x6f,0xd0,0x20,0x73, + 0x15,0xfb,0x30,0x74,0x4f,0xb2,0x20,0x74,0xff,0x17,0xb0,0x76,0x38,0xce,0xa0,0x76, + 0xde,0xf9,0xb0,0x78,0x18,0xb0,0xa0,0x78,0xbe,0xdb,0xb0,0x79,0xf8,0x92,0xa0,0x7a, + 0x9e,0xbd,0xb0,0x7b,0xd8,0x74,0xa0,0x7c,0x7e,0x9f,0xb0,0x7d,0xb8,0x56,0xa0,0x7e, + 0x5e,0x81,0xb0,0x7f,0x98,0x38,0xa0,0x1,0x2,0x3,0x1,0x4,0x1,0x4,0x1,0x4, + 0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4, + 0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x6,0x5,0x6,0x5,0x6,0x5,0x6, 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0xff,0xff,0xff,0xb5,0x0,0x0, - 0x0,0x0,0xe,0x10,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x1c,0x20, - 0x1,0xc,0x0,0x0,0xe,0x10,0x0,0x4,0x0,0x0,0xe,0x10,0x1,0x4,0x0,0x0, - 0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x42,0x53, - 0x54,0x0,0x47,0x4d,0x54,0x0,0x42,0x44,0x53,0x54,0x0,0x0,0x1,0x1,0x1,0x0, - 0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x54,0x5a,0x69,0x66,0x32, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf4,0x0, - 0x0,0x0,0x8,0x0,0x0,0x0,0x11,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff, - 0xff,0xff,0xff,0x1a,0x5d,0x9,0xcb,0xff,0xff,0xff,0xff,0x9b,0x26,0xad,0xa0,0xff, - 0xff,0xff,0xff,0x9b,0xd6,0x5,0x20,0xff,0xff,0xff,0xff,0x9c,0xcf,0x30,0xa0,0xff, - 0xff,0xff,0xff,0x9d,0xa4,0xc3,0xa0,0xff,0xff,0xff,0xff,0x9e,0x9c,0x9d,0xa0,0xff, - 0xff,0xff,0xff,0x9f,0x97,0x1a,0xa0,0xff,0xff,0xff,0xff,0xa0,0x85,0xba,0x20,0xff, - 0xff,0xff,0xff,0xa1,0x76,0xfc,0xa0,0xff,0xff,0xff,0xff,0xa2,0x65,0x9c,0x20,0xff, - 0xff,0xff,0xff,0xa3,0x7b,0xc8,0xa0,0xff,0xff,0xff,0xff,0xa4,0x4e,0xb8,0xa0,0xff, - 0xff,0xff,0xff,0xa5,0x3f,0xfb,0x20,0xff,0xff,0xff,0xff,0xa6,0x25,0x60,0x20,0xff, - 0xff,0xff,0xff,0xa7,0x27,0xc6,0x20,0xff,0xff,0xff,0xff,0xa8,0x2a,0x2c,0x20,0xff, - 0xff,0xff,0xff,0xa8,0xeb,0xf8,0xa0,0xff,0xff,0xff,0xff,0xaa,0x0,0xd3,0xa0,0xff, - 0xff,0xff,0xff,0xaa,0xd5,0x15,0x20,0xff,0xff,0xff,0xff,0xab,0xe9,0xf0,0x20,0xff, - 0xff,0xff,0xff,0xac,0xc7,0x6c,0x20,0xff,0xff,0xff,0xff,0xad,0xc9,0xd2,0x20,0xff, - 0xff,0xff,0xff,0xae,0xa7,0x4e,0x20,0xff,0xff,0xff,0xff,0xaf,0xa0,0x79,0xa0,0xff, - 0xff,0xff,0xff,0xb0,0x87,0x30,0x20,0xff,0xff,0xff,0xff,0xb1,0x92,0xd0,0xa0,0xff, - 0xff,0xff,0xff,0xb2,0x70,0x4c,0xa0,0xff,0xff,0xff,0xff,0xb3,0x72,0xb2,0xa0,0xff, - 0xff,0xff,0xff,0xb4,0x50,0x2e,0xa0,0xff,0xff,0xff,0xff,0xb5,0x49,0x5a,0x20,0xff, - 0xff,0xff,0xff,0xb6,0x30,0x10,0xa0,0xff,0xff,0xff,0xff,0xb7,0x32,0x76,0xa0,0xff, - 0xff,0xff,0xff,0xb8,0xf,0xf2,0xa0,0xff,0xff,0xff,0xff,0xb9,0x12,0x58,0xa0,0xff, - 0xff,0xff,0xff,0xb9,0xef,0xd4,0xa0,0xff,0xff,0xff,0xff,0xba,0xe9,0x0,0x20,0xff, - 0xff,0xff,0xff,0xbb,0xd8,0xf1,0x20,0xff,0xff,0xff,0xff,0xbc,0xdb,0x57,0x20,0xff, - 0xff,0xff,0xff,0xbd,0xb8,0xd3,0x20,0xff,0xff,0xff,0xff,0xbe,0xb1,0xfe,0xa0,0xff, - 0xff,0xff,0xff,0xbf,0x98,0xb5,0x20,0xff,0xff,0xff,0xff,0xc0,0x9b,0x1b,0x20,0xff, - 0xff,0xff,0xff,0xc1,0x78,0x97,0x20,0xff,0xff,0xff,0xff,0xc2,0x7a,0xfd,0x20,0xff, - 0xff,0xff,0xff,0xc3,0x58,0x79,0x20,0xff,0xff,0xff,0xff,0xc4,0x51,0xa4,0xa0,0xff, - 0xff,0xff,0xff,0xc5,0x38,0x5b,0x20,0xff,0xff,0xff,0xff,0xc6,0x3a,0xc1,0x20,0xff, - 0xff,0xff,0xff,0xc7,0x58,0xd6,0xa0,0xff,0xff,0xff,0xff,0xc7,0xda,0x9,0xa0,0xff, - 0xff,0xff,0xff,0xca,0x16,0x26,0x90,0xff,0xff,0xff,0xff,0xca,0x97,0x59,0x90,0xff, - 0xff,0xff,0xff,0xcb,0xd1,0x1e,0x90,0xff,0xff,0xff,0xff,0xcc,0x77,0x3b,0x90,0xff, - 0xff,0xff,0xff,0xcd,0xb1,0x0,0x90,0xff,0xff,0xff,0xff,0xce,0x60,0x58,0x10,0xff, - 0xff,0xff,0xff,0xcf,0x90,0xe2,0x90,0xff,0xff,0xff,0xff,0xd0,0x6e,0x5e,0x90,0xff, - 0xff,0xff,0xff,0xd1,0x72,0x16,0x10,0xff,0xff,0xff,0xff,0xd1,0xfb,0x32,0x10,0xff, - 0xff,0xff,0xff,0xd2,0x69,0xfe,0x20,0xff,0xff,0xff,0xff,0xd3,0x63,0x29,0xa0,0xff, - 0xff,0xff,0xff,0xd4,0x49,0xe0,0x20,0xff,0xff,0xff,0xff,0xd5,0x1e,0x21,0xa0,0xff, - 0xff,0xff,0xff,0xd5,0x42,0xfd,0x90,0xff,0xff,0xff,0xff,0xd5,0xdf,0xe0,0x10,0xff, - 0xff,0xff,0xff,0xd6,0x4e,0xac,0x20,0xff,0xff,0xff,0xff,0xd6,0xfe,0x3,0xa0,0xff, - 0xff,0xff,0xff,0xd8,0x2e,0x8e,0x20,0xff,0xff,0xff,0xff,0xd8,0xf9,0x95,0x20,0xff, - 0xff,0xff,0xff,0xda,0xe,0x70,0x20,0xff,0xff,0xff,0xff,0xda,0xeb,0xec,0x20,0xff, - 0xff,0xff,0xff,0xdb,0xe5,0x17,0xa0,0xff,0xff,0xff,0xff,0xdc,0xcb,0xce,0x20,0xff, - 0xff,0xff,0xff,0xdd,0xc4,0xf9,0xa0,0xff,0xff,0xff,0xff,0xde,0xb4,0xea,0xa0,0xff, - 0xff,0xff,0xff,0xdf,0xae,0x16,0x20,0xff,0xff,0xff,0xff,0xe0,0x94,0xcc,0xa0,0xff, - 0xff,0xff,0xff,0xe1,0x72,0x48,0xa0,0xff,0xff,0xff,0xff,0xe2,0x6b,0x74,0x20,0xff, - 0xff,0xff,0xff,0xe3,0x52,0x2a,0xa0,0xff,0xff,0xff,0xff,0xe4,0x54,0x90,0xa0,0xff, - 0xff,0xff,0xff,0xe5,0x32,0xc,0xa0,0xff,0xff,0xff,0xff,0xe6,0x3d,0xad,0x20,0xff, - 0xff,0xff,0xff,0xe7,0x1b,0x29,0x20,0xff,0xff,0xff,0xff,0xe8,0x14,0x54,0xa0,0xff, - 0xff,0xff,0xff,0xe8,0xfb,0xb,0x20,0xff,0xff,0xff,0xff,0xe9,0xfd,0x71,0x20,0xff, - 0xff,0xff,0xff,0xea,0xda,0xed,0x20,0xff,0xff,0xff,0xff,0xeb,0xdd,0x53,0x20,0xff, - 0xff,0xff,0xff,0xec,0xba,0xcf,0x20,0xff,0xff,0xff,0xff,0xed,0xb3,0xfa,0xa0,0xff, - 0xff,0xff,0xff,0xee,0x9a,0xb1,0x20,0xff,0xff,0xff,0xff,0xef,0x81,0x67,0xa0,0xff, - 0xff,0xff,0xff,0xf0,0x9f,0x7d,0x20,0xff,0xff,0xff,0xff,0xf1,0x61,0x49,0xa0,0xff, - 0xff,0xff,0xff,0xf2,0x7f,0x5f,0x20,0xff,0xff,0xff,0xff,0xf3,0x4a,0x66,0x20,0xff, - 0xff,0xff,0xff,0xf4,0x5f,0x41,0x20,0xff,0xff,0xff,0xff,0xf5,0x21,0xd,0xa0,0xff, - 0xff,0xff,0xff,0xf6,0x3f,0x23,0x20,0xff,0xff,0xff,0xff,0xf7,0x0,0xef,0xa0,0xff, - 0xff,0xff,0xff,0xf8,0x1f,0x5,0x20,0xff,0xff,0xff,0xff,0xf8,0xe0,0xd1,0xa0,0xff, - 0xff,0xff,0xff,0xf9,0xfe,0xe7,0x20,0xff,0xff,0xff,0xff,0xfa,0xc0,0xb3,0xa0,0xff, - 0xff,0xff,0xff,0xfb,0xe8,0x3,0xa0,0xff,0xff,0xff,0xff,0xfc,0x7b,0xab,0xa0,0xff, - 0xff,0xff,0xff,0xfd,0xc7,0xbb,0x70,0x0,0x0,0x0,0x0,0x3,0x70,0xc6,0x20,0x0, - 0x0,0x0,0x0,0x4,0x29,0x58,0x20,0x0,0x0,0x0,0x0,0x5,0x50,0xa8,0x20,0x0, - 0x0,0x0,0x0,0x6,0x9,0x3a,0x20,0x0,0x0,0x0,0x0,0x7,0x30,0x8a,0x20,0x0, - 0x0,0x0,0x0,0x7,0xe9,0x1c,0x20,0x0,0x0,0x0,0x0,0x9,0x10,0x6c,0x20,0x0, - 0x0,0x0,0x0,0x9,0xc8,0xfe,0x20,0x0,0x0,0x0,0x0,0xa,0xf0,0x4e,0x20,0x0, - 0x0,0x0,0x0,0xb,0xb2,0x1a,0xa0,0x0,0x0,0x0,0x0,0xc,0xd0,0x30,0x20,0x0, - 0x0,0x0,0x0,0xd,0x91,0xfc,0xa0,0x0,0x0,0x0,0x0,0xe,0xb0,0x12,0x20,0x0, - 0x0,0x0,0x0,0xf,0x71,0xde,0xa0,0x0,0x0,0x0,0x0,0x10,0x99,0x2e,0xa0,0x0, - 0x0,0x0,0x0,0x11,0x51,0xc0,0xa0,0x0,0x0,0x0,0x0,0x12,0x79,0x10,0xa0,0x0, - 0x0,0x0,0x0,0x13,0x31,0xa2,0xa0,0x0,0x0,0x0,0x0,0x14,0x58,0xf2,0xa0,0x0, - 0x0,0x0,0x0,0x15,0x23,0xeb,0x90,0x0,0x0,0x0,0x0,0x16,0x38,0xc6,0x90,0x0, - 0x0,0x0,0x0,0x17,0x3,0xcd,0x90,0x0,0x0,0x0,0x0,0x18,0x18,0xa8,0x90,0x0, - 0x0,0x0,0x0,0x18,0xe3,0xaf,0x90,0x0,0x0,0x0,0x0,0x19,0xf8,0x8a,0x90,0x0, - 0x0,0x0,0x0,0x1a,0xc3,0x91,0x90,0x0,0x0,0x0,0x0,0x1b,0xe1,0xa7,0x10,0x0, - 0x0,0x0,0x0,0x1c,0xac,0xae,0x10,0x0,0x0,0x0,0x0,0x1d,0xc1,0x89,0x10,0x0, - 0x0,0x0,0x0,0x1e,0x8c,0x90,0x10,0x0,0x0,0x0,0x0,0x1f,0xa1,0x6b,0x10,0x0, - 0x0,0x0,0x0,0x20,0x6c,0x72,0x10,0x0,0x0,0x0,0x0,0x21,0x81,0x4d,0x10,0x0, - 0x0,0x0,0x0,0x22,0x4c,0x54,0x10,0x0,0x0,0x0,0x0,0x23,0x61,0x2f,0x10,0x0, - 0x0,0x0,0x0,0x24,0x2c,0x36,0x10,0x0,0x0,0x0,0x0,0x25,0x4a,0x4b,0x90,0x0, - 0x0,0x0,0x0,0x26,0xc,0x18,0x10,0x0,0x0,0x0,0x0,0x27,0x2a,0x2d,0x90,0x0, - 0x0,0x0,0x0,0x27,0xf5,0x34,0x90,0x0,0x0,0x0,0x0,0x29,0xa,0xf,0x90,0x0, - 0x0,0x0,0x0,0x29,0xd5,0x16,0x90,0x0,0x0,0x0,0x0,0x2a,0xe9,0xf1,0x90,0x0, - 0x0,0x0,0x0,0x2b,0xb4,0xf8,0x90,0x0,0x0,0x0,0x0,0x2c,0xc9,0xd3,0x90,0x0, - 0x0,0x0,0x0,0x2d,0x94,0xda,0x90,0x0,0x0,0x0,0x0,0x2e,0xa9,0xb5,0x90,0x0, - 0x0,0x0,0x0,0x2f,0x74,0xbc,0x90,0x0,0x0,0x0,0x0,0x30,0x89,0x97,0x90,0x0, - 0x0,0x0,0x0,0x30,0xe7,0x24,0x0,0x0,0x0,0x0,0x0,0x31,0x5d,0xd9,0x10,0x0, - 0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d,0xbb,0x10,0x0, - 0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d,0x9d,0x10,0x0, - 0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd,0x7f,0x10,0x0, - 0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd,0x61,0x10,0x0, - 0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd,0x43,0x10,0x0, - 0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f,0x90,0x0, - 0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86,0x41,0x90,0x0, - 0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66,0x23,0x90,0x0, - 0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46,0x5,0x90,0x0, - 0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25,0xe7,0x90,0x0, - 0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5,0xc9,0x90,0x0, - 0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee,0xe6,0x10,0x0, - 0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce,0xc8,0x10,0x0, - 0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae,0xaa,0x10,0x0, - 0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c,0x10,0x0, - 0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e,0x10,0x0, - 0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57,0x8a,0x90,0x0, - 0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37,0x6c,0x90,0x0, - 0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17,0x4e,0x90,0x0, - 0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7,0x30,0x90,0x0, - 0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7,0x12,0x90,0x0, - 0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4,0x90,0x0, - 0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0,0x11,0x10,0x0, - 0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3,0x10,0x0, - 0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f,0xd5,0x10,0x0, - 0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f,0xb7,0x10,0x0, - 0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f,0x99,0x10,0x0, - 0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8,0xb5,0x90,0x0, - 0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8,0x97,0x90,0x0, - 0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8,0x79,0x90,0x0, - 0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b,0x90,0x0, - 0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88,0x3d,0x90,0x0, - 0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68,0x1f,0x90,0x0, - 0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51,0x3c,0x10,0x0, - 0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31,0x1e,0x10,0x0, - 0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11,0x0,0x10,0x0, - 0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0,0xe2,0x10,0x0, - 0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0,0xc4,0x10,0x0, - 0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6,0x10,0x0, - 0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99,0xc2,0x90,0x0, - 0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79,0xa4,0x90,0x0, - 0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x3,0x1,0x3,0x1,0x3,0x1, - 0x3,0x1,0x3,0x1,0x2,0x1,0x2,0x1,0x3,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x4,0x6,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x7,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0xff,0xff,0xff,0xb5,0x0, - 0x0,0x0,0x0,0xe,0x10,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x1c, - 0x20,0x1,0xc,0x0,0x0,0xe,0x10,0x0,0x4,0x0,0x0,0xe,0x10,0x1,0x4,0x0, - 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x42, - 0x53,0x54,0x0,0x47,0x4d,0x54,0x0,0x42,0x44,0x53,0x54,0x0,0x0,0x1,0x1,0x1, - 0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0xa,0x47,0x4d,0x54, - 0x30,0x42,0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2f,0x31,0x2c,0x4d,0x31, - 0x30,0x2e,0x35,0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Amsterdam - 0x0,0x0,0xb,0x7f, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0xff,0xff,0x7d,0x1,0x0,0x0,0xff,0xff,0x81,0x70, + 0x0,0x4,0xff,0xff,0x8f,0x80,0x1,0x8,0xff,0xff,0x8f,0x80,0x1,0xc,0xff,0xff, + 0x8f,0x80,0x1,0x10,0xff,0xff,0x8f,0x80,0x1,0x14,0xff,0xff,0x81,0x70,0x0,0x19, + 0x4c,0x4d,0x54,0x0,0x59,0x53,0x54,0x0,0x59,0x57,0x54,0x0,0x59,0x50,0x54,0x0, + 0x59,0x44,0x54,0x0,0x41,0x4b,0x44,0x54,0x0,0x41,0x4b,0x53,0x54,0x0,0x0,0x0, + 0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x54,0x5a,0x69,0x66, + 0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91, + 0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x1e,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0x3f,0xc2,0xfd,0xd1,0xff,0xff,0xff,0xff,0x7d,0x87,0x37,0xbf, + 0xff,0xff,0xff,0xff,0xcb,0x89,0x28,0xb0,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70, + 0xff,0xff,0xff,0xff,0xd2,0x61,0x34,0x20,0xff,0xff,0xff,0xff,0xfe,0xb8,0x55,0x30, + 0xff,0xff,0xff,0xff,0xff,0xa8,0x38,0x20,0x0,0x0,0x0,0x0,0x0,0x98,0x37,0x30, + 0x0,0x0,0x0,0x0,0x1,0x88,0x1a,0x20,0x0,0x0,0x0,0x0,0x2,0x78,0x19,0x30, + 0x0,0x0,0x0,0x0,0x3,0x71,0x36,0xa0,0x0,0x0,0x0,0x0,0x4,0x61,0x35,0xb0, + 0x0,0x0,0x0,0x0,0x5,0x51,0x18,0xa0,0x0,0x0,0x0,0x0,0x6,0x41,0x17,0xb0, + 0x0,0x0,0x0,0x0,0x7,0x30,0xfa,0xa0,0x0,0x0,0x0,0x0,0x7,0x8d,0x51,0xb0, + 0x0,0x0,0x0,0x0,0x9,0x10,0xdc,0xa0,0x0,0x0,0x0,0x0,0x9,0xad,0xcd,0x30, + 0x0,0x0,0x0,0x0,0xa,0xf0,0xbe,0xa0,0x0,0x0,0x0,0x0,0xb,0xe0,0xbd,0xb0, + 0x0,0x0,0x0,0x0,0xc,0xd9,0xdb,0x20,0x0,0x0,0x0,0x0,0xd,0xc0,0x9f,0xb0, + 0x0,0x0,0x0,0x0,0xe,0xb9,0xbd,0x20,0x0,0x0,0x0,0x0,0xf,0xa9,0xbc,0x30, + 0x0,0x0,0x0,0x0,0x10,0x99,0x9f,0x20,0x0,0x0,0x0,0x0,0x11,0x89,0x9e,0x30, + 0x0,0x0,0x0,0x0,0x12,0x79,0x81,0x20,0x0,0x0,0x0,0x0,0x13,0x69,0x80,0x30, + 0x0,0x0,0x0,0x0,0x14,0x59,0x63,0x20,0x0,0x0,0x0,0x0,0x15,0x49,0x62,0x30, + 0x0,0x0,0x0,0x0,0x16,0x39,0x45,0x20,0x0,0x0,0x0,0x0,0x17,0x29,0x44,0x30, + 0x0,0x0,0x0,0x0,0x18,0x22,0x61,0xa0,0x0,0x0,0x0,0x0,0x19,0x9,0x26,0x30, + 0x0,0x0,0x0,0x0,0x1a,0x2,0x43,0xa0,0x0,0x0,0x0,0x0,0x1a,0x2b,0x14,0x10, + 0x0,0x0,0x0,0x0,0x1a,0xf2,0x42,0xb0,0x0,0x0,0x0,0x0,0x1b,0xe2,0x25,0xa0, + 0x0,0x0,0x0,0x0,0x1c,0xd2,0x24,0xb0,0x0,0x0,0x0,0x0,0x1d,0xc2,0x7,0xa0, + 0x0,0x0,0x0,0x0,0x1e,0xb2,0x6,0xb0,0x0,0x0,0x0,0x0,0x1f,0xa1,0xe9,0xa0, + 0x0,0x0,0x0,0x0,0x20,0x76,0x39,0x30,0x0,0x0,0x0,0x0,0x21,0x81,0xcb,0xa0, + 0x0,0x0,0x0,0x0,0x22,0x56,0x1b,0x30,0x0,0x0,0x0,0x0,0x23,0x6a,0xe8,0x20, + 0x0,0x0,0x0,0x0,0x24,0x35,0xfd,0x30,0x0,0x0,0x0,0x0,0x25,0x4a,0xca,0x20, + 0x0,0x0,0x0,0x0,0x26,0x15,0xdf,0x30,0x0,0x0,0x0,0x0,0x27,0x2a,0xac,0x20, + 0x0,0x0,0x0,0x0,0x27,0xfe,0xfb,0xb0,0x0,0x0,0x0,0x0,0x29,0xa,0x8e,0x20, + 0x0,0x0,0x0,0x0,0x29,0xde,0xdd,0xb0,0x0,0x0,0x0,0x0,0x2a,0xea,0x70,0x20, + 0x0,0x0,0x0,0x0,0x2b,0xbe,0xbf,0xb0,0x0,0x0,0x0,0x0,0x2c,0xd3,0x8c,0xa0, + 0x0,0x0,0x0,0x0,0x2d,0x9e,0xa1,0xb0,0x0,0x0,0x0,0x0,0x2e,0xb3,0x6e,0xa0, + 0x0,0x0,0x0,0x0,0x2f,0x7e,0x83,0xb0,0x0,0x0,0x0,0x0,0x30,0x93,0x50,0xa0, + 0x0,0x0,0x0,0x0,0x31,0x67,0xa0,0x30,0x0,0x0,0x0,0x0,0x32,0x73,0x32,0xa0, + 0x0,0x0,0x0,0x0,0x33,0x47,0x82,0x30,0x0,0x0,0x0,0x0,0x34,0x53,0x14,0xa0, + 0x0,0x0,0x0,0x0,0x35,0x27,0x64,0x30,0x0,0x0,0x0,0x0,0x36,0x32,0xf6,0xa0, + 0x0,0x0,0x0,0x0,0x37,0x7,0x46,0x30,0x0,0x0,0x0,0x0,0x38,0x1c,0x13,0x20, + 0x0,0x0,0x0,0x0,0x38,0xe7,0x28,0x30,0x0,0x0,0x0,0x0,0x39,0xfb,0xf5,0x20, + 0x0,0x0,0x0,0x0,0x3a,0xc7,0xa,0x30,0x0,0x0,0x0,0x0,0x3b,0xdb,0xd7,0x20, + 0x0,0x0,0x0,0x0,0x3c,0xb0,0x26,0xb0,0x0,0x0,0x0,0x0,0x3d,0xbb,0xb9,0x20, + 0x0,0x0,0x0,0x0,0x3e,0x90,0x8,0xb0,0x0,0x0,0x0,0x0,0x3f,0x9b,0x9b,0x20, + 0x0,0x0,0x0,0x0,0x40,0x6f,0xea,0xb0,0x0,0x0,0x0,0x0,0x41,0x84,0xb7,0xa0, + 0x0,0x0,0x0,0x0,0x42,0x4f,0xcc,0xb0,0x0,0x0,0x0,0x0,0x43,0x64,0x99,0xa0, + 0x0,0x0,0x0,0x0,0x44,0x2f,0xae,0xb0,0x0,0x0,0x0,0x0,0x45,0x44,0x7b,0xa0, + 0x0,0x0,0x0,0x0,0x45,0xf3,0xe1,0x30,0x0,0x0,0x0,0x0,0x47,0x2d,0x98,0x20, + 0x0,0x0,0x0,0x0,0x47,0xd3,0xc3,0x30,0x0,0x0,0x0,0x0,0x49,0xd,0x7a,0x20, + 0x0,0x0,0x0,0x0,0x49,0xb3,0xa5,0x30,0x0,0x0,0x0,0x0,0x4a,0xed,0x5c,0x20, + 0x0,0x0,0x0,0x0,0x4b,0x9c,0xc1,0xb0,0x0,0x0,0x0,0x0,0x4c,0xd6,0x78,0xa0, + 0x0,0x0,0x0,0x0,0x4d,0x7c,0xa3,0xb0,0x0,0x0,0x0,0x0,0x4e,0xb6,0x5a,0xa0, + 0x0,0x0,0x0,0x0,0x4f,0x5c,0x85,0xb0,0x0,0x0,0x0,0x0,0x50,0x96,0x3c,0xa0, + 0x0,0x0,0x0,0x0,0x51,0x3c,0x67,0xb0,0x0,0x0,0x0,0x0,0x52,0x76,0x1e,0xa0, + 0x0,0x0,0x0,0x0,0x53,0x1c,0x49,0xb0,0x0,0x0,0x0,0x0,0x54,0x56,0x0,0xa0, + 0x0,0x0,0x0,0x0,0x54,0xfc,0x2b,0xb0,0x0,0x0,0x0,0x0,0x56,0x35,0xe2,0xa0, + 0x0,0x0,0x0,0x0,0x56,0xe5,0x48,0x30,0x0,0x0,0x0,0x0,0x58,0x1e,0xff,0x20, + 0x0,0x0,0x0,0x0,0x58,0xc5,0x2a,0x30,0x0,0x0,0x0,0x0,0x59,0xfe,0xe1,0x20, + 0x0,0x0,0x0,0x0,0x5a,0xa5,0xc,0x30,0x0,0x0,0x0,0x0,0x5b,0xde,0xc3,0x20, + 0x0,0x0,0x0,0x0,0x5c,0x84,0xee,0x30,0x0,0x0,0x0,0x0,0x5d,0xbe,0xa5,0x20, + 0x0,0x0,0x0,0x0,0x5e,0x64,0xd0,0x30,0x0,0x0,0x0,0x0,0x5f,0x9e,0x87,0x20, + 0x0,0x0,0x0,0x0,0x60,0x4d,0xec,0xb0,0x0,0x0,0x0,0x0,0x61,0x87,0xa3,0xa0, + 0x0,0x0,0x0,0x0,0x62,0x2d,0xce,0xb0,0x0,0x0,0x0,0x0,0x63,0x67,0x85,0xa0, + 0x0,0x0,0x0,0x0,0x64,0xd,0xb0,0xb0,0x0,0x0,0x0,0x0,0x65,0x47,0x67,0xa0, + 0x0,0x0,0x0,0x0,0x65,0xed,0x92,0xb0,0x0,0x0,0x0,0x0,0x67,0x27,0x49,0xa0, + 0x0,0x0,0x0,0x0,0x67,0xcd,0x74,0xb0,0x0,0x0,0x0,0x0,0x69,0x7,0x2b,0xa0, + 0x0,0x0,0x0,0x0,0x69,0xad,0x56,0xb0,0x0,0x0,0x0,0x0,0x6a,0xe7,0xd,0xa0, + 0x0,0x0,0x0,0x0,0x6b,0x96,0x73,0x30,0x0,0x0,0x0,0x0,0x6c,0xd0,0x2a,0x20, + 0x0,0x0,0x0,0x0,0x6d,0x76,0x55,0x30,0x0,0x0,0x0,0x0,0x6e,0xb0,0xc,0x20, + 0x0,0x0,0x0,0x0,0x6f,0x56,0x37,0x30,0x0,0x0,0x0,0x0,0x70,0x8f,0xee,0x20, + 0x0,0x0,0x0,0x0,0x71,0x36,0x19,0x30,0x0,0x0,0x0,0x0,0x72,0x6f,0xd0,0x20, + 0x0,0x0,0x0,0x0,0x73,0x15,0xfb,0x30,0x0,0x0,0x0,0x0,0x74,0x4f,0xb2,0x20, + 0x0,0x0,0x0,0x0,0x74,0xff,0x17,0xb0,0x0,0x0,0x0,0x0,0x76,0x38,0xce,0xa0, + 0x0,0x0,0x0,0x0,0x76,0xde,0xf9,0xb0,0x0,0x0,0x0,0x0,0x78,0x18,0xb0,0xa0, + 0x0,0x0,0x0,0x0,0x78,0xbe,0xdb,0xb0,0x0,0x0,0x0,0x0,0x79,0xf8,0x92,0xa0, + 0x0,0x0,0x0,0x0,0x7a,0x9e,0xbd,0xb0,0x0,0x0,0x0,0x0,0x7b,0xd8,0x74,0xa0, + 0x0,0x0,0x0,0x0,0x7c,0x7e,0x9f,0xb0,0x0,0x0,0x0,0x0,0x7d,0xb8,0x56,0xa0, + 0x0,0x0,0x0,0x0,0x7e,0x5e,0x81,0xb0,0x0,0x0,0x0,0x0,0x7f,0x98,0x38,0xa0, + 0x0,0x1,0x2,0x3,0x4,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2, + 0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2, + 0x5,0x2,0x5,0x2,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, + 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, + 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, + 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, + 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, + 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, + 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, + 0x7,0x0,0x0,0xce,0x81,0x0,0x0,0xff,0xff,0x7d,0x1,0x0,0x0,0xff,0xff,0x81, + 0x70,0x0,0x4,0xff,0xff,0x8f,0x80,0x1,0x8,0xff,0xff,0x8f,0x80,0x1,0xc,0xff, + 0xff,0x8f,0x80,0x1,0x10,0xff,0xff,0x8f,0x80,0x1,0x14,0xff,0xff,0x81,0x70,0x0, + 0x19,0x4c,0x4d,0x54,0x0,0x59,0x53,0x54,0x0,0x59,0x57,0x54,0x0,0x59,0x50,0x54, + 0x0,0x59,0x44,0x54,0x0,0x41,0x4b,0x44,0x54,0x0,0x41,0x4b,0x53,0x54,0x0,0x0, + 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa, + 0x41,0x4b,0x53,0x54,0x39,0x41,0x4b,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30, + 0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Kralendijk + 0x0,0x0,0x0,0xd4, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xb5,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x1e,0x80,0x0,0x0,0x0,0x9b, - 0xc,0x2e,0xec,0x9b,0xd5,0xd6,0x5c,0x9c,0xd9,0xb8,0xc,0x9d,0xa4,0xbf,0xc,0x9e, - 0xa7,0x25,0xc,0x9f,0x97,0x16,0xc,0xa0,0x90,0x41,0x8c,0xa1,0x76,0xf8,0xc,0xa2, - 0x70,0x23,0x8c,0xa3,0x56,0xda,0xc,0xa4,0x50,0x5,0x8c,0xa5,0x36,0xbc,0xc,0xa6, - 0x25,0x5b,0x8c,0xa7,0x27,0xc1,0x8c,0xa8,0x5e,0xe3,0x8c,0xa9,0x7,0xa3,0x8c,0xa9, - 0xee,0x5a,0xc,0xaa,0xe7,0x85,0x8c,0xac,0x27,0xe2,0xc,0xac,0xc7,0x67,0x8c,0xad, - 0xed,0x66,0xc,0xae,0xa7,0x49,0x8c,0xaf,0xce,0x99,0x8c,0xb0,0x87,0x2b,0x8c,0xb1, - 0xb1,0x1e,0x8c,0xb2,0x70,0x48,0xc,0xb3,0x92,0x52,0xc,0xb4,0x50,0x2a,0xc,0xb5, - 0x73,0x85,0x8c,0xb6,0x30,0xc,0xc,0xb7,0x54,0xb9,0xc,0xb8,0xf,0xee,0xc,0xb9, - 0x40,0x78,0x8c,0xb9,0xef,0xd0,0xc,0xbb,0x18,0x71,0x8c,0xbb,0xd8,0xec,0x8c,0xbc, - 0xf9,0xa5,0xc,0xbd,0xb8,0xce,0x8c,0xbe,0xda,0xd8,0x8c,0xbf,0x98,0xb0,0x8c,0xc0, - 0xbd,0x5d,0x8c,0xc1,0x78,0x92,0x8c,0xc2,0xa7,0xcb,0x8c,0xc2,0xdc,0x5d,0x5c,0xc3, - 0x58,0x74,0x70,0xc4,0x7f,0xc4,0x70,0xc5,0x38,0x56,0x70,0xc6,0x60,0xf7,0xf0,0xc7, - 0x21,0x72,0xf0,0xc8,0x44,0xb2,0x50,0xcc,0xe7,0x4b,0x10,0xcd,0xa9,0x17,0x90,0xce, - 0xa2,0x43,0x10,0xcf,0x92,0x34,0x10,0xd0,0x82,0x25,0x10,0xd1,0x72,0x16,0x10,0xd2, - 0x4e,0x40,0x90,0xd,0x2a,0xfd,0x70,0xd,0xa4,0x63,0x90,0xe,0x8b,0x1a,0x10,0xf, - 0x84,0x45,0x90,0x10,0x74,0x36,0x90,0x11,0x64,0x27,0x90,0x12,0x54,0x18,0x90,0x13, - 0x4d,0x44,0x10,0x14,0x33,0xfa,0x90,0x15,0x23,0xeb,0x90,0x16,0x13,0xdc,0x90,0x17, - 0x3,0xcd,0x90,0x17,0xf3,0xbe,0x90,0x18,0xe3,0xaf,0x90,0x19,0xd3,0xa0,0x90,0x1a, - 0xc3,0x91,0x90,0x1b,0xbc,0xbd,0x10,0x1c,0xac,0xae,0x10,0x1d,0x9c,0x9f,0x10,0x1e, - 0x8c,0x90,0x10,0x1f,0x7c,0x81,0x10,0x20,0x6c,0x72,0x10,0x21,0x5c,0x63,0x10,0x22, - 0x4c,0x54,0x10,0x23,0x3c,0x45,0x10,0x24,0x2c,0x36,0x10,0x25,0x1c,0x27,0x10,0x26, - 0xc,0x18,0x10,0x27,0x5,0x43,0x90,0x27,0xf5,0x34,0x90,0x28,0xe5,0x25,0x90,0x29, - 0xd5,0x16,0x90,0x2a,0xc5,0x7,0x90,0x2b,0xb4,0xf8,0x90,0x2c,0xa4,0xe9,0x90,0x2d, - 0x94,0xda,0x90,0x2e,0x84,0xcb,0x90,0x2f,0x74,0xbc,0x90,0x30,0x64,0xad,0x90,0x31, - 0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34,0x52,0x96,0x10,0x35, - 0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x38, - 0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b,0xdb,0x58,0x90,0x3c, - 0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f,0x9b,0x1c,0x90,0x40, - 0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43,0x64,0x1b,0x10,0x44, - 0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47, - 0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b, - 0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e,0xac,0xa1,0x90,0x4f, - 0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53, - 0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56,0x2c,0x29,0x90,0x56, - 0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59,0xf5,0x28,0x10,0x5a, - 0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d,0xb4,0xec,0x10,0x5e, - 0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61,0x7d,0xea,0x90,0x62, - 0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65,0x3d,0xae,0x90,0x66, - 0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68,0xfd,0x72,0x90,0x69, - 0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c,0xc6,0x71,0x10,0x6d, - 0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70,0x86,0x35,0x10,0x71, - 0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74,0x45,0xf9,0x10,0x75, - 0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78, - 0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c, - 0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x2, - 0x1,0x2,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x7,0x5,0x6,0x5,0x6, - 0x5,0xa,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0xd,0xb,0xc,0xb,0xc,0xb,0xc, - 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, - 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, - 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, - 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, - 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, - 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, - 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, - 0xb,0xc,0xb,0xc,0x0,0x0,0x4,0x94,0x0,0x0,0x0,0x0,0x12,0xa4,0x1,0x4, - 0x0,0x0,0x4,0x94,0x0,0x8,0x0,0x0,0x12,0xa4,0x1,0x4,0x0,0x0,0x4,0x94, - 0x0,0x8,0x0,0x0,0x4,0xb0,0x0,0xc,0x0,0x0,0x12,0xc0,0x1,0x10,0x0,0x0, - 0x12,0xc0,0x1,0x10,0x0,0x0,0xe,0x10,0x0,0x15,0x0,0x0,0x1c,0x20,0x1,0x19, - 0x0,0x0,0x1c,0x20,0x1,0x19,0x0,0x0,0x1c,0x20,0x1,0x19,0x0,0x0,0xe,0x10, - 0x0,0x15,0x0,0x0,0xe,0x10,0x0,0x15,0x4c,0x4d,0x54,0x0,0x4e,0x53,0x54,0x0, - 0x41,0x4d,0x54,0x0,0x4e,0x45,0x54,0x0,0x4e,0x45,0x53,0x54,0x0,0x43,0x45,0x54, - 0x0,0x43,0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x0,0x1,0x1, - 0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, - 0x1,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0xe,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0xb6,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x1e,0xf8,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x12,0x51,0x6c,0xff,0xff, - 0xff,0xff,0x9b,0xc,0x2e,0xec,0xff,0xff,0xff,0xff,0x9b,0xd5,0xd6,0x5c,0xff,0xff, - 0xff,0xff,0x9c,0xd9,0xb8,0xc,0xff,0xff,0xff,0xff,0x9d,0xa4,0xbf,0xc,0xff,0xff, - 0xff,0xff,0x9e,0xa7,0x25,0xc,0xff,0xff,0xff,0xff,0x9f,0x97,0x16,0xc,0xff,0xff, - 0xff,0xff,0xa0,0x90,0x41,0x8c,0xff,0xff,0xff,0xff,0xa1,0x76,0xf8,0xc,0xff,0xff, - 0xff,0xff,0xa2,0x70,0x23,0x8c,0xff,0xff,0xff,0xff,0xa3,0x56,0xda,0xc,0xff,0xff, - 0xff,0xff,0xa4,0x50,0x5,0x8c,0xff,0xff,0xff,0xff,0xa5,0x36,0xbc,0xc,0xff,0xff, - 0xff,0xff,0xa6,0x25,0x5b,0x8c,0xff,0xff,0xff,0xff,0xa7,0x27,0xc1,0x8c,0xff,0xff, - 0xff,0xff,0xa8,0x5e,0xe3,0x8c,0xff,0xff,0xff,0xff,0xa9,0x7,0xa3,0x8c,0xff,0xff, - 0xff,0xff,0xa9,0xee,0x5a,0xc,0xff,0xff,0xff,0xff,0xaa,0xe7,0x85,0x8c,0xff,0xff, - 0xff,0xff,0xac,0x27,0xe2,0xc,0xff,0xff,0xff,0xff,0xac,0xc7,0x67,0x8c,0xff,0xff, - 0xff,0xff,0xad,0xed,0x66,0xc,0xff,0xff,0xff,0xff,0xae,0xa7,0x49,0x8c,0xff,0xff, - 0xff,0xff,0xaf,0xce,0x99,0x8c,0xff,0xff,0xff,0xff,0xb0,0x87,0x2b,0x8c,0xff,0xff, - 0xff,0xff,0xb1,0xb1,0x1e,0x8c,0xff,0xff,0xff,0xff,0xb2,0x70,0x48,0xc,0xff,0xff, - 0xff,0xff,0xb3,0x92,0x52,0xc,0xff,0xff,0xff,0xff,0xb4,0x50,0x2a,0xc,0xff,0xff, - 0xff,0xff,0xb5,0x73,0x85,0x8c,0xff,0xff,0xff,0xff,0xb6,0x30,0xc,0xc,0xff,0xff, - 0xff,0xff,0xb7,0x54,0xb9,0xc,0xff,0xff,0xff,0xff,0xb8,0xf,0xee,0xc,0xff,0xff, - 0xff,0xff,0xb9,0x40,0x78,0x8c,0xff,0xff,0xff,0xff,0xb9,0xef,0xd0,0xc,0xff,0xff, - 0xff,0xff,0xbb,0x18,0x71,0x8c,0xff,0xff,0xff,0xff,0xbb,0xd8,0xec,0x8c,0xff,0xff, - 0xff,0xff,0xbc,0xf9,0xa5,0xc,0xff,0xff,0xff,0xff,0xbd,0xb8,0xce,0x8c,0xff,0xff, - 0xff,0xff,0xbe,0xda,0xd8,0x8c,0xff,0xff,0xff,0xff,0xbf,0x98,0xb0,0x8c,0xff,0xff, - 0xff,0xff,0xc0,0xbd,0x5d,0x8c,0xff,0xff,0xff,0xff,0xc1,0x78,0x92,0x8c,0xff,0xff, - 0xff,0xff,0xc2,0xa7,0xcb,0x8c,0xff,0xff,0xff,0xff,0xc2,0xdc,0x5d,0x5c,0xff,0xff, - 0xff,0xff,0xc3,0x58,0x74,0x70,0xff,0xff,0xff,0xff,0xc4,0x7f,0xc4,0x70,0xff,0xff, - 0xff,0xff,0xc5,0x38,0x56,0x70,0xff,0xff,0xff,0xff,0xc6,0x60,0xf7,0xf0,0xff,0xff, - 0xff,0xff,0xc7,0x21,0x72,0xf0,0xff,0xff,0xff,0xff,0xc8,0x44,0xb2,0x50,0xff,0xff, - 0xff,0xff,0xcc,0xe7,0x4b,0x10,0xff,0xff,0xff,0xff,0xcd,0xa9,0x17,0x90,0xff,0xff, - 0xff,0xff,0xce,0xa2,0x43,0x10,0xff,0xff,0xff,0xff,0xcf,0x92,0x34,0x10,0xff,0xff, - 0xff,0xff,0xd0,0x82,0x25,0x10,0xff,0xff,0xff,0xff,0xd1,0x72,0x16,0x10,0xff,0xff, - 0xff,0xff,0xd2,0x4e,0x40,0x90,0x0,0x0,0x0,0x0,0xd,0x2a,0xfd,0x70,0x0,0x0, - 0x0,0x0,0xd,0xa4,0x63,0x90,0x0,0x0,0x0,0x0,0xe,0x8b,0x1a,0x10,0x0,0x0, - 0x0,0x0,0xf,0x84,0x45,0x90,0x0,0x0,0x0,0x0,0x10,0x74,0x36,0x90,0x0,0x0, - 0x0,0x0,0x11,0x64,0x27,0x90,0x0,0x0,0x0,0x0,0x12,0x54,0x18,0x90,0x0,0x0, - 0x0,0x0,0x13,0x4d,0x44,0x10,0x0,0x0,0x0,0x0,0x14,0x33,0xfa,0x90,0x0,0x0, - 0x0,0x0,0x15,0x23,0xeb,0x90,0x0,0x0,0x0,0x0,0x16,0x13,0xdc,0x90,0x0,0x0, - 0x0,0x0,0x17,0x3,0xcd,0x90,0x0,0x0,0x0,0x0,0x17,0xf3,0xbe,0x90,0x0,0x0, - 0x0,0x0,0x18,0xe3,0xaf,0x90,0x0,0x0,0x0,0x0,0x19,0xd3,0xa0,0x90,0x0,0x0, - 0x0,0x0,0x1a,0xc3,0x91,0x90,0x0,0x0,0x0,0x0,0x1b,0xbc,0xbd,0x10,0x0,0x0, - 0x0,0x0,0x1c,0xac,0xae,0x10,0x0,0x0,0x0,0x0,0x1d,0x9c,0x9f,0x10,0x0,0x0, - 0x0,0x0,0x1e,0x8c,0x90,0x10,0x0,0x0,0x0,0x0,0x1f,0x7c,0x81,0x10,0x0,0x0, - 0x0,0x0,0x20,0x6c,0x72,0x10,0x0,0x0,0x0,0x0,0x21,0x5c,0x63,0x10,0x0,0x0, - 0x0,0x0,0x22,0x4c,0x54,0x10,0x0,0x0,0x0,0x0,0x23,0x3c,0x45,0x10,0x0,0x0, - 0x0,0x0,0x24,0x2c,0x36,0x10,0x0,0x0,0x0,0x0,0x25,0x1c,0x27,0x10,0x0,0x0, - 0x0,0x0,0x26,0xc,0x18,0x10,0x0,0x0,0x0,0x0,0x27,0x5,0x43,0x90,0x0,0x0, - 0x0,0x0,0x27,0xf5,0x34,0x90,0x0,0x0,0x0,0x0,0x28,0xe5,0x25,0x90,0x0,0x0, - 0x0,0x0,0x29,0xd5,0x16,0x90,0x0,0x0,0x0,0x0,0x2a,0xc5,0x7,0x90,0x0,0x0, - 0x0,0x0,0x2b,0xb4,0xf8,0x90,0x0,0x0,0x0,0x0,0x2c,0xa4,0xe9,0x90,0x0,0x0, - 0x0,0x0,0x2d,0x94,0xda,0x90,0x0,0x0,0x0,0x0,0x2e,0x84,0xcb,0x90,0x0,0x0, - 0x0,0x0,0x2f,0x74,0xbc,0x90,0x0,0x0,0x0,0x0,0x30,0x64,0xad,0x90,0x0,0x0, - 0x0,0x0,0x31,0x5d,0xd9,0x10,0x0,0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0, - 0x0,0x0,0x33,0x3d,0xbb,0x10,0x0,0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0, - 0x0,0x0,0x35,0x1d,0x9d,0x10,0x0,0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0, - 0x0,0x0,0x36,0xfd,0x7f,0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0, - 0x0,0x0,0x38,0xdd,0x61,0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0, - 0x0,0x0,0x3a,0xbd,0x43,0x10,0x0,0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0, - 0x0,0x0,0x3c,0xa6,0x5f,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0, - 0x0,0x0,0x3e,0x86,0x41,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0, - 0x0,0x0,0x40,0x66,0x23,0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0, - 0x0,0x0,0x42,0x46,0x5,0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0, - 0x0,0x0,0x44,0x25,0xe7,0x90,0x0,0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0, - 0x0,0x0,0x46,0x5,0xc9,0x90,0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0, - 0x0,0x0,0x47,0xee,0xe6,0x10,0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0, - 0x0,0x0,0x49,0xce,0xc8,0x10,0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0, - 0x0,0x0,0x4b,0xae,0xaa,0x10,0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0, - 0x0,0x0,0x4d,0x8e,0x8c,0x10,0x0,0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0, - 0x0,0x0,0x4f,0x6e,0x6e,0x10,0x0,0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0, - 0x0,0x0,0x51,0x57,0x8a,0x90,0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0, - 0x0,0x0,0x53,0x37,0x6c,0x90,0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0, - 0x0,0x0,0x55,0x17,0x4e,0x90,0x0,0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0, - 0x0,0x0,0x56,0xf7,0x30,0x90,0x0,0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0, - 0x0,0x0,0x58,0xd7,0x12,0x90,0x0,0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0, - 0x0,0x0,0x5a,0xb6,0xf4,0x90,0x0,0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0, - 0x0,0x0,0x5c,0xa0,0x11,0x10,0x0,0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0, - 0x0,0x0,0x5e,0x7f,0xf3,0x10,0x0,0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0, - 0x0,0x0,0x60,0x5f,0xd5,0x10,0x0,0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0, - 0x0,0x0,0x62,0x3f,0xb7,0x10,0x0,0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0, - 0x0,0x0,0x64,0x1f,0x99,0x10,0x0,0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0, - 0x0,0x0,0x66,0x8,0xb5,0x90,0x0,0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0, - 0x0,0x0,0x67,0xe8,0x97,0x90,0x0,0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0, - 0x0,0x0,0x69,0xc8,0x79,0x90,0x0,0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0, - 0x0,0x0,0x6b,0xa8,0x5b,0x90,0x0,0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0, - 0x0,0x0,0x6d,0x88,0x3d,0x90,0x0,0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0, - 0x0,0x0,0x6f,0x68,0x1f,0x90,0x0,0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0, - 0x0,0x0,0x71,0x51,0x3c,0x10,0x0,0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0, - 0x0,0x0,0x73,0x31,0x1e,0x10,0x0,0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0, - 0x0,0x0,0x75,0x11,0x0,0x10,0x0,0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0, - 0x0,0x0,0x76,0xf0,0xe2,0x10,0x0,0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0, - 0x0,0x0,0x78,0xd0,0xc4,0x10,0x0,0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0, - 0x0,0x0,0x7a,0xb0,0xa6,0x10,0x0,0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0, - 0x0,0x0,0x7c,0x99,0xc2,0x90,0x0,0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0, - 0x0,0x0,0x7e,0x79,0xa4,0x90,0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x2, - 0x1,0x2,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x7,0x5,0x6,0x5,0x6, - 0x5,0xa,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0xd,0xb,0xc,0xb,0xc,0xb,0xc, - 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, - 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, - 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, - 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, - 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, - 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, - 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, - 0xb,0xc,0xb,0xc,0x0,0x0,0x4,0x94,0x0,0x0,0x0,0x0,0x12,0xa4,0x1,0x4, - 0x0,0x0,0x4,0x94,0x0,0x8,0x0,0x0,0x12,0xa4,0x1,0x4,0x0,0x0,0x4,0x94, - 0x0,0x8,0x0,0x0,0x4,0xb0,0x0,0xc,0x0,0x0,0x12,0xc0,0x1,0x10,0x0,0x0, - 0x12,0xc0,0x1,0x10,0x0,0x0,0xe,0x10,0x0,0x15,0x0,0x0,0x1c,0x20,0x1,0x19, - 0x0,0x0,0x1c,0x20,0x1,0x19,0x0,0x0,0x1c,0x20,0x1,0x19,0x0,0x0,0xe,0x10, - 0x0,0x15,0x0,0x0,0xe,0x10,0x0,0x15,0x4c,0x4d,0x54,0x0,0x4e,0x53,0x54,0x0, - 0x41,0x4d,0x54,0x0,0x4e,0x45,0x54,0x0,0x4e,0x45,0x53,0x54,0x0,0x43,0x45,0x54, - 0x0,0x43,0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x0,0x1,0x1, - 0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, - 0x1,0x0,0xa,0x43,0x45,0x54,0x2d,0x31,0x43,0x45,0x53,0x54,0x2c,0x4d,0x33,0x2e, - 0x35,0x2e,0x30,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30,0x2f,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Antarctica/Vostok - 0x0,0x0,0x0,0xbb, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xe,0x80,0x0,0x0,0x0,0x93, + 0x1e,0x2e,0x23,0xf6,0x98,0xec,0x48,0x0,0x1,0x2,0xff,0xff,0xbf,0x5d,0x0,0x0, + 0xff,0xff,0xc0,0xb8,0x0,0x4,0xff,0xff,0xc7,0xc0,0x0,0xa,0x4c,0x4d,0x54,0x0, + 0x2d,0x30,0x34,0x33,0x30,0x0,0x41,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xe,0xf8,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x93,0x1e,0x2e,0x23,0xff,0xff,0xff,0xff, + 0xf6,0x98,0xec,0x48,0x0,0x1,0x2,0xff,0xff,0xbf,0x5d,0x0,0x0,0xff,0xff,0xc0, + 0xb8,0x0,0x4,0xff,0xff,0xc7,0xc0,0x0,0xa,0x4c,0x4d,0x54,0x0,0x2d,0x30,0x34, + 0x33,0x30,0x0,0x41,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x41,0x53, + 0x54,0x34,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Belem + 0x0,0x0,0x2,0x5a, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x3,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0xe9, - 0x58,0x89,0x80,0x7f,0xff,0xff,0xff,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x54,0x60,0x0,0x4,0x2d,0x30,0x30,0x0,0x2b,0x30,0x36,0x0,0x0,0x0, - 0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xe9,0x58,0x89,0x80,0x0,0x0, - 0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x54,0x60,0x0,0x4,0x2d,0x30,0x30,0x0,0x2b,0x30,0x36,0x0,0x0,0x0,0x0, - 0x0,0xa,0x3c,0x2b,0x30,0x36,0x3e,0x2d,0x36,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Antarctica/McMurdo - 0x0,0x0,0x9,0x9c, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x1f,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0x96, + 0xaa,0x74,0x74,0xb8,0xf,0x49,0xe0,0xb8,0xfd,0x40,0xa0,0xb9,0xf1,0x34,0x30,0xba, + 0xde,0x74,0x20,0xda,0x38,0xae,0x30,0xda,0xeb,0xfa,0x30,0xdc,0x19,0xe1,0xb0,0xdc, + 0xb9,0x59,0x20,0xdd,0xfb,0x15,0x30,0xde,0x9b,0xde,0x20,0xdf,0xdd,0x9a,0x30,0xe0, + 0x54,0x33,0x20,0xf4,0x97,0xff,0xb0,0xf5,0x5,0x5e,0x20,0xf6,0xc0,0x64,0x30,0xf7, + 0xe,0x1e,0xa0,0xf8,0x51,0x2c,0x30,0xf8,0xc7,0xc5,0x20,0xfa,0xa,0xd2,0xb0,0xfa, + 0xa8,0xf8,0xa0,0xfb,0xec,0x6,0x30,0xfc,0x8b,0x7d,0xa0,0x1d,0xc9,0x8e,0x30,0x1e, + 0x78,0xd7,0xa0,0x1f,0xa0,0x35,0xb0,0x20,0x33,0xcf,0xa0,0x21,0x81,0x69,0x30,0x22, + 0xb,0xc8,0xa0,0x7f,0xff,0xff,0xff,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x2,0xff,0xff,0xd2,0x8c,0x0,0x0,0xff,0xff,0xe3,0xe0, + 0x1,0x4,0xff,0xff,0xd5,0xd0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x2d,0x30,0x32,0x0, + 0x2d,0x30,0x33,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0x0,0x0, + 0x0,0x3,0x0,0x0,0x0,0xc,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff, + 0xff,0xff,0x96,0xaa,0x74,0x74,0xff,0xff,0xff,0xff,0xb8,0xf,0x49,0xe0,0xff,0xff, + 0xff,0xff,0xb8,0xfd,0x40,0xa0,0xff,0xff,0xff,0xff,0xb9,0xf1,0x34,0x30,0xff,0xff, + 0xff,0xff,0xba,0xde,0x74,0x20,0xff,0xff,0xff,0xff,0xda,0x38,0xae,0x30,0xff,0xff, + 0xff,0xff,0xda,0xeb,0xfa,0x30,0xff,0xff,0xff,0xff,0xdc,0x19,0xe1,0xb0,0xff,0xff, + 0xff,0xff,0xdc,0xb9,0x59,0x20,0xff,0xff,0xff,0xff,0xdd,0xfb,0x15,0x30,0xff,0xff, + 0xff,0xff,0xde,0x9b,0xde,0x20,0xff,0xff,0xff,0xff,0xdf,0xdd,0x9a,0x30,0xff,0xff, + 0xff,0xff,0xe0,0x54,0x33,0x20,0xff,0xff,0xff,0xff,0xf4,0x97,0xff,0xb0,0xff,0xff, + 0xff,0xff,0xf5,0x5,0x5e,0x20,0xff,0xff,0xff,0xff,0xf6,0xc0,0x64,0x30,0xff,0xff, + 0xff,0xff,0xf7,0xe,0x1e,0xa0,0xff,0xff,0xff,0xff,0xf8,0x51,0x2c,0x30,0xff,0xff, + 0xff,0xff,0xf8,0xc7,0xc5,0x20,0xff,0xff,0xff,0xff,0xfa,0xa,0xd2,0xb0,0xff,0xff, + 0xff,0xff,0xfa,0xa8,0xf8,0xa0,0xff,0xff,0xff,0xff,0xfb,0xec,0x6,0x30,0xff,0xff, + 0xff,0xff,0xfc,0x8b,0x7d,0xa0,0x0,0x0,0x0,0x0,0x1d,0xc9,0x8e,0x30,0x0,0x0, + 0x0,0x0,0x1e,0x78,0xd7,0xa0,0x0,0x0,0x0,0x0,0x1f,0xa0,0x35,0xb0,0x0,0x0, + 0x0,0x0,0x20,0x33,0xcf,0xa0,0x0,0x0,0x0,0x0,0x21,0x81,0x69,0x30,0x0,0x0, + 0x0,0x0,0x22,0xb,0xc8,0xa0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x2,0xff,0xff,0xd2, + 0x8c,0x0,0x0,0xff,0xff,0xe3,0xe0,0x1,0x4,0xff,0xff,0xd5,0xd0,0x0,0x8,0x4c, + 0x4d,0x54,0x0,0x2d,0x30,0x32,0x0,0x2d,0x30,0x33,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xa,0x3c,0x2d,0x30,0x33,0x3e,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/St_Barthelemy + 0x0,0x0,0x0,0xaa, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x9c,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x13,0x80,0x0,0x0,0x0,0xb0, - 0xb4,0xb2,0xe8,0xb1,0x51,0x87,0x58,0xb2,0x78,0xe5,0x68,0xb3,0x43,0xe5,0x60,0xb4, - 0x58,0xc7,0x68,0xb5,0x23,0xc7,0x60,0xb6,0x38,0xa9,0x68,0xb7,0x3,0xa9,0x60,0xb8, - 0x18,0x8b,0x68,0xb8,0xec,0xc5,0xe0,0xb9,0xf8,0x6d,0x68,0xba,0xcc,0xa7,0xe0,0xbb, - 0xd8,0x4f,0x68,0xbc,0xe3,0xe8,0xe0,0xbd,0xae,0xf6,0xe8,0xbe,0xc3,0xca,0xe0,0xbf, - 0x8e,0xd8,0xe8,0xc0,0xa3,0xac,0xe0,0xc1,0x6e,0xba,0xe8,0xc2,0x83,0x8e,0xe0,0xc3, - 0x4e,0x9c,0xe8,0xc4,0x63,0x70,0xe0,0xc5,0x2e,0x7e,0xe8,0xc6,0x4c,0x8d,0x60,0xc7, - 0xe,0x60,0xe8,0xc8,0x2c,0x6f,0x60,0xc8,0xf7,0x7d,0x68,0xd2,0xda,0x9a,0x40,0x9, - 0x18,0xfd,0xe0,0x9,0xac,0xa5,0xe0,0xa,0xef,0xa5,0x60,0xb,0x9e,0xfc,0xe0,0xc, - 0xd8,0xc1,0xe0,0xd,0x7e,0xde,0xe0,0xe,0xb8,0xa3,0xe0,0xf,0x5e,0xc0,0xe0,0x10, - 0x98,0x85,0xe0,0x11,0x3e,0xa2,0xe0,0x12,0x78,0x67,0xe0,0x13,0x1e,0x84,0xe0,0x14, - 0x58,0x49,0xe0,0x14,0xfe,0x66,0xe0,0x16,0x38,0x2b,0xe0,0x16,0xe7,0x83,0x60,0x18, - 0x21,0x48,0x60,0x18,0xc7,0x65,0x60,0x1a,0x1,0x2a,0x60,0x1a,0xa7,0x47,0x60,0x1b, - 0xe1,0xc,0x60,0x1c,0x87,0x29,0x60,0x1d,0xc0,0xee,0x60,0x1e,0x67,0xb,0x60,0x1f, - 0xa0,0xd0,0x60,0x20,0x46,0xed,0x60,0x21,0x80,0xb2,0x60,0x22,0x30,0x9,0xe0,0x23, - 0x69,0xce,0xe0,0x24,0xf,0xeb,0xe0,0x25,0x2e,0x1,0x60,0x26,0x2,0x42,0xe0,0x27, - 0xd,0xe3,0x60,0x27,0xe2,0x24,0xe0,0x28,0xed,0xc5,0x60,0x29,0xc2,0x6,0xe0,0x2a, - 0xcd,0xa7,0x60,0x2b,0xab,0x23,0x60,0x2c,0xad,0x89,0x60,0x2d,0x8b,0x5,0x60,0x2e, - 0x8d,0x6b,0x60,0x2f,0x6a,0xe7,0x60,0x30,0x6d,0x4d,0x60,0x31,0x4a,0xc9,0x60,0x32, - 0x56,0x69,0xe0,0x33,0x2a,0xab,0x60,0x34,0x36,0x4b,0xe0,0x35,0xa,0x8d,0x60,0x36, - 0x16,0x2d,0xe0,0x36,0xf3,0xa9,0xe0,0x37,0xf6,0xf,0xe0,0x38,0xd3,0x8b,0xe0,0x39, - 0xd5,0xf1,0xe0,0x3a,0xb3,0x6d,0xe0,0x3b,0xbf,0xe,0x60,0x3c,0x93,0x4f,0xe0,0x3d, - 0x9e,0xf0,0x60,0x3e,0x73,0x31,0xe0,0x3f,0x7e,0xd2,0x60,0x40,0x5c,0x4e,0x60,0x41, - 0x5e,0xb4,0x60,0x42,0x3c,0x30,0x60,0x43,0x3e,0x96,0x60,0x44,0x1c,0x12,0x60,0x45, - 0x1e,0x78,0x60,0x45,0xfb,0xf4,0x60,0x46,0xfe,0x5a,0x60,0x47,0xf7,0x85,0xe0,0x48, - 0xde,0x3c,0x60,0x49,0xd7,0x67,0xe0,0x4a,0xbe,0x1e,0x60,0x4b,0xb7,0x49,0xe0,0x4c, - 0x9e,0x0,0x60,0x4d,0x97,0x2b,0xe0,0x4e,0x7d,0xe2,0x60,0x4f,0x77,0xd,0xe0,0x50, - 0x66,0xfe,0xe0,0x51,0x60,0x2a,0x60,0x52,0x46,0xe0,0xe0,0x53,0x40,0xc,0x60,0x54, - 0x26,0xc2,0xe0,0x55,0x1f,0xee,0x60,0x56,0x6,0xa4,0xe0,0x56,0xff,0xd0,0x60,0x57, - 0xe6,0x86,0xe0,0x58,0xdf,0xb2,0x60,0x59,0xc6,0x68,0xe0,0x5a,0xbf,0x94,0x60,0x5b, - 0xaf,0x85,0x60,0x5c,0xa8,0xb0,0xe0,0x5d,0x8f,0x67,0x60,0x5e,0x88,0x92,0xe0,0x5f, - 0x6f,0x49,0x60,0x60,0x68,0x74,0xe0,0x61,0x4f,0x2b,0x60,0x62,0x48,0x56,0xe0,0x63, - 0x2f,0xd,0x60,0x64,0x28,0x38,0xe0,0x65,0xe,0xef,0x60,0x66,0x11,0x55,0x60,0x66, - 0xf8,0xb,0xe0,0x67,0xf1,0x37,0x60,0x68,0xd7,0xed,0xe0,0x69,0xd1,0x19,0x60,0x6a, - 0xb7,0xcf,0xe0,0x6b,0xb0,0xfb,0x60,0x6c,0x97,0xb1,0xe0,0x6d,0x90,0xdd,0x60,0x6e, - 0x77,0x93,0xe0,0x6f,0x70,0xbf,0x60,0x70,0x60,0xb0,0x60,0x71,0x59,0xdb,0xe0,0x72, - 0x40,0x92,0x60,0x73,0x39,0xbd,0xe0,0x74,0x20,0x74,0x60,0x75,0x19,0x9f,0xe0,0x76, - 0x0,0x56,0x60,0x76,0xf9,0x81,0xe0,0x77,0xe0,0x38,0x60,0x78,0xd9,0x63,0xe0,0x79, - 0xc0,0x1a,0x60,0x7a,0xb9,0x45,0xe0,0x7b,0xa9,0x36,0xe0,0x7c,0xa2,0x62,0x60,0x7d, - 0x89,0x18,0xe0,0x7e,0x82,0x44,0x60,0x7f,0x68,0xfa,0xe0,0x2,0x1,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x6,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x0,0x0,0xa3,0xd8,0x0,0x0,0x0,0x0,0xaf, - 0xc8,0x1,0x4,0x0,0x0,0xa1,0xb8,0x0,0x9,0x0,0x0,0xa8,0xc0,0x1,0x4,0x0, - 0x0,0xb6,0xd0,0x1,0xe,0x0,0x0,0xa8,0xc0,0x0,0x4,0x0,0x0,0xa8,0xc0,0x0, - 0x4,0x4c,0x4d,0x54,0x0,0x4e,0x5a,0x53,0x54,0x0,0x4e,0x5a,0x4d,0x54,0x0,0x4e, - 0x5a,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x9d,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x13,0xf8,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x41,0xb7,0x4c,0xa8,0xff,0xff, - 0xff,0xff,0xb0,0xb4,0xb2,0xe8,0xff,0xff,0xff,0xff,0xb1,0x51,0x87,0x58,0xff,0xff, - 0xff,0xff,0xb2,0x78,0xe5,0x68,0xff,0xff,0xff,0xff,0xb3,0x43,0xe5,0x60,0xff,0xff, - 0xff,0xff,0xb4,0x58,0xc7,0x68,0xff,0xff,0xff,0xff,0xb5,0x23,0xc7,0x60,0xff,0xff, - 0xff,0xff,0xb6,0x38,0xa9,0x68,0xff,0xff,0xff,0xff,0xb7,0x3,0xa9,0x60,0xff,0xff, - 0xff,0xff,0xb8,0x18,0x8b,0x68,0xff,0xff,0xff,0xff,0xb8,0xec,0xc5,0xe0,0xff,0xff, - 0xff,0xff,0xb9,0xf8,0x6d,0x68,0xff,0xff,0xff,0xff,0xba,0xcc,0xa7,0xe0,0xff,0xff, - 0xff,0xff,0xbb,0xd8,0x4f,0x68,0xff,0xff,0xff,0xff,0xbc,0xe3,0xe8,0xe0,0xff,0xff, - 0xff,0xff,0xbd,0xae,0xf6,0xe8,0xff,0xff,0xff,0xff,0xbe,0xc3,0xca,0xe0,0xff,0xff, - 0xff,0xff,0xbf,0x8e,0xd8,0xe8,0xff,0xff,0xff,0xff,0xc0,0xa3,0xac,0xe0,0xff,0xff, - 0xff,0xff,0xc1,0x6e,0xba,0xe8,0xff,0xff,0xff,0xff,0xc2,0x83,0x8e,0xe0,0xff,0xff, - 0xff,0xff,0xc3,0x4e,0x9c,0xe8,0xff,0xff,0xff,0xff,0xc4,0x63,0x70,0xe0,0xff,0xff, - 0xff,0xff,0xc5,0x2e,0x7e,0xe8,0xff,0xff,0xff,0xff,0xc6,0x4c,0x8d,0x60,0xff,0xff, - 0xff,0xff,0xc7,0xe,0x60,0xe8,0xff,0xff,0xff,0xff,0xc8,0x2c,0x6f,0x60,0xff,0xff, - 0xff,0xff,0xc8,0xf7,0x7d,0x68,0xff,0xff,0xff,0xff,0xd2,0xda,0x9a,0x40,0x0,0x0, - 0x0,0x0,0x9,0x18,0xfd,0xe0,0x0,0x0,0x0,0x0,0x9,0xac,0xa5,0xe0,0x0,0x0, - 0x0,0x0,0xa,0xef,0xa5,0x60,0x0,0x0,0x0,0x0,0xb,0x9e,0xfc,0xe0,0x0,0x0, - 0x0,0x0,0xc,0xd8,0xc1,0xe0,0x0,0x0,0x0,0x0,0xd,0x7e,0xde,0xe0,0x0,0x0, - 0x0,0x0,0xe,0xb8,0xa3,0xe0,0x0,0x0,0x0,0x0,0xf,0x5e,0xc0,0xe0,0x0,0x0, - 0x0,0x0,0x10,0x98,0x85,0xe0,0x0,0x0,0x0,0x0,0x11,0x3e,0xa2,0xe0,0x0,0x0, - 0x0,0x0,0x12,0x78,0x67,0xe0,0x0,0x0,0x0,0x0,0x13,0x1e,0x84,0xe0,0x0,0x0, - 0x0,0x0,0x14,0x58,0x49,0xe0,0x0,0x0,0x0,0x0,0x14,0xfe,0x66,0xe0,0x0,0x0, - 0x0,0x0,0x16,0x38,0x2b,0xe0,0x0,0x0,0x0,0x0,0x16,0xe7,0x83,0x60,0x0,0x0, - 0x0,0x0,0x18,0x21,0x48,0x60,0x0,0x0,0x0,0x0,0x18,0xc7,0x65,0x60,0x0,0x0, - 0x0,0x0,0x1a,0x1,0x2a,0x60,0x0,0x0,0x0,0x0,0x1a,0xa7,0x47,0x60,0x0,0x0, - 0x0,0x0,0x1b,0xe1,0xc,0x60,0x0,0x0,0x0,0x0,0x1c,0x87,0x29,0x60,0x0,0x0, - 0x0,0x0,0x1d,0xc0,0xee,0x60,0x0,0x0,0x0,0x0,0x1e,0x67,0xb,0x60,0x0,0x0, - 0x0,0x0,0x1f,0xa0,0xd0,0x60,0x0,0x0,0x0,0x0,0x20,0x46,0xed,0x60,0x0,0x0, - 0x0,0x0,0x21,0x80,0xb2,0x60,0x0,0x0,0x0,0x0,0x22,0x30,0x9,0xe0,0x0,0x0, - 0x0,0x0,0x23,0x69,0xce,0xe0,0x0,0x0,0x0,0x0,0x24,0xf,0xeb,0xe0,0x0,0x0, - 0x0,0x0,0x25,0x2e,0x1,0x60,0x0,0x0,0x0,0x0,0x26,0x2,0x42,0xe0,0x0,0x0, - 0x0,0x0,0x27,0xd,0xe3,0x60,0x0,0x0,0x0,0x0,0x27,0xe2,0x24,0xe0,0x0,0x0, - 0x0,0x0,0x28,0xed,0xc5,0x60,0x0,0x0,0x0,0x0,0x29,0xc2,0x6,0xe0,0x0,0x0, - 0x0,0x0,0x2a,0xcd,0xa7,0x60,0x0,0x0,0x0,0x0,0x2b,0xab,0x23,0x60,0x0,0x0, - 0x0,0x0,0x2c,0xad,0x89,0x60,0x0,0x0,0x0,0x0,0x2d,0x8b,0x5,0x60,0x0,0x0, - 0x0,0x0,0x2e,0x8d,0x6b,0x60,0x0,0x0,0x0,0x0,0x2f,0x6a,0xe7,0x60,0x0,0x0, - 0x0,0x0,0x30,0x6d,0x4d,0x60,0x0,0x0,0x0,0x0,0x31,0x4a,0xc9,0x60,0x0,0x0, - 0x0,0x0,0x32,0x56,0x69,0xe0,0x0,0x0,0x0,0x0,0x33,0x2a,0xab,0x60,0x0,0x0, - 0x0,0x0,0x34,0x36,0x4b,0xe0,0x0,0x0,0x0,0x0,0x35,0xa,0x8d,0x60,0x0,0x0, - 0x0,0x0,0x36,0x16,0x2d,0xe0,0x0,0x0,0x0,0x0,0x36,0xf3,0xa9,0xe0,0x0,0x0, - 0x0,0x0,0x37,0xf6,0xf,0xe0,0x0,0x0,0x0,0x0,0x38,0xd3,0x8b,0xe0,0x0,0x0, - 0x0,0x0,0x39,0xd5,0xf1,0xe0,0x0,0x0,0x0,0x0,0x3a,0xb3,0x6d,0xe0,0x0,0x0, - 0x0,0x0,0x3b,0xbf,0xe,0x60,0x0,0x0,0x0,0x0,0x3c,0x93,0x4f,0xe0,0x0,0x0, - 0x0,0x0,0x3d,0x9e,0xf0,0x60,0x0,0x0,0x0,0x0,0x3e,0x73,0x31,0xe0,0x0,0x0, - 0x0,0x0,0x3f,0x7e,0xd2,0x60,0x0,0x0,0x0,0x0,0x40,0x5c,0x4e,0x60,0x0,0x0, - 0x0,0x0,0x41,0x5e,0xb4,0x60,0x0,0x0,0x0,0x0,0x42,0x3c,0x30,0x60,0x0,0x0, - 0x0,0x0,0x43,0x3e,0x96,0x60,0x0,0x0,0x0,0x0,0x44,0x1c,0x12,0x60,0x0,0x0, - 0x0,0x0,0x45,0x1e,0x78,0x60,0x0,0x0,0x0,0x0,0x45,0xfb,0xf4,0x60,0x0,0x0, - 0x0,0x0,0x46,0xfe,0x5a,0x60,0x0,0x0,0x0,0x0,0x47,0xf7,0x85,0xe0,0x0,0x0, - 0x0,0x0,0x48,0xde,0x3c,0x60,0x0,0x0,0x0,0x0,0x49,0xd7,0x67,0xe0,0x0,0x0, - 0x0,0x0,0x4a,0xbe,0x1e,0x60,0x0,0x0,0x0,0x0,0x4b,0xb7,0x49,0xe0,0x0,0x0, - 0x0,0x0,0x4c,0x9e,0x0,0x60,0x0,0x0,0x0,0x0,0x4d,0x97,0x2b,0xe0,0x0,0x0, - 0x0,0x0,0x4e,0x7d,0xe2,0x60,0x0,0x0,0x0,0x0,0x4f,0x77,0xd,0xe0,0x0,0x0, - 0x0,0x0,0x50,0x66,0xfe,0xe0,0x0,0x0,0x0,0x0,0x51,0x60,0x2a,0x60,0x0,0x0, - 0x0,0x0,0x52,0x46,0xe0,0xe0,0x0,0x0,0x0,0x0,0x53,0x40,0xc,0x60,0x0,0x0, - 0x0,0x0,0x54,0x26,0xc2,0xe0,0x0,0x0,0x0,0x0,0x55,0x1f,0xee,0x60,0x0,0x0, - 0x0,0x0,0x56,0x6,0xa4,0xe0,0x0,0x0,0x0,0x0,0x56,0xff,0xd0,0x60,0x0,0x0, - 0x0,0x0,0x57,0xe6,0x86,0xe0,0x0,0x0,0x0,0x0,0x58,0xdf,0xb2,0x60,0x0,0x0, - 0x0,0x0,0x59,0xc6,0x68,0xe0,0x0,0x0,0x0,0x0,0x5a,0xbf,0x94,0x60,0x0,0x0, - 0x0,0x0,0x5b,0xaf,0x85,0x60,0x0,0x0,0x0,0x0,0x5c,0xa8,0xb0,0xe0,0x0,0x0, - 0x0,0x0,0x5d,0x8f,0x67,0x60,0x0,0x0,0x0,0x0,0x5e,0x88,0x92,0xe0,0x0,0x0, - 0x0,0x0,0x5f,0x6f,0x49,0x60,0x0,0x0,0x0,0x0,0x60,0x68,0x74,0xe0,0x0,0x0, - 0x0,0x0,0x61,0x4f,0x2b,0x60,0x0,0x0,0x0,0x0,0x62,0x48,0x56,0xe0,0x0,0x0, - 0x0,0x0,0x63,0x2f,0xd,0x60,0x0,0x0,0x0,0x0,0x64,0x28,0x38,0xe0,0x0,0x0, - 0x0,0x0,0x65,0xe,0xef,0x60,0x0,0x0,0x0,0x0,0x66,0x11,0x55,0x60,0x0,0x0, - 0x0,0x0,0x66,0xf8,0xb,0xe0,0x0,0x0,0x0,0x0,0x67,0xf1,0x37,0x60,0x0,0x0, - 0x0,0x0,0x68,0xd7,0xed,0xe0,0x0,0x0,0x0,0x0,0x69,0xd1,0x19,0x60,0x0,0x0, - 0x0,0x0,0x6a,0xb7,0xcf,0xe0,0x0,0x0,0x0,0x0,0x6b,0xb0,0xfb,0x60,0x0,0x0, - 0x0,0x0,0x6c,0x97,0xb1,0xe0,0x0,0x0,0x0,0x0,0x6d,0x90,0xdd,0x60,0x0,0x0, - 0x0,0x0,0x6e,0x77,0x93,0xe0,0x0,0x0,0x0,0x0,0x6f,0x70,0xbf,0x60,0x0,0x0, - 0x0,0x0,0x70,0x60,0xb0,0x60,0x0,0x0,0x0,0x0,0x71,0x59,0xdb,0xe0,0x0,0x0, - 0x0,0x0,0x72,0x40,0x92,0x60,0x0,0x0,0x0,0x0,0x73,0x39,0xbd,0xe0,0x0,0x0, - 0x0,0x0,0x74,0x20,0x74,0x60,0x0,0x0,0x0,0x0,0x75,0x19,0x9f,0xe0,0x0,0x0, - 0x0,0x0,0x76,0x0,0x56,0x60,0x0,0x0,0x0,0x0,0x76,0xf9,0x81,0xe0,0x0,0x0, - 0x0,0x0,0x77,0xe0,0x38,0x60,0x0,0x0,0x0,0x0,0x78,0xd9,0x63,0xe0,0x0,0x0, - 0x0,0x0,0x79,0xc0,0x1a,0x60,0x0,0x0,0x0,0x0,0x7a,0xb9,0x45,0xe0,0x0,0x0, - 0x0,0x0,0x7b,0xa9,0x36,0xe0,0x0,0x0,0x0,0x0,0x7c,0xa2,0x62,0x60,0x0,0x0, - 0x0,0x0,0x7d,0x89,0x18,0xe0,0x0,0x0,0x0,0x0,0x7e,0x82,0x44,0x60,0x0,0x0, - 0x0,0x0,0x7f,0x68,0xfa,0xe0,0x0,0x2,0x1,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x6,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x0,0x0,0xa3,0xd8,0x0,0x0,0x0,0x0,0xaf,0xc8,0x1,0x4,0x0, - 0x0,0xa1,0xb8,0x0,0x9,0x0,0x0,0xa8,0xc0,0x1,0x4,0x0,0x0,0xb6,0xd0,0x1, - 0xe,0x0,0x0,0xa8,0xc0,0x0,0x4,0x0,0x0,0xa8,0xc0,0x0,0x4,0x4c,0x4d,0x54, - 0x0,0x4e,0x5a,0x53,0x54,0x0,0x4e,0x5a,0x4d,0x54,0x0,0x4e,0x5a,0x44,0x54,0x0, - 0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x4e, - 0x5a,0x53,0x54,0x2d,0x31,0x32,0x4e,0x5a,0x44,0x54,0x2c,0x4d,0x39,0x2e,0x35,0x2e, - 0x30,0x2c,0x4d,0x34,0x2e,0x31,0x2e,0x30,0x2f,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Antarctica/Troll - 0x0,0x0,0x4,0x98, + 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x93, + 0x37,0x33,0xac,0x0,0x1,0xff,0xff,0xc6,0x54,0x0,0x0,0xff,0xff,0xc7,0xc0,0x0, + 0x4,0x4c,0x4d,0x54,0x0,0x41,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, + 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0x93,0x37,0x33,0xac,0x0,0x1,0xff,0xff,0xc6,0x54,0x0, + 0x0,0xff,0xff,0xc7,0xc0,0x0,0x4,0x4c,0x4d,0x54,0x0,0x41,0x53,0x54,0x0,0x0, + 0x0,0x0,0x0,0xa,0x41,0x53,0x54,0x34,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Bahia_Banderas + 0x0,0x0,0x6,0x34, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x45,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0x42, - 0xd,0x47,0x0,0x42,0x46,0x5,0x90,0x43,0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45, - 0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49, - 0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c, - 0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e,0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50, - 0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54, - 0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56,0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58, - 0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59,0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b, - 0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d,0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f, - 0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61,0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63, - 0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65,0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67, - 0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68,0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a, - 0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c,0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e, - 0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70,0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72, - 0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74,0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76, - 0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79, - 0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d, - 0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x7f,0xff,0xff,0xff,0x0, - 0x3,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x5e,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x18,0x80,0x0,0x0,0x0,0xa5, + 0xb6,0xe8,0x70,0xaf,0xf2,0x6e,0xe0,0xb6,0x66,0x56,0x60,0xb7,0x43,0xd2,0x60,0xb8, + 0xc,0x36,0x60,0xb8,0xfd,0x86,0xf0,0xcb,0xea,0x71,0x60,0xd8,0x91,0xb4,0xf0,0x0, + 0x0,0x70,0x80,0x31,0x67,0x84,0x10,0x32,0x73,0x16,0x80,0x33,0x47,0x66,0x10,0x34, + 0x52,0xf8,0x80,0x35,0x27,0x48,0x10,0x36,0x32,0xda,0x80,0x37,0x7,0x2a,0x10,0x38, + 0x1b,0xf7,0x0,0x38,0xe7,0xc,0x10,0x39,0xfb,0xd9,0x0,0x3a,0xf5,0x12,0x90,0x3b, + 0xb6,0xd1,0x0,0x3c,0xb0,0xa,0x90,0x3d,0xbb,0x9d,0x0,0x3e,0x8f,0xec,0x90,0x3f, + 0x9b,0x7f,0x0,0x40,0x6f,0xce,0x90,0x41,0x84,0x9b,0x80,0x42,0x4f,0xb0,0x90,0x43, + 0x64,0x7d,0x80,0x44,0x2f,0x92,0x90,0x45,0x44,0x5f,0x80,0x46,0xf,0x74,0x90,0x47, + 0x24,0x41,0x80,0x47,0xf8,0x91,0x10,0x49,0x4,0x23,0x80,0x49,0xd8,0x73,0x10,0x4a, + 0xe4,0x5,0x80,0x4b,0xb8,0x55,0x10,0x4c,0xcd,0x13,0xf0,0x4d,0x98,0x29,0x0,0x4e, + 0xac,0xf5,0xf0,0x4f,0x78,0xb,0x0,0x50,0x8c,0xd7,0xf0,0x51,0x61,0x27,0x80,0x52, + 0x6c,0xb9,0xf0,0x53,0x41,0x9,0x80,0x54,0x4c,0x9b,0xf0,0x55,0x20,0xeb,0x80,0x56, + 0x2c,0x7d,0xf0,0x57,0x0,0xcd,0x80,0x58,0x15,0x9a,0x70,0x58,0xe0,0xaf,0x80,0x59, + 0xf5,0x7c,0x70,0x5a,0xc0,0x91,0x80,0x5b,0xd5,0x5e,0x70,0x5c,0xa9,0xae,0x0,0x5d, + 0xb5,0x40,0x70,0x5e,0x89,0x90,0x0,0x5f,0x95,0x22,0x70,0x60,0x69,0x72,0x0,0x61, + 0x7e,0x3e,0xf0,0x62,0x49,0x54,0x0,0x63,0x5e,0x20,0xf0,0x64,0x29,0x36,0x0,0x65, + 0x3e,0x2,0xf0,0x66,0x12,0x52,0x80,0x67,0x1d,0xe4,0xf0,0x67,0xf2,0x34,0x80,0x68, + 0xfd,0xc6,0xf0,0x69,0xd2,0x16,0x80,0x6a,0xdd,0xa8,0xf0,0x6b,0xb1,0xf8,0x80,0x6c, + 0xc6,0xc5,0x70,0x6d,0x91,0xda,0x80,0x6e,0xa6,0xa7,0x70,0x6f,0x71,0xbc,0x80,0x70, + 0x86,0x89,0x70,0x71,0x5a,0xd9,0x0,0x72,0x66,0x6b,0x70,0x73,0x3a,0xbb,0x0,0x74, + 0x46,0x4d,0x70,0x75,0x1a,0x9d,0x0,0x76,0x2f,0x69,0xf0,0x76,0xfa,0x7f,0x0,0x78, + 0xf,0x4b,0xf0,0x78,0xda,0x61,0x0,0x79,0xef,0x2d,0xf0,0x7a,0xba,0x43,0x0,0x7b, + 0xcf,0xf,0xf0,0x7c,0xa3,0x5f,0x80,0x7d,0xae,0xf1,0xf0,0x7e,0x83,0x41,0x80,0x7f, + 0x8e,0xd3,0xf0,0x0,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x3,0x1,0x4,0x1,0x4, + 0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4, + 0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x5,0x2,0x5,0x2,0x5,0x2,0x5, + 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, + 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, + 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, + 0x2,0xff,0xff,0x9d,0x54,0x0,0x0,0xff,0xff,0x9d,0x90,0x0,0x4,0xff,0xff,0xab, + 0xa0,0x0,0x8,0xff,0xff,0x8f,0x80,0x0,0xc,0xff,0xff,0xab,0xa0,0x1,0x10,0xff, + 0xff,0xb9,0xb0,0x1,0x14,0xff,0xff,0xab,0xa0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x4d, + 0x53,0x54,0x0,0x43,0x53,0x54,0x0,0x50,0x53,0x54,0x0,0x4d,0x44,0x54,0x0,0x43, + 0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x5e,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x18,0xf8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xa5,0xb6,0xe8,0x70,0xff,0xff,0xff, + 0xff,0xaf,0xf2,0x6e,0xe0,0xff,0xff,0xff,0xff,0xb6,0x66,0x56,0x60,0xff,0xff,0xff, + 0xff,0xb7,0x43,0xd2,0x60,0xff,0xff,0xff,0xff,0xb8,0xc,0x36,0x60,0xff,0xff,0xff, + 0xff,0xb8,0xfd,0x86,0xf0,0xff,0xff,0xff,0xff,0xcb,0xea,0x71,0x60,0xff,0xff,0xff, + 0xff,0xd8,0x91,0xb4,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x70,0x80,0x0,0x0,0x0, + 0x0,0x31,0x67,0x84,0x10,0x0,0x0,0x0,0x0,0x32,0x73,0x16,0x80,0x0,0x0,0x0, + 0x0,0x33,0x47,0x66,0x10,0x0,0x0,0x0,0x0,0x34,0x52,0xf8,0x80,0x0,0x0,0x0, + 0x0,0x35,0x27,0x48,0x10,0x0,0x0,0x0,0x0,0x36,0x32,0xda,0x80,0x0,0x0,0x0, + 0x0,0x37,0x7,0x2a,0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0xf7,0x0,0x0,0x0,0x0, + 0x0,0x38,0xe7,0xc,0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0xd9,0x0,0x0,0x0,0x0, + 0x0,0x3a,0xf5,0x12,0x90,0x0,0x0,0x0,0x0,0x3b,0xb6,0xd1,0x0,0x0,0x0,0x0, + 0x0,0x3c,0xb0,0xa,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x9d,0x0,0x0,0x0,0x0, + 0x0,0x3e,0x8f,0xec,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x7f,0x0,0x0,0x0,0x0, + 0x0,0x40,0x6f,0xce,0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x9b,0x80,0x0,0x0,0x0, + 0x0,0x42,0x4f,0xb0,0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x7d,0x80,0x0,0x0,0x0, + 0x0,0x44,0x2f,0x92,0x90,0x0,0x0,0x0,0x0,0x45,0x44,0x5f,0x80,0x0,0x0,0x0, + 0x0,0x46,0xf,0x74,0x90,0x0,0x0,0x0,0x0,0x47,0x24,0x41,0x80,0x0,0x0,0x0, + 0x0,0x47,0xf8,0x91,0x10,0x0,0x0,0x0,0x0,0x49,0x4,0x23,0x80,0x0,0x0,0x0, + 0x0,0x49,0xd8,0x73,0x10,0x0,0x0,0x0,0x0,0x4a,0xe4,0x5,0x80,0x0,0x0,0x0, + 0x0,0x4b,0xb8,0x55,0x10,0x0,0x0,0x0,0x0,0x4c,0xcd,0x13,0xf0,0x0,0x0,0x0, + 0x0,0x4d,0x98,0x29,0x0,0x0,0x0,0x0,0x0,0x4e,0xac,0xf5,0xf0,0x0,0x0,0x0, + 0x0,0x4f,0x78,0xb,0x0,0x0,0x0,0x0,0x0,0x50,0x8c,0xd7,0xf0,0x0,0x0,0x0, + 0x0,0x51,0x61,0x27,0x80,0x0,0x0,0x0,0x0,0x52,0x6c,0xb9,0xf0,0x0,0x0,0x0, + 0x0,0x53,0x41,0x9,0x80,0x0,0x0,0x0,0x0,0x54,0x4c,0x9b,0xf0,0x0,0x0,0x0, + 0x0,0x55,0x20,0xeb,0x80,0x0,0x0,0x0,0x0,0x56,0x2c,0x7d,0xf0,0x0,0x0,0x0, + 0x0,0x57,0x0,0xcd,0x80,0x0,0x0,0x0,0x0,0x58,0x15,0x9a,0x70,0x0,0x0,0x0, + 0x0,0x58,0xe0,0xaf,0x80,0x0,0x0,0x0,0x0,0x59,0xf5,0x7c,0x70,0x0,0x0,0x0, + 0x0,0x5a,0xc0,0x91,0x80,0x0,0x0,0x0,0x0,0x5b,0xd5,0x5e,0x70,0x0,0x0,0x0, + 0x0,0x5c,0xa9,0xae,0x0,0x0,0x0,0x0,0x0,0x5d,0xb5,0x40,0x70,0x0,0x0,0x0, + 0x0,0x5e,0x89,0x90,0x0,0x0,0x0,0x0,0x0,0x5f,0x95,0x22,0x70,0x0,0x0,0x0, + 0x0,0x60,0x69,0x72,0x0,0x0,0x0,0x0,0x0,0x61,0x7e,0x3e,0xf0,0x0,0x0,0x0, + 0x0,0x62,0x49,0x54,0x0,0x0,0x0,0x0,0x0,0x63,0x5e,0x20,0xf0,0x0,0x0,0x0, + 0x0,0x64,0x29,0x36,0x0,0x0,0x0,0x0,0x0,0x65,0x3e,0x2,0xf0,0x0,0x0,0x0, + 0x0,0x66,0x12,0x52,0x80,0x0,0x0,0x0,0x0,0x67,0x1d,0xe4,0xf0,0x0,0x0,0x0, + 0x0,0x67,0xf2,0x34,0x80,0x0,0x0,0x0,0x0,0x68,0xfd,0xc6,0xf0,0x0,0x0,0x0, + 0x0,0x69,0xd2,0x16,0x80,0x0,0x0,0x0,0x0,0x6a,0xdd,0xa8,0xf0,0x0,0x0,0x0, + 0x0,0x6b,0xb1,0xf8,0x80,0x0,0x0,0x0,0x0,0x6c,0xc6,0xc5,0x70,0x0,0x0,0x0, + 0x0,0x6d,0x91,0xda,0x80,0x0,0x0,0x0,0x0,0x6e,0xa6,0xa7,0x70,0x0,0x0,0x0, + 0x0,0x6f,0x71,0xbc,0x80,0x0,0x0,0x0,0x0,0x70,0x86,0x89,0x70,0x0,0x0,0x0, + 0x0,0x71,0x5a,0xd9,0x0,0x0,0x0,0x0,0x0,0x72,0x66,0x6b,0x70,0x0,0x0,0x0, + 0x0,0x73,0x3a,0xbb,0x0,0x0,0x0,0x0,0x0,0x74,0x46,0x4d,0x70,0x0,0x0,0x0, + 0x0,0x75,0x1a,0x9d,0x0,0x0,0x0,0x0,0x0,0x76,0x2f,0x69,0xf0,0x0,0x0,0x0, + 0x0,0x76,0xfa,0x7f,0x0,0x0,0x0,0x0,0x0,0x78,0xf,0x4b,0xf0,0x0,0x0,0x0, + 0x0,0x78,0xda,0x61,0x0,0x0,0x0,0x0,0x0,0x79,0xef,0x2d,0xf0,0x0,0x0,0x0, + 0x0,0x7a,0xba,0x43,0x0,0x0,0x0,0x0,0x0,0x7b,0xcf,0xf,0xf0,0x0,0x0,0x0, + 0x0,0x7c,0xa3,0x5f,0x80,0x0,0x0,0x0,0x0,0x7d,0xae,0xf1,0xf0,0x0,0x0,0x0, + 0x0,0x7e,0x83,0x41,0x80,0x0,0x0,0x0,0x0,0x7f,0x8e,0xd3,0xf0,0x0,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x3,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4, + 0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4, + 0x1,0x4,0x1,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, + 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, + 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, + 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0xff,0xff,0x9d,0x54,0x0, + 0x0,0xff,0xff,0x9d,0x90,0x0,0x4,0xff,0xff,0xab,0xa0,0x0,0x8,0xff,0xff,0x8f, + 0x80,0x0,0xc,0xff,0xff,0xab,0xa0,0x1,0x10,0xff,0xff,0xb9,0xb0,0x1,0x14,0xff, + 0xff,0xab,0xa0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x4d,0x53,0x54,0x0,0x43,0x53,0x54, + 0x0,0x50,0x53,0x54,0x0,0x4d,0x44,0x54,0x0,0x43,0x44,0x54,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x43,0x53,0x54,0x36, + 0x43,0x44,0x54,0x2c,0x4d,0x34,0x2e,0x31,0x2e,0x30,0x2c,0x4d,0x31,0x30,0x2e,0x35, + 0x2e,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Dawson_Creek + 0x0,0x0,0x4,0x23, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3a,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x80,0x0,0x0,0x0,0x9e, + 0xb8,0xbd,0xa0,0x9f,0xbb,0x15,0x90,0xcb,0x89,0x1a,0xa0,0xd2,0x23,0xf4,0x70,0xd2, + 0x61,0x26,0x10,0xd5,0x55,0xf1,0x20,0xd6,0x20,0xea,0x10,0xd7,0x35,0xd3,0x20,0xd8, + 0x0,0xcc,0x10,0xd9,0x15,0xb5,0x20,0xd9,0xe0,0xae,0x10,0xda,0xfe,0xd1,0xa0,0xdb, + 0xc0,0x90,0x10,0xdc,0xde,0xb3,0xa0,0xdd,0xa9,0xac,0x90,0xde,0xbe,0x95,0xa0,0xdf, + 0x89,0x8e,0x90,0xe0,0x9e,0x77,0xa0,0xe1,0x69,0x70,0x90,0xe2,0x7e,0x59,0xa0,0xe3, + 0x49,0x52,0x90,0xe4,0x5e,0x3b,0xa0,0xe5,0x29,0x34,0x90,0xe6,0x47,0x58,0x20,0xe7, + 0x12,0x51,0x10,0xe8,0x27,0x3a,0x20,0xe8,0xf2,0x33,0x10,0xea,0x7,0x1c,0x20,0xea, + 0xd2,0x15,0x10,0xeb,0xe6,0xfe,0x20,0xec,0xb1,0xf7,0x10,0xed,0xc6,0xe0,0x20,0xee, + 0x91,0xd9,0x10,0xef,0xaf,0xfc,0xa0,0xf0,0x71,0xbb,0x10,0xf1,0x8f,0xde,0xa0,0xf2, + 0x7f,0xc1,0x90,0xf3,0x6f,0xc0,0xa0,0xf4,0x5f,0xa3,0x90,0xf5,0x4f,0xa2,0xa0,0xf6, + 0x3f,0x85,0x90,0xf7,0x2f,0x84,0xa0,0xf8,0x28,0xa2,0x10,0xf9,0xf,0x66,0xa0,0xfa, + 0x8,0x84,0x10,0xfa,0xf8,0x83,0x20,0xfb,0xe8,0x66,0x10,0xfc,0xd8,0x65,0x20,0xfd, + 0xc8,0x48,0x10,0xfe,0xb8,0x47,0x20,0xff,0xa8,0x2a,0x10,0x0,0x98,0x29,0x20,0x1, + 0x88,0xc,0x10,0x2,0x78,0xb,0x20,0x3,0x71,0x28,0x90,0x4,0x61,0x27,0xa0,0x5, + 0x1,0xf0,0x90,0x2,0x1,0x2,0x3,0x4,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1c,0x20,0x1,0x4, - 0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x8,0x2d,0x30,0x30,0x0, - 0x2b,0x30,0x32,0x0,0x2b,0x30,0x30,0x0,0x0,0x1,0x1,0x0,0x0,0x1,0x1,0x0, - 0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x45,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0xc,0xf8,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x42,0xd,0x47,0x0,0x0,0x0,0x0,0x0, - 0x42,0x46,0x5,0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0, - 0x44,0x25,0xe7,0x90,0x0,0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0, - 0x46,0x5,0xc9,0x90,0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0, - 0x47,0xee,0xe6,0x10,0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0, - 0x49,0xce,0xc8,0x10,0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0, - 0x4b,0xae,0xaa,0x10,0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0, - 0x4d,0x8e,0x8c,0x10,0x0,0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0, - 0x4f,0x6e,0x6e,0x10,0x0,0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0, - 0x51,0x57,0x8a,0x90,0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0, - 0x53,0x37,0x6c,0x90,0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0, - 0x55,0x17,0x4e,0x90,0x0,0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0, - 0x56,0xf7,0x30,0x90,0x0,0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0, - 0x58,0xd7,0x12,0x90,0x0,0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0, - 0x5a,0xb6,0xf4,0x90,0x0,0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0, - 0x5c,0xa0,0x11,0x10,0x0,0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0, - 0x5e,0x7f,0xf3,0x10,0x0,0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0, - 0x60,0x5f,0xd5,0x10,0x0,0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0, - 0x62,0x3f,0xb7,0x10,0x0,0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0, - 0x64,0x1f,0x99,0x10,0x0,0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0, - 0x66,0x8,0xb5,0x90,0x0,0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0, - 0x67,0xe8,0x97,0x90,0x0,0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0, - 0x69,0xc8,0x79,0x90,0x0,0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0, - 0x6b,0xa8,0x5b,0x90,0x0,0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0, - 0x6d,0x88,0x3d,0x90,0x0,0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0, - 0x6f,0x68,0x1f,0x90,0x0,0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0, - 0x71,0x51,0x3c,0x10,0x0,0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0, - 0x73,0x31,0x1e,0x10,0x0,0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0, - 0x75,0x11,0x0,0x10,0x0,0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0, - 0x76,0xf0,0xe2,0x10,0x0,0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0, - 0x78,0xd0,0xc4,0x10,0x0,0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0, - 0x7a,0xb0,0xa6,0x10,0x0,0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0, - 0x7c,0x99,0xc2,0x90,0x0,0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0, - 0x7e,0x79,0xa4,0x90,0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x0,0x0,0x0, - 0x7f,0xff,0xff,0xff,0x0,0x3,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x5,0xff,0xff,0x8f, + 0x48,0x0,0x0,0xff,0xff,0x9d,0x90,0x1,0x4,0xff,0xff,0x8f,0x80,0x0,0x8,0xff, + 0xff,0x9d,0x90,0x1,0xc,0xff,0xff,0x9d,0x90,0x1,0x10,0xff,0xff,0x9d,0x90,0x0, + 0x14,0x4c,0x4d,0x54,0x0,0x50,0x44,0x54,0x0,0x50,0x53,0x54,0x0,0x50,0x57,0x54, + 0x0,0x50,0x50,0x54,0x0,0x4d,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0, + 0x0,0x0,0x0,0x1,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3b,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x18,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x5e,0x3d,0x74, + 0x38,0xff,0xff,0xff,0xff,0x9e,0xb8,0xbd,0xa0,0xff,0xff,0xff,0xff,0x9f,0xbb,0x15, + 0x90,0xff,0xff,0xff,0xff,0xcb,0x89,0x1a,0xa0,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4, + 0x70,0xff,0xff,0xff,0xff,0xd2,0x61,0x26,0x10,0xff,0xff,0xff,0xff,0xd5,0x55,0xf1, + 0x20,0xff,0xff,0xff,0xff,0xd6,0x20,0xea,0x10,0xff,0xff,0xff,0xff,0xd7,0x35,0xd3, + 0x20,0xff,0xff,0xff,0xff,0xd8,0x0,0xcc,0x10,0xff,0xff,0xff,0xff,0xd9,0x15,0xb5, + 0x20,0xff,0xff,0xff,0xff,0xd9,0xe0,0xae,0x10,0xff,0xff,0xff,0xff,0xda,0xfe,0xd1, + 0xa0,0xff,0xff,0xff,0xff,0xdb,0xc0,0x90,0x10,0xff,0xff,0xff,0xff,0xdc,0xde,0xb3, + 0xa0,0xff,0xff,0xff,0xff,0xdd,0xa9,0xac,0x90,0xff,0xff,0xff,0xff,0xde,0xbe,0x95, + 0xa0,0xff,0xff,0xff,0xff,0xdf,0x89,0x8e,0x90,0xff,0xff,0xff,0xff,0xe0,0x9e,0x77, + 0xa0,0xff,0xff,0xff,0xff,0xe1,0x69,0x70,0x90,0xff,0xff,0xff,0xff,0xe2,0x7e,0x59, + 0xa0,0xff,0xff,0xff,0xff,0xe3,0x49,0x52,0x90,0xff,0xff,0xff,0xff,0xe4,0x5e,0x3b, + 0xa0,0xff,0xff,0xff,0xff,0xe5,0x29,0x34,0x90,0xff,0xff,0xff,0xff,0xe6,0x47,0x58, + 0x20,0xff,0xff,0xff,0xff,0xe7,0x12,0x51,0x10,0xff,0xff,0xff,0xff,0xe8,0x27,0x3a, + 0x20,0xff,0xff,0xff,0xff,0xe8,0xf2,0x33,0x10,0xff,0xff,0xff,0xff,0xea,0x7,0x1c, + 0x20,0xff,0xff,0xff,0xff,0xea,0xd2,0x15,0x10,0xff,0xff,0xff,0xff,0xeb,0xe6,0xfe, + 0x20,0xff,0xff,0xff,0xff,0xec,0xb1,0xf7,0x10,0xff,0xff,0xff,0xff,0xed,0xc6,0xe0, + 0x20,0xff,0xff,0xff,0xff,0xee,0x91,0xd9,0x10,0xff,0xff,0xff,0xff,0xef,0xaf,0xfc, + 0xa0,0xff,0xff,0xff,0xff,0xf0,0x71,0xbb,0x10,0xff,0xff,0xff,0xff,0xf1,0x8f,0xde, + 0xa0,0xff,0xff,0xff,0xff,0xf2,0x7f,0xc1,0x90,0xff,0xff,0xff,0xff,0xf3,0x6f,0xc0, + 0xa0,0xff,0xff,0xff,0xff,0xf4,0x5f,0xa3,0x90,0xff,0xff,0xff,0xff,0xf5,0x4f,0xa2, + 0xa0,0xff,0xff,0xff,0xff,0xf6,0x3f,0x85,0x90,0xff,0xff,0xff,0xff,0xf7,0x2f,0x84, + 0xa0,0xff,0xff,0xff,0xff,0xf8,0x28,0xa2,0x10,0xff,0xff,0xff,0xff,0xf9,0xf,0x66, + 0xa0,0xff,0xff,0xff,0xff,0xfa,0x8,0x84,0x10,0xff,0xff,0xff,0xff,0xfa,0xf8,0x83, + 0x20,0xff,0xff,0xff,0xff,0xfb,0xe8,0x66,0x10,0xff,0xff,0xff,0xff,0xfc,0xd8,0x65, + 0x20,0xff,0xff,0xff,0xff,0xfd,0xc8,0x48,0x10,0xff,0xff,0xff,0xff,0xfe,0xb8,0x47, + 0x20,0xff,0xff,0xff,0xff,0xff,0xa8,0x2a,0x10,0x0,0x0,0x0,0x0,0x0,0x98,0x29, + 0x20,0x0,0x0,0x0,0x0,0x1,0x88,0xc,0x10,0x0,0x0,0x0,0x0,0x2,0x78,0xb, + 0x20,0x0,0x0,0x0,0x0,0x3,0x71,0x28,0x90,0x0,0x0,0x0,0x0,0x4,0x61,0x27, + 0xa0,0x0,0x0,0x0,0x0,0x5,0x1,0xf0,0x90,0x0,0x2,0x1,0x2,0x3,0x4,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0, - 0x8,0x2d,0x30,0x30,0x0,0x2b,0x30,0x32,0x0,0x2b,0x30,0x30,0x0,0x0,0x1,0x1, - 0x0,0x0,0x1,0x1,0x0,0xa,0x3c,0x2b,0x30,0x30,0x3e,0x30,0x3c,0x2b,0x30,0x32, - 0x3e,0x2d,0x32,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2f,0x31,0x2c,0x4d,0x31,0x30, - 0x2e,0x35,0x2e,0x30,0x2f,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Antarctica/Mawson - 0x0,0x0,0x0,0xe1, + 0x1,0x2,0x1,0x5,0xff,0xff,0x8f,0x48,0x0,0x0,0xff,0xff,0x9d,0x90,0x1,0x4, + 0xff,0xff,0x8f,0x80,0x0,0x8,0xff,0xff,0x9d,0x90,0x1,0xc,0xff,0xff,0x9d,0x90, + 0x1,0x10,0xff,0xff,0x9d,0x90,0x0,0x14,0x4c,0x4d,0x54,0x0,0x50,0x44,0x54,0x0, + 0x50,0x53,0x54,0x0,0x50,0x57,0x54,0x0,0x50,0x50,0x54,0x0,0x4d,0x53,0x54,0x0, + 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0x4d,0x53,0x54, + 0x37,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Porto_Velho + 0x0,0x0,0x2,0x5a, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x4,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0xe2, - 0x20,0x32,0x80,0x4a,0xda,0x22,0x40,0x7f,0xff,0xff,0xff,0x0,0x1,0x2,0x2,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x60,0x0,0x4,0x0,0x0,0x46,0x50,0x0, - 0x8,0x2d,0x30,0x30,0x0,0x2b,0x30,0x36,0x0,0x2b,0x30,0x35,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0xf8, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xe2,0x20,0x32,0x80,0x0, - 0x0,0x0,0x0,0x4a,0xda,0x22,0x40,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0, - 0x1,0x2,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x60,0x0,0x4,0x0, - 0x0,0x46,0x50,0x0,0x8,0x2d,0x30,0x30,0x0,0x2b,0x30,0x36,0x0,0x2b,0x30,0x35, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2b,0x30,0x35,0x3e,0x2d,0x35,0xa, - - // /home/konrad/src/smoke/tzone/zoneinfo/Antarctica/Rothera - 0x0,0x0,0x0,0xba, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x3,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0xd, - 0x2,0x2d,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0, - 0xff,0xff,0xd5,0xd0,0x0,0x4,0x2d,0x30,0x30,0x0,0x2d,0x30,0x33,0x0,0x0,0x0, - 0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd,0x2,0x2d,0x0,0x0,0x0, - 0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xff, - 0xff,0xd5,0xd0,0x0,0x4,0x2d,0x30,0x30,0x0,0x2d,0x30,0x33,0x0,0x0,0x0,0x0, - 0x0,0xa,0x3c,0x2d,0x30,0x33,0x3e,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Antarctica/Casey - 0x0,0x0,0x1,0x3a, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x8,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0xfe, - 0x1e,0xcc,0x80,0x4a,0xda,0x6,0x20,0x4b,0x8f,0xca,0xf0,0x4e,0xa9,0x9c,0x20,0x4f, - 0x43,0xcd,0x90,0x58,0xa,0x3b,0x80,0x7f,0xff,0xff,0xff,0x0,0x1,0x2,0x1,0x2, - 0x3,0x2,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x70,0x80,0x0,0x4,0x0, - 0x0,0x9a,0xb0,0x0,0x8,0x0,0x0,0x70,0x80,0x0,0x4,0x0,0x0,0x9a,0xb0,0x0, - 0x8,0x2d,0x30,0x30,0x0,0x2b,0x30,0x38,0x0,0x2b,0x31,0x31,0x0,0x0,0x0,0x0, - 0x1,0x0,0x0,0x0,0x0,0x1,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0, - 0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x5,0x0, - 0x0,0x0,0xc,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xfe, - 0x1e,0xcc,0x80,0x0,0x0,0x0,0x0,0x4a,0xda,0x6,0x20,0x0,0x0,0x0,0x0,0x4b, - 0x8f,0xca,0xf0,0x0,0x0,0x0,0x0,0x4e,0xa9,0x9c,0x20,0x0,0x0,0x0,0x0,0x4f, - 0x43,0xcd,0x90,0x0,0x0,0x0,0x0,0x58,0xa,0x3b,0x80,0x0,0x0,0x0,0x0,0x7f, - 0xff,0xff,0xff,0x0,0x1,0x2,0x1,0x2,0x3,0x2,0x2,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x70,0x80,0x0,0x4,0x0,0x0,0x9a,0xb0,0x0,0x8,0x0,0x0,0x70, - 0x80,0x0,0x4,0x0,0x0,0x9a,0xb0,0x0,0x8,0x2d,0x30,0x30,0x0,0x2b,0x30,0x38, - 0x0,0x2b,0x31,0x31,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x1,0x0,0xa, - 0x3c,0x2b,0x31,0x31,0x3e,0x2d,0x31,0x31,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Antarctica/DumontDUrville - 0x0,0x0,0x0,0xd8, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x5,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0xd4, - 0xbc,0x76,0x80,0xde,0x34,0x60,0x60,0xe7,0x3c,0x2,0x80,0x7f,0xff,0xff,0xff,0x0, - 0x1,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8c,0xa0,0x0,0x4, - 0x2d,0x30,0x30,0x0,0x2b,0x31,0x30,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66, - 0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5, - 0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0xff,0xff,0xff,0xff,0xd4,0xbc,0x76,0x80,0xff,0xff,0xff,0xff,0xde,0x34,0x60,0x60, - 0xff,0xff,0xff,0xff,0xe7,0x3c,0x2,0x80,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff, - 0x0,0x1,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8c,0xa0,0x0, - 0x4,0x2d,0x30,0x30,0x0,0x2b,0x31,0x30,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2b, - 0x31,0x30,0x3e,0x2d,0x31,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Antarctica/Davis - 0x0,0x0,0x1,0x37, + 0x0,0x0,0x1f,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0x96, + 0xaa,0x82,0xe8,0xb8,0xf,0x57,0xf0,0xb8,0xfd,0x4e,0xb0,0xb9,0xf1,0x42,0x40,0xba, + 0xde,0x82,0x30,0xda,0x38,0xbc,0x40,0xda,0xec,0x8,0x40,0xdc,0x19,0xef,0xc0,0xdc, + 0xb9,0x67,0x30,0xdd,0xfb,0x23,0x40,0xde,0x9b,0xec,0x30,0xdf,0xdd,0xa8,0x40,0xe0, + 0x54,0x41,0x30,0xf4,0x98,0xd,0xc0,0xf5,0x5,0x6c,0x30,0xf6,0xc0,0x72,0x40,0xf7, + 0xe,0x2c,0xb0,0xf8,0x51,0x3a,0x40,0xf8,0xc7,0xd3,0x30,0xfa,0xa,0xe0,0xc0,0xfa, + 0xa9,0x6,0xb0,0xfb,0xec,0x14,0x40,0xfc,0x8b,0x8b,0xb0,0x1d,0xc9,0x9c,0x40,0x1e, + 0x78,0xe5,0xb0,0x1f,0xa0,0x43,0xc0,0x20,0x33,0xdd,0xb0,0x21,0x81,0x77,0x40,0x22, + 0xb,0xd6,0xb0,0x7f,0xff,0xff,0xff,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x2,0xff,0xff,0xc4,0x18,0x0,0x0,0xff,0xff,0xd5,0xd0, + 0x1,0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x2d,0x30,0x33,0x0, + 0x2d,0x30,0x34,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0x0,0x0, + 0x0,0x3,0x0,0x0,0x0,0xc,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff, + 0xff,0xff,0x96,0xaa,0x82,0xe8,0xff,0xff,0xff,0xff,0xb8,0xf,0x57,0xf0,0xff,0xff, + 0xff,0xff,0xb8,0xfd,0x4e,0xb0,0xff,0xff,0xff,0xff,0xb9,0xf1,0x42,0x40,0xff,0xff, + 0xff,0xff,0xba,0xde,0x82,0x30,0xff,0xff,0xff,0xff,0xda,0x38,0xbc,0x40,0xff,0xff, + 0xff,0xff,0xda,0xec,0x8,0x40,0xff,0xff,0xff,0xff,0xdc,0x19,0xef,0xc0,0xff,0xff, + 0xff,0xff,0xdc,0xb9,0x67,0x30,0xff,0xff,0xff,0xff,0xdd,0xfb,0x23,0x40,0xff,0xff, + 0xff,0xff,0xde,0x9b,0xec,0x30,0xff,0xff,0xff,0xff,0xdf,0xdd,0xa8,0x40,0xff,0xff, + 0xff,0xff,0xe0,0x54,0x41,0x30,0xff,0xff,0xff,0xff,0xf4,0x98,0xd,0xc0,0xff,0xff, + 0xff,0xff,0xf5,0x5,0x6c,0x30,0xff,0xff,0xff,0xff,0xf6,0xc0,0x72,0x40,0xff,0xff, + 0xff,0xff,0xf7,0xe,0x2c,0xb0,0xff,0xff,0xff,0xff,0xf8,0x51,0x3a,0x40,0xff,0xff, + 0xff,0xff,0xf8,0xc7,0xd3,0x30,0xff,0xff,0xff,0xff,0xfa,0xa,0xe0,0xc0,0xff,0xff, + 0xff,0xff,0xfa,0xa9,0x6,0xb0,0xff,0xff,0xff,0xff,0xfb,0xec,0x14,0x40,0xff,0xff, + 0xff,0xff,0xfc,0x8b,0x8b,0xb0,0x0,0x0,0x0,0x0,0x1d,0xc9,0x9c,0x40,0x0,0x0, + 0x0,0x0,0x1e,0x78,0xe5,0xb0,0x0,0x0,0x0,0x0,0x1f,0xa0,0x43,0xc0,0x0,0x0, + 0x0,0x0,0x20,0x33,0xdd,0xb0,0x0,0x0,0x0,0x0,0x21,0x81,0x77,0x40,0x0,0x0, + 0x0,0x0,0x22,0xb,0xd6,0xb0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x2,0xff,0xff,0xc4, + 0x18,0x0,0x0,0xff,0xff,0xd5,0xd0,0x1,0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0x4c, + 0x4d,0x54,0x0,0x2d,0x30,0x33,0x0,0x2d,0x30,0x34,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xa,0x3c,0x2d,0x30,0x34,0x3e,0x34,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Grand_Turk + 0x0,0x0,0x7,0x59, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x9,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0xe7, - 0x9c,0x40,0x0,0xf6,0x47,0xdf,0x10,0xfe,0x47,0xab,0x0,0x4a,0xda,0x14,0x30,0x4b, - 0x97,0xfa,0x40,0x4e,0xa9,0xaa,0x30,0x4f,0x43,0xf7,0xc0,0x7f,0xff,0xff,0xff,0x0, - 0x1,0x0,0x1,0x2,0x3,0x2,0x3,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x62,0x70,0x0,0x4,0x0,0x0,0x46,0x50,0x0,0x8,0x0,0x0,0x62,0x70,0x0,0x4, - 0x2d,0x30,0x30,0x0,0x2b,0x30,0x37,0x0,0x2b,0x30,0x35,0x0,0x0,0x0,0x0,0x1, - 0x0,0x0,0x0,0x1,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0xc, - 0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xe7,0x9c,0x40,0x0, - 0xff,0xff,0xff,0xff,0xf6,0x47,0xdf,0x10,0xff,0xff,0xff,0xff,0xfe,0x47,0xab,0x0, - 0x0,0x0,0x0,0x0,0x4a,0xda,0x14,0x30,0x0,0x0,0x0,0x0,0x4b,0x97,0xfa,0x40, - 0x0,0x0,0x0,0x0,0x4e,0xa9,0xaa,0x30,0x0,0x0,0x0,0x0,0x4f,0x43,0xf7,0xc0, - 0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x0,0x1,0x2,0x3,0x2,0x3, - 0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x62,0x70,0x0,0x4,0x0,0x0,0x46, - 0x50,0x0,0x8,0x0,0x0,0x62,0x70,0x0,0x4,0x2d,0x30,0x30,0x0,0x2b,0x30,0x37, - 0x0,0x2b,0x30,0x35,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0xa,0x3c,0x2b, - 0x30,0x37,0x3e,0x2d,0x37,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Antarctica/Palmer - 0x0,0x0,0x7,0xea, + 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x74,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0x93, + 0xf,0xb4,0xff,0x11,0x89,0x65,0xf0,0x12,0x79,0x48,0xe0,0x13,0x69,0x47,0xf0,0x14, + 0x59,0x2a,0xe0,0x15,0x49,0x29,0xf0,0x16,0x39,0xc,0xe0,0x17,0x29,0xb,0xf0,0x18, + 0x22,0x29,0x60,0x19,0x8,0xed,0xf0,0x1a,0x2,0xb,0x60,0x1a,0xf2,0xa,0x70,0x1b, + 0xe1,0xed,0x60,0x1c,0xd1,0xec,0x70,0x1d,0xc1,0xcf,0x60,0x1e,0xb1,0xce,0x70,0x1f, + 0xa1,0xb1,0x60,0x20,0x76,0x0,0xf0,0x21,0x81,0x93,0x60,0x22,0x55,0xe2,0xf0,0x23, + 0x6a,0xaf,0xe0,0x24,0x35,0xc4,0xf0,0x25,0x4a,0x91,0xe0,0x26,0x15,0xa6,0xf0,0x27, + 0x2a,0x73,0xe0,0x27,0xfe,0xc3,0x70,0x29,0xa,0x55,0xe0,0x29,0xde,0xa5,0x70,0x2a, + 0xea,0x37,0xe0,0x2b,0xbe,0x87,0x70,0x2c,0xd3,0x54,0x60,0x2d,0x9e,0x69,0x70,0x2e, + 0xb3,0x36,0x60,0x2f,0x7e,0x4b,0x70,0x30,0x93,0x18,0x60,0x31,0x67,0x67,0xf0,0x32, + 0x72,0xfa,0x60,0x33,0x47,0x49,0xf0,0x34,0x52,0xdc,0x60,0x35,0x27,0x2b,0xf0,0x36, + 0x32,0xbe,0x60,0x37,0x7,0xd,0xf0,0x38,0x1b,0xda,0xe0,0x38,0xe6,0xef,0xf0,0x39, + 0xfb,0xbc,0xe0,0x3a,0xc6,0xd1,0xf0,0x3b,0xdb,0x9e,0xe0,0x3c,0xaf,0xee,0x70,0x3d, + 0xbb,0x80,0xe0,0x3e,0x8f,0xd0,0x70,0x3f,0x9b,0x62,0xe0,0x40,0x6f,0xb2,0x70,0x41, + 0x84,0x7f,0x60,0x42,0x4f,0x94,0x70,0x43,0x64,0x61,0x60,0x44,0x2f,0x76,0x70,0x45, + 0x44,0x43,0x60,0x45,0xf3,0xa8,0xf0,0x47,0x2d,0x5f,0xe0,0x47,0xd3,0x8a,0xf0,0x49, + 0xd,0x41,0xe0,0x49,0xb3,0x6c,0xf0,0x4a,0xed,0x23,0xe0,0x4b,0x9c,0x89,0x70,0x4c, + 0xd6,0x40,0x60,0x4d,0x7c,0x6b,0x70,0x4e,0xb6,0x22,0x60,0x4f,0x5c,0x4d,0x70,0x50, + 0x96,0x4,0x60,0x51,0x3c,0x2f,0x70,0x52,0x75,0xe6,0x60,0x53,0x1c,0x11,0x70,0x54, + 0x55,0xc8,0x60,0x54,0xfb,0xf3,0x70,0x56,0x35,0xaa,0x60,0x5a,0xa4,0xd3,0xf0,0x5b, + 0xde,0x8a,0xe0,0x5c,0x84,0xb5,0xf0,0x5d,0xbe,0x6c,0xe0,0x5e,0x64,0x97,0xf0,0x5f, + 0x9e,0x4e,0xe0,0x60,0x4d,0xb4,0x70,0x61,0x87,0x6b,0x60,0x62,0x2d,0x96,0x70,0x63, + 0x67,0x4d,0x60,0x64,0xd,0x78,0x70,0x65,0x47,0x2f,0x60,0x65,0xed,0x5a,0x70,0x67, + 0x27,0x11,0x60,0x67,0xcd,0x3c,0x70,0x69,0x6,0xf3,0x60,0x69,0xad,0x1e,0x70,0x6a, + 0xe6,0xd5,0x60,0x6b,0x96,0x3a,0xf0,0x6c,0xcf,0xf1,0xe0,0x6d,0x76,0x1c,0xf0,0x6e, + 0xaf,0xd3,0xe0,0x6f,0x55,0xfe,0xf0,0x70,0x8f,0xb5,0xe0,0x71,0x35,0xe0,0xf0,0x72, + 0x6f,0x97,0xe0,0x73,0x15,0xc2,0xf0,0x74,0x4f,0x79,0xe0,0x74,0xfe,0xdf,0x70,0x76, + 0x38,0x96,0x60,0x76,0xde,0xc1,0x70,0x78,0x18,0x78,0x60,0x78,0xbe,0xa3,0x70,0x79, + 0xf8,0x5a,0x60,0x7a,0x9e,0x85,0x70,0x7b,0xd8,0x3c,0x60,0x7c,0x7e,0x67,0x70,0x7d, + 0xb8,0x1e,0x60,0x7e,0x5e,0x49,0x70,0x7f,0x98,0x0,0x60,0x1,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x4,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0xff, + 0xff,0xbd,0x50,0x0,0x0,0xff,0xff,0xb8,0x1,0x0,0x4,0xff,0xff,0xb9,0xb0,0x0, + 0x8,0xff,0xff,0xc7,0xc0,0x1,0xc,0xff,0xff,0xc7,0xc0,0x0,0x10,0xff,0xff,0xb9, + 0xb0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x4b,0x4d,0x54,0x0,0x45,0x53,0x54,0x0,0x45, + 0x44,0x54,0x0,0x41,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x75,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0xf8, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x69,0x87,0x1e,0x30,0xff, + 0xff,0xff,0xff,0x93,0xf,0xb4,0xff,0x0,0x0,0x0,0x0,0x11,0x89,0x65,0xf0,0x0, + 0x0,0x0,0x0,0x12,0x79,0x48,0xe0,0x0,0x0,0x0,0x0,0x13,0x69,0x47,0xf0,0x0, + 0x0,0x0,0x0,0x14,0x59,0x2a,0xe0,0x0,0x0,0x0,0x0,0x15,0x49,0x29,0xf0,0x0, + 0x0,0x0,0x0,0x16,0x39,0xc,0xe0,0x0,0x0,0x0,0x0,0x17,0x29,0xb,0xf0,0x0, + 0x0,0x0,0x0,0x18,0x22,0x29,0x60,0x0,0x0,0x0,0x0,0x19,0x8,0xed,0xf0,0x0, + 0x0,0x0,0x0,0x1a,0x2,0xb,0x60,0x0,0x0,0x0,0x0,0x1a,0xf2,0xa,0x70,0x0, + 0x0,0x0,0x0,0x1b,0xe1,0xed,0x60,0x0,0x0,0x0,0x0,0x1c,0xd1,0xec,0x70,0x0, + 0x0,0x0,0x0,0x1d,0xc1,0xcf,0x60,0x0,0x0,0x0,0x0,0x1e,0xb1,0xce,0x70,0x0, + 0x0,0x0,0x0,0x1f,0xa1,0xb1,0x60,0x0,0x0,0x0,0x0,0x20,0x76,0x0,0xf0,0x0, + 0x0,0x0,0x0,0x21,0x81,0x93,0x60,0x0,0x0,0x0,0x0,0x22,0x55,0xe2,0xf0,0x0, + 0x0,0x0,0x0,0x23,0x6a,0xaf,0xe0,0x0,0x0,0x0,0x0,0x24,0x35,0xc4,0xf0,0x0, + 0x0,0x0,0x0,0x25,0x4a,0x91,0xe0,0x0,0x0,0x0,0x0,0x26,0x15,0xa6,0xf0,0x0, + 0x0,0x0,0x0,0x27,0x2a,0x73,0xe0,0x0,0x0,0x0,0x0,0x27,0xfe,0xc3,0x70,0x0, + 0x0,0x0,0x0,0x29,0xa,0x55,0xe0,0x0,0x0,0x0,0x0,0x29,0xde,0xa5,0x70,0x0, + 0x0,0x0,0x0,0x2a,0xea,0x37,0xe0,0x0,0x0,0x0,0x0,0x2b,0xbe,0x87,0x70,0x0, + 0x0,0x0,0x0,0x2c,0xd3,0x54,0x60,0x0,0x0,0x0,0x0,0x2d,0x9e,0x69,0x70,0x0, + 0x0,0x0,0x0,0x2e,0xb3,0x36,0x60,0x0,0x0,0x0,0x0,0x2f,0x7e,0x4b,0x70,0x0, + 0x0,0x0,0x0,0x30,0x93,0x18,0x60,0x0,0x0,0x0,0x0,0x31,0x67,0x67,0xf0,0x0, + 0x0,0x0,0x0,0x32,0x72,0xfa,0x60,0x0,0x0,0x0,0x0,0x33,0x47,0x49,0xf0,0x0, + 0x0,0x0,0x0,0x34,0x52,0xdc,0x60,0x0,0x0,0x0,0x0,0x35,0x27,0x2b,0xf0,0x0, + 0x0,0x0,0x0,0x36,0x32,0xbe,0x60,0x0,0x0,0x0,0x0,0x37,0x7,0xd,0xf0,0x0, + 0x0,0x0,0x0,0x38,0x1b,0xda,0xe0,0x0,0x0,0x0,0x0,0x38,0xe6,0xef,0xf0,0x0, + 0x0,0x0,0x0,0x39,0xfb,0xbc,0xe0,0x0,0x0,0x0,0x0,0x3a,0xc6,0xd1,0xf0,0x0, + 0x0,0x0,0x0,0x3b,0xdb,0x9e,0xe0,0x0,0x0,0x0,0x0,0x3c,0xaf,0xee,0x70,0x0, + 0x0,0x0,0x0,0x3d,0xbb,0x80,0xe0,0x0,0x0,0x0,0x0,0x3e,0x8f,0xd0,0x70,0x0, + 0x0,0x0,0x0,0x3f,0x9b,0x62,0xe0,0x0,0x0,0x0,0x0,0x40,0x6f,0xb2,0x70,0x0, + 0x0,0x0,0x0,0x41,0x84,0x7f,0x60,0x0,0x0,0x0,0x0,0x42,0x4f,0x94,0x70,0x0, + 0x0,0x0,0x0,0x43,0x64,0x61,0x60,0x0,0x0,0x0,0x0,0x44,0x2f,0x76,0x70,0x0, + 0x0,0x0,0x0,0x45,0x44,0x43,0x60,0x0,0x0,0x0,0x0,0x45,0xf3,0xa8,0xf0,0x0, + 0x0,0x0,0x0,0x47,0x2d,0x5f,0xe0,0x0,0x0,0x0,0x0,0x47,0xd3,0x8a,0xf0,0x0, + 0x0,0x0,0x0,0x49,0xd,0x41,0xe0,0x0,0x0,0x0,0x0,0x49,0xb3,0x6c,0xf0,0x0, + 0x0,0x0,0x0,0x4a,0xed,0x23,0xe0,0x0,0x0,0x0,0x0,0x4b,0x9c,0x89,0x70,0x0, + 0x0,0x0,0x0,0x4c,0xd6,0x40,0x60,0x0,0x0,0x0,0x0,0x4d,0x7c,0x6b,0x70,0x0, + 0x0,0x0,0x0,0x4e,0xb6,0x22,0x60,0x0,0x0,0x0,0x0,0x4f,0x5c,0x4d,0x70,0x0, + 0x0,0x0,0x0,0x50,0x96,0x4,0x60,0x0,0x0,0x0,0x0,0x51,0x3c,0x2f,0x70,0x0, + 0x0,0x0,0x0,0x52,0x75,0xe6,0x60,0x0,0x0,0x0,0x0,0x53,0x1c,0x11,0x70,0x0, + 0x0,0x0,0x0,0x54,0x55,0xc8,0x60,0x0,0x0,0x0,0x0,0x54,0xfb,0xf3,0x70,0x0, + 0x0,0x0,0x0,0x56,0x35,0xaa,0x60,0x0,0x0,0x0,0x0,0x5a,0xa4,0xd3,0xf0,0x0, + 0x0,0x0,0x0,0x5b,0xde,0x8a,0xe0,0x0,0x0,0x0,0x0,0x5c,0x84,0xb5,0xf0,0x0, + 0x0,0x0,0x0,0x5d,0xbe,0x6c,0xe0,0x0,0x0,0x0,0x0,0x5e,0x64,0x97,0xf0,0x0, + 0x0,0x0,0x0,0x5f,0x9e,0x4e,0xe0,0x0,0x0,0x0,0x0,0x60,0x4d,0xb4,0x70,0x0, + 0x0,0x0,0x0,0x61,0x87,0x6b,0x60,0x0,0x0,0x0,0x0,0x62,0x2d,0x96,0x70,0x0, + 0x0,0x0,0x0,0x63,0x67,0x4d,0x60,0x0,0x0,0x0,0x0,0x64,0xd,0x78,0x70,0x0, + 0x0,0x0,0x0,0x65,0x47,0x2f,0x60,0x0,0x0,0x0,0x0,0x65,0xed,0x5a,0x70,0x0, + 0x0,0x0,0x0,0x67,0x27,0x11,0x60,0x0,0x0,0x0,0x0,0x67,0xcd,0x3c,0x70,0x0, + 0x0,0x0,0x0,0x69,0x6,0xf3,0x60,0x0,0x0,0x0,0x0,0x69,0xad,0x1e,0x70,0x0, + 0x0,0x0,0x0,0x6a,0xe6,0xd5,0x60,0x0,0x0,0x0,0x0,0x6b,0x96,0x3a,0xf0,0x0, + 0x0,0x0,0x0,0x6c,0xcf,0xf1,0xe0,0x0,0x0,0x0,0x0,0x6d,0x76,0x1c,0xf0,0x0, + 0x0,0x0,0x0,0x6e,0xaf,0xd3,0xe0,0x0,0x0,0x0,0x0,0x6f,0x55,0xfe,0xf0,0x0, + 0x0,0x0,0x0,0x70,0x8f,0xb5,0xe0,0x0,0x0,0x0,0x0,0x71,0x35,0xe0,0xf0,0x0, + 0x0,0x0,0x0,0x72,0x6f,0x97,0xe0,0x0,0x0,0x0,0x0,0x73,0x15,0xc2,0xf0,0x0, + 0x0,0x0,0x0,0x74,0x4f,0x79,0xe0,0x0,0x0,0x0,0x0,0x74,0xfe,0xdf,0x70,0x0, + 0x0,0x0,0x0,0x76,0x38,0x96,0x60,0x0,0x0,0x0,0x0,0x76,0xde,0xc1,0x70,0x0, + 0x0,0x0,0x0,0x78,0x18,0x78,0x60,0x0,0x0,0x0,0x0,0x78,0xbe,0xa3,0x70,0x0, + 0x0,0x0,0x0,0x79,0xf8,0x5a,0x60,0x0,0x0,0x0,0x0,0x7a,0x9e,0x85,0x70,0x0, + 0x0,0x0,0x0,0x7b,0xd8,0x3c,0x60,0x0,0x0,0x0,0x0,0x7c,0x7e,0x67,0x70,0x0, + 0x0,0x0,0x0,0x7d,0xb8,0x1e,0x60,0x0,0x0,0x0,0x0,0x7e,0x5e,0x49,0x70,0x0, + 0x0,0x0,0x0,0x7f,0x98,0x0,0x60,0x0,0x1,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x4,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0xff,0xff,0xbd,0x50, + 0x0,0x0,0xff,0xff,0xb8,0x1,0x0,0x4,0xff,0xff,0xb9,0xb0,0x0,0x8,0xff,0xff, + 0xc7,0xc0,0x1,0xc,0xff,0xff,0xc7,0xc0,0x0,0x10,0xff,0xff,0xb9,0xb0,0x0,0x8, + 0x4c,0x4d,0x54,0x0,0x4b,0x4d,0x54,0x0,0x45,0x53,0x54,0x0,0x45,0x44,0x54,0x0, + 0x41,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xa,0x45,0x53,0x54,0x35,0x45,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30,0x2c, + 0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Tegucigalpa + 0x0,0x0,0x1,0x16, 0x54, - 0x5a,0x69,0x66,0x33,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x7c,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x16,0x80,0x0,0x0,0x0,0xf6, - 0x98,0xad,0x0,0xf6,0xe6,0x9f,0xb0,0xf8,0x13,0x43,0xc0,0xf8,0xc7,0xd3,0x30,0xf9, - 0xf4,0x77,0x40,0xfa,0xd3,0x36,0xb0,0xfb,0xc3,0x35,0xc0,0xfc,0xbc,0x53,0x30,0xfd, - 0xac,0x52,0x40,0xfe,0x9c,0x35,0x30,0xff,0x8c,0x34,0x40,0x7,0xa3,0x4a,0xb0,0x8, - 0x24,0x6f,0xa0,0x17,0x30,0xbc,0xb0,0x18,0x6,0x5d,0xc0,0x18,0xd1,0x56,0xb0,0x19, - 0xe6,0x3f,0xc0,0x1a,0xb1,0x38,0xb0,0x1b,0xcf,0x5c,0x40,0x1c,0x91,0x1a,0xb0,0x1d, - 0xaf,0x3e,0x40,0x1e,0x70,0xfc,0xb0,0x1f,0x8f,0x20,0x40,0x20,0x7f,0x3,0x30,0x21, - 0x6f,0x2,0x40,0x22,0x39,0xfb,0x30,0x23,0x4e,0xe4,0x40,0x24,0x19,0xdd,0x30,0x25, - 0x38,0x0,0xc0,0x25,0xf9,0xbf,0x30,0x26,0xf2,0xf8,0xc0,0x27,0xd9,0xa1,0x30,0x28, - 0xf7,0xc4,0xc0,0x29,0xc2,0xbd,0xb0,0x2a,0xd7,0xa6,0xc0,0x2b,0xa2,0x9f,0xb0,0x2c, - 0xb7,0x88,0xc0,0x2d,0x82,0x81,0xb0,0x2e,0x97,0x6a,0xc0,0x2f,0x62,0x63,0xb0,0x30, - 0x80,0x87,0x40,0x31,0x42,0x45,0xb0,0x32,0x60,0x69,0x40,0x33,0x3d,0xd7,0x30,0x34, - 0x40,0x4b,0x40,0x35,0xb,0x44,0x30,0x36,0xd,0xb8,0x40,0x37,0x6,0xd5,0xb0,0x38, - 0x0,0xf,0x40,0x38,0xcb,0x8,0x30,0x39,0xe9,0x2b,0xc0,0x3a,0xaa,0xea,0x30,0x3b, - 0xc9,0xd,0xc0,0x3c,0x8a,0xcc,0x30,0x3d,0xa8,0xef,0xc0,0x3e,0x6a,0xae,0x30,0x3f, - 0x88,0xd1,0xc0,0x40,0x53,0xca,0xb0,0x41,0x68,0xb3,0xc0,0x42,0x33,0xac,0xb0,0x43, - 0x48,0x95,0xc0,0x44,0x13,0x8e,0xb0,0x45,0x31,0xb2,0x40,0x45,0xf3,0x70,0xb0,0x47, - 0x11,0x94,0x40,0x47,0xef,0x2,0x30,0x48,0xf1,0x76,0x40,0x49,0xbc,0x6f,0x30,0x4a, - 0xd1,0x58,0x40,0x4b,0xb8,0x0,0xb0,0x4c,0xb1,0x3a,0x40,0x4d,0xc6,0x7,0x30,0x4e, - 0x50,0x82,0xc0,0x4f,0x9c,0xae,0xb0,0x50,0x42,0xd9,0xc0,0x51,0x7c,0x90,0xb0,0x52, - 0x2b,0xf6,0x40,0x53,0x5c,0x72,0xb0,0x54,0xb,0xd8,0x40,0x57,0x37,0xe6,0x30,0x57, - 0xaf,0xec,0xc0,0x59,0x17,0xc8,0x30,0x59,0x8f,0xce,0xc0,0x5a,0xf7,0xaa,0x30,0x5b, - 0x6f,0xb0,0xc0,0x5c,0xd7,0x8c,0x30,0x5d,0x4f,0x92,0xc0,0x5e,0xb7,0x6e,0x30,0x5f, - 0x2f,0x74,0xc0,0x60,0x97,0x50,0x30,0x61,0x18,0x91,0x40,0x62,0x80,0x6c,0xb0,0x62, - 0xf8,0x73,0x40,0x64,0x60,0x4e,0xb0,0x64,0xd8,0x55,0x40,0x66,0x40,0x30,0xb0,0x66, - 0xb8,0x37,0x40,0x68,0x20,0x12,0xb0,0x68,0x98,0x19,0x40,0x69,0xff,0xf4,0xb0,0x6a, - 0x77,0xfb,0x40,0x6b,0xdf,0xd6,0xb0,0x6c,0x61,0x17,0xc0,0x6d,0xc8,0xf3,0x30,0x6e, - 0x40,0xf9,0xc0,0x6f,0xa8,0xd5,0x30,0x70,0x20,0xdb,0xc0,0x71,0x88,0xb7,0x30,0x72, - 0x0,0xbd,0xc0,0x73,0x68,0x99,0x30,0x73,0xe0,0x9f,0xc0,0x75,0x48,0x7b,0x30,0x75, - 0xc9,0xbc,0x40,0x77,0x31,0x97,0xb0,0x77,0xa9,0x9e,0x40,0x79,0x11,0x79,0xb0,0x79, - 0x89,0x80,0x40,0x7a,0xf1,0x5b,0xb0,0x7b,0x69,0x62,0x40,0x7c,0xd1,0x3d,0xb0,0x7d, - 0x49,0x44,0x40,0x7e,0xb1,0x1f,0xb0,0x7f,0x29,0x26,0x40,0x0,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x4,0x3,0x4,0x7,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xc7, - 0xc0,0x0,0x4,0xff,0xff,0xd5,0xd0,0x1,0x8,0xff,0xff,0xe3,0xe0,0x1,0x8,0xff, - 0xff,0xd5,0xd0,0x0,0x4,0xff,0xff,0xd5,0xd0,0x1,0xd,0xff,0xff,0xc7,0xc0,0x0, - 0x12,0xff,0xff,0xc7,0xc0,0x0,0x12,0x2d,0x30,0x30,0x0,0x41,0x52,0x54,0x0,0x41, - 0x52,0x53,0x54,0x0,0x43,0x4c,0x53,0x54,0x0,0x43,0x4c,0x54,0x0,0x0,0x0,0x0, - 0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x54,0x5a,0x69, - 0x66,0x33,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x7c,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x16,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0xf6,0x98,0xad,0x0,0xff,0xff,0xff,0xff,0xf6,0xe6,0x9f, - 0xb0,0xff,0xff,0xff,0xff,0xf8,0x13,0x43,0xc0,0xff,0xff,0xff,0xff,0xf8,0xc7,0xd3, - 0x30,0xff,0xff,0xff,0xff,0xf9,0xf4,0x77,0x40,0xff,0xff,0xff,0xff,0xfa,0xd3,0x36, - 0xb0,0xff,0xff,0xff,0xff,0xfb,0xc3,0x35,0xc0,0xff,0xff,0xff,0xff,0xfc,0xbc,0x53, - 0x30,0xff,0xff,0xff,0xff,0xfd,0xac,0x52,0x40,0xff,0xff,0xff,0xff,0xfe,0x9c,0x35, - 0x30,0xff,0xff,0xff,0xff,0xff,0x8c,0x34,0x40,0x0,0x0,0x0,0x0,0x7,0xa3,0x4a, - 0xb0,0x0,0x0,0x0,0x0,0x8,0x24,0x6f,0xa0,0x0,0x0,0x0,0x0,0x17,0x30,0xbc, - 0xb0,0x0,0x0,0x0,0x0,0x18,0x6,0x5d,0xc0,0x0,0x0,0x0,0x0,0x18,0xd1,0x56, - 0xb0,0x0,0x0,0x0,0x0,0x19,0xe6,0x3f,0xc0,0x0,0x0,0x0,0x0,0x1a,0xb1,0x38, - 0xb0,0x0,0x0,0x0,0x0,0x1b,0xcf,0x5c,0x40,0x0,0x0,0x0,0x0,0x1c,0x91,0x1a, - 0xb0,0x0,0x0,0x0,0x0,0x1d,0xaf,0x3e,0x40,0x0,0x0,0x0,0x0,0x1e,0x70,0xfc, - 0xb0,0x0,0x0,0x0,0x0,0x1f,0x8f,0x20,0x40,0x0,0x0,0x0,0x0,0x20,0x7f,0x3, - 0x30,0x0,0x0,0x0,0x0,0x21,0x6f,0x2,0x40,0x0,0x0,0x0,0x0,0x22,0x39,0xfb, - 0x30,0x0,0x0,0x0,0x0,0x23,0x4e,0xe4,0x40,0x0,0x0,0x0,0x0,0x24,0x19,0xdd, - 0x30,0x0,0x0,0x0,0x0,0x25,0x38,0x0,0xc0,0x0,0x0,0x0,0x0,0x25,0xf9,0xbf, - 0x30,0x0,0x0,0x0,0x0,0x26,0xf2,0xf8,0xc0,0x0,0x0,0x0,0x0,0x27,0xd9,0xa1, - 0x30,0x0,0x0,0x0,0x0,0x28,0xf7,0xc4,0xc0,0x0,0x0,0x0,0x0,0x29,0xc2,0xbd, - 0xb0,0x0,0x0,0x0,0x0,0x2a,0xd7,0xa6,0xc0,0x0,0x0,0x0,0x0,0x2b,0xa2,0x9f, - 0xb0,0x0,0x0,0x0,0x0,0x2c,0xb7,0x88,0xc0,0x0,0x0,0x0,0x0,0x2d,0x82,0x81, - 0xb0,0x0,0x0,0x0,0x0,0x2e,0x97,0x6a,0xc0,0x0,0x0,0x0,0x0,0x2f,0x62,0x63, - 0xb0,0x0,0x0,0x0,0x0,0x30,0x80,0x87,0x40,0x0,0x0,0x0,0x0,0x31,0x42,0x45, - 0xb0,0x0,0x0,0x0,0x0,0x32,0x60,0x69,0x40,0x0,0x0,0x0,0x0,0x33,0x3d,0xd7, - 0x30,0x0,0x0,0x0,0x0,0x34,0x40,0x4b,0x40,0x0,0x0,0x0,0x0,0x35,0xb,0x44, - 0x30,0x0,0x0,0x0,0x0,0x36,0xd,0xb8,0x40,0x0,0x0,0x0,0x0,0x37,0x6,0xd5, - 0xb0,0x0,0x0,0x0,0x0,0x38,0x0,0xf,0x40,0x0,0x0,0x0,0x0,0x38,0xcb,0x8, - 0x30,0x0,0x0,0x0,0x0,0x39,0xe9,0x2b,0xc0,0x0,0x0,0x0,0x0,0x3a,0xaa,0xea, - 0x30,0x0,0x0,0x0,0x0,0x3b,0xc9,0xd,0xc0,0x0,0x0,0x0,0x0,0x3c,0x8a,0xcc, - 0x30,0x0,0x0,0x0,0x0,0x3d,0xa8,0xef,0xc0,0x0,0x0,0x0,0x0,0x3e,0x6a,0xae, - 0x30,0x0,0x0,0x0,0x0,0x3f,0x88,0xd1,0xc0,0x0,0x0,0x0,0x0,0x40,0x53,0xca, - 0xb0,0x0,0x0,0x0,0x0,0x41,0x68,0xb3,0xc0,0x0,0x0,0x0,0x0,0x42,0x33,0xac, - 0xb0,0x0,0x0,0x0,0x0,0x43,0x48,0x95,0xc0,0x0,0x0,0x0,0x0,0x44,0x13,0x8e, - 0xb0,0x0,0x0,0x0,0x0,0x45,0x31,0xb2,0x40,0x0,0x0,0x0,0x0,0x45,0xf3,0x70, - 0xb0,0x0,0x0,0x0,0x0,0x47,0x11,0x94,0x40,0x0,0x0,0x0,0x0,0x47,0xef,0x2, - 0x30,0x0,0x0,0x0,0x0,0x48,0xf1,0x76,0x40,0x0,0x0,0x0,0x0,0x49,0xbc,0x6f, - 0x30,0x0,0x0,0x0,0x0,0x4a,0xd1,0x58,0x40,0x0,0x0,0x0,0x0,0x4b,0xb8,0x0, - 0xb0,0x0,0x0,0x0,0x0,0x4c,0xb1,0x3a,0x40,0x0,0x0,0x0,0x0,0x4d,0xc6,0x7, - 0x30,0x0,0x0,0x0,0x0,0x4e,0x50,0x82,0xc0,0x0,0x0,0x0,0x0,0x4f,0x9c,0xae, - 0xb0,0x0,0x0,0x0,0x0,0x50,0x42,0xd9,0xc0,0x0,0x0,0x0,0x0,0x51,0x7c,0x90, - 0xb0,0x0,0x0,0x0,0x0,0x52,0x2b,0xf6,0x40,0x0,0x0,0x0,0x0,0x53,0x5c,0x72, - 0xb0,0x0,0x0,0x0,0x0,0x54,0xb,0xd8,0x40,0x0,0x0,0x0,0x0,0x57,0x37,0xe6, - 0x30,0x0,0x0,0x0,0x0,0x57,0xaf,0xec,0xc0,0x0,0x0,0x0,0x0,0x59,0x17,0xc8, - 0x30,0x0,0x0,0x0,0x0,0x59,0x8f,0xce,0xc0,0x0,0x0,0x0,0x0,0x5a,0xf7,0xaa, - 0x30,0x0,0x0,0x0,0x0,0x5b,0x6f,0xb0,0xc0,0x0,0x0,0x0,0x0,0x5c,0xd7,0x8c, - 0x30,0x0,0x0,0x0,0x0,0x5d,0x4f,0x92,0xc0,0x0,0x0,0x0,0x0,0x5e,0xb7,0x6e, - 0x30,0x0,0x0,0x0,0x0,0x5f,0x2f,0x74,0xc0,0x0,0x0,0x0,0x0,0x60,0x97,0x50, - 0x30,0x0,0x0,0x0,0x0,0x61,0x18,0x91,0x40,0x0,0x0,0x0,0x0,0x62,0x80,0x6c, - 0xb0,0x0,0x0,0x0,0x0,0x62,0xf8,0x73,0x40,0x0,0x0,0x0,0x0,0x64,0x60,0x4e, - 0xb0,0x0,0x0,0x0,0x0,0x64,0xd8,0x55,0x40,0x0,0x0,0x0,0x0,0x66,0x40,0x30, - 0xb0,0x0,0x0,0x0,0x0,0x66,0xb8,0x37,0x40,0x0,0x0,0x0,0x0,0x68,0x20,0x12, - 0xb0,0x0,0x0,0x0,0x0,0x68,0x98,0x19,0x40,0x0,0x0,0x0,0x0,0x69,0xff,0xf4, - 0xb0,0x0,0x0,0x0,0x0,0x6a,0x77,0xfb,0x40,0x0,0x0,0x0,0x0,0x6b,0xdf,0xd6, - 0xb0,0x0,0x0,0x0,0x0,0x6c,0x61,0x17,0xc0,0x0,0x0,0x0,0x0,0x6d,0xc8,0xf3, - 0x30,0x0,0x0,0x0,0x0,0x6e,0x40,0xf9,0xc0,0x0,0x0,0x0,0x0,0x6f,0xa8,0xd5, - 0x30,0x0,0x0,0x0,0x0,0x70,0x20,0xdb,0xc0,0x0,0x0,0x0,0x0,0x71,0x88,0xb7, - 0x30,0x0,0x0,0x0,0x0,0x72,0x0,0xbd,0xc0,0x0,0x0,0x0,0x0,0x73,0x68,0x99, - 0x30,0x0,0x0,0x0,0x0,0x73,0xe0,0x9f,0xc0,0x0,0x0,0x0,0x0,0x75,0x48,0x7b, - 0x30,0x0,0x0,0x0,0x0,0x75,0xc9,0xbc,0x40,0x0,0x0,0x0,0x0,0x77,0x31,0x97, - 0xb0,0x0,0x0,0x0,0x0,0x77,0xa9,0x9e,0x40,0x0,0x0,0x0,0x0,0x79,0x11,0x79, - 0xb0,0x0,0x0,0x0,0x0,0x79,0x89,0x80,0x40,0x0,0x0,0x0,0x0,0x7a,0xf1,0x5b, - 0xb0,0x0,0x0,0x0,0x0,0x7b,0x69,0x62,0x40,0x0,0x0,0x0,0x0,0x7c,0xd1,0x3d, - 0xb0,0x0,0x0,0x0,0x0,0x7d,0x49,0x44,0x40,0x0,0x0,0x0,0x0,0x7e,0xb1,0x1f, - 0xb0,0x0,0x0,0x0,0x0,0x7f,0x29,0x26,0x40,0x0,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x4,0x3,0x4,0x7,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xc7,0xc0,0x0, - 0x4,0xff,0xff,0xd5,0xd0,0x1,0x8,0xff,0xff,0xe3,0xe0,0x1,0x8,0xff,0xff,0xd5, - 0xd0,0x0,0x4,0xff,0xff,0xd5,0xd0,0x1,0xd,0xff,0xff,0xc7,0xc0,0x0,0x12,0xff, - 0xff,0xc7,0xc0,0x0,0x12,0x2d,0x30,0x30,0x0,0x41,0x52,0x54,0x0,0x41,0x52,0x53, - 0x54,0x0,0x43,0x4c,0x53,0x54,0x0,0x43,0x4c,0x54,0x0,0x0,0x0,0x0,0x0,0x0, - 0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0xa,0x43,0x4c,0x54,0x34, - 0x43,0x4c,0x53,0x54,0x2c,0x4d,0x38,0x2e,0x32,0x2e,0x36,0x2f,0x32,0x34,0x2c,0x4d, - 0x35,0x2e,0x32,0x2e,0x36,0x2f,0x32,0x34,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Antarctica/Macquarie - 0x0,0x0,0x5,0xfa, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x8,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0xa4, + 0x4c,0x4b,0x44,0x20,0x9a,0xdc,0xe0,0x21,0x5c,0x9b,0x50,0x22,0x7a,0xbe,0xe0,0x23, + 0x3c,0x7d,0x50,0x44,0x5d,0x8c,0xe0,0x44,0xd6,0xc8,0xd0,0x0,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0xff,0xff,0xae,0x3c,0x0,0x0,0xff,0xff,0xb9,0xb0,0x1,0x4,0xff, + 0xff,0xab,0xa0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x43,0x44,0x54,0x0,0x43,0x53,0x54, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0, + 0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x3,0x0, + 0x0,0x0,0xc,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xa4, + 0x4c,0x4b,0x44,0x0,0x0,0x0,0x0,0x20,0x9a,0xdc,0xe0,0x0,0x0,0x0,0x0,0x21, + 0x5c,0x9b,0x50,0x0,0x0,0x0,0x0,0x22,0x7a,0xbe,0xe0,0x0,0x0,0x0,0x0,0x23, + 0x3c,0x7d,0x50,0x0,0x0,0x0,0x0,0x44,0x5d,0x8c,0xe0,0x0,0x0,0x0,0x0,0x44, + 0xd6,0xc8,0xd0,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0xae,0x3c,0x0, + 0x0,0xff,0xff,0xb9,0xb0,0x1,0x4,0xff,0xff,0xab,0xa0,0x0,0x8,0x4c,0x4d,0x54, + 0x0,0x43,0x44,0x54,0x0,0x43,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa, + 0x43,0x53,0x54,0x36,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Santa_Isabel + 0x0,0x0,0x9,0x34, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x5b,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x13,0x80,0x0,0x0,0x0,0x9b, - 0xd5,0x78,0x80,0x9c,0xbc,0x20,0xf0,0xa0,0x87,0xb4,0x60,0xd7,0xc,0x68,0x0,0xfb, - 0xc2,0x8d,0x0,0xfc,0xb2,0x7e,0x0,0xfd,0xc7,0x59,0x0,0xfe,0x76,0xb0,0x80,0xff, - 0xa7,0x3b,0x0,0x0,0x56,0x92,0x80,0x1,0x87,0x1d,0x0,0x2,0x3f,0xaf,0x0,0x3, - 0x70,0x39,0x80,0x4,0xd,0x1c,0x0,0x5,0x50,0x1b,0x80,0x5,0xf6,0x38,0x80,0x7, - 0x2f,0xfd,0x80,0x7,0xd6,0x1a,0x80,0x9,0xf,0xdf,0x80,0x9,0xb5,0xfc,0x80,0xa, - 0xef,0xc1,0x80,0xb,0x9f,0x19,0x0,0xc,0xd8,0xde,0x0,0xd,0x7e,0xfb,0x0,0xe, - 0xb8,0xc0,0x0,0xf,0x5e,0xdd,0x0,0x10,0x98,0xa2,0x0,0x11,0x3e,0xbf,0x0,0x12, - 0x78,0x84,0x0,0x13,0x1e,0xa1,0x0,0x14,0x58,0x66,0x0,0x14,0xfe,0x83,0x0,0x16, - 0x38,0x48,0x0,0x17,0x3,0x4f,0x0,0x18,0x21,0x64,0x80,0x18,0xe3,0x31,0x0,0x1a, - 0x1,0x46,0x80,0x1a,0xa7,0x63,0x80,0x1b,0xe1,0x28,0x80,0x1c,0x87,0x45,0x80,0x1d, - 0xc1,0xa,0x80,0x1e,0x67,0x27,0x80,0x1f,0x97,0xb2,0x0,0x20,0x59,0x7e,0x80,0x21, - 0x80,0xce,0x80,0x22,0x42,0x9b,0x0,0x23,0x69,0xeb,0x0,0x24,0x22,0x7d,0x0,0x25, - 0x49,0xcd,0x0,0x26,0x2,0x5f,0x0,0x27,0x29,0xaf,0x0,0x27,0xf4,0xb6,0x0,0x28, - 0xed,0xe1,0x80,0x29,0xd4,0x98,0x0,0x2a,0xcd,0xc3,0x80,0x2b,0xb4,0x7a,0x0,0x2c, - 0xad,0xa5,0x80,0x2d,0x94,0x5c,0x0,0x2e,0x8d,0x87,0x80,0x2f,0x74,0x3e,0x0,0x30, - 0x6d,0x69,0x80,0x31,0x5d,0x5a,0x80,0x32,0x56,0x86,0x0,0x33,0x3d,0x3c,0x80,0x34, - 0x36,0x68,0x0,0x35,0x1d,0x1e,0x80,0x36,0x16,0x4a,0x0,0x36,0xfd,0x0,0x80,0x37, - 0xf6,0x2c,0x0,0x38,0xdc,0xe2,0x80,0x39,0xa7,0xe9,0x80,0x3a,0xbc,0xc4,0x80,0x3b, - 0xbf,0x2a,0x80,0x3c,0xa5,0xe1,0x0,0x3d,0x9f,0xc,0x80,0x3e,0x85,0xc3,0x0,0x3f, - 0x7e,0xee,0x80,0x40,0x65,0xa5,0x0,0x41,0x5e,0xd0,0x80,0x42,0x45,0x87,0x0,0x43, - 0x3e,0xb2,0x80,0x44,0x2e,0xa3,0x80,0x45,0x1e,0x94,0x80,0x46,0x5,0x4b,0x0,0x47, - 0x7,0xb1,0x0,0x47,0xf7,0xa2,0x0,0x48,0xe7,0x93,0x0,0x49,0xd7,0x84,0x0,0x4a, - 0xc7,0x75,0x0,0x4b,0xb7,0x66,0x0,0x1,0x2,0x1,0x3,0x1,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8c,0xa0,0x0,0x4,0x0,0x0, - 0x9a,0xb0,0x1,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9a,0xb0,0x1,0x9, - 0x0,0x0,0x8c,0xa0,0x0,0x4,0x0,0x0,0x9a,0xb0,0x0,0xe,0x2d,0x30,0x30,0x0, - 0x41,0x45,0x53,0x54,0x0,0x41,0x45,0x44,0x54,0x0,0x4d,0x49,0x53,0x54,0x0,0x0, - 0x0,0x0,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, - 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x5c,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x13,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0x7c,0x5,0x16,0x0,0xff,0xff,0xff,0xff,0x9b,0xd5,0x78, - 0x80,0xff,0xff,0xff,0xff,0x9c,0xbc,0x20,0xf0,0xff,0xff,0xff,0xff,0xa0,0x87,0xb4, - 0x60,0xff,0xff,0xff,0xff,0xd7,0xc,0x68,0x0,0xff,0xff,0xff,0xff,0xfb,0xc2,0x8d, - 0x0,0xff,0xff,0xff,0xff,0xfc,0xb2,0x7e,0x0,0xff,0xff,0xff,0xff,0xfd,0xc7,0x59, - 0x0,0xff,0xff,0xff,0xff,0xfe,0x76,0xb0,0x80,0xff,0xff,0xff,0xff,0xff,0xa7,0x3b, - 0x0,0x0,0x0,0x0,0x0,0x0,0x56,0x92,0x80,0x0,0x0,0x0,0x0,0x1,0x87,0x1d, - 0x0,0x0,0x0,0x0,0x0,0x2,0x3f,0xaf,0x0,0x0,0x0,0x0,0x0,0x3,0x70,0x39, - 0x80,0x0,0x0,0x0,0x0,0x4,0xd,0x1c,0x0,0x0,0x0,0x0,0x0,0x5,0x50,0x1b, - 0x80,0x0,0x0,0x0,0x0,0x5,0xf6,0x38,0x80,0x0,0x0,0x0,0x0,0x7,0x2f,0xfd, - 0x80,0x0,0x0,0x0,0x0,0x7,0xd6,0x1a,0x80,0x0,0x0,0x0,0x0,0x9,0xf,0xdf, - 0x80,0x0,0x0,0x0,0x0,0x9,0xb5,0xfc,0x80,0x0,0x0,0x0,0x0,0xa,0xef,0xc1, - 0x80,0x0,0x0,0x0,0x0,0xb,0x9f,0x19,0x0,0x0,0x0,0x0,0x0,0xc,0xd8,0xde, - 0x0,0x0,0x0,0x0,0x0,0xd,0x7e,0xfb,0x0,0x0,0x0,0x0,0x0,0xe,0xb8,0xc0, - 0x0,0x0,0x0,0x0,0x0,0xf,0x5e,0xdd,0x0,0x0,0x0,0x0,0x0,0x10,0x98,0xa2, - 0x0,0x0,0x0,0x0,0x0,0x11,0x3e,0xbf,0x0,0x0,0x0,0x0,0x0,0x12,0x78,0x84, - 0x0,0x0,0x0,0x0,0x0,0x13,0x1e,0xa1,0x0,0x0,0x0,0x0,0x0,0x14,0x58,0x66, - 0x0,0x0,0x0,0x0,0x0,0x14,0xfe,0x83,0x0,0x0,0x0,0x0,0x0,0x16,0x38,0x48, - 0x0,0x0,0x0,0x0,0x0,0x17,0x3,0x4f,0x0,0x0,0x0,0x0,0x0,0x18,0x21,0x64, - 0x80,0x0,0x0,0x0,0x0,0x18,0xe3,0x31,0x0,0x0,0x0,0x0,0x0,0x1a,0x1,0x46, - 0x80,0x0,0x0,0x0,0x0,0x1a,0xa7,0x63,0x80,0x0,0x0,0x0,0x0,0x1b,0xe1,0x28, - 0x80,0x0,0x0,0x0,0x0,0x1c,0x87,0x45,0x80,0x0,0x0,0x0,0x0,0x1d,0xc1,0xa, - 0x80,0x0,0x0,0x0,0x0,0x1e,0x67,0x27,0x80,0x0,0x0,0x0,0x0,0x1f,0x97,0xb2, - 0x0,0x0,0x0,0x0,0x0,0x20,0x59,0x7e,0x80,0x0,0x0,0x0,0x0,0x21,0x80,0xce, - 0x80,0x0,0x0,0x0,0x0,0x22,0x42,0x9b,0x0,0x0,0x0,0x0,0x0,0x23,0x69,0xeb, - 0x0,0x0,0x0,0x0,0x0,0x24,0x22,0x7d,0x0,0x0,0x0,0x0,0x0,0x25,0x49,0xcd, - 0x0,0x0,0x0,0x0,0x0,0x26,0x2,0x5f,0x0,0x0,0x0,0x0,0x0,0x27,0x29,0xaf, - 0x0,0x0,0x0,0x0,0x0,0x27,0xf4,0xb6,0x0,0x0,0x0,0x0,0x0,0x28,0xed,0xe1, - 0x80,0x0,0x0,0x0,0x0,0x29,0xd4,0x98,0x0,0x0,0x0,0x0,0x0,0x2a,0xcd,0xc3, - 0x80,0x0,0x0,0x0,0x0,0x2b,0xb4,0x7a,0x0,0x0,0x0,0x0,0x0,0x2c,0xad,0xa5, - 0x80,0x0,0x0,0x0,0x0,0x2d,0x94,0x5c,0x0,0x0,0x0,0x0,0x0,0x2e,0x8d,0x87, - 0x80,0x0,0x0,0x0,0x0,0x2f,0x74,0x3e,0x0,0x0,0x0,0x0,0x0,0x30,0x6d,0x69, - 0x80,0x0,0x0,0x0,0x0,0x31,0x5d,0x5a,0x80,0x0,0x0,0x0,0x0,0x32,0x56,0x86, - 0x0,0x0,0x0,0x0,0x0,0x33,0x3d,0x3c,0x80,0x0,0x0,0x0,0x0,0x34,0x36,0x68, - 0x0,0x0,0x0,0x0,0x0,0x35,0x1d,0x1e,0x80,0x0,0x0,0x0,0x0,0x36,0x16,0x4a, - 0x0,0x0,0x0,0x0,0x0,0x36,0xfd,0x0,0x80,0x0,0x0,0x0,0x0,0x37,0xf6,0x2c, - 0x0,0x0,0x0,0x0,0x0,0x38,0xdc,0xe2,0x80,0x0,0x0,0x0,0x0,0x39,0xa7,0xe9, - 0x80,0x0,0x0,0x0,0x0,0x3a,0xbc,0xc4,0x80,0x0,0x0,0x0,0x0,0x3b,0xbf,0x2a, - 0x80,0x0,0x0,0x0,0x0,0x3c,0xa5,0xe1,0x0,0x0,0x0,0x0,0x0,0x3d,0x9f,0xc, - 0x80,0x0,0x0,0x0,0x0,0x3e,0x85,0xc3,0x0,0x0,0x0,0x0,0x0,0x3f,0x7e,0xee, - 0x80,0x0,0x0,0x0,0x0,0x40,0x65,0xa5,0x0,0x0,0x0,0x0,0x0,0x41,0x5e,0xd0, - 0x80,0x0,0x0,0x0,0x0,0x42,0x45,0x87,0x0,0x0,0x0,0x0,0x0,0x43,0x3e,0xb2, - 0x80,0x0,0x0,0x0,0x0,0x44,0x2e,0xa3,0x80,0x0,0x0,0x0,0x0,0x45,0x1e,0x94, - 0x80,0x0,0x0,0x0,0x0,0x46,0x5,0x4b,0x0,0x0,0x0,0x0,0x0,0x47,0x7,0xb1, - 0x0,0x0,0x0,0x0,0x0,0x47,0xf7,0xa2,0x0,0x0,0x0,0x0,0x0,0x48,0xe7,0x93, - 0x0,0x0,0x0,0x0,0x0,0x49,0xd7,0x84,0x0,0x0,0x0,0x0,0x0,0x4a,0xc7,0x75, - 0x0,0x0,0x0,0x0,0x0,0x4b,0xb7,0x66,0x0,0x0,0x1,0x2,0x1,0x3,0x1,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8c,0xa0,0x0, - 0x4,0x0,0x0,0x9a,0xb0,0x1,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9a, - 0xb0,0x1,0x9,0x0,0x0,0x8c,0xa0,0x0,0x4,0x0,0x0,0x9a,0xb0,0x0,0xe,0x2d, - 0x30,0x30,0x0,0x41,0x45,0x53,0x54,0x0,0x41,0x45,0x44,0x54,0x0,0x4d,0x49,0x53, - 0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0xa,0x4d,0x49,0x53,0x54,0x2d,0x31,0x31,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Antarctica/South_Pole - 0x0,0x0,0x9,0x9c, + 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x96,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x80,0x0,0x0,0x0,0xa5, + 0xb6,0xf6,0x80,0xa9,0x79,0x4f,0x70,0xaf,0xf2,0x7c,0xf0,0xb6,0x66,0x64,0x70,0xb7, + 0x1b,0x10,0x0,0xb8,0xa,0xf2,0xf0,0xcb,0xea,0x8d,0x80,0xd2,0x23,0xf4,0x70,0xd2, + 0x99,0xba,0x70,0xd7,0x1b,0x59,0x0,0xd8,0x91,0xb4,0xf0,0xe2,0x7e,0x4b,0x90,0xe3, + 0x49,0x52,0x90,0xe4,0x5e,0x2d,0x90,0xe5,0x29,0x34,0x90,0xe6,0x47,0x4a,0x10,0xe7, + 0x12,0x51,0x10,0xe8,0x27,0x2c,0x10,0xe8,0xf2,0x33,0x10,0xea,0x7,0xe,0x10,0xea, + 0xd2,0x15,0x10,0xeb,0xe6,0xf0,0x10,0xec,0xb1,0xf7,0x10,0xed,0xc6,0xd2,0x10,0xee, + 0x91,0xd9,0x10,0xb,0xe0,0xaf,0xa0,0xc,0xd9,0xcd,0x10,0xd,0xc0,0x91,0xa0,0xe, + 0xb9,0xaf,0x10,0xf,0xa9,0xae,0x20,0x10,0x99,0x91,0x10,0x11,0x89,0x90,0x20,0x12, + 0x79,0x73,0x10,0x13,0x69,0x72,0x20,0x14,0x59,0x55,0x10,0x15,0x49,0x54,0x20,0x16, + 0x39,0x37,0x10,0x17,0x29,0x36,0x20,0x18,0x22,0x53,0x90,0x19,0x9,0x18,0x20,0x1a, + 0x2,0x35,0x90,0x1a,0xf2,0x34,0xa0,0x1b,0xe2,0x17,0x90,0x1c,0xd2,0x16,0xa0,0x1d, + 0xc1,0xf9,0x90,0x1e,0xb1,0xf8,0xa0,0x1f,0xa1,0xdb,0x90,0x20,0x76,0x2b,0x20,0x21, + 0x81,0xbd,0x90,0x22,0x56,0xd,0x20,0x23,0x6a,0xda,0x10,0x24,0x35,0xef,0x20,0x25, + 0x4a,0xbc,0x10,0x26,0x15,0xd1,0x20,0x27,0x2a,0x9e,0x10,0x27,0xfe,0xed,0xa0,0x29, + 0xa,0x80,0x10,0x29,0xde,0xcf,0xa0,0x2a,0xea,0x62,0x10,0x2b,0xbe,0xb1,0xa0,0x2c, + 0xd3,0x7e,0x90,0x2d,0x9e,0x93,0xa0,0x2e,0xb3,0x60,0x90,0x2f,0x7e,0x75,0xa0,0x30, + 0x93,0x42,0x90,0x31,0x67,0x92,0x20,0x32,0x73,0x24,0x90,0x33,0x47,0x74,0x20,0x34, + 0x53,0x6,0x90,0x35,0x27,0x56,0x20,0x36,0x32,0xe8,0x90,0x37,0x7,0x38,0x20,0x38, + 0x1c,0x5,0x10,0x38,0xe7,0x1a,0x20,0x39,0xfb,0xe7,0x10,0x3a,0xc6,0xfc,0x20,0x3b, + 0xdb,0xc9,0x10,0x3c,0xb0,0x18,0xa0,0x3d,0xbb,0xab,0x10,0x3e,0x8f,0xfa,0xa0,0x3f, + 0x9b,0x8d,0x10,0x40,0x6f,0xdc,0xa0,0x41,0x84,0xa9,0x90,0x42,0x4f,0xbe,0xa0,0x43, + 0x64,0x8b,0x90,0x44,0x2f,0xa0,0xa0,0x45,0x44,0x6d,0x90,0x46,0xf,0x82,0xa0,0x47, + 0x24,0x4f,0x90,0x47,0xf8,0x9f,0x20,0x49,0x4,0x31,0x90,0x49,0xd8,0x81,0x20,0x4a, + 0xe4,0x13,0x90,0x4b,0x9c,0xb3,0xa0,0x4c,0xd6,0x6a,0x90,0x4d,0x7c,0x95,0xa0,0x4e, + 0xb6,0x4c,0x90,0x4f,0x5c,0x77,0xa0,0x50,0x96,0x2e,0x90,0x51,0x3c,0x59,0xa0,0x52, + 0x76,0x10,0x90,0x53,0x1c,0x3b,0xa0,0x54,0x55,0xf2,0x90,0x54,0xfc,0x1d,0xa0,0x56, + 0x35,0xd4,0x90,0x56,0xe5,0x3a,0x20,0x58,0x1e,0xf1,0x10,0x58,0xc5,0x1c,0x20,0x59, + 0xfe,0xd3,0x10,0x5a,0xa4,0xfe,0x20,0x5b,0xde,0xb5,0x10,0x5c,0x84,0xe0,0x20,0x5d, + 0xbe,0x97,0x10,0x5e,0x64,0xc2,0x20,0x5f,0x9e,0x79,0x10,0x60,0x4d,0xde,0xa0,0x61, + 0x87,0x95,0x90,0x62,0x2d,0xc0,0xa0,0x63,0x67,0x77,0x90,0x64,0xd,0xa2,0xa0,0x65, + 0x47,0x59,0x90,0x65,0xed,0x84,0xa0,0x67,0x27,0x3b,0x90,0x67,0xcd,0x66,0xa0,0x69, + 0x7,0x1d,0x90,0x69,0xad,0x48,0xa0,0x6a,0xe6,0xff,0x90,0x6b,0x96,0x65,0x20,0x6c, + 0xd0,0x1c,0x10,0x6d,0x76,0x47,0x20,0x6e,0xaf,0xfe,0x10,0x6f,0x56,0x29,0x20,0x70, + 0x8f,0xe0,0x10,0x71,0x36,0xb,0x20,0x72,0x6f,0xc2,0x10,0x73,0x15,0xed,0x20,0x74, + 0x4f,0xa4,0x10,0x74,0xff,0x9,0xa0,0x76,0x38,0xc0,0x90,0x76,0xde,0xeb,0xa0,0x78, + 0x18,0xa2,0x90,0x78,0xbe,0xcd,0xa0,0x79,0xf8,0x84,0x90,0x7a,0x9e,0xaf,0xa0,0x7b, + 0xd8,0x66,0x90,0x7c,0x7e,0x91,0xa0,0x7d,0xb8,0x48,0x90,0x7e,0x5e,0x73,0xa0,0x7f, + 0x98,0x2a,0x90,0x0,0x1,0x2,0x1,0x2,0x3,0x2,0x4,0x5,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0xff,0xff,0x92,0x4c,0x0,0x0,0xff, + 0xff,0x9d,0x90,0x0,0x4,0xff,0xff,0x8f,0x80,0x0,0x8,0xff,0xff,0x9d,0x90,0x1, + 0xc,0xff,0xff,0x9d,0x90,0x1,0x10,0xff,0xff,0x9d,0x90,0x1,0x14,0x4c,0x4d,0x54, + 0x0,0x4d,0x53,0x54,0x0,0x50,0x53,0x54,0x0,0x50,0x44,0x54,0x0,0x50,0x57,0x54, + 0x0,0x50,0x50,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, + 0x1,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x96,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0xf8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xa5,0xb6,0xf6,0x80,0xff,0xff,0xff, + 0xff,0xa9,0x79,0x4f,0x70,0xff,0xff,0xff,0xff,0xaf,0xf2,0x7c,0xf0,0xff,0xff,0xff, + 0xff,0xb6,0x66,0x64,0x70,0xff,0xff,0xff,0xff,0xb7,0x1b,0x10,0x0,0xff,0xff,0xff, + 0xff,0xb8,0xa,0xf2,0xf0,0xff,0xff,0xff,0xff,0xcb,0xea,0x8d,0x80,0xff,0xff,0xff, + 0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x99,0xba,0x70,0xff,0xff,0xff, + 0xff,0xd7,0x1b,0x59,0x0,0xff,0xff,0xff,0xff,0xd8,0x91,0xb4,0xf0,0xff,0xff,0xff, + 0xff,0xe2,0x7e,0x4b,0x90,0xff,0xff,0xff,0xff,0xe3,0x49,0x52,0x90,0xff,0xff,0xff, + 0xff,0xe4,0x5e,0x2d,0x90,0xff,0xff,0xff,0xff,0xe5,0x29,0x34,0x90,0xff,0xff,0xff, + 0xff,0xe6,0x47,0x4a,0x10,0xff,0xff,0xff,0xff,0xe7,0x12,0x51,0x10,0xff,0xff,0xff, + 0xff,0xe8,0x27,0x2c,0x10,0xff,0xff,0xff,0xff,0xe8,0xf2,0x33,0x10,0xff,0xff,0xff, + 0xff,0xea,0x7,0xe,0x10,0xff,0xff,0xff,0xff,0xea,0xd2,0x15,0x10,0xff,0xff,0xff, + 0xff,0xeb,0xe6,0xf0,0x10,0xff,0xff,0xff,0xff,0xec,0xb1,0xf7,0x10,0xff,0xff,0xff, + 0xff,0xed,0xc6,0xd2,0x10,0xff,0xff,0xff,0xff,0xee,0x91,0xd9,0x10,0x0,0x0,0x0, + 0x0,0xb,0xe0,0xaf,0xa0,0x0,0x0,0x0,0x0,0xc,0xd9,0xcd,0x10,0x0,0x0,0x0, + 0x0,0xd,0xc0,0x91,0xa0,0x0,0x0,0x0,0x0,0xe,0xb9,0xaf,0x10,0x0,0x0,0x0, + 0x0,0xf,0xa9,0xae,0x20,0x0,0x0,0x0,0x0,0x10,0x99,0x91,0x10,0x0,0x0,0x0, + 0x0,0x11,0x89,0x90,0x20,0x0,0x0,0x0,0x0,0x12,0x79,0x73,0x10,0x0,0x0,0x0, + 0x0,0x13,0x69,0x72,0x20,0x0,0x0,0x0,0x0,0x14,0x59,0x55,0x10,0x0,0x0,0x0, + 0x0,0x15,0x49,0x54,0x20,0x0,0x0,0x0,0x0,0x16,0x39,0x37,0x10,0x0,0x0,0x0, + 0x0,0x17,0x29,0x36,0x20,0x0,0x0,0x0,0x0,0x18,0x22,0x53,0x90,0x0,0x0,0x0, + 0x0,0x19,0x9,0x18,0x20,0x0,0x0,0x0,0x0,0x1a,0x2,0x35,0x90,0x0,0x0,0x0, + 0x0,0x1a,0xf2,0x34,0xa0,0x0,0x0,0x0,0x0,0x1b,0xe2,0x17,0x90,0x0,0x0,0x0, + 0x0,0x1c,0xd2,0x16,0xa0,0x0,0x0,0x0,0x0,0x1d,0xc1,0xf9,0x90,0x0,0x0,0x0, + 0x0,0x1e,0xb1,0xf8,0xa0,0x0,0x0,0x0,0x0,0x1f,0xa1,0xdb,0x90,0x0,0x0,0x0, + 0x0,0x20,0x76,0x2b,0x20,0x0,0x0,0x0,0x0,0x21,0x81,0xbd,0x90,0x0,0x0,0x0, + 0x0,0x22,0x56,0xd,0x20,0x0,0x0,0x0,0x0,0x23,0x6a,0xda,0x10,0x0,0x0,0x0, + 0x0,0x24,0x35,0xef,0x20,0x0,0x0,0x0,0x0,0x25,0x4a,0xbc,0x10,0x0,0x0,0x0, + 0x0,0x26,0x15,0xd1,0x20,0x0,0x0,0x0,0x0,0x27,0x2a,0x9e,0x10,0x0,0x0,0x0, + 0x0,0x27,0xfe,0xed,0xa0,0x0,0x0,0x0,0x0,0x29,0xa,0x80,0x10,0x0,0x0,0x0, + 0x0,0x29,0xde,0xcf,0xa0,0x0,0x0,0x0,0x0,0x2a,0xea,0x62,0x10,0x0,0x0,0x0, + 0x0,0x2b,0xbe,0xb1,0xa0,0x0,0x0,0x0,0x0,0x2c,0xd3,0x7e,0x90,0x0,0x0,0x0, + 0x0,0x2d,0x9e,0x93,0xa0,0x0,0x0,0x0,0x0,0x2e,0xb3,0x60,0x90,0x0,0x0,0x0, + 0x0,0x2f,0x7e,0x75,0xa0,0x0,0x0,0x0,0x0,0x30,0x93,0x42,0x90,0x0,0x0,0x0, + 0x0,0x31,0x67,0x92,0x20,0x0,0x0,0x0,0x0,0x32,0x73,0x24,0x90,0x0,0x0,0x0, + 0x0,0x33,0x47,0x74,0x20,0x0,0x0,0x0,0x0,0x34,0x53,0x6,0x90,0x0,0x0,0x0, + 0x0,0x35,0x27,0x56,0x20,0x0,0x0,0x0,0x0,0x36,0x32,0xe8,0x90,0x0,0x0,0x0, + 0x0,0x37,0x7,0x38,0x20,0x0,0x0,0x0,0x0,0x38,0x1c,0x5,0x10,0x0,0x0,0x0, + 0x0,0x38,0xe7,0x1a,0x20,0x0,0x0,0x0,0x0,0x39,0xfb,0xe7,0x10,0x0,0x0,0x0, + 0x0,0x3a,0xc6,0xfc,0x20,0x0,0x0,0x0,0x0,0x3b,0xdb,0xc9,0x10,0x0,0x0,0x0, + 0x0,0x3c,0xb0,0x18,0xa0,0x0,0x0,0x0,0x0,0x3d,0xbb,0xab,0x10,0x0,0x0,0x0, + 0x0,0x3e,0x8f,0xfa,0xa0,0x0,0x0,0x0,0x0,0x3f,0x9b,0x8d,0x10,0x0,0x0,0x0, + 0x0,0x40,0x6f,0xdc,0xa0,0x0,0x0,0x0,0x0,0x41,0x84,0xa9,0x90,0x0,0x0,0x0, + 0x0,0x42,0x4f,0xbe,0xa0,0x0,0x0,0x0,0x0,0x43,0x64,0x8b,0x90,0x0,0x0,0x0, + 0x0,0x44,0x2f,0xa0,0xa0,0x0,0x0,0x0,0x0,0x45,0x44,0x6d,0x90,0x0,0x0,0x0, + 0x0,0x46,0xf,0x82,0xa0,0x0,0x0,0x0,0x0,0x47,0x24,0x4f,0x90,0x0,0x0,0x0, + 0x0,0x47,0xf8,0x9f,0x20,0x0,0x0,0x0,0x0,0x49,0x4,0x31,0x90,0x0,0x0,0x0, + 0x0,0x49,0xd8,0x81,0x20,0x0,0x0,0x0,0x0,0x4a,0xe4,0x13,0x90,0x0,0x0,0x0, + 0x0,0x4b,0x9c,0xb3,0xa0,0x0,0x0,0x0,0x0,0x4c,0xd6,0x6a,0x90,0x0,0x0,0x0, + 0x0,0x4d,0x7c,0x95,0xa0,0x0,0x0,0x0,0x0,0x4e,0xb6,0x4c,0x90,0x0,0x0,0x0, + 0x0,0x4f,0x5c,0x77,0xa0,0x0,0x0,0x0,0x0,0x50,0x96,0x2e,0x90,0x0,0x0,0x0, + 0x0,0x51,0x3c,0x59,0xa0,0x0,0x0,0x0,0x0,0x52,0x76,0x10,0x90,0x0,0x0,0x0, + 0x0,0x53,0x1c,0x3b,0xa0,0x0,0x0,0x0,0x0,0x54,0x55,0xf2,0x90,0x0,0x0,0x0, + 0x0,0x54,0xfc,0x1d,0xa0,0x0,0x0,0x0,0x0,0x56,0x35,0xd4,0x90,0x0,0x0,0x0, + 0x0,0x56,0xe5,0x3a,0x20,0x0,0x0,0x0,0x0,0x58,0x1e,0xf1,0x10,0x0,0x0,0x0, + 0x0,0x58,0xc5,0x1c,0x20,0x0,0x0,0x0,0x0,0x59,0xfe,0xd3,0x10,0x0,0x0,0x0, + 0x0,0x5a,0xa4,0xfe,0x20,0x0,0x0,0x0,0x0,0x5b,0xde,0xb5,0x10,0x0,0x0,0x0, + 0x0,0x5c,0x84,0xe0,0x20,0x0,0x0,0x0,0x0,0x5d,0xbe,0x97,0x10,0x0,0x0,0x0, + 0x0,0x5e,0x64,0xc2,0x20,0x0,0x0,0x0,0x0,0x5f,0x9e,0x79,0x10,0x0,0x0,0x0, + 0x0,0x60,0x4d,0xde,0xa0,0x0,0x0,0x0,0x0,0x61,0x87,0x95,0x90,0x0,0x0,0x0, + 0x0,0x62,0x2d,0xc0,0xa0,0x0,0x0,0x0,0x0,0x63,0x67,0x77,0x90,0x0,0x0,0x0, + 0x0,0x64,0xd,0xa2,0xa0,0x0,0x0,0x0,0x0,0x65,0x47,0x59,0x90,0x0,0x0,0x0, + 0x0,0x65,0xed,0x84,0xa0,0x0,0x0,0x0,0x0,0x67,0x27,0x3b,0x90,0x0,0x0,0x0, + 0x0,0x67,0xcd,0x66,0xa0,0x0,0x0,0x0,0x0,0x69,0x7,0x1d,0x90,0x0,0x0,0x0, + 0x0,0x69,0xad,0x48,0xa0,0x0,0x0,0x0,0x0,0x6a,0xe6,0xff,0x90,0x0,0x0,0x0, + 0x0,0x6b,0x96,0x65,0x20,0x0,0x0,0x0,0x0,0x6c,0xd0,0x1c,0x10,0x0,0x0,0x0, + 0x0,0x6d,0x76,0x47,0x20,0x0,0x0,0x0,0x0,0x6e,0xaf,0xfe,0x10,0x0,0x0,0x0, + 0x0,0x6f,0x56,0x29,0x20,0x0,0x0,0x0,0x0,0x70,0x8f,0xe0,0x10,0x0,0x0,0x0, + 0x0,0x71,0x36,0xb,0x20,0x0,0x0,0x0,0x0,0x72,0x6f,0xc2,0x10,0x0,0x0,0x0, + 0x0,0x73,0x15,0xed,0x20,0x0,0x0,0x0,0x0,0x74,0x4f,0xa4,0x10,0x0,0x0,0x0, + 0x0,0x74,0xff,0x9,0xa0,0x0,0x0,0x0,0x0,0x76,0x38,0xc0,0x90,0x0,0x0,0x0, + 0x0,0x76,0xde,0xeb,0xa0,0x0,0x0,0x0,0x0,0x78,0x18,0xa2,0x90,0x0,0x0,0x0, + 0x0,0x78,0xbe,0xcd,0xa0,0x0,0x0,0x0,0x0,0x79,0xf8,0x84,0x90,0x0,0x0,0x0, + 0x0,0x7a,0x9e,0xaf,0xa0,0x0,0x0,0x0,0x0,0x7b,0xd8,0x66,0x90,0x0,0x0,0x0, + 0x0,0x7c,0x7e,0x91,0xa0,0x0,0x0,0x0,0x0,0x7d,0xb8,0x48,0x90,0x0,0x0,0x0, + 0x0,0x7e,0x5e,0x73,0xa0,0x0,0x0,0x0,0x0,0x7f,0x98,0x2a,0x90,0x0,0x1,0x2, + 0x1,0x2,0x3,0x2,0x4,0x5,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0xff,0xff,0x92,0x4c,0x0,0x0,0xff,0xff,0x9d,0x90,0x0,0x4,0xff, + 0xff,0x8f,0x80,0x0,0x8,0xff,0xff,0x9d,0x90,0x1,0xc,0xff,0xff,0x9d,0x90,0x1, + 0x10,0xff,0xff,0x9d,0x90,0x1,0x14,0x4c,0x4d,0x54,0x0,0x4d,0x53,0x54,0x0,0x50, + 0x53,0x54,0x0,0x50,0x44,0x54,0x0,0x50,0x57,0x54,0x0,0x50,0x50,0x54,0x0,0x0, + 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0xa,0x50,0x53,0x54,0x38, + 0x50,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31, + 0x2e,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Punta_Arenas + 0x0,0x0,0x7,0x77, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x9c,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x13,0x80,0x0,0x0,0x0,0xb0, - 0xb4,0xb2,0xe8,0xb1,0x51,0x87,0x58,0xb2,0x78,0xe5,0x68,0xb3,0x43,0xe5,0x60,0xb4, - 0x58,0xc7,0x68,0xb5,0x23,0xc7,0x60,0xb6,0x38,0xa9,0x68,0xb7,0x3,0xa9,0x60,0xb8, - 0x18,0x8b,0x68,0xb8,0xec,0xc5,0xe0,0xb9,0xf8,0x6d,0x68,0xba,0xcc,0xa7,0xe0,0xbb, - 0xd8,0x4f,0x68,0xbc,0xe3,0xe8,0xe0,0xbd,0xae,0xf6,0xe8,0xbe,0xc3,0xca,0xe0,0xbf, - 0x8e,0xd8,0xe8,0xc0,0xa3,0xac,0xe0,0xc1,0x6e,0xba,0xe8,0xc2,0x83,0x8e,0xe0,0xc3, - 0x4e,0x9c,0xe8,0xc4,0x63,0x70,0xe0,0xc5,0x2e,0x7e,0xe8,0xc6,0x4c,0x8d,0x60,0xc7, - 0xe,0x60,0xe8,0xc8,0x2c,0x6f,0x60,0xc8,0xf7,0x7d,0x68,0xd2,0xda,0x9a,0x40,0x9, - 0x18,0xfd,0xe0,0x9,0xac,0xa5,0xe0,0xa,0xef,0xa5,0x60,0xb,0x9e,0xfc,0xe0,0xc, - 0xd8,0xc1,0xe0,0xd,0x7e,0xde,0xe0,0xe,0xb8,0xa3,0xe0,0xf,0x5e,0xc0,0xe0,0x10, - 0x98,0x85,0xe0,0x11,0x3e,0xa2,0xe0,0x12,0x78,0x67,0xe0,0x13,0x1e,0x84,0xe0,0x14, - 0x58,0x49,0xe0,0x14,0xfe,0x66,0xe0,0x16,0x38,0x2b,0xe0,0x16,0xe7,0x83,0x60,0x18, - 0x21,0x48,0x60,0x18,0xc7,0x65,0x60,0x1a,0x1,0x2a,0x60,0x1a,0xa7,0x47,0x60,0x1b, - 0xe1,0xc,0x60,0x1c,0x87,0x29,0x60,0x1d,0xc0,0xee,0x60,0x1e,0x67,0xb,0x60,0x1f, - 0xa0,0xd0,0x60,0x20,0x46,0xed,0x60,0x21,0x80,0xb2,0x60,0x22,0x30,0x9,0xe0,0x23, - 0x69,0xce,0xe0,0x24,0xf,0xeb,0xe0,0x25,0x2e,0x1,0x60,0x26,0x2,0x42,0xe0,0x27, - 0xd,0xe3,0x60,0x27,0xe2,0x24,0xe0,0x28,0xed,0xc5,0x60,0x29,0xc2,0x6,0xe0,0x2a, - 0xcd,0xa7,0x60,0x2b,0xab,0x23,0x60,0x2c,0xad,0x89,0x60,0x2d,0x8b,0x5,0x60,0x2e, - 0x8d,0x6b,0x60,0x2f,0x6a,0xe7,0x60,0x30,0x6d,0x4d,0x60,0x31,0x4a,0xc9,0x60,0x32, - 0x56,0x69,0xe0,0x33,0x2a,0xab,0x60,0x34,0x36,0x4b,0xe0,0x35,0xa,0x8d,0x60,0x36, - 0x16,0x2d,0xe0,0x36,0xf3,0xa9,0xe0,0x37,0xf6,0xf,0xe0,0x38,0xd3,0x8b,0xe0,0x39, - 0xd5,0xf1,0xe0,0x3a,0xb3,0x6d,0xe0,0x3b,0xbf,0xe,0x60,0x3c,0x93,0x4f,0xe0,0x3d, - 0x9e,0xf0,0x60,0x3e,0x73,0x31,0xe0,0x3f,0x7e,0xd2,0x60,0x40,0x5c,0x4e,0x60,0x41, - 0x5e,0xb4,0x60,0x42,0x3c,0x30,0x60,0x43,0x3e,0x96,0x60,0x44,0x1c,0x12,0x60,0x45, - 0x1e,0x78,0x60,0x45,0xfb,0xf4,0x60,0x46,0xfe,0x5a,0x60,0x47,0xf7,0x85,0xe0,0x48, - 0xde,0x3c,0x60,0x49,0xd7,0x67,0xe0,0x4a,0xbe,0x1e,0x60,0x4b,0xb7,0x49,0xe0,0x4c, - 0x9e,0x0,0x60,0x4d,0x97,0x2b,0xe0,0x4e,0x7d,0xe2,0x60,0x4f,0x77,0xd,0xe0,0x50, - 0x66,0xfe,0xe0,0x51,0x60,0x2a,0x60,0x52,0x46,0xe0,0xe0,0x53,0x40,0xc,0x60,0x54, - 0x26,0xc2,0xe0,0x55,0x1f,0xee,0x60,0x56,0x6,0xa4,0xe0,0x56,0xff,0xd0,0x60,0x57, - 0xe6,0x86,0xe0,0x58,0xdf,0xb2,0x60,0x59,0xc6,0x68,0xe0,0x5a,0xbf,0x94,0x60,0x5b, - 0xaf,0x85,0x60,0x5c,0xa8,0xb0,0xe0,0x5d,0x8f,0x67,0x60,0x5e,0x88,0x92,0xe0,0x5f, - 0x6f,0x49,0x60,0x60,0x68,0x74,0xe0,0x61,0x4f,0x2b,0x60,0x62,0x48,0x56,0xe0,0x63, - 0x2f,0xd,0x60,0x64,0x28,0x38,0xe0,0x65,0xe,0xef,0x60,0x66,0x11,0x55,0x60,0x66, - 0xf8,0xb,0xe0,0x67,0xf1,0x37,0x60,0x68,0xd7,0xed,0xe0,0x69,0xd1,0x19,0x60,0x6a, - 0xb7,0xcf,0xe0,0x6b,0xb0,0xfb,0x60,0x6c,0x97,0xb1,0xe0,0x6d,0x90,0xdd,0x60,0x6e, - 0x77,0x93,0xe0,0x6f,0x70,0xbf,0x60,0x70,0x60,0xb0,0x60,0x71,0x59,0xdb,0xe0,0x72, - 0x40,0x92,0x60,0x73,0x39,0xbd,0xe0,0x74,0x20,0x74,0x60,0x75,0x19,0x9f,0xe0,0x76, - 0x0,0x56,0x60,0x76,0xf9,0x81,0xe0,0x77,0xe0,0x38,0x60,0x78,0xd9,0x63,0xe0,0x79, - 0xc0,0x1a,0x60,0x7a,0xb9,0x45,0xe0,0x7b,0xa9,0x36,0xe0,0x7c,0xa2,0x62,0x60,0x7d, - 0x89,0x18,0xe0,0x7e,0x82,0x44,0x60,0x7f,0x68,0xfa,0xe0,0x2,0x1,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x6,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x0,0x0,0xa3,0xd8,0x0,0x0,0x0,0x0,0xaf, - 0xc8,0x1,0x4,0x0,0x0,0xa1,0xb8,0x0,0x9,0x0,0x0,0xa8,0xc0,0x1,0x4,0x0, - 0x0,0xb6,0xd0,0x1,0xe,0x0,0x0,0xa8,0xc0,0x0,0x4,0x0,0x0,0xa8,0xc0,0x0, - 0x4,0x4c,0x4d,0x54,0x0,0x4e,0x5a,0x53,0x54,0x0,0x4e,0x5a,0x4d,0x54,0x0,0x4e, - 0x5a,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x9d,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x13,0xf8,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x41,0xb7,0x4c,0xa8,0xff,0xff, - 0xff,0xff,0xb0,0xb4,0xb2,0xe8,0xff,0xff,0xff,0xff,0xb1,0x51,0x87,0x58,0xff,0xff, - 0xff,0xff,0xb2,0x78,0xe5,0x68,0xff,0xff,0xff,0xff,0xb3,0x43,0xe5,0x60,0xff,0xff, - 0xff,0xff,0xb4,0x58,0xc7,0x68,0xff,0xff,0xff,0xff,0xb5,0x23,0xc7,0x60,0xff,0xff, - 0xff,0xff,0xb6,0x38,0xa9,0x68,0xff,0xff,0xff,0xff,0xb7,0x3,0xa9,0x60,0xff,0xff, - 0xff,0xff,0xb8,0x18,0x8b,0x68,0xff,0xff,0xff,0xff,0xb8,0xec,0xc5,0xe0,0xff,0xff, - 0xff,0xff,0xb9,0xf8,0x6d,0x68,0xff,0xff,0xff,0xff,0xba,0xcc,0xa7,0xe0,0xff,0xff, - 0xff,0xff,0xbb,0xd8,0x4f,0x68,0xff,0xff,0xff,0xff,0xbc,0xe3,0xe8,0xe0,0xff,0xff, - 0xff,0xff,0xbd,0xae,0xf6,0xe8,0xff,0xff,0xff,0xff,0xbe,0xc3,0xca,0xe0,0xff,0xff, - 0xff,0xff,0xbf,0x8e,0xd8,0xe8,0xff,0xff,0xff,0xff,0xc0,0xa3,0xac,0xe0,0xff,0xff, - 0xff,0xff,0xc1,0x6e,0xba,0xe8,0xff,0xff,0xff,0xff,0xc2,0x83,0x8e,0xe0,0xff,0xff, - 0xff,0xff,0xc3,0x4e,0x9c,0xe8,0xff,0xff,0xff,0xff,0xc4,0x63,0x70,0xe0,0xff,0xff, - 0xff,0xff,0xc5,0x2e,0x7e,0xe8,0xff,0xff,0xff,0xff,0xc6,0x4c,0x8d,0x60,0xff,0xff, - 0xff,0xff,0xc7,0xe,0x60,0xe8,0xff,0xff,0xff,0xff,0xc8,0x2c,0x6f,0x60,0xff,0xff, - 0xff,0xff,0xc8,0xf7,0x7d,0x68,0xff,0xff,0xff,0xff,0xd2,0xda,0x9a,0x40,0x0,0x0, - 0x0,0x0,0x9,0x18,0xfd,0xe0,0x0,0x0,0x0,0x0,0x9,0xac,0xa5,0xe0,0x0,0x0, - 0x0,0x0,0xa,0xef,0xa5,0x60,0x0,0x0,0x0,0x0,0xb,0x9e,0xfc,0xe0,0x0,0x0, - 0x0,0x0,0xc,0xd8,0xc1,0xe0,0x0,0x0,0x0,0x0,0xd,0x7e,0xde,0xe0,0x0,0x0, - 0x0,0x0,0xe,0xb8,0xa3,0xe0,0x0,0x0,0x0,0x0,0xf,0x5e,0xc0,0xe0,0x0,0x0, - 0x0,0x0,0x10,0x98,0x85,0xe0,0x0,0x0,0x0,0x0,0x11,0x3e,0xa2,0xe0,0x0,0x0, - 0x0,0x0,0x12,0x78,0x67,0xe0,0x0,0x0,0x0,0x0,0x13,0x1e,0x84,0xe0,0x0,0x0, - 0x0,0x0,0x14,0x58,0x49,0xe0,0x0,0x0,0x0,0x0,0x14,0xfe,0x66,0xe0,0x0,0x0, - 0x0,0x0,0x16,0x38,0x2b,0xe0,0x0,0x0,0x0,0x0,0x16,0xe7,0x83,0x60,0x0,0x0, - 0x0,0x0,0x18,0x21,0x48,0x60,0x0,0x0,0x0,0x0,0x18,0xc7,0x65,0x60,0x0,0x0, - 0x0,0x0,0x1a,0x1,0x2a,0x60,0x0,0x0,0x0,0x0,0x1a,0xa7,0x47,0x60,0x0,0x0, - 0x0,0x0,0x1b,0xe1,0xc,0x60,0x0,0x0,0x0,0x0,0x1c,0x87,0x29,0x60,0x0,0x0, - 0x0,0x0,0x1d,0xc0,0xee,0x60,0x0,0x0,0x0,0x0,0x1e,0x67,0xb,0x60,0x0,0x0, - 0x0,0x0,0x1f,0xa0,0xd0,0x60,0x0,0x0,0x0,0x0,0x20,0x46,0xed,0x60,0x0,0x0, - 0x0,0x0,0x21,0x80,0xb2,0x60,0x0,0x0,0x0,0x0,0x22,0x30,0x9,0xe0,0x0,0x0, - 0x0,0x0,0x23,0x69,0xce,0xe0,0x0,0x0,0x0,0x0,0x24,0xf,0xeb,0xe0,0x0,0x0, - 0x0,0x0,0x25,0x2e,0x1,0x60,0x0,0x0,0x0,0x0,0x26,0x2,0x42,0xe0,0x0,0x0, - 0x0,0x0,0x27,0xd,0xe3,0x60,0x0,0x0,0x0,0x0,0x27,0xe2,0x24,0xe0,0x0,0x0, - 0x0,0x0,0x28,0xed,0xc5,0x60,0x0,0x0,0x0,0x0,0x29,0xc2,0x6,0xe0,0x0,0x0, - 0x0,0x0,0x2a,0xcd,0xa7,0x60,0x0,0x0,0x0,0x0,0x2b,0xab,0x23,0x60,0x0,0x0, - 0x0,0x0,0x2c,0xad,0x89,0x60,0x0,0x0,0x0,0x0,0x2d,0x8b,0x5,0x60,0x0,0x0, - 0x0,0x0,0x2e,0x8d,0x6b,0x60,0x0,0x0,0x0,0x0,0x2f,0x6a,0xe7,0x60,0x0,0x0, - 0x0,0x0,0x30,0x6d,0x4d,0x60,0x0,0x0,0x0,0x0,0x31,0x4a,0xc9,0x60,0x0,0x0, - 0x0,0x0,0x32,0x56,0x69,0xe0,0x0,0x0,0x0,0x0,0x33,0x2a,0xab,0x60,0x0,0x0, - 0x0,0x0,0x34,0x36,0x4b,0xe0,0x0,0x0,0x0,0x0,0x35,0xa,0x8d,0x60,0x0,0x0, - 0x0,0x0,0x36,0x16,0x2d,0xe0,0x0,0x0,0x0,0x0,0x36,0xf3,0xa9,0xe0,0x0,0x0, - 0x0,0x0,0x37,0xf6,0xf,0xe0,0x0,0x0,0x0,0x0,0x38,0xd3,0x8b,0xe0,0x0,0x0, - 0x0,0x0,0x39,0xd5,0xf1,0xe0,0x0,0x0,0x0,0x0,0x3a,0xb3,0x6d,0xe0,0x0,0x0, - 0x0,0x0,0x3b,0xbf,0xe,0x60,0x0,0x0,0x0,0x0,0x3c,0x93,0x4f,0xe0,0x0,0x0, - 0x0,0x0,0x3d,0x9e,0xf0,0x60,0x0,0x0,0x0,0x0,0x3e,0x73,0x31,0xe0,0x0,0x0, - 0x0,0x0,0x3f,0x7e,0xd2,0x60,0x0,0x0,0x0,0x0,0x40,0x5c,0x4e,0x60,0x0,0x0, - 0x0,0x0,0x41,0x5e,0xb4,0x60,0x0,0x0,0x0,0x0,0x42,0x3c,0x30,0x60,0x0,0x0, - 0x0,0x0,0x43,0x3e,0x96,0x60,0x0,0x0,0x0,0x0,0x44,0x1c,0x12,0x60,0x0,0x0, - 0x0,0x0,0x45,0x1e,0x78,0x60,0x0,0x0,0x0,0x0,0x45,0xfb,0xf4,0x60,0x0,0x0, - 0x0,0x0,0x46,0xfe,0x5a,0x60,0x0,0x0,0x0,0x0,0x47,0xf7,0x85,0xe0,0x0,0x0, - 0x0,0x0,0x48,0xde,0x3c,0x60,0x0,0x0,0x0,0x0,0x49,0xd7,0x67,0xe0,0x0,0x0, - 0x0,0x0,0x4a,0xbe,0x1e,0x60,0x0,0x0,0x0,0x0,0x4b,0xb7,0x49,0xe0,0x0,0x0, - 0x0,0x0,0x4c,0x9e,0x0,0x60,0x0,0x0,0x0,0x0,0x4d,0x97,0x2b,0xe0,0x0,0x0, - 0x0,0x0,0x4e,0x7d,0xe2,0x60,0x0,0x0,0x0,0x0,0x4f,0x77,0xd,0xe0,0x0,0x0, - 0x0,0x0,0x50,0x66,0xfe,0xe0,0x0,0x0,0x0,0x0,0x51,0x60,0x2a,0x60,0x0,0x0, - 0x0,0x0,0x52,0x46,0xe0,0xe0,0x0,0x0,0x0,0x0,0x53,0x40,0xc,0x60,0x0,0x0, - 0x0,0x0,0x54,0x26,0xc2,0xe0,0x0,0x0,0x0,0x0,0x55,0x1f,0xee,0x60,0x0,0x0, - 0x0,0x0,0x56,0x6,0xa4,0xe0,0x0,0x0,0x0,0x0,0x56,0xff,0xd0,0x60,0x0,0x0, - 0x0,0x0,0x57,0xe6,0x86,0xe0,0x0,0x0,0x0,0x0,0x58,0xdf,0xb2,0x60,0x0,0x0, - 0x0,0x0,0x59,0xc6,0x68,0xe0,0x0,0x0,0x0,0x0,0x5a,0xbf,0x94,0x60,0x0,0x0, - 0x0,0x0,0x5b,0xaf,0x85,0x60,0x0,0x0,0x0,0x0,0x5c,0xa8,0xb0,0xe0,0x0,0x0, - 0x0,0x0,0x5d,0x8f,0x67,0x60,0x0,0x0,0x0,0x0,0x5e,0x88,0x92,0xe0,0x0,0x0, - 0x0,0x0,0x5f,0x6f,0x49,0x60,0x0,0x0,0x0,0x0,0x60,0x68,0x74,0xe0,0x0,0x0, - 0x0,0x0,0x61,0x4f,0x2b,0x60,0x0,0x0,0x0,0x0,0x62,0x48,0x56,0xe0,0x0,0x0, - 0x0,0x0,0x63,0x2f,0xd,0x60,0x0,0x0,0x0,0x0,0x64,0x28,0x38,0xe0,0x0,0x0, - 0x0,0x0,0x65,0xe,0xef,0x60,0x0,0x0,0x0,0x0,0x66,0x11,0x55,0x60,0x0,0x0, - 0x0,0x0,0x66,0xf8,0xb,0xe0,0x0,0x0,0x0,0x0,0x67,0xf1,0x37,0x60,0x0,0x0, - 0x0,0x0,0x68,0xd7,0xed,0xe0,0x0,0x0,0x0,0x0,0x69,0xd1,0x19,0x60,0x0,0x0, - 0x0,0x0,0x6a,0xb7,0xcf,0xe0,0x0,0x0,0x0,0x0,0x6b,0xb0,0xfb,0x60,0x0,0x0, - 0x0,0x0,0x6c,0x97,0xb1,0xe0,0x0,0x0,0x0,0x0,0x6d,0x90,0xdd,0x60,0x0,0x0, - 0x0,0x0,0x6e,0x77,0x93,0xe0,0x0,0x0,0x0,0x0,0x6f,0x70,0xbf,0x60,0x0,0x0, - 0x0,0x0,0x70,0x60,0xb0,0x60,0x0,0x0,0x0,0x0,0x71,0x59,0xdb,0xe0,0x0,0x0, - 0x0,0x0,0x72,0x40,0x92,0x60,0x0,0x0,0x0,0x0,0x73,0x39,0xbd,0xe0,0x0,0x0, - 0x0,0x0,0x74,0x20,0x74,0x60,0x0,0x0,0x0,0x0,0x75,0x19,0x9f,0xe0,0x0,0x0, - 0x0,0x0,0x76,0x0,0x56,0x60,0x0,0x0,0x0,0x0,0x76,0xf9,0x81,0xe0,0x0,0x0, - 0x0,0x0,0x77,0xe0,0x38,0x60,0x0,0x0,0x0,0x0,0x78,0xd9,0x63,0xe0,0x0,0x0, - 0x0,0x0,0x79,0xc0,0x1a,0x60,0x0,0x0,0x0,0x0,0x7a,0xb9,0x45,0xe0,0x0,0x0, - 0x0,0x0,0x7b,0xa9,0x36,0xe0,0x0,0x0,0x0,0x0,0x7c,0xa2,0x62,0x60,0x0,0x0, - 0x0,0x0,0x7d,0x89,0x18,0xe0,0x0,0x0,0x0,0x0,0x7e,0x82,0x44,0x60,0x0,0x0, - 0x0,0x0,0x7f,0x68,0xfa,0xe0,0x0,0x2,0x1,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x6,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x0,0x0,0xa3,0xd8,0x0,0x0,0x0,0x0,0xaf,0xc8,0x1,0x4,0x0, - 0x0,0xa1,0xb8,0x0,0x9,0x0,0x0,0xa8,0xc0,0x1,0x4,0x0,0x0,0xb6,0xd0,0x1, - 0xe,0x0,0x0,0xa8,0xc0,0x0,0x4,0x0,0x0,0xa8,0xc0,0x0,0x4,0x4c,0x4d,0x54, - 0x0,0x4e,0x5a,0x53,0x54,0x0,0x4e,0x5a,0x4d,0x54,0x0,0x4e,0x5a,0x44,0x54,0x0, - 0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x4e, - 0x5a,0x53,0x54,0x2d,0x31,0x32,0x4e,0x5a,0x44,0x54,0x2c,0x4d,0x39,0x2e,0x35,0x2e, - 0x30,0x2c,0x4d,0x34,0x2e,0x31,0x2e,0x30,0x2f,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Antarctica/Syowa - 0x0,0x0,0x0,0xbb, + 0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x75,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0x8f, + 0x30,0x47,0x46,0x9b,0x5c,0xe5,0x50,0x9f,0x7c,0xe2,0xc6,0xa1,0x0,0x71,0xc0,0xb0, + 0x5e,0x77,0xc6,0xb1,0x77,0x3d,0x40,0xb2,0x41,0x0,0xd0,0xb3,0x58,0x70,0xc0,0xb4, + 0x22,0x34,0x50,0xb5,0x39,0xa4,0x40,0xb6,0x3,0x67,0xd0,0xb7,0x1a,0xd7,0xc0,0xb7, + 0xe4,0x9b,0x50,0xb8,0xfd,0x5c,0xc0,0xb9,0xc7,0x20,0x50,0xcc,0x1c,0x6e,0x40,0xcc, + 0x6c,0xe7,0xd0,0xd5,0x33,0x55,0xc0,0xd5,0x76,0x92,0x40,0xfd,0xd1,0x3c,0x40,0xfe, + 0x92,0xfa,0xb0,0xff,0xcc,0xcd,0xc0,0x0,0x72,0xdc,0xb0,0x1,0x75,0x50,0xc0,0x2, + 0x40,0x49,0xb0,0x3,0x55,0x32,0xc0,0x4,0x20,0x2b,0xb0,0x5,0x3e,0x4f,0x40,0x6, + 0x0,0xd,0xb0,0x7,0xb,0xbc,0x40,0x7,0xdf,0xef,0xb0,0x8,0xfe,0x13,0x40,0x9, + 0xbf,0xd1,0xb0,0xa,0xdd,0xf5,0x40,0xb,0xa8,0xee,0x30,0xc,0xbd,0xd7,0x40,0xd, + 0x88,0xd0,0x30,0xe,0x9d,0xb9,0x40,0xf,0x68,0xb2,0x30,0x10,0x86,0xd5,0xc0,0x11, + 0x48,0x94,0x30,0x12,0x66,0xb7,0xc0,0x13,0x28,0x76,0x30,0x14,0x46,0x99,0xc0,0x15, + 0x11,0x92,0xb0,0x16,0x26,0x7b,0xc0,0x16,0xf1,0x74,0xb0,0x18,0x6,0x5d,0xc0,0x18, + 0xd1,0x56,0xb0,0x19,0xe6,0x3f,0xc0,0x1a,0xb1,0x38,0xb0,0x1b,0xcf,0x5c,0x40,0x1c, + 0x91,0x1a,0xb0,0x1d,0xaf,0x3e,0x40,0x1e,0x70,0xfc,0xb0,0x1f,0x8f,0x20,0x40,0x20, + 0x7f,0x3,0x30,0x21,0x6f,0x2,0x40,0x22,0x39,0xfb,0x30,0x23,0x4e,0xe4,0x40,0x24, + 0x19,0xdd,0x30,0x25,0x38,0x0,0xc0,0x25,0xf9,0xbf,0x30,0x26,0xf2,0xf8,0xc0,0x27, + 0xd9,0xa1,0x30,0x28,0xf7,0xc4,0xc0,0x29,0xc2,0xbd,0xb0,0x2a,0xd7,0xa6,0xc0,0x2b, + 0xa2,0x9f,0xb0,0x2c,0xb7,0x88,0xc0,0x2d,0x82,0x81,0xb0,0x2e,0x97,0x6a,0xc0,0x2f, + 0x62,0x63,0xb0,0x30,0x80,0x87,0x40,0x31,0x42,0x45,0xb0,0x32,0x60,0x69,0x40,0x33, + 0x3d,0xd7,0x30,0x34,0x40,0x4b,0x40,0x35,0xb,0x44,0x30,0x36,0xd,0xb8,0x40,0x37, + 0x6,0xd5,0xb0,0x38,0x0,0xf,0x40,0x38,0xcb,0x8,0x30,0x39,0xe9,0x2b,0xc0,0x3a, + 0xaa,0xea,0x30,0x3b,0xc9,0xd,0xc0,0x3c,0x8a,0xcc,0x30,0x3d,0xa8,0xef,0xc0,0x3e, + 0x6a,0xae,0x30,0x3f,0x88,0xd1,0xc0,0x40,0x53,0xca,0xb0,0x41,0x68,0xb3,0xc0,0x42, + 0x33,0xac,0xb0,0x43,0x48,0x95,0xc0,0x44,0x13,0x8e,0xb0,0x45,0x31,0xb2,0x40,0x45, + 0xf3,0x70,0xb0,0x47,0x11,0x94,0x40,0x47,0xef,0x2,0x30,0x48,0xf1,0x76,0x40,0x49, + 0xbc,0x6f,0x30,0x4a,0xd1,0x58,0x40,0x4b,0xb8,0x0,0xb0,0x4c,0xb1,0x3a,0x40,0x4d, + 0xc6,0x7,0x30,0x4e,0x50,0x82,0xc0,0x4f,0x9c,0xae,0xb0,0x50,0x42,0xd9,0xc0,0x51, + 0x7c,0x90,0xb0,0x52,0x2b,0xf6,0x40,0x53,0x5c,0x72,0xb0,0x54,0xb,0xd8,0x40,0x57, + 0x37,0xe6,0x30,0x57,0xaf,0xec,0xc0,0x58,0x43,0x86,0xb0,0x7f,0xff,0xff,0xff,0x1, + 0x2,0x1,0x3,0x1,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x3,0x2, + 0x3,0x2,0x3,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x7,0x7,0xff,0xff,0xbd,0x84,0x0,0x0,0xff,0xff,0xbd,0xba,0x0,0x4, + 0xff,0xff,0xb9,0xb0,0x0,0x8,0xff,0xff,0xc7,0xc0,0x0,0xc,0xff,0xff,0xc7,0xc0, + 0x1,0xc,0xff,0xff,0xd5,0xd0,0x1,0x10,0xff,0xff,0xc7,0xc0,0x0,0xc,0xff,0xff, + 0xd5,0xd0,0x0,0x10,0x4c,0x4d,0x54,0x0,0x53,0x4d,0x54,0x0,0x2d,0x30,0x35,0x0, + 0x2d,0x30,0x34,0x0,0x2d,0x30,0x33,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0, + 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8, + 0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x76,0x0,0x0,0x0,0x8, + 0x0,0x0,0x0,0x14,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0x69,0x87,0x1d,0xfc,0xff,0xff,0xff,0xff,0x8f,0x30,0x47,0x46,0xff,0xff,0xff,0xff, + 0x9b,0x5c,0xe5,0x50,0xff,0xff,0xff,0xff,0x9f,0x7c,0xe2,0xc6,0xff,0xff,0xff,0xff, + 0xa1,0x0,0x71,0xc0,0xff,0xff,0xff,0xff,0xb0,0x5e,0x77,0xc6,0xff,0xff,0xff,0xff, + 0xb1,0x77,0x3d,0x40,0xff,0xff,0xff,0xff,0xb2,0x41,0x0,0xd0,0xff,0xff,0xff,0xff, + 0xb3,0x58,0x70,0xc0,0xff,0xff,0xff,0xff,0xb4,0x22,0x34,0x50,0xff,0xff,0xff,0xff, + 0xb5,0x39,0xa4,0x40,0xff,0xff,0xff,0xff,0xb6,0x3,0x67,0xd0,0xff,0xff,0xff,0xff, + 0xb7,0x1a,0xd7,0xc0,0xff,0xff,0xff,0xff,0xb7,0xe4,0x9b,0x50,0xff,0xff,0xff,0xff, + 0xb8,0xfd,0x5c,0xc0,0xff,0xff,0xff,0xff,0xb9,0xc7,0x20,0x50,0xff,0xff,0xff,0xff, + 0xcc,0x1c,0x6e,0x40,0xff,0xff,0xff,0xff,0xcc,0x6c,0xe7,0xd0,0xff,0xff,0xff,0xff, + 0xd5,0x33,0x55,0xc0,0xff,0xff,0xff,0xff,0xd5,0x76,0x92,0x40,0xff,0xff,0xff,0xff, + 0xfd,0xd1,0x3c,0x40,0xff,0xff,0xff,0xff,0xfe,0x92,0xfa,0xb0,0xff,0xff,0xff,0xff, + 0xff,0xcc,0xcd,0xc0,0x0,0x0,0x0,0x0,0x0,0x72,0xdc,0xb0,0x0,0x0,0x0,0x0, + 0x1,0x75,0x50,0xc0,0x0,0x0,0x0,0x0,0x2,0x40,0x49,0xb0,0x0,0x0,0x0,0x0, + 0x3,0x55,0x32,0xc0,0x0,0x0,0x0,0x0,0x4,0x20,0x2b,0xb0,0x0,0x0,0x0,0x0, + 0x5,0x3e,0x4f,0x40,0x0,0x0,0x0,0x0,0x6,0x0,0xd,0xb0,0x0,0x0,0x0,0x0, + 0x7,0xb,0xbc,0x40,0x0,0x0,0x0,0x0,0x7,0xdf,0xef,0xb0,0x0,0x0,0x0,0x0, + 0x8,0xfe,0x13,0x40,0x0,0x0,0x0,0x0,0x9,0xbf,0xd1,0xb0,0x0,0x0,0x0,0x0, + 0xa,0xdd,0xf5,0x40,0x0,0x0,0x0,0x0,0xb,0xa8,0xee,0x30,0x0,0x0,0x0,0x0, + 0xc,0xbd,0xd7,0x40,0x0,0x0,0x0,0x0,0xd,0x88,0xd0,0x30,0x0,0x0,0x0,0x0, + 0xe,0x9d,0xb9,0x40,0x0,0x0,0x0,0x0,0xf,0x68,0xb2,0x30,0x0,0x0,0x0,0x0, + 0x10,0x86,0xd5,0xc0,0x0,0x0,0x0,0x0,0x11,0x48,0x94,0x30,0x0,0x0,0x0,0x0, + 0x12,0x66,0xb7,0xc0,0x0,0x0,0x0,0x0,0x13,0x28,0x76,0x30,0x0,0x0,0x0,0x0, + 0x14,0x46,0x99,0xc0,0x0,0x0,0x0,0x0,0x15,0x11,0x92,0xb0,0x0,0x0,0x0,0x0, + 0x16,0x26,0x7b,0xc0,0x0,0x0,0x0,0x0,0x16,0xf1,0x74,0xb0,0x0,0x0,0x0,0x0, + 0x18,0x6,0x5d,0xc0,0x0,0x0,0x0,0x0,0x18,0xd1,0x56,0xb0,0x0,0x0,0x0,0x0, + 0x19,0xe6,0x3f,0xc0,0x0,0x0,0x0,0x0,0x1a,0xb1,0x38,0xb0,0x0,0x0,0x0,0x0, + 0x1b,0xcf,0x5c,0x40,0x0,0x0,0x0,0x0,0x1c,0x91,0x1a,0xb0,0x0,0x0,0x0,0x0, + 0x1d,0xaf,0x3e,0x40,0x0,0x0,0x0,0x0,0x1e,0x70,0xfc,0xb0,0x0,0x0,0x0,0x0, + 0x1f,0x8f,0x20,0x40,0x0,0x0,0x0,0x0,0x20,0x7f,0x3,0x30,0x0,0x0,0x0,0x0, + 0x21,0x6f,0x2,0x40,0x0,0x0,0x0,0x0,0x22,0x39,0xfb,0x30,0x0,0x0,0x0,0x0, + 0x23,0x4e,0xe4,0x40,0x0,0x0,0x0,0x0,0x24,0x19,0xdd,0x30,0x0,0x0,0x0,0x0, + 0x25,0x38,0x0,0xc0,0x0,0x0,0x0,0x0,0x25,0xf9,0xbf,0x30,0x0,0x0,0x0,0x0, + 0x26,0xf2,0xf8,0xc0,0x0,0x0,0x0,0x0,0x27,0xd9,0xa1,0x30,0x0,0x0,0x0,0x0, + 0x28,0xf7,0xc4,0xc0,0x0,0x0,0x0,0x0,0x29,0xc2,0xbd,0xb0,0x0,0x0,0x0,0x0, + 0x2a,0xd7,0xa6,0xc0,0x0,0x0,0x0,0x0,0x2b,0xa2,0x9f,0xb0,0x0,0x0,0x0,0x0, + 0x2c,0xb7,0x88,0xc0,0x0,0x0,0x0,0x0,0x2d,0x82,0x81,0xb0,0x0,0x0,0x0,0x0, + 0x2e,0x97,0x6a,0xc0,0x0,0x0,0x0,0x0,0x2f,0x62,0x63,0xb0,0x0,0x0,0x0,0x0, + 0x30,0x80,0x87,0x40,0x0,0x0,0x0,0x0,0x31,0x42,0x45,0xb0,0x0,0x0,0x0,0x0, + 0x32,0x60,0x69,0x40,0x0,0x0,0x0,0x0,0x33,0x3d,0xd7,0x30,0x0,0x0,0x0,0x0, + 0x34,0x40,0x4b,0x40,0x0,0x0,0x0,0x0,0x35,0xb,0x44,0x30,0x0,0x0,0x0,0x0, + 0x36,0xd,0xb8,0x40,0x0,0x0,0x0,0x0,0x37,0x6,0xd5,0xb0,0x0,0x0,0x0,0x0, + 0x38,0x0,0xf,0x40,0x0,0x0,0x0,0x0,0x38,0xcb,0x8,0x30,0x0,0x0,0x0,0x0, + 0x39,0xe9,0x2b,0xc0,0x0,0x0,0x0,0x0,0x3a,0xaa,0xea,0x30,0x0,0x0,0x0,0x0, + 0x3b,0xc9,0xd,0xc0,0x0,0x0,0x0,0x0,0x3c,0x8a,0xcc,0x30,0x0,0x0,0x0,0x0, + 0x3d,0xa8,0xef,0xc0,0x0,0x0,0x0,0x0,0x3e,0x6a,0xae,0x30,0x0,0x0,0x0,0x0, + 0x3f,0x88,0xd1,0xc0,0x0,0x0,0x0,0x0,0x40,0x53,0xca,0xb0,0x0,0x0,0x0,0x0, + 0x41,0x68,0xb3,0xc0,0x0,0x0,0x0,0x0,0x42,0x33,0xac,0xb0,0x0,0x0,0x0,0x0, + 0x43,0x48,0x95,0xc0,0x0,0x0,0x0,0x0,0x44,0x13,0x8e,0xb0,0x0,0x0,0x0,0x0, + 0x45,0x31,0xb2,0x40,0x0,0x0,0x0,0x0,0x45,0xf3,0x70,0xb0,0x0,0x0,0x0,0x0, + 0x47,0x11,0x94,0x40,0x0,0x0,0x0,0x0,0x47,0xef,0x2,0x30,0x0,0x0,0x0,0x0, + 0x48,0xf1,0x76,0x40,0x0,0x0,0x0,0x0,0x49,0xbc,0x6f,0x30,0x0,0x0,0x0,0x0, + 0x4a,0xd1,0x58,0x40,0x0,0x0,0x0,0x0,0x4b,0xb8,0x0,0xb0,0x0,0x0,0x0,0x0, + 0x4c,0xb1,0x3a,0x40,0x0,0x0,0x0,0x0,0x4d,0xc6,0x7,0x30,0x0,0x0,0x0,0x0, + 0x4e,0x50,0x82,0xc0,0x0,0x0,0x0,0x0,0x4f,0x9c,0xae,0xb0,0x0,0x0,0x0,0x0, + 0x50,0x42,0xd9,0xc0,0x0,0x0,0x0,0x0,0x51,0x7c,0x90,0xb0,0x0,0x0,0x0,0x0, + 0x52,0x2b,0xf6,0x40,0x0,0x0,0x0,0x0,0x53,0x5c,0x72,0xb0,0x0,0x0,0x0,0x0, + 0x54,0xb,0xd8,0x40,0x0,0x0,0x0,0x0,0x57,0x37,0xe6,0x30,0x0,0x0,0x0,0x0, + 0x57,0xaf,0xec,0xc0,0x0,0x0,0x0,0x0,0x58,0x43,0x86,0xb0,0x0,0x0,0x0,0x0, + 0x7f,0xff,0xff,0xff,0x0,0x1,0x2,0x1,0x3,0x1,0x4,0x2,0x4,0x2,0x4,0x2, + 0x4,0x2,0x4,0x2,0x3,0x2,0x3,0x2,0x3,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x7,0x7,0xff,0xff,0xbd,0x84,0x0,0x0, + 0xff,0xff,0xbd,0xba,0x0,0x4,0xff,0xff,0xb9,0xb0,0x0,0x8,0xff,0xff,0xc7,0xc0, + 0x0,0xc,0xff,0xff,0xc7,0xc0,0x1,0xc,0xff,0xff,0xd5,0xd0,0x1,0x10,0xff,0xff, + 0xc7,0xc0,0x0,0xc,0xff,0xff,0xd5,0xd0,0x0,0x10,0x4c,0x4d,0x54,0x0,0x53,0x4d, + 0x54,0x0,0x2d,0x30,0x35,0x0,0x2d,0x30,0x34,0x0,0x2d,0x30,0x33,0x0,0x0,0x0, + 0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0xa,0x3c, + 0x2d,0x30,0x33,0x3e,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Montserrat + 0x0,0x0,0x0,0xaa, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x3,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0xe7, - 0xb1,0x58,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2a,0x30,0x0,0x4,0x2d,0x30,0x30,0x0,0x2b,0x30,0x33,0x0,0x0,0x0, - 0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xe7,0xb1,0x58,0x0,0x0,0x0, - 0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x2a,0x30,0x0,0x4,0x2d,0x30,0x30,0x0,0x2b,0x30,0x33,0x0,0x0,0x0,0x0, - 0x0,0xa,0x3c,0x2b,0x30,0x33,0x3e,0x2d,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Etc/Greenwich - 0x0,0x0,0x0,0x7f, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, - 0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0, - 0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0, - 0x0,0x0,0x4,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0xa,0x47,0x4d,0x54,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Etc/Zulu - 0x0,0x0,0x0,0x7f, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, - 0x0,0x55,0x54,0x43,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0, - 0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0, - 0x0,0x0,0x4,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x55,0x54,0x43,0x0,0x0,0x0,0xa,0x55,0x54,0x43,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Etc/GMT0 - 0x0,0x0,0x0,0x7f, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, - 0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0, - 0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0, - 0x0,0x0,0x4,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0xa,0x47,0x4d,0x54,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Etc/UCT - 0x0,0x0,0x0,0x7f, + 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x93, + 0x37,0x33,0xac,0x0,0x1,0xff,0xff,0xc6,0x54,0x0,0x0,0xff,0xff,0xc7,0xc0,0x0, + 0x4,0x4c,0x4d,0x54,0x0,0x41,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, + 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0x93,0x37,0x33,0xac,0x0,0x1,0xff,0xff,0xc6,0x54,0x0, + 0x0,0xff,0xff,0xc7,0xc0,0x0,0x4,0x4c,0x4d,0x54,0x0,0x41,0x53,0x54,0x0,0x0, + 0x0,0x0,0x0,0xa,0x41,0x53,0x54,0x34,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Curacao + 0x0,0x0,0x0,0xd4, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, - 0x0,0x55,0x43,0x54,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0, - 0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0, - 0x0,0x0,0x4,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x55,0x43,0x54,0x0,0x0,0x0,0xa,0x55,0x43,0x54,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Etc/GMT-0 - 0x0,0x0,0x0,0x7f, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xe,0x80,0x0,0x0,0x0,0x93, + 0x1e,0x2e,0x23,0xf6,0x98,0xec,0x48,0x0,0x1,0x2,0xff,0xff,0xbf,0x5d,0x0,0x0, + 0xff,0xff,0xc0,0xb8,0x0,0x4,0xff,0xff,0xc7,0xc0,0x0,0xa,0x4c,0x4d,0x54,0x0, + 0x2d,0x30,0x34,0x33,0x30,0x0,0x41,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xe,0xf8,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x93,0x1e,0x2e,0x23,0xff,0xff,0xff,0xff, + 0xf6,0x98,0xec,0x48,0x0,0x1,0x2,0xff,0xff,0xbf,0x5d,0x0,0x0,0xff,0xff,0xc0, + 0xb8,0x0,0x4,0xff,0xff,0xc7,0xc0,0x0,0xa,0x4c,0x4d,0x54,0x0,0x2d,0x30,0x34, + 0x33,0x30,0x0,0x41,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x41,0x53, + 0x54,0x34,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/St_Vincent + 0x0,0x0,0x0,0xaa, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, - 0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0, - 0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0, - 0x0,0x0,0x4,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0xa,0x47,0x4d,0x54,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Etc/GMT-1 - 0x0,0x0,0x0,0x95, + 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x93, + 0x37,0x33,0xac,0x0,0x1,0xff,0xff,0xc6,0x54,0x0,0x0,0xff,0xff,0xc7,0xc0,0x0, + 0x4,0x4c,0x4d,0x54,0x0,0x41,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, + 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0x93,0x37,0x33,0xac,0x0,0x1,0xff,0xff,0xc6,0x54,0x0, + 0x0,0xff,0xff,0xc7,0xc0,0x0,0x4,0x4c,0x4d,0x54,0x0,0x41,0x53,0x54,0x0,0x0, + 0x0,0x0,0x0,0xa,0x41,0x53,0x54,0x34,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Los_Angeles + 0x0,0x0,0xb,0x1d, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x80,0x0,0x0,0x0,0x7f, - 0xff,0xff,0xff,0x0,0x0,0x0,0x0,0xe,0x10,0x0,0x0,0x2b,0x30,0x31,0x0,0x0, - 0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0xf8,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x0,0x0, - 0x0,0xe,0x10,0x0,0x0,0x2b,0x30,0x31,0x0,0x0,0x0,0xa,0x3c,0x2b,0x30,0x31, - 0x3e,0x2d,0x31,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Etc/GMT-2 - 0x0,0x0,0x0,0x95, + 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xba,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0x9e, + 0xa6,0x48,0xa0,0x9f,0xbb,0x15,0x90,0xa0,0x86,0x2a,0xa0,0xa1,0x9a,0xf7,0x90,0xcb, + 0x89,0x1a,0xa0,0xd2,0x23,0xf4,0x70,0xd2,0x61,0x26,0x10,0xd6,0xfe,0x74,0x5c,0xd8, + 0x80,0xad,0x90,0xda,0xfe,0xc3,0x90,0xdb,0xc0,0x90,0x10,0xdc,0xde,0xa5,0x90,0xdd, + 0xa9,0xac,0x90,0xde,0xbe,0x87,0x90,0xdf,0x89,0x8e,0x90,0xe0,0x9e,0x69,0x90,0xe1, + 0x69,0x70,0x90,0xe2,0x7e,0x4b,0x90,0xe3,0x49,0x52,0x90,0xe4,0x5e,0x2d,0x90,0xe5, + 0x29,0x34,0x90,0xe6,0x47,0x4a,0x10,0xe7,0x12,0x51,0x10,0xe8,0x27,0x2c,0x10,0xe8, + 0xf2,0x33,0x10,0xea,0x7,0xe,0x10,0xea,0xd2,0x15,0x10,0xeb,0xe6,0xf0,0x10,0xec, + 0xb1,0xf7,0x10,0xed,0xc6,0xd2,0x10,0xee,0x91,0xd9,0x10,0xef,0xaf,0xee,0x90,0xf0, + 0x71,0xbb,0x10,0xf1,0x8f,0xd0,0x90,0xf2,0x7f,0xc1,0x90,0xf3,0x6f,0xb2,0x90,0xf4, + 0x5f,0xa3,0x90,0xf5,0x4f,0x94,0x90,0xf6,0x3f,0x85,0x90,0xf7,0x2f,0x76,0x90,0xf8, + 0x28,0xa2,0x10,0xf9,0xf,0x58,0x90,0xfa,0x8,0x84,0x10,0xfa,0xf8,0x83,0x20,0xfb, + 0xe8,0x66,0x10,0xfc,0xd8,0x65,0x20,0xfd,0xc8,0x48,0x10,0xfe,0xb8,0x47,0x20,0xff, + 0xa8,0x2a,0x10,0x0,0x98,0x29,0x20,0x1,0x88,0xc,0x10,0x2,0x78,0xb,0x20,0x3, + 0x71,0x28,0x90,0x4,0x61,0x27,0xa0,0x5,0x51,0xa,0x90,0x6,0x41,0x9,0xa0,0x7, + 0x30,0xec,0x90,0x7,0x8d,0x43,0xa0,0x9,0x10,0xce,0x90,0x9,0xad,0xbf,0x20,0xa, + 0xf0,0xb0,0x90,0xb,0xe0,0xaf,0xa0,0xc,0xd9,0xcd,0x10,0xd,0xc0,0x91,0xa0,0xe, + 0xb9,0xaf,0x10,0xf,0xa9,0xae,0x20,0x10,0x99,0x91,0x10,0x11,0x89,0x90,0x20,0x12, + 0x79,0x73,0x10,0x13,0x69,0x72,0x20,0x14,0x59,0x55,0x10,0x15,0x49,0x54,0x20,0x16, + 0x39,0x37,0x10,0x17,0x29,0x36,0x20,0x18,0x22,0x53,0x90,0x19,0x9,0x18,0x20,0x1a, + 0x2,0x35,0x90,0x1a,0xf2,0x34,0xa0,0x1b,0xe2,0x17,0x90,0x1c,0xd2,0x16,0xa0,0x1d, + 0xc1,0xf9,0x90,0x1e,0xb1,0xf8,0xa0,0x1f,0xa1,0xdb,0x90,0x20,0x76,0x2b,0x20,0x21, + 0x81,0xbd,0x90,0x22,0x56,0xd,0x20,0x23,0x6a,0xda,0x10,0x24,0x35,0xef,0x20,0x25, + 0x4a,0xbc,0x10,0x26,0x15,0xd1,0x20,0x27,0x2a,0x9e,0x10,0x27,0xfe,0xed,0xa0,0x29, + 0xa,0x80,0x10,0x29,0xde,0xcf,0xa0,0x2a,0xea,0x62,0x10,0x2b,0xbe,0xb1,0xa0,0x2c, + 0xd3,0x7e,0x90,0x2d,0x9e,0x93,0xa0,0x2e,0xb3,0x60,0x90,0x2f,0x7e,0x75,0xa0,0x30, + 0x93,0x42,0x90,0x31,0x67,0x92,0x20,0x32,0x73,0x24,0x90,0x33,0x47,0x74,0x20,0x34, + 0x53,0x6,0x90,0x35,0x27,0x56,0x20,0x36,0x32,0xe8,0x90,0x37,0x7,0x38,0x20,0x38, + 0x1c,0x5,0x10,0x38,0xe7,0x1a,0x20,0x39,0xfb,0xe7,0x10,0x3a,0xc6,0xfc,0x20,0x3b, + 0xdb,0xc9,0x10,0x3c,0xb0,0x18,0xa0,0x3d,0xbb,0xab,0x10,0x3e,0x8f,0xfa,0xa0,0x3f, + 0x9b,0x8d,0x10,0x40,0x6f,0xdc,0xa0,0x41,0x84,0xa9,0x90,0x42,0x4f,0xbe,0xa0,0x43, + 0x64,0x8b,0x90,0x44,0x2f,0xa0,0xa0,0x45,0x44,0x6d,0x90,0x45,0xf3,0xd3,0x20,0x47, + 0x2d,0x8a,0x10,0x47,0xd3,0xb5,0x20,0x49,0xd,0x6c,0x10,0x49,0xb3,0x97,0x20,0x4a, + 0xed,0x4e,0x10,0x4b,0x9c,0xb3,0xa0,0x4c,0xd6,0x6a,0x90,0x4d,0x7c,0x95,0xa0,0x4e, + 0xb6,0x4c,0x90,0x4f,0x5c,0x77,0xa0,0x50,0x96,0x2e,0x90,0x51,0x3c,0x59,0xa0,0x52, + 0x76,0x10,0x90,0x53,0x1c,0x3b,0xa0,0x54,0x55,0xf2,0x90,0x54,0xfc,0x1d,0xa0,0x56, + 0x35,0xd4,0x90,0x56,0xe5,0x3a,0x20,0x58,0x1e,0xf1,0x10,0x58,0xc5,0x1c,0x20,0x59, + 0xfe,0xd3,0x10,0x5a,0xa4,0xfe,0x20,0x5b,0xde,0xb5,0x10,0x5c,0x84,0xe0,0x20,0x5d, + 0xbe,0x97,0x10,0x5e,0x64,0xc2,0x20,0x5f,0x9e,0x79,0x10,0x60,0x4d,0xde,0xa0,0x61, + 0x87,0x95,0x90,0x62,0x2d,0xc0,0xa0,0x63,0x67,0x77,0x90,0x64,0xd,0xa2,0xa0,0x65, + 0x47,0x59,0x90,0x65,0xed,0x84,0xa0,0x67,0x27,0x3b,0x90,0x67,0xcd,0x66,0xa0,0x69, + 0x7,0x1d,0x90,0x69,0xad,0x48,0xa0,0x6a,0xe6,0xff,0x90,0x6b,0x96,0x65,0x20,0x6c, + 0xd0,0x1c,0x10,0x6d,0x76,0x47,0x20,0x6e,0xaf,0xfe,0x10,0x6f,0x56,0x29,0x20,0x70, + 0x8f,0xe0,0x10,0x71,0x36,0xb,0x20,0x72,0x6f,0xc2,0x10,0x73,0x15,0xed,0x20,0x74, + 0x4f,0xa4,0x10,0x74,0xff,0x9,0xa0,0x76,0x38,0xc0,0x90,0x76,0xde,0xeb,0xa0,0x78, + 0x18,0xa2,0x90,0x78,0xbe,0xcd,0xa0,0x79,0xf8,0x84,0x90,0x7a,0x9e,0xaf,0xa0,0x7b, + 0xd8,0x66,0x90,0x7c,0x7e,0x91,0xa0,0x7d,0xb8,0x48,0x90,0x7e,0x5e,0x73,0xa0,0x7f, + 0x98,0x2a,0x90,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0x91, + 0x26,0x0,0x0,0xff,0xff,0x9d,0x90,0x1,0x4,0xff,0xff,0x8f,0x80,0x0,0x8,0xff, + 0xff,0x9d,0x90,0x1,0xc,0xff,0xff,0x9d,0x90,0x1,0x10,0x4c,0x4d,0x54,0x0,0x50, + 0x44,0x54,0x0,0x50,0x53,0x54,0x0,0x50,0x57,0x54,0x0,0x50,0x50,0x54,0x0,0x0, + 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x1,0x54,0x5a,0x69,0x66,0x32,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbb,0x0,0x0,0x0, + 0x5,0x0,0x0,0x0,0x14,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff, + 0xff,0x5e,0x4,0x1a,0xc0,0xff,0xff,0xff,0xff,0x9e,0xa6,0x48,0xa0,0xff,0xff,0xff, + 0xff,0x9f,0xbb,0x15,0x90,0xff,0xff,0xff,0xff,0xa0,0x86,0x2a,0xa0,0xff,0xff,0xff, + 0xff,0xa1,0x9a,0xf7,0x90,0xff,0xff,0xff,0xff,0xcb,0x89,0x1a,0xa0,0xff,0xff,0xff, + 0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x61,0x26,0x10,0xff,0xff,0xff, + 0xff,0xd6,0xfe,0x74,0x5c,0xff,0xff,0xff,0xff,0xd8,0x80,0xad,0x90,0xff,0xff,0xff, + 0xff,0xda,0xfe,0xc3,0x90,0xff,0xff,0xff,0xff,0xdb,0xc0,0x90,0x10,0xff,0xff,0xff, + 0xff,0xdc,0xde,0xa5,0x90,0xff,0xff,0xff,0xff,0xdd,0xa9,0xac,0x90,0xff,0xff,0xff, + 0xff,0xde,0xbe,0x87,0x90,0xff,0xff,0xff,0xff,0xdf,0x89,0x8e,0x90,0xff,0xff,0xff, + 0xff,0xe0,0x9e,0x69,0x90,0xff,0xff,0xff,0xff,0xe1,0x69,0x70,0x90,0xff,0xff,0xff, + 0xff,0xe2,0x7e,0x4b,0x90,0xff,0xff,0xff,0xff,0xe3,0x49,0x52,0x90,0xff,0xff,0xff, + 0xff,0xe4,0x5e,0x2d,0x90,0xff,0xff,0xff,0xff,0xe5,0x29,0x34,0x90,0xff,0xff,0xff, + 0xff,0xe6,0x47,0x4a,0x10,0xff,0xff,0xff,0xff,0xe7,0x12,0x51,0x10,0xff,0xff,0xff, + 0xff,0xe8,0x27,0x2c,0x10,0xff,0xff,0xff,0xff,0xe8,0xf2,0x33,0x10,0xff,0xff,0xff, + 0xff,0xea,0x7,0xe,0x10,0xff,0xff,0xff,0xff,0xea,0xd2,0x15,0x10,0xff,0xff,0xff, + 0xff,0xeb,0xe6,0xf0,0x10,0xff,0xff,0xff,0xff,0xec,0xb1,0xf7,0x10,0xff,0xff,0xff, + 0xff,0xed,0xc6,0xd2,0x10,0xff,0xff,0xff,0xff,0xee,0x91,0xd9,0x10,0xff,0xff,0xff, + 0xff,0xef,0xaf,0xee,0x90,0xff,0xff,0xff,0xff,0xf0,0x71,0xbb,0x10,0xff,0xff,0xff, + 0xff,0xf1,0x8f,0xd0,0x90,0xff,0xff,0xff,0xff,0xf2,0x7f,0xc1,0x90,0xff,0xff,0xff, + 0xff,0xf3,0x6f,0xb2,0x90,0xff,0xff,0xff,0xff,0xf4,0x5f,0xa3,0x90,0xff,0xff,0xff, + 0xff,0xf5,0x4f,0x94,0x90,0xff,0xff,0xff,0xff,0xf6,0x3f,0x85,0x90,0xff,0xff,0xff, + 0xff,0xf7,0x2f,0x76,0x90,0xff,0xff,0xff,0xff,0xf8,0x28,0xa2,0x10,0xff,0xff,0xff, + 0xff,0xf9,0xf,0x58,0x90,0xff,0xff,0xff,0xff,0xfa,0x8,0x84,0x10,0xff,0xff,0xff, + 0xff,0xfa,0xf8,0x83,0x20,0xff,0xff,0xff,0xff,0xfb,0xe8,0x66,0x10,0xff,0xff,0xff, + 0xff,0xfc,0xd8,0x65,0x20,0xff,0xff,0xff,0xff,0xfd,0xc8,0x48,0x10,0xff,0xff,0xff, + 0xff,0xfe,0xb8,0x47,0x20,0xff,0xff,0xff,0xff,0xff,0xa8,0x2a,0x10,0x0,0x0,0x0, + 0x0,0x0,0x98,0x29,0x20,0x0,0x0,0x0,0x0,0x1,0x88,0xc,0x10,0x0,0x0,0x0, + 0x0,0x2,0x78,0xb,0x20,0x0,0x0,0x0,0x0,0x3,0x71,0x28,0x90,0x0,0x0,0x0, + 0x0,0x4,0x61,0x27,0xa0,0x0,0x0,0x0,0x0,0x5,0x51,0xa,0x90,0x0,0x0,0x0, + 0x0,0x6,0x41,0x9,0xa0,0x0,0x0,0x0,0x0,0x7,0x30,0xec,0x90,0x0,0x0,0x0, + 0x0,0x7,0x8d,0x43,0xa0,0x0,0x0,0x0,0x0,0x9,0x10,0xce,0x90,0x0,0x0,0x0, + 0x0,0x9,0xad,0xbf,0x20,0x0,0x0,0x0,0x0,0xa,0xf0,0xb0,0x90,0x0,0x0,0x0, + 0x0,0xb,0xe0,0xaf,0xa0,0x0,0x0,0x0,0x0,0xc,0xd9,0xcd,0x10,0x0,0x0,0x0, + 0x0,0xd,0xc0,0x91,0xa0,0x0,0x0,0x0,0x0,0xe,0xb9,0xaf,0x10,0x0,0x0,0x0, + 0x0,0xf,0xa9,0xae,0x20,0x0,0x0,0x0,0x0,0x10,0x99,0x91,0x10,0x0,0x0,0x0, + 0x0,0x11,0x89,0x90,0x20,0x0,0x0,0x0,0x0,0x12,0x79,0x73,0x10,0x0,0x0,0x0, + 0x0,0x13,0x69,0x72,0x20,0x0,0x0,0x0,0x0,0x14,0x59,0x55,0x10,0x0,0x0,0x0, + 0x0,0x15,0x49,0x54,0x20,0x0,0x0,0x0,0x0,0x16,0x39,0x37,0x10,0x0,0x0,0x0, + 0x0,0x17,0x29,0x36,0x20,0x0,0x0,0x0,0x0,0x18,0x22,0x53,0x90,0x0,0x0,0x0, + 0x0,0x19,0x9,0x18,0x20,0x0,0x0,0x0,0x0,0x1a,0x2,0x35,0x90,0x0,0x0,0x0, + 0x0,0x1a,0xf2,0x34,0xa0,0x0,0x0,0x0,0x0,0x1b,0xe2,0x17,0x90,0x0,0x0,0x0, + 0x0,0x1c,0xd2,0x16,0xa0,0x0,0x0,0x0,0x0,0x1d,0xc1,0xf9,0x90,0x0,0x0,0x0, + 0x0,0x1e,0xb1,0xf8,0xa0,0x0,0x0,0x0,0x0,0x1f,0xa1,0xdb,0x90,0x0,0x0,0x0, + 0x0,0x20,0x76,0x2b,0x20,0x0,0x0,0x0,0x0,0x21,0x81,0xbd,0x90,0x0,0x0,0x0, + 0x0,0x22,0x56,0xd,0x20,0x0,0x0,0x0,0x0,0x23,0x6a,0xda,0x10,0x0,0x0,0x0, + 0x0,0x24,0x35,0xef,0x20,0x0,0x0,0x0,0x0,0x25,0x4a,0xbc,0x10,0x0,0x0,0x0, + 0x0,0x26,0x15,0xd1,0x20,0x0,0x0,0x0,0x0,0x27,0x2a,0x9e,0x10,0x0,0x0,0x0, + 0x0,0x27,0xfe,0xed,0xa0,0x0,0x0,0x0,0x0,0x29,0xa,0x80,0x10,0x0,0x0,0x0, + 0x0,0x29,0xde,0xcf,0xa0,0x0,0x0,0x0,0x0,0x2a,0xea,0x62,0x10,0x0,0x0,0x0, + 0x0,0x2b,0xbe,0xb1,0xa0,0x0,0x0,0x0,0x0,0x2c,0xd3,0x7e,0x90,0x0,0x0,0x0, + 0x0,0x2d,0x9e,0x93,0xa0,0x0,0x0,0x0,0x0,0x2e,0xb3,0x60,0x90,0x0,0x0,0x0, + 0x0,0x2f,0x7e,0x75,0xa0,0x0,0x0,0x0,0x0,0x30,0x93,0x42,0x90,0x0,0x0,0x0, + 0x0,0x31,0x67,0x92,0x20,0x0,0x0,0x0,0x0,0x32,0x73,0x24,0x90,0x0,0x0,0x0, + 0x0,0x33,0x47,0x74,0x20,0x0,0x0,0x0,0x0,0x34,0x53,0x6,0x90,0x0,0x0,0x0, + 0x0,0x35,0x27,0x56,0x20,0x0,0x0,0x0,0x0,0x36,0x32,0xe8,0x90,0x0,0x0,0x0, + 0x0,0x37,0x7,0x38,0x20,0x0,0x0,0x0,0x0,0x38,0x1c,0x5,0x10,0x0,0x0,0x0, + 0x0,0x38,0xe7,0x1a,0x20,0x0,0x0,0x0,0x0,0x39,0xfb,0xe7,0x10,0x0,0x0,0x0, + 0x0,0x3a,0xc6,0xfc,0x20,0x0,0x0,0x0,0x0,0x3b,0xdb,0xc9,0x10,0x0,0x0,0x0, + 0x0,0x3c,0xb0,0x18,0xa0,0x0,0x0,0x0,0x0,0x3d,0xbb,0xab,0x10,0x0,0x0,0x0, + 0x0,0x3e,0x8f,0xfa,0xa0,0x0,0x0,0x0,0x0,0x3f,0x9b,0x8d,0x10,0x0,0x0,0x0, + 0x0,0x40,0x6f,0xdc,0xa0,0x0,0x0,0x0,0x0,0x41,0x84,0xa9,0x90,0x0,0x0,0x0, + 0x0,0x42,0x4f,0xbe,0xa0,0x0,0x0,0x0,0x0,0x43,0x64,0x8b,0x90,0x0,0x0,0x0, + 0x0,0x44,0x2f,0xa0,0xa0,0x0,0x0,0x0,0x0,0x45,0x44,0x6d,0x90,0x0,0x0,0x0, + 0x0,0x45,0xf3,0xd3,0x20,0x0,0x0,0x0,0x0,0x47,0x2d,0x8a,0x10,0x0,0x0,0x0, + 0x0,0x47,0xd3,0xb5,0x20,0x0,0x0,0x0,0x0,0x49,0xd,0x6c,0x10,0x0,0x0,0x0, + 0x0,0x49,0xb3,0x97,0x20,0x0,0x0,0x0,0x0,0x4a,0xed,0x4e,0x10,0x0,0x0,0x0, + 0x0,0x4b,0x9c,0xb3,0xa0,0x0,0x0,0x0,0x0,0x4c,0xd6,0x6a,0x90,0x0,0x0,0x0, + 0x0,0x4d,0x7c,0x95,0xa0,0x0,0x0,0x0,0x0,0x4e,0xb6,0x4c,0x90,0x0,0x0,0x0, + 0x0,0x4f,0x5c,0x77,0xa0,0x0,0x0,0x0,0x0,0x50,0x96,0x2e,0x90,0x0,0x0,0x0, + 0x0,0x51,0x3c,0x59,0xa0,0x0,0x0,0x0,0x0,0x52,0x76,0x10,0x90,0x0,0x0,0x0, + 0x0,0x53,0x1c,0x3b,0xa0,0x0,0x0,0x0,0x0,0x54,0x55,0xf2,0x90,0x0,0x0,0x0, + 0x0,0x54,0xfc,0x1d,0xa0,0x0,0x0,0x0,0x0,0x56,0x35,0xd4,0x90,0x0,0x0,0x0, + 0x0,0x56,0xe5,0x3a,0x20,0x0,0x0,0x0,0x0,0x58,0x1e,0xf1,0x10,0x0,0x0,0x0, + 0x0,0x58,0xc5,0x1c,0x20,0x0,0x0,0x0,0x0,0x59,0xfe,0xd3,0x10,0x0,0x0,0x0, + 0x0,0x5a,0xa4,0xfe,0x20,0x0,0x0,0x0,0x0,0x5b,0xde,0xb5,0x10,0x0,0x0,0x0, + 0x0,0x5c,0x84,0xe0,0x20,0x0,0x0,0x0,0x0,0x5d,0xbe,0x97,0x10,0x0,0x0,0x0, + 0x0,0x5e,0x64,0xc2,0x20,0x0,0x0,0x0,0x0,0x5f,0x9e,0x79,0x10,0x0,0x0,0x0, + 0x0,0x60,0x4d,0xde,0xa0,0x0,0x0,0x0,0x0,0x61,0x87,0x95,0x90,0x0,0x0,0x0, + 0x0,0x62,0x2d,0xc0,0xa0,0x0,0x0,0x0,0x0,0x63,0x67,0x77,0x90,0x0,0x0,0x0, + 0x0,0x64,0xd,0xa2,0xa0,0x0,0x0,0x0,0x0,0x65,0x47,0x59,0x90,0x0,0x0,0x0, + 0x0,0x65,0xed,0x84,0xa0,0x0,0x0,0x0,0x0,0x67,0x27,0x3b,0x90,0x0,0x0,0x0, + 0x0,0x67,0xcd,0x66,0xa0,0x0,0x0,0x0,0x0,0x69,0x7,0x1d,0x90,0x0,0x0,0x0, + 0x0,0x69,0xad,0x48,0xa0,0x0,0x0,0x0,0x0,0x6a,0xe6,0xff,0x90,0x0,0x0,0x0, + 0x0,0x6b,0x96,0x65,0x20,0x0,0x0,0x0,0x0,0x6c,0xd0,0x1c,0x10,0x0,0x0,0x0, + 0x0,0x6d,0x76,0x47,0x20,0x0,0x0,0x0,0x0,0x6e,0xaf,0xfe,0x10,0x0,0x0,0x0, + 0x0,0x6f,0x56,0x29,0x20,0x0,0x0,0x0,0x0,0x70,0x8f,0xe0,0x10,0x0,0x0,0x0, + 0x0,0x71,0x36,0xb,0x20,0x0,0x0,0x0,0x0,0x72,0x6f,0xc2,0x10,0x0,0x0,0x0, + 0x0,0x73,0x15,0xed,0x20,0x0,0x0,0x0,0x0,0x74,0x4f,0xa4,0x10,0x0,0x0,0x0, + 0x0,0x74,0xff,0x9,0xa0,0x0,0x0,0x0,0x0,0x76,0x38,0xc0,0x90,0x0,0x0,0x0, + 0x0,0x76,0xde,0xeb,0xa0,0x0,0x0,0x0,0x0,0x78,0x18,0xa2,0x90,0x0,0x0,0x0, + 0x0,0x78,0xbe,0xcd,0xa0,0x0,0x0,0x0,0x0,0x79,0xf8,0x84,0x90,0x0,0x0,0x0, + 0x0,0x7a,0x9e,0xaf,0xa0,0x0,0x0,0x0,0x0,0x7b,0xd8,0x66,0x90,0x0,0x0,0x0, + 0x0,0x7c,0x7e,0x91,0xa0,0x0,0x0,0x0,0x0,0x7d,0xb8,0x48,0x90,0x0,0x0,0x0, + 0x0,0x7e,0x5e,0x73,0xa0,0x0,0x0,0x0,0x0,0x7f,0x98,0x2a,0x90,0x0,0x2,0x1, + 0x2,0x1,0x2,0x3,0x4,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0x91,0x26,0x0,0x0,0xff,0xff, + 0x9d,0x90,0x1,0x4,0xff,0xff,0x8f,0x80,0x0,0x8,0xff,0xff,0x9d,0x90,0x1,0xc, + 0xff,0xff,0x9d,0x90,0x1,0x10,0x4c,0x4d,0x54,0x0,0x50,0x44,0x54,0x0,0x50,0x53, + 0x54,0x0,0x50,0x57,0x54,0x0,0x50,0x50,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0, + 0x0,0x0,0x0,0x1,0xa,0x50,0x53,0x54,0x38,0x50,0x44,0x54,0x2c,0x4d,0x33,0x2e, + 0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Nassau + 0x0,0x0,0x8,0xec, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x80,0x0,0x0,0x0,0x7f, - 0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x1c,0x20,0x0,0x0,0x2b,0x30,0x32,0x0,0x0, - 0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0xf8,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x0,0x0, - 0x0,0x1c,0x20,0x0,0x0,0x2b,0x30,0x32,0x0,0x0,0x0,0xa,0x3c,0x2b,0x30,0x32, - 0x3e,0x2d,0x32,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Etc/GMT-3 - 0x0,0x0,0x0,0x95, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x96,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0x93, + 0x37,0x42,0x8a,0xf5,0x4f,0x78,0x70,0xf6,0x3f,0x5b,0x60,0xf7,0x2f,0x5a,0x70,0xf8, + 0x28,0x77,0xe0,0xf9,0xf,0x3c,0x70,0xfa,0x8,0x59,0xe0,0xfa,0xf8,0x58,0xf0,0xfb, + 0xe8,0x3b,0xe0,0xfc,0xd8,0x3a,0xf0,0xfd,0xc8,0x1d,0xe0,0xfe,0xb8,0x1c,0xf0,0xff, + 0xa7,0xff,0xe0,0x0,0x97,0xfe,0xf0,0x1,0x87,0xe1,0xe0,0x2,0x77,0xe0,0xf0,0x3, + 0x70,0xfe,0x60,0x4,0x60,0xfd,0x70,0x5,0x50,0xe0,0x60,0x6,0x40,0xdf,0x70,0x7, + 0x30,0xc2,0x60,0x8,0x20,0xc1,0x70,0x9,0x10,0xa4,0x60,0xa,0x0,0xa3,0x70,0xa, + 0xf0,0x86,0x60,0xb,0xe0,0x85,0x70,0xc,0xd9,0xa2,0xe0,0xd,0xc0,0x67,0x70,0xe, + 0xb9,0x84,0xe0,0xf,0xa9,0x83,0xf0,0x10,0x99,0x66,0xe0,0x11,0x89,0x65,0xf0,0x12, + 0x79,0x48,0xe0,0x13,0x69,0x47,0xf0,0x14,0x59,0x2a,0xe0,0x15,0x49,0x29,0xf0,0x16, + 0x39,0xc,0xe0,0x17,0x29,0xb,0xf0,0x18,0x22,0x29,0x60,0x19,0x8,0xed,0xf0,0x1a, + 0x2,0xb,0x60,0x1a,0xf2,0xa,0x70,0x1b,0xe1,0xed,0x60,0x1c,0xd1,0xec,0x70,0x1d, + 0xc1,0xcf,0x60,0x1e,0xb1,0xce,0x70,0x1f,0xa1,0xb1,0x60,0x20,0x76,0x0,0xf0,0x21, + 0x81,0x93,0x60,0x22,0x55,0xe2,0xf0,0x23,0x6a,0xaf,0xe0,0x24,0x35,0xc4,0xf0,0x25, + 0x4a,0x91,0xe0,0x26,0x15,0xa6,0xf0,0x27,0x2a,0x73,0xe0,0x27,0xfe,0xc3,0x70,0x29, + 0xa,0x55,0xe0,0x29,0xde,0xa5,0x70,0x2a,0xea,0x37,0xe0,0x2b,0xbe,0x87,0x70,0x2c, + 0xd3,0x54,0x60,0x2d,0x9e,0x69,0x70,0x2e,0xb3,0x36,0x60,0x2f,0x7e,0x4b,0x70,0x30, + 0x93,0x18,0x60,0x31,0x67,0x67,0xf0,0x32,0x72,0xfa,0x60,0x33,0x47,0x49,0xf0,0x34, + 0x52,0xdc,0x60,0x35,0x27,0x2b,0xf0,0x36,0x32,0xbe,0x60,0x37,0x7,0xd,0xf0,0x38, + 0x1b,0xda,0xe0,0x38,0xe6,0xef,0xf0,0x39,0xfb,0xbc,0xe0,0x3a,0xc6,0xd1,0xf0,0x3b, + 0xdb,0x9e,0xe0,0x3c,0xaf,0xee,0x70,0x3d,0xbb,0x80,0xe0,0x3e,0x8f,0xd0,0x70,0x3f, + 0x9b,0x62,0xe0,0x40,0x6f,0xb2,0x70,0x41,0x84,0x7f,0x60,0x42,0x4f,0x94,0x70,0x43, + 0x64,0x61,0x60,0x44,0x2f,0x76,0x70,0x45,0x44,0x43,0x60,0x45,0xf3,0xa8,0xf0,0x47, + 0x2d,0x5f,0xe0,0x47,0xd3,0x8a,0xf0,0x49,0xd,0x41,0xe0,0x49,0xb3,0x6c,0xf0,0x4a, + 0xed,0x23,0xe0,0x4b,0x9c,0x89,0x70,0x4c,0xd6,0x40,0x60,0x4d,0x7c,0x6b,0x70,0x4e, + 0xb6,0x22,0x60,0x4f,0x5c,0x4d,0x70,0x50,0x96,0x4,0x60,0x51,0x3c,0x2f,0x70,0x52, + 0x75,0xe6,0x60,0x53,0x1c,0x11,0x70,0x54,0x55,0xc8,0x60,0x54,0xfb,0xf3,0x70,0x56, + 0x35,0xaa,0x60,0x56,0xe5,0xf,0xf0,0x58,0x1e,0xc6,0xe0,0x58,0xc4,0xf1,0xf0,0x59, + 0xfe,0xa8,0xe0,0x5a,0xa4,0xd3,0xf0,0x5b,0xde,0x8a,0xe0,0x5c,0x84,0xb5,0xf0,0x5d, + 0xbe,0x6c,0xe0,0x5e,0x64,0x97,0xf0,0x5f,0x9e,0x4e,0xe0,0x60,0x4d,0xb4,0x70,0x61, + 0x87,0x6b,0x60,0x62,0x2d,0x96,0x70,0x63,0x67,0x4d,0x60,0x64,0xd,0x78,0x70,0x65, + 0x47,0x2f,0x60,0x65,0xed,0x5a,0x70,0x67,0x27,0x11,0x60,0x67,0xcd,0x3c,0x70,0x69, + 0x6,0xf3,0x60,0x69,0xad,0x1e,0x70,0x6a,0xe6,0xd5,0x60,0x6b,0x96,0x3a,0xf0,0x6c, + 0xcf,0xf1,0xe0,0x6d,0x76,0x1c,0xf0,0x6e,0xaf,0xd3,0xe0,0x6f,0x55,0xfe,0xf0,0x70, + 0x8f,0xb5,0xe0,0x71,0x35,0xe0,0xf0,0x72,0x6f,0x97,0xe0,0x73,0x15,0xc2,0xf0,0x74, + 0x4f,0x79,0xe0,0x74,0xfe,0xdf,0x70,0x76,0x38,0x96,0x60,0x76,0xde,0xc1,0x70,0x78, + 0x18,0x78,0x60,0x78,0xbe,0xa3,0x70,0x79,0xf8,0x5a,0x60,0x7a,0x9e,0x85,0x70,0x7b, + 0xd8,0x3c,0x60,0x7c,0x7e,0x67,0x70,0x7d,0xb8,0x1e,0x60,0x7e,0x5e,0x49,0x70,0x7f, + 0x98,0x0,0x60,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0xb7,0x76,0x0,0x0,0xff, + 0xff,0xc7,0xc0,0x1,0x4,0xff,0xff,0xb9,0xb0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x45, + 0x44,0x54,0x0,0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, + 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x96,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0x93,0x37,0x42,0x8a,0xff,0xff,0xff,0xff,0xf5,0x4f,0x78, + 0x70,0xff,0xff,0xff,0xff,0xf6,0x3f,0x5b,0x60,0xff,0xff,0xff,0xff,0xf7,0x2f,0x5a, + 0x70,0xff,0xff,0xff,0xff,0xf8,0x28,0x77,0xe0,0xff,0xff,0xff,0xff,0xf9,0xf,0x3c, + 0x70,0xff,0xff,0xff,0xff,0xfa,0x8,0x59,0xe0,0xff,0xff,0xff,0xff,0xfa,0xf8,0x58, + 0xf0,0xff,0xff,0xff,0xff,0xfb,0xe8,0x3b,0xe0,0xff,0xff,0xff,0xff,0xfc,0xd8,0x3a, + 0xf0,0xff,0xff,0xff,0xff,0xfd,0xc8,0x1d,0xe0,0xff,0xff,0xff,0xff,0xfe,0xb8,0x1c, + 0xf0,0xff,0xff,0xff,0xff,0xff,0xa7,0xff,0xe0,0x0,0x0,0x0,0x0,0x0,0x97,0xfe, + 0xf0,0x0,0x0,0x0,0x0,0x1,0x87,0xe1,0xe0,0x0,0x0,0x0,0x0,0x2,0x77,0xe0, + 0xf0,0x0,0x0,0x0,0x0,0x3,0x70,0xfe,0x60,0x0,0x0,0x0,0x0,0x4,0x60,0xfd, + 0x70,0x0,0x0,0x0,0x0,0x5,0x50,0xe0,0x60,0x0,0x0,0x0,0x0,0x6,0x40,0xdf, + 0x70,0x0,0x0,0x0,0x0,0x7,0x30,0xc2,0x60,0x0,0x0,0x0,0x0,0x8,0x20,0xc1, + 0x70,0x0,0x0,0x0,0x0,0x9,0x10,0xa4,0x60,0x0,0x0,0x0,0x0,0xa,0x0,0xa3, + 0x70,0x0,0x0,0x0,0x0,0xa,0xf0,0x86,0x60,0x0,0x0,0x0,0x0,0xb,0xe0,0x85, + 0x70,0x0,0x0,0x0,0x0,0xc,0xd9,0xa2,0xe0,0x0,0x0,0x0,0x0,0xd,0xc0,0x67, + 0x70,0x0,0x0,0x0,0x0,0xe,0xb9,0x84,0xe0,0x0,0x0,0x0,0x0,0xf,0xa9,0x83, + 0xf0,0x0,0x0,0x0,0x0,0x10,0x99,0x66,0xe0,0x0,0x0,0x0,0x0,0x11,0x89,0x65, + 0xf0,0x0,0x0,0x0,0x0,0x12,0x79,0x48,0xe0,0x0,0x0,0x0,0x0,0x13,0x69,0x47, + 0xf0,0x0,0x0,0x0,0x0,0x14,0x59,0x2a,0xe0,0x0,0x0,0x0,0x0,0x15,0x49,0x29, + 0xf0,0x0,0x0,0x0,0x0,0x16,0x39,0xc,0xe0,0x0,0x0,0x0,0x0,0x17,0x29,0xb, + 0xf0,0x0,0x0,0x0,0x0,0x18,0x22,0x29,0x60,0x0,0x0,0x0,0x0,0x19,0x8,0xed, + 0xf0,0x0,0x0,0x0,0x0,0x1a,0x2,0xb,0x60,0x0,0x0,0x0,0x0,0x1a,0xf2,0xa, + 0x70,0x0,0x0,0x0,0x0,0x1b,0xe1,0xed,0x60,0x0,0x0,0x0,0x0,0x1c,0xd1,0xec, + 0x70,0x0,0x0,0x0,0x0,0x1d,0xc1,0xcf,0x60,0x0,0x0,0x0,0x0,0x1e,0xb1,0xce, + 0x70,0x0,0x0,0x0,0x0,0x1f,0xa1,0xb1,0x60,0x0,0x0,0x0,0x0,0x20,0x76,0x0, + 0xf0,0x0,0x0,0x0,0x0,0x21,0x81,0x93,0x60,0x0,0x0,0x0,0x0,0x22,0x55,0xe2, + 0xf0,0x0,0x0,0x0,0x0,0x23,0x6a,0xaf,0xe0,0x0,0x0,0x0,0x0,0x24,0x35,0xc4, + 0xf0,0x0,0x0,0x0,0x0,0x25,0x4a,0x91,0xe0,0x0,0x0,0x0,0x0,0x26,0x15,0xa6, + 0xf0,0x0,0x0,0x0,0x0,0x27,0x2a,0x73,0xe0,0x0,0x0,0x0,0x0,0x27,0xfe,0xc3, + 0x70,0x0,0x0,0x0,0x0,0x29,0xa,0x55,0xe0,0x0,0x0,0x0,0x0,0x29,0xde,0xa5, + 0x70,0x0,0x0,0x0,0x0,0x2a,0xea,0x37,0xe0,0x0,0x0,0x0,0x0,0x2b,0xbe,0x87, + 0x70,0x0,0x0,0x0,0x0,0x2c,0xd3,0x54,0x60,0x0,0x0,0x0,0x0,0x2d,0x9e,0x69, + 0x70,0x0,0x0,0x0,0x0,0x2e,0xb3,0x36,0x60,0x0,0x0,0x0,0x0,0x2f,0x7e,0x4b, + 0x70,0x0,0x0,0x0,0x0,0x30,0x93,0x18,0x60,0x0,0x0,0x0,0x0,0x31,0x67,0x67, + 0xf0,0x0,0x0,0x0,0x0,0x32,0x72,0xfa,0x60,0x0,0x0,0x0,0x0,0x33,0x47,0x49, + 0xf0,0x0,0x0,0x0,0x0,0x34,0x52,0xdc,0x60,0x0,0x0,0x0,0x0,0x35,0x27,0x2b, + 0xf0,0x0,0x0,0x0,0x0,0x36,0x32,0xbe,0x60,0x0,0x0,0x0,0x0,0x37,0x7,0xd, + 0xf0,0x0,0x0,0x0,0x0,0x38,0x1b,0xda,0xe0,0x0,0x0,0x0,0x0,0x38,0xe6,0xef, + 0xf0,0x0,0x0,0x0,0x0,0x39,0xfb,0xbc,0xe0,0x0,0x0,0x0,0x0,0x3a,0xc6,0xd1, + 0xf0,0x0,0x0,0x0,0x0,0x3b,0xdb,0x9e,0xe0,0x0,0x0,0x0,0x0,0x3c,0xaf,0xee, + 0x70,0x0,0x0,0x0,0x0,0x3d,0xbb,0x80,0xe0,0x0,0x0,0x0,0x0,0x3e,0x8f,0xd0, + 0x70,0x0,0x0,0x0,0x0,0x3f,0x9b,0x62,0xe0,0x0,0x0,0x0,0x0,0x40,0x6f,0xb2, + 0x70,0x0,0x0,0x0,0x0,0x41,0x84,0x7f,0x60,0x0,0x0,0x0,0x0,0x42,0x4f,0x94, + 0x70,0x0,0x0,0x0,0x0,0x43,0x64,0x61,0x60,0x0,0x0,0x0,0x0,0x44,0x2f,0x76, + 0x70,0x0,0x0,0x0,0x0,0x45,0x44,0x43,0x60,0x0,0x0,0x0,0x0,0x45,0xf3,0xa8, + 0xf0,0x0,0x0,0x0,0x0,0x47,0x2d,0x5f,0xe0,0x0,0x0,0x0,0x0,0x47,0xd3,0x8a, + 0xf0,0x0,0x0,0x0,0x0,0x49,0xd,0x41,0xe0,0x0,0x0,0x0,0x0,0x49,0xb3,0x6c, + 0xf0,0x0,0x0,0x0,0x0,0x4a,0xed,0x23,0xe0,0x0,0x0,0x0,0x0,0x4b,0x9c,0x89, + 0x70,0x0,0x0,0x0,0x0,0x4c,0xd6,0x40,0x60,0x0,0x0,0x0,0x0,0x4d,0x7c,0x6b, + 0x70,0x0,0x0,0x0,0x0,0x4e,0xb6,0x22,0x60,0x0,0x0,0x0,0x0,0x4f,0x5c,0x4d, + 0x70,0x0,0x0,0x0,0x0,0x50,0x96,0x4,0x60,0x0,0x0,0x0,0x0,0x51,0x3c,0x2f, + 0x70,0x0,0x0,0x0,0x0,0x52,0x75,0xe6,0x60,0x0,0x0,0x0,0x0,0x53,0x1c,0x11, + 0x70,0x0,0x0,0x0,0x0,0x54,0x55,0xc8,0x60,0x0,0x0,0x0,0x0,0x54,0xfb,0xf3, + 0x70,0x0,0x0,0x0,0x0,0x56,0x35,0xaa,0x60,0x0,0x0,0x0,0x0,0x56,0xe5,0xf, + 0xf0,0x0,0x0,0x0,0x0,0x58,0x1e,0xc6,0xe0,0x0,0x0,0x0,0x0,0x58,0xc4,0xf1, + 0xf0,0x0,0x0,0x0,0x0,0x59,0xfe,0xa8,0xe0,0x0,0x0,0x0,0x0,0x5a,0xa4,0xd3, + 0xf0,0x0,0x0,0x0,0x0,0x5b,0xde,0x8a,0xe0,0x0,0x0,0x0,0x0,0x5c,0x84,0xb5, + 0xf0,0x0,0x0,0x0,0x0,0x5d,0xbe,0x6c,0xe0,0x0,0x0,0x0,0x0,0x5e,0x64,0x97, + 0xf0,0x0,0x0,0x0,0x0,0x5f,0x9e,0x4e,0xe0,0x0,0x0,0x0,0x0,0x60,0x4d,0xb4, + 0x70,0x0,0x0,0x0,0x0,0x61,0x87,0x6b,0x60,0x0,0x0,0x0,0x0,0x62,0x2d,0x96, + 0x70,0x0,0x0,0x0,0x0,0x63,0x67,0x4d,0x60,0x0,0x0,0x0,0x0,0x64,0xd,0x78, + 0x70,0x0,0x0,0x0,0x0,0x65,0x47,0x2f,0x60,0x0,0x0,0x0,0x0,0x65,0xed,0x5a, + 0x70,0x0,0x0,0x0,0x0,0x67,0x27,0x11,0x60,0x0,0x0,0x0,0x0,0x67,0xcd,0x3c, + 0x70,0x0,0x0,0x0,0x0,0x69,0x6,0xf3,0x60,0x0,0x0,0x0,0x0,0x69,0xad,0x1e, + 0x70,0x0,0x0,0x0,0x0,0x6a,0xe6,0xd5,0x60,0x0,0x0,0x0,0x0,0x6b,0x96,0x3a, + 0xf0,0x0,0x0,0x0,0x0,0x6c,0xcf,0xf1,0xe0,0x0,0x0,0x0,0x0,0x6d,0x76,0x1c, + 0xf0,0x0,0x0,0x0,0x0,0x6e,0xaf,0xd3,0xe0,0x0,0x0,0x0,0x0,0x6f,0x55,0xfe, + 0xf0,0x0,0x0,0x0,0x0,0x70,0x8f,0xb5,0xe0,0x0,0x0,0x0,0x0,0x71,0x35,0xe0, + 0xf0,0x0,0x0,0x0,0x0,0x72,0x6f,0x97,0xe0,0x0,0x0,0x0,0x0,0x73,0x15,0xc2, + 0xf0,0x0,0x0,0x0,0x0,0x74,0x4f,0x79,0xe0,0x0,0x0,0x0,0x0,0x74,0xfe,0xdf, + 0x70,0x0,0x0,0x0,0x0,0x76,0x38,0x96,0x60,0x0,0x0,0x0,0x0,0x76,0xde,0xc1, + 0x70,0x0,0x0,0x0,0x0,0x78,0x18,0x78,0x60,0x0,0x0,0x0,0x0,0x78,0xbe,0xa3, + 0x70,0x0,0x0,0x0,0x0,0x79,0xf8,0x5a,0x60,0x0,0x0,0x0,0x0,0x7a,0x9e,0x85, + 0x70,0x0,0x0,0x0,0x0,0x7b,0xd8,0x3c,0x60,0x0,0x0,0x0,0x0,0x7c,0x7e,0x67, + 0x70,0x0,0x0,0x0,0x0,0x7d,0xb8,0x1e,0x60,0x0,0x0,0x0,0x0,0x7e,0x5e,0x49, + 0x70,0x0,0x0,0x0,0x0,0x7f,0x98,0x0,0x60,0x0,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff, + 0xff,0xb7,0x76,0x0,0x0,0xff,0xff,0xc7,0xc0,0x1,0x4,0xff,0xff,0xb9,0xb0,0x0, + 0x8,0x4c,0x4d,0x54,0x0,0x45,0x44,0x54,0x0,0x45,0x53,0x54,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0xa,0x45,0x53,0x54,0x35,0x45,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32, + 0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Eirunepe + 0x0,0x0,0x2,0xb2, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x80,0x0,0x0,0x0,0x7f, - 0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x2a,0x30,0x0,0x0,0x2b,0x30,0x33,0x0,0x0, - 0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0xf8,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x0,0x0, - 0x0,0x2a,0x30,0x0,0x0,0x2b,0x30,0x33,0x0,0x0,0x0,0xa,0x3c,0x2b,0x30,0x33, - 0x3e,0x2d,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Etc/GMT-4 - 0x0,0x0,0x0,0x95, + 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x23,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0x96, + 0xaa,0x88,0x80,0xb8,0xf,0x66,0x0,0xb8,0xfd,0x5c,0xc0,0xb9,0xf1,0x50,0x50,0xba, + 0xde,0x90,0x40,0xda,0x38,0xca,0x50,0xda,0xec,0x16,0x50,0xdc,0x19,0xfd,0xd0,0xdc, + 0xb9,0x75,0x40,0xdd,0xfb,0x31,0x50,0xde,0x9b,0xfa,0x40,0xdf,0xdd,0xb6,0x50,0xe0, + 0x54,0x4f,0x40,0xf4,0x98,0x1b,0xd0,0xf5,0x5,0x7a,0x40,0xf6,0xc0,0x80,0x50,0xf7, + 0xe,0x3a,0xc0,0xf8,0x51,0x48,0x50,0xf8,0xc7,0xe1,0x40,0xfa,0xa,0xee,0xd0,0xfa, + 0xa9,0x14,0xc0,0xfb,0xec,0x22,0x50,0xfc,0x8b,0x99,0xc0,0x1d,0xc9,0xaa,0x50,0x1e, + 0x78,0xf3,0xc0,0x1f,0xa0,0x51,0xd0,0x20,0x33,0xeb,0xc0,0x21,0x81,0x85,0x50,0x22, + 0xb,0xe4,0xc0,0x2c,0xc0,0xd1,0x50,0x2d,0x66,0xe0,0x40,0x48,0x60,0x7f,0x50,0x52, + 0x7f,0x4,0xc0,0x7f,0xff,0xff,0xff,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x2,0x2,0xff,0xff,0xbe,0x80,0x0,0x0, + 0xff,0xff,0xc7,0xc0,0x1,0x4,0xff,0xff,0xb9,0xb0,0x0,0x8,0xff,0xff,0xc7,0xc0, + 0x0,0x4,0xff,0xff,0xb9,0xb0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x2d,0x30,0x34,0x0, + 0x2d,0x30,0x35,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a, + 0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x23,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xc,0xf8,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xff,0xff,0xff,0xff,0x96,0xaa,0x88,0x80,0xff,0xff,0xff,0xff,0xb8,0xf, + 0x66,0x0,0xff,0xff,0xff,0xff,0xb8,0xfd,0x5c,0xc0,0xff,0xff,0xff,0xff,0xb9,0xf1, + 0x50,0x50,0xff,0xff,0xff,0xff,0xba,0xde,0x90,0x40,0xff,0xff,0xff,0xff,0xda,0x38, + 0xca,0x50,0xff,0xff,0xff,0xff,0xda,0xec,0x16,0x50,0xff,0xff,0xff,0xff,0xdc,0x19, + 0xfd,0xd0,0xff,0xff,0xff,0xff,0xdc,0xb9,0x75,0x40,0xff,0xff,0xff,0xff,0xdd,0xfb, + 0x31,0x50,0xff,0xff,0xff,0xff,0xde,0x9b,0xfa,0x40,0xff,0xff,0xff,0xff,0xdf,0xdd, + 0xb6,0x50,0xff,0xff,0xff,0xff,0xe0,0x54,0x4f,0x40,0xff,0xff,0xff,0xff,0xf4,0x98, + 0x1b,0xd0,0xff,0xff,0xff,0xff,0xf5,0x5,0x7a,0x40,0xff,0xff,0xff,0xff,0xf6,0xc0, + 0x80,0x50,0xff,0xff,0xff,0xff,0xf7,0xe,0x3a,0xc0,0xff,0xff,0xff,0xff,0xf8,0x51, + 0x48,0x50,0xff,0xff,0xff,0xff,0xf8,0xc7,0xe1,0x40,0xff,0xff,0xff,0xff,0xfa,0xa, + 0xee,0xd0,0xff,0xff,0xff,0xff,0xfa,0xa9,0x14,0xc0,0xff,0xff,0xff,0xff,0xfb,0xec, + 0x22,0x50,0xff,0xff,0xff,0xff,0xfc,0x8b,0x99,0xc0,0x0,0x0,0x0,0x0,0x1d,0xc9, + 0xaa,0x50,0x0,0x0,0x0,0x0,0x1e,0x78,0xf3,0xc0,0x0,0x0,0x0,0x0,0x1f,0xa0, + 0x51,0xd0,0x0,0x0,0x0,0x0,0x20,0x33,0xeb,0xc0,0x0,0x0,0x0,0x0,0x21,0x81, + 0x85,0x50,0x0,0x0,0x0,0x0,0x22,0xb,0xe4,0xc0,0x0,0x0,0x0,0x0,0x2c,0xc0, + 0xd1,0x50,0x0,0x0,0x0,0x0,0x2d,0x66,0xe0,0x40,0x0,0x0,0x0,0x0,0x48,0x60, + 0x7f,0x50,0x0,0x0,0x0,0x0,0x52,0x7f,0x4,0xc0,0x0,0x0,0x0,0x0,0x7f,0xff, + 0xff,0xff,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x3,0x2,0x2,0xff,0xff,0xbe,0x80,0x0,0x0,0xff,0xff,0xc7,0xc0,0x1, + 0x4,0xff,0xff,0xb9,0xb0,0x0,0x8,0xff,0xff,0xc7,0xc0,0x0,0x4,0xff,0xff,0xb9, + 0xb0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x2d,0x30,0x34,0x0,0x2d,0x30,0x35,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2d,0x30,0x35,0x3e,0x35, + 0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Manaus + 0x0,0x0,0x2,0x76, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x80,0x0,0x0,0x0,0x7f, - 0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x38,0x40,0x0,0x0,0x2b,0x30,0x34,0x0,0x0, - 0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0xf8,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x0,0x0, - 0x0,0x38,0x40,0x0,0x0,0x2b,0x30,0x34,0x0,0x0,0x0,0xa,0x3c,0x2b,0x30,0x34, - 0x3e,0x2d,0x34,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Etc/GMT-5 - 0x0,0x0,0x0,0x95, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x21,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0x96, + 0xaa,0x7f,0x44,0xb8,0xf,0x57,0xf0,0xb8,0xfd,0x4e,0xb0,0xb9,0xf1,0x42,0x40,0xba, + 0xde,0x82,0x30,0xda,0x38,0xbc,0x40,0xda,0xec,0x8,0x40,0xdc,0x19,0xef,0xc0,0xdc, + 0xb9,0x67,0x30,0xdd,0xfb,0x23,0x40,0xde,0x9b,0xec,0x30,0xdf,0xdd,0xa8,0x40,0xe0, + 0x54,0x41,0x30,0xf4,0x98,0xd,0xc0,0xf5,0x5,0x6c,0x30,0xf6,0xc0,0x72,0x40,0xf7, + 0xe,0x2c,0xb0,0xf8,0x51,0x3a,0x40,0xf8,0xc7,0xd3,0x30,0xfa,0xa,0xe0,0xc0,0xfa, + 0xa9,0x6,0xb0,0xfb,0xec,0x14,0x40,0xfc,0x8b,0x8b,0xb0,0x1d,0xc9,0x9c,0x40,0x1e, + 0x78,0xe5,0xb0,0x1f,0xa0,0x43,0xc0,0x20,0x33,0xdd,0xb0,0x21,0x81,0x77,0x40,0x22, + 0xb,0xd6,0xb0,0x2c,0xc0,0xc3,0x40,0x2d,0x66,0xd2,0x30,0x7f,0xff,0xff,0xff,0x0, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x2, + 0xff,0xff,0xc7,0xbc,0x0,0x0,0xff,0xff,0xd5,0xd0,0x1,0x4,0xff,0xff,0xc7,0xc0, + 0x0,0x8,0x4c,0x4d,0x54,0x0,0x2d,0x30,0x33,0x0,0x2d,0x30,0x34,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc, + 0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x96,0xaa,0x7f,0x44, + 0xff,0xff,0xff,0xff,0xb8,0xf,0x57,0xf0,0xff,0xff,0xff,0xff,0xb8,0xfd,0x4e,0xb0, + 0xff,0xff,0xff,0xff,0xb9,0xf1,0x42,0x40,0xff,0xff,0xff,0xff,0xba,0xde,0x82,0x30, + 0xff,0xff,0xff,0xff,0xda,0x38,0xbc,0x40,0xff,0xff,0xff,0xff,0xda,0xec,0x8,0x40, + 0xff,0xff,0xff,0xff,0xdc,0x19,0xef,0xc0,0xff,0xff,0xff,0xff,0xdc,0xb9,0x67,0x30, + 0xff,0xff,0xff,0xff,0xdd,0xfb,0x23,0x40,0xff,0xff,0xff,0xff,0xde,0x9b,0xec,0x30, + 0xff,0xff,0xff,0xff,0xdf,0xdd,0xa8,0x40,0xff,0xff,0xff,0xff,0xe0,0x54,0x41,0x30, + 0xff,0xff,0xff,0xff,0xf4,0x98,0xd,0xc0,0xff,0xff,0xff,0xff,0xf5,0x5,0x6c,0x30, + 0xff,0xff,0xff,0xff,0xf6,0xc0,0x72,0x40,0xff,0xff,0xff,0xff,0xf7,0xe,0x2c,0xb0, + 0xff,0xff,0xff,0xff,0xf8,0x51,0x3a,0x40,0xff,0xff,0xff,0xff,0xf8,0xc7,0xd3,0x30, + 0xff,0xff,0xff,0xff,0xfa,0xa,0xe0,0xc0,0xff,0xff,0xff,0xff,0xfa,0xa9,0x6,0xb0, + 0xff,0xff,0xff,0xff,0xfb,0xec,0x14,0x40,0xff,0xff,0xff,0xff,0xfc,0x8b,0x8b,0xb0, + 0x0,0x0,0x0,0x0,0x1d,0xc9,0x9c,0x40,0x0,0x0,0x0,0x0,0x1e,0x78,0xe5,0xb0, + 0x0,0x0,0x0,0x0,0x1f,0xa0,0x43,0xc0,0x0,0x0,0x0,0x0,0x20,0x33,0xdd,0xb0, + 0x0,0x0,0x0,0x0,0x21,0x81,0x77,0x40,0x0,0x0,0x0,0x0,0x22,0xb,0xd6,0xb0, + 0x0,0x0,0x0,0x0,0x2c,0xc0,0xc3,0x40,0x0,0x0,0x0,0x0,0x2d,0x66,0xd2,0x30, + 0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x2,0xff,0xff,0xc7,0xbc,0x0,0x0,0xff, + 0xff,0xd5,0xd0,0x1,0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x2d, + 0x30,0x33,0x0,0x2d,0x30,0x34,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2d, + 0x30,0x34,0x3e,0x34,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Mazatlan + 0x0,0x0,0x6,0x1c, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x80,0x0,0x0,0x0,0x7f, - 0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x46,0x50,0x0,0x0,0x2b,0x30,0x35,0x0,0x0, - 0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0xf8,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x0,0x0, - 0x0,0x46,0x50,0x0,0x0,0x2b,0x30,0x35,0x0,0x0,0x0,0xa,0x3c,0x2b,0x30,0x35, - 0x3e,0x2d,0x35,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Etc/GMT-6 - 0x0,0x0,0x0,0x95, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x80,0x0,0x0,0x0,0x7f, - 0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x54,0x60,0x0,0x0,0x2b,0x30,0x36,0x0,0x0, - 0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0xf8,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x0,0x0, - 0x0,0x54,0x60,0x0,0x0,0x2b,0x30,0x36,0x0,0x0,0x0,0xa,0x3c,0x2b,0x30,0x36, - 0x3e,0x2d,0x36,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Etc/GMT-10 - 0x0,0x0,0x0,0x96, + 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x5e,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0xa5, + 0xb6,0xe8,0x70,0xaf,0xf2,0x6e,0xe0,0xb6,0x66,0x56,0x60,0xb7,0x43,0xd2,0x60,0xb8, + 0xc,0x36,0x60,0xb8,0xfd,0x86,0xf0,0xcb,0xea,0x71,0x60,0xd8,0x91,0xb4,0xf0,0x0, + 0x0,0x70,0x80,0x31,0x67,0x84,0x10,0x32,0x73,0x16,0x80,0x33,0x47,0x66,0x10,0x34, + 0x52,0xf8,0x80,0x35,0x27,0x48,0x10,0x36,0x32,0xda,0x80,0x37,0x7,0x2a,0x10,0x38, + 0x1b,0xf7,0x0,0x38,0xe7,0xc,0x10,0x39,0xfb,0xd9,0x0,0x3a,0xf5,0x12,0x90,0x3b, + 0xb6,0xd1,0x0,0x3c,0xb0,0xa,0x90,0x3d,0xbb,0x9d,0x0,0x3e,0x8f,0xec,0x90,0x3f, + 0x9b,0x7f,0x0,0x40,0x6f,0xce,0x90,0x41,0x84,0x9b,0x80,0x42,0x4f,0xb0,0x90,0x43, + 0x64,0x7d,0x80,0x44,0x2f,0x92,0x90,0x45,0x44,0x5f,0x80,0x46,0xf,0x74,0x90,0x47, + 0x24,0x41,0x80,0x47,0xf8,0x91,0x10,0x49,0x4,0x23,0x80,0x49,0xd8,0x73,0x10,0x4a, + 0xe4,0x5,0x80,0x4b,0xb8,0x55,0x10,0x4c,0xcd,0x22,0x0,0x4d,0x98,0x37,0x10,0x4e, + 0xad,0x4,0x0,0x4f,0x78,0x19,0x10,0x50,0x8c,0xe6,0x0,0x51,0x61,0x35,0x90,0x52, + 0x6c,0xc8,0x0,0x53,0x41,0x17,0x90,0x54,0x4c,0xaa,0x0,0x55,0x20,0xf9,0x90,0x56, + 0x2c,0x8c,0x0,0x57,0x0,0xdb,0x90,0x58,0x15,0xa8,0x80,0x58,0xe0,0xbd,0x90,0x59, + 0xf5,0x8a,0x80,0x5a,0xc0,0x9f,0x90,0x5b,0xd5,0x6c,0x80,0x5c,0xa9,0xbc,0x10,0x5d, + 0xb5,0x4e,0x80,0x5e,0x89,0x9e,0x10,0x5f,0x95,0x30,0x80,0x60,0x69,0x80,0x10,0x61, + 0x7e,0x4d,0x0,0x62,0x49,0x62,0x10,0x63,0x5e,0x2f,0x0,0x64,0x29,0x44,0x10,0x65, + 0x3e,0x11,0x0,0x66,0x12,0x60,0x90,0x67,0x1d,0xf3,0x0,0x67,0xf2,0x42,0x90,0x68, + 0xfd,0xd5,0x0,0x69,0xd2,0x24,0x90,0x6a,0xdd,0xb7,0x0,0x6b,0xb2,0x6,0x90,0x6c, + 0xc6,0xd3,0x80,0x6d,0x91,0xe8,0x90,0x6e,0xa6,0xb5,0x80,0x6f,0x71,0xca,0x90,0x70, + 0x86,0x97,0x80,0x71,0x5a,0xe7,0x10,0x72,0x66,0x79,0x80,0x73,0x3a,0xc9,0x10,0x74, + 0x46,0x5b,0x80,0x75,0x1a,0xab,0x10,0x76,0x2f,0x78,0x0,0x76,0xfa,0x8d,0x10,0x78, + 0xf,0x5a,0x0,0x78,0xda,0x6f,0x10,0x79,0xef,0x3c,0x0,0x7a,0xba,0x51,0x10,0x7b, + 0xcf,0x1e,0x0,0x7c,0xa3,0x6d,0x90,0x7d,0xaf,0x0,0x0,0x7e,0x83,0x4f,0x90,0x7f, + 0x8e,0xe2,0x0,0x0,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x3,0x1,0x4,0x1,0x4, + 0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4, + 0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4, + 0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4, + 0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4, + 0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4, + 0x1,0xff,0xff,0x9c,0x3c,0x0,0x0,0xff,0xff,0x9d,0x90,0x0,0x4,0xff,0xff,0xab, + 0xa0,0x0,0x8,0xff,0xff,0x8f,0x80,0x0,0xc,0xff,0xff,0xab,0xa0,0x1,0x10,0xff, + 0xff,0x9d,0x90,0x0,0x4,0x4c,0x4d,0x54,0x0,0x4d,0x53,0x54,0x0,0x43,0x53,0x54, + 0x0,0x50,0x53,0x54,0x0,0x4d,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5e,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x14,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xa5,0xb6,0xe8, + 0x70,0xff,0xff,0xff,0xff,0xaf,0xf2,0x6e,0xe0,0xff,0xff,0xff,0xff,0xb6,0x66,0x56, + 0x60,0xff,0xff,0xff,0xff,0xb7,0x43,0xd2,0x60,0xff,0xff,0xff,0xff,0xb8,0xc,0x36, + 0x60,0xff,0xff,0xff,0xff,0xb8,0xfd,0x86,0xf0,0xff,0xff,0xff,0xff,0xcb,0xea,0x71, + 0x60,0xff,0xff,0xff,0xff,0xd8,0x91,0xb4,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x70, + 0x80,0x0,0x0,0x0,0x0,0x31,0x67,0x84,0x10,0x0,0x0,0x0,0x0,0x32,0x73,0x16, + 0x80,0x0,0x0,0x0,0x0,0x33,0x47,0x66,0x10,0x0,0x0,0x0,0x0,0x34,0x52,0xf8, + 0x80,0x0,0x0,0x0,0x0,0x35,0x27,0x48,0x10,0x0,0x0,0x0,0x0,0x36,0x32,0xda, + 0x80,0x0,0x0,0x0,0x0,0x37,0x7,0x2a,0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0xf7, + 0x0,0x0,0x0,0x0,0x0,0x38,0xe7,0xc,0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0xd9, + 0x0,0x0,0x0,0x0,0x0,0x3a,0xf5,0x12,0x90,0x0,0x0,0x0,0x0,0x3b,0xb6,0xd1, + 0x0,0x0,0x0,0x0,0x0,0x3c,0xb0,0xa,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x9d, + 0x0,0x0,0x0,0x0,0x0,0x3e,0x8f,0xec,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x7f, + 0x0,0x0,0x0,0x0,0x0,0x40,0x6f,0xce,0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x9b, + 0x80,0x0,0x0,0x0,0x0,0x42,0x4f,0xb0,0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x7d, + 0x80,0x0,0x0,0x0,0x0,0x44,0x2f,0x92,0x90,0x0,0x0,0x0,0x0,0x45,0x44,0x5f, + 0x80,0x0,0x0,0x0,0x0,0x46,0xf,0x74,0x90,0x0,0x0,0x0,0x0,0x47,0x24,0x41, + 0x80,0x0,0x0,0x0,0x0,0x47,0xf8,0x91,0x10,0x0,0x0,0x0,0x0,0x49,0x4,0x23, + 0x80,0x0,0x0,0x0,0x0,0x49,0xd8,0x73,0x10,0x0,0x0,0x0,0x0,0x4a,0xe4,0x5, + 0x80,0x0,0x0,0x0,0x0,0x4b,0xb8,0x55,0x10,0x0,0x0,0x0,0x0,0x4c,0xcd,0x22, + 0x0,0x0,0x0,0x0,0x0,0x4d,0x98,0x37,0x10,0x0,0x0,0x0,0x0,0x4e,0xad,0x4, + 0x0,0x0,0x0,0x0,0x0,0x4f,0x78,0x19,0x10,0x0,0x0,0x0,0x0,0x50,0x8c,0xe6, + 0x0,0x0,0x0,0x0,0x0,0x51,0x61,0x35,0x90,0x0,0x0,0x0,0x0,0x52,0x6c,0xc8, + 0x0,0x0,0x0,0x0,0x0,0x53,0x41,0x17,0x90,0x0,0x0,0x0,0x0,0x54,0x4c,0xaa, + 0x0,0x0,0x0,0x0,0x0,0x55,0x20,0xf9,0x90,0x0,0x0,0x0,0x0,0x56,0x2c,0x8c, + 0x0,0x0,0x0,0x0,0x0,0x57,0x0,0xdb,0x90,0x0,0x0,0x0,0x0,0x58,0x15,0xa8, + 0x80,0x0,0x0,0x0,0x0,0x58,0xe0,0xbd,0x90,0x0,0x0,0x0,0x0,0x59,0xf5,0x8a, + 0x80,0x0,0x0,0x0,0x0,0x5a,0xc0,0x9f,0x90,0x0,0x0,0x0,0x0,0x5b,0xd5,0x6c, + 0x80,0x0,0x0,0x0,0x0,0x5c,0xa9,0xbc,0x10,0x0,0x0,0x0,0x0,0x5d,0xb5,0x4e, + 0x80,0x0,0x0,0x0,0x0,0x5e,0x89,0x9e,0x10,0x0,0x0,0x0,0x0,0x5f,0x95,0x30, + 0x80,0x0,0x0,0x0,0x0,0x60,0x69,0x80,0x10,0x0,0x0,0x0,0x0,0x61,0x7e,0x4d, + 0x0,0x0,0x0,0x0,0x0,0x62,0x49,0x62,0x10,0x0,0x0,0x0,0x0,0x63,0x5e,0x2f, + 0x0,0x0,0x0,0x0,0x0,0x64,0x29,0x44,0x10,0x0,0x0,0x0,0x0,0x65,0x3e,0x11, + 0x0,0x0,0x0,0x0,0x0,0x66,0x12,0x60,0x90,0x0,0x0,0x0,0x0,0x67,0x1d,0xf3, + 0x0,0x0,0x0,0x0,0x0,0x67,0xf2,0x42,0x90,0x0,0x0,0x0,0x0,0x68,0xfd,0xd5, + 0x0,0x0,0x0,0x0,0x0,0x69,0xd2,0x24,0x90,0x0,0x0,0x0,0x0,0x6a,0xdd,0xb7, + 0x0,0x0,0x0,0x0,0x0,0x6b,0xb2,0x6,0x90,0x0,0x0,0x0,0x0,0x6c,0xc6,0xd3, + 0x80,0x0,0x0,0x0,0x0,0x6d,0x91,0xe8,0x90,0x0,0x0,0x0,0x0,0x6e,0xa6,0xb5, + 0x80,0x0,0x0,0x0,0x0,0x6f,0x71,0xca,0x90,0x0,0x0,0x0,0x0,0x70,0x86,0x97, + 0x80,0x0,0x0,0x0,0x0,0x71,0x5a,0xe7,0x10,0x0,0x0,0x0,0x0,0x72,0x66,0x79, + 0x80,0x0,0x0,0x0,0x0,0x73,0x3a,0xc9,0x10,0x0,0x0,0x0,0x0,0x74,0x46,0x5b, + 0x80,0x0,0x0,0x0,0x0,0x75,0x1a,0xab,0x10,0x0,0x0,0x0,0x0,0x76,0x2f,0x78, + 0x0,0x0,0x0,0x0,0x0,0x76,0xfa,0x8d,0x10,0x0,0x0,0x0,0x0,0x78,0xf,0x5a, + 0x0,0x0,0x0,0x0,0x0,0x78,0xda,0x6f,0x10,0x0,0x0,0x0,0x0,0x79,0xef,0x3c, + 0x0,0x0,0x0,0x0,0x0,0x7a,0xba,0x51,0x10,0x0,0x0,0x0,0x0,0x7b,0xcf,0x1e, + 0x0,0x0,0x0,0x0,0x0,0x7c,0xa3,0x6d,0x90,0x0,0x0,0x0,0x0,0x7d,0xaf,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7e,0x83,0x4f,0x90,0x0,0x0,0x0,0x0,0x7f,0x8e,0xe2, + 0x0,0x0,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x3,0x1,0x4,0x1,0x4,0x1,0x4, + 0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4, + 0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4, + 0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4, + 0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4, + 0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0xff, + 0xff,0x9c,0x3c,0x0,0x0,0xff,0xff,0x9d,0x90,0x0,0x4,0xff,0xff,0xab,0xa0,0x0, + 0x8,0xff,0xff,0x8f,0x80,0x0,0xc,0xff,0xff,0xab,0xa0,0x1,0x10,0xff,0xff,0x9d, + 0x90,0x0,0x4,0x4c,0x4d,0x54,0x0,0x4d,0x53,0x54,0x0,0x43,0x53,0x54,0x0,0x50, + 0x53,0x54,0x0,0x4d,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0xa,0x4d,0x53,0x54,0x37,0x4d,0x44,0x54,0x2c,0x4d,0x34,0x2e,0x31, + 0x2e,0x30,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Buenos_Aires + 0x0,0x0,0x4,0x55, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x80,0x0,0x0,0x0,0x7f, - 0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x8c,0xa0,0x0,0x0,0x2b,0x31,0x30,0x0,0x0, - 0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0xf8,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x0,0x0, - 0x0,0x8c,0xa0,0x0,0x0,0x2b,0x31,0x30,0x0,0x0,0x0,0xa,0x3c,0x2b,0x31,0x30, - 0x3e,0x2d,0x31,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Etc/GMT-7 - 0x0,0x0,0x0,0x95, + 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3e,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0xa2, + 0x92,0x8f,0x30,0xb6,0x7b,0x52,0x40,0xb7,0x1a,0xc9,0xb0,0xb8,0x1e,0x8f,0x40,0xb8, + 0xd4,0x70,0x30,0xba,0x17,0x7d,0xc0,0xba,0xb5,0xa3,0xb0,0xbb,0xf8,0xb1,0x40,0xbc, + 0x96,0xd7,0x30,0xbd,0xd9,0xe4,0xc0,0xbe,0x78,0xa,0xb0,0xbf,0xbb,0x18,0x40,0xc0, + 0x5a,0x8f,0xb0,0xc1,0x9d,0x9d,0x40,0xc2,0x3b,0xc3,0x30,0xc3,0x7e,0xd0,0xc0,0xc4, + 0x1c,0xf6,0xb0,0xc5,0x60,0x4,0x40,0xc5,0xfe,0x2a,0x30,0xc7,0x41,0x37,0xc0,0xc7, + 0xe0,0xaf,0x30,0xc8,0x81,0x94,0x40,0xca,0x4d,0xa1,0xb0,0xca,0xee,0x86,0xc0,0xce, + 0x4d,0xff,0x30,0xce,0xb0,0xed,0xc0,0xd3,0x29,0x35,0xb0,0xd4,0x43,0x64,0xc0,0xf4, + 0x3d,0x8,0x30,0xf4,0x9f,0xf6,0xc0,0xf5,0x5,0x6c,0x30,0xf6,0x32,0x10,0x40,0xf6, + 0xe6,0x9f,0xb0,0xf8,0x13,0x43,0xc0,0xf8,0xc7,0xd3,0x30,0xf9,0xf4,0x77,0x40,0xfa, + 0xd3,0x36,0xb0,0xfb,0xc3,0x35,0xc0,0xfc,0xbc,0x53,0x30,0xfd,0xac,0x52,0x40,0xfe, + 0x9c,0x35,0x30,0xff,0x8c,0x34,0x40,0x7,0xa3,0x4a,0xb0,0x8,0x24,0x6f,0xa0,0x23, + 0x94,0xb5,0xb0,0x24,0x10,0x94,0xa0,0x25,0x37,0xf2,0xb0,0x25,0xf0,0x76,0xa0,0x27, + 0x21,0xf,0x30,0x27,0xd0,0x58,0xa0,0x29,0x0,0xf1,0x30,0x29,0xb0,0x3a,0xa0,0x2a, + 0xe0,0xd3,0x30,0x2b,0x99,0x57,0x20,0x37,0xf6,0xc6,0xb0,0x38,0xbf,0x2a,0xb0,0x47, + 0x77,0x9,0xb0,0x47,0xdc,0x7f,0x20,0x48,0xfa,0xa2,0xb0,0x49,0xbc,0x61,0x20,0x7f, + 0xff,0xff,0xff,0x1,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x3,0x5,0x4,0x5,0x4,0x5, + 0x5,0xff,0xff,0xc9,0x34,0x0,0x0,0xff,0xff,0xc3,0xd0,0x0,0x4,0xff,0xff,0xc7, + 0xc0,0x0,0x8,0xff,0xff,0xd5,0xd0,0x1,0xc,0xff,0xff,0xe3,0xe0,0x1,0x10,0xff, + 0xff,0xd5,0xd0,0x0,0xc,0x4c,0x4d,0x54,0x0,0x43,0x4d,0x54,0x0,0x2d,0x30,0x34, + 0x0,0x2d,0x30,0x33,0x0,0x2d,0x30,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x14,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x72,0x9c,0xa8, + 0x4c,0xff,0xff,0xff,0xff,0xa2,0x92,0x8f,0x30,0xff,0xff,0xff,0xff,0xb6,0x7b,0x52, + 0x40,0xff,0xff,0xff,0xff,0xb7,0x1a,0xc9,0xb0,0xff,0xff,0xff,0xff,0xb8,0x1e,0x8f, + 0x40,0xff,0xff,0xff,0xff,0xb8,0xd4,0x70,0x30,0xff,0xff,0xff,0xff,0xba,0x17,0x7d, + 0xc0,0xff,0xff,0xff,0xff,0xba,0xb5,0xa3,0xb0,0xff,0xff,0xff,0xff,0xbb,0xf8,0xb1, + 0x40,0xff,0xff,0xff,0xff,0xbc,0x96,0xd7,0x30,0xff,0xff,0xff,0xff,0xbd,0xd9,0xe4, + 0xc0,0xff,0xff,0xff,0xff,0xbe,0x78,0xa,0xb0,0xff,0xff,0xff,0xff,0xbf,0xbb,0x18, + 0x40,0xff,0xff,0xff,0xff,0xc0,0x5a,0x8f,0xb0,0xff,0xff,0xff,0xff,0xc1,0x9d,0x9d, + 0x40,0xff,0xff,0xff,0xff,0xc2,0x3b,0xc3,0x30,0xff,0xff,0xff,0xff,0xc3,0x7e,0xd0, + 0xc0,0xff,0xff,0xff,0xff,0xc4,0x1c,0xf6,0xb0,0xff,0xff,0xff,0xff,0xc5,0x60,0x4, + 0x40,0xff,0xff,0xff,0xff,0xc5,0xfe,0x2a,0x30,0xff,0xff,0xff,0xff,0xc7,0x41,0x37, + 0xc0,0xff,0xff,0xff,0xff,0xc7,0xe0,0xaf,0x30,0xff,0xff,0xff,0xff,0xc8,0x81,0x94, + 0x40,0xff,0xff,0xff,0xff,0xca,0x4d,0xa1,0xb0,0xff,0xff,0xff,0xff,0xca,0xee,0x86, + 0xc0,0xff,0xff,0xff,0xff,0xce,0x4d,0xff,0x30,0xff,0xff,0xff,0xff,0xce,0xb0,0xed, + 0xc0,0xff,0xff,0xff,0xff,0xd3,0x29,0x35,0xb0,0xff,0xff,0xff,0xff,0xd4,0x43,0x64, + 0xc0,0xff,0xff,0xff,0xff,0xf4,0x3d,0x8,0x30,0xff,0xff,0xff,0xff,0xf4,0x9f,0xf6, + 0xc0,0xff,0xff,0xff,0xff,0xf5,0x5,0x6c,0x30,0xff,0xff,0xff,0xff,0xf6,0x32,0x10, + 0x40,0xff,0xff,0xff,0xff,0xf6,0xe6,0x9f,0xb0,0xff,0xff,0xff,0xff,0xf8,0x13,0x43, + 0xc0,0xff,0xff,0xff,0xff,0xf8,0xc7,0xd3,0x30,0xff,0xff,0xff,0xff,0xf9,0xf4,0x77, + 0x40,0xff,0xff,0xff,0xff,0xfa,0xd3,0x36,0xb0,0xff,0xff,0xff,0xff,0xfb,0xc3,0x35, + 0xc0,0xff,0xff,0xff,0xff,0xfc,0xbc,0x53,0x30,0xff,0xff,0xff,0xff,0xfd,0xac,0x52, + 0x40,0xff,0xff,0xff,0xff,0xfe,0x9c,0x35,0x30,0xff,0xff,0xff,0xff,0xff,0x8c,0x34, + 0x40,0x0,0x0,0x0,0x0,0x7,0xa3,0x4a,0xb0,0x0,0x0,0x0,0x0,0x8,0x24,0x6f, + 0xa0,0x0,0x0,0x0,0x0,0x23,0x94,0xb5,0xb0,0x0,0x0,0x0,0x0,0x24,0x10,0x94, + 0xa0,0x0,0x0,0x0,0x0,0x25,0x37,0xf2,0xb0,0x0,0x0,0x0,0x0,0x25,0xf0,0x76, + 0xa0,0x0,0x0,0x0,0x0,0x27,0x21,0xf,0x30,0x0,0x0,0x0,0x0,0x27,0xd0,0x58, + 0xa0,0x0,0x0,0x0,0x0,0x29,0x0,0xf1,0x30,0x0,0x0,0x0,0x0,0x29,0xb0,0x3a, + 0xa0,0x0,0x0,0x0,0x0,0x2a,0xe0,0xd3,0x30,0x0,0x0,0x0,0x0,0x2b,0x99,0x57, + 0x20,0x0,0x0,0x0,0x0,0x37,0xf6,0xc6,0xb0,0x0,0x0,0x0,0x0,0x38,0xbf,0x2a, + 0xb0,0x0,0x0,0x0,0x0,0x47,0x77,0x9,0xb0,0x0,0x0,0x0,0x0,0x47,0xdc,0x7f, + 0x20,0x0,0x0,0x0,0x0,0x48,0xfa,0xa2,0xb0,0x0,0x0,0x0,0x0,0x49,0xbc,0x61, + 0x20,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x3,0x5,0x4,0x5,0x4,0x5,0x5,0xff,0xff,0xc9,0x34,0x0,0x0,0xff,0xff, + 0xc3,0xd0,0x0,0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0xff,0xff,0xd5,0xd0,0x1,0xc, + 0xff,0xff,0xe3,0xe0,0x1,0x10,0xff,0xff,0xd5,0xd0,0x0,0xc,0x4c,0x4d,0x54,0x0, + 0x43,0x4d,0x54,0x0,0x2d,0x30,0x34,0x0,0x2d,0x30,0x33,0x0,0x2d,0x30,0x32,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2d,0x30, + 0x33,0x3e,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/St_Thomas + 0x0,0x0,0x0,0xaa, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x80,0x0,0x0,0x0,0x7f, - 0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x62,0x70,0x0,0x0,0x2b,0x30,0x37,0x0,0x0, - 0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0xf8,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x0,0x0, - 0x0,0x62,0x70,0x0,0x0,0x2b,0x30,0x37,0x0,0x0,0x0,0xa,0x3c,0x2b,0x30,0x37, - 0x3e,0x2d,0x37,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Etc/GMT-11 - 0x0,0x0,0x0,0x96, + 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x93, + 0x37,0x33,0xac,0x0,0x1,0xff,0xff,0xc6,0x54,0x0,0x0,0xff,0xff,0xc7,0xc0,0x0, + 0x4,0x4c,0x4d,0x54,0x0,0x41,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, + 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0x93,0x37,0x33,0xac,0x0,0x1,0xff,0xff,0xc6,0x54,0x0, + 0x0,0xff,0xff,0xc7,0xc0,0x0,0x4,0x4c,0x4d,0x54,0x0,0x41,0x53,0x54,0x0,0x0, + 0x0,0x0,0x0,0xa,0x41,0x53,0x54,0x34,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Metlakatla + 0x0,0x0,0x5,0x8a, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x80,0x0,0x0,0x0,0x7f, - 0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x9a,0xb0,0x0,0x0,0x2b,0x31,0x31,0x0,0x0, - 0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0xf8,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x0,0x0, - 0x0,0x9a,0xb0,0x0,0x0,0x2b,0x31,0x31,0x0,0x0,0x0,0xa,0x3c,0x2b,0x31,0x31, - 0x3e,0x2d,0x31,0x31,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Etc/GMT-8 - 0x0,0x0,0x0,0x95, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x4f,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x1e,0x80,0x0,0x0,0x0,0xcb, + 0x89,0x1a,0xa0,0xd2,0x23,0xf4,0x70,0xd2,0x61,0x26,0x10,0xfe,0xb8,0x47,0x20,0xff, + 0xa8,0x2a,0x10,0x0,0x98,0x29,0x20,0x1,0x88,0xc,0x10,0x2,0x78,0xb,0x20,0x3, + 0x71,0x28,0x90,0x4,0x61,0x27,0xa0,0x5,0x51,0xa,0x90,0x6,0x41,0x9,0xa0,0x7, + 0x30,0xec,0x90,0x7,0x8d,0x43,0xa0,0x9,0x10,0xce,0x90,0x9,0xad,0xbf,0x20,0xa, + 0xf0,0xb0,0x90,0xb,0xe0,0xaf,0xa0,0xc,0xd9,0xcd,0x10,0xd,0xc0,0x91,0xa0,0xe, + 0xb9,0xaf,0x10,0xf,0xa9,0xae,0x20,0x10,0x99,0x91,0x10,0x11,0x89,0x90,0x20,0x12, + 0x79,0x73,0x10,0x13,0x69,0x72,0x20,0x14,0x59,0x55,0x10,0x15,0x49,0x54,0x20,0x16, + 0x39,0x37,0x10,0x17,0x29,0x36,0x20,0x18,0x22,0x53,0x90,0x19,0x9,0x18,0x20,0x1a, + 0x2,0x35,0x90,0x56,0x35,0xe2,0xa0,0x56,0xe5,0x48,0x30,0x58,0x1e,0xff,0x20,0x58, + 0xc5,0x2a,0x30,0x59,0xfe,0xe1,0x20,0x5a,0xa5,0xc,0x30,0x5b,0xde,0xc3,0x20,0x5c, + 0x84,0xee,0x30,0x5d,0xbe,0xa5,0x20,0x5e,0x64,0xd0,0x30,0x5f,0x9e,0x87,0x20,0x60, + 0x4d,0xec,0xb0,0x61,0x87,0xa3,0xa0,0x62,0x2d,0xce,0xb0,0x63,0x67,0x85,0xa0,0x64, + 0xd,0xb0,0xb0,0x65,0x47,0x67,0xa0,0x65,0xed,0x92,0xb0,0x67,0x27,0x49,0xa0,0x67, + 0xcd,0x74,0xb0,0x69,0x7,0x2b,0xa0,0x69,0xad,0x56,0xb0,0x6a,0xe7,0xd,0xa0,0x6b, + 0x96,0x73,0x30,0x6c,0xd0,0x2a,0x20,0x6d,0x76,0x55,0x30,0x6e,0xb0,0xc,0x20,0x6f, + 0x56,0x37,0x30,0x70,0x8f,0xee,0x20,0x71,0x36,0x19,0x30,0x72,0x6f,0xd0,0x20,0x73, + 0x15,0xfb,0x30,0x74,0x4f,0xb2,0x20,0x74,0xff,0x17,0xb0,0x76,0x38,0xce,0xa0,0x76, + 0xde,0xf9,0xb0,0x78,0x18,0xb0,0xa0,0x78,0xbe,0xdb,0xb0,0x79,0xf8,0x92,0xa0,0x7a, + 0x9e,0xbd,0xb0,0x7b,0xd8,0x74,0xa0,0x7c,0x7e,0x9f,0xb0,0x7d,0xb8,0x56,0xa0,0x7e, + 0x5e,0x81,0xb0,0x7f,0x98,0x38,0xa0,0x1,0x2,0x3,0x1,0x4,0x1,0x4,0x1,0x4, + 0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4, + 0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0xff,0xff,0x84,0xa6,0x0,0x0,0xff,0xff,0x8f,0x80, + 0x0,0x4,0xff,0xff,0x9d,0x90,0x1,0x8,0xff,0xff,0x9d,0x90,0x1,0xc,0xff,0xff, + 0x9d,0x90,0x1,0x10,0xff,0xff,0x81,0x70,0x0,0x14,0xff,0xff,0x8f,0x80,0x1,0x19, + 0x4c,0x4d,0x54,0x0,0x50,0x53,0x54,0x0,0x50,0x57,0x54,0x0,0x50,0x50,0x54,0x0, + 0x50,0x44,0x54,0x0,0x41,0x4b,0x53,0x54,0x0,0x41,0x4b,0x44,0x54,0x0,0x0,0x0, + 0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x54,0x5a,0x69,0x66, + 0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x51, + 0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x1e,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0x3f,0xc2,0xfd,0xd1,0xff,0xff,0xff,0xff,0x7d,0x87,0x30,0x1a, + 0xff,0xff,0xff,0xff,0xcb,0x89,0x1a,0xa0,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70, + 0xff,0xff,0xff,0xff,0xd2,0x61,0x26,0x10,0xff,0xff,0xff,0xff,0xfe,0xb8,0x47,0x20, + 0xff,0xff,0xff,0xff,0xff,0xa8,0x2a,0x10,0x0,0x0,0x0,0x0,0x0,0x98,0x29,0x20, + 0x0,0x0,0x0,0x0,0x1,0x88,0xc,0x10,0x0,0x0,0x0,0x0,0x2,0x78,0xb,0x20, + 0x0,0x0,0x0,0x0,0x3,0x71,0x28,0x90,0x0,0x0,0x0,0x0,0x4,0x61,0x27,0xa0, + 0x0,0x0,0x0,0x0,0x5,0x51,0xa,0x90,0x0,0x0,0x0,0x0,0x6,0x41,0x9,0xa0, + 0x0,0x0,0x0,0x0,0x7,0x30,0xec,0x90,0x0,0x0,0x0,0x0,0x7,0x8d,0x43,0xa0, + 0x0,0x0,0x0,0x0,0x9,0x10,0xce,0x90,0x0,0x0,0x0,0x0,0x9,0xad,0xbf,0x20, + 0x0,0x0,0x0,0x0,0xa,0xf0,0xb0,0x90,0x0,0x0,0x0,0x0,0xb,0xe0,0xaf,0xa0, + 0x0,0x0,0x0,0x0,0xc,0xd9,0xcd,0x10,0x0,0x0,0x0,0x0,0xd,0xc0,0x91,0xa0, + 0x0,0x0,0x0,0x0,0xe,0xb9,0xaf,0x10,0x0,0x0,0x0,0x0,0xf,0xa9,0xae,0x20, + 0x0,0x0,0x0,0x0,0x10,0x99,0x91,0x10,0x0,0x0,0x0,0x0,0x11,0x89,0x90,0x20, + 0x0,0x0,0x0,0x0,0x12,0x79,0x73,0x10,0x0,0x0,0x0,0x0,0x13,0x69,0x72,0x20, + 0x0,0x0,0x0,0x0,0x14,0x59,0x55,0x10,0x0,0x0,0x0,0x0,0x15,0x49,0x54,0x20, + 0x0,0x0,0x0,0x0,0x16,0x39,0x37,0x10,0x0,0x0,0x0,0x0,0x17,0x29,0x36,0x20, + 0x0,0x0,0x0,0x0,0x18,0x22,0x53,0x90,0x0,0x0,0x0,0x0,0x19,0x9,0x18,0x20, + 0x0,0x0,0x0,0x0,0x1a,0x2,0x35,0x90,0x0,0x0,0x0,0x0,0x56,0x35,0xe2,0xa0, + 0x0,0x0,0x0,0x0,0x56,0xe5,0x48,0x30,0x0,0x0,0x0,0x0,0x58,0x1e,0xff,0x20, + 0x0,0x0,0x0,0x0,0x58,0xc5,0x2a,0x30,0x0,0x0,0x0,0x0,0x59,0xfe,0xe1,0x20, + 0x0,0x0,0x0,0x0,0x5a,0xa5,0xc,0x30,0x0,0x0,0x0,0x0,0x5b,0xde,0xc3,0x20, + 0x0,0x0,0x0,0x0,0x5c,0x84,0xee,0x30,0x0,0x0,0x0,0x0,0x5d,0xbe,0xa5,0x20, + 0x0,0x0,0x0,0x0,0x5e,0x64,0xd0,0x30,0x0,0x0,0x0,0x0,0x5f,0x9e,0x87,0x20, + 0x0,0x0,0x0,0x0,0x60,0x4d,0xec,0xb0,0x0,0x0,0x0,0x0,0x61,0x87,0xa3,0xa0, + 0x0,0x0,0x0,0x0,0x62,0x2d,0xce,0xb0,0x0,0x0,0x0,0x0,0x63,0x67,0x85,0xa0, + 0x0,0x0,0x0,0x0,0x64,0xd,0xb0,0xb0,0x0,0x0,0x0,0x0,0x65,0x47,0x67,0xa0, + 0x0,0x0,0x0,0x0,0x65,0xed,0x92,0xb0,0x0,0x0,0x0,0x0,0x67,0x27,0x49,0xa0, + 0x0,0x0,0x0,0x0,0x67,0xcd,0x74,0xb0,0x0,0x0,0x0,0x0,0x69,0x7,0x2b,0xa0, + 0x0,0x0,0x0,0x0,0x69,0xad,0x56,0xb0,0x0,0x0,0x0,0x0,0x6a,0xe7,0xd,0xa0, + 0x0,0x0,0x0,0x0,0x6b,0x96,0x73,0x30,0x0,0x0,0x0,0x0,0x6c,0xd0,0x2a,0x20, + 0x0,0x0,0x0,0x0,0x6d,0x76,0x55,0x30,0x0,0x0,0x0,0x0,0x6e,0xb0,0xc,0x20, + 0x0,0x0,0x0,0x0,0x6f,0x56,0x37,0x30,0x0,0x0,0x0,0x0,0x70,0x8f,0xee,0x20, + 0x0,0x0,0x0,0x0,0x71,0x36,0x19,0x30,0x0,0x0,0x0,0x0,0x72,0x6f,0xd0,0x20, + 0x0,0x0,0x0,0x0,0x73,0x15,0xfb,0x30,0x0,0x0,0x0,0x0,0x74,0x4f,0xb2,0x20, + 0x0,0x0,0x0,0x0,0x74,0xff,0x17,0xb0,0x0,0x0,0x0,0x0,0x76,0x38,0xce,0xa0, + 0x0,0x0,0x0,0x0,0x76,0xde,0xf9,0xb0,0x0,0x0,0x0,0x0,0x78,0x18,0xb0,0xa0, + 0x0,0x0,0x0,0x0,0x78,0xbe,0xdb,0xb0,0x0,0x0,0x0,0x0,0x79,0xf8,0x92,0xa0, + 0x0,0x0,0x0,0x0,0x7a,0x9e,0xbd,0xb0,0x0,0x0,0x0,0x0,0x7b,0xd8,0x74,0xa0, + 0x0,0x0,0x0,0x0,0x7c,0x7e,0x9f,0xb0,0x0,0x0,0x0,0x0,0x7d,0xb8,0x56,0xa0, + 0x0,0x0,0x0,0x0,0x7e,0x5e,0x81,0xb0,0x0,0x0,0x0,0x0,0x7f,0x98,0x38,0xa0, + 0x0,0x1,0x2,0x3,0x4,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2, + 0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2, + 0x5,0x2,0x5,0x2,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x0,0x0,0xd6,0x26,0x0,0x0,0xff,0xff,0x84,0xa6,0x0,0x0,0xff,0xff,0x8f, + 0x80,0x0,0x4,0xff,0xff,0x9d,0x90,0x1,0x8,0xff,0xff,0x9d,0x90,0x1,0xc,0xff, + 0xff,0x9d,0x90,0x1,0x10,0xff,0xff,0x81,0x70,0x0,0x14,0xff,0xff,0x8f,0x80,0x1, + 0x19,0x4c,0x4d,0x54,0x0,0x50,0x53,0x54,0x0,0x50,0x57,0x54,0x0,0x50,0x50,0x54, + 0x0,0x50,0x44,0x54,0x0,0x41,0x4b,0x53,0x54,0x0,0x41,0x4b,0x44,0x54,0x0,0x0, + 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa, + 0x41,0x4b,0x53,0x54,0x39,0x41,0x4b,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30, + 0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Bogota + 0x0,0x0,0x1,0xf, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x80,0x0,0x0,0x0,0x7f, - 0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x70,0x80,0x0,0x0,0x2b,0x30,0x38,0x0,0x0, - 0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0xf8,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x0,0x0, - 0x0,0x70,0x80,0x0,0x0,0x2b,0x30,0x38,0x0,0x0,0x0,0xa,0x3c,0x2b,0x30,0x38, - 0x3e,0x2d,0x38,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Etc/GMT+10 - 0x0,0x0,0x0,0x95, + 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x5,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x10,0x80,0x0,0x0,0x0,0x98, + 0x58,0x55,0x70,0x2a,0x3,0x73,0x50,0x2b,0xbe,0x5d,0x40,0x7f,0xff,0xff,0xff,0x1, + 0x3,0x2,0x3,0x3,0xff,0xff,0xba,0x90,0x0,0x0,0xff,0xff,0xba,0x90,0x0,0x4, + 0xff,0xff,0xc7,0xc0,0x1,0x8,0xff,0xff,0xb9,0xb0,0x0,0xc,0x4c,0x4d,0x54,0x0, + 0x42,0x4d,0x54,0x0,0x2d,0x30,0x34,0x0,0x2d,0x30,0x35,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x10, + 0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x5e,0x9c,0x34,0xf0, + 0xff,0xff,0xff,0xff,0x98,0x58,0x55,0x70,0x0,0x0,0x0,0x0,0x2a,0x3,0x73,0x50, + 0x0,0x0,0x0,0x0,0x2b,0xbe,0x5d,0x40,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff, + 0x0,0x1,0x3,0x2,0x3,0x3,0xff,0xff,0xba,0x90,0x0,0x0,0xff,0xff,0xba,0x90, + 0x0,0x4,0xff,0xff,0xc7,0xc0,0x1,0x8,0xff,0xff,0xb9,0xb0,0x0,0xc,0x4c,0x4d, + 0x54,0x0,0x42,0x4d,0x54,0x0,0x2d,0x30,0x34,0x0,0x2d,0x30,0x35,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2d,0x30,0x35,0x3e,0x35,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Havana + 0x0,0x0,0x9,0x85, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x80,0x0,0x0,0x0,0x7f, - 0xff,0xff,0xff,0x0,0x0,0xff,0xff,0x73,0x60,0x0,0x0,0x2d,0x31,0x30,0x0,0x0, - 0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0xf8,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x0,0xff, - 0xff,0x73,0x60,0x0,0x0,0x2d,0x31,0x30,0x0,0x0,0x0,0xa,0x3c,0x2d,0x31,0x30, - 0x3e,0x31,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Etc/GMT-12 - 0x0,0x0,0x0,0x96, + 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x9c,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x80,0x0,0x0,0x0,0xac, + 0x62,0xc2,0x80,0xb1,0xd3,0x94,0x50,0xb2,0x74,0x5d,0x40,0xc8,0x5b,0x66,0xd0,0xc8, + 0xd3,0x51,0x40,0xca,0x3b,0x48,0xd0,0xca,0xbc,0x6d,0xc0,0xcc,0x24,0x65,0x50,0xcc, + 0x9c,0x4f,0xc0,0xd1,0xc4,0xb,0x50,0xd2,0x3b,0xf5,0xc0,0xd3,0xa3,0xed,0x50,0xd4, + 0x1b,0xd7,0xc0,0xf7,0x60,0x5,0xd0,0xf7,0xff,0x7d,0x40,0xf9,0x3d,0x44,0xd0,0xf9, + 0xe3,0x53,0xc0,0xfa,0xdb,0x3b,0xd0,0xfb,0xa7,0x86,0x40,0xfc,0xc5,0xa9,0xd0,0xfd, + 0x87,0x68,0x40,0xfe,0xb8,0x0,0xd0,0xff,0xa7,0xe3,0xc0,0x0,0x97,0xe2,0xd0,0x1, + 0x87,0xc5,0xc0,0x2,0x77,0xc4,0xd0,0x3,0x70,0xe2,0x40,0x4,0x60,0xe1,0x50,0x5, + 0x35,0x14,0xc0,0x6,0x40,0xc3,0x50,0x7,0x16,0x48,0x40,0x8,0x20,0xa5,0x50,0x8, + 0xf7,0x7b,0xc0,0xa,0x0,0x87,0x50,0xa,0xf0,0x6a,0x40,0xb,0xe0,0x69,0x50,0xc, + 0xd9,0x86,0xc0,0xd,0xc0,0x4b,0x50,0xe,0xb9,0x68,0xc0,0xf,0xb2,0xa2,0x50,0x10, + 0x7d,0x9b,0x40,0x11,0x51,0xea,0xd0,0x12,0x66,0xb7,0xc0,0x13,0x31,0xcc,0xd0,0x14, + 0x46,0x99,0xc0,0x15,0x5b,0x82,0xd0,0x16,0x26,0x7b,0xc0,0x17,0x3b,0x64,0xd0,0x18, + 0x6,0x5d,0xc0,0x19,0x1b,0x46,0xd0,0x19,0xe6,0x3f,0xc0,0x1a,0xfb,0x28,0xd0,0x1b, + 0xcf,0x5c,0x40,0x1c,0xdb,0xa,0xd0,0x1d,0xaf,0x3e,0x40,0x1e,0x7a,0x53,0x50,0x1f, + 0x8f,0x20,0x40,0x20,0x5a,0x35,0x50,0x21,0x6f,0x2,0x40,0x22,0x43,0x51,0xd0,0x23, + 0x4e,0xe4,0x40,0x24,0x23,0x33,0xd0,0x25,0x2e,0xc6,0x40,0x26,0x15,0x8a,0xd0,0x27, + 0x17,0xe2,0xc0,0x27,0xfe,0xa7,0x50,0x28,0xf7,0xd2,0xd0,0x29,0xde,0x89,0x50,0x2a, + 0xd7,0xb4,0xd0,0x2b,0xbe,0x6b,0x50,0x2c,0xb7,0x96,0xd0,0x2d,0x9e,0x4d,0x50,0x2e, + 0x97,0x78,0xd0,0x2f,0x7e,0x2f,0x50,0x30,0x77,0x5a,0xd0,0x31,0x67,0x4b,0xd0,0x32, + 0x57,0x3c,0xd0,0x33,0x47,0x2d,0xd0,0x34,0x40,0x59,0x50,0x35,0x1d,0xd5,0x50,0x36, + 0x32,0xb0,0x50,0x36,0xfd,0xb7,0x50,0x38,0x1b,0xcc,0xd0,0x38,0xe6,0xd3,0xd0,0x39, + 0xfb,0xae,0xd0,0x3a,0xc6,0xb5,0xd0,0x3b,0xdb,0x90,0xd0,0x3c,0xaf,0xd2,0x50,0x3d, + 0xbb,0x72,0xd0,0x3e,0x8f,0xb4,0x50,0x3f,0x9b,0x54,0xd0,0x40,0x66,0x5b,0xd0,0x45, + 0x44,0x35,0x50,0x45,0xf3,0x8c,0xd0,0x47,0x24,0x17,0x50,0x47,0xdc,0xa9,0x50,0x49, + 0x3,0xf9,0x50,0x49,0xb3,0x50,0xd0,0x4a,0xe3,0xdb,0x50,0x4b,0x9c,0x6d,0x50,0x4c, + 0xcc,0xf7,0xd0,0x4d,0x85,0x89,0xd0,0x4e,0xbf,0x4e,0xd0,0x4f,0x77,0xe0,0xd0,0x50, + 0x95,0xf6,0x50,0x51,0x3c,0x13,0x50,0x52,0x75,0xd8,0x50,0x53,0x1b,0xf5,0x50,0x54, + 0x55,0xba,0x50,0x54,0xfb,0xd7,0x50,0x56,0x35,0x9c,0x50,0x56,0xe4,0xf3,0xd0,0x58, + 0x1e,0xb8,0xd0,0x58,0xc4,0xd5,0xd0,0x59,0xfe,0x9a,0xd0,0x5a,0xa4,0xb7,0xd0,0x5b, + 0xde,0x7c,0xd0,0x5c,0x84,0x99,0xd0,0x5d,0xbe,0x5e,0xd0,0x5e,0x64,0x7b,0xd0,0x5f, + 0x9e,0x40,0xd0,0x60,0x4d,0x98,0x50,0x61,0x87,0x5d,0x50,0x62,0x2d,0x7a,0x50,0x63, + 0x67,0x3f,0x50,0x64,0xd,0x5c,0x50,0x65,0x47,0x21,0x50,0x65,0xed,0x3e,0x50,0x67, + 0x27,0x3,0x50,0x67,0xcd,0x20,0x50,0x69,0x6,0xe5,0x50,0x69,0xad,0x2,0x50,0x6a, + 0xe6,0xc7,0x50,0x6b,0x96,0x1e,0xd0,0x6c,0xcf,0xe3,0xd0,0x6d,0x76,0x0,0xd0,0x6e, + 0xaf,0xc5,0xd0,0x6f,0x55,0xe2,0xd0,0x70,0x8f,0xa7,0xd0,0x71,0x35,0xc4,0xd0,0x72, + 0x6f,0x89,0xd0,0x73,0x15,0xa6,0xd0,0x74,0x4f,0x6b,0xd0,0x74,0xfe,0xc3,0x50,0x76, + 0x38,0x88,0x50,0x76,0xde,0xa5,0x50,0x78,0x18,0x6a,0x50,0x78,0xbe,0x87,0x50,0x79, + 0xf8,0x4c,0x50,0x7a,0x9e,0x69,0x50,0x7b,0xd8,0x2e,0x50,0x7c,0x7e,0x4b,0x50,0x7d, + 0xb8,0x10,0x50,0x7e,0x5e,0x2d,0x50,0x7f,0x97,0xf2,0x50,0x1,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x4,0x2, + 0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0xff,0xff,0xb2,0xc8,0x0,0x0,0xff,0xff,0xb2, + 0xc0,0x0,0x4,0xff,0xff,0xc7,0xc0,0x1,0x8,0xff,0xff,0xb9,0xb0,0x0,0xc,0xff, + 0xff,0xb9,0xb0,0x0,0xc,0xff,0xff,0xc7,0xc0,0x1,0x8,0x4c,0x4d,0x54,0x0,0x48, + 0x4d,0x54,0x0,0x43,0x44,0x54,0x0,0x43,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x1, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9d,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x10,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x69, + 0x87,0x28,0xb8,0xff,0xff,0xff,0xff,0xac,0x62,0xc2,0x80,0xff,0xff,0xff,0xff,0xb1, + 0xd3,0x94,0x50,0xff,0xff,0xff,0xff,0xb2,0x74,0x5d,0x40,0xff,0xff,0xff,0xff,0xc8, + 0x5b,0x66,0xd0,0xff,0xff,0xff,0xff,0xc8,0xd3,0x51,0x40,0xff,0xff,0xff,0xff,0xca, + 0x3b,0x48,0xd0,0xff,0xff,0xff,0xff,0xca,0xbc,0x6d,0xc0,0xff,0xff,0xff,0xff,0xcc, + 0x24,0x65,0x50,0xff,0xff,0xff,0xff,0xcc,0x9c,0x4f,0xc0,0xff,0xff,0xff,0xff,0xd1, + 0xc4,0xb,0x50,0xff,0xff,0xff,0xff,0xd2,0x3b,0xf5,0xc0,0xff,0xff,0xff,0xff,0xd3, + 0xa3,0xed,0x50,0xff,0xff,0xff,0xff,0xd4,0x1b,0xd7,0xc0,0xff,0xff,0xff,0xff,0xf7, + 0x60,0x5,0xd0,0xff,0xff,0xff,0xff,0xf7,0xff,0x7d,0x40,0xff,0xff,0xff,0xff,0xf9, + 0x3d,0x44,0xd0,0xff,0xff,0xff,0xff,0xf9,0xe3,0x53,0xc0,0xff,0xff,0xff,0xff,0xfa, + 0xdb,0x3b,0xd0,0xff,0xff,0xff,0xff,0xfb,0xa7,0x86,0x40,0xff,0xff,0xff,0xff,0xfc, + 0xc5,0xa9,0xd0,0xff,0xff,0xff,0xff,0xfd,0x87,0x68,0x40,0xff,0xff,0xff,0xff,0xfe, + 0xb8,0x0,0xd0,0xff,0xff,0xff,0xff,0xff,0xa7,0xe3,0xc0,0x0,0x0,0x0,0x0,0x0, + 0x97,0xe2,0xd0,0x0,0x0,0x0,0x0,0x1,0x87,0xc5,0xc0,0x0,0x0,0x0,0x0,0x2, + 0x77,0xc4,0xd0,0x0,0x0,0x0,0x0,0x3,0x70,0xe2,0x40,0x0,0x0,0x0,0x0,0x4, + 0x60,0xe1,0x50,0x0,0x0,0x0,0x0,0x5,0x35,0x14,0xc0,0x0,0x0,0x0,0x0,0x6, + 0x40,0xc3,0x50,0x0,0x0,0x0,0x0,0x7,0x16,0x48,0x40,0x0,0x0,0x0,0x0,0x8, + 0x20,0xa5,0x50,0x0,0x0,0x0,0x0,0x8,0xf7,0x7b,0xc0,0x0,0x0,0x0,0x0,0xa, + 0x0,0x87,0x50,0x0,0x0,0x0,0x0,0xa,0xf0,0x6a,0x40,0x0,0x0,0x0,0x0,0xb, + 0xe0,0x69,0x50,0x0,0x0,0x0,0x0,0xc,0xd9,0x86,0xc0,0x0,0x0,0x0,0x0,0xd, + 0xc0,0x4b,0x50,0x0,0x0,0x0,0x0,0xe,0xb9,0x68,0xc0,0x0,0x0,0x0,0x0,0xf, + 0xb2,0xa2,0x50,0x0,0x0,0x0,0x0,0x10,0x7d,0x9b,0x40,0x0,0x0,0x0,0x0,0x11, + 0x51,0xea,0xd0,0x0,0x0,0x0,0x0,0x12,0x66,0xb7,0xc0,0x0,0x0,0x0,0x0,0x13, + 0x31,0xcc,0xd0,0x0,0x0,0x0,0x0,0x14,0x46,0x99,0xc0,0x0,0x0,0x0,0x0,0x15, + 0x5b,0x82,0xd0,0x0,0x0,0x0,0x0,0x16,0x26,0x7b,0xc0,0x0,0x0,0x0,0x0,0x17, + 0x3b,0x64,0xd0,0x0,0x0,0x0,0x0,0x18,0x6,0x5d,0xc0,0x0,0x0,0x0,0x0,0x19, + 0x1b,0x46,0xd0,0x0,0x0,0x0,0x0,0x19,0xe6,0x3f,0xc0,0x0,0x0,0x0,0x0,0x1a, + 0xfb,0x28,0xd0,0x0,0x0,0x0,0x0,0x1b,0xcf,0x5c,0x40,0x0,0x0,0x0,0x0,0x1c, + 0xdb,0xa,0xd0,0x0,0x0,0x0,0x0,0x1d,0xaf,0x3e,0x40,0x0,0x0,0x0,0x0,0x1e, + 0x7a,0x53,0x50,0x0,0x0,0x0,0x0,0x1f,0x8f,0x20,0x40,0x0,0x0,0x0,0x0,0x20, + 0x5a,0x35,0x50,0x0,0x0,0x0,0x0,0x21,0x6f,0x2,0x40,0x0,0x0,0x0,0x0,0x22, + 0x43,0x51,0xd0,0x0,0x0,0x0,0x0,0x23,0x4e,0xe4,0x40,0x0,0x0,0x0,0x0,0x24, + 0x23,0x33,0xd0,0x0,0x0,0x0,0x0,0x25,0x2e,0xc6,0x40,0x0,0x0,0x0,0x0,0x26, + 0x15,0x8a,0xd0,0x0,0x0,0x0,0x0,0x27,0x17,0xe2,0xc0,0x0,0x0,0x0,0x0,0x27, + 0xfe,0xa7,0x50,0x0,0x0,0x0,0x0,0x28,0xf7,0xd2,0xd0,0x0,0x0,0x0,0x0,0x29, + 0xde,0x89,0x50,0x0,0x0,0x0,0x0,0x2a,0xd7,0xb4,0xd0,0x0,0x0,0x0,0x0,0x2b, + 0xbe,0x6b,0x50,0x0,0x0,0x0,0x0,0x2c,0xb7,0x96,0xd0,0x0,0x0,0x0,0x0,0x2d, + 0x9e,0x4d,0x50,0x0,0x0,0x0,0x0,0x2e,0x97,0x78,0xd0,0x0,0x0,0x0,0x0,0x2f, + 0x7e,0x2f,0x50,0x0,0x0,0x0,0x0,0x30,0x77,0x5a,0xd0,0x0,0x0,0x0,0x0,0x31, + 0x67,0x4b,0xd0,0x0,0x0,0x0,0x0,0x32,0x57,0x3c,0xd0,0x0,0x0,0x0,0x0,0x33, + 0x47,0x2d,0xd0,0x0,0x0,0x0,0x0,0x34,0x40,0x59,0x50,0x0,0x0,0x0,0x0,0x35, + 0x1d,0xd5,0x50,0x0,0x0,0x0,0x0,0x36,0x32,0xb0,0x50,0x0,0x0,0x0,0x0,0x36, + 0xfd,0xb7,0x50,0x0,0x0,0x0,0x0,0x38,0x1b,0xcc,0xd0,0x0,0x0,0x0,0x0,0x38, + 0xe6,0xd3,0xd0,0x0,0x0,0x0,0x0,0x39,0xfb,0xae,0xd0,0x0,0x0,0x0,0x0,0x3a, + 0xc6,0xb5,0xd0,0x0,0x0,0x0,0x0,0x3b,0xdb,0x90,0xd0,0x0,0x0,0x0,0x0,0x3c, + 0xaf,0xd2,0x50,0x0,0x0,0x0,0x0,0x3d,0xbb,0x72,0xd0,0x0,0x0,0x0,0x0,0x3e, + 0x8f,0xb4,0x50,0x0,0x0,0x0,0x0,0x3f,0x9b,0x54,0xd0,0x0,0x0,0x0,0x0,0x40, + 0x66,0x5b,0xd0,0x0,0x0,0x0,0x0,0x45,0x44,0x35,0x50,0x0,0x0,0x0,0x0,0x45, + 0xf3,0x8c,0xd0,0x0,0x0,0x0,0x0,0x47,0x24,0x17,0x50,0x0,0x0,0x0,0x0,0x47, + 0xdc,0xa9,0x50,0x0,0x0,0x0,0x0,0x49,0x3,0xf9,0x50,0x0,0x0,0x0,0x0,0x49, + 0xb3,0x50,0xd0,0x0,0x0,0x0,0x0,0x4a,0xe3,0xdb,0x50,0x0,0x0,0x0,0x0,0x4b, + 0x9c,0x6d,0x50,0x0,0x0,0x0,0x0,0x4c,0xcc,0xf7,0xd0,0x0,0x0,0x0,0x0,0x4d, + 0x85,0x89,0xd0,0x0,0x0,0x0,0x0,0x4e,0xbf,0x4e,0xd0,0x0,0x0,0x0,0x0,0x4f, + 0x77,0xe0,0xd0,0x0,0x0,0x0,0x0,0x50,0x95,0xf6,0x50,0x0,0x0,0x0,0x0,0x51, + 0x3c,0x13,0x50,0x0,0x0,0x0,0x0,0x52,0x75,0xd8,0x50,0x0,0x0,0x0,0x0,0x53, + 0x1b,0xf5,0x50,0x0,0x0,0x0,0x0,0x54,0x55,0xba,0x50,0x0,0x0,0x0,0x0,0x54, + 0xfb,0xd7,0x50,0x0,0x0,0x0,0x0,0x56,0x35,0x9c,0x50,0x0,0x0,0x0,0x0,0x56, + 0xe4,0xf3,0xd0,0x0,0x0,0x0,0x0,0x58,0x1e,0xb8,0xd0,0x0,0x0,0x0,0x0,0x58, + 0xc4,0xd5,0xd0,0x0,0x0,0x0,0x0,0x59,0xfe,0x9a,0xd0,0x0,0x0,0x0,0x0,0x5a, + 0xa4,0xb7,0xd0,0x0,0x0,0x0,0x0,0x5b,0xde,0x7c,0xd0,0x0,0x0,0x0,0x0,0x5c, + 0x84,0x99,0xd0,0x0,0x0,0x0,0x0,0x5d,0xbe,0x5e,0xd0,0x0,0x0,0x0,0x0,0x5e, + 0x64,0x7b,0xd0,0x0,0x0,0x0,0x0,0x5f,0x9e,0x40,0xd0,0x0,0x0,0x0,0x0,0x60, + 0x4d,0x98,0x50,0x0,0x0,0x0,0x0,0x61,0x87,0x5d,0x50,0x0,0x0,0x0,0x0,0x62, + 0x2d,0x7a,0x50,0x0,0x0,0x0,0x0,0x63,0x67,0x3f,0x50,0x0,0x0,0x0,0x0,0x64, + 0xd,0x5c,0x50,0x0,0x0,0x0,0x0,0x65,0x47,0x21,0x50,0x0,0x0,0x0,0x0,0x65, + 0xed,0x3e,0x50,0x0,0x0,0x0,0x0,0x67,0x27,0x3,0x50,0x0,0x0,0x0,0x0,0x67, + 0xcd,0x20,0x50,0x0,0x0,0x0,0x0,0x69,0x6,0xe5,0x50,0x0,0x0,0x0,0x0,0x69, + 0xad,0x2,0x50,0x0,0x0,0x0,0x0,0x6a,0xe6,0xc7,0x50,0x0,0x0,0x0,0x0,0x6b, + 0x96,0x1e,0xd0,0x0,0x0,0x0,0x0,0x6c,0xcf,0xe3,0xd0,0x0,0x0,0x0,0x0,0x6d, + 0x76,0x0,0xd0,0x0,0x0,0x0,0x0,0x6e,0xaf,0xc5,0xd0,0x0,0x0,0x0,0x0,0x6f, + 0x55,0xe2,0xd0,0x0,0x0,0x0,0x0,0x70,0x8f,0xa7,0xd0,0x0,0x0,0x0,0x0,0x71, + 0x35,0xc4,0xd0,0x0,0x0,0x0,0x0,0x72,0x6f,0x89,0xd0,0x0,0x0,0x0,0x0,0x73, + 0x15,0xa6,0xd0,0x0,0x0,0x0,0x0,0x74,0x4f,0x6b,0xd0,0x0,0x0,0x0,0x0,0x74, + 0xfe,0xc3,0x50,0x0,0x0,0x0,0x0,0x76,0x38,0x88,0x50,0x0,0x0,0x0,0x0,0x76, + 0xde,0xa5,0x50,0x0,0x0,0x0,0x0,0x78,0x18,0x6a,0x50,0x0,0x0,0x0,0x0,0x78, + 0xbe,0x87,0x50,0x0,0x0,0x0,0x0,0x79,0xf8,0x4c,0x50,0x0,0x0,0x0,0x0,0x7a, + 0x9e,0x69,0x50,0x0,0x0,0x0,0x0,0x7b,0xd8,0x2e,0x50,0x0,0x0,0x0,0x0,0x7c, + 0x7e,0x4b,0x50,0x0,0x0,0x0,0x0,0x7d,0xb8,0x10,0x50,0x0,0x0,0x0,0x0,0x7e, + 0x5e,0x2d,0x50,0x0,0x0,0x0,0x0,0x7f,0x97,0xf2,0x50,0x0,0x1,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x4, + 0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0xff,0xff,0xb2,0xc8,0x0,0x0,0xff,0xff, + 0xb2,0xc0,0x0,0x4,0xff,0xff,0xc7,0xc0,0x1,0x8,0xff,0xff,0xb9,0xb0,0x0,0xc, + 0xff,0xff,0xb9,0xb0,0x0,0xc,0xff,0xff,0xc7,0xc0,0x1,0x8,0x4c,0x4d,0x54,0x0, + 0x48,0x4d,0x54,0x0,0x43,0x44,0x54,0x0,0x43,0x53,0x54,0x0,0x0,0x0,0x0,0x0, + 0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x43,0x53,0x54,0x35,0x43,0x44,0x54, + 0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30,0x2f,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e, + 0x30,0x2f,0x31,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Managua + 0x0,0x0,0x1,0xcf, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x80,0x0,0x0,0x0,0x7f, - 0xff,0xff,0xff,0x0,0x0,0x0,0x0,0xa8,0xc0,0x0,0x0,0x2b,0x31,0x32,0x0,0x0, - 0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0xf8,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x0,0x0, - 0x0,0xa8,0xc0,0x0,0x0,0x2b,0x31,0x32,0x0,0x0,0x0,0xa,0x3c,0x2b,0x31,0x32, - 0x3e,0x2d,0x31,0x32,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Etc/GMT-9 - 0x0,0x0,0x0,0x95, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x80,0x0,0x0,0x0,0x7f, - 0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x7e,0x90,0x0,0x0,0x2b,0x30,0x39,0x0,0x0, - 0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0xf8,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x0,0x0, - 0x0,0x7e,0x90,0x0,0x0,0x2b,0x30,0x39,0x0,0x0,0x0,0xa,0x3c,0x2b,0x30,0x39, - 0x3e,0x2d,0x39,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Etc/GMT+11 - 0x0,0x0,0x0,0x95, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x80,0x0,0x0,0x0,0x7f, - 0xff,0xff,0xff,0x0,0x0,0xff,0xff,0x65,0x50,0x0,0x0,0x2d,0x31,0x31,0x0,0x0, - 0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0xf8,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x0,0xff, - 0xff,0x65,0x50,0x0,0x0,0x2d,0x31,0x31,0x0,0x0,0x0,0xa,0x3c,0x2d,0x31,0x31, - 0x3e,0x31,0x31,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Etc/GMT-13 - 0x0,0x0,0x0,0x96, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x80,0x0,0x0,0x0,0x7f, - 0xff,0xff,0xff,0x0,0x0,0x0,0x0,0xb6,0xd0,0x0,0x0,0x2b,0x31,0x33,0x0,0x0, - 0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0xf8,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x0,0x0, - 0x0,0xb6,0xd0,0x0,0x0,0x2b,0x31,0x33,0x0,0x0,0x0,0xa,0x3c,0x2b,0x31,0x33, - 0x3e,0x2d,0x31,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Etc/GMT+12 - 0x0,0x0,0x0,0x95, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x80,0x0,0x0,0x0,0x7f, - 0xff,0xff,0xff,0x0,0x0,0xff,0xff,0x57,0x40,0x0,0x0,0x2d,0x31,0x32,0x0,0x0, - 0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0xf8,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x0,0xff, - 0xff,0x57,0x40,0x0,0x0,0x2d,0x31,0x32,0x0,0x0,0x0,0xa,0x3c,0x2d,0x31,0x32, - 0x3e,0x31,0x32,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Etc/GMT-14 - 0x0,0x0,0x0,0x96, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x80,0x0,0x0,0x0,0x7f, - 0xff,0xff,0xff,0x0,0x0,0x0,0x0,0xc4,0xe0,0x0,0x0,0x2b,0x31,0x34,0x0,0x0, - 0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0xf8,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x0,0x0, - 0x0,0xc4,0xe0,0x0,0x0,0x2b,0x31,0x34,0x0,0x0,0x0,0xa,0x3c,0x2b,0x31,0x34, - 0x3e,0x2d,0x31,0x34,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Etc/GMT+0 - 0x0,0x0,0x0,0x7f, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, - 0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0, - 0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0, - 0x0,0x0,0x4,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0xa,0x47,0x4d,0x54,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Etc/GMT+1 - 0x0,0x0,0x0,0x94, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x80,0x0,0x0,0x0,0x7f, - 0xff,0xff,0xff,0x0,0x0,0xff,0xff,0xf1,0xf0,0x0,0x0,0x2d,0x30,0x31,0x0,0x0, - 0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0xf8,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x0,0xff, - 0xff,0xf1,0xf0,0x0,0x0,0x2d,0x30,0x31,0x0,0x0,0x0,0xa,0x3c,0x2d,0x30,0x31, - 0x3e,0x31,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Etc/GMT+2 - 0x0,0x0,0x0,0x94, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x80,0x0,0x0,0x0,0x7f, - 0xff,0xff,0xff,0x0,0x0,0xff,0xff,0xe3,0xe0,0x0,0x0,0x2d,0x30,0x32,0x0,0x0, - 0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0xf8,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x0,0xff, - 0xff,0xe3,0xe0,0x0,0x0,0x2d,0x30,0x32,0x0,0x0,0x0,0xa,0x3c,0x2d,0x30,0x32, - 0x3e,0x32,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Etc/GMT+3 - 0x0,0x0,0x0,0x94, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x80,0x0,0x0,0x0,0x7f, - 0xff,0xff,0xff,0x0,0x0,0xff,0xff,0xd5,0xd0,0x0,0x0,0x2d,0x30,0x33,0x0,0x0, - 0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0xf8,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x0,0xff, - 0xff,0xd5,0xd0,0x0,0x0,0x2d,0x30,0x33,0x0,0x0,0x0,0xa,0x3c,0x2d,0x30,0x33, - 0x3e,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Etc/GMT+4 - 0x0,0x0,0x0,0x94, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x80,0x0,0x0,0x0,0x7f, - 0xff,0xff,0xff,0x0,0x0,0xff,0xff,0xc7,0xc0,0x0,0x0,0x2d,0x30,0x34,0x0,0x0, - 0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0xf8,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x0,0xff, - 0xff,0xc7,0xc0,0x0,0x0,0x2d,0x30,0x34,0x0,0x0,0x0,0xa,0x3c,0x2d,0x30,0x34, - 0x3e,0x34,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Etc/GMT+5 - 0x0,0x0,0x0,0x94, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x80,0x0,0x0,0x0,0x7f, - 0xff,0xff,0xff,0x0,0x0,0xff,0xff,0xb9,0xb0,0x0,0x0,0x2d,0x30,0x35,0x0,0x0, - 0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0xf8,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x0,0xff, - 0xff,0xb9,0xb0,0x0,0x0,0x2d,0x30,0x35,0x0,0x0,0x0,0xa,0x3c,0x2d,0x30,0x35, - 0x3e,0x35,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Etc/Universal - 0x0,0x0,0x0,0x7f, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, - 0x0,0x55,0x54,0x43,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0, - 0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0, - 0x0,0x0,0x4,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x55,0x54,0x43,0x0,0x0,0x0,0xa,0x55,0x54,0x43,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Etc/GMT+6 - 0x0,0x0,0x0,0x94, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x80,0x0,0x0,0x0,0x7f, - 0xff,0xff,0xff,0x0,0x0,0xff,0xff,0xab,0xa0,0x0,0x0,0x2d,0x30,0x36,0x0,0x0, - 0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0xf8,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x0,0xff, - 0xff,0xab,0xa0,0x0,0x0,0x2d,0x30,0x36,0x0,0x0,0x0,0xa,0x3c,0x2d,0x30,0x36, - 0x3e,0x36,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Etc/GMT+7 - 0x0,0x0,0x0,0x94, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x80,0x0,0x0,0x0,0x7f, - 0xff,0xff,0xff,0x0,0x0,0xff,0xff,0x9d,0x90,0x0,0x0,0x2d,0x30,0x37,0x0,0x0, - 0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0xf8,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x0,0xff, - 0xff,0x9d,0x90,0x0,0x0,0x2d,0x30,0x37,0x0,0x0,0x0,0xa,0x3c,0x2d,0x30,0x37, - 0x3e,0x37,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Etc/GMT+8 - 0x0,0x0,0x0,0x94, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x80,0x0,0x0,0x0,0x7f, - 0xff,0xff,0xff,0x0,0x0,0xff,0xff,0x8f,0x80,0x0,0x0,0x2d,0x30,0x38,0x0,0x0, - 0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0xf8,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x0,0xff, - 0xff,0x8f,0x80,0x0,0x0,0x2d,0x30,0x38,0x0,0x0,0x0,0xa,0x3c,0x2d,0x30,0x38, - 0x3e,0x38,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Etc/GMT+9 - 0x0,0x0,0x0,0x94, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x80,0x0,0x0,0x0,0x7f, - 0xff,0xff,0xff,0x0,0x0,0xff,0xff,0x81,0x70,0x0,0x0,0x2d,0x30,0x39,0x0,0x0, - 0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0xf8,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x0,0xff, - 0xff,0x81,0x70,0x0,0x0,0x2d,0x30,0x39,0x0,0x0,0x0,0xa,0x3c,0x2d,0x30,0x39, - 0x3e,0x39,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Etc/GMT - 0x0,0x0,0x0,0x7f, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, - 0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0, - 0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0, - 0x0,0x0,0x4,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0xa,0x47,0x4d,0x54,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Etc/UTC - 0x0,0x0,0x0,0x7f, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, - 0x0,0x55,0x54,0x43,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0, - 0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0, - 0x0,0x0,0x4,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x55,0x54,0x43,0x0,0x0,0x0,0xa,0x55,0x54,0x43,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Indian/Comoro - 0x0,0x0,0x1,0x1b, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x13,0x80,0x0,0x0,0x0,0xb1, - 0xee,0xda,0xfc,0xb4,0xc2,0x9a,0xd0,0xc7,0x91,0x47,0xd8,0xed,0x2f,0xe1,0xd4,0x0, - 0x1,0x2,0x3,0x1,0x0,0x0,0x22,0x84,0x0,0x0,0x0,0x0,0x2a,0x30,0x0,0x4, - 0x0,0x0,0x23,0x28,0x0,0x8,0x0,0x0,0x26,0xac,0x0,0xd,0x0,0x0,0x2a,0x30, - 0x0,0x4,0x4c,0x4d,0x54,0x0,0x45,0x41,0x54,0x0,0x42,0x45,0x41,0x54,0x0,0x42, - 0x45,0x41,0x55,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x13,0xf8,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xb1,0xee,0xda,0xfc,0xff,0xff,0xff,0xff,0xb4, - 0xc2,0x9a,0xd0,0xff,0xff,0xff,0xff,0xc7,0x91,0x47,0xd8,0xff,0xff,0xff,0xff,0xed, - 0x2f,0xe1,0xd4,0x0,0x1,0x2,0x3,0x1,0x0,0x0,0x22,0x84,0x0,0x0,0x0,0x0, - 0x2a,0x30,0x0,0x4,0x0,0x0,0x23,0x28,0x0,0x8,0x0,0x0,0x26,0xac,0x0,0xd, - 0x0,0x0,0x2a,0x30,0x0,0x4,0x4c,0x4d,0x54,0x0,0x45,0x41,0x54,0x0,0x42,0x45, - 0x41,0x54,0x0,0x42,0x45,0x41,0x55,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0xa,0x45,0x41,0x54,0x2d,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Indian/Christmas - 0x0,0x0,0x0,0x95, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x0,0x0,0x62,0x70,0x0, - 0x0,0x43,0x58,0x54,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0, - 0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x73, - 0x16,0xa9,0xe4,0x0,0x1,0x0,0x0,0x63,0x1c,0x0,0x0,0x0,0x0,0x62,0x70,0x0, - 0x4,0x4c,0x4d,0x54,0x0,0x43,0x58,0x54,0x0,0x0,0x0,0x0,0x0,0xa,0x43,0x58, - 0x54,0x2d,0x37,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Indian/Antananarivo - 0x0,0x0,0x1,0x1b, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x13,0x80,0x0,0x0,0x0,0xb1, - 0xee,0xda,0xfc,0xb4,0xc2,0x9a,0xd0,0xc7,0x91,0x47,0xd8,0xed,0x2f,0xe1,0xd4,0x0, - 0x1,0x2,0x3,0x1,0x0,0x0,0x22,0x84,0x0,0x0,0x0,0x0,0x2a,0x30,0x0,0x4, - 0x0,0x0,0x23,0x28,0x0,0x8,0x0,0x0,0x26,0xac,0x0,0xd,0x0,0x0,0x2a,0x30, - 0x0,0x4,0x4c,0x4d,0x54,0x0,0x45,0x41,0x54,0x0,0x42,0x45,0x41,0x54,0x0,0x42, - 0x45,0x41,0x55,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x13,0xf8,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xb1,0xee,0xda,0xfc,0xff,0xff,0xff,0xff,0xb4, - 0xc2,0x9a,0xd0,0xff,0xff,0xff,0xff,0xc7,0x91,0x47,0xd8,0xff,0xff,0xff,0xff,0xed, - 0x2f,0xe1,0xd4,0x0,0x1,0x2,0x3,0x1,0x0,0x0,0x22,0x84,0x0,0x0,0x0,0x0, - 0x2a,0x30,0x0,0x4,0x0,0x0,0x23,0x28,0x0,0x8,0x0,0x0,0x26,0xac,0x0,0xd, - 0x0,0x0,0x2a,0x30,0x0,0x4,0x4c,0x4d,0x54,0x0,0x45,0x41,0x54,0x0,0x42,0x45, - 0x41,0x54,0x0,0x42,0x45,0x41,0x55,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0xa,0x45,0x41,0x54,0x2d,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Indian/Chagos - 0x0,0x0,0x0,0xc9, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x89, - 0x7e,0xf7,0x9c,0x30,0xe6,0xdd,0xb0,0x0,0x1,0x2,0x0,0x0,0x43,0xe4,0x0,0x0, - 0x0,0x0,0x46,0x50,0x0,0x4,0x0,0x0,0x54,0x60,0x0,0x4,0x4c,0x4d,0x54,0x0, - 0x49,0x4f,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0, - 0x0,0x3,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff, - 0xff,0xff,0x89,0x7e,0xf7,0x9c,0x0,0x0,0x0,0x0,0x30,0xe6,0xdd,0xb0,0x0,0x1, - 0x2,0x0,0x0,0x43,0xe4,0x0,0x0,0x0,0x0,0x46,0x50,0x0,0x4,0x0,0x0,0x54, - 0x60,0x0,0x4,0x4c,0x4d,0x54,0x0,0x49,0x4f,0x54,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xa,0x49,0x4f,0x54,0x2d,0x36,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Indian/Cocos - 0x0,0x0,0x0,0x98, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x0,0x0,0x5b,0x68,0x0, - 0x0,0x43,0x43,0x54,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0, - 0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x7c, - 0x55,0x26,0xa4,0x0,0x1,0x0,0x0,0x5a,0xdc,0x0,0x0,0x0,0x0,0x5b,0x68,0x0, - 0x4,0x4c,0x4d,0x54,0x0,0x43,0x43,0x54,0x0,0x0,0x0,0x0,0x0,0xa,0x43,0x43, - 0x54,0x2d,0x36,0x3a,0x33,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Indian/Mayotte - 0x0,0x0,0x1,0x1b, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x13,0x80,0x0,0x0,0x0,0xb1, - 0xee,0xda,0xfc,0xb4,0xc2,0x9a,0xd0,0xc7,0x91,0x47,0xd8,0xed,0x2f,0xe1,0xd4,0x0, - 0x1,0x2,0x3,0x1,0x0,0x0,0x22,0x84,0x0,0x0,0x0,0x0,0x2a,0x30,0x0,0x4, - 0x0,0x0,0x23,0x28,0x0,0x8,0x0,0x0,0x26,0xac,0x0,0xd,0x0,0x0,0x2a,0x30, - 0x0,0x4,0x4c,0x4d,0x54,0x0,0x45,0x41,0x54,0x0,0x42,0x45,0x41,0x54,0x0,0x42, - 0x45,0x41,0x55,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x13,0xf8,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xb1,0xee,0xda,0xfc,0xff,0xff,0xff,0xff,0xb4, - 0xc2,0x9a,0xd0,0xff,0xff,0xff,0xff,0xc7,0x91,0x47,0xd8,0xff,0xff,0xff,0xff,0xed, - 0x2f,0xe1,0xd4,0x0,0x1,0x2,0x3,0x1,0x0,0x0,0x22,0x84,0x0,0x0,0x0,0x0, - 0x2a,0x30,0x0,0x4,0x0,0x0,0x23,0x28,0x0,0x8,0x0,0x0,0x26,0xac,0x0,0xd, - 0x0,0x0,0x2a,0x30,0x0,0x4,0x4c,0x4d,0x54,0x0,0x45,0x41,0x54,0x0,0x42,0x45, - 0x41,0x54,0x0,0x42,0x45,0x41,0x55,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0xa,0x45,0x41,0x54,0x2d,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Indian/Mahe - 0x0,0x0,0x0,0xab, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x88, - 0x64,0xe6,0x84,0x0,0x1,0x0,0x0,0x33,0xfc,0x0,0x0,0x0,0x0,0x38,0x40,0x0, - 0x4,0x4c,0x4d,0x54,0x0,0x53,0x43,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, - 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0x88,0x64,0xe6,0x84,0x0,0x1,0x0,0x0,0x33,0xfc,0x0, - 0x0,0x0,0x0,0x38,0x40,0x0,0x4,0x4c,0x4d,0x54,0x0,0x53,0x43,0x54,0x0,0x0, - 0x0,0x0,0x0,0xa,0x53,0x43,0x54,0x2d,0x34,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Indian/Mauritius - 0x0,0x0,0x0,0xfd, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0x89, - 0x7f,0x5,0x98,0x18,0x5,0xed,0x40,0x18,0xdb,0x72,0x30,0x49,0x3,0x96,0xe0,0x49, - 0xce,0x8f,0xd0,0x0,0x2,0x1,0x2,0x1,0x2,0x0,0x0,0x35,0xe8,0x0,0x0,0x0, - 0x0,0x46,0x50,0x1,0x4,0x0,0x0,0x38,0x40,0x0,0x9,0x4c,0x4d,0x54,0x0,0x4d, - 0x55,0x53,0x54,0x0,0x4d,0x55,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a, - 0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x6,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xd,0xf8,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xff,0xff,0xff,0xff,0x89,0x7f,0x5,0x98,0x0,0x0,0x0,0x0,0x18,0x5, - 0xed,0x40,0x0,0x0,0x0,0x0,0x18,0xdb,0x72,0x30,0x0,0x0,0x0,0x0,0x49,0x3, - 0x96,0xe0,0x0,0x0,0x0,0x0,0x49,0xce,0x8f,0xd0,0x0,0x2,0x1,0x2,0x1,0x2, - 0x0,0x0,0x35,0xe8,0x0,0x0,0x0,0x0,0x46,0x50,0x1,0x4,0x0,0x0,0x38,0x40, - 0x0,0x9,0x4c,0x4d,0x54,0x0,0x4d,0x55,0x53,0x54,0x0,0x4d,0x55,0x54,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0xa,0x4d,0x55,0x54,0x2d,0x34,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Indian/Kerguelen - 0x0,0x0,0x0,0xbb, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x3,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0xda, - 0x61,0x62,0x80,0x7f,0xff,0xff,0xff,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x46,0x50,0x0,0x4,0x2d,0x30,0x30,0x0,0x2b,0x30,0x35,0x0,0x0,0x0, - 0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xda,0x61,0x62,0x80,0x0,0x0, - 0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x46,0x50,0x0,0x4,0x2d,0x30,0x30,0x0,0x2b,0x30,0x35,0x0,0x0,0x0,0x0, - 0x0,0xa,0x3c,0x2b,0x30,0x35,0x3e,0x2d,0x35,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Indian/Maldives - 0x0,0x0,0x0,0xcc, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0xed, - 0x2f,0xc3,0x98,0x1,0x2,0x0,0x0,0x44,0xe8,0x0,0x0,0x0,0x0,0x44,0xe8,0x0, - 0x4,0x0,0x0,0x46,0x50,0x0,0x8,0x4c,0x4d,0x54,0x0,0x4d,0x4d,0x54,0x0,0x4d, - 0x56,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0, - 0x3,0x0,0x0,0x0,0xc,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff, - 0xff,0x56,0xb6,0x9f,0x18,0xff,0xff,0xff,0xff,0xed,0x2f,0xc3,0x98,0x0,0x1,0x2, - 0x0,0x0,0x44,0xe8,0x0,0x0,0x0,0x0,0x44,0xe8,0x0,0x4,0x0,0x0,0x46,0x50, - 0x0,0x8,0x4c,0x4d,0x54,0x0,0x4d,0x4d,0x54,0x0,0x4d,0x56,0x54,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0xa,0x4d,0x56,0x54,0x2d,0x35,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Indian/Reunion - 0x0,0x0,0x0,0xab, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x91, - 0xcc,0x39,0x80,0x0,0x1,0x0,0x0,0x34,0x0,0x0,0x0,0x0,0x0,0x38,0x40,0x0, - 0x4,0x4c,0x4d,0x54,0x0,0x52,0x45,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, - 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0x91,0xcc,0x39,0x80,0x0,0x1,0x0,0x0,0x34,0x0,0x0, - 0x0,0x0,0x0,0x38,0x40,0x0,0x4,0x4c,0x4d,0x54,0x0,0x52,0x45,0x54,0x0,0x0, - 0x0,0x0,0x0,0xa,0x52,0x45,0x54,0x2d,0x34,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Guatemala - 0x0,0x0,0x1,0x32, + 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x10,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0xbd, + 0x2d,0x48,0xe8,0x6,0x43,0x74,0x60,0x9,0xa4,0x3e,0x50,0x11,0x51,0xf8,0xe0,0x11, + 0xd4,0x6f,0x50,0x13,0x31,0xda,0xe0,0x13,0xb4,0x51,0x50,0x29,0x61,0x91,0x20,0x2a, + 0xc1,0x4b,0x50,0x2b,0x43,0xdd,0xe0,0x32,0xc9,0xef,0x50,0x42,0x58,0xc0,0xe0,0x43, + 0x3f,0x69,0x50,0x44,0x54,0x6e,0x80,0x45,0x1f,0x59,0x60,0x1,0x2,0x3,0x2,0x4, + 0x2,0x4,0x2,0x3,0x2,0x3,0x2,0x4,0x2,0x4,0x2,0xff,0xff,0xaf,0x1c,0x0, + 0x0,0xff,0xff,0xaf,0x18,0x0,0x4,0xff,0xff,0xab,0xa0,0x0,0x8,0xff,0xff,0xb9, + 0xb0,0x0,0xc,0xff,0xff,0xb9,0xb0,0x1,0x10,0xff,0xff,0xab,0xa0,0x0,0x8,0x4c, + 0x4d,0x54,0x0,0x4d,0x4d,0x54,0x0,0x43,0x53,0x54,0x0,0x45,0x53,0x54,0x0,0x43, + 0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x11,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0xf8,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x69,0x87,0x2c,0x64,0xff,0xff,0xff,0xff,0xbd, + 0x2d,0x48,0xe8,0x0,0x0,0x0,0x0,0x6,0x43,0x74,0x60,0x0,0x0,0x0,0x0,0x9, + 0xa4,0x3e,0x50,0x0,0x0,0x0,0x0,0x11,0x51,0xf8,0xe0,0x0,0x0,0x0,0x0,0x11, + 0xd4,0x6f,0x50,0x0,0x0,0x0,0x0,0x13,0x31,0xda,0xe0,0x0,0x0,0x0,0x0,0x13, + 0xb4,0x51,0x50,0x0,0x0,0x0,0x0,0x29,0x61,0x91,0x20,0x0,0x0,0x0,0x0,0x2a, + 0xc1,0x4b,0x50,0x0,0x0,0x0,0x0,0x2b,0x43,0xdd,0xe0,0x0,0x0,0x0,0x0,0x32, + 0xc9,0xef,0x50,0x0,0x0,0x0,0x0,0x42,0x58,0xc0,0xe0,0x0,0x0,0x0,0x0,0x43, + 0x3f,0x69,0x50,0x0,0x0,0x0,0x0,0x44,0x54,0x6e,0x80,0x0,0x0,0x0,0x0,0x45, + 0x1f,0x59,0x60,0x0,0x1,0x2,0x3,0x2,0x4,0x2,0x4,0x2,0x3,0x2,0x3,0x2, + 0x4,0x2,0x4,0x2,0xff,0xff,0xaf,0x1c,0x0,0x0,0xff,0xff,0xaf,0x18,0x0,0x4, + 0xff,0xff,0xab,0xa0,0x0,0x8,0xff,0xff,0xb9,0xb0,0x0,0xc,0xff,0xff,0xb9,0xb0, + 0x1,0x10,0xff,0xff,0xab,0xa0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x4d,0x4d,0x54,0x0, + 0x43,0x53,0x54,0x0,0x45,0x53,0x54,0x0,0x43,0x44,0x54,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x43,0x53,0x54,0x36,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Cayenne + 0x0,0x0,0x0,0xe0, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xa,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0x9f, - 0x9d,0xea,0xdc,0x7,0x55,0xac,0x60,0x7,0xcd,0x96,0xd0,0x19,0x2c,0x78,0x60,0x19, - 0xcf,0xe4,0x50,0x27,0xea,0xee,0xe0,0x28,0xc8,0x5c,0xd0,0x44,0x54,0x52,0x60,0x45, - 0x1f,0x4b,0x50,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0xab, - 0x24,0x0,0x0,0xff,0xff,0xb9,0xb0,0x1,0x4,0xff,0xff,0xab,0xa0,0x0,0x8,0x4c, - 0x4d,0x54,0x0,0x43,0x44,0x54,0x0,0x43,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0xf8,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x9f,0x9d,0xea,0xdc,0x0,0x0,0x0, - 0x0,0x7,0x55,0xac,0x60,0x0,0x0,0x0,0x0,0x7,0xcd,0x96,0xd0,0x0,0x0,0x0, - 0x0,0x19,0x2c,0x78,0x60,0x0,0x0,0x0,0x0,0x19,0xcf,0xe4,0x50,0x0,0x0,0x0, - 0x0,0x27,0xea,0xee,0xe0,0x0,0x0,0x0,0x0,0x28,0xc8,0x5c,0xd0,0x0,0x0,0x0, - 0x0,0x44,0x54,0x52,0x60,0x0,0x0,0x0,0x0,0x45,0x1f,0x4b,0x50,0x0,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0xab,0x24,0x0,0x0,0xff,0xff,0xb9, - 0xb0,0x1,0x4,0xff,0xff,0xab,0xa0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x43,0x44,0x54, - 0x0,0x43,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x43,0x53,0x54,0x36, - 0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Santo_Domingo - 0x0,0x0,0x1,0xe9, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x11,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1a,0x80,0x0,0x0,0x0,0xba, - 0xdf,0x42,0x60,0xfa,0x8,0x4b,0xd0,0xfa,0xa7,0xc3,0x40,0xff,0xa7,0xf1,0xd0,0x0, - 0x43,0x7b,0xc8,0x1,0x87,0xd3,0xd0,0x1,0xfa,0x7f,0x48,0x3,0x70,0xf0,0x50,0x3, - 0xdd,0x4,0x48,0x5,0x50,0xd2,0x50,0x5,0xbf,0x89,0x48,0x7,0x30,0xb4,0x50,0x7, - 0xa0,0xbc,0xc8,0x9,0x10,0x96,0x50,0x39,0xfb,0xbc,0xe0,0x3a,0x29,0xe1,0x60,0x1, - 0x3,0x2,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x5,0x3,0x5, - 0xff,0xff,0xbe,0x78,0x0,0x0,0xff,0xff,0xbe,0x60,0x0,0x4,0xff,0xff,0xc7,0xc0, - 0x1,0x9,0xff,0xff,0xb9,0xb0,0x0,0xd,0xff,0xff,0xc0,0xb8,0x1,0x11,0xff,0xff, - 0xc7,0xc0,0x0,0x16,0x4c,0x4d,0x54,0x0,0x53,0x44,0x4d,0x54,0x0,0x45,0x44,0x54, - 0x0,0x45,0x53,0x54,0x0,0x45,0x48,0x44,0x54,0x0,0x41,0x53,0x54,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x12,0x0,0x0, - 0x0,0x6,0x0,0x0,0x0,0x1a,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff, - 0xff,0xff,0x69,0x87,0x1d,0x8,0xff,0xff,0xff,0xff,0xba,0xdf,0x42,0x60,0xff,0xff, - 0xff,0xff,0xfa,0x8,0x4b,0xd0,0xff,0xff,0xff,0xff,0xfa,0xa7,0xc3,0x40,0xff,0xff, - 0xff,0xff,0xff,0xa7,0xf1,0xd0,0x0,0x0,0x0,0x0,0x0,0x43,0x7b,0xc8,0x0,0x0, - 0x0,0x0,0x1,0x87,0xd3,0xd0,0x0,0x0,0x0,0x0,0x1,0xfa,0x7f,0x48,0x0,0x0, - 0x0,0x0,0x3,0x70,0xf0,0x50,0x0,0x0,0x0,0x0,0x3,0xdd,0x4,0x48,0x0,0x0, - 0x0,0x0,0x5,0x50,0xd2,0x50,0x0,0x0,0x0,0x0,0x5,0xbf,0x89,0x48,0x0,0x0, - 0x0,0x0,0x7,0x30,0xb4,0x50,0x0,0x0,0x0,0x0,0x7,0xa0,0xbc,0xc8,0x0,0x0, - 0x0,0x0,0x9,0x10,0x96,0x50,0x0,0x0,0x0,0x0,0x39,0xfb,0xbc,0xe0,0x0,0x0, - 0x0,0x0,0x3a,0x29,0xe1,0x60,0x0,0x1,0x3,0x2,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x5,0x3,0x5,0xff,0xff,0xbe,0x78,0x0,0x0,0xff,0xff, - 0xbe,0x60,0x0,0x4,0xff,0xff,0xc7,0xc0,0x1,0x9,0xff,0xff,0xb9,0xb0,0x0,0xd, - 0xff,0xff,0xc0,0xb8,0x1,0x11,0xff,0xff,0xc7,0xc0,0x0,0x16,0x4c,0x4d,0x54,0x0, - 0x53,0x44,0x4d,0x54,0x0,0x45,0x44,0x54,0x0,0x45,0x53,0x54,0x0,0x45,0x48,0x44, - 0x54,0x0,0x41,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xa,0x41,0x53,0x54,0x34,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Porto_Acre - 0x0,0x0,0x2,0x90, + 0x0,0x0,0x4,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0x91, + 0xf4,0x2b,0x90,0xfb,0xc3,0x35,0xc0,0x7f,0xff,0xff,0xff,0x0,0x1,0x2,0x2,0xff, + 0xff,0xce,0xf0,0x0,0x0,0xff,0xff,0xc7,0xc0,0x0,0x4,0xff,0xff,0xd5,0xd0,0x0, + 0x8,0x4c,0x4d,0x54,0x0,0x2d,0x30,0x34,0x0,0x2d,0x30,0x33,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0xf8, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x91,0xf4,0x2b,0x90,0xff, + 0xff,0xff,0xff,0xfb,0xc3,0x35,0xc0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0, + 0x1,0x2,0x2,0xff,0xff,0xce,0xf0,0x0,0x0,0xff,0xff,0xc7,0xc0,0x0,0x4,0xff, + 0xff,0xd5,0xd0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x2d,0x30,0x34,0x0,0x2d,0x30,0x33, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2d,0x30,0x33,0x3e,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Rio_Branco + 0x0,0x0,0x2,0x96, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x20,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x11,0x80,0x0,0x0,0x0,0x96, + 0x0,0x0,0x21,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0x96, 0xaa,0x86,0x90,0xb8,0xf,0x66,0x0,0xb8,0xfd,0x5c,0xc0,0xb9,0xf1,0x50,0x50,0xba, 0xde,0x90,0x40,0xda,0x38,0xca,0x50,0xda,0xec,0x16,0x50,0xdc,0x19,0xfd,0xd0,0xdc, 0xb9,0x75,0x40,0xdd,0xfb,0x31,0x50,0xde,0x9b,0xfa,0x40,0xdf,0xdd,0xb6,0x50,0xe0, @@ -19985,15 +16526,15 @@ static const unsigned char qt_resource_data[] = { 0xe,0x3a,0xc0,0xf8,0x51,0x48,0x50,0xf8,0xc7,0xe1,0x40,0xfa,0xa,0xee,0xd0,0xfa, 0xa9,0x14,0xc0,0xfb,0xec,0x22,0x50,0xfc,0x8b,0x99,0xc0,0x1d,0xc9,0xaa,0x50,0x1e, 0x78,0xf3,0xc0,0x1f,0xa0,0x51,0xd0,0x20,0x33,0xeb,0xc0,0x21,0x81,0x85,0x50,0x22, - 0xb,0xe4,0xc0,0x48,0x60,0x7f,0x50,0x52,0x7f,0x4,0xc0,0x0,0x2,0x1,0x2,0x1, + 0xb,0xe4,0xc0,0x48,0x60,0x7f,0x50,0x52,0x7f,0x4,0xc0,0x7f,0xff,0xff,0xff,0x0, 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x2,0xff,0xff,0xc0,0x70,0x0, - 0x0,0xff,0xff,0xc7,0xc0,0x1,0x4,0xff,0xff,0xb9,0xb0,0x0,0x9,0xff,0xff,0xc7, - 0xc0,0x0,0xd,0xff,0xff,0xb9,0xb0,0x0,0x9,0x4c,0x4d,0x54,0x0,0x41,0x43,0x53, - 0x54,0x0,0x41,0x43,0x54,0x0,0x41,0x4d,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x2,0x2, + 0xff,0xff,0xc0,0x70,0x0,0x0,0xff,0xff,0xc7,0xc0,0x1,0x4,0xff,0xff,0xb9,0xb0, + 0x0,0x8,0xff,0xff,0xc7,0xc0,0x0,0x4,0xff,0xff,0xb9,0xb0,0x0,0x8,0x4c,0x4d, + 0x54,0x0,0x2d,0x30,0x34,0x0,0x2d,0x30,0x35,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x11, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xc, 0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x96,0xaa,0x86,0x90, 0xff,0xff,0xff,0xff,0xb8,0xf,0x66,0x0,0xff,0xff,0xff,0xff,0xb8,0xfd,0x5c,0xc0, 0xff,0xff,0xff,0xff,0xb9,0xf1,0x50,0x50,0xff,0xff,0xff,0xff,0xba,0xde,0x90,0x40, @@ -20010,550 +16551,15 @@ static const unsigned char qt_resource_data[] = { 0x0,0x0,0x0,0x0,0x1f,0xa0,0x51,0xd0,0x0,0x0,0x0,0x0,0x20,0x33,0xeb,0xc0, 0x0,0x0,0x0,0x0,0x21,0x81,0x85,0x50,0x0,0x0,0x0,0x0,0x22,0xb,0xe4,0xc0, 0x0,0x0,0x0,0x0,0x48,0x60,0x7f,0x50,0x0,0x0,0x0,0x0,0x52,0x7f,0x4,0xc0, - 0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x2, - 0xff,0xff,0xc0,0x70,0x0,0x0,0xff,0xff,0xc7,0xc0,0x1,0x4,0xff,0xff,0xb9,0xb0, - 0x0,0x9,0xff,0xff,0xc7,0xc0,0x0,0xd,0xff,0xff,0xb9,0xb0,0x0,0x9,0x4c,0x4d, - 0x54,0x0,0x41,0x43,0x53,0x54,0x0,0x41,0x43,0x54,0x0,0x41,0x4d,0x54,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x41,0x43,0x54,0x35,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Yakutat - 0x0,0x0,0x9,0xa, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x8f,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x1e,0x80,0x0,0x0,0x0,0xcb, - 0x89,0x28,0xb0,0xd2,0x23,0xf4,0x70,0xd2,0x61,0x34,0x20,0xfe,0xb8,0x55,0x30,0xff, - 0xa8,0x38,0x20,0x0,0x98,0x37,0x30,0x1,0x88,0x1a,0x20,0x2,0x78,0x19,0x30,0x3, - 0x71,0x36,0xa0,0x4,0x61,0x35,0xb0,0x5,0x51,0x18,0xa0,0x6,0x41,0x17,0xb0,0x7, - 0x30,0xfa,0xa0,0x7,0x8d,0x51,0xb0,0x9,0x10,0xdc,0xa0,0x9,0xad,0xcd,0x30,0xa, - 0xf0,0xbe,0xa0,0xb,0xe0,0xbd,0xb0,0xc,0xd9,0xdb,0x20,0xd,0xc0,0x9f,0xb0,0xe, - 0xb9,0xbd,0x20,0xf,0xa9,0xbc,0x30,0x10,0x99,0x9f,0x20,0x11,0x89,0x9e,0x30,0x12, - 0x79,0x81,0x20,0x13,0x69,0x80,0x30,0x14,0x59,0x63,0x20,0x15,0x49,0x62,0x30,0x16, - 0x39,0x45,0x20,0x17,0x29,0x44,0x30,0x18,0x22,0x61,0xa0,0x19,0x9,0x26,0x30,0x1a, - 0x2,0x43,0xa0,0x1a,0x2b,0x14,0x10,0x1a,0xf2,0x42,0xb0,0x1b,0xe2,0x25,0xa0,0x1c, - 0xd2,0x24,0xb0,0x1d,0xc2,0x7,0xa0,0x1e,0xb2,0x6,0xb0,0x1f,0xa1,0xe9,0xa0,0x20, - 0x76,0x39,0x30,0x21,0x81,0xcb,0xa0,0x22,0x56,0x1b,0x30,0x23,0x6a,0xe8,0x20,0x24, - 0x35,0xfd,0x30,0x25,0x4a,0xca,0x20,0x26,0x15,0xdf,0x30,0x27,0x2a,0xac,0x20,0x27, - 0xfe,0xfb,0xb0,0x29,0xa,0x8e,0x20,0x29,0xde,0xdd,0xb0,0x2a,0xea,0x70,0x20,0x2b, - 0xbe,0xbf,0xb0,0x2c,0xd3,0x8c,0xa0,0x2d,0x9e,0xa1,0xb0,0x2e,0xb3,0x6e,0xa0,0x2f, - 0x7e,0x83,0xb0,0x30,0x93,0x50,0xa0,0x31,0x67,0xa0,0x30,0x32,0x73,0x32,0xa0,0x33, - 0x47,0x82,0x30,0x34,0x53,0x14,0xa0,0x35,0x27,0x64,0x30,0x36,0x32,0xf6,0xa0,0x37, - 0x7,0x46,0x30,0x38,0x1c,0x13,0x20,0x38,0xe7,0x28,0x30,0x39,0xfb,0xf5,0x20,0x3a, - 0xc7,0xa,0x30,0x3b,0xdb,0xd7,0x20,0x3c,0xb0,0x26,0xb0,0x3d,0xbb,0xb9,0x20,0x3e, - 0x90,0x8,0xb0,0x3f,0x9b,0x9b,0x20,0x40,0x6f,0xea,0xb0,0x41,0x84,0xb7,0xa0,0x42, - 0x4f,0xcc,0xb0,0x43,0x64,0x99,0xa0,0x44,0x2f,0xae,0xb0,0x45,0x44,0x7b,0xa0,0x45, - 0xf3,0xe1,0x30,0x47,0x2d,0x98,0x20,0x47,0xd3,0xc3,0x30,0x49,0xd,0x7a,0x20,0x49, - 0xb3,0xa5,0x30,0x4a,0xed,0x5c,0x20,0x4b,0x9c,0xc1,0xb0,0x4c,0xd6,0x78,0xa0,0x4d, - 0x7c,0xa3,0xb0,0x4e,0xb6,0x5a,0xa0,0x4f,0x5c,0x85,0xb0,0x50,0x96,0x3c,0xa0,0x51, - 0x3c,0x67,0xb0,0x52,0x76,0x1e,0xa0,0x53,0x1c,0x49,0xb0,0x54,0x56,0x0,0xa0,0x54, - 0xfc,0x2b,0xb0,0x56,0x35,0xe2,0xa0,0x56,0xe5,0x48,0x30,0x58,0x1e,0xff,0x20,0x58, - 0xc5,0x2a,0x30,0x59,0xfe,0xe1,0x20,0x5a,0xa5,0xc,0x30,0x5b,0xde,0xc3,0x20,0x5c, - 0x84,0xee,0x30,0x5d,0xbe,0xa5,0x20,0x5e,0x64,0xd0,0x30,0x5f,0x9e,0x87,0x20,0x60, - 0x4d,0xec,0xb0,0x61,0x87,0xa3,0xa0,0x62,0x2d,0xce,0xb0,0x63,0x67,0x85,0xa0,0x64, - 0xd,0xb0,0xb0,0x65,0x47,0x67,0xa0,0x65,0xed,0x92,0xb0,0x67,0x27,0x49,0xa0,0x67, - 0xcd,0x74,0xb0,0x69,0x7,0x2b,0xa0,0x69,0xad,0x56,0xb0,0x6a,0xe7,0xd,0xa0,0x6b, - 0x96,0x73,0x30,0x6c,0xd0,0x2a,0x20,0x6d,0x76,0x55,0x30,0x6e,0xb0,0xc,0x20,0x6f, - 0x56,0x37,0x30,0x70,0x8f,0xee,0x20,0x71,0x36,0x19,0x30,0x72,0x6f,0xd0,0x20,0x73, - 0x15,0xfb,0x30,0x74,0x4f,0xb2,0x20,0x74,0xff,0x17,0xb0,0x76,0x38,0xce,0xa0,0x76, - 0xde,0xf9,0xb0,0x78,0x18,0xb0,0xa0,0x78,0xbe,0xdb,0xb0,0x79,0xf8,0x92,0xa0,0x7a, - 0x9e,0xbd,0xb0,0x7b,0xd8,0x74,0xa0,0x7c,0x7e,0x9f,0xb0,0x7d,0xb8,0x56,0xa0,0x7e, - 0x5e,0x81,0xb0,0x7f,0x98,0x38,0xa0,0x1,0x2,0x3,0x1,0x4,0x1,0x4,0x1,0x4, - 0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4, - 0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0xff,0xff,0x7d,0x1,0x0,0x0,0xff,0xff,0x81,0x70, - 0x0,0x4,0xff,0xff,0x8f,0x80,0x1,0x8,0xff,0xff,0x8f,0x80,0x1,0xc,0xff,0xff, - 0x8f,0x80,0x1,0x10,0xff,0xff,0x8f,0x80,0x1,0x14,0xff,0xff,0x81,0x70,0x0,0x19, - 0x4c,0x4d,0x54,0x0,0x59,0x53,0x54,0x0,0x59,0x57,0x54,0x0,0x59,0x50,0x54,0x0, - 0x59,0x44,0x54,0x0,0x41,0x4b,0x44,0x54,0x0,0x41,0x4b,0x53,0x54,0x0,0x0,0x0, - 0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x54,0x5a,0x69,0x66, - 0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91, - 0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x1e,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0xff,0xff,0xff,0xff,0x3f,0xc0,0xd6,0x7f,0xff,0xff,0xff,0xff,0x7d,0x87,0x37,0xbf, - 0xff,0xff,0xff,0xff,0xcb,0x89,0x28,0xb0,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70, - 0xff,0xff,0xff,0xff,0xd2,0x61,0x34,0x20,0xff,0xff,0xff,0xff,0xfe,0xb8,0x55,0x30, - 0xff,0xff,0xff,0xff,0xff,0xa8,0x38,0x20,0x0,0x0,0x0,0x0,0x0,0x98,0x37,0x30, - 0x0,0x0,0x0,0x0,0x1,0x88,0x1a,0x20,0x0,0x0,0x0,0x0,0x2,0x78,0x19,0x30, - 0x0,0x0,0x0,0x0,0x3,0x71,0x36,0xa0,0x0,0x0,0x0,0x0,0x4,0x61,0x35,0xb0, - 0x0,0x0,0x0,0x0,0x5,0x51,0x18,0xa0,0x0,0x0,0x0,0x0,0x6,0x41,0x17,0xb0, - 0x0,0x0,0x0,0x0,0x7,0x30,0xfa,0xa0,0x0,0x0,0x0,0x0,0x7,0x8d,0x51,0xb0, - 0x0,0x0,0x0,0x0,0x9,0x10,0xdc,0xa0,0x0,0x0,0x0,0x0,0x9,0xad,0xcd,0x30, - 0x0,0x0,0x0,0x0,0xa,0xf0,0xbe,0xa0,0x0,0x0,0x0,0x0,0xb,0xe0,0xbd,0xb0, - 0x0,0x0,0x0,0x0,0xc,0xd9,0xdb,0x20,0x0,0x0,0x0,0x0,0xd,0xc0,0x9f,0xb0, - 0x0,0x0,0x0,0x0,0xe,0xb9,0xbd,0x20,0x0,0x0,0x0,0x0,0xf,0xa9,0xbc,0x30, - 0x0,0x0,0x0,0x0,0x10,0x99,0x9f,0x20,0x0,0x0,0x0,0x0,0x11,0x89,0x9e,0x30, - 0x0,0x0,0x0,0x0,0x12,0x79,0x81,0x20,0x0,0x0,0x0,0x0,0x13,0x69,0x80,0x30, - 0x0,0x0,0x0,0x0,0x14,0x59,0x63,0x20,0x0,0x0,0x0,0x0,0x15,0x49,0x62,0x30, - 0x0,0x0,0x0,0x0,0x16,0x39,0x45,0x20,0x0,0x0,0x0,0x0,0x17,0x29,0x44,0x30, - 0x0,0x0,0x0,0x0,0x18,0x22,0x61,0xa0,0x0,0x0,0x0,0x0,0x19,0x9,0x26,0x30, - 0x0,0x0,0x0,0x0,0x1a,0x2,0x43,0xa0,0x0,0x0,0x0,0x0,0x1a,0x2b,0x14,0x10, - 0x0,0x0,0x0,0x0,0x1a,0xf2,0x42,0xb0,0x0,0x0,0x0,0x0,0x1b,0xe2,0x25,0xa0, - 0x0,0x0,0x0,0x0,0x1c,0xd2,0x24,0xb0,0x0,0x0,0x0,0x0,0x1d,0xc2,0x7,0xa0, - 0x0,0x0,0x0,0x0,0x1e,0xb2,0x6,0xb0,0x0,0x0,0x0,0x0,0x1f,0xa1,0xe9,0xa0, - 0x0,0x0,0x0,0x0,0x20,0x76,0x39,0x30,0x0,0x0,0x0,0x0,0x21,0x81,0xcb,0xa0, - 0x0,0x0,0x0,0x0,0x22,0x56,0x1b,0x30,0x0,0x0,0x0,0x0,0x23,0x6a,0xe8,0x20, - 0x0,0x0,0x0,0x0,0x24,0x35,0xfd,0x30,0x0,0x0,0x0,0x0,0x25,0x4a,0xca,0x20, - 0x0,0x0,0x0,0x0,0x26,0x15,0xdf,0x30,0x0,0x0,0x0,0x0,0x27,0x2a,0xac,0x20, - 0x0,0x0,0x0,0x0,0x27,0xfe,0xfb,0xb0,0x0,0x0,0x0,0x0,0x29,0xa,0x8e,0x20, - 0x0,0x0,0x0,0x0,0x29,0xde,0xdd,0xb0,0x0,0x0,0x0,0x0,0x2a,0xea,0x70,0x20, - 0x0,0x0,0x0,0x0,0x2b,0xbe,0xbf,0xb0,0x0,0x0,0x0,0x0,0x2c,0xd3,0x8c,0xa0, - 0x0,0x0,0x0,0x0,0x2d,0x9e,0xa1,0xb0,0x0,0x0,0x0,0x0,0x2e,0xb3,0x6e,0xa0, - 0x0,0x0,0x0,0x0,0x2f,0x7e,0x83,0xb0,0x0,0x0,0x0,0x0,0x30,0x93,0x50,0xa0, - 0x0,0x0,0x0,0x0,0x31,0x67,0xa0,0x30,0x0,0x0,0x0,0x0,0x32,0x73,0x32,0xa0, - 0x0,0x0,0x0,0x0,0x33,0x47,0x82,0x30,0x0,0x0,0x0,0x0,0x34,0x53,0x14,0xa0, - 0x0,0x0,0x0,0x0,0x35,0x27,0x64,0x30,0x0,0x0,0x0,0x0,0x36,0x32,0xf6,0xa0, - 0x0,0x0,0x0,0x0,0x37,0x7,0x46,0x30,0x0,0x0,0x0,0x0,0x38,0x1c,0x13,0x20, - 0x0,0x0,0x0,0x0,0x38,0xe7,0x28,0x30,0x0,0x0,0x0,0x0,0x39,0xfb,0xf5,0x20, - 0x0,0x0,0x0,0x0,0x3a,0xc7,0xa,0x30,0x0,0x0,0x0,0x0,0x3b,0xdb,0xd7,0x20, - 0x0,0x0,0x0,0x0,0x3c,0xb0,0x26,0xb0,0x0,0x0,0x0,0x0,0x3d,0xbb,0xb9,0x20, - 0x0,0x0,0x0,0x0,0x3e,0x90,0x8,0xb0,0x0,0x0,0x0,0x0,0x3f,0x9b,0x9b,0x20, - 0x0,0x0,0x0,0x0,0x40,0x6f,0xea,0xb0,0x0,0x0,0x0,0x0,0x41,0x84,0xb7,0xa0, - 0x0,0x0,0x0,0x0,0x42,0x4f,0xcc,0xb0,0x0,0x0,0x0,0x0,0x43,0x64,0x99,0xa0, - 0x0,0x0,0x0,0x0,0x44,0x2f,0xae,0xb0,0x0,0x0,0x0,0x0,0x45,0x44,0x7b,0xa0, - 0x0,0x0,0x0,0x0,0x45,0xf3,0xe1,0x30,0x0,0x0,0x0,0x0,0x47,0x2d,0x98,0x20, - 0x0,0x0,0x0,0x0,0x47,0xd3,0xc3,0x30,0x0,0x0,0x0,0x0,0x49,0xd,0x7a,0x20, - 0x0,0x0,0x0,0x0,0x49,0xb3,0xa5,0x30,0x0,0x0,0x0,0x0,0x4a,0xed,0x5c,0x20, - 0x0,0x0,0x0,0x0,0x4b,0x9c,0xc1,0xb0,0x0,0x0,0x0,0x0,0x4c,0xd6,0x78,0xa0, - 0x0,0x0,0x0,0x0,0x4d,0x7c,0xa3,0xb0,0x0,0x0,0x0,0x0,0x4e,0xb6,0x5a,0xa0, - 0x0,0x0,0x0,0x0,0x4f,0x5c,0x85,0xb0,0x0,0x0,0x0,0x0,0x50,0x96,0x3c,0xa0, - 0x0,0x0,0x0,0x0,0x51,0x3c,0x67,0xb0,0x0,0x0,0x0,0x0,0x52,0x76,0x1e,0xa0, - 0x0,0x0,0x0,0x0,0x53,0x1c,0x49,0xb0,0x0,0x0,0x0,0x0,0x54,0x56,0x0,0xa0, - 0x0,0x0,0x0,0x0,0x54,0xfc,0x2b,0xb0,0x0,0x0,0x0,0x0,0x56,0x35,0xe2,0xa0, - 0x0,0x0,0x0,0x0,0x56,0xe5,0x48,0x30,0x0,0x0,0x0,0x0,0x58,0x1e,0xff,0x20, - 0x0,0x0,0x0,0x0,0x58,0xc5,0x2a,0x30,0x0,0x0,0x0,0x0,0x59,0xfe,0xe1,0x20, - 0x0,0x0,0x0,0x0,0x5a,0xa5,0xc,0x30,0x0,0x0,0x0,0x0,0x5b,0xde,0xc3,0x20, - 0x0,0x0,0x0,0x0,0x5c,0x84,0xee,0x30,0x0,0x0,0x0,0x0,0x5d,0xbe,0xa5,0x20, - 0x0,0x0,0x0,0x0,0x5e,0x64,0xd0,0x30,0x0,0x0,0x0,0x0,0x5f,0x9e,0x87,0x20, - 0x0,0x0,0x0,0x0,0x60,0x4d,0xec,0xb0,0x0,0x0,0x0,0x0,0x61,0x87,0xa3,0xa0, - 0x0,0x0,0x0,0x0,0x62,0x2d,0xce,0xb0,0x0,0x0,0x0,0x0,0x63,0x67,0x85,0xa0, - 0x0,0x0,0x0,0x0,0x64,0xd,0xb0,0xb0,0x0,0x0,0x0,0x0,0x65,0x47,0x67,0xa0, - 0x0,0x0,0x0,0x0,0x65,0xed,0x92,0xb0,0x0,0x0,0x0,0x0,0x67,0x27,0x49,0xa0, - 0x0,0x0,0x0,0x0,0x67,0xcd,0x74,0xb0,0x0,0x0,0x0,0x0,0x69,0x7,0x2b,0xa0, - 0x0,0x0,0x0,0x0,0x69,0xad,0x56,0xb0,0x0,0x0,0x0,0x0,0x6a,0xe7,0xd,0xa0, - 0x0,0x0,0x0,0x0,0x6b,0x96,0x73,0x30,0x0,0x0,0x0,0x0,0x6c,0xd0,0x2a,0x20, - 0x0,0x0,0x0,0x0,0x6d,0x76,0x55,0x30,0x0,0x0,0x0,0x0,0x6e,0xb0,0xc,0x20, - 0x0,0x0,0x0,0x0,0x6f,0x56,0x37,0x30,0x0,0x0,0x0,0x0,0x70,0x8f,0xee,0x20, - 0x0,0x0,0x0,0x0,0x71,0x36,0x19,0x30,0x0,0x0,0x0,0x0,0x72,0x6f,0xd0,0x20, - 0x0,0x0,0x0,0x0,0x73,0x15,0xfb,0x30,0x0,0x0,0x0,0x0,0x74,0x4f,0xb2,0x20, - 0x0,0x0,0x0,0x0,0x74,0xff,0x17,0xb0,0x0,0x0,0x0,0x0,0x76,0x38,0xce,0xa0, - 0x0,0x0,0x0,0x0,0x76,0xde,0xf9,0xb0,0x0,0x0,0x0,0x0,0x78,0x18,0xb0,0xa0, - 0x0,0x0,0x0,0x0,0x78,0xbe,0xdb,0xb0,0x0,0x0,0x0,0x0,0x79,0xf8,0x92,0xa0, - 0x0,0x0,0x0,0x0,0x7a,0x9e,0xbd,0xb0,0x0,0x0,0x0,0x0,0x7b,0xd8,0x74,0xa0, - 0x0,0x0,0x0,0x0,0x7c,0x7e,0x9f,0xb0,0x0,0x0,0x0,0x0,0x7d,0xb8,0x56,0xa0, - 0x0,0x0,0x0,0x0,0x7e,0x5e,0x81,0xb0,0x0,0x0,0x0,0x0,0x7f,0x98,0x38,0xa0, - 0x0,0x1,0x2,0x3,0x4,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2, - 0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2, - 0x5,0x2,0x5,0x2,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, - 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, - 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, - 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, - 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, - 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, - 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, - 0x7,0x0,0x0,0xce,0x81,0x0,0x0,0xff,0xff,0x7d,0x1,0x0,0x0,0xff,0xff,0x81, - 0x70,0x0,0x4,0xff,0xff,0x8f,0x80,0x1,0x8,0xff,0xff,0x8f,0x80,0x1,0xc,0xff, - 0xff,0x8f,0x80,0x1,0x10,0xff,0xff,0x8f,0x80,0x1,0x14,0xff,0xff,0x81,0x70,0x0, - 0x19,0x4c,0x4d,0x54,0x0,0x59,0x53,0x54,0x0,0x59,0x57,0x54,0x0,0x59,0x50,0x54, - 0x0,0x59,0x44,0x54,0x0,0x41,0x4b,0x44,0x54,0x0,0x41,0x4b,0x53,0x54,0x0,0x0, - 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa, - 0x41,0x4b,0x53,0x54,0x39,0x41,0x4b,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30, - 0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Kralendijk - 0x0,0x0,0x0,0xd0, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0x93, - 0x1e,0x2e,0x23,0xf6,0x98,0xec,0x48,0x0,0x1,0x2,0xff,0xff,0xbf,0x5d,0x0,0x0, - 0xff,0xff,0xc0,0xb8,0x0,0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0x4c,0x4d,0x54,0x0, - 0x41,0x4e,0x54,0x0,0x41,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a, - 0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0xf8,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xff,0xff,0xff,0xff,0x93,0x1e,0x2e,0x23,0xff,0xff,0xff,0xff,0xf6,0x98, - 0xec,0x48,0x0,0x1,0x2,0xff,0xff,0xbf,0x5d,0x0,0x0,0xff,0xff,0xc0,0xb8,0x0, - 0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x41,0x4e,0x54,0x0,0x41, - 0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x41,0x53,0x54,0x34,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Belem - 0x0,0x0,0x2,0x4c, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x1e,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0x96, - 0xaa,0x74,0x74,0xb8,0xf,0x49,0xe0,0xb8,0xfd,0x40,0xa0,0xb9,0xf1,0x34,0x30,0xba, - 0xde,0x74,0x20,0xda,0x38,0xae,0x30,0xda,0xeb,0xfa,0x30,0xdc,0x19,0xe1,0xb0,0xdc, - 0xb9,0x59,0x20,0xdd,0xfb,0x15,0x30,0xde,0x9b,0xde,0x20,0xdf,0xdd,0x9a,0x30,0xe0, - 0x54,0x33,0x20,0xf4,0x97,0xff,0xb0,0xf5,0x5,0x5e,0x20,0xf6,0xc0,0x64,0x30,0xf7, - 0xe,0x1e,0xa0,0xf8,0x51,0x2c,0x30,0xf8,0xc7,0xc5,0x20,0xfa,0xa,0xd2,0xb0,0xfa, - 0xa8,0xf8,0xa0,0xfb,0xec,0x6,0x30,0xfc,0x8b,0x7d,0xa0,0x1d,0xc9,0x8e,0x30,0x1e, - 0x78,0xd7,0xa0,0x1f,0xa0,0x35,0xb0,0x20,0x33,0xcf,0xa0,0x21,0x81,0x69,0x30,0x22, - 0xb,0xc8,0xa0,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0xff,0xff,0xd2,0x8c,0x0,0x0,0xff,0xff,0xe3,0xe0,0x1,0x4,0xff,0xff,0xd5, - 0xd0,0x0,0x9,0x4c,0x4d,0x54,0x0,0x42,0x52,0x53,0x54,0x0,0x42,0x52,0x54,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0, - 0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0x3,0x0,0x0, - 0x0,0xd,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x96,0xaa, - 0x74,0x74,0xff,0xff,0xff,0xff,0xb8,0xf,0x49,0xe0,0xff,0xff,0xff,0xff,0xb8,0xfd, - 0x40,0xa0,0xff,0xff,0xff,0xff,0xb9,0xf1,0x34,0x30,0xff,0xff,0xff,0xff,0xba,0xde, - 0x74,0x20,0xff,0xff,0xff,0xff,0xda,0x38,0xae,0x30,0xff,0xff,0xff,0xff,0xda,0xeb, - 0xfa,0x30,0xff,0xff,0xff,0xff,0xdc,0x19,0xe1,0xb0,0xff,0xff,0xff,0xff,0xdc,0xb9, - 0x59,0x20,0xff,0xff,0xff,0xff,0xdd,0xfb,0x15,0x30,0xff,0xff,0xff,0xff,0xde,0x9b, - 0xde,0x20,0xff,0xff,0xff,0xff,0xdf,0xdd,0x9a,0x30,0xff,0xff,0xff,0xff,0xe0,0x54, - 0x33,0x20,0xff,0xff,0xff,0xff,0xf4,0x97,0xff,0xb0,0xff,0xff,0xff,0xff,0xf5,0x5, - 0x5e,0x20,0xff,0xff,0xff,0xff,0xf6,0xc0,0x64,0x30,0xff,0xff,0xff,0xff,0xf7,0xe, - 0x1e,0xa0,0xff,0xff,0xff,0xff,0xf8,0x51,0x2c,0x30,0xff,0xff,0xff,0xff,0xf8,0xc7, - 0xc5,0x20,0xff,0xff,0xff,0xff,0xfa,0xa,0xd2,0xb0,0xff,0xff,0xff,0xff,0xfa,0xa8, - 0xf8,0xa0,0xff,0xff,0xff,0xff,0xfb,0xec,0x6,0x30,0xff,0xff,0xff,0xff,0xfc,0x8b, - 0x7d,0xa0,0x0,0x0,0x0,0x0,0x1d,0xc9,0x8e,0x30,0x0,0x0,0x0,0x0,0x1e,0x78, - 0xd7,0xa0,0x0,0x0,0x0,0x0,0x1f,0xa0,0x35,0xb0,0x0,0x0,0x0,0x0,0x20,0x33, - 0xcf,0xa0,0x0,0x0,0x0,0x0,0x21,0x81,0x69,0x30,0x0,0x0,0x0,0x0,0x22,0xb, - 0xc8,0xa0,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0xff,0xff,0xd2,0x8c,0x0,0x0,0xff,0xff,0xe3,0xe0,0x1,0x4,0xff,0xff,0xd5,0xd0, - 0x0,0x9,0x4c,0x4d,0x54,0x0,0x42,0x52,0x53,0x54,0x0,0x42,0x52,0x54,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0xa,0x42,0x52,0x54,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/St_Barthelemy - 0x0,0x0,0x0,0xaa, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x93, - 0x37,0x33,0xac,0x0,0x1,0xff,0xff,0xc6,0x54,0x0,0x0,0xff,0xff,0xc7,0xc0,0x0, - 0x4,0x4c,0x4d,0x54,0x0,0x41,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, - 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0x93,0x37,0x33,0xac,0x0,0x1,0xff,0xff,0xc6,0x54,0x0, - 0x0,0xff,0xff,0xc7,0xc0,0x0,0x4,0x4c,0x4d,0x54,0x0,0x41,0x53,0x54,0x0,0x0, - 0x0,0x0,0x0,0xa,0x41,0x53,0x54,0x34,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Bahia_Banderas - 0x0,0x0,0x6,0x34, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x5e,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x18,0x80,0x0,0x0,0x0,0xa5, - 0xb6,0xe8,0x70,0xaf,0xf2,0x6e,0xe0,0xb6,0x66,0x56,0x60,0xb7,0x43,0xd2,0x60,0xb8, - 0xc,0x36,0x60,0xb8,0xfd,0x86,0xf0,0xcb,0xea,0x71,0x60,0xd8,0x91,0xb4,0xf0,0x0, - 0x0,0x70,0x80,0x31,0x67,0x84,0x10,0x32,0x73,0x16,0x80,0x33,0x47,0x66,0x10,0x34, - 0x52,0xf8,0x80,0x35,0x27,0x48,0x10,0x36,0x32,0xda,0x80,0x37,0x7,0x2a,0x10,0x38, - 0x1b,0xf7,0x0,0x38,0xe7,0xc,0x10,0x39,0xfb,0xd9,0x0,0x3a,0xf5,0x12,0x90,0x3b, - 0xb6,0xd1,0x0,0x3c,0xb0,0xa,0x90,0x3d,0xbb,0x9d,0x0,0x3e,0x8f,0xec,0x90,0x3f, - 0x9b,0x7f,0x0,0x40,0x6f,0xce,0x90,0x41,0x84,0x9b,0x80,0x42,0x4f,0xb0,0x90,0x43, - 0x64,0x7d,0x80,0x44,0x2f,0x92,0x90,0x45,0x44,0x5f,0x80,0x46,0xf,0x74,0x90,0x47, - 0x24,0x41,0x80,0x47,0xf8,0x91,0x10,0x49,0x4,0x23,0x80,0x49,0xd8,0x73,0x10,0x4a, - 0xe4,0x5,0x80,0x4b,0xb8,0x55,0x10,0x4c,0xcd,0x13,0xf0,0x4d,0x98,0x29,0x0,0x4e, - 0xac,0xf5,0xf0,0x4f,0x78,0xb,0x0,0x50,0x8c,0xd7,0xf0,0x51,0x61,0x27,0x80,0x52, - 0x6c,0xb9,0xf0,0x53,0x41,0x9,0x80,0x54,0x4c,0x9b,0xf0,0x55,0x20,0xeb,0x80,0x56, - 0x2c,0x7d,0xf0,0x57,0x0,0xcd,0x80,0x58,0x15,0x9a,0x70,0x58,0xe0,0xaf,0x80,0x59, - 0xf5,0x7c,0x70,0x5a,0xc0,0x91,0x80,0x5b,0xd5,0x5e,0x70,0x5c,0xa9,0xae,0x0,0x5d, - 0xb5,0x40,0x70,0x5e,0x89,0x90,0x0,0x5f,0x95,0x22,0x70,0x60,0x69,0x72,0x0,0x61, - 0x7e,0x3e,0xf0,0x62,0x49,0x54,0x0,0x63,0x5e,0x20,0xf0,0x64,0x29,0x36,0x0,0x65, - 0x3e,0x2,0xf0,0x66,0x12,0x52,0x80,0x67,0x1d,0xe4,0xf0,0x67,0xf2,0x34,0x80,0x68, - 0xfd,0xc6,0xf0,0x69,0xd2,0x16,0x80,0x6a,0xdd,0xa8,0xf0,0x6b,0xb1,0xf8,0x80,0x6c, - 0xc6,0xc5,0x70,0x6d,0x91,0xda,0x80,0x6e,0xa6,0xa7,0x70,0x6f,0x71,0xbc,0x80,0x70, - 0x86,0x89,0x70,0x71,0x5a,0xd9,0x0,0x72,0x66,0x6b,0x70,0x73,0x3a,0xbb,0x0,0x74, - 0x46,0x4d,0x70,0x75,0x1a,0x9d,0x0,0x76,0x2f,0x69,0xf0,0x76,0xfa,0x7f,0x0,0x78, - 0xf,0x4b,0xf0,0x78,0xda,0x61,0x0,0x79,0xef,0x2d,0xf0,0x7a,0xba,0x43,0x0,0x7b, - 0xcf,0xf,0xf0,0x7c,0xa3,0x5f,0x80,0x7d,0xae,0xf1,0xf0,0x7e,0x83,0x41,0x80,0x7f, - 0x8e,0xd3,0xf0,0x0,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x3,0x1,0x4,0x1,0x4, - 0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4, - 0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x5,0x2,0x5,0x2,0x5,0x2,0x5, - 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, - 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, - 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, - 0x2,0xff,0xff,0x9d,0x54,0x0,0x0,0xff,0xff,0x9d,0x90,0x0,0x4,0xff,0xff,0xab, - 0xa0,0x0,0x8,0xff,0xff,0x8f,0x80,0x0,0xc,0xff,0xff,0xab,0xa0,0x1,0x10,0xff, - 0xff,0xb9,0xb0,0x1,0x14,0xff,0xff,0xab,0xa0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x4d, - 0x53,0x54,0x0,0x43,0x53,0x54,0x0,0x50,0x53,0x54,0x0,0x4d,0x44,0x54,0x0,0x43, - 0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x5e,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x18,0xf8,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xa5,0xb6,0xe8,0x70,0xff,0xff,0xff, - 0xff,0xaf,0xf2,0x6e,0xe0,0xff,0xff,0xff,0xff,0xb6,0x66,0x56,0x60,0xff,0xff,0xff, - 0xff,0xb7,0x43,0xd2,0x60,0xff,0xff,0xff,0xff,0xb8,0xc,0x36,0x60,0xff,0xff,0xff, - 0xff,0xb8,0xfd,0x86,0xf0,0xff,0xff,0xff,0xff,0xcb,0xea,0x71,0x60,0xff,0xff,0xff, - 0xff,0xd8,0x91,0xb4,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x70,0x80,0x0,0x0,0x0, - 0x0,0x31,0x67,0x84,0x10,0x0,0x0,0x0,0x0,0x32,0x73,0x16,0x80,0x0,0x0,0x0, - 0x0,0x33,0x47,0x66,0x10,0x0,0x0,0x0,0x0,0x34,0x52,0xf8,0x80,0x0,0x0,0x0, - 0x0,0x35,0x27,0x48,0x10,0x0,0x0,0x0,0x0,0x36,0x32,0xda,0x80,0x0,0x0,0x0, - 0x0,0x37,0x7,0x2a,0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0xf7,0x0,0x0,0x0,0x0, - 0x0,0x38,0xe7,0xc,0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0xd9,0x0,0x0,0x0,0x0, - 0x0,0x3a,0xf5,0x12,0x90,0x0,0x0,0x0,0x0,0x3b,0xb6,0xd1,0x0,0x0,0x0,0x0, - 0x0,0x3c,0xb0,0xa,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x9d,0x0,0x0,0x0,0x0, - 0x0,0x3e,0x8f,0xec,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x7f,0x0,0x0,0x0,0x0, - 0x0,0x40,0x6f,0xce,0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x9b,0x80,0x0,0x0,0x0, - 0x0,0x42,0x4f,0xb0,0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x7d,0x80,0x0,0x0,0x0, - 0x0,0x44,0x2f,0x92,0x90,0x0,0x0,0x0,0x0,0x45,0x44,0x5f,0x80,0x0,0x0,0x0, - 0x0,0x46,0xf,0x74,0x90,0x0,0x0,0x0,0x0,0x47,0x24,0x41,0x80,0x0,0x0,0x0, - 0x0,0x47,0xf8,0x91,0x10,0x0,0x0,0x0,0x0,0x49,0x4,0x23,0x80,0x0,0x0,0x0, - 0x0,0x49,0xd8,0x73,0x10,0x0,0x0,0x0,0x0,0x4a,0xe4,0x5,0x80,0x0,0x0,0x0, - 0x0,0x4b,0xb8,0x55,0x10,0x0,0x0,0x0,0x0,0x4c,0xcd,0x13,0xf0,0x0,0x0,0x0, - 0x0,0x4d,0x98,0x29,0x0,0x0,0x0,0x0,0x0,0x4e,0xac,0xf5,0xf0,0x0,0x0,0x0, - 0x0,0x4f,0x78,0xb,0x0,0x0,0x0,0x0,0x0,0x50,0x8c,0xd7,0xf0,0x0,0x0,0x0, - 0x0,0x51,0x61,0x27,0x80,0x0,0x0,0x0,0x0,0x52,0x6c,0xb9,0xf0,0x0,0x0,0x0, - 0x0,0x53,0x41,0x9,0x80,0x0,0x0,0x0,0x0,0x54,0x4c,0x9b,0xf0,0x0,0x0,0x0, - 0x0,0x55,0x20,0xeb,0x80,0x0,0x0,0x0,0x0,0x56,0x2c,0x7d,0xf0,0x0,0x0,0x0, - 0x0,0x57,0x0,0xcd,0x80,0x0,0x0,0x0,0x0,0x58,0x15,0x9a,0x70,0x0,0x0,0x0, - 0x0,0x58,0xe0,0xaf,0x80,0x0,0x0,0x0,0x0,0x59,0xf5,0x7c,0x70,0x0,0x0,0x0, - 0x0,0x5a,0xc0,0x91,0x80,0x0,0x0,0x0,0x0,0x5b,0xd5,0x5e,0x70,0x0,0x0,0x0, - 0x0,0x5c,0xa9,0xae,0x0,0x0,0x0,0x0,0x0,0x5d,0xb5,0x40,0x70,0x0,0x0,0x0, - 0x0,0x5e,0x89,0x90,0x0,0x0,0x0,0x0,0x0,0x5f,0x95,0x22,0x70,0x0,0x0,0x0, - 0x0,0x60,0x69,0x72,0x0,0x0,0x0,0x0,0x0,0x61,0x7e,0x3e,0xf0,0x0,0x0,0x0, - 0x0,0x62,0x49,0x54,0x0,0x0,0x0,0x0,0x0,0x63,0x5e,0x20,0xf0,0x0,0x0,0x0, - 0x0,0x64,0x29,0x36,0x0,0x0,0x0,0x0,0x0,0x65,0x3e,0x2,0xf0,0x0,0x0,0x0, - 0x0,0x66,0x12,0x52,0x80,0x0,0x0,0x0,0x0,0x67,0x1d,0xe4,0xf0,0x0,0x0,0x0, - 0x0,0x67,0xf2,0x34,0x80,0x0,0x0,0x0,0x0,0x68,0xfd,0xc6,0xf0,0x0,0x0,0x0, - 0x0,0x69,0xd2,0x16,0x80,0x0,0x0,0x0,0x0,0x6a,0xdd,0xa8,0xf0,0x0,0x0,0x0, - 0x0,0x6b,0xb1,0xf8,0x80,0x0,0x0,0x0,0x0,0x6c,0xc6,0xc5,0x70,0x0,0x0,0x0, - 0x0,0x6d,0x91,0xda,0x80,0x0,0x0,0x0,0x0,0x6e,0xa6,0xa7,0x70,0x0,0x0,0x0, - 0x0,0x6f,0x71,0xbc,0x80,0x0,0x0,0x0,0x0,0x70,0x86,0x89,0x70,0x0,0x0,0x0, - 0x0,0x71,0x5a,0xd9,0x0,0x0,0x0,0x0,0x0,0x72,0x66,0x6b,0x70,0x0,0x0,0x0, - 0x0,0x73,0x3a,0xbb,0x0,0x0,0x0,0x0,0x0,0x74,0x46,0x4d,0x70,0x0,0x0,0x0, - 0x0,0x75,0x1a,0x9d,0x0,0x0,0x0,0x0,0x0,0x76,0x2f,0x69,0xf0,0x0,0x0,0x0, - 0x0,0x76,0xfa,0x7f,0x0,0x0,0x0,0x0,0x0,0x78,0xf,0x4b,0xf0,0x0,0x0,0x0, - 0x0,0x78,0xda,0x61,0x0,0x0,0x0,0x0,0x0,0x79,0xef,0x2d,0xf0,0x0,0x0,0x0, - 0x0,0x7a,0xba,0x43,0x0,0x0,0x0,0x0,0x0,0x7b,0xcf,0xf,0xf0,0x0,0x0,0x0, - 0x0,0x7c,0xa3,0x5f,0x80,0x0,0x0,0x0,0x0,0x7d,0xae,0xf1,0xf0,0x0,0x0,0x0, - 0x0,0x7e,0x83,0x41,0x80,0x0,0x0,0x0,0x0,0x7f,0x8e,0xd3,0xf0,0x0,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x3,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4, - 0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4, - 0x1,0x4,0x1,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, - 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, - 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, - 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0xff,0xff,0x9d,0x54,0x0, - 0x0,0xff,0xff,0x9d,0x90,0x0,0x4,0xff,0xff,0xab,0xa0,0x0,0x8,0xff,0xff,0x8f, - 0x80,0x0,0xc,0xff,0xff,0xab,0xa0,0x1,0x10,0xff,0xff,0xb9,0xb0,0x1,0x14,0xff, - 0xff,0xab,0xa0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x4d,0x53,0x54,0x0,0x43,0x53,0x54, - 0x0,0x50,0x53,0x54,0x0,0x4d,0x44,0x54,0x0,0x43,0x44,0x54,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x43,0x53,0x54,0x36, - 0x43,0x44,0x54,0x2c,0x4d,0x34,0x2e,0x31,0x2e,0x30,0x2c,0x4d,0x31,0x30,0x2e,0x35, - 0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Dawson_Creek - 0x0,0x0,0x4,0x23, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x3a,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x80,0x0,0x0,0x0,0x9e, - 0xb8,0xbd,0xa0,0x9f,0xbb,0x15,0x90,0xcb,0x89,0x1a,0xa0,0xd2,0x23,0xf4,0x70,0xd2, - 0x61,0x26,0x10,0xd5,0x55,0xf1,0x20,0xd6,0x20,0xea,0x10,0xd7,0x35,0xd3,0x20,0xd8, - 0x0,0xcc,0x10,0xd9,0x15,0xb5,0x20,0xd9,0xe0,0xae,0x10,0xda,0xfe,0xd1,0xa0,0xdb, - 0xc0,0x90,0x10,0xdc,0xde,0xb3,0xa0,0xdd,0xa9,0xac,0x90,0xde,0xbe,0x95,0xa0,0xdf, - 0x89,0x8e,0x90,0xe0,0x9e,0x77,0xa0,0xe1,0x69,0x70,0x90,0xe2,0x7e,0x59,0xa0,0xe3, - 0x49,0x52,0x90,0xe4,0x5e,0x3b,0xa0,0xe5,0x29,0x34,0x90,0xe6,0x47,0x58,0x20,0xe7, - 0x12,0x51,0x10,0xe8,0x27,0x3a,0x20,0xe8,0xf2,0x33,0x10,0xea,0x7,0x1c,0x20,0xea, - 0xd2,0x15,0x10,0xeb,0xe6,0xfe,0x20,0xec,0xb1,0xf7,0x10,0xed,0xc6,0xe0,0x20,0xee, - 0x91,0xd9,0x10,0xef,0xaf,0xfc,0xa0,0xf0,0x71,0xbb,0x10,0xf1,0x8f,0xde,0xa0,0xf2, - 0x7f,0xc1,0x90,0xf3,0x6f,0xc0,0xa0,0xf4,0x5f,0xa3,0x90,0xf5,0x4f,0xa2,0xa0,0xf6, - 0x3f,0x85,0x90,0xf7,0x2f,0x84,0xa0,0xf8,0x28,0xa2,0x10,0xf9,0xf,0x66,0xa0,0xfa, - 0x8,0x84,0x10,0xfa,0xf8,0x83,0x20,0xfb,0xe8,0x66,0x10,0xfc,0xd8,0x65,0x20,0xfd, - 0xc8,0x48,0x10,0xfe,0xb8,0x47,0x20,0xff,0xa8,0x2a,0x10,0x0,0x98,0x29,0x20,0x1, - 0x88,0xc,0x10,0x2,0x78,0xb,0x20,0x3,0x71,0x28,0x90,0x4,0x61,0x27,0xa0,0x5, - 0x1,0xf0,0x90,0x2,0x1,0x2,0x3,0x4,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x5,0xff,0xff,0x8f, - 0x48,0x0,0x0,0xff,0xff,0x9d,0x90,0x1,0x4,0xff,0xff,0x8f,0x80,0x0,0x8,0xff, - 0xff,0x9d,0x90,0x1,0xc,0xff,0xff,0x9d,0x90,0x1,0x10,0xff,0xff,0x9d,0x90,0x0, - 0x14,0x4c,0x4d,0x54,0x0,0x50,0x44,0x54,0x0,0x50,0x53,0x54,0x0,0x50,0x57,0x54, - 0x0,0x50,0x50,0x54,0x0,0x4d,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0, - 0x0,0x0,0x0,0x1,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, - 0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3b,0x0,0x0,0x0,0x6,0x0,0x0,0x0, - 0x18,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x5e,0x3d,0x74, - 0x38,0xff,0xff,0xff,0xff,0x9e,0xb8,0xbd,0xa0,0xff,0xff,0xff,0xff,0x9f,0xbb,0x15, - 0x90,0xff,0xff,0xff,0xff,0xcb,0x89,0x1a,0xa0,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4, - 0x70,0xff,0xff,0xff,0xff,0xd2,0x61,0x26,0x10,0xff,0xff,0xff,0xff,0xd5,0x55,0xf1, - 0x20,0xff,0xff,0xff,0xff,0xd6,0x20,0xea,0x10,0xff,0xff,0xff,0xff,0xd7,0x35,0xd3, - 0x20,0xff,0xff,0xff,0xff,0xd8,0x0,0xcc,0x10,0xff,0xff,0xff,0xff,0xd9,0x15,0xb5, - 0x20,0xff,0xff,0xff,0xff,0xd9,0xe0,0xae,0x10,0xff,0xff,0xff,0xff,0xda,0xfe,0xd1, - 0xa0,0xff,0xff,0xff,0xff,0xdb,0xc0,0x90,0x10,0xff,0xff,0xff,0xff,0xdc,0xde,0xb3, - 0xa0,0xff,0xff,0xff,0xff,0xdd,0xa9,0xac,0x90,0xff,0xff,0xff,0xff,0xde,0xbe,0x95, - 0xa0,0xff,0xff,0xff,0xff,0xdf,0x89,0x8e,0x90,0xff,0xff,0xff,0xff,0xe0,0x9e,0x77, - 0xa0,0xff,0xff,0xff,0xff,0xe1,0x69,0x70,0x90,0xff,0xff,0xff,0xff,0xe2,0x7e,0x59, - 0xa0,0xff,0xff,0xff,0xff,0xe3,0x49,0x52,0x90,0xff,0xff,0xff,0xff,0xe4,0x5e,0x3b, - 0xa0,0xff,0xff,0xff,0xff,0xe5,0x29,0x34,0x90,0xff,0xff,0xff,0xff,0xe6,0x47,0x58, - 0x20,0xff,0xff,0xff,0xff,0xe7,0x12,0x51,0x10,0xff,0xff,0xff,0xff,0xe8,0x27,0x3a, - 0x20,0xff,0xff,0xff,0xff,0xe8,0xf2,0x33,0x10,0xff,0xff,0xff,0xff,0xea,0x7,0x1c, - 0x20,0xff,0xff,0xff,0xff,0xea,0xd2,0x15,0x10,0xff,0xff,0xff,0xff,0xeb,0xe6,0xfe, - 0x20,0xff,0xff,0xff,0xff,0xec,0xb1,0xf7,0x10,0xff,0xff,0xff,0xff,0xed,0xc6,0xe0, - 0x20,0xff,0xff,0xff,0xff,0xee,0x91,0xd9,0x10,0xff,0xff,0xff,0xff,0xef,0xaf,0xfc, - 0xa0,0xff,0xff,0xff,0xff,0xf0,0x71,0xbb,0x10,0xff,0xff,0xff,0xff,0xf1,0x8f,0xde, - 0xa0,0xff,0xff,0xff,0xff,0xf2,0x7f,0xc1,0x90,0xff,0xff,0xff,0xff,0xf3,0x6f,0xc0, - 0xa0,0xff,0xff,0xff,0xff,0xf4,0x5f,0xa3,0x90,0xff,0xff,0xff,0xff,0xf5,0x4f,0xa2, - 0xa0,0xff,0xff,0xff,0xff,0xf6,0x3f,0x85,0x90,0xff,0xff,0xff,0xff,0xf7,0x2f,0x84, - 0xa0,0xff,0xff,0xff,0xff,0xf8,0x28,0xa2,0x10,0xff,0xff,0xff,0xff,0xf9,0xf,0x66, - 0xa0,0xff,0xff,0xff,0xff,0xfa,0x8,0x84,0x10,0xff,0xff,0xff,0xff,0xfa,0xf8,0x83, - 0x20,0xff,0xff,0xff,0xff,0xfb,0xe8,0x66,0x10,0xff,0xff,0xff,0xff,0xfc,0xd8,0x65, - 0x20,0xff,0xff,0xff,0xff,0xfd,0xc8,0x48,0x10,0xff,0xff,0xff,0xff,0xfe,0xb8,0x47, - 0x20,0xff,0xff,0xff,0xff,0xff,0xa8,0x2a,0x10,0x0,0x0,0x0,0x0,0x0,0x98,0x29, - 0x20,0x0,0x0,0x0,0x0,0x1,0x88,0xc,0x10,0x0,0x0,0x0,0x0,0x2,0x78,0xb, - 0x20,0x0,0x0,0x0,0x0,0x3,0x71,0x28,0x90,0x0,0x0,0x0,0x0,0x4,0x61,0x27, - 0xa0,0x0,0x0,0x0,0x0,0x5,0x1,0xf0,0x90,0x0,0x2,0x1,0x2,0x3,0x4,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x5,0xff,0xff,0x8f,0x48,0x0,0x0,0xff,0xff,0x9d,0x90,0x1,0x4, - 0xff,0xff,0x8f,0x80,0x0,0x8,0xff,0xff,0x9d,0x90,0x1,0xc,0xff,0xff,0x9d,0x90, - 0x1,0x10,0xff,0xff,0x9d,0x90,0x0,0x14,0x4c,0x4d,0x54,0x0,0x50,0x44,0x54,0x0, - 0x50,0x53,0x54,0x0,0x50,0x57,0x54,0x0,0x50,0x50,0x54,0x0,0x4d,0x53,0x54,0x0, - 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0x4d,0x53,0x54, - 0x37,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Porto_Velho - 0x0,0x0,0x2,0x4c, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x1e,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0x96, - 0xaa,0x82,0xe8,0xb8,0xf,0x57,0xf0,0xb8,0xfd,0x4e,0xb0,0xb9,0xf1,0x42,0x40,0xba, - 0xde,0x82,0x30,0xda,0x38,0xbc,0x40,0xda,0xec,0x8,0x40,0xdc,0x19,0xef,0xc0,0xdc, - 0xb9,0x67,0x30,0xdd,0xfb,0x23,0x40,0xde,0x9b,0xec,0x30,0xdf,0xdd,0xa8,0x40,0xe0, - 0x54,0x41,0x30,0xf4,0x98,0xd,0xc0,0xf5,0x5,0x6c,0x30,0xf6,0xc0,0x72,0x40,0xf7, - 0xe,0x2c,0xb0,0xf8,0x51,0x3a,0x40,0xf8,0xc7,0xd3,0x30,0xfa,0xa,0xe0,0xc0,0xfa, - 0xa9,0x6,0xb0,0xfb,0xec,0x14,0x40,0xfc,0x8b,0x8b,0xb0,0x1d,0xc9,0x9c,0x40,0x1e, - 0x78,0xe5,0xb0,0x1f,0xa0,0x43,0xc0,0x20,0x33,0xdd,0xb0,0x21,0x81,0x77,0x40,0x22, - 0xb,0xd6,0xb0,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0xff,0xff,0xc4,0x18,0x0,0x0,0xff,0xff,0xd5,0xd0,0x1,0x4,0xff,0xff,0xc7, - 0xc0,0x0,0x9,0x4c,0x4d,0x54,0x0,0x41,0x4d,0x53,0x54,0x0,0x41,0x4d,0x54,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0, - 0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0x3,0x0,0x0, - 0x0,0xd,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x96,0xaa, - 0x82,0xe8,0xff,0xff,0xff,0xff,0xb8,0xf,0x57,0xf0,0xff,0xff,0xff,0xff,0xb8,0xfd, - 0x4e,0xb0,0xff,0xff,0xff,0xff,0xb9,0xf1,0x42,0x40,0xff,0xff,0xff,0xff,0xba,0xde, - 0x82,0x30,0xff,0xff,0xff,0xff,0xda,0x38,0xbc,0x40,0xff,0xff,0xff,0xff,0xda,0xec, - 0x8,0x40,0xff,0xff,0xff,0xff,0xdc,0x19,0xef,0xc0,0xff,0xff,0xff,0xff,0xdc,0xb9, - 0x67,0x30,0xff,0xff,0xff,0xff,0xdd,0xfb,0x23,0x40,0xff,0xff,0xff,0xff,0xde,0x9b, - 0xec,0x30,0xff,0xff,0xff,0xff,0xdf,0xdd,0xa8,0x40,0xff,0xff,0xff,0xff,0xe0,0x54, - 0x41,0x30,0xff,0xff,0xff,0xff,0xf4,0x98,0xd,0xc0,0xff,0xff,0xff,0xff,0xf5,0x5, - 0x6c,0x30,0xff,0xff,0xff,0xff,0xf6,0xc0,0x72,0x40,0xff,0xff,0xff,0xff,0xf7,0xe, - 0x2c,0xb0,0xff,0xff,0xff,0xff,0xf8,0x51,0x3a,0x40,0xff,0xff,0xff,0xff,0xf8,0xc7, - 0xd3,0x30,0xff,0xff,0xff,0xff,0xfa,0xa,0xe0,0xc0,0xff,0xff,0xff,0xff,0xfa,0xa9, - 0x6,0xb0,0xff,0xff,0xff,0xff,0xfb,0xec,0x14,0x40,0xff,0xff,0xff,0xff,0xfc,0x8b, - 0x8b,0xb0,0x0,0x0,0x0,0x0,0x1d,0xc9,0x9c,0x40,0x0,0x0,0x0,0x0,0x1e,0x78, - 0xe5,0xb0,0x0,0x0,0x0,0x0,0x1f,0xa0,0x43,0xc0,0x0,0x0,0x0,0x0,0x20,0x33, - 0xdd,0xb0,0x0,0x0,0x0,0x0,0x21,0x81,0x77,0x40,0x0,0x0,0x0,0x0,0x22,0xb, - 0xd6,0xb0,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0xff,0xff,0xc4,0x18,0x0,0x0,0xff,0xff,0xd5,0xd0,0x1,0x4,0xff,0xff,0xc7,0xc0, - 0x0,0x9,0x4c,0x4d,0x54,0x0,0x41,0x4d,0x53,0x54,0x0,0x41,0x4d,0x54,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0xa,0x41,0x4d,0x54,0x34,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Grand_Turk - 0x0,0x0,0x5,0x7, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x4c,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0x93, - 0xf,0xb4,0xff,0x11,0x89,0x65,0xf0,0x12,0x79,0x48,0xe0,0x13,0x69,0x47,0xf0,0x14, - 0x59,0x2a,0xe0,0x15,0x49,0x29,0xf0,0x16,0x39,0xc,0xe0,0x17,0x29,0xb,0xf0,0x18, - 0x22,0x29,0x60,0x19,0x8,0xed,0xf0,0x1a,0x2,0xb,0x60,0x1a,0xf2,0xa,0x70,0x1b, - 0xe1,0xed,0x60,0x1c,0xd1,0xec,0x70,0x1d,0xc1,0xcf,0x60,0x1e,0xb1,0xce,0x70,0x1f, - 0xa1,0xb1,0x60,0x20,0x76,0x0,0xf0,0x21,0x81,0x93,0x60,0x22,0x55,0xe2,0xf0,0x23, - 0x6a,0xaf,0xe0,0x24,0x35,0xc4,0xf0,0x25,0x4a,0x91,0xe0,0x26,0x15,0xa6,0xf0,0x27, - 0x2a,0x73,0xe0,0x27,0xfe,0xc3,0x70,0x29,0xa,0x55,0xe0,0x29,0xde,0xa5,0x70,0x2a, - 0xea,0x37,0xe0,0x2b,0xbe,0x87,0x70,0x2c,0xd3,0x54,0x60,0x2d,0x9e,0x69,0x70,0x2e, - 0xb3,0x36,0x60,0x2f,0x7e,0x4b,0x70,0x30,0x93,0x18,0x60,0x31,0x67,0x67,0xf0,0x32, - 0x72,0xfa,0x60,0x33,0x47,0x49,0xf0,0x34,0x52,0xdc,0x60,0x35,0x27,0x2b,0xf0,0x36, - 0x32,0xbe,0x60,0x37,0x7,0xd,0xf0,0x38,0x1b,0xda,0xe0,0x38,0xe6,0xef,0xf0,0x39, - 0xfb,0xbc,0xe0,0x3a,0xc6,0xd1,0xf0,0x3b,0xdb,0x9e,0xe0,0x3c,0xaf,0xee,0x70,0x3d, - 0xbb,0x80,0xe0,0x3e,0x8f,0xd0,0x70,0x3f,0x9b,0x62,0xe0,0x40,0x6f,0xb2,0x70,0x41, - 0x84,0x7f,0x60,0x42,0x4f,0x94,0x70,0x43,0x64,0x61,0x60,0x44,0x2f,0x76,0x70,0x45, - 0x44,0x43,0x60,0x45,0xf3,0xa8,0xf0,0x47,0x2d,0x5f,0xe0,0x47,0xd3,0x8a,0xf0,0x49, - 0xd,0x41,0xe0,0x49,0xb3,0x6c,0xf0,0x4a,0xed,0x23,0xe0,0x4b,0x9c,0x89,0x70,0x4c, - 0xd6,0x40,0x60,0x4d,0x7c,0x6b,0x70,0x4e,0xb6,0x22,0x60,0x4f,0x5c,0x4d,0x70,0x50, - 0x96,0x4,0x60,0x51,0x3c,0x2f,0x70,0x52,0x75,0xe6,0x60,0x53,0x1c,0x11,0x70,0x54, - 0x55,0xc8,0x60,0x54,0xfb,0xf3,0x70,0x56,0x35,0xaa,0x60,0x1,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x4,0xff,0xff,0xbd,0x50,0x0,0x0,0xff,0xff,0xb8, - 0x1,0x0,0x4,0xff,0xff,0xb9,0xb0,0x0,0x8,0xff,0xff,0xc7,0xc0,0x1,0xc,0xff, - 0xff,0xc7,0xc0,0x0,0x10,0x4c,0x4d,0x54,0x0,0x4b,0x4d,0x54,0x0,0x45,0x53,0x54, - 0x0,0x45,0x44,0x54,0x0,0x41,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x4d,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0xf8, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x69,0x87,0x1e,0x30,0xff, - 0xff,0xff,0xff,0x93,0xf,0xb4,0xff,0x0,0x0,0x0,0x0,0x11,0x89,0x65,0xf0,0x0, - 0x0,0x0,0x0,0x12,0x79,0x48,0xe0,0x0,0x0,0x0,0x0,0x13,0x69,0x47,0xf0,0x0, - 0x0,0x0,0x0,0x14,0x59,0x2a,0xe0,0x0,0x0,0x0,0x0,0x15,0x49,0x29,0xf0,0x0, - 0x0,0x0,0x0,0x16,0x39,0xc,0xe0,0x0,0x0,0x0,0x0,0x17,0x29,0xb,0xf0,0x0, - 0x0,0x0,0x0,0x18,0x22,0x29,0x60,0x0,0x0,0x0,0x0,0x19,0x8,0xed,0xf0,0x0, - 0x0,0x0,0x0,0x1a,0x2,0xb,0x60,0x0,0x0,0x0,0x0,0x1a,0xf2,0xa,0x70,0x0, - 0x0,0x0,0x0,0x1b,0xe1,0xed,0x60,0x0,0x0,0x0,0x0,0x1c,0xd1,0xec,0x70,0x0, - 0x0,0x0,0x0,0x1d,0xc1,0xcf,0x60,0x0,0x0,0x0,0x0,0x1e,0xb1,0xce,0x70,0x0, - 0x0,0x0,0x0,0x1f,0xa1,0xb1,0x60,0x0,0x0,0x0,0x0,0x20,0x76,0x0,0xf0,0x0, - 0x0,0x0,0x0,0x21,0x81,0x93,0x60,0x0,0x0,0x0,0x0,0x22,0x55,0xe2,0xf0,0x0, - 0x0,0x0,0x0,0x23,0x6a,0xaf,0xe0,0x0,0x0,0x0,0x0,0x24,0x35,0xc4,0xf0,0x0, - 0x0,0x0,0x0,0x25,0x4a,0x91,0xe0,0x0,0x0,0x0,0x0,0x26,0x15,0xa6,0xf0,0x0, - 0x0,0x0,0x0,0x27,0x2a,0x73,0xe0,0x0,0x0,0x0,0x0,0x27,0xfe,0xc3,0x70,0x0, - 0x0,0x0,0x0,0x29,0xa,0x55,0xe0,0x0,0x0,0x0,0x0,0x29,0xde,0xa5,0x70,0x0, - 0x0,0x0,0x0,0x2a,0xea,0x37,0xe0,0x0,0x0,0x0,0x0,0x2b,0xbe,0x87,0x70,0x0, - 0x0,0x0,0x0,0x2c,0xd3,0x54,0x60,0x0,0x0,0x0,0x0,0x2d,0x9e,0x69,0x70,0x0, - 0x0,0x0,0x0,0x2e,0xb3,0x36,0x60,0x0,0x0,0x0,0x0,0x2f,0x7e,0x4b,0x70,0x0, - 0x0,0x0,0x0,0x30,0x93,0x18,0x60,0x0,0x0,0x0,0x0,0x31,0x67,0x67,0xf0,0x0, - 0x0,0x0,0x0,0x32,0x72,0xfa,0x60,0x0,0x0,0x0,0x0,0x33,0x47,0x49,0xf0,0x0, - 0x0,0x0,0x0,0x34,0x52,0xdc,0x60,0x0,0x0,0x0,0x0,0x35,0x27,0x2b,0xf0,0x0, - 0x0,0x0,0x0,0x36,0x32,0xbe,0x60,0x0,0x0,0x0,0x0,0x37,0x7,0xd,0xf0,0x0, - 0x0,0x0,0x0,0x38,0x1b,0xda,0xe0,0x0,0x0,0x0,0x0,0x38,0xe6,0xef,0xf0,0x0, - 0x0,0x0,0x0,0x39,0xfb,0xbc,0xe0,0x0,0x0,0x0,0x0,0x3a,0xc6,0xd1,0xf0,0x0, - 0x0,0x0,0x0,0x3b,0xdb,0x9e,0xe0,0x0,0x0,0x0,0x0,0x3c,0xaf,0xee,0x70,0x0, - 0x0,0x0,0x0,0x3d,0xbb,0x80,0xe0,0x0,0x0,0x0,0x0,0x3e,0x8f,0xd0,0x70,0x0, - 0x0,0x0,0x0,0x3f,0x9b,0x62,0xe0,0x0,0x0,0x0,0x0,0x40,0x6f,0xb2,0x70,0x0, - 0x0,0x0,0x0,0x41,0x84,0x7f,0x60,0x0,0x0,0x0,0x0,0x42,0x4f,0x94,0x70,0x0, - 0x0,0x0,0x0,0x43,0x64,0x61,0x60,0x0,0x0,0x0,0x0,0x44,0x2f,0x76,0x70,0x0, - 0x0,0x0,0x0,0x45,0x44,0x43,0x60,0x0,0x0,0x0,0x0,0x45,0xf3,0xa8,0xf0,0x0, - 0x0,0x0,0x0,0x47,0x2d,0x5f,0xe0,0x0,0x0,0x0,0x0,0x47,0xd3,0x8a,0xf0,0x0, - 0x0,0x0,0x0,0x49,0xd,0x41,0xe0,0x0,0x0,0x0,0x0,0x49,0xb3,0x6c,0xf0,0x0, - 0x0,0x0,0x0,0x4a,0xed,0x23,0xe0,0x0,0x0,0x0,0x0,0x4b,0x9c,0x89,0x70,0x0, - 0x0,0x0,0x0,0x4c,0xd6,0x40,0x60,0x0,0x0,0x0,0x0,0x4d,0x7c,0x6b,0x70,0x0, - 0x0,0x0,0x0,0x4e,0xb6,0x22,0x60,0x0,0x0,0x0,0x0,0x4f,0x5c,0x4d,0x70,0x0, - 0x0,0x0,0x0,0x50,0x96,0x4,0x60,0x0,0x0,0x0,0x0,0x51,0x3c,0x2f,0x70,0x0, - 0x0,0x0,0x0,0x52,0x75,0xe6,0x60,0x0,0x0,0x0,0x0,0x53,0x1c,0x11,0x70,0x0, - 0x0,0x0,0x0,0x54,0x55,0xc8,0x60,0x0,0x0,0x0,0x0,0x54,0xfb,0xf3,0x70,0x0, - 0x0,0x0,0x0,0x56,0x35,0xaa,0x60,0x0,0x1,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x4,0xff,0xff,0xbd,0x50,0x0,0x0,0xff,0xff,0xb8,0x1,0x0,0x4, - 0xff,0xff,0xb9,0xb0,0x0,0x8,0xff,0xff,0xc7,0xc0,0x1,0xc,0xff,0xff,0xc7,0xc0, - 0x0,0x10,0x4c,0x4d,0x54,0x0,0x4b,0x4d,0x54,0x0,0x45,0x53,0x54,0x0,0x45,0x44, - 0x54,0x0,0x41,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0xa,0x41,0x53,0x54,0x34,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Tegucigalpa - 0x0,0x0,0x1,0x16, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x8,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0xa4, - 0x4c,0x4b,0x44,0x20,0x9a,0xdc,0xe0,0x21,0x5c,0x9b,0x50,0x22,0x7a,0xbe,0xe0,0x23, - 0x3c,0x7d,0x50,0x44,0x5d,0x8c,0xe0,0x44,0xd6,0xc8,0xd0,0x0,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0xff,0xff,0xae,0x3c,0x0,0x0,0xff,0xff,0xb9,0xb0,0x1,0x4,0xff, - 0xff,0xab,0xa0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x43,0x44,0x54,0x0,0x43,0x53,0x54, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0, - 0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x3,0x0, - 0x0,0x0,0xc,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xa4, - 0x4c,0x4b,0x44,0x0,0x0,0x0,0x0,0x20,0x9a,0xdc,0xe0,0x0,0x0,0x0,0x0,0x21, - 0x5c,0x9b,0x50,0x0,0x0,0x0,0x0,0x22,0x7a,0xbe,0xe0,0x0,0x0,0x0,0x0,0x23, - 0x3c,0x7d,0x50,0x0,0x0,0x0,0x0,0x44,0x5d,0x8c,0xe0,0x0,0x0,0x0,0x0,0x44, - 0xd6,0xc8,0xd0,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0xae,0x3c,0x0, - 0x0,0xff,0xff,0xb9,0xb0,0x1,0x4,0xff,0xff,0xab,0xa0,0x0,0x8,0x4c,0x4d,0x54, - 0x0,0x43,0x44,0x54,0x0,0x43,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa, - 0x43,0x53,0x54,0x36,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Santa_Isabel - 0x0,0x0,0x9,0x34, + 0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x2,0x2,0xff,0xff,0xc0,0x70,0x0,0x0,0xff, + 0xff,0xc7,0xc0,0x1,0x4,0xff,0xff,0xb9,0xb0,0x0,0x8,0xff,0xff,0xc7,0xc0,0x0, + 0x4,0xff,0xff,0xb9,0xb0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x2d,0x30,0x34,0x0,0x2d, + 0x30,0x35,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2d, + 0x30,0x35,0x3e,0x35,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Tijuana + 0x0,0x0,0x9,0x34, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, @@ -20703,37 +16709,7 @@ static const unsigned char qt_resource_data[] = { 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0xa,0x50,0x53,0x54,0x38, 0x50,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31, 0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Montserrat - 0x0,0x0,0x0,0xaa, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x93, - 0x37,0x33,0xac,0x0,0x1,0xff,0xff,0xc6,0x54,0x0,0x0,0xff,0xff,0xc7,0xc0,0x0, - 0x4,0x4c,0x4d,0x54,0x0,0x41,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, - 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0x93,0x37,0x33,0xac,0x0,0x1,0xff,0xff,0xc6,0x54,0x0, - 0x0,0xff,0xff,0xc7,0xc0,0x0,0x4,0x4c,0x4d,0x54,0x0,0x41,0x53,0x54,0x0,0x0, - 0x0,0x0,0x0,0xa,0x41,0x53,0x54,0x34,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Curacao - 0x0,0x0,0x0,0xd0, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0x93, - 0x1e,0x2e,0x23,0xf6,0x98,0xec,0x48,0x0,0x1,0x2,0xff,0xff,0xbf,0x5d,0x0,0x0, - 0xff,0xff,0xc0,0xb8,0x0,0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0x4c,0x4d,0x54,0x0, - 0x41,0x4e,0x54,0x0,0x41,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a, - 0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0xf8,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xff,0xff,0xff,0xff,0x93,0x1e,0x2e,0x23,0xff,0xff,0xff,0xff,0xf6,0x98, - 0xec,0x48,0x0,0x1,0x2,0xff,0xff,0xbf,0x5d,0x0,0x0,0xff,0xff,0xc0,0xb8,0x0, - 0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x41,0x4e,0x54,0x0,0x41, - 0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x41,0x53,0x54,0x34,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/St_Vincent + // /home/konrad/src/smoke/tzone/zoneinfo/America/Grenada 0x0,0x0,0x0,0xaa, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, @@ -20747,968 +16723,1483 @@ static const unsigned char qt_resource_data[] = { 0x0,0xff,0xff,0xff,0xff,0x93,0x37,0x33,0xac,0x0,0x1,0xff,0xff,0xc6,0x54,0x0, 0x0,0xff,0xff,0xc7,0xc0,0x0,0x4,0x4c,0x4d,0x54,0x0,0x41,0x53,0x54,0x0,0x0, 0x0,0x0,0x0,0xa,0x41,0x53,0x54,0x34,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Los_Angeles - 0x0,0x0,0xb,0x1d, + // /home/konrad/src/smoke/tzone/zoneinfo/America/St_Johns + 0x0,0x0,0xe,0x50, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xba,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0x9e, - 0xa6,0x48,0xa0,0x9f,0xbb,0x15,0x90,0xa0,0x86,0x2a,0xa0,0xa1,0x9a,0xf7,0x90,0xcb, - 0x89,0x1a,0xa0,0xd2,0x23,0xf4,0x70,0xd2,0x61,0x26,0x10,0xd6,0xfe,0x74,0x5c,0xd8, - 0x80,0xad,0x90,0xda,0xfe,0xc3,0x90,0xdb,0xc0,0x90,0x10,0xdc,0xde,0xa5,0x90,0xdd, - 0xa9,0xac,0x90,0xde,0xbe,0x87,0x90,0xdf,0x89,0x8e,0x90,0xe0,0x9e,0x69,0x90,0xe1, - 0x69,0x70,0x90,0xe2,0x7e,0x4b,0x90,0xe3,0x49,0x52,0x90,0xe4,0x5e,0x2d,0x90,0xe5, - 0x29,0x34,0x90,0xe6,0x47,0x4a,0x10,0xe7,0x12,0x51,0x10,0xe8,0x27,0x2c,0x10,0xe8, - 0xf2,0x33,0x10,0xea,0x7,0xe,0x10,0xea,0xd2,0x15,0x10,0xeb,0xe6,0xf0,0x10,0xec, - 0xb1,0xf7,0x10,0xed,0xc6,0xd2,0x10,0xee,0x91,0xd9,0x10,0xef,0xaf,0xee,0x90,0xf0, - 0x71,0xbb,0x10,0xf1,0x8f,0xd0,0x90,0xf2,0x7f,0xc1,0x90,0xf3,0x6f,0xb2,0x90,0xf4, - 0x5f,0xa3,0x90,0xf5,0x4f,0x94,0x90,0xf6,0x3f,0x85,0x90,0xf7,0x2f,0x76,0x90,0xf8, - 0x28,0xa2,0x10,0xf9,0xf,0x58,0x90,0xfa,0x8,0x84,0x10,0xfa,0xf8,0x83,0x20,0xfb, - 0xe8,0x66,0x10,0xfc,0xd8,0x65,0x20,0xfd,0xc8,0x48,0x10,0xfe,0xb8,0x47,0x20,0xff, - 0xa8,0x2a,0x10,0x0,0x98,0x29,0x20,0x1,0x88,0xc,0x10,0x2,0x78,0xb,0x20,0x3, - 0x71,0x28,0x90,0x4,0x61,0x27,0xa0,0x5,0x51,0xa,0x90,0x6,0x41,0x9,0xa0,0x7, - 0x30,0xec,0x90,0x7,0x8d,0x43,0xa0,0x9,0x10,0xce,0x90,0x9,0xad,0xbf,0x20,0xa, - 0xf0,0xb0,0x90,0xb,0xe0,0xaf,0xa0,0xc,0xd9,0xcd,0x10,0xd,0xc0,0x91,0xa0,0xe, - 0xb9,0xaf,0x10,0xf,0xa9,0xae,0x20,0x10,0x99,0x91,0x10,0x11,0x89,0x90,0x20,0x12, - 0x79,0x73,0x10,0x13,0x69,0x72,0x20,0x14,0x59,0x55,0x10,0x15,0x49,0x54,0x20,0x16, - 0x39,0x37,0x10,0x17,0x29,0x36,0x20,0x18,0x22,0x53,0x90,0x19,0x9,0x18,0x20,0x1a, - 0x2,0x35,0x90,0x1a,0xf2,0x34,0xa0,0x1b,0xe2,0x17,0x90,0x1c,0xd2,0x16,0xa0,0x1d, - 0xc1,0xf9,0x90,0x1e,0xb1,0xf8,0xa0,0x1f,0xa1,0xdb,0x90,0x20,0x76,0x2b,0x20,0x21, - 0x81,0xbd,0x90,0x22,0x56,0xd,0x20,0x23,0x6a,0xda,0x10,0x24,0x35,0xef,0x20,0x25, - 0x4a,0xbc,0x10,0x26,0x15,0xd1,0x20,0x27,0x2a,0x9e,0x10,0x27,0xfe,0xed,0xa0,0x29, - 0xa,0x80,0x10,0x29,0xde,0xcf,0xa0,0x2a,0xea,0x62,0x10,0x2b,0xbe,0xb1,0xa0,0x2c, - 0xd3,0x7e,0x90,0x2d,0x9e,0x93,0xa0,0x2e,0xb3,0x60,0x90,0x2f,0x7e,0x75,0xa0,0x30, - 0x93,0x42,0x90,0x31,0x67,0x92,0x20,0x32,0x73,0x24,0x90,0x33,0x47,0x74,0x20,0x34, - 0x53,0x6,0x90,0x35,0x27,0x56,0x20,0x36,0x32,0xe8,0x90,0x37,0x7,0x38,0x20,0x38, - 0x1c,0x5,0x10,0x38,0xe7,0x1a,0x20,0x39,0xfb,0xe7,0x10,0x3a,0xc6,0xfc,0x20,0x3b, - 0xdb,0xc9,0x10,0x3c,0xb0,0x18,0xa0,0x3d,0xbb,0xab,0x10,0x3e,0x8f,0xfa,0xa0,0x3f, - 0x9b,0x8d,0x10,0x40,0x6f,0xdc,0xa0,0x41,0x84,0xa9,0x90,0x42,0x4f,0xbe,0xa0,0x43, - 0x64,0x8b,0x90,0x44,0x2f,0xa0,0xa0,0x45,0x44,0x6d,0x90,0x45,0xf3,0xd3,0x20,0x47, - 0x2d,0x8a,0x10,0x47,0xd3,0xb5,0x20,0x49,0xd,0x6c,0x10,0x49,0xb3,0x97,0x20,0x4a, - 0xed,0x4e,0x10,0x4b,0x9c,0xb3,0xa0,0x4c,0xd6,0x6a,0x90,0x4d,0x7c,0x95,0xa0,0x4e, - 0xb6,0x4c,0x90,0x4f,0x5c,0x77,0xa0,0x50,0x96,0x2e,0x90,0x51,0x3c,0x59,0xa0,0x52, - 0x76,0x10,0x90,0x53,0x1c,0x3b,0xa0,0x54,0x55,0xf2,0x90,0x54,0xfc,0x1d,0xa0,0x56, - 0x35,0xd4,0x90,0x56,0xe5,0x3a,0x20,0x58,0x1e,0xf1,0x10,0x58,0xc5,0x1c,0x20,0x59, - 0xfe,0xd3,0x10,0x5a,0xa4,0xfe,0x20,0x5b,0xde,0xb5,0x10,0x5c,0x84,0xe0,0x20,0x5d, - 0xbe,0x97,0x10,0x5e,0x64,0xc2,0x20,0x5f,0x9e,0x79,0x10,0x60,0x4d,0xde,0xa0,0x61, - 0x87,0x95,0x90,0x62,0x2d,0xc0,0xa0,0x63,0x67,0x77,0x90,0x64,0xd,0xa2,0xa0,0x65, - 0x47,0x59,0x90,0x65,0xed,0x84,0xa0,0x67,0x27,0x3b,0x90,0x67,0xcd,0x66,0xa0,0x69, - 0x7,0x1d,0x90,0x69,0xad,0x48,0xa0,0x6a,0xe6,0xff,0x90,0x6b,0x96,0x65,0x20,0x6c, - 0xd0,0x1c,0x10,0x6d,0x76,0x47,0x20,0x6e,0xaf,0xfe,0x10,0x6f,0x56,0x29,0x20,0x70, - 0x8f,0xe0,0x10,0x71,0x36,0xb,0x20,0x72,0x6f,0xc2,0x10,0x73,0x15,0xed,0x20,0x74, - 0x4f,0xa4,0x10,0x74,0xff,0x9,0xa0,0x76,0x38,0xc0,0x90,0x76,0xde,0xeb,0xa0,0x78, - 0x18,0xa2,0x90,0x78,0xbe,0xcd,0xa0,0x79,0xf8,0x84,0x90,0x7a,0x9e,0xaf,0xa0,0x7b, - 0xd8,0x66,0x90,0x7c,0x7e,0x91,0xa0,0x7d,0xb8,0x48,0x90,0x7e,0x5e,0x73,0xa0,0x7f, - 0x98,0x2a,0x90,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0x91, - 0x26,0x0,0x0,0xff,0xff,0x9d,0x90,0x1,0x4,0xff,0xff,0x8f,0x80,0x0,0x8,0xff, - 0xff,0x9d,0x90,0x1,0xc,0xff,0xff,0x9d,0x90,0x1,0x10,0x4c,0x4d,0x54,0x0,0x50, - 0x44,0x54,0x0,0x50,0x53,0x54,0x0,0x50,0x57,0x54,0x0,0x50,0x50,0x54,0x0,0x0, - 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x1,0x54,0x5a,0x69,0x66,0x32,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbb,0x0,0x0,0x0, - 0x5,0x0,0x0,0x0,0x14,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff, - 0xff,0x5e,0x4,0x1a,0xc0,0xff,0xff,0xff,0xff,0x9e,0xa6,0x48,0xa0,0xff,0xff,0xff, - 0xff,0x9f,0xbb,0x15,0x90,0xff,0xff,0xff,0xff,0xa0,0x86,0x2a,0xa0,0xff,0xff,0xff, - 0xff,0xa1,0x9a,0xf7,0x90,0xff,0xff,0xff,0xff,0xcb,0x89,0x1a,0xa0,0xff,0xff,0xff, - 0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x61,0x26,0x10,0xff,0xff,0xff, - 0xff,0xd6,0xfe,0x74,0x5c,0xff,0xff,0xff,0xff,0xd8,0x80,0xad,0x90,0xff,0xff,0xff, - 0xff,0xda,0xfe,0xc3,0x90,0xff,0xff,0xff,0xff,0xdb,0xc0,0x90,0x10,0xff,0xff,0xff, - 0xff,0xdc,0xde,0xa5,0x90,0xff,0xff,0xff,0xff,0xdd,0xa9,0xac,0x90,0xff,0xff,0xff, - 0xff,0xde,0xbe,0x87,0x90,0xff,0xff,0xff,0xff,0xdf,0x89,0x8e,0x90,0xff,0xff,0xff, - 0xff,0xe0,0x9e,0x69,0x90,0xff,0xff,0xff,0xff,0xe1,0x69,0x70,0x90,0xff,0xff,0xff, - 0xff,0xe2,0x7e,0x4b,0x90,0xff,0xff,0xff,0xff,0xe3,0x49,0x52,0x90,0xff,0xff,0xff, - 0xff,0xe4,0x5e,0x2d,0x90,0xff,0xff,0xff,0xff,0xe5,0x29,0x34,0x90,0xff,0xff,0xff, - 0xff,0xe6,0x47,0x4a,0x10,0xff,0xff,0xff,0xff,0xe7,0x12,0x51,0x10,0xff,0xff,0xff, - 0xff,0xe8,0x27,0x2c,0x10,0xff,0xff,0xff,0xff,0xe8,0xf2,0x33,0x10,0xff,0xff,0xff, - 0xff,0xea,0x7,0xe,0x10,0xff,0xff,0xff,0xff,0xea,0xd2,0x15,0x10,0xff,0xff,0xff, - 0xff,0xeb,0xe6,0xf0,0x10,0xff,0xff,0xff,0xff,0xec,0xb1,0xf7,0x10,0xff,0xff,0xff, - 0xff,0xed,0xc6,0xd2,0x10,0xff,0xff,0xff,0xff,0xee,0x91,0xd9,0x10,0xff,0xff,0xff, - 0xff,0xef,0xaf,0xee,0x90,0xff,0xff,0xff,0xff,0xf0,0x71,0xbb,0x10,0xff,0xff,0xff, - 0xff,0xf1,0x8f,0xd0,0x90,0xff,0xff,0xff,0xff,0xf2,0x7f,0xc1,0x90,0xff,0xff,0xff, - 0xff,0xf3,0x6f,0xb2,0x90,0xff,0xff,0xff,0xff,0xf4,0x5f,0xa3,0x90,0xff,0xff,0xff, - 0xff,0xf5,0x4f,0x94,0x90,0xff,0xff,0xff,0xff,0xf6,0x3f,0x85,0x90,0xff,0xff,0xff, - 0xff,0xf7,0x2f,0x76,0x90,0xff,0xff,0xff,0xff,0xf8,0x28,0xa2,0x10,0xff,0xff,0xff, - 0xff,0xf9,0xf,0x58,0x90,0xff,0xff,0xff,0xff,0xfa,0x8,0x84,0x10,0xff,0xff,0xff, - 0xff,0xfa,0xf8,0x83,0x20,0xff,0xff,0xff,0xff,0xfb,0xe8,0x66,0x10,0xff,0xff,0xff, - 0xff,0xfc,0xd8,0x65,0x20,0xff,0xff,0xff,0xff,0xfd,0xc8,0x48,0x10,0xff,0xff,0xff, - 0xff,0xfe,0xb8,0x47,0x20,0xff,0xff,0xff,0xff,0xff,0xa8,0x2a,0x10,0x0,0x0,0x0, - 0x0,0x0,0x98,0x29,0x20,0x0,0x0,0x0,0x0,0x1,0x88,0xc,0x10,0x0,0x0,0x0, - 0x0,0x2,0x78,0xb,0x20,0x0,0x0,0x0,0x0,0x3,0x71,0x28,0x90,0x0,0x0,0x0, - 0x0,0x4,0x61,0x27,0xa0,0x0,0x0,0x0,0x0,0x5,0x51,0xa,0x90,0x0,0x0,0x0, - 0x0,0x6,0x41,0x9,0xa0,0x0,0x0,0x0,0x0,0x7,0x30,0xec,0x90,0x0,0x0,0x0, - 0x0,0x7,0x8d,0x43,0xa0,0x0,0x0,0x0,0x0,0x9,0x10,0xce,0x90,0x0,0x0,0x0, - 0x0,0x9,0xad,0xbf,0x20,0x0,0x0,0x0,0x0,0xa,0xf0,0xb0,0x90,0x0,0x0,0x0, - 0x0,0xb,0xe0,0xaf,0xa0,0x0,0x0,0x0,0x0,0xc,0xd9,0xcd,0x10,0x0,0x0,0x0, - 0x0,0xd,0xc0,0x91,0xa0,0x0,0x0,0x0,0x0,0xe,0xb9,0xaf,0x10,0x0,0x0,0x0, - 0x0,0xf,0xa9,0xae,0x20,0x0,0x0,0x0,0x0,0x10,0x99,0x91,0x10,0x0,0x0,0x0, - 0x0,0x11,0x89,0x90,0x20,0x0,0x0,0x0,0x0,0x12,0x79,0x73,0x10,0x0,0x0,0x0, - 0x0,0x13,0x69,0x72,0x20,0x0,0x0,0x0,0x0,0x14,0x59,0x55,0x10,0x0,0x0,0x0, - 0x0,0x15,0x49,0x54,0x20,0x0,0x0,0x0,0x0,0x16,0x39,0x37,0x10,0x0,0x0,0x0, - 0x0,0x17,0x29,0x36,0x20,0x0,0x0,0x0,0x0,0x18,0x22,0x53,0x90,0x0,0x0,0x0, - 0x0,0x19,0x9,0x18,0x20,0x0,0x0,0x0,0x0,0x1a,0x2,0x35,0x90,0x0,0x0,0x0, - 0x0,0x1a,0xf2,0x34,0xa0,0x0,0x0,0x0,0x0,0x1b,0xe2,0x17,0x90,0x0,0x0,0x0, - 0x0,0x1c,0xd2,0x16,0xa0,0x0,0x0,0x0,0x0,0x1d,0xc1,0xf9,0x90,0x0,0x0,0x0, - 0x0,0x1e,0xb1,0xf8,0xa0,0x0,0x0,0x0,0x0,0x1f,0xa1,0xdb,0x90,0x0,0x0,0x0, - 0x0,0x20,0x76,0x2b,0x20,0x0,0x0,0x0,0x0,0x21,0x81,0xbd,0x90,0x0,0x0,0x0, - 0x0,0x22,0x56,0xd,0x20,0x0,0x0,0x0,0x0,0x23,0x6a,0xda,0x10,0x0,0x0,0x0, - 0x0,0x24,0x35,0xef,0x20,0x0,0x0,0x0,0x0,0x25,0x4a,0xbc,0x10,0x0,0x0,0x0, - 0x0,0x26,0x15,0xd1,0x20,0x0,0x0,0x0,0x0,0x27,0x2a,0x9e,0x10,0x0,0x0,0x0, - 0x0,0x27,0xfe,0xed,0xa0,0x0,0x0,0x0,0x0,0x29,0xa,0x80,0x10,0x0,0x0,0x0, - 0x0,0x29,0xde,0xcf,0xa0,0x0,0x0,0x0,0x0,0x2a,0xea,0x62,0x10,0x0,0x0,0x0, - 0x0,0x2b,0xbe,0xb1,0xa0,0x0,0x0,0x0,0x0,0x2c,0xd3,0x7e,0x90,0x0,0x0,0x0, - 0x0,0x2d,0x9e,0x93,0xa0,0x0,0x0,0x0,0x0,0x2e,0xb3,0x60,0x90,0x0,0x0,0x0, - 0x0,0x2f,0x7e,0x75,0xa0,0x0,0x0,0x0,0x0,0x30,0x93,0x42,0x90,0x0,0x0,0x0, - 0x0,0x31,0x67,0x92,0x20,0x0,0x0,0x0,0x0,0x32,0x73,0x24,0x90,0x0,0x0,0x0, - 0x0,0x33,0x47,0x74,0x20,0x0,0x0,0x0,0x0,0x34,0x53,0x6,0x90,0x0,0x0,0x0, - 0x0,0x35,0x27,0x56,0x20,0x0,0x0,0x0,0x0,0x36,0x32,0xe8,0x90,0x0,0x0,0x0, - 0x0,0x37,0x7,0x38,0x20,0x0,0x0,0x0,0x0,0x38,0x1c,0x5,0x10,0x0,0x0,0x0, - 0x0,0x38,0xe7,0x1a,0x20,0x0,0x0,0x0,0x0,0x39,0xfb,0xe7,0x10,0x0,0x0,0x0, - 0x0,0x3a,0xc6,0xfc,0x20,0x0,0x0,0x0,0x0,0x3b,0xdb,0xc9,0x10,0x0,0x0,0x0, - 0x0,0x3c,0xb0,0x18,0xa0,0x0,0x0,0x0,0x0,0x3d,0xbb,0xab,0x10,0x0,0x0,0x0, - 0x0,0x3e,0x8f,0xfa,0xa0,0x0,0x0,0x0,0x0,0x3f,0x9b,0x8d,0x10,0x0,0x0,0x0, - 0x0,0x40,0x6f,0xdc,0xa0,0x0,0x0,0x0,0x0,0x41,0x84,0xa9,0x90,0x0,0x0,0x0, - 0x0,0x42,0x4f,0xbe,0xa0,0x0,0x0,0x0,0x0,0x43,0x64,0x8b,0x90,0x0,0x0,0x0, - 0x0,0x44,0x2f,0xa0,0xa0,0x0,0x0,0x0,0x0,0x45,0x44,0x6d,0x90,0x0,0x0,0x0, - 0x0,0x45,0xf3,0xd3,0x20,0x0,0x0,0x0,0x0,0x47,0x2d,0x8a,0x10,0x0,0x0,0x0, - 0x0,0x47,0xd3,0xb5,0x20,0x0,0x0,0x0,0x0,0x49,0xd,0x6c,0x10,0x0,0x0,0x0, - 0x0,0x49,0xb3,0x97,0x20,0x0,0x0,0x0,0x0,0x4a,0xed,0x4e,0x10,0x0,0x0,0x0, - 0x0,0x4b,0x9c,0xb3,0xa0,0x0,0x0,0x0,0x0,0x4c,0xd6,0x6a,0x90,0x0,0x0,0x0, - 0x0,0x4d,0x7c,0x95,0xa0,0x0,0x0,0x0,0x0,0x4e,0xb6,0x4c,0x90,0x0,0x0,0x0, - 0x0,0x4f,0x5c,0x77,0xa0,0x0,0x0,0x0,0x0,0x50,0x96,0x2e,0x90,0x0,0x0,0x0, - 0x0,0x51,0x3c,0x59,0xa0,0x0,0x0,0x0,0x0,0x52,0x76,0x10,0x90,0x0,0x0,0x0, - 0x0,0x53,0x1c,0x3b,0xa0,0x0,0x0,0x0,0x0,0x54,0x55,0xf2,0x90,0x0,0x0,0x0, - 0x0,0x54,0xfc,0x1d,0xa0,0x0,0x0,0x0,0x0,0x56,0x35,0xd4,0x90,0x0,0x0,0x0, - 0x0,0x56,0xe5,0x3a,0x20,0x0,0x0,0x0,0x0,0x58,0x1e,0xf1,0x10,0x0,0x0,0x0, - 0x0,0x58,0xc5,0x1c,0x20,0x0,0x0,0x0,0x0,0x59,0xfe,0xd3,0x10,0x0,0x0,0x0, - 0x0,0x5a,0xa4,0xfe,0x20,0x0,0x0,0x0,0x0,0x5b,0xde,0xb5,0x10,0x0,0x0,0x0, - 0x0,0x5c,0x84,0xe0,0x20,0x0,0x0,0x0,0x0,0x5d,0xbe,0x97,0x10,0x0,0x0,0x0, - 0x0,0x5e,0x64,0xc2,0x20,0x0,0x0,0x0,0x0,0x5f,0x9e,0x79,0x10,0x0,0x0,0x0, - 0x0,0x60,0x4d,0xde,0xa0,0x0,0x0,0x0,0x0,0x61,0x87,0x95,0x90,0x0,0x0,0x0, - 0x0,0x62,0x2d,0xc0,0xa0,0x0,0x0,0x0,0x0,0x63,0x67,0x77,0x90,0x0,0x0,0x0, - 0x0,0x64,0xd,0xa2,0xa0,0x0,0x0,0x0,0x0,0x65,0x47,0x59,0x90,0x0,0x0,0x0, - 0x0,0x65,0xed,0x84,0xa0,0x0,0x0,0x0,0x0,0x67,0x27,0x3b,0x90,0x0,0x0,0x0, - 0x0,0x67,0xcd,0x66,0xa0,0x0,0x0,0x0,0x0,0x69,0x7,0x1d,0x90,0x0,0x0,0x0, - 0x0,0x69,0xad,0x48,0xa0,0x0,0x0,0x0,0x0,0x6a,0xe6,0xff,0x90,0x0,0x0,0x0, - 0x0,0x6b,0x96,0x65,0x20,0x0,0x0,0x0,0x0,0x6c,0xd0,0x1c,0x10,0x0,0x0,0x0, - 0x0,0x6d,0x76,0x47,0x20,0x0,0x0,0x0,0x0,0x6e,0xaf,0xfe,0x10,0x0,0x0,0x0, - 0x0,0x6f,0x56,0x29,0x20,0x0,0x0,0x0,0x0,0x70,0x8f,0xe0,0x10,0x0,0x0,0x0, - 0x0,0x71,0x36,0xb,0x20,0x0,0x0,0x0,0x0,0x72,0x6f,0xc2,0x10,0x0,0x0,0x0, - 0x0,0x73,0x15,0xed,0x20,0x0,0x0,0x0,0x0,0x74,0x4f,0xa4,0x10,0x0,0x0,0x0, - 0x0,0x74,0xff,0x9,0xa0,0x0,0x0,0x0,0x0,0x76,0x38,0xc0,0x90,0x0,0x0,0x0, - 0x0,0x76,0xde,0xeb,0xa0,0x0,0x0,0x0,0x0,0x78,0x18,0xa2,0x90,0x0,0x0,0x0, - 0x0,0x78,0xbe,0xcd,0xa0,0x0,0x0,0x0,0x0,0x79,0xf8,0x84,0x90,0x0,0x0,0x0, - 0x0,0x7a,0x9e,0xaf,0xa0,0x0,0x0,0x0,0x0,0x7b,0xd8,0x66,0x90,0x0,0x0,0x0, - 0x0,0x7c,0x7e,0x91,0xa0,0x0,0x0,0x0,0x0,0x7d,0xb8,0x48,0x90,0x0,0x0,0x0, - 0x0,0x7e,0x5e,0x73,0xa0,0x0,0x0,0x0,0x0,0x7f,0x98,0x2a,0x90,0x0,0x2,0x1, - 0x2,0x1,0x2,0x3,0x4,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x0,0x0,0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xef,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x19,0x80,0x0,0x0,0x0,0x9c, + 0xcf,0x62,0xc,0x9d,0xa4,0xe6,0xfc,0x9e,0xb8,0x7e,0x8c,0x9f,0xba,0xd6,0x7c,0xa0, + 0xb6,0x88,0xdc,0xa1,0x38,0xff,0x4c,0xa2,0x95,0x19,0x5c,0xa3,0x84,0xfc,0x4c,0xa4, + 0x74,0xfb,0x5c,0xa5,0x64,0xde,0x4c,0xa6,0x5e,0x17,0xdc,0xa7,0x44,0xc0,0x4c,0xa8, + 0x3d,0xf9,0xdc,0xa9,0x24,0xa2,0x4c,0xaa,0x1d,0xdb,0xdc,0xab,0x4,0x84,0x4c,0xab, + 0xfd,0xbd,0xdc,0xac,0xe4,0x66,0x4c,0xad,0xdd,0x9f,0xdc,0xae,0xcd,0x82,0xcc,0xaf, + 0xbd,0x81,0xdc,0xb0,0xad,0x64,0xcc,0xb1,0xa6,0x9e,0x5c,0xb2,0x8d,0x46,0xcc,0xb3, + 0x86,0x80,0x5c,0xb4,0x6d,0x28,0xcc,0xb5,0x66,0x62,0x5c,0xb6,0x4d,0xa,0xcc,0xb7, + 0x46,0x44,0x5c,0xb8,0x2c,0xec,0xcc,0xb9,0x26,0x26,0x5c,0xba,0x16,0x9,0x4c,0xbb, + 0xf,0x42,0xdc,0xbb,0xf5,0xeb,0x4c,0xbc,0xef,0x24,0xdc,0xbd,0xd5,0xcd,0x4c,0xbe, + 0x9e,0x4d,0x6c,0xbe,0xcf,0x6,0xa8,0xbf,0xb5,0xaf,0x18,0xc0,0xb8,0x31,0x38,0xc1, + 0x79,0xef,0xa8,0xc2,0x98,0x13,0x38,0xc3,0x59,0xd1,0xa8,0xc4,0x77,0xf5,0x38,0xc5, + 0x39,0xb3,0xa8,0xc6,0x61,0x11,0xb8,0xc7,0x19,0x95,0xa8,0xc8,0x40,0xf3,0xb8,0xc9, + 0x2,0xb2,0x28,0xca,0x20,0xd5,0xb8,0xca,0xe2,0x94,0x28,0xcc,0x0,0xb7,0xb8,0xd2, + 0x23,0xf4,0x70,0xd2,0x60,0xe6,0xc8,0xd3,0x88,0x44,0xd8,0xd4,0x4a,0x3,0x48,0xd5, + 0x68,0x26,0xd8,0xd6,0x29,0xe5,0x48,0xd7,0x48,0x8,0xd8,0xd8,0x9,0xc7,0x48,0xd9, + 0x27,0xea,0xd8,0xd9,0xe9,0xa9,0x48,0xdb,0x11,0x7,0x58,0xdb,0xd2,0xc5,0xc8,0xdc, + 0xde,0x74,0x58,0xdd,0xa9,0x6d,0x48,0xde,0xbe,0x56,0x58,0xdf,0x89,0x4f,0x48,0xe0, + 0x9e,0x38,0x58,0xe1,0x69,0x31,0x48,0xe2,0x7e,0x1a,0x58,0xe3,0x49,0x13,0x48,0xe4, + 0x5d,0xfc,0x58,0xe5,0x28,0xf5,0x48,0xe6,0x47,0x18,0xd8,0xe7,0x12,0x11,0xc8,0xe8, + 0x26,0xfa,0xd8,0xe8,0xf1,0xf3,0xc8,0xea,0x6,0xdc,0xd8,0xea,0xd1,0xd5,0xc8,0xeb, + 0xe6,0xbe,0xd8,0xec,0xb1,0xb7,0xc8,0xed,0xc6,0xa0,0xd8,0xee,0xbf,0xbe,0x48,0xef, + 0xaf,0xbd,0x58,0xf0,0x9f,0xa0,0x48,0xf1,0x8f,0x9f,0x58,0xf2,0x7f,0x82,0x48,0xf3, + 0x6f,0x81,0x58,0xf4,0x5f,0x64,0x48,0xf5,0x4f,0x63,0x58,0xf6,0x3f,0x46,0x48,0xf7, + 0x2f,0x45,0x58,0xf8,0x28,0x62,0xc8,0xf9,0xf,0x27,0x58,0xfa,0x8,0x44,0xc8,0xfa, + 0xf8,0x43,0xd8,0xfb,0xe8,0x26,0xc8,0xfc,0xd8,0x25,0xd8,0xfd,0xc8,0x8,0xc8,0xfe, + 0xb8,0x7,0xd8,0xff,0xa7,0xea,0xc8,0x0,0x97,0xe9,0xd8,0x1,0x87,0xcc,0xc8,0x2, + 0x77,0xcb,0xd8,0x3,0x70,0xe9,0x48,0x4,0x60,0xe8,0x58,0x5,0x50,0xcb,0x48,0x6, + 0x40,0xca,0x58,0x7,0x30,0xad,0x48,0x8,0x20,0xac,0x58,0x9,0x10,0x8f,0x48,0xa, + 0x0,0x8e,0x58,0xa,0xf0,0x71,0x48,0xb,0xe0,0x70,0x58,0xc,0xd9,0x8d,0xc8,0xd, + 0xc0,0x52,0x58,0xe,0xb9,0x6f,0xc8,0xf,0xa9,0x6e,0xd8,0x10,0x99,0x51,0xc8,0x11, + 0x89,0x50,0xd8,0x12,0x79,0x33,0xc8,0x13,0x69,0x32,0xd8,0x14,0x59,0x15,0xc8,0x15, + 0x49,0x14,0xd8,0x16,0x38,0xf7,0xc8,0x17,0x28,0xf6,0xd8,0x18,0x22,0x14,0x48,0x19, + 0x8,0xd8,0xd8,0x1a,0x1,0xf6,0x48,0x1a,0xf1,0xf5,0x58,0x1b,0xe1,0xd8,0x48,0x1c, + 0xd1,0xd7,0x58,0x1d,0xc1,0xba,0x48,0x1e,0xb1,0xb9,0x58,0x1f,0xa1,0x9c,0x48,0x20, + 0x75,0xcf,0xf4,0x21,0x81,0x62,0x64,0x22,0x55,0xb1,0xf4,0x23,0x6a,0x70,0xd4,0x24, + 0x35,0x93,0xf4,0x25,0x4a,0x60,0xe4,0x26,0x15,0x75,0xf4,0x27,0x2a,0x42,0xe4,0x27, + 0xfe,0x92,0x74,0x29,0xa,0x24,0xe4,0x29,0xde,0x74,0x74,0x2a,0xea,0x6,0xe4,0x2b, + 0xbe,0x56,0x74,0x2c,0xd3,0x23,0x64,0x2d,0x9e,0x38,0x74,0x2e,0xb3,0x5,0x64,0x2f, + 0x7e,0x1a,0x74,0x30,0x92,0xe7,0x64,0x31,0x67,0x36,0xf4,0x32,0x72,0xc9,0x64,0x33, + 0x47,0x18,0xf4,0x34,0x52,0xab,0x64,0x35,0x26,0xfa,0xf4,0x36,0x32,0x8d,0x64,0x37, + 0x6,0xdc,0xf4,0x38,0x1b,0xa9,0xe4,0x38,0xe6,0xbe,0xf4,0x39,0xfb,0x8b,0xe4,0x3a, + 0xc6,0xa0,0xf4,0x3b,0xdb,0x6d,0xe4,0x3c,0xaf,0xbd,0x74,0x3d,0xbb,0x4f,0xe4,0x3e, + 0x8f,0x9f,0x74,0x3f,0x9b,0x31,0xe4,0x40,0x6f,0x81,0x74,0x41,0x84,0x4e,0x64,0x42, + 0x4f,0x63,0x74,0x43,0x64,0x30,0x64,0x44,0x2f,0x45,0x74,0x45,0x44,0x12,0x64,0x45, + 0xf3,0x77,0xf4,0x47,0x2d,0x2e,0xe4,0x47,0xd3,0x59,0xf4,0x49,0xd,0x10,0xe4,0x49, + 0xb3,0x3b,0xf4,0x4a,0xec,0xf2,0xe4,0x4b,0x9c,0x58,0x74,0x4c,0xd6,0xf,0x64,0x4d, + 0x7c,0x3a,0x74,0x4e,0xb6,0xd,0x48,0x4f,0x5c,0x38,0x58,0x50,0x95,0xef,0x48,0x51, + 0x3c,0x1a,0x58,0x52,0x75,0xd1,0x48,0x53,0x1b,0xfc,0x58,0x54,0x55,0xb3,0x48,0x54, + 0xfb,0xde,0x58,0x56,0x35,0x95,0x48,0x56,0xe4,0xfa,0xd8,0x58,0x1e,0xb1,0xc8,0x58, + 0xc4,0xdc,0xd8,0x59,0xfe,0x93,0xc8,0x5a,0xa4,0xbe,0xd8,0x5b,0xde,0x75,0xc8,0x5c, + 0x84,0xa0,0xd8,0x5d,0xbe,0x57,0xc8,0x5e,0x64,0x82,0xd8,0x5f,0x9e,0x39,0xc8,0x60, + 0x4d,0x9f,0x58,0x61,0x87,0x56,0x48,0x62,0x2d,0x81,0x58,0x63,0x67,0x38,0x48,0x64, + 0xd,0x63,0x58,0x65,0x47,0x1a,0x48,0x65,0xed,0x45,0x58,0x67,0x26,0xfc,0x48,0x67, + 0xcd,0x27,0x58,0x69,0x6,0xde,0x48,0x69,0xad,0x9,0x58,0x6a,0xe6,0xc0,0x48,0x6b, + 0x96,0x25,0xd8,0x6c,0xcf,0xdc,0xc8,0x6d,0x76,0x7,0xd8,0x6e,0xaf,0xbe,0xc8,0x6f, + 0x55,0xe9,0xd8,0x70,0x8f,0xa0,0xc8,0x71,0x35,0xcb,0xd8,0x72,0x6f,0x82,0xc8,0x73, + 0x15,0xad,0xd8,0x74,0x4f,0x64,0xc8,0x74,0xfe,0xca,0x58,0x76,0x38,0x81,0x48,0x76, + 0xde,0xac,0x58,0x78,0x18,0x63,0x48,0x78,0xbe,0x8e,0x58,0x79,0xf8,0x45,0x48,0x7a, + 0x9e,0x70,0x58,0x7b,0xd8,0x27,0x48,0x7c,0x7e,0x52,0x58,0x7d,0xb8,0x9,0x48,0x7e, + 0x5e,0x34,0x58,0x7f,0x97,0xeb,0x48,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0x91,0x26,0x0,0x0,0xff,0xff, - 0x9d,0x90,0x1,0x4,0xff,0xff,0x8f,0x80,0x0,0x8,0xff,0xff,0x9d,0x90,0x1,0xc, - 0xff,0xff,0x9d,0x90,0x1,0x10,0x4c,0x4d,0x54,0x0,0x50,0x44,0x54,0x0,0x50,0x53, - 0x54,0x0,0x50,0x57,0x54,0x0,0x50,0x50,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0, - 0x0,0x0,0x0,0x1,0xa,0x50,0x53,0x54,0x38,0x50,0x44,0x54,0x2c,0x4d,0x33,0x2e, - 0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Nassau - 0x0,0x0,0x8,0xec, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x6,0x5,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x7,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0xff,0xff,0xce,0x94,0x0,0x0,0xff,0xff,0xdc,0xa4, + 0x1,0x4,0xff,0xff,0xce,0x94,0x0,0x8,0xff,0xff,0xdc,0xd8,0x1,0x4,0xff,0xff, + 0xce,0xc8,0x0,0x8,0xff,0xff,0xdc,0xd8,0x1,0xc,0xff,0xff,0xdc,0xd8,0x1,0x10, + 0xff,0xff,0xea,0xe8,0x1,0x14,0xff,0xff,0xdc,0xd8,0x1,0x4,0x4c,0x4d,0x54,0x0, + 0x4e,0x44,0x54,0x0,0x4e,0x53,0x54,0x0,0x4e,0x50,0x54,0x0,0x4e,0x57,0x54,0x0, + 0x4e,0x44,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9,0x0, + 0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0x0,0x0,0x0,0x9,0x0, + 0x0,0x0,0x19,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x5e, + 0x3d,0x34,0xec,0xff,0xff,0xff,0xff,0x9c,0xcf,0x62,0xc,0xff,0xff,0xff,0xff,0x9d, + 0xa4,0xe6,0xfc,0xff,0xff,0xff,0xff,0x9e,0xb8,0x7e,0x8c,0xff,0xff,0xff,0xff,0x9f, + 0xba,0xd6,0x7c,0xff,0xff,0xff,0xff,0xa0,0xb6,0x88,0xdc,0xff,0xff,0xff,0xff,0xa1, + 0x38,0xff,0x4c,0xff,0xff,0xff,0xff,0xa2,0x95,0x19,0x5c,0xff,0xff,0xff,0xff,0xa3, + 0x84,0xfc,0x4c,0xff,0xff,0xff,0xff,0xa4,0x74,0xfb,0x5c,0xff,0xff,0xff,0xff,0xa5, + 0x64,0xde,0x4c,0xff,0xff,0xff,0xff,0xa6,0x5e,0x17,0xdc,0xff,0xff,0xff,0xff,0xa7, + 0x44,0xc0,0x4c,0xff,0xff,0xff,0xff,0xa8,0x3d,0xf9,0xdc,0xff,0xff,0xff,0xff,0xa9, + 0x24,0xa2,0x4c,0xff,0xff,0xff,0xff,0xaa,0x1d,0xdb,0xdc,0xff,0xff,0xff,0xff,0xab, + 0x4,0x84,0x4c,0xff,0xff,0xff,0xff,0xab,0xfd,0xbd,0xdc,0xff,0xff,0xff,0xff,0xac, + 0xe4,0x66,0x4c,0xff,0xff,0xff,0xff,0xad,0xdd,0x9f,0xdc,0xff,0xff,0xff,0xff,0xae, + 0xcd,0x82,0xcc,0xff,0xff,0xff,0xff,0xaf,0xbd,0x81,0xdc,0xff,0xff,0xff,0xff,0xb0, + 0xad,0x64,0xcc,0xff,0xff,0xff,0xff,0xb1,0xa6,0x9e,0x5c,0xff,0xff,0xff,0xff,0xb2, + 0x8d,0x46,0xcc,0xff,0xff,0xff,0xff,0xb3,0x86,0x80,0x5c,0xff,0xff,0xff,0xff,0xb4, + 0x6d,0x28,0xcc,0xff,0xff,0xff,0xff,0xb5,0x66,0x62,0x5c,0xff,0xff,0xff,0xff,0xb6, + 0x4d,0xa,0xcc,0xff,0xff,0xff,0xff,0xb7,0x46,0x44,0x5c,0xff,0xff,0xff,0xff,0xb8, + 0x2c,0xec,0xcc,0xff,0xff,0xff,0xff,0xb9,0x26,0x26,0x5c,0xff,0xff,0xff,0xff,0xba, + 0x16,0x9,0x4c,0xff,0xff,0xff,0xff,0xbb,0xf,0x42,0xdc,0xff,0xff,0xff,0xff,0xbb, + 0xf5,0xeb,0x4c,0xff,0xff,0xff,0xff,0xbc,0xef,0x24,0xdc,0xff,0xff,0xff,0xff,0xbd, + 0xd5,0xcd,0x4c,0xff,0xff,0xff,0xff,0xbe,0x9e,0x4d,0x6c,0xff,0xff,0xff,0xff,0xbe, + 0xcf,0x6,0xa8,0xff,0xff,0xff,0xff,0xbf,0xb5,0xaf,0x18,0xff,0xff,0xff,0xff,0xc0, + 0xb8,0x31,0x38,0xff,0xff,0xff,0xff,0xc1,0x79,0xef,0xa8,0xff,0xff,0xff,0xff,0xc2, + 0x98,0x13,0x38,0xff,0xff,0xff,0xff,0xc3,0x59,0xd1,0xa8,0xff,0xff,0xff,0xff,0xc4, + 0x77,0xf5,0x38,0xff,0xff,0xff,0xff,0xc5,0x39,0xb3,0xa8,0xff,0xff,0xff,0xff,0xc6, + 0x61,0x11,0xb8,0xff,0xff,0xff,0xff,0xc7,0x19,0x95,0xa8,0xff,0xff,0xff,0xff,0xc8, + 0x40,0xf3,0xb8,0xff,0xff,0xff,0xff,0xc9,0x2,0xb2,0x28,0xff,0xff,0xff,0xff,0xca, + 0x20,0xd5,0xb8,0xff,0xff,0xff,0xff,0xca,0xe2,0x94,0x28,0xff,0xff,0xff,0xff,0xcc, + 0x0,0xb7,0xb8,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2, + 0x60,0xe6,0xc8,0xff,0xff,0xff,0xff,0xd3,0x88,0x44,0xd8,0xff,0xff,0xff,0xff,0xd4, + 0x4a,0x3,0x48,0xff,0xff,0xff,0xff,0xd5,0x68,0x26,0xd8,0xff,0xff,0xff,0xff,0xd6, + 0x29,0xe5,0x48,0xff,0xff,0xff,0xff,0xd7,0x48,0x8,0xd8,0xff,0xff,0xff,0xff,0xd8, + 0x9,0xc7,0x48,0xff,0xff,0xff,0xff,0xd9,0x27,0xea,0xd8,0xff,0xff,0xff,0xff,0xd9, + 0xe9,0xa9,0x48,0xff,0xff,0xff,0xff,0xdb,0x11,0x7,0x58,0xff,0xff,0xff,0xff,0xdb, + 0xd2,0xc5,0xc8,0xff,0xff,0xff,0xff,0xdc,0xde,0x74,0x58,0xff,0xff,0xff,0xff,0xdd, + 0xa9,0x6d,0x48,0xff,0xff,0xff,0xff,0xde,0xbe,0x56,0x58,0xff,0xff,0xff,0xff,0xdf, + 0x89,0x4f,0x48,0xff,0xff,0xff,0xff,0xe0,0x9e,0x38,0x58,0xff,0xff,0xff,0xff,0xe1, + 0x69,0x31,0x48,0xff,0xff,0xff,0xff,0xe2,0x7e,0x1a,0x58,0xff,0xff,0xff,0xff,0xe3, + 0x49,0x13,0x48,0xff,0xff,0xff,0xff,0xe4,0x5d,0xfc,0x58,0xff,0xff,0xff,0xff,0xe5, + 0x28,0xf5,0x48,0xff,0xff,0xff,0xff,0xe6,0x47,0x18,0xd8,0xff,0xff,0xff,0xff,0xe7, + 0x12,0x11,0xc8,0xff,0xff,0xff,0xff,0xe8,0x26,0xfa,0xd8,0xff,0xff,0xff,0xff,0xe8, + 0xf1,0xf3,0xc8,0xff,0xff,0xff,0xff,0xea,0x6,0xdc,0xd8,0xff,0xff,0xff,0xff,0xea, + 0xd1,0xd5,0xc8,0xff,0xff,0xff,0xff,0xeb,0xe6,0xbe,0xd8,0xff,0xff,0xff,0xff,0xec, + 0xb1,0xb7,0xc8,0xff,0xff,0xff,0xff,0xed,0xc6,0xa0,0xd8,0xff,0xff,0xff,0xff,0xee, + 0xbf,0xbe,0x48,0xff,0xff,0xff,0xff,0xef,0xaf,0xbd,0x58,0xff,0xff,0xff,0xff,0xf0, + 0x9f,0xa0,0x48,0xff,0xff,0xff,0xff,0xf1,0x8f,0x9f,0x58,0xff,0xff,0xff,0xff,0xf2, + 0x7f,0x82,0x48,0xff,0xff,0xff,0xff,0xf3,0x6f,0x81,0x58,0xff,0xff,0xff,0xff,0xf4, + 0x5f,0x64,0x48,0xff,0xff,0xff,0xff,0xf5,0x4f,0x63,0x58,0xff,0xff,0xff,0xff,0xf6, + 0x3f,0x46,0x48,0xff,0xff,0xff,0xff,0xf7,0x2f,0x45,0x58,0xff,0xff,0xff,0xff,0xf8, + 0x28,0x62,0xc8,0xff,0xff,0xff,0xff,0xf9,0xf,0x27,0x58,0xff,0xff,0xff,0xff,0xfa, + 0x8,0x44,0xc8,0xff,0xff,0xff,0xff,0xfa,0xf8,0x43,0xd8,0xff,0xff,0xff,0xff,0xfb, + 0xe8,0x26,0xc8,0xff,0xff,0xff,0xff,0xfc,0xd8,0x25,0xd8,0xff,0xff,0xff,0xff,0xfd, + 0xc8,0x8,0xc8,0xff,0xff,0xff,0xff,0xfe,0xb8,0x7,0xd8,0xff,0xff,0xff,0xff,0xff, + 0xa7,0xea,0xc8,0x0,0x0,0x0,0x0,0x0,0x97,0xe9,0xd8,0x0,0x0,0x0,0x0,0x1, + 0x87,0xcc,0xc8,0x0,0x0,0x0,0x0,0x2,0x77,0xcb,0xd8,0x0,0x0,0x0,0x0,0x3, + 0x70,0xe9,0x48,0x0,0x0,0x0,0x0,0x4,0x60,0xe8,0x58,0x0,0x0,0x0,0x0,0x5, + 0x50,0xcb,0x48,0x0,0x0,0x0,0x0,0x6,0x40,0xca,0x58,0x0,0x0,0x0,0x0,0x7, + 0x30,0xad,0x48,0x0,0x0,0x0,0x0,0x8,0x20,0xac,0x58,0x0,0x0,0x0,0x0,0x9, + 0x10,0x8f,0x48,0x0,0x0,0x0,0x0,0xa,0x0,0x8e,0x58,0x0,0x0,0x0,0x0,0xa, + 0xf0,0x71,0x48,0x0,0x0,0x0,0x0,0xb,0xe0,0x70,0x58,0x0,0x0,0x0,0x0,0xc, + 0xd9,0x8d,0xc8,0x0,0x0,0x0,0x0,0xd,0xc0,0x52,0x58,0x0,0x0,0x0,0x0,0xe, + 0xb9,0x6f,0xc8,0x0,0x0,0x0,0x0,0xf,0xa9,0x6e,0xd8,0x0,0x0,0x0,0x0,0x10, + 0x99,0x51,0xc8,0x0,0x0,0x0,0x0,0x11,0x89,0x50,0xd8,0x0,0x0,0x0,0x0,0x12, + 0x79,0x33,0xc8,0x0,0x0,0x0,0x0,0x13,0x69,0x32,0xd8,0x0,0x0,0x0,0x0,0x14, + 0x59,0x15,0xc8,0x0,0x0,0x0,0x0,0x15,0x49,0x14,0xd8,0x0,0x0,0x0,0x0,0x16, + 0x38,0xf7,0xc8,0x0,0x0,0x0,0x0,0x17,0x28,0xf6,0xd8,0x0,0x0,0x0,0x0,0x18, + 0x22,0x14,0x48,0x0,0x0,0x0,0x0,0x19,0x8,0xd8,0xd8,0x0,0x0,0x0,0x0,0x1a, + 0x1,0xf6,0x48,0x0,0x0,0x0,0x0,0x1a,0xf1,0xf5,0x58,0x0,0x0,0x0,0x0,0x1b, + 0xe1,0xd8,0x48,0x0,0x0,0x0,0x0,0x1c,0xd1,0xd7,0x58,0x0,0x0,0x0,0x0,0x1d, + 0xc1,0xba,0x48,0x0,0x0,0x0,0x0,0x1e,0xb1,0xb9,0x58,0x0,0x0,0x0,0x0,0x1f, + 0xa1,0x9c,0x48,0x0,0x0,0x0,0x0,0x20,0x75,0xcf,0xf4,0x0,0x0,0x0,0x0,0x21, + 0x81,0x62,0x64,0x0,0x0,0x0,0x0,0x22,0x55,0xb1,0xf4,0x0,0x0,0x0,0x0,0x23, + 0x6a,0x70,0xd4,0x0,0x0,0x0,0x0,0x24,0x35,0x93,0xf4,0x0,0x0,0x0,0x0,0x25, + 0x4a,0x60,0xe4,0x0,0x0,0x0,0x0,0x26,0x15,0x75,0xf4,0x0,0x0,0x0,0x0,0x27, + 0x2a,0x42,0xe4,0x0,0x0,0x0,0x0,0x27,0xfe,0x92,0x74,0x0,0x0,0x0,0x0,0x29, + 0xa,0x24,0xe4,0x0,0x0,0x0,0x0,0x29,0xde,0x74,0x74,0x0,0x0,0x0,0x0,0x2a, + 0xea,0x6,0xe4,0x0,0x0,0x0,0x0,0x2b,0xbe,0x56,0x74,0x0,0x0,0x0,0x0,0x2c, + 0xd3,0x23,0x64,0x0,0x0,0x0,0x0,0x2d,0x9e,0x38,0x74,0x0,0x0,0x0,0x0,0x2e, + 0xb3,0x5,0x64,0x0,0x0,0x0,0x0,0x2f,0x7e,0x1a,0x74,0x0,0x0,0x0,0x0,0x30, + 0x92,0xe7,0x64,0x0,0x0,0x0,0x0,0x31,0x67,0x36,0xf4,0x0,0x0,0x0,0x0,0x32, + 0x72,0xc9,0x64,0x0,0x0,0x0,0x0,0x33,0x47,0x18,0xf4,0x0,0x0,0x0,0x0,0x34, + 0x52,0xab,0x64,0x0,0x0,0x0,0x0,0x35,0x26,0xfa,0xf4,0x0,0x0,0x0,0x0,0x36, + 0x32,0x8d,0x64,0x0,0x0,0x0,0x0,0x37,0x6,0xdc,0xf4,0x0,0x0,0x0,0x0,0x38, + 0x1b,0xa9,0xe4,0x0,0x0,0x0,0x0,0x38,0xe6,0xbe,0xf4,0x0,0x0,0x0,0x0,0x39, + 0xfb,0x8b,0xe4,0x0,0x0,0x0,0x0,0x3a,0xc6,0xa0,0xf4,0x0,0x0,0x0,0x0,0x3b, + 0xdb,0x6d,0xe4,0x0,0x0,0x0,0x0,0x3c,0xaf,0xbd,0x74,0x0,0x0,0x0,0x0,0x3d, + 0xbb,0x4f,0xe4,0x0,0x0,0x0,0x0,0x3e,0x8f,0x9f,0x74,0x0,0x0,0x0,0x0,0x3f, + 0x9b,0x31,0xe4,0x0,0x0,0x0,0x0,0x40,0x6f,0x81,0x74,0x0,0x0,0x0,0x0,0x41, + 0x84,0x4e,0x64,0x0,0x0,0x0,0x0,0x42,0x4f,0x63,0x74,0x0,0x0,0x0,0x0,0x43, + 0x64,0x30,0x64,0x0,0x0,0x0,0x0,0x44,0x2f,0x45,0x74,0x0,0x0,0x0,0x0,0x45, + 0x44,0x12,0x64,0x0,0x0,0x0,0x0,0x45,0xf3,0x77,0xf4,0x0,0x0,0x0,0x0,0x47, + 0x2d,0x2e,0xe4,0x0,0x0,0x0,0x0,0x47,0xd3,0x59,0xf4,0x0,0x0,0x0,0x0,0x49, + 0xd,0x10,0xe4,0x0,0x0,0x0,0x0,0x49,0xb3,0x3b,0xf4,0x0,0x0,0x0,0x0,0x4a, + 0xec,0xf2,0xe4,0x0,0x0,0x0,0x0,0x4b,0x9c,0x58,0x74,0x0,0x0,0x0,0x0,0x4c, + 0xd6,0xf,0x64,0x0,0x0,0x0,0x0,0x4d,0x7c,0x3a,0x74,0x0,0x0,0x0,0x0,0x4e, + 0xb6,0xd,0x48,0x0,0x0,0x0,0x0,0x4f,0x5c,0x38,0x58,0x0,0x0,0x0,0x0,0x50, + 0x95,0xef,0x48,0x0,0x0,0x0,0x0,0x51,0x3c,0x1a,0x58,0x0,0x0,0x0,0x0,0x52, + 0x75,0xd1,0x48,0x0,0x0,0x0,0x0,0x53,0x1b,0xfc,0x58,0x0,0x0,0x0,0x0,0x54, + 0x55,0xb3,0x48,0x0,0x0,0x0,0x0,0x54,0xfb,0xde,0x58,0x0,0x0,0x0,0x0,0x56, + 0x35,0x95,0x48,0x0,0x0,0x0,0x0,0x56,0xe4,0xfa,0xd8,0x0,0x0,0x0,0x0,0x58, + 0x1e,0xb1,0xc8,0x0,0x0,0x0,0x0,0x58,0xc4,0xdc,0xd8,0x0,0x0,0x0,0x0,0x59, + 0xfe,0x93,0xc8,0x0,0x0,0x0,0x0,0x5a,0xa4,0xbe,0xd8,0x0,0x0,0x0,0x0,0x5b, + 0xde,0x75,0xc8,0x0,0x0,0x0,0x0,0x5c,0x84,0xa0,0xd8,0x0,0x0,0x0,0x0,0x5d, + 0xbe,0x57,0xc8,0x0,0x0,0x0,0x0,0x5e,0x64,0x82,0xd8,0x0,0x0,0x0,0x0,0x5f, + 0x9e,0x39,0xc8,0x0,0x0,0x0,0x0,0x60,0x4d,0x9f,0x58,0x0,0x0,0x0,0x0,0x61, + 0x87,0x56,0x48,0x0,0x0,0x0,0x0,0x62,0x2d,0x81,0x58,0x0,0x0,0x0,0x0,0x63, + 0x67,0x38,0x48,0x0,0x0,0x0,0x0,0x64,0xd,0x63,0x58,0x0,0x0,0x0,0x0,0x65, + 0x47,0x1a,0x48,0x0,0x0,0x0,0x0,0x65,0xed,0x45,0x58,0x0,0x0,0x0,0x0,0x67, + 0x26,0xfc,0x48,0x0,0x0,0x0,0x0,0x67,0xcd,0x27,0x58,0x0,0x0,0x0,0x0,0x69, + 0x6,0xde,0x48,0x0,0x0,0x0,0x0,0x69,0xad,0x9,0x58,0x0,0x0,0x0,0x0,0x6a, + 0xe6,0xc0,0x48,0x0,0x0,0x0,0x0,0x6b,0x96,0x25,0xd8,0x0,0x0,0x0,0x0,0x6c, + 0xcf,0xdc,0xc8,0x0,0x0,0x0,0x0,0x6d,0x76,0x7,0xd8,0x0,0x0,0x0,0x0,0x6e, + 0xaf,0xbe,0xc8,0x0,0x0,0x0,0x0,0x6f,0x55,0xe9,0xd8,0x0,0x0,0x0,0x0,0x70, + 0x8f,0xa0,0xc8,0x0,0x0,0x0,0x0,0x71,0x35,0xcb,0xd8,0x0,0x0,0x0,0x0,0x72, + 0x6f,0x82,0xc8,0x0,0x0,0x0,0x0,0x73,0x15,0xad,0xd8,0x0,0x0,0x0,0x0,0x74, + 0x4f,0x64,0xc8,0x0,0x0,0x0,0x0,0x74,0xfe,0xca,0x58,0x0,0x0,0x0,0x0,0x76, + 0x38,0x81,0x48,0x0,0x0,0x0,0x0,0x76,0xde,0xac,0x58,0x0,0x0,0x0,0x0,0x78, + 0x18,0x63,0x48,0x0,0x0,0x0,0x0,0x78,0xbe,0x8e,0x58,0x0,0x0,0x0,0x0,0x79, + 0xf8,0x45,0x48,0x0,0x0,0x0,0x0,0x7a,0x9e,0x70,0x58,0x0,0x0,0x0,0x0,0x7b, + 0xd8,0x27,0x48,0x0,0x0,0x0,0x0,0x7c,0x7e,0x52,0x58,0x0,0x0,0x0,0x0,0x7d, + 0xb8,0x9,0x48,0x0,0x0,0x0,0x0,0x7e,0x5e,0x34,0x58,0x0,0x0,0x0,0x0,0x7f, + 0x97,0xeb,0x48,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x6,0x5,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x7, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0xff,0xff,0xce,0x94,0x0,0x0,0xff,0xff,0xdc,0xa4,0x1,0x4,0xff, + 0xff,0xce,0x94,0x0,0x8,0xff,0xff,0xdc,0xd8,0x1,0x4,0xff,0xff,0xce,0xc8,0x0, + 0x8,0xff,0xff,0xdc,0xd8,0x1,0xc,0xff,0xff,0xdc,0xd8,0x1,0x10,0xff,0xff,0xea, + 0xe8,0x1,0x14,0xff,0xff,0xdc,0xd8,0x1,0x4,0x4c,0x4d,0x54,0x0,0x4e,0x44,0x54, + 0x0,0x4e,0x53,0x54,0x0,0x4e,0x50,0x54,0x0,0x4e,0x57,0x54,0x0,0x4e,0x44,0x44, + 0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0xa,0x4e,0x53,0x54,0x33,0x3a,0x33,0x30,0x4e,0x44,0x54,0x2c, + 0x4d,0x33,0x2e,0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Sitka + 0x0,0x0,0x9,0x2e, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x96,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0x93, - 0x37,0x42,0x8a,0xf5,0x4f,0x78,0x70,0xf6,0x3f,0x5b,0x60,0xf7,0x2f,0x5a,0x70,0xf8, - 0x28,0x77,0xe0,0xf9,0xf,0x3c,0x70,0xfa,0x8,0x59,0xe0,0xfa,0xf8,0x58,0xf0,0xfb, - 0xe8,0x3b,0xe0,0xfc,0xd8,0x3a,0xf0,0xfd,0xc8,0x1d,0xe0,0xfe,0xb8,0x1c,0xf0,0xff, - 0xa7,0xff,0xe0,0x0,0x97,0xfe,0xf0,0x1,0x87,0xe1,0xe0,0x2,0x77,0xe0,0xf0,0x3, - 0x70,0xfe,0x60,0x4,0x60,0xfd,0x70,0x5,0x50,0xe0,0x60,0x6,0x40,0xdf,0x70,0x7, - 0x30,0xc2,0x60,0x8,0x20,0xc1,0x70,0x9,0x10,0xa4,0x60,0xa,0x0,0xa3,0x70,0xa, - 0xf0,0x86,0x60,0xb,0xe0,0x85,0x70,0xc,0xd9,0xa2,0xe0,0xd,0xc0,0x67,0x70,0xe, - 0xb9,0x84,0xe0,0xf,0xa9,0x83,0xf0,0x10,0x99,0x66,0xe0,0x11,0x89,0x65,0xf0,0x12, - 0x79,0x48,0xe0,0x13,0x69,0x47,0xf0,0x14,0x59,0x2a,0xe0,0x15,0x49,0x29,0xf0,0x16, - 0x39,0xc,0xe0,0x17,0x29,0xb,0xf0,0x18,0x22,0x29,0x60,0x19,0x8,0xed,0xf0,0x1a, - 0x2,0xb,0x60,0x1a,0xf2,0xa,0x70,0x1b,0xe1,0xed,0x60,0x1c,0xd1,0xec,0x70,0x1d, - 0xc1,0xcf,0x60,0x1e,0xb1,0xce,0x70,0x1f,0xa1,0xb1,0x60,0x20,0x76,0x0,0xf0,0x21, - 0x81,0x93,0x60,0x22,0x55,0xe2,0xf0,0x23,0x6a,0xaf,0xe0,0x24,0x35,0xc4,0xf0,0x25, - 0x4a,0x91,0xe0,0x26,0x15,0xa6,0xf0,0x27,0x2a,0x73,0xe0,0x27,0xfe,0xc3,0x70,0x29, - 0xa,0x55,0xe0,0x29,0xde,0xa5,0x70,0x2a,0xea,0x37,0xe0,0x2b,0xbe,0x87,0x70,0x2c, - 0xd3,0x54,0x60,0x2d,0x9e,0x69,0x70,0x2e,0xb3,0x36,0x60,0x2f,0x7e,0x4b,0x70,0x30, - 0x93,0x18,0x60,0x31,0x67,0x67,0xf0,0x32,0x72,0xfa,0x60,0x33,0x47,0x49,0xf0,0x34, - 0x52,0xdc,0x60,0x35,0x27,0x2b,0xf0,0x36,0x32,0xbe,0x60,0x37,0x7,0xd,0xf0,0x38, - 0x1b,0xda,0xe0,0x38,0xe6,0xef,0xf0,0x39,0xfb,0xbc,0xe0,0x3a,0xc6,0xd1,0xf0,0x3b, - 0xdb,0x9e,0xe0,0x3c,0xaf,0xee,0x70,0x3d,0xbb,0x80,0xe0,0x3e,0x8f,0xd0,0x70,0x3f, - 0x9b,0x62,0xe0,0x40,0x6f,0xb2,0x70,0x41,0x84,0x7f,0x60,0x42,0x4f,0x94,0x70,0x43, - 0x64,0x61,0x60,0x44,0x2f,0x76,0x70,0x45,0x44,0x43,0x60,0x45,0xf3,0xa8,0xf0,0x47, - 0x2d,0x5f,0xe0,0x47,0xd3,0x8a,0xf0,0x49,0xd,0x41,0xe0,0x49,0xb3,0x6c,0xf0,0x4a, - 0xed,0x23,0xe0,0x4b,0x9c,0x89,0x70,0x4c,0xd6,0x40,0x60,0x4d,0x7c,0x6b,0x70,0x4e, - 0xb6,0x22,0x60,0x4f,0x5c,0x4d,0x70,0x50,0x96,0x4,0x60,0x51,0x3c,0x2f,0x70,0x52, - 0x75,0xe6,0x60,0x53,0x1c,0x11,0x70,0x54,0x55,0xc8,0x60,0x54,0xfb,0xf3,0x70,0x56, - 0x35,0xaa,0x60,0x56,0xe5,0xf,0xf0,0x58,0x1e,0xc6,0xe0,0x58,0xc4,0xf1,0xf0,0x59, - 0xfe,0xa8,0xe0,0x5a,0xa4,0xd3,0xf0,0x5b,0xde,0x8a,0xe0,0x5c,0x84,0xb5,0xf0,0x5d, - 0xbe,0x6c,0xe0,0x5e,0x64,0x97,0xf0,0x5f,0x9e,0x4e,0xe0,0x60,0x4d,0xb4,0x70,0x61, - 0x87,0x6b,0x60,0x62,0x2d,0x96,0x70,0x63,0x67,0x4d,0x60,0x64,0xd,0x78,0x70,0x65, - 0x47,0x2f,0x60,0x65,0xed,0x5a,0x70,0x67,0x27,0x11,0x60,0x67,0xcd,0x3c,0x70,0x69, - 0x6,0xf3,0x60,0x69,0xad,0x1e,0x70,0x6a,0xe6,0xd5,0x60,0x6b,0x96,0x3a,0xf0,0x6c, - 0xcf,0xf1,0xe0,0x6d,0x76,0x1c,0xf0,0x6e,0xaf,0xd3,0xe0,0x6f,0x55,0xfe,0xf0,0x70, - 0x8f,0xb5,0xe0,0x71,0x35,0xe0,0xf0,0x72,0x6f,0x97,0xe0,0x73,0x15,0xc2,0xf0,0x74, - 0x4f,0x79,0xe0,0x74,0xfe,0xdf,0x70,0x76,0x38,0x96,0x60,0x76,0xde,0xc1,0x70,0x78, - 0x18,0x78,0x60,0x78,0xbe,0xa3,0x70,0x79,0xf8,0x5a,0x60,0x7a,0x9e,0x85,0x70,0x7b, - 0xd8,0x3c,0x60,0x7c,0x7e,0x67,0x70,0x7d,0xb8,0x1e,0x60,0x7e,0x5e,0x49,0x70,0x7f, - 0x98,0x0,0x60,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x8f,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x22,0x80,0x0,0x0,0x0,0xcb, + 0x89,0x1a,0xa0,0xd2,0x23,0xf4,0x70,0xd2,0x61,0x26,0x10,0xfe,0xb8,0x47,0x20,0xff, + 0xa8,0x2a,0x10,0x0,0x98,0x29,0x20,0x1,0x88,0xc,0x10,0x2,0x78,0xb,0x20,0x3, + 0x71,0x28,0x90,0x4,0x61,0x27,0xa0,0x5,0x51,0xa,0x90,0x6,0x41,0x9,0xa0,0x7, + 0x30,0xec,0x90,0x7,0x8d,0x43,0xa0,0x9,0x10,0xce,0x90,0x9,0xad,0xbf,0x20,0xa, + 0xf0,0xb0,0x90,0xb,0xe0,0xaf,0xa0,0xc,0xd9,0xcd,0x10,0xd,0xc0,0x91,0xa0,0xe, + 0xb9,0xaf,0x10,0xf,0xa9,0xae,0x20,0x10,0x99,0x91,0x10,0x11,0x89,0x90,0x20,0x12, + 0x79,0x73,0x10,0x13,0x69,0x72,0x20,0x14,0x59,0x55,0x10,0x15,0x49,0x54,0x20,0x16, + 0x39,0x37,0x10,0x17,0x29,0x36,0x20,0x18,0x22,0x53,0x90,0x19,0x9,0x18,0x20,0x1a, + 0x2,0x35,0x90,0x1a,0x2b,0x14,0x10,0x1a,0xf2,0x42,0xb0,0x1b,0xe2,0x25,0xa0,0x1c, + 0xd2,0x24,0xb0,0x1d,0xc2,0x7,0xa0,0x1e,0xb2,0x6,0xb0,0x1f,0xa1,0xe9,0xa0,0x20, + 0x76,0x39,0x30,0x21,0x81,0xcb,0xa0,0x22,0x56,0x1b,0x30,0x23,0x6a,0xe8,0x20,0x24, + 0x35,0xfd,0x30,0x25,0x4a,0xca,0x20,0x26,0x15,0xdf,0x30,0x27,0x2a,0xac,0x20,0x27, + 0xfe,0xfb,0xb0,0x29,0xa,0x8e,0x20,0x29,0xde,0xdd,0xb0,0x2a,0xea,0x70,0x20,0x2b, + 0xbe,0xbf,0xb0,0x2c,0xd3,0x8c,0xa0,0x2d,0x9e,0xa1,0xb0,0x2e,0xb3,0x6e,0xa0,0x2f, + 0x7e,0x83,0xb0,0x30,0x93,0x50,0xa0,0x31,0x67,0xa0,0x30,0x32,0x73,0x32,0xa0,0x33, + 0x47,0x82,0x30,0x34,0x53,0x14,0xa0,0x35,0x27,0x64,0x30,0x36,0x32,0xf6,0xa0,0x37, + 0x7,0x46,0x30,0x38,0x1c,0x13,0x20,0x38,0xe7,0x28,0x30,0x39,0xfb,0xf5,0x20,0x3a, + 0xc7,0xa,0x30,0x3b,0xdb,0xd7,0x20,0x3c,0xb0,0x26,0xb0,0x3d,0xbb,0xb9,0x20,0x3e, + 0x90,0x8,0xb0,0x3f,0x9b,0x9b,0x20,0x40,0x6f,0xea,0xb0,0x41,0x84,0xb7,0xa0,0x42, + 0x4f,0xcc,0xb0,0x43,0x64,0x99,0xa0,0x44,0x2f,0xae,0xb0,0x45,0x44,0x7b,0xa0,0x45, + 0xf3,0xe1,0x30,0x47,0x2d,0x98,0x20,0x47,0xd3,0xc3,0x30,0x49,0xd,0x7a,0x20,0x49, + 0xb3,0xa5,0x30,0x4a,0xed,0x5c,0x20,0x4b,0x9c,0xc1,0xb0,0x4c,0xd6,0x78,0xa0,0x4d, + 0x7c,0xa3,0xb0,0x4e,0xb6,0x5a,0xa0,0x4f,0x5c,0x85,0xb0,0x50,0x96,0x3c,0xa0,0x51, + 0x3c,0x67,0xb0,0x52,0x76,0x1e,0xa0,0x53,0x1c,0x49,0xb0,0x54,0x56,0x0,0xa0,0x54, + 0xfc,0x2b,0xb0,0x56,0x35,0xe2,0xa0,0x56,0xe5,0x48,0x30,0x58,0x1e,0xff,0x20,0x58, + 0xc5,0x2a,0x30,0x59,0xfe,0xe1,0x20,0x5a,0xa5,0xc,0x30,0x5b,0xde,0xc3,0x20,0x5c, + 0x84,0xee,0x30,0x5d,0xbe,0xa5,0x20,0x5e,0x64,0xd0,0x30,0x5f,0x9e,0x87,0x20,0x60, + 0x4d,0xec,0xb0,0x61,0x87,0xa3,0xa0,0x62,0x2d,0xce,0xb0,0x63,0x67,0x85,0xa0,0x64, + 0xd,0xb0,0xb0,0x65,0x47,0x67,0xa0,0x65,0xed,0x92,0xb0,0x67,0x27,0x49,0xa0,0x67, + 0xcd,0x74,0xb0,0x69,0x7,0x2b,0xa0,0x69,0xad,0x56,0xb0,0x6a,0xe7,0xd,0xa0,0x6b, + 0x96,0x73,0x30,0x6c,0xd0,0x2a,0x20,0x6d,0x76,0x55,0x30,0x6e,0xb0,0xc,0x20,0x6f, + 0x56,0x37,0x30,0x70,0x8f,0xee,0x20,0x71,0x36,0x19,0x30,0x72,0x6f,0xd0,0x20,0x73, + 0x15,0xfb,0x30,0x74,0x4f,0xb2,0x20,0x74,0xff,0x17,0xb0,0x76,0x38,0xce,0xa0,0x76, + 0xde,0xf9,0xb0,0x78,0x18,0xb0,0xa0,0x78,0xbe,0xdb,0xb0,0x79,0xf8,0x92,0xa0,0x7a, + 0x9e,0xbd,0xb0,0x7b,0xd8,0x74,0xa0,0x7c,0x7e,0x9f,0xb0,0x7d,0xb8,0x56,0xa0,0x7e, + 0x5e,0x81,0xb0,0x7f,0x98,0x38,0xa0,0x1,0x2,0x3,0x1,0x4,0x1,0x4,0x1,0x4, + 0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4, + 0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x5,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0xff,0xff,0x81,0x27,0x0,0x0,0xff,0xff,0x8f,0x80, + 0x0,0x4,0xff,0xff,0x9d,0x90,0x1,0x8,0xff,0xff,0x9d,0x90,0x1,0xc,0xff,0xff, + 0x9d,0x90,0x1,0x10,0xff,0xff,0x81,0x70,0x0,0x14,0xff,0xff,0x8f,0x80,0x1,0x18, + 0xff,0xff,0x81,0x70,0x0,0x1d,0x4c,0x4d,0x54,0x0,0x50,0x53,0x54,0x0,0x50,0x57, + 0x54,0x0,0x50,0x50,0x54,0x0,0x50,0x44,0x54,0x0,0x59,0x53,0x54,0x0,0x41,0x4b, + 0x44,0x54,0x0,0x41,0x4b,0x53,0x54,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa, + 0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0x0,0x0,0x0,0xa, + 0x0,0x0,0x0,0x26,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0x3f,0xc2,0xfd,0xd1,0xff,0xff,0xff,0xff,0x7d,0x87,0x33,0x99,0xff,0xff,0xff,0xff, + 0xcb,0x89,0x1a,0xa0,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff, + 0xd2,0x61,0x26,0x10,0xff,0xff,0xff,0xff,0xfe,0xb8,0x47,0x20,0xff,0xff,0xff,0xff, + 0xff,0xa8,0x2a,0x10,0x0,0x0,0x0,0x0,0x0,0x98,0x29,0x20,0x0,0x0,0x0,0x0, + 0x1,0x88,0xc,0x10,0x0,0x0,0x0,0x0,0x2,0x78,0xb,0x20,0x0,0x0,0x0,0x0, + 0x3,0x71,0x28,0x90,0x0,0x0,0x0,0x0,0x4,0x61,0x27,0xa0,0x0,0x0,0x0,0x0, + 0x5,0x51,0xa,0x90,0x0,0x0,0x0,0x0,0x6,0x41,0x9,0xa0,0x0,0x0,0x0,0x0, + 0x7,0x30,0xec,0x90,0x0,0x0,0x0,0x0,0x7,0x8d,0x43,0xa0,0x0,0x0,0x0,0x0, + 0x9,0x10,0xce,0x90,0x0,0x0,0x0,0x0,0x9,0xad,0xbf,0x20,0x0,0x0,0x0,0x0, + 0xa,0xf0,0xb0,0x90,0x0,0x0,0x0,0x0,0xb,0xe0,0xaf,0xa0,0x0,0x0,0x0,0x0, + 0xc,0xd9,0xcd,0x10,0x0,0x0,0x0,0x0,0xd,0xc0,0x91,0xa0,0x0,0x0,0x0,0x0, + 0xe,0xb9,0xaf,0x10,0x0,0x0,0x0,0x0,0xf,0xa9,0xae,0x20,0x0,0x0,0x0,0x0, + 0x10,0x99,0x91,0x10,0x0,0x0,0x0,0x0,0x11,0x89,0x90,0x20,0x0,0x0,0x0,0x0, + 0x12,0x79,0x73,0x10,0x0,0x0,0x0,0x0,0x13,0x69,0x72,0x20,0x0,0x0,0x0,0x0, + 0x14,0x59,0x55,0x10,0x0,0x0,0x0,0x0,0x15,0x49,0x54,0x20,0x0,0x0,0x0,0x0, + 0x16,0x39,0x37,0x10,0x0,0x0,0x0,0x0,0x17,0x29,0x36,0x20,0x0,0x0,0x0,0x0, + 0x18,0x22,0x53,0x90,0x0,0x0,0x0,0x0,0x19,0x9,0x18,0x20,0x0,0x0,0x0,0x0, + 0x1a,0x2,0x35,0x90,0x0,0x0,0x0,0x0,0x1a,0x2b,0x14,0x10,0x0,0x0,0x0,0x0, + 0x1a,0xf2,0x42,0xb0,0x0,0x0,0x0,0x0,0x1b,0xe2,0x25,0xa0,0x0,0x0,0x0,0x0, + 0x1c,0xd2,0x24,0xb0,0x0,0x0,0x0,0x0,0x1d,0xc2,0x7,0xa0,0x0,0x0,0x0,0x0, + 0x1e,0xb2,0x6,0xb0,0x0,0x0,0x0,0x0,0x1f,0xa1,0xe9,0xa0,0x0,0x0,0x0,0x0, + 0x20,0x76,0x39,0x30,0x0,0x0,0x0,0x0,0x21,0x81,0xcb,0xa0,0x0,0x0,0x0,0x0, + 0x22,0x56,0x1b,0x30,0x0,0x0,0x0,0x0,0x23,0x6a,0xe8,0x20,0x0,0x0,0x0,0x0, + 0x24,0x35,0xfd,0x30,0x0,0x0,0x0,0x0,0x25,0x4a,0xca,0x20,0x0,0x0,0x0,0x0, + 0x26,0x15,0xdf,0x30,0x0,0x0,0x0,0x0,0x27,0x2a,0xac,0x20,0x0,0x0,0x0,0x0, + 0x27,0xfe,0xfb,0xb0,0x0,0x0,0x0,0x0,0x29,0xa,0x8e,0x20,0x0,0x0,0x0,0x0, + 0x29,0xde,0xdd,0xb0,0x0,0x0,0x0,0x0,0x2a,0xea,0x70,0x20,0x0,0x0,0x0,0x0, + 0x2b,0xbe,0xbf,0xb0,0x0,0x0,0x0,0x0,0x2c,0xd3,0x8c,0xa0,0x0,0x0,0x0,0x0, + 0x2d,0x9e,0xa1,0xb0,0x0,0x0,0x0,0x0,0x2e,0xb3,0x6e,0xa0,0x0,0x0,0x0,0x0, + 0x2f,0x7e,0x83,0xb0,0x0,0x0,0x0,0x0,0x30,0x93,0x50,0xa0,0x0,0x0,0x0,0x0, + 0x31,0x67,0xa0,0x30,0x0,0x0,0x0,0x0,0x32,0x73,0x32,0xa0,0x0,0x0,0x0,0x0, + 0x33,0x47,0x82,0x30,0x0,0x0,0x0,0x0,0x34,0x53,0x14,0xa0,0x0,0x0,0x0,0x0, + 0x35,0x27,0x64,0x30,0x0,0x0,0x0,0x0,0x36,0x32,0xf6,0xa0,0x0,0x0,0x0,0x0, + 0x37,0x7,0x46,0x30,0x0,0x0,0x0,0x0,0x38,0x1c,0x13,0x20,0x0,0x0,0x0,0x0, + 0x38,0xe7,0x28,0x30,0x0,0x0,0x0,0x0,0x39,0xfb,0xf5,0x20,0x0,0x0,0x0,0x0, + 0x3a,0xc7,0xa,0x30,0x0,0x0,0x0,0x0,0x3b,0xdb,0xd7,0x20,0x0,0x0,0x0,0x0, + 0x3c,0xb0,0x26,0xb0,0x0,0x0,0x0,0x0,0x3d,0xbb,0xb9,0x20,0x0,0x0,0x0,0x0, + 0x3e,0x90,0x8,0xb0,0x0,0x0,0x0,0x0,0x3f,0x9b,0x9b,0x20,0x0,0x0,0x0,0x0, + 0x40,0x6f,0xea,0xb0,0x0,0x0,0x0,0x0,0x41,0x84,0xb7,0xa0,0x0,0x0,0x0,0x0, + 0x42,0x4f,0xcc,0xb0,0x0,0x0,0x0,0x0,0x43,0x64,0x99,0xa0,0x0,0x0,0x0,0x0, + 0x44,0x2f,0xae,0xb0,0x0,0x0,0x0,0x0,0x45,0x44,0x7b,0xa0,0x0,0x0,0x0,0x0, + 0x45,0xf3,0xe1,0x30,0x0,0x0,0x0,0x0,0x47,0x2d,0x98,0x20,0x0,0x0,0x0,0x0, + 0x47,0xd3,0xc3,0x30,0x0,0x0,0x0,0x0,0x49,0xd,0x7a,0x20,0x0,0x0,0x0,0x0, + 0x49,0xb3,0xa5,0x30,0x0,0x0,0x0,0x0,0x4a,0xed,0x5c,0x20,0x0,0x0,0x0,0x0, + 0x4b,0x9c,0xc1,0xb0,0x0,0x0,0x0,0x0,0x4c,0xd6,0x78,0xa0,0x0,0x0,0x0,0x0, + 0x4d,0x7c,0xa3,0xb0,0x0,0x0,0x0,0x0,0x4e,0xb6,0x5a,0xa0,0x0,0x0,0x0,0x0, + 0x4f,0x5c,0x85,0xb0,0x0,0x0,0x0,0x0,0x50,0x96,0x3c,0xa0,0x0,0x0,0x0,0x0, + 0x51,0x3c,0x67,0xb0,0x0,0x0,0x0,0x0,0x52,0x76,0x1e,0xa0,0x0,0x0,0x0,0x0, + 0x53,0x1c,0x49,0xb0,0x0,0x0,0x0,0x0,0x54,0x56,0x0,0xa0,0x0,0x0,0x0,0x0, + 0x54,0xfc,0x2b,0xb0,0x0,0x0,0x0,0x0,0x56,0x35,0xe2,0xa0,0x0,0x0,0x0,0x0, + 0x56,0xe5,0x48,0x30,0x0,0x0,0x0,0x0,0x58,0x1e,0xff,0x20,0x0,0x0,0x0,0x0, + 0x58,0xc5,0x2a,0x30,0x0,0x0,0x0,0x0,0x59,0xfe,0xe1,0x20,0x0,0x0,0x0,0x0, + 0x5a,0xa5,0xc,0x30,0x0,0x0,0x0,0x0,0x5b,0xde,0xc3,0x20,0x0,0x0,0x0,0x0, + 0x5c,0x84,0xee,0x30,0x0,0x0,0x0,0x0,0x5d,0xbe,0xa5,0x20,0x0,0x0,0x0,0x0, + 0x5e,0x64,0xd0,0x30,0x0,0x0,0x0,0x0,0x5f,0x9e,0x87,0x20,0x0,0x0,0x0,0x0, + 0x60,0x4d,0xec,0xb0,0x0,0x0,0x0,0x0,0x61,0x87,0xa3,0xa0,0x0,0x0,0x0,0x0, + 0x62,0x2d,0xce,0xb0,0x0,0x0,0x0,0x0,0x63,0x67,0x85,0xa0,0x0,0x0,0x0,0x0, + 0x64,0xd,0xb0,0xb0,0x0,0x0,0x0,0x0,0x65,0x47,0x67,0xa0,0x0,0x0,0x0,0x0, + 0x65,0xed,0x92,0xb0,0x0,0x0,0x0,0x0,0x67,0x27,0x49,0xa0,0x0,0x0,0x0,0x0, + 0x67,0xcd,0x74,0xb0,0x0,0x0,0x0,0x0,0x69,0x7,0x2b,0xa0,0x0,0x0,0x0,0x0, + 0x69,0xad,0x56,0xb0,0x0,0x0,0x0,0x0,0x6a,0xe7,0xd,0xa0,0x0,0x0,0x0,0x0, + 0x6b,0x96,0x73,0x30,0x0,0x0,0x0,0x0,0x6c,0xd0,0x2a,0x20,0x0,0x0,0x0,0x0, + 0x6d,0x76,0x55,0x30,0x0,0x0,0x0,0x0,0x6e,0xb0,0xc,0x20,0x0,0x0,0x0,0x0, + 0x6f,0x56,0x37,0x30,0x0,0x0,0x0,0x0,0x70,0x8f,0xee,0x20,0x0,0x0,0x0,0x0, + 0x71,0x36,0x19,0x30,0x0,0x0,0x0,0x0,0x72,0x6f,0xd0,0x20,0x0,0x0,0x0,0x0, + 0x73,0x15,0xfb,0x30,0x0,0x0,0x0,0x0,0x74,0x4f,0xb2,0x20,0x0,0x0,0x0,0x0, + 0x74,0xff,0x17,0xb0,0x0,0x0,0x0,0x0,0x76,0x38,0xce,0xa0,0x0,0x0,0x0,0x0, + 0x76,0xde,0xf9,0xb0,0x0,0x0,0x0,0x0,0x78,0x18,0xb0,0xa0,0x0,0x0,0x0,0x0, + 0x78,0xbe,0xdb,0xb0,0x0,0x0,0x0,0x0,0x79,0xf8,0x92,0xa0,0x0,0x0,0x0,0x0, + 0x7a,0x9e,0xbd,0xb0,0x0,0x0,0x0,0x0,0x7b,0xd8,0x74,0xa0,0x0,0x0,0x0,0x0, + 0x7c,0x7e,0x9f,0xb0,0x0,0x0,0x0,0x0,0x7d,0xb8,0x56,0xa0,0x0,0x0,0x0,0x0, + 0x7e,0x5e,0x81,0xb0,0x0,0x0,0x0,0x0,0x7f,0x98,0x38,0xa0,0x0,0x1,0x2,0x3, + 0x4,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2, + 0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x6, + 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, + 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, + 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, + 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, + 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, + 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, + 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x0,0x0,0xd2, + 0xa7,0x0,0x0,0xff,0xff,0x81,0x27,0x0,0x0,0xff,0xff,0x8f,0x80,0x0,0x4,0xff, + 0xff,0x9d,0x90,0x1,0x8,0xff,0xff,0x9d,0x90,0x1,0xc,0xff,0xff,0x9d,0x90,0x1, + 0x10,0xff,0xff,0x81,0x70,0x0,0x14,0xff,0xff,0x8f,0x80,0x1,0x18,0xff,0xff,0x8f, + 0x80,0x1,0x1c,0xff,0xff,0x81,0x70,0x0,0x21,0x4c,0x4d,0x54,0x0,0x50,0x53,0x54, + 0x0,0x50,0x57,0x54,0x0,0x50,0x50,0x54,0x0,0x50,0x44,0x54,0x0,0x59,0x53,0x54, + 0x0,0x59,0x44,0x54,0x0,0x41,0x4b,0x44,0x54,0x0,0x41,0x4b,0x53,0x54,0x0,0x0, + 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0, + 0x0,0x0,0x0,0xa,0x41,0x4b,0x53,0x54,0x39,0x41,0x4b,0x44,0x54,0x2c,0x4d,0x33, + 0x2e,0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Knox_IN + 0x0,0x0,0x9,0x85, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x9a,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x18,0x80,0x0,0x0,0x0,0x9e, + 0xa6,0x2c,0x80,0x9f,0xba,0xf9,0x70,0xa0,0x86,0xe,0x80,0xa1,0x9a,0xdb,0x70,0xcb, + 0x88,0xfe,0x80,0xd2,0x23,0xf4,0x70,0xd2,0x61,0x9,0xf0,0xd5,0x55,0xd5,0x0,0xd6, + 0x20,0xcd,0xf0,0xd7,0x35,0xb7,0x0,0xd8,0x0,0xaf,0xf0,0xd9,0x15,0x99,0x0,0xd9, + 0xe0,0x91,0xf0,0xda,0xfe,0xb5,0x80,0xdb,0xc0,0x73,0xf0,0xdc,0xde,0x97,0x80,0xdd, + 0xa9,0x90,0x70,0xde,0xbe,0x79,0x80,0xdf,0x89,0x72,0x70,0xe0,0x9e,0x5b,0x80,0xe1, + 0x69,0x54,0x70,0xe2,0x7e,0x3d,0x80,0xe3,0x49,0x36,0x70,0xe4,0x5e,0x1f,0x80,0xe5, + 0x57,0x3c,0xf0,0xe6,0x47,0x3c,0x0,0xe7,0x37,0x1e,0xf0,0xe8,0x27,0x1e,0x0,0xe8, + 0xf2,0x16,0xf0,0xea,0x7,0x0,0x0,0xea,0xd1,0xf8,0xf0,0xeb,0xe6,0xe2,0x0,0xec, + 0xd6,0xc4,0xf0,0xed,0xc6,0xc4,0x0,0xee,0xbf,0xe1,0x70,0xef,0xaf,0xe0,0x80,0xf0, + 0x9f,0xc3,0x70,0xf1,0x8f,0xc2,0x80,0xf4,0x5f,0x87,0x70,0xfa,0xf8,0x67,0x0,0xfb, + 0xe8,0x49,0xf0,0xfc,0xd8,0x49,0x0,0xfd,0xc8,0x2b,0xf0,0xfe,0xb8,0x2b,0x0,0xff, + 0xa8,0xd,0xf0,0x0,0x98,0xd,0x0,0x1,0x87,0xef,0xf0,0x2,0x77,0xef,0x0,0x3, + 0x71,0xc,0x70,0x4,0x61,0xb,0x80,0x5,0x50,0xee,0x70,0x6,0x40,0xed,0x80,0x7, + 0x30,0xd0,0x70,0x7,0x8d,0x27,0x80,0x9,0x10,0xb2,0x70,0x9,0xad,0xa3,0x0,0xa, + 0xf0,0x94,0x70,0xb,0xe0,0x93,0x80,0xc,0xd9,0xb0,0xf0,0xd,0xc0,0x75,0x80,0xe, + 0xb9,0x92,0xf0,0xf,0xa9,0x92,0x0,0x10,0x99,0x74,0xf0,0x11,0x89,0x74,0x0,0x12, + 0x79,0x56,0xf0,0x13,0x69,0x56,0x0,0x14,0x59,0x38,0xf0,0x15,0x49,0x38,0x0,0x16, + 0x39,0x1a,0xf0,0x17,0x29,0x1a,0x0,0x18,0x22,0x37,0x70,0x19,0x8,0xfc,0x0,0x1a, + 0x2,0x19,0x70,0x1a,0xf2,0x18,0x80,0x1b,0xe1,0xfb,0x70,0x1c,0xd1,0xfa,0x80,0x1d, + 0xc1,0xdd,0x70,0x1e,0xb1,0xdc,0x80,0x1f,0xa1,0xbf,0x70,0x20,0x76,0xf,0x0,0x21, + 0x81,0xa1,0x70,0x22,0x55,0xf1,0x0,0x23,0x6a,0xbd,0xf0,0x24,0x35,0xd3,0x0,0x25, + 0x4a,0x9f,0xf0,0x26,0x15,0xb5,0x0,0x27,0x2a,0x81,0xf0,0x27,0xfe,0xd1,0x80,0x29, + 0xa,0x63,0xf0,0x44,0x2f,0x76,0x70,0x45,0x44,0x51,0x70,0x45,0xf3,0xb7,0x0,0x47, + 0x2d,0x6d,0xf0,0x47,0xd3,0x99,0x0,0x49,0xd,0x4f,0xf0,0x49,0xb3,0x7b,0x0,0x4a, + 0xed,0x31,0xf0,0x4b,0x9c,0x97,0x80,0x4c,0xd6,0x4e,0x70,0x4d,0x7c,0x79,0x80,0x4e, + 0xb6,0x30,0x70,0x4f,0x5c,0x5b,0x80,0x50,0x96,0x12,0x70,0x51,0x3c,0x3d,0x80,0x52, + 0x75,0xf4,0x70,0x53,0x1c,0x1f,0x80,0x54,0x55,0xd6,0x70,0x54,0xfc,0x1,0x80,0x56, + 0x35,0xb8,0x70,0x56,0xe5,0x1e,0x0,0x58,0x1e,0xd4,0xf0,0x58,0xc5,0x0,0x0,0x59, + 0xfe,0xb6,0xf0,0x5a,0xa4,0xe2,0x0,0x5b,0xde,0x98,0xf0,0x5c,0x84,0xc4,0x0,0x5d, + 0xbe,0x7a,0xf0,0x5e,0x64,0xa6,0x0,0x5f,0x9e,0x5c,0xf0,0x60,0x4d,0xc2,0x80,0x61, + 0x87,0x79,0x70,0x62,0x2d,0xa4,0x80,0x63,0x67,0x5b,0x70,0x64,0xd,0x86,0x80,0x65, + 0x47,0x3d,0x70,0x65,0xed,0x68,0x80,0x67,0x27,0x1f,0x70,0x67,0xcd,0x4a,0x80,0x69, + 0x7,0x1,0x70,0x69,0xad,0x2c,0x80,0x6a,0xe6,0xe3,0x70,0x6b,0x96,0x49,0x0,0x6c, + 0xcf,0xff,0xf0,0x6d,0x76,0x2b,0x0,0x6e,0xaf,0xe1,0xf0,0x6f,0x56,0xd,0x0,0x70, + 0x8f,0xc3,0xf0,0x71,0x35,0xef,0x0,0x72,0x6f,0xa5,0xf0,0x73,0x15,0xd1,0x0,0x74, + 0x4f,0x87,0xf0,0x74,0xfe,0xed,0x80,0x76,0x38,0xa4,0x70,0x76,0xde,0xcf,0x80,0x78, + 0x18,0x86,0x70,0x78,0xbe,0xb1,0x80,0x79,0xf8,0x68,0x70,0x7a,0x9e,0x93,0x80,0x7b, + 0xd8,0x4a,0x70,0x7c,0x7e,0x75,0x80,0x7d,0xb8,0x2c,0x70,0x7e,0x5e,0x57,0x80,0x7f, + 0x98,0xe,0x70,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x2,0x1,0x2,0x1,0x2,0x1, 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x5,0x2,0x1,0x2,0x1,0x2,0x1, 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x5,0x1,0x2,0x1, 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0xb7,0x76,0x0,0x0,0xff, - 0xff,0xc7,0xc0,0x1,0x4,0xff,0xff,0xb9,0xb0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x45, - 0x44,0x54,0x0,0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0xae, + 0xca,0x0,0x0,0xff,0xff,0xb9,0xb0,0x1,0x4,0xff,0xff,0xab,0xa0,0x0,0x8,0xff, + 0xff,0xb9,0xb0,0x1,0xc,0xff,0xff,0xb9,0xb0,0x1,0x10,0xff,0xff,0xb9,0xb0,0x0, + 0x14,0xff,0xff,0xab,0xa0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x43,0x44,0x54,0x0,0x43, + 0x53,0x54,0x0,0x43,0x57,0x54,0x0,0x43,0x50,0x54,0x0,0x45,0x53,0x54,0x0,0x0, + 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x54,0x5a,0x69, 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x96,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0x93,0x37,0x42,0x8a,0xff,0xff,0xff,0xff,0xf5,0x4f,0x78, - 0x70,0xff,0xff,0xff,0xff,0xf6,0x3f,0x5b,0x60,0xff,0xff,0xff,0xff,0xf7,0x2f,0x5a, - 0x70,0xff,0xff,0xff,0xff,0xf8,0x28,0x77,0xe0,0xff,0xff,0xff,0xff,0xf9,0xf,0x3c, - 0x70,0xff,0xff,0xff,0xff,0xfa,0x8,0x59,0xe0,0xff,0xff,0xff,0xff,0xfa,0xf8,0x58, - 0xf0,0xff,0xff,0xff,0xff,0xfb,0xe8,0x3b,0xe0,0xff,0xff,0xff,0xff,0xfc,0xd8,0x3a, - 0xf0,0xff,0xff,0xff,0xff,0xfd,0xc8,0x1d,0xe0,0xff,0xff,0xff,0xff,0xfe,0xb8,0x1c, - 0xf0,0xff,0xff,0xff,0xff,0xff,0xa7,0xff,0xe0,0x0,0x0,0x0,0x0,0x0,0x97,0xfe, - 0xf0,0x0,0x0,0x0,0x0,0x1,0x87,0xe1,0xe0,0x0,0x0,0x0,0x0,0x2,0x77,0xe0, - 0xf0,0x0,0x0,0x0,0x0,0x3,0x70,0xfe,0x60,0x0,0x0,0x0,0x0,0x4,0x60,0xfd, - 0x70,0x0,0x0,0x0,0x0,0x5,0x50,0xe0,0x60,0x0,0x0,0x0,0x0,0x6,0x40,0xdf, - 0x70,0x0,0x0,0x0,0x0,0x7,0x30,0xc2,0x60,0x0,0x0,0x0,0x0,0x8,0x20,0xc1, - 0x70,0x0,0x0,0x0,0x0,0x9,0x10,0xa4,0x60,0x0,0x0,0x0,0x0,0xa,0x0,0xa3, - 0x70,0x0,0x0,0x0,0x0,0xa,0xf0,0x86,0x60,0x0,0x0,0x0,0x0,0xb,0xe0,0x85, - 0x70,0x0,0x0,0x0,0x0,0xc,0xd9,0xa2,0xe0,0x0,0x0,0x0,0x0,0xd,0xc0,0x67, - 0x70,0x0,0x0,0x0,0x0,0xe,0xb9,0x84,0xe0,0x0,0x0,0x0,0x0,0xf,0xa9,0x83, - 0xf0,0x0,0x0,0x0,0x0,0x10,0x99,0x66,0xe0,0x0,0x0,0x0,0x0,0x11,0x89,0x65, - 0xf0,0x0,0x0,0x0,0x0,0x12,0x79,0x48,0xe0,0x0,0x0,0x0,0x0,0x13,0x69,0x47, - 0xf0,0x0,0x0,0x0,0x0,0x14,0x59,0x2a,0xe0,0x0,0x0,0x0,0x0,0x15,0x49,0x29, - 0xf0,0x0,0x0,0x0,0x0,0x16,0x39,0xc,0xe0,0x0,0x0,0x0,0x0,0x17,0x29,0xb, - 0xf0,0x0,0x0,0x0,0x0,0x18,0x22,0x29,0x60,0x0,0x0,0x0,0x0,0x19,0x8,0xed, - 0xf0,0x0,0x0,0x0,0x0,0x1a,0x2,0xb,0x60,0x0,0x0,0x0,0x0,0x1a,0xf2,0xa, - 0x70,0x0,0x0,0x0,0x0,0x1b,0xe1,0xed,0x60,0x0,0x0,0x0,0x0,0x1c,0xd1,0xec, - 0x70,0x0,0x0,0x0,0x0,0x1d,0xc1,0xcf,0x60,0x0,0x0,0x0,0x0,0x1e,0xb1,0xce, - 0x70,0x0,0x0,0x0,0x0,0x1f,0xa1,0xb1,0x60,0x0,0x0,0x0,0x0,0x20,0x76,0x0, - 0xf0,0x0,0x0,0x0,0x0,0x21,0x81,0x93,0x60,0x0,0x0,0x0,0x0,0x22,0x55,0xe2, - 0xf0,0x0,0x0,0x0,0x0,0x23,0x6a,0xaf,0xe0,0x0,0x0,0x0,0x0,0x24,0x35,0xc4, - 0xf0,0x0,0x0,0x0,0x0,0x25,0x4a,0x91,0xe0,0x0,0x0,0x0,0x0,0x26,0x15,0xa6, - 0xf0,0x0,0x0,0x0,0x0,0x27,0x2a,0x73,0xe0,0x0,0x0,0x0,0x0,0x27,0xfe,0xc3, - 0x70,0x0,0x0,0x0,0x0,0x29,0xa,0x55,0xe0,0x0,0x0,0x0,0x0,0x29,0xde,0xa5, - 0x70,0x0,0x0,0x0,0x0,0x2a,0xea,0x37,0xe0,0x0,0x0,0x0,0x0,0x2b,0xbe,0x87, - 0x70,0x0,0x0,0x0,0x0,0x2c,0xd3,0x54,0x60,0x0,0x0,0x0,0x0,0x2d,0x9e,0x69, - 0x70,0x0,0x0,0x0,0x0,0x2e,0xb3,0x36,0x60,0x0,0x0,0x0,0x0,0x2f,0x7e,0x4b, - 0x70,0x0,0x0,0x0,0x0,0x30,0x93,0x18,0x60,0x0,0x0,0x0,0x0,0x31,0x67,0x67, - 0xf0,0x0,0x0,0x0,0x0,0x32,0x72,0xfa,0x60,0x0,0x0,0x0,0x0,0x33,0x47,0x49, - 0xf0,0x0,0x0,0x0,0x0,0x34,0x52,0xdc,0x60,0x0,0x0,0x0,0x0,0x35,0x27,0x2b, - 0xf0,0x0,0x0,0x0,0x0,0x36,0x32,0xbe,0x60,0x0,0x0,0x0,0x0,0x37,0x7,0xd, - 0xf0,0x0,0x0,0x0,0x0,0x38,0x1b,0xda,0xe0,0x0,0x0,0x0,0x0,0x38,0xe6,0xef, - 0xf0,0x0,0x0,0x0,0x0,0x39,0xfb,0xbc,0xe0,0x0,0x0,0x0,0x0,0x3a,0xc6,0xd1, - 0xf0,0x0,0x0,0x0,0x0,0x3b,0xdb,0x9e,0xe0,0x0,0x0,0x0,0x0,0x3c,0xaf,0xee, - 0x70,0x0,0x0,0x0,0x0,0x3d,0xbb,0x80,0xe0,0x0,0x0,0x0,0x0,0x3e,0x8f,0xd0, - 0x70,0x0,0x0,0x0,0x0,0x3f,0x9b,0x62,0xe0,0x0,0x0,0x0,0x0,0x40,0x6f,0xb2, - 0x70,0x0,0x0,0x0,0x0,0x41,0x84,0x7f,0x60,0x0,0x0,0x0,0x0,0x42,0x4f,0x94, - 0x70,0x0,0x0,0x0,0x0,0x43,0x64,0x61,0x60,0x0,0x0,0x0,0x0,0x44,0x2f,0x76, - 0x70,0x0,0x0,0x0,0x0,0x45,0x44,0x43,0x60,0x0,0x0,0x0,0x0,0x45,0xf3,0xa8, - 0xf0,0x0,0x0,0x0,0x0,0x47,0x2d,0x5f,0xe0,0x0,0x0,0x0,0x0,0x47,0xd3,0x8a, - 0xf0,0x0,0x0,0x0,0x0,0x49,0xd,0x41,0xe0,0x0,0x0,0x0,0x0,0x49,0xb3,0x6c, - 0xf0,0x0,0x0,0x0,0x0,0x4a,0xed,0x23,0xe0,0x0,0x0,0x0,0x0,0x4b,0x9c,0x89, - 0x70,0x0,0x0,0x0,0x0,0x4c,0xd6,0x40,0x60,0x0,0x0,0x0,0x0,0x4d,0x7c,0x6b, - 0x70,0x0,0x0,0x0,0x0,0x4e,0xb6,0x22,0x60,0x0,0x0,0x0,0x0,0x4f,0x5c,0x4d, - 0x70,0x0,0x0,0x0,0x0,0x50,0x96,0x4,0x60,0x0,0x0,0x0,0x0,0x51,0x3c,0x2f, - 0x70,0x0,0x0,0x0,0x0,0x52,0x75,0xe6,0x60,0x0,0x0,0x0,0x0,0x53,0x1c,0x11, - 0x70,0x0,0x0,0x0,0x0,0x54,0x55,0xc8,0x60,0x0,0x0,0x0,0x0,0x54,0xfb,0xf3, - 0x70,0x0,0x0,0x0,0x0,0x56,0x35,0xaa,0x60,0x0,0x0,0x0,0x0,0x56,0xe5,0xf, - 0xf0,0x0,0x0,0x0,0x0,0x58,0x1e,0xc6,0xe0,0x0,0x0,0x0,0x0,0x58,0xc4,0xf1, - 0xf0,0x0,0x0,0x0,0x0,0x59,0xfe,0xa8,0xe0,0x0,0x0,0x0,0x0,0x5a,0xa4,0xd3, - 0xf0,0x0,0x0,0x0,0x0,0x5b,0xde,0x8a,0xe0,0x0,0x0,0x0,0x0,0x5c,0x84,0xb5, - 0xf0,0x0,0x0,0x0,0x0,0x5d,0xbe,0x6c,0xe0,0x0,0x0,0x0,0x0,0x5e,0x64,0x97, - 0xf0,0x0,0x0,0x0,0x0,0x5f,0x9e,0x4e,0xe0,0x0,0x0,0x0,0x0,0x60,0x4d,0xb4, - 0x70,0x0,0x0,0x0,0x0,0x61,0x87,0x6b,0x60,0x0,0x0,0x0,0x0,0x62,0x2d,0x96, - 0x70,0x0,0x0,0x0,0x0,0x63,0x67,0x4d,0x60,0x0,0x0,0x0,0x0,0x64,0xd,0x78, - 0x70,0x0,0x0,0x0,0x0,0x65,0x47,0x2f,0x60,0x0,0x0,0x0,0x0,0x65,0xed,0x5a, - 0x70,0x0,0x0,0x0,0x0,0x67,0x27,0x11,0x60,0x0,0x0,0x0,0x0,0x67,0xcd,0x3c, - 0x70,0x0,0x0,0x0,0x0,0x69,0x6,0xf3,0x60,0x0,0x0,0x0,0x0,0x69,0xad,0x1e, - 0x70,0x0,0x0,0x0,0x0,0x6a,0xe6,0xd5,0x60,0x0,0x0,0x0,0x0,0x6b,0x96,0x3a, - 0xf0,0x0,0x0,0x0,0x0,0x6c,0xcf,0xf1,0xe0,0x0,0x0,0x0,0x0,0x6d,0x76,0x1c, - 0xf0,0x0,0x0,0x0,0x0,0x6e,0xaf,0xd3,0xe0,0x0,0x0,0x0,0x0,0x6f,0x55,0xfe, - 0xf0,0x0,0x0,0x0,0x0,0x70,0x8f,0xb5,0xe0,0x0,0x0,0x0,0x0,0x71,0x35,0xe0, - 0xf0,0x0,0x0,0x0,0x0,0x72,0x6f,0x97,0xe0,0x0,0x0,0x0,0x0,0x73,0x15,0xc2, - 0xf0,0x0,0x0,0x0,0x0,0x74,0x4f,0x79,0xe0,0x0,0x0,0x0,0x0,0x74,0xfe,0xdf, - 0x70,0x0,0x0,0x0,0x0,0x76,0x38,0x96,0x60,0x0,0x0,0x0,0x0,0x76,0xde,0xc1, - 0x70,0x0,0x0,0x0,0x0,0x78,0x18,0x78,0x60,0x0,0x0,0x0,0x0,0x78,0xbe,0xa3, - 0x70,0x0,0x0,0x0,0x0,0x79,0xf8,0x5a,0x60,0x0,0x0,0x0,0x0,0x7a,0x9e,0x85, - 0x70,0x0,0x0,0x0,0x0,0x7b,0xd8,0x3c,0x60,0x0,0x0,0x0,0x0,0x7c,0x7e,0x67, - 0x70,0x0,0x0,0x0,0x0,0x7d,0xb8,0x1e,0x60,0x0,0x0,0x0,0x0,0x7e,0x5e,0x49, - 0x70,0x0,0x0,0x0,0x0,0x7f,0x98,0x0,0x60,0x0,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff, - 0xff,0xb7,0x76,0x0,0x0,0xff,0xff,0xc7,0xc0,0x1,0x4,0xff,0xff,0xb9,0xb0,0x0, - 0x8,0x4c,0x4d,0x54,0x0,0x45,0x44,0x54,0x0,0x45,0x53,0x54,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0xa,0x45,0x53,0x54,0x35,0x45,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32, - 0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Eirunepe - 0x0,0x0,0x2,0xac, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x22,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x11,0x80,0x0,0x0,0x0,0x96, - 0xaa,0x88,0x80,0xb8,0xf,0x66,0x0,0xb8,0xfd,0x5c,0xc0,0xb9,0xf1,0x50,0x50,0xba, - 0xde,0x90,0x40,0xda,0x38,0xca,0x50,0xda,0xec,0x16,0x50,0xdc,0x19,0xfd,0xd0,0xdc, - 0xb9,0x75,0x40,0xdd,0xfb,0x31,0x50,0xde,0x9b,0xfa,0x40,0xdf,0xdd,0xb6,0x50,0xe0, - 0x54,0x4f,0x40,0xf4,0x98,0x1b,0xd0,0xf5,0x5,0x7a,0x40,0xf6,0xc0,0x80,0x50,0xf7, - 0xe,0x3a,0xc0,0xf8,0x51,0x48,0x50,0xf8,0xc7,0xe1,0x40,0xfa,0xa,0xee,0xd0,0xfa, - 0xa9,0x14,0xc0,0xfb,0xec,0x22,0x50,0xfc,0x8b,0x99,0xc0,0x1d,0xc9,0xaa,0x50,0x1e, - 0x78,0xf3,0xc0,0x1f,0xa0,0x51,0xd0,0x20,0x33,0xeb,0xc0,0x21,0x81,0x85,0x50,0x22, - 0xb,0xe4,0xc0,0x2c,0xc0,0xd1,0x50,0x2d,0x66,0xe0,0x40,0x48,0x60,0x7f,0x50,0x52, - 0x7f,0x4,0xc0,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x3,0x2,0xff,0xff,0xbe,0x80,0x0,0x0,0xff,0xff,0xc7,0xc0,0x1, - 0x4,0xff,0xff,0xb9,0xb0,0x0,0x9,0xff,0xff,0xc7,0xc0,0x0,0xd,0xff,0xff,0xb9, - 0xb0,0x0,0x9,0x4c,0x4d,0x54,0x0,0x41,0x43,0x53,0x54,0x0,0x41,0x43,0x54,0x0, - 0x41,0x4d,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a, - 0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x22,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x11,0xf8,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xff,0xff,0xff,0xff,0x96,0xaa,0x88,0x80,0xff,0xff,0xff,0xff,0xb8,0xf, - 0x66,0x0,0xff,0xff,0xff,0xff,0xb8,0xfd,0x5c,0xc0,0xff,0xff,0xff,0xff,0xb9,0xf1, - 0x50,0x50,0xff,0xff,0xff,0xff,0xba,0xde,0x90,0x40,0xff,0xff,0xff,0xff,0xda,0x38, - 0xca,0x50,0xff,0xff,0xff,0xff,0xda,0xec,0x16,0x50,0xff,0xff,0xff,0xff,0xdc,0x19, - 0xfd,0xd0,0xff,0xff,0xff,0xff,0xdc,0xb9,0x75,0x40,0xff,0xff,0xff,0xff,0xdd,0xfb, - 0x31,0x50,0xff,0xff,0xff,0xff,0xde,0x9b,0xfa,0x40,0xff,0xff,0xff,0xff,0xdf,0xdd, - 0xb6,0x50,0xff,0xff,0xff,0xff,0xe0,0x54,0x4f,0x40,0xff,0xff,0xff,0xff,0xf4,0x98, - 0x1b,0xd0,0xff,0xff,0xff,0xff,0xf5,0x5,0x7a,0x40,0xff,0xff,0xff,0xff,0xf6,0xc0, - 0x80,0x50,0xff,0xff,0xff,0xff,0xf7,0xe,0x3a,0xc0,0xff,0xff,0xff,0xff,0xf8,0x51, - 0x48,0x50,0xff,0xff,0xff,0xff,0xf8,0xc7,0xe1,0x40,0xff,0xff,0xff,0xff,0xfa,0xa, - 0xee,0xd0,0xff,0xff,0xff,0xff,0xfa,0xa9,0x14,0xc0,0xff,0xff,0xff,0xff,0xfb,0xec, - 0x22,0x50,0xff,0xff,0xff,0xff,0xfc,0x8b,0x99,0xc0,0x0,0x0,0x0,0x0,0x1d,0xc9, - 0xaa,0x50,0x0,0x0,0x0,0x0,0x1e,0x78,0xf3,0xc0,0x0,0x0,0x0,0x0,0x1f,0xa0, - 0x51,0xd0,0x0,0x0,0x0,0x0,0x20,0x33,0xeb,0xc0,0x0,0x0,0x0,0x0,0x21,0x81, - 0x85,0x50,0x0,0x0,0x0,0x0,0x22,0xb,0xe4,0xc0,0x0,0x0,0x0,0x0,0x2c,0xc0, - 0xd1,0x50,0x0,0x0,0x0,0x0,0x2d,0x66,0xe0,0x40,0x0,0x0,0x0,0x0,0x48,0x60, - 0x7f,0x50,0x0,0x0,0x0,0x0,0x52,0x7f,0x4,0xc0,0x0,0x2,0x1,0x2,0x1,0x2, + 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x9b,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x18,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0x5e,0x3,0xfe,0xa0,0xff,0xff,0xff,0xff,0x9e,0xa6,0x2c, + 0x80,0xff,0xff,0xff,0xff,0x9f,0xba,0xf9,0x70,0xff,0xff,0xff,0xff,0xa0,0x86,0xe, + 0x80,0xff,0xff,0xff,0xff,0xa1,0x9a,0xdb,0x70,0xff,0xff,0xff,0xff,0xcb,0x88,0xfe, + 0x80,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x61,0x9, + 0xf0,0xff,0xff,0xff,0xff,0xd5,0x55,0xd5,0x0,0xff,0xff,0xff,0xff,0xd6,0x20,0xcd, + 0xf0,0xff,0xff,0xff,0xff,0xd7,0x35,0xb7,0x0,0xff,0xff,0xff,0xff,0xd8,0x0,0xaf, + 0xf0,0xff,0xff,0xff,0xff,0xd9,0x15,0x99,0x0,0xff,0xff,0xff,0xff,0xd9,0xe0,0x91, + 0xf0,0xff,0xff,0xff,0xff,0xda,0xfe,0xb5,0x80,0xff,0xff,0xff,0xff,0xdb,0xc0,0x73, + 0xf0,0xff,0xff,0xff,0xff,0xdc,0xde,0x97,0x80,0xff,0xff,0xff,0xff,0xdd,0xa9,0x90, + 0x70,0xff,0xff,0xff,0xff,0xde,0xbe,0x79,0x80,0xff,0xff,0xff,0xff,0xdf,0x89,0x72, + 0x70,0xff,0xff,0xff,0xff,0xe0,0x9e,0x5b,0x80,0xff,0xff,0xff,0xff,0xe1,0x69,0x54, + 0x70,0xff,0xff,0xff,0xff,0xe2,0x7e,0x3d,0x80,0xff,0xff,0xff,0xff,0xe3,0x49,0x36, + 0x70,0xff,0xff,0xff,0xff,0xe4,0x5e,0x1f,0x80,0xff,0xff,0xff,0xff,0xe5,0x57,0x3c, + 0xf0,0xff,0xff,0xff,0xff,0xe6,0x47,0x3c,0x0,0xff,0xff,0xff,0xff,0xe7,0x37,0x1e, + 0xf0,0xff,0xff,0xff,0xff,0xe8,0x27,0x1e,0x0,0xff,0xff,0xff,0xff,0xe8,0xf2,0x16, + 0xf0,0xff,0xff,0xff,0xff,0xea,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0xea,0xd1,0xf8, + 0xf0,0xff,0xff,0xff,0xff,0xeb,0xe6,0xe2,0x0,0xff,0xff,0xff,0xff,0xec,0xd6,0xc4, + 0xf0,0xff,0xff,0xff,0xff,0xed,0xc6,0xc4,0x0,0xff,0xff,0xff,0xff,0xee,0xbf,0xe1, + 0x70,0xff,0xff,0xff,0xff,0xef,0xaf,0xe0,0x80,0xff,0xff,0xff,0xff,0xf0,0x9f,0xc3, + 0x70,0xff,0xff,0xff,0xff,0xf1,0x8f,0xc2,0x80,0xff,0xff,0xff,0xff,0xf4,0x5f,0x87, + 0x70,0xff,0xff,0xff,0xff,0xfa,0xf8,0x67,0x0,0xff,0xff,0xff,0xff,0xfb,0xe8,0x49, + 0xf0,0xff,0xff,0xff,0xff,0xfc,0xd8,0x49,0x0,0xff,0xff,0xff,0xff,0xfd,0xc8,0x2b, + 0xf0,0xff,0xff,0xff,0xff,0xfe,0xb8,0x2b,0x0,0xff,0xff,0xff,0xff,0xff,0xa8,0xd, + 0xf0,0x0,0x0,0x0,0x0,0x0,0x98,0xd,0x0,0x0,0x0,0x0,0x0,0x1,0x87,0xef, + 0xf0,0x0,0x0,0x0,0x0,0x2,0x77,0xef,0x0,0x0,0x0,0x0,0x0,0x3,0x71,0xc, + 0x70,0x0,0x0,0x0,0x0,0x4,0x61,0xb,0x80,0x0,0x0,0x0,0x0,0x5,0x50,0xee, + 0x70,0x0,0x0,0x0,0x0,0x6,0x40,0xed,0x80,0x0,0x0,0x0,0x0,0x7,0x30,0xd0, + 0x70,0x0,0x0,0x0,0x0,0x7,0x8d,0x27,0x80,0x0,0x0,0x0,0x0,0x9,0x10,0xb2, + 0x70,0x0,0x0,0x0,0x0,0x9,0xad,0xa3,0x0,0x0,0x0,0x0,0x0,0xa,0xf0,0x94, + 0x70,0x0,0x0,0x0,0x0,0xb,0xe0,0x93,0x80,0x0,0x0,0x0,0x0,0xc,0xd9,0xb0, + 0xf0,0x0,0x0,0x0,0x0,0xd,0xc0,0x75,0x80,0x0,0x0,0x0,0x0,0xe,0xb9,0x92, + 0xf0,0x0,0x0,0x0,0x0,0xf,0xa9,0x92,0x0,0x0,0x0,0x0,0x0,0x10,0x99,0x74, + 0xf0,0x0,0x0,0x0,0x0,0x11,0x89,0x74,0x0,0x0,0x0,0x0,0x0,0x12,0x79,0x56, + 0xf0,0x0,0x0,0x0,0x0,0x13,0x69,0x56,0x0,0x0,0x0,0x0,0x0,0x14,0x59,0x38, + 0xf0,0x0,0x0,0x0,0x0,0x15,0x49,0x38,0x0,0x0,0x0,0x0,0x0,0x16,0x39,0x1a, + 0xf0,0x0,0x0,0x0,0x0,0x17,0x29,0x1a,0x0,0x0,0x0,0x0,0x0,0x18,0x22,0x37, + 0x70,0x0,0x0,0x0,0x0,0x19,0x8,0xfc,0x0,0x0,0x0,0x0,0x0,0x1a,0x2,0x19, + 0x70,0x0,0x0,0x0,0x0,0x1a,0xf2,0x18,0x80,0x0,0x0,0x0,0x0,0x1b,0xe1,0xfb, + 0x70,0x0,0x0,0x0,0x0,0x1c,0xd1,0xfa,0x80,0x0,0x0,0x0,0x0,0x1d,0xc1,0xdd, + 0x70,0x0,0x0,0x0,0x0,0x1e,0xb1,0xdc,0x80,0x0,0x0,0x0,0x0,0x1f,0xa1,0xbf, + 0x70,0x0,0x0,0x0,0x0,0x20,0x76,0xf,0x0,0x0,0x0,0x0,0x0,0x21,0x81,0xa1, + 0x70,0x0,0x0,0x0,0x0,0x22,0x55,0xf1,0x0,0x0,0x0,0x0,0x0,0x23,0x6a,0xbd, + 0xf0,0x0,0x0,0x0,0x0,0x24,0x35,0xd3,0x0,0x0,0x0,0x0,0x0,0x25,0x4a,0x9f, + 0xf0,0x0,0x0,0x0,0x0,0x26,0x15,0xb5,0x0,0x0,0x0,0x0,0x0,0x27,0x2a,0x81, + 0xf0,0x0,0x0,0x0,0x0,0x27,0xfe,0xd1,0x80,0x0,0x0,0x0,0x0,0x29,0xa,0x63, + 0xf0,0x0,0x0,0x0,0x0,0x44,0x2f,0x76,0x70,0x0,0x0,0x0,0x0,0x45,0x44,0x51, + 0x70,0x0,0x0,0x0,0x0,0x45,0xf3,0xb7,0x0,0x0,0x0,0x0,0x0,0x47,0x2d,0x6d, + 0xf0,0x0,0x0,0x0,0x0,0x47,0xd3,0x99,0x0,0x0,0x0,0x0,0x0,0x49,0xd,0x4f, + 0xf0,0x0,0x0,0x0,0x0,0x49,0xb3,0x7b,0x0,0x0,0x0,0x0,0x0,0x4a,0xed,0x31, + 0xf0,0x0,0x0,0x0,0x0,0x4b,0x9c,0x97,0x80,0x0,0x0,0x0,0x0,0x4c,0xd6,0x4e, + 0x70,0x0,0x0,0x0,0x0,0x4d,0x7c,0x79,0x80,0x0,0x0,0x0,0x0,0x4e,0xb6,0x30, + 0x70,0x0,0x0,0x0,0x0,0x4f,0x5c,0x5b,0x80,0x0,0x0,0x0,0x0,0x50,0x96,0x12, + 0x70,0x0,0x0,0x0,0x0,0x51,0x3c,0x3d,0x80,0x0,0x0,0x0,0x0,0x52,0x75,0xf4, + 0x70,0x0,0x0,0x0,0x0,0x53,0x1c,0x1f,0x80,0x0,0x0,0x0,0x0,0x54,0x55,0xd6, + 0x70,0x0,0x0,0x0,0x0,0x54,0xfc,0x1,0x80,0x0,0x0,0x0,0x0,0x56,0x35,0xb8, + 0x70,0x0,0x0,0x0,0x0,0x56,0xe5,0x1e,0x0,0x0,0x0,0x0,0x0,0x58,0x1e,0xd4, + 0xf0,0x0,0x0,0x0,0x0,0x58,0xc5,0x0,0x0,0x0,0x0,0x0,0x0,0x59,0xfe,0xb6, + 0xf0,0x0,0x0,0x0,0x0,0x5a,0xa4,0xe2,0x0,0x0,0x0,0x0,0x0,0x5b,0xde,0x98, + 0xf0,0x0,0x0,0x0,0x0,0x5c,0x84,0xc4,0x0,0x0,0x0,0x0,0x0,0x5d,0xbe,0x7a, + 0xf0,0x0,0x0,0x0,0x0,0x5e,0x64,0xa6,0x0,0x0,0x0,0x0,0x0,0x5f,0x9e,0x5c, + 0xf0,0x0,0x0,0x0,0x0,0x60,0x4d,0xc2,0x80,0x0,0x0,0x0,0x0,0x61,0x87,0x79, + 0x70,0x0,0x0,0x0,0x0,0x62,0x2d,0xa4,0x80,0x0,0x0,0x0,0x0,0x63,0x67,0x5b, + 0x70,0x0,0x0,0x0,0x0,0x64,0xd,0x86,0x80,0x0,0x0,0x0,0x0,0x65,0x47,0x3d, + 0x70,0x0,0x0,0x0,0x0,0x65,0xed,0x68,0x80,0x0,0x0,0x0,0x0,0x67,0x27,0x1f, + 0x70,0x0,0x0,0x0,0x0,0x67,0xcd,0x4a,0x80,0x0,0x0,0x0,0x0,0x69,0x7,0x1, + 0x70,0x0,0x0,0x0,0x0,0x69,0xad,0x2c,0x80,0x0,0x0,0x0,0x0,0x6a,0xe6,0xe3, + 0x70,0x0,0x0,0x0,0x0,0x6b,0x96,0x49,0x0,0x0,0x0,0x0,0x0,0x6c,0xcf,0xff, + 0xf0,0x0,0x0,0x0,0x0,0x6d,0x76,0x2b,0x0,0x0,0x0,0x0,0x0,0x6e,0xaf,0xe1, + 0xf0,0x0,0x0,0x0,0x0,0x6f,0x56,0xd,0x0,0x0,0x0,0x0,0x0,0x70,0x8f,0xc3, + 0xf0,0x0,0x0,0x0,0x0,0x71,0x35,0xef,0x0,0x0,0x0,0x0,0x0,0x72,0x6f,0xa5, + 0xf0,0x0,0x0,0x0,0x0,0x73,0x15,0xd1,0x0,0x0,0x0,0x0,0x0,0x74,0x4f,0x87, + 0xf0,0x0,0x0,0x0,0x0,0x74,0xfe,0xed,0x80,0x0,0x0,0x0,0x0,0x76,0x38,0xa4, + 0x70,0x0,0x0,0x0,0x0,0x76,0xde,0xcf,0x80,0x0,0x0,0x0,0x0,0x78,0x18,0x86, + 0x70,0x0,0x0,0x0,0x0,0x78,0xbe,0xb1,0x80,0x0,0x0,0x0,0x0,0x79,0xf8,0x68, + 0x70,0x0,0x0,0x0,0x0,0x7a,0x9e,0x93,0x80,0x0,0x0,0x0,0x0,0x7b,0xd8,0x4a, + 0x70,0x0,0x0,0x0,0x0,0x7c,0x7e,0x75,0x80,0x0,0x0,0x0,0x0,0x7d,0xb8,0x2c, + 0x70,0x0,0x0,0x0,0x0,0x7e,0x5e,0x57,0x80,0x0,0x0,0x0,0x0,0x7f,0x98,0xe, + 0x70,0x0,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x2,0xff,0xff,0xbe,0x80, - 0x0,0x0,0xff,0xff,0xc7,0xc0,0x1,0x4,0xff,0xff,0xb9,0xb0,0x0,0x9,0xff,0xff, - 0xc7,0xc0,0x0,0xd,0xff,0xff,0xb9,0xb0,0x0,0x9,0x4c,0x4d,0x54,0x0,0x41,0x43, - 0x53,0x54,0x0,0x41,0x43,0x54,0x0,0x41,0x4d,0x54,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0xa,0x41,0x43,0x54,0x35,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Manaus - 0x0,0x0,0x2,0x68, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x20,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0x96, - 0xaa,0x7f,0x44,0xb8,0xf,0x57,0xf0,0xb8,0xfd,0x4e,0xb0,0xb9,0xf1,0x42,0x40,0xba, - 0xde,0x82,0x30,0xda,0x38,0xbc,0x40,0xda,0xec,0x8,0x40,0xdc,0x19,0xef,0xc0,0xdc, - 0xb9,0x67,0x30,0xdd,0xfb,0x23,0x40,0xde,0x9b,0xec,0x30,0xdf,0xdd,0xa8,0x40,0xe0, - 0x54,0x41,0x30,0xf4,0x98,0xd,0xc0,0xf5,0x5,0x6c,0x30,0xf6,0xc0,0x72,0x40,0xf7, - 0xe,0x2c,0xb0,0xf8,0x51,0x3a,0x40,0xf8,0xc7,0xd3,0x30,0xfa,0xa,0xe0,0xc0,0xfa, - 0xa9,0x6,0xb0,0xfb,0xec,0x14,0x40,0xfc,0x8b,0x8b,0xb0,0x1d,0xc9,0x9c,0x40,0x1e, - 0x78,0xe5,0xb0,0x1f,0xa0,0x43,0xc0,0x20,0x33,0xdd,0xb0,0x21,0x81,0x77,0x40,0x22, - 0xb,0xd6,0xb0,0x2c,0xc0,0xc3,0x40,0x2d,0x66,0xd2,0x30,0x0,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0xc7,0xbc,0x0, - 0x0,0xff,0xff,0xd5,0xd0,0x1,0x4,0xff,0xff,0xc7,0xc0,0x0,0x9,0x4c,0x4d,0x54, - 0x0,0x41,0x4d,0x53,0x54,0x0,0x41,0x4d,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xd,0xf8,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x96,0xaa,0x7f,0x44,0xff,0xff,0xff,0xff, - 0xb8,0xf,0x57,0xf0,0xff,0xff,0xff,0xff,0xb8,0xfd,0x4e,0xb0,0xff,0xff,0xff,0xff, - 0xb9,0xf1,0x42,0x40,0xff,0xff,0xff,0xff,0xba,0xde,0x82,0x30,0xff,0xff,0xff,0xff, - 0xda,0x38,0xbc,0x40,0xff,0xff,0xff,0xff,0xda,0xec,0x8,0x40,0xff,0xff,0xff,0xff, - 0xdc,0x19,0xef,0xc0,0xff,0xff,0xff,0xff,0xdc,0xb9,0x67,0x30,0xff,0xff,0xff,0xff, - 0xdd,0xfb,0x23,0x40,0xff,0xff,0xff,0xff,0xde,0x9b,0xec,0x30,0xff,0xff,0xff,0xff, - 0xdf,0xdd,0xa8,0x40,0xff,0xff,0xff,0xff,0xe0,0x54,0x41,0x30,0xff,0xff,0xff,0xff, - 0xf4,0x98,0xd,0xc0,0xff,0xff,0xff,0xff,0xf5,0x5,0x6c,0x30,0xff,0xff,0xff,0xff, - 0xf6,0xc0,0x72,0x40,0xff,0xff,0xff,0xff,0xf7,0xe,0x2c,0xb0,0xff,0xff,0xff,0xff, - 0xf8,0x51,0x3a,0x40,0xff,0xff,0xff,0xff,0xf8,0xc7,0xd3,0x30,0xff,0xff,0xff,0xff, - 0xfa,0xa,0xe0,0xc0,0xff,0xff,0xff,0xff,0xfa,0xa9,0x6,0xb0,0xff,0xff,0xff,0xff, - 0xfb,0xec,0x14,0x40,0xff,0xff,0xff,0xff,0xfc,0x8b,0x8b,0xb0,0x0,0x0,0x0,0x0, - 0x1d,0xc9,0x9c,0x40,0x0,0x0,0x0,0x0,0x1e,0x78,0xe5,0xb0,0x0,0x0,0x0,0x0, - 0x1f,0xa0,0x43,0xc0,0x0,0x0,0x0,0x0,0x20,0x33,0xdd,0xb0,0x0,0x0,0x0,0x0, - 0x21,0x81,0x77,0x40,0x0,0x0,0x0,0x0,0x22,0xb,0xd6,0xb0,0x0,0x0,0x0,0x0, - 0x2c,0xc0,0xc3,0x40,0x0,0x0,0x0,0x0,0x2d,0x66,0xd2,0x30,0x0,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0xc7,0xbc, - 0x0,0x0,0xff,0xff,0xd5,0xd0,0x1,0x4,0xff,0xff,0xc7,0xc0,0x0,0x9,0x4c,0x4d, - 0x54,0x0,0x41,0x4d,0x53,0x54,0x0,0x41,0x4d,0x54,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xa,0x41,0x4d,0x54,0x34,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Mazatlan - 0x0,0x0,0x6,0x1c, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x5,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x5,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0xae,0xca, + 0x0,0x0,0xff,0xff,0xb9,0xb0,0x1,0x4,0xff,0xff,0xab,0xa0,0x0,0x8,0xff,0xff, + 0xb9,0xb0,0x1,0xc,0xff,0xff,0xb9,0xb0,0x1,0x10,0xff,0xff,0xb9,0xb0,0x0,0x14, + 0xff,0xff,0xab,0xa0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x43,0x44,0x54,0x0,0x43,0x53, + 0x54,0x0,0x43,0x57,0x54,0x0,0x43,0x50,0x54,0x0,0x45,0x53,0x54,0x0,0x0,0x0, + 0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0xa,0x43,0x53,0x54, + 0x36,0x43,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e, + 0x31,0x2e,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Montevideo + 0x0,0x0,0x6,0x1, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x5e,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0xa5, - 0xb6,0xe8,0x70,0xaf,0xf2,0x6e,0xe0,0xb6,0x66,0x56,0x60,0xb7,0x43,0xd2,0x60,0xb8, - 0xc,0x36,0x60,0xb8,0xfd,0x86,0xf0,0xcb,0xea,0x71,0x60,0xd8,0x91,0xb4,0xf0,0x0, - 0x0,0x70,0x80,0x31,0x67,0x84,0x10,0x32,0x73,0x16,0x80,0x33,0x47,0x66,0x10,0x34, - 0x52,0xf8,0x80,0x35,0x27,0x48,0x10,0x36,0x32,0xda,0x80,0x37,0x7,0x2a,0x10,0x38, - 0x1b,0xf7,0x0,0x38,0xe7,0xc,0x10,0x39,0xfb,0xd9,0x0,0x3a,0xf5,0x12,0x90,0x3b, - 0xb6,0xd1,0x0,0x3c,0xb0,0xa,0x90,0x3d,0xbb,0x9d,0x0,0x3e,0x8f,0xec,0x90,0x3f, - 0x9b,0x7f,0x0,0x40,0x6f,0xce,0x90,0x41,0x84,0x9b,0x80,0x42,0x4f,0xb0,0x90,0x43, - 0x64,0x7d,0x80,0x44,0x2f,0x92,0x90,0x45,0x44,0x5f,0x80,0x46,0xf,0x74,0x90,0x47, - 0x24,0x41,0x80,0x47,0xf8,0x91,0x10,0x49,0x4,0x23,0x80,0x49,0xd8,0x73,0x10,0x4a, - 0xe4,0x5,0x80,0x4b,0xb8,0x55,0x10,0x4c,0xcd,0x22,0x0,0x4d,0x98,0x37,0x10,0x4e, - 0xad,0x4,0x0,0x4f,0x78,0x19,0x10,0x50,0x8c,0xe6,0x0,0x51,0x61,0x35,0x90,0x52, - 0x6c,0xc8,0x0,0x53,0x41,0x17,0x90,0x54,0x4c,0xaa,0x0,0x55,0x20,0xf9,0x90,0x56, - 0x2c,0x8c,0x0,0x57,0x0,0xdb,0x90,0x58,0x15,0xa8,0x80,0x58,0xe0,0xbd,0x90,0x59, - 0xf5,0x8a,0x80,0x5a,0xc0,0x9f,0x90,0x5b,0xd5,0x6c,0x80,0x5c,0xa9,0xbc,0x10,0x5d, - 0xb5,0x4e,0x80,0x5e,0x89,0x9e,0x10,0x5f,0x95,0x30,0x80,0x60,0x69,0x80,0x10,0x61, - 0x7e,0x4d,0x0,0x62,0x49,0x62,0x10,0x63,0x5e,0x2f,0x0,0x64,0x29,0x44,0x10,0x65, - 0x3e,0x11,0x0,0x66,0x12,0x60,0x90,0x67,0x1d,0xf3,0x0,0x67,0xf2,0x42,0x90,0x68, - 0xfd,0xd5,0x0,0x69,0xd2,0x24,0x90,0x6a,0xdd,0xb7,0x0,0x6b,0xb2,0x6,0x90,0x6c, - 0xc6,0xd3,0x80,0x6d,0x91,0xe8,0x90,0x6e,0xa6,0xb5,0x80,0x6f,0x71,0xca,0x90,0x70, - 0x86,0x97,0x80,0x71,0x5a,0xe7,0x10,0x72,0x66,0x79,0x80,0x73,0x3a,0xc9,0x10,0x74, - 0x46,0x5b,0x80,0x75,0x1a,0xab,0x10,0x76,0x2f,0x78,0x0,0x76,0xfa,0x8d,0x10,0x78, - 0xf,0x5a,0x0,0x78,0xda,0x6f,0x10,0x79,0xef,0x3c,0x0,0x7a,0xba,0x51,0x10,0x7b, - 0xcf,0x1e,0x0,0x7c,0xa3,0x6d,0x90,0x7d,0xaf,0x0,0x0,0x7e,0x83,0x4f,0x90,0x7f, - 0x8e,0xe2,0x0,0x0,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x3,0x1,0x4,0x1,0x4, - 0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4, - 0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4, - 0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4, - 0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4, - 0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4, - 0x1,0xff,0xff,0x9c,0x3c,0x0,0x0,0xff,0xff,0x9d,0x90,0x0,0x4,0xff,0xff,0xab, - 0xa0,0x0,0x8,0xff,0xff,0x8f,0x80,0x0,0xc,0xff,0xff,0xab,0xa0,0x1,0x10,0xff, - 0xff,0x9d,0x90,0x0,0x4,0x4c,0x4d,0x54,0x0,0x4d,0x53,0x54,0x0,0x43,0x53,0x54, - 0x0,0x50,0x53,0x54,0x0,0x4d,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, - 0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5e,0x0,0x0,0x0,0x6,0x0,0x0,0x0, - 0x14,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xa5,0xb6,0xe8, - 0x70,0xff,0xff,0xff,0xff,0xaf,0xf2,0x6e,0xe0,0xff,0xff,0xff,0xff,0xb6,0x66,0x56, - 0x60,0xff,0xff,0xff,0xff,0xb7,0x43,0xd2,0x60,0xff,0xff,0xff,0xff,0xb8,0xc,0x36, - 0x60,0xff,0xff,0xff,0xff,0xb8,0xfd,0x86,0xf0,0xff,0xff,0xff,0xff,0xcb,0xea,0x71, - 0x60,0xff,0xff,0xff,0xff,0xd8,0x91,0xb4,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x70, - 0x80,0x0,0x0,0x0,0x0,0x31,0x67,0x84,0x10,0x0,0x0,0x0,0x0,0x32,0x73,0x16, - 0x80,0x0,0x0,0x0,0x0,0x33,0x47,0x66,0x10,0x0,0x0,0x0,0x0,0x34,0x52,0xf8, - 0x80,0x0,0x0,0x0,0x0,0x35,0x27,0x48,0x10,0x0,0x0,0x0,0x0,0x36,0x32,0xda, - 0x80,0x0,0x0,0x0,0x0,0x37,0x7,0x2a,0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0xf7, - 0x0,0x0,0x0,0x0,0x0,0x38,0xe7,0xc,0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0xd9, - 0x0,0x0,0x0,0x0,0x0,0x3a,0xf5,0x12,0x90,0x0,0x0,0x0,0x0,0x3b,0xb6,0xd1, - 0x0,0x0,0x0,0x0,0x0,0x3c,0xb0,0xa,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x9d, - 0x0,0x0,0x0,0x0,0x0,0x3e,0x8f,0xec,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x7f, - 0x0,0x0,0x0,0x0,0x0,0x40,0x6f,0xce,0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x9b, - 0x80,0x0,0x0,0x0,0x0,0x42,0x4f,0xb0,0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x7d, - 0x80,0x0,0x0,0x0,0x0,0x44,0x2f,0x92,0x90,0x0,0x0,0x0,0x0,0x45,0x44,0x5f, - 0x80,0x0,0x0,0x0,0x0,0x46,0xf,0x74,0x90,0x0,0x0,0x0,0x0,0x47,0x24,0x41, - 0x80,0x0,0x0,0x0,0x0,0x47,0xf8,0x91,0x10,0x0,0x0,0x0,0x0,0x49,0x4,0x23, - 0x80,0x0,0x0,0x0,0x0,0x49,0xd8,0x73,0x10,0x0,0x0,0x0,0x0,0x4a,0xe4,0x5, - 0x80,0x0,0x0,0x0,0x0,0x4b,0xb8,0x55,0x10,0x0,0x0,0x0,0x0,0x4c,0xcd,0x22, - 0x0,0x0,0x0,0x0,0x0,0x4d,0x98,0x37,0x10,0x0,0x0,0x0,0x0,0x4e,0xad,0x4, - 0x0,0x0,0x0,0x0,0x0,0x4f,0x78,0x19,0x10,0x0,0x0,0x0,0x0,0x50,0x8c,0xe6, - 0x0,0x0,0x0,0x0,0x0,0x51,0x61,0x35,0x90,0x0,0x0,0x0,0x0,0x52,0x6c,0xc8, - 0x0,0x0,0x0,0x0,0x0,0x53,0x41,0x17,0x90,0x0,0x0,0x0,0x0,0x54,0x4c,0xaa, - 0x0,0x0,0x0,0x0,0x0,0x55,0x20,0xf9,0x90,0x0,0x0,0x0,0x0,0x56,0x2c,0x8c, - 0x0,0x0,0x0,0x0,0x0,0x57,0x0,0xdb,0x90,0x0,0x0,0x0,0x0,0x58,0x15,0xa8, - 0x80,0x0,0x0,0x0,0x0,0x58,0xe0,0xbd,0x90,0x0,0x0,0x0,0x0,0x59,0xf5,0x8a, - 0x80,0x0,0x0,0x0,0x0,0x5a,0xc0,0x9f,0x90,0x0,0x0,0x0,0x0,0x5b,0xd5,0x6c, - 0x80,0x0,0x0,0x0,0x0,0x5c,0xa9,0xbc,0x10,0x0,0x0,0x0,0x0,0x5d,0xb5,0x4e, - 0x80,0x0,0x0,0x0,0x0,0x5e,0x89,0x9e,0x10,0x0,0x0,0x0,0x0,0x5f,0x95,0x30, - 0x80,0x0,0x0,0x0,0x0,0x60,0x69,0x80,0x10,0x0,0x0,0x0,0x0,0x61,0x7e,0x4d, - 0x0,0x0,0x0,0x0,0x0,0x62,0x49,0x62,0x10,0x0,0x0,0x0,0x0,0x63,0x5e,0x2f, - 0x0,0x0,0x0,0x0,0x0,0x64,0x29,0x44,0x10,0x0,0x0,0x0,0x0,0x65,0x3e,0x11, - 0x0,0x0,0x0,0x0,0x0,0x66,0x12,0x60,0x90,0x0,0x0,0x0,0x0,0x67,0x1d,0xf3, - 0x0,0x0,0x0,0x0,0x0,0x67,0xf2,0x42,0x90,0x0,0x0,0x0,0x0,0x68,0xfd,0xd5, - 0x0,0x0,0x0,0x0,0x0,0x69,0xd2,0x24,0x90,0x0,0x0,0x0,0x0,0x6a,0xdd,0xb7, - 0x0,0x0,0x0,0x0,0x0,0x6b,0xb2,0x6,0x90,0x0,0x0,0x0,0x0,0x6c,0xc6,0xd3, - 0x80,0x0,0x0,0x0,0x0,0x6d,0x91,0xe8,0x90,0x0,0x0,0x0,0x0,0x6e,0xa6,0xb5, - 0x80,0x0,0x0,0x0,0x0,0x6f,0x71,0xca,0x90,0x0,0x0,0x0,0x0,0x70,0x86,0x97, - 0x80,0x0,0x0,0x0,0x0,0x71,0x5a,0xe7,0x10,0x0,0x0,0x0,0x0,0x72,0x66,0x79, - 0x80,0x0,0x0,0x0,0x0,0x73,0x3a,0xc9,0x10,0x0,0x0,0x0,0x0,0x74,0x46,0x5b, - 0x80,0x0,0x0,0x0,0x0,0x75,0x1a,0xab,0x10,0x0,0x0,0x0,0x0,0x76,0x2f,0x78, - 0x0,0x0,0x0,0x0,0x0,0x76,0xfa,0x8d,0x10,0x0,0x0,0x0,0x0,0x78,0xf,0x5a, - 0x0,0x0,0x0,0x0,0x0,0x78,0xda,0x6f,0x10,0x0,0x0,0x0,0x0,0x79,0xef,0x3c, - 0x0,0x0,0x0,0x0,0x0,0x7a,0xba,0x51,0x10,0x0,0x0,0x0,0x0,0x7b,0xcf,0x1e, - 0x0,0x0,0x0,0x0,0x0,0x7c,0xa3,0x6d,0x90,0x0,0x0,0x0,0x0,0x7d,0xaf,0x0, - 0x0,0x0,0x0,0x0,0x0,0x7e,0x83,0x4f,0x90,0x0,0x0,0x0,0x0,0x7f,0x8e,0xe2, - 0x0,0x0,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x3,0x1,0x4,0x1,0x4,0x1,0x4, - 0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4, - 0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4, - 0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4, - 0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4, - 0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0xff, - 0xff,0x9c,0x3c,0x0,0x0,0xff,0xff,0x9d,0x90,0x0,0x4,0xff,0xff,0xab,0xa0,0x0, - 0x8,0xff,0xff,0x8f,0x80,0x0,0xc,0xff,0xff,0xab,0xa0,0x1,0x10,0xff,0xff,0x9d, - 0x90,0x0,0x4,0x4c,0x4d,0x54,0x0,0x4d,0x53,0x54,0x0,0x43,0x53,0x54,0x0,0x50, - 0x53,0x54,0x0,0x4d,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0xa,0x4d,0x53,0x54,0x37,0x4d,0x44,0x54,0x2c,0x4d,0x34,0x2e,0x31, - 0x2e,0x30,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Buenos_Aires - 0x0,0x0,0x4,0x3f, + 0x0,0x0,0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x58,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x1c,0x80,0x0,0x0,0x0,0xa2, + 0x92,0x87,0xac,0xa9,0x1,0x25,0xb8,0xa9,0xf1,0xf,0xb0,0xaa,0xe2,0x59,0x38,0xab, + 0xd2,0x43,0x30,0xac,0xc3,0x8c,0xb8,0xad,0xb3,0x76,0xb0,0xbb,0xf4,0xb5,0xb8,0xbc, + 0xbf,0xb5,0xb0,0xbd,0xd4,0x97,0xb8,0xbe,0x9f,0x97,0xb0,0xbf,0xb4,0x79,0xb8,0xc0, + 0x7f,0x79,0xb0,0xc1,0x9d,0x96,0x38,0xc2,0x5f,0x5b,0xb0,0xc3,0x7d,0x78,0x38,0xc4, + 0x3f,0x3d,0xb0,0xc5,0x5d,0x5a,0x38,0xc6,0x1f,0x1f,0xb0,0xc7,0x3d,0x3c,0x38,0xc8, + 0x8,0x3c,0x30,0xc9,0x1d,0x1e,0x38,0xc9,0xe8,0x1e,0x30,0xca,0x8b,0x9f,0x38,0xcb, + 0x55,0x4d,0xb0,0xcd,0x1e,0xcd,0x38,0xcd,0x95,0x5f,0x20,0xec,0xb,0x85,0xb0,0xec, + 0xf2,0x2e,0x20,0xed,0x45,0x4a,0xb0,0xed,0x85,0xd6,0x20,0xf7,0x13,0x72,0xb0,0xf7, + 0xfa,0x1b,0x20,0xf8,0xf3,0x54,0xb0,0xfa,0x9,0x73,0x20,0xfa,0xd3,0x36,0xb0,0xfb, + 0xea,0xa6,0xa0,0xfc,0xfe,0x3e,0x30,0xfd,0xf7,0x62,0xa8,0xfe,0xdf,0x71,0xb0,0xff, + 0xd8,0x96,0x28,0x0,0xc0,0xa5,0x30,0x1,0xb9,0xc9,0xa8,0x4,0x58,0xdc,0x30,0x4, + 0xed,0xc7,0xa0,0x7,0xdf,0xef,0xb0,0x9,0x5a,0x47,0x28,0xc,0xb1,0xdd,0xa0,0xe, + 0xe7,0x7f,0x30,0xf,0x83,0x2,0x20,0x12,0x55,0x86,0x30,0x13,0x6e,0x47,0xa0,0x21, + 0xc3,0x54,0x30,0x22,0x3b,0x3e,0xa0,0x23,0xa1,0xe4,0xb0,0x24,0x19,0xcf,0x20,0x25, + 0x4a,0x67,0xb0,0x25,0xf0,0x76,0xa0,0x27,0x21,0xf,0x30,0x27,0xd0,0x58,0xa0,0x29, + 0xa,0x2b,0xb0,0x29,0xb0,0x3a,0xa0,0x2a,0xe0,0xd3,0x30,0x2b,0x90,0x1c,0xa0,0x41, + 0x4c,0xf6,0x30,0x42,0x46,0x2f,0xc0,0x43,0x48,0xa3,0xd0,0x44,0x13,0x9c,0xc0,0x45, + 0x1f,0x4b,0x50,0x45,0xf3,0x7e,0xc0,0x47,0x8,0x67,0xd0,0x47,0xd3,0x60,0xc0,0x48, + 0xe8,0x49,0xd0,0x49,0xb3,0x42,0xc0,0x4a,0xc8,0x2b,0xd0,0x4b,0x9c,0x5f,0x40,0x4c, + 0xa8,0xd,0xd0,0x4d,0x7c,0x41,0x40,0x4e,0x87,0xef,0xd0,0x4f,0x5c,0x23,0x40,0x50, + 0x71,0xc,0x50,0x51,0x3c,0x5,0x40,0x52,0x50,0xee,0x50,0x53,0x1b,0xe7,0x40,0x54, + 0x30,0xd0,0x50,0x54,0xfb,0xc9,0x40,0x7f,0xff,0xff,0xff,0x1,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x7,0x5,0x7,0x5,0x7,0x5,0x6,0x5,0x7,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x5,0xff,0xff,0xcb,0x54,0x0,0x0,0xff,0xff,0xcb,0x54,0x0,0x4,0xff, + 0xff,0xd5,0xd0,0x1,0x8,0xff,0xff,0xce,0xc8,0x0,0xc,0xff,0xff,0xce,0xc8,0x0, + 0xc,0xff,0xff,0xd5,0xd0,0x0,0x8,0xff,0xff,0xe3,0xe0,0x1,0x12,0xff,0xff,0xdc, + 0xd8,0x1,0x16,0xff,0xff,0xe3,0xe0,0x1,0x12,0x4c,0x4d,0x54,0x0,0x4d,0x4d,0x54, + 0x0,0x2d,0x30,0x33,0x0,0x2d,0x30,0x33,0x33,0x30,0x0,0x2d,0x30,0x32,0x0,0x2d, + 0x30,0x32,0x33,0x30,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9,0x0, + 0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x59,0x0,0x0,0x0,0x9,0x0, + 0x0,0x0,0x1c,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x79, + 0x7d,0xfa,0x2c,0xff,0xff,0xff,0xff,0xa2,0x92,0x87,0xac,0xff,0xff,0xff,0xff,0xa9, + 0x1,0x25,0xb8,0xff,0xff,0xff,0xff,0xa9,0xf1,0xf,0xb0,0xff,0xff,0xff,0xff,0xaa, + 0xe2,0x59,0x38,0xff,0xff,0xff,0xff,0xab,0xd2,0x43,0x30,0xff,0xff,0xff,0xff,0xac, + 0xc3,0x8c,0xb8,0xff,0xff,0xff,0xff,0xad,0xb3,0x76,0xb0,0xff,0xff,0xff,0xff,0xbb, + 0xf4,0xb5,0xb8,0xff,0xff,0xff,0xff,0xbc,0xbf,0xb5,0xb0,0xff,0xff,0xff,0xff,0xbd, + 0xd4,0x97,0xb8,0xff,0xff,0xff,0xff,0xbe,0x9f,0x97,0xb0,0xff,0xff,0xff,0xff,0xbf, + 0xb4,0x79,0xb8,0xff,0xff,0xff,0xff,0xc0,0x7f,0x79,0xb0,0xff,0xff,0xff,0xff,0xc1, + 0x9d,0x96,0x38,0xff,0xff,0xff,0xff,0xc2,0x5f,0x5b,0xb0,0xff,0xff,0xff,0xff,0xc3, + 0x7d,0x78,0x38,0xff,0xff,0xff,0xff,0xc4,0x3f,0x3d,0xb0,0xff,0xff,0xff,0xff,0xc5, + 0x5d,0x5a,0x38,0xff,0xff,0xff,0xff,0xc6,0x1f,0x1f,0xb0,0xff,0xff,0xff,0xff,0xc7, + 0x3d,0x3c,0x38,0xff,0xff,0xff,0xff,0xc8,0x8,0x3c,0x30,0xff,0xff,0xff,0xff,0xc9, + 0x1d,0x1e,0x38,0xff,0xff,0xff,0xff,0xc9,0xe8,0x1e,0x30,0xff,0xff,0xff,0xff,0xca, + 0x8b,0x9f,0x38,0xff,0xff,0xff,0xff,0xcb,0x55,0x4d,0xb0,0xff,0xff,0xff,0xff,0xcd, + 0x1e,0xcd,0x38,0xff,0xff,0xff,0xff,0xcd,0x95,0x5f,0x20,0xff,0xff,0xff,0xff,0xec, + 0xb,0x85,0xb0,0xff,0xff,0xff,0xff,0xec,0xf2,0x2e,0x20,0xff,0xff,0xff,0xff,0xed, + 0x45,0x4a,0xb0,0xff,0xff,0xff,0xff,0xed,0x85,0xd6,0x20,0xff,0xff,0xff,0xff,0xf7, + 0x13,0x72,0xb0,0xff,0xff,0xff,0xff,0xf7,0xfa,0x1b,0x20,0xff,0xff,0xff,0xff,0xf8, + 0xf3,0x54,0xb0,0xff,0xff,0xff,0xff,0xfa,0x9,0x73,0x20,0xff,0xff,0xff,0xff,0xfa, + 0xd3,0x36,0xb0,0xff,0xff,0xff,0xff,0xfb,0xea,0xa6,0xa0,0xff,0xff,0xff,0xff,0xfc, + 0xfe,0x3e,0x30,0xff,0xff,0xff,0xff,0xfd,0xf7,0x62,0xa8,0xff,0xff,0xff,0xff,0xfe, + 0xdf,0x71,0xb0,0xff,0xff,0xff,0xff,0xff,0xd8,0x96,0x28,0x0,0x0,0x0,0x0,0x0, + 0xc0,0xa5,0x30,0x0,0x0,0x0,0x0,0x1,0xb9,0xc9,0xa8,0x0,0x0,0x0,0x0,0x4, + 0x58,0xdc,0x30,0x0,0x0,0x0,0x0,0x4,0xed,0xc7,0xa0,0x0,0x0,0x0,0x0,0x7, + 0xdf,0xef,0xb0,0x0,0x0,0x0,0x0,0x9,0x5a,0x47,0x28,0x0,0x0,0x0,0x0,0xc, + 0xb1,0xdd,0xa0,0x0,0x0,0x0,0x0,0xe,0xe7,0x7f,0x30,0x0,0x0,0x0,0x0,0xf, + 0x83,0x2,0x20,0x0,0x0,0x0,0x0,0x12,0x55,0x86,0x30,0x0,0x0,0x0,0x0,0x13, + 0x6e,0x47,0xa0,0x0,0x0,0x0,0x0,0x21,0xc3,0x54,0x30,0x0,0x0,0x0,0x0,0x22, + 0x3b,0x3e,0xa0,0x0,0x0,0x0,0x0,0x23,0xa1,0xe4,0xb0,0x0,0x0,0x0,0x0,0x24, + 0x19,0xcf,0x20,0x0,0x0,0x0,0x0,0x25,0x4a,0x67,0xb0,0x0,0x0,0x0,0x0,0x25, + 0xf0,0x76,0xa0,0x0,0x0,0x0,0x0,0x27,0x21,0xf,0x30,0x0,0x0,0x0,0x0,0x27, + 0xd0,0x58,0xa0,0x0,0x0,0x0,0x0,0x29,0xa,0x2b,0xb0,0x0,0x0,0x0,0x0,0x29, + 0xb0,0x3a,0xa0,0x0,0x0,0x0,0x0,0x2a,0xe0,0xd3,0x30,0x0,0x0,0x0,0x0,0x2b, + 0x90,0x1c,0xa0,0x0,0x0,0x0,0x0,0x41,0x4c,0xf6,0x30,0x0,0x0,0x0,0x0,0x42, + 0x46,0x2f,0xc0,0x0,0x0,0x0,0x0,0x43,0x48,0xa3,0xd0,0x0,0x0,0x0,0x0,0x44, + 0x13,0x9c,0xc0,0x0,0x0,0x0,0x0,0x45,0x1f,0x4b,0x50,0x0,0x0,0x0,0x0,0x45, + 0xf3,0x7e,0xc0,0x0,0x0,0x0,0x0,0x47,0x8,0x67,0xd0,0x0,0x0,0x0,0x0,0x47, + 0xd3,0x60,0xc0,0x0,0x0,0x0,0x0,0x48,0xe8,0x49,0xd0,0x0,0x0,0x0,0x0,0x49, + 0xb3,0x42,0xc0,0x0,0x0,0x0,0x0,0x4a,0xc8,0x2b,0xd0,0x0,0x0,0x0,0x0,0x4b, + 0x9c,0x5f,0x40,0x0,0x0,0x0,0x0,0x4c,0xa8,0xd,0xd0,0x0,0x0,0x0,0x0,0x4d, + 0x7c,0x41,0x40,0x0,0x0,0x0,0x0,0x4e,0x87,0xef,0xd0,0x0,0x0,0x0,0x0,0x4f, + 0x5c,0x23,0x40,0x0,0x0,0x0,0x0,0x50,0x71,0xc,0x50,0x0,0x0,0x0,0x0,0x51, + 0x3c,0x5,0x40,0x0,0x0,0x0,0x0,0x52,0x50,0xee,0x50,0x0,0x0,0x0,0x0,0x53, + 0x1b,0xe7,0x40,0x0,0x0,0x0,0x0,0x54,0x30,0xd0,0x50,0x0,0x0,0x0,0x0,0x54, + 0xfb,0xc9,0x40,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x7,0x5,0x7,0x5,0x7,0x5,0x6,0x5,0x7,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x5,0xff,0xff,0xcb,0x54,0x0,0x0,0xff,0xff,0xcb,0x54,0x0,0x4, + 0xff,0xff,0xd5,0xd0,0x1,0x8,0xff,0xff,0xce,0xc8,0x0,0xc,0xff,0xff,0xce,0xc8, + 0x0,0xc,0xff,0xff,0xd5,0xd0,0x0,0x8,0xff,0xff,0xe3,0xe0,0x1,0x12,0xff,0xff, + 0xdc,0xd8,0x1,0x16,0xff,0xff,0xe3,0xe0,0x1,0x12,0x4c,0x4d,0x54,0x0,0x4d,0x4d, + 0x54,0x0,0x2d,0x30,0x33,0x0,0x2d,0x30,0x33,0x33,0x30,0x0,0x2d,0x30,0x32,0x0, + 0x2d,0x30,0x32,0x33,0x30,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2d,0x30,0x33,0x3e,0x33,0xa, + + // /home/konrad/src/smoke/tzone/zoneinfo/America/Nome + 0x0,0x0,0x9,0x48, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x3d,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x80,0x0,0x0,0x0,0xa2, - 0x92,0x8f,0x30,0xb6,0x7b,0x52,0x40,0xb7,0x1a,0xc9,0xb0,0xb8,0x1e,0x8f,0x40,0xb8, - 0xd4,0x70,0x30,0xba,0x17,0x7d,0xc0,0xba,0xb5,0xa3,0xb0,0xbb,0xf8,0xb1,0x40,0xbc, - 0x96,0xd7,0x30,0xbd,0xd9,0xe4,0xc0,0xbe,0x78,0xa,0xb0,0xbf,0xbb,0x18,0x40,0xc0, - 0x5a,0x8f,0xb0,0xc1,0x9d,0x9d,0x40,0xc2,0x3b,0xc3,0x30,0xc3,0x7e,0xd0,0xc0,0xc4, - 0x1c,0xf6,0xb0,0xc5,0x60,0x4,0x40,0xc5,0xfe,0x2a,0x30,0xc7,0x41,0x37,0xc0,0xc7, - 0xe0,0xaf,0x30,0xc8,0x81,0x94,0x40,0xca,0x4d,0xa1,0xb0,0xca,0xee,0x86,0xc0,0xce, - 0x4d,0xff,0x30,0xce,0xb0,0xed,0xc0,0xd3,0x29,0x35,0xb0,0xd4,0x43,0x64,0xc0,0xf4, - 0x3d,0x8,0x30,0xf4,0x9f,0xf6,0xc0,0xf5,0x5,0x6c,0x30,0xf6,0x32,0x10,0x40,0xf6, - 0xe6,0x9f,0xb0,0xf8,0x13,0x43,0xc0,0xf8,0xc7,0xd3,0x30,0xf9,0xf4,0x77,0x40,0xfa, - 0xd3,0x36,0xb0,0xfb,0xc3,0x35,0xc0,0xfc,0xbc,0x53,0x30,0xfd,0xac,0x52,0x40,0xfe, - 0x9c,0x35,0x30,0xff,0x8c,0x34,0x40,0x7,0xa3,0x4a,0xb0,0x8,0x24,0x6f,0xa0,0x23, - 0x94,0xb5,0xb0,0x24,0x10,0x94,0xa0,0x25,0x37,0xf2,0xb0,0x25,0xf0,0x76,0xa0,0x27, - 0x21,0xf,0x30,0x27,0xd0,0x58,0xa0,0x29,0x0,0xf1,0x30,0x29,0xb0,0x3a,0xa0,0x2a, - 0xe0,0xd3,0x30,0x2b,0x99,0x57,0x20,0x37,0xf6,0xc6,0xb0,0x38,0xbf,0x2a,0xb0,0x47, - 0x77,0x9,0xb0,0x47,0xdc,0x7f,0x20,0x48,0xfa,0xa2,0xb0,0x49,0xbc,0x61,0x20,0x1, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x3,0x5,0x4,0x5,0x4,0x5,0xff,0xff,0xc9,0x34, - 0x0,0x0,0xff,0xff,0xc3,0xd0,0x0,0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0xff,0xff, - 0xd5,0xd0,0x1,0xc,0xff,0xff,0xe3,0xe0,0x1,0xc,0xff,0xff,0xd5,0xd0,0x0,0x8, - 0x4c,0x4d,0x54,0x0,0x43,0x4d,0x54,0x0,0x41,0x52,0x54,0x0,0x41,0x52,0x53,0x54, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, - 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x3e,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0x72,0x9c,0xa8,0x4c,0xff,0xff,0xff,0xff,0xa2,0x92,0x8f, - 0x30,0xff,0xff,0xff,0xff,0xb6,0x7b,0x52,0x40,0xff,0xff,0xff,0xff,0xb7,0x1a,0xc9, - 0xb0,0xff,0xff,0xff,0xff,0xb8,0x1e,0x8f,0x40,0xff,0xff,0xff,0xff,0xb8,0xd4,0x70, - 0x30,0xff,0xff,0xff,0xff,0xba,0x17,0x7d,0xc0,0xff,0xff,0xff,0xff,0xba,0xb5,0xa3, - 0xb0,0xff,0xff,0xff,0xff,0xbb,0xf8,0xb1,0x40,0xff,0xff,0xff,0xff,0xbc,0x96,0xd7, - 0x30,0xff,0xff,0xff,0xff,0xbd,0xd9,0xe4,0xc0,0xff,0xff,0xff,0xff,0xbe,0x78,0xa, - 0xb0,0xff,0xff,0xff,0xff,0xbf,0xbb,0x18,0x40,0xff,0xff,0xff,0xff,0xc0,0x5a,0x8f, - 0xb0,0xff,0xff,0xff,0xff,0xc1,0x9d,0x9d,0x40,0xff,0xff,0xff,0xff,0xc2,0x3b,0xc3, - 0x30,0xff,0xff,0xff,0xff,0xc3,0x7e,0xd0,0xc0,0xff,0xff,0xff,0xff,0xc4,0x1c,0xf6, - 0xb0,0xff,0xff,0xff,0xff,0xc5,0x60,0x4,0x40,0xff,0xff,0xff,0xff,0xc5,0xfe,0x2a, - 0x30,0xff,0xff,0xff,0xff,0xc7,0x41,0x37,0xc0,0xff,0xff,0xff,0xff,0xc7,0xe0,0xaf, - 0x30,0xff,0xff,0xff,0xff,0xc8,0x81,0x94,0x40,0xff,0xff,0xff,0xff,0xca,0x4d,0xa1, - 0xb0,0xff,0xff,0xff,0xff,0xca,0xee,0x86,0xc0,0xff,0xff,0xff,0xff,0xce,0x4d,0xff, - 0x30,0xff,0xff,0xff,0xff,0xce,0xb0,0xed,0xc0,0xff,0xff,0xff,0xff,0xd3,0x29,0x35, - 0xb0,0xff,0xff,0xff,0xff,0xd4,0x43,0x64,0xc0,0xff,0xff,0xff,0xff,0xf4,0x3d,0x8, - 0x30,0xff,0xff,0xff,0xff,0xf4,0x9f,0xf6,0xc0,0xff,0xff,0xff,0xff,0xf5,0x5,0x6c, - 0x30,0xff,0xff,0xff,0xff,0xf6,0x32,0x10,0x40,0xff,0xff,0xff,0xff,0xf6,0xe6,0x9f, - 0xb0,0xff,0xff,0xff,0xff,0xf8,0x13,0x43,0xc0,0xff,0xff,0xff,0xff,0xf8,0xc7,0xd3, - 0x30,0xff,0xff,0xff,0xff,0xf9,0xf4,0x77,0x40,0xff,0xff,0xff,0xff,0xfa,0xd3,0x36, - 0xb0,0xff,0xff,0xff,0xff,0xfb,0xc3,0x35,0xc0,0xff,0xff,0xff,0xff,0xfc,0xbc,0x53, - 0x30,0xff,0xff,0xff,0xff,0xfd,0xac,0x52,0x40,0xff,0xff,0xff,0xff,0xfe,0x9c,0x35, - 0x30,0xff,0xff,0xff,0xff,0xff,0x8c,0x34,0x40,0x0,0x0,0x0,0x0,0x7,0xa3,0x4a, - 0xb0,0x0,0x0,0x0,0x0,0x8,0x24,0x6f,0xa0,0x0,0x0,0x0,0x0,0x23,0x94,0xb5, - 0xb0,0x0,0x0,0x0,0x0,0x24,0x10,0x94,0xa0,0x0,0x0,0x0,0x0,0x25,0x37,0xf2, - 0xb0,0x0,0x0,0x0,0x0,0x25,0xf0,0x76,0xa0,0x0,0x0,0x0,0x0,0x27,0x21,0xf, - 0x30,0x0,0x0,0x0,0x0,0x27,0xd0,0x58,0xa0,0x0,0x0,0x0,0x0,0x29,0x0,0xf1, - 0x30,0x0,0x0,0x0,0x0,0x29,0xb0,0x3a,0xa0,0x0,0x0,0x0,0x0,0x2a,0xe0,0xd3, - 0x30,0x0,0x0,0x0,0x0,0x2b,0x99,0x57,0x20,0x0,0x0,0x0,0x0,0x37,0xf6,0xc6, - 0xb0,0x0,0x0,0x0,0x0,0x38,0xbf,0x2a,0xb0,0x0,0x0,0x0,0x0,0x47,0x77,0x9, - 0xb0,0x0,0x0,0x0,0x0,0x47,0xdc,0x7f,0x20,0x0,0x0,0x0,0x0,0x48,0xfa,0xa2, - 0xb0,0x0,0x0,0x0,0x0,0x49,0xbc,0x61,0x20,0x0,0x1,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x3,0x5,0x4,0x5,0x4,0x5,0xff,0xff,0xc9,0x34,0x0,0x0,0xff,0xff,0xc3, - 0xd0,0x0,0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0xff,0xff,0xd5,0xd0,0x1,0xc,0xff, - 0xff,0xe3,0xe0,0x1,0xc,0xff,0xff,0xd5,0xd0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x43, - 0x4d,0x54,0x0,0x41,0x52,0x54,0x0,0x41,0x52,0x53,0x54,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x41,0x52,0x54,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/St_Thomas - 0x0,0x0,0x0,0xaa, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x93, - 0x37,0x33,0xac,0x0,0x1,0xff,0xff,0xc6,0x54,0x0,0x0,0xff,0xff,0xc7,0xc0,0x0, - 0x4,0x4c,0x4d,0x54,0x0,0x41,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, - 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0x93,0x37,0x33,0xac,0x0,0x1,0xff,0xff,0xc6,0x54,0x0, - 0x0,0xff,0xff,0xc7,0xc0,0x0,0x4,0x4c,0x4d,0x54,0x0,0x41,0x53,0x54,0x0,0x0, - 0x0,0x0,0x0,0xa,0x41,0x53,0x54,0x34,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Metlakatla - 0x0,0x0,0x5,0x8a, + 0x0,0x0,0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x90,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x26,0x80,0x0,0x0,0x0,0xcb, + 0x89,0x44,0xd0,0xd2,0x23,0xf4,0x70,0xd2,0x61,0x50,0x40,0xfa,0xd2,0x55,0xb0,0xfe, + 0xb8,0x71,0x50,0xff,0xa8,0x54,0x40,0x0,0x98,0x53,0x50,0x1,0x88,0x36,0x40,0x2, + 0x78,0x35,0x50,0x3,0x71,0x52,0xc0,0x4,0x61,0x51,0xd0,0x5,0x51,0x34,0xc0,0x6, + 0x41,0x33,0xd0,0x7,0x31,0x16,0xc0,0x7,0x8d,0x6d,0xd0,0x9,0x10,0xf8,0xc0,0x9, + 0xad,0xe9,0x50,0xa,0xf0,0xda,0xc0,0xb,0xe0,0xd9,0xd0,0xc,0xd9,0xf7,0x40,0xd, + 0xc0,0xbb,0xd0,0xe,0xb9,0xd9,0x40,0xf,0xa9,0xd8,0x50,0x10,0x99,0xbb,0x40,0x11, + 0x89,0xba,0x50,0x12,0x79,0x9d,0x40,0x13,0x69,0x9c,0x50,0x14,0x59,0x7f,0x40,0x15, + 0x49,0x7e,0x50,0x16,0x39,0x61,0x40,0x17,0x29,0x60,0x50,0x18,0x22,0x7d,0xc0,0x19, + 0x9,0x42,0x50,0x1a,0x2,0x5f,0xc0,0x1a,0x2b,0x14,0x10,0x1a,0xf2,0x42,0xb0,0x1b, + 0xe2,0x25,0xa0,0x1c,0xd2,0x24,0xb0,0x1d,0xc2,0x7,0xa0,0x1e,0xb2,0x6,0xb0,0x1f, + 0xa1,0xe9,0xa0,0x20,0x76,0x39,0x30,0x21,0x81,0xcb,0xa0,0x22,0x56,0x1b,0x30,0x23, + 0x6a,0xe8,0x20,0x24,0x35,0xfd,0x30,0x25,0x4a,0xca,0x20,0x26,0x15,0xdf,0x30,0x27, + 0x2a,0xac,0x20,0x27,0xfe,0xfb,0xb0,0x29,0xa,0x8e,0x20,0x29,0xde,0xdd,0xb0,0x2a, + 0xea,0x70,0x20,0x2b,0xbe,0xbf,0xb0,0x2c,0xd3,0x8c,0xa0,0x2d,0x9e,0xa1,0xb0,0x2e, + 0xb3,0x6e,0xa0,0x2f,0x7e,0x83,0xb0,0x30,0x93,0x50,0xa0,0x31,0x67,0xa0,0x30,0x32, + 0x73,0x32,0xa0,0x33,0x47,0x82,0x30,0x34,0x53,0x14,0xa0,0x35,0x27,0x64,0x30,0x36, + 0x32,0xf6,0xa0,0x37,0x7,0x46,0x30,0x38,0x1c,0x13,0x20,0x38,0xe7,0x28,0x30,0x39, + 0xfb,0xf5,0x20,0x3a,0xc7,0xa,0x30,0x3b,0xdb,0xd7,0x20,0x3c,0xb0,0x26,0xb0,0x3d, + 0xbb,0xb9,0x20,0x3e,0x90,0x8,0xb0,0x3f,0x9b,0x9b,0x20,0x40,0x6f,0xea,0xb0,0x41, + 0x84,0xb7,0xa0,0x42,0x4f,0xcc,0xb0,0x43,0x64,0x99,0xa0,0x44,0x2f,0xae,0xb0,0x45, + 0x44,0x7b,0xa0,0x45,0xf3,0xe1,0x30,0x47,0x2d,0x98,0x20,0x47,0xd3,0xc3,0x30,0x49, + 0xd,0x7a,0x20,0x49,0xb3,0xa5,0x30,0x4a,0xed,0x5c,0x20,0x4b,0x9c,0xc1,0xb0,0x4c, + 0xd6,0x78,0xa0,0x4d,0x7c,0xa3,0xb0,0x4e,0xb6,0x5a,0xa0,0x4f,0x5c,0x85,0xb0,0x50, + 0x96,0x3c,0xa0,0x51,0x3c,0x67,0xb0,0x52,0x76,0x1e,0xa0,0x53,0x1c,0x49,0xb0,0x54, + 0x56,0x0,0xa0,0x54,0xfc,0x2b,0xb0,0x56,0x35,0xe2,0xa0,0x56,0xe5,0x48,0x30,0x58, + 0x1e,0xff,0x20,0x58,0xc5,0x2a,0x30,0x59,0xfe,0xe1,0x20,0x5a,0xa5,0xc,0x30,0x5b, + 0xde,0xc3,0x20,0x5c,0x84,0xee,0x30,0x5d,0xbe,0xa5,0x20,0x5e,0x64,0xd0,0x30,0x5f, + 0x9e,0x87,0x20,0x60,0x4d,0xec,0xb0,0x61,0x87,0xa3,0xa0,0x62,0x2d,0xce,0xb0,0x63, + 0x67,0x85,0xa0,0x64,0xd,0xb0,0xb0,0x65,0x47,0x67,0xa0,0x65,0xed,0x92,0xb0,0x67, + 0x27,0x49,0xa0,0x67,0xcd,0x74,0xb0,0x69,0x7,0x2b,0xa0,0x69,0xad,0x56,0xb0,0x6a, + 0xe7,0xd,0xa0,0x6b,0x96,0x73,0x30,0x6c,0xd0,0x2a,0x20,0x6d,0x76,0x55,0x30,0x6e, + 0xb0,0xc,0x20,0x6f,0x56,0x37,0x30,0x70,0x8f,0xee,0x20,0x71,0x36,0x19,0x30,0x72, + 0x6f,0xd0,0x20,0x73,0x15,0xfb,0x30,0x74,0x4f,0xb2,0x20,0x74,0xff,0x17,0xb0,0x76, + 0x38,0xce,0xa0,0x76,0xde,0xf9,0xb0,0x78,0x18,0xb0,0xa0,0x78,0xbe,0xdb,0xb0,0x79, + 0xf8,0x92,0xa0,0x7a,0x9e,0xbd,0xb0,0x7b,0xd8,0x74,0xa0,0x7c,0x7e,0x9f,0xb0,0x7d, + 0xb8,0x56,0xa0,0x7e,0x5e,0x81,0xb0,0x7f,0x98,0x38,0xa0,0x1,0x2,0x3,0x1,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x6,0x8,0x7, + 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, + 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, + 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, + 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, + 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, + 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, + 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0xff,0xff,0x64,0xee,0x0, + 0x0,0xff,0xff,0x65,0x50,0x0,0x4,0xff,0xff,0x73,0x60,0x1,0x8,0xff,0xff,0x73, + 0x60,0x1,0xc,0xff,0xff,0x65,0x50,0x0,0x10,0xff,0xff,0x73,0x60,0x1,0x14,0xff, + 0xff,0x81,0x70,0x0,0x18,0xff,0xff,0x8f,0x80,0x1,0x1c,0xff,0xff,0x81,0x70,0x0, + 0x21,0x4c,0x4d,0x54,0x0,0x4e,0x53,0x54,0x0,0x4e,0x57,0x54,0x0,0x4e,0x50,0x54, + 0x0,0x42,0x53,0x54,0x0,0x42,0x44,0x54,0x0,0x59,0x53,0x54,0x0,0x41,0x4b,0x44, + 0x54,0x0,0x41,0x4b,0x53,0x54,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xa,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0x0,0x0,0x0, + 0xa,0x0,0x0,0x0,0x26,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff, + 0xff,0x3f,0xc2,0xfd,0xd1,0xff,0xff,0xff,0xff,0x7d,0x87,0x4f,0xd2,0xff,0xff,0xff, + 0xff,0xcb,0x89,0x44,0xd0,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff, + 0xff,0xd2,0x61,0x50,0x40,0xff,0xff,0xff,0xff,0xfa,0xd2,0x55,0xb0,0xff,0xff,0xff, + 0xff,0xfe,0xb8,0x71,0x50,0xff,0xff,0xff,0xff,0xff,0xa8,0x54,0x40,0x0,0x0,0x0, + 0x0,0x0,0x98,0x53,0x50,0x0,0x0,0x0,0x0,0x1,0x88,0x36,0x40,0x0,0x0,0x0, + 0x0,0x2,0x78,0x35,0x50,0x0,0x0,0x0,0x0,0x3,0x71,0x52,0xc0,0x0,0x0,0x0, + 0x0,0x4,0x61,0x51,0xd0,0x0,0x0,0x0,0x0,0x5,0x51,0x34,0xc0,0x0,0x0,0x0, + 0x0,0x6,0x41,0x33,0xd0,0x0,0x0,0x0,0x0,0x7,0x31,0x16,0xc0,0x0,0x0,0x0, + 0x0,0x7,0x8d,0x6d,0xd0,0x0,0x0,0x0,0x0,0x9,0x10,0xf8,0xc0,0x0,0x0,0x0, + 0x0,0x9,0xad,0xe9,0x50,0x0,0x0,0x0,0x0,0xa,0xf0,0xda,0xc0,0x0,0x0,0x0, + 0x0,0xb,0xe0,0xd9,0xd0,0x0,0x0,0x0,0x0,0xc,0xd9,0xf7,0x40,0x0,0x0,0x0, + 0x0,0xd,0xc0,0xbb,0xd0,0x0,0x0,0x0,0x0,0xe,0xb9,0xd9,0x40,0x0,0x0,0x0, + 0x0,0xf,0xa9,0xd8,0x50,0x0,0x0,0x0,0x0,0x10,0x99,0xbb,0x40,0x0,0x0,0x0, + 0x0,0x11,0x89,0xba,0x50,0x0,0x0,0x0,0x0,0x12,0x79,0x9d,0x40,0x0,0x0,0x0, + 0x0,0x13,0x69,0x9c,0x50,0x0,0x0,0x0,0x0,0x14,0x59,0x7f,0x40,0x0,0x0,0x0, + 0x0,0x15,0x49,0x7e,0x50,0x0,0x0,0x0,0x0,0x16,0x39,0x61,0x40,0x0,0x0,0x0, + 0x0,0x17,0x29,0x60,0x50,0x0,0x0,0x0,0x0,0x18,0x22,0x7d,0xc0,0x0,0x0,0x0, + 0x0,0x19,0x9,0x42,0x50,0x0,0x0,0x0,0x0,0x1a,0x2,0x5f,0xc0,0x0,0x0,0x0, + 0x0,0x1a,0x2b,0x14,0x10,0x0,0x0,0x0,0x0,0x1a,0xf2,0x42,0xb0,0x0,0x0,0x0, + 0x0,0x1b,0xe2,0x25,0xa0,0x0,0x0,0x0,0x0,0x1c,0xd2,0x24,0xb0,0x0,0x0,0x0, + 0x0,0x1d,0xc2,0x7,0xa0,0x0,0x0,0x0,0x0,0x1e,0xb2,0x6,0xb0,0x0,0x0,0x0, + 0x0,0x1f,0xa1,0xe9,0xa0,0x0,0x0,0x0,0x0,0x20,0x76,0x39,0x30,0x0,0x0,0x0, + 0x0,0x21,0x81,0xcb,0xa0,0x0,0x0,0x0,0x0,0x22,0x56,0x1b,0x30,0x0,0x0,0x0, + 0x0,0x23,0x6a,0xe8,0x20,0x0,0x0,0x0,0x0,0x24,0x35,0xfd,0x30,0x0,0x0,0x0, + 0x0,0x25,0x4a,0xca,0x20,0x0,0x0,0x0,0x0,0x26,0x15,0xdf,0x30,0x0,0x0,0x0, + 0x0,0x27,0x2a,0xac,0x20,0x0,0x0,0x0,0x0,0x27,0xfe,0xfb,0xb0,0x0,0x0,0x0, + 0x0,0x29,0xa,0x8e,0x20,0x0,0x0,0x0,0x0,0x29,0xde,0xdd,0xb0,0x0,0x0,0x0, + 0x0,0x2a,0xea,0x70,0x20,0x0,0x0,0x0,0x0,0x2b,0xbe,0xbf,0xb0,0x0,0x0,0x0, + 0x0,0x2c,0xd3,0x8c,0xa0,0x0,0x0,0x0,0x0,0x2d,0x9e,0xa1,0xb0,0x0,0x0,0x0, + 0x0,0x2e,0xb3,0x6e,0xa0,0x0,0x0,0x0,0x0,0x2f,0x7e,0x83,0xb0,0x0,0x0,0x0, + 0x0,0x30,0x93,0x50,0xa0,0x0,0x0,0x0,0x0,0x31,0x67,0xa0,0x30,0x0,0x0,0x0, + 0x0,0x32,0x73,0x32,0xa0,0x0,0x0,0x0,0x0,0x33,0x47,0x82,0x30,0x0,0x0,0x0, + 0x0,0x34,0x53,0x14,0xa0,0x0,0x0,0x0,0x0,0x35,0x27,0x64,0x30,0x0,0x0,0x0, + 0x0,0x36,0x32,0xf6,0xa0,0x0,0x0,0x0,0x0,0x37,0x7,0x46,0x30,0x0,0x0,0x0, + 0x0,0x38,0x1c,0x13,0x20,0x0,0x0,0x0,0x0,0x38,0xe7,0x28,0x30,0x0,0x0,0x0, + 0x0,0x39,0xfb,0xf5,0x20,0x0,0x0,0x0,0x0,0x3a,0xc7,0xa,0x30,0x0,0x0,0x0, + 0x0,0x3b,0xdb,0xd7,0x20,0x0,0x0,0x0,0x0,0x3c,0xb0,0x26,0xb0,0x0,0x0,0x0, + 0x0,0x3d,0xbb,0xb9,0x20,0x0,0x0,0x0,0x0,0x3e,0x90,0x8,0xb0,0x0,0x0,0x0, + 0x0,0x3f,0x9b,0x9b,0x20,0x0,0x0,0x0,0x0,0x40,0x6f,0xea,0xb0,0x0,0x0,0x0, + 0x0,0x41,0x84,0xb7,0xa0,0x0,0x0,0x0,0x0,0x42,0x4f,0xcc,0xb0,0x0,0x0,0x0, + 0x0,0x43,0x64,0x99,0xa0,0x0,0x0,0x0,0x0,0x44,0x2f,0xae,0xb0,0x0,0x0,0x0, + 0x0,0x45,0x44,0x7b,0xa0,0x0,0x0,0x0,0x0,0x45,0xf3,0xe1,0x30,0x0,0x0,0x0, + 0x0,0x47,0x2d,0x98,0x20,0x0,0x0,0x0,0x0,0x47,0xd3,0xc3,0x30,0x0,0x0,0x0, + 0x0,0x49,0xd,0x7a,0x20,0x0,0x0,0x0,0x0,0x49,0xb3,0xa5,0x30,0x0,0x0,0x0, + 0x0,0x4a,0xed,0x5c,0x20,0x0,0x0,0x0,0x0,0x4b,0x9c,0xc1,0xb0,0x0,0x0,0x0, + 0x0,0x4c,0xd6,0x78,0xa0,0x0,0x0,0x0,0x0,0x4d,0x7c,0xa3,0xb0,0x0,0x0,0x0, + 0x0,0x4e,0xb6,0x5a,0xa0,0x0,0x0,0x0,0x0,0x4f,0x5c,0x85,0xb0,0x0,0x0,0x0, + 0x0,0x50,0x96,0x3c,0xa0,0x0,0x0,0x0,0x0,0x51,0x3c,0x67,0xb0,0x0,0x0,0x0, + 0x0,0x52,0x76,0x1e,0xa0,0x0,0x0,0x0,0x0,0x53,0x1c,0x49,0xb0,0x0,0x0,0x0, + 0x0,0x54,0x56,0x0,0xa0,0x0,0x0,0x0,0x0,0x54,0xfc,0x2b,0xb0,0x0,0x0,0x0, + 0x0,0x56,0x35,0xe2,0xa0,0x0,0x0,0x0,0x0,0x56,0xe5,0x48,0x30,0x0,0x0,0x0, + 0x0,0x58,0x1e,0xff,0x20,0x0,0x0,0x0,0x0,0x58,0xc5,0x2a,0x30,0x0,0x0,0x0, + 0x0,0x59,0xfe,0xe1,0x20,0x0,0x0,0x0,0x0,0x5a,0xa5,0xc,0x30,0x0,0x0,0x0, + 0x0,0x5b,0xde,0xc3,0x20,0x0,0x0,0x0,0x0,0x5c,0x84,0xee,0x30,0x0,0x0,0x0, + 0x0,0x5d,0xbe,0xa5,0x20,0x0,0x0,0x0,0x0,0x5e,0x64,0xd0,0x30,0x0,0x0,0x0, + 0x0,0x5f,0x9e,0x87,0x20,0x0,0x0,0x0,0x0,0x60,0x4d,0xec,0xb0,0x0,0x0,0x0, + 0x0,0x61,0x87,0xa3,0xa0,0x0,0x0,0x0,0x0,0x62,0x2d,0xce,0xb0,0x0,0x0,0x0, + 0x0,0x63,0x67,0x85,0xa0,0x0,0x0,0x0,0x0,0x64,0xd,0xb0,0xb0,0x0,0x0,0x0, + 0x0,0x65,0x47,0x67,0xa0,0x0,0x0,0x0,0x0,0x65,0xed,0x92,0xb0,0x0,0x0,0x0, + 0x0,0x67,0x27,0x49,0xa0,0x0,0x0,0x0,0x0,0x67,0xcd,0x74,0xb0,0x0,0x0,0x0, + 0x0,0x69,0x7,0x2b,0xa0,0x0,0x0,0x0,0x0,0x69,0xad,0x56,0xb0,0x0,0x0,0x0, + 0x0,0x6a,0xe7,0xd,0xa0,0x0,0x0,0x0,0x0,0x6b,0x96,0x73,0x30,0x0,0x0,0x0, + 0x0,0x6c,0xd0,0x2a,0x20,0x0,0x0,0x0,0x0,0x6d,0x76,0x55,0x30,0x0,0x0,0x0, + 0x0,0x6e,0xb0,0xc,0x20,0x0,0x0,0x0,0x0,0x6f,0x56,0x37,0x30,0x0,0x0,0x0, + 0x0,0x70,0x8f,0xee,0x20,0x0,0x0,0x0,0x0,0x71,0x36,0x19,0x30,0x0,0x0,0x0, + 0x0,0x72,0x6f,0xd0,0x20,0x0,0x0,0x0,0x0,0x73,0x15,0xfb,0x30,0x0,0x0,0x0, + 0x0,0x74,0x4f,0xb2,0x20,0x0,0x0,0x0,0x0,0x74,0xff,0x17,0xb0,0x0,0x0,0x0, + 0x0,0x76,0x38,0xce,0xa0,0x0,0x0,0x0,0x0,0x76,0xde,0xf9,0xb0,0x0,0x0,0x0, + 0x0,0x78,0x18,0xb0,0xa0,0x0,0x0,0x0,0x0,0x78,0xbe,0xdb,0xb0,0x0,0x0,0x0, + 0x0,0x79,0xf8,0x92,0xa0,0x0,0x0,0x0,0x0,0x7a,0x9e,0xbd,0xb0,0x0,0x0,0x0, + 0x0,0x7b,0xd8,0x74,0xa0,0x0,0x0,0x0,0x0,0x7c,0x7e,0x9f,0xb0,0x0,0x0,0x0, + 0x0,0x7d,0xb8,0x56,0xa0,0x0,0x0,0x0,0x0,0x7e,0x5e,0x81,0xb0,0x0,0x0,0x0, + 0x0,0x7f,0x98,0x38,0xa0,0x0,0x1,0x2,0x3,0x4,0x2,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x7,0x9,0x8,0x9,0x8,0x9,0x8, + 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, + 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, + 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, + 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, + 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, + 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, + 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x0,0x0,0xb6,0x6e,0x0,0x0,0xff,0xff,0x64, + 0xee,0x0,0x0,0xff,0xff,0x65,0x50,0x0,0x4,0xff,0xff,0x73,0x60,0x1,0x8,0xff, + 0xff,0x73,0x60,0x1,0xc,0xff,0xff,0x65,0x50,0x0,0x10,0xff,0xff,0x73,0x60,0x1, + 0x14,0xff,0xff,0x81,0x70,0x0,0x18,0xff,0xff,0x8f,0x80,0x1,0x1c,0xff,0xff,0x81, + 0x70,0x0,0x21,0x4c,0x4d,0x54,0x0,0x4e,0x53,0x54,0x0,0x4e,0x57,0x54,0x0,0x4e, + 0x50,0x54,0x0,0x42,0x53,0x54,0x0,0x42,0x44,0x54,0x0,0x59,0x53,0x54,0x0,0x41, + 0x4b,0x44,0x54,0x0,0x41,0x4b,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0xa,0x41,0x4b, + 0x53,0x54,0x39,0x41,0x4b,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30,0x2c,0x4d, + 0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Winnipeg + 0x0,0x0,0xb,0x4b, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x4f,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x1e,0x80,0x0,0x0,0x0,0xcb, - 0x89,0x1a,0xa0,0xd2,0x23,0xf4,0x70,0xd2,0x61,0x26,0x10,0xfe,0xb8,0x47,0x20,0xff, - 0xa8,0x2a,0x10,0x0,0x98,0x29,0x20,0x1,0x88,0xc,0x10,0x2,0x78,0xb,0x20,0x3, - 0x71,0x28,0x90,0x4,0x61,0x27,0xa0,0x5,0x51,0xa,0x90,0x6,0x41,0x9,0xa0,0x7, - 0x30,0xec,0x90,0x7,0x8d,0x43,0xa0,0x9,0x10,0xce,0x90,0x9,0xad,0xbf,0x20,0xa, - 0xf0,0xb0,0x90,0xb,0xe0,0xaf,0xa0,0xc,0xd9,0xcd,0x10,0xd,0xc0,0x91,0xa0,0xe, - 0xb9,0xaf,0x10,0xf,0xa9,0xae,0x20,0x10,0x99,0x91,0x10,0x11,0x89,0x90,0x20,0x12, - 0x79,0x73,0x10,0x13,0x69,0x72,0x20,0x14,0x59,0x55,0x10,0x15,0x49,0x54,0x20,0x16, - 0x39,0x37,0x10,0x17,0x29,0x36,0x20,0x18,0x22,0x53,0x90,0x19,0x9,0x18,0x20,0x1a, - 0x2,0x35,0x90,0x56,0x35,0xe2,0xa0,0x56,0xe5,0x48,0x30,0x58,0x1e,0xff,0x20,0x58, - 0xc5,0x2a,0x30,0x59,0xfe,0xe1,0x20,0x5a,0xa5,0xc,0x30,0x5b,0xde,0xc3,0x20,0x5c, - 0x84,0xee,0x30,0x5d,0xbe,0xa5,0x20,0x5e,0x64,0xd0,0x30,0x5f,0x9e,0x87,0x20,0x60, - 0x4d,0xec,0xb0,0x61,0x87,0xa3,0xa0,0x62,0x2d,0xce,0xb0,0x63,0x67,0x85,0xa0,0x64, - 0xd,0xb0,0xb0,0x65,0x47,0x67,0xa0,0x65,0xed,0x92,0xb0,0x67,0x27,0x49,0xa0,0x67, - 0xcd,0x74,0xb0,0x69,0x7,0x2b,0xa0,0x69,0xad,0x56,0xb0,0x6a,0xe7,0xd,0xa0,0x6b, - 0x96,0x73,0x30,0x6c,0xd0,0x2a,0x20,0x6d,0x76,0x55,0x30,0x6e,0xb0,0xc,0x20,0x6f, - 0x56,0x37,0x30,0x70,0x8f,0xee,0x20,0x71,0x36,0x19,0x30,0x72,0x6f,0xd0,0x20,0x73, - 0x15,0xfb,0x30,0x74,0x4f,0xb2,0x20,0x74,0xff,0x17,0xb0,0x76,0x38,0xce,0xa0,0x76, - 0xde,0xf9,0xb0,0x78,0x18,0xb0,0xa0,0x78,0xbe,0xdb,0xb0,0x79,0xf8,0x92,0xa0,0x7a, - 0x9e,0xbd,0xb0,0x7b,0xd8,0x74,0xa0,0x7c,0x7e,0x9f,0xb0,0x7d,0xb8,0x56,0xa0,0x7e, - 0x5e,0x81,0xb0,0x7f,0x98,0x38,0xa0,0x1,0x2,0x3,0x1,0x4,0x1,0x4,0x1,0x4, - 0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4, - 0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x0,0x0,0xbb,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0x9b, + 0x1,0xfb,0xe0,0x9b,0xc3,0xba,0x50,0x9e,0xb8,0xa1,0x80,0x9f,0xba,0xf9,0x70,0xc2, + 0xa0,0x3b,0x80,0xc3,0x4f,0x84,0xf0,0xcb,0x88,0xfe,0x80,0xd2,0x23,0xf4,0x70,0xd2, + 0x61,0x9,0xf0,0xd3,0x88,0x68,0x0,0xd4,0x53,0x60,0xf0,0xd5,0x55,0xd5,0x0,0xd6, + 0x20,0xcd,0xf0,0xd7,0x35,0xb7,0x0,0xd8,0x0,0xaf,0xf0,0xd9,0x15,0x99,0x0,0xd9, + 0xe0,0x91,0xf0,0xdb,0x0,0x7,0x0,0xdb,0xc8,0x5c,0xf0,0xdc,0xde,0x97,0x80,0xdd, + 0xa9,0x90,0x70,0xde,0xbe,0x79,0x80,0xdf,0x89,0x72,0x70,0xe0,0x9e,0x5b,0x80,0xe1, + 0x69,0x54,0x70,0xe2,0x7e,0x3d,0x80,0xe3,0x49,0x36,0x70,0xe4,0x5e,0x1f,0x80,0xe5, + 0x29,0x18,0x70,0xe6,0x47,0x3c,0x0,0xe7,0x12,0x34,0xf0,0xe8,0x27,0x1e,0x0,0xe8, + 0xf2,0x16,0xf0,0xea,0x7,0x0,0x0,0xea,0xd1,0xf8,0xf0,0xeb,0xe6,0xe2,0x0,0xec, + 0xd6,0xc4,0xf0,0xed,0xc6,0xc4,0x0,0xee,0x91,0xbc,0xf0,0xf3,0x6f,0xa4,0x80,0xf4, + 0x31,0x62,0xf0,0xf9,0xf,0x4a,0x80,0xfa,0x8,0x76,0x0,0xfa,0xf8,0x67,0x0,0xfb, + 0xe8,0x58,0x0,0xfc,0xd8,0x49,0x0,0xfd,0xc8,0x3a,0x0,0xfe,0xb8,0x2b,0x0,0xff, + 0xa8,0x1c,0x0,0x0,0x98,0xd,0x0,0x1,0x87,0xfe,0x0,0x2,0x77,0xef,0x0,0x3, + 0x71,0x1a,0x80,0x4,0x61,0xb,0x80,0x5,0x50,0xfc,0x80,0x6,0x40,0xed,0x80,0x7, + 0x30,0xde,0x80,0x8,0x20,0xcf,0x80,0x9,0x10,0xc0,0x80,0xa,0x0,0xb1,0x80,0xa, + 0xf0,0xa2,0x80,0xb,0xe0,0x93,0x80,0xc,0xd9,0xbf,0x0,0xd,0xc0,0x75,0x80,0xe, + 0xb9,0xa1,0x0,0xf,0xa9,0x92,0x0,0x10,0x99,0x83,0x0,0x11,0x89,0x74,0x0,0x12, + 0x79,0x65,0x0,0x13,0x69,0x56,0x0,0x14,0x59,0x47,0x0,0x15,0x49,0x38,0x0,0x16, + 0x39,0x29,0x0,0x17,0x29,0x1a,0x0,0x18,0x22,0x45,0x80,0x19,0x8,0xfc,0x0,0x1a, + 0x2,0x27,0x80,0x1a,0xf2,0x18,0x80,0x1b,0xe2,0x9,0x80,0x1c,0xd1,0xfa,0x80,0x1d, + 0xc1,0xeb,0x80,0x1e,0xb1,0xdc,0x80,0x1f,0xa1,0xcd,0x80,0x20,0x76,0xf,0x0,0x21, + 0x81,0xaf,0x80,0x22,0x55,0xf1,0x0,0x23,0x6a,0xcc,0x0,0x24,0x35,0xd3,0x0,0x25, + 0x4a,0xae,0x0,0x26,0x15,0xb5,0x0,0x27,0x2a,0x90,0x0,0x27,0xfe,0xd1,0x80,0x29, + 0xa,0x72,0x0,0x29,0xde,0xb3,0x80,0x2a,0xea,0x54,0x0,0x2b,0xbe,0x95,0x80,0x2c, + 0xd3,0x70,0x80,0x2d,0x9e,0x77,0x80,0x2e,0xb3,0x52,0x80,0x2f,0x7e,0x59,0x80,0x30, + 0x93,0x34,0x80,0x31,0x67,0x76,0x0,0x32,0x73,0x16,0x80,0x33,0x47,0x58,0x0,0x34, + 0x52,0xf8,0x80,0x35,0x27,0x3a,0x0,0x36,0x32,0xda,0x80,0x37,0x7,0x1c,0x0,0x38, + 0x1b,0xf7,0x0,0x38,0xe6,0xfe,0x0,0x39,0xfb,0xd9,0x0,0x3a,0xc6,0xe0,0x0,0x3b, + 0xdb,0xbb,0x0,0x3c,0xaf,0xfc,0x80,0x3d,0xbb,0x9d,0x0,0x3e,0x8f,0xde,0x80,0x3f, + 0x9b,0x7f,0x0,0x40,0x6f,0xc0,0x80,0x41,0x84,0x9b,0x80,0x42,0x4f,0xa2,0x80,0x43, + 0x64,0x7d,0x80,0x43,0xb7,0x6f,0xe0,0x44,0x2f,0x84,0x80,0x45,0x44,0x51,0x70,0x45, + 0xf3,0xb7,0x0,0x47,0x2d,0x6d,0xf0,0x47,0xd3,0x99,0x0,0x49,0xd,0x4f,0xf0,0x49, + 0xb3,0x7b,0x0,0x4a,0xed,0x31,0xf0,0x4b,0x9c,0x97,0x80,0x4c,0xd6,0x4e,0x70,0x4d, + 0x7c,0x79,0x80,0x4e,0xb6,0x30,0x70,0x4f,0x5c,0x5b,0x80,0x50,0x96,0x12,0x70,0x51, + 0x3c,0x3d,0x80,0x52,0x75,0xf4,0x70,0x53,0x1c,0x1f,0x80,0x54,0x55,0xd6,0x70,0x54, + 0xfc,0x1,0x80,0x56,0x35,0xb8,0x70,0x56,0xe5,0x1e,0x0,0x58,0x1e,0xd4,0xf0,0x58, + 0xc5,0x0,0x0,0x59,0xfe,0xb6,0xf0,0x5a,0xa4,0xe2,0x0,0x5b,0xde,0x98,0xf0,0x5c, + 0x84,0xc4,0x0,0x5d,0xbe,0x7a,0xf0,0x5e,0x64,0xa6,0x0,0x5f,0x9e,0x5c,0xf0,0x60, + 0x4d,0xc2,0x80,0x61,0x87,0x79,0x70,0x62,0x2d,0xa4,0x80,0x63,0x67,0x5b,0x70,0x64, + 0xd,0x86,0x80,0x65,0x47,0x3d,0x70,0x65,0xed,0x68,0x80,0x67,0x27,0x1f,0x70,0x67, + 0xcd,0x4a,0x80,0x69,0x7,0x1,0x70,0x69,0xad,0x2c,0x80,0x6a,0xe6,0xe3,0x70,0x6b, + 0x96,0x49,0x0,0x6c,0xcf,0xff,0xf0,0x6d,0x76,0x2b,0x0,0x6e,0xaf,0xe1,0xf0,0x6f, + 0x56,0xd,0x0,0x70,0x8f,0xc3,0xf0,0x71,0x35,0xef,0x0,0x72,0x6f,0xa5,0xf0,0x73, + 0x15,0xd1,0x0,0x74,0x4f,0x87,0xf0,0x74,0xfe,0xed,0x80,0x76,0x38,0xa4,0x70,0x76, + 0xde,0xcf,0x80,0x78,0x18,0x86,0x70,0x78,0xbe,0xb1,0x80,0x79,0xf8,0x68,0x70,0x7a, + 0x9e,0x93,0x80,0x7b,0xd8,0x4a,0x70,0x7c,0x7e,0x75,0x80,0x7d,0xb8,0x2c,0x70,0x7e, + 0x5e,0x57,0x80,0x7f,0x98,0xe,0x70,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0xff,0xff,0x84,0xa6,0x0,0x0,0xff,0xff,0x8f,0x80, - 0x0,0x4,0xff,0xff,0x9d,0x90,0x1,0x8,0xff,0xff,0x9d,0x90,0x1,0xc,0xff,0xff, - 0x9d,0x90,0x1,0x10,0xff,0xff,0x81,0x70,0x0,0x14,0xff,0xff,0x8f,0x80,0x1,0x19, - 0x4c,0x4d,0x54,0x0,0x50,0x53,0x54,0x0,0x50,0x57,0x54,0x0,0x50,0x50,0x54,0x0, - 0x50,0x44,0x54,0x0,0x41,0x4b,0x53,0x54,0x0,0x41,0x4b,0x44,0x54,0x0,0x0,0x0, - 0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x54,0x5a,0x69,0x66, - 0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x51, - 0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x1e,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0xff,0xff,0xff,0xff,0x3f,0xc0,0xce,0xda,0xff,0xff,0xff,0xff,0x7d,0x87,0x30,0x1a, - 0xff,0xff,0xff,0xff,0xcb,0x89,0x1a,0xa0,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70, - 0xff,0xff,0xff,0xff,0xd2,0x61,0x26,0x10,0xff,0xff,0xff,0xff,0xfe,0xb8,0x47,0x20, - 0xff,0xff,0xff,0xff,0xff,0xa8,0x2a,0x10,0x0,0x0,0x0,0x0,0x0,0x98,0x29,0x20, - 0x0,0x0,0x0,0x0,0x1,0x88,0xc,0x10,0x0,0x0,0x0,0x0,0x2,0x78,0xb,0x20, - 0x0,0x0,0x0,0x0,0x3,0x71,0x28,0x90,0x0,0x0,0x0,0x0,0x4,0x61,0x27,0xa0, - 0x0,0x0,0x0,0x0,0x5,0x51,0xa,0x90,0x0,0x0,0x0,0x0,0x6,0x41,0x9,0xa0, - 0x0,0x0,0x0,0x0,0x7,0x30,0xec,0x90,0x0,0x0,0x0,0x0,0x7,0x8d,0x43,0xa0, - 0x0,0x0,0x0,0x0,0x9,0x10,0xce,0x90,0x0,0x0,0x0,0x0,0x9,0xad,0xbf,0x20, - 0x0,0x0,0x0,0x0,0xa,0xf0,0xb0,0x90,0x0,0x0,0x0,0x0,0xb,0xe0,0xaf,0xa0, - 0x0,0x0,0x0,0x0,0xc,0xd9,0xcd,0x10,0x0,0x0,0x0,0x0,0xd,0xc0,0x91,0xa0, - 0x0,0x0,0x0,0x0,0xe,0xb9,0xaf,0x10,0x0,0x0,0x0,0x0,0xf,0xa9,0xae,0x20, - 0x0,0x0,0x0,0x0,0x10,0x99,0x91,0x10,0x0,0x0,0x0,0x0,0x11,0x89,0x90,0x20, - 0x0,0x0,0x0,0x0,0x12,0x79,0x73,0x10,0x0,0x0,0x0,0x0,0x13,0x69,0x72,0x20, - 0x0,0x0,0x0,0x0,0x14,0x59,0x55,0x10,0x0,0x0,0x0,0x0,0x15,0x49,0x54,0x20, - 0x0,0x0,0x0,0x0,0x16,0x39,0x37,0x10,0x0,0x0,0x0,0x0,0x17,0x29,0x36,0x20, - 0x0,0x0,0x0,0x0,0x18,0x22,0x53,0x90,0x0,0x0,0x0,0x0,0x19,0x9,0x18,0x20, - 0x0,0x0,0x0,0x0,0x1a,0x2,0x35,0x90,0x0,0x0,0x0,0x0,0x56,0x35,0xe2,0xa0, - 0x0,0x0,0x0,0x0,0x56,0xe5,0x48,0x30,0x0,0x0,0x0,0x0,0x58,0x1e,0xff,0x20, - 0x0,0x0,0x0,0x0,0x58,0xc5,0x2a,0x30,0x0,0x0,0x0,0x0,0x59,0xfe,0xe1,0x20, - 0x0,0x0,0x0,0x0,0x5a,0xa5,0xc,0x30,0x0,0x0,0x0,0x0,0x5b,0xde,0xc3,0x20, - 0x0,0x0,0x0,0x0,0x5c,0x84,0xee,0x30,0x0,0x0,0x0,0x0,0x5d,0xbe,0xa5,0x20, - 0x0,0x0,0x0,0x0,0x5e,0x64,0xd0,0x30,0x0,0x0,0x0,0x0,0x5f,0x9e,0x87,0x20, - 0x0,0x0,0x0,0x0,0x60,0x4d,0xec,0xb0,0x0,0x0,0x0,0x0,0x61,0x87,0xa3,0xa0, - 0x0,0x0,0x0,0x0,0x62,0x2d,0xce,0xb0,0x0,0x0,0x0,0x0,0x63,0x67,0x85,0xa0, - 0x0,0x0,0x0,0x0,0x64,0xd,0xb0,0xb0,0x0,0x0,0x0,0x0,0x65,0x47,0x67,0xa0, - 0x0,0x0,0x0,0x0,0x65,0xed,0x92,0xb0,0x0,0x0,0x0,0x0,0x67,0x27,0x49,0xa0, - 0x0,0x0,0x0,0x0,0x67,0xcd,0x74,0xb0,0x0,0x0,0x0,0x0,0x69,0x7,0x2b,0xa0, - 0x0,0x0,0x0,0x0,0x69,0xad,0x56,0xb0,0x0,0x0,0x0,0x0,0x6a,0xe7,0xd,0xa0, - 0x0,0x0,0x0,0x0,0x6b,0x96,0x73,0x30,0x0,0x0,0x0,0x0,0x6c,0xd0,0x2a,0x20, - 0x0,0x0,0x0,0x0,0x6d,0x76,0x55,0x30,0x0,0x0,0x0,0x0,0x6e,0xb0,0xc,0x20, - 0x0,0x0,0x0,0x0,0x6f,0x56,0x37,0x30,0x0,0x0,0x0,0x0,0x70,0x8f,0xee,0x20, - 0x0,0x0,0x0,0x0,0x71,0x36,0x19,0x30,0x0,0x0,0x0,0x0,0x72,0x6f,0xd0,0x20, - 0x0,0x0,0x0,0x0,0x73,0x15,0xfb,0x30,0x0,0x0,0x0,0x0,0x74,0x4f,0xb2,0x20, - 0x0,0x0,0x0,0x0,0x74,0xff,0x17,0xb0,0x0,0x0,0x0,0x0,0x76,0x38,0xce,0xa0, - 0x0,0x0,0x0,0x0,0x76,0xde,0xf9,0xb0,0x0,0x0,0x0,0x0,0x78,0x18,0xb0,0xa0, - 0x0,0x0,0x0,0x0,0x78,0xbe,0xdb,0xb0,0x0,0x0,0x0,0x0,0x79,0xf8,0x92,0xa0, - 0x0,0x0,0x0,0x0,0x7a,0x9e,0xbd,0xb0,0x0,0x0,0x0,0x0,0x7b,0xd8,0x74,0xa0, - 0x0,0x0,0x0,0x0,0x7c,0x7e,0x9f,0xb0,0x0,0x0,0x0,0x0,0x7d,0xb8,0x56,0xa0, - 0x0,0x0,0x0,0x0,0x7e,0x5e,0x81,0xb0,0x0,0x0,0x0,0x0,0x7f,0x98,0x38,0xa0, - 0x0,0x1,0x2,0x3,0x4,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2, - 0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2, - 0x5,0x2,0x5,0x2,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x0,0x0,0xd6,0x26,0x0,0x0,0xff,0xff,0x84,0xa6,0x0,0x0,0xff,0xff,0x8f, - 0x80,0x0,0x4,0xff,0xff,0x9d,0x90,0x1,0x8,0xff,0xff,0x9d,0x90,0x1,0xc,0xff, - 0xff,0x9d,0x90,0x1,0x10,0xff,0xff,0x81,0x70,0x0,0x14,0xff,0xff,0x8f,0x80,0x1, - 0x19,0x4c,0x4d,0x54,0x0,0x50,0x53,0x54,0x0,0x50,0x57,0x54,0x0,0x50,0x50,0x54, - 0x0,0x50,0x44,0x54,0x0,0x41,0x4b,0x53,0x54,0x0,0x41,0x4b,0x44,0x54,0x0,0x0, - 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa, - 0x41,0x4b,0x53,0x54,0x39,0x41,0x4b,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30, - 0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Bogota - 0x0,0x0,0x1,0x1, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0xff,0xff,0xa4,0xec,0x0,0x0,0xff,0xff,0xb9,0xb0,0x1,0x4,0xff,0xff, + 0xab,0xa0,0x0,0x8,0xff,0xff,0xb9,0xb0,0x1,0xc,0xff,0xff,0xb9,0xb0,0x1,0x10, + 0xff,0xff,0xb9,0xb0,0x1,0x4,0xff,0xff,0xab,0xa0,0x0,0x8,0x4c,0x4d,0x54,0x0, + 0x43,0x44,0x54,0x0,0x43,0x53,0x54,0x0,0x43,0x57,0x54,0x0,0x43,0x50,0x54,0x0, + 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x54,0x5a, + 0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xbc,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x14,0xf8,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xff,0xff,0xff,0xff,0x64,0xe4,0xb0,0x94,0xff,0xff,0xff,0xff,0x9b,0x1, + 0xfb,0xe0,0xff,0xff,0xff,0xff,0x9b,0xc3,0xba,0x50,0xff,0xff,0xff,0xff,0x9e,0xb8, + 0xa1,0x80,0xff,0xff,0xff,0xff,0x9f,0xba,0xf9,0x70,0xff,0xff,0xff,0xff,0xc2,0xa0, + 0x3b,0x80,0xff,0xff,0xff,0xff,0xc3,0x4f,0x84,0xf0,0xff,0xff,0xff,0xff,0xcb,0x88, + 0xfe,0x80,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x61, + 0x9,0xf0,0xff,0xff,0xff,0xff,0xd3,0x88,0x68,0x0,0xff,0xff,0xff,0xff,0xd4,0x53, + 0x60,0xf0,0xff,0xff,0xff,0xff,0xd5,0x55,0xd5,0x0,0xff,0xff,0xff,0xff,0xd6,0x20, + 0xcd,0xf0,0xff,0xff,0xff,0xff,0xd7,0x35,0xb7,0x0,0xff,0xff,0xff,0xff,0xd8,0x0, + 0xaf,0xf0,0xff,0xff,0xff,0xff,0xd9,0x15,0x99,0x0,0xff,0xff,0xff,0xff,0xd9,0xe0, + 0x91,0xf0,0xff,0xff,0xff,0xff,0xdb,0x0,0x7,0x0,0xff,0xff,0xff,0xff,0xdb,0xc8, + 0x5c,0xf0,0xff,0xff,0xff,0xff,0xdc,0xde,0x97,0x80,0xff,0xff,0xff,0xff,0xdd,0xa9, + 0x90,0x70,0xff,0xff,0xff,0xff,0xde,0xbe,0x79,0x80,0xff,0xff,0xff,0xff,0xdf,0x89, + 0x72,0x70,0xff,0xff,0xff,0xff,0xe0,0x9e,0x5b,0x80,0xff,0xff,0xff,0xff,0xe1,0x69, + 0x54,0x70,0xff,0xff,0xff,0xff,0xe2,0x7e,0x3d,0x80,0xff,0xff,0xff,0xff,0xe3,0x49, + 0x36,0x70,0xff,0xff,0xff,0xff,0xe4,0x5e,0x1f,0x80,0xff,0xff,0xff,0xff,0xe5,0x29, + 0x18,0x70,0xff,0xff,0xff,0xff,0xe6,0x47,0x3c,0x0,0xff,0xff,0xff,0xff,0xe7,0x12, + 0x34,0xf0,0xff,0xff,0xff,0xff,0xe8,0x27,0x1e,0x0,0xff,0xff,0xff,0xff,0xe8,0xf2, + 0x16,0xf0,0xff,0xff,0xff,0xff,0xea,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0xea,0xd1, + 0xf8,0xf0,0xff,0xff,0xff,0xff,0xeb,0xe6,0xe2,0x0,0xff,0xff,0xff,0xff,0xec,0xd6, + 0xc4,0xf0,0xff,0xff,0xff,0xff,0xed,0xc6,0xc4,0x0,0xff,0xff,0xff,0xff,0xee,0x91, + 0xbc,0xf0,0xff,0xff,0xff,0xff,0xf3,0x6f,0xa4,0x80,0xff,0xff,0xff,0xff,0xf4,0x31, + 0x62,0xf0,0xff,0xff,0xff,0xff,0xf9,0xf,0x4a,0x80,0xff,0xff,0xff,0xff,0xfa,0x8, + 0x76,0x0,0xff,0xff,0xff,0xff,0xfa,0xf8,0x67,0x0,0xff,0xff,0xff,0xff,0xfb,0xe8, + 0x58,0x0,0xff,0xff,0xff,0xff,0xfc,0xd8,0x49,0x0,0xff,0xff,0xff,0xff,0xfd,0xc8, + 0x3a,0x0,0xff,0xff,0xff,0xff,0xfe,0xb8,0x2b,0x0,0xff,0xff,0xff,0xff,0xff,0xa8, + 0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x98,0xd,0x0,0x0,0x0,0x0,0x0,0x1,0x87, + 0xfe,0x0,0x0,0x0,0x0,0x0,0x2,0x77,0xef,0x0,0x0,0x0,0x0,0x0,0x3,0x71, + 0x1a,0x80,0x0,0x0,0x0,0x0,0x4,0x61,0xb,0x80,0x0,0x0,0x0,0x0,0x5,0x50, + 0xfc,0x80,0x0,0x0,0x0,0x0,0x6,0x40,0xed,0x80,0x0,0x0,0x0,0x0,0x7,0x30, + 0xde,0x80,0x0,0x0,0x0,0x0,0x8,0x20,0xcf,0x80,0x0,0x0,0x0,0x0,0x9,0x10, + 0xc0,0x80,0x0,0x0,0x0,0x0,0xa,0x0,0xb1,0x80,0x0,0x0,0x0,0x0,0xa,0xf0, + 0xa2,0x80,0x0,0x0,0x0,0x0,0xb,0xe0,0x93,0x80,0x0,0x0,0x0,0x0,0xc,0xd9, + 0xbf,0x0,0x0,0x0,0x0,0x0,0xd,0xc0,0x75,0x80,0x0,0x0,0x0,0x0,0xe,0xb9, + 0xa1,0x0,0x0,0x0,0x0,0x0,0xf,0xa9,0x92,0x0,0x0,0x0,0x0,0x0,0x10,0x99, + 0x83,0x0,0x0,0x0,0x0,0x0,0x11,0x89,0x74,0x0,0x0,0x0,0x0,0x0,0x12,0x79, + 0x65,0x0,0x0,0x0,0x0,0x0,0x13,0x69,0x56,0x0,0x0,0x0,0x0,0x0,0x14,0x59, + 0x47,0x0,0x0,0x0,0x0,0x0,0x15,0x49,0x38,0x0,0x0,0x0,0x0,0x0,0x16,0x39, + 0x29,0x0,0x0,0x0,0x0,0x0,0x17,0x29,0x1a,0x0,0x0,0x0,0x0,0x0,0x18,0x22, + 0x45,0x80,0x0,0x0,0x0,0x0,0x19,0x8,0xfc,0x0,0x0,0x0,0x0,0x0,0x1a,0x2, + 0x27,0x80,0x0,0x0,0x0,0x0,0x1a,0xf2,0x18,0x80,0x0,0x0,0x0,0x0,0x1b,0xe2, + 0x9,0x80,0x0,0x0,0x0,0x0,0x1c,0xd1,0xfa,0x80,0x0,0x0,0x0,0x0,0x1d,0xc1, + 0xeb,0x80,0x0,0x0,0x0,0x0,0x1e,0xb1,0xdc,0x80,0x0,0x0,0x0,0x0,0x1f,0xa1, + 0xcd,0x80,0x0,0x0,0x0,0x0,0x20,0x76,0xf,0x0,0x0,0x0,0x0,0x0,0x21,0x81, + 0xaf,0x80,0x0,0x0,0x0,0x0,0x22,0x55,0xf1,0x0,0x0,0x0,0x0,0x0,0x23,0x6a, + 0xcc,0x0,0x0,0x0,0x0,0x0,0x24,0x35,0xd3,0x0,0x0,0x0,0x0,0x0,0x25,0x4a, + 0xae,0x0,0x0,0x0,0x0,0x0,0x26,0x15,0xb5,0x0,0x0,0x0,0x0,0x0,0x27,0x2a, + 0x90,0x0,0x0,0x0,0x0,0x0,0x27,0xfe,0xd1,0x80,0x0,0x0,0x0,0x0,0x29,0xa, + 0x72,0x0,0x0,0x0,0x0,0x0,0x29,0xde,0xb3,0x80,0x0,0x0,0x0,0x0,0x2a,0xea, + 0x54,0x0,0x0,0x0,0x0,0x0,0x2b,0xbe,0x95,0x80,0x0,0x0,0x0,0x0,0x2c,0xd3, + 0x70,0x80,0x0,0x0,0x0,0x0,0x2d,0x9e,0x77,0x80,0x0,0x0,0x0,0x0,0x2e,0xb3, + 0x52,0x80,0x0,0x0,0x0,0x0,0x2f,0x7e,0x59,0x80,0x0,0x0,0x0,0x0,0x30,0x93, + 0x34,0x80,0x0,0x0,0x0,0x0,0x31,0x67,0x76,0x0,0x0,0x0,0x0,0x0,0x32,0x73, + 0x16,0x80,0x0,0x0,0x0,0x0,0x33,0x47,0x58,0x0,0x0,0x0,0x0,0x0,0x34,0x52, + 0xf8,0x80,0x0,0x0,0x0,0x0,0x35,0x27,0x3a,0x0,0x0,0x0,0x0,0x0,0x36,0x32, + 0xda,0x80,0x0,0x0,0x0,0x0,0x37,0x7,0x1c,0x0,0x0,0x0,0x0,0x0,0x38,0x1b, + 0xf7,0x0,0x0,0x0,0x0,0x0,0x38,0xe6,0xfe,0x0,0x0,0x0,0x0,0x0,0x39,0xfb, + 0xd9,0x0,0x0,0x0,0x0,0x0,0x3a,0xc6,0xe0,0x0,0x0,0x0,0x0,0x0,0x3b,0xdb, + 0xbb,0x0,0x0,0x0,0x0,0x0,0x3c,0xaf,0xfc,0x80,0x0,0x0,0x0,0x0,0x3d,0xbb, + 0x9d,0x0,0x0,0x0,0x0,0x0,0x3e,0x8f,0xde,0x80,0x0,0x0,0x0,0x0,0x3f,0x9b, + 0x7f,0x0,0x0,0x0,0x0,0x0,0x40,0x6f,0xc0,0x80,0x0,0x0,0x0,0x0,0x41,0x84, + 0x9b,0x80,0x0,0x0,0x0,0x0,0x42,0x4f,0xa2,0x80,0x0,0x0,0x0,0x0,0x43,0x64, + 0x7d,0x80,0x0,0x0,0x0,0x0,0x43,0xb7,0x6f,0xe0,0x0,0x0,0x0,0x0,0x44,0x2f, + 0x84,0x80,0x0,0x0,0x0,0x0,0x45,0x44,0x51,0x70,0x0,0x0,0x0,0x0,0x45,0xf3, + 0xb7,0x0,0x0,0x0,0x0,0x0,0x47,0x2d,0x6d,0xf0,0x0,0x0,0x0,0x0,0x47,0xd3, + 0x99,0x0,0x0,0x0,0x0,0x0,0x49,0xd,0x4f,0xf0,0x0,0x0,0x0,0x0,0x49,0xb3, + 0x7b,0x0,0x0,0x0,0x0,0x0,0x4a,0xed,0x31,0xf0,0x0,0x0,0x0,0x0,0x4b,0x9c, + 0x97,0x80,0x0,0x0,0x0,0x0,0x4c,0xd6,0x4e,0x70,0x0,0x0,0x0,0x0,0x4d,0x7c, + 0x79,0x80,0x0,0x0,0x0,0x0,0x4e,0xb6,0x30,0x70,0x0,0x0,0x0,0x0,0x4f,0x5c, + 0x5b,0x80,0x0,0x0,0x0,0x0,0x50,0x96,0x12,0x70,0x0,0x0,0x0,0x0,0x51,0x3c, + 0x3d,0x80,0x0,0x0,0x0,0x0,0x52,0x75,0xf4,0x70,0x0,0x0,0x0,0x0,0x53,0x1c, + 0x1f,0x80,0x0,0x0,0x0,0x0,0x54,0x55,0xd6,0x70,0x0,0x0,0x0,0x0,0x54,0xfc, + 0x1,0x80,0x0,0x0,0x0,0x0,0x56,0x35,0xb8,0x70,0x0,0x0,0x0,0x0,0x56,0xe5, + 0x1e,0x0,0x0,0x0,0x0,0x0,0x58,0x1e,0xd4,0xf0,0x0,0x0,0x0,0x0,0x58,0xc5, + 0x0,0x0,0x0,0x0,0x0,0x0,0x59,0xfe,0xb6,0xf0,0x0,0x0,0x0,0x0,0x5a,0xa4, + 0xe2,0x0,0x0,0x0,0x0,0x0,0x5b,0xde,0x98,0xf0,0x0,0x0,0x0,0x0,0x5c,0x84, + 0xc4,0x0,0x0,0x0,0x0,0x0,0x5d,0xbe,0x7a,0xf0,0x0,0x0,0x0,0x0,0x5e,0x64, + 0xa6,0x0,0x0,0x0,0x0,0x0,0x5f,0x9e,0x5c,0xf0,0x0,0x0,0x0,0x0,0x60,0x4d, + 0xc2,0x80,0x0,0x0,0x0,0x0,0x61,0x87,0x79,0x70,0x0,0x0,0x0,0x0,0x62,0x2d, + 0xa4,0x80,0x0,0x0,0x0,0x0,0x63,0x67,0x5b,0x70,0x0,0x0,0x0,0x0,0x64,0xd, + 0x86,0x80,0x0,0x0,0x0,0x0,0x65,0x47,0x3d,0x70,0x0,0x0,0x0,0x0,0x65,0xed, + 0x68,0x80,0x0,0x0,0x0,0x0,0x67,0x27,0x1f,0x70,0x0,0x0,0x0,0x0,0x67,0xcd, + 0x4a,0x80,0x0,0x0,0x0,0x0,0x69,0x7,0x1,0x70,0x0,0x0,0x0,0x0,0x69,0xad, + 0x2c,0x80,0x0,0x0,0x0,0x0,0x6a,0xe6,0xe3,0x70,0x0,0x0,0x0,0x0,0x6b,0x96, + 0x49,0x0,0x0,0x0,0x0,0x0,0x6c,0xcf,0xff,0xf0,0x0,0x0,0x0,0x0,0x6d,0x76, + 0x2b,0x0,0x0,0x0,0x0,0x0,0x6e,0xaf,0xe1,0xf0,0x0,0x0,0x0,0x0,0x6f,0x56, + 0xd,0x0,0x0,0x0,0x0,0x0,0x70,0x8f,0xc3,0xf0,0x0,0x0,0x0,0x0,0x71,0x35, + 0xef,0x0,0x0,0x0,0x0,0x0,0x72,0x6f,0xa5,0xf0,0x0,0x0,0x0,0x0,0x73,0x15, + 0xd1,0x0,0x0,0x0,0x0,0x0,0x74,0x4f,0x87,0xf0,0x0,0x0,0x0,0x0,0x74,0xfe, + 0xed,0x80,0x0,0x0,0x0,0x0,0x76,0x38,0xa4,0x70,0x0,0x0,0x0,0x0,0x76,0xde, + 0xcf,0x80,0x0,0x0,0x0,0x0,0x78,0x18,0x86,0x70,0x0,0x0,0x0,0x0,0x78,0xbe, + 0xb1,0x80,0x0,0x0,0x0,0x0,0x79,0xf8,0x68,0x70,0x0,0x0,0x0,0x0,0x7a,0x9e, + 0x93,0x80,0x0,0x0,0x0,0x0,0x7b,0xd8,0x4a,0x70,0x0,0x0,0x0,0x0,0x7c,0x7e, + 0x75,0x80,0x0,0x0,0x0,0x0,0x7d,0xb8,0x2c,0x70,0x0,0x0,0x0,0x0,0x7e,0x5e, + 0x57,0x80,0x0,0x0,0x0,0x0,0x7f,0x98,0xe,0x70,0x0,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x3,0x4,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0xa4,0xec,0x0,0x0,0xff,0xff,0xb9,0xb0, + 0x1,0x4,0xff,0xff,0xab,0xa0,0x0,0x8,0xff,0xff,0xb9,0xb0,0x1,0xc,0xff,0xff, + 0xb9,0xb0,0x1,0x10,0xff,0xff,0xb9,0xb0,0x1,0x4,0xff,0xff,0xab,0xa0,0x0,0x8, + 0x4c,0x4d,0x54,0x0,0x43,0x44,0x54,0x0,0x43,0x53,0x54,0x0,0x43,0x57,0x54,0x0, + 0x43,0x50,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x1, + 0x0,0x0,0xa,0x43,0x53,0x54,0x36,0x43,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e, + 0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Monterrey + 0x0,0x0,0x5,0x88, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x11,0x80,0x0,0x0,0x0,0x98, - 0x58,0x55,0x70,0x2a,0x3,0x73,0x50,0x2b,0xbe,0x5d,0x40,0x1,0x3,0x2,0x3,0xff, - 0xff,0xba,0x90,0x0,0x0,0xff,0xff,0xba,0x90,0x0,0x4,0xff,0xff,0xc7,0xc0,0x1, - 0x8,0xff,0xff,0xb9,0xb0,0x0,0xd,0x4c,0x4d,0x54,0x0,0x42,0x4d,0x54,0x0,0x43, - 0x4f,0x53,0x54,0x0,0x43,0x4f,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x11,0xf8,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x5e,0x9c,0x34,0xf0,0xff,0xff,0xff,0xff, - 0x98,0x58,0x55,0x70,0x0,0x0,0x0,0x0,0x2a,0x3,0x73,0x50,0x0,0x0,0x0,0x0, - 0x2b,0xbe,0x5d,0x40,0x0,0x1,0x3,0x2,0x3,0xff,0xff,0xba,0x90,0x0,0x0,0xff, - 0xff,0xba,0x90,0x0,0x4,0xff,0xff,0xc7,0xc0,0x1,0x8,0xff,0xff,0xb9,0xb0,0x0, - 0xd,0x4c,0x4d,0x54,0x0,0x42,0x4d,0x54,0x0,0x43,0x4f,0x53,0x54,0x0,0x43,0x4f, - 0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x43,0x4f,0x54,0x35,0xa, - - // /home/konrad/src/smoke/tzone/zoneinfo/America/Havana - 0x0,0x0,0x9,0x85, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x58,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0xa5, + 0xb6,0xda,0x60,0x22,0x55,0xf1,0x0,0x23,0x6a,0xbd,0xf0,0x31,0x67,0x76,0x0,0x32, + 0x73,0x8,0x70,0x33,0x47,0x58,0x0,0x34,0x52,0xea,0x70,0x35,0x27,0x3a,0x0,0x36, + 0x32,0xcc,0x70,0x37,0x7,0x1c,0x0,0x38,0x1b,0xe8,0xf0,0x38,0xe6,0xfe,0x0,0x39, + 0xfb,0xca,0xf0,0x3a,0xf5,0x4,0x80,0x3b,0xb6,0xc2,0xf0,0x3c,0xaf,0xfc,0x80,0x3d, + 0xbb,0x8e,0xf0,0x3e,0x8f,0xde,0x80,0x3f,0x9b,0x70,0xf0,0x40,0x6f,0xc0,0x80,0x41, + 0x84,0x8d,0x70,0x42,0x4f,0xa2,0x80,0x43,0x64,0x6f,0x70,0x44,0x2f,0x84,0x80,0x45, + 0x44,0x51,0x70,0x46,0xf,0x66,0x80,0x47,0x24,0x33,0x70,0x47,0xf8,0x83,0x0,0x49, + 0x4,0x15,0x70,0x49,0xd8,0x65,0x0,0x4a,0xe3,0xf7,0x70,0x4b,0xb8,0x47,0x0,0x4c, + 0xcd,0x13,0xf0,0x4d,0x98,0x29,0x0,0x4e,0xac,0xf5,0xf0,0x4f,0x78,0xb,0x0,0x50, + 0x8c,0xd7,0xf0,0x51,0x61,0x27,0x80,0x52,0x6c,0xb9,0xf0,0x53,0x41,0x9,0x80,0x54, + 0x4c,0x9b,0xf0,0x55,0x20,0xeb,0x80,0x56,0x2c,0x7d,0xf0,0x57,0x0,0xcd,0x80,0x58, + 0x15,0x9a,0x70,0x58,0xe0,0xaf,0x80,0x59,0xf5,0x7c,0x70,0x5a,0xc0,0x91,0x80,0x5b, + 0xd5,0x5e,0x70,0x5c,0xa9,0xae,0x0,0x5d,0xb5,0x40,0x70,0x5e,0x89,0x90,0x0,0x5f, + 0x95,0x22,0x70,0x60,0x69,0x72,0x0,0x61,0x7e,0x3e,0xf0,0x62,0x49,0x54,0x0,0x63, + 0x5e,0x20,0xf0,0x64,0x29,0x36,0x0,0x65,0x3e,0x2,0xf0,0x66,0x12,0x52,0x80,0x67, + 0x1d,0xe4,0xf0,0x67,0xf2,0x34,0x80,0x68,0xfd,0xc6,0xf0,0x69,0xd2,0x16,0x80,0x6a, + 0xdd,0xa8,0xf0,0x6b,0xb1,0xf8,0x80,0x6c,0xc6,0xc5,0x70,0x6d,0x91,0xda,0x80,0x6e, + 0xa6,0xa7,0x70,0x6f,0x71,0xbc,0x80,0x70,0x86,0x89,0x70,0x71,0x5a,0xd9,0x0,0x72, + 0x66,0x6b,0x70,0x73,0x3a,0xbb,0x0,0x74,0x46,0x4d,0x70,0x75,0x1a,0x9d,0x0,0x76, + 0x2f,0x69,0xf0,0x76,0xfa,0x7f,0x0,0x78,0xf,0x4b,0xf0,0x78,0xda,0x61,0x0,0x79, + 0xef,0x2d,0xf0,0x7a,0xba,0x43,0x0,0x7b,0xcf,0xf,0xf0,0x7c,0xa3,0x5f,0x80,0x7d, + 0xae,0xf1,0xf0,0x7e,0x83,0x41,0x80,0x7f,0x8e,0xd3,0xf0,0x0,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0xff,0xff,0xa1,0xf4,0x0,0x0,0xff,0xff,0xab,0xa0,0x0,0x4,0xff, + 0xff,0xb9,0xb0,0x1,0x8,0x4c,0x4d,0x54,0x0,0x43,0x53,0x54,0x0,0x43,0x44,0x54, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0, + 0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x58,0x0,0x0,0x0,0x3,0x0, + 0x0,0x0,0xc,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xa5, + 0xb6,0xda,0x60,0x0,0x0,0x0,0x0,0x22,0x55,0xf1,0x0,0x0,0x0,0x0,0x0,0x23, + 0x6a,0xbd,0xf0,0x0,0x0,0x0,0x0,0x31,0x67,0x76,0x0,0x0,0x0,0x0,0x0,0x32, + 0x73,0x8,0x70,0x0,0x0,0x0,0x0,0x33,0x47,0x58,0x0,0x0,0x0,0x0,0x0,0x34, + 0x52,0xea,0x70,0x0,0x0,0x0,0x0,0x35,0x27,0x3a,0x0,0x0,0x0,0x0,0x0,0x36, + 0x32,0xcc,0x70,0x0,0x0,0x0,0x0,0x37,0x7,0x1c,0x0,0x0,0x0,0x0,0x0,0x38, + 0x1b,0xe8,0xf0,0x0,0x0,0x0,0x0,0x38,0xe6,0xfe,0x0,0x0,0x0,0x0,0x0,0x39, + 0xfb,0xca,0xf0,0x0,0x0,0x0,0x0,0x3a,0xf5,0x4,0x80,0x0,0x0,0x0,0x0,0x3b, + 0xb6,0xc2,0xf0,0x0,0x0,0x0,0x0,0x3c,0xaf,0xfc,0x80,0x0,0x0,0x0,0x0,0x3d, + 0xbb,0x8e,0xf0,0x0,0x0,0x0,0x0,0x3e,0x8f,0xde,0x80,0x0,0x0,0x0,0x0,0x3f, + 0x9b,0x70,0xf0,0x0,0x0,0x0,0x0,0x40,0x6f,0xc0,0x80,0x0,0x0,0x0,0x0,0x41, + 0x84,0x8d,0x70,0x0,0x0,0x0,0x0,0x42,0x4f,0xa2,0x80,0x0,0x0,0x0,0x0,0x43, + 0x64,0x6f,0x70,0x0,0x0,0x0,0x0,0x44,0x2f,0x84,0x80,0x0,0x0,0x0,0x0,0x45, + 0x44,0x51,0x70,0x0,0x0,0x0,0x0,0x46,0xf,0x66,0x80,0x0,0x0,0x0,0x0,0x47, + 0x24,0x33,0x70,0x0,0x0,0x0,0x0,0x47,0xf8,0x83,0x0,0x0,0x0,0x0,0x0,0x49, + 0x4,0x15,0x70,0x0,0x0,0x0,0x0,0x49,0xd8,0x65,0x0,0x0,0x0,0x0,0x0,0x4a, + 0xe3,0xf7,0x70,0x0,0x0,0x0,0x0,0x4b,0xb8,0x47,0x0,0x0,0x0,0x0,0x0,0x4c, + 0xcd,0x13,0xf0,0x0,0x0,0x0,0x0,0x4d,0x98,0x29,0x0,0x0,0x0,0x0,0x0,0x4e, + 0xac,0xf5,0xf0,0x0,0x0,0x0,0x0,0x4f,0x78,0xb,0x0,0x0,0x0,0x0,0x0,0x50, + 0x8c,0xd7,0xf0,0x0,0x0,0x0,0x0,0x51,0x61,0x27,0x80,0x0,0x0,0x0,0x0,0x52, + 0x6c,0xb9,0xf0,0x0,0x0,0x0,0x0,0x53,0x41,0x9,0x80,0x0,0x0,0x0,0x0,0x54, + 0x4c,0x9b,0xf0,0x0,0x0,0x0,0x0,0x55,0x20,0xeb,0x80,0x0,0x0,0x0,0x0,0x56, + 0x2c,0x7d,0xf0,0x0,0x0,0x0,0x0,0x57,0x0,0xcd,0x80,0x0,0x0,0x0,0x0,0x58, + 0x15,0x9a,0x70,0x0,0x0,0x0,0x0,0x58,0xe0,0xaf,0x80,0x0,0x0,0x0,0x0,0x59, + 0xf5,0x7c,0x70,0x0,0x0,0x0,0x0,0x5a,0xc0,0x91,0x80,0x0,0x0,0x0,0x0,0x5b, + 0xd5,0x5e,0x70,0x0,0x0,0x0,0x0,0x5c,0xa9,0xae,0x0,0x0,0x0,0x0,0x0,0x5d, + 0xb5,0x40,0x70,0x0,0x0,0x0,0x0,0x5e,0x89,0x90,0x0,0x0,0x0,0x0,0x0,0x5f, + 0x95,0x22,0x70,0x0,0x0,0x0,0x0,0x60,0x69,0x72,0x0,0x0,0x0,0x0,0x0,0x61, + 0x7e,0x3e,0xf0,0x0,0x0,0x0,0x0,0x62,0x49,0x54,0x0,0x0,0x0,0x0,0x0,0x63, + 0x5e,0x20,0xf0,0x0,0x0,0x0,0x0,0x64,0x29,0x36,0x0,0x0,0x0,0x0,0x0,0x65, + 0x3e,0x2,0xf0,0x0,0x0,0x0,0x0,0x66,0x12,0x52,0x80,0x0,0x0,0x0,0x0,0x67, + 0x1d,0xe4,0xf0,0x0,0x0,0x0,0x0,0x67,0xf2,0x34,0x80,0x0,0x0,0x0,0x0,0x68, + 0xfd,0xc6,0xf0,0x0,0x0,0x0,0x0,0x69,0xd2,0x16,0x80,0x0,0x0,0x0,0x0,0x6a, + 0xdd,0xa8,0xf0,0x0,0x0,0x0,0x0,0x6b,0xb1,0xf8,0x80,0x0,0x0,0x0,0x0,0x6c, + 0xc6,0xc5,0x70,0x0,0x0,0x0,0x0,0x6d,0x91,0xda,0x80,0x0,0x0,0x0,0x0,0x6e, + 0xa6,0xa7,0x70,0x0,0x0,0x0,0x0,0x6f,0x71,0xbc,0x80,0x0,0x0,0x0,0x0,0x70, + 0x86,0x89,0x70,0x0,0x0,0x0,0x0,0x71,0x5a,0xd9,0x0,0x0,0x0,0x0,0x0,0x72, + 0x66,0x6b,0x70,0x0,0x0,0x0,0x0,0x73,0x3a,0xbb,0x0,0x0,0x0,0x0,0x0,0x74, + 0x46,0x4d,0x70,0x0,0x0,0x0,0x0,0x75,0x1a,0x9d,0x0,0x0,0x0,0x0,0x0,0x76, + 0x2f,0x69,0xf0,0x0,0x0,0x0,0x0,0x76,0xfa,0x7f,0x0,0x0,0x0,0x0,0x0,0x78, + 0xf,0x4b,0xf0,0x0,0x0,0x0,0x0,0x78,0xda,0x61,0x0,0x0,0x0,0x0,0x0,0x79, + 0xef,0x2d,0xf0,0x0,0x0,0x0,0x0,0x7a,0xba,0x43,0x0,0x0,0x0,0x0,0x0,0x7b, + 0xcf,0xf,0xf0,0x0,0x0,0x0,0x0,0x7c,0xa3,0x5f,0x80,0x0,0x0,0x0,0x0,0x7d, + 0xae,0xf1,0xf0,0x0,0x0,0x0,0x0,0x7e,0x83,0x41,0x80,0x0,0x0,0x0,0x0,0x7f, + 0x8e,0xd3,0xf0,0x0,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0xff,0xff,0xa1,0xf4,0x0, + 0x0,0xff,0xff,0xab,0xa0,0x0,0x4,0xff,0xff,0xb9,0xb0,0x1,0x8,0x4c,0x4d,0x54, + 0x0,0x43,0x53,0x54,0x0,0x43,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa, + 0x43,0x53,0x54,0x36,0x43,0x44,0x54,0x2c,0x4d,0x34,0x2e,0x31,0x2e,0x30,0x2c,0x4d, + 0x31,0x30,0x2e,0x35,0x2e,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Blanc-Sablon + 0x0,0x0,0x1,0x33, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x9c,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x80,0x0,0x0,0x0,0xac, - 0x62,0xc2,0x80,0xb1,0xd3,0x94,0x50,0xb2,0x74,0x5d,0x40,0xc8,0x5b,0x66,0xd0,0xc8, - 0xd3,0x51,0x40,0xca,0x3b,0x48,0xd0,0xca,0xbc,0x6d,0xc0,0xcc,0x24,0x65,0x50,0xcc, - 0x9c,0x4f,0xc0,0xd1,0xc4,0xb,0x50,0xd2,0x3b,0xf5,0xc0,0xd3,0xa3,0xed,0x50,0xd4, - 0x1b,0xd7,0xc0,0xf7,0x60,0x5,0xd0,0xf7,0xff,0x7d,0x40,0xf9,0x3d,0x44,0xd0,0xf9, - 0xe3,0x53,0xc0,0xfa,0xdb,0x3b,0xd0,0xfb,0xa7,0x86,0x40,0xfc,0xc5,0xa9,0xd0,0xfd, - 0x87,0x68,0x40,0xfe,0xb8,0x0,0xd0,0xff,0xa7,0xe3,0xc0,0x0,0x97,0xe2,0xd0,0x1, - 0x87,0xc5,0xc0,0x2,0x77,0xc4,0xd0,0x3,0x70,0xe2,0x40,0x4,0x60,0xe1,0x50,0x5, - 0x35,0x14,0xc0,0x6,0x40,0xc3,0x50,0x7,0x16,0x48,0x40,0x8,0x20,0xa5,0x50,0x8, - 0xf7,0x7b,0xc0,0xa,0x0,0x87,0x50,0xa,0xf0,0x6a,0x40,0xb,0xe0,0x69,0x50,0xc, - 0xd9,0x86,0xc0,0xd,0xc0,0x4b,0x50,0xe,0xb9,0x68,0xc0,0xf,0xb2,0xa2,0x50,0x10, - 0x7d,0x9b,0x40,0x11,0x51,0xea,0xd0,0x12,0x66,0xb7,0xc0,0x13,0x31,0xcc,0xd0,0x14, - 0x46,0x99,0xc0,0x15,0x5b,0x82,0xd0,0x16,0x26,0x7b,0xc0,0x17,0x3b,0x64,0xd0,0x18, - 0x6,0x5d,0xc0,0x19,0x1b,0x46,0xd0,0x19,0xe6,0x3f,0xc0,0x1a,0xfb,0x28,0xd0,0x1b, - 0xcf,0x5c,0x40,0x1c,0xdb,0xa,0xd0,0x1d,0xaf,0x3e,0x40,0x1e,0x7a,0x53,0x50,0x1f, - 0x8f,0x20,0x40,0x20,0x5a,0x35,0x50,0x21,0x6f,0x2,0x40,0x22,0x43,0x51,0xd0,0x23, - 0x4e,0xe4,0x40,0x24,0x23,0x33,0xd0,0x25,0x2e,0xc6,0x40,0x26,0x15,0x8a,0xd0,0x27, - 0x17,0xe2,0xc0,0x27,0xfe,0xa7,0x50,0x28,0xf7,0xd2,0xd0,0x29,0xde,0x89,0x50,0x2a, - 0xd7,0xb4,0xd0,0x2b,0xbe,0x6b,0x50,0x2c,0xb7,0x96,0xd0,0x2d,0x9e,0x4d,0x50,0x2e, - 0x97,0x78,0xd0,0x2f,0x7e,0x2f,0x50,0x30,0x77,0x5a,0xd0,0x31,0x67,0x4b,0xd0,0x32, - 0x57,0x3c,0xd0,0x33,0x47,0x2d,0xd0,0x34,0x40,0x59,0x50,0x35,0x1d,0xd5,0x50,0x36, - 0x32,0xb0,0x50,0x36,0xfd,0xb7,0x50,0x38,0x1b,0xcc,0xd0,0x38,0xe6,0xd3,0xd0,0x39, - 0xfb,0xae,0xd0,0x3a,0xc6,0xb5,0xd0,0x3b,0xdb,0x90,0xd0,0x3c,0xaf,0xd2,0x50,0x3d, - 0xbb,0x72,0xd0,0x3e,0x8f,0xb4,0x50,0x3f,0x9b,0x54,0xd0,0x40,0x66,0x5b,0xd0,0x45, - 0x44,0x35,0x50,0x45,0xf3,0x8c,0xd0,0x47,0x24,0x17,0x50,0x47,0xdc,0xa9,0x50,0x49, - 0x3,0xf9,0x50,0x49,0xb3,0x50,0xd0,0x4a,0xe3,0xdb,0x50,0x4b,0x9c,0x6d,0x50,0x4c, - 0xcc,0xf7,0xd0,0x4d,0x85,0x89,0xd0,0x4e,0xbf,0x4e,0xd0,0x4f,0x77,0xe0,0xd0,0x50, - 0x95,0xf6,0x50,0x51,0x3c,0x13,0x50,0x52,0x75,0xd8,0x50,0x53,0x1b,0xf5,0x50,0x54, - 0x55,0xba,0x50,0x54,0xfb,0xd7,0x50,0x56,0x35,0x9c,0x50,0x56,0xe4,0xf3,0xd0,0x58, - 0x1e,0xb8,0xd0,0x58,0xc4,0xd5,0xd0,0x59,0xfe,0x9a,0xd0,0x5a,0xa4,0xb7,0xd0,0x5b, - 0xde,0x7c,0xd0,0x5c,0x84,0x99,0xd0,0x5d,0xbe,0x5e,0xd0,0x5e,0x64,0x7b,0xd0,0x5f, - 0x9e,0x40,0xd0,0x60,0x4d,0x98,0x50,0x61,0x87,0x5d,0x50,0x62,0x2d,0x7a,0x50,0x63, - 0x67,0x3f,0x50,0x64,0xd,0x5c,0x50,0x65,0x47,0x21,0x50,0x65,0xed,0x3e,0x50,0x67, - 0x27,0x3,0x50,0x67,0xcd,0x20,0x50,0x69,0x6,0xe5,0x50,0x69,0xad,0x2,0x50,0x6a, - 0xe6,0xc7,0x50,0x6b,0x96,0x1e,0xd0,0x6c,0xcf,0xe3,0xd0,0x6d,0x76,0x0,0xd0,0x6e, - 0xaf,0xc5,0xd0,0x6f,0x55,0xe2,0xd0,0x70,0x8f,0xa7,0xd0,0x71,0x35,0xc4,0xd0,0x72, - 0x6f,0x89,0xd0,0x73,0x15,0xa6,0xd0,0x74,0x4f,0x6b,0xd0,0x74,0xfe,0xc3,0x50,0x76, - 0x38,0x88,0x50,0x76,0xde,0xa5,0x50,0x78,0x18,0x6a,0x50,0x78,0xbe,0x87,0x50,0x79, - 0xf8,0x4c,0x50,0x7a,0x9e,0x69,0x50,0x7b,0xd8,0x2e,0x50,0x7c,0x7e,0x4b,0x50,0x7d, - 0xb8,0x10,0x50,0x7e,0x5e,0x2d,0x50,0x7f,0x97,0xf2,0x50,0x1,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x4,0x2, - 0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0xff,0xff,0xb2,0xc8,0x0,0x0,0xff,0xff,0xb2, - 0xc0,0x0,0x4,0xff,0xff,0xc7,0xc0,0x1,0x8,0xff,0xff,0xb9,0xb0,0x0,0xc,0xff, - 0xff,0xb9,0xb0,0x0,0xc,0xff,0xff,0xc7,0xc0,0x1,0x8,0x4c,0x4d,0x54,0x0,0x48, - 0x4d,0x54,0x0,0x43,0x44,0x54,0x0,0x43,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x1, - 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0, - 0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9d,0x0,0x0,0x0,0x6,0x0, - 0x0,0x0,0x10,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x69, - 0x87,0x28,0xb8,0xff,0xff,0xff,0xff,0xac,0x62,0xc2,0x80,0xff,0xff,0xff,0xff,0xb1, - 0xd3,0x94,0x50,0xff,0xff,0xff,0xff,0xb2,0x74,0x5d,0x40,0xff,0xff,0xff,0xff,0xc8, - 0x5b,0x66,0xd0,0xff,0xff,0xff,0xff,0xc8,0xd3,0x51,0x40,0xff,0xff,0xff,0xff,0xca, - 0x3b,0x48,0xd0,0xff,0xff,0xff,0xff,0xca,0xbc,0x6d,0xc0,0xff,0xff,0xff,0xff,0xcc, - 0x24,0x65,0x50,0xff,0xff,0xff,0xff,0xcc,0x9c,0x4f,0xc0,0xff,0xff,0xff,0xff,0xd1, - 0xc4,0xb,0x50,0xff,0xff,0xff,0xff,0xd2,0x3b,0xf5,0xc0,0xff,0xff,0xff,0xff,0xd3, - 0xa3,0xed,0x50,0xff,0xff,0xff,0xff,0xd4,0x1b,0xd7,0xc0,0xff,0xff,0xff,0xff,0xf7, - 0x60,0x5,0xd0,0xff,0xff,0xff,0xff,0xf7,0xff,0x7d,0x40,0xff,0xff,0xff,0xff,0xf9, - 0x3d,0x44,0xd0,0xff,0xff,0xff,0xff,0xf9,0xe3,0x53,0xc0,0xff,0xff,0xff,0xff,0xfa, - 0xdb,0x3b,0xd0,0xff,0xff,0xff,0xff,0xfb,0xa7,0x86,0x40,0xff,0xff,0xff,0xff,0xfc, - 0xc5,0xa9,0xd0,0xff,0xff,0xff,0xff,0xfd,0x87,0x68,0x40,0xff,0xff,0xff,0xff,0xfe, - 0xb8,0x0,0xd0,0xff,0xff,0xff,0xff,0xff,0xa7,0xe3,0xc0,0x0,0x0,0x0,0x0,0x0, - 0x97,0xe2,0xd0,0x0,0x0,0x0,0x0,0x1,0x87,0xc5,0xc0,0x0,0x0,0x0,0x0,0x2, - 0x77,0xc4,0xd0,0x0,0x0,0x0,0x0,0x3,0x70,0xe2,0x40,0x0,0x0,0x0,0x0,0x4, - 0x60,0xe1,0x50,0x0,0x0,0x0,0x0,0x5,0x35,0x14,0xc0,0x0,0x0,0x0,0x0,0x6, - 0x40,0xc3,0x50,0x0,0x0,0x0,0x0,0x7,0x16,0x48,0x40,0x0,0x0,0x0,0x0,0x8, - 0x20,0xa5,0x50,0x0,0x0,0x0,0x0,0x8,0xf7,0x7b,0xc0,0x0,0x0,0x0,0x0,0xa, - 0x0,0x87,0x50,0x0,0x0,0x0,0x0,0xa,0xf0,0x6a,0x40,0x0,0x0,0x0,0x0,0xb, - 0xe0,0x69,0x50,0x0,0x0,0x0,0x0,0xc,0xd9,0x86,0xc0,0x0,0x0,0x0,0x0,0xd, - 0xc0,0x4b,0x50,0x0,0x0,0x0,0x0,0xe,0xb9,0x68,0xc0,0x0,0x0,0x0,0x0,0xf, - 0xb2,0xa2,0x50,0x0,0x0,0x0,0x0,0x10,0x7d,0x9b,0x40,0x0,0x0,0x0,0x0,0x11, - 0x51,0xea,0xd0,0x0,0x0,0x0,0x0,0x12,0x66,0xb7,0xc0,0x0,0x0,0x0,0x0,0x13, - 0x31,0xcc,0xd0,0x0,0x0,0x0,0x0,0x14,0x46,0x99,0xc0,0x0,0x0,0x0,0x0,0x15, - 0x5b,0x82,0xd0,0x0,0x0,0x0,0x0,0x16,0x26,0x7b,0xc0,0x0,0x0,0x0,0x0,0x17, - 0x3b,0x64,0xd0,0x0,0x0,0x0,0x0,0x18,0x6,0x5d,0xc0,0x0,0x0,0x0,0x0,0x19, - 0x1b,0x46,0xd0,0x0,0x0,0x0,0x0,0x19,0xe6,0x3f,0xc0,0x0,0x0,0x0,0x0,0x1a, - 0xfb,0x28,0xd0,0x0,0x0,0x0,0x0,0x1b,0xcf,0x5c,0x40,0x0,0x0,0x0,0x0,0x1c, - 0xdb,0xa,0xd0,0x0,0x0,0x0,0x0,0x1d,0xaf,0x3e,0x40,0x0,0x0,0x0,0x0,0x1e, - 0x7a,0x53,0x50,0x0,0x0,0x0,0x0,0x1f,0x8f,0x20,0x40,0x0,0x0,0x0,0x0,0x20, - 0x5a,0x35,0x50,0x0,0x0,0x0,0x0,0x21,0x6f,0x2,0x40,0x0,0x0,0x0,0x0,0x22, - 0x43,0x51,0xd0,0x0,0x0,0x0,0x0,0x23,0x4e,0xe4,0x40,0x0,0x0,0x0,0x0,0x24, - 0x23,0x33,0xd0,0x0,0x0,0x0,0x0,0x25,0x2e,0xc6,0x40,0x0,0x0,0x0,0x0,0x26, - 0x15,0x8a,0xd0,0x0,0x0,0x0,0x0,0x27,0x17,0xe2,0xc0,0x0,0x0,0x0,0x0,0x27, - 0xfe,0xa7,0x50,0x0,0x0,0x0,0x0,0x28,0xf7,0xd2,0xd0,0x0,0x0,0x0,0x0,0x29, - 0xde,0x89,0x50,0x0,0x0,0x0,0x0,0x2a,0xd7,0xb4,0xd0,0x0,0x0,0x0,0x0,0x2b, - 0xbe,0x6b,0x50,0x0,0x0,0x0,0x0,0x2c,0xb7,0x96,0xd0,0x0,0x0,0x0,0x0,0x2d, - 0x9e,0x4d,0x50,0x0,0x0,0x0,0x0,0x2e,0x97,0x78,0xd0,0x0,0x0,0x0,0x0,0x2f, - 0x7e,0x2f,0x50,0x0,0x0,0x0,0x0,0x30,0x77,0x5a,0xd0,0x0,0x0,0x0,0x0,0x31, - 0x67,0x4b,0xd0,0x0,0x0,0x0,0x0,0x32,0x57,0x3c,0xd0,0x0,0x0,0x0,0x0,0x33, - 0x47,0x2d,0xd0,0x0,0x0,0x0,0x0,0x34,0x40,0x59,0x50,0x0,0x0,0x0,0x0,0x35, - 0x1d,0xd5,0x50,0x0,0x0,0x0,0x0,0x36,0x32,0xb0,0x50,0x0,0x0,0x0,0x0,0x36, - 0xfd,0xb7,0x50,0x0,0x0,0x0,0x0,0x38,0x1b,0xcc,0xd0,0x0,0x0,0x0,0x0,0x38, - 0xe6,0xd3,0xd0,0x0,0x0,0x0,0x0,0x39,0xfb,0xae,0xd0,0x0,0x0,0x0,0x0,0x3a, - 0xc6,0xb5,0xd0,0x0,0x0,0x0,0x0,0x3b,0xdb,0x90,0xd0,0x0,0x0,0x0,0x0,0x3c, - 0xaf,0xd2,0x50,0x0,0x0,0x0,0x0,0x3d,0xbb,0x72,0xd0,0x0,0x0,0x0,0x0,0x3e, - 0x8f,0xb4,0x50,0x0,0x0,0x0,0x0,0x3f,0x9b,0x54,0xd0,0x0,0x0,0x0,0x0,0x40, - 0x66,0x5b,0xd0,0x0,0x0,0x0,0x0,0x45,0x44,0x35,0x50,0x0,0x0,0x0,0x0,0x45, - 0xf3,0x8c,0xd0,0x0,0x0,0x0,0x0,0x47,0x24,0x17,0x50,0x0,0x0,0x0,0x0,0x47, - 0xdc,0xa9,0x50,0x0,0x0,0x0,0x0,0x49,0x3,0xf9,0x50,0x0,0x0,0x0,0x0,0x49, - 0xb3,0x50,0xd0,0x0,0x0,0x0,0x0,0x4a,0xe3,0xdb,0x50,0x0,0x0,0x0,0x0,0x4b, - 0x9c,0x6d,0x50,0x0,0x0,0x0,0x0,0x4c,0xcc,0xf7,0xd0,0x0,0x0,0x0,0x0,0x4d, - 0x85,0x89,0xd0,0x0,0x0,0x0,0x0,0x4e,0xbf,0x4e,0xd0,0x0,0x0,0x0,0x0,0x4f, - 0x77,0xe0,0xd0,0x0,0x0,0x0,0x0,0x50,0x95,0xf6,0x50,0x0,0x0,0x0,0x0,0x51, - 0x3c,0x13,0x50,0x0,0x0,0x0,0x0,0x52,0x75,0xd8,0x50,0x0,0x0,0x0,0x0,0x53, - 0x1b,0xf5,0x50,0x0,0x0,0x0,0x0,0x54,0x55,0xba,0x50,0x0,0x0,0x0,0x0,0x54, - 0xfb,0xd7,0x50,0x0,0x0,0x0,0x0,0x56,0x35,0x9c,0x50,0x0,0x0,0x0,0x0,0x56, - 0xe4,0xf3,0xd0,0x0,0x0,0x0,0x0,0x58,0x1e,0xb8,0xd0,0x0,0x0,0x0,0x0,0x58, - 0xc4,0xd5,0xd0,0x0,0x0,0x0,0x0,0x59,0xfe,0x9a,0xd0,0x0,0x0,0x0,0x0,0x5a, - 0xa4,0xb7,0xd0,0x0,0x0,0x0,0x0,0x5b,0xde,0x7c,0xd0,0x0,0x0,0x0,0x0,0x5c, - 0x84,0x99,0xd0,0x0,0x0,0x0,0x0,0x5d,0xbe,0x5e,0xd0,0x0,0x0,0x0,0x0,0x5e, - 0x64,0x7b,0xd0,0x0,0x0,0x0,0x0,0x5f,0x9e,0x40,0xd0,0x0,0x0,0x0,0x0,0x60, - 0x4d,0x98,0x50,0x0,0x0,0x0,0x0,0x61,0x87,0x5d,0x50,0x0,0x0,0x0,0x0,0x62, - 0x2d,0x7a,0x50,0x0,0x0,0x0,0x0,0x63,0x67,0x3f,0x50,0x0,0x0,0x0,0x0,0x64, - 0xd,0x5c,0x50,0x0,0x0,0x0,0x0,0x65,0x47,0x21,0x50,0x0,0x0,0x0,0x0,0x65, - 0xed,0x3e,0x50,0x0,0x0,0x0,0x0,0x67,0x27,0x3,0x50,0x0,0x0,0x0,0x0,0x67, - 0xcd,0x20,0x50,0x0,0x0,0x0,0x0,0x69,0x6,0xe5,0x50,0x0,0x0,0x0,0x0,0x69, - 0xad,0x2,0x50,0x0,0x0,0x0,0x0,0x6a,0xe6,0xc7,0x50,0x0,0x0,0x0,0x0,0x6b, - 0x96,0x1e,0xd0,0x0,0x0,0x0,0x0,0x6c,0xcf,0xe3,0xd0,0x0,0x0,0x0,0x0,0x6d, - 0x76,0x0,0xd0,0x0,0x0,0x0,0x0,0x6e,0xaf,0xc5,0xd0,0x0,0x0,0x0,0x0,0x6f, - 0x55,0xe2,0xd0,0x0,0x0,0x0,0x0,0x70,0x8f,0xa7,0xd0,0x0,0x0,0x0,0x0,0x71, - 0x35,0xc4,0xd0,0x0,0x0,0x0,0x0,0x72,0x6f,0x89,0xd0,0x0,0x0,0x0,0x0,0x73, - 0x15,0xa6,0xd0,0x0,0x0,0x0,0x0,0x74,0x4f,0x6b,0xd0,0x0,0x0,0x0,0x0,0x74, - 0xfe,0xc3,0x50,0x0,0x0,0x0,0x0,0x76,0x38,0x88,0x50,0x0,0x0,0x0,0x0,0x76, - 0xde,0xa5,0x50,0x0,0x0,0x0,0x0,0x78,0x18,0x6a,0x50,0x0,0x0,0x0,0x0,0x78, - 0xbe,0x87,0x50,0x0,0x0,0x0,0x0,0x79,0xf8,0x4c,0x50,0x0,0x0,0x0,0x0,0x7a, - 0x9e,0x69,0x50,0x0,0x0,0x0,0x0,0x7b,0xd8,0x2e,0x50,0x0,0x0,0x0,0x0,0x7c, - 0x7e,0x4b,0x50,0x0,0x0,0x0,0x0,0x7d,0xb8,0x10,0x50,0x0,0x0,0x0,0x0,0x7e, - 0x5e,0x2d,0x50,0x0,0x0,0x0,0x0,0x7f,0x97,0xf2,0x50,0x0,0x1,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x4, - 0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0xff,0xff,0xb2,0xc8,0x0,0x0,0xff,0xff, - 0xb2,0xc0,0x0,0x4,0xff,0xff,0xc7,0xc0,0x1,0x8,0xff,0xff,0xb9,0xb0,0x0,0xc, - 0xff,0xff,0xb9,0xb0,0x0,0xc,0xff,0xff,0xc7,0xc0,0x1,0x8,0x4c,0x4d,0x54,0x0, - 0x48,0x4d,0x54,0x0,0x43,0x44,0x54,0x0,0x43,0x53,0x54,0x0,0x0,0x0,0x0,0x0, - 0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x43,0x53,0x54,0x35,0x43,0x44,0x54, - 0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30,0x2f,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e, - 0x30,0x2f,0x31,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Managua - 0x0,0x0,0x1,0xcf, + 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0x9e, + 0xb8,0x85,0x60,0x9f,0xba,0xdd,0x50,0xcb,0x88,0xe2,0x60,0xd2,0x23,0xf4,0x70,0xd2, + 0x60,0xed,0xd0,0x2,0x1,0x2,0x3,0x4,0x2,0xff,0xff,0xca,0x74,0x0,0x0,0xff, + 0xff,0xd5,0xd0,0x1,0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0xff,0xff,0xd5,0xd0,0x1, + 0xc,0xff,0xff,0xd5,0xd0,0x1,0x10,0x4c,0x4d,0x54,0x0,0x41,0x44,0x54,0x0,0x41, + 0x53,0x54,0x0,0x41,0x57,0x54,0x0,0x41,0x50,0x54,0x0,0x0,0x0,0x0,0x0,0x1, + 0x0,0x0,0x0,0x0,0x1,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0, + 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x5,0x0,0x0,0x0, + 0x14,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x5e,0x3d,0x39, + 0xc,0xff,0xff,0xff,0xff,0x9e,0xb8,0x85,0x60,0xff,0xff,0xff,0xff,0x9f,0xba,0xdd, + 0x50,0xff,0xff,0xff,0xff,0xcb,0x88,0xe2,0x60,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4, + 0x70,0xff,0xff,0xff,0xff,0xd2,0x60,0xed,0xd0,0x0,0x2,0x1,0x2,0x3,0x4,0x2, + 0xff,0xff,0xca,0x74,0x0,0x0,0xff,0xff,0xd5,0xd0,0x1,0x4,0xff,0xff,0xc7,0xc0, + 0x0,0x8,0xff,0xff,0xd5,0xd0,0x1,0xc,0xff,0xff,0xd5,0xd0,0x1,0x10,0x4c,0x4d, + 0x54,0x0,0x41,0x44,0x54,0x0,0x41,0x53,0x54,0x0,0x41,0x57,0x54,0x0,0x41,0x50, + 0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x1,0xa,0x41,0x53,0x54, + 0x34,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/New_York + 0x0,0x0,0xd,0xd9, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x10,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0xbd, - 0x2d,0x48,0xe8,0x6,0x43,0x74,0x60,0x9,0xa4,0x3e,0x50,0x11,0x51,0xf8,0xe0,0x11, - 0xd4,0x6f,0x50,0x13,0x31,0xda,0xe0,0x13,0xb4,0x51,0x50,0x29,0x61,0x91,0x20,0x2a, - 0xc1,0x4b,0x50,0x2b,0x43,0xdd,0xe0,0x32,0xc9,0xef,0x50,0x42,0x58,0xc0,0xe0,0x43, - 0x3f,0x69,0x50,0x44,0x54,0x6e,0x80,0x45,0x1f,0x59,0x60,0x1,0x2,0x3,0x2,0x4, - 0x2,0x4,0x2,0x3,0x2,0x3,0x2,0x4,0x2,0x4,0x2,0xff,0xff,0xaf,0x1c,0x0, - 0x0,0xff,0xff,0xaf,0x18,0x0,0x4,0xff,0xff,0xab,0xa0,0x0,0x8,0xff,0xff,0xb9, - 0xb0,0x0,0xc,0xff,0xff,0xb9,0xb0,0x1,0x10,0xff,0xff,0xab,0xa0,0x0,0x8,0x4c, - 0x4d,0x54,0x0,0x4d,0x4d,0x54,0x0,0x43,0x53,0x54,0x0,0x45,0x53,0x54,0x0,0x43, - 0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x11,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0xf8,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x69,0x87,0x2c,0x64,0xff,0xff,0xff,0xff,0xbd, - 0x2d,0x48,0xe8,0x0,0x0,0x0,0x0,0x6,0x43,0x74,0x60,0x0,0x0,0x0,0x0,0x9, - 0xa4,0x3e,0x50,0x0,0x0,0x0,0x0,0x11,0x51,0xf8,0xe0,0x0,0x0,0x0,0x0,0x11, - 0xd4,0x6f,0x50,0x0,0x0,0x0,0x0,0x13,0x31,0xda,0xe0,0x0,0x0,0x0,0x0,0x13, - 0xb4,0x51,0x50,0x0,0x0,0x0,0x0,0x29,0x61,0x91,0x20,0x0,0x0,0x0,0x0,0x2a, - 0xc1,0x4b,0x50,0x0,0x0,0x0,0x0,0x2b,0x43,0xdd,0xe0,0x0,0x0,0x0,0x0,0x32, - 0xc9,0xef,0x50,0x0,0x0,0x0,0x0,0x42,0x58,0xc0,0xe0,0x0,0x0,0x0,0x0,0x43, - 0x3f,0x69,0x50,0x0,0x0,0x0,0x0,0x44,0x54,0x6e,0x80,0x0,0x0,0x0,0x0,0x45, - 0x1f,0x59,0x60,0x0,0x1,0x2,0x3,0x2,0x4,0x2,0x4,0x2,0x3,0x2,0x3,0x2, - 0x4,0x2,0x4,0x2,0xff,0xff,0xaf,0x1c,0x0,0x0,0xff,0xff,0xaf,0x18,0x0,0x4, - 0xff,0xff,0xab,0xa0,0x0,0x8,0xff,0xff,0xb9,0xb0,0x0,0xc,0xff,0xff,0xb9,0xb0, - 0x1,0x10,0xff,0xff,0xab,0xa0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x4d,0x4d,0x54,0x0, - 0x43,0x53,0x54,0x0,0x45,0x53,0x54,0x0,0x43,0x44,0x54,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x43,0x53,0x54,0x36,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Cayenne - 0x0,0x0,0x0,0xc8, + 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xec,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0x9e, + 0xa6,0x1e,0x70,0x9f,0xba,0xeb,0x60,0xa0,0x86,0x0,0x70,0xa1,0x9a,0xcd,0x60,0xa2, + 0x65,0xe2,0x70,0xa3,0x83,0xe9,0xe0,0xa4,0x6a,0xae,0x70,0xa5,0x35,0xa7,0x60,0xa6, + 0x53,0xca,0xf0,0xa7,0x15,0x89,0x60,0xa8,0x33,0xac,0xf0,0xa8,0xfe,0xa5,0xe0,0xaa, + 0x13,0x8e,0xf0,0xaa,0xde,0x87,0xe0,0xab,0xf3,0x70,0xf0,0xac,0xbe,0x69,0xe0,0xad, + 0xd3,0x52,0xf0,0xae,0x9e,0x4b,0xe0,0xaf,0xb3,0x34,0xf0,0xb0,0x7e,0x2d,0xe0,0xb1, + 0x9c,0x51,0x70,0xb2,0x67,0x4a,0x60,0xb3,0x7c,0x33,0x70,0xb4,0x47,0x2c,0x60,0xb5, + 0x5c,0x15,0x70,0xb6,0x27,0xe,0x60,0xb7,0x3b,0xf7,0x70,0xb8,0x6,0xf0,0x60,0xb9, + 0x1b,0xd9,0x70,0xb9,0xe6,0xd2,0x60,0xbb,0x4,0xf5,0xf0,0xbb,0xc6,0xb4,0x60,0xbc, + 0xe4,0xd7,0xf0,0xbd,0xaf,0xd0,0xe0,0xbe,0xc4,0xb9,0xf0,0xbf,0x8f,0xb2,0xe0,0xc0, + 0xa4,0x9b,0xf0,0xc1,0x6f,0x94,0xe0,0xc2,0x84,0x7d,0xf0,0xc3,0x4f,0x76,0xe0,0xc4, + 0x64,0x5f,0xf0,0xc5,0x2f,0x58,0xe0,0xc6,0x4d,0x7c,0x70,0xc7,0xf,0x3a,0xe0,0xc8, + 0x2d,0x5e,0x70,0xc8,0xf8,0x57,0x60,0xca,0xd,0x40,0x70,0xca,0xd8,0x39,0x60,0xcb, + 0x88,0xf0,0x70,0xd2,0x23,0xf4,0x70,0xd2,0x60,0xfb,0xe0,0xd3,0x75,0xe4,0xf0,0xd4, + 0x40,0xdd,0xe0,0xd5,0x55,0xc6,0xf0,0xd6,0x20,0xbf,0xe0,0xd7,0x35,0xa8,0xf0,0xd8, + 0x0,0xa1,0xe0,0xd9,0x15,0x8a,0xf0,0xd9,0xe0,0x83,0xe0,0xda,0xfe,0xa7,0x70,0xdb, + 0xc0,0x65,0xe0,0xdc,0xde,0x89,0x70,0xdd,0xa9,0x82,0x60,0xde,0xbe,0x6b,0x70,0xdf, + 0x89,0x64,0x60,0xe0,0x9e,0x4d,0x70,0xe1,0x69,0x46,0x60,0xe2,0x7e,0x2f,0x70,0xe3, + 0x49,0x28,0x60,0xe4,0x5e,0x11,0x70,0xe5,0x57,0x2e,0xe0,0xe6,0x47,0x2d,0xf0,0xe7, + 0x37,0x10,0xe0,0xe8,0x27,0xf,0xf0,0xe9,0x16,0xf2,0xe0,0xea,0x6,0xf1,0xf0,0xea, + 0xf6,0xd4,0xe0,0xeb,0xe6,0xd3,0xf0,0xec,0xd6,0xb6,0xe0,0xed,0xc6,0xb5,0xf0,0xee, + 0xbf,0xd3,0x60,0xef,0xaf,0xd2,0x70,0xf0,0x9f,0xb5,0x60,0xf1,0x8f,0xb4,0x70,0xf2, + 0x7f,0x97,0x60,0xf3,0x6f,0x96,0x70,0xf4,0x5f,0x79,0x60,0xf5,0x4f,0x78,0x70,0xf6, + 0x3f,0x5b,0x60,0xf7,0x2f,0x5a,0x70,0xf8,0x28,0x77,0xe0,0xf9,0xf,0x3c,0x70,0xfa, + 0x8,0x59,0xe0,0xfa,0xf8,0x58,0xf0,0xfb,0xe8,0x3b,0xe0,0xfc,0xd8,0x3a,0xf0,0xfd, + 0xc8,0x1d,0xe0,0xfe,0xb8,0x1c,0xf0,0xff,0xa7,0xff,0xe0,0x0,0x97,0xfe,0xf0,0x1, + 0x87,0xe1,0xe0,0x2,0x77,0xe0,0xf0,0x3,0x70,0xfe,0x60,0x4,0x60,0xfd,0x70,0x5, + 0x50,0xe0,0x60,0x6,0x40,0xdf,0x70,0x7,0x30,0xc2,0x60,0x7,0x8d,0x19,0x70,0x9, + 0x10,0xa4,0x60,0x9,0xad,0x94,0xf0,0xa,0xf0,0x86,0x60,0xb,0xe0,0x85,0x70,0xc, + 0xd9,0xa2,0xe0,0xd,0xc0,0x67,0x70,0xe,0xb9,0x84,0xe0,0xf,0xa9,0x83,0xf0,0x10, + 0x99,0x66,0xe0,0x11,0x89,0x65,0xf0,0x12,0x79,0x48,0xe0,0x13,0x69,0x47,0xf0,0x14, + 0x59,0x2a,0xe0,0x15,0x49,0x29,0xf0,0x16,0x39,0xc,0xe0,0x17,0x29,0xb,0xf0,0x18, + 0x22,0x29,0x60,0x19,0x8,0xed,0xf0,0x1a,0x2,0xb,0x60,0x1a,0xf2,0xa,0x70,0x1b, + 0xe1,0xed,0x60,0x1c,0xd1,0xec,0x70,0x1d,0xc1,0xcf,0x60,0x1e,0xb1,0xce,0x70,0x1f, + 0xa1,0xb1,0x60,0x20,0x76,0x0,0xf0,0x21,0x81,0x93,0x60,0x22,0x55,0xe2,0xf0,0x23, + 0x6a,0xaf,0xe0,0x24,0x35,0xc4,0xf0,0x25,0x4a,0x91,0xe0,0x26,0x15,0xa6,0xf0,0x27, + 0x2a,0x73,0xe0,0x27,0xfe,0xc3,0x70,0x29,0xa,0x55,0xe0,0x29,0xde,0xa5,0x70,0x2a, + 0xea,0x37,0xe0,0x2b,0xbe,0x87,0x70,0x2c,0xd3,0x54,0x60,0x2d,0x9e,0x69,0x70,0x2e, + 0xb3,0x36,0x60,0x2f,0x7e,0x4b,0x70,0x30,0x93,0x18,0x60,0x31,0x67,0x67,0xf0,0x32, + 0x72,0xfa,0x60,0x33,0x47,0x49,0xf0,0x34,0x52,0xdc,0x60,0x35,0x27,0x2b,0xf0,0x36, + 0x32,0xbe,0x60,0x37,0x7,0xd,0xf0,0x38,0x1b,0xda,0xe0,0x38,0xe6,0xef,0xf0,0x39, + 0xfb,0xbc,0xe0,0x3a,0xc6,0xd1,0xf0,0x3b,0xdb,0x9e,0xe0,0x3c,0xaf,0xee,0x70,0x3d, + 0xbb,0x80,0xe0,0x3e,0x8f,0xd0,0x70,0x3f,0x9b,0x62,0xe0,0x40,0x6f,0xb2,0x70,0x41, + 0x84,0x7f,0x60,0x42,0x4f,0x94,0x70,0x43,0x64,0x61,0x60,0x44,0x2f,0x76,0x70,0x45, + 0x44,0x43,0x60,0x45,0xf3,0xa8,0xf0,0x47,0x2d,0x5f,0xe0,0x47,0xd3,0x8a,0xf0,0x49, + 0xd,0x41,0xe0,0x49,0xb3,0x6c,0xf0,0x4a,0xed,0x23,0xe0,0x4b,0x9c,0x89,0x70,0x4c, + 0xd6,0x40,0x60,0x4d,0x7c,0x6b,0x70,0x4e,0xb6,0x22,0x60,0x4f,0x5c,0x4d,0x70,0x50, + 0x96,0x4,0x60,0x51,0x3c,0x2f,0x70,0x52,0x75,0xe6,0x60,0x53,0x1c,0x11,0x70,0x54, + 0x55,0xc8,0x60,0x54,0xfb,0xf3,0x70,0x56,0x35,0xaa,0x60,0x56,0xe5,0xf,0xf0,0x58, + 0x1e,0xc6,0xe0,0x58,0xc4,0xf1,0xf0,0x59,0xfe,0xa8,0xe0,0x5a,0xa4,0xd3,0xf0,0x5b, + 0xde,0x8a,0xe0,0x5c,0x84,0xb5,0xf0,0x5d,0xbe,0x6c,0xe0,0x5e,0x64,0x97,0xf0,0x5f, + 0x9e,0x4e,0xe0,0x60,0x4d,0xb4,0x70,0x61,0x87,0x6b,0x60,0x62,0x2d,0x96,0x70,0x63, + 0x67,0x4d,0x60,0x64,0xd,0x78,0x70,0x65,0x47,0x2f,0x60,0x65,0xed,0x5a,0x70,0x67, + 0x27,0x11,0x60,0x67,0xcd,0x3c,0x70,0x69,0x6,0xf3,0x60,0x69,0xad,0x1e,0x70,0x6a, + 0xe6,0xd5,0x60,0x6b,0x96,0x3a,0xf0,0x6c,0xcf,0xf1,0xe0,0x6d,0x76,0x1c,0xf0,0x6e, + 0xaf,0xd3,0xe0,0x6f,0x55,0xfe,0xf0,0x70,0x8f,0xb5,0xe0,0x71,0x35,0xe0,0xf0,0x72, + 0x6f,0x97,0xe0,0x73,0x15,0xc2,0xf0,0x74,0x4f,0x79,0xe0,0x74,0xfe,0xdf,0x70,0x76, + 0x38,0x96,0x60,0x76,0xde,0xc1,0x70,0x78,0x18,0x78,0x60,0x78,0xbe,0xa3,0x70,0x79, + 0xf8,0x5a,0x60,0x7a,0x9e,0x85,0x70,0x7b,0xd8,0x3c,0x60,0x7c,0x7e,0x67,0x70,0x7d, + 0xb8,0x1e,0x60,0x7e,0x5e,0x49,0x70,0x7f,0x98,0x0,0x60,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0xba,0x9e,0x0,0x0,0xff,0xff,0xc7, + 0xc0,0x1,0x4,0xff,0xff,0xb9,0xb0,0x0,0x8,0xff,0xff,0xc7,0xc0,0x1,0xc,0xff, + 0xff,0xc7,0xc0,0x1,0x10,0x4c,0x4d,0x54,0x0,0x45,0x44,0x54,0x0,0x45,0x53,0x54, + 0x0,0x45,0x57,0x54,0x0,0x45,0x50,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0, + 0x0,0x0,0x1,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xed,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0xf8, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x5e,0x3,0xf0,0x90,0xff, + 0xff,0xff,0xff,0x9e,0xa6,0x1e,0x70,0xff,0xff,0xff,0xff,0x9f,0xba,0xeb,0x60,0xff, + 0xff,0xff,0xff,0xa0,0x86,0x0,0x70,0xff,0xff,0xff,0xff,0xa1,0x9a,0xcd,0x60,0xff, + 0xff,0xff,0xff,0xa2,0x65,0xe2,0x70,0xff,0xff,0xff,0xff,0xa3,0x83,0xe9,0xe0,0xff, + 0xff,0xff,0xff,0xa4,0x6a,0xae,0x70,0xff,0xff,0xff,0xff,0xa5,0x35,0xa7,0x60,0xff, + 0xff,0xff,0xff,0xa6,0x53,0xca,0xf0,0xff,0xff,0xff,0xff,0xa7,0x15,0x89,0x60,0xff, + 0xff,0xff,0xff,0xa8,0x33,0xac,0xf0,0xff,0xff,0xff,0xff,0xa8,0xfe,0xa5,0xe0,0xff, + 0xff,0xff,0xff,0xaa,0x13,0x8e,0xf0,0xff,0xff,0xff,0xff,0xaa,0xde,0x87,0xe0,0xff, + 0xff,0xff,0xff,0xab,0xf3,0x70,0xf0,0xff,0xff,0xff,0xff,0xac,0xbe,0x69,0xe0,0xff, + 0xff,0xff,0xff,0xad,0xd3,0x52,0xf0,0xff,0xff,0xff,0xff,0xae,0x9e,0x4b,0xe0,0xff, + 0xff,0xff,0xff,0xaf,0xb3,0x34,0xf0,0xff,0xff,0xff,0xff,0xb0,0x7e,0x2d,0xe0,0xff, + 0xff,0xff,0xff,0xb1,0x9c,0x51,0x70,0xff,0xff,0xff,0xff,0xb2,0x67,0x4a,0x60,0xff, + 0xff,0xff,0xff,0xb3,0x7c,0x33,0x70,0xff,0xff,0xff,0xff,0xb4,0x47,0x2c,0x60,0xff, + 0xff,0xff,0xff,0xb5,0x5c,0x15,0x70,0xff,0xff,0xff,0xff,0xb6,0x27,0xe,0x60,0xff, + 0xff,0xff,0xff,0xb7,0x3b,0xf7,0x70,0xff,0xff,0xff,0xff,0xb8,0x6,0xf0,0x60,0xff, + 0xff,0xff,0xff,0xb9,0x1b,0xd9,0x70,0xff,0xff,0xff,0xff,0xb9,0xe6,0xd2,0x60,0xff, + 0xff,0xff,0xff,0xbb,0x4,0xf5,0xf0,0xff,0xff,0xff,0xff,0xbb,0xc6,0xb4,0x60,0xff, + 0xff,0xff,0xff,0xbc,0xe4,0xd7,0xf0,0xff,0xff,0xff,0xff,0xbd,0xaf,0xd0,0xe0,0xff, + 0xff,0xff,0xff,0xbe,0xc4,0xb9,0xf0,0xff,0xff,0xff,0xff,0xbf,0x8f,0xb2,0xe0,0xff, + 0xff,0xff,0xff,0xc0,0xa4,0x9b,0xf0,0xff,0xff,0xff,0xff,0xc1,0x6f,0x94,0xe0,0xff, + 0xff,0xff,0xff,0xc2,0x84,0x7d,0xf0,0xff,0xff,0xff,0xff,0xc3,0x4f,0x76,0xe0,0xff, + 0xff,0xff,0xff,0xc4,0x64,0x5f,0xf0,0xff,0xff,0xff,0xff,0xc5,0x2f,0x58,0xe0,0xff, + 0xff,0xff,0xff,0xc6,0x4d,0x7c,0x70,0xff,0xff,0xff,0xff,0xc7,0xf,0x3a,0xe0,0xff, + 0xff,0xff,0xff,0xc8,0x2d,0x5e,0x70,0xff,0xff,0xff,0xff,0xc8,0xf8,0x57,0x60,0xff, + 0xff,0xff,0xff,0xca,0xd,0x40,0x70,0xff,0xff,0xff,0xff,0xca,0xd8,0x39,0x60,0xff, + 0xff,0xff,0xff,0xcb,0x88,0xf0,0x70,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff, + 0xff,0xff,0xff,0xd2,0x60,0xfb,0xe0,0xff,0xff,0xff,0xff,0xd3,0x75,0xe4,0xf0,0xff, + 0xff,0xff,0xff,0xd4,0x40,0xdd,0xe0,0xff,0xff,0xff,0xff,0xd5,0x55,0xc6,0xf0,0xff, + 0xff,0xff,0xff,0xd6,0x20,0xbf,0xe0,0xff,0xff,0xff,0xff,0xd7,0x35,0xa8,0xf0,0xff, + 0xff,0xff,0xff,0xd8,0x0,0xa1,0xe0,0xff,0xff,0xff,0xff,0xd9,0x15,0x8a,0xf0,0xff, + 0xff,0xff,0xff,0xd9,0xe0,0x83,0xe0,0xff,0xff,0xff,0xff,0xda,0xfe,0xa7,0x70,0xff, + 0xff,0xff,0xff,0xdb,0xc0,0x65,0xe0,0xff,0xff,0xff,0xff,0xdc,0xde,0x89,0x70,0xff, + 0xff,0xff,0xff,0xdd,0xa9,0x82,0x60,0xff,0xff,0xff,0xff,0xde,0xbe,0x6b,0x70,0xff, + 0xff,0xff,0xff,0xdf,0x89,0x64,0x60,0xff,0xff,0xff,0xff,0xe0,0x9e,0x4d,0x70,0xff, + 0xff,0xff,0xff,0xe1,0x69,0x46,0x60,0xff,0xff,0xff,0xff,0xe2,0x7e,0x2f,0x70,0xff, + 0xff,0xff,0xff,0xe3,0x49,0x28,0x60,0xff,0xff,0xff,0xff,0xe4,0x5e,0x11,0x70,0xff, + 0xff,0xff,0xff,0xe5,0x57,0x2e,0xe0,0xff,0xff,0xff,0xff,0xe6,0x47,0x2d,0xf0,0xff, + 0xff,0xff,0xff,0xe7,0x37,0x10,0xe0,0xff,0xff,0xff,0xff,0xe8,0x27,0xf,0xf0,0xff, + 0xff,0xff,0xff,0xe9,0x16,0xf2,0xe0,0xff,0xff,0xff,0xff,0xea,0x6,0xf1,0xf0,0xff, + 0xff,0xff,0xff,0xea,0xf6,0xd4,0xe0,0xff,0xff,0xff,0xff,0xeb,0xe6,0xd3,0xf0,0xff, + 0xff,0xff,0xff,0xec,0xd6,0xb6,0xe0,0xff,0xff,0xff,0xff,0xed,0xc6,0xb5,0xf0,0xff, + 0xff,0xff,0xff,0xee,0xbf,0xd3,0x60,0xff,0xff,0xff,0xff,0xef,0xaf,0xd2,0x70,0xff, + 0xff,0xff,0xff,0xf0,0x9f,0xb5,0x60,0xff,0xff,0xff,0xff,0xf1,0x8f,0xb4,0x70,0xff, + 0xff,0xff,0xff,0xf2,0x7f,0x97,0x60,0xff,0xff,0xff,0xff,0xf3,0x6f,0x96,0x70,0xff, + 0xff,0xff,0xff,0xf4,0x5f,0x79,0x60,0xff,0xff,0xff,0xff,0xf5,0x4f,0x78,0x70,0xff, + 0xff,0xff,0xff,0xf6,0x3f,0x5b,0x60,0xff,0xff,0xff,0xff,0xf7,0x2f,0x5a,0x70,0xff, + 0xff,0xff,0xff,0xf8,0x28,0x77,0xe0,0xff,0xff,0xff,0xff,0xf9,0xf,0x3c,0x70,0xff, + 0xff,0xff,0xff,0xfa,0x8,0x59,0xe0,0xff,0xff,0xff,0xff,0xfa,0xf8,0x58,0xf0,0xff, + 0xff,0xff,0xff,0xfb,0xe8,0x3b,0xe0,0xff,0xff,0xff,0xff,0xfc,0xd8,0x3a,0xf0,0xff, + 0xff,0xff,0xff,0xfd,0xc8,0x1d,0xe0,0xff,0xff,0xff,0xff,0xfe,0xb8,0x1c,0xf0,0xff, + 0xff,0xff,0xff,0xff,0xa7,0xff,0xe0,0x0,0x0,0x0,0x0,0x0,0x97,0xfe,0xf0,0x0, + 0x0,0x0,0x0,0x1,0x87,0xe1,0xe0,0x0,0x0,0x0,0x0,0x2,0x77,0xe0,0xf0,0x0, + 0x0,0x0,0x0,0x3,0x70,0xfe,0x60,0x0,0x0,0x0,0x0,0x4,0x60,0xfd,0x70,0x0, + 0x0,0x0,0x0,0x5,0x50,0xe0,0x60,0x0,0x0,0x0,0x0,0x6,0x40,0xdf,0x70,0x0, + 0x0,0x0,0x0,0x7,0x30,0xc2,0x60,0x0,0x0,0x0,0x0,0x7,0x8d,0x19,0x70,0x0, + 0x0,0x0,0x0,0x9,0x10,0xa4,0x60,0x0,0x0,0x0,0x0,0x9,0xad,0x94,0xf0,0x0, + 0x0,0x0,0x0,0xa,0xf0,0x86,0x60,0x0,0x0,0x0,0x0,0xb,0xe0,0x85,0x70,0x0, + 0x0,0x0,0x0,0xc,0xd9,0xa2,0xe0,0x0,0x0,0x0,0x0,0xd,0xc0,0x67,0x70,0x0, + 0x0,0x0,0x0,0xe,0xb9,0x84,0xe0,0x0,0x0,0x0,0x0,0xf,0xa9,0x83,0xf0,0x0, + 0x0,0x0,0x0,0x10,0x99,0x66,0xe0,0x0,0x0,0x0,0x0,0x11,0x89,0x65,0xf0,0x0, + 0x0,0x0,0x0,0x12,0x79,0x48,0xe0,0x0,0x0,0x0,0x0,0x13,0x69,0x47,0xf0,0x0, + 0x0,0x0,0x0,0x14,0x59,0x2a,0xe0,0x0,0x0,0x0,0x0,0x15,0x49,0x29,0xf0,0x0, + 0x0,0x0,0x0,0x16,0x39,0xc,0xe0,0x0,0x0,0x0,0x0,0x17,0x29,0xb,0xf0,0x0, + 0x0,0x0,0x0,0x18,0x22,0x29,0x60,0x0,0x0,0x0,0x0,0x19,0x8,0xed,0xf0,0x0, + 0x0,0x0,0x0,0x1a,0x2,0xb,0x60,0x0,0x0,0x0,0x0,0x1a,0xf2,0xa,0x70,0x0, + 0x0,0x0,0x0,0x1b,0xe1,0xed,0x60,0x0,0x0,0x0,0x0,0x1c,0xd1,0xec,0x70,0x0, + 0x0,0x0,0x0,0x1d,0xc1,0xcf,0x60,0x0,0x0,0x0,0x0,0x1e,0xb1,0xce,0x70,0x0, + 0x0,0x0,0x0,0x1f,0xa1,0xb1,0x60,0x0,0x0,0x0,0x0,0x20,0x76,0x0,0xf0,0x0, + 0x0,0x0,0x0,0x21,0x81,0x93,0x60,0x0,0x0,0x0,0x0,0x22,0x55,0xe2,0xf0,0x0, + 0x0,0x0,0x0,0x23,0x6a,0xaf,0xe0,0x0,0x0,0x0,0x0,0x24,0x35,0xc4,0xf0,0x0, + 0x0,0x0,0x0,0x25,0x4a,0x91,0xe0,0x0,0x0,0x0,0x0,0x26,0x15,0xa6,0xf0,0x0, + 0x0,0x0,0x0,0x27,0x2a,0x73,0xe0,0x0,0x0,0x0,0x0,0x27,0xfe,0xc3,0x70,0x0, + 0x0,0x0,0x0,0x29,0xa,0x55,0xe0,0x0,0x0,0x0,0x0,0x29,0xde,0xa5,0x70,0x0, + 0x0,0x0,0x0,0x2a,0xea,0x37,0xe0,0x0,0x0,0x0,0x0,0x2b,0xbe,0x87,0x70,0x0, + 0x0,0x0,0x0,0x2c,0xd3,0x54,0x60,0x0,0x0,0x0,0x0,0x2d,0x9e,0x69,0x70,0x0, + 0x0,0x0,0x0,0x2e,0xb3,0x36,0x60,0x0,0x0,0x0,0x0,0x2f,0x7e,0x4b,0x70,0x0, + 0x0,0x0,0x0,0x30,0x93,0x18,0x60,0x0,0x0,0x0,0x0,0x31,0x67,0x67,0xf0,0x0, + 0x0,0x0,0x0,0x32,0x72,0xfa,0x60,0x0,0x0,0x0,0x0,0x33,0x47,0x49,0xf0,0x0, + 0x0,0x0,0x0,0x34,0x52,0xdc,0x60,0x0,0x0,0x0,0x0,0x35,0x27,0x2b,0xf0,0x0, + 0x0,0x0,0x0,0x36,0x32,0xbe,0x60,0x0,0x0,0x0,0x0,0x37,0x7,0xd,0xf0,0x0, + 0x0,0x0,0x0,0x38,0x1b,0xda,0xe0,0x0,0x0,0x0,0x0,0x38,0xe6,0xef,0xf0,0x0, + 0x0,0x0,0x0,0x39,0xfb,0xbc,0xe0,0x0,0x0,0x0,0x0,0x3a,0xc6,0xd1,0xf0,0x0, + 0x0,0x0,0x0,0x3b,0xdb,0x9e,0xe0,0x0,0x0,0x0,0x0,0x3c,0xaf,0xee,0x70,0x0, + 0x0,0x0,0x0,0x3d,0xbb,0x80,0xe0,0x0,0x0,0x0,0x0,0x3e,0x8f,0xd0,0x70,0x0, + 0x0,0x0,0x0,0x3f,0x9b,0x62,0xe0,0x0,0x0,0x0,0x0,0x40,0x6f,0xb2,0x70,0x0, + 0x0,0x0,0x0,0x41,0x84,0x7f,0x60,0x0,0x0,0x0,0x0,0x42,0x4f,0x94,0x70,0x0, + 0x0,0x0,0x0,0x43,0x64,0x61,0x60,0x0,0x0,0x0,0x0,0x44,0x2f,0x76,0x70,0x0, + 0x0,0x0,0x0,0x45,0x44,0x43,0x60,0x0,0x0,0x0,0x0,0x45,0xf3,0xa8,0xf0,0x0, + 0x0,0x0,0x0,0x47,0x2d,0x5f,0xe0,0x0,0x0,0x0,0x0,0x47,0xd3,0x8a,0xf0,0x0, + 0x0,0x0,0x0,0x49,0xd,0x41,0xe0,0x0,0x0,0x0,0x0,0x49,0xb3,0x6c,0xf0,0x0, + 0x0,0x0,0x0,0x4a,0xed,0x23,0xe0,0x0,0x0,0x0,0x0,0x4b,0x9c,0x89,0x70,0x0, + 0x0,0x0,0x0,0x4c,0xd6,0x40,0x60,0x0,0x0,0x0,0x0,0x4d,0x7c,0x6b,0x70,0x0, + 0x0,0x0,0x0,0x4e,0xb6,0x22,0x60,0x0,0x0,0x0,0x0,0x4f,0x5c,0x4d,0x70,0x0, + 0x0,0x0,0x0,0x50,0x96,0x4,0x60,0x0,0x0,0x0,0x0,0x51,0x3c,0x2f,0x70,0x0, + 0x0,0x0,0x0,0x52,0x75,0xe6,0x60,0x0,0x0,0x0,0x0,0x53,0x1c,0x11,0x70,0x0, + 0x0,0x0,0x0,0x54,0x55,0xc8,0x60,0x0,0x0,0x0,0x0,0x54,0xfb,0xf3,0x70,0x0, + 0x0,0x0,0x0,0x56,0x35,0xaa,0x60,0x0,0x0,0x0,0x0,0x56,0xe5,0xf,0xf0,0x0, + 0x0,0x0,0x0,0x58,0x1e,0xc6,0xe0,0x0,0x0,0x0,0x0,0x58,0xc4,0xf1,0xf0,0x0, + 0x0,0x0,0x0,0x59,0xfe,0xa8,0xe0,0x0,0x0,0x0,0x0,0x5a,0xa4,0xd3,0xf0,0x0, + 0x0,0x0,0x0,0x5b,0xde,0x8a,0xe0,0x0,0x0,0x0,0x0,0x5c,0x84,0xb5,0xf0,0x0, + 0x0,0x0,0x0,0x5d,0xbe,0x6c,0xe0,0x0,0x0,0x0,0x0,0x5e,0x64,0x97,0xf0,0x0, + 0x0,0x0,0x0,0x5f,0x9e,0x4e,0xe0,0x0,0x0,0x0,0x0,0x60,0x4d,0xb4,0x70,0x0, + 0x0,0x0,0x0,0x61,0x87,0x6b,0x60,0x0,0x0,0x0,0x0,0x62,0x2d,0x96,0x70,0x0, + 0x0,0x0,0x0,0x63,0x67,0x4d,0x60,0x0,0x0,0x0,0x0,0x64,0xd,0x78,0x70,0x0, + 0x0,0x0,0x0,0x65,0x47,0x2f,0x60,0x0,0x0,0x0,0x0,0x65,0xed,0x5a,0x70,0x0, + 0x0,0x0,0x0,0x67,0x27,0x11,0x60,0x0,0x0,0x0,0x0,0x67,0xcd,0x3c,0x70,0x0, + 0x0,0x0,0x0,0x69,0x6,0xf3,0x60,0x0,0x0,0x0,0x0,0x69,0xad,0x1e,0x70,0x0, + 0x0,0x0,0x0,0x6a,0xe6,0xd5,0x60,0x0,0x0,0x0,0x0,0x6b,0x96,0x3a,0xf0,0x0, + 0x0,0x0,0x0,0x6c,0xcf,0xf1,0xe0,0x0,0x0,0x0,0x0,0x6d,0x76,0x1c,0xf0,0x0, + 0x0,0x0,0x0,0x6e,0xaf,0xd3,0xe0,0x0,0x0,0x0,0x0,0x6f,0x55,0xfe,0xf0,0x0, + 0x0,0x0,0x0,0x70,0x8f,0xb5,0xe0,0x0,0x0,0x0,0x0,0x71,0x35,0xe0,0xf0,0x0, + 0x0,0x0,0x0,0x72,0x6f,0x97,0xe0,0x0,0x0,0x0,0x0,0x73,0x15,0xc2,0xf0,0x0, + 0x0,0x0,0x0,0x74,0x4f,0x79,0xe0,0x0,0x0,0x0,0x0,0x74,0xfe,0xdf,0x70,0x0, + 0x0,0x0,0x0,0x76,0x38,0x96,0x60,0x0,0x0,0x0,0x0,0x76,0xde,0xc1,0x70,0x0, + 0x0,0x0,0x0,0x78,0x18,0x78,0x60,0x0,0x0,0x0,0x0,0x78,0xbe,0xa3,0x70,0x0, + 0x0,0x0,0x0,0x79,0xf8,0x5a,0x60,0x0,0x0,0x0,0x0,0x7a,0x9e,0x85,0x70,0x0, + 0x0,0x0,0x0,0x7b,0xd8,0x3c,0x60,0x0,0x0,0x0,0x0,0x7c,0x7e,0x67,0x70,0x0, + 0x0,0x0,0x0,0x7d,0xb8,0x1e,0x60,0x0,0x0,0x0,0x0,0x7e,0x5e,0x49,0x70,0x0, + 0x0,0x0,0x0,0x7f,0x98,0x0,0x60,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0xff,0xff,0xba,0x9e,0x0,0x0,0xff,0xff,0xc7,0xc0,0x1,0x4, + 0xff,0xff,0xb9,0xb0,0x0,0x8,0xff,0xff,0xc7,0xc0,0x1,0xc,0xff,0xff,0xc7,0xc0, + 0x1,0x10,0x4c,0x4d,0x54,0x0,0x45,0x44,0x54,0x0,0x45,0x53,0x54,0x0,0x45,0x57, + 0x54,0x0,0x45,0x50,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x1, + 0xa,0x45,0x53,0x54,0x35,0x45,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30,0x2c, + 0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Rainy_River + 0x0,0x0,0x8,0x53, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x91, - 0xf4,0x2b,0x90,0xfb,0xc3,0x35,0xc0,0x0,0x1,0x2,0xff,0xff,0xce,0xf0,0x0,0x0, - 0xff,0xff,0xc7,0xc0,0x0,0x4,0xff,0xff,0xd5,0xd0,0x0,0x4,0x4c,0x4d,0x54,0x0, - 0x47,0x46,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x87,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0x9e, + 0xb8,0xa1,0x80,0x9f,0xba,0xf9,0x70,0xc8,0xf8,0x57,0x60,0xcb,0x88,0xfe,0x80,0xd2, + 0x23,0xf4,0x70,0xd2,0x61,0x9,0xf0,0x8,0x20,0xcf,0x80,0x9,0x10,0xb2,0x70,0xa, + 0x0,0xb1,0x80,0xa,0xf0,0x94,0x70,0xb,0xe0,0x93,0x80,0xc,0xd9,0xb0,0xf0,0xd, + 0xc0,0x75,0x80,0xe,0xb9,0x92,0xf0,0xf,0xa9,0x92,0x0,0x10,0x99,0x74,0xf0,0x11, + 0x89,0x74,0x0,0x12,0x79,0x56,0xf0,0x13,0x69,0x56,0x0,0x14,0x59,0x38,0xf0,0x15, + 0x49,0x38,0x0,0x16,0x39,0x1a,0xf0,0x17,0x29,0x1a,0x0,0x18,0x22,0x37,0x70,0x19, + 0x8,0xfc,0x0,0x1a,0x2,0x19,0x70,0x1a,0xf2,0x18,0x80,0x1b,0xe1,0xfb,0x70,0x1c, + 0xd1,0xfa,0x80,0x1d,0xc1,0xdd,0x70,0x1e,0xb1,0xdc,0x80,0x1f,0xa1,0xbf,0x70,0x20, + 0x76,0xf,0x0,0x21,0x81,0xa1,0x70,0x22,0x55,0xf1,0x0,0x23,0x6a,0xbd,0xf0,0x24, + 0x35,0xd3,0x0,0x25,0x4a,0x9f,0xf0,0x26,0x15,0xb5,0x0,0x27,0x2a,0x81,0xf0,0x27, + 0xfe,0xd1,0x80,0x29,0xa,0x63,0xf0,0x29,0xde,0xb3,0x80,0x2a,0xea,0x45,0xf0,0x2b, + 0xbe,0x95,0x80,0x2c,0xd3,0x62,0x70,0x2d,0x9e,0x77,0x80,0x2e,0xb3,0x44,0x70,0x2f, + 0x7e,0x59,0x80,0x30,0x93,0x26,0x70,0x31,0x67,0x76,0x0,0x32,0x73,0x8,0x70,0x33, + 0x47,0x58,0x0,0x34,0x52,0xea,0x70,0x35,0x27,0x3a,0x0,0x36,0x32,0xcc,0x70,0x37, + 0x7,0x1c,0x0,0x38,0x1b,0xe8,0xf0,0x38,0xe6,0xfe,0x0,0x39,0xfb,0xca,0xf0,0x3a, + 0xc6,0xe0,0x0,0x3b,0xdb,0xac,0xf0,0x3c,0xaf,0xfc,0x80,0x3d,0xbb,0x8e,0xf0,0x3e, + 0x8f,0xde,0x80,0x3f,0x9b,0x70,0xf0,0x40,0x6f,0xc0,0x80,0x41,0x84,0x8d,0x70,0x42, + 0x4f,0xa2,0x80,0x43,0x64,0x6f,0x70,0x44,0x2f,0x84,0x80,0x45,0x44,0x51,0x70,0x45, + 0xf3,0xb7,0x0,0x47,0x2d,0x6d,0xf0,0x47,0xd3,0x99,0x0,0x49,0xd,0x4f,0xf0,0x49, + 0xb3,0x7b,0x0,0x4a,0xed,0x31,0xf0,0x4b,0x9c,0x97,0x80,0x4c,0xd6,0x4e,0x70,0x4d, + 0x7c,0x79,0x80,0x4e,0xb6,0x30,0x70,0x4f,0x5c,0x5b,0x80,0x50,0x96,0x12,0x70,0x51, + 0x3c,0x3d,0x80,0x52,0x75,0xf4,0x70,0x53,0x1c,0x1f,0x80,0x54,0x55,0xd6,0x70,0x54, + 0xfc,0x1,0x80,0x56,0x35,0xb8,0x70,0x56,0xe5,0x1e,0x0,0x58,0x1e,0xd4,0xf0,0x58, + 0xc5,0x0,0x0,0x59,0xfe,0xb6,0xf0,0x5a,0xa4,0xe2,0x0,0x5b,0xde,0x98,0xf0,0x5c, + 0x84,0xc4,0x0,0x5d,0xbe,0x7a,0xf0,0x5e,0x64,0xa6,0x0,0x5f,0x9e,0x5c,0xf0,0x60, + 0x4d,0xc2,0x80,0x61,0x87,0x79,0x70,0x62,0x2d,0xa4,0x80,0x63,0x67,0x5b,0x70,0x64, + 0xd,0x86,0x80,0x65,0x47,0x3d,0x70,0x65,0xed,0x68,0x80,0x67,0x27,0x1f,0x70,0x67, + 0xcd,0x4a,0x80,0x69,0x7,0x1,0x70,0x69,0xad,0x2c,0x80,0x6a,0xe6,0xe3,0x70,0x6b, + 0x96,0x49,0x0,0x6c,0xcf,0xff,0xf0,0x6d,0x76,0x2b,0x0,0x6e,0xaf,0xe1,0xf0,0x6f, + 0x56,0xd,0x0,0x70,0x8f,0xc3,0xf0,0x71,0x35,0xef,0x0,0x72,0x6f,0xa5,0xf0,0x73, + 0x15,0xd1,0x0,0x74,0x4f,0x87,0xf0,0x74,0xfe,0xed,0x80,0x76,0x38,0xa4,0x70,0x76, + 0xde,0xcf,0x80,0x78,0x18,0x86,0x70,0x78,0xbe,0xb1,0x80,0x79,0xf8,0x68,0x70,0x7a, + 0x9e,0x93,0x80,0x7b,0xd8,0x4a,0x70,0x7c,0x7e,0x75,0x80,0x7d,0xb8,0x2c,0x70,0x7e, + 0x5e,0x57,0x80,0x7f,0x98,0xe,0x70,0x2,0x1,0x2,0x1,0x3,0x4,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff, + 0xa7,0x58,0x0,0x0,0xff,0xff,0xb9,0xb0,0x1,0x4,0xff,0xff,0xab,0xa0,0x0,0x8, + 0xff,0xff,0xb9,0xb0,0x1,0xc,0xff,0xff,0xb9,0xb0,0x1,0x10,0x4c,0x4d,0x54,0x0, + 0x43,0x44,0x54,0x0,0x43,0x53,0x54,0x0,0x43,0x57,0x54,0x0,0x43,0x50,0x54,0x0, + 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x1,0x54,0x5a,0x69,0x66,0x32,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0, - 0x0,0x3,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff, - 0xff,0xff,0x91,0xf4,0x2b,0x90,0xff,0xff,0xff,0xff,0xfb,0xc3,0x35,0xc0,0x0,0x1, - 0x2,0xff,0xff,0xce,0xf0,0x0,0x0,0xff,0xff,0xc7,0xc0,0x0,0x4,0xff,0xff,0xd5, - 0xd0,0x0,0x4,0x4c,0x4d,0x54,0x0,0x47,0x46,0x54,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xa,0x47,0x46,0x54,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Rio_Branco - 0x0,0x0,0x2,0x90, + 0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x88,0x0,0x0, + 0x0,0x5,0x0,0x0,0x0,0x14,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff, + 0xff,0xff,0x72,0xee,0x87,0x28,0xff,0xff,0xff,0xff,0x9e,0xb8,0xa1,0x80,0xff,0xff, + 0xff,0xff,0x9f,0xba,0xf9,0x70,0xff,0xff,0xff,0xff,0xc8,0xf8,0x57,0x60,0xff,0xff, + 0xff,0xff,0xcb,0x88,0xfe,0x80,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff, + 0xff,0xff,0xd2,0x61,0x9,0xf0,0x0,0x0,0x0,0x0,0x8,0x20,0xcf,0x80,0x0,0x0, + 0x0,0x0,0x9,0x10,0xb2,0x70,0x0,0x0,0x0,0x0,0xa,0x0,0xb1,0x80,0x0,0x0, + 0x0,0x0,0xa,0xf0,0x94,0x70,0x0,0x0,0x0,0x0,0xb,0xe0,0x93,0x80,0x0,0x0, + 0x0,0x0,0xc,0xd9,0xb0,0xf0,0x0,0x0,0x0,0x0,0xd,0xc0,0x75,0x80,0x0,0x0, + 0x0,0x0,0xe,0xb9,0x92,0xf0,0x0,0x0,0x0,0x0,0xf,0xa9,0x92,0x0,0x0,0x0, + 0x0,0x0,0x10,0x99,0x74,0xf0,0x0,0x0,0x0,0x0,0x11,0x89,0x74,0x0,0x0,0x0, + 0x0,0x0,0x12,0x79,0x56,0xf0,0x0,0x0,0x0,0x0,0x13,0x69,0x56,0x0,0x0,0x0, + 0x0,0x0,0x14,0x59,0x38,0xf0,0x0,0x0,0x0,0x0,0x15,0x49,0x38,0x0,0x0,0x0, + 0x0,0x0,0x16,0x39,0x1a,0xf0,0x0,0x0,0x0,0x0,0x17,0x29,0x1a,0x0,0x0,0x0, + 0x0,0x0,0x18,0x22,0x37,0x70,0x0,0x0,0x0,0x0,0x19,0x8,0xfc,0x0,0x0,0x0, + 0x0,0x0,0x1a,0x2,0x19,0x70,0x0,0x0,0x0,0x0,0x1a,0xf2,0x18,0x80,0x0,0x0, + 0x0,0x0,0x1b,0xe1,0xfb,0x70,0x0,0x0,0x0,0x0,0x1c,0xd1,0xfa,0x80,0x0,0x0, + 0x0,0x0,0x1d,0xc1,0xdd,0x70,0x0,0x0,0x0,0x0,0x1e,0xb1,0xdc,0x80,0x0,0x0, + 0x0,0x0,0x1f,0xa1,0xbf,0x70,0x0,0x0,0x0,0x0,0x20,0x76,0xf,0x0,0x0,0x0, + 0x0,0x0,0x21,0x81,0xa1,0x70,0x0,0x0,0x0,0x0,0x22,0x55,0xf1,0x0,0x0,0x0, + 0x0,0x0,0x23,0x6a,0xbd,0xf0,0x0,0x0,0x0,0x0,0x24,0x35,0xd3,0x0,0x0,0x0, + 0x0,0x0,0x25,0x4a,0x9f,0xf0,0x0,0x0,0x0,0x0,0x26,0x15,0xb5,0x0,0x0,0x0, + 0x0,0x0,0x27,0x2a,0x81,0xf0,0x0,0x0,0x0,0x0,0x27,0xfe,0xd1,0x80,0x0,0x0, + 0x0,0x0,0x29,0xa,0x63,0xf0,0x0,0x0,0x0,0x0,0x29,0xde,0xb3,0x80,0x0,0x0, + 0x0,0x0,0x2a,0xea,0x45,0xf0,0x0,0x0,0x0,0x0,0x2b,0xbe,0x95,0x80,0x0,0x0, + 0x0,0x0,0x2c,0xd3,0x62,0x70,0x0,0x0,0x0,0x0,0x2d,0x9e,0x77,0x80,0x0,0x0, + 0x0,0x0,0x2e,0xb3,0x44,0x70,0x0,0x0,0x0,0x0,0x2f,0x7e,0x59,0x80,0x0,0x0, + 0x0,0x0,0x30,0x93,0x26,0x70,0x0,0x0,0x0,0x0,0x31,0x67,0x76,0x0,0x0,0x0, + 0x0,0x0,0x32,0x73,0x8,0x70,0x0,0x0,0x0,0x0,0x33,0x47,0x58,0x0,0x0,0x0, + 0x0,0x0,0x34,0x52,0xea,0x70,0x0,0x0,0x0,0x0,0x35,0x27,0x3a,0x0,0x0,0x0, + 0x0,0x0,0x36,0x32,0xcc,0x70,0x0,0x0,0x0,0x0,0x37,0x7,0x1c,0x0,0x0,0x0, + 0x0,0x0,0x38,0x1b,0xe8,0xf0,0x0,0x0,0x0,0x0,0x38,0xe6,0xfe,0x0,0x0,0x0, + 0x0,0x0,0x39,0xfb,0xca,0xf0,0x0,0x0,0x0,0x0,0x3a,0xc6,0xe0,0x0,0x0,0x0, + 0x0,0x0,0x3b,0xdb,0xac,0xf0,0x0,0x0,0x0,0x0,0x3c,0xaf,0xfc,0x80,0x0,0x0, + 0x0,0x0,0x3d,0xbb,0x8e,0xf0,0x0,0x0,0x0,0x0,0x3e,0x8f,0xde,0x80,0x0,0x0, + 0x0,0x0,0x3f,0x9b,0x70,0xf0,0x0,0x0,0x0,0x0,0x40,0x6f,0xc0,0x80,0x0,0x0, + 0x0,0x0,0x41,0x84,0x8d,0x70,0x0,0x0,0x0,0x0,0x42,0x4f,0xa2,0x80,0x0,0x0, + 0x0,0x0,0x43,0x64,0x6f,0x70,0x0,0x0,0x0,0x0,0x44,0x2f,0x84,0x80,0x0,0x0, + 0x0,0x0,0x45,0x44,0x51,0x70,0x0,0x0,0x0,0x0,0x45,0xf3,0xb7,0x0,0x0,0x0, + 0x0,0x0,0x47,0x2d,0x6d,0xf0,0x0,0x0,0x0,0x0,0x47,0xd3,0x99,0x0,0x0,0x0, + 0x0,0x0,0x49,0xd,0x4f,0xf0,0x0,0x0,0x0,0x0,0x49,0xb3,0x7b,0x0,0x0,0x0, + 0x0,0x0,0x4a,0xed,0x31,0xf0,0x0,0x0,0x0,0x0,0x4b,0x9c,0x97,0x80,0x0,0x0, + 0x0,0x0,0x4c,0xd6,0x4e,0x70,0x0,0x0,0x0,0x0,0x4d,0x7c,0x79,0x80,0x0,0x0, + 0x0,0x0,0x4e,0xb6,0x30,0x70,0x0,0x0,0x0,0x0,0x4f,0x5c,0x5b,0x80,0x0,0x0, + 0x0,0x0,0x50,0x96,0x12,0x70,0x0,0x0,0x0,0x0,0x51,0x3c,0x3d,0x80,0x0,0x0, + 0x0,0x0,0x52,0x75,0xf4,0x70,0x0,0x0,0x0,0x0,0x53,0x1c,0x1f,0x80,0x0,0x0, + 0x0,0x0,0x54,0x55,0xd6,0x70,0x0,0x0,0x0,0x0,0x54,0xfc,0x1,0x80,0x0,0x0, + 0x0,0x0,0x56,0x35,0xb8,0x70,0x0,0x0,0x0,0x0,0x56,0xe5,0x1e,0x0,0x0,0x0, + 0x0,0x0,0x58,0x1e,0xd4,0xf0,0x0,0x0,0x0,0x0,0x58,0xc5,0x0,0x0,0x0,0x0, + 0x0,0x0,0x59,0xfe,0xb6,0xf0,0x0,0x0,0x0,0x0,0x5a,0xa4,0xe2,0x0,0x0,0x0, + 0x0,0x0,0x5b,0xde,0x98,0xf0,0x0,0x0,0x0,0x0,0x5c,0x84,0xc4,0x0,0x0,0x0, + 0x0,0x0,0x5d,0xbe,0x7a,0xf0,0x0,0x0,0x0,0x0,0x5e,0x64,0xa6,0x0,0x0,0x0, + 0x0,0x0,0x5f,0x9e,0x5c,0xf0,0x0,0x0,0x0,0x0,0x60,0x4d,0xc2,0x80,0x0,0x0, + 0x0,0x0,0x61,0x87,0x79,0x70,0x0,0x0,0x0,0x0,0x62,0x2d,0xa4,0x80,0x0,0x0, + 0x0,0x0,0x63,0x67,0x5b,0x70,0x0,0x0,0x0,0x0,0x64,0xd,0x86,0x80,0x0,0x0, + 0x0,0x0,0x65,0x47,0x3d,0x70,0x0,0x0,0x0,0x0,0x65,0xed,0x68,0x80,0x0,0x0, + 0x0,0x0,0x67,0x27,0x1f,0x70,0x0,0x0,0x0,0x0,0x67,0xcd,0x4a,0x80,0x0,0x0, + 0x0,0x0,0x69,0x7,0x1,0x70,0x0,0x0,0x0,0x0,0x69,0xad,0x2c,0x80,0x0,0x0, + 0x0,0x0,0x6a,0xe6,0xe3,0x70,0x0,0x0,0x0,0x0,0x6b,0x96,0x49,0x0,0x0,0x0, + 0x0,0x0,0x6c,0xcf,0xff,0xf0,0x0,0x0,0x0,0x0,0x6d,0x76,0x2b,0x0,0x0,0x0, + 0x0,0x0,0x6e,0xaf,0xe1,0xf0,0x0,0x0,0x0,0x0,0x6f,0x56,0xd,0x0,0x0,0x0, + 0x0,0x0,0x70,0x8f,0xc3,0xf0,0x0,0x0,0x0,0x0,0x71,0x35,0xef,0x0,0x0,0x0, + 0x0,0x0,0x72,0x6f,0xa5,0xf0,0x0,0x0,0x0,0x0,0x73,0x15,0xd1,0x0,0x0,0x0, + 0x0,0x0,0x74,0x4f,0x87,0xf0,0x0,0x0,0x0,0x0,0x74,0xfe,0xed,0x80,0x0,0x0, + 0x0,0x0,0x76,0x38,0xa4,0x70,0x0,0x0,0x0,0x0,0x76,0xde,0xcf,0x80,0x0,0x0, + 0x0,0x0,0x78,0x18,0x86,0x70,0x0,0x0,0x0,0x0,0x78,0xbe,0xb1,0x80,0x0,0x0, + 0x0,0x0,0x79,0xf8,0x68,0x70,0x0,0x0,0x0,0x0,0x7a,0x9e,0x93,0x80,0x0,0x0, + 0x0,0x0,0x7b,0xd8,0x4a,0x70,0x0,0x0,0x0,0x0,0x7c,0x7e,0x75,0x80,0x0,0x0, + 0x0,0x0,0x7d,0xb8,0x2c,0x70,0x0,0x0,0x0,0x0,0x7e,0x5e,0x57,0x80,0x0,0x0, + 0x0,0x0,0x7f,0x98,0xe,0x70,0x0,0x2,0x1,0x2,0x1,0x3,0x4,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff, + 0xa7,0x58,0x0,0x0,0xff,0xff,0xb9,0xb0,0x1,0x4,0xff,0xff,0xab,0xa0,0x0,0x8, + 0xff,0xff,0xb9,0xb0,0x1,0xc,0xff,0xff,0xb9,0xb0,0x1,0x10,0x4c,0x4d,0x54,0x0, + 0x43,0x44,0x54,0x0,0x43,0x53,0x54,0x0,0x43,0x57,0x54,0x0,0x43,0x50,0x54,0x0, + 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x1,0xa,0x43,0x53,0x54,0x36,0x43, + 0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e, + 0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Barbados + 0x0,0x0,0x1,0x58, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x20,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x11,0x80,0x0,0x0,0x0,0x96, - 0xaa,0x86,0x90,0xb8,0xf,0x66,0x0,0xb8,0xfd,0x5c,0xc0,0xb9,0xf1,0x50,0x50,0xba, - 0xde,0x90,0x40,0xda,0x38,0xca,0x50,0xda,0xec,0x16,0x50,0xdc,0x19,0xfd,0xd0,0xdc, - 0xb9,0x75,0x40,0xdd,0xfb,0x31,0x50,0xde,0x9b,0xfa,0x40,0xdf,0xdd,0xb6,0x50,0xe0, - 0x54,0x4f,0x40,0xf4,0x98,0x1b,0xd0,0xf5,0x5,0x7a,0x40,0xf6,0xc0,0x80,0x50,0xf7, - 0xe,0x3a,0xc0,0xf8,0x51,0x48,0x50,0xf8,0xc7,0xe1,0x40,0xfa,0xa,0xee,0xd0,0xfa, - 0xa9,0x14,0xc0,0xfb,0xec,0x22,0x50,0xfc,0x8b,0x99,0xc0,0x1d,0xc9,0xaa,0x50,0x1e, - 0x78,0xf3,0xc0,0x1f,0xa0,0x51,0xd0,0x20,0x33,0xeb,0xc0,0x21,0x81,0x85,0x50,0x22, - 0xb,0xe4,0xc0,0x48,0x60,0x7f,0x50,0x52,0x7f,0x4,0xc0,0x0,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x2,0xff,0xff,0xc0,0x70,0x0, - 0x0,0xff,0xff,0xc7,0xc0,0x1,0x4,0xff,0xff,0xb9,0xb0,0x0,0x9,0xff,0xff,0xc7, - 0xc0,0x0,0xd,0xff,0xff,0xb9,0xb0,0x0,0x9,0x4c,0x4d,0x54,0x0,0x41,0x43,0x53, - 0x54,0x0,0x41,0x43,0x54,0x0,0x41,0x4d,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x11, - 0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x96,0xaa,0x86,0x90, - 0xff,0xff,0xff,0xff,0xb8,0xf,0x66,0x0,0xff,0xff,0xff,0xff,0xb8,0xfd,0x5c,0xc0, - 0xff,0xff,0xff,0xff,0xb9,0xf1,0x50,0x50,0xff,0xff,0xff,0xff,0xba,0xde,0x90,0x40, - 0xff,0xff,0xff,0xff,0xda,0x38,0xca,0x50,0xff,0xff,0xff,0xff,0xda,0xec,0x16,0x50, - 0xff,0xff,0xff,0xff,0xdc,0x19,0xfd,0xd0,0xff,0xff,0xff,0xff,0xdc,0xb9,0x75,0x40, - 0xff,0xff,0xff,0xff,0xdd,0xfb,0x31,0x50,0xff,0xff,0xff,0xff,0xde,0x9b,0xfa,0x40, - 0xff,0xff,0xff,0xff,0xdf,0xdd,0xb6,0x50,0xff,0xff,0xff,0xff,0xe0,0x54,0x4f,0x40, - 0xff,0xff,0xff,0xff,0xf4,0x98,0x1b,0xd0,0xff,0xff,0xff,0xff,0xf5,0x5,0x7a,0x40, - 0xff,0xff,0xff,0xff,0xf6,0xc0,0x80,0x50,0xff,0xff,0xff,0xff,0xf7,0xe,0x3a,0xc0, - 0xff,0xff,0xff,0xff,0xf8,0x51,0x48,0x50,0xff,0xff,0xff,0xff,0xf8,0xc7,0xe1,0x40, - 0xff,0xff,0xff,0xff,0xfa,0xa,0xee,0xd0,0xff,0xff,0xff,0xff,0xfa,0xa9,0x14,0xc0, - 0xff,0xff,0xff,0xff,0xfb,0xec,0x22,0x50,0xff,0xff,0xff,0xff,0xfc,0x8b,0x99,0xc0, - 0x0,0x0,0x0,0x0,0x1d,0xc9,0xaa,0x50,0x0,0x0,0x0,0x0,0x1e,0x78,0xf3,0xc0, - 0x0,0x0,0x0,0x0,0x1f,0xa0,0x51,0xd0,0x0,0x0,0x0,0x0,0x20,0x33,0xeb,0xc0, - 0x0,0x0,0x0,0x0,0x21,0x81,0x85,0x50,0x0,0x0,0x0,0x0,0x22,0xb,0xe4,0xc0, - 0x0,0x0,0x0,0x0,0x48,0x60,0x7f,0x50,0x0,0x0,0x0,0x0,0x52,0x7f,0x4,0xc0, - 0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x2, - 0xff,0xff,0xc0,0x70,0x0,0x0,0xff,0xff,0xc7,0xc0,0x1,0x4,0xff,0xff,0xb9,0xb0, - 0x0,0x9,0xff,0xff,0xc7,0xc0,0x0,0xd,0xff,0xff,0xb9,0xb0,0x0,0x9,0x4c,0x4d, - 0x54,0x0,0x41,0x43,0x53,0x54,0x0,0x41,0x43,0x54,0x0,0x41,0x4d,0x54,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x41,0x43,0x54,0x35,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Tijuana + 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xb,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x10,0x80,0x0,0x0,0x0,0xa9, + 0x79,0x24,0xe5,0xb8,0x85,0x63,0xe5,0xe,0x0,0xf2,0xe0,0xe,0x94,0x8c,0xd0,0xf, + 0x97,0x0,0xe0,0x10,0x74,0x6e,0xd0,0x11,0x76,0xe2,0xe0,0x12,0x54,0x50,0xd0,0x13, + 0x5f,0xff,0x60,0x14,0x30,0x3e,0x50,0x0,0x1,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0xff,0xff,0xc8,0x1b,0x0,0x0,0xff,0xff,0xc8,0x1b,0x0,0x4,0xff,0xff, + 0xd5,0xd0,0x1,0x8,0xff,0xff,0xc7,0xc0,0x0,0xc,0x4c,0x4d,0x54,0x0,0x42,0x4d, + 0x54,0x0,0x41,0x44,0x54,0x0,0x41,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x10,0xf8,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xa9,0x79,0x24,0xe5,0xff,0xff, + 0xff,0xff,0xb8,0x85,0x63,0xe5,0x0,0x0,0x0,0x0,0xe,0x0,0xf2,0xe0,0x0,0x0, + 0x0,0x0,0xe,0x94,0x8c,0xd0,0x0,0x0,0x0,0x0,0xf,0x97,0x0,0xe0,0x0,0x0, + 0x0,0x0,0x10,0x74,0x6e,0xd0,0x0,0x0,0x0,0x0,0x11,0x76,0xe2,0xe0,0x0,0x0, + 0x0,0x0,0x12,0x54,0x50,0xd0,0x0,0x0,0x0,0x0,0x13,0x5f,0xff,0x60,0x0,0x0, + 0x0,0x0,0x14,0x30,0x3e,0x50,0x0,0x1,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0xff,0xff,0xc8,0x1b,0x0,0x0,0xff,0xff,0xc8,0x1b,0x0,0x4,0xff,0xff,0xd5, + 0xd0,0x1,0x8,0xff,0xff,0xc7,0xc0,0x0,0xc,0x4c,0x4d,0x54,0x0,0x42,0x4d,0x54, + 0x0,0x41,0x44,0x54,0x0,0x41,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xa,0x41,0x53,0x54,0x34,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Ensenada 0x0,0x0,0x9,0x34, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, @@ -21859,7 +18350,7 @@ static const unsigned char qt_resource_data[] = { 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0xa,0x50,0x53,0x54,0x38, 0x50,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31, 0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Grenada + // /home/konrad/src/smoke/tzone/zoneinfo/America/St_Lucia 0x0,0x0,0x0,0xaa, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, @@ -21873,1358 +18364,487 @@ static const unsigned char qt_resource_data[] = { 0x0,0xff,0xff,0xff,0xff,0x93,0x37,0x33,0xac,0x0,0x1,0xff,0xff,0xc6,0x54,0x0, 0x0,0xff,0xff,0xc7,0xc0,0x0,0x4,0x4c,0x4d,0x54,0x0,0x41,0x53,0x54,0x0,0x0, 0x0,0x0,0x0,0xa,0x41,0x53,0x54,0x34,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/St_Johns - 0x0,0x0,0xe,0x50, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Yellowknife + 0x0,0x0,0x7,0xbc, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xef,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x19,0x80,0x0,0x0,0x0,0x9c, - 0xcf,0x62,0xc,0x9d,0xa4,0xe6,0xfc,0x9e,0xb8,0x7e,0x8c,0x9f,0xba,0xd6,0x7c,0xa0, - 0xb6,0x88,0xdc,0xa1,0x38,0xff,0x4c,0xa2,0x95,0x19,0x5c,0xa3,0x84,0xfc,0x4c,0xa4, - 0x74,0xfb,0x5c,0xa5,0x64,0xde,0x4c,0xa6,0x5e,0x17,0xdc,0xa7,0x44,0xc0,0x4c,0xa8, - 0x3d,0xf9,0xdc,0xa9,0x24,0xa2,0x4c,0xaa,0x1d,0xdb,0xdc,0xab,0x4,0x84,0x4c,0xab, - 0xfd,0xbd,0xdc,0xac,0xe4,0x66,0x4c,0xad,0xdd,0x9f,0xdc,0xae,0xcd,0x82,0xcc,0xaf, - 0xbd,0x81,0xdc,0xb0,0xad,0x64,0xcc,0xb1,0xa6,0x9e,0x5c,0xb2,0x8d,0x46,0xcc,0xb3, - 0x86,0x80,0x5c,0xb4,0x6d,0x28,0xcc,0xb5,0x66,0x62,0x5c,0xb6,0x4d,0xa,0xcc,0xb7, - 0x46,0x44,0x5c,0xb8,0x2c,0xec,0xcc,0xb9,0x26,0x26,0x5c,0xba,0x16,0x9,0x4c,0xbb, - 0xf,0x42,0xdc,0xbb,0xf5,0xeb,0x4c,0xbc,0xef,0x24,0xdc,0xbd,0xd5,0xcd,0x4c,0xbe, - 0x9e,0x4d,0x6c,0xbe,0xcf,0x6,0xa8,0xbf,0xb5,0xaf,0x18,0xc0,0xb8,0x31,0x38,0xc1, - 0x79,0xef,0xa8,0xc2,0x98,0x13,0x38,0xc3,0x59,0xd1,0xa8,0xc4,0x77,0xf5,0x38,0xc5, - 0x39,0xb3,0xa8,0xc6,0x61,0x11,0xb8,0xc7,0x19,0x95,0xa8,0xc8,0x40,0xf3,0xb8,0xc9, - 0x2,0xb2,0x28,0xca,0x20,0xd5,0xb8,0xca,0xe2,0x94,0x28,0xcc,0x0,0xb7,0xb8,0xd2, - 0x23,0xf4,0x70,0xd2,0x60,0xe6,0xc8,0xd3,0x88,0x44,0xd8,0xd4,0x4a,0x3,0x48,0xd5, - 0x68,0x26,0xd8,0xd6,0x29,0xe5,0x48,0xd7,0x48,0x8,0xd8,0xd8,0x9,0xc7,0x48,0xd9, - 0x27,0xea,0xd8,0xd9,0xe9,0xa9,0x48,0xdb,0x11,0x7,0x58,0xdb,0xd2,0xc5,0xc8,0xdc, - 0xde,0x74,0x58,0xdd,0xa9,0x6d,0x48,0xde,0xbe,0x56,0x58,0xdf,0x89,0x4f,0x48,0xe0, - 0x9e,0x38,0x58,0xe1,0x69,0x31,0x48,0xe2,0x7e,0x1a,0x58,0xe3,0x49,0x13,0x48,0xe4, - 0x5d,0xfc,0x58,0xe5,0x28,0xf5,0x48,0xe6,0x47,0x18,0xd8,0xe7,0x12,0x11,0xc8,0xe8, - 0x26,0xfa,0xd8,0xe8,0xf1,0xf3,0xc8,0xea,0x6,0xdc,0xd8,0xea,0xd1,0xd5,0xc8,0xeb, - 0xe6,0xbe,0xd8,0xec,0xb1,0xb7,0xc8,0xed,0xc6,0xa0,0xd8,0xee,0xbf,0xbe,0x48,0xef, - 0xaf,0xbd,0x58,0xf0,0x9f,0xa0,0x48,0xf1,0x8f,0x9f,0x58,0xf2,0x7f,0x82,0x48,0xf3, - 0x6f,0x81,0x58,0xf4,0x5f,0x64,0x48,0xf5,0x4f,0x63,0x58,0xf6,0x3f,0x46,0x48,0xf7, - 0x2f,0x45,0x58,0xf8,0x28,0x62,0xc8,0xf9,0xf,0x27,0x58,0xfa,0x8,0x44,0xc8,0xfa, - 0xf8,0x43,0xd8,0xfb,0xe8,0x26,0xc8,0xfc,0xd8,0x25,0xd8,0xfd,0xc8,0x8,0xc8,0xfe, - 0xb8,0x7,0xd8,0xff,0xa7,0xea,0xc8,0x0,0x97,0xe9,0xd8,0x1,0x87,0xcc,0xc8,0x2, - 0x77,0xcb,0xd8,0x3,0x70,0xe9,0x48,0x4,0x60,0xe8,0x58,0x5,0x50,0xcb,0x48,0x6, - 0x40,0xca,0x58,0x7,0x30,0xad,0x48,0x8,0x20,0xac,0x58,0x9,0x10,0x8f,0x48,0xa, - 0x0,0x8e,0x58,0xa,0xf0,0x71,0x48,0xb,0xe0,0x70,0x58,0xc,0xd9,0x8d,0xc8,0xd, - 0xc0,0x52,0x58,0xe,0xb9,0x6f,0xc8,0xf,0xa9,0x6e,0xd8,0x10,0x99,0x51,0xc8,0x11, - 0x89,0x50,0xd8,0x12,0x79,0x33,0xc8,0x13,0x69,0x32,0xd8,0x14,0x59,0x15,0xc8,0x15, - 0x49,0x14,0xd8,0x16,0x38,0xf7,0xc8,0x17,0x28,0xf6,0xd8,0x18,0x22,0x14,0x48,0x19, - 0x8,0xd8,0xd8,0x1a,0x1,0xf6,0x48,0x1a,0xf1,0xf5,0x58,0x1b,0xe1,0xd8,0x48,0x1c, - 0xd1,0xd7,0x58,0x1d,0xc1,0xba,0x48,0x1e,0xb1,0xb9,0x58,0x1f,0xa1,0x9c,0x48,0x20, - 0x75,0xcf,0xf4,0x21,0x81,0x62,0x64,0x22,0x55,0xb1,0xf4,0x23,0x6a,0x70,0xd4,0x24, - 0x35,0x93,0xf4,0x25,0x4a,0x60,0xe4,0x26,0x15,0x75,0xf4,0x27,0x2a,0x42,0xe4,0x27, - 0xfe,0x92,0x74,0x29,0xa,0x24,0xe4,0x29,0xde,0x74,0x74,0x2a,0xea,0x6,0xe4,0x2b, - 0xbe,0x56,0x74,0x2c,0xd3,0x23,0x64,0x2d,0x9e,0x38,0x74,0x2e,0xb3,0x5,0x64,0x2f, - 0x7e,0x1a,0x74,0x30,0x92,0xe7,0x64,0x31,0x67,0x36,0xf4,0x32,0x72,0xc9,0x64,0x33, - 0x47,0x18,0xf4,0x34,0x52,0xab,0x64,0x35,0x26,0xfa,0xf4,0x36,0x32,0x8d,0x64,0x37, - 0x6,0xdc,0xf4,0x38,0x1b,0xa9,0xe4,0x38,0xe6,0xbe,0xf4,0x39,0xfb,0x8b,0xe4,0x3a, - 0xc6,0xa0,0xf4,0x3b,0xdb,0x6d,0xe4,0x3c,0xaf,0xbd,0x74,0x3d,0xbb,0x4f,0xe4,0x3e, - 0x8f,0x9f,0x74,0x3f,0x9b,0x31,0xe4,0x40,0x6f,0x81,0x74,0x41,0x84,0x4e,0x64,0x42, - 0x4f,0x63,0x74,0x43,0x64,0x30,0x64,0x44,0x2f,0x45,0x74,0x45,0x44,0x12,0x64,0x45, - 0xf3,0x77,0xf4,0x47,0x2d,0x2e,0xe4,0x47,0xd3,0x59,0xf4,0x49,0xd,0x10,0xe4,0x49, - 0xb3,0x3b,0xf4,0x4a,0xec,0xf2,0xe4,0x4b,0x9c,0x58,0x74,0x4c,0xd6,0xf,0x64,0x4d, - 0x7c,0x3a,0x74,0x4e,0xb6,0xd,0x48,0x4f,0x5c,0x38,0x58,0x50,0x95,0xef,0x48,0x51, - 0x3c,0x1a,0x58,0x52,0x75,0xd1,0x48,0x53,0x1b,0xfc,0x58,0x54,0x55,0xb3,0x48,0x54, - 0xfb,0xde,0x58,0x56,0x35,0x95,0x48,0x56,0xe4,0xfa,0xd8,0x58,0x1e,0xb1,0xc8,0x58, - 0xc4,0xdc,0xd8,0x59,0xfe,0x93,0xc8,0x5a,0xa4,0xbe,0xd8,0x5b,0xde,0x75,0xc8,0x5c, - 0x84,0xa0,0xd8,0x5d,0xbe,0x57,0xc8,0x5e,0x64,0x82,0xd8,0x5f,0x9e,0x39,0xc8,0x60, - 0x4d,0x9f,0x58,0x61,0x87,0x56,0x48,0x62,0x2d,0x81,0x58,0x63,0x67,0x38,0x48,0x64, - 0xd,0x63,0x58,0x65,0x47,0x1a,0x48,0x65,0xed,0x45,0x58,0x67,0x26,0xfc,0x48,0x67, - 0xcd,0x27,0x58,0x69,0x6,0xde,0x48,0x69,0xad,0x9,0x58,0x6a,0xe6,0xc0,0x48,0x6b, - 0x96,0x25,0xd8,0x6c,0xcf,0xdc,0xc8,0x6d,0x76,0x7,0xd8,0x6e,0xaf,0xbe,0xc8,0x6f, - 0x55,0xe9,0xd8,0x70,0x8f,0xa0,0xc8,0x71,0x35,0xcb,0xd8,0x72,0x6f,0x82,0xc8,0x73, - 0x15,0xad,0xd8,0x74,0x4f,0x64,0xc8,0x74,0xfe,0xca,0x58,0x76,0x38,0x81,0x48,0x76, - 0xde,0xac,0x58,0x78,0x18,0x63,0x48,0x78,0xbe,0x8e,0x58,0x79,0xf8,0x45,0x48,0x7a, - 0x9e,0x70,0x58,0x7b,0xd8,0x27,0x48,0x7c,0x7e,0x52,0x58,0x7d,0xb8,0x9,0x48,0x7e, - 0x5e,0x34,0x58,0x7f,0x97,0xeb,0x48,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x7b,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x80,0x0,0x0,0x0,0xbe, + 0x2a,0x18,0x0,0xcb,0x89,0xc,0x90,0xd2,0x23,0xf4,0x70,0xd2,0x61,0x18,0x0,0xf7, + 0x2f,0x5a,0x70,0xf8,0x28,0x85,0xf0,0x13,0x69,0x64,0x10,0x14,0x59,0x47,0x0,0x15, + 0x49,0x46,0x10,0x16,0x39,0x29,0x0,0x17,0x29,0x28,0x10,0x18,0x22,0x45,0x80,0x19, + 0x9,0xa,0x10,0x1a,0x2,0x27,0x80,0x1a,0xf2,0x26,0x90,0x1b,0xe2,0x9,0x80,0x1c, + 0xd2,0x8,0x90,0x1d,0xc1,0xeb,0x80,0x1e,0xb1,0xea,0x90,0x1f,0xa1,0xcd,0x80,0x20, + 0x76,0x1d,0x10,0x21,0x81,0xaf,0x80,0x22,0x55,0xff,0x10,0x23,0x6a,0xcc,0x0,0x24, + 0x35,0xe1,0x10,0x25,0x4a,0xae,0x0,0x26,0x15,0xc3,0x10,0x27,0x2a,0x90,0x0,0x27, + 0xfe,0xdf,0x90,0x29,0xa,0x72,0x0,0x29,0xde,0xc1,0x90,0x2a,0xea,0x54,0x0,0x2b, + 0xbe,0xa3,0x90,0x2c,0xd3,0x70,0x80,0x2d,0x9e,0x85,0x90,0x2e,0xb3,0x52,0x80,0x2f, + 0x7e,0x67,0x90,0x30,0x93,0x34,0x80,0x31,0x67,0x84,0x10,0x32,0x73,0x16,0x80,0x33, + 0x47,0x66,0x10,0x34,0x52,0xf8,0x80,0x35,0x27,0x48,0x10,0x36,0x32,0xda,0x80,0x37, + 0x7,0x2a,0x10,0x38,0x1b,0xf7,0x0,0x38,0xe7,0xc,0x10,0x39,0xfb,0xd9,0x0,0x3a, + 0xc6,0xee,0x10,0x3b,0xdb,0xbb,0x0,0x3c,0xb0,0xa,0x90,0x3d,0xbb,0x9d,0x0,0x3e, + 0x8f,0xec,0x90,0x3f,0x9b,0x7f,0x0,0x40,0x6f,0xce,0x90,0x41,0x84,0x9b,0x80,0x42, + 0x4f,0xb0,0x90,0x43,0x64,0x7d,0x80,0x44,0x2f,0x92,0x90,0x45,0x44,0x5f,0x80,0x45, + 0xf3,0xc5,0x10,0x47,0x2d,0x7c,0x0,0x47,0xd3,0xa7,0x10,0x49,0xd,0x5e,0x0,0x49, + 0xb3,0x89,0x10,0x4a,0xed,0x40,0x0,0x4b,0x9c,0xa5,0x90,0x4c,0xd6,0x5c,0x80,0x4d, + 0x7c,0x87,0x90,0x4e,0xb6,0x3e,0x80,0x4f,0x5c,0x69,0x90,0x50,0x96,0x20,0x80,0x51, + 0x3c,0x4b,0x90,0x52,0x76,0x2,0x80,0x53,0x1c,0x2d,0x90,0x54,0x55,0xe4,0x80,0x54, + 0xfc,0xf,0x90,0x56,0x35,0xc6,0x80,0x56,0xe5,0x2c,0x10,0x58,0x1e,0xe3,0x0,0x58, + 0xc5,0xe,0x10,0x59,0xfe,0xc5,0x0,0x5a,0xa4,0xf0,0x10,0x5b,0xde,0xa7,0x0,0x5c, + 0x84,0xd2,0x10,0x5d,0xbe,0x89,0x0,0x5e,0x64,0xb4,0x10,0x5f,0x9e,0x6b,0x0,0x60, + 0x4d,0xd0,0x90,0x61,0x87,0x87,0x80,0x62,0x2d,0xb2,0x90,0x63,0x67,0x69,0x80,0x64, + 0xd,0x94,0x90,0x65,0x47,0x4b,0x80,0x65,0xed,0x76,0x90,0x67,0x27,0x2d,0x80,0x67, + 0xcd,0x58,0x90,0x69,0x7,0xf,0x80,0x69,0xad,0x3a,0x90,0x6a,0xe6,0xf1,0x80,0x6b, + 0x96,0x57,0x10,0x6c,0xd0,0xe,0x0,0x6d,0x76,0x39,0x10,0x6e,0xaf,0xf0,0x0,0x6f, + 0x56,0x1b,0x10,0x70,0x8f,0xd2,0x0,0x71,0x35,0xfd,0x10,0x72,0x6f,0xb4,0x0,0x73, + 0x15,0xdf,0x10,0x74,0x4f,0x96,0x0,0x74,0xfe,0xfb,0x90,0x76,0x38,0xb2,0x80,0x76, + 0xde,0xdd,0x90,0x78,0x18,0x94,0x80,0x78,0xbe,0xbf,0x90,0x79,0xf8,0x76,0x80,0x7a, + 0x9e,0xa1,0x90,0x7b,0xd8,0x58,0x80,0x7c,0x7e,0x83,0x90,0x7d,0xb8,0x3a,0x80,0x7e, + 0x5e,0x65,0x90,0x7f,0x98,0x1c,0x80,0x0,0x3,0x1,0x2,0x3,0x4,0x3,0x5,0x3, + 0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3, + 0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3, + 0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3, + 0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3, + 0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3, + 0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3, + 0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3, + 0x5,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xab,0xa0,0x1,0x4,0xff,0xff, + 0xab,0xa0,0x1,0x8,0xff,0xff,0x9d,0x90,0x0,0xc,0xff,0xff,0xb9,0xb0,0x1,0x10, + 0xff,0xff,0xab,0xa0,0x1,0x15,0x2d,0x30,0x30,0x0,0x4d,0x57,0x54,0x0,0x4d,0x50, + 0x54,0x0,0x4d,0x53,0x54,0x0,0x4d,0x44,0x44,0x54,0x0,0x4d,0x44,0x54,0x0,0x0, + 0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7b,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x19,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff, + 0xff,0xff,0xff,0xbe,0x2a,0x18,0x0,0xff,0xff,0xff,0xff,0xcb,0x89,0xc,0x90,0xff, + 0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x61,0x18,0x0,0xff, + 0xff,0xff,0xff,0xf7,0x2f,0x5a,0x70,0xff,0xff,0xff,0xff,0xf8,0x28,0x85,0xf0,0x0, + 0x0,0x0,0x0,0x13,0x69,0x64,0x10,0x0,0x0,0x0,0x0,0x14,0x59,0x47,0x0,0x0, + 0x0,0x0,0x0,0x15,0x49,0x46,0x10,0x0,0x0,0x0,0x0,0x16,0x39,0x29,0x0,0x0, + 0x0,0x0,0x0,0x17,0x29,0x28,0x10,0x0,0x0,0x0,0x0,0x18,0x22,0x45,0x80,0x0, + 0x0,0x0,0x0,0x19,0x9,0xa,0x10,0x0,0x0,0x0,0x0,0x1a,0x2,0x27,0x80,0x0, + 0x0,0x0,0x0,0x1a,0xf2,0x26,0x90,0x0,0x0,0x0,0x0,0x1b,0xe2,0x9,0x80,0x0, + 0x0,0x0,0x0,0x1c,0xd2,0x8,0x90,0x0,0x0,0x0,0x0,0x1d,0xc1,0xeb,0x80,0x0, + 0x0,0x0,0x0,0x1e,0xb1,0xea,0x90,0x0,0x0,0x0,0x0,0x1f,0xa1,0xcd,0x80,0x0, + 0x0,0x0,0x0,0x20,0x76,0x1d,0x10,0x0,0x0,0x0,0x0,0x21,0x81,0xaf,0x80,0x0, + 0x0,0x0,0x0,0x22,0x55,0xff,0x10,0x0,0x0,0x0,0x0,0x23,0x6a,0xcc,0x0,0x0, + 0x0,0x0,0x0,0x24,0x35,0xe1,0x10,0x0,0x0,0x0,0x0,0x25,0x4a,0xae,0x0,0x0, + 0x0,0x0,0x0,0x26,0x15,0xc3,0x10,0x0,0x0,0x0,0x0,0x27,0x2a,0x90,0x0,0x0, + 0x0,0x0,0x0,0x27,0xfe,0xdf,0x90,0x0,0x0,0x0,0x0,0x29,0xa,0x72,0x0,0x0, + 0x0,0x0,0x0,0x29,0xde,0xc1,0x90,0x0,0x0,0x0,0x0,0x2a,0xea,0x54,0x0,0x0, + 0x0,0x0,0x0,0x2b,0xbe,0xa3,0x90,0x0,0x0,0x0,0x0,0x2c,0xd3,0x70,0x80,0x0, + 0x0,0x0,0x0,0x2d,0x9e,0x85,0x90,0x0,0x0,0x0,0x0,0x2e,0xb3,0x52,0x80,0x0, + 0x0,0x0,0x0,0x2f,0x7e,0x67,0x90,0x0,0x0,0x0,0x0,0x30,0x93,0x34,0x80,0x0, + 0x0,0x0,0x0,0x31,0x67,0x84,0x10,0x0,0x0,0x0,0x0,0x32,0x73,0x16,0x80,0x0, + 0x0,0x0,0x0,0x33,0x47,0x66,0x10,0x0,0x0,0x0,0x0,0x34,0x52,0xf8,0x80,0x0, + 0x0,0x0,0x0,0x35,0x27,0x48,0x10,0x0,0x0,0x0,0x0,0x36,0x32,0xda,0x80,0x0, + 0x0,0x0,0x0,0x37,0x7,0x2a,0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0xf7,0x0,0x0, + 0x0,0x0,0x0,0x38,0xe7,0xc,0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0xd9,0x0,0x0, + 0x0,0x0,0x0,0x3a,0xc6,0xee,0x10,0x0,0x0,0x0,0x0,0x3b,0xdb,0xbb,0x0,0x0, + 0x0,0x0,0x0,0x3c,0xb0,0xa,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x9d,0x0,0x0, + 0x0,0x0,0x0,0x3e,0x8f,0xec,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x7f,0x0,0x0, + 0x0,0x0,0x0,0x40,0x6f,0xce,0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x9b,0x80,0x0, + 0x0,0x0,0x0,0x42,0x4f,0xb0,0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x7d,0x80,0x0, + 0x0,0x0,0x0,0x44,0x2f,0x92,0x90,0x0,0x0,0x0,0x0,0x45,0x44,0x5f,0x80,0x0, + 0x0,0x0,0x0,0x45,0xf3,0xc5,0x10,0x0,0x0,0x0,0x0,0x47,0x2d,0x7c,0x0,0x0, + 0x0,0x0,0x0,0x47,0xd3,0xa7,0x10,0x0,0x0,0x0,0x0,0x49,0xd,0x5e,0x0,0x0, + 0x0,0x0,0x0,0x49,0xb3,0x89,0x10,0x0,0x0,0x0,0x0,0x4a,0xed,0x40,0x0,0x0, + 0x0,0x0,0x0,0x4b,0x9c,0xa5,0x90,0x0,0x0,0x0,0x0,0x4c,0xd6,0x5c,0x80,0x0, + 0x0,0x0,0x0,0x4d,0x7c,0x87,0x90,0x0,0x0,0x0,0x0,0x4e,0xb6,0x3e,0x80,0x0, + 0x0,0x0,0x0,0x4f,0x5c,0x69,0x90,0x0,0x0,0x0,0x0,0x50,0x96,0x20,0x80,0x0, + 0x0,0x0,0x0,0x51,0x3c,0x4b,0x90,0x0,0x0,0x0,0x0,0x52,0x76,0x2,0x80,0x0, + 0x0,0x0,0x0,0x53,0x1c,0x2d,0x90,0x0,0x0,0x0,0x0,0x54,0x55,0xe4,0x80,0x0, + 0x0,0x0,0x0,0x54,0xfc,0xf,0x90,0x0,0x0,0x0,0x0,0x56,0x35,0xc6,0x80,0x0, + 0x0,0x0,0x0,0x56,0xe5,0x2c,0x10,0x0,0x0,0x0,0x0,0x58,0x1e,0xe3,0x0,0x0, + 0x0,0x0,0x0,0x58,0xc5,0xe,0x10,0x0,0x0,0x0,0x0,0x59,0xfe,0xc5,0x0,0x0, + 0x0,0x0,0x0,0x5a,0xa4,0xf0,0x10,0x0,0x0,0x0,0x0,0x5b,0xde,0xa7,0x0,0x0, + 0x0,0x0,0x0,0x5c,0x84,0xd2,0x10,0x0,0x0,0x0,0x0,0x5d,0xbe,0x89,0x0,0x0, + 0x0,0x0,0x0,0x5e,0x64,0xb4,0x10,0x0,0x0,0x0,0x0,0x5f,0x9e,0x6b,0x0,0x0, + 0x0,0x0,0x0,0x60,0x4d,0xd0,0x90,0x0,0x0,0x0,0x0,0x61,0x87,0x87,0x80,0x0, + 0x0,0x0,0x0,0x62,0x2d,0xb2,0x90,0x0,0x0,0x0,0x0,0x63,0x67,0x69,0x80,0x0, + 0x0,0x0,0x0,0x64,0xd,0x94,0x90,0x0,0x0,0x0,0x0,0x65,0x47,0x4b,0x80,0x0, + 0x0,0x0,0x0,0x65,0xed,0x76,0x90,0x0,0x0,0x0,0x0,0x67,0x27,0x2d,0x80,0x0, + 0x0,0x0,0x0,0x67,0xcd,0x58,0x90,0x0,0x0,0x0,0x0,0x69,0x7,0xf,0x80,0x0, + 0x0,0x0,0x0,0x69,0xad,0x3a,0x90,0x0,0x0,0x0,0x0,0x6a,0xe6,0xf1,0x80,0x0, + 0x0,0x0,0x0,0x6b,0x96,0x57,0x10,0x0,0x0,0x0,0x0,0x6c,0xd0,0xe,0x0,0x0, + 0x0,0x0,0x0,0x6d,0x76,0x39,0x10,0x0,0x0,0x0,0x0,0x6e,0xaf,0xf0,0x0,0x0, + 0x0,0x0,0x0,0x6f,0x56,0x1b,0x10,0x0,0x0,0x0,0x0,0x70,0x8f,0xd2,0x0,0x0, + 0x0,0x0,0x0,0x71,0x35,0xfd,0x10,0x0,0x0,0x0,0x0,0x72,0x6f,0xb4,0x0,0x0, + 0x0,0x0,0x0,0x73,0x15,0xdf,0x10,0x0,0x0,0x0,0x0,0x74,0x4f,0x96,0x0,0x0, + 0x0,0x0,0x0,0x74,0xfe,0xfb,0x90,0x0,0x0,0x0,0x0,0x76,0x38,0xb2,0x80,0x0, + 0x0,0x0,0x0,0x76,0xde,0xdd,0x90,0x0,0x0,0x0,0x0,0x78,0x18,0x94,0x80,0x0, + 0x0,0x0,0x0,0x78,0xbe,0xbf,0x90,0x0,0x0,0x0,0x0,0x79,0xf8,0x76,0x80,0x0, + 0x0,0x0,0x0,0x7a,0x9e,0xa1,0x90,0x0,0x0,0x0,0x0,0x7b,0xd8,0x58,0x80,0x0, + 0x0,0x0,0x0,0x7c,0x7e,0x83,0x90,0x0,0x0,0x0,0x0,0x7d,0xb8,0x3a,0x80,0x0, + 0x0,0x0,0x0,0x7e,0x5e,0x65,0x90,0x0,0x0,0x0,0x0,0x7f,0x98,0x1c,0x80,0x0, + 0x3,0x1,0x2,0x3,0x4,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3, + 0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3, + 0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3, + 0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3, + 0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3, + 0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3, + 0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3, + 0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x0,0x0,0x0,0x0,0x0,0x0, + 0xff,0xff,0xab,0xa0,0x1,0x4,0xff,0xff,0xab,0xa0,0x1,0x8,0xff,0xff,0x9d,0x90, + 0x0,0xc,0xff,0xff,0xb9,0xb0,0x1,0x10,0xff,0xff,0xab,0xa0,0x1,0x15,0x2d,0x30, + 0x30,0x0,0x4d,0x57,0x54,0x0,0x4d,0x50,0x54,0x0,0x4d,0x53,0x54,0x0,0x4d,0x44, + 0x44,0x54,0x0,0x4d,0x44,0x54,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x1, + 0x0,0x0,0x0,0xa,0x4d,0x53,0x54,0x37,0x4d,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32, + 0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Matamoros + 0x0,0x0,0x5,0x88, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x58,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0xa5, + 0xb6,0xda,0x60,0x22,0x55,0xf1,0x0,0x23,0x6a,0xbd,0xf0,0x31,0x67,0x76,0x0,0x32, + 0x73,0x8,0x70,0x33,0x47,0x58,0x0,0x34,0x52,0xea,0x70,0x35,0x27,0x3a,0x0,0x36, + 0x32,0xcc,0x70,0x37,0x7,0x1c,0x0,0x38,0x1b,0xe8,0xf0,0x38,0xe6,0xfe,0x0,0x39, + 0xfb,0xca,0xf0,0x3a,0xf5,0x4,0x80,0x3b,0xb6,0xc2,0xf0,0x3c,0xaf,0xfc,0x80,0x3d, + 0xbb,0x8e,0xf0,0x3e,0x8f,0xde,0x80,0x3f,0x9b,0x70,0xf0,0x40,0x6f,0xc0,0x80,0x41, + 0x84,0x8d,0x70,0x42,0x4f,0xa2,0x80,0x43,0x64,0x6f,0x70,0x44,0x2f,0x84,0x80,0x45, + 0x44,0x51,0x70,0x46,0xf,0x66,0x80,0x47,0x24,0x33,0x70,0x47,0xf8,0x83,0x0,0x49, + 0x4,0x15,0x70,0x49,0xd8,0x65,0x0,0x4a,0xe3,0xf7,0x70,0x4b,0x9c,0x97,0x80,0x4c, + 0xd6,0x4e,0x70,0x4d,0x7c,0x79,0x80,0x4e,0xb6,0x30,0x70,0x4f,0x5c,0x5b,0x80,0x50, + 0x96,0x12,0x70,0x51,0x3c,0x3d,0x80,0x52,0x75,0xf4,0x70,0x53,0x1c,0x1f,0x80,0x54, + 0x55,0xd6,0x70,0x54,0xfc,0x1,0x80,0x56,0x35,0xb8,0x70,0x56,0xe5,0x1e,0x0,0x58, + 0x1e,0xd4,0xf0,0x58,0xc5,0x0,0x0,0x59,0xfe,0xb6,0xf0,0x5a,0xa4,0xe2,0x0,0x5b, + 0xde,0x98,0xf0,0x5c,0x84,0xc4,0x0,0x5d,0xbe,0x7a,0xf0,0x5e,0x64,0xa6,0x0,0x5f, + 0x9e,0x5c,0xf0,0x60,0x4d,0xc2,0x80,0x61,0x87,0x79,0x70,0x62,0x2d,0xa4,0x80,0x63, + 0x67,0x5b,0x70,0x64,0xd,0x86,0x80,0x65,0x47,0x3d,0x70,0x65,0xed,0x68,0x80,0x67, + 0x27,0x1f,0x70,0x67,0xcd,0x4a,0x80,0x69,0x7,0x1,0x70,0x69,0xad,0x2c,0x80,0x6a, + 0xe6,0xe3,0x70,0x6b,0x96,0x49,0x0,0x6c,0xcf,0xff,0xf0,0x6d,0x76,0x2b,0x0,0x6e, + 0xaf,0xe1,0xf0,0x6f,0x56,0xd,0x0,0x70,0x8f,0xc3,0xf0,0x71,0x35,0xef,0x0,0x72, + 0x6f,0xa5,0xf0,0x73,0x15,0xd1,0x0,0x74,0x4f,0x87,0xf0,0x74,0xfe,0xed,0x80,0x76, + 0x38,0xa4,0x70,0x76,0xde,0xcf,0x80,0x78,0x18,0x86,0x70,0x78,0xbe,0xb1,0x80,0x79, + 0xf8,0x68,0x70,0x7a,0x9e,0x93,0x80,0x7b,0xd8,0x4a,0x70,0x7c,0x7e,0x75,0x80,0x7d, + 0xb8,0x2c,0x70,0x7e,0x5e,0x57,0x80,0x7f,0x98,0xe,0x70,0x0,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x6,0x5,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x7,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0xff,0xff,0xce,0x94,0x0,0x0,0xff,0xff,0xdc,0xa4, - 0x1,0x4,0xff,0xff,0xce,0x94,0x0,0x8,0xff,0xff,0xdc,0xd8,0x1,0x4,0xff,0xff, - 0xce,0xc8,0x0,0x8,0xff,0xff,0xdc,0xd8,0x1,0xc,0xff,0xff,0xdc,0xd8,0x1,0x10, - 0xff,0xff,0xea,0xe8,0x1,0x14,0xff,0xff,0xdc,0xd8,0x1,0x4,0x4c,0x4d,0x54,0x0, - 0x4e,0x44,0x54,0x0,0x4e,0x53,0x54,0x0,0x4e,0x50,0x54,0x0,0x4e,0x57,0x54,0x0, - 0x4e,0x44,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9,0x0, - 0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0x0,0x0,0x0,0x9,0x0, - 0x0,0x0,0x19,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x5e, - 0x3d,0x34,0xec,0xff,0xff,0xff,0xff,0x9c,0xcf,0x62,0xc,0xff,0xff,0xff,0xff,0x9d, - 0xa4,0xe6,0xfc,0xff,0xff,0xff,0xff,0x9e,0xb8,0x7e,0x8c,0xff,0xff,0xff,0xff,0x9f, - 0xba,0xd6,0x7c,0xff,0xff,0xff,0xff,0xa0,0xb6,0x88,0xdc,0xff,0xff,0xff,0xff,0xa1, - 0x38,0xff,0x4c,0xff,0xff,0xff,0xff,0xa2,0x95,0x19,0x5c,0xff,0xff,0xff,0xff,0xa3, - 0x84,0xfc,0x4c,0xff,0xff,0xff,0xff,0xa4,0x74,0xfb,0x5c,0xff,0xff,0xff,0xff,0xa5, - 0x64,0xde,0x4c,0xff,0xff,0xff,0xff,0xa6,0x5e,0x17,0xdc,0xff,0xff,0xff,0xff,0xa7, - 0x44,0xc0,0x4c,0xff,0xff,0xff,0xff,0xa8,0x3d,0xf9,0xdc,0xff,0xff,0xff,0xff,0xa9, - 0x24,0xa2,0x4c,0xff,0xff,0xff,0xff,0xaa,0x1d,0xdb,0xdc,0xff,0xff,0xff,0xff,0xab, - 0x4,0x84,0x4c,0xff,0xff,0xff,0xff,0xab,0xfd,0xbd,0xdc,0xff,0xff,0xff,0xff,0xac, - 0xe4,0x66,0x4c,0xff,0xff,0xff,0xff,0xad,0xdd,0x9f,0xdc,0xff,0xff,0xff,0xff,0xae, - 0xcd,0x82,0xcc,0xff,0xff,0xff,0xff,0xaf,0xbd,0x81,0xdc,0xff,0xff,0xff,0xff,0xb0, - 0xad,0x64,0xcc,0xff,0xff,0xff,0xff,0xb1,0xa6,0x9e,0x5c,0xff,0xff,0xff,0xff,0xb2, - 0x8d,0x46,0xcc,0xff,0xff,0xff,0xff,0xb3,0x86,0x80,0x5c,0xff,0xff,0xff,0xff,0xb4, - 0x6d,0x28,0xcc,0xff,0xff,0xff,0xff,0xb5,0x66,0x62,0x5c,0xff,0xff,0xff,0xff,0xb6, - 0x4d,0xa,0xcc,0xff,0xff,0xff,0xff,0xb7,0x46,0x44,0x5c,0xff,0xff,0xff,0xff,0xb8, - 0x2c,0xec,0xcc,0xff,0xff,0xff,0xff,0xb9,0x26,0x26,0x5c,0xff,0xff,0xff,0xff,0xba, - 0x16,0x9,0x4c,0xff,0xff,0xff,0xff,0xbb,0xf,0x42,0xdc,0xff,0xff,0xff,0xff,0xbb, - 0xf5,0xeb,0x4c,0xff,0xff,0xff,0xff,0xbc,0xef,0x24,0xdc,0xff,0xff,0xff,0xff,0xbd, - 0xd5,0xcd,0x4c,0xff,0xff,0xff,0xff,0xbe,0x9e,0x4d,0x6c,0xff,0xff,0xff,0xff,0xbe, - 0xcf,0x6,0xa8,0xff,0xff,0xff,0xff,0xbf,0xb5,0xaf,0x18,0xff,0xff,0xff,0xff,0xc0, - 0xb8,0x31,0x38,0xff,0xff,0xff,0xff,0xc1,0x79,0xef,0xa8,0xff,0xff,0xff,0xff,0xc2, - 0x98,0x13,0x38,0xff,0xff,0xff,0xff,0xc3,0x59,0xd1,0xa8,0xff,0xff,0xff,0xff,0xc4, - 0x77,0xf5,0x38,0xff,0xff,0xff,0xff,0xc5,0x39,0xb3,0xa8,0xff,0xff,0xff,0xff,0xc6, - 0x61,0x11,0xb8,0xff,0xff,0xff,0xff,0xc7,0x19,0x95,0xa8,0xff,0xff,0xff,0xff,0xc8, - 0x40,0xf3,0xb8,0xff,0xff,0xff,0xff,0xc9,0x2,0xb2,0x28,0xff,0xff,0xff,0xff,0xca, - 0x20,0xd5,0xb8,0xff,0xff,0xff,0xff,0xca,0xe2,0x94,0x28,0xff,0xff,0xff,0xff,0xcc, - 0x0,0xb7,0xb8,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2, - 0x60,0xe6,0xc8,0xff,0xff,0xff,0xff,0xd3,0x88,0x44,0xd8,0xff,0xff,0xff,0xff,0xd4, - 0x4a,0x3,0x48,0xff,0xff,0xff,0xff,0xd5,0x68,0x26,0xd8,0xff,0xff,0xff,0xff,0xd6, - 0x29,0xe5,0x48,0xff,0xff,0xff,0xff,0xd7,0x48,0x8,0xd8,0xff,0xff,0xff,0xff,0xd8, - 0x9,0xc7,0x48,0xff,0xff,0xff,0xff,0xd9,0x27,0xea,0xd8,0xff,0xff,0xff,0xff,0xd9, - 0xe9,0xa9,0x48,0xff,0xff,0xff,0xff,0xdb,0x11,0x7,0x58,0xff,0xff,0xff,0xff,0xdb, - 0xd2,0xc5,0xc8,0xff,0xff,0xff,0xff,0xdc,0xde,0x74,0x58,0xff,0xff,0xff,0xff,0xdd, - 0xa9,0x6d,0x48,0xff,0xff,0xff,0xff,0xde,0xbe,0x56,0x58,0xff,0xff,0xff,0xff,0xdf, - 0x89,0x4f,0x48,0xff,0xff,0xff,0xff,0xe0,0x9e,0x38,0x58,0xff,0xff,0xff,0xff,0xe1, - 0x69,0x31,0x48,0xff,0xff,0xff,0xff,0xe2,0x7e,0x1a,0x58,0xff,0xff,0xff,0xff,0xe3, - 0x49,0x13,0x48,0xff,0xff,0xff,0xff,0xe4,0x5d,0xfc,0x58,0xff,0xff,0xff,0xff,0xe5, - 0x28,0xf5,0x48,0xff,0xff,0xff,0xff,0xe6,0x47,0x18,0xd8,0xff,0xff,0xff,0xff,0xe7, - 0x12,0x11,0xc8,0xff,0xff,0xff,0xff,0xe8,0x26,0xfa,0xd8,0xff,0xff,0xff,0xff,0xe8, - 0xf1,0xf3,0xc8,0xff,0xff,0xff,0xff,0xea,0x6,0xdc,0xd8,0xff,0xff,0xff,0xff,0xea, - 0xd1,0xd5,0xc8,0xff,0xff,0xff,0xff,0xeb,0xe6,0xbe,0xd8,0xff,0xff,0xff,0xff,0xec, - 0xb1,0xb7,0xc8,0xff,0xff,0xff,0xff,0xed,0xc6,0xa0,0xd8,0xff,0xff,0xff,0xff,0xee, - 0xbf,0xbe,0x48,0xff,0xff,0xff,0xff,0xef,0xaf,0xbd,0x58,0xff,0xff,0xff,0xff,0xf0, - 0x9f,0xa0,0x48,0xff,0xff,0xff,0xff,0xf1,0x8f,0x9f,0x58,0xff,0xff,0xff,0xff,0xf2, - 0x7f,0x82,0x48,0xff,0xff,0xff,0xff,0xf3,0x6f,0x81,0x58,0xff,0xff,0xff,0xff,0xf4, - 0x5f,0x64,0x48,0xff,0xff,0xff,0xff,0xf5,0x4f,0x63,0x58,0xff,0xff,0xff,0xff,0xf6, - 0x3f,0x46,0x48,0xff,0xff,0xff,0xff,0xf7,0x2f,0x45,0x58,0xff,0xff,0xff,0xff,0xf8, - 0x28,0x62,0xc8,0xff,0xff,0xff,0xff,0xf9,0xf,0x27,0x58,0xff,0xff,0xff,0xff,0xfa, - 0x8,0x44,0xc8,0xff,0xff,0xff,0xff,0xfa,0xf8,0x43,0xd8,0xff,0xff,0xff,0xff,0xfb, - 0xe8,0x26,0xc8,0xff,0xff,0xff,0xff,0xfc,0xd8,0x25,0xd8,0xff,0xff,0xff,0xff,0xfd, - 0xc8,0x8,0xc8,0xff,0xff,0xff,0xff,0xfe,0xb8,0x7,0xd8,0xff,0xff,0xff,0xff,0xff, - 0xa7,0xea,0xc8,0x0,0x0,0x0,0x0,0x0,0x97,0xe9,0xd8,0x0,0x0,0x0,0x0,0x1, - 0x87,0xcc,0xc8,0x0,0x0,0x0,0x0,0x2,0x77,0xcb,0xd8,0x0,0x0,0x0,0x0,0x3, - 0x70,0xe9,0x48,0x0,0x0,0x0,0x0,0x4,0x60,0xe8,0x58,0x0,0x0,0x0,0x0,0x5, - 0x50,0xcb,0x48,0x0,0x0,0x0,0x0,0x6,0x40,0xca,0x58,0x0,0x0,0x0,0x0,0x7, - 0x30,0xad,0x48,0x0,0x0,0x0,0x0,0x8,0x20,0xac,0x58,0x0,0x0,0x0,0x0,0x9, - 0x10,0x8f,0x48,0x0,0x0,0x0,0x0,0xa,0x0,0x8e,0x58,0x0,0x0,0x0,0x0,0xa, - 0xf0,0x71,0x48,0x0,0x0,0x0,0x0,0xb,0xe0,0x70,0x58,0x0,0x0,0x0,0x0,0xc, - 0xd9,0x8d,0xc8,0x0,0x0,0x0,0x0,0xd,0xc0,0x52,0x58,0x0,0x0,0x0,0x0,0xe, - 0xb9,0x6f,0xc8,0x0,0x0,0x0,0x0,0xf,0xa9,0x6e,0xd8,0x0,0x0,0x0,0x0,0x10, - 0x99,0x51,0xc8,0x0,0x0,0x0,0x0,0x11,0x89,0x50,0xd8,0x0,0x0,0x0,0x0,0x12, - 0x79,0x33,0xc8,0x0,0x0,0x0,0x0,0x13,0x69,0x32,0xd8,0x0,0x0,0x0,0x0,0x14, - 0x59,0x15,0xc8,0x0,0x0,0x0,0x0,0x15,0x49,0x14,0xd8,0x0,0x0,0x0,0x0,0x16, - 0x38,0xf7,0xc8,0x0,0x0,0x0,0x0,0x17,0x28,0xf6,0xd8,0x0,0x0,0x0,0x0,0x18, - 0x22,0x14,0x48,0x0,0x0,0x0,0x0,0x19,0x8,0xd8,0xd8,0x0,0x0,0x0,0x0,0x1a, - 0x1,0xf6,0x48,0x0,0x0,0x0,0x0,0x1a,0xf1,0xf5,0x58,0x0,0x0,0x0,0x0,0x1b, - 0xe1,0xd8,0x48,0x0,0x0,0x0,0x0,0x1c,0xd1,0xd7,0x58,0x0,0x0,0x0,0x0,0x1d, - 0xc1,0xba,0x48,0x0,0x0,0x0,0x0,0x1e,0xb1,0xb9,0x58,0x0,0x0,0x0,0x0,0x1f, - 0xa1,0x9c,0x48,0x0,0x0,0x0,0x0,0x20,0x75,0xcf,0xf4,0x0,0x0,0x0,0x0,0x21, - 0x81,0x62,0x64,0x0,0x0,0x0,0x0,0x22,0x55,0xb1,0xf4,0x0,0x0,0x0,0x0,0x23, - 0x6a,0x70,0xd4,0x0,0x0,0x0,0x0,0x24,0x35,0x93,0xf4,0x0,0x0,0x0,0x0,0x25, - 0x4a,0x60,0xe4,0x0,0x0,0x0,0x0,0x26,0x15,0x75,0xf4,0x0,0x0,0x0,0x0,0x27, - 0x2a,0x42,0xe4,0x0,0x0,0x0,0x0,0x27,0xfe,0x92,0x74,0x0,0x0,0x0,0x0,0x29, - 0xa,0x24,0xe4,0x0,0x0,0x0,0x0,0x29,0xde,0x74,0x74,0x0,0x0,0x0,0x0,0x2a, - 0xea,0x6,0xe4,0x0,0x0,0x0,0x0,0x2b,0xbe,0x56,0x74,0x0,0x0,0x0,0x0,0x2c, - 0xd3,0x23,0x64,0x0,0x0,0x0,0x0,0x2d,0x9e,0x38,0x74,0x0,0x0,0x0,0x0,0x2e, - 0xb3,0x5,0x64,0x0,0x0,0x0,0x0,0x2f,0x7e,0x1a,0x74,0x0,0x0,0x0,0x0,0x30, - 0x92,0xe7,0x64,0x0,0x0,0x0,0x0,0x31,0x67,0x36,0xf4,0x0,0x0,0x0,0x0,0x32, - 0x72,0xc9,0x64,0x0,0x0,0x0,0x0,0x33,0x47,0x18,0xf4,0x0,0x0,0x0,0x0,0x34, - 0x52,0xab,0x64,0x0,0x0,0x0,0x0,0x35,0x26,0xfa,0xf4,0x0,0x0,0x0,0x0,0x36, - 0x32,0x8d,0x64,0x0,0x0,0x0,0x0,0x37,0x6,0xdc,0xf4,0x0,0x0,0x0,0x0,0x38, - 0x1b,0xa9,0xe4,0x0,0x0,0x0,0x0,0x38,0xe6,0xbe,0xf4,0x0,0x0,0x0,0x0,0x39, - 0xfb,0x8b,0xe4,0x0,0x0,0x0,0x0,0x3a,0xc6,0xa0,0xf4,0x0,0x0,0x0,0x0,0x3b, - 0xdb,0x6d,0xe4,0x0,0x0,0x0,0x0,0x3c,0xaf,0xbd,0x74,0x0,0x0,0x0,0x0,0x3d, - 0xbb,0x4f,0xe4,0x0,0x0,0x0,0x0,0x3e,0x8f,0x9f,0x74,0x0,0x0,0x0,0x0,0x3f, - 0x9b,0x31,0xe4,0x0,0x0,0x0,0x0,0x40,0x6f,0x81,0x74,0x0,0x0,0x0,0x0,0x41, - 0x84,0x4e,0x64,0x0,0x0,0x0,0x0,0x42,0x4f,0x63,0x74,0x0,0x0,0x0,0x0,0x43, - 0x64,0x30,0x64,0x0,0x0,0x0,0x0,0x44,0x2f,0x45,0x74,0x0,0x0,0x0,0x0,0x45, - 0x44,0x12,0x64,0x0,0x0,0x0,0x0,0x45,0xf3,0x77,0xf4,0x0,0x0,0x0,0x0,0x47, - 0x2d,0x2e,0xe4,0x0,0x0,0x0,0x0,0x47,0xd3,0x59,0xf4,0x0,0x0,0x0,0x0,0x49, - 0xd,0x10,0xe4,0x0,0x0,0x0,0x0,0x49,0xb3,0x3b,0xf4,0x0,0x0,0x0,0x0,0x4a, - 0xec,0xf2,0xe4,0x0,0x0,0x0,0x0,0x4b,0x9c,0x58,0x74,0x0,0x0,0x0,0x0,0x4c, - 0xd6,0xf,0x64,0x0,0x0,0x0,0x0,0x4d,0x7c,0x3a,0x74,0x0,0x0,0x0,0x0,0x4e, - 0xb6,0xd,0x48,0x0,0x0,0x0,0x0,0x4f,0x5c,0x38,0x58,0x0,0x0,0x0,0x0,0x50, - 0x95,0xef,0x48,0x0,0x0,0x0,0x0,0x51,0x3c,0x1a,0x58,0x0,0x0,0x0,0x0,0x52, - 0x75,0xd1,0x48,0x0,0x0,0x0,0x0,0x53,0x1b,0xfc,0x58,0x0,0x0,0x0,0x0,0x54, - 0x55,0xb3,0x48,0x0,0x0,0x0,0x0,0x54,0xfb,0xde,0x58,0x0,0x0,0x0,0x0,0x56, - 0x35,0x95,0x48,0x0,0x0,0x0,0x0,0x56,0xe4,0xfa,0xd8,0x0,0x0,0x0,0x0,0x58, - 0x1e,0xb1,0xc8,0x0,0x0,0x0,0x0,0x58,0xc4,0xdc,0xd8,0x0,0x0,0x0,0x0,0x59, - 0xfe,0x93,0xc8,0x0,0x0,0x0,0x0,0x5a,0xa4,0xbe,0xd8,0x0,0x0,0x0,0x0,0x5b, - 0xde,0x75,0xc8,0x0,0x0,0x0,0x0,0x5c,0x84,0xa0,0xd8,0x0,0x0,0x0,0x0,0x5d, - 0xbe,0x57,0xc8,0x0,0x0,0x0,0x0,0x5e,0x64,0x82,0xd8,0x0,0x0,0x0,0x0,0x5f, - 0x9e,0x39,0xc8,0x0,0x0,0x0,0x0,0x60,0x4d,0x9f,0x58,0x0,0x0,0x0,0x0,0x61, - 0x87,0x56,0x48,0x0,0x0,0x0,0x0,0x62,0x2d,0x81,0x58,0x0,0x0,0x0,0x0,0x63, - 0x67,0x38,0x48,0x0,0x0,0x0,0x0,0x64,0xd,0x63,0x58,0x0,0x0,0x0,0x0,0x65, - 0x47,0x1a,0x48,0x0,0x0,0x0,0x0,0x65,0xed,0x45,0x58,0x0,0x0,0x0,0x0,0x67, - 0x26,0xfc,0x48,0x0,0x0,0x0,0x0,0x67,0xcd,0x27,0x58,0x0,0x0,0x0,0x0,0x69, - 0x6,0xde,0x48,0x0,0x0,0x0,0x0,0x69,0xad,0x9,0x58,0x0,0x0,0x0,0x0,0x6a, - 0xe6,0xc0,0x48,0x0,0x0,0x0,0x0,0x6b,0x96,0x25,0xd8,0x0,0x0,0x0,0x0,0x6c, - 0xcf,0xdc,0xc8,0x0,0x0,0x0,0x0,0x6d,0x76,0x7,0xd8,0x0,0x0,0x0,0x0,0x6e, - 0xaf,0xbe,0xc8,0x0,0x0,0x0,0x0,0x6f,0x55,0xe9,0xd8,0x0,0x0,0x0,0x0,0x70, - 0x8f,0xa0,0xc8,0x0,0x0,0x0,0x0,0x71,0x35,0xcb,0xd8,0x0,0x0,0x0,0x0,0x72, - 0x6f,0x82,0xc8,0x0,0x0,0x0,0x0,0x73,0x15,0xad,0xd8,0x0,0x0,0x0,0x0,0x74, - 0x4f,0x64,0xc8,0x0,0x0,0x0,0x0,0x74,0xfe,0xca,0x58,0x0,0x0,0x0,0x0,0x76, - 0x38,0x81,0x48,0x0,0x0,0x0,0x0,0x76,0xde,0xac,0x58,0x0,0x0,0x0,0x0,0x78, - 0x18,0x63,0x48,0x0,0x0,0x0,0x0,0x78,0xbe,0x8e,0x58,0x0,0x0,0x0,0x0,0x79, - 0xf8,0x45,0x48,0x0,0x0,0x0,0x0,0x7a,0x9e,0x70,0x58,0x0,0x0,0x0,0x0,0x7b, - 0xd8,0x27,0x48,0x0,0x0,0x0,0x0,0x7c,0x7e,0x52,0x58,0x0,0x0,0x0,0x0,0x7d, - 0xb8,0x9,0x48,0x0,0x0,0x0,0x0,0x7e,0x5e,0x34,0x58,0x0,0x0,0x0,0x0,0x7f, - 0x97,0xeb,0x48,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x6,0x5,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x7, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0xff,0xff,0xce,0x94,0x0,0x0,0xff,0xff,0xdc,0xa4,0x1,0x4,0xff, - 0xff,0xce,0x94,0x0,0x8,0xff,0xff,0xdc,0xd8,0x1,0x4,0xff,0xff,0xce,0xc8,0x0, - 0x8,0xff,0xff,0xdc,0xd8,0x1,0xc,0xff,0xff,0xdc,0xd8,0x1,0x10,0xff,0xff,0xea, - 0xe8,0x1,0x14,0xff,0xff,0xdc,0xd8,0x1,0x4,0x4c,0x4d,0x54,0x0,0x4e,0x44,0x54, - 0x0,0x4e,0x53,0x54,0x0,0x4e,0x50,0x54,0x0,0x4e,0x57,0x54,0x0,0x4e,0x44,0x44, - 0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x1,0x0,0x0,0x0,0xa,0x4e,0x53,0x54,0x33,0x3a,0x33,0x30,0x4e,0x44,0x54,0x2c, - 0x4d,0x33,0x2e,0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Sitka - 0x0,0x0,0x9,0x2e, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0xff,0xff,0xa2,0x40,0x0,0x0,0xff,0xff,0xab,0xa0,0x0,0x4,0xff, + 0xff,0xb9,0xb0,0x1,0x8,0x4c,0x4d,0x54,0x0,0x43,0x53,0x54,0x0,0x43,0x44,0x54, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0, + 0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x58,0x0,0x0,0x0,0x3,0x0, + 0x0,0x0,0xc,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xa5, + 0xb6,0xda,0x60,0x0,0x0,0x0,0x0,0x22,0x55,0xf1,0x0,0x0,0x0,0x0,0x0,0x23, + 0x6a,0xbd,0xf0,0x0,0x0,0x0,0x0,0x31,0x67,0x76,0x0,0x0,0x0,0x0,0x0,0x32, + 0x73,0x8,0x70,0x0,0x0,0x0,0x0,0x33,0x47,0x58,0x0,0x0,0x0,0x0,0x0,0x34, + 0x52,0xea,0x70,0x0,0x0,0x0,0x0,0x35,0x27,0x3a,0x0,0x0,0x0,0x0,0x0,0x36, + 0x32,0xcc,0x70,0x0,0x0,0x0,0x0,0x37,0x7,0x1c,0x0,0x0,0x0,0x0,0x0,0x38, + 0x1b,0xe8,0xf0,0x0,0x0,0x0,0x0,0x38,0xe6,0xfe,0x0,0x0,0x0,0x0,0x0,0x39, + 0xfb,0xca,0xf0,0x0,0x0,0x0,0x0,0x3a,0xf5,0x4,0x80,0x0,0x0,0x0,0x0,0x3b, + 0xb6,0xc2,0xf0,0x0,0x0,0x0,0x0,0x3c,0xaf,0xfc,0x80,0x0,0x0,0x0,0x0,0x3d, + 0xbb,0x8e,0xf0,0x0,0x0,0x0,0x0,0x3e,0x8f,0xde,0x80,0x0,0x0,0x0,0x0,0x3f, + 0x9b,0x70,0xf0,0x0,0x0,0x0,0x0,0x40,0x6f,0xc0,0x80,0x0,0x0,0x0,0x0,0x41, + 0x84,0x8d,0x70,0x0,0x0,0x0,0x0,0x42,0x4f,0xa2,0x80,0x0,0x0,0x0,0x0,0x43, + 0x64,0x6f,0x70,0x0,0x0,0x0,0x0,0x44,0x2f,0x84,0x80,0x0,0x0,0x0,0x0,0x45, + 0x44,0x51,0x70,0x0,0x0,0x0,0x0,0x46,0xf,0x66,0x80,0x0,0x0,0x0,0x0,0x47, + 0x24,0x33,0x70,0x0,0x0,0x0,0x0,0x47,0xf8,0x83,0x0,0x0,0x0,0x0,0x0,0x49, + 0x4,0x15,0x70,0x0,0x0,0x0,0x0,0x49,0xd8,0x65,0x0,0x0,0x0,0x0,0x0,0x4a, + 0xe3,0xf7,0x70,0x0,0x0,0x0,0x0,0x4b,0x9c,0x97,0x80,0x0,0x0,0x0,0x0,0x4c, + 0xd6,0x4e,0x70,0x0,0x0,0x0,0x0,0x4d,0x7c,0x79,0x80,0x0,0x0,0x0,0x0,0x4e, + 0xb6,0x30,0x70,0x0,0x0,0x0,0x0,0x4f,0x5c,0x5b,0x80,0x0,0x0,0x0,0x0,0x50, + 0x96,0x12,0x70,0x0,0x0,0x0,0x0,0x51,0x3c,0x3d,0x80,0x0,0x0,0x0,0x0,0x52, + 0x75,0xf4,0x70,0x0,0x0,0x0,0x0,0x53,0x1c,0x1f,0x80,0x0,0x0,0x0,0x0,0x54, + 0x55,0xd6,0x70,0x0,0x0,0x0,0x0,0x54,0xfc,0x1,0x80,0x0,0x0,0x0,0x0,0x56, + 0x35,0xb8,0x70,0x0,0x0,0x0,0x0,0x56,0xe5,0x1e,0x0,0x0,0x0,0x0,0x0,0x58, + 0x1e,0xd4,0xf0,0x0,0x0,0x0,0x0,0x58,0xc5,0x0,0x0,0x0,0x0,0x0,0x0,0x59, + 0xfe,0xb6,0xf0,0x0,0x0,0x0,0x0,0x5a,0xa4,0xe2,0x0,0x0,0x0,0x0,0x0,0x5b, + 0xde,0x98,0xf0,0x0,0x0,0x0,0x0,0x5c,0x84,0xc4,0x0,0x0,0x0,0x0,0x0,0x5d, + 0xbe,0x7a,0xf0,0x0,0x0,0x0,0x0,0x5e,0x64,0xa6,0x0,0x0,0x0,0x0,0x0,0x5f, + 0x9e,0x5c,0xf0,0x0,0x0,0x0,0x0,0x60,0x4d,0xc2,0x80,0x0,0x0,0x0,0x0,0x61, + 0x87,0x79,0x70,0x0,0x0,0x0,0x0,0x62,0x2d,0xa4,0x80,0x0,0x0,0x0,0x0,0x63, + 0x67,0x5b,0x70,0x0,0x0,0x0,0x0,0x64,0xd,0x86,0x80,0x0,0x0,0x0,0x0,0x65, + 0x47,0x3d,0x70,0x0,0x0,0x0,0x0,0x65,0xed,0x68,0x80,0x0,0x0,0x0,0x0,0x67, + 0x27,0x1f,0x70,0x0,0x0,0x0,0x0,0x67,0xcd,0x4a,0x80,0x0,0x0,0x0,0x0,0x69, + 0x7,0x1,0x70,0x0,0x0,0x0,0x0,0x69,0xad,0x2c,0x80,0x0,0x0,0x0,0x0,0x6a, + 0xe6,0xe3,0x70,0x0,0x0,0x0,0x0,0x6b,0x96,0x49,0x0,0x0,0x0,0x0,0x0,0x6c, + 0xcf,0xff,0xf0,0x0,0x0,0x0,0x0,0x6d,0x76,0x2b,0x0,0x0,0x0,0x0,0x0,0x6e, + 0xaf,0xe1,0xf0,0x0,0x0,0x0,0x0,0x6f,0x56,0xd,0x0,0x0,0x0,0x0,0x0,0x70, + 0x8f,0xc3,0xf0,0x0,0x0,0x0,0x0,0x71,0x35,0xef,0x0,0x0,0x0,0x0,0x0,0x72, + 0x6f,0xa5,0xf0,0x0,0x0,0x0,0x0,0x73,0x15,0xd1,0x0,0x0,0x0,0x0,0x0,0x74, + 0x4f,0x87,0xf0,0x0,0x0,0x0,0x0,0x74,0xfe,0xed,0x80,0x0,0x0,0x0,0x0,0x76, + 0x38,0xa4,0x70,0x0,0x0,0x0,0x0,0x76,0xde,0xcf,0x80,0x0,0x0,0x0,0x0,0x78, + 0x18,0x86,0x70,0x0,0x0,0x0,0x0,0x78,0xbe,0xb1,0x80,0x0,0x0,0x0,0x0,0x79, + 0xf8,0x68,0x70,0x0,0x0,0x0,0x0,0x7a,0x9e,0x93,0x80,0x0,0x0,0x0,0x0,0x7b, + 0xd8,0x4a,0x70,0x0,0x0,0x0,0x0,0x7c,0x7e,0x75,0x80,0x0,0x0,0x0,0x0,0x7d, + 0xb8,0x2c,0x70,0x0,0x0,0x0,0x0,0x7e,0x5e,0x57,0x80,0x0,0x0,0x0,0x0,0x7f, + 0x98,0xe,0x70,0x0,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0xff,0xff,0xa2,0x40,0x0, + 0x0,0xff,0xff,0xab,0xa0,0x0,0x4,0xff,0xff,0xb9,0xb0,0x1,0x8,0x4c,0x4d,0x54, + 0x0,0x43,0x53,0x54,0x0,0x43,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa, + 0x43,0x53,0x54,0x36,0x43,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30,0x2c,0x4d, + 0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Montreal + 0x0,0x0,0xd,0xaf, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x8f,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x22,0x80,0x0,0x0,0x0,0xcb, - 0x89,0x1a,0xa0,0xd2,0x23,0xf4,0x70,0xd2,0x61,0x26,0x10,0xfe,0xb8,0x47,0x20,0xff, - 0xa8,0x2a,0x10,0x0,0x98,0x29,0x20,0x1,0x88,0xc,0x10,0x2,0x78,0xb,0x20,0x3, - 0x71,0x28,0x90,0x4,0x61,0x27,0xa0,0x5,0x51,0xa,0x90,0x6,0x41,0x9,0xa0,0x7, - 0x30,0xec,0x90,0x7,0x8d,0x43,0xa0,0x9,0x10,0xce,0x90,0x9,0xad,0xbf,0x20,0xa, - 0xf0,0xb0,0x90,0xb,0xe0,0xaf,0xa0,0xc,0xd9,0xcd,0x10,0xd,0xc0,0x91,0xa0,0xe, - 0xb9,0xaf,0x10,0xf,0xa9,0xae,0x20,0x10,0x99,0x91,0x10,0x11,0x89,0x90,0x20,0x12, - 0x79,0x73,0x10,0x13,0x69,0x72,0x20,0x14,0x59,0x55,0x10,0x15,0x49,0x54,0x20,0x16, - 0x39,0x37,0x10,0x17,0x29,0x36,0x20,0x18,0x22,0x53,0x90,0x19,0x9,0x18,0x20,0x1a, - 0x2,0x35,0x90,0x1a,0x2b,0x14,0x10,0x1a,0xf2,0x42,0xb0,0x1b,0xe2,0x25,0xa0,0x1c, - 0xd2,0x24,0xb0,0x1d,0xc2,0x7,0xa0,0x1e,0xb2,0x6,0xb0,0x1f,0xa1,0xe9,0xa0,0x20, - 0x76,0x39,0x30,0x21,0x81,0xcb,0xa0,0x22,0x56,0x1b,0x30,0x23,0x6a,0xe8,0x20,0x24, - 0x35,0xfd,0x30,0x25,0x4a,0xca,0x20,0x26,0x15,0xdf,0x30,0x27,0x2a,0xac,0x20,0x27, - 0xfe,0xfb,0xb0,0x29,0xa,0x8e,0x20,0x29,0xde,0xdd,0xb0,0x2a,0xea,0x70,0x20,0x2b, - 0xbe,0xbf,0xb0,0x2c,0xd3,0x8c,0xa0,0x2d,0x9e,0xa1,0xb0,0x2e,0xb3,0x6e,0xa0,0x2f, - 0x7e,0x83,0xb0,0x30,0x93,0x50,0xa0,0x31,0x67,0xa0,0x30,0x32,0x73,0x32,0xa0,0x33, - 0x47,0x82,0x30,0x34,0x53,0x14,0xa0,0x35,0x27,0x64,0x30,0x36,0x32,0xf6,0xa0,0x37, - 0x7,0x46,0x30,0x38,0x1c,0x13,0x20,0x38,0xe7,0x28,0x30,0x39,0xfb,0xf5,0x20,0x3a, - 0xc7,0xa,0x30,0x3b,0xdb,0xd7,0x20,0x3c,0xb0,0x26,0xb0,0x3d,0xbb,0xb9,0x20,0x3e, - 0x90,0x8,0xb0,0x3f,0x9b,0x9b,0x20,0x40,0x6f,0xea,0xb0,0x41,0x84,0xb7,0xa0,0x42, - 0x4f,0xcc,0xb0,0x43,0x64,0x99,0xa0,0x44,0x2f,0xae,0xb0,0x45,0x44,0x7b,0xa0,0x45, - 0xf3,0xe1,0x30,0x47,0x2d,0x98,0x20,0x47,0xd3,0xc3,0x30,0x49,0xd,0x7a,0x20,0x49, - 0xb3,0xa5,0x30,0x4a,0xed,0x5c,0x20,0x4b,0x9c,0xc1,0xb0,0x4c,0xd6,0x78,0xa0,0x4d, - 0x7c,0xa3,0xb0,0x4e,0xb6,0x5a,0xa0,0x4f,0x5c,0x85,0xb0,0x50,0x96,0x3c,0xa0,0x51, - 0x3c,0x67,0xb0,0x52,0x76,0x1e,0xa0,0x53,0x1c,0x49,0xb0,0x54,0x56,0x0,0xa0,0x54, - 0xfc,0x2b,0xb0,0x56,0x35,0xe2,0xa0,0x56,0xe5,0x48,0x30,0x58,0x1e,0xff,0x20,0x58, - 0xc5,0x2a,0x30,0x59,0xfe,0xe1,0x20,0x5a,0xa5,0xc,0x30,0x5b,0xde,0xc3,0x20,0x5c, - 0x84,0xee,0x30,0x5d,0xbe,0xa5,0x20,0x5e,0x64,0xd0,0x30,0x5f,0x9e,0x87,0x20,0x60, - 0x4d,0xec,0xb0,0x61,0x87,0xa3,0xa0,0x62,0x2d,0xce,0xb0,0x63,0x67,0x85,0xa0,0x64, - 0xd,0xb0,0xb0,0x65,0x47,0x67,0xa0,0x65,0xed,0x92,0xb0,0x67,0x27,0x49,0xa0,0x67, - 0xcd,0x74,0xb0,0x69,0x7,0x2b,0xa0,0x69,0xad,0x56,0xb0,0x6a,0xe7,0xd,0xa0,0x6b, - 0x96,0x73,0x30,0x6c,0xd0,0x2a,0x20,0x6d,0x76,0x55,0x30,0x6e,0xb0,0xc,0x20,0x6f, - 0x56,0x37,0x30,0x70,0x8f,0xee,0x20,0x71,0x36,0x19,0x30,0x72,0x6f,0xd0,0x20,0x73, - 0x15,0xfb,0x30,0x74,0x4f,0xb2,0x20,0x74,0xff,0x17,0xb0,0x76,0x38,0xce,0xa0,0x76, - 0xde,0xf9,0xb0,0x78,0x18,0xb0,0xa0,0x78,0xbe,0xdb,0xb0,0x79,0xf8,0x92,0xa0,0x7a, - 0x9e,0xbd,0xb0,0x7b,0xd8,0x74,0xa0,0x7c,0x7e,0x9f,0xb0,0x7d,0xb8,0x56,0xa0,0x7e, - 0x5e,0x81,0xb0,0x7f,0x98,0x38,0xa0,0x1,0x2,0x3,0x1,0x4,0x1,0x4,0x1,0x4, - 0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4, - 0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x5,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0xff,0xff,0x81,0x27,0x0,0x0,0xff,0xff,0x8f,0x80, - 0x0,0x4,0xff,0xff,0x9d,0x90,0x1,0x8,0xff,0xff,0x9d,0x90,0x1,0xc,0xff,0xff, - 0x9d,0x90,0x1,0x10,0xff,0xff,0x81,0x70,0x0,0x14,0xff,0xff,0x8f,0x80,0x1,0x18, - 0xff,0xff,0x81,0x70,0x0,0x1d,0x4c,0x4d,0x54,0x0,0x50,0x53,0x54,0x0,0x50,0x57, - 0x54,0x0,0x50,0x50,0x54,0x0,0x50,0x44,0x54,0x0,0x59,0x53,0x54,0x0,0x41,0x4b, - 0x44,0x54,0x0,0x41,0x4b,0x53,0x54,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa, - 0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0x0,0x0,0x0,0xa, - 0x0,0x0,0x0,0x26,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff, - 0x3f,0xc0,0xd2,0x59,0xff,0xff,0xff,0xff,0x7d,0x87,0x33,0x99,0xff,0xff,0xff,0xff, - 0xcb,0x89,0x1a,0xa0,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff, - 0xd2,0x61,0x26,0x10,0xff,0xff,0xff,0xff,0xfe,0xb8,0x47,0x20,0xff,0xff,0xff,0xff, - 0xff,0xa8,0x2a,0x10,0x0,0x0,0x0,0x0,0x0,0x98,0x29,0x20,0x0,0x0,0x0,0x0, - 0x1,0x88,0xc,0x10,0x0,0x0,0x0,0x0,0x2,0x78,0xb,0x20,0x0,0x0,0x0,0x0, - 0x3,0x71,0x28,0x90,0x0,0x0,0x0,0x0,0x4,0x61,0x27,0xa0,0x0,0x0,0x0,0x0, - 0x5,0x51,0xa,0x90,0x0,0x0,0x0,0x0,0x6,0x41,0x9,0xa0,0x0,0x0,0x0,0x0, - 0x7,0x30,0xec,0x90,0x0,0x0,0x0,0x0,0x7,0x8d,0x43,0xa0,0x0,0x0,0x0,0x0, - 0x9,0x10,0xce,0x90,0x0,0x0,0x0,0x0,0x9,0xad,0xbf,0x20,0x0,0x0,0x0,0x0, - 0xa,0xf0,0xb0,0x90,0x0,0x0,0x0,0x0,0xb,0xe0,0xaf,0xa0,0x0,0x0,0x0,0x0, - 0xc,0xd9,0xcd,0x10,0x0,0x0,0x0,0x0,0xd,0xc0,0x91,0xa0,0x0,0x0,0x0,0x0, - 0xe,0xb9,0xaf,0x10,0x0,0x0,0x0,0x0,0xf,0xa9,0xae,0x20,0x0,0x0,0x0,0x0, - 0x10,0x99,0x91,0x10,0x0,0x0,0x0,0x0,0x11,0x89,0x90,0x20,0x0,0x0,0x0,0x0, - 0x12,0x79,0x73,0x10,0x0,0x0,0x0,0x0,0x13,0x69,0x72,0x20,0x0,0x0,0x0,0x0, - 0x14,0x59,0x55,0x10,0x0,0x0,0x0,0x0,0x15,0x49,0x54,0x20,0x0,0x0,0x0,0x0, - 0x16,0x39,0x37,0x10,0x0,0x0,0x0,0x0,0x17,0x29,0x36,0x20,0x0,0x0,0x0,0x0, - 0x18,0x22,0x53,0x90,0x0,0x0,0x0,0x0,0x19,0x9,0x18,0x20,0x0,0x0,0x0,0x0, - 0x1a,0x2,0x35,0x90,0x0,0x0,0x0,0x0,0x1a,0x2b,0x14,0x10,0x0,0x0,0x0,0x0, - 0x1a,0xf2,0x42,0xb0,0x0,0x0,0x0,0x0,0x1b,0xe2,0x25,0xa0,0x0,0x0,0x0,0x0, - 0x1c,0xd2,0x24,0xb0,0x0,0x0,0x0,0x0,0x1d,0xc2,0x7,0xa0,0x0,0x0,0x0,0x0, - 0x1e,0xb2,0x6,0xb0,0x0,0x0,0x0,0x0,0x1f,0xa1,0xe9,0xa0,0x0,0x0,0x0,0x0, - 0x20,0x76,0x39,0x30,0x0,0x0,0x0,0x0,0x21,0x81,0xcb,0xa0,0x0,0x0,0x0,0x0, - 0x22,0x56,0x1b,0x30,0x0,0x0,0x0,0x0,0x23,0x6a,0xe8,0x20,0x0,0x0,0x0,0x0, - 0x24,0x35,0xfd,0x30,0x0,0x0,0x0,0x0,0x25,0x4a,0xca,0x20,0x0,0x0,0x0,0x0, - 0x26,0x15,0xdf,0x30,0x0,0x0,0x0,0x0,0x27,0x2a,0xac,0x20,0x0,0x0,0x0,0x0, - 0x27,0xfe,0xfb,0xb0,0x0,0x0,0x0,0x0,0x29,0xa,0x8e,0x20,0x0,0x0,0x0,0x0, - 0x29,0xde,0xdd,0xb0,0x0,0x0,0x0,0x0,0x2a,0xea,0x70,0x20,0x0,0x0,0x0,0x0, - 0x2b,0xbe,0xbf,0xb0,0x0,0x0,0x0,0x0,0x2c,0xd3,0x8c,0xa0,0x0,0x0,0x0,0x0, - 0x2d,0x9e,0xa1,0xb0,0x0,0x0,0x0,0x0,0x2e,0xb3,0x6e,0xa0,0x0,0x0,0x0,0x0, - 0x2f,0x7e,0x83,0xb0,0x0,0x0,0x0,0x0,0x30,0x93,0x50,0xa0,0x0,0x0,0x0,0x0, - 0x31,0x67,0xa0,0x30,0x0,0x0,0x0,0x0,0x32,0x73,0x32,0xa0,0x0,0x0,0x0,0x0, - 0x33,0x47,0x82,0x30,0x0,0x0,0x0,0x0,0x34,0x53,0x14,0xa0,0x0,0x0,0x0,0x0, - 0x35,0x27,0x64,0x30,0x0,0x0,0x0,0x0,0x36,0x32,0xf6,0xa0,0x0,0x0,0x0,0x0, - 0x37,0x7,0x46,0x30,0x0,0x0,0x0,0x0,0x38,0x1c,0x13,0x20,0x0,0x0,0x0,0x0, - 0x38,0xe7,0x28,0x30,0x0,0x0,0x0,0x0,0x39,0xfb,0xf5,0x20,0x0,0x0,0x0,0x0, - 0x3a,0xc7,0xa,0x30,0x0,0x0,0x0,0x0,0x3b,0xdb,0xd7,0x20,0x0,0x0,0x0,0x0, - 0x3c,0xb0,0x26,0xb0,0x0,0x0,0x0,0x0,0x3d,0xbb,0xb9,0x20,0x0,0x0,0x0,0x0, - 0x3e,0x90,0x8,0xb0,0x0,0x0,0x0,0x0,0x3f,0x9b,0x9b,0x20,0x0,0x0,0x0,0x0, - 0x40,0x6f,0xea,0xb0,0x0,0x0,0x0,0x0,0x41,0x84,0xb7,0xa0,0x0,0x0,0x0,0x0, - 0x42,0x4f,0xcc,0xb0,0x0,0x0,0x0,0x0,0x43,0x64,0x99,0xa0,0x0,0x0,0x0,0x0, - 0x44,0x2f,0xae,0xb0,0x0,0x0,0x0,0x0,0x45,0x44,0x7b,0xa0,0x0,0x0,0x0,0x0, - 0x45,0xf3,0xe1,0x30,0x0,0x0,0x0,0x0,0x47,0x2d,0x98,0x20,0x0,0x0,0x0,0x0, - 0x47,0xd3,0xc3,0x30,0x0,0x0,0x0,0x0,0x49,0xd,0x7a,0x20,0x0,0x0,0x0,0x0, - 0x49,0xb3,0xa5,0x30,0x0,0x0,0x0,0x0,0x4a,0xed,0x5c,0x20,0x0,0x0,0x0,0x0, - 0x4b,0x9c,0xc1,0xb0,0x0,0x0,0x0,0x0,0x4c,0xd6,0x78,0xa0,0x0,0x0,0x0,0x0, - 0x4d,0x7c,0xa3,0xb0,0x0,0x0,0x0,0x0,0x4e,0xb6,0x5a,0xa0,0x0,0x0,0x0,0x0, - 0x4f,0x5c,0x85,0xb0,0x0,0x0,0x0,0x0,0x50,0x96,0x3c,0xa0,0x0,0x0,0x0,0x0, - 0x51,0x3c,0x67,0xb0,0x0,0x0,0x0,0x0,0x52,0x76,0x1e,0xa0,0x0,0x0,0x0,0x0, - 0x53,0x1c,0x49,0xb0,0x0,0x0,0x0,0x0,0x54,0x56,0x0,0xa0,0x0,0x0,0x0,0x0, - 0x54,0xfc,0x2b,0xb0,0x0,0x0,0x0,0x0,0x56,0x35,0xe2,0xa0,0x0,0x0,0x0,0x0, - 0x56,0xe5,0x48,0x30,0x0,0x0,0x0,0x0,0x58,0x1e,0xff,0x20,0x0,0x0,0x0,0x0, - 0x58,0xc5,0x2a,0x30,0x0,0x0,0x0,0x0,0x59,0xfe,0xe1,0x20,0x0,0x0,0x0,0x0, - 0x5a,0xa5,0xc,0x30,0x0,0x0,0x0,0x0,0x5b,0xde,0xc3,0x20,0x0,0x0,0x0,0x0, - 0x5c,0x84,0xee,0x30,0x0,0x0,0x0,0x0,0x5d,0xbe,0xa5,0x20,0x0,0x0,0x0,0x0, - 0x5e,0x64,0xd0,0x30,0x0,0x0,0x0,0x0,0x5f,0x9e,0x87,0x20,0x0,0x0,0x0,0x0, - 0x60,0x4d,0xec,0xb0,0x0,0x0,0x0,0x0,0x61,0x87,0xa3,0xa0,0x0,0x0,0x0,0x0, - 0x62,0x2d,0xce,0xb0,0x0,0x0,0x0,0x0,0x63,0x67,0x85,0xa0,0x0,0x0,0x0,0x0, - 0x64,0xd,0xb0,0xb0,0x0,0x0,0x0,0x0,0x65,0x47,0x67,0xa0,0x0,0x0,0x0,0x0, - 0x65,0xed,0x92,0xb0,0x0,0x0,0x0,0x0,0x67,0x27,0x49,0xa0,0x0,0x0,0x0,0x0, - 0x67,0xcd,0x74,0xb0,0x0,0x0,0x0,0x0,0x69,0x7,0x2b,0xa0,0x0,0x0,0x0,0x0, - 0x69,0xad,0x56,0xb0,0x0,0x0,0x0,0x0,0x6a,0xe7,0xd,0xa0,0x0,0x0,0x0,0x0, - 0x6b,0x96,0x73,0x30,0x0,0x0,0x0,0x0,0x6c,0xd0,0x2a,0x20,0x0,0x0,0x0,0x0, - 0x6d,0x76,0x55,0x30,0x0,0x0,0x0,0x0,0x6e,0xb0,0xc,0x20,0x0,0x0,0x0,0x0, - 0x6f,0x56,0x37,0x30,0x0,0x0,0x0,0x0,0x70,0x8f,0xee,0x20,0x0,0x0,0x0,0x0, - 0x71,0x36,0x19,0x30,0x0,0x0,0x0,0x0,0x72,0x6f,0xd0,0x20,0x0,0x0,0x0,0x0, - 0x73,0x15,0xfb,0x30,0x0,0x0,0x0,0x0,0x74,0x4f,0xb2,0x20,0x0,0x0,0x0,0x0, - 0x74,0xff,0x17,0xb0,0x0,0x0,0x0,0x0,0x76,0x38,0xce,0xa0,0x0,0x0,0x0,0x0, - 0x76,0xde,0xf9,0xb0,0x0,0x0,0x0,0x0,0x78,0x18,0xb0,0xa0,0x0,0x0,0x0,0x0, - 0x78,0xbe,0xdb,0xb0,0x0,0x0,0x0,0x0,0x79,0xf8,0x92,0xa0,0x0,0x0,0x0,0x0, - 0x7a,0x9e,0xbd,0xb0,0x0,0x0,0x0,0x0,0x7b,0xd8,0x74,0xa0,0x0,0x0,0x0,0x0, - 0x7c,0x7e,0x9f,0xb0,0x0,0x0,0x0,0x0,0x7d,0xb8,0x56,0xa0,0x0,0x0,0x0,0x0, - 0x7e,0x5e,0x81,0xb0,0x0,0x0,0x0,0x0,0x7f,0x98,0x38,0xa0,0x0,0x1,0x2,0x3, - 0x4,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2, - 0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x6, - 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, - 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, - 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, - 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, - 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, - 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, - 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x0,0x0,0xd2, - 0xa7,0x0,0x0,0xff,0xff,0x81,0x27,0x0,0x0,0xff,0xff,0x8f,0x80,0x0,0x4,0xff, - 0xff,0x9d,0x90,0x1,0x8,0xff,0xff,0x9d,0x90,0x1,0xc,0xff,0xff,0x9d,0x90,0x1, - 0x10,0xff,0xff,0x81,0x70,0x0,0x14,0xff,0xff,0x8f,0x80,0x1,0x18,0xff,0xff,0x8f, - 0x80,0x1,0x1c,0xff,0xff,0x81,0x70,0x0,0x21,0x4c,0x4d,0x54,0x0,0x50,0x53,0x54, - 0x0,0x50,0x57,0x54,0x0,0x50,0x50,0x54,0x0,0x50,0x44,0x54,0x0,0x59,0x53,0x54, - 0x0,0x59,0x44,0x54,0x0,0x41,0x4b,0x44,0x54,0x0,0x41,0x4b,0x53,0x54,0x0,0x0, - 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0, - 0x0,0x0,0x0,0xa,0x41,0x4b,0x53,0x54,0x39,0x41,0x4b,0x44,0x54,0x2c,0x4d,0x33, - 0x2e,0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Knox_IN - 0x0,0x0,0x9,0x85, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x9a,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x18,0x80,0x0,0x0,0x0,0x9e, - 0xa6,0x2c,0x80,0x9f,0xba,0xf9,0x70,0xa0,0x86,0xe,0x80,0xa1,0x9a,0xdb,0x70,0xcb, - 0x88,0xfe,0x80,0xd2,0x23,0xf4,0x70,0xd2,0x61,0x9,0xf0,0xd5,0x55,0xd5,0x0,0xd6, - 0x20,0xcd,0xf0,0xd7,0x35,0xb7,0x0,0xd8,0x0,0xaf,0xf0,0xd9,0x15,0x99,0x0,0xd9, - 0xe0,0x91,0xf0,0xda,0xfe,0xb5,0x80,0xdb,0xc0,0x73,0xf0,0xdc,0xde,0x97,0x80,0xdd, - 0xa9,0x90,0x70,0xde,0xbe,0x79,0x80,0xdf,0x89,0x72,0x70,0xe0,0x9e,0x5b,0x80,0xe1, - 0x69,0x54,0x70,0xe2,0x7e,0x3d,0x80,0xe3,0x49,0x36,0x70,0xe4,0x5e,0x1f,0x80,0xe5, - 0x57,0x3c,0xf0,0xe6,0x47,0x3c,0x0,0xe7,0x37,0x1e,0xf0,0xe8,0x27,0x1e,0x0,0xe8, - 0xf2,0x16,0xf0,0xea,0x7,0x0,0x0,0xea,0xd1,0xf8,0xf0,0xeb,0xe6,0xe2,0x0,0xec, - 0xd6,0xc4,0xf0,0xed,0xc6,0xc4,0x0,0xee,0xbf,0xe1,0x70,0xef,0xaf,0xe0,0x80,0xf0, - 0x9f,0xc3,0x70,0xf1,0x8f,0xc2,0x80,0xf4,0x5f,0x87,0x70,0xfa,0xf8,0x67,0x0,0xfb, - 0xe8,0x49,0xf0,0xfc,0xd8,0x49,0x0,0xfd,0xc8,0x2b,0xf0,0xfe,0xb8,0x2b,0x0,0xff, - 0xa8,0xd,0xf0,0x0,0x98,0xd,0x0,0x1,0x87,0xef,0xf0,0x2,0x77,0xef,0x0,0x3, - 0x71,0xc,0x70,0x4,0x61,0xb,0x80,0x5,0x50,0xee,0x70,0x6,0x40,0xed,0x80,0x7, - 0x30,0xd0,0x70,0x7,0x8d,0x27,0x80,0x9,0x10,0xb2,0x70,0x9,0xad,0xa3,0x0,0xa, - 0xf0,0x94,0x70,0xb,0xe0,0x93,0x80,0xc,0xd9,0xb0,0xf0,0xd,0xc0,0x75,0x80,0xe, - 0xb9,0x92,0xf0,0xf,0xa9,0x92,0x0,0x10,0x99,0x74,0xf0,0x11,0x89,0x74,0x0,0x12, - 0x79,0x56,0xf0,0x13,0x69,0x56,0x0,0x14,0x59,0x38,0xf0,0x15,0x49,0x38,0x0,0x16, - 0x39,0x1a,0xf0,0x17,0x29,0x1a,0x0,0x18,0x22,0x37,0x70,0x19,0x8,0xfc,0x0,0x1a, - 0x2,0x19,0x70,0x1a,0xf2,0x18,0x80,0x1b,0xe1,0xfb,0x70,0x1c,0xd1,0xfa,0x80,0x1d, - 0xc1,0xdd,0x70,0x1e,0xb1,0xdc,0x80,0x1f,0xa1,0xbf,0x70,0x20,0x76,0xf,0x0,0x21, - 0x81,0xa1,0x70,0x22,0x55,0xf1,0x0,0x23,0x6a,0xbd,0xf0,0x24,0x35,0xd3,0x0,0x25, - 0x4a,0x9f,0xf0,0x26,0x15,0xb5,0x0,0x27,0x2a,0x81,0xf0,0x27,0xfe,0xd1,0x80,0x29, - 0xa,0x63,0xf0,0x44,0x2f,0x76,0x70,0x45,0x44,0x51,0x70,0x45,0xf3,0xb7,0x0,0x47, - 0x2d,0x6d,0xf0,0x47,0xd3,0x99,0x0,0x49,0xd,0x4f,0xf0,0x49,0xb3,0x7b,0x0,0x4a, - 0xed,0x31,0xf0,0x4b,0x9c,0x97,0x80,0x4c,0xd6,0x4e,0x70,0x4d,0x7c,0x79,0x80,0x4e, - 0xb6,0x30,0x70,0x4f,0x5c,0x5b,0x80,0x50,0x96,0x12,0x70,0x51,0x3c,0x3d,0x80,0x52, - 0x75,0xf4,0x70,0x53,0x1c,0x1f,0x80,0x54,0x55,0xd6,0x70,0x54,0xfc,0x1,0x80,0x56, - 0x35,0xb8,0x70,0x56,0xe5,0x1e,0x0,0x58,0x1e,0xd4,0xf0,0x58,0xc5,0x0,0x0,0x59, - 0xfe,0xb6,0xf0,0x5a,0xa4,0xe2,0x0,0x5b,0xde,0x98,0xf0,0x5c,0x84,0xc4,0x0,0x5d, - 0xbe,0x7a,0xf0,0x5e,0x64,0xa6,0x0,0x5f,0x9e,0x5c,0xf0,0x60,0x4d,0xc2,0x80,0x61, - 0x87,0x79,0x70,0x62,0x2d,0xa4,0x80,0x63,0x67,0x5b,0x70,0x64,0xd,0x86,0x80,0x65, - 0x47,0x3d,0x70,0x65,0xed,0x68,0x80,0x67,0x27,0x1f,0x70,0x67,0xcd,0x4a,0x80,0x69, - 0x7,0x1,0x70,0x69,0xad,0x2c,0x80,0x6a,0xe6,0xe3,0x70,0x6b,0x96,0x49,0x0,0x6c, - 0xcf,0xff,0xf0,0x6d,0x76,0x2b,0x0,0x6e,0xaf,0xe1,0xf0,0x6f,0x56,0xd,0x0,0x70, - 0x8f,0xc3,0xf0,0x71,0x35,0xef,0x0,0x72,0x6f,0xa5,0xf0,0x73,0x15,0xd1,0x0,0x74, - 0x4f,0x87,0xf0,0x74,0xfe,0xed,0x80,0x76,0x38,0xa4,0x70,0x76,0xde,0xcf,0x80,0x78, - 0x18,0x86,0x70,0x78,0xbe,0xb1,0x80,0x79,0xf8,0x68,0x70,0x7a,0x9e,0x93,0x80,0x7b, - 0xd8,0x4a,0x70,0x7c,0x7e,0x75,0x80,0x7d,0xb8,0x2c,0x70,0x7e,0x5e,0x57,0x80,0x7f, - 0x98,0xe,0x70,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x5,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x5,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0xae, - 0xca,0x0,0x0,0xff,0xff,0xb9,0xb0,0x1,0x4,0xff,0xff,0xab,0xa0,0x0,0x8,0xff, - 0xff,0xb9,0xb0,0x1,0xc,0xff,0xff,0xb9,0xb0,0x1,0x10,0xff,0xff,0xb9,0xb0,0x0, - 0x14,0xff,0xff,0xab,0xa0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x43,0x44,0x54,0x0,0x43, - 0x53,0x54,0x0,0x43,0x57,0x54,0x0,0x43,0x50,0x54,0x0,0x45,0x53,0x54,0x0,0x0, - 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x54,0x5a,0x69, - 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x9b,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x18,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0x5e,0x3,0xfe,0xa0,0xff,0xff,0xff,0xff,0x9e,0xa6,0x2c, - 0x80,0xff,0xff,0xff,0xff,0x9f,0xba,0xf9,0x70,0xff,0xff,0xff,0xff,0xa0,0x86,0xe, - 0x80,0xff,0xff,0xff,0xff,0xa1,0x9a,0xdb,0x70,0xff,0xff,0xff,0xff,0xcb,0x88,0xfe, - 0x80,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x61,0x9, - 0xf0,0xff,0xff,0xff,0xff,0xd5,0x55,0xd5,0x0,0xff,0xff,0xff,0xff,0xd6,0x20,0xcd, - 0xf0,0xff,0xff,0xff,0xff,0xd7,0x35,0xb7,0x0,0xff,0xff,0xff,0xff,0xd8,0x0,0xaf, - 0xf0,0xff,0xff,0xff,0xff,0xd9,0x15,0x99,0x0,0xff,0xff,0xff,0xff,0xd9,0xe0,0x91, - 0xf0,0xff,0xff,0xff,0xff,0xda,0xfe,0xb5,0x80,0xff,0xff,0xff,0xff,0xdb,0xc0,0x73, - 0xf0,0xff,0xff,0xff,0xff,0xdc,0xde,0x97,0x80,0xff,0xff,0xff,0xff,0xdd,0xa9,0x90, - 0x70,0xff,0xff,0xff,0xff,0xde,0xbe,0x79,0x80,0xff,0xff,0xff,0xff,0xdf,0x89,0x72, - 0x70,0xff,0xff,0xff,0xff,0xe0,0x9e,0x5b,0x80,0xff,0xff,0xff,0xff,0xe1,0x69,0x54, - 0x70,0xff,0xff,0xff,0xff,0xe2,0x7e,0x3d,0x80,0xff,0xff,0xff,0xff,0xe3,0x49,0x36, - 0x70,0xff,0xff,0xff,0xff,0xe4,0x5e,0x1f,0x80,0xff,0xff,0xff,0xff,0xe5,0x57,0x3c, - 0xf0,0xff,0xff,0xff,0xff,0xe6,0x47,0x3c,0x0,0xff,0xff,0xff,0xff,0xe7,0x37,0x1e, - 0xf0,0xff,0xff,0xff,0xff,0xe8,0x27,0x1e,0x0,0xff,0xff,0xff,0xff,0xe8,0xf2,0x16, - 0xf0,0xff,0xff,0xff,0xff,0xea,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0xea,0xd1,0xf8, - 0xf0,0xff,0xff,0xff,0xff,0xeb,0xe6,0xe2,0x0,0xff,0xff,0xff,0xff,0xec,0xd6,0xc4, - 0xf0,0xff,0xff,0xff,0xff,0xed,0xc6,0xc4,0x0,0xff,0xff,0xff,0xff,0xee,0xbf,0xe1, - 0x70,0xff,0xff,0xff,0xff,0xef,0xaf,0xe0,0x80,0xff,0xff,0xff,0xff,0xf0,0x9f,0xc3, - 0x70,0xff,0xff,0xff,0xff,0xf1,0x8f,0xc2,0x80,0xff,0xff,0xff,0xff,0xf4,0x5f,0x87, - 0x70,0xff,0xff,0xff,0xff,0xfa,0xf8,0x67,0x0,0xff,0xff,0xff,0xff,0xfb,0xe8,0x49, - 0xf0,0xff,0xff,0xff,0xff,0xfc,0xd8,0x49,0x0,0xff,0xff,0xff,0xff,0xfd,0xc8,0x2b, - 0xf0,0xff,0xff,0xff,0xff,0xfe,0xb8,0x2b,0x0,0xff,0xff,0xff,0xff,0xff,0xa8,0xd, - 0xf0,0x0,0x0,0x0,0x0,0x0,0x98,0xd,0x0,0x0,0x0,0x0,0x0,0x1,0x87,0xef, - 0xf0,0x0,0x0,0x0,0x0,0x2,0x77,0xef,0x0,0x0,0x0,0x0,0x0,0x3,0x71,0xc, - 0x70,0x0,0x0,0x0,0x0,0x4,0x61,0xb,0x80,0x0,0x0,0x0,0x0,0x5,0x50,0xee, - 0x70,0x0,0x0,0x0,0x0,0x6,0x40,0xed,0x80,0x0,0x0,0x0,0x0,0x7,0x30,0xd0, - 0x70,0x0,0x0,0x0,0x0,0x7,0x8d,0x27,0x80,0x0,0x0,0x0,0x0,0x9,0x10,0xb2, - 0x70,0x0,0x0,0x0,0x0,0x9,0xad,0xa3,0x0,0x0,0x0,0x0,0x0,0xa,0xf0,0x94, - 0x70,0x0,0x0,0x0,0x0,0xb,0xe0,0x93,0x80,0x0,0x0,0x0,0x0,0xc,0xd9,0xb0, - 0xf0,0x0,0x0,0x0,0x0,0xd,0xc0,0x75,0x80,0x0,0x0,0x0,0x0,0xe,0xb9,0x92, - 0xf0,0x0,0x0,0x0,0x0,0xf,0xa9,0x92,0x0,0x0,0x0,0x0,0x0,0x10,0x99,0x74, - 0xf0,0x0,0x0,0x0,0x0,0x11,0x89,0x74,0x0,0x0,0x0,0x0,0x0,0x12,0x79,0x56, - 0xf0,0x0,0x0,0x0,0x0,0x13,0x69,0x56,0x0,0x0,0x0,0x0,0x0,0x14,0x59,0x38, - 0xf0,0x0,0x0,0x0,0x0,0x15,0x49,0x38,0x0,0x0,0x0,0x0,0x0,0x16,0x39,0x1a, - 0xf0,0x0,0x0,0x0,0x0,0x17,0x29,0x1a,0x0,0x0,0x0,0x0,0x0,0x18,0x22,0x37, - 0x70,0x0,0x0,0x0,0x0,0x19,0x8,0xfc,0x0,0x0,0x0,0x0,0x0,0x1a,0x2,0x19, - 0x70,0x0,0x0,0x0,0x0,0x1a,0xf2,0x18,0x80,0x0,0x0,0x0,0x0,0x1b,0xe1,0xfb, - 0x70,0x0,0x0,0x0,0x0,0x1c,0xd1,0xfa,0x80,0x0,0x0,0x0,0x0,0x1d,0xc1,0xdd, - 0x70,0x0,0x0,0x0,0x0,0x1e,0xb1,0xdc,0x80,0x0,0x0,0x0,0x0,0x1f,0xa1,0xbf, - 0x70,0x0,0x0,0x0,0x0,0x20,0x76,0xf,0x0,0x0,0x0,0x0,0x0,0x21,0x81,0xa1, - 0x70,0x0,0x0,0x0,0x0,0x22,0x55,0xf1,0x0,0x0,0x0,0x0,0x0,0x23,0x6a,0xbd, - 0xf0,0x0,0x0,0x0,0x0,0x24,0x35,0xd3,0x0,0x0,0x0,0x0,0x0,0x25,0x4a,0x9f, - 0xf0,0x0,0x0,0x0,0x0,0x26,0x15,0xb5,0x0,0x0,0x0,0x0,0x0,0x27,0x2a,0x81, - 0xf0,0x0,0x0,0x0,0x0,0x27,0xfe,0xd1,0x80,0x0,0x0,0x0,0x0,0x29,0xa,0x63, - 0xf0,0x0,0x0,0x0,0x0,0x44,0x2f,0x76,0x70,0x0,0x0,0x0,0x0,0x45,0x44,0x51, - 0x70,0x0,0x0,0x0,0x0,0x45,0xf3,0xb7,0x0,0x0,0x0,0x0,0x0,0x47,0x2d,0x6d, - 0xf0,0x0,0x0,0x0,0x0,0x47,0xd3,0x99,0x0,0x0,0x0,0x0,0x0,0x49,0xd,0x4f, - 0xf0,0x0,0x0,0x0,0x0,0x49,0xb3,0x7b,0x0,0x0,0x0,0x0,0x0,0x4a,0xed,0x31, - 0xf0,0x0,0x0,0x0,0x0,0x4b,0x9c,0x97,0x80,0x0,0x0,0x0,0x0,0x4c,0xd6,0x4e, - 0x70,0x0,0x0,0x0,0x0,0x4d,0x7c,0x79,0x80,0x0,0x0,0x0,0x0,0x4e,0xb6,0x30, - 0x70,0x0,0x0,0x0,0x0,0x4f,0x5c,0x5b,0x80,0x0,0x0,0x0,0x0,0x50,0x96,0x12, - 0x70,0x0,0x0,0x0,0x0,0x51,0x3c,0x3d,0x80,0x0,0x0,0x0,0x0,0x52,0x75,0xf4, - 0x70,0x0,0x0,0x0,0x0,0x53,0x1c,0x1f,0x80,0x0,0x0,0x0,0x0,0x54,0x55,0xd6, - 0x70,0x0,0x0,0x0,0x0,0x54,0xfc,0x1,0x80,0x0,0x0,0x0,0x0,0x56,0x35,0xb8, - 0x70,0x0,0x0,0x0,0x0,0x56,0xe5,0x1e,0x0,0x0,0x0,0x0,0x0,0x58,0x1e,0xd4, - 0xf0,0x0,0x0,0x0,0x0,0x58,0xc5,0x0,0x0,0x0,0x0,0x0,0x0,0x59,0xfe,0xb6, - 0xf0,0x0,0x0,0x0,0x0,0x5a,0xa4,0xe2,0x0,0x0,0x0,0x0,0x0,0x5b,0xde,0x98, - 0xf0,0x0,0x0,0x0,0x0,0x5c,0x84,0xc4,0x0,0x0,0x0,0x0,0x0,0x5d,0xbe,0x7a, - 0xf0,0x0,0x0,0x0,0x0,0x5e,0x64,0xa6,0x0,0x0,0x0,0x0,0x0,0x5f,0x9e,0x5c, - 0xf0,0x0,0x0,0x0,0x0,0x60,0x4d,0xc2,0x80,0x0,0x0,0x0,0x0,0x61,0x87,0x79, - 0x70,0x0,0x0,0x0,0x0,0x62,0x2d,0xa4,0x80,0x0,0x0,0x0,0x0,0x63,0x67,0x5b, - 0x70,0x0,0x0,0x0,0x0,0x64,0xd,0x86,0x80,0x0,0x0,0x0,0x0,0x65,0x47,0x3d, - 0x70,0x0,0x0,0x0,0x0,0x65,0xed,0x68,0x80,0x0,0x0,0x0,0x0,0x67,0x27,0x1f, - 0x70,0x0,0x0,0x0,0x0,0x67,0xcd,0x4a,0x80,0x0,0x0,0x0,0x0,0x69,0x7,0x1, - 0x70,0x0,0x0,0x0,0x0,0x69,0xad,0x2c,0x80,0x0,0x0,0x0,0x0,0x6a,0xe6,0xe3, - 0x70,0x0,0x0,0x0,0x0,0x6b,0x96,0x49,0x0,0x0,0x0,0x0,0x0,0x6c,0xcf,0xff, - 0xf0,0x0,0x0,0x0,0x0,0x6d,0x76,0x2b,0x0,0x0,0x0,0x0,0x0,0x6e,0xaf,0xe1, - 0xf0,0x0,0x0,0x0,0x0,0x6f,0x56,0xd,0x0,0x0,0x0,0x0,0x0,0x70,0x8f,0xc3, - 0xf0,0x0,0x0,0x0,0x0,0x71,0x35,0xef,0x0,0x0,0x0,0x0,0x0,0x72,0x6f,0xa5, - 0xf0,0x0,0x0,0x0,0x0,0x73,0x15,0xd1,0x0,0x0,0x0,0x0,0x0,0x74,0x4f,0x87, - 0xf0,0x0,0x0,0x0,0x0,0x74,0xfe,0xed,0x80,0x0,0x0,0x0,0x0,0x76,0x38,0xa4, - 0x70,0x0,0x0,0x0,0x0,0x76,0xde,0xcf,0x80,0x0,0x0,0x0,0x0,0x78,0x18,0x86, - 0x70,0x0,0x0,0x0,0x0,0x78,0xbe,0xb1,0x80,0x0,0x0,0x0,0x0,0x79,0xf8,0x68, - 0x70,0x0,0x0,0x0,0x0,0x7a,0x9e,0x93,0x80,0x0,0x0,0x0,0x0,0x7b,0xd8,0x4a, - 0x70,0x0,0x0,0x0,0x0,0x7c,0x7e,0x75,0x80,0x0,0x0,0x0,0x0,0x7d,0xb8,0x2c, - 0x70,0x0,0x0,0x0,0x0,0x7e,0x5e,0x57,0x80,0x0,0x0,0x0,0x0,0x7f,0x98,0xe, - 0x70,0x0,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xe9,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0x9e, + 0xb8,0x93,0x70,0x9f,0xba,0xeb,0x60,0xa0,0x87,0x2e,0xc8,0xa1,0x9a,0xb1,0x40,0xa2, + 0x94,0x6,0xf0,0xa3,0x55,0xa9,0x40,0xa4,0x86,0x5d,0xf0,0xa5,0x28,0x78,0x60,0xa6, + 0x66,0x3f,0xf0,0xa7,0xc,0x4e,0xe0,0xa8,0x46,0x21,0xf0,0xa8,0xec,0x30,0xe0,0xaa, + 0x1c,0xc9,0x70,0xaa,0xd5,0x4d,0x60,0xab,0xfc,0xab,0x70,0xac,0xb5,0x2f,0x60,0xad, + 0xdc,0x8d,0x70,0xae,0x95,0x11,0x60,0xaf,0xbc,0x6f,0x70,0xb0,0x7e,0x2d,0xe0,0xb1, + 0x9c,0x51,0x70,0xb2,0x67,0x4a,0x60,0xb3,0x7c,0x33,0x70,0xb4,0x47,0x2c,0x60,0xb5, + 0x5c,0x15,0x70,0xb6,0x27,0xe,0x60,0xb7,0x3b,0xf7,0x70,0xb8,0x6,0xf0,0x60,0xb9, + 0x25,0x13,0xf0,0xb9,0xe6,0xd2,0x60,0xbb,0x4,0xf5,0xf0,0xbb,0xcf,0xee,0xe0,0xbc, + 0xe4,0xd7,0xf0,0xbd,0xaf,0xd0,0xe0,0xbe,0xc4,0xb9,0xf0,0xbf,0x8f,0xb2,0xe0,0xc0, + 0xa4,0x9b,0xf0,0xc1,0x6f,0x94,0xe0,0xc2,0x84,0x7d,0xf0,0xc3,0x4f,0x76,0xe0,0xc4, + 0x64,0x5f,0xf0,0xc5,0x2f,0x58,0xe0,0xc6,0x4d,0x7c,0x70,0xc7,0xf,0x3a,0xe0,0xc8, + 0x2d,0x5e,0x70,0xcb,0x88,0xf0,0x70,0xd2,0x23,0xf4,0x70,0xd2,0x60,0xfb,0xe0,0xd3, + 0x75,0xe4,0xf0,0xd4,0x40,0xdd,0xe0,0xd5,0x55,0xaa,0xd0,0xd6,0x20,0xa3,0xc0,0xd7, + 0x35,0x8c,0xd0,0xd8,0x0,0x85,0xc0,0xd9,0x15,0x6e,0xd0,0xda,0x33,0x76,0x40,0xda, + 0xfe,0xa7,0x70,0xdc,0x13,0x74,0x60,0xdc,0xde,0x89,0x70,0xdd,0xa9,0x82,0x60,0xde, + 0xbe,0x6b,0x70,0xdf,0x89,0x64,0x60,0xe0,0x9e,0x4d,0x70,0xe1,0x69,0x46,0x60,0xe2, + 0x7e,0x2f,0x70,0xe3,0x49,0x28,0x60,0xe4,0x5e,0x11,0x70,0xe5,0x29,0xa,0x60,0xe6, + 0x47,0x2d,0xf0,0xe7,0x12,0x26,0xe0,0xe8,0x27,0xf,0xf0,0xe9,0x16,0xf2,0xe0,0xea, + 0x6,0xf1,0xf0,0xea,0xf6,0xd4,0xe0,0xeb,0xe6,0xd3,0xf0,0xec,0xd6,0xb6,0xe0,0xed, + 0xc6,0xb5,0xf0,0xee,0xbf,0xd3,0x60,0xef,0xaf,0xd2,0x70,0xf0,0x9f,0xb5,0x60,0xf1, + 0x8f,0xb4,0x70,0xf2,0x7f,0x97,0x60,0xf3,0x6f,0x96,0x70,0xf4,0x5f,0x79,0x60,0xf5, + 0x4f,0x78,0x70,0xf6,0x3f,0x5b,0x60,0xf7,0x2f,0x5a,0x70,0xf8,0x28,0x77,0xe0,0xf9, + 0xf,0x3c,0x70,0xfa,0x8,0x59,0xe0,0xfa,0xf8,0x58,0xf0,0xfb,0xe8,0x3b,0xe0,0xfc, + 0xd8,0x3a,0xf0,0xfd,0xc8,0x1d,0xe0,0xfe,0xb8,0x1c,0xf0,0xff,0xa7,0xff,0xe0,0x0, + 0x97,0xfe,0xf0,0x1,0x87,0xe1,0xe0,0x2,0x77,0xe0,0xf0,0x3,0x70,0xfe,0x60,0x4, + 0x60,0xfd,0x70,0x5,0x50,0xe0,0x60,0x6,0x40,0xdf,0x70,0x7,0x30,0xc2,0x60,0x8, + 0x20,0xc1,0x70,0x9,0x10,0xa4,0x60,0xa,0x0,0xa3,0x70,0xa,0xf0,0x86,0x60,0xb, + 0xe0,0x85,0x70,0xc,0xd9,0xa2,0xe0,0xd,0xc0,0x67,0x70,0xe,0xb9,0x84,0xe0,0xf, + 0xa9,0x83,0xf0,0x10,0x99,0x66,0xe0,0x11,0x89,0x65,0xf0,0x12,0x79,0x48,0xe0,0x13, + 0x69,0x47,0xf0,0x14,0x59,0x2a,0xe0,0x15,0x49,0x29,0xf0,0x16,0x39,0xc,0xe0,0x17, + 0x29,0xb,0xf0,0x18,0x22,0x29,0x60,0x19,0x8,0xed,0xf0,0x1a,0x2,0xb,0x60,0x1a, + 0xf2,0xa,0x70,0x1b,0xe1,0xed,0x60,0x1c,0xd1,0xec,0x70,0x1d,0xc1,0xcf,0x60,0x1e, + 0xb1,0xce,0x70,0x1f,0xa1,0xb1,0x60,0x20,0x76,0x0,0xf0,0x21,0x81,0x93,0x60,0x22, + 0x55,0xe2,0xf0,0x23,0x6a,0xaf,0xe0,0x24,0x35,0xc4,0xf0,0x25,0x4a,0x91,0xe0,0x26, + 0x15,0xa6,0xf0,0x27,0x2a,0x73,0xe0,0x27,0xfe,0xc3,0x70,0x29,0xa,0x55,0xe0,0x29, + 0xde,0xa5,0x70,0x2a,0xea,0x37,0xe0,0x2b,0xbe,0x87,0x70,0x2c,0xd3,0x54,0x60,0x2d, + 0x9e,0x69,0x70,0x2e,0xb3,0x36,0x60,0x2f,0x7e,0x4b,0x70,0x30,0x93,0x18,0x60,0x31, + 0x67,0x67,0xf0,0x32,0x72,0xfa,0x60,0x33,0x47,0x49,0xf0,0x34,0x52,0xdc,0x60,0x35, + 0x27,0x2b,0xf0,0x36,0x32,0xbe,0x60,0x37,0x7,0xd,0xf0,0x38,0x1b,0xda,0xe0,0x38, + 0xe6,0xef,0xf0,0x39,0xfb,0xbc,0xe0,0x3a,0xc6,0xd1,0xf0,0x3b,0xdb,0x9e,0xe0,0x3c, + 0xaf,0xee,0x70,0x3d,0xbb,0x80,0xe0,0x3e,0x8f,0xd0,0x70,0x3f,0x9b,0x62,0xe0,0x40, + 0x6f,0xb2,0x70,0x41,0x84,0x7f,0x60,0x42,0x4f,0x94,0x70,0x43,0x64,0x61,0x60,0x44, + 0x2f,0x76,0x70,0x45,0x44,0x43,0x60,0x45,0xf3,0xa8,0xf0,0x47,0x2d,0x5f,0xe0,0x47, + 0xd3,0x8a,0xf0,0x49,0xd,0x41,0xe0,0x49,0xb3,0x6c,0xf0,0x4a,0xed,0x23,0xe0,0x4b, + 0x9c,0x89,0x70,0x4c,0xd6,0x40,0x60,0x4d,0x7c,0x6b,0x70,0x4e,0xb6,0x22,0x60,0x4f, + 0x5c,0x4d,0x70,0x50,0x96,0x4,0x60,0x51,0x3c,0x2f,0x70,0x52,0x75,0xe6,0x60,0x53, + 0x1c,0x11,0x70,0x54,0x55,0xc8,0x60,0x54,0xfb,0xf3,0x70,0x56,0x35,0xaa,0x60,0x56, + 0xe5,0xf,0xf0,0x58,0x1e,0xc6,0xe0,0x58,0xc4,0xf1,0xf0,0x59,0xfe,0xa8,0xe0,0x5a, + 0xa4,0xd3,0xf0,0x5b,0xde,0x8a,0xe0,0x5c,0x84,0xb5,0xf0,0x5d,0xbe,0x6c,0xe0,0x5e, + 0x64,0x97,0xf0,0x5f,0x9e,0x4e,0xe0,0x60,0x4d,0xb4,0x70,0x61,0x87,0x6b,0x60,0x62, + 0x2d,0x96,0x70,0x63,0x67,0x4d,0x60,0x64,0xd,0x78,0x70,0x65,0x47,0x2f,0x60,0x65, + 0xed,0x5a,0x70,0x67,0x27,0x11,0x60,0x67,0xcd,0x3c,0x70,0x69,0x6,0xf3,0x60,0x69, + 0xad,0x1e,0x70,0x6a,0xe6,0xd5,0x60,0x6b,0x96,0x3a,0xf0,0x6c,0xcf,0xf1,0xe0,0x6d, + 0x76,0x1c,0xf0,0x6e,0xaf,0xd3,0xe0,0x6f,0x55,0xfe,0xf0,0x70,0x8f,0xb5,0xe0,0x71, + 0x35,0xe0,0xf0,0x72,0x6f,0x97,0xe0,0x73,0x15,0xc2,0xf0,0x74,0x4f,0x79,0xe0,0x74, + 0xfe,0xdf,0x70,0x76,0x38,0x96,0x60,0x76,0xde,0xc1,0x70,0x78,0x18,0x78,0x60,0x78, + 0xbe,0xa3,0x70,0x79,0xf8,0x5a,0x60,0x7a,0x9e,0x85,0x70,0x7b,0xd8,0x3c,0x60,0x7c, + 0x7e,0x67,0x70,0x7d,0xb8,0x1e,0x60,0x7e,0x5e,0x49,0x70,0x7f,0x98,0x0,0x60,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x5,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x3,0x4,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x5,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0xae,0xca, - 0x0,0x0,0xff,0xff,0xb9,0xb0,0x1,0x4,0xff,0xff,0xab,0xa0,0x0,0x8,0xff,0xff, - 0xb9,0xb0,0x1,0xc,0xff,0xff,0xb9,0xb0,0x1,0x10,0xff,0xff,0xb9,0xb0,0x0,0x14, - 0xff,0xff,0xab,0xa0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x43,0x44,0x54,0x0,0x43,0x53, - 0x54,0x0,0x43,0x57,0x54,0x0,0x43,0x50,0x54,0x0,0x45,0x53,0x54,0x0,0x0,0x0, - 0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0xa,0x43,0x53,0x54, - 0x36,0x43,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e, - 0x31,0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Montevideo - 0x0,0x0,0x5,0xe7, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x57,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x17,0x80,0x0,0x0,0x0,0xa2, - 0x92,0x87,0xac,0xa9,0x1,0x25,0xb8,0xa9,0xf1,0xf,0xb0,0xaa,0xe2,0x59,0x38,0xab, - 0xd2,0x43,0x30,0xac,0xc3,0x8c,0xb8,0xad,0xb3,0x76,0xb0,0xbb,0xf4,0xb5,0xb8,0xbc, - 0xbf,0xb5,0xb0,0xbd,0xd4,0x97,0xb8,0xbe,0x9f,0x97,0xb0,0xbf,0xb4,0x79,0xb8,0xc0, - 0x7f,0x79,0xb0,0xc1,0x9d,0x96,0x38,0xc2,0x5f,0x5b,0xb0,0xc3,0x7d,0x78,0x38,0xc4, - 0x3f,0x3d,0xb0,0xc5,0x5d,0x5a,0x38,0xc6,0x1f,0x1f,0xb0,0xc7,0x3d,0x3c,0x38,0xc8, - 0x8,0x3c,0x30,0xc9,0x1d,0x1e,0x38,0xc9,0xe8,0x1e,0x30,0xca,0x8b,0x9f,0x38,0xcb, - 0x55,0x4d,0xb0,0xcd,0x1e,0xcd,0x38,0xcd,0x95,0x5f,0x20,0xec,0xb,0x85,0xb0,0xec, - 0xf2,0x2e,0x20,0xed,0x45,0x4a,0xb0,0xed,0x85,0xd6,0x20,0xf7,0x13,0x72,0xb0,0xf7, - 0xfa,0x1b,0x20,0xf8,0xf3,0x54,0xb0,0xfa,0x9,0x73,0x20,0xfa,0xd3,0x36,0xb0,0xfb, - 0xea,0xa6,0xa0,0xfc,0xfe,0x3e,0x30,0xfd,0xf7,0x62,0xa8,0xfe,0xdf,0x71,0xb0,0xff, - 0xd8,0x96,0x28,0x0,0xc0,0xa5,0x30,0x1,0xb9,0xc9,0xa8,0x4,0x58,0xdc,0x30,0x4, - 0xed,0xc7,0xa0,0x7,0xdf,0xef,0xb0,0x9,0x5a,0x47,0x28,0xc,0xb1,0xdd,0xa0,0xe, - 0xe7,0x7f,0x30,0xf,0x83,0x2,0x20,0x12,0x55,0x86,0x30,0x13,0x6e,0x47,0xa0,0x21, - 0xc3,0x54,0x30,0x22,0x3b,0x3e,0xa0,0x23,0xa1,0xe4,0xb0,0x24,0x19,0xcf,0x20,0x25, - 0x4a,0x67,0xb0,0x25,0xf0,0x76,0xa0,0x27,0x21,0xf,0x30,0x27,0xd0,0x58,0xa0,0x29, - 0xa,0x2b,0xb0,0x29,0xb0,0x3a,0xa0,0x2a,0xe0,0xd3,0x30,0x2b,0x90,0x1c,0xa0,0x41, - 0x4c,0xf6,0x30,0x42,0x46,0x2f,0xc0,0x43,0x48,0xa3,0xd0,0x44,0x13,0x9c,0xc0,0x45, - 0x1f,0x4b,0x50,0x45,0xf3,0x7e,0xc0,0x47,0x8,0x67,0xd0,0x47,0xd3,0x60,0xc0,0x48, - 0xe8,0x49,0xd0,0x49,0xb3,0x42,0xc0,0x4a,0xc8,0x2b,0xd0,0x4b,0x9c,0x5f,0x40,0x4c, - 0xa8,0xd,0xd0,0x4d,0x7c,0x41,0x40,0x4e,0x87,0xef,0xd0,0x4f,0x5c,0x23,0x40,0x50, - 0x71,0xc,0x50,0x51,0x3c,0x5,0x40,0x52,0x50,0xee,0x50,0x53,0x1b,0xe7,0x40,0x54, - 0x30,0xd0,0x50,0x54,0xfb,0xc9,0x40,0x1,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x4,0x2,0x4,0x2,0x4,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x7,0x5,0x7, - 0x5,0x7,0x5,0x6,0x5,0x7,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0xff,0xff, - 0xcb,0x54,0x0,0x0,0xff,0xff,0xcb,0x54,0x0,0x4,0xff,0xff,0xd5,0xd0,0x1,0x8, - 0xff,0xff,0xce,0xc8,0x0,0xe,0xff,0xff,0xce,0xc8,0x0,0xe,0xff,0xff,0xd5,0xd0, - 0x0,0xe,0xff,0xff,0xe3,0xe0,0x1,0x12,0xff,0xff,0xdc,0xd8,0x1,0x8,0xff,0xff, - 0xe3,0xe0,0x1,0x12,0x4c,0x4d,0x54,0x0,0x4d,0x4d,0x54,0x0,0x55,0x59,0x48,0x53, - 0x54,0x0,0x55,0x59,0x54,0x0,0x55,0x59,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x1, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, - 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x58,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x17,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0x79,0x7d,0xfa,0x2c,0xff,0xff,0xff,0xff,0xa2,0x92,0x87, - 0xac,0xff,0xff,0xff,0xff,0xa9,0x1,0x25,0xb8,0xff,0xff,0xff,0xff,0xa9,0xf1,0xf, - 0xb0,0xff,0xff,0xff,0xff,0xaa,0xe2,0x59,0x38,0xff,0xff,0xff,0xff,0xab,0xd2,0x43, - 0x30,0xff,0xff,0xff,0xff,0xac,0xc3,0x8c,0xb8,0xff,0xff,0xff,0xff,0xad,0xb3,0x76, - 0xb0,0xff,0xff,0xff,0xff,0xbb,0xf4,0xb5,0xb8,0xff,0xff,0xff,0xff,0xbc,0xbf,0xb5, - 0xb0,0xff,0xff,0xff,0xff,0xbd,0xd4,0x97,0xb8,0xff,0xff,0xff,0xff,0xbe,0x9f,0x97, - 0xb0,0xff,0xff,0xff,0xff,0xbf,0xb4,0x79,0xb8,0xff,0xff,0xff,0xff,0xc0,0x7f,0x79, - 0xb0,0xff,0xff,0xff,0xff,0xc1,0x9d,0x96,0x38,0xff,0xff,0xff,0xff,0xc2,0x5f,0x5b, - 0xb0,0xff,0xff,0xff,0xff,0xc3,0x7d,0x78,0x38,0xff,0xff,0xff,0xff,0xc4,0x3f,0x3d, - 0xb0,0xff,0xff,0xff,0xff,0xc5,0x5d,0x5a,0x38,0xff,0xff,0xff,0xff,0xc6,0x1f,0x1f, - 0xb0,0xff,0xff,0xff,0xff,0xc7,0x3d,0x3c,0x38,0xff,0xff,0xff,0xff,0xc8,0x8,0x3c, - 0x30,0xff,0xff,0xff,0xff,0xc9,0x1d,0x1e,0x38,0xff,0xff,0xff,0xff,0xc9,0xe8,0x1e, - 0x30,0xff,0xff,0xff,0xff,0xca,0x8b,0x9f,0x38,0xff,0xff,0xff,0xff,0xcb,0x55,0x4d, - 0xb0,0xff,0xff,0xff,0xff,0xcd,0x1e,0xcd,0x38,0xff,0xff,0xff,0xff,0xcd,0x95,0x5f, - 0x20,0xff,0xff,0xff,0xff,0xec,0xb,0x85,0xb0,0xff,0xff,0xff,0xff,0xec,0xf2,0x2e, - 0x20,0xff,0xff,0xff,0xff,0xed,0x45,0x4a,0xb0,0xff,0xff,0xff,0xff,0xed,0x85,0xd6, - 0x20,0xff,0xff,0xff,0xff,0xf7,0x13,0x72,0xb0,0xff,0xff,0xff,0xff,0xf7,0xfa,0x1b, - 0x20,0xff,0xff,0xff,0xff,0xf8,0xf3,0x54,0xb0,0xff,0xff,0xff,0xff,0xfa,0x9,0x73, - 0x20,0xff,0xff,0xff,0xff,0xfa,0xd3,0x36,0xb0,0xff,0xff,0xff,0xff,0xfb,0xea,0xa6, - 0xa0,0xff,0xff,0xff,0xff,0xfc,0xfe,0x3e,0x30,0xff,0xff,0xff,0xff,0xfd,0xf7,0x62, - 0xa8,0xff,0xff,0xff,0xff,0xfe,0xdf,0x71,0xb0,0xff,0xff,0xff,0xff,0xff,0xd8,0x96, - 0x28,0x0,0x0,0x0,0x0,0x0,0xc0,0xa5,0x30,0x0,0x0,0x0,0x0,0x1,0xb9,0xc9, - 0xa8,0x0,0x0,0x0,0x0,0x4,0x58,0xdc,0x30,0x0,0x0,0x0,0x0,0x4,0xed,0xc7, - 0xa0,0x0,0x0,0x0,0x0,0x7,0xdf,0xef,0xb0,0x0,0x0,0x0,0x0,0x9,0x5a,0x47, - 0x28,0x0,0x0,0x0,0x0,0xc,0xb1,0xdd,0xa0,0x0,0x0,0x0,0x0,0xe,0xe7,0x7f, - 0x30,0x0,0x0,0x0,0x0,0xf,0x83,0x2,0x20,0x0,0x0,0x0,0x0,0x12,0x55,0x86, - 0x30,0x0,0x0,0x0,0x0,0x13,0x6e,0x47,0xa0,0x0,0x0,0x0,0x0,0x21,0xc3,0x54, - 0x30,0x0,0x0,0x0,0x0,0x22,0x3b,0x3e,0xa0,0x0,0x0,0x0,0x0,0x23,0xa1,0xe4, - 0xb0,0x0,0x0,0x0,0x0,0x24,0x19,0xcf,0x20,0x0,0x0,0x0,0x0,0x25,0x4a,0x67, - 0xb0,0x0,0x0,0x0,0x0,0x25,0xf0,0x76,0xa0,0x0,0x0,0x0,0x0,0x27,0x21,0xf, - 0x30,0x0,0x0,0x0,0x0,0x27,0xd0,0x58,0xa0,0x0,0x0,0x0,0x0,0x29,0xa,0x2b, - 0xb0,0x0,0x0,0x0,0x0,0x29,0xb0,0x3a,0xa0,0x0,0x0,0x0,0x0,0x2a,0xe0,0xd3, - 0x30,0x0,0x0,0x0,0x0,0x2b,0x90,0x1c,0xa0,0x0,0x0,0x0,0x0,0x41,0x4c,0xf6, - 0x30,0x0,0x0,0x0,0x0,0x42,0x46,0x2f,0xc0,0x0,0x0,0x0,0x0,0x43,0x48,0xa3, - 0xd0,0x0,0x0,0x0,0x0,0x44,0x13,0x9c,0xc0,0x0,0x0,0x0,0x0,0x45,0x1f,0x4b, - 0x50,0x0,0x0,0x0,0x0,0x45,0xf3,0x7e,0xc0,0x0,0x0,0x0,0x0,0x47,0x8,0x67, - 0xd0,0x0,0x0,0x0,0x0,0x47,0xd3,0x60,0xc0,0x0,0x0,0x0,0x0,0x48,0xe8,0x49, - 0xd0,0x0,0x0,0x0,0x0,0x49,0xb3,0x42,0xc0,0x0,0x0,0x0,0x0,0x4a,0xc8,0x2b, - 0xd0,0x0,0x0,0x0,0x0,0x4b,0x9c,0x5f,0x40,0x0,0x0,0x0,0x0,0x4c,0xa8,0xd, - 0xd0,0x0,0x0,0x0,0x0,0x4d,0x7c,0x41,0x40,0x0,0x0,0x0,0x0,0x4e,0x87,0xef, - 0xd0,0x0,0x0,0x0,0x0,0x4f,0x5c,0x23,0x40,0x0,0x0,0x0,0x0,0x50,0x71,0xc, - 0x50,0x0,0x0,0x0,0x0,0x51,0x3c,0x5,0x40,0x0,0x0,0x0,0x0,0x52,0x50,0xee, - 0x50,0x0,0x0,0x0,0x0,0x53,0x1b,0xe7,0x40,0x0,0x0,0x0,0x0,0x54,0x30,0xd0, - 0x50,0x0,0x0,0x0,0x0,0x54,0xfb,0xc9,0x40,0x0,0x1,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x7,0x5,0x7,0x5,0x7,0x5,0x6,0x5,0x7,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0xff,0xff,0xcb,0x54,0x0,0x0,0xff,0xff,0xcb,0x54,0x0,0x4,0xff,0xff,0xd5, - 0xd0,0x1,0x8,0xff,0xff,0xce,0xc8,0x0,0xe,0xff,0xff,0xce,0xc8,0x0,0xe,0xff, - 0xff,0xd5,0xd0,0x0,0xe,0xff,0xff,0xe3,0xe0,0x1,0x12,0xff,0xff,0xdc,0xd8,0x1, - 0x8,0xff,0xff,0xe3,0xe0,0x1,0x12,0x4c,0x4d,0x54,0x0,0x4d,0x4d,0x54,0x0,0x55, - 0x59,0x48,0x53,0x54,0x0,0x55,0x59,0x54,0x0,0x55,0x59,0x53,0x54,0x0,0x0,0x0, - 0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0xa,0x55,0x59,0x54,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Nome - 0x0,0x0,0x9,0x48, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x90,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x26,0x80,0x0,0x0,0x0,0xcb, - 0x89,0x44,0xd0,0xd2,0x23,0xf4,0x70,0xd2,0x61,0x50,0x40,0xfa,0xd2,0x55,0xb0,0xfe, - 0xb8,0x71,0x50,0xff,0xa8,0x54,0x40,0x0,0x98,0x53,0x50,0x1,0x88,0x36,0x40,0x2, - 0x78,0x35,0x50,0x3,0x71,0x52,0xc0,0x4,0x61,0x51,0xd0,0x5,0x51,0x34,0xc0,0x6, - 0x41,0x33,0xd0,0x7,0x31,0x16,0xc0,0x7,0x8d,0x6d,0xd0,0x9,0x10,0xf8,0xc0,0x9, - 0xad,0xe9,0x50,0xa,0xf0,0xda,0xc0,0xb,0xe0,0xd9,0xd0,0xc,0xd9,0xf7,0x40,0xd, - 0xc0,0xbb,0xd0,0xe,0xb9,0xd9,0x40,0xf,0xa9,0xd8,0x50,0x10,0x99,0xbb,0x40,0x11, - 0x89,0xba,0x50,0x12,0x79,0x9d,0x40,0x13,0x69,0x9c,0x50,0x14,0x59,0x7f,0x40,0x15, - 0x49,0x7e,0x50,0x16,0x39,0x61,0x40,0x17,0x29,0x60,0x50,0x18,0x22,0x7d,0xc0,0x19, - 0x9,0x42,0x50,0x1a,0x2,0x5f,0xc0,0x1a,0x2b,0x14,0x10,0x1a,0xf2,0x42,0xb0,0x1b, - 0xe2,0x25,0xa0,0x1c,0xd2,0x24,0xb0,0x1d,0xc2,0x7,0xa0,0x1e,0xb2,0x6,0xb0,0x1f, - 0xa1,0xe9,0xa0,0x20,0x76,0x39,0x30,0x21,0x81,0xcb,0xa0,0x22,0x56,0x1b,0x30,0x23, - 0x6a,0xe8,0x20,0x24,0x35,0xfd,0x30,0x25,0x4a,0xca,0x20,0x26,0x15,0xdf,0x30,0x27, - 0x2a,0xac,0x20,0x27,0xfe,0xfb,0xb0,0x29,0xa,0x8e,0x20,0x29,0xde,0xdd,0xb0,0x2a, - 0xea,0x70,0x20,0x2b,0xbe,0xbf,0xb0,0x2c,0xd3,0x8c,0xa0,0x2d,0x9e,0xa1,0xb0,0x2e, - 0xb3,0x6e,0xa0,0x2f,0x7e,0x83,0xb0,0x30,0x93,0x50,0xa0,0x31,0x67,0xa0,0x30,0x32, - 0x73,0x32,0xa0,0x33,0x47,0x82,0x30,0x34,0x53,0x14,0xa0,0x35,0x27,0x64,0x30,0x36, - 0x32,0xf6,0xa0,0x37,0x7,0x46,0x30,0x38,0x1c,0x13,0x20,0x38,0xe7,0x28,0x30,0x39, - 0xfb,0xf5,0x20,0x3a,0xc7,0xa,0x30,0x3b,0xdb,0xd7,0x20,0x3c,0xb0,0x26,0xb0,0x3d, - 0xbb,0xb9,0x20,0x3e,0x90,0x8,0xb0,0x3f,0x9b,0x9b,0x20,0x40,0x6f,0xea,0xb0,0x41, - 0x84,0xb7,0xa0,0x42,0x4f,0xcc,0xb0,0x43,0x64,0x99,0xa0,0x44,0x2f,0xae,0xb0,0x45, - 0x44,0x7b,0xa0,0x45,0xf3,0xe1,0x30,0x47,0x2d,0x98,0x20,0x47,0xd3,0xc3,0x30,0x49, - 0xd,0x7a,0x20,0x49,0xb3,0xa5,0x30,0x4a,0xed,0x5c,0x20,0x4b,0x9c,0xc1,0xb0,0x4c, - 0xd6,0x78,0xa0,0x4d,0x7c,0xa3,0xb0,0x4e,0xb6,0x5a,0xa0,0x4f,0x5c,0x85,0xb0,0x50, - 0x96,0x3c,0xa0,0x51,0x3c,0x67,0xb0,0x52,0x76,0x1e,0xa0,0x53,0x1c,0x49,0xb0,0x54, - 0x56,0x0,0xa0,0x54,0xfc,0x2b,0xb0,0x56,0x35,0xe2,0xa0,0x56,0xe5,0x48,0x30,0x58, - 0x1e,0xff,0x20,0x58,0xc5,0x2a,0x30,0x59,0xfe,0xe1,0x20,0x5a,0xa5,0xc,0x30,0x5b, - 0xde,0xc3,0x20,0x5c,0x84,0xee,0x30,0x5d,0xbe,0xa5,0x20,0x5e,0x64,0xd0,0x30,0x5f, - 0x9e,0x87,0x20,0x60,0x4d,0xec,0xb0,0x61,0x87,0xa3,0xa0,0x62,0x2d,0xce,0xb0,0x63, - 0x67,0x85,0xa0,0x64,0xd,0xb0,0xb0,0x65,0x47,0x67,0xa0,0x65,0xed,0x92,0xb0,0x67, - 0x27,0x49,0xa0,0x67,0xcd,0x74,0xb0,0x69,0x7,0x2b,0xa0,0x69,0xad,0x56,0xb0,0x6a, - 0xe7,0xd,0xa0,0x6b,0x96,0x73,0x30,0x6c,0xd0,0x2a,0x20,0x6d,0x76,0x55,0x30,0x6e, - 0xb0,0xc,0x20,0x6f,0x56,0x37,0x30,0x70,0x8f,0xee,0x20,0x71,0x36,0x19,0x30,0x72, - 0x6f,0xd0,0x20,0x73,0x15,0xfb,0x30,0x74,0x4f,0xb2,0x20,0x74,0xff,0x17,0xb0,0x76, - 0x38,0xce,0xa0,0x76,0xde,0xf9,0xb0,0x78,0x18,0xb0,0xa0,0x78,0xbe,0xdb,0xb0,0x79, - 0xf8,0x92,0xa0,0x7a,0x9e,0xbd,0xb0,0x7b,0xd8,0x74,0xa0,0x7c,0x7e,0x9f,0xb0,0x7d, - 0xb8,0x56,0xa0,0x7e,0x5e,0x81,0xb0,0x7f,0x98,0x38,0xa0,0x1,0x2,0x3,0x1,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x6,0x8,0x7, - 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, - 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, - 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, - 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, - 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, - 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, - 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0xff,0xff,0x64,0xee,0x0, - 0x0,0xff,0xff,0x65,0x50,0x0,0x4,0xff,0xff,0x73,0x60,0x1,0x8,0xff,0xff,0x73, - 0x60,0x1,0xc,0xff,0xff,0x65,0x50,0x0,0x10,0xff,0xff,0x73,0x60,0x1,0x14,0xff, - 0xff,0x81,0x70,0x0,0x18,0xff,0xff,0x8f,0x80,0x1,0x1c,0xff,0xff,0x81,0x70,0x0, - 0x21,0x4c,0x4d,0x54,0x0,0x4e,0x53,0x54,0x0,0x4e,0x57,0x54,0x0,0x4e,0x50,0x54, - 0x0,0x42,0x53,0x54,0x0,0x42,0x44,0x54,0x0,0x59,0x53,0x54,0x0,0x41,0x4b,0x44, - 0x54,0x0,0x41,0x4b,0x53,0x54,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0xa,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0x0,0x0,0x0, - 0xa,0x0,0x0,0x0,0x26,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff, - 0xff,0x3f,0xc0,0xee,0x93,0xff,0xff,0xff,0xff,0x7d,0x87,0x4f,0xd2,0xff,0xff,0xff, - 0xff,0xcb,0x89,0x44,0xd0,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff, - 0xff,0xd2,0x61,0x50,0x40,0xff,0xff,0xff,0xff,0xfa,0xd2,0x55,0xb0,0xff,0xff,0xff, - 0xff,0xfe,0xb8,0x71,0x50,0xff,0xff,0xff,0xff,0xff,0xa8,0x54,0x40,0x0,0x0,0x0, - 0x0,0x0,0x98,0x53,0x50,0x0,0x0,0x0,0x0,0x1,0x88,0x36,0x40,0x0,0x0,0x0, - 0x0,0x2,0x78,0x35,0x50,0x0,0x0,0x0,0x0,0x3,0x71,0x52,0xc0,0x0,0x0,0x0, - 0x0,0x4,0x61,0x51,0xd0,0x0,0x0,0x0,0x0,0x5,0x51,0x34,0xc0,0x0,0x0,0x0, - 0x0,0x6,0x41,0x33,0xd0,0x0,0x0,0x0,0x0,0x7,0x31,0x16,0xc0,0x0,0x0,0x0, - 0x0,0x7,0x8d,0x6d,0xd0,0x0,0x0,0x0,0x0,0x9,0x10,0xf8,0xc0,0x0,0x0,0x0, - 0x0,0x9,0xad,0xe9,0x50,0x0,0x0,0x0,0x0,0xa,0xf0,0xda,0xc0,0x0,0x0,0x0, - 0x0,0xb,0xe0,0xd9,0xd0,0x0,0x0,0x0,0x0,0xc,0xd9,0xf7,0x40,0x0,0x0,0x0, - 0x0,0xd,0xc0,0xbb,0xd0,0x0,0x0,0x0,0x0,0xe,0xb9,0xd9,0x40,0x0,0x0,0x0, - 0x0,0xf,0xa9,0xd8,0x50,0x0,0x0,0x0,0x0,0x10,0x99,0xbb,0x40,0x0,0x0,0x0, - 0x0,0x11,0x89,0xba,0x50,0x0,0x0,0x0,0x0,0x12,0x79,0x9d,0x40,0x0,0x0,0x0, - 0x0,0x13,0x69,0x9c,0x50,0x0,0x0,0x0,0x0,0x14,0x59,0x7f,0x40,0x0,0x0,0x0, - 0x0,0x15,0x49,0x7e,0x50,0x0,0x0,0x0,0x0,0x16,0x39,0x61,0x40,0x0,0x0,0x0, - 0x0,0x17,0x29,0x60,0x50,0x0,0x0,0x0,0x0,0x18,0x22,0x7d,0xc0,0x0,0x0,0x0, - 0x0,0x19,0x9,0x42,0x50,0x0,0x0,0x0,0x0,0x1a,0x2,0x5f,0xc0,0x0,0x0,0x0, - 0x0,0x1a,0x2b,0x14,0x10,0x0,0x0,0x0,0x0,0x1a,0xf2,0x42,0xb0,0x0,0x0,0x0, - 0x0,0x1b,0xe2,0x25,0xa0,0x0,0x0,0x0,0x0,0x1c,0xd2,0x24,0xb0,0x0,0x0,0x0, - 0x0,0x1d,0xc2,0x7,0xa0,0x0,0x0,0x0,0x0,0x1e,0xb2,0x6,0xb0,0x0,0x0,0x0, - 0x0,0x1f,0xa1,0xe9,0xa0,0x0,0x0,0x0,0x0,0x20,0x76,0x39,0x30,0x0,0x0,0x0, - 0x0,0x21,0x81,0xcb,0xa0,0x0,0x0,0x0,0x0,0x22,0x56,0x1b,0x30,0x0,0x0,0x0, - 0x0,0x23,0x6a,0xe8,0x20,0x0,0x0,0x0,0x0,0x24,0x35,0xfd,0x30,0x0,0x0,0x0, - 0x0,0x25,0x4a,0xca,0x20,0x0,0x0,0x0,0x0,0x26,0x15,0xdf,0x30,0x0,0x0,0x0, - 0x0,0x27,0x2a,0xac,0x20,0x0,0x0,0x0,0x0,0x27,0xfe,0xfb,0xb0,0x0,0x0,0x0, - 0x0,0x29,0xa,0x8e,0x20,0x0,0x0,0x0,0x0,0x29,0xde,0xdd,0xb0,0x0,0x0,0x0, - 0x0,0x2a,0xea,0x70,0x20,0x0,0x0,0x0,0x0,0x2b,0xbe,0xbf,0xb0,0x0,0x0,0x0, - 0x0,0x2c,0xd3,0x8c,0xa0,0x0,0x0,0x0,0x0,0x2d,0x9e,0xa1,0xb0,0x0,0x0,0x0, - 0x0,0x2e,0xb3,0x6e,0xa0,0x0,0x0,0x0,0x0,0x2f,0x7e,0x83,0xb0,0x0,0x0,0x0, - 0x0,0x30,0x93,0x50,0xa0,0x0,0x0,0x0,0x0,0x31,0x67,0xa0,0x30,0x0,0x0,0x0, - 0x0,0x32,0x73,0x32,0xa0,0x0,0x0,0x0,0x0,0x33,0x47,0x82,0x30,0x0,0x0,0x0, - 0x0,0x34,0x53,0x14,0xa0,0x0,0x0,0x0,0x0,0x35,0x27,0x64,0x30,0x0,0x0,0x0, - 0x0,0x36,0x32,0xf6,0xa0,0x0,0x0,0x0,0x0,0x37,0x7,0x46,0x30,0x0,0x0,0x0, - 0x0,0x38,0x1c,0x13,0x20,0x0,0x0,0x0,0x0,0x38,0xe7,0x28,0x30,0x0,0x0,0x0, - 0x0,0x39,0xfb,0xf5,0x20,0x0,0x0,0x0,0x0,0x3a,0xc7,0xa,0x30,0x0,0x0,0x0, - 0x0,0x3b,0xdb,0xd7,0x20,0x0,0x0,0x0,0x0,0x3c,0xb0,0x26,0xb0,0x0,0x0,0x0, - 0x0,0x3d,0xbb,0xb9,0x20,0x0,0x0,0x0,0x0,0x3e,0x90,0x8,0xb0,0x0,0x0,0x0, - 0x0,0x3f,0x9b,0x9b,0x20,0x0,0x0,0x0,0x0,0x40,0x6f,0xea,0xb0,0x0,0x0,0x0, - 0x0,0x41,0x84,0xb7,0xa0,0x0,0x0,0x0,0x0,0x42,0x4f,0xcc,0xb0,0x0,0x0,0x0, - 0x0,0x43,0x64,0x99,0xa0,0x0,0x0,0x0,0x0,0x44,0x2f,0xae,0xb0,0x0,0x0,0x0, - 0x0,0x45,0x44,0x7b,0xa0,0x0,0x0,0x0,0x0,0x45,0xf3,0xe1,0x30,0x0,0x0,0x0, - 0x0,0x47,0x2d,0x98,0x20,0x0,0x0,0x0,0x0,0x47,0xd3,0xc3,0x30,0x0,0x0,0x0, - 0x0,0x49,0xd,0x7a,0x20,0x0,0x0,0x0,0x0,0x49,0xb3,0xa5,0x30,0x0,0x0,0x0, - 0x0,0x4a,0xed,0x5c,0x20,0x0,0x0,0x0,0x0,0x4b,0x9c,0xc1,0xb0,0x0,0x0,0x0, - 0x0,0x4c,0xd6,0x78,0xa0,0x0,0x0,0x0,0x0,0x4d,0x7c,0xa3,0xb0,0x0,0x0,0x0, - 0x0,0x4e,0xb6,0x5a,0xa0,0x0,0x0,0x0,0x0,0x4f,0x5c,0x85,0xb0,0x0,0x0,0x0, - 0x0,0x50,0x96,0x3c,0xa0,0x0,0x0,0x0,0x0,0x51,0x3c,0x67,0xb0,0x0,0x0,0x0, - 0x0,0x52,0x76,0x1e,0xa0,0x0,0x0,0x0,0x0,0x53,0x1c,0x49,0xb0,0x0,0x0,0x0, - 0x0,0x54,0x56,0x0,0xa0,0x0,0x0,0x0,0x0,0x54,0xfc,0x2b,0xb0,0x0,0x0,0x0, - 0x0,0x56,0x35,0xe2,0xa0,0x0,0x0,0x0,0x0,0x56,0xe5,0x48,0x30,0x0,0x0,0x0, - 0x0,0x58,0x1e,0xff,0x20,0x0,0x0,0x0,0x0,0x58,0xc5,0x2a,0x30,0x0,0x0,0x0, - 0x0,0x59,0xfe,0xe1,0x20,0x0,0x0,0x0,0x0,0x5a,0xa5,0xc,0x30,0x0,0x0,0x0, - 0x0,0x5b,0xde,0xc3,0x20,0x0,0x0,0x0,0x0,0x5c,0x84,0xee,0x30,0x0,0x0,0x0, - 0x0,0x5d,0xbe,0xa5,0x20,0x0,0x0,0x0,0x0,0x5e,0x64,0xd0,0x30,0x0,0x0,0x0, - 0x0,0x5f,0x9e,0x87,0x20,0x0,0x0,0x0,0x0,0x60,0x4d,0xec,0xb0,0x0,0x0,0x0, - 0x0,0x61,0x87,0xa3,0xa0,0x0,0x0,0x0,0x0,0x62,0x2d,0xce,0xb0,0x0,0x0,0x0, - 0x0,0x63,0x67,0x85,0xa0,0x0,0x0,0x0,0x0,0x64,0xd,0xb0,0xb0,0x0,0x0,0x0, - 0x0,0x65,0x47,0x67,0xa0,0x0,0x0,0x0,0x0,0x65,0xed,0x92,0xb0,0x0,0x0,0x0, - 0x0,0x67,0x27,0x49,0xa0,0x0,0x0,0x0,0x0,0x67,0xcd,0x74,0xb0,0x0,0x0,0x0, - 0x0,0x69,0x7,0x2b,0xa0,0x0,0x0,0x0,0x0,0x69,0xad,0x56,0xb0,0x0,0x0,0x0, - 0x0,0x6a,0xe7,0xd,0xa0,0x0,0x0,0x0,0x0,0x6b,0x96,0x73,0x30,0x0,0x0,0x0, - 0x0,0x6c,0xd0,0x2a,0x20,0x0,0x0,0x0,0x0,0x6d,0x76,0x55,0x30,0x0,0x0,0x0, - 0x0,0x6e,0xb0,0xc,0x20,0x0,0x0,0x0,0x0,0x6f,0x56,0x37,0x30,0x0,0x0,0x0, - 0x0,0x70,0x8f,0xee,0x20,0x0,0x0,0x0,0x0,0x71,0x36,0x19,0x30,0x0,0x0,0x0, - 0x0,0x72,0x6f,0xd0,0x20,0x0,0x0,0x0,0x0,0x73,0x15,0xfb,0x30,0x0,0x0,0x0, - 0x0,0x74,0x4f,0xb2,0x20,0x0,0x0,0x0,0x0,0x74,0xff,0x17,0xb0,0x0,0x0,0x0, - 0x0,0x76,0x38,0xce,0xa0,0x0,0x0,0x0,0x0,0x76,0xde,0xf9,0xb0,0x0,0x0,0x0, - 0x0,0x78,0x18,0xb0,0xa0,0x0,0x0,0x0,0x0,0x78,0xbe,0xdb,0xb0,0x0,0x0,0x0, - 0x0,0x79,0xf8,0x92,0xa0,0x0,0x0,0x0,0x0,0x7a,0x9e,0xbd,0xb0,0x0,0x0,0x0, - 0x0,0x7b,0xd8,0x74,0xa0,0x0,0x0,0x0,0x0,0x7c,0x7e,0x9f,0xb0,0x0,0x0,0x0, - 0x0,0x7d,0xb8,0x56,0xa0,0x0,0x0,0x0,0x0,0x7e,0x5e,0x81,0xb0,0x0,0x0,0x0, - 0x0,0x7f,0x98,0x38,0xa0,0x0,0x1,0x2,0x3,0x4,0x2,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x7,0x9,0x8,0x9,0x8,0x9,0x8, - 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, - 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, - 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, - 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, - 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, - 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, - 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x0,0x0,0xb6,0x6d,0x0,0x0,0xff,0xff,0x64, - 0xee,0x0,0x0,0xff,0xff,0x65,0x50,0x0,0x4,0xff,0xff,0x73,0x60,0x1,0x8,0xff, - 0xff,0x73,0x60,0x1,0xc,0xff,0xff,0x65,0x50,0x0,0x10,0xff,0xff,0x73,0x60,0x1, - 0x14,0xff,0xff,0x81,0x70,0x0,0x18,0xff,0xff,0x8f,0x80,0x1,0x1c,0xff,0xff,0x81, - 0x70,0x0,0x21,0x4c,0x4d,0x54,0x0,0x4e,0x53,0x54,0x0,0x4e,0x57,0x54,0x0,0x4e, - 0x50,0x54,0x0,0x42,0x53,0x54,0x0,0x42,0x44,0x54,0x0,0x59,0x53,0x54,0x0,0x41, - 0x4b,0x44,0x54,0x0,0x41,0x4b,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0xa,0x41,0x4b, - 0x53,0x54,0x39,0x41,0x4b,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30,0x2c,0x4d, - 0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Winnipeg - 0x0,0x0,0xb,0x4b, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xbb,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0x9b, - 0x1,0xfb,0xe0,0x9b,0xc3,0xba,0x50,0x9e,0xb8,0xa1,0x80,0x9f,0xba,0xf9,0x70,0xc2, - 0xa0,0x3b,0x80,0xc3,0x4f,0x84,0xf0,0xcb,0x88,0xfe,0x80,0xd2,0x23,0xf4,0x70,0xd2, - 0x61,0x9,0xf0,0xd3,0x88,0x68,0x0,0xd4,0x53,0x60,0xf0,0xd5,0x55,0xd5,0x0,0xd6, - 0x20,0xcd,0xf0,0xd7,0x35,0xb7,0x0,0xd8,0x0,0xaf,0xf0,0xd9,0x15,0x99,0x0,0xd9, - 0xe0,0x91,0xf0,0xdb,0x0,0x7,0x0,0xdb,0xc8,0x5c,0xf0,0xdc,0xde,0x97,0x80,0xdd, - 0xa9,0x90,0x70,0xde,0xbe,0x79,0x80,0xdf,0x89,0x72,0x70,0xe0,0x9e,0x5b,0x80,0xe1, - 0x69,0x54,0x70,0xe2,0x7e,0x3d,0x80,0xe3,0x49,0x36,0x70,0xe4,0x5e,0x1f,0x80,0xe5, - 0x29,0x18,0x70,0xe6,0x47,0x3c,0x0,0xe7,0x12,0x34,0xf0,0xe8,0x27,0x1e,0x0,0xe8, - 0xf2,0x16,0xf0,0xea,0x7,0x0,0x0,0xea,0xd1,0xf8,0xf0,0xeb,0xe6,0xe2,0x0,0xec, - 0xd6,0xc4,0xf0,0xed,0xc6,0xc4,0x0,0xee,0x91,0xbc,0xf0,0xf3,0x6f,0xa4,0x80,0xf4, - 0x31,0x62,0xf0,0xf9,0xf,0x4a,0x80,0xfa,0x8,0x76,0x0,0xfa,0xf8,0x67,0x0,0xfb, - 0xe8,0x58,0x0,0xfc,0xd8,0x49,0x0,0xfd,0xc8,0x3a,0x0,0xfe,0xb8,0x2b,0x0,0xff, - 0xa8,0x1c,0x0,0x0,0x98,0xd,0x0,0x1,0x87,0xfe,0x0,0x2,0x77,0xef,0x0,0x3, - 0x71,0x1a,0x80,0x4,0x61,0xb,0x80,0x5,0x50,0xfc,0x80,0x6,0x40,0xed,0x80,0x7, - 0x30,0xde,0x80,0x8,0x20,0xcf,0x80,0x9,0x10,0xc0,0x80,0xa,0x0,0xb1,0x80,0xa, - 0xf0,0xa2,0x80,0xb,0xe0,0x93,0x80,0xc,0xd9,0xbf,0x0,0xd,0xc0,0x75,0x80,0xe, - 0xb9,0xa1,0x0,0xf,0xa9,0x92,0x0,0x10,0x99,0x83,0x0,0x11,0x89,0x74,0x0,0x12, - 0x79,0x65,0x0,0x13,0x69,0x56,0x0,0x14,0x59,0x47,0x0,0x15,0x49,0x38,0x0,0x16, - 0x39,0x29,0x0,0x17,0x29,0x1a,0x0,0x18,0x22,0x45,0x80,0x19,0x8,0xfc,0x0,0x1a, - 0x2,0x27,0x80,0x1a,0xf2,0x18,0x80,0x1b,0xe2,0x9,0x80,0x1c,0xd1,0xfa,0x80,0x1d, - 0xc1,0xeb,0x80,0x1e,0xb1,0xdc,0x80,0x1f,0xa1,0xcd,0x80,0x20,0x76,0xf,0x0,0x21, - 0x81,0xaf,0x80,0x22,0x55,0xf1,0x0,0x23,0x6a,0xcc,0x0,0x24,0x35,0xd3,0x0,0x25, - 0x4a,0xae,0x0,0x26,0x15,0xb5,0x0,0x27,0x2a,0x90,0x0,0x27,0xfe,0xd1,0x80,0x29, - 0xa,0x72,0x0,0x29,0xde,0xb3,0x80,0x2a,0xea,0x54,0x0,0x2b,0xbe,0x95,0x80,0x2c, - 0xd3,0x70,0x80,0x2d,0x9e,0x77,0x80,0x2e,0xb3,0x52,0x80,0x2f,0x7e,0x59,0x80,0x30, - 0x93,0x34,0x80,0x31,0x67,0x76,0x0,0x32,0x73,0x16,0x80,0x33,0x47,0x58,0x0,0x34, - 0x52,0xf8,0x80,0x35,0x27,0x3a,0x0,0x36,0x32,0xda,0x80,0x37,0x7,0x1c,0x0,0x38, - 0x1b,0xf7,0x0,0x38,0xe6,0xfe,0x0,0x39,0xfb,0xd9,0x0,0x3a,0xc6,0xe0,0x0,0x3b, - 0xdb,0xbb,0x0,0x3c,0xaf,0xfc,0x80,0x3d,0xbb,0x9d,0x0,0x3e,0x8f,0xde,0x80,0x3f, - 0x9b,0x7f,0x0,0x40,0x6f,0xc0,0x80,0x41,0x84,0x9b,0x80,0x42,0x4f,0xa2,0x80,0x43, - 0x64,0x7d,0x80,0x43,0xb7,0x6f,0xe0,0x44,0x2f,0x84,0x80,0x45,0x44,0x51,0x70,0x45, - 0xf3,0xb7,0x0,0x47,0x2d,0x6d,0xf0,0x47,0xd3,0x99,0x0,0x49,0xd,0x4f,0xf0,0x49, - 0xb3,0x7b,0x0,0x4a,0xed,0x31,0xf0,0x4b,0x9c,0x97,0x80,0x4c,0xd6,0x4e,0x70,0x4d, - 0x7c,0x79,0x80,0x4e,0xb6,0x30,0x70,0x4f,0x5c,0x5b,0x80,0x50,0x96,0x12,0x70,0x51, - 0x3c,0x3d,0x80,0x52,0x75,0xf4,0x70,0x53,0x1c,0x1f,0x80,0x54,0x55,0xd6,0x70,0x54, - 0xfc,0x1,0x80,0x56,0x35,0xb8,0x70,0x56,0xe5,0x1e,0x0,0x58,0x1e,0xd4,0xf0,0x58, - 0xc5,0x0,0x0,0x59,0xfe,0xb6,0xf0,0x5a,0xa4,0xe2,0x0,0x5b,0xde,0x98,0xf0,0x5c, - 0x84,0xc4,0x0,0x5d,0xbe,0x7a,0xf0,0x5e,0x64,0xa6,0x0,0x5f,0x9e,0x5c,0xf0,0x60, - 0x4d,0xc2,0x80,0x61,0x87,0x79,0x70,0x62,0x2d,0xa4,0x80,0x63,0x67,0x5b,0x70,0x64, - 0xd,0x86,0x80,0x65,0x47,0x3d,0x70,0x65,0xed,0x68,0x80,0x67,0x27,0x1f,0x70,0x67, - 0xcd,0x4a,0x80,0x69,0x7,0x1,0x70,0x69,0xad,0x2c,0x80,0x6a,0xe6,0xe3,0x70,0x6b, - 0x96,0x49,0x0,0x6c,0xcf,0xff,0xf0,0x6d,0x76,0x2b,0x0,0x6e,0xaf,0xe1,0xf0,0x6f, - 0x56,0xd,0x0,0x70,0x8f,0xc3,0xf0,0x71,0x35,0xef,0x0,0x72,0x6f,0xa5,0xf0,0x73, - 0x15,0xd1,0x0,0x74,0x4f,0x87,0xf0,0x74,0xfe,0xed,0x80,0x76,0x38,0xa4,0x70,0x76, - 0xde,0xcf,0x80,0x78,0x18,0x86,0x70,0x78,0xbe,0xb1,0x80,0x79,0xf8,0x68,0x70,0x7a, - 0x9e,0x93,0x80,0x7b,0xd8,0x4a,0x70,0x7c,0x7e,0x75,0x80,0x7d,0xb8,0x2c,0x70,0x7e, - 0x5e,0x57,0x80,0x7f,0x98,0xe,0x70,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0xff,0xff,0xa4,0xec,0x0,0x0,0xff,0xff,0xb9,0xb0,0x1,0x4,0xff,0xff, - 0xab,0xa0,0x0,0x8,0xff,0xff,0xb9,0xb0,0x1,0xc,0xff,0xff,0xb9,0xb0,0x1,0x10, - 0xff,0xff,0xb9,0xb0,0x1,0x4,0xff,0xff,0xab,0xa0,0x0,0x8,0x4c,0x4d,0x54,0x0, - 0x43,0x44,0x54,0x0,0x43,0x53,0x54,0x0,0x43,0x57,0x54,0x0,0x43,0x50,0x54,0x0, - 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x54,0x5a, - 0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xbc,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x14,0xf8,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xff,0xff,0xff,0xff,0x64,0xe4,0xb0,0x94,0xff,0xff,0xff,0xff,0x9b,0x1, - 0xfb,0xe0,0xff,0xff,0xff,0xff,0x9b,0xc3,0xba,0x50,0xff,0xff,0xff,0xff,0x9e,0xb8, - 0xa1,0x80,0xff,0xff,0xff,0xff,0x9f,0xba,0xf9,0x70,0xff,0xff,0xff,0xff,0xc2,0xa0, - 0x3b,0x80,0xff,0xff,0xff,0xff,0xc3,0x4f,0x84,0xf0,0xff,0xff,0xff,0xff,0xcb,0x88, - 0xfe,0x80,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x61, - 0x9,0xf0,0xff,0xff,0xff,0xff,0xd3,0x88,0x68,0x0,0xff,0xff,0xff,0xff,0xd4,0x53, - 0x60,0xf0,0xff,0xff,0xff,0xff,0xd5,0x55,0xd5,0x0,0xff,0xff,0xff,0xff,0xd6,0x20, - 0xcd,0xf0,0xff,0xff,0xff,0xff,0xd7,0x35,0xb7,0x0,0xff,0xff,0xff,0xff,0xd8,0x0, - 0xaf,0xf0,0xff,0xff,0xff,0xff,0xd9,0x15,0x99,0x0,0xff,0xff,0xff,0xff,0xd9,0xe0, - 0x91,0xf0,0xff,0xff,0xff,0xff,0xdb,0x0,0x7,0x0,0xff,0xff,0xff,0xff,0xdb,0xc8, - 0x5c,0xf0,0xff,0xff,0xff,0xff,0xdc,0xde,0x97,0x80,0xff,0xff,0xff,0xff,0xdd,0xa9, - 0x90,0x70,0xff,0xff,0xff,0xff,0xde,0xbe,0x79,0x80,0xff,0xff,0xff,0xff,0xdf,0x89, - 0x72,0x70,0xff,0xff,0xff,0xff,0xe0,0x9e,0x5b,0x80,0xff,0xff,0xff,0xff,0xe1,0x69, - 0x54,0x70,0xff,0xff,0xff,0xff,0xe2,0x7e,0x3d,0x80,0xff,0xff,0xff,0xff,0xe3,0x49, - 0x36,0x70,0xff,0xff,0xff,0xff,0xe4,0x5e,0x1f,0x80,0xff,0xff,0xff,0xff,0xe5,0x29, - 0x18,0x70,0xff,0xff,0xff,0xff,0xe6,0x47,0x3c,0x0,0xff,0xff,0xff,0xff,0xe7,0x12, - 0x34,0xf0,0xff,0xff,0xff,0xff,0xe8,0x27,0x1e,0x0,0xff,0xff,0xff,0xff,0xe8,0xf2, - 0x16,0xf0,0xff,0xff,0xff,0xff,0xea,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0xea,0xd1, - 0xf8,0xf0,0xff,0xff,0xff,0xff,0xeb,0xe6,0xe2,0x0,0xff,0xff,0xff,0xff,0xec,0xd6, - 0xc4,0xf0,0xff,0xff,0xff,0xff,0xed,0xc6,0xc4,0x0,0xff,0xff,0xff,0xff,0xee,0x91, - 0xbc,0xf0,0xff,0xff,0xff,0xff,0xf3,0x6f,0xa4,0x80,0xff,0xff,0xff,0xff,0xf4,0x31, - 0x62,0xf0,0xff,0xff,0xff,0xff,0xf9,0xf,0x4a,0x80,0xff,0xff,0xff,0xff,0xfa,0x8, - 0x76,0x0,0xff,0xff,0xff,0xff,0xfa,0xf8,0x67,0x0,0xff,0xff,0xff,0xff,0xfb,0xe8, - 0x58,0x0,0xff,0xff,0xff,0xff,0xfc,0xd8,0x49,0x0,0xff,0xff,0xff,0xff,0xfd,0xc8, - 0x3a,0x0,0xff,0xff,0xff,0xff,0xfe,0xb8,0x2b,0x0,0xff,0xff,0xff,0xff,0xff,0xa8, - 0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x98,0xd,0x0,0x0,0x0,0x0,0x0,0x1,0x87, - 0xfe,0x0,0x0,0x0,0x0,0x0,0x2,0x77,0xef,0x0,0x0,0x0,0x0,0x0,0x3,0x71, - 0x1a,0x80,0x0,0x0,0x0,0x0,0x4,0x61,0xb,0x80,0x0,0x0,0x0,0x0,0x5,0x50, - 0xfc,0x80,0x0,0x0,0x0,0x0,0x6,0x40,0xed,0x80,0x0,0x0,0x0,0x0,0x7,0x30, - 0xde,0x80,0x0,0x0,0x0,0x0,0x8,0x20,0xcf,0x80,0x0,0x0,0x0,0x0,0x9,0x10, - 0xc0,0x80,0x0,0x0,0x0,0x0,0xa,0x0,0xb1,0x80,0x0,0x0,0x0,0x0,0xa,0xf0, - 0xa2,0x80,0x0,0x0,0x0,0x0,0xb,0xe0,0x93,0x80,0x0,0x0,0x0,0x0,0xc,0xd9, - 0xbf,0x0,0x0,0x0,0x0,0x0,0xd,0xc0,0x75,0x80,0x0,0x0,0x0,0x0,0xe,0xb9, - 0xa1,0x0,0x0,0x0,0x0,0x0,0xf,0xa9,0x92,0x0,0x0,0x0,0x0,0x0,0x10,0x99, - 0x83,0x0,0x0,0x0,0x0,0x0,0x11,0x89,0x74,0x0,0x0,0x0,0x0,0x0,0x12,0x79, - 0x65,0x0,0x0,0x0,0x0,0x0,0x13,0x69,0x56,0x0,0x0,0x0,0x0,0x0,0x14,0x59, - 0x47,0x0,0x0,0x0,0x0,0x0,0x15,0x49,0x38,0x0,0x0,0x0,0x0,0x0,0x16,0x39, - 0x29,0x0,0x0,0x0,0x0,0x0,0x17,0x29,0x1a,0x0,0x0,0x0,0x0,0x0,0x18,0x22, - 0x45,0x80,0x0,0x0,0x0,0x0,0x19,0x8,0xfc,0x0,0x0,0x0,0x0,0x0,0x1a,0x2, - 0x27,0x80,0x0,0x0,0x0,0x0,0x1a,0xf2,0x18,0x80,0x0,0x0,0x0,0x0,0x1b,0xe2, - 0x9,0x80,0x0,0x0,0x0,0x0,0x1c,0xd1,0xfa,0x80,0x0,0x0,0x0,0x0,0x1d,0xc1, - 0xeb,0x80,0x0,0x0,0x0,0x0,0x1e,0xb1,0xdc,0x80,0x0,0x0,0x0,0x0,0x1f,0xa1, - 0xcd,0x80,0x0,0x0,0x0,0x0,0x20,0x76,0xf,0x0,0x0,0x0,0x0,0x0,0x21,0x81, - 0xaf,0x80,0x0,0x0,0x0,0x0,0x22,0x55,0xf1,0x0,0x0,0x0,0x0,0x0,0x23,0x6a, - 0xcc,0x0,0x0,0x0,0x0,0x0,0x24,0x35,0xd3,0x0,0x0,0x0,0x0,0x0,0x25,0x4a, - 0xae,0x0,0x0,0x0,0x0,0x0,0x26,0x15,0xb5,0x0,0x0,0x0,0x0,0x0,0x27,0x2a, - 0x90,0x0,0x0,0x0,0x0,0x0,0x27,0xfe,0xd1,0x80,0x0,0x0,0x0,0x0,0x29,0xa, - 0x72,0x0,0x0,0x0,0x0,0x0,0x29,0xde,0xb3,0x80,0x0,0x0,0x0,0x0,0x2a,0xea, - 0x54,0x0,0x0,0x0,0x0,0x0,0x2b,0xbe,0x95,0x80,0x0,0x0,0x0,0x0,0x2c,0xd3, - 0x70,0x80,0x0,0x0,0x0,0x0,0x2d,0x9e,0x77,0x80,0x0,0x0,0x0,0x0,0x2e,0xb3, - 0x52,0x80,0x0,0x0,0x0,0x0,0x2f,0x7e,0x59,0x80,0x0,0x0,0x0,0x0,0x30,0x93, - 0x34,0x80,0x0,0x0,0x0,0x0,0x31,0x67,0x76,0x0,0x0,0x0,0x0,0x0,0x32,0x73, - 0x16,0x80,0x0,0x0,0x0,0x0,0x33,0x47,0x58,0x0,0x0,0x0,0x0,0x0,0x34,0x52, - 0xf8,0x80,0x0,0x0,0x0,0x0,0x35,0x27,0x3a,0x0,0x0,0x0,0x0,0x0,0x36,0x32, - 0xda,0x80,0x0,0x0,0x0,0x0,0x37,0x7,0x1c,0x0,0x0,0x0,0x0,0x0,0x38,0x1b, - 0xf7,0x0,0x0,0x0,0x0,0x0,0x38,0xe6,0xfe,0x0,0x0,0x0,0x0,0x0,0x39,0xfb, - 0xd9,0x0,0x0,0x0,0x0,0x0,0x3a,0xc6,0xe0,0x0,0x0,0x0,0x0,0x0,0x3b,0xdb, - 0xbb,0x0,0x0,0x0,0x0,0x0,0x3c,0xaf,0xfc,0x80,0x0,0x0,0x0,0x0,0x3d,0xbb, - 0x9d,0x0,0x0,0x0,0x0,0x0,0x3e,0x8f,0xde,0x80,0x0,0x0,0x0,0x0,0x3f,0x9b, - 0x7f,0x0,0x0,0x0,0x0,0x0,0x40,0x6f,0xc0,0x80,0x0,0x0,0x0,0x0,0x41,0x84, - 0x9b,0x80,0x0,0x0,0x0,0x0,0x42,0x4f,0xa2,0x80,0x0,0x0,0x0,0x0,0x43,0x64, - 0x7d,0x80,0x0,0x0,0x0,0x0,0x43,0xb7,0x6f,0xe0,0x0,0x0,0x0,0x0,0x44,0x2f, - 0x84,0x80,0x0,0x0,0x0,0x0,0x45,0x44,0x51,0x70,0x0,0x0,0x0,0x0,0x45,0xf3, - 0xb7,0x0,0x0,0x0,0x0,0x0,0x47,0x2d,0x6d,0xf0,0x0,0x0,0x0,0x0,0x47,0xd3, - 0x99,0x0,0x0,0x0,0x0,0x0,0x49,0xd,0x4f,0xf0,0x0,0x0,0x0,0x0,0x49,0xb3, - 0x7b,0x0,0x0,0x0,0x0,0x0,0x4a,0xed,0x31,0xf0,0x0,0x0,0x0,0x0,0x4b,0x9c, - 0x97,0x80,0x0,0x0,0x0,0x0,0x4c,0xd6,0x4e,0x70,0x0,0x0,0x0,0x0,0x4d,0x7c, - 0x79,0x80,0x0,0x0,0x0,0x0,0x4e,0xb6,0x30,0x70,0x0,0x0,0x0,0x0,0x4f,0x5c, - 0x5b,0x80,0x0,0x0,0x0,0x0,0x50,0x96,0x12,0x70,0x0,0x0,0x0,0x0,0x51,0x3c, - 0x3d,0x80,0x0,0x0,0x0,0x0,0x52,0x75,0xf4,0x70,0x0,0x0,0x0,0x0,0x53,0x1c, - 0x1f,0x80,0x0,0x0,0x0,0x0,0x54,0x55,0xd6,0x70,0x0,0x0,0x0,0x0,0x54,0xfc, - 0x1,0x80,0x0,0x0,0x0,0x0,0x56,0x35,0xb8,0x70,0x0,0x0,0x0,0x0,0x56,0xe5, - 0x1e,0x0,0x0,0x0,0x0,0x0,0x58,0x1e,0xd4,0xf0,0x0,0x0,0x0,0x0,0x58,0xc5, - 0x0,0x0,0x0,0x0,0x0,0x0,0x59,0xfe,0xb6,0xf0,0x0,0x0,0x0,0x0,0x5a,0xa4, - 0xe2,0x0,0x0,0x0,0x0,0x0,0x5b,0xde,0x98,0xf0,0x0,0x0,0x0,0x0,0x5c,0x84, - 0xc4,0x0,0x0,0x0,0x0,0x0,0x5d,0xbe,0x7a,0xf0,0x0,0x0,0x0,0x0,0x5e,0x64, - 0xa6,0x0,0x0,0x0,0x0,0x0,0x5f,0x9e,0x5c,0xf0,0x0,0x0,0x0,0x0,0x60,0x4d, - 0xc2,0x80,0x0,0x0,0x0,0x0,0x61,0x87,0x79,0x70,0x0,0x0,0x0,0x0,0x62,0x2d, - 0xa4,0x80,0x0,0x0,0x0,0x0,0x63,0x67,0x5b,0x70,0x0,0x0,0x0,0x0,0x64,0xd, - 0x86,0x80,0x0,0x0,0x0,0x0,0x65,0x47,0x3d,0x70,0x0,0x0,0x0,0x0,0x65,0xed, - 0x68,0x80,0x0,0x0,0x0,0x0,0x67,0x27,0x1f,0x70,0x0,0x0,0x0,0x0,0x67,0xcd, - 0x4a,0x80,0x0,0x0,0x0,0x0,0x69,0x7,0x1,0x70,0x0,0x0,0x0,0x0,0x69,0xad, - 0x2c,0x80,0x0,0x0,0x0,0x0,0x6a,0xe6,0xe3,0x70,0x0,0x0,0x0,0x0,0x6b,0x96, - 0x49,0x0,0x0,0x0,0x0,0x0,0x6c,0xcf,0xff,0xf0,0x0,0x0,0x0,0x0,0x6d,0x76, - 0x2b,0x0,0x0,0x0,0x0,0x0,0x6e,0xaf,0xe1,0xf0,0x0,0x0,0x0,0x0,0x6f,0x56, - 0xd,0x0,0x0,0x0,0x0,0x0,0x70,0x8f,0xc3,0xf0,0x0,0x0,0x0,0x0,0x71,0x35, - 0xef,0x0,0x0,0x0,0x0,0x0,0x72,0x6f,0xa5,0xf0,0x0,0x0,0x0,0x0,0x73,0x15, - 0xd1,0x0,0x0,0x0,0x0,0x0,0x74,0x4f,0x87,0xf0,0x0,0x0,0x0,0x0,0x74,0xfe, - 0xed,0x80,0x0,0x0,0x0,0x0,0x76,0x38,0xa4,0x70,0x0,0x0,0x0,0x0,0x76,0xde, - 0xcf,0x80,0x0,0x0,0x0,0x0,0x78,0x18,0x86,0x70,0x0,0x0,0x0,0x0,0x78,0xbe, - 0xb1,0x80,0x0,0x0,0x0,0x0,0x79,0xf8,0x68,0x70,0x0,0x0,0x0,0x0,0x7a,0x9e, - 0x93,0x80,0x0,0x0,0x0,0x0,0x7b,0xd8,0x4a,0x70,0x0,0x0,0x0,0x0,0x7c,0x7e, - 0x75,0x80,0x0,0x0,0x0,0x0,0x7d,0xb8,0x2c,0x70,0x0,0x0,0x0,0x0,0x7e,0x5e, - 0x57,0x80,0x0,0x0,0x0,0x0,0x7f,0x98,0xe,0x70,0x0,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x3,0x4,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0xa4,0xec,0x0,0x0,0xff,0xff,0xb9,0xb0, - 0x1,0x4,0xff,0xff,0xab,0xa0,0x0,0x8,0xff,0xff,0xb9,0xb0,0x1,0xc,0xff,0xff, - 0xb9,0xb0,0x1,0x10,0xff,0xff,0xb9,0xb0,0x1,0x4,0xff,0xff,0xab,0xa0,0x0,0x8, - 0x4c,0x4d,0x54,0x0,0x43,0x44,0x54,0x0,0x43,0x53,0x54,0x0,0x43,0x57,0x54,0x0, - 0x43,0x50,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x1, - 0x0,0x0,0xa,0x43,0x53,0x54,0x36,0x43,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e, - 0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Monterrey - 0x0,0x0,0x5,0x88, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x58,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0xa5, - 0xb6,0xda,0x60,0x22,0x55,0xf1,0x0,0x23,0x6a,0xbd,0xf0,0x31,0x67,0x76,0x0,0x32, - 0x73,0x8,0x70,0x33,0x47,0x58,0x0,0x34,0x52,0xea,0x70,0x35,0x27,0x3a,0x0,0x36, - 0x32,0xcc,0x70,0x37,0x7,0x1c,0x0,0x38,0x1b,0xe8,0xf0,0x38,0xe6,0xfe,0x0,0x39, - 0xfb,0xca,0xf0,0x3a,0xf5,0x4,0x80,0x3b,0xb6,0xc2,0xf0,0x3c,0xaf,0xfc,0x80,0x3d, - 0xbb,0x8e,0xf0,0x3e,0x8f,0xde,0x80,0x3f,0x9b,0x70,0xf0,0x40,0x6f,0xc0,0x80,0x41, - 0x84,0x8d,0x70,0x42,0x4f,0xa2,0x80,0x43,0x64,0x6f,0x70,0x44,0x2f,0x84,0x80,0x45, - 0x44,0x51,0x70,0x46,0xf,0x66,0x80,0x47,0x24,0x33,0x70,0x47,0xf8,0x83,0x0,0x49, - 0x4,0x15,0x70,0x49,0xd8,0x65,0x0,0x4a,0xe3,0xf7,0x70,0x4b,0xb8,0x47,0x0,0x4c, - 0xcd,0x13,0xf0,0x4d,0x98,0x29,0x0,0x4e,0xac,0xf5,0xf0,0x4f,0x78,0xb,0x0,0x50, - 0x8c,0xd7,0xf0,0x51,0x61,0x27,0x80,0x52,0x6c,0xb9,0xf0,0x53,0x41,0x9,0x80,0x54, - 0x4c,0x9b,0xf0,0x55,0x20,0xeb,0x80,0x56,0x2c,0x7d,0xf0,0x57,0x0,0xcd,0x80,0x58, - 0x15,0x9a,0x70,0x58,0xe0,0xaf,0x80,0x59,0xf5,0x7c,0x70,0x5a,0xc0,0x91,0x80,0x5b, - 0xd5,0x5e,0x70,0x5c,0xa9,0xae,0x0,0x5d,0xb5,0x40,0x70,0x5e,0x89,0x90,0x0,0x5f, - 0x95,0x22,0x70,0x60,0x69,0x72,0x0,0x61,0x7e,0x3e,0xf0,0x62,0x49,0x54,0x0,0x63, - 0x5e,0x20,0xf0,0x64,0x29,0x36,0x0,0x65,0x3e,0x2,0xf0,0x66,0x12,0x52,0x80,0x67, - 0x1d,0xe4,0xf0,0x67,0xf2,0x34,0x80,0x68,0xfd,0xc6,0xf0,0x69,0xd2,0x16,0x80,0x6a, - 0xdd,0xa8,0xf0,0x6b,0xb1,0xf8,0x80,0x6c,0xc6,0xc5,0x70,0x6d,0x91,0xda,0x80,0x6e, - 0xa6,0xa7,0x70,0x6f,0x71,0xbc,0x80,0x70,0x86,0x89,0x70,0x71,0x5a,0xd9,0x0,0x72, - 0x66,0x6b,0x70,0x73,0x3a,0xbb,0x0,0x74,0x46,0x4d,0x70,0x75,0x1a,0x9d,0x0,0x76, - 0x2f,0x69,0xf0,0x76,0xfa,0x7f,0x0,0x78,0xf,0x4b,0xf0,0x78,0xda,0x61,0x0,0x79, - 0xef,0x2d,0xf0,0x7a,0xba,0x43,0x0,0x7b,0xcf,0xf,0xf0,0x7c,0xa3,0x5f,0x80,0x7d, - 0xae,0xf1,0xf0,0x7e,0x83,0x41,0x80,0x7f,0x8e,0xd3,0xf0,0x0,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0xb5,0x94,0x0,0x0,0xff,0xff, + 0xc7,0xc0,0x1,0x4,0xff,0xff,0xb9,0xb0,0x0,0x8,0xff,0xff,0xc7,0xc0,0x1,0xc, + 0xff,0xff,0xc7,0xc0,0x1,0x10,0x4c,0x4d,0x54,0x0,0x45,0x44,0x54,0x0,0x45,0x53, + 0x54,0x0,0x45,0x57,0x54,0x0,0x45,0x50,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0, + 0x0,0x0,0x0,0x1,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14, + 0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x72,0xee,0x78,0xec, + 0xff,0xff,0xff,0xff,0x9e,0xb8,0x93,0x70,0xff,0xff,0xff,0xff,0x9f,0xba,0xeb,0x60, + 0xff,0xff,0xff,0xff,0xa0,0x87,0x2e,0xc8,0xff,0xff,0xff,0xff,0xa1,0x9a,0xb1,0x40, + 0xff,0xff,0xff,0xff,0xa2,0x94,0x6,0xf0,0xff,0xff,0xff,0xff,0xa3,0x55,0xa9,0x40, + 0xff,0xff,0xff,0xff,0xa4,0x86,0x5d,0xf0,0xff,0xff,0xff,0xff,0xa5,0x28,0x78,0x60, + 0xff,0xff,0xff,0xff,0xa6,0x66,0x3f,0xf0,0xff,0xff,0xff,0xff,0xa7,0xc,0x4e,0xe0, + 0xff,0xff,0xff,0xff,0xa8,0x46,0x21,0xf0,0xff,0xff,0xff,0xff,0xa8,0xec,0x30,0xe0, + 0xff,0xff,0xff,0xff,0xaa,0x1c,0xc9,0x70,0xff,0xff,0xff,0xff,0xaa,0xd5,0x4d,0x60, + 0xff,0xff,0xff,0xff,0xab,0xfc,0xab,0x70,0xff,0xff,0xff,0xff,0xac,0xb5,0x2f,0x60, + 0xff,0xff,0xff,0xff,0xad,0xdc,0x8d,0x70,0xff,0xff,0xff,0xff,0xae,0x95,0x11,0x60, + 0xff,0xff,0xff,0xff,0xaf,0xbc,0x6f,0x70,0xff,0xff,0xff,0xff,0xb0,0x7e,0x2d,0xe0, + 0xff,0xff,0xff,0xff,0xb1,0x9c,0x51,0x70,0xff,0xff,0xff,0xff,0xb2,0x67,0x4a,0x60, + 0xff,0xff,0xff,0xff,0xb3,0x7c,0x33,0x70,0xff,0xff,0xff,0xff,0xb4,0x47,0x2c,0x60, + 0xff,0xff,0xff,0xff,0xb5,0x5c,0x15,0x70,0xff,0xff,0xff,0xff,0xb6,0x27,0xe,0x60, + 0xff,0xff,0xff,0xff,0xb7,0x3b,0xf7,0x70,0xff,0xff,0xff,0xff,0xb8,0x6,0xf0,0x60, + 0xff,0xff,0xff,0xff,0xb9,0x25,0x13,0xf0,0xff,0xff,0xff,0xff,0xb9,0xe6,0xd2,0x60, + 0xff,0xff,0xff,0xff,0xbb,0x4,0xf5,0xf0,0xff,0xff,0xff,0xff,0xbb,0xcf,0xee,0xe0, + 0xff,0xff,0xff,0xff,0xbc,0xe4,0xd7,0xf0,0xff,0xff,0xff,0xff,0xbd,0xaf,0xd0,0xe0, + 0xff,0xff,0xff,0xff,0xbe,0xc4,0xb9,0xf0,0xff,0xff,0xff,0xff,0xbf,0x8f,0xb2,0xe0, + 0xff,0xff,0xff,0xff,0xc0,0xa4,0x9b,0xf0,0xff,0xff,0xff,0xff,0xc1,0x6f,0x94,0xe0, + 0xff,0xff,0xff,0xff,0xc2,0x84,0x7d,0xf0,0xff,0xff,0xff,0xff,0xc3,0x4f,0x76,0xe0, + 0xff,0xff,0xff,0xff,0xc4,0x64,0x5f,0xf0,0xff,0xff,0xff,0xff,0xc5,0x2f,0x58,0xe0, + 0xff,0xff,0xff,0xff,0xc6,0x4d,0x7c,0x70,0xff,0xff,0xff,0xff,0xc7,0xf,0x3a,0xe0, + 0xff,0xff,0xff,0xff,0xc8,0x2d,0x5e,0x70,0xff,0xff,0xff,0xff,0xcb,0x88,0xf0,0x70, + 0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x60,0xfb,0xe0, + 0xff,0xff,0xff,0xff,0xd3,0x75,0xe4,0xf0,0xff,0xff,0xff,0xff,0xd4,0x40,0xdd,0xe0, + 0xff,0xff,0xff,0xff,0xd5,0x55,0xaa,0xd0,0xff,0xff,0xff,0xff,0xd6,0x20,0xa3,0xc0, + 0xff,0xff,0xff,0xff,0xd7,0x35,0x8c,0xd0,0xff,0xff,0xff,0xff,0xd8,0x0,0x85,0xc0, + 0xff,0xff,0xff,0xff,0xd9,0x15,0x6e,0xd0,0xff,0xff,0xff,0xff,0xda,0x33,0x76,0x40, + 0xff,0xff,0xff,0xff,0xda,0xfe,0xa7,0x70,0xff,0xff,0xff,0xff,0xdc,0x13,0x74,0x60, + 0xff,0xff,0xff,0xff,0xdc,0xde,0x89,0x70,0xff,0xff,0xff,0xff,0xdd,0xa9,0x82,0x60, + 0xff,0xff,0xff,0xff,0xde,0xbe,0x6b,0x70,0xff,0xff,0xff,0xff,0xdf,0x89,0x64,0x60, + 0xff,0xff,0xff,0xff,0xe0,0x9e,0x4d,0x70,0xff,0xff,0xff,0xff,0xe1,0x69,0x46,0x60, + 0xff,0xff,0xff,0xff,0xe2,0x7e,0x2f,0x70,0xff,0xff,0xff,0xff,0xe3,0x49,0x28,0x60, + 0xff,0xff,0xff,0xff,0xe4,0x5e,0x11,0x70,0xff,0xff,0xff,0xff,0xe5,0x29,0xa,0x60, + 0xff,0xff,0xff,0xff,0xe6,0x47,0x2d,0xf0,0xff,0xff,0xff,0xff,0xe7,0x12,0x26,0xe0, + 0xff,0xff,0xff,0xff,0xe8,0x27,0xf,0xf0,0xff,0xff,0xff,0xff,0xe9,0x16,0xf2,0xe0, + 0xff,0xff,0xff,0xff,0xea,0x6,0xf1,0xf0,0xff,0xff,0xff,0xff,0xea,0xf6,0xd4,0xe0, + 0xff,0xff,0xff,0xff,0xeb,0xe6,0xd3,0xf0,0xff,0xff,0xff,0xff,0xec,0xd6,0xb6,0xe0, + 0xff,0xff,0xff,0xff,0xed,0xc6,0xb5,0xf0,0xff,0xff,0xff,0xff,0xee,0xbf,0xd3,0x60, + 0xff,0xff,0xff,0xff,0xef,0xaf,0xd2,0x70,0xff,0xff,0xff,0xff,0xf0,0x9f,0xb5,0x60, + 0xff,0xff,0xff,0xff,0xf1,0x8f,0xb4,0x70,0xff,0xff,0xff,0xff,0xf2,0x7f,0x97,0x60, + 0xff,0xff,0xff,0xff,0xf3,0x6f,0x96,0x70,0xff,0xff,0xff,0xff,0xf4,0x5f,0x79,0x60, + 0xff,0xff,0xff,0xff,0xf5,0x4f,0x78,0x70,0xff,0xff,0xff,0xff,0xf6,0x3f,0x5b,0x60, + 0xff,0xff,0xff,0xff,0xf7,0x2f,0x5a,0x70,0xff,0xff,0xff,0xff,0xf8,0x28,0x77,0xe0, + 0xff,0xff,0xff,0xff,0xf9,0xf,0x3c,0x70,0xff,0xff,0xff,0xff,0xfa,0x8,0x59,0xe0, + 0xff,0xff,0xff,0xff,0xfa,0xf8,0x58,0xf0,0xff,0xff,0xff,0xff,0xfb,0xe8,0x3b,0xe0, + 0xff,0xff,0xff,0xff,0xfc,0xd8,0x3a,0xf0,0xff,0xff,0xff,0xff,0xfd,0xc8,0x1d,0xe0, + 0xff,0xff,0xff,0xff,0xfe,0xb8,0x1c,0xf0,0xff,0xff,0xff,0xff,0xff,0xa7,0xff,0xe0, + 0x0,0x0,0x0,0x0,0x0,0x97,0xfe,0xf0,0x0,0x0,0x0,0x0,0x1,0x87,0xe1,0xe0, + 0x0,0x0,0x0,0x0,0x2,0x77,0xe0,0xf0,0x0,0x0,0x0,0x0,0x3,0x70,0xfe,0x60, + 0x0,0x0,0x0,0x0,0x4,0x60,0xfd,0x70,0x0,0x0,0x0,0x0,0x5,0x50,0xe0,0x60, + 0x0,0x0,0x0,0x0,0x6,0x40,0xdf,0x70,0x0,0x0,0x0,0x0,0x7,0x30,0xc2,0x60, + 0x0,0x0,0x0,0x0,0x8,0x20,0xc1,0x70,0x0,0x0,0x0,0x0,0x9,0x10,0xa4,0x60, + 0x0,0x0,0x0,0x0,0xa,0x0,0xa3,0x70,0x0,0x0,0x0,0x0,0xa,0xf0,0x86,0x60, + 0x0,0x0,0x0,0x0,0xb,0xe0,0x85,0x70,0x0,0x0,0x0,0x0,0xc,0xd9,0xa2,0xe0, + 0x0,0x0,0x0,0x0,0xd,0xc0,0x67,0x70,0x0,0x0,0x0,0x0,0xe,0xb9,0x84,0xe0, + 0x0,0x0,0x0,0x0,0xf,0xa9,0x83,0xf0,0x0,0x0,0x0,0x0,0x10,0x99,0x66,0xe0, + 0x0,0x0,0x0,0x0,0x11,0x89,0x65,0xf0,0x0,0x0,0x0,0x0,0x12,0x79,0x48,0xe0, + 0x0,0x0,0x0,0x0,0x13,0x69,0x47,0xf0,0x0,0x0,0x0,0x0,0x14,0x59,0x2a,0xe0, + 0x0,0x0,0x0,0x0,0x15,0x49,0x29,0xf0,0x0,0x0,0x0,0x0,0x16,0x39,0xc,0xe0, + 0x0,0x0,0x0,0x0,0x17,0x29,0xb,0xf0,0x0,0x0,0x0,0x0,0x18,0x22,0x29,0x60, + 0x0,0x0,0x0,0x0,0x19,0x8,0xed,0xf0,0x0,0x0,0x0,0x0,0x1a,0x2,0xb,0x60, + 0x0,0x0,0x0,0x0,0x1a,0xf2,0xa,0x70,0x0,0x0,0x0,0x0,0x1b,0xe1,0xed,0x60, + 0x0,0x0,0x0,0x0,0x1c,0xd1,0xec,0x70,0x0,0x0,0x0,0x0,0x1d,0xc1,0xcf,0x60, + 0x0,0x0,0x0,0x0,0x1e,0xb1,0xce,0x70,0x0,0x0,0x0,0x0,0x1f,0xa1,0xb1,0x60, + 0x0,0x0,0x0,0x0,0x20,0x76,0x0,0xf0,0x0,0x0,0x0,0x0,0x21,0x81,0x93,0x60, + 0x0,0x0,0x0,0x0,0x22,0x55,0xe2,0xf0,0x0,0x0,0x0,0x0,0x23,0x6a,0xaf,0xe0, + 0x0,0x0,0x0,0x0,0x24,0x35,0xc4,0xf0,0x0,0x0,0x0,0x0,0x25,0x4a,0x91,0xe0, + 0x0,0x0,0x0,0x0,0x26,0x15,0xa6,0xf0,0x0,0x0,0x0,0x0,0x27,0x2a,0x73,0xe0, + 0x0,0x0,0x0,0x0,0x27,0xfe,0xc3,0x70,0x0,0x0,0x0,0x0,0x29,0xa,0x55,0xe0, + 0x0,0x0,0x0,0x0,0x29,0xde,0xa5,0x70,0x0,0x0,0x0,0x0,0x2a,0xea,0x37,0xe0, + 0x0,0x0,0x0,0x0,0x2b,0xbe,0x87,0x70,0x0,0x0,0x0,0x0,0x2c,0xd3,0x54,0x60, + 0x0,0x0,0x0,0x0,0x2d,0x9e,0x69,0x70,0x0,0x0,0x0,0x0,0x2e,0xb3,0x36,0x60, + 0x0,0x0,0x0,0x0,0x2f,0x7e,0x4b,0x70,0x0,0x0,0x0,0x0,0x30,0x93,0x18,0x60, + 0x0,0x0,0x0,0x0,0x31,0x67,0x67,0xf0,0x0,0x0,0x0,0x0,0x32,0x72,0xfa,0x60, + 0x0,0x0,0x0,0x0,0x33,0x47,0x49,0xf0,0x0,0x0,0x0,0x0,0x34,0x52,0xdc,0x60, + 0x0,0x0,0x0,0x0,0x35,0x27,0x2b,0xf0,0x0,0x0,0x0,0x0,0x36,0x32,0xbe,0x60, + 0x0,0x0,0x0,0x0,0x37,0x7,0xd,0xf0,0x0,0x0,0x0,0x0,0x38,0x1b,0xda,0xe0, + 0x0,0x0,0x0,0x0,0x38,0xe6,0xef,0xf0,0x0,0x0,0x0,0x0,0x39,0xfb,0xbc,0xe0, + 0x0,0x0,0x0,0x0,0x3a,0xc6,0xd1,0xf0,0x0,0x0,0x0,0x0,0x3b,0xdb,0x9e,0xe0, + 0x0,0x0,0x0,0x0,0x3c,0xaf,0xee,0x70,0x0,0x0,0x0,0x0,0x3d,0xbb,0x80,0xe0, + 0x0,0x0,0x0,0x0,0x3e,0x8f,0xd0,0x70,0x0,0x0,0x0,0x0,0x3f,0x9b,0x62,0xe0, + 0x0,0x0,0x0,0x0,0x40,0x6f,0xb2,0x70,0x0,0x0,0x0,0x0,0x41,0x84,0x7f,0x60, + 0x0,0x0,0x0,0x0,0x42,0x4f,0x94,0x70,0x0,0x0,0x0,0x0,0x43,0x64,0x61,0x60, + 0x0,0x0,0x0,0x0,0x44,0x2f,0x76,0x70,0x0,0x0,0x0,0x0,0x45,0x44,0x43,0x60, + 0x0,0x0,0x0,0x0,0x45,0xf3,0xa8,0xf0,0x0,0x0,0x0,0x0,0x47,0x2d,0x5f,0xe0, + 0x0,0x0,0x0,0x0,0x47,0xd3,0x8a,0xf0,0x0,0x0,0x0,0x0,0x49,0xd,0x41,0xe0, + 0x0,0x0,0x0,0x0,0x49,0xb3,0x6c,0xf0,0x0,0x0,0x0,0x0,0x4a,0xed,0x23,0xe0, + 0x0,0x0,0x0,0x0,0x4b,0x9c,0x89,0x70,0x0,0x0,0x0,0x0,0x4c,0xd6,0x40,0x60, + 0x0,0x0,0x0,0x0,0x4d,0x7c,0x6b,0x70,0x0,0x0,0x0,0x0,0x4e,0xb6,0x22,0x60, + 0x0,0x0,0x0,0x0,0x4f,0x5c,0x4d,0x70,0x0,0x0,0x0,0x0,0x50,0x96,0x4,0x60, + 0x0,0x0,0x0,0x0,0x51,0x3c,0x2f,0x70,0x0,0x0,0x0,0x0,0x52,0x75,0xe6,0x60, + 0x0,0x0,0x0,0x0,0x53,0x1c,0x11,0x70,0x0,0x0,0x0,0x0,0x54,0x55,0xc8,0x60, + 0x0,0x0,0x0,0x0,0x54,0xfb,0xf3,0x70,0x0,0x0,0x0,0x0,0x56,0x35,0xaa,0x60, + 0x0,0x0,0x0,0x0,0x56,0xe5,0xf,0xf0,0x0,0x0,0x0,0x0,0x58,0x1e,0xc6,0xe0, + 0x0,0x0,0x0,0x0,0x58,0xc4,0xf1,0xf0,0x0,0x0,0x0,0x0,0x59,0xfe,0xa8,0xe0, + 0x0,0x0,0x0,0x0,0x5a,0xa4,0xd3,0xf0,0x0,0x0,0x0,0x0,0x5b,0xde,0x8a,0xe0, + 0x0,0x0,0x0,0x0,0x5c,0x84,0xb5,0xf0,0x0,0x0,0x0,0x0,0x5d,0xbe,0x6c,0xe0, + 0x0,0x0,0x0,0x0,0x5e,0x64,0x97,0xf0,0x0,0x0,0x0,0x0,0x5f,0x9e,0x4e,0xe0, + 0x0,0x0,0x0,0x0,0x60,0x4d,0xb4,0x70,0x0,0x0,0x0,0x0,0x61,0x87,0x6b,0x60, + 0x0,0x0,0x0,0x0,0x62,0x2d,0x96,0x70,0x0,0x0,0x0,0x0,0x63,0x67,0x4d,0x60, + 0x0,0x0,0x0,0x0,0x64,0xd,0x78,0x70,0x0,0x0,0x0,0x0,0x65,0x47,0x2f,0x60, + 0x0,0x0,0x0,0x0,0x65,0xed,0x5a,0x70,0x0,0x0,0x0,0x0,0x67,0x27,0x11,0x60, + 0x0,0x0,0x0,0x0,0x67,0xcd,0x3c,0x70,0x0,0x0,0x0,0x0,0x69,0x6,0xf3,0x60, + 0x0,0x0,0x0,0x0,0x69,0xad,0x1e,0x70,0x0,0x0,0x0,0x0,0x6a,0xe6,0xd5,0x60, + 0x0,0x0,0x0,0x0,0x6b,0x96,0x3a,0xf0,0x0,0x0,0x0,0x0,0x6c,0xcf,0xf1,0xe0, + 0x0,0x0,0x0,0x0,0x6d,0x76,0x1c,0xf0,0x0,0x0,0x0,0x0,0x6e,0xaf,0xd3,0xe0, + 0x0,0x0,0x0,0x0,0x6f,0x55,0xfe,0xf0,0x0,0x0,0x0,0x0,0x70,0x8f,0xb5,0xe0, + 0x0,0x0,0x0,0x0,0x71,0x35,0xe0,0xf0,0x0,0x0,0x0,0x0,0x72,0x6f,0x97,0xe0, + 0x0,0x0,0x0,0x0,0x73,0x15,0xc2,0xf0,0x0,0x0,0x0,0x0,0x74,0x4f,0x79,0xe0, + 0x0,0x0,0x0,0x0,0x74,0xfe,0xdf,0x70,0x0,0x0,0x0,0x0,0x76,0x38,0x96,0x60, + 0x0,0x0,0x0,0x0,0x76,0xde,0xc1,0x70,0x0,0x0,0x0,0x0,0x78,0x18,0x78,0x60, + 0x0,0x0,0x0,0x0,0x78,0xbe,0xa3,0x70,0x0,0x0,0x0,0x0,0x79,0xf8,0x5a,0x60, + 0x0,0x0,0x0,0x0,0x7a,0x9e,0x85,0x70,0x0,0x0,0x0,0x0,0x7b,0xd8,0x3c,0x60, + 0x0,0x0,0x0,0x0,0x7c,0x7e,0x67,0x70,0x0,0x0,0x0,0x0,0x7d,0xb8,0x1e,0x60, + 0x0,0x0,0x0,0x0,0x7e,0x5e,0x49,0x70,0x0,0x0,0x0,0x0,0x7f,0x98,0x0,0x60, + 0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x3, + 0x4,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0xff,0xff,0xa1,0xf4,0x0,0x0,0xff,0xff,0xab,0xa0,0x0,0x4,0xff, - 0xff,0xb9,0xb0,0x1,0x8,0x4c,0x4d,0x54,0x0,0x43,0x53,0x54,0x0,0x43,0x44,0x54, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0, - 0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x58,0x0,0x0,0x0,0x3,0x0, - 0x0,0x0,0xc,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xa5, - 0xb6,0xda,0x60,0x0,0x0,0x0,0x0,0x22,0x55,0xf1,0x0,0x0,0x0,0x0,0x0,0x23, - 0x6a,0xbd,0xf0,0x0,0x0,0x0,0x0,0x31,0x67,0x76,0x0,0x0,0x0,0x0,0x0,0x32, - 0x73,0x8,0x70,0x0,0x0,0x0,0x0,0x33,0x47,0x58,0x0,0x0,0x0,0x0,0x0,0x34, - 0x52,0xea,0x70,0x0,0x0,0x0,0x0,0x35,0x27,0x3a,0x0,0x0,0x0,0x0,0x0,0x36, - 0x32,0xcc,0x70,0x0,0x0,0x0,0x0,0x37,0x7,0x1c,0x0,0x0,0x0,0x0,0x0,0x38, - 0x1b,0xe8,0xf0,0x0,0x0,0x0,0x0,0x38,0xe6,0xfe,0x0,0x0,0x0,0x0,0x0,0x39, - 0xfb,0xca,0xf0,0x0,0x0,0x0,0x0,0x3a,0xf5,0x4,0x80,0x0,0x0,0x0,0x0,0x3b, - 0xb6,0xc2,0xf0,0x0,0x0,0x0,0x0,0x3c,0xaf,0xfc,0x80,0x0,0x0,0x0,0x0,0x3d, - 0xbb,0x8e,0xf0,0x0,0x0,0x0,0x0,0x3e,0x8f,0xde,0x80,0x0,0x0,0x0,0x0,0x3f, - 0x9b,0x70,0xf0,0x0,0x0,0x0,0x0,0x40,0x6f,0xc0,0x80,0x0,0x0,0x0,0x0,0x41, - 0x84,0x8d,0x70,0x0,0x0,0x0,0x0,0x42,0x4f,0xa2,0x80,0x0,0x0,0x0,0x0,0x43, - 0x64,0x6f,0x70,0x0,0x0,0x0,0x0,0x44,0x2f,0x84,0x80,0x0,0x0,0x0,0x0,0x45, - 0x44,0x51,0x70,0x0,0x0,0x0,0x0,0x46,0xf,0x66,0x80,0x0,0x0,0x0,0x0,0x47, - 0x24,0x33,0x70,0x0,0x0,0x0,0x0,0x47,0xf8,0x83,0x0,0x0,0x0,0x0,0x0,0x49, - 0x4,0x15,0x70,0x0,0x0,0x0,0x0,0x49,0xd8,0x65,0x0,0x0,0x0,0x0,0x0,0x4a, - 0xe3,0xf7,0x70,0x0,0x0,0x0,0x0,0x4b,0xb8,0x47,0x0,0x0,0x0,0x0,0x0,0x4c, - 0xcd,0x13,0xf0,0x0,0x0,0x0,0x0,0x4d,0x98,0x29,0x0,0x0,0x0,0x0,0x0,0x4e, - 0xac,0xf5,0xf0,0x0,0x0,0x0,0x0,0x4f,0x78,0xb,0x0,0x0,0x0,0x0,0x0,0x50, - 0x8c,0xd7,0xf0,0x0,0x0,0x0,0x0,0x51,0x61,0x27,0x80,0x0,0x0,0x0,0x0,0x52, - 0x6c,0xb9,0xf0,0x0,0x0,0x0,0x0,0x53,0x41,0x9,0x80,0x0,0x0,0x0,0x0,0x54, - 0x4c,0x9b,0xf0,0x0,0x0,0x0,0x0,0x55,0x20,0xeb,0x80,0x0,0x0,0x0,0x0,0x56, - 0x2c,0x7d,0xf0,0x0,0x0,0x0,0x0,0x57,0x0,0xcd,0x80,0x0,0x0,0x0,0x0,0x58, - 0x15,0x9a,0x70,0x0,0x0,0x0,0x0,0x58,0xe0,0xaf,0x80,0x0,0x0,0x0,0x0,0x59, - 0xf5,0x7c,0x70,0x0,0x0,0x0,0x0,0x5a,0xc0,0x91,0x80,0x0,0x0,0x0,0x0,0x5b, - 0xd5,0x5e,0x70,0x0,0x0,0x0,0x0,0x5c,0xa9,0xae,0x0,0x0,0x0,0x0,0x0,0x5d, - 0xb5,0x40,0x70,0x0,0x0,0x0,0x0,0x5e,0x89,0x90,0x0,0x0,0x0,0x0,0x0,0x5f, - 0x95,0x22,0x70,0x0,0x0,0x0,0x0,0x60,0x69,0x72,0x0,0x0,0x0,0x0,0x0,0x61, - 0x7e,0x3e,0xf0,0x0,0x0,0x0,0x0,0x62,0x49,0x54,0x0,0x0,0x0,0x0,0x0,0x63, - 0x5e,0x20,0xf0,0x0,0x0,0x0,0x0,0x64,0x29,0x36,0x0,0x0,0x0,0x0,0x0,0x65, - 0x3e,0x2,0xf0,0x0,0x0,0x0,0x0,0x66,0x12,0x52,0x80,0x0,0x0,0x0,0x0,0x67, - 0x1d,0xe4,0xf0,0x0,0x0,0x0,0x0,0x67,0xf2,0x34,0x80,0x0,0x0,0x0,0x0,0x68, - 0xfd,0xc6,0xf0,0x0,0x0,0x0,0x0,0x69,0xd2,0x16,0x80,0x0,0x0,0x0,0x0,0x6a, - 0xdd,0xa8,0xf0,0x0,0x0,0x0,0x0,0x6b,0xb1,0xf8,0x80,0x0,0x0,0x0,0x0,0x6c, - 0xc6,0xc5,0x70,0x0,0x0,0x0,0x0,0x6d,0x91,0xda,0x80,0x0,0x0,0x0,0x0,0x6e, - 0xa6,0xa7,0x70,0x0,0x0,0x0,0x0,0x6f,0x71,0xbc,0x80,0x0,0x0,0x0,0x0,0x70, - 0x86,0x89,0x70,0x0,0x0,0x0,0x0,0x71,0x5a,0xd9,0x0,0x0,0x0,0x0,0x0,0x72, - 0x66,0x6b,0x70,0x0,0x0,0x0,0x0,0x73,0x3a,0xbb,0x0,0x0,0x0,0x0,0x0,0x74, - 0x46,0x4d,0x70,0x0,0x0,0x0,0x0,0x75,0x1a,0x9d,0x0,0x0,0x0,0x0,0x0,0x76, - 0x2f,0x69,0xf0,0x0,0x0,0x0,0x0,0x76,0xfa,0x7f,0x0,0x0,0x0,0x0,0x0,0x78, - 0xf,0x4b,0xf0,0x0,0x0,0x0,0x0,0x78,0xda,0x61,0x0,0x0,0x0,0x0,0x0,0x79, - 0xef,0x2d,0xf0,0x0,0x0,0x0,0x0,0x7a,0xba,0x43,0x0,0x0,0x0,0x0,0x0,0x7b, - 0xcf,0xf,0xf0,0x0,0x0,0x0,0x0,0x7c,0xa3,0x5f,0x80,0x0,0x0,0x0,0x0,0x7d, - 0xae,0xf1,0xf0,0x0,0x0,0x0,0x0,0x7e,0x83,0x41,0x80,0x0,0x0,0x0,0x0,0x7f, - 0x8e,0xd3,0xf0,0x0,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0xff,0xff,0xa1,0xf4,0x0, - 0x0,0xff,0xff,0xab,0xa0,0x0,0x4,0xff,0xff,0xb9,0xb0,0x1,0x8,0x4c,0x4d,0x54, - 0x0,0x43,0x53,0x54,0x0,0x43,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa, - 0x43,0x53,0x54,0x36,0x43,0x44,0x54,0x2c,0x4d,0x34,0x2e,0x31,0x2e,0x30,0x2c,0x4d, - 0x31,0x30,0x2e,0x35,0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Blanc-Sablon - 0x0,0x0,0x1,0x33, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0x9e, - 0xb8,0x85,0x60,0x9f,0xba,0xdd,0x50,0xcb,0x88,0xe2,0x60,0xd2,0x23,0xf4,0x70,0xd2, - 0x60,0xed,0xd0,0x2,0x1,0x2,0x3,0x4,0x2,0xff,0xff,0xca,0x74,0x0,0x0,0xff, - 0xff,0xd5,0xd0,0x1,0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0xff,0xff,0xd5,0xd0,0x1, - 0xc,0xff,0xff,0xd5,0xd0,0x1,0x10,0x4c,0x4d,0x54,0x0,0x41,0x44,0x54,0x0,0x41, - 0x53,0x54,0x0,0x41,0x57,0x54,0x0,0x41,0x50,0x54,0x0,0x0,0x0,0x0,0x0,0x1, - 0x0,0x0,0x0,0x0,0x1,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0, - 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x5,0x0,0x0,0x0, - 0x14,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x5e,0x3d,0x39, - 0xc,0xff,0xff,0xff,0xff,0x9e,0xb8,0x85,0x60,0xff,0xff,0xff,0xff,0x9f,0xba,0xdd, - 0x50,0xff,0xff,0xff,0xff,0xcb,0x88,0xe2,0x60,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4, - 0x70,0xff,0xff,0xff,0xff,0xd2,0x60,0xed,0xd0,0x0,0x2,0x1,0x2,0x3,0x4,0x2, - 0xff,0xff,0xca,0x74,0x0,0x0,0xff,0xff,0xd5,0xd0,0x1,0x4,0xff,0xff,0xc7,0xc0, - 0x0,0x8,0xff,0xff,0xd5,0xd0,0x1,0xc,0xff,0xff,0xd5,0xd0,0x1,0x10,0x4c,0x4d, - 0x54,0x0,0x41,0x44,0x54,0x0,0x41,0x53,0x54,0x0,0x41,0x57,0x54,0x0,0x41,0x50, - 0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x1,0xa,0x41,0x53,0x54, - 0x34,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/New_York - 0x0,0x0,0xd,0xd9, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0xb5,0x94,0x0,0x0, + 0xff,0xff,0xc7,0xc0,0x1,0x4,0xff,0xff,0xb9,0xb0,0x0,0x8,0xff,0xff,0xc7,0xc0, + 0x1,0xc,0xff,0xff,0xc7,0xc0,0x1,0x10,0x4c,0x4d,0x54,0x0,0x45,0x44,0x54,0x0, + 0x45,0x53,0x54,0x0,0x45,0x57,0x54,0x0,0x45,0x50,0x54,0x0,0x0,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x1,0xa,0x45,0x53,0x54,0x35,0x45,0x44,0x54,0x2c,0x4d, + 0x33,0x2e,0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Nipigon + 0x0,0x0,0x8,0x53, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xec,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0x9e, - 0xa6,0x1e,0x70,0x9f,0xba,0xeb,0x60,0xa0,0x86,0x0,0x70,0xa1,0x9a,0xcd,0x60,0xa2, - 0x65,0xe2,0x70,0xa3,0x83,0xe9,0xe0,0xa4,0x6a,0xae,0x70,0xa5,0x35,0xa7,0x60,0xa6, - 0x53,0xca,0xf0,0xa7,0x15,0x89,0x60,0xa8,0x33,0xac,0xf0,0xa8,0xfe,0xa5,0xe0,0xaa, - 0x13,0x8e,0xf0,0xaa,0xde,0x87,0xe0,0xab,0xf3,0x70,0xf0,0xac,0xbe,0x69,0xe0,0xad, - 0xd3,0x52,0xf0,0xae,0x9e,0x4b,0xe0,0xaf,0xb3,0x34,0xf0,0xb0,0x7e,0x2d,0xe0,0xb1, - 0x9c,0x51,0x70,0xb2,0x67,0x4a,0x60,0xb3,0x7c,0x33,0x70,0xb4,0x47,0x2c,0x60,0xb5, - 0x5c,0x15,0x70,0xb6,0x27,0xe,0x60,0xb7,0x3b,0xf7,0x70,0xb8,0x6,0xf0,0x60,0xb9, - 0x1b,0xd9,0x70,0xb9,0xe6,0xd2,0x60,0xbb,0x4,0xf5,0xf0,0xbb,0xc6,0xb4,0x60,0xbc, - 0xe4,0xd7,0xf0,0xbd,0xaf,0xd0,0xe0,0xbe,0xc4,0xb9,0xf0,0xbf,0x8f,0xb2,0xe0,0xc0, - 0xa4,0x9b,0xf0,0xc1,0x6f,0x94,0xe0,0xc2,0x84,0x7d,0xf0,0xc3,0x4f,0x76,0xe0,0xc4, - 0x64,0x5f,0xf0,0xc5,0x2f,0x58,0xe0,0xc6,0x4d,0x7c,0x70,0xc7,0xf,0x3a,0xe0,0xc8, - 0x2d,0x5e,0x70,0xc8,0xf8,0x57,0x60,0xca,0xd,0x40,0x70,0xca,0xd8,0x39,0x60,0xcb, - 0x88,0xf0,0x70,0xd2,0x23,0xf4,0x70,0xd2,0x60,0xfb,0xe0,0xd3,0x75,0xe4,0xf0,0xd4, - 0x40,0xdd,0xe0,0xd5,0x55,0xc6,0xf0,0xd6,0x20,0xbf,0xe0,0xd7,0x35,0xa8,0xf0,0xd8, - 0x0,0xa1,0xe0,0xd9,0x15,0x8a,0xf0,0xd9,0xe0,0x83,0xe0,0xda,0xfe,0xa7,0x70,0xdb, - 0xc0,0x65,0xe0,0xdc,0xde,0x89,0x70,0xdd,0xa9,0x82,0x60,0xde,0xbe,0x6b,0x70,0xdf, - 0x89,0x64,0x60,0xe0,0x9e,0x4d,0x70,0xe1,0x69,0x46,0x60,0xe2,0x7e,0x2f,0x70,0xe3, - 0x49,0x28,0x60,0xe4,0x5e,0x11,0x70,0xe5,0x57,0x2e,0xe0,0xe6,0x47,0x2d,0xf0,0xe7, - 0x37,0x10,0xe0,0xe8,0x27,0xf,0xf0,0xe9,0x16,0xf2,0xe0,0xea,0x6,0xf1,0xf0,0xea, - 0xf6,0xd4,0xe0,0xeb,0xe6,0xd3,0xf0,0xec,0xd6,0xb6,0xe0,0xed,0xc6,0xb5,0xf0,0xee, - 0xbf,0xd3,0x60,0xef,0xaf,0xd2,0x70,0xf0,0x9f,0xb5,0x60,0xf1,0x8f,0xb4,0x70,0xf2, - 0x7f,0x97,0x60,0xf3,0x6f,0x96,0x70,0xf4,0x5f,0x79,0x60,0xf5,0x4f,0x78,0x70,0xf6, - 0x3f,0x5b,0x60,0xf7,0x2f,0x5a,0x70,0xf8,0x28,0x77,0xe0,0xf9,0xf,0x3c,0x70,0xfa, - 0x8,0x59,0xe0,0xfa,0xf8,0x58,0xf0,0xfb,0xe8,0x3b,0xe0,0xfc,0xd8,0x3a,0xf0,0xfd, - 0xc8,0x1d,0xe0,0xfe,0xb8,0x1c,0xf0,0xff,0xa7,0xff,0xe0,0x0,0x97,0xfe,0xf0,0x1, - 0x87,0xe1,0xe0,0x2,0x77,0xe0,0xf0,0x3,0x70,0xfe,0x60,0x4,0x60,0xfd,0x70,0x5, - 0x50,0xe0,0x60,0x6,0x40,0xdf,0x70,0x7,0x30,0xc2,0x60,0x7,0x8d,0x19,0x70,0x9, - 0x10,0xa4,0x60,0x9,0xad,0x94,0xf0,0xa,0xf0,0x86,0x60,0xb,0xe0,0x85,0x70,0xc, - 0xd9,0xa2,0xe0,0xd,0xc0,0x67,0x70,0xe,0xb9,0x84,0xe0,0xf,0xa9,0x83,0xf0,0x10, - 0x99,0x66,0xe0,0x11,0x89,0x65,0xf0,0x12,0x79,0x48,0xe0,0x13,0x69,0x47,0xf0,0x14, - 0x59,0x2a,0xe0,0x15,0x49,0x29,0xf0,0x16,0x39,0xc,0xe0,0x17,0x29,0xb,0xf0,0x18, - 0x22,0x29,0x60,0x19,0x8,0xed,0xf0,0x1a,0x2,0xb,0x60,0x1a,0xf2,0xa,0x70,0x1b, - 0xe1,0xed,0x60,0x1c,0xd1,0xec,0x70,0x1d,0xc1,0xcf,0x60,0x1e,0xb1,0xce,0x70,0x1f, - 0xa1,0xb1,0x60,0x20,0x76,0x0,0xf0,0x21,0x81,0x93,0x60,0x22,0x55,0xe2,0xf0,0x23, - 0x6a,0xaf,0xe0,0x24,0x35,0xc4,0xf0,0x25,0x4a,0x91,0xe0,0x26,0x15,0xa6,0xf0,0x27, - 0x2a,0x73,0xe0,0x27,0xfe,0xc3,0x70,0x29,0xa,0x55,0xe0,0x29,0xde,0xa5,0x70,0x2a, - 0xea,0x37,0xe0,0x2b,0xbe,0x87,0x70,0x2c,0xd3,0x54,0x60,0x2d,0x9e,0x69,0x70,0x2e, - 0xb3,0x36,0x60,0x2f,0x7e,0x4b,0x70,0x30,0x93,0x18,0x60,0x31,0x67,0x67,0xf0,0x32, - 0x72,0xfa,0x60,0x33,0x47,0x49,0xf0,0x34,0x52,0xdc,0x60,0x35,0x27,0x2b,0xf0,0x36, - 0x32,0xbe,0x60,0x37,0x7,0xd,0xf0,0x38,0x1b,0xda,0xe0,0x38,0xe6,0xef,0xf0,0x39, - 0xfb,0xbc,0xe0,0x3a,0xc6,0xd1,0xf0,0x3b,0xdb,0x9e,0xe0,0x3c,0xaf,0xee,0x70,0x3d, - 0xbb,0x80,0xe0,0x3e,0x8f,0xd0,0x70,0x3f,0x9b,0x62,0xe0,0x40,0x6f,0xb2,0x70,0x41, - 0x84,0x7f,0x60,0x42,0x4f,0x94,0x70,0x43,0x64,0x61,0x60,0x44,0x2f,0x76,0x70,0x45, - 0x44,0x43,0x60,0x45,0xf3,0xa8,0xf0,0x47,0x2d,0x5f,0xe0,0x47,0xd3,0x8a,0xf0,0x49, - 0xd,0x41,0xe0,0x49,0xb3,0x6c,0xf0,0x4a,0xed,0x23,0xe0,0x4b,0x9c,0x89,0x70,0x4c, - 0xd6,0x40,0x60,0x4d,0x7c,0x6b,0x70,0x4e,0xb6,0x22,0x60,0x4f,0x5c,0x4d,0x70,0x50, - 0x96,0x4,0x60,0x51,0x3c,0x2f,0x70,0x52,0x75,0xe6,0x60,0x53,0x1c,0x11,0x70,0x54, - 0x55,0xc8,0x60,0x54,0xfb,0xf3,0x70,0x56,0x35,0xaa,0x60,0x56,0xe5,0xf,0xf0,0x58, - 0x1e,0xc6,0xe0,0x58,0xc4,0xf1,0xf0,0x59,0xfe,0xa8,0xe0,0x5a,0xa4,0xd3,0xf0,0x5b, - 0xde,0x8a,0xe0,0x5c,0x84,0xb5,0xf0,0x5d,0xbe,0x6c,0xe0,0x5e,0x64,0x97,0xf0,0x5f, - 0x9e,0x4e,0xe0,0x60,0x4d,0xb4,0x70,0x61,0x87,0x6b,0x60,0x62,0x2d,0x96,0x70,0x63, - 0x67,0x4d,0x60,0x64,0xd,0x78,0x70,0x65,0x47,0x2f,0x60,0x65,0xed,0x5a,0x70,0x67, - 0x27,0x11,0x60,0x67,0xcd,0x3c,0x70,0x69,0x6,0xf3,0x60,0x69,0xad,0x1e,0x70,0x6a, - 0xe6,0xd5,0x60,0x6b,0x96,0x3a,0xf0,0x6c,0xcf,0xf1,0xe0,0x6d,0x76,0x1c,0xf0,0x6e, - 0xaf,0xd3,0xe0,0x6f,0x55,0xfe,0xf0,0x70,0x8f,0xb5,0xe0,0x71,0x35,0xe0,0xf0,0x72, - 0x6f,0x97,0xe0,0x73,0x15,0xc2,0xf0,0x74,0x4f,0x79,0xe0,0x74,0xfe,0xdf,0x70,0x76, - 0x38,0x96,0x60,0x76,0xde,0xc1,0x70,0x78,0x18,0x78,0x60,0x78,0xbe,0xa3,0x70,0x79, - 0xf8,0x5a,0x60,0x7a,0x9e,0x85,0x70,0x7b,0xd8,0x3c,0x60,0x7c,0x7e,0x67,0x70,0x7d, - 0xb8,0x1e,0x60,0x7e,0x5e,0x49,0x70,0x7f,0x98,0x0,0x60,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0xba,0x9e,0x0,0x0,0xff,0xff,0xc7, - 0xc0,0x1,0x4,0xff,0xff,0xb9,0xb0,0x0,0x8,0xff,0xff,0xc7,0xc0,0x1,0xc,0xff, - 0xff,0xc7,0xc0,0x1,0x10,0x4c,0x4d,0x54,0x0,0x45,0x44,0x54,0x0,0x45,0x53,0x54, - 0x0,0x45,0x57,0x54,0x0,0x45,0x50,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0, - 0x0,0x0,0x1,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0xed,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0xf8, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x5e,0x3,0xf0,0x90,0xff, - 0xff,0xff,0xff,0x9e,0xa6,0x1e,0x70,0xff,0xff,0xff,0xff,0x9f,0xba,0xeb,0x60,0xff, - 0xff,0xff,0xff,0xa0,0x86,0x0,0x70,0xff,0xff,0xff,0xff,0xa1,0x9a,0xcd,0x60,0xff, - 0xff,0xff,0xff,0xa2,0x65,0xe2,0x70,0xff,0xff,0xff,0xff,0xa3,0x83,0xe9,0xe0,0xff, - 0xff,0xff,0xff,0xa4,0x6a,0xae,0x70,0xff,0xff,0xff,0xff,0xa5,0x35,0xa7,0x60,0xff, - 0xff,0xff,0xff,0xa6,0x53,0xca,0xf0,0xff,0xff,0xff,0xff,0xa7,0x15,0x89,0x60,0xff, - 0xff,0xff,0xff,0xa8,0x33,0xac,0xf0,0xff,0xff,0xff,0xff,0xa8,0xfe,0xa5,0xe0,0xff, - 0xff,0xff,0xff,0xaa,0x13,0x8e,0xf0,0xff,0xff,0xff,0xff,0xaa,0xde,0x87,0xe0,0xff, - 0xff,0xff,0xff,0xab,0xf3,0x70,0xf0,0xff,0xff,0xff,0xff,0xac,0xbe,0x69,0xe0,0xff, - 0xff,0xff,0xff,0xad,0xd3,0x52,0xf0,0xff,0xff,0xff,0xff,0xae,0x9e,0x4b,0xe0,0xff, - 0xff,0xff,0xff,0xaf,0xb3,0x34,0xf0,0xff,0xff,0xff,0xff,0xb0,0x7e,0x2d,0xe0,0xff, - 0xff,0xff,0xff,0xb1,0x9c,0x51,0x70,0xff,0xff,0xff,0xff,0xb2,0x67,0x4a,0x60,0xff, - 0xff,0xff,0xff,0xb3,0x7c,0x33,0x70,0xff,0xff,0xff,0xff,0xb4,0x47,0x2c,0x60,0xff, - 0xff,0xff,0xff,0xb5,0x5c,0x15,0x70,0xff,0xff,0xff,0xff,0xb6,0x27,0xe,0x60,0xff, - 0xff,0xff,0xff,0xb7,0x3b,0xf7,0x70,0xff,0xff,0xff,0xff,0xb8,0x6,0xf0,0x60,0xff, - 0xff,0xff,0xff,0xb9,0x1b,0xd9,0x70,0xff,0xff,0xff,0xff,0xb9,0xe6,0xd2,0x60,0xff, - 0xff,0xff,0xff,0xbb,0x4,0xf5,0xf0,0xff,0xff,0xff,0xff,0xbb,0xc6,0xb4,0x60,0xff, - 0xff,0xff,0xff,0xbc,0xe4,0xd7,0xf0,0xff,0xff,0xff,0xff,0xbd,0xaf,0xd0,0xe0,0xff, - 0xff,0xff,0xff,0xbe,0xc4,0xb9,0xf0,0xff,0xff,0xff,0xff,0xbf,0x8f,0xb2,0xe0,0xff, - 0xff,0xff,0xff,0xc0,0xa4,0x9b,0xf0,0xff,0xff,0xff,0xff,0xc1,0x6f,0x94,0xe0,0xff, - 0xff,0xff,0xff,0xc2,0x84,0x7d,0xf0,0xff,0xff,0xff,0xff,0xc3,0x4f,0x76,0xe0,0xff, - 0xff,0xff,0xff,0xc4,0x64,0x5f,0xf0,0xff,0xff,0xff,0xff,0xc5,0x2f,0x58,0xe0,0xff, - 0xff,0xff,0xff,0xc6,0x4d,0x7c,0x70,0xff,0xff,0xff,0xff,0xc7,0xf,0x3a,0xe0,0xff, - 0xff,0xff,0xff,0xc8,0x2d,0x5e,0x70,0xff,0xff,0xff,0xff,0xc8,0xf8,0x57,0x60,0xff, - 0xff,0xff,0xff,0xca,0xd,0x40,0x70,0xff,0xff,0xff,0xff,0xca,0xd8,0x39,0x60,0xff, - 0xff,0xff,0xff,0xcb,0x88,0xf0,0x70,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff, - 0xff,0xff,0xff,0xd2,0x60,0xfb,0xe0,0xff,0xff,0xff,0xff,0xd3,0x75,0xe4,0xf0,0xff, - 0xff,0xff,0xff,0xd4,0x40,0xdd,0xe0,0xff,0xff,0xff,0xff,0xd5,0x55,0xc6,0xf0,0xff, - 0xff,0xff,0xff,0xd6,0x20,0xbf,0xe0,0xff,0xff,0xff,0xff,0xd7,0x35,0xa8,0xf0,0xff, - 0xff,0xff,0xff,0xd8,0x0,0xa1,0xe0,0xff,0xff,0xff,0xff,0xd9,0x15,0x8a,0xf0,0xff, - 0xff,0xff,0xff,0xd9,0xe0,0x83,0xe0,0xff,0xff,0xff,0xff,0xda,0xfe,0xa7,0x70,0xff, - 0xff,0xff,0xff,0xdb,0xc0,0x65,0xe0,0xff,0xff,0xff,0xff,0xdc,0xde,0x89,0x70,0xff, - 0xff,0xff,0xff,0xdd,0xa9,0x82,0x60,0xff,0xff,0xff,0xff,0xde,0xbe,0x6b,0x70,0xff, - 0xff,0xff,0xff,0xdf,0x89,0x64,0x60,0xff,0xff,0xff,0xff,0xe0,0x9e,0x4d,0x70,0xff, - 0xff,0xff,0xff,0xe1,0x69,0x46,0x60,0xff,0xff,0xff,0xff,0xe2,0x7e,0x2f,0x70,0xff, - 0xff,0xff,0xff,0xe3,0x49,0x28,0x60,0xff,0xff,0xff,0xff,0xe4,0x5e,0x11,0x70,0xff, - 0xff,0xff,0xff,0xe5,0x57,0x2e,0xe0,0xff,0xff,0xff,0xff,0xe6,0x47,0x2d,0xf0,0xff, - 0xff,0xff,0xff,0xe7,0x37,0x10,0xe0,0xff,0xff,0xff,0xff,0xe8,0x27,0xf,0xf0,0xff, - 0xff,0xff,0xff,0xe9,0x16,0xf2,0xe0,0xff,0xff,0xff,0xff,0xea,0x6,0xf1,0xf0,0xff, - 0xff,0xff,0xff,0xea,0xf6,0xd4,0xe0,0xff,0xff,0xff,0xff,0xeb,0xe6,0xd3,0xf0,0xff, - 0xff,0xff,0xff,0xec,0xd6,0xb6,0xe0,0xff,0xff,0xff,0xff,0xed,0xc6,0xb5,0xf0,0xff, - 0xff,0xff,0xff,0xee,0xbf,0xd3,0x60,0xff,0xff,0xff,0xff,0xef,0xaf,0xd2,0x70,0xff, - 0xff,0xff,0xff,0xf0,0x9f,0xb5,0x60,0xff,0xff,0xff,0xff,0xf1,0x8f,0xb4,0x70,0xff, - 0xff,0xff,0xff,0xf2,0x7f,0x97,0x60,0xff,0xff,0xff,0xff,0xf3,0x6f,0x96,0x70,0xff, - 0xff,0xff,0xff,0xf4,0x5f,0x79,0x60,0xff,0xff,0xff,0xff,0xf5,0x4f,0x78,0x70,0xff, - 0xff,0xff,0xff,0xf6,0x3f,0x5b,0x60,0xff,0xff,0xff,0xff,0xf7,0x2f,0x5a,0x70,0xff, - 0xff,0xff,0xff,0xf8,0x28,0x77,0xe0,0xff,0xff,0xff,0xff,0xf9,0xf,0x3c,0x70,0xff, - 0xff,0xff,0xff,0xfa,0x8,0x59,0xe0,0xff,0xff,0xff,0xff,0xfa,0xf8,0x58,0xf0,0xff, - 0xff,0xff,0xff,0xfb,0xe8,0x3b,0xe0,0xff,0xff,0xff,0xff,0xfc,0xd8,0x3a,0xf0,0xff, - 0xff,0xff,0xff,0xfd,0xc8,0x1d,0xe0,0xff,0xff,0xff,0xff,0xfe,0xb8,0x1c,0xf0,0xff, - 0xff,0xff,0xff,0xff,0xa7,0xff,0xe0,0x0,0x0,0x0,0x0,0x0,0x97,0xfe,0xf0,0x0, - 0x0,0x0,0x0,0x1,0x87,0xe1,0xe0,0x0,0x0,0x0,0x0,0x2,0x77,0xe0,0xf0,0x0, - 0x0,0x0,0x0,0x3,0x70,0xfe,0x60,0x0,0x0,0x0,0x0,0x4,0x60,0xfd,0x70,0x0, - 0x0,0x0,0x0,0x5,0x50,0xe0,0x60,0x0,0x0,0x0,0x0,0x6,0x40,0xdf,0x70,0x0, - 0x0,0x0,0x0,0x7,0x30,0xc2,0x60,0x0,0x0,0x0,0x0,0x7,0x8d,0x19,0x70,0x0, - 0x0,0x0,0x0,0x9,0x10,0xa4,0x60,0x0,0x0,0x0,0x0,0x9,0xad,0x94,0xf0,0x0, - 0x0,0x0,0x0,0xa,0xf0,0x86,0x60,0x0,0x0,0x0,0x0,0xb,0xe0,0x85,0x70,0x0, - 0x0,0x0,0x0,0xc,0xd9,0xa2,0xe0,0x0,0x0,0x0,0x0,0xd,0xc0,0x67,0x70,0x0, - 0x0,0x0,0x0,0xe,0xb9,0x84,0xe0,0x0,0x0,0x0,0x0,0xf,0xa9,0x83,0xf0,0x0, - 0x0,0x0,0x0,0x10,0x99,0x66,0xe0,0x0,0x0,0x0,0x0,0x11,0x89,0x65,0xf0,0x0, - 0x0,0x0,0x0,0x12,0x79,0x48,0xe0,0x0,0x0,0x0,0x0,0x13,0x69,0x47,0xf0,0x0, - 0x0,0x0,0x0,0x14,0x59,0x2a,0xe0,0x0,0x0,0x0,0x0,0x15,0x49,0x29,0xf0,0x0, - 0x0,0x0,0x0,0x16,0x39,0xc,0xe0,0x0,0x0,0x0,0x0,0x17,0x29,0xb,0xf0,0x0, - 0x0,0x0,0x0,0x18,0x22,0x29,0x60,0x0,0x0,0x0,0x0,0x19,0x8,0xed,0xf0,0x0, - 0x0,0x0,0x0,0x1a,0x2,0xb,0x60,0x0,0x0,0x0,0x0,0x1a,0xf2,0xa,0x70,0x0, - 0x0,0x0,0x0,0x1b,0xe1,0xed,0x60,0x0,0x0,0x0,0x0,0x1c,0xd1,0xec,0x70,0x0, - 0x0,0x0,0x0,0x1d,0xc1,0xcf,0x60,0x0,0x0,0x0,0x0,0x1e,0xb1,0xce,0x70,0x0, - 0x0,0x0,0x0,0x1f,0xa1,0xb1,0x60,0x0,0x0,0x0,0x0,0x20,0x76,0x0,0xf0,0x0, - 0x0,0x0,0x0,0x21,0x81,0x93,0x60,0x0,0x0,0x0,0x0,0x22,0x55,0xe2,0xf0,0x0, - 0x0,0x0,0x0,0x23,0x6a,0xaf,0xe0,0x0,0x0,0x0,0x0,0x24,0x35,0xc4,0xf0,0x0, - 0x0,0x0,0x0,0x25,0x4a,0x91,0xe0,0x0,0x0,0x0,0x0,0x26,0x15,0xa6,0xf0,0x0, - 0x0,0x0,0x0,0x27,0x2a,0x73,0xe0,0x0,0x0,0x0,0x0,0x27,0xfe,0xc3,0x70,0x0, - 0x0,0x0,0x0,0x29,0xa,0x55,0xe0,0x0,0x0,0x0,0x0,0x29,0xde,0xa5,0x70,0x0, - 0x0,0x0,0x0,0x2a,0xea,0x37,0xe0,0x0,0x0,0x0,0x0,0x2b,0xbe,0x87,0x70,0x0, - 0x0,0x0,0x0,0x2c,0xd3,0x54,0x60,0x0,0x0,0x0,0x0,0x2d,0x9e,0x69,0x70,0x0, - 0x0,0x0,0x0,0x2e,0xb3,0x36,0x60,0x0,0x0,0x0,0x0,0x2f,0x7e,0x4b,0x70,0x0, - 0x0,0x0,0x0,0x30,0x93,0x18,0x60,0x0,0x0,0x0,0x0,0x31,0x67,0x67,0xf0,0x0, - 0x0,0x0,0x0,0x32,0x72,0xfa,0x60,0x0,0x0,0x0,0x0,0x33,0x47,0x49,0xf0,0x0, - 0x0,0x0,0x0,0x34,0x52,0xdc,0x60,0x0,0x0,0x0,0x0,0x35,0x27,0x2b,0xf0,0x0, - 0x0,0x0,0x0,0x36,0x32,0xbe,0x60,0x0,0x0,0x0,0x0,0x37,0x7,0xd,0xf0,0x0, - 0x0,0x0,0x0,0x38,0x1b,0xda,0xe0,0x0,0x0,0x0,0x0,0x38,0xe6,0xef,0xf0,0x0, - 0x0,0x0,0x0,0x39,0xfb,0xbc,0xe0,0x0,0x0,0x0,0x0,0x3a,0xc6,0xd1,0xf0,0x0, - 0x0,0x0,0x0,0x3b,0xdb,0x9e,0xe0,0x0,0x0,0x0,0x0,0x3c,0xaf,0xee,0x70,0x0, - 0x0,0x0,0x0,0x3d,0xbb,0x80,0xe0,0x0,0x0,0x0,0x0,0x3e,0x8f,0xd0,0x70,0x0, - 0x0,0x0,0x0,0x3f,0x9b,0x62,0xe0,0x0,0x0,0x0,0x0,0x40,0x6f,0xb2,0x70,0x0, - 0x0,0x0,0x0,0x41,0x84,0x7f,0x60,0x0,0x0,0x0,0x0,0x42,0x4f,0x94,0x70,0x0, - 0x0,0x0,0x0,0x43,0x64,0x61,0x60,0x0,0x0,0x0,0x0,0x44,0x2f,0x76,0x70,0x0, - 0x0,0x0,0x0,0x45,0x44,0x43,0x60,0x0,0x0,0x0,0x0,0x45,0xf3,0xa8,0xf0,0x0, - 0x0,0x0,0x0,0x47,0x2d,0x5f,0xe0,0x0,0x0,0x0,0x0,0x47,0xd3,0x8a,0xf0,0x0, - 0x0,0x0,0x0,0x49,0xd,0x41,0xe0,0x0,0x0,0x0,0x0,0x49,0xb3,0x6c,0xf0,0x0, - 0x0,0x0,0x0,0x4a,0xed,0x23,0xe0,0x0,0x0,0x0,0x0,0x4b,0x9c,0x89,0x70,0x0, - 0x0,0x0,0x0,0x4c,0xd6,0x40,0x60,0x0,0x0,0x0,0x0,0x4d,0x7c,0x6b,0x70,0x0, - 0x0,0x0,0x0,0x4e,0xb6,0x22,0x60,0x0,0x0,0x0,0x0,0x4f,0x5c,0x4d,0x70,0x0, - 0x0,0x0,0x0,0x50,0x96,0x4,0x60,0x0,0x0,0x0,0x0,0x51,0x3c,0x2f,0x70,0x0, - 0x0,0x0,0x0,0x52,0x75,0xe6,0x60,0x0,0x0,0x0,0x0,0x53,0x1c,0x11,0x70,0x0, - 0x0,0x0,0x0,0x54,0x55,0xc8,0x60,0x0,0x0,0x0,0x0,0x54,0xfb,0xf3,0x70,0x0, - 0x0,0x0,0x0,0x56,0x35,0xaa,0x60,0x0,0x0,0x0,0x0,0x56,0xe5,0xf,0xf0,0x0, - 0x0,0x0,0x0,0x58,0x1e,0xc6,0xe0,0x0,0x0,0x0,0x0,0x58,0xc4,0xf1,0xf0,0x0, - 0x0,0x0,0x0,0x59,0xfe,0xa8,0xe0,0x0,0x0,0x0,0x0,0x5a,0xa4,0xd3,0xf0,0x0, - 0x0,0x0,0x0,0x5b,0xde,0x8a,0xe0,0x0,0x0,0x0,0x0,0x5c,0x84,0xb5,0xf0,0x0, - 0x0,0x0,0x0,0x5d,0xbe,0x6c,0xe0,0x0,0x0,0x0,0x0,0x5e,0x64,0x97,0xf0,0x0, - 0x0,0x0,0x0,0x5f,0x9e,0x4e,0xe0,0x0,0x0,0x0,0x0,0x60,0x4d,0xb4,0x70,0x0, - 0x0,0x0,0x0,0x61,0x87,0x6b,0x60,0x0,0x0,0x0,0x0,0x62,0x2d,0x96,0x70,0x0, - 0x0,0x0,0x0,0x63,0x67,0x4d,0x60,0x0,0x0,0x0,0x0,0x64,0xd,0x78,0x70,0x0, - 0x0,0x0,0x0,0x65,0x47,0x2f,0x60,0x0,0x0,0x0,0x0,0x65,0xed,0x5a,0x70,0x0, - 0x0,0x0,0x0,0x67,0x27,0x11,0x60,0x0,0x0,0x0,0x0,0x67,0xcd,0x3c,0x70,0x0, - 0x0,0x0,0x0,0x69,0x6,0xf3,0x60,0x0,0x0,0x0,0x0,0x69,0xad,0x1e,0x70,0x0, - 0x0,0x0,0x0,0x6a,0xe6,0xd5,0x60,0x0,0x0,0x0,0x0,0x6b,0x96,0x3a,0xf0,0x0, - 0x0,0x0,0x0,0x6c,0xcf,0xf1,0xe0,0x0,0x0,0x0,0x0,0x6d,0x76,0x1c,0xf0,0x0, - 0x0,0x0,0x0,0x6e,0xaf,0xd3,0xe0,0x0,0x0,0x0,0x0,0x6f,0x55,0xfe,0xf0,0x0, - 0x0,0x0,0x0,0x70,0x8f,0xb5,0xe0,0x0,0x0,0x0,0x0,0x71,0x35,0xe0,0xf0,0x0, - 0x0,0x0,0x0,0x72,0x6f,0x97,0xe0,0x0,0x0,0x0,0x0,0x73,0x15,0xc2,0xf0,0x0, - 0x0,0x0,0x0,0x74,0x4f,0x79,0xe0,0x0,0x0,0x0,0x0,0x74,0xfe,0xdf,0x70,0x0, - 0x0,0x0,0x0,0x76,0x38,0x96,0x60,0x0,0x0,0x0,0x0,0x76,0xde,0xc1,0x70,0x0, - 0x0,0x0,0x0,0x78,0x18,0x78,0x60,0x0,0x0,0x0,0x0,0x78,0xbe,0xa3,0x70,0x0, - 0x0,0x0,0x0,0x79,0xf8,0x5a,0x60,0x0,0x0,0x0,0x0,0x7a,0x9e,0x85,0x70,0x0, - 0x0,0x0,0x0,0x7b,0xd8,0x3c,0x60,0x0,0x0,0x0,0x0,0x7c,0x7e,0x67,0x70,0x0, - 0x0,0x0,0x0,0x7d,0xb8,0x1e,0x60,0x0,0x0,0x0,0x0,0x7e,0x5e,0x49,0x70,0x0, - 0x0,0x0,0x0,0x7f,0x98,0x0,0x60,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0xff,0xff,0xba,0x9e,0x0,0x0,0xff,0xff,0xc7,0xc0,0x1,0x4, - 0xff,0xff,0xb9,0xb0,0x0,0x8,0xff,0xff,0xc7,0xc0,0x1,0xc,0xff,0xff,0xc7,0xc0, - 0x1,0x10,0x4c,0x4d,0x54,0x0,0x45,0x44,0x54,0x0,0x45,0x53,0x54,0x0,0x45,0x57, - 0x54,0x0,0x45,0x50,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x1, - 0xa,0x45,0x53,0x54,0x35,0x45,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30,0x2c, - 0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Rainy_River - 0x0,0x0,0x8,0x53, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x87,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0x9e, - 0xb8,0xa1,0x80,0x9f,0xba,0xf9,0x70,0xc8,0xf8,0x57,0x60,0xcb,0x88,0xfe,0x80,0xd2, - 0x23,0xf4,0x70,0xd2,0x61,0x9,0xf0,0x8,0x20,0xcf,0x80,0x9,0x10,0xb2,0x70,0xa, - 0x0,0xb1,0x80,0xa,0xf0,0x94,0x70,0xb,0xe0,0x93,0x80,0xc,0xd9,0xb0,0xf0,0xd, - 0xc0,0x75,0x80,0xe,0xb9,0x92,0xf0,0xf,0xa9,0x92,0x0,0x10,0x99,0x74,0xf0,0x11, - 0x89,0x74,0x0,0x12,0x79,0x56,0xf0,0x13,0x69,0x56,0x0,0x14,0x59,0x38,0xf0,0x15, - 0x49,0x38,0x0,0x16,0x39,0x1a,0xf0,0x17,0x29,0x1a,0x0,0x18,0x22,0x37,0x70,0x19, - 0x8,0xfc,0x0,0x1a,0x2,0x19,0x70,0x1a,0xf2,0x18,0x80,0x1b,0xe1,0xfb,0x70,0x1c, - 0xd1,0xfa,0x80,0x1d,0xc1,0xdd,0x70,0x1e,0xb1,0xdc,0x80,0x1f,0xa1,0xbf,0x70,0x20, - 0x76,0xf,0x0,0x21,0x81,0xa1,0x70,0x22,0x55,0xf1,0x0,0x23,0x6a,0xbd,0xf0,0x24, - 0x35,0xd3,0x0,0x25,0x4a,0x9f,0xf0,0x26,0x15,0xb5,0x0,0x27,0x2a,0x81,0xf0,0x27, - 0xfe,0xd1,0x80,0x29,0xa,0x63,0xf0,0x29,0xde,0xb3,0x80,0x2a,0xea,0x45,0xf0,0x2b, - 0xbe,0x95,0x80,0x2c,0xd3,0x62,0x70,0x2d,0x9e,0x77,0x80,0x2e,0xb3,0x44,0x70,0x2f, - 0x7e,0x59,0x80,0x30,0x93,0x26,0x70,0x31,0x67,0x76,0x0,0x32,0x73,0x8,0x70,0x33, - 0x47,0x58,0x0,0x34,0x52,0xea,0x70,0x35,0x27,0x3a,0x0,0x36,0x32,0xcc,0x70,0x37, - 0x7,0x1c,0x0,0x38,0x1b,0xe8,0xf0,0x38,0xe6,0xfe,0x0,0x39,0xfb,0xca,0xf0,0x3a, - 0xc6,0xe0,0x0,0x3b,0xdb,0xac,0xf0,0x3c,0xaf,0xfc,0x80,0x3d,0xbb,0x8e,0xf0,0x3e, - 0x8f,0xde,0x80,0x3f,0x9b,0x70,0xf0,0x40,0x6f,0xc0,0x80,0x41,0x84,0x8d,0x70,0x42, - 0x4f,0xa2,0x80,0x43,0x64,0x6f,0x70,0x44,0x2f,0x84,0x80,0x45,0x44,0x51,0x70,0x45, - 0xf3,0xb7,0x0,0x47,0x2d,0x6d,0xf0,0x47,0xd3,0x99,0x0,0x49,0xd,0x4f,0xf0,0x49, - 0xb3,0x7b,0x0,0x4a,0xed,0x31,0xf0,0x4b,0x9c,0x97,0x80,0x4c,0xd6,0x4e,0x70,0x4d, - 0x7c,0x79,0x80,0x4e,0xb6,0x30,0x70,0x4f,0x5c,0x5b,0x80,0x50,0x96,0x12,0x70,0x51, - 0x3c,0x3d,0x80,0x52,0x75,0xf4,0x70,0x53,0x1c,0x1f,0x80,0x54,0x55,0xd6,0x70,0x54, - 0xfc,0x1,0x80,0x56,0x35,0xb8,0x70,0x56,0xe5,0x1e,0x0,0x58,0x1e,0xd4,0xf0,0x58, - 0xc5,0x0,0x0,0x59,0xfe,0xb6,0xf0,0x5a,0xa4,0xe2,0x0,0x5b,0xde,0x98,0xf0,0x5c, - 0x84,0xc4,0x0,0x5d,0xbe,0x7a,0xf0,0x5e,0x64,0xa6,0x0,0x5f,0x9e,0x5c,0xf0,0x60, - 0x4d,0xc2,0x80,0x61,0x87,0x79,0x70,0x62,0x2d,0xa4,0x80,0x63,0x67,0x5b,0x70,0x64, - 0xd,0x86,0x80,0x65,0x47,0x3d,0x70,0x65,0xed,0x68,0x80,0x67,0x27,0x1f,0x70,0x67, - 0xcd,0x4a,0x80,0x69,0x7,0x1,0x70,0x69,0xad,0x2c,0x80,0x6a,0xe6,0xe3,0x70,0x6b, - 0x96,0x49,0x0,0x6c,0xcf,0xff,0xf0,0x6d,0x76,0x2b,0x0,0x6e,0xaf,0xe1,0xf0,0x6f, - 0x56,0xd,0x0,0x70,0x8f,0xc3,0xf0,0x71,0x35,0xef,0x0,0x72,0x6f,0xa5,0xf0,0x73, - 0x15,0xd1,0x0,0x74,0x4f,0x87,0xf0,0x74,0xfe,0xed,0x80,0x76,0x38,0xa4,0x70,0x76, - 0xde,0xcf,0x80,0x78,0x18,0x86,0x70,0x78,0xbe,0xb1,0x80,0x79,0xf8,0x68,0x70,0x7a, - 0x9e,0x93,0x80,0x7b,0xd8,0x4a,0x70,0x7c,0x7e,0x75,0x80,0x7d,0xb8,0x2c,0x70,0x7e, - 0x5e,0x57,0x80,0x7f,0x98,0xe,0x70,0x2,0x1,0x2,0x1,0x3,0x4,0x2,0x1,0x2, + 0x0,0x0,0x87,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0x9e, + 0xb8,0x93,0x70,0x9f,0xba,0xeb,0x60,0xc8,0xf8,0x49,0x50,0xcb,0x88,0xf0,0x70,0xd2, + 0x23,0xf4,0x70,0xd2,0x60,0xfb,0xe0,0x8,0x20,0xc1,0x70,0x9,0x10,0xa4,0x60,0xa, + 0x0,0xa3,0x70,0xa,0xf0,0x86,0x60,0xb,0xe0,0x85,0x70,0xc,0xd9,0xa2,0xe0,0xd, + 0xc0,0x67,0x70,0xe,0xb9,0x84,0xe0,0xf,0xa9,0x83,0xf0,0x10,0x99,0x66,0xe0,0x11, + 0x89,0x65,0xf0,0x12,0x79,0x48,0xe0,0x13,0x69,0x47,0xf0,0x14,0x59,0x2a,0xe0,0x15, + 0x49,0x29,0xf0,0x16,0x39,0xc,0xe0,0x17,0x29,0xb,0xf0,0x18,0x22,0x29,0x60,0x19, + 0x8,0xed,0xf0,0x1a,0x2,0xb,0x60,0x1a,0xf2,0xa,0x70,0x1b,0xe1,0xed,0x60,0x1c, + 0xd1,0xec,0x70,0x1d,0xc1,0xcf,0x60,0x1e,0xb1,0xce,0x70,0x1f,0xa1,0xb1,0x60,0x20, + 0x76,0x0,0xf0,0x21,0x81,0x93,0x60,0x22,0x55,0xe2,0xf0,0x23,0x6a,0xaf,0xe0,0x24, + 0x35,0xc4,0xf0,0x25,0x4a,0x91,0xe0,0x26,0x15,0xa6,0xf0,0x27,0x2a,0x73,0xe0,0x27, + 0xfe,0xc3,0x70,0x29,0xa,0x55,0xe0,0x29,0xde,0xa5,0x70,0x2a,0xea,0x37,0xe0,0x2b, + 0xbe,0x87,0x70,0x2c,0xd3,0x54,0x60,0x2d,0x9e,0x69,0x70,0x2e,0xb3,0x36,0x60,0x2f, + 0x7e,0x4b,0x70,0x30,0x93,0x18,0x60,0x31,0x67,0x67,0xf0,0x32,0x72,0xfa,0x60,0x33, + 0x47,0x49,0xf0,0x34,0x52,0xdc,0x60,0x35,0x27,0x2b,0xf0,0x36,0x32,0xbe,0x60,0x37, + 0x7,0xd,0xf0,0x38,0x1b,0xda,0xe0,0x38,0xe6,0xef,0xf0,0x39,0xfb,0xbc,0xe0,0x3a, + 0xc6,0xd1,0xf0,0x3b,0xdb,0x9e,0xe0,0x3c,0xaf,0xee,0x70,0x3d,0xbb,0x80,0xe0,0x3e, + 0x8f,0xd0,0x70,0x3f,0x9b,0x62,0xe0,0x40,0x6f,0xb2,0x70,0x41,0x84,0x7f,0x60,0x42, + 0x4f,0x94,0x70,0x43,0x64,0x61,0x60,0x44,0x2f,0x76,0x70,0x45,0x44,0x43,0x60,0x45, + 0xf3,0xa8,0xf0,0x47,0x2d,0x5f,0xe0,0x47,0xd3,0x8a,0xf0,0x49,0xd,0x41,0xe0,0x49, + 0xb3,0x6c,0xf0,0x4a,0xed,0x23,0xe0,0x4b,0x9c,0x89,0x70,0x4c,0xd6,0x40,0x60,0x4d, + 0x7c,0x6b,0x70,0x4e,0xb6,0x22,0x60,0x4f,0x5c,0x4d,0x70,0x50,0x96,0x4,0x60,0x51, + 0x3c,0x2f,0x70,0x52,0x75,0xe6,0x60,0x53,0x1c,0x11,0x70,0x54,0x55,0xc8,0x60,0x54, + 0xfb,0xf3,0x70,0x56,0x35,0xaa,0x60,0x56,0xe5,0xf,0xf0,0x58,0x1e,0xc6,0xe0,0x58, + 0xc4,0xf1,0xf0,0x59,0xfe,0xa8,0xe0,0x5a,0xa4,0xd3,0xf0,0x5b,0xde,0x8a,0xe0,0x5c, + 0x84,0xb5,0xf0,0x5d,0xbe,0x6c,0xe0,0x5e,0x64,0x97,0xf0,0x5f,0x9e,0x4e,0xe0,0x60, + 0x4d,0xb4,0x70,0x61,0x87,0x6b,0x60,0x62,0x2d,0x96,0x70,0x63,0x67,0x4d,0x60,0x64, + 0xd,0x78,0x70,0x65,0x47,0x2f,0x60,0x65,0xed,0x5a,0x70,0x67,0x27,0x11,0x60,0x67, + 0xcd,0x3c,0x70,0x69,0x6,0xf3,0x60,0x69,0xad,0x1e,0x70,0x6a,0xe6,0xd5,0x60,0x6b, + 0x96,0x3a,0xf0,0x6c,0xcf,0xf1,0xe0,0x6d,0x76,0x1c,0xf0,0x6e,0xaf,0xd3,0xe0,0x6f, + 0x55,0xfe,0xf0,0x70,0x8f,0xb5,0xe0,0x71,0x35,0xe0,0xf0,0x72,0x6f,0x97,0xe0,0x73, + 0x15,0xc2,0xf0,0x74,0x4f,0x79,0xe0,0x74,0xfe,0xdf,0x70,0x76,0x38,0x96,0x60,0x76, + 0xde,0xc1,0x70,0x78,0x18,0x78,0x60,0x78,0xbe,0xa3,0x70,0x79,0xf8,0x5a,0x60,0x7a, + 0x9e,0x85,0x70,0x7b,0xd8,0x3c,0x60,0x7c,0x7e,0x67,0x70,0x7d,0xb8,0x1e,0x60,0x7e, + 0x5e,0x49,0x70,0x7f,0x98,0x0,0x60,0x2,0x1,0x2,0x1,0x3,0x4,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, @@ -23233,81 +18853,81 @@ static const unsigned char qt_resource_data[] = { 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff, - 0xa7,0x58,0x0,0x0,0xff,0xff,0xb9,0xb0,0x1,0x4,0xff,0xff,0xab,0xa0,0x0,0x8, - 0xff,0xff,0xb9,0xb0,0x1,0xc,0xff,0xff,0xb9,0xb0,0x1,0x10,0x4c,0x4d,0x54,0x0, - 0x43,0x44,0x54,0x0,0x43,0x53,0x54,0x0,0x43,0x57,0x54,0x0,0x43,0x50,0x54,0x0, + 0xad,0x40,0x0,0x0,0xff,0xff,0xc7,0xc0,0x1,0x4,0xff,0xff,0xb9,0xb0,0x0,0x8, + 0xff,0xff,0xc7,0xc0,0x1,0xc,0xff,0xff,0xc7,0xc0,0x1,0x10,0x4c,0x4d,0x54,0x0, + 0x45,0x44,0x54,0x0,0x45,0x53,0x54,0x0,0x45,0x57,0x54,0x0,0x45,0x50,0x54,0x0, 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x1,0x54,0x5a,0x69,0x66,0x32,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x88,0x0,0x0, 0x0,0x5,0x0,0x0,0x0,0x14,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff, - 0xff,0xff,0x72,0xee,0x87,0x28,0xff,0xff,0xff,0xff,0x9e,0xb8,0xa1,0x80,0xff,0xff, - 0xff,0xff,0x9f,0xba,0xf9,0x70,0xff,0xff,0xff,0xff,0xc8,0xf8,0x57,0x60,0xff,0xff, - 0xff,0xff,0xcb,0x88,0xfe,0x80,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff, - 0xff,0xff,0xd2,0x61,0x9,0xf0,0x0,0x0,0x0,0x0,0x8,0x20,0xcf,0x80,0x0,0x0, - 0x0,0x0,0x9,0x10,0xb2,0x70,0x0,0x0,0x0,0x0,0xa,0x0,0xb1,0x80,0x0,0x0, - 0x0,0x0,0xa,0xf0,0x94,0x70,0x0,0x0,0x0,0x0,0xb,0xe0,0x93,0x80,0x0,0x0, - 0x0,0x0,0xc,0xd9,0xb0,0xf0,0x0,0x0,0x0,0x0,0xd,0xc0,0x75,0x80,0x0,0x0, - 0x0,0x0,0xe,0xb9,0x92,0xf0,0x0,0x0,0x0,0x0,0xf,0xa9,0x92,0x0,0x0,0x0, - 0x0,0x0,0x10,0x99,0x74,0xf0,0x0,0x0,0x0,0x0,0x11,0x89,0x74,0x0,0x0,0x0, - 0x0,0x0,0x12,0x79,0x56,0xf0,0x0,0x0,0x0,0x0,0x13,0x69,0x56,0x0,0x0,0x0, - 0x0,0x0,0x14,0x59,0x38,0xf0,0x0,0x0,0x0,0x0,0x15,0x49,0x38,0x0,0x0,0x0, - 0x0,0x0,0x16,0x39,0x1a,0xf0,0x0,0x0,0x0,0x0,0x17,0x29,0x1a,0x0,0x0,0x0, - 0x0,0x0,0x18,0x22,0x37,0x70,0x0,0x0,0x0,0x0,0x19,0x8,0xfc,0x0,0x0,0x0, - 0x0,0x0,0x1a,0x2,0x19,0x70,0x0,0x0,0x0,0x0,0x1a,0xf2,0x18,0x80,0x0,0x0, - 0x0,0x0,0x1b,0xe1,0xfb,0x70,0x0,0x0,0x0,0x0,0x1c,0xd1,0xfa,0x80,0x0,0x0, - 0x0,0x0,0x1d,0xc1,0xdd,0x70,0x0,0x0,0x0,0x0,0x1e,0xb1,0xdc,0x80,0x0,0x0, - 0x0,0x0,0x1f,0xa1,0xbf,0x70,0x0,0x0,0x0,0x0,0x20,0x76,0xf,0x0,0x0,0x0, - 0x0,0x0,0x21,0x81,0xa1,0x70,0x0,0x0,0x0,0x0,0x22,0x55,0xf1,0x0,0x0,0x0, - 0x0,0x0,0x23,0x6a,0xbd,0xf0,0x0,0x0,0x0,0x0,0x24,0x35,0xd3,0x0,0x0,0x0, - 0x0,0x0,0x25,0x4a,0x9f,0xf0,0x0,0x0,0x0,0x0,0x26,0x15,0xb5,0x0,0x0,0x0, - 0x0,0x0,0x27,0x2a,0x81,0xf0,0x0,0x0,0x0,0x0,0x27,0xfe,0xd1,0x80,0x0,0x0, - 0x0,0x0,0x29,0xa,0x63,0xf0,0x0,0x0,0x0,0x0,0x29,0xde,0xb3,0x80,0x0,0x0, - 0x0,0x0,0x2a,0xea,0x45,0xf0,0x0,0x0,0x0,0x0,0x2b,0xbe,0x95,0x80,0x0,0x0, - 0x0,0x0,0x2c,0xd3,0x62,0x70,0x0,0x0,0x0,0x0,0x2d,0x9e,0x77,0x80,0x0,0x0, - 0x0,0x0,0x2e,0xb3,0x44,0x70,0x0,0x0,0x0,0x0,0x2f,0x7e,0x59,0x80,0x0,0x0, - 0x0,0x0,0x30,0x93,0x26,0x70,0x0,0x0,0x0,0x0,0x31,0x67,0x76,0x0,0x0,0x0, - 0x0,0x0,0x32,0x73,0x8,0x70,0x0,0x0,0x0,0x0,0x33,0x47,0x58,0x0,0x0,0x0, - 0x0,0x0,0x34,0x52,0xea,0x70,0x0,0x0,0x0,0x0,0x35,0x27,0x3a,0x0,0x0,0x0, - 0x0,0x0,0x36,0x32,0xcc,0x70,0x0,0x0,0x0,0x0,0x37,0x7,0x1c,0x0,0x0,0x0, - 0x0,0x0,0x38,0x1b,0xe8,0xf0,0x0,0x0,0x0,0x0,0x38,0xe6,0xfe,0x0,0x0,0x0, - 0x0,0x0,0x39,0xfb,0xca,0xf0,0x0,0x0,0x0,0x0,0x3a,0xc6,0xe0,0x0,0x0,0x0, - 0x0,0x0,0x3b,0xdb,0xac,0xf0,0x0,0x0,0x0,0x0,0x3c,0xaf,0xfc,0x80,0x0,0x0, - 0x0,0x0,0x3d,0xbb,0x8e,0xf0,0x0,0x0,0x0,0x0,0x3e,0x8f,0xde,0x80,0x0,0x0, - 0x0,0x0,0x3f,0x9b,0x70,0xf0,0x0,0x0,0x0,0x0,0x40,0x6f,0xc0,0x80,0x0,0x0, - 0x0,0x0,0x41,0x84,0x8d,0x70,0x0,0x0,0x0,0x0,0x42,0x4f,0xa2,0x80,0x0,0x0, - 0x0,0x0,0x43,0x64,0x6f,0x70,0x0,0x0,0x0,0x0,0x44,0x2f,0x84,0x80,0x0,0x0, - 0x0,0x0,0x45,0x44,0x51,0x70,0x0,0x0,0x0,0x0,0x45,0xf3,0xb7,0x0,0x0,0x0, - 0x0,0x0,0x47,0x2d,0x6d,0xf0,0x0,0x0,0x0,0x0,0x47,0xd3,0x99,0x0,0x0,0x0, - 0x0,0x0,0x49,0xd,0x4f,0xf0,0x0,0x0,0x0,0x0,0x49,0xb3,0x7b,0x0,0x0,0x0, - 0x0,0x0,0x4a,0xed,0x31,0xf0,0x0,0x0,0x0,0x0,0x4b,0x9c,0x97,0x80,0x0,0x0, - 0x0,0x0,0x4c,0xd6,0x4e,0x70,0x0,0x0,0x0,0x0,0x4d,0x7c,0x79,0x80,0x0,0x0, - 0x0,0x0,0x4e,0xb6,0x30,0x70,0x0,0x0,0x0,0x0,0x4f,0x5c,0x5b,0x80,0x0,0x0, - 0x0,0x0,0x50,0x96,0x12,0x70,0x0,0x0,0x0,0x0,0x51,0x3c,0x3d,0x80,0x0,0x0, - 0x0,0x0,0x52,0x75,0xf4,0x70,0x0,0x0,0x0,0x0,0x53,0x1c,0x1f,0x80,0x0,0x0, - 0x0,0x0,0x54,0x55,0xd6,0x70,0x0,0x0,0x0,0x0,0x54,0xfc,0x1,0x80,0x0,0x0, - 0x0,0x0,0x56,0x35,0xb8,0x70,0x0,0x0,0x0,0x0,0x56,0xe5,0x1e,0x0,0x0,0x0, - 0x0,0x0,0x58,0x1e,0xd4,0xf0,0x0,0x0,0x0,0x0,0x58,0xc5,0x0,0x0,0x0,0x0, - 0x0,0x0,0x59,0xfe,0xb6,0xf0,0x0,0x0,0x0,0x0,0x5a,0xa4,0xe2,0x0,0x0,0x0, - 0x0,0x0,0x5b,0xde,0x98,0xf0,0x0,0x0,0x0,0x0,0x5c,0x84,0xc4,0x0,0x0,0x0, - 0x0,0x0,0x5d,0xbe,0x7a,0xf0,0x0,0x0,0x0,0x0,0x5e,0x64,0xa6,0x0,0x0,0x0, - 0x0,0x0,0x5f,0x9e,0x5c,0xf0,0x0,0x0,0x0,0x0,0x60,0x4d,0xc2,0x80,0x0,0x0, - 0x0,0x0,0x61,0x87,0x79,0x70,0x0,0x0,0x0,0x0,0x62,0x2d,0xa4,0x80,0x0,0x0, - 0x0,0x0,0x63,0x67,0x5b,0x70,0x0,0x0,0x0,0x0,0x64,0xd,0x86,0x80,0x0,0x0, - 0x0,0x0,0x65,0x47,0x3d,0x70,0x0,0x0,0x0,0x0,0x65,0xed,0x68,0x80,0x0,0x0, - 0x0,0x0,0x67,0x27,0x1f,0x70,0x0,0x0,0x0,0x0,0x67,0xcd,0x4a,0x80,0x0,0x0, - 0x0,0x0,0x69,0x7,0x1,0x70,0x0,0x0,0x0,0x0,0x69,0xad,0x2c,0x80,0x0,0x0, - 0x0,0x0,0x6a,0xe6,0xe3,0x70,0x0,0x0,0x0,0x0,0x6b,0x96,0x49,0x0,0x0,0x0, - 0x0,0x0,0x6c,0xcf,0xff,0xf0,0x0,0x0,0x0,0x0,0x6d,0x76,0x2b,0x0,0x0,0x0, - 0x0,0x0,0x6e,0xaf,0xe1,0xf0,0x0,0x0,0x0,0x0,0x6f,0x56,0xd,0x0,0x0,0x0, - 0x0,0x0,0x70,0x8f,0xc3,0xf0,0x0,0x0,0x0,0x0,0x71,0x35,0xef,0x0,0x0,0x0, - 0x0,0x0,0x72,0x6f,0xa5,0xf0,0x0,0x0,0x0,0x0,0x73,0x15,0xd1,0x0,0x0,0x0, - 0x0,0x0,0x74,0x4f,0x87,0xf0,0x0,0x0,0x0,0x0,0x74,0xfe,0xed,0x80,0x0,0x0, - 0x0,0x0,0x76,0x38,0xa4,0x70,0x0,0x0,0x0,0x0,0x76,0xde,0xcf,0x80,0x0,0x0, - 0x0,0x0,0x78,0x18,0x86,0x70,0x0,0x0,0x0,0x0,0x78,0xbe,0xb1,0x80,0x0,0x0, - 0x0,0x0,0x79,0xf8,0x68,0x70,0x0,0x0,0x0,0x0,0x7a,0x9e,0x93,0x80,0x0,0x0, - 0x0,0x0,0x7b,0xd8,0x4a,0x70,0x0,0x0,0x0,0x0,0x7c,0x7e,0x75,0x80,0x0,0x0, - 0x0,0x0,0x7d,0xb8,0x2c,0x70,0x0,0x0,0x0,0x0,0x7e,0x5e,0x57,0x80,0x0,0x0, - 0x0,0x0,0x7f,0x98,0xe,0x70,0x0,0x2,0x1,0x2,0x1,0x3,0x4,0x2,0x1,0x2, + 0xff,0xff,0x72,0xee,0x81,0x40,0xff,0xff,0xff,0xff,0x9e,0xb8,0x93,0x70,0xff,0xff, + 0xff,0xff,0x9f,0xba,0xeb,0x60,0xff,0xff,0xff,0xff,0xc8,0xf8,0x49,0x50,0xff,0xff, + 0xff,0xff,0xcb,0x88,0xf0,0x70,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff, + 0xff,0xff,0xd2,0x60,0xfb,0xe0,0x0,0x0,0x0,0x0,0x8,0x20,0xc1,0x70,0x0,0x0, + 0x0,0x0,0x9,0x10,0xa4,0x60,0x0,0x0,0x0,0x0,0xa,0x0,0xa3,0x70,0x0,0x0, + 0x0,0x0,0xa,0xf0,0x86,0x60,0x0,0x0,0x0,0x0,0xb,0xe0,0x85,0x70,0x0,0x0, + 0x0,0x0,0xc,0xd9,0xa2,0xe0,0x0,0x0,0x0,0x0,0xd,0xc0,0x67,0x70,0x0,0x0, + 0x0,0x0,0xe,0xb9,0x84,0xe0,0x0,0x0,0x0,0x0,0xf,0xa9,0x83,0xf0,0x0,0x0, + 0x0,0x0,0x10,0x99,0x66,0xe0,0x0,0x0,0x0,0x0,0x11,0x89,0x65,0xf0,0x0,0x0, + 0x0,0x0,0x12,0x79,0x48,0xe0,0x0,0x0,0x0,0x0,0x13,0x69,0x47,0xf0,0x0,0x0, + 0x0,0x0,0x14,0x59,0x2a,0xe0,0x0,0x0,0x0,0x0,0x15,0x49,0x29,0xf0,0x0,0x0, + 0x0,0x0,0x16,0x39,0xc,0xe0,0x0,0x0,0x0,0x0,0x17,0x29,0xb,0xf0,0x0,0x0, + 0x0,0x0,0x18,0x22,0x29,0x60,0x0,0x0,0x0,0x0,0x19,0x8,0xed,0xf0,0x0,0x0, + 0x0,0x0,0x1a,0x2,0xb,0x60,0x0,0x0,0x0,0x0,0x1a,0xf2,0xa,0x70,0x0,0x0, + 0x0,0x0,0x1b,0xe1,0xed,0x60,0x0,0x0,0x0,0x0,0x1c,0xd1,0xec,0x70,0x0,0x0, + 0x0,0x0,0x1d,0xc1,0xcf,0x60,0x0,0x0,0x0,0x0,0x1e,0xb1,0xce,0x70,0x0,0x0, + 0x0,0x0,0x1f,0xa1,0xb1,0x60,0x0,0x0,0x0,0x0,0x20,0x76,0x0,0xf0,0x0,0x0, + 0x0,0x0,0x21,0x81,0x93,0x60,0x0,0x0,0x0,0x0,0x22,0x55,0xe2,0xf0,0x0,0x0, + 0x0,0x0,0x23,0x6a,0xaf,0xe0,0x0,0x0,0x0,0x0,0x24,0x35,0xc4,0xf0,0x0,0x0, + 0x0,0x0,0x25,0x4a,0x91,0xe0,0x0,0x0,0x0,0x0,0x26,0x15,0xa6,0xf0,0x0,0x0, + 0x0,0x0,0x27,0x2a,0x73,0xe0,0x0,0x0,0x0,0x0,0x27,0xfe,0xc3,0x70,0x0,0x0, + 0x0,0x0,0x29,0xa,0x55,0xe0,0x0,0x0,0x0,0x0,0x29,0xde,0xa5,0x70,0x0,0x0, + 0x0,0x0,0x2a,0xea,0x37,0xe0,0x0,0x0,0x0,0x0,0x2b,0xbe,0x87,0x70,0x0,0x0, + 0x0,0x0,0x2c,0xd3,0x54,0x60,0x0,0x0,0x0,0x0,0x2d,0x9e,0x69,0x70,0x0,0x0, + 0x0,0x0,0x2e,0xb3,0x36,0x60,0x0,0x0,0x0,0x0,0x2f,0x7e,0x4b,0x70,0x0,0x0, + 0x0,0x0,0x30,0x93,0x18,0x60,0x0,0x0,0x0,0x0,0x31,0x67,0x67,0xf0,0x0,0x0, + 0x0,0x0,0x32,0x72,0xfa,0x60,0x0,0x0,0x0,0x0,0x33,0x47,0x49,0xf0,0x0,0x0, + 0x0,0x0,0x34,0x52,0xdc,0x60,0x0,0x0,0x0,0x0,0x35,0x27,0x2b,0xf0,0x0,0x0, + 0x0,0x0,0x36,0x32,0xbe,0x60,0x0,0x0,0x0,0x0,0x37,0x7,0xd,0xf0,0x0,0x0, + 0x0,0x0,0x38,0x1b,0xda,0xe0,0x0,0x0,0x0,0x0,0x38,0xe6,0xef,0xf0,0x0,0x0, + 0x0,0x0,0x39,0xfb,0xbc,0xe0,0x0,0x0,0x0,0x0,0x3a,0xc6,0xd1,0xf0,0x0,0x0, + 0x0,0x0,0x3b,0xdb,0x9e,0xe0,0x0,0x0,0x0,0x0,0x3c,0xaf,0xee,0x70,0x0,0x0, + 0x0,0x0,0x3d,0xbb,0x80,0xe0,0x0,0x0,0x0,0x0,0x3e,0x8f,0xd0,0x70,0x0,0x0, + 0x0,0x0,0x3f,0x9b,0x62,0xe0,0x0,0x0,0x0,0x0,0x40,0x6f,0xb2,0x70,0x0,0x0, + 0x0,0x0,0x41,0x84,0x7f,0x60,0x0,0x0,0x0,0x0,0x42,0x4f,0x94,0x70,0x0,0x0, + 0x0,0x0,0x43,0x64,0x61,0x60,0x0,0x0,0x0,0x0,0x44,0x2f,0x76,0x70,0x0,0x0, + 0x0,0x0,0x45,0x44,0x43,0x60,0x0,0x0,0x0,0x0,0x45,0xf3,0xa8,0xf0,0x0,0x0, + 0x0,0x0,0x47,0x2d,0x5f,0xe0,0x0,0x0,0x0,0x0,0x47,0xd3,0x8a,0xf0,0x0,0x0, + 0x0,0x0,0x49,0xd,0x41,0xe0,0x0,0x0,0x0,0x0,0x49,0xb3,0x6c,0xf0,0x0,0x0, + 0x0,0x0,0x4a,0xed,0x23,0xe0,0x0,0x0,0x0,0x0,0x4b,0x9c,0x89,0x70,0x0,0x0, + 0x0,0x0,0x4c,0xd6,0x40,0x60,0x0,0x0,0x0,0x0,0x4d,0x7c,0x6b,0x70,0x0,0x0, + 0x0,0x0,0x4e,0xb6,0x22,0x60,0x0,0x0,0x0,0x0,0x4f,0x5c,0x4d,0x70,0x0,0x0, + 0x0,0x0,0x50,0x96,0x4,0x60,0x0,0x0,0x0,0x0,0x51,0x3c,0x2f,0x70,0x0,0x0, + 0x0,0x0,0x52,0x75,0xe6,0x60,0x0,0x0,0x0,0x0,0x53,0x1c,0x11,0x70,0x0,0x0, + 0x0,0x0,0x54,0x55,0xc8,0x60,0x0,0x0,0x0,0x0,0x54,0xfb,0xf3,0x70,0x0,0x0, + 0x0,0x0,0x56,0x35,0xaa,0x60,0x0,0x0,0x0,0x0,0x56,0xe5,0xf,0xf0,0x0,0x0, + 0x0,0x0,0x58,0x1e,0xc6,0xe0,0x0,0x0,0x0,0x0,0x58,0xc4,0xf1,0xf0,0x0,0x0, + 0x0,0x0,0x59,0xfe,0xa8,0xe0,0x0,0x0,0x0,0x0,0x5a,0xa4,0xd3,0xf0,0x0,0x0, + 0x0,0x0,0x5b,0xde,0x8a,0xe0,0x0,0x0,0x0,0x0,0x5c,0x84,0xb5,0xf0,0x0,0x0, + 0x0,0x0,0x5d,0xbe,0x6c,0xe0,0x0,0x0,0x0,0x0,0x5e,0x64,0x97,0xf0,0x0,0x0, + 0x0,0x0,0x5f,0x9e,0x4e,0xe0,0x0,0x0,0x0,0x0,0x60,0x4d,0xb4,0x70,0x0,0x0, + 0x0,0x0,0x61,0x87,0x6b,0x60,0x0,0x0,0x0,0x0,0x62,0x2d,0x96,0x70,0x0,0x0, + 0x0,0x0,0x63,0x67,0x4d,0x60,0x0,0x0,0x0,0x0,0x64,0xd,0x78,0x70,0x0,0x0, + 0x0,0x0,0x65,0x47,0x2f,0x60,0x0,0x0,0x0,0x0,0x65,0xed,0x5a,0x70,0x0,0x0, + 0x0,0x0,0x67,0x27,0x11,0x60,0x0,0x0,0x0,0x0,0x67,0xcd,0x3c,0x70,0x0,0x0, + 0x0,0x0,0x69,0x6,0xf3,0x60,0x0,0x0,0x0,0x0,0x69,0xad,0x1e,0x70,0x0,0x0, + 0x0,0x0,0x6a,0xe6,0xd5,0x60,0x0,0x0,0x0,0x0,0x6b,0x96,0x3a,0xf0,0x0,0x0, + 0x0,0x0,0x6c,0xcf,0xf1,0xe0,0x0,0x0,0x0,0x0,0x6d,0x76,0x1c,0xf0,0x0,0x0, + 0x0,0x0,0x6e,0xaf,0xd3,0xe0,0x0,0x0,0x0,0x0,0x6f,0x55,0xfe,0xf0,0x0,0x0, + 0x0,0x0,0x70,0x8f,0xb5,0xe0,0x0,0x0,0x0,0x0,0x71,0x35,0xe0,0xf0,0x0,0x0, + 0x0,0x0,0x72,0x6f,0x97,0xe0,0x0,0x0,0x0,0x0,0x73,0x15,0xc2,0xf0,0x0,0x0, + 0x0,0x0,0x74,0x4f,0x79,0xe0,0x0,0x0,0x0,0x0,0x74,0xfe,0xdf,0x70,0x0,0x0, + 0x0,0x0,0x76,0x38,0x96,0x60,0x0,0x0,0x0,0x0,0x76,0xde,0xc1,0x70,0x0,0x0, + 0x0,0x0,0x78,0x18,0x78,0x60,0x0,0x0,0x0,0x0,0x78,0xbe,0xa3,0x70,0x0,0x0, + 0x0,0x0,0x79,0xf8,0x5a,0x60,0x0,0x0,0x0,0x0,0x7a,0x9e,0x85,0x70,0x0,0x0, + 0x0,0x0,0x7b,0xd8,0x3c,0x60,0x0,0x0,0x0,0x0,0x7c,0x7e,0x67,0x70,0x0,0x0, + 0x0,0x0,0x7d,0xb8,0x1e,0x60,0x0,0x0,0x0,0x0,0x7e,0x5e,0x49,0x70,0x0,0x0, + 0x0,0x0,0x7f,0x98,0x0,0x60,0x0,0x2,0x1,0x2,0x1,0x3,0x4,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, @@ -23316,225 +18936,640 @@ static const unsigned char qt_resource_data[] = { 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff, - 0xa7,0x58,0x0,0x0,0xff,0xff,0xb9,0xb0,0x1,0x4,0xff,0xff,0xab,0xa0,0x0,0x8, - 0xff,0xff,0xb9,0xb0,0x1,0xc,0xff,0xff,0xb9,0xb0,0x1,0x10,0x4c,0x4d,0x54,0x0, - 0x43,0x44,0x54,0x0,0x43,0x53,0x54,0x0,0x43,0x57,0x54,0x0,0x43,0x50,0x54,0x0, - 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x1,0xa,0x43,0x53,0x54,0x36,0x43, + 0xad,0x40,0x0,0x0,0xff,0xff,0xc7,0xc0,0x1,0x4,0xff,0xff,0xb9,0xb0,0x0,0x8, + 0xff,0xff,0xc7,0xc0,0x1,0xc,0xff,0xff,0xc7,0xc0,0x1,0x10,0x4c,0x4d,0x54,0x0, + 0x45,0x44,0x54,0x0,0x45,0x53,0x54,0x0,0x45,0x57,0x54,0x0,0x45,0x50,0x54,0x0, + 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x1,0xa,0x45,0x53,0x54,0x35,0x45, 0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e, 0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Barbados - 0x0,0x0,0x1,0x58, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Fort_Nelson + 0x0,0x0,0x8,0xc9, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xb,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x10,0x80,0x0,0x0,0x0,0xa9, - 0x79,0x24,0xe5,0xb8,0x85,0x63,0xe5,0xe,0x0,0xf2,0xe0,0xe,0x94,0x8c,0xd0,0xf, - 0x97,0x0,0xe0,0x10,0x74,0x6e,0xd0,0x11,0x76,0xe2,0xe0,0x12,0x54,0x50,0xd0,0x13, - 0x5f,0xff,0x60,0x14,0x30,0x3e,0x50,0x0,0x1,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0xff,0xff,0xc8,0x1b,0x0,0x0,0xff,0xff,0xc8,0x1b,0x0,0x4,0xff,0xff, - 0xd5,0xd0,0x1,0x8,0xff,0xff,0xc7,0xc0,0x0,0xc,0x4c,0x4d,0x54,0x0,0x42,0x4d, - 0x54,0x0,0x41,0x44,0x54,0x0,0x41,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x10,0xf8,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xa9,0x79,0x24,0xe5,0xff,0xff, - 0xff,0xff,0xb8,0x85,0x63,0xe5,0x0,0x0,0x0,0x0,0xe,0x0,0xf2,0xe0,0x0,0x0, - 0x0,0x0,0xe,0x94,0x8c,0xd0,0x0,0x0,0x0,0x0,0xf,0x97,0x0,0xe0,0x0,0x0, - 0x0,0x0,0x10,0x74,0x6e,0xd0,0x0,0x0,0x0,0x0,0x11,0x76,0xe2,0xe0,0x0,0x0, - 0x0,0x0,0x12,0x54,0x50,0xd0,0x0,0x0,0x0,0x0,0x13,0x5f,0xff,0x60,0x0,0x0, - 0x0,0x0,0x14,0x30,0x3e,0x50,0x0,0x1,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0xff,0xff,0xc8,0x1b,0x0,0x0,0xff,0xff,0xc8,0x1b,0x0,0x4,0xff,0xff,0xd5, - 0xd0,0x1,0x8,0xff,0xff,0xc7,0xc0,0x0,0xc,0x4c,0x4d,0x54,0x0,0x42,0x4d,0x54, - 0x0,0x41,0x44,0x54,0x0,0x41,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xa,0x41,0x53,0x54,0x34,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Ensenada - 0x0,0x0,0x9,0x34, + 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x8f,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x80,0x0,0x0,0x0,0x9e, + 0xb8,0xbd,0xa0,0x9f,0xbb,0x15,0x90,0xcb,0x89,0x1a,0xa0,0xd2,0x23,0xf4,0x70,0xd2, + 0x61,0x26,0x10,0xd5,0x55,0xf1,0x20,0xd6,0x20,0xea,0x10,0xd7,0x35,0xd3,0x20,0xd8, + 0x0,0xcc,0x10,0xd9,0x15,0xb5,0x20,0xd9,0xe0,0xae,0x10,0xda,0xfe,0xd1,0xa0,0xdb, + 0xc0,0x90,0x10,0xdc,0xde,0xb3,0xa0,0xdd,0xa9,0xac,0x90,0xde,0xbe,0x95,0xa0,0xdf, + 0x89,0x8e,0x90,0xe0,0x9e,0x77,0xa0,0xe1,0x69,0x70,0x90,0xe2,0x7e,0x59,0xa0,0xe3, + 0x49,0x52,0x90,0xe4,0x5e,0x3b,0xa0,0xe5,0x29,0x34,0x90,0xe6,0x47,0x58,0x20,0xe7, + 0x12,0x51,0x10,0xe8,0x27,0x3a,0x20,0xe8,0xf2,0x33,0x10,0xea,0x7,0x1c,0x20,0xea, + 0xd2,0x15,0x10,0xeb,0xe6,0xfe,0x20,0xec,0xb1,0xf7,0x10,0xed,0xc6,0xe0,0x20,0xee, + 0x91,0xd9,0x10,0xef,0xaf,0xfc,0xa0,0xf0,0x71,0xbb,0x10,0xf1,0x8f,0xde,0xa0,0xf2, + 0x7f,0xc1,0x90,0xf3,0x6f,0xc0,0xa0,0xf4,0x5f,0xa3,0x90,0xf5,0x4f,0xa2,0xa0,0xf6, + 0x3f,0x85,0x90,0xf7,0x2f,0x84,0xa0,0xf8,0x28,0xa2,0x10,0xf9,0xf,0x66,0xa0,0xfa, + 0x8,0x84,0x10,0xfa,0xf8,0x83,0x20,0xfb,0xe8,0x66,0x10,0xfc,0xd8,0x65,0x20,0xfd, + 0xc8,0x48,0x10,0xfe,0xb8,0x47,0x20,0xff,0xa8,0x2a,0x10,0x0,0x98,0x29,0x20,0x1, + 0x88,0xc,0x10,0x2,0x78,0xb,0x20,0x3,0x71,0x28,0x90,0x4,0x61,0x27,0xa0,0x5, + 0x51,0xa,0x90,0x6,0x41,0x9,0xa0,0x7,0x30,0xec,0x90,0x8,0x20,0xeb,0xa0,0x9, + 0x10,0xce,0x90,0xa,0x0,0xcd,0xa0,0xa,0xf0,0xb0,0x90,0xb,0xe0,0xaf,0xa0,0xc, + 0xd9,0xcd,0x10,0xd,0xc0,0x91,0xa0,0xe,0xb9,0xaf,0x10,0xf,0xa9,0xae,0x20,0x10, + 0x99,0x91,0x10,0x11,0x89,0x90,0x20,0x12,0x79,0x73,0x10,0x13,0x69,0x72,0x20,0x14, + 0x59,0x55,0x10,0x15,0x49,0x54,0x20,0x16,0x39,0x37,0x10,0x17,0x29,0x36,0x20,0x18, + 0x22,0x53,0x90,0x19,0x9,0x18,0x20,0x1a,0x2,0x35,0x90,0x1a,0xf2,0x34,0xa0,0x1b, + 0xe2,0x17,0x90,0x1c,0xd2,0x16,0xa0,0x1d,0xc1,0xf9,0x90,0x1e,0xb1,0xf8,0xa0,0x1f, + 0xa1,0xdb,0x90,0x20,0x76,0x2b,0x20,0x21,0x81,0xbd,0x90,0x22,0x56,0xd,0x20,0x23, + 0x6a,0xda,0x10,0x24,0x35,0xef,0x20,0x25,0x4a,0xbc,0x10,0x26,0x15,0xd1,0x20,0x27, + 0x2a,0x9e,0x10,0x27,0xfe,0xed,0xa0,0x29,0xa,0x80,0x10,0x29,0xde,0xcf,0xa0,0x2a, + 0xea,0x62,0x10,0x2b,0xbe,0xb1,0xa0,0x2c,0xd3,0x7e,0x90,0x2d,0x9e,0x93,0xa0,0x2e, + 0xb3,0x60,0x90,0x2f,0x7e,0x75,0xa0,0x30,0x93,0x42,0x90,0x31,0x67,0x92,0x20,0x32, + 0x73,0x24,0x90,0x33,0x47,0x74,0x20,0x34,0x53,0x6,0x90,0x35,0x27,0x56,0x20,0x36, + 0x32,0xe8,0x90,0x37,0x7,0x38,0x20,0x38,0x1c,0x5,0x10,0x38,0xe7,0x1a,0x20,0x39, + 0xfb,0xe7,0x10,0x3a,0xc6,0xfc,0x20,0x3b,0xdb,0xc9,0x10,0x3c,0xb0,0x18,0xa0,0x3d, + 0xbb,0xab,0x10,0x3e,0x8f,0xfa,0xa0,0x3f,0x9b,0x8d,0x10,0x40,0x6f,0xdc,0xa0,0x41, + 0x84,0xa9,0x90,0x42,0x4f,0xbe,0xa0,0x43,0x64,0x8b,0x90,0x44,0x2f,0xa0,0xa0,0x45, + 0x44,0x6d,0x90,0x45,0xf3,0xd3,0x20,0x47,0x2d,0x8a,0x10,0x47,0xd3,0xb5,0x20,0x49, + 0xd,0x6c,0x10,0x49,0xb3,0x97,0x20,0x4a,0xed,0x4e,0x10,0x4b,0x9c,0xb3,0xa0,0x4c, + 0xd6,0x6a,0x90,0x4d,0x7c,0x95,0xa0,0x4e,0xb6,0x4c,0x90,0x4f,0x5c,0x77,0xa0,0x50, + 0x96,0x2e,0x90,0x51,0x3c,0x59,0xa0,0x52,0x76,0x10,0x90,0x53,0x1c,0x3b,0xa0,0x54, + 0x55,0xf2,0x90,0x54,0xfc,0x1d,0xa0,0x2,0x1,0x2,0x3,0x4,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x5,0xff,0xff,0x8c,0xf9,0x0,0x0,0xff,0xff,0x9d,0x90, + 0x1,0x4,0xff,0xff,0x8f,0x80,0x0,0x8,0xff,0xff,0x9d,0x90,0x1,0xc,0xff,0xff, + 0x9d,0x90,0x1,0x10,0xff,0xff,0x9d,0x90,0x0,0x14,0x4c,0x4d,0x54,0x0,0x50,0x44, + 0x54,0x0,0x50,0x53,0x54,0x0,0x50,0x57,0x54,0x0,0x50,0x50,0x54,0x0,0x4d,0x53, + 0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x54,0x5a, + 0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x90,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0xf8,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xff,0xff,0xff,0xff,0x5e,0x3d,0x76,0x87,0xff,0xff,0xff,0xff,0x9e,0xb8, + 0xbd,0xa0,0xff,0xff,0xff,0xff,0x9f,0xbb,0x15,0x90,0xff,0xff,0xff,0xff,0xcb,0x89, + 0x1a,0xa0,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x61, + 0x26,0x10,0xff,0xff,0xff,0xff,0xd5,0x55,0xf1,0x20,0xff,0xff,0xff,0xff,0xd6,0x20, + 0xea,0x10,0xff,0xff,0xff,0xff,0xd7,0x35,0xd3,0x20,0xff,0xff,0xff,0xff,0xd8,0x0, + 0xcc,0x10,0xff,0xff,0xff,0xff,0xd9,0x15,0xb5,0x20,0xff,0xff,0xff,0xff,0xd9,0xe0, + 0xae,0x10,0xff,0xff,0xff,0xff,0xda,0xfe,0xd1,0xa0,0xff,0xff,0xff,0xff,0xdb,0xc0, + 0x90,0x10,0xff,0xff,0xff,0xff,0xdc,0xde,0xb3,0xa0,0xff,0xff,0xff,0xff,0xdd,0xa9, + 0xac,0x90,0xff,0xff,0xff,0xff,0xde,0xbe,0x95,0xa0,0xff,0xff,0xff,0xff,0xdf,0x89, + 0x8e,0x90,0xff,0xff,0xff,0xff,0xe0,0x9e,0x77,0xa0,0xff,0xff,0xff,0xff,0xe1,0x69, + 0x70,0x90,0xff,0xff,0xff,0xff,0xe2,0x7e,0x59,0xa0,0xff,0xff,0xff,0xff,0xe3,0x49, + 0x52,0x90,0xff,0xff,0xff,0xff,0xe4,0x5e,0x3b,0xa0,0xff,0xff,0xff,0xff,0xe5,0x29, + 0x34,0x90,0xff,0xff,0xff,0xff,0xe6,0x47,0x58,0x20,0xff,0xff,0xff,0xff,0xe7,0x12, + 0x51,0x10,0xff,0xff,0xff,0xff,0xe8,0x27,0x3a,0x20,0xff,0xff,0xff,0xff,0xe8,0xf2, + 0x33,0x10,0xff,0xff,0xff,0xff,0xea,0x7,0x1c,0x20,0xff,0xff,0xff,0xff,0xea,0xd2, + 0x15,0x10,0xff,0xff,0xff,0xff,0xeb,0xe6,0xfe,0x20,0xff,0xff,0xff,0xff,0xec,0xb1, + 0xf7,0x10,0xff,0xff,0xff,0xff,0xed,0xc6,0xe0,0x20,0xff,0xff,0xff,0xff,0xee,0x91, + 0xd9,0x10,0xff,0xff,0xff,0xff,0xef,0xaf,0xfc,0xa0,0xff,0xff,0xff,0xff,0xf0,0x71, + 0xbb,0x10,0xff,0xff,0xff,0xff,0xf1,0x8f,0xde,0xa0,0xff,0xff,0xff,0xff,0xf2,0x7f, + 0xc1,0x90,0xff,0xff,0xff,0xff,0xf3,0x6f,0xc0,0xa0,0xff,0xff,0xff,0xff,0xf4,0x5f, + 0xa3,0x90,0xff,0xff,0xff,0xff,0xf5,0x4f,0xa2,0xa0,0xff,0xff,0xff,0xff,0xf6,0x3f, + 0x85,0x90,0xff,0xff,0xff,0xff,0xf7,0x2f,0x84,0xa0,0xff,0xff,0xff,0xff,0xf8,0x28, + 0xa2,0x10,0xff,0xff,0xff,0xff,0xf9,0xf,0x66,0xa0,0xff,0xff,0xff,0xff,0xfa,0x8, + 0x84,0x10,0xff,0xff,0xff,0xff,0xfa,0xf8,0x83,0x20,0xff,0xff,0xff,0xff,0xfb,0xe8, + 0x66,0x10,0xff,0xff,0xff,0xff,0xfc,0xd8,0x65,0x20,0xff,0xff,0xff,0xff,0xfd,0xc8, + 0x48,0x10,0xff,0xff,0xff,0xff,0xfe,0xb8,0x47,0x20,0xff,0xff,0xff,0xff,0xff,0xa8, + 0x2a,0x10,0x0,0x0,0x0,0x0,0x0,0x98,0x29,0x20,0x0,0x0,0x0,0x0,0x1,0x88, + 0xc,0x10,0x0,0x0,0x0,0x0,0x2,0x78,0xb,0x20,0x0,0x0,0x0,0x0,0x3,0x71, + 0x28,0x90,0x0,0x0,0x0,0x0,0x4,0x61,0x27,0xa0,0x0,0x0,0x0,0x0,0x5,0x51, + 0xa,0x90,0x0,0x0,0x0,0x0,0x6,0x41,0x9,0xa0,0x0,0x0,0x0,0x0,0x7,0x30, + 0xec,0x90,0x0,0x0,0x0,0x0,0x8,0x20,0xeb,0xa0,0x0,0x0,0x0,0x0,0x9,0x10, + 0xce,0x90,0x0,0x0,0x0,0x0,0xa,0x0,0xcd,0xa0,0x0,0x0,0x0,0x0,0xa,0xf0, + 0xb0,0x90,0x0,0x0,0x0,0x0,0xb,0xe0,0xaf,0xa0,0x0,0x0,0x0,0x0,0xc,0xd9, + 0xcd,0x10,0x0,0x0,0x0,0x0,0xd,0xc0,0x91,0xa0,0x0,0x0,0x0,0x0,0xe,0xb9, + 0xaf,0x10,0x0,0x0,0x0,0x0,0xf,0xa9,0xae,0x20,0x0,0x0,0x0,0x0,0x10,0x99, + 0x91,0x10,0x0,0x0,0x0,0x0,0x11,0x89,0x90,0x20,0x0,0x0,0x0,0x0,0x12,0x79, + 0x73,0x10,0x0,0x0,0x0,0x0,0x13,0x69,0x72,0x20,0x0,0x0,0x0,0x0,0x14,0x59, + 0x55,0x10,0x0,0x0,0x0,0x0,0x15,0x49,0x54,0x20,0x0,0x0,0x0,0x0,0x16,0x39, + 0x37,0x10,0x0,0x0,0x0,0x0,0x17,0x29,0x36,0x20,0x0,0x0,0x0,0x0,0x18,0x22, + 0x53,0x90,0x0,0x0,0x0,0x0,0x19,0x9,0x18,0x20,0x0,0x0,0x0,0x0,0x1a,0x2, + 0x35,0x90,0x0,0x0,0x0,0x0,0x1a,0xf2,0x34,0xa0,0x0,0x0,0x0,0x0,0x1b,0xe2, + 0x17,0x90,0x0,0x0,0x0,0x0,0x1c,0xd2,0x16,0xa0,0x0,0x0,0x0,0x0,0x1d,0xc1, + 0xf9,0x90,0x0,0x0,0x0,0x0,0x1e,0xb1,0xf8,0xa0,0x0,0x0,0x0,0x0,0x1f,0xa1, + 0xdb,0x90,0x0,0x0,0x0,0x0,0x20,0x76,0x2b,0x20,0x0,0x0,0x0,0x0,0x21,0x81, + 0xbd,0x90,0x0,0x0,0x0,0x0,0x22,0x56,0xd,0x20,0x0,0x0,0x0,0x0,0x23,0x6a, + 0xda,0x10,0x0,0x0,0x0,0x0,0x24,0x35,0xef,0x20,0x0,0x0,0x0,0x0,0x25,0x4a, + 0xbc,0x10,0x0,0x0,0x0,0x0,0x26,0x15,0xd1,0x20,0x0,0x0,0x0,0x0,0x27,0x2a, + 0x9e,0x10,0x0,0x0,0x0,0x0,0x27,0xfe,0xed,0xa0,0x0,0x0,0x0,0x0,0x29,0xa, + 0x80,0x10,0x0,0x0,0x0,0x0,0x29,0xde,0xcf,0xa0,0x0,0x0,0x0,0x0,0x2a,0xea, + 0x62,0x10,0x0,0x0,0x0,0x0,0x2b,0xbe,0xb1,0xa0,0x0,0x0,0x0,0x0,0x2c,0xd3, + 0x7e,0x90,0x0,0x0,0x0,0x0,0x2d,0x9e,0x93,0xa0,0x0,0x0,0x0,0x0,0x2e,0xb3, + 0x60,0x90,0x0,0x0,0x0,0x0,0x2f,0x7e,0x75,0xa0,0x0,0x0,0x0,0x0,0x30,0x93, + 0x42,0x90,0x0,0x0,0x0,0x0,0x31,0x67,0x92,0x20,0x0,0x0,0x0,0x0,0x32,0x73, + 0x24,0x90,0x0,0x0,0x0,0x0,0x33,0x47,0x74,0x20,0x0,0x0,0x0,0x0,0x34,0x53, + 0x6,0x90,0x0,0x0,0x0,0x0,0x35,0x27,0x56,0x20,0x0,0x0,0x0,0x0,0x36,0x32, + 0xe8,0x90,0x0,0x0,0x0,0x0,0x37,0x7,0x38,0x20,0x0,0x0,0x0,0x0,0x38,0x1c, + 0x5,0x10,0x0,0x0,0x0,0x0,0x38,0xe7,0x1a,0x20,0x0,0x0,0x0,0x0,0x39,0xfb, + 0xe7,0x10,0x0,0x0,0x0,0x0,0x3a,0xc6,0xfc,0x20,0x0,0x0,0x0,0x0,0x3b,0xdb, + 0xc9,0x10,0x0,0x0,0x0,0x0,0x3c,0xb0,0x18,0xa0,0x0,0x0,0x0,0x0,0x3d,0xbb, + 0xab,0x10,0x0,0x0,0x0,0x0,0x3e,0x8f,0xfa,0xa0,0x0,0x0,0x0,0x0,0x3f,0x9b, + 0x8d,0x10,0x0,0x0,0x0,0x0,0x40,0x6f,0xdc,0xa0,0x0,0x0,0x0,0x0,0x41,0x84, + 0xa9,0x90,0x0,0x0,0x0,0x0,0x42,0x4f,0xbe,0xa0,0x0,0x0,0x0,0x0,0x43,0x64, + 0x8b,0x90,0x0,0x0,0x0,0x0,0x44,0x2f,0xa0,0xa0,0x0,0x0,0x0,0x0,0x45,0x44, + 0x6d,0x90,0x0,0x0,0x0,0x0,0x45,0xf3,0xd3,0x20,0x0,0x0,0x0,0x0,0x47,0x2d, + 0x8a,0x10,0x0,0x0,0x0,0x0,0x47,0xd3,0xb5,0x20,0x0,0x0,0x0,0x0,0x49,0xd, + 0x6c,0x10,0x0,0x0,0x0,0x0,0x49,0xb3,0x97,0x20,0x0,0x0,0x0,0x0,0x4a,0xed, + 0x4e,0x10,0x0,0x0,0x0,0x0,0x4b,0x9c,0xb3,0xa0,0x0,0x0,0x0,0x0,0x4c,0xd6, + 0x6a,0x90,0x0,0x0,0x0,0x0,0x4d,0x7c,0x95,0xa0,0x0,0x0,0x0,0x0,0x4e,0xb6, + 0x4c,0x90,0x0,0x0,0x0,0x0,0x4f,0x5c,0x77,0xa0,0x0,0x0,0x0,0x0,0x50,0x96, + 0x2e,0x90,0x0,0x0,0x0,0x0,0x51,0x3c,0x59,0xa0,0x0,0x0,0x0,0x0,0x52,0x76, + 0x10,0x90,0x0,0x0,0x0,0x0,0x53,0x1c,0x3b,0xa0,0x0,0x0,0x0,0x0,0x54,0x55, + 0xf2,0x90,0x0,0x0,0x0,0x0,0x54,0xfc,0x1d,0xa0,0x0,0x2,0x1,0x2,0x3,0x4, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x5,0xff,0xff,0x8c,0xf9,0x0,0x0, + 0xff,0xff,0x9d,0x90,0x1,0x4,0xff,0xff,0x8f,0x80,0x0,0x8,0xff,0xff,0x9d,0x90, + 0x1,0xc,0xff,0xff,0x9d,0x90,0x1,0x10,0xff,0xff,0x9d,0x90,0x0,0x14,0x4c,0x4d, + 0x54,0x0,0x50,0x44,0x54,0x0,0x50,0x53,0x54,0x0,0x50,0x57,0x54,0x0,0x50,0x50, + 0x54,0x0,0x4d,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, + 0x1,0x0,0xa,0x4d,0x53,0x54,0x37,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Lower_Princes + 0x0,0x0,0x0,0xd4, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x96,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x80,0x0,0x0,0x0,0xa5, - 0xb6,0xf6,0x80,0xa9,0x79,0x4f,0x70,0xaf,0xf2,0x7c,0xf0,0xb6,0x66,0x64,0x70,0xb7, - 0x1b,0x10,0x0,0xb8,0xa,0xf2,0xf0,0xcb,0xea,0x8d,0x80,0xd2,0x23,0xf4,0x70,0xd2, - 0x99,0xba,0x70,0xd7,0x1b,0x59,0x0,0xd8,0x91,0xb4,0xf0,0xe2,0x7e,0x4b,0x90,0xe3, - 0x49,0x52,0x90,0xe4,0x5e,0x2d,0x90,0xe5,0x29,0x34,0x90,0xe6,0x47,0x4a,0x10,0xe7, - 0x12,0x51,0x10,0xe8,0x27,0x2c,0x10,0xe8,0xf2,0x33,0x10,0xea,0x7,0xe,0x10,0xea, - 0xd2,0x15,0x10,0xeb,0xe6,0xf0,0x10,0xec,0xb1,0xf7,0x10,0xed,0xc6,0xd2,0x10,0xee, - 0x91,0xd9,0x10,0xb,0xe0,0xaf,0xa0,0xc,0xd9,0xcd,0x10,0xd,0xc0,0x91,0xa0,0xe, - 0xb9,0xaf,0x10,0xf,0xa9,0xae,0x20,0x10,0x99,0x91,0x10,0x11,0x89,0x90,0x20,0x12, - 0x79,0x73,0x10,0x13,0x69,0x72,0x20,0x14,0x59,0x55,0x10,0x15,0x49,0x54,0x20,0x16, - 0x39,0x37,0x10,0x17,0x29,0x36,0x20,0x18,0x22,0x53,0x90,0x19,0x9,0x18,0x20,0x1a, - 0x2,0x35,0x90,0x1a,0xf2,0x34,0xa0,0x1b,0xe2,0x17,0x90,0x1c,0xd2,0x16,0xa0,0x1d, - 0xc1,0xf9,0x90,0x1e,0xb1,0xf8,0xa0,0x1f,0xa1,0xdb,0x90,0x20,0x76,0x2b,0x20,0x21, - 0x81,0xbd,0x90,0x22,0x56,0xd,0x20,0x23,0x6a,0xda,0x10,0x24,0x35,0xef,0x20,0x25, - 0x4a,0xbc,0x10,0x26,0x15,0xd1,0x20,0x27,0x2a,0x9e,0x10,0x27,0xfe,0xed,0xa0,0x29, - 0xa,0x80,0x10,0x29,0xde,0xcf,0xa0,0x2a,0xea,0x62,0x10,0x2b,0xbe,0xb1,0xa0,0x2c, - 0xd3,0x7e,0x90,0x2d,0x9e,0x93,0xa0,0x2e,0xb3,0x60,0x90,0x2f,0x7e,0x75,0xa0,0x30, - 0x93,0x42,0x90,0x31,0x67,0x92,0x20,0x32,0x73,0x24,0x90,0x33,0x47,0x74,0x20,0x34, - 0x53,0x6,0x90,0x35,0x27,0x56,0x20,0x36,0x32,0xe8,0x90,0x37,0x7,0x38,0x20,0x38, - 0x1c,0x5,0x10,0x38,0xe7,0x1a,0x20,0x39,0xfb,0xe7,0x10,0x3a,0xc6,0xfc,0x20,0x3b, - 0xdb,0xc9,0x10,0x3c,0xb0,0x18,0xa0,0x3d,0xbb,0xab,0x10,0x3e,0x8f,0xfa,0xa0,0x3f, - 0x9b,0x8d,0x10,0x40,0x6f,0xdc,0xa0,0x41,0x84,0xa9,0x90,0x42,0x4f,0xbe,0xa0,0x43, - 0x64,0x8b,0x90,0x44,0x2f,0xa0,0xa0,0x45,0x44,0x6d,0x90,0x46,0xf,0x82,0xa0,0x47, - 0x24,0x4f,0x90,0x47,0xf8,0x9f,0x20,0x49,0x4,0x31,0x90,0x49,0xd8,0x81,0x20,0x4a, - 0xe4,0x13,0x90,0x4b,0x9c,0xb3,0xa0,0x4c,0xd6,0x6a,0x90,0x4d,0x7c,0x95,0xa0,0x4e, - 0xb6,0x4c,0x90,0x4f,0x5c,0x77,0xa0,0x50,0x96,0x2e,0x90,0x51,0x3c,0x59,0xa0,0x52, - 0x76,0x10,0x90,0x53,0x1c,0x3b,0xa0,0x54,0x55,0xf2,0x90,0x54,0xfc,0x1d,0xa0,0x56, - 0x35,0xd4,0x90,0x56,0xe5,0x3a,0x20,0x58,0x1e,0xf1,0x10,0x58,0xc5,0x1c,0x20,0x59, - 0xfe,0xd3,0x10,0x5a,0xa4,0xfe,0x20,0x5b,0xde,0xb5,0x10,0x5c,0x84,0xe0,0x20,0x5d, - 0xbe,0x97,0x10,0x5e,0x64,0xc2,0x20,0x5f,0x9e,0x79,0x10,0x60,0x4d,0xde,0xa0,0x61, - 0x87,0x95,0x90,0x62,0x2d,0xc0,0xa0,0x63,0x67,0x77,0x90,0x64,0xd,0xa2,0xa0,0x65, - 0x47,0x59,0x90,0x65,0xed,0x84,0xa0,0x67,0x27,0x3b,0x90,0x67,0xcd,0x66,0xa0,0x69, - 0x7,0x1d,0x90,0x69,0xad,0x48,0xa0,0x6a,0xe6,0xff,0x90,0x6b,0x96,0x65,0x20,0x6c, - 0xd0,0x1c,0x10,0x6d,0x76,0x47,0x20,0x6e,0xaf,0xfe,0x10,0x6f,0x56,0x29,0x20,0x70, - 0x8f,0xe0,0x10,0x71,0x36,0xb,0x20,0x72,0x6f,0xc2,0x10,0x73,0x15,0xed,0x20,0x74, - 0x4f,0xa4,0x10,0x74,0xff,0x9,0xa0,0x76,0x38,0xc0,0x90,0x76,0xde,0xeb,0xa0,0x78, - 0x18,0xa2,0x90,0x78,0xbe,0xcd,0xa0,0x79,0xf8,0x84,0x90,0x7a,0x9e,0xaf,0xa0,0x7b, - 0xd8,0x66,0x90,0x7c,0x7e,0x91,0xa0,0x7d,0xb8,0x48,0x90,0x7e,0x5e,0x73,0xa0,0x7f, - 0x98,0x2a,0x90,0x0,0x1,0x2,0x1,0x2,0x3,0x2,0x4,0x5,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0xff,0xff,0x92,0x4c,0x0,0x0,0xff, - 0xff,0x9d,0x90,0x0,0x4,0xff,0xff,0x8f,0x80,0x0,0x8,0xff,0xff,0x9d,0x90,0x1, - 0xc,0xff,0xff,0x9d,0x90,0x1,0x10,0xff,0xff,0x9d,0x90,0x1,0x14,0x4c,0x4d,0x54, - 0x0,0x4d,0x53,0x54,0x0,0x50,0x53,0x54,0x0,0x50,0x44,0x54,0x0,0x50,0x57,0x54, - 0x0,0x50,0x50,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, - 0x1,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x96,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0xf8,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xa5,0xb6,0xf6,0x80,0xff,0xff,0xff, - 0xff,0xa9,0x79,0x4f,0x70,0xff,0xff,0xff,0xff,0xaf,0xf2,0x7c,0xf0,0xff,0xff,0xff, - 0xff,0xb6,0x66,0x64,0x70,0xff,0xff,0xff,0xff,0xb7,0x1b,0x10,0x0,0xff,0xff,0xff, - 0xff,0xb8,0xa,0xf2,0xf0,0xff,0xff,0xff,0xff,0xcb,0xea,0x8d,0x80,0xff,0xff,0xff, - 0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x99,0xba,0x70,0xff,0xff,0xff, - 0xff,0xd7,0x1b,0x59,0x0,0xff,0xff,0xff,0xff,0xd8,0x91,0xb4,0xf0,0xff,0xff,0xff, - 0xff,0xe2,0x7e,0x4b,0x90,0xff,0xff,0xff,0xff,0xe3,0x49,0x52,0x90,0xff,0xff,0xff, - 0xff,0xe4,0x5e,0x2d,0x90,0xff,0xff,0xff,0xff,0xe5,0x29,0x34,0x90,0xff,0xff,0xff, - 0xff,0xe6,0x47,0x4a,0x10,0xff,0xff,0xff,0xff,0xe7,0x12,0x51,0x10,0xff,0xff,0xff, - 0xff,0xe8,0x27,0x2c,0x10,0xff,0xff,0xff,0xff,0xe8,0xf2,0x33,0x10,0xff,0xff,0xff, - 0xff,0xea,0x7,0xe,0x10,0xff,0xff,0xff,0xff,0xea,0xd2,0x15,0x10,0xff,0xff,0xff, - 0xff,0xeb,0xe6,0xf0,0x10,0xff,0xff,0xff,0xff,0xec,0xb1,0xf7,0x10,0xff,0xff,0xff, - 0xff,0xed,0xc6,0xd2,0x10,0xff,0xff,0xff,0xff,0xee,0x91,0xd9,0x10,0x0,0x0,0x0, - 0x0,0xb,0xe0,0xaf,0xa0,0x0,0x0,0x0,0x0,0xc,0xd9,0xcd,0x10,0x0,0x0,0x0, - 0x0,0xd,0xc0,0x91,0xa0,0x0,0x0,0x0,0x0,0xe,0xb9,0xaf,0x10,0x0,0x0,0x0, - 0x0,0xf,0xa9,0xae,0x20,0x0,0x0,0x0,0x0,0x10,0x99,0x91,0x10,0x0,0x0,0x0, - 0x0,0x11,0x89,0x90,0x20,0x0,0x0,0x0,0x0,0x12,0x79,0x73,0x10,0x0,0x0,0x0, - 0x0,0x13,0x69,0x72,0x20,0x0,0x0,0x0,0x0,0x14,0x59,0x55,0x10,0x0,0x0,0x0, - 0x0,0x15,0x49,0x54,0x20,0x0,0x0,0x0,0x0,0x16,0x39,0x37,0x10,0x0,0x0,0x0, - 0x0,0x17,0x29,0x36,0x20,0x0,0x0,0x0,0x0,0x18,0x22,0x53,0x90,0x0,0x0,0x0, - 0x0,0x19,0x9,0x18,0x20,0x0,0x0,0x0,0x0,0x1a,0x2,0x35,0x90,0x0,0x0,0x0, - 0x0,0x1a,0xf2,0x34,0xa0,0x0,0x0,0x0,0x0,0x1b,0xe2,0x17,0x90,0x0,0x0,0x0, - 0x0,0x1c,0xd2,0x16,0xa0,0x0,0x0,0x0,0x0,0x1d,0xc1,0xf9,0x90,0x0,0x0,0x0, - 0x0,0x1e,0xb1,0xf8,0xa0,0x0,0x0,0x0,0x0,0x1f,0xa1,0xdb,0x90,0x0,0x0,0x0, - 0x0,0x20,0x76,0x2b,0x20,0x0,0x0,0x0,0x0,0x21,0x81,0xbd,0x90,0x0,0x0,0x0, - 0x0,0x22,0x56,0xd,0x20,0x0,0x0,0x0,0x0,0x23,0x6a,0xda,0x10,0x0,0x0,0x0, - 0x0,0x24,0x35,0xef,0x20,0x0,0x0,0x0,0x0,0x25,0x4a,0xbc,0x10,0x0,0x0,0x0, - 0x0,0x26,0x15,0xd1,0x20,0x0,0x0,0x0,0x0,0x27,0x2a,0x9e,0x10,0x0,0x0,0x0, - 0x0,0x27,0xfe,0xed,0xa0,0x0,0x0,0x0,0x0,0x29,0xa,0x80,0x10,0x0,0x0,0x0, - 0x0,0x29,0xde,0xcf,0xa0,0x0,0x0,0x0,0x0,0x2a,0xea,0x62,0x10,0x0,0x0,0x0, - 0x0,0x2b,0xbe,0xb1,0xa0,0x0,0x0,0x0,0x0,0x2c,0xd3,0x7e,0x90,0x0,0x0,0x0, - 0x0,0x2d,0x9e,0x93,0xa0,0x0,0x0,0x0,0x0,0x2e,0xb3,0x60,0x90,0x0,0x0,0x0, - 0x0,0x2f,0x7e,0x75,0xa0,0x0,0x0,0x0,0x0,0x30,0x93,0x42,0x90,0x0,0x0,0x0, - 0x0,0x31,0x67,0x92,0x20,0x0,0x0,0x0,0x0,0x32,0x73,0x24,0x90,0x0,0x0,0x0, - 0x0,0x33,0x47,0x74,0x20,0x0,0x0,0x0,0x0,0x34,0x53,0x6,0x90,0x0,0x0,0x0, - 0x0,0x35,0x27,0x56,0x20,0x0,0x0,0x0,0x0,0x36,0x32,0xe8,0x90,0x0,0x0,0x0, - 0x0,0x37,0x7,0x38,0x20,0x0,0x0,0x0,0x0,0x38,0x1c,0x5,0x10,0x0,0x0,0x0, - 0x0,0x38,0xe7,0x1a,0x20,0x0,0x0,0x0,0x0,0x39,0xfb,0xe7,0x10,0x0,0x0,0x0, - 0x0,0x3a,0xc6,0xfc,0x20,0x0,0x0,0x0,0x0,0x3b,0xdb,0xc9,0x10,0x0,0x0,0x0, - 0x0,0x3c,0xb0,0x18,0xa0,0x0,0x0,0x0,0x0,0x3d,0xbb,0xab,0x10,0x0,0x0,0x0, - 0x0,0x3e,0x8f,0xfa,0xa0,0x0,0x0,0x0,0x0,0x3f,0x9b,0x8d,0x10,0x0,0x0,0x0, - 0x0,0x40,0x6f,0xdc,0xa0,0x0,0x0,0x0,0x0,0x41,0x84,0xa9,0x90,0x0,0x0,0x0, - 0x0,0x42,0x4f,0xbe,0xa0,0x0,0x0,0x0,0x0,0x43,0x64,0x8b,0x90,0x0,0x0,0x0, - 0x0,0x44,0x2f,0xa0,0xa0,0x0,0x0,0x0,0x0,0x45,0x44,0x6d,0x90,0x0,0x0,0x0, - 0x0,0x46,0xf,0x82,0xa0,0x0,0x0,0x0,0x0,0x47,0x24,0x4f,0x90,0x0,0x0,0x0, - 0x0,0x47,0xf8,0x9f,0x20,0x0,0x0,0x0,0x0,0x49,0x4,0x31,0x90,0x0,0x0,0x0, - 0x0,0x49,0xd8,0x81,0x20,0x0,0x0,0x0,0x0,0x4a,0xe4,0x13,0x90,0x0,0x0,0x0, - 0x0,0x4b,0x9c,0xb3,0xa0,0x0,0x0,0x0,0x0,0x4c,0xd6,0x6a,0x90,0x0,0x0,0x0, - 0x0,0x4d,0x7c,0x95,0xa0,0x0,0x0,0x0,0x0,0x4e,0xb6,0x4c,0x90,0x0,0x0,0x0, - 0x0,0x4f,0x5c,0x77,0xa0,0x0,0x0,0x0,0x0,0x50,0x96,0x2e,0x90,0x0,0x0,0x0, - 0x0,0x51,0x3c,0x59,0xa0,0x0,0x0,0x0,0x0,0x52,0x76,0x10,0x90,0x0,0x0,0x0, - 0x0,0x53,0x1c,0x3b,0xa0,0x0,0x0,0x0,0x0,0x54,0x55,0xf2,0x90,0x0,0x0,0x0, - 0x0,0x54,0xfc,0x1d,0xa0,0x0,0x0,0x0,0x0,0x56,0x35,0xd4,0x90,0x0,0x0,0x0, - 0x0,0x56,0xe5,0x3a,0x20,0x0,0x0,0x0,0x0,0x58,0x1e,0xf1,0x10,0x0,0x0,0x0, - 0x0,0x58,0xc5,0x1c,0x20,0x0,0x0,0x0,0x0,0x59,0xfe,0xd3,0x10,0x0,0x0,0x0, - 0x0,0x5a,0xa4,0xfe,0x20,0x0,0x0,0x0,0x0,0x5b,0xde,0xb5,0x10,0x0,0x0,0x0, - 0x0,0x5c,0x84,0xe0,0x20,0x0,0x0,0x0,0x0,0x5d,0xbe,0x97,0x10,0x0,0x0,0x0, - 0x0,0x5e,0x64,0xc2,0x20,0x0,0x0,0x0,0x0,0x5f,0x9e,0x79,0x10,0x0,0x0,0x0, - 0x0,0x60,0x4d,0xde,0xa0,0x0,0x0,0x0,0x0,0x61,0x87,0x95,0x90,0x0,0x0,0x0, - 0x0,0x62,0x2d,0xc0,0xa0,0x0,0x0,0x0,0x0,0x63,0x67,0x77,0x90,0x0,0x0,0x0, - 0x0,0x64,0xd,0xa2,0xa0,0x0,0x0,0x0,0x0,0x65,0x47,0x59,0x90,0x0,0x0,0x0, - 0x0,0x65,0xed,0x84,0xa0,0x0,0x0,0x0,0x0,0x67,0x27,0x3b,0x90,0x0,0x0,0x0, - 0x0,0x67,0xcd,0x66,0xa0,0x0,0x0,0x0,0x0,0x69,0x7,0x1d,0x90,0x0,0x0,0x0, - 0x0,0x69,0xad,0x48,0xa0,0x0,0x0,0x0,0x0,0x6a,0xe6,0xff,0x90,0x0,0x0,0x0, - 0x0,0x6b,0x96,0x65,0x20,0x0,0x0,0x0,0x0,0x6c,0xd0,0x1c,0x10,0x0,0x0,0x0, - 0x0,0x6d,0x76,0x47,0x20,0x0,0x0,0x0,0x0,0x6e,0xaf,0xfe,0x10,0x0,0x0,0x0, - 0x0,0x6f,0x56,0x29,0x20,0x0,0x0,0x0,0x0,0x70,0x8f,0xe0,0x10,0x0,0x0,0x0, - 0x0,0x71,0x36,0xb,0x20,0x0,0x0,0x0,0x0,0x72,0x6f,0xc2,0x10,0x0,0x0,0x0, - 0x0,0x73,0x15,0xed,0x20,0x0,0x0,0x0,0x0,0x74,0x4f,0xa4,0x10,0x0,0x0,0x0, - 0x0,0x74,0xff,0x9,0xa0,0x0,0x0,0x0,0x0,0x76,0x38,0xc0,0x90,0x0,0x0,0x0, - 0x0,0x76,0xde,0xeb,0xa0,0x0,0x0,0x0,0x0,0x78,0x18,0xa2,0x90,0x0,0x0,0x0, - 0x0,0x78,0xbe,0xcd,0xa0,0x0,0x0,0x0,0x0,0x79,0xf8,0x84,0x90,0x0,0x0,0x0, - 0x0,0x7a,0x9e,0xaf,0xa0,0x0,0x0,0x0,0x0,0x7b,0xd8,0x66,0x90,0x0,0x0,0x0, - 0x0,0x7c,0x7e,0x91,0xa0,0x0,0x0,0x0,0x0,0x7d,0xb8,0x48,0x90,0x0,0x0,0x0, - 0x0,0x7e,0x5e,0x73,0xa0,0x0,0x0,0x0,0x0,0x7f,0x98,0x2a,0x90,0x0,0x1,0x2, - 0x1,0x2,0x3,0x2,0x4,0x5,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xe,0x80,0x0,0x0,0x0,0x93, + 0x1e,0x2e,0x23,0xf6,0x98,0xec,0x48,0x0,0x1,0x2,0xff,0xff,0xbf,0x5d,0x0,0x0, + 0xff,0xff,0xc0,0xb8,0x0,0x4,0xff,0xff,0xc7,0xc0,0x0,0xa,0x4c,0x4d,0x54,0x0, + 0x2d,0x30,0x34,0x33,0x30,0x0,0x41,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xe,0xf8,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x93,0x1e,0x2e,0x23,0xff,0xff,0xff,0xff, + 0xf6,0x98,0xec,0x48,0x0,0x1,0x2,0xff,0xff,0xbf,0x5d,0x0,0x0,0xff,0xff,0xc0, + 0xb8,0x0,0x4,0xff,0xff,0xc7,0xc0,0x0,0xa,0x4c,0x4d,0x54,0x0,0x2d,0x30,0x34, + 0x33,0x30,0x0,0x41,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x41,0x53, + 0x54,0x34,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Denver + 0x0,0x0,0x9,0x95, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x9e,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0x9e, + 0xa6,0x3a,0x90,0x9f,0xbb,0x7,0x80,0xa0,0x86,0x1c,0x90,0xa1,0x9a,0xe9,0x80,0xa2, + 0x65,0xfe,0x90,0xa3,0x84,0x6,0x0,0xa4,0x45,0xe0,0x90,0xa4,0x8f,0xa6,0x80,0xcb, + 0x89,0xc,0x90,0xd2,0x23,0xf4,0x70,0xd2,0x61,0x18,0x0,0xf7,0x2f,0x76,0x90,0xf8, + 0x28,0x94,0x0,0xf9,0xf,0x58,0x90,0xfa,0x8,0x76,0x0,0xfa,0xf8,0x75,0x10,0xfb, + 0xe8,0x58,0x0,0xfc,0xd8,0x57,0x10,0xfd,0xc8,0x3a,0x0,0xfe,0xb8,0x39,0x10,0xff, + 0xa8,0x1c,0x0,0x0,0x98,0x1b,0x10,0x1,0x87,0xfe,0x0,0x2,0x77,0xfd,0x10,0x3, + 0x71,0x1a,0x80,0x4,0x61,0x19,0x90,0x5,0x50,0xfc,0x80,0x6,0x40,0xfb,0x90,0x7, + 0x30,0xde,0x80,0x7,0x8d,0x35,0x90,0x9,0x10,0xc0,0x80,0x9,0xad,0xb1,0x10,0xa, + 0xf0,0xa2,0x80,0xb,0xe0,0xa1,0x90,0xc,0xd9,0xbf,0x0,0xd,0xc0,0x83,0x90,0xe, + 0xb9,0xa1,0x0,0xf,0xa9,0xa0,0x10,0x10,0x99,0x83,0x0,0x11,0x89,0x82,0x10,0x12, + 0x79,0x65,0x0,0x13,0x69,0x64,0x10,0x14,0x59,0x47,0x0,0x15,0x49,0x46,0x10,0x16, + 0x39,0x29,0x0,0x17,0x29,0x28,0x10,0x18,0x22,0x45,0x80,0x19,0x9,0xa,0x10,0x1a, + 0x2,0x27,0x80,0x1a,0xf2,0x26,0x90,0x1b,0xe2,0x9,0x80,0x1c,0xd2,0x8,0x90,0x1d, + 0xc1,0xeb,0x80,0x1e,0xb1,0xea,0x90,0x1f,0xa1,0xcd,0x80,0x20,0x76,0x1d,0x10,0x21, + 0x81,0xaf,0x80,0x22,0x55,0xff,0x10,0x23,0x6a,0xcc,0x0,0x24,0x35,0xe1,0x10,0x25, + 0x4a,0xae,0x0,0x26,0x15,0xc3,0x10,0x27,0x2a,0x90,0x0,0x27,0xfe,0xdf,0x90,0x29, + 0xa,0x72,0x0,0x29,0xde,0xc1,0x90,0x2a,0xea,0x54,0x0,0x2b,0xbe,0xa3,0x90,0x2c, + 0xd3,0x70,0x80,0x2d,0x9e,0x85,0x90,0x2e,0xb3,0x52,0x80,0x2f,0x7e,0x67,0x90,0x30, + 0x93,0x34,0x80,0x31,0x67,0x84,0x10,0x32,0x73,0x16,0x80,0x33,0x47,0x66,0x10,0x34, + 0x52,0xf8,0x80,0x35,0x27,0x48,0x10,0x36,0x32,0xda,0x80,0x37,0x7,0x2a,0x10,0x38, + 0x1b,0xf7,0x0,0x38,0xe7,0xc,0x10,0x39,0xfb,0xd9,0x0,0x3a,0xc6,0xee,0x10,0x3b, + 0xdb,0xbb,0x0,0x3c,0xb0,0xa,0x90,0x3d,0xbb,0x9d,0x0,0x3e,0x8f,0xec,0x90,0x3f, + 0x9b,0x7f,0x0,0x40,0x6f,0xce,0x90,0x41,0x84,0x9b,0x80,0x42,0x4f,0xb0,0x90,0x43, + 0x64,0x7d,0x80,0x44,0x2f,0x92,0x90,0x45,0x44,0x5f,0x80,0x45,0xf3,0xc5,0x10,0x47, + 0x2d,0x7c,0x0,0x47,0xd3,0xa7,0x10,0x49,0xd,0x5e,0x0,0x49,0xb3,0x89,0x10,0x4a, + 0xed,0x40,0x0,0x4b,0x9c,0xa5,0x90,0x4c,0xd6,0x5c,0x80,0x4d,0x7c,0x87,0x90,0x4e, + 0xb6,0x3e,0x80,0x4f,0x5c,0x69,0x90,0x50,0x96,0x20,0x80,0x51,0x3c,0x4b,0x90,0x52, + 0x76,0x2,0x80,0x53,0x1c,0x2d,0x90,0x54,0x55,0xe4,0x80,0x54,0xfc,0xf,0x90,0x56, + 0x35,0xc6,0x80,0x56,0xe5,0x2c,0x10,0x58,0x1e,0xe3,0x0,0x58,0xc5,0xe,0x10,0x59, + 0xfe,0xc5,0x0,0x5a,0xa4,0xf0,0x10,0x5b,0xde,0xa7,0x0,0x5c,0x84,0xd2,0x10,0x5d, + 0xbe,0x89,0x0,0x5e,0x64,0xb4,0x10,0x5f,0x9e,0x6b,0x0,0x60,0x4d,0xd0,0x90,0x61, + 0x87,0x87,0x80,0x62,0x2d,0xb2,0x90,0x63,0x67,0x69,0x80,0x64,0xd,0x94,0x90,0x65, + 0x47,0x4b,0x80,0x65,0xed,0x76,0x90,0x67,0x27,0x2d,0x80,0x67,0xcd,0x58,0x90,0x69, + 0x7,0xf,0x80,0x69,0xad,0x3a,0x90,0x6a,0xe6,0xf1,0x80,0x6b,0x96,0x57,0x10,0x6c, + 0xd0,0xe,0x0,0x6d,0x76,0x39,0x10,0x6e,0xaf,0xf0,0x0,0x6f,0x56,0x1b,0x10,0x70, + 0x8f,0xd2,0x0,0x71,0x35,0xfd,0x10,0x72,0x6f,0xb4,0x0,0x73,0x15,0xdf,0x10,0x74, + 0x4f,0x96,0x0,0x74,0xfe,0xfb,0x90,0x76,0x38,0xb2,0x80,0x76,0xde,0xdd,0x90,0x78, + 0x18,0x94,0x80,0x78,0xbe,0xbf,0x90,0x79,0xf8,0x76,0x80,0x7a,0x9e,0xa1,0x90,0x7b, + 0xd8,0x58,0x80,0x7c,0x7e,0x83,0x90,0x7d,0xb8,0x3a,0x80,0x7e,0x5e,0x65,0x90,0x7f, + 0x98,0x1c,0x80,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0xff,0xff,0x9d,0x94,0x0,0x0,0xff,0xff,0xab,0xa0,0x1,0x4,0xff,0xff,0x9d, + 0x90,0x0,0x8,0xff,0xff,0xab,0xa0,0x1,0xc,0xff,0xff,0xab,0xa0,0x1,0x10,0x4c, + 0x4d,0x54,0x0,0x4d,0x44,0x54,0x0,0x4d,0x53,0x54,0x0,0x4d,0x57,0x54,0x0,0x4d, + 0x50,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x1,0x54,0x5a,0x69, + 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x9f,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0x5e,0x4,0xc,0xb0,0xff,0xff,0xff,0xff,0x9e,0xa6,0x3a, + 0x90,0xff,0xff,0xff,0xff,0x9f,0xbb,0x7,0x80,0xff,0xff,0xff,0xff,0xa0,0x86,0x1c, + 0x90,0xff,0xff,0xff,0xff,0xa1,0x9a,0xe9,0x80,0xff,0xff,0xff,0xff,0xa2,0x65,0xfe, + 0x90,0xff,0xff,0xff,0xff,0xa3,0x84,0x6,0x0,0xff,0xff,0xff,0xff,0xa4,0x45,0xe0, + 0x90,0xff,0xff,0xff,0xff,0xa4,0x8f,0xa6,0x80,0xff,0xff,0xff,0xff,0xcb,0x89,0xc, + 0x90,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x61,0x18, + 0x0,0xff,0xff,0xff,0xff,0xf7,0x2f,0x76,0x90,0xff,0xff,0xff,0xff,0xf8,0x28,0x94, + 0x0,0xff,0xff,0xff,0xff,0xf9,0xf,0x58,0x90,0xff,0xff,0xff,0xff,0xfa,0x8,0x76, + 0x0,0xff,0xff,0xff,0xff,0xfa,0xf8,0x75,0x10,0xff,0xff,0xff,0xff,0xfb,0xe8,0x58, + 0x0,0xff,0xff,0xff,0xff,0xfc,0xd8,0x57,0x10,0xff,0xff,0xff,0xff,0xfd,0xc8,0x3a, + 0x0,0xff,0xff,0xff,0xff,0xfe,0xb8,0x39,0x10,0xff,0xff,0xff,0xff,0xff,0xa8,0x1c, + 0x0,0x0,0x0,0x0,0x0,0x0,0x98,0x1b,0x10,0x0,0x0,0x0,0x0,0x1,0x87,0xfe, + 0x0,0x0,0x0,0x0,0x0,0x2,0x77,0xfd,0x10,0x0,0x0,0x0,0x0,0x3,0x71,0x1a, + 0x80,0x0,0x0,0x0,0x0,0x4,0x61,0x19,0x90,0x0,0x0,0x0,0x0,0x5,0x50,0xfc, + 0x80,0x0,0x0,0x0,0x0,0x6,0x40,0xfb,0x90,0x0,0x0,0x0,0x0,0x7,0x30,0xde, + 0x80,0x0,0x0,0x0,0x0,0x7,0x8d,0x35,0x90,0x0,0x0,0x0,0x0,0x9,0x10,0xc0, + 0x80,0x0,0x0,0x0,0x0,0x9,0xad,0xb1,0x10,0x0,0x0,0x0,0x0,0xa,0xf0,0xa2, + 0x80,0x0,0x0,0x0,0x0,0xb,0xe0,0xa1,0x90,0x0,0x0,0x0,0x0,0xc,0xd9,0xbf, + 0x0,0x0,0x0,0x0,0x0,0xd,0xc0,0x83,0x90,0x0,0x0,0x0,0x0,0xe,0xb9,0xa1, + 0x0,0x0,0x0,0x0,0x0,0xf,0xa9,0xa0,0x10,0x0,0x0,0x0,0x0,0x10,0x99,0x83, + 0x0,0x0,0x0,0x0,0x0,0x11,0x89,0x82,0x10,0x0,0x0,0x0,0x0,0x12,0x79,0x65, + 0x0,0x0,0x0,0x0,0x0,0x13,0x69,0x64,0x10,0x0,0x0,0x0,0x0,0x14,0x59,0x47, + 0x0,0x0,0x0,0x0,0x0,0x15,0x49,0x46,0x10,0x0,0x0,0x0,0x0,0x16,0x39,0x29, + 0x0,0x0,0x0,0x0,0x0,0x17,0x29,0x28,0x10,0x0,0x0,0x0,0x0,0x18,0x22,0x45, + 0x80,0x0,0x0,0x0,0x0,0x19,0x9,0xa,0x10,0x0,0x0,0x0,0x0,0x1a,0x2,0x27, + 0x80,0x0,0x0,0x0,0x0,0x1a,0xf2,0x26,0x90,0x0,0x0,0x0,0x0,0x1b,0xe2,0x9, + 0x80,0x0,0x0,0x0,0x0,0x1c,0xd2,0x8,0x90,0x0,0x0,0x0,0x0,0x1d,0xc1,0xeb, + 0x80,0x0,0x0,0x0,0x0,0x1e,0xb1,0xea,0x90,0x0,0x0,0x0,0x0,0x1f,0xa1,0xcd, + 0x80,0x0,0x0,0x0,0x0,0x20,0x76,0x1d,0x10,0x0,0x0,0x0,0x0,0x21,0x81,0xaf, + 0x80,0x0,0x0,0x0,0x0,0x22,0x55,0xff,0x10,0x0,0x0,0x0,0x0,0x23,0x6a,0xcc, + 0x0,0x0,0x0,0x0,0x0,0x24,0x35,0xe1,0x10,0x0,0x0,0x0,0x0,0x25,0x4a,0xae, + 0x0,0x0,0x0,0x0,0x0,0x26,0x15,0xc3,0x10,0x0,0x0,0x0,0x0,0x27,0x2a,0x90, + 0x0,0x0,0x0,0x0,0x0,0x27,0xfe,0xdf,0x90,0x0,0x0,0x0,0x0,0x29,0xa,0x72, + 0x0,0x0,0x0,0x0,0x0,0x29,0xde,0xc1,0x90,0x0,0x0,0x0,0x0,0x2a,0xea,0x54, + 0x0,0x0,0x0,0x0,0x0,0x2b,0xbe,0xa3,0x90,0x0,0x0,0x0,0x0,0x2c,0xd3,0x70, + 0x80,0x0,0x0,0x0,0x0,0x2d,0x9e,0x85,0x90,0x0,0x0,0x0,0x0,0x2e,0xb3,0x52, + 0x80,0x0,0x0,0x0,0x0,0x2f,0x7e,0x67,0x90,0x0,0x0,0x0,0x0,0x30,0x93,0x34, + 0x80,0x0,0x0,0x0,0x0,0x31,0x67,0x84,0x10,0x0,0x0,0x0,0x0,0x32,0x73,0x16, + 0x80,0x0,0x0,0x0,0x0,0x33,0x47,0x66,0x10,0x0,0x0,0x0,0x0,0x34,0x52,0xf8, + 0x80,0x0,0x0,0x0,0x0,0x35,0x27,0x48,0x10,0x0,0x0,0x0,0x0,0x36,0x32,0xda, + 0x80,0x0,0x0,0x0,0x0,0x37,0x7,0x2a,0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0xf7, + 0x0,0x0,0x0,0x0,0x0,0x38,0xe7,0xc,0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0xd9, + 0x0,0x0,0x0,0x0,0x0,0x3a,0xc6,0xee,0x10,0x0,0x0,0x0,0x0,0x3b,0xdb,0xbb, + 0x0,0x0,0x0,0x0,0x0,0x3c,0xb0,0xa,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x9d, + 0x0,0x0,0x0,0x0,0x0,0x3e,0x8f,0xec,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x7f, + 0x0,0x0,0x0,0x0,0x0,0x40,0x6f,0xce,0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x9b, + 0x80,0x0,0x0,0x0,0x0,0x42,0x4f,0xb0,0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x7d, + 0x80,0x0,0x0,0x0,0x0,0x44,0x2f,0x92,0x90,0x0,0x0,0x0,0x0,0x45,0x44,0x5f, + 0x80,0x0,0x0,0x0,0x0,0x45,0xf3,0xc5,0x10,0x0,0x0,0x0,0x0,0x47,0x2d,0x7c, + 0x0,0x0,0x0,0x0,0x0,0x47,0xd3,0xa7,0x10,0x0,0x0,0x0,0x0,0x49,0xd,0x5e, + 0x0,0x0,0x0,0x0,0x0,0x49,0xb3,0x89,0x10,0x0,0x0,0x0,0x0,0x4a,0xed,0x40, + 0x0,0x0,0x0,0x0,0x0,0x4b,0x9c,0xa5,0x90,0x0,0x0,0x0,0x0,0x4c,0xd6,0x5c, + 0x80,0x0,0x0,0x0,0x0,0x4d,0x7c,0x87,0x90,0x0,0x0,0x0,0x0,0x4e,0xb6,0x3e, + 0x80,0x0,0x0,0x0,0x0,0x4f,0x5c,0x69,0x90,0x0,0x0,0x0,0x0,0x50,0x96,0x20, + 0x80,0x0,0x0,0x0,0x0,0x51,0x3c,0x4b,0x90,0x0,0x0,0x0,0x0,0x52,0x76,0x2, + 0x80,0x0,0x0,0x0,0x0,0x53,0x1c,0x2d,0x90,0x0,0x0,0x0,0x0,0x54,0x55,0xe4, + 0x80,0x0,0x0,0x0,0x0,0x54,0xfc,0xf,0x90,0x0,0x0,0x0,0x0,0x56,0x35,0xc6, + 0x80,0x0,0x0,0x0,0x0,0x56,0xe5,0x2c,0x10,0x0,0x0,0x0,0x0,0x58,0x1e,0xe3, + 0x0,0x0,0x0,0x0,0x0,0x58,0xc5,0xe,0x10,0x0,0x0,0x0,0x0,0x59,0xfe,0xc5, + 0x0,0x0,0x0,0x0,0x0,0x5a,0xa4,0xf0,0x10,0x0,0x0,0x0,0x0,0x5b,0xde,0xa7, + 0x0,0x0,0x0,0x0,0x0,0x5c,0x84,0xd2,0x10,0x0,0x0,0x0,0x0,0x5d,0xbe,0x89, + 0x0,0x0,0x0,0x0,0x0,0x5e,0x64,0xb4,0x10,0x0,0x0,0x0,0x0,0x5f,0x9e,0x6b, + 0x0,0x0,0x0,0x0,0x0,0x60,0x4d,0xd0,0x90,0x0,0x0,0x0,0x0,0x61,0x87,0x87, + 0x80,0x0,0x0,0x0,0x0,0x62,0x2d,0xb2,0x90,0x0,0x0,0x0,0x0,0x63,0x67,0x69, + 0x80,0x0,0x0,0x0,0x0,0x64,0xd,0x94,0x90,0x0,0x0,0x0,0x0,0x65,0x47,0x4b, + 0x80,0x0,0x0,0x0,0x0,0x65,0xed,0x76,0x90,0x0,0x0,0x0,0x0,0x67,0x27,0x2d, + 0x80,0x0,0x0,0x0,0x0,0x67,0xcd,0x58,0x90,0x0,0x0,0x0,0x0,0x69,0x7,0xf, + 0x80,0x0,0x0,0x0,0x0,0x69,0xad,0x3a,0x90,0x0,0x0,0x0,0x0,0x6a,0xe6,0xf1, + 0x80,0x0,0x0,0x0,0x0,0x6b,0x96,0x57,0x10,0x0,0x0,0x0,0x0,0x6c,0xd0,0xe, + 0x0,0x0,0x0,0x0,0x0,0x6d,0x76,0x39,0x10,0x0,0x0,0x0,0x0,0x6e,0xaf,0xf0, + 0x0,0x0,0x0,0x0,0x0,0x6f,0x56,0x1b,0x10,0x0,0x0,0x0,0x0,0x70,0x8f,0xd2, + 0x0,0x0,0x0,0x0,0x0,0x71,0x35,0xfd,0x10,0x0,0x0,0x0,0x0,0x72,0x6f,0xb4, + 0x0,0x0,0x0,0x0,0x0,0x73,0x15,0xdf,0x10,0x0,0x0,0x0,0x0,0x74,0x4f,0x96, + 0x0,0x0,0x0,0x0,0x0,0x74,0xfe,0xfb,0x90,0x0,0x0,0x0,0x0,0x76,0x38,0xb2, + 0x80,0x0,0x0,0x0,0x0,0x76,0xde,0xdd,0x90,0x0,0x0,0x0,0x0,0x78,0x18,0x94, + 0x80,0x0,0x0,0x0,0x0,0x78,0xbe,0xbf,0x90,0x0,0x0,0x0,0x0,0x79,0xf8,0x76, + 0x80,0x0,0x0,0x0,0x0,0x7a,0x9e,0xa1,0x90,0x0,0x0,0x0,0x0,0x7b,0xd8,0x58, + 0x80,0x0,0x0,0x0,0x0,0x7c,0x7e,0x83,0x90,0x0,0x0,0x0,0x0,0x7d,0xb8,0x3a, + 0x80,0x0,0x0,0x0,0x0,0x7e,0x5e,0x65,0x90,0x0,0x0,0x0,0x0,0x7f,0x98,0x1c, + 0x80,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0xff,0xff,0x9d,0x94,0x0,0x0,0xff,0xff,0xab,0xa0,0x1,0x4,0xff,0xff,0x9d,0x90, + 0x0,0x8,0xff,0xff,0xab,0xa0,0x1,0xc,0xff,0xff,0xab,0xa0,0x1,0x10,0x4c,0x4d, + 0x54,0x0,0x4d,0x44,0x54,0x0,0x4d,0x53,0x54,0x0,0x4d,0x57,0x54,0x0,0x4d,0x50, + 0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x1,0xa,0x4d,0x53,0x54, + 0x37,0x4d,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e, + 0x31,0x2e,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Boa_Vista + 0x0,0x0,0x2,0x92, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x23,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0x96, + 0xaa,0x7f,0xe0,0xb8,0xf,0x57,0xf0,0xb8,0xfd,0x4e,0xb0,0xb9,0xf1,0x42,0x40,0xba, + 0xde,0x82,0x30,0xda,0x38,0xbc,0x40,0xda,0xec,0x8,0x40,0xdc,0x19,0xef,0xc0,0xdc, + 0xb9,0x67,0x30,0xdd,0xfb,0x23,0x40,0xde,0x9b,0xec,0x30,0xdf,0xdd,0xa8,0x40,0xe0, + 0x54,0x41,0x30,0xf4,0x98,0xd,0xc0,0xf5,0x5,0x6c,0x30,0xf6,0xc0,0x72,0x40,0xf7, + 0xe,0x2c,0xb0,0xf8,0x51,0x3a,0x40,0xf8,0xc7,0xd3,0x30,0xfa,0xa,0xe0,0xc0,0xfa, + 0xa9,0x6,0xb0,0xfb,0xec,0x14,0x40,0xfc,0x8b,0x8b,0xb0,0x1d,0xc9,0x9c,0x40,0x1e, + 0x78,0xe5,0xb0,0x1f,0xa0,0x43,0xc0,0x20,0x33,0xdd,0xb0,0x21,0x81,0x77,0x40,0x22, + 0xb,0xd6,0xb0,0x37,0xf6,0xd4,0xc0,0x38,0xb8,0x93,0x30,0x39,0xdf,0xf1,0x40,0x39, + 0xe9,0x1d,0xb0,0x7f,0xff,0xff,0xff,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x2,0xff,0xff,0xc7,0x20,0x0,0x0, + 0xff,0xff,0xd5,0xd0,0x1,0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0x4c,0x4d,0x54,0x0, + 0x2d,0x30,0x33,0x0,0x2d,0x30,0x34,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a, + 0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x23,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0xf8,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xff,0xff,0xff,0xff,0x96,0xaa,0x7f,0xe0,0xff,0xff,0xff,0xff,0xb8,0xf, + 0x57,0xf0,0xff,0xff,0xff,0xff,0xb8,0xfd,0x4e,0xb0,0xff,0xff,0xff,0xff,0xb9,0xf1, + 0x42,0x40,0xff,0xff,0xff,0xff,0xba,0xde,0x82,0x30,0xff,0xff,0xff,0xff,0xda,0x38, + 0xbc,0x40,0xff,0xff,0xff,0xff,0xda,0xec,0x8,0x40,0xff,0xff,0xff,0xff,0xdc,0x19, + 0xef,0xc0,0xff,0xff,0xff,0xff,0xdc,0xb9,0x67,0x30,0xff,0xff,0xff,0xff,0xdd,0xfb, + 0x23,0x40,0xff,0xff,0xff,0xff,0xde,0x9b,0xec,0x30,0xff,0xff,0xff,0xff,0xdf,0xdd, + 0xa8,0x40,0xff,0xff,0xff,0xff,0xe0,0x54,0x41,0x30,0xff,0xff,0xff,0xff,0xf4,0x98, + 0xd,0xc0,0xff,0xff,0xff,0xff,0xf5,0x5,0x6c,0x30,0xff,0xff,0xff,0xff,0xf6,0xc0, + 0x72,0x40,0xff,0xff,0xff,0xff,0xf7,0xe,0x2c,0xb0,0xff,0xff,0xff,0xff,0xf8,0x51, + 0x3a,0x40,0xff,0xff,0xff,0xff,0xf8,0xc7,0xd3,0x30,0xff,0xff,0xff,0xff,0xfa,0xa, + 0xe0,0xc0,0xff,0xff,0xff,0xff,0xfa,0xa9,0x6,0xb0,0xff,0xff,0xff,0xff,0xfb,0xec, + 0x14,0x40,0xff,0xff,0xff,0xff,0xfc,0x8b,0x8b,0xb0,0x0,0x0,0x0,0x0,0x1d,0xc9, + 0x9c,0x40,0x0,0x0,0x0,0x0,0x1e,0x78,0xe5,0xb0,0x0,0x0,0x0,0x0,0x1f,0xa0, + 0x43,0xc0,0x0,0x0,0x0,0x0,0x20,0x33,0xdd,0xb0,0x0,0x0,0x0,0x0,0x21,0x81, + 0x77,0x40,0x0,0x0,0x0,0x0,0x22,0xb,0xd6,0xb0,0x0,0x0,0x0,0x0,0x37,0xf6, + 0xd4,0xc0,0x0,0x0,0x0,0x0,0x38,0xb8,0x93,0x30,0x0,0x0,0x0,0x0,0x39,0xdf, + 0xf1,0x40,0x0,0x0,0x0,0x0,0x39,0xe9,0x1d,0xb0,0x0,0x0,0x0,0x0,0x7f,0xff, + 0xff,0xff,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x2,0xff,0xff,0xc7,0x20,0x0,0x0,0xff,0xff,0xd5,0xd0,0x1, + 0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x2d,0x30,0x33,0x0,0x2d, + 0x30,0x34,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2d,0x30,0x34,0x3e,0x34, + 0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Recife + 0x0,0x0,0x2,0xe6, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x29,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0x96, + 0xaa,0x67,0xb8,0xb8,0xf,0x49,0xe0,0xb8,0xfd,0x40,0xa0,0xb9,0xf1,0x34,0x30,0xba, + 0xde,0x74,0x20,0xda,0x38,0xae,0x30,0xda,0xeb,0xfa,0x30,0xdc,0x19,0xe1,0xb0,0xdc, + 0xb9,0x59,0x20,0xdd,0xfb,0x15,0x30,0xde,0x9b,0xde,0x20,0xdf,0xdd,0x9a,0x30,0xe0, + 0x54,0x33,0x20,0xf4,0x97,0xff,0xb0,0xf5,0x5,0x5e,0x20,0xf6,0xc0,0x64,0x30,0xf7, + 0xe,0x1e,0xa0,0xf8,0x51,0x2c,0x30,0xf8,0xc7,0xc5,0x20,0xfa,0xa,0xd2,0xb0,0xfa, + 0xa8,0xf8,0xa0,0xfb,0xec,0x6,0x30,0xfc,0x8b,0x7d,0xa0,0x1d,0xc9,0x8e,0x30,0x1e, + 0x78,0xd7,0xa0,0x1f,0xa0,0x35,0xb0,0x20,0x33,0xcf,0xa0,0x21,0x81,0x69,0x30,0x22, + 0xb,0xc8,0xa0,0x23,0x58,0x10,0xb0,0x23,0xe2,0x70,0x20,0x25,0x37,0xf2,0xb0,0x25, + 0xd4,0xc7,0x20,0x37,0xf6,0xc6,0xb0,0x38,0xb8,0x85,0x20,0x39,0xdf,0xe3,0x30,0x39, + 0xe9,0xf,0xa0,0x3b,0xc8,0xff,0xb0,0x3c,0x6f,0xe,0xa0,0x7f,0xff,0xff,0xff,0x0, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x2,0xff,0xff,0xdf,0x48,0x0,0x0,0xff,0xff, + 0xe3,0xe0,0x1,0x4,0xff,0xff,0xd5,0xd0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x2d,0x30, + 0x32,0x0,0x2d,0x30,0x33,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66, + 0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x29, + 0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0x96,0xaa,0x67,0xb8,0xff,0xff,0xff,0xff,0xb8,0xf,0x49,0xe0, + 0xff,0xff,0xff,0xff,0xb8,0xfd,0x40,0xa0,0xff,0xff,0xff,0xff,0xb9,0xf1,0x34,0x30, + 0xff,0xff,0xff,0xff,0xba,0xde,0x74,0x20,0xff,0xff,0xff,0xff,0xda,0x38,0xae,0x30, + 0xff,0xff,0xff,0xff,0xda,0xeb,0xfa,0x30,0xff,0xff,0xff,0xff,0xdc,0x19,0xe1,0xb0, + 0xff,0xff,0xff,0xff,0xdc,0xb9,0x59,0x20,0xff,0xff,0xff,0xff,0xdd,0xfb,0x15,0x30, + 0xff,0xff,0xff,0xff,0xde,0x9b,0xde,0x20,0xff,0xff,0xff,0xff,0xdf,0xdd,0x9a,0x30, + 0xff,0xff,0xff,0xff,0xe0,0x54,0x33,0x20,0xff,0xff,0xff,0xff,0xf4,0x97,0xff,0xb0, + 0xff,0xff,0xff,0xff,0xf5,0x5,0x5e,0x20,0xff,0xff,0xff,0xff,0xf6,0xc0,0x64,0x30, + 0xff,0xff,0xff,0xff,0xf7,0xe,0x1e,0xa0,0xff,0xff,0xff,0xff,0xf8,0x51,0x2c,0x30, + 0xff,0xff,0xff,0xff,0xf8,0xc7,0xc5,0x20,0xff,0xff,0xff,0xff,0xfa,0xa,0xd2,0xb0, + 0xff,0xff,0xff,0xff,0xfa,0xa8,0xf8,0xa0,0xff,0xff,0xff,0xff,0xfb,0xec,0x6,0x30, + 0xff,0xff,0xff,0xff,0xfc,0x8b,0x7d,0xa0,0x0,0x0,0x0,0x0,0x1d,0xc9,0x8e,0x30, + 0x0,0x0,0x0,0x0,0x1e,0x78,0xd7,0xa0,0x0,0x0,0x0,0x0,0x1f,0xa0,0x35,0xb0, + 0x0,0x0,0x0,0x0,0x20,0x33,0xcf,0xa0,0x0,0x0,0x0,0x0,0x21,0x81,0x69,0x30, + 0x0,0x0,0x0,0x0,0x22,0xb,0xc8,0xa0,0x0,0x0,0x0,0x0,0x23,0x58,0x10,0xb0, + 0x0,0x0,0x0,0x0,0x23,0xe2,0x70,0x20,0x0,0x0,0x0,0x0,0x25,0x37,0xf2,0xb0, + 0x0,0x0,0x0,0x0,0x25,0xd4,0xc7,0x20,0x0,0x0,0x0,0x0,0x37,0xf6,0xc6,0xb0, + 0x0,0x0,0x0,0x0,0x38,0xb8,0x85,0x20,0x0,0x0,0x0,0x0,0x39,0xdf,0xe3,0x30, + 0x0,0x0,0x0,0x0,0x39,0xe9,0xf,0xa0,0x0,0x0,0x0,0x0,0x3b,0xc8,0xff,0xb0, + 0x0,0x0,0x0,0x0,0x3c,0x6f,0xe,0xa0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff, + 0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x2,0xff,0xff,0xdf,0x48,0x0,0x0,0xff, + 0xff,0xe3,0xe0,0x1,0x4,0xff,0xff,0xd5,0xd0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x2d, + 0x30,0x32,0x0,0x2d,0x30,0x33,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2d, + 0x30,0x33,0x3e,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Paramaribo + 0x0,0x0,0x1,0x28, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x12,0x80,0x0,0x0,0x0,0x91, + 0x5,0x8e,0xb8,0xbe,0x2a,0x4b,0xc4,0xd2,0x62,0x2c,0xb4,0x1b,0xbe,0x31,0xb8,0x7f, + 0xff,0xff,0xff,0x0,0x1,0x2,0x3,0x4,0x4,0xff,0xff,0xcc,0x48,0x0,0x0,0xff, + 0xff,0xcc,0x3c,0x0,0x4,0xff,0xff,0xcc,0x4c,0x0,0x4,0xff,0xff,0xce,0xc8,0x0, + 0x8,0xff,0xff,0xd5,0xd0,0x0,0xe,0x4c,0x4d,0x54,0x0,0x50,0x4d,0x54,0x0,0x2d, + 0x30,0x33,0x33,0x30,0x0,0x2d,0x30,0x33,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x12,0xf8, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x91,0x5,0x8e,0xb8,0xff, + 0xff,0xff,0xff,0xbe,0x2a,0x4b,0xc4,0xff,0xff,0xff,0xff,0xd2,0x62,0x2c,0xb4,0x0, + 0x0,0x0,0x0,0x1b,0xbe,0x31,0xb8,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0, + 0x1,0x2,0x3,0x4,0x4,0xff,0xff,0xcc,0x48,0x0,0x0,0xff,0xff,0xcc,0x3c,0x0, + 0x4,0xff,0xff,0xcc,0x4c,0x0,0x4,0xff,0xff,0xce,0xc8,0x0,0x8,0xff,0xff,0xd5, + 0xd0,0x0,0xe,0x4c,0x4d,0x54,0x0,0x50,0x4d,0x54,0x0,0x2d,0x30,0x33,0x33,0x30, + 0x0,0x2d,0x30,0x33,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa, + 0x3c,0x2d,0x30,0x33,0x3e,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Catamarca + 0x0,0x0,0x4,0x55, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3e,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0xa2, + 0x92,0x8f,0x30,0xb6,0x7b,0x52,0x40,0xb7,0x1a,0xc9,0xb0,0xb8,0x1e,0x8f,0x40,0xb8, + 0xd4,0x70,0x30,0xba,0x17,0x7d,0xc0,0xba,0xb5,0xa3,0xb0,0xbb,0xf8,0xb1,0x40,0xbc, + 0x96,0xd7,0x30,0xbd,0xd9,0xe4,0xc0,0xbe,0x78,0xa,0xb0,0xbf,0xbb,0x18,0x40,0xc0, + 0x5a,0x8f,0xb0,0xc1,0x9d,0x9d,0x40,0xc2,0x3b,0xc3,0x30,0xc3,0x7e,0xd0,0xc0,0xc4, + 0x1c,0xf6,0xb0,0xc5,0x60,0x4,0x40,0xc5,0xfe,0x2a,0x30,0xc7,0x41,0x37,0xc0,0xc7, + 0xe0,0xaf,0x30,0xc8,0x81,0x94,0x40,0xca,0x4d,0xa1,0xb0,0xca,0xee,0x86,0xc0,0xce, + 0x4d,0xff,0x30,0xce,0xb0,0xed,0xc0,0xd3,0x29,0x35,0xb0,0xd4,0x43,0x64,0xc0,0xf4, + 0x3d,0x8,0x30,0xf4,0x9f,0xf6,0xc0,0xf5,0x5,0x6c,0x30,0xf6,0x32,0x10,0x40,0xf6, + 0xe6,0x9f,0xb0,0xf8,0x13,0x43,0xc0,0xf8,0xc7,0xd3,0x30,0xf9,0xf4,0x77,0x40,0xfa, + 0xd3,0x36,0xb0,0xfb,0xc3,0x35,0xc0,0xfc,0xbc,0x53,0x30,0xfd,0xac,0x52,0x40,0xfe, + 0x9c,0x35,0x30,0xff,0x8c,0x34,0x40,0x7,0xa3,0x4a,0xb0,0x8,0x24,0x6f,0xa0,0x23, + 0x94,0xb5,0xb0,0x24,0x10,0x94,0xa0,0x25,0x37,0xf2,0xb0,0x25,0xf0,0x76,0xa0,0x27, + 0x21,0xf,0x30,0x27,0xd0,0x58,0xa0,0x29,0x0,0xff,0x40,0x29,0xb0,0x3a,0xa0,0x2a, + 0xe0,0xd3,0x30,0x2b,0x99,0x57,0x20,0x37,0xf6,0xc6,0xb0,0x38,0xbf,0x2a,0xb0,0x40, + 0xbb,0xf1,0x30,0x40,0xd5,0xb,0xc0,0x47,0x77,0x9,0xb0,0x47,0xdc,0x7f,0x20,0x7f, + 0xff,0xff,0xff,0x1,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x2,0x4,0x5,0x4,0x5,0x3,0x5,0x2,0x5,0x4,0x5, + 0x5,0xff,0xff,0xc2,0x54,0x0,0x0,0xff,0xff,0xc3,0xd0,0x0,0x4,0xff,0xff,0xc7, + 0xc0,0x0,0x8,0xff,0xff,0xd5,0xd0,0x1,0xc,0xff,0xff,0xe3,0xe0,0x1,0x10,0xff, + 0xff,0xd5,0xd0,0x0,0xc,0x4c,0x4d,0x54,0x0,0x43,0x4d,0x54,0x0,0x2d,0x30,0x34, + 0x0,0x2d,0x30,0x33,0x0,0x2d,0x30,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x14,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x72,0x9c,0xaf, + 0x2c,0xff,0xff,0xff,0xff,0xa2,0x92,0x8f,0x30,0xff,0xff,0xff,0xff,0xb6,0x7b,0x52, + 0x40,0xff,0xff,0xff,0xff,0xb7,0x1a,0xc9,0xb0,0xff,0xff,0xff,0xff,0xb8,0x1e,0x8f, + 0x40,0xff,0xff,0xff,0xff,0xb8,0xd4,0x70,0x30,0xff,0xff,0xff,0xff,0xba,0x17,0x7d, + 0xc0,0xff,0xff,0xff,0xff,0xba,0xb5,0xa3,0xb0,0xff,0xff,0xff,0xff,0xbb,0xf8,0xb1, + 0x40,0xff,0xff,0xff,0xff,0xbc,0x96,0xd7,0x30,0xff,0xff,0xff,0xff,0xbd,0xd9,0xe4, + 0xc0,0xff,0xff,0xff,0xff,0xbe,0x78,0xa,0xb0,0xff,0xff,0xff,0xff,0xbf,0xbb,0x18, + 0x40,0xff,0xff,0xff,0xff,0xc0,0x5a,0x8f,0xb0,0xff,0xff,0xff,0xff,0xc1,0x9d,0x9d, + 0x40,0xff,0xff,0xff,0xff,0xc2,0x3b,0xc3,0x30,0xff,0xff,0xff,0xff,0xc3,0x7e,0xd0, + 0xc0,0xff,0xff,0xff,0xff,0xc4,0x1c,0xf6,0xb0,0xff,0xff,0xff,0xff,0xc5,0x60,0x4, + 0x40,0xff,0xff,0xff,0xff,0xc5,0xfe,0x2a,0x30,0xff,0xff,0xff,0xff,0xc7,0x41,0x37, + 0xc0,0xff,0xff,0xff,0xff,0xc7,0xe0,0xaf,0x30,0xff,0xff,0xff,0xff,0xc8,0x81,0x94, + 0x40,0xff,0xff,0xff,0xff,0xca,0x4d,0xa1,0xb0,0xff,0xff,0xff,0xff,0xca,0xee,0x86, + 0xc0,0xff,0xff,0xff,0xff,0xce,0x4d,0xff,0x30,0xff,0xff,0xff,0xff,0xce,0xb0,0xed, + 0xc0,0xff,0xff,0xff,0xff,0xd3,0x29,0x35,0xb0,0xff,0xff,0xff,0xff,0xd4,0x43,0x64, + 0xc0,0xff,0xff,0xff,0xff,0xf4,0x3d,0x8,0x30,0xff,0xff,0xff,0xff,0xf4,0x9f,0xf6, + 0xc0,0xff,0xff,0xff,0xff,0xf5,0x5,0x6c,0x30,0xff,0xff,0xff,0xff,0xf6,0x32,0x10, + 0x40,0xff,0xff,0xff,0xff,0xf6,0xe6,0x9f,0xb0,0xff,0xff,0xff,0xff,0xf8,0x13,0x43, + 0xc0,0xff,0xff,0xff,0xff,0xf8,0xc7,0xd3,0x30,0xff,0xff,0xff,0xff,0xf9,0xf4,0x77, + 0x40,0xff,0xff,0xff,0xff,0xfa,0xd3,0x36,0xb0,0xff,0xff,0xff,0xff,0xfb,0xc3,0x35, + 0xc0,0xff,0xff,0xff,0xff,0xfc,0xbc,0x53,0x30,0xff,0xff,0xff,0xff,0xfd,0xac,0x52, + 0x40,0xff,0xff,0xff,0xff,0xfe,0x9c,0x35,0x30,0xff,0xff,0xff,0xff,0xff,0x8c,0x34, + 0x40,0x0,0x0,0x0,0x0,0x7,0xa3,0x4a,0xb0,0x0,0x0,0x0,0x0,0x8,0x24,0x6f, + 0xa0,0x0,0x0,0x0,0x0,0x23,0x94,0xb5,0xb0,0x0,0x0,0x0,0x0,0x24,0x10,0x94, + 0xa0,0x0,0x0,0x0,0x0,0x25,0x37,0xf2,0xb0,0x0,0x0,0x0,0x0,0x25,0xf0,0x76, + 0xa0,0x0,0x0,0x0,0x0,0x27,0x21,0xf,0x30,0x0,0x0,0x0,0x0,0x27,0xd0,0x58, + 0xa0,0x0,0x0,0x0,0x0,0x29,0x0,0xff,0x40,0x0,0x0,0x0,0x0,0x29,0xb0,0x3a, + 0xa0,0x0,0x0,0x0,0x0,0x2a,0xe0,0xd3,0x30,0x0,0x0,0x0,0x0,0x2b,0x99,0x57, + 0x20,0x0,0x0,0x0,0x0,0x37,0xf6,0xc6,0xb0,0x0,0x0,0x0,0x0,0x38,0xbf,0x2a, + 0xb0,0x0,0x0,0x0,0x0,0x40,0xbb,0xf1,0x30,0x0,0x0,0x0,0x0,0x40,0xd5,0xb, + 0xc0,0x0,0x0,0x0,0x0,0x47,0x77,0x9,0xb0,0x0,0x0,0x0,0x0,0x47,0xdc,0x7f, + 0x20,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x2,0x4,0x5,0x4, + 0x5,0x3,0x5,0x2,0x5,0x4,0x5,0x5,0xff,0xff,0xc2,0x54,0x0,0x0,0xff,0xff, + 0xc3,0xd0,0x0,0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0xff,0xff,0xd5,0xd0,0x1,0xc, + 0xff,0xff,0xe3,0xe0,0x1,0x10,0xff,0xff,0xd5,0xd0,0x0,0xc,0x4c,0x4d,0x54,0x0, + 0x43,0x4d,0x54,0x0,0x2d,0x30,0x34,0x0,0x2d,0x30,0x33,0x0,0x2d,0x30,0x32,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2d,0x30, + 0x33,0x3e,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Mendoza + 0x0,0x0,0x4,0x55, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3e,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0xa2, + 0x92,0x8f,0x30,0xb6,0x7b,0x52,0x40,0xb7,0x1a,0xc9,0xb0,0xb8,0x1e,0x8f,0x40,0xb8, + 0xd4,0x70,0x30,0xba,0x17,0x7d,0xc0,0xba,0xb5,0xa3,0xb0,0xbb,0xf8,0xb1,0x40,0xbc, + 0x96,0xd7,0x30,0xbd,0xd9,0xe4,0xc0,0xbe,0x78,0xa,0xb0,0xbf,0xbb,0x18,0x40,0xc0, + 0x5a,0x8f,0xb0,0xc1,0x9d,0x9d,0x40,0xc2,0x3b,0xc3,0x30,0xc3,0x7e,0xd0,0xc0,0xc4, + 0x1c,0xf6,0xb0,0xc5,0x60,0x4,0x40,0xc5,0xfe,0x2a,0x30,0xc7,0x41,0x37,0xc0,0xc7, + 0xe0,0xaf,0x30,0xc8,0x81,0x94,0x40,0xca,0x4d,0xa1,0xb0,0xca,0xee,0x86,0xc0,0xce, + 0x4d,0xff,0x30,0xce,0xb0,0xed,0xc0,0xd3,0x29,0x35,0xb0,0xd4,0x43,0x64,0xc0,0xf4, + 0x3d,0x8,0x30,0xf4,0x9f,0xf6,0xc0,0xf5,0x5,0x6c,0x30,0xf6,0x32,0x10,0x40,0xf6, + 0xe6,0x9f,0xb0,0xf8,0x13,0x43,0xc0,0xf8,0xc7,0xd3,0x30,0xf9,0xf4,0x77,0x40,0xfa, + 0xd3,0x36,0xb0,0xfb,0xc3,0x35,0xc0,0xfc,0xbc,0x53,0x30,0xfd,0xac,0x52,0x40,0xfe, + 0x9c,0x35,0x30,0xff,0x8c,0x34,0x40,0x7,0xa3,0x4a,0xb0,0x8,0x24,0x6f,0xa0,0x23, + 0x94,0xb5,0xb0,0x24,0x10,0x94,0xa0,0x25,0x37,0xf2,0xb0,0x25,0xf0,0x76,0xa0,0x27, + 0x19,0x34,0x40,0x27,0xcd,0xc3,0xb0,0x28,0xfa,0x67,0xc0,0x29,0xb0,0x48,0xb0,0x2a, + 0xe0,0xe1,0x40,0x2b,0x99,0x57,0x20,0x37,0xf6,0xc6,0xb0,0x38,0xbf,0x2a,0xb0,0x40, + 0xb0,0x13,0xb0,0x41,0x56,0x3e,0xc0,0x47,0x77,0x9,0xb0,0x47,0xdc,0x7f,0x20,0x7f, + 0xff,0xff,0xff,0x1,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0xff,0xff,0x92,0x4c,0x0,0x0,0xff,0xff,0x9d,0x90,0x0,0x4,0xff, - 0xff,0x8f,0x80,0x0,0x8,0xff,0xff,0x9d,0x90,0x1,0xc,0xff,0xff,0x9d,0x90,0x1, - 0x10,0xff,0xff,0x9d,0x90,0x1,0x14,0x4c,0x4d,0x54,0x0,0x4d,0x53,0x54,0x0,0x50, - 0x53,0x54,0x0,0x50,0x44,0x54,0x0,0x50,0x57,0x54,0x0,0x50,0x50,0x54,0x0,0x0, - 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0xa,0x50,0x53,0x54,0x38, - 0x50,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31, - 0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/St_Lucia - 0x0,0x0,0x0,0xaa, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x5,0x4,0x5, + 0x4,0x5,0x4,0x2,0x3,0x2,0x3,0x2,0x4,0x5,0x3,0x5,0x2,0x5,0x4,0x5, + 0x5,0xff,0xff,0xbf,0x7c,0x0,0x0,0xff,0xff,0xc3,0xd0,0x0,0x4,0xff,0xff,0xc7, + 0xc0,0x0,0x8,0xff,0xff,0xd5,0xd0,0x1,0xc,0xff,0xff,0xe3,0xe0,0x1,0x10,0xff, + 0xff,0xd5,0xd0,0x0,0xc,0x4c,0x4d,0x54,0x0,0x43,0x4d,0x54,0x0,0x2d,0x30,0x34, + 0x0,0x2d,0x30,0x33,0x0,0x2d,0x30,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x14,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x72,0x9c,0xb2, + 0x4,0xff,0xff,0xff,0xff,0xa2,0x92,0x8f,0x30,0xff,0xff,0xff,0xff,0xb6,0x7b,0x52, + 0x40,0xff,0xff,0xff,0xff,0xb7,0x1a,0xc9,0xb0,0xff,0xff,0xff,0xff,0xb8,0x1e,0x8f, + 0x40,0xff,0xff,0xff,0xff,0xb8,0xd4,0x70,0x30,0xff,0xff,0xff,0xff,0xba,0x17,0x7d, + 0xc0,0xff,0xff,0xff,0xff,0xba,0xb5,0xa3,0xb0,0xff,0xff,0xff,0xff,0xbb,0xf8,0xb1, + 0x40,0xff,0xff,0xff,0xff,0xbc,0x96,0xd7,0x30,0xff,0xff,0xff,0xff,0xbd,0xd9,0xe4, + 0xc0,0xff,0xff,0xff,0xff,0xbe,0x78,0xa,0xb0,0xff,0xff,0xff,0xff,0xbf,0xbb,0x18, + 0x40,0xff,0xff,0xff,0xff,0xc0,0x5a,0x8f,0xb0,0xff,0xff,0xff,0xff,0xc1,0x9d,0x9d, + 0x40,0xff,0xff,0xff,0xff,0xc2,0x3b,0xc3,0x30,0xff,0xff,0xff,0xff,0xc3,0x7e,0xd0, + 0xc0,0xff,0xff,0xff,0xff,0xc4,0x1c,0xf6,0xb0,0xff,0xff,0xff,0xff,0xc5,0x60,0x4, + 0x40,0xff,0xff,0xff,0xff,0xc5,0xfe,0x2a,0x30,0xff,0xff,0xff,0xff,0xc7,0x41,0x37, + 0xc0,0xff,0xff,0xff,0xff,0xc7,0xe0,0xaf,0x30,0xff,0xff,0xff,0xff,0xc8,0x81,0x94, + 0x40,0xff,0xff,0xff,0xff,0xca,0x4d,0xa1,0xb0,0xff,0xff,0xff,0xff,0xca,0xee,0x86, + 0xc0,0xff,0xff,0xff,0xff,0xce,0x4d,0xff,0x30,0xff,0xff,0xff,0xff,0xce,0xb0,0xed, + 0xc0,0xff,0xff,0xff,0xff,0xd3,0x29,0x35,0xb0,0xff,0xff,0xff,0xff,0xd4,0x43,0x64, + 0xc0,0xff,0xff,0xff,0xff,0xf4,0x3d,0x8,0x30,0xff,0xff,0xff,0xff,0xf4,0x9f,0xf6, + 0xc0,0xff,0xff,0xff,0xff,0xf5,0x5,0x6c,0x30,0xff,0xff,0xff,0xff,0xf6,0x32,0x10, + 0x40,0xff,0xff,0xff,0xff,0xf6,0xe6,0x9f,0xb0,0xff,0xff,0xff,0xff,0xf8,0x13,0x43, + 0xc0,0xff,0xff,0xff,0xff,0xf8,0xc7,0xd3,0x30,0xff,0xff,0xff,0xff,0xf9,0xf4,0x77, + 0x40,0xff,0xff,0xff,0xff,0xfa,0xd3,0x36,0xb0,0xff,0xff,0xff,0xff,0xfb,0xc3,0x35, + 0xc0,0xff,0xff,0xff,0xff,0xfc,0xbc,0x53,0x30,0xff,0xff,0xff,0xff,0xfd,0xac,0x52, + 0x40,0xff,0xff,0xff,0xff,0xfe,0x9c,0x35,0x30,0xff,0xff,0xff,0xff,0xff,0x8c,0x34, + 0x40,0x0,0x0,0x0,0x0,0x7,0xa3,0x4a,0xb0,0x0,0x0,0x0,0x0,0x8,0x24,0x6f, + 0xa0,0x0,0x0,0x0,0x0,0x23,0x94,0xb5,0xb0,0x0,0x0,0x0,0x0,0x24,0x10,0x94, + 0xa0,0x0,0x0,0x0,0x0,0x25,0x37,0xf2,0xb0,0x0,0x0,0x0,0x0,0x25,0xf0,0x76, + 0xa0,0x0,0x0,0x0,0x0,0x27,0x19,0x34,0x40,0x0,0x0,0x0,0x0,0x27,0xcd,0xc3, + 0xb0,0x0,0x0,0x0,0x0,0x28,0xfa,0x67,0xc0,0x0,0x0,0x0,0x0,0x29,0xb0,0x48, + 0xb0,0x0,0x0,0x0,0x0,0x2a,0xe0,0xe1,0x40,0x0,0x0,0x0,0x0,0x2b,0x99,0x57, + 0x20,0x0,0x0,0x0,0x0,0x37,0xf6,0xc6,0xb0,0x0,0x0,0x0,0x0,0x38,0xbf,0x2a, + 0xb0,0x0,0x0,0x0,0x0,0x40,0xb0,0x13,0xb0,0x0,0x0,0x0,0x0,0x41,0x56,0x3e, + 0xc0,0x0,0x0,0x0,0x0,0x47,0x77,0x9,0xb0,0x0,0x0,0x0,0x0,0x47,0xdc,0x7f, + 0x20,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x5,0x4,0x5,0x4,0x5,0x4,0x2,0x3,0x2,0x3,0x2,0x4, + 0x5,0x3,0x5,0x2,0x5,0x4,0x5,0x5,0xff,0xff,0xbf,0x7c,0x0,0x0,0xff,0xff, + 0xc3,0xd0,0x0,0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0xff,0xff,0xd5,0xd0,0x1,0xc, + 0xff,0xff,0xe3,0xe0,0x1,0x10,0xff,0xff,0xd5,0xd0,0x0,0xc,0x4c,0x4d,0x54,0x0, + 0x43,0x4d,0x54,0x0,0x2d,0x30,0x34,0x0,0x2d,0x30,0x33,0x0,0x2d,0x30,0x32,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2d,0x30, + 0x33,0x3e,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Hermosillo + 0x0,0x0,0x1,0xc6, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x93, - 0x37,0x33,0xac,0x0,0x1,0xff,0xff,0xc6,0x54,0x0,0x0,0xff,0xff,0xc7,0xc0,0x0, - 0x4,0x4c,0x4d,0x54,0x0,0x41,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, - 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0x93,0x37,0x33,0xac,0x0,0x1,0xff,0xff,0xc6,0x54,0x0, - 0x0,0xff,0xff,0xc7,0xc0,0x0,0x4,0x4c,0x4d,0x54,0x0,0x41,0x53,0x54,0x0,0x0, - 0x0,0x0,0x0,0xa,0x41,0x53,0x54,0x34,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Yellowknife - 0x0,0x0,0x7,0xbc, + 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x10,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0xa5, + 0xb6,0xe8,0x70,0xaf,0xf2,0x6e,0xe0,0xb6,0x66,0x56,0x60,0xb7,0x43,0xd2,0x60,0xb8, + 0xc,0x36,0x60,0xb8,0xfd,0x86,0xf0,0xcb,0xea,0x71,0x60,0xd8,0x91,0xb4,0xf0,0x0, + 0x0,0x70,0x80,0x31,0x67,0x84,0x10,0x32,0x73,0x16,0x80,0x33,0x47,0x66,0x10,0x34, + 0x52,0xf8,0x80,0x35,0x27,0x48,0x10,0x36,0x32,0xda,0x80,0x0,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x3,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0xff,0xff,0x97,0xf8,0x0, + 0x0,0xff,0xff,0x9d,0x90,0x0,0x4,0xff,0xff,0xab,0xa0,0x0,0x8,0xff,0xff,0x8f, + 0x80,0x0,0xc,0xff,0xff,0xab,0xa0,0x1,0x10,0xff,0xff,0x9d,0x90,0x0,0x4,0x4c, + 0x4d,0x54,0x0,0x4d,0x53,0x54,0x0,0x43,0x53,0x54,0x0,0x50,0x53,0x54,0x0,0x4d, + 0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x10,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0xf8,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xa5,0xb6,0xe8,0x70,0xff,0xff,0xff,0xff,0xaf, + 0xf2,0x6e,0xe0,0xff,0xff,0xff,0xff,0xb6,0x66,0x56,0x60,0xff,0xff,0xff,0xff,0xb7, + 0x43,0xd2,0x60,0xff,0xff,0xff,0xff,0xb8,0xc,0x36,0x60,0xff,0xff,0xff,0xff,0xb8, + 0xfd,0x86,0xf0,0xff,0xff,0xff,0xff,0xcb,0xea,0x71,0x60,0xff,0xff,0xff,0xff,0xd8, + 0x91,0xb4,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x70,0x80,0x0,0x0,0x0,0x0,0x31, + 0x67,0x84,0x10,0x0,0x0,0x0,0x0,0x32,0x73,0x16,0x80,0x0,0x0,0x0,0x0,0x33, + 0x47,0x66,0x10,0x0,0x0,0x0,0x0,0x34,0x52,0xf8,0x80,0x0,0x0,0x0,0x0,0x35, + 0x27,0x48,0x10,0x0,0x0,0x0,0x0,0x36,0x32,0xda,0x80,0x0,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x3,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0xff,0xff,0x97,0xf8,0x0, + 0x0,0xff,0xff,0x9d,0x90,0x0,0x4,0xff,0xff,0xab,0xa0,0x0,0x8,0xff,0xff,0x8f, + 0x80,0x0,0xc,0xff,0xff,0xab,0xa0,0x1,0x10,0xff,0xff,0x9d,0x90,0x0,0x4,0x4c, + 0x4d,0x54,0x0,0x4d,0x53,0x54,0x0,0x43,0x53,0x54,0x0,0x50,0x53,0x54,0x0,0x4d, + 0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa, + 0x4d,0x53,0x54,0x37,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Ojinaga + 0x0,0x0,0x5,0xf2, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x7b,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x19,0x80,0x0,0x0,0x0,0xbe, - 0x2a,0x18,0x0,0xcb,0x89,0xc,0x90,0xd2,0x23,0xf4,0x70,0xd2,0x61,0x18,0x0,0xf7, - 0x2f,0x5a,0x70,0xf8,0x28,0x85,0xf0,0x13,0x69,0x64,0x10,0x14,0x59,0x47,0x0,0x15, - 0x49,0x46,0x10,0x16,0x39,0x29,0x0,0x17,0x29,0x28,0x10,0x18,0x22,0x45,0x80,0x19, - 0x9,0xa,0x10,0x1a,0x2,0x27,0x80,0x1a,0xf2,0x26,0x90,0x1b,0xe2,0x9,0x80,0x1c, - 0xd2,0x8,0x90,0x1d,0xc1,0xeb,0x80,0x1e,0xb1,0xea,0x90,0x1f,0xa1,0xcd,0x80,0x20, - 0x76,0x1d,0x10,0x21,0x81,0xaf,0x80,0x22,0x55,0xff,0x10,0x23,0x6a,0xcc,0x0,0x24, - 0x35,0xe1,0x10,0x25,0x4a,0xae,0x0,0x26,0x15,0xc3,0x10,0x27,0x2a,0x90,0x0,0x27, - 0xfe,0xdf,0x90,0x29,0xa,0x72,0x0,0x29,0xde,0xc1,0x90,0x2a,0xea,0x54,0x0,0x2b, - 0xbe,0xa3,0x90,0x2c,0xd3,0x70,0x80,0x2d,0x9e,0x85,0x90,0x2e,0xb3,0x52,0x80,0x2f, - 0x7e,0x67,0x90,0x30,0x93,0x34,0x80,0x31,0x67,0x84,0x10,0x32,0x73,0x16,0x80,0x33, - 0x47,0x66,0x10,0x34,0x52,0xf8,0x80,0x35,0x27,0x48,0x10,0x36,0x32,0xda,0x80,0x37, + 0x0,0x0,0x5b,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0xa5, + 0xb6,0xe8,0x70,0xaf,0xf2,0x6e,0xe0,0xb6,0x66,0x56,0x60,0xb7,0x43,0xd2,0x60,0xb8, + 0xc,0x36,0x60,0xb8,0xfd,0x86,0xf0,0x31,0x67,0x76,0x0,0x32,0x73,0x8,0x70,0x33, + 0x47,0x58,0x0,0x34,0x52,0xea,0x70,0x35,0x27,0x48,0x10,0x36,0x32,0xda,0x80,0x37, 0x7,0x2a,0x10,0x38,0x1b,0xf7,0x0,0x38,0xe7,0xc,0x10,0x39,0xfb,0xd9,0x0,0x3a, - 0xc6,0xee,0x10,0x3b,0xdb,0xbb,0x0,0x3c,0xb0,0xa,0x90,0x3d,0xbb,0x9d,0x0,0x3e, + 0xf5,0x12,0x90,0x3b,0xb6,0xd1,0x0,0x3c,0xb0,0xa,0x90,0x3d,0xbb,0x9d,0x0,0x3e, 0x8f,0xec,0x90,0x3f,0x9b,0x7f,0x0,0x40,0x6f,0xce,0x90,0x41,0x84,0x9b,0x80,0x42, - 0x4f,0xb0,0x90,0x43,0x64,0x7d,0x80,0x44,0x2f,0x92,0x90,0x45,0x44,0x5f,0x80,0x45, - 0xf3,0xc5,0x10,0x47,0x2d,0x7c,0x0,0x47,0xd3,0xa7,0x10,0x49,0xd,0x5e,0x0,0x49, - 0xb3,0x89,0x10,0x4a,0xed,0x40,0x0,0x4b,0x9c,0xa5,0x90,0x4c,0xd6,0x5c,0x80,0x4d, + 0x4f,0xb0,0x90,0x43,0x64,0x7d,0x80,0x44,0x2f,0x92,0x90,0x45,0x44,0x5f,0x80,0x46, + 0xf,0x74,0x90,0x47,0x24,0x41,0x80,0x47,0xf8,0x91,0x10,0x49,0x4,0x23,0x80,0x49, + 0xd8,0x73,0x10,0x4a,0xe4,0x5,0x80,0x4b,0x9c,0xa5,0x90,0x4c,0xd6,0x5c,0x80,0x4d, 0x7c,0x87,0x90,0x4e,0xb6,0x3e,0x80,0x4f,0x5c,0x69,0x90,0x50,0x96,0x20,0x80,0x51, 0x3c,0x4b,0x90,0x52,0x76,0x2,0x80,0x53,0x1c,0x2d,0x90,0x54,0x55,0xe4,0x80,0x54, 0xfc,0xf,0x90,0x56,0x35,0xc6,0x80,0x56,0xe5,0x2c,0x10,0x58,0x1e,0xe3,0x0,0x58, @@ -23548,260 +19583,351 @@ static const unsigned char qt_resource_data[] = { 0x15,0xdf,0x10,0x74,0x4f,0x96,0x0,0x74,0xfe,0xfb,0x90,0x76,0x38,0xb2,0x80,0x76, 0xde,0xdd,0x90,0x78,0x18,0x94,0x80,0x78,0xbe,0xbf,0x90,0x79,0xf8,0x76,0x80,0x7a, 0x9e,0xa1,0x90,0x7b,0xd8,0x58,0x80,0x7c,0x7e,0x83,0x90,0x7d,0xb8,0x3a,0x80,0x7e, - 0x5e,0x65,0x90,0x7f,0x98,0x1c,0x80,0x0,0x3,0x1,0x2,0x3,0x4,0x3,0x5,0x3, - 0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3, - 0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3, - 0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3, - 0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3, - 0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3, - 0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3, - 0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3, - 0x5,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xab,0xa0,0x1,0x4,0xff,0xff, - 0xab,0xa0,0x1,0x8,0xff,0xff,0x9d,0x90,0x0,0xc,0xff,0xff,0xb9,0xb0,0x1,0x10, - 0xff,0xff,0xab,0xa0,0x1,0x15,0x2d,0x30,0x30,0x0,0x4d,0x57,0x54,0x0,0x4d,0x50, - 0x54,0x0,0x4d,0x53,0x54,0x0,0x4d,0x44,0x44,0x54,0x0,0x4d,0x44,0x54,0x0,0x0, - 0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7b,0x0, - 0x0,0x0,0x6,0x0,0x0,0x0,0x19,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff, - 0xff,0xff,0xff,0xbe,0x2a,0x18,0x0,0xff,0xff,0xff,0xff,0xcb,0x89,0xc,0x90,0xff, - 0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x61,0x18,0x0,0xff, - 0xff,0xff,0xff,0xf7,0x2f,0x5a,0x70,0xff,0xff,0xff,0xff,0xf8,0x28,0x85,0xf0,0x0, - 0x0,0x0,0x0,0x13,0x69,0x64,0x10,0x0,0x0,0x0,0x0,0x14,0x59,0x47,0x0,0x0, - 0x0,0x0,0x0,0x15,0x49,0x46,0x10,0x0,0x0,0x0,0x0,0x16,0x39,0x29,0x0,0x0, - 0x0,0x0,0x0,0x17,0x29,0x28,0x10,0x0,0x0,0x0,0x0,0x18,0x22,0x45,0x80,0x0, - 0x0,0x0,0x0,0x19,0x9,0xa,0x10,0x0,0x0,0x0,0x0,0x1a,0x2,0x27,0x80,0x0, - 0x0,0x0,0x0,0x1a,0xf2,0x26,0x90,0x0,0x0,0x0,0x0,0x1b,0xe2,0x9,0x80,0x0, - 0x0,0x0,0x0,0x1c,0xd2,0x8,0x90,0x0,0x0,0x0,0x0,0x1d,0xc1,0xeb,0x80,0x0, - 0x0,0x0,0x0,0x1e,0xb1,0xea,0x90,0x0,0x0,0x0,0x0,0x1f,0xa1,0xcd,0x80,0x0, - 0x0,0x0,0x0,0x20,0x76,0x1d,0x10,0x0,0x0,0x0,0x0,0x21,0x81,0xaf,0x80,0x0, - 0x0,0x0,0x0,0x22,0x55,0xff,0x10,0x0,0x0,0x0,0x0,0x23,0x6a,0xcc,0x0,0x0, - 0x0,0x0,0x0,0x24,0x35,0xe1,0x10,0x0,0x0,0x0,0x0,0x25,0x4a,0xae,0x0,0x0, - 0x0,0x0,0x0,0x26,0x15,0xc3,0x10,0x0,0x0,0x0,0x0,0x27,0x2a,0x90,0x0,0x0, - 0x0,0x0,0x0,0x27,0xfe,0xdf,0x90,0x0,0x0,0x0,0x0,0x29,0xa,0x72,0x0,0x0, - 0x0,0x0,0x0,0x29,0xde,0xc1,0x90,0x0,0x0,0x0,0x0,0x2a,0xea,0x54,0x0,0x0, - 0x0,0x0,0x0,0x2b,0xbe,0xa3,0x90,0x0,0x0,0x0,0x0,0x2c,0xd3,0x70,0x80,0x0, - 0x0,0x0,0x0,0x2d,0x9e,0x85,0x90,0x0,0x0,0x0,0x0,0x2e,0xb3,0x52,0x80,0x0, - 0x0,0x0,0x0,0x2f,0x7e,0x67,0x90,0x0,0x0,0x0,0x0,0x30,0x93,0x34,0x80,0x0, - 0x0,0x0,0x0,0x31,0x67,0x84,0x10,0x0,0x0,0x0,0x0,0x32,0x73,0x16,0x80,0x0, - 0x0,0x0,0x0,0x33,0x47,0x66,0x10,0x0,0x0,0x0,0x0,0x34,0x52,0xf8,0x80,0x0, - 0x0,0x0,0x0,0x35,0x27,0x48,0x10,0x0,0x0,0x0,0x0,0x36,0x32,0xda,0x80,0x0, - 0x0,0x0,0x0,0x37,0x7,0x2a,0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0xf7,0x0,0x0, - 0x0,0x0,0x0,0x38,0xe7,0xc,0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0xd9,0x0,0x0, - 0x0,0x0,0x0,0x3a,0xc6,0xee,0x10,0x0,0x0,0x0,0x0,0x3b,0xdb,0xbb,0x0,0x0, - 0x0,0x0,0x0,0x3c,0xb0,0xa,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x9d,0x0,0x0, - 0x0,0x0,0x0,0x3e,0x8f,0xec,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x7f,0x0,0x0, - 0x0,0x0,0x0,0x40,0x6f,0xce,0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x9b,0x80,0x0, - 0x0,0x0,0x0,0x42,0x4f,0xb0,0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x7d,0x80,0x0, - 0x0,0x0,0x0,0x44,0x2f,0x92,0x90,0x0,0x0,0x0,0x0,0x45,0x44,0x5f,0x80,0x0, - 0x0,0x0,0x0,0x45,0xf3,0xc5,0x10,0x0,0x0,0x0,0x0,0x47,0x2d,0x7c,0x0,0x0, - 0x0,0x0,0x0,0x47,0xd3,0xa7,0x10,0x0,0x0,0x0,0x0,0x49,0xd,0x5e,0x0,0x0, - 0x0,0x0,0x0,0x49,0xb3,0x89,0x10,0x0,0x0,0x0,0x0,0x4a,0xed,0x40,0x0,0x0, - 0x0,0x0,0x0,0x4b,0x9c,0xa5,0x90,0x0,0x0,0x0,0x0,0x4c,0xd6,0x5c,0x80,0x0, - 0x0,0x0,0x0,0x4d,0x7c,0x87,0x90,0x0,0x0,0x0,0x0,0x4e,0xb6,0x3e,0x80,0x0, - 0x0,0x0,0x0,0x4f,0x5c,0x69,0x90,0x0,0x0,0x0,0x0,0x50,0x96,0x20,0x80,0x0, - 0x0,0x0,0x0,0x51,0x3c,0x4b,0x90,0x0,0x0,0x0,0x0,0x52,0x76,0x2,0x80,0x0, - 0x0,0x0,0x0,0x53,0x1c,0x2d,0x90,0x0,0x0,0x0,0x0,0x54,0x55,0xe4,0x80,0x0, - 0x0,0x0,0x0,0x54,0xfc,0xf,0x90,0x0,0x0,0x0,0x0,0x56,0x35,0xc6,0x80,0x0, - 0x0,0x0,0x0,0x56,0xe5,0x2c,0x10,0x0,0x0,0x0,0x0,0x58,0x1e,0xe3,0x0,0x0, - 0x0,0x0,0x0,0x58,0xc5,0xe,0x10,0x0,0x0,0x0,0x0,0x59,0xfe,0xc5,0x0,0x0, - 0x0,0x0,0x0,0x5a,0xa4,0xf0,0x10,0x0,0x0,0x0,0x0,0x5b,0xde,0xa7,0x0,0x0, - 0x0,0x0,0x0,0x5c,0x84,0xd2,0x10,0x0,0x0,0x0,0x0,0x5d,0xbe,0x89,0x0,0x0, - 0x0,0x0,0x0,0x5e,0x64,0xb4,0x10,0x0,0x0,0x0,0x0,0x5f,0x9e,0x6b,0x0,0x0, - 0x0,0x0,0x0,0x60,0x4d,0xd0,0x90,0x0,0x0,0x0,0x0,0x61,0x87,0x87,0x80,0x0, - 0x0,0x0,0x0,0x62,0x2d,0xb2,0x90,0x0,0x0,0x0,0x0,0x63,0x67,0x69,0x80,0x0, - 0x0,0x0,0x0,0x64,0xd,0x94,0x90,0x0,0x0,0x0,0x0,0x65,0x47,0x4b,0x80,0x0, - 0x0,0x0,0x0,0x65,0xed,0x76,0x90,0x0,0x0,0x0,0x0,0x67,0x27,0x2d,0x80,0x0, - 0x0,0x0,0x0,0x67,0xcd,0x58,0x90,0x0,0x0,0x0,0x0,0x69,0x7,0xf,0x80,0x0, - 0x0,0x0,0x0,0x69,0xad,0x3a,0x90,0x0,0x0,0x0,0x0,0x6a,0xe6,0xf1,0x80,0x0, - 0x0,0x0,0x0,0x6b,0x96,0x57,0x10,0x0,0x0,0x0,0x0,0x6c,0xd0,0xe,0x0,0x0, - 0x0,0x0,0x0,0x6d,0x76,0x39,0x10,0x0,0x0,0x0,0x0,0x6e,0xaf,0xf0,0x0,0x0, - 0x0,0x0,0x0,0x6f,0x56,0x1b,0x10,0x0,0x0,0x0,0x0,0x70,0x8f,0xd2,0x0,0x0, - 0x0,0x0,0x0,0x71,0x35,0xfd,0x10,0x0,0x0,0x0,0x0,0x72,0x6f,0xb4,0x0,0x0, - 0x0,0x0,0x0,0x73,0x15,0xdf,0x10,0x0,0x0,0x0,0x0,0x74,0x4f,0x96,0x0,0x0, - 0x0,0x0,0x0,0x74,0xfe,0xfb,0x90,0x0,0x0,0x0,0x0,0x76,0x38,0xb2,0x80,0x0, - 0x0,0x0,0x0,0x76,0xde,0xdd,0x90,0x0,0x0,0x0,0x0,0x78,0x18,0x94,0x80,0x0, - 0x0,0x0,0x0,0x78,0xbe,0xbf,0x90,0x0,0x0,0x0,0x0,0x79,0xf8,0x76,0x80,0x0, - 0x0,0x0,0x0,0x7a,0x9e,0xa1,0x90,0x0,0x0,0x0,0x0,0x7b,0xd8,0x58,0x80,0x0, - 0x0,0x0,0x0,0x7c,0x7e,0x83,0x90,0x0,0x0,0x0,0x0,0x7d,0xb8,0x3a,0x80,0x0, - 0x0,0x0,0x0,0x7e,0x5e,0x65,0x90,0x0,0x0,0x0,0x0,0x7f,0x98,0x1c,0x80,0x0, - 0x3,0x1,0x2,0x3,0x4,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3, - 0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3, - 0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3, - 0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3, - 0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3, - 0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3, - 0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3, - 0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x0,0x0,0x0,0x0,0x0,0x0, - 0xff,0xff,0xab,0xa0,0x1,0x4,0xff,0xff,0xab,0xa0,0x1,0x8,0xff,0xff,0x9d,0x90, - 0x0,0xc,0xff,0xff,0xb9,0xb0,0x1,0x10,0xff,0xff,0xab,0xa0,0x1,0x15,0x2d,0x30, - 0x30,0x0,0x4d,0x57,0x54,0x0,0x4d,0x50,0x54,0x0,0x4d,0x53,0x54,0x0,0x4d,0x44, - 0x44,0x54,0x0,0x4d,0x44,0x54,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x1, - 0x0,0x0,0x0,0xa,0x4d,0x53,0x54,0x37,0x4d,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32, - 0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Matamoros - 0x0,0x0,0x5,0x88, + 0x5e,0x65,0x90,0x7f,0x98,0x1c,0x80,0x0,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x2, + 0x3,0x2,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1, + 0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1, + 0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1, + 0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1, + 0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1, + 0x4,0x1,0xff,0xff,0x9e,0x1c,0x0,0x0,0xff,0xff,0x9d,0x90,0x0,0x4,0xff,0xff, + 0xab,0xa0,0x0,0x8,0xff,0xff,0xb9,0xb0,0x1,0xc,0xff,0xff,0xab,0xa0,0x1,0x10, + 0xff,0xff,0x9d,0x90,0x0,0x4,0x4c,0x4d,0x54,0x0,0x4d,0x53,0x54,0x0,0x43,0x53, + 0x54,0x0,0x43,0x44,0x54,0x0,0x4d,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5b,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x14,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xa5,0xb6, + 0xe8,0x70,0xff,0xff,0xff,0xff,0xaf,0xf2,0x6e,0xe0,0xff,0xff,0xff,0xff,0xb6,0x66, + 0x56,0x60,0xff,0xff,0xff,0xff,0xb7,0x43,0xd2,0x60,0xff,0xff,0xff,0xff,0xb8,0xc, + 0x36,0x60,0xff,0xff,0xff,0xff,0xb8,0xfd,0x86,0xf0,0x0,0x0,0x0,0x0,0x31,0x67, + 0x76,0x0,0x0,0x0,0x0,0x0,0x32,0x73,0x8,0x70,0x0,0x0,0x0,0x0,0x33,0x47, + 0x58,0x0,0x0,0x0,0x0,0x0,0x34,0x52,0xea,0x70,0x0,0x0,0x0,0x0,0x35,0x27, + 0x48,0x10,0x0,0x0,0x0,0x0,0x36,0x32,0xda,0x80,0x0,0x0,0x0,0x0,0x37,0x7, + 0x2a,0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0xf7,0x0,0x0,0x0,0x0,0x0,0x38,0xe7, + 0xc,0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0xd9,0x0,0x0,0x0,0x0,0x0,0x3a,0xf5, + 0x12,0x90,0x0,0x0,0x0,0x0,0x3b,0xb6,0xd1,0x0,0x0,0x0,0x0,0x0,0x3c,0xb0, + 0xa,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x9d,0x0,0x0,0x0,0x0,0x0,0x3e,0x8f, + 0xec,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x7f,0x0,0x0,0x0,0x0,0x0,0x40,0x6f, + 0xce,0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x9b,0x80,0x0,0x0,0x0,0x0,0x42,0x4f, + 0xb0,0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x7d,0x80,0x0,0x0,0x0,0x0,0x44,0x2f, + 0x92,0x90,0x0,0x0,0x0,0x0,0x45,0x44,0x5f,0x80,0x0,0x0,0x0,0x0,0x46,0xf, + 0x74,0x90,0x0,0x0,0x0,0x0,0x47,0x24,0x41,0x80,0x0,0x0,0x0,0x0,0x47,0xf8, + 0x91,0x10,0x0,0x0,0x0,0x0,0x49,0x4,0x23,0x80,0x0,0x0,0x0,0x0,0x49,0xd8, + 0x73,0x10,0x0,0x0,0x0,0x0,0x4a,0xe4,0x5,0x80,0x0,0x0,0x0,0x0,0x4b,0x9c, + 0xa5,0x90,0x0,0x0,0x0,0x0,0x4c,0xd6,0x5c,0x80,0x0,0x0,0x0,0x0,0x4d,0x7c, + 0x87,0x90,0x0,0x0,0x0,0x0,0x4e,0xb6,0x3e,0x80,0x0,0x0,0x0,0x0,0x4f,0x5c, + 0x69,0x90,0x0,0x0,0x0,0x0,0x50,0x96,0x20,0x80,0x0,0x0,0x0,0x0,0x51,0x3c, + 0x4b,0x90,0x0,0x0,0x0,0x0,0x52,0x76,0x2,0x80,0x0,0x0,0x0,0x0,0x53,0x1c, + 0x2d,0x90,0x0,0x0,0x0,0x0,0x54,0x55,0xe4,0x80,0x0,0x0,0x0,0x0,0x54,0xfc, + 0xf,0x90,0x0,0x0,0x0,0x0,0x56,0x35,0xc6,0x80,0x0,0x0,0x0,0x0,0x56,0xe5, + 0x2c,0x10,0x0,0x0,0x0,0x0,0x58,0x1e,0xe3,0x0,0x0,0x0,0x0,0x0,0x58,0xc5, + 0xe,0x10,0x0,0x0,0x0,0x0,0x59,0xfe,0xc5,0x0,0x0,0x0,0x0,0x0,0x5a,0xa4, + 0xf0,0x10,0x0,0x0,0x0,0x0,0x5b,0xde,0xa7,0x0,0x0,0x0,0x0,0x0,0x5c,0x84, + 0xd2,0x10,0x0,0x0,0x0,0x0,0x5d,0xbe,0x89,0x0,0x0,0x0,0x0,0x0,0x5e,0x64, + 0xb4,0x10,0x0,0x0,0x0,0x0,0x5f,0x9e,0x6b,0x0,0x0,0x0,0x0,0x0,0x60,0x4d, + 0xd0,0x90,0x0,0x0,0x0,0x0,0x61,0x87,0x87,0x80,0x0,0x0,0x0,0x0,0x62,0x2d, + 0xb2,0x90,0x0,0x0,0x0,0x0,0x63,0x67,0x69,0x80,0x0,0x0,0x0,0x0,0x64,0xd, + 0x94,0x90,0x0,0x0,0x0,0x0,0x65,0x47,0x4b,0x80,0x0,0x0,0x0,0x0,0x65,0xed, + 0x76,0x90,0x0,0x0,0x0,0x0,0x67,0x27,0x2d,0x80,0x0,0x0,0x0,0x0,0x67,0xcd, + 0x58,0x90,0x0,0x0,0x0,0x0,0x69,0x7,0xf,0x80,0x0,0x0,0x0,0x0,0x69,0xad, + 0x3a,0x90,0x0,0x0,0x0,0x0,0x6a,0xe6,0xf1,0x80,0x0,0x0,0x0,0x0,0x6b,0x96, + 0x57,0x10,0x0,0x0,0x0,0x0,0x6c,0xd0,0xe,0x0,0x0,0x0,0x0,0x0,0x6d,0x76, + 0x39,0x10,0x0,0x0,0x0,0x0,0x6e,0xaf,0xf0,0x0,0x0,0x0,0x0,0x0,0x6f,0x56, + 0x1b,0x10,0x0,0x0,0x0,0x0,0x70,0x8f,0xd2,0x0,0x0,0x0,0x0,0x0,0x71,0x35, + 0xfd,0x10,0x0,0x0,0x0,0x0,0x72,0x6f,0xb4,0x0,0x0,0x0,0x0,0x0,0x73,0x15, + 0xdf,0x10,0x0,0x0,0x0,0x0,0x74,0x4f,0x96,0x0,0x0,0x0,0x0,0x0,0x74,0xfe, + 0xfb,0x90,0x0,0x0,0x0,0x0,0x76,0x38,0xb2,0x80,0x0,0x0,0x0,0x0,0x76,0xde, + 0xdd,0x90,0x0,0x0,0x0,0x0,0x78,0x18,0x94,0x80,0x0,0x0,0x0,0x0,0x78,0xbe, + 0xbf,0x90,0x0,0x0,0x0,0x0,0x79,0xf8,0x76,0x80,0x0,0x0,0x0,0x0,0x7a,0x9e, + 0xa1,0x90,0x0,0x0,0x0,0x0,0x7b,0xd8,0x58,0x80,0x0,0x0,0x0,0x0,0x7c,0x7e, + 0x83,0x90,0x0,0x0,0x0,0x0,0x7d,0xb8,0x3a,0x80,0x0,0x0,0x0,0x0,0x7e,0x5e, + 0x65,0x90,0x0,0x0,0x0,0x0,0x7f,0x98,0x1c,0x80,0x0,0x1,0x2,0x1,0x2,0x1, + 0x2,0x3,0x2,0x3,0x2,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4, + 0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4, + 0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4, + 0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4, + 0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4, + 0x1,0x4,0x1,0x4,0x1,0xff,0xff,0x9e,0x1c,0x0,0x0,0xff,0xff,0x9d,0x90,0x0, + 0x4,0xff,0xff,0xab,0xa0,0x0,0x8,0xff,0xff,0xb9,0xb0,0x1,0xc,0xff,0xff,0xab, + 0xa0,0x1,0x10,0xff,0xff,0x9d,0x90,0x0,0x4,0x4c,0x4d,0x54,0x0,0x4d,0x53,0x54, + 0x0,0x43,0x53,0x54,0x0,0x43,0x44,0x54,0x0,0x4d,0x44,0x54,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x4d,0x53,0x54,0x37,0x4d,0x44, + 0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30, + 0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Creston + 0x0,0x0,0x0,0xe9, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x58,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0xa5, - 0xb6,0xda,0x60,0x22,0x55,0xf1,0x0,0x23,0x6a,0xbd,0xf0,0x31,0x67,0x76,0x0,0x32, - 0x73,0x8,0x70,0x33,0x47,0x58,0x0,0x34,0x52,0xea,0x70,0x35,0x27,0x3a,0x0,0x36, - 0x32,0xcc,0x70,0x37,0x7,0x1c,0x0,0x38,0x1b,0xe8,0xf0,0x38,0xe6,0xfe,0x0,0x39, - 0xfb,0xca,0xf0,0x3a,0xf5,0x4,0x80,0x3b,0xb6,0xc2,0xf0,0x3c,0xaf,0xfc,0x80,0x3d, - 0xbb,0x8e,0xf0,0x3e,0x8f,0xde,0x80,0x3f,0x9b,0x70,0xf0,0x40,0x6f,0xc0,0x80,0x41, - 0x84,0x8d,0x70,0x42,0x4f,0xa2,0x80,0x43,0x64,0x6f,0x70,0x44,0x2f,0x84,0x80,0x45, - 0x44,0x51,0x70,0x46,0xf,0x66,0x80,0x47,0x24,0x33,0x70,0x47,0xf8,0x83,0x0,0x49, - 0x4,0x15,0x70,0x49,0xd8,0x65,0x0,0x4a,0xe3,0xf7,0x70,0x4b,0x9c,0x97,0x80,0x4c, - 0xd6,0x4e,0x70,0x4d,0x7c,0x79,0x80,0x4e,0xb6,0x30,0x70,0x4f,0x5c,0x5b,0x80,0x50, - 0x96,0x12,0x70,0x51,0x3c,0x3d,0x80,0x52,0x75,0xf4,0x70,0x53,0x1c,0x1f,0x80,0x54, - 0x55,0xd6,0x70,0x54,0xfc,0x1,0x80,0x56,0x35,0xb8,0x70,0x56,0xe5,0x1e,0x0,0x58, - 0x1e,0xd4,0xf0,0x58,0xc5,0x0,0x0,0x59,0xfe,0xb6,0xf0,0x5a,0xa4,0xe2,0x0,0x5b, - 0xde,0x98,0xf0,0x5c,0x84,0xc4,0x0,0x5d,0xbe,0x7a,0xf0,0x5e,0x64,0xa6,0x0,0x5f, - 0x9e,0x5c,0xf0,0x60,0x4d,0xc2,0x80,0x61,0x87,0x79,0x70,0x62,0x2d,0xa4,0x80,0x63, - 0x67,0x5b,0x70,0x64,0xd,0x86,0x80,0x65,0x47,0x3d,0x70,0x65,0xed,0x68,0x80,0x67, - 0x27,0x1f,0x70,0x67,0xcd,0x4a,0x80,0x69,0x7,0x1,0x70,0x69,0xad,0x2c,0x80,0x6a, - 0xe6,0xe3,0x70,0x6b,0x96,0x49,0x0,0x6c,0xcf,0xff,0xf0,0x6d,0x76,0x2b,0x0,0x6e, - 0xaf,0xe1,0xf0,0x6f,0x56,0xd,0x0,0x70,0x8f,0xc3,0xf0,0x71,0x35,0xef,0x0,0x72, - 0x6f,0xa5,0xf0,0x73,0x15,0xd1,0x0,0x74,0x4f,0x87,0xf0,0x74,0xfe,0xed,0x80,0x76, - 0x38,0xa4,0x70,0x76,0xde,0xcf,0x80,0x78,0x18,0x86,0x70,0x78,0xbe,0xb1,0x80,0x79, - 0xf8,0x68,0x70,0x7a,0x9e,0x93,0x80,0x7b,0xd8,0x4a,0x70,0x7c,0x7e,0x75,0x80,0x7d, - 0xb8,0x2c,0x70,0x7e,0x5e,0x57,0x80,0x7f,0x98,0xe,0x70,0x0,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0x9b, + 0xd6,0x4b,0x70,0x9e,0xf9,0x3b,0x0,0x1,0x2,0x1,0xff,0xff,0x92,0xc4,0x0,0x0, + 0xff,0xff,0x9d,0x90,0x0,0x4,0xff,0xff,0x8f,0x80,0x0,0x8,0xff,0xff,0x9d,0x90, + 0x0,0x4,0x4c,0x4d,0x54,0x0,0x4d,0x53,0x54,0x0,0x50,0x53,0x54,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0, + 0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0, + 0x0,0xc,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x5e,0x3d, + 0x70,0xbc,0xff,0xff,0xff,0xff,0x9b,0xd6,0x4b,0x70,0xff,0xff,0xff,0xff,0x9e,0xf9, + 0x3b,0x0,0x0,0x1,0x2,0x1,0xff,0xff,0x92,0xc4,0x0,0x0,0xff,0xff,0x9d,0x90, + 0x0,0x4,0xff,0xff,0x8f,0x80,0x0,0x8,0xff,0xff,0x9d,0x90,0x0,0x4,0x4c,0x4d, + 0x54,0x0,0x4d,0x53,0x54,0x0,0x50,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xa,0x4d,0x53,0x54,0x37,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Edmonton + 0x0,0x0,0x9,0x62, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x9b,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0x88, + 0xde,0xce,0xe0,0x9e,0xb8,0xaf,0x90,0x9f,0xbb,0x7,0x80,0xa0,0x98,0x91,0x90,0xa0, + 0xd2,0x85,0x80,0xa2,0x8a,0xe8,0x90,0xa3,0x84,0x6,0x0,0xa4,0x6a,0xca,0x90,0xa5, + 0x35,0xc3,0x80,0xa6,0x53,0xe7,0x10,0xa7,0x15,0xa5,0x80,0xa8,0x33,0xc9,0x10,0xa8, + 0xfe,0xc2,0x0,0xcb,0x89,0xc,0x90,0xd2,0x23,0xf4,0x70,0xd2,0x61,0x18,0x0,0xd5, + 0x55,0xe3,0x10,0xd6,0x20,0xdc,0x0,0xfa,0xf8,0x75,0x10,0xfb,0xe8,0x58,0x0,0xfe, + 0xb8,0x39,0x10,0xff,0xa8,0x1c,0x0,0x4,0x61,0x19,0x90,0x5,0x50,0xfc,0x80,0x6, + 0x40,0xfb,0x90,0x7,0x30,0xde,0x80,0x8,0x20,0xdd,0x90,0x9,0x10,0xc0,0x80,0xa, + 0x0,0xbf,0x90,0xa,0xf0,0xa2,0x80,0xb,0xe0,0xa1,0x90,0xc,0xd9,0xbf,0x0,0xd, + 0xc0,0x83,0x90,0xe,0xb9,0xa1,0x0,0xf,0xa9,0xa0,0x10,0x10,0x99,0x83,0x0,0x11, + 0x89,0x82,0x10,0x12,0x79,0x65,0x0,0x13,0x69,0x64,0x10,0x14,0x59,0x47,0x0,0x15, + 0x49,0x46,0x10,0x16,0x39,0x29,0x0,0x17,0x29,0x28,0x10,0x18,0x22,0x45,0x80,0x19, + 0x9,0xa,0x10,0x1a,0x2,0x27,0x80,0x1a,0xf2,0x26,0x90,0x1b,0xe2,0x9,0x80,0x1c, + 0xd2,0x8,0x90,0x1d,0xc1,0xeb,0x80,0x1e,0xb1,0xea,0x90,0x1f,0xa1,0xcd,0x80,0x20, + 0x76,0x1d,0x10,0x21,0x81,0xaf,0x80,0x22,0x55,0xff,0x10,0x23,0x6a,0xcc,0x0,0x24, + 0x35,0xe1,0x10,0x25,0x4a,0xae,0x0,0x26,0x15,0xc3,0x10,0x27,0x2a,0x90,0x0,0x27, + 0xfe,0xdf,0x90,0x29,0xa,0x72,0x0,0x29,0xde,0xc1,0x90,0x2a,0xea,0x54,0x0,0x2b, + 0xbe,0xa3,0x90,0x2c,0xd3,0x70,0x80,0x2d,0x9e,0x85,0x90,0x2e,0xb3,0x52,0x80,0x2f, + 0x7e,0x67,0x90,0x30,0x93,0x34,0x80,0x31,0x67,0x84,0x10,0x32,0x73,0x16,0x80,0x33, + 0x47,0x66,0x10,0x34,0x52,0xf8,0x80,0x35,0x27,0x48,0x10,0x36,0x32,0xda,0x80,0x37, + 0x7,0x2a,0x10,0x38,0x1b,0xf7,0x0,0x38,0xe7,0xc,0x10,0x39,0xfb,0xd9,0x0,0x3a, + 0xc6,0xee,0x10,0x3b,0xdb,0xbb,0x0,0x3c,0xb0,0xa,0x90,0x3d,0xbb,0x9d,0x0,0x3e, + 0x8f,0xec,0x90,0x3f,0x9b,0x7f,0x0,0x40,0x6f,0xce,0x90,0x41,0x84,0x9b,0x80,0x42, + 0x4f,0xb0,0x90,0x43,0x64,0x7d,0x80,0x44,0x2f,0x92,0x90,0x45,0x44,0x5f,0x80,0x45, + 0xf3,0xc5,0x10,0x47,0x2d,0x7c,0x0,0x47,0xd3,0xa7,0x10,0x49,0xd,0x5e,0x0,0x49, + 0xb3,0x89,0x10,0x4a,0xed,0x40,0x0,0x4b,0x9c,0xa5,0x90,0x4c,0xd6,0x5c,0x80,0x4d, + 0x7c,0x87,0x90,0x4e,0xb6,0x3e,0x80,0x4f,0x5c,0x69,0x90,0x50,0x96,0x20,0x80,0x51, + 0x3c,0x4b,0x90,0x52,0x76,0x2,0x80,0x53,0x1c,0x2d,0x90,0x54,0x55,0xe4,0x80,0x54, + 0xfc,0xf,0x90,0x56,0x35,0xc6,0x80,0x56,0xe5,0x2c,0x10,0x58,0x1e,0xe3,0x0,0x58, + 0xc5,0xe,0x10,0x59,0xfe,0xc5,0x0,0x5a,0xa4,0xf0,0x10,0x5b,0xde,0xa7,0x0,0x5c, + 0x84,0xd2,0x10,0x5d,0xbe,0x89,0x0,0x5e,0x64,0xb4,0x10,0x5f,0x9e,0x6b,0x0,0x60, + 0x4d,0xd0,0x90,0x61,0x87,0x87,0x80,0x62,0x2d,0xb2,0x90,0x63,0x67,0x69,0x80,0x64, + 0xd,0x94,0x90,0x65,0x47,0x4b,0x80,0x65,0xed,0x76,0x90,0x67,0x27,0x2d,0x80,0x67, + 0xcd,0x58,0x90,0x69,0x7,0xf,0x80,0x69,0xad,0x3a,0x90,0x6a,0xe6,0xf1,0x80,0x6b, + 0x96,0x57,0x10,0x6c,0xd0,0xe,0x0,0x6d,0x76,0x39,0x10,0x6e,0xaf,0xf0,0x0,0x6f, + 0x56,0x1b,0x10,0x70,0x8f,0xd2,0x0,0x71,0x35,0xfd,0x10,0x72,0x6f,0xb4,0x0,0x73, + 0x15,0xdf,0x10,0x74,0x4f,0x96,0x0,0x74,0xfe,0xfb,0x90,0x76,0x38,0xb2,0x80,0x76, + 0xde,0xdd,0x90,0x78,0x18,0x94,0x80,0x78,0xbe,0xbf,0x90,0x79,0xf8,0x76,0x80,0x7a, + 0x9e,0xa1,0x90,0x7b,0xd8,0x58,0x80,0x7c,0x7e,0x83,0x90,0x7d,0xb8,0x3a,0x80,0x7e, + 0x5e,0x65,0x90,0x7f,0x98,0x1c,0x80,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0xff,0xff,0xa2,0x40,0x0,0x0,0xff,0xff,0xab,0xa0,0x0,0x4,0xff, - 0xff,0xb9,0xb0,0x1,0x8,0x4c,0x4d,0x54,0x0,0x43,0x53,0x54,0x0,0x43,0x44,0x54, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0, - 0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x58,0x0,0x0,0x0,0x3,0x0, - 0x0,0x0,0xc,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xa5, - 0xb6,0xda,0x60,0x0,0x0,0x0,0x0,0x22,0x55,0xf1,0x0,0x0,0x0,0x0,0x0,0x23, - 0x6a,0xbd,0xf0,0x0,0x0,0x0,0x0,0x31,0x67,0x76,0x0,0x0,0x0,0x0,0x0,0x32, - 0x73,0x8,0x70,0x0,0x0,0x0,0x0,0x33,0x47,0x58,0x0,0x0,0x0,0x0,0x0,0x34, - 0x52,0xea,0x70,0x0,0x0,0x0,0x0,0x35,0x27,0x3a,0x0,0x0,0x0,0x0,0x0,0x36, - 0x32,0xcc,0x70,0x0,0x0,0x0,0x0,0x37,0x7,0x1c,0x0,0x0,0x0,0x0,0x0,0x38, - 0x1b,0xe8,0xf0,0x0,0x0,0x0,0x0,0x38,0xe6,0xfe,0x0,0x0,0x0,0x0,0x0,0x39, - 0xfb,0xca,0xf0,0x0,0x0,0x0,0x0,0x3a,0xf5,0x4,0x80,0x0,0x0,0x0,0x0,0x3b, - 0xb6,0xc2,0xf0,0x0,0x0,0x0,0x0,0x3c,0xaf,0xfc,0x80,0x0,0x0,0x0,0x0,0x3d, - 0xbb,0x8e,0xf0,0x0,0x0,0x0,0x0,0x3e,0x8f,0xde,0x80,0x0,0x0,0x0,0x0,0x3f, - 0x9b,0x70,0xf0,0x0,0x0,0x0,0x0,0x40,0x6f,0xc0,0x80,0x0,0x0,0x0,0x0,0x41, - 0x84,0x8d,0x70,0x0,0x0,0x0,0x0,0x42,0x4f,0xa2,0x80,0x0,0x0,0x0,0x0,0x43, - 0x64,0x6f,0x70,0x0,0x0,0x0,0x0,0x44,0x2f,0x84,0x80,0x0,0x0,0x0,0x0,0x45, - 0x44,0x51,0x70,0x0,0x0,0x0,0x0,0x46,0xf,0x66,0x80,0x0,0x0,0x0,0x0,0x47, - 0x24,0x33,0x70,0x0,0x0,0x0,0x0,0x47,0xf8,0x83,0x0,0x0,0x0,0x0,0x0,0x49, - 0x4,0x15,0x70,0x0,0x0,0x0,0x0,0x49,0xd8,0x65,0x0,0x0,0x0,0x0,0x0,0x4a, - 0xe3,0xf7,0x70,0x0,0x0,0x0,0x0,0x4b,0x9c,0x97,0x80,0x0,0x0,0x0,0x0,0x4c, - 0xd6,0x4e,0x70,0x0,0x0,0x0,0x0,0x4d,0x7c,0x79,0x80,0x0,0x0,0x0,0x0,0x4e, - 0xb6,0x30,0x70,0x0,0x0,0x0,0x0,0x4f,0x5c,0x5b,0x80,0x0,0x0,0x0,0x0,0x50, - 0x96,0x12,0x70,0x0,0x0,0x0,0x0,0x51,0x3c,0x3d,0x80,0x0,0x0,0x0,0x0,0x52, - 0x75,0xf4,0x70,0x0,0x0,0x0,0x0,0x53,0x1c,0x1f,0x80,0x0,0x0,0x0,0x0,0x54, - 0x55,0xd6,0x70,0x0,0x0,0x0,0x0,0x54,0xfc,0x1,0x80,0x0,0x0,0x0,0x0,0x56, - 0x35,0xb8,0x70,0x0,0x0,0x0,0x0,0x56,0xe5,0x1e,0x0,0x0,0x0,0x0,0x0,0x58, - 0x1e,0xd4,0xf0,0x0,0x0,0x0,0x0,0x58,0xc5,0x0,0x0,0x0,0x0,0x0,0x0,0x59, - 0xfe,0xb6,0xf0,0x0,0x0,0x0,0x0,0x5a,0xa4,0xe2,0x0,0x0,0x0,0x0,0x0,0x5b, - 0xde,0x98,0xf0,0x0,0x0,0x0,0x0,0x5c,0x84,0xc4,0x0,0x0,0x0,0x0,0x0,0x5d, - 0xbe,0x7a,0xf0,0x0,0x0,0x0,0x0,0x5e,0x64,0xa6,0x0,0x0,0x0,0x0,0x0,0x5f, - 0x9e,0x5c,0xf0,0x0,0x0,0x0,0x0,0x60,0x4d,0xc2,0x80,0x0,0x0,0x0,0x0,0x61, - 0x87,0x79,0x70,0x0,0x0,0x0,0x0,0x62,0x2d,0xa4,0x80,0x0,0x0,0x0,0x0,0x63, - 0x67,0x5b,0x70,0x0,0x0,0x0,0x0,0x64,0xd,0x86,0x80,0x0,0x0,0x0,0x0,0x65, - 0x47,0x3d,0x70,0x0,0x0,0x0,0x0,0x65,0xed,0x68,0x80,0x0,0x0,0x0,0x0,0x67, - 0x27,0x1f,0x70,0x0,0x0,0x0,0x0,0x67,0xcd,0x4a,0x80,0x0,0x0,0x0,0x0,0x69, - 0x7,0x1,0x70,0x0,0x0,0x0,0x0,0x69,0xad,0x2c,0x80,0x0,0x0,0x0,0x0,0x6a, - 0xe6,0xe3,0x70,0x0,0x0,0x0,0x0,0x6b,0x96,0x49,0x0,0x0,0x0,0x0,0x0,0x6c, - 0xcf,0xff,0xf0,0x0,0x0,0x0,0x0,0x6d,0x76,0x2b,0x0,0x0,0x0,0x0,0x0,0x6e, - 0xaf,0xe1,0xf0,0x0,0x0,0x0,0x0,0x6f,0x56,0xd,0x0,0x0,0x0,0x0,0x0,0x70, - 0x8f,0xc3,0xf0,0x0,0x0,0x0,0x0,0x71,0x35,0xef,0x0,0x0,0x0,0x0,0x0,0x72, - 0x6f,0xa5,0xf0,0x0,0x0,0x0,0x0,0x73,0x15,0xd1,0x0,0x0,0x0,0x0,0x0,0x74, - 0x4f,0x87,0xf0,0x0,0x0,0x0,0x0,0x74,0xfe,0xed,0x80,0x0,0x0,0x0,0x0,0x76, - 0x38,0xa4,0x70,0x0,0x0,0x0,0x0,0x76,0xde,0xcf,0x80,0x0,0x0,0x0,0x0,0x78, - 0x18,0x86,0x70,0x0,0x0,0x0,0x0,0x78,0xbe,0xb1,0x80,0x0,0x0,0x0,0x0,0x79, - 0xf8,0x68,0x70,0x0,0x0,0x0,0x0,0x7a,0x9e,0x93,0x80,0x0,0x0,0x0,0x0,0x7b, - 0xd8,0x4a,0x70,0x0,0x0,0x0,0x0,0x7c,0x7e,0x75,0x80,0x0,0x0,0x0,0x0,0x7d, - 0xb8,0x2c,0x70,0x0,0x0,0x0,0x0,0x7e,0x5e,0x57,0x80,0x0,0x0,0x0,0x0,0x7f, - 0x98,0xe,0x70,0x0,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0xff,0xff,0xa2,0x40,0x0, - 0x0,0xff,0xff,0xab,0xa0,0x0,0x4,0xff,0xff,0xb9,0xb0,0x1,0x8,0x4c,0x4d,0x54, - 0x0,0x43,0x53,0x54,0x0,0x43,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa, - 0x43,0x53,0x54,0x36,0x43,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30,0x2c,0x4d, - 0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Montreal - 0x0,0x0,0xd,0xaf, + 0x1,0x2,0xff,0xff,0x95,0xa0,0x0,0x0,0xff,0xff,0xab,0xa0,0x1,0x4,0xff,0xff, + 0x9d,0x90,0x0,0x8,0xff,0xff,0xab,0xa0,0x1,0xc,0xff,0xff,0xab,0xa0,0x1,0x10, + 0x4c,0x4d,0x54,0x0,0x4d,0x44,0x54,0x0,0x4d,0x53,0x54,0x0,0x4d,0x57,0x54,0x0, + 0x4d,0x50,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x1,0x54,0x5a, + 0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x9b,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0xf8,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xff,0xff,0xff,0xff,0x88,0xde,0xce,0xe0,0xff,0xff,0xff,0xff,0x9e,0xb8, + 0xaf,0x90,0xff,0xff,0xff,0xff,0x9f,0xbb,0x7,0x80,0xff,0xff,0xff,0xff,0xa0,0x98, + 0x91,0x90,0xff,0xff,0xff,0xff,0xa0,0xd2,0x85,0x80,0xff,0xff,0xff,0xff,0xa2,0x8a, + 0xe8,0x90,0xff,0xff,0xff,0xff,0xa3,0x84,0x6,0x0,0xff,0xff,0xff,0xff,0xa4,0x6a, + 0xca,0x90,0xff,0xff,0xff,0xff,0xa5,0x35,0xc3,0x80,0xff,0xff,0xff,0xff,0xa6,0x53, + 0xe7,0x10,0xff,0xff,0xff,0xff,0xa7,0x15,0xa5,0x80,0xff,0xff,0xff,0xff,0xa8,0x33, + 0xc9,0x10,0xff,0xff,0xff,0xff,0xa8,0xfe,0xc2,0x0,0xff,0xff,0xff,0xff,0xcb,0x89, + 0xc,0x90,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x61, + 0x18,0x0,0xff,0xff,0xff,0xff,0xd5,0x55,0xe3,0x10,0xff,0xff,0xff,0xff,0xd6,0x20, + 0xdc,0x0,0xff,0xff,0xff,0xff,0xfa,0xf8,0x75,0x10,0xff,0xff,0xff,0xff,0xfb,0xe8, + 0x58,0x0,0xff,0xff,0xff,0xff,0xfe,0xb8,0x39,0x10,0xff,0xff,0xff,0xff,0xff,0xa8, + 0x1c,0x0,0x0,0x0,0x0,0x0,0x4,0x61,0x19,0x90,0x0,0x0,0x0,0x0,0x5,0x50, + 0xfc,0x80,0x0,0x0,0x0,0x0,0x6,0x40,0xfb,0x90,0x0,0x0,0x0,0x0,0x7,0x30, + 0xde,0x80,0x0,0x0,0x0,0x0,0x8,0x20,0xdd,0x90,0x0,0x0,0x0,0x0,0x9,0x10, + 0xc0,0x80,0x0,0x0,0x0,0x0,0xa,0x0,0xbf,0x90,0x0,0x0,0x0,0x0,0xa,0xf0, + 0xa2,0x80,0x0,0x0,0x0,0x0,0xb,0xe0,0xa1,0x90,0x0,0x0,0x0,0x0,0xc,0xd9, + 0xbf,0x0,0x0,0x0,0x0,0x0,0xd,0xc0,0x83,0x90,0x0,0x0,0x0,0x0,0xe,0xb9, + 0xa1,0x0,0x0,0x0,0x0,0x0,0xf,0xa9,0xa0,0x10,0x0,0x0,0x0,0x0,0x10,0x99, + 0x83,0x0,0x0,0x0,0x0,0x0,0x11,0x89,0x82,0x10,0x0,0x0,0x0,0x0,0x12,0x79, + 0x65,0x0,0x0,0x0,0x0,0x0,0x13,0x69,0x64,0x10,0x0,0x0,0x0,0x0,0x14,0x59, + 0x47,0x0,0x0,0x0,0x0,0x0,0x15,0x49,0x46,0x10,0x0,0x0,0x0,0x0,0x16,0x39, + 0x29,0x0,0x0,0x0,0x0,0x0,0x17,0x29,0x28,0x10,0x0,0x0,0x0,0x0,0x18,0x22, + 0x45,0x80,0x0,0x0,0x0,0x0,0x19,0x9,0xa,0x10,0x0,0x0,0x0,0x0,0x1a,0x2, + 0x27,0x80,0x0,0x0,0x0,0x0,0x1a,0xf2,0x26,0x90,0x0,0x0,0x0,0x0,0x1b,0xe2, + 0x9,0x80,0x0,0x0,0x0,0x0,0x1c,0xd2,0x8,0x90,0x0,0x0,0x0,0x0,0x1d,0xc1, + 0xeb,0x80,0x0,0x0,0x0,0x0,0x1e,0xb1,0xea,0x90,0x0,0x0,0x0,0x0,0x1f,0xa1, + 0xcd,0x80,0x0,0x0,0x0,0x0,0x20,0x76,0x1d,0x10,0x0,0x0,0x0,0x0,0x21,0x81, + 0xaf,0x80,0x0,0x0,0x0,0x0,0x22,0x55,0xff,0x10,0x0,0x0,0x0,0x0,0x23,0x6a, + 0xcc,0x0,0x0,0x0,0x0,0x0,0x24,0x35,0xe1,0x10,0x0,0x0,0x0,0x0,0x25,0x4a, + 0xae,0x0,0x0,0x0,0x0,0x0,0x26,0x15,0xc3,0x10,0x0,0x0,0x0,0x0,0x27,0x2a, + 0x90,0x0,0x0,0x0,0x0,0x0,0x27,0xfe,0xdf,0x90,0x0,0x0,0x0,0x0,0x29,0xa, + 0x72,0x0,0x0,0x0,0x0,0x0,0x29,0xde,0xc1,0x90,0x0,0x0,0x0,0x0,0x2a,0xea, + 0x54,0x0,0x0,0x0,0x0,0x0,0x2b,0xbe,0xa3,0x90,0x0,0x0,0x0,0x0,0x2c,0xd3, + 0x70,0x80,0x0,0x0,0x0,0x0,0x2d,0x9e,0x85,0x90,0x0,0x0,0x0,0x0,0x2e,0xb3, + 0x52,0x80,0x0,0x0,0x0,0x0,0x2f,0x7e,0x67,0x90,0x0,0x0,0x0,0x0,0x30,0x93, + 0x34,0x80,0x0,0x0,0x0,0x0,0x31,0x67,0x84,0x10,0x0,0x0,0x0,0x0,0x32,0x73, + 0x16,0x80,0x0,0x0,0x0,0x0,0x33,0x47,0x66,0x10,0x0,0x0,0x0,0x0,0x34,0x52, + 0xf8,0x80,0x0,0x0,0x0,0x0,0x35,0x27,0x48,0x10,0x0,0x0,0x0,0x0,0x36,0x32, + 0xda,0x80,0x0,0x0,0x0,0x0,0x37,0x7,0x2a,0x10,0x0,0x0,0x0,0x0,0x38,0x1b, + 0xf7,0x0,0x0,0x0,0x0,0x0,0x38,0xe7,0xc,0x10,0x0,0x0,0x0,0x0,0x39,0xfb, + 0xd9,0x0,0x0,0x0,0x0,0x0,0x3a,0xc6,0xee,0x10,0x0,0x0,0x0,0x0,0x3b,0xdb, + 0xbb,0x0,0x0,0x0,0x0,0x0,0x3c,0xb0,0xa,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb, + 0x9d,0x0,0x0,0x0,0x0,0x0,0x3e,0x8f,0xec,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b, + 0x7f,0x0,0x0,0x0,0x0,0x0,0x40,0x6f,0xce,0x90,0x0,0x0,0x0,0x0,0x41,0x84, + 0x9b,0x80,0x0,0x0,0x0,0x0,0x42,0x4f,0xb0,0x90,0x0,0x0,0x0,0x0,0x43,0x64, + 0x7d,0x80,0x0,0x0,0x0,0x0,0x44,0x2f,0x92,0x90,0x0,0x0,0x0,0x0,0x45,0x44, + 0x5f,0x80,0x0,0x0,0x0,0x0,0x45,0xf3,0xc5,0x10,0x0,0x0,0x0,0x0,0x47,0x2d, + 0x7c,0x0,0x0,0x0,0x0,0x0,0x47,0xd3,0xa7,0x10,0x0,0x0,0x0,0x0,0x49,0xd, + 0x5e,0x0,0x0,0x0,0x0,0x0,0x49,0xb3,0x89,0x10,0x0,0x0,0x0,0x0,0x4a,0xed, + 0x40,0x0,0x0,0x0,0x0,0x0,0x4b,0x9c,0xa5,0x90,0x0,0x0,0x0,0x0,0x4c,0xd6, + 0x5c,0x80,0x0,0x0,0x0,0x0,0x4d,0x7c,0x87,0x90,0x0,0x0,0x0,0x0,0x4e,0xb6, + 0x3e,0x80,0x0,0x0,0x0,0x0,0x4f,0x5c,0x69,0x90,0x0,0x0,0x0,0x0,0x50,0x96, + 0x20,0x80,0x0,0x0,0x0,0x0,0x51,0x3c,0x4b,0x90,0x0,0x0,0x0,0x0,0x52,0x76, + 0x2,0x80,0x0,0x0,0x0,0x0,0x53,0x1c,0x2d,0x90,0x0,0x0,0x0,0x0,0x54,0x55, + 0xe4,0x80,0x0,0x0,0x0,0x0,0x54,0xfc,0xf,0x90,0x0,0x0,0x0,0x0,0x56,0x35, + 0xc6,0x80,0x0,0x0,0x0,0x0,0x56,0xe5,0x2c,0x10,0x0,0x0,0x0,0x0,0x58,0x1e, + 0xe3,0x0,0x0,0x0,0x0,0x0,0x58,0xc5,0xe,0x10,0x0,0x0,0x0,0x0,0x59,0xfe, + 0xc5,0x0,0x0,0x0,0x0,0x0,0x5a,0xa4,0xf0,0x10,0x0,0x0,0x0,0x0,0x5b,0xde, + 0xa7,0x0,0x0,0x0,0x0,0x0,0x5c,0x84,0xd2,0x10,0x0,0x0,0x0,0x0,0x5d,0xbe, + 0x89,0x0,0x0,0x0,0x0,0x0,0x5e,0x64,0xb4,0x10,0x0,0x0,0x0,0x0,0x5f,0x9e, + 0x6b,0x0,0x0,0x0,0x0,0x0,0x60,0x4d,0xd0,0x90,0x0,0x0,0x0,0x0,0x61,0x87, + 0x87,0x80,0x0,0x0,0x0,0x0,0x62,0x2d,0xb2,0x90,0x0,0x0,0x0,0x0,0x63,0x67, + 0x69,0x80,0x0,0x0,0x0,0x0,0x64,0xd,0x94,0x90,0x0,0x0,0x0,0x0,0x65,0x47, + 0x4b,0x80,0x0,0x0,0x0,0x0,0x65,0xed,0x76,0x90,0x0,0x0,0x0,0x0,0x67,0x27, + 0x2d,0x80,0x0,0x0,0x0,0x0,0x67,0xcd,0x58,0x90,0x0,0x0,0x0,0x0,0x69,0x7, + 0xf,0x80,0x0,0x0,0x0,0x0,0x69,0xad,0x3a,0x90,0x0,0x0,0x0,0x0,0x6a,0xe6, + 0xf1,0x80,0x0,0x0,0x0,0x0,0x6b,0x96,0x57,0x10,0x0,0x0,0x0,0x0,0x6c,0xd0, + 0xe,0x0,0x0,0x0,0x0,0x0,0x6d,0x76,0x39,0x10,0x0,0x0,0x0,0x0,0x6e,0xaf, + 0xf0,0x0,0x0,0x0,0x0,0x0,0x6f,0x56,0x1b,0x10,0x0,0x0,0x0,0x0,0x70,0x8f, + 0xd2,0x0,0x0,0x0,0x0,0x0,0x71,0x35,0xfd,0x10,0x0,0x0,0x0,0x0,0x72,0x6f, + 0xb4,0x0,0x0,0x0,0x0,0x0,0x73,0x15,0xdf,0x10,0x0,0x0,0x0,0x0,0x74,0x4f, + 0x96,0x0,0x0,0x0,0x0,0x0,0x74,0xfe,0xfb,0x90,0x0,0x0,0x0,0x0,0x76,0x38, + 0xb2,0x80,0x0,0x0,0x0,0x0,0x76,0xde,0xdd,0x90,0x0,0x0,0x0,0x0,0x78,0x18, + 0x94,0x80,0x0,0x0,0x0,0x0,0x78,0xbe,0xbf,0x90,0x0,0x0,0x0,0x0,0x79,0xf8, + 0x76,0x80,0x0,0x0,0x0,0x0,0x7a,0x9e,0xa1,0x90,0x0,0x0,0x0,0x0,0x7b,0xd8, + 0x58,0x80,0x0,0x0,0x0,0x0,0x7c,0x7e,0x83,0x90,0x0,0x0,0x0,0x0,0x7d,0xb8, + 0x3a,0x80,0x0,0x0,0x0,0x0,0x7e,0x5e,0x65,0x90,0x0,0x0,0x0,0x0,0x7f,0x98, + 0x1c,0x80,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x3,0x4,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0x95, + 0xa0,0x0,0x0,0xff,0xff,0xab,0xa0,0x1,0x4,0xff,0xff,0x9d,0x90,0x0,0x8,0xff, + 0xff,0xab,0xa0,0x1,0xc,0xff,0xff,0xab,0xa0,0x1,0x10,0x4c,0x4d,0x54,0x0,0x4d, + 0x44,0x54,0x0,0x4d,0x53,0x54,0x0,0x4d,0x57,0x54,0x0,0x4d,0x50,0x54,0x0,0x0, + 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x1,0xa,0x4d,0x53,0x54,0x37,0x4d,0x44, + 0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30, + 0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Araguaina + 0x0,0x0,0x3,0x8e, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xe9,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0x9e, - 0xb8,0x93,0x70,0x9f,0xba,0xeb,0x60,0xa0,0x87,0x2e,0xc8,0xa1,0x9a,0xb1,0x40,0xa2, - 0x94,0x6,0xf0,0xa3,0x55,0xa9,0x40,0xa4,0x86,0x5d,0xf0,0xa5,0x28,0x78,0x60,0xa6, - 0x66,0x3f,0xf0,0xa7,0xc,0x4e,0xe0,0xa8,0x46,0x21,0xf0,0xa8,0xec,0x30,0xe0,0xaa, - 0x1c,0xc9,0x70,0xaa,0xd5,0x4d,0x60,0xab,0xfc,0xab,0x70,0xac,0xb5,0x2f,0x60,0xad, - 0xdc,0x8d,0x70,0xae,0x95,0x11,0x60,0xaf,0xbc,0x6f,0x70,0xb0,0x7e,0x2d,0xe0,0xb1, - 0x9c,0x51,0x70,0xb2,0x67,0x4a,0x60,0xb3,0x7c,0x33,0x70,0xb4,0x47,0x2c,0x60,0xb5, - 0x5c,0x15,0x70,0xb6,0x27,0xe,0x60,0xb7,0x3b,0xf7,0x70,0xb8,0x6,0xf0,0x60,0xb9, - 0x25,0x13,0xf0,0xb9,0xe6,0xd2,0x60,0xbb,0x4,0xf5,0xf0,0xbb,0xcf,0xee,0xe0,0xbc, - 0xe4,0xd7,0xf0,0xbd,0xaf,0xd0,0xe0,0xbe,0xc4,0xb9,0xf0,0xbf,0x8f,0xb2,0xe0,0xc0, - 0xa4,0x9b,0xf0,0xc1,0x6f,0x94,0xe0,0xc2,0x84,0x7d,0xf0,0xc3,0x4f,0x76,0xe0,0xc4, - 0x64,0x5f,0xf0,0xc5,0x2f,0x58,0xe0,0xc6,0x4d,0x7c,0x70,0xc7,0xf,0x3a,0xe0,0xc8, - 0x2d,0x5e,0x70,0xcb,0x88,0xf0,0x70,0xd2,0x23,0xf4,0x70,0xd2,0x60,0xfb,0xe0,0xd3, - 0x75,0xe4,0xf0,0xd4,0x40,0xdd,0xe0,0xd5,0x55,0xaa,0xd0,0xd6,0x20,0xa3,0xc0,0xd7, - 0x35,0x8c,0xd0,0xd8,0x0,0x85,0xc0,0xd9,0x15,0x6e,0xd0,0xda,0x33,0x76,0x40,0xda, - 0xfe,0xa7,0x70,0xdc,0x13,0x74,0x60,0xdc,0xde,0x89,0x70,0xdd,0xa9,0x82,0x60,0xde, - 0xbe,0x6b,0x70,0xdf,0x89,0x64,0x60,0xe0,0x9e,0x4d,0x70,0xe1,0x69,0x46,0x60,0xe2, - 0x7e,0x2f,0x70,0xe3,0x49,0x28,0x60,0xe4,0x5e,0x11,0x70,0xe5,0x29,0xa,0x60,0xe6, - 0x47,0x2d,0xf0,0xe7,0x12,0x26,0xe0,0xe8,0x27,0xf,0xf0,0xe9,0x16,0xf2,0xe0,0xea, - 0x6,0xf1,0xf0,0xea,0xf6,0xd4,0xe0,0xeb,0xe6,0xd3,0xf0,0xec,0xd6,0xb6,0xe0,0xed, - 0xc6,0xb5,0xf0,0xee,0xbf,0xd3,0x60,0xef,0xaf,0xd2,0x70,0xf0,0x9f,0xb5,0x60,0xf1, - 0x8f,0xb4,0x70,0xf2,0x7f,0x97,0x60,0xf3,0x6f,0x96,0x70,0xf4,0x5f,0x79,0x60,0xf5, - 0x4f,0x78,0x70,0xf6,0x3f,0x5b,0x60,0xf7,0x2f,0x5a,0x70,0xf8,0x28,0x77,0xe0,0xf9, - 0xf,0x3c,0x70,0xfa,0x8,0x59,0xe0,0xfa,0xf8,0x58,0xf0,0xfb,0xe8,0x3b,0xe0,0xfc, - 0xd8,0x3a,0xf0,0xfd,0xc8,0x1d,0xe0,0xfe,0xb8,0x1c,0xf0,0xff,0xa7,0xff,0xe0,0x0, - 0x97,0xfe,0xf0,0x1,0x87,0xe1,0xe0,0x2,0x77,0xe0,0xf0,0x3,0x70,0xfe,0x60,0x4, - 0x60,0xfd,0x70,0x5,0x50,0xe0,0x60,0x6,0x40,0xdf,0x70,0x7,0x30,0xc2,0x60,0x8, - 0x20,0xc1,0x70,0x9,0x10,0xa4,0x60,0xa,0x0,0xa3,0x70,0xa,0xf0,0x86,0x60,0xb, - 0xe0,0x85,0x70,0xc,0xd9,0xa2,0xe0,0xd,0xc0,0x67,0x70,0xe,0xb9,0x84,0xe0,0xf, - 0xa9,0x83,0xf0,0x10,0x99,0x66,0xe0,0x11,0x89,0x65,0xf0,0x12,0x79,0x48,0xe0,0x13, - 0x69,0x47,0xf0,0x14,0x59,0x2a,0xe0,0x15,0x49,0x29,0xf0,0x16,0x39,0xc,0xe0,0x17, - 0x29,0xb,0xf0,0x18,0x22,0x29,0x60,0x19,0x8,0xed,0xf0,0x1a,0x2,0xb,0x60,0x1a, - 0xf2,0xa,0x70,0x1b,0xe1,0xed,0x60,0x1c,0xd1,0xec,0x70,0x1d,0xc1,0xcf,0x60,0x1e, - 0xb1,0xce,0x70,0x1f,0xa1,0xb1,0x60,0x20,0x76,0x0,0xf0,0x21,0x81,0x93,0x60,0x22, - 0x55,0xe2,0xf0,0x23,0x6a,0xaf,0xe0,0x24,0x35,0xc4,0xf0,0x25,0x4a,0x91,0xe0,0x26, - 0x15,0xa6,0xf0,0x27,0x2a,0x73,0xe0,0x27,0xfe,0xc3,0x70,0x29,0xa,0x55,0xe0,0x29, - 0xde,0xa5,0x70,0x2a,0xea,0x37,0xe0,0x2b,0xbe,0x87,0x70,0x2c,0xd3,0x54,0x60,0x2d, - 0x9e,0x69,0x70,0x2e,0xb3,0x36,0x60,0x2f,0x7e,0x4b,0x70,0x30,0x93,0x18,0x60,0x31, - 0x67,0x67,0xf0,0x32,0x72,0xfa,0x60,0x33,0x47,0x49,0xf0,0x34,0x52,0xdc,0x60,0x35, - 0x27,0x2b,0xf0,0x36,0x32,0xbe,0x60,0x37,0x7,0xd,0xf0,0x38,0x1b,0xda,0xe0,0x38, - 0xe6,0xef,0xf0,0x39,0xfb,0xbc,0xe0,0x3a,0xc6,0xd1,0xf0,0x3b,0xdb,0x9e,0xe0,0x3c, - 0xaf,0xee,0x70,0x3d,0xbb,0x80,0xe0,0x3e,0x8f,0xd0,0x70,0x3f,0x9b,0x62,0xe0,0x40, - 0x6f,0xb2,0x70,0x41,0x84,0x7f,0x60,0x42,0x4f,0x94,0x70,0x43,0x64,0x61,0x60,0x44, - 0x2f,0x76,0x70,0x45,0x44,0x43,0x60,0x45,0xf3,0xa8,0xf0,0x47,0x2d,0x5f,0xe0,0x47, - 0xd3,0x8a,0xf0,0x49,0xd,0x41,0xe0,0x49,0xb3,0x6c,0xf0,0x4a,0xed,0x23,0xe0,0x4b, - 0x9c,0x89,0x70,0x4c,0xd6,0x40,0x60,0x4d,0x7c,0x6b,0x70,0x4e,0xb6,0x22,0x60,0x4f, - 0x5c,0x4d,0x70,0x50,0x96,0x4,0x60,0x51,0x3c,0x2f,0x70,0x52,0x75,0xe6,0x60,0x53, - 0x1c,0x11,0x70,0x54,0x55,0xc8,0x60,0x54,0xfb,0xf3,0x70,0x56,0x35,0xaa,0x60,0x56, - 0xe5,0xf,0xf0,0x58,0x1e,0xc6,0xe0,0x58,0xc4,0xf1,0xf0,0x59,0xfe,0xa8,0xe0,0x5a, - 0xa4,0xd3,0xf0,0x5b,0xde,0x8a,0xe0,0x5c,0x84,0xb5,0xf0,0x5d,0xbe,0x6c,0xe0,0x5e, - 0x64,0x97,0xf0,0x5f,0x9e,0x4e,0xe0,0x60,0x4d,0xb4,0x70,0x61,0x87,0x6b,0x60,0x62, - 0x2d,0x96,0x70,0x63,0x67,0x4d,0x60,0x64,0xd,0x78,0x70,0x65,0x47,0x2f,0x60,0x65, - 0xed,0x5a,0x70,0x67,0x27,0x11,0x60,0x67,0xcd,0x3c,0x70,0x69,0x6,0xf3,0x60,0x69, - 0xad,0x1e,0x70,0x6a,0xe6,0xd5,0x60,0x6b,0x96,0x3a,0xf0,0x6c,0xcf,0xf1,0xe0,0x6d, - 0x76,0x1c,0xf0,0x6e,0xaf,0xd3,0xe0,0x6f,0x55,0xfe,0xf0,0x70,0x8f,0xb5,0xe0,0x71, - 0x35,0xe0,0xf0,0x72,0x6f,0x97,0xe0,0x73,0x15,0xc2,0xf0,0x74,0x4f,0x79,0xe0,0x74, - 0xfe,0xdf,0x70,0x76,0x38,0x96,0x60,0x76,0xde,0xc1,0x70,0x78,0x18,0x78,0x60,0x78, - 0xbe,0xa3,0x70,0x79,0xf8,0x5a,0x60,0x7a,0x9e,0x85,0x70,0x7b,0xd8,0x3c,0x60,0x7c, - 0x7e,0x67,0x70,0x7d,0xb8,0x1e,0x60,0x7e,0x5e,0x49,0x70,0x7f,0x98,0x0,0x60,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x3,0x4,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x35,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0x96, + 0xaa,0x74,0x30,0xb8,0xf,0x49,0xe0,0xb8,0xfd,0x40,0xa0,0xb9,0xf1,0x34,0x30,0xba, + 0xde,0x74,0x20,0xda,0x38,0xae,0x30,0xda,0xeb,0xfa,0x30,0xdc,0x19,0xe1,0xb0,0xdc, + 0xb9,0x59,0x20,0xdd,0xfb,0x15,0x30,0xde,0x9b,0xde,0x20,0xdf,0xdd,0x9a,0x30,0xe0, + 0x54,0x33,0x20,0xf4,0x97,0xff,0xb0,0xf5,0x5,0x5e,0x20,0xf6,0xc0,0x64,0x30,0xf7, + 0xe,0x1e,0xa0,0xf8,0x51,0x2c,0x30,0xf8,0xc7,0xc5,0x20,0xfa,0xa,0xd2,0xb0,0xfa, + 0xa8,0xf8,0xa0,0xfb,0xec,0x6,0x30,0xfc,0x8b,0x7d,0xa0,0x1d,0xc9,0x8e,0x30,0x1e, + 0x78,0xd7,0xa0,0x1f,0xa0,0x35,0xb0,0x20,0x33,0xcf,0xa0,0x21,0x81,0x69,0x30,0x22, + 0xb,0xc8,0xa0,0x23,0x58,0x10,0xb0,0x23,0xe2,0x70,0x20,0x25,0x37,0xf2,0xb0,0x25, + 0xd4,0xc7,0x20,0x30,0x80,0x79,0x30,0x31,0x1d,0x4d,0xa0,0x32,0x57,0x20,0xb0,0x33, + 0x6,0x6a,0x20,0x34,0x38,0x54,0x30,0x34,0xf8,0xc1,0x20,0x36,0x20,0x1f,0x30,0x36, + 0xcf,0x68,0xa0,0x37,0xf6,0xc6,0xb0,0x38,0xb8,0x85,0x20,0x39,0xdf,0xe3,0x30,0x3a, + 0x8f,0x2c,0xa0,0x3b,0xc8,0xff,0xb0,0x3c,0x6f,0xe,0xa0,0x3d,0xc4,0x91,0x30,0x3e, + 0x4e,0xf0,0xa0,0x50,0x83,0x65,0x30,0x51,0x20,0x39,0xa0,0x7f,0xff,0xff,0xff,0x0, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x2,0xff,0xff,0xd2,0xd0,0x0,0x0,0xff,0xff,0xe3,0xe0,0x1,0x4, + 0xff,0xff,0xd5,0xd0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x2d,0x30,0x32,0x0,0x2d,0x30, + 0x33,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3, + 0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x35,0x0,0x0,0x0,0x3, + 0x0,0x0,0x0,0xc,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0x96,0xaa,0x74,0x30,0xff,0xff,0xff,0xff,0xb8,0xf,0x49,0xe0,0xff,0xff,0xff,0xff, + 0xb8,0xfd,0x40,0xa0,0xff,0xff,0xff,0xff,0xb9,0xf1,0x34,0x30,0xff,0xff,0xff,0xff, + 0xba,0xde,0x74,0x20,0xff,0xff,0xff,0xff,0xda,0x38,0xae,0x30,0xff,0xff,0xff,0xff, + 0xda,0xeb,0xfa,0x30,0xff,0xff,0xff,0xff,0xdc,0x19,0xe1,0xb0,0xff,0xff,0xff,0xff, + 0xdc,0xb9,0x59,0x20,0xff,0xff,0xff,0xff,0xdd,0xfb,0x15,0x30,0xff,0xff,0xff,0xff, + 0xde,0x9b,0xde,0x20,0xff,0xff,0xff,0xff,0xdf,0xdd,0x9a,0x30,0xff,0xff,0xff,0xff, + 0xe0,0x54,0x33,0x20,0xff,0xff,0xff,0xff,0xf4,0x97,0xff,0xb0,0xff,0xff,0xff,0xff, + 0xf5,0x5,0x5e,0x20,0xff,0xff,0xff,0xff,0xf6,0xc0,0x64,0x30,0xff,0xff,0xff,0xff, + 0xf7,0xe,0x1e,0xa0,0xff,0xff,0xff,0xff,0xf8,0x51,0x2c,0x30,0xff,0xff,0xff,0xff, + 0xf8,0xc7,0xc5,0x20,0xff,0xff,0xff,0xff,0xfa,0xa,0xd2,0xb0,0xff,0xff,0xff,0xff, + 0xfa,0xa8,0xf8,0xa0,0xff,0xff,0xff,0xff,0xfb,0xec,0x6,0x30,0xff,0xff,0xff,0xff, + 0xfc,0x8b,0x7d,0xa0,0x0,0x0,0x0,0x0,0x1d,0xc9,0x8e,0x30,0x0,0x0,0x0,0x0, + 0x1e,0x78,0xd7,0xa0,0x0,0x0,0x0,0x0,0x1f,0xa0,0x35,0xb0,0x0,0x0,0x0,0x0, + 0x20,0x33,0xcf,0xa0,0x0,0x0,0x0,0x0,0x21,0x81,0x69,0x30,0x0,0x0,0x0,0x0, + 0x22,0xb,0xc8,0xa0,0x0,0x0,0x0,0x0,0x23,0x58,0x10,0xb0,0x0,0x0,0x0,0x0, + 0x23,0xe2,0x70,0x20,0x0,0x0,0x0,0x0,0x25,0x37,0xf2,0xb0,0x0,0x0,0x0,0x0, + 0x25,0xd4,0xc7,0x20,0x0,0x0,0x0,0x0,0x30,0x80,0x79,0x30,0x0,0x0,0x0,0x0, + 0x31,0x1d,0x4d,0xa0,0x0,0x0,0x0,0x0,0x32,0x57,0x20,0xb0,0x0,0x0,0x0,0x0, + 0x33,0x6,0x6a,0x20,0x0,0x0,0x0,0x0,0x34,0x38,0x54,0x30,0x0,0x0,0x0,0x0, + 0x34,0xf8,0xc1,0x20,0x0,0x0,0x0,0x0,0x36,0x20,0x1f,0x30,0x0,0x0,0x0,0x0, + 0x36,0xcf,0x68,0xa0,0x0,0x0,0x0,0x0,0x37,0xf6,0xc6,0xb0,0x0,0x0,0x0,0x0, + 0x38,0xb8,0x85,0x20,0x0,0x0,0x0,0x0,0x39,0xdf,0xe3,0x30,0x0,0x0,0x0,0x0, + 0x3a,0x8f,0x2c,0xa0,0x0,0x0,0x0,0x0,0x3b,0xc8,0xff,0xb0,0x0,0x0,0x0,0x0, + 0x3c,0x6f,0xe,0xa0,0x0,0x0,0x0,0x0,0x3d,0xc4,0x91,0x30,0x0,0x0,0x0,0x0, + 0x3e,0x4e,0xf0,0xa0,0x0,0x0,0x0,0x0,0x50,0x83,0x65,0x30,0x0,0x0,0x0,0x0, + 0x51,0x20,0x39,0xa0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x2,0xff,0xff,0xd2,0xd0,0x0,0x0,0xff,0xff,0xe3,0xe0,0x1,0x4,0xff,0xff,0xd5, + 0xd0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x2d,0x30,0x32,0x0,0x2d,0x30,0x33,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2d,0x30,0x33,0x3e,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Glace_Bay + 0x0,0x0,0x8,0x9e, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x8d,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0x80, + 0xf1,0xa8,0x34,0x9e,0xb8,0x85,0x60,0x9f,0xba,0xdd,0x50,0xcb,0x88,0xe2,0x60,0xd2, + 0x23,0xf4,0x70,0xd2,0x60,0xed,0xd0,0xe0,0x9e,0x3f,0x60,0xe1,0x69,0x38,0x50,0x4, + 0x60,0xef,0x60,0x5,0x50,0xd2,0x50,0x6,0x40,0xd1,0x60,0x7,0x30,0xb4,0x50,0x8, + 0x20,0xb3,0x60,0x9,0x10,0x96,0x50,0xa,0x0,0x95,0x60,0xa,0xf0,0x78,0x50,0xb, + 0xe0,0x77,0x60,0xc,0xd9,0x94,0xd0,0xd,0xc0,0x59,0x60,0xe,0xb9,0x76,0xd0,0xf, + 0xa9,0x75,0xe0,0x10,0x99,0x58,0xd0,0x11,0x89,0x57,0xe0,0x12,0x79,0x3a,0xd0,0x13, + 0x69,0x39,0xe0,0x14,0x59,0x1c,0xd0,0x15,0x49,0x1b,0xe0,0x16,0x38,0xfe,0xd0,0x17, + 0x28,0xfd,0xe0,0x18,0x22,0x1b,0x50,0x19,0x8,0xdf,0xe0,0x1a,0x1,0xfd,0x50,0x1a, + 0xf1,0xfc,0x60,0x1b,0xe1,0xdf,0x50,0x1c,0xd1,0xde,0x60,0x1d,0xc1,0xc1,0x50,0x1e, + 0xb1,0xc0,0x60,0x1f,0xa1,0xa3,0x50,0x20,0x75,0xf2,0xe0,0x21,0x81,0x85,0x50,0x22, + 0x55,0xd4,0xe0,0x23,0x6a,0xa1,0xd0,0x24,0x35,0xb6,0xe0,0x25,0x4a,0x83,0xd0,0x26, + 0x15,0x98,0xe0,0x27,0x2a,0x65,0xd0,0x27,0xfe,0xb5,0x60,0x29,0xa,0x47,0xd0,0x29, + 0xde,0x97,0x60,0x2a,0xea,0x29,0xd0,0x2b,0xbe,0x79,0x60,0x2c,0xd3,0x46,0x50,0x2d, + 0x9e,0x5b,0x60,0x2e,0xb3,0x28,0x50,0x2f,0x7e,0x3d,0x60,0x30,0x93,0xa,0x50,0x31, + 0x67,0x59,0xe0,0x32,0x72,0xec,0x50,0x33,0x47,0x3b,0xe0,0x34,0x52,0xce,0x50,0x35, + 0x27,0x1d,0xe0,0x36,0x32,0xb0,0x50,0x37,0x6,0xff,0xe0,0x38,0x1b,0xcc,0xd0,0x38, + 0xe6,0xe1,0xe0,0x39,0xfb,0xae,0xd0,0x3a,0xc6,0xc3,0xe0,0x3b,0xdb,0x90,0xd0,0x3c, + 0xaf,0xe0,0x60,0x3d,0xbb,0x72,0xd0,0x3e,0x8f,0xc2,0x60,0x3f,0x9b,0x54,0xd0,0x40, + 0x6f,0xa4,0x60,0x41,0x84,0x71,0x50,0x42,0x4f,0x86,0x60,0x43,0x64,0x53,0x50,0x44, + 0x2f,0x68,0x60,0x45,0x44,0x35,0x50,0x45,0xf3,0x9a,0xe0,0x47,0x2d,0x51,0xd0,0x47, + 0xd3,0x7c,0xe0,0x49,0xd,0x33,0xd0,0x49,0xb3,0x5e,0xe0,0x4a,0xed,0x15,0xd0,0x4b, + 0x9c,0x7b,0x60,0x4c,0xd6,0x32,0x50,0x4d,0x7c,0x5d,0x60,0x4e,0xb6,0x14,0x50,0x4f, + 0x5c,0x3f,0x60,0x50,0x95,0xf6,0x50,0x51,0x3c,0x21,0x60,0x52,0x75,0xd8,0x50,0x53, + 0x1c,0x3,0x60,0x54,0x55,0xba,0x50,0x54,0xfb,0xe5,0x60,0x56,0x35,0x9c,0x50,0x56, + 0xe5,0x1,0xe0,0x58,0x1e,0xb8,0xd0,0x58,0xc4,0xe3,0xe0,0x59,0xfe,0x9a,0xd0,0x5a, + 0xa4,0xc5,0xe0,0x5b,0xde,0x7c,0xd0,0x5c,0x84,0xa7,0xe0,0x5d,0xbe,0x5e,0xd0,0x5e, + 0x64,0x89,0xe0,0x5f,0x9e,0x40,0xd0,0x60,0x4d,0xa6,0x60,0x61,0x87,0x5d,0x50,0x62, + 0x2d,0x88,0x60,0x63,0x67,0x3f,0x50,0x64,0xd,0x6a,0x60,0x65,0x47,0x21,0x50,0x65, + 0xed,0x4c,0x60,0x67,0x27,0x3,0x50,0x67,0xcd,0x2e,0x60,0x69,0x6,0xe5,0x50,0x69, + 0xad,0x10,0x60,0x6a,0xe6,0xc7,0x50,0x6b,0x96,0x2c,0xe0,0x6c,0xcf,0xe3,0xd0,0x6d, + 0x76,0xe,0xe0,0x6e,0xaf,0xc5,0xd0,0x6f,0x55,0xf0,0xe0,0x70,0x8f,0xa7,0xd0,0x71, + 0x35,0xd2,0xe0,0x72,0x6f,0x89,0xd0,0x73,0x15,0xb4,0xe0,0x74,0x4f,0x6b,0xd0,0x74, + 0xfe,0xd1,0x60,0x76,0x38,0x88,0x50,0x76,0xde,0xb3,0x60,0x78,0x18,0x6a,0x50,0x78, + 0xbe,0x95,0x60,0x79,0xf8,0x4c,0x50,0x7a,0x9e,0x77,0x60,0x7b,0xd8,0x2e,0x50,0x7c, + 0x7e,0x59,0x60,0x7d,0xb8,0x10,0x50,0x7e,0x5e,0x3b,0x60,0x7f,0x97,0xf2,0x50,0x0, + 0x2,0x1,0x2,0x3,0x4,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, @@ -23809,134 +19935,426 @@ static const unsigned char qt_resource_data[] = { 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0xb5,0x94,0x0,0x0,0xff,0xff, - 0xc7,0xc0,0x1,0x4,0xff,0xff,0xb9,0xb0,0x0,0x8,0xff,0xff,0xc7,0xc0,0x1,0xc, - 0xff,0xff,0xc7,0xc0,0x1,0x10,0x4c,0x4d,0x54,0x0,0x45,0x44,0x54,0x0,0x45,0x53, - 0x54,0x0,0x45,0x57,0x54,0x0,0x45,0x50,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0, - 0x0,0x0,0x0,0x1,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14, - 0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x72,0xee,0x78,0xec, - 0xff,0xff,0xff,0xff,0x9e,0xb8,0x93,0x70,0xff,0xff,0xff,0xff,0x9f,0xba,0xeb,0x60, - 0xff,0xff,0xff,0xff,0xa0,0x87,0x2e,0xc8,0xff,0xff,0xff,0xff,0xa1,0x9a,0xb1,0x40, - 0xff,0xff,0xff,0xff,0xa2,0x94,0x6,0xf0,0xff,0xff,0xff,0xff,0xa3,0x55,0xa9,0x40, - 0xff,0xff,0xff,0xff,0xa4,0x86,0x5d,0xf0,0xff,0xff,0xff,0xff,0xa5,0x28,0x78,0x60, - 0xff,0xff,0xff,0xff,0xa6,0x66,0x3f,0xf0,0xff,0xff,0xff,0xff,0xa7,0xc,0x4e,0xe0, - 0xff,0xff,0xff,0xff,0xa8,0x46,0x21,0xf0,0xff,0xff,0xff,0xff,0xa8,0xec,0x30,0xe0, - 0xff,0xff,0xff,0xff,0xaa,0x1c,0xc9,0x70,0xff,0xff,0xff,0xff,0xaa,0xd5,0x4d,0x60, - 0xff,0xff,0xff,0xff,0xab,0xfc,0xab,0x70,0xff,0xff,0xff,0xff,0xac,0xb5,0x2f,0x60, - 0xff,0xff,0xff,0xff,0xad,0xdc,0x8d,0x70,0xff,0xff,0xff,0xff,0xae,0x95,0x11,0x60, - 0xff,0xff,0xff,0xff,0xaf,0xbc,0x6f,0x70,0xff,0xff,0xff,0xff,0xb0,0x7e,0x2d,0xe0, - 0xff,0xff,0xff,0xff,0xb1,0x9c,0x51,0x70,0xff,0xff,0xff,0xff,0xb2,0x67,0x4a,0x60, - 0xff,0xff,0xff,0xff,0xb3,0x7c,0x33,0x70,0xff,0xff,0xff,0xff,0xb4,0x47,0x2c,0x60, - 0xff,0xff,0xff,0xff,0xb5,0x5c,0x15,0x70,0xff,0xff,0xff,0xff,0xb6,0x27,0xe,0x60, - 0xff,0xff,0xff,0xff,0xb7,0x3b,0xf7,0x70,0xff,0xff,0xff,0xff,0xb8,0x6,0xf0,0x60, - 0xff,0xff,0xff,0xff,0xb9,0x25,0x13,0xf0,0xff,0xff,0xff,0xff,0xb9,0xe6,0xd2,0x60, - 0xff,0xff,0xff,0xff,0xbb,0x4,0xf5,0xf0,0xff,0xff,0xff,0xff,0xbb,0xcf,0xee,0xe0, - 0xff,0xff,0xff,0xff,0xbc,0xe4,0xd7,0xf0,0xff,0xff,0xff,0xff,0xbd,0xaf,0xd0,0xe0, - 0xff,0xff,0xff,0xff,0xbe,0xc4,0xb9,0xf0,0xff,0xff,0xff,0xff,0xbf,0x8f,0xb2,0xe0, - 0xff,0xff,0xff,0xff,0xc0,0xa4,0x9b,0xf0,0xff,0xff,0xff,0xff,0xc1,0x6f,0x94,0xe0, - 0xff,0xff,0xff,0xff,0xc2,0x84,0x7d,0xf0,0xff,0xff,0xff,0xff,0xc3,0x4f,0x76,0xe0, - 0xff,0xff,0xff,0xff,0xc4,0x64,0x5f,0xf0,0xff,0xff,0xff,0xff,0xc5,0x2f,0x58,0xe0, - 0xff,0xff,0xff,0xff,0xc6,0x4d,0x7c,0x70,0xff,0xff,0xff,0xff,0xc7,0xf,0x3a,0xe0, - 0xff,0xff,0xff,0xff,0xc8,0x2d,0x5e,0x70,0xff,0xff,0xff,0xff,0xcb,0x88,0xf0,0x70, - 0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x60,0xfb,0xe0, - 0xff,0xff,0xff,0xff,0xd3,0x75,0xe4,0xf0,0xff,0xff,0xff,0xff,0xd4,0x40,0xdd,0xe0, - 0xff,0xff,0xff,0xff,0xd5,0x55,0xaa,0xd0,0xff,0xff,0xff,0xff,0xd6,0x20,0xa3,0xc0, - 0xff,0xff,0xff,0xff,0xd7,0x35,0x8c,0xd0,0xff,0xff,0xff,0xff,0xd8,0x0,0x85,0xc0, - 0xff,0xff,0xff,0xff,0xd9,0x15,0x6e,0xd0,0xff,0xff,0xff,0xff,0xda,0x33,0x76,0x40, - 0xff,0xff,0xff,0xff,0xda,0xfe,0xa7,0x70,0xff,0xff,0xff,0xff,0xdc,0x13,0x74,0x60, - 0xff,0xff,0xff,0xff,0xdc,0xde,0x89,0x70,0xff,0xff,0xff,0xff,0xdd,0xa9,0x82,0x60, - 0xff,0xff,0xff,0xff,0xde,0xbe,0x6b,0x70,0xff,0xff,0xff,0xff,0xdf,0x89,0x64,0x60, - 0xff,0xff,0xff,0xff,0xe0,0x9e,0x4d,0x70,0xff,0xff,0xff,0xff,0xe1,0x69,0x46,0x60, - 0xff,0xff,0xff,0xff,0xe2,0x7e,0x2f,0x70,0xff,0xff,0xff,0xff,0xe3,0x49,0x28,0x60, - 0xff,0xff,0xff,0xff,0xe4,0x5e,0x11,0x70,0xff,0xff,0xff,0xff,0xe5,0x29,0xa,0x60, - 0xff,0xff,0xff,0xff,0xe6,0x47,0x2d,0xf0,0xff,0xff,0xff,0xff,0xe7,0x12,0x26,0xe0, - 0xff,0xff,0xff,0xff,0xe8,0x27,0xf,0xf0,0xff,0xff,0xff,0xff,0xe9,0x16,0xf2,0xe0, - 0xff,0xff,0xff,0xff,0xea,0x6,0xf1,0xf0,0xff,0xff,0xff,0xff,0xea,0xf6,0xd4,0xe0, - 0xff,0xff,0xff,0xff,0xeb,0xe6,0xd3,0xf0,0xff,0xff,0xff,0xff,0xec,0xd6,0xb6,0xe0, - 0xff,0xff,0xff,0xff,0xed,0xc6,0xb5,0xf0,0xff,0xff,0xff,0xff,0xee,0xbf,0xd3,0x60, - 0xff,0xff,0xff,0xff,0xef,0xaf,0xd2,0x70,0xff,0xff,0xff,0xff,0xf0,0x9f,0xb5,0x60, - 0xff,0xff,0xff,0xff,0xf1,0x8f,0xb4,0x70,0xff,0xff,0xff,0xff,0xf2,0x7f,0x97,0x60, - 0xff,0xff,0xff,0xff,0xf3,0x6f,0x96,0x70,0xff,0xff,0xff,0xff,0xf4,0x5f,0x79,0x60, - 0xff,0xff,0xff,0xff,0xf5,0x4f,0x78,0x70,0xff,0xff,0xff,0xff,0xf6,0x3f,0x5b,0x60, - 0xff,0xff,0xff,0xff,0xf7,0x2f,0x5a,0x70,0xff,0xff,0xff,0xff,0xf8,0x28,0x77,0xe0, - 0xff,0xff,0xff,0xff,0xf9,0xf,0x3c,0x70,0xff,0xff,0xff,0xff,0xfa,0x8,0x59,0xe0, - 0xff,0xff,0xff,0xff,0xfa,0xf8,0x58,0xf0,0xff,0xff,0xff,0xff,0xfb,0xe8,0x3b,0xe0, - 0xff,0xff,0xff,0xff,0xfc,0xd8,0x3a,0xf0,0xff,0xff,0xff,0xff,0xfd,0xc8,0x1d,0xe0, - 0xff,0xff,0xff,0xff,0xfe,0xb8,0x1c,0xf0,0xff,0xff,0xff,0xff,0xff,0xa7,0xff,0xe0, - 0x0,0x0,0x0,0x0,0x0,0x97,0xfe,0xf0,0x0,0x0,0x0,0x0,0x1,0x87,0xe1,0xe0, - 0x0,0x0,0x0,0x0,0x2,0x77,0xe0,0xf0,0x0,0x0,0x0,0x0,0x3,0x70,0xfe,0x60, - 0x0,0x0,0x0,0x0,0x4,0x60,0xfd,0x70,0x0,0x0,0x0,0x0,0x5,0x50,0xe0,0x60, - 0x0,0x0,0x0,0x0,0x6,0x40,0xdf,0x70,0x0,0x0,0x0,0x0,0x7,0x30,0xc2,0x60, - 0x0,0x0,0x0,0x0,0x8,0x20,0xc1,0x70,0x0,0x0,0x0,0x0,0x9,0x10,0xa4,0x60, - 0x0,0x0,0x0,0x0,0xa,0x0,0xa3,0x70,0x0,0x0,0x0,0x0,0xa,0xf0,0x86,0x60, - 0x0,0x0,0x0,0x0,0xb,0xe0,0x85,0x70,0x0,0x0,0x0,0x0,0xc,0xd9,0xa2,0xe0, - 0x0,0x0,0x0,0x0,0xd,0xc0,0x67,0x70,0x0,0x0,0x0,0x0,0xe,0xb9,0x84,0xe0, - 0x0,0x0,0x0,0x0,0xf,0xa9,0x83,0xf0,0x0,0x0,0x0,0x0,0x10,0x99,0x66,0xe0, - 0x0,0x0,0x0,0x0,0x11,0x89,0x65,0xf0,0x0,0x0,0x0,0x0,0x12,0x79,0x48,0xe0, - 0x0,0x0,0x0,0x0,0x13,0x69,0x47,0xf0,0x0,0x0,0x0,0x0,0x14,0x59,0x2a,0xe0, - 0x0,0x0,0x0,0x0,0x15,0x49,0x29,0xf0,0x0,0x0,0x0,0x0,0x16,0x39,0xc,0xe0, - 0x0,0x0,0x0,0x0,0x17,0x29,0xb,0xf0,0x0,0x0,0x0,0x0,0x18,0x22,0x29,0x60, - 0x0,0x0,0x0,0x0,0x19,0x8,0xed,0xf0,0x0,0x0,0x0,0x0,0x1a,0x2,0xb,0x60, - 0x0,0x0,0x0,0x0,0x1a,0xf2,0xa,0x70,0x0,0x0,0x0,0x0,0x1b,0xe1,0xed,0x60, - 0x0,0x0,0x0,0x0,0x1c,0xd1,0xec,0x70,0x0,0x0,0x0,0x0,0x1d,0xc1,0xcf,0x60, - 0x0,0x0,0x0,0x0,0x1e,0xb1,0xce,0x70,0x0,0x0,0x0,0x0,0x1f,0xa1,0xb1,0x60, - 0x0,0x0,0x0,0x0,0x20,0x76,0x0,0xf0,0x0,0x0,0x0,0x0,0x21,0x81,0x93,0x60, - 0x0,0x0,0x0,0x0,0x22,0x55,0xe2,0xf0,0x0,0x0,0x0,0x0,0x23,0x6a,0xaf,0xe0, - 0x0,0x0,0x0,0x0,0x24,0x35,0xc4,0xf0,0x0,0x0,0x0,0x0,0x25,0x4a,0x91,0xe0, - 0x0,0x0,0x0,0x0,0x26,0x15,0xa6,0xf0,0x0,0x0,0x0,0x0,0x27,0x2a,0x73,0xe0, - 0x0,0x0,0x0,0x0,0x27,0xfe,0xc3,0x70,0x0,0x0,0x0,0x0,0x29,0xa,0x55,0xe0, - 0x0,0x0,0x0,0x0,0x29,0xde,0xa5,0x70,0x0,0x0,0x0,0x0,0x2a,0xea,0x37,0xe0, - 0x0,0x0,0x0,0x0,0x2b,0xbe,0x87,0x70,0x0,0x0,0x0,0x0,0x2c,0xd3,0x54,0x60, - 0x0,0x0,0x0,0x0,0x2d,0x9e,0x69,0x70,0x0,0x0,0x0,0x0,0x2e,0xb3,0x36,0x60, - 0x0,0x0,0x0,0x0,0x2f,0x7e,0x4b,0x70,0x0,0x0,0x0,0x0,0x30,0x93,0x18,0x60, - 0x0,0x0,0x0,0x0,0x31,0x67,0x67,0xf0,0x0,0x0,0x0,0x0,0x32,0x72,0xfa,0x60, - 0x0,0x0,0x0,0x0,0x33,0x47,0x49,0xf0,0x0,0x0,0x0,0x0,0x34,0x52,0xdc,0x60, - 0x0,0x0,0x0,0x0,0x35,0x27,0x2b,0xf0,0x0,0x0,0x0,0x0,0x36,0x32,0xbe,0x60, - 0x0,0x0,0x0,0x0,0x37,0x7,0xd,0xf0,0x0,0x0,0x0,0x0,0x38,0x1b,0xda,0xe0, - 0x0,0x0,0x0,0x0,0x38,0xe6,0xef,0xf0,0x0,0x0,0x0,0x0,0x39,0xfb,0xbc,0xe0, - 0x0,0x0,0x0,0x0,0x3a,0xc6,0xd1,0xf0,0x0,0x0,0x0,0x0,0x3b,0xdb,0x9e,0xe0, - 0x0,0x0,0x0,0x0,0x3c,0xaf,0xee,0x70,0x0,0x0,0x0,0x0,0x3d,0xbb,0x80,0xe0, - 0x0,0x0,0x0,0x0,0x3e,0x8f,0xd0,0x70,0x0,0x0,0x0,0x0,0x3f,0x9b,0x62,0xe0, - 0x0,0x0,0x0,0x0,0x40,0x6f,0xb2,0x70,0x0,0x0,0x0,0x0,0x41,0x84,0x7f,0x60, - 0x0,0x0,0x0,0x0,0x42,0x4f,0x94,0x70,0x0,0x0,0x0,0x0,0x43,0x64,0x61,0x60, - 0x0,0x0,0x0,0x0,0x44,0x2f,0x76,0x70,0x0,0x0,0x0,0x0,0x45,0x44,0x43,0x60, - 0x0,0x0,0x0,0x0,0x45,0xf3,0xa8,0xf0,0x0,0x0,0x0,0x0,0x47,0x2d,0x5f,0xe0, - 0x0,0x0,0x0,0x0,0x47,0xd3,0x8a,0xf0,0x0,0x0,0x0,0x0,0x49,0xd,0x41,0xe0, - 0x0,0x0,0x0,0x0,0x49,0xb3,0x6c,0xf0,0x0,0x0,0x0,0x0,0x4a,0xed,0x23,0xe0, - 0x0,0x0,0x0,0x0,0x4b,0x9c,0x89,0x70,0x0,0x0,0x0,0x0,0x4c,0xd6,0x40,0x60, - 0x0,0x0,0x0,0x0,0x4d,0x7c,0x6b,0x70,0x0,0x0,0x0,0x0,0x4e,0xb6,0x22,0x60, - 0x0,0x0,0x0,0x0,0x4f,0x5c,0x4d,0x70,0x0,0x0,0x0,0x0,0x50,0x96,0x4,0x60, - 0x0,0x0,0x0,0x0,0x51,0x3c,0x2f,0x70,0x0,0x0,0x0,0x0,0x52,0x75,0xe6,0x60, - 0x0,0x0,0x0,0x0,0x53,0x1c,0x11,0x70,0x0,0x0,0x0,0x0,0x54,0x55,0xc8,0x60, - 0x0,0x0,0x0,0x0,0x54,0xfb,0xf3,0x70,0x0,0x0,0x0,0x0,0x56,0x35,0xaa,0x60, - 0x0,0x0,0x0,0x0,0x56,0xe5,0xf,0xf0,0x0,0x0,0x0,0x0,0x58,0x1e,0xc6,0xe0, - 0x0,0x0,0x0,0x0,0x58,0xc4,0xf1,0xf0,0x0,0x0,0x0,0x0,0x59,0xfe,0xa8,0xe0, - 0x0,0x0,0x0,0x0,0x5a,0xa4,0xd3,0xf0,0x0,0x0,0x0,0x0,0x5b,0xde,0x8a,0xe0, - 0x0,0x0,0x0,0x0,0x5c,0x84,0xb5,0xf0,0x0,0x0,0x0,0x0,0x5d,0xbe,0x6c,0xe0, - 0x0,0x0,0x0,0x0,0x5e,0x64,0x97,0xf0,0x0,0x0,0x0,0x0,0x5f,0x9e,0x4e,0xe0, - 0x0,0x0,0x0,0x0,0x60,0x4d,0xb4,0x70,0x0,0x0,0x0,0x0,0x61,0x87,0x6b,0x60, - 0x0,0x0,0x0,0x0,0x62,0x2d,0x96,0x70,0x0,0x0,0x0,0x0,0x63,0x67,0x4d,0x60, - 0x0,0x0,0x0,0x0,0x64,0xd,0x78,0x70,0x0,0x0,0x0,0x0,0x65,0x47,0x2f,0x60, - 0x0,0x0,0x0,0x0,0x65,0xed,0x5a,0x70,0x0,0x0,0x0,0x0,0x67,0x27,0x11,0x60, - 0x0,0x0,0x0,0x0,0x67,0xcd,0x3c,0x70,0x0,0x0,0x0,0x0,0x69,0x6,0xf3,0x60, - 0x0,0x0,0x0,0x0,0x69,0xad,0x1e,0x70,0x0,0x0,0x0,0x0,0x6a,0xe6,0xd5,0x60, - 0x0,0x0,0x0,0x0,0x6b,0x96,0x3a,0xf0,0x0,0x0,0x0,0x0,0x6c,0xcf,0xf1,0xe0, - 0x0,0x0,0x0,0x0,0x6d,0x76,0x1c,0xf0,0x0,0x0,0x0,0x0,0x6e,0xaf,0xd3,0xe0, - 0x0,0x0,0x0,0x0,0x6f,0x55,0xfe,0xf0,0x0,0x0,0x0,0x0,0x70,0x8f,0xb5,0xe0, - 0x0,0x0,0x0,0x0,0x71,0x35,0xe0,0xf0,0x0,0x0,0x0,0x0,0x72,0x6f,0x97,0xe0, - 0x0,0x0,0x0,0x0,0x73,0x15,0xc2,0xf0,0x0,0x0,0x0,0x0,0x74,0x4f,0x79,0xe0, - 0x0,0x0,0x0,0x0,0x74,0xfe,0xdf,0x70,0x0,0x0,0x0,0x0,0x76,0x38,0x96,0x60, - 0x0,0x0,0x0,0x0,0x76,0xde,0xc1,0x70,0x0,0x0,0x0,0x0,0x78,0x18,0x78,0x60, - 0x0,0x0,0x0,0x0,0x78,0xbe,0xa3,0x70,0x0,0x0,0x0,0x0,0x79,0xf8,0x5a,0x60, - 0x0,0x0,0x0,0x0,0x7a,0x9e,0x85,0x70,0x0,0x0,0x0,0x0,0x7b,0xd8,0x3c,0x60, - 0x0,0x0,0x0,0x0,0x7c,0x7e,0x67,0x70,0x0,0x0,0x0,0x0,0x7d,0xb8,0x1e,0x60, - 0x0,0x0,0x0,0x0,0x7e,0x5e,0x49,0x70,0x0,0x0,0x0,0x0,0x7f,0x98,0x0,0x60, - 0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0xc7,0xcc, + 0x0,0x0,0xff,0xff,0xd5,0xd0,0x1,0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0xff,0xff, + 0xd5,0xd0,0x1,0xc,0xff,0xff,0xd5,0xd0,0x1,0x10,0x4c,0x4d,0x54,0x0,0x41,0x44, + 0x54,0x0,0x41,0x53,0x54,0x0,0x41,0x57,0x54,0x0,0x41,0x50,0x54,0x0,0x0,0x0, + 0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x1,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5, + 0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8d,0x0,0x0,0x0,0x5, + 0x0,0x0,0x0,0x14,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0x80,0xf1,0xa8,0x34,0xff,0xff,0xff,0xff,0x9e,0xb8,0x85,0x60,0xff,0xff,0xff,0xff, + 0x9f,0xba,0xdd,0x50,0xff,0xff,0xff,0xff,0xcb,0x88,0xe2,0x60,0xff,0xff,0xff,0xff, + 0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x60,0xed,0xd0,0xff,0xff,0xff,0xff, + 0xe0,0x9e,0x3f,0x60,0xff,0xff,0xff,0xff,0xe1,0x69,0x38,0x50,0x0,0x0,0x0,0x0, + 0x4,0x60,0xef,0x60,0x0,0x0,0x0,0x0,0x5,0x50,0xd2,0x50,0x0,0x0,0x0,0x0, + 0x6,0x40,0xd1,0x60,0x0,0x0,0x0,0x0,0x7,0x30,0xb4,0x50,0x0,0x0,0x0,0x0, + 0x8,0x20,0xb3,0x60,0x0,0x0,0x0,0x0,0x9,0x10,0x96,0x50,0x0,0x0,0x0,0x0, + 0xa,0x0,0x95,0x60,0x0,0x0,0x0,0x0,0xa,0xf0,0x78,0x50,0x0,0x0,0x0,0x0, + 0xb,0xe0,0x77,0x60,0x0,0x0,0x0,0x0,0xc,0xd9,0x94,0xd0,0x0,0x0,0x0,0x0, + 0xd,0xc0,0x59,0x60,0x0,0x0,0x0,0x0,0xe,0xb9,0x76,0xd0,0x0,0x0,0x0,0x0, + 0xf,0xa9,0x75,0xe0,0x0,0x0,0x0,0x0,0x10,0x99,0x58,0xd0,0x0,0x0,0x0,0x0, + 0x11,0x89,0x57,0xe0,0x0,0x0,0x0,0x0,0x12,0x79,0x3a,0xd0,0x0,0x0,0x0,0x0, + 0x13,0x69,0x39,0xe0,0x0,0x0,0x0,0x0,0x14,0x59,0x1c,0xd0,0x0,0x0,0x0,0x0, + 0x15,0x49,0x1b,0xe0,0x0,0x0,0x0,0x0,0x16,0x38,0xfe,0xd0,0x0,0x0,0x0,0x0, + 0x17,0x28,0xfd,0xe0,0x0,0x0,0x0,0x0,0x18,0x22,0x1b,0x50,0x0,0x0,0x0,0x0, + 0x19,0x8,0xdf,0xe0,0x0,0x0,0x0,0x0,0x1a,0x1,0xfd,0x50,0x0,0x0,0x0,0x0, + 0x1a,0xf1,0xfc,0x60,0x0,0x0,0x0,0x0,0x1b,0xe1,0xdf,0x50,0x0,0x0,0x0,0x0, + 0x1c,0xd1,0xde,0x60,0x0,0x0,0x0,0x0,0x1d,0xc1,0xc1,0x50,0x0,0x0,0x0,0x0, + 0x1e,0xb1,0xc0,0x60,0x0,0x0,0x0,0x0,0x1f,0xa1,0xa3,0x50,0x0,0x0,0x0,0x0, + 0x20,0x75,0xf2,0xe0,0x0,0x0,0x0,0x0,0x21,0x81,0x85,0x50,0x0,0x0,0x0,0x0, + 0x22,0x55,0xd4,0xe0,0x0,0x0,0x0,0x0,0x23,0x6a,0xa1,0xd0,0x0,0x0,0x0,0x0, + 0x24,0x35,0xb6,0xe0,0x0,0x0,0x0,0x0,0x25,0x4a,0x83,0xd0,0x0,0x0,0x0,0x0, + 0x26,0x15,0x98,0xe0,0x0,0x0,0x0,0x0,0x27,0x2a,0x65,0xd0,0x0,0x0,0x0,0x0, + 0x27,0xfe,0xb5,0x60,0x0,0x0,0x0,0x0,0x29,0xa,0x47,0xd0,0x0,0x0,0x0,0x0, + 0x29,0xde,0x97,0x60,0x0,0x0,0x0,0x0,0x2a,0xea,0x29,0xd0,0x0,0x0,0x0,0x0, + 0x2b,0xbe,0x79,0x60,0x0,0x0,0x0,0x0,0x2c,0xd3,0x46,0x50,0x0,0x0,0x0,0x0, + 0x2d,0x9e,0x5b,0x60,0x0,0x0,0x0,0x0,0x2e,0xb3,0x28,0x50,0x0,0x0,0x0,0x0, + 0x2f,0x7e,0x3d,0x60,0x0,0x0,0x0,0x0,0x30,0x93,0xa,0x50,0x0,0x0,0x0,0x0, + 0x31,0x67,0x59,0xe0,0x0,0x0,0x0,0x0,0x32,0x72,0xec,0x50,0x0,0x0,0x0,0x0, + 0x33,0x47,0x3b,0xe0,0x0,0x0,0x0,0x0,0x34,0x52,0xce,0x50,0x0,0x0,0x0,0x0, + 0x35,0x27,0x1d,0xe0,0x0,0x0,0x0,0x0,0x36,0x32,0xb0,0x50,0x0,0x0,0x0,0x0, + 0x37,0x6,0xff,0xe0,0x0,0x0,0x0,0x0,0x38,0x1b,0xcc,0xd0,0x0,0x0,0x0,0x0, + 0x38,0xe6,0xe1,0xe0,0x0,0x0,0x0,0x0,0x39,0xfb,0xae,0xd0,0x0,0x0,0x0,0x0, + 0x3a,0xc6,0xc3,0xe0,0x0,0x0,0x0,0x0,0x3b,0xdb,0x90,0xd0,0x0,0x0,0x0,0x0, + 0x3c,0xaf,0xe0,0x60,0x0,0x0,0x0,0x0,0x3d,0xbb,0x72,0xd0,0x0,0x0,0x0,0x0, + 0x3e,0x8f,0xc2,0x60,0x0,0x0,0x0,0x0,0x3f,0x9b,0x54,0xd0,0x0,0x0,0x0,0x0, + 0x40,0x6f,0xa4,0x60,0x0,0x0,0x0,0x0,0x41,0x84,0x71,0x50,0x0,0x0,0x0,0x0, + 0x42,0x4f,0x86,0x60,0x0,0x0,0x0,0x0,0x43,0x64,0x53,0x50,0x0,0x0,0x0,0x0, + 0x44,0x2f,0x68,0x60,0x0,0x0,0x0,0x0,0x45,0x44,0x35,0x50,0x0,0x0,0x0,0x0, + 0x45,0xf3,0x9a,0xe0,0x0,0x0,0x0,0x0,0x47,0x2d,0x51,0xd0,0x0,0x0,0x0,0x0, + 0x47,0xd3,0x7c,0xe0,0x0,0x0,0x0,0x0,0x49,0xd,0x33,0xd0,0x0,0x0,0x0,0x0, + 0x49,0xb3,0x5e,0xe0,0x0,0x0,0x0,0x0,0x4a,0xed,0x15,0xd0,0x0,0x0,0x0,0x0, + 0x4b,0x9c,0x7b,0x60,0x0,0x0,0x0,0x0,0x4c,0xd6,0x32,0x50,0x0,0x0,0x0,0x0, + 0x4d,0x7c,0x5d,0x60,0x0,0x0,0x0,0x0,0x4e,0xb6,0x14,0x50,0x0,0x0,0x0,0x0, + 0x4f,0x5c,0x3f,0x60,0x0,0x0,0x0,0x0,0x50,0x95,0xf6,0x50,0x0,0x0,0x0,0x0, + 0x51,0x3c,0x21,0x60,0x0,0x0,0x0,0x0,0x52,0x75,0xd8,0x50,0x0,0x0,0x0,0x0, + 0x53,0x1c,0x3,0x60,0x0,0x0,0x0,0x0,0x54,0x55,0xba,0x50,0x0,0x0,0x0,0x0, + 0x54,0xfb,0xe5,0x60,0x0,0x0,0x0,0x0,0x56,0x35,0x9c,0x50,0x0,0x0,0x0,0x0, + 0x56,0xe5,0x1,0xe0,0x0,0x0,0x0,0x0,0x58,0x1e,0xb8,0xd0,0x0,0x0,0x0,0x0, + 0x58,0xc4,0xe3,0xe0,0x0,0x0,0x0,0x0,0x59,0xfe,0x9a,0xd0,0x0,0x0,0x0,0x0, + 0x5a,0xa4,0xc5,0xe0,0x0,0x0,0x0,0x0,0x5b,0xde,0x7c,0xd0,0x0,0x0,0x0,0x0, + 0x5c,0x84,0xa7,0xe0,0x0,0x0,0x0,0x0,0x5d,0xbe,0x5e,0xd0,0x0,0x0,0x0,0x0, + 0x5e,0x64,0x89,0xe0,0x0,0x0,0x0,0x0,0x5f,0x9e,0x40,0xd0,0x0,0x0,0x0,0x0, + 0x60,0x4d,0xa6,0x60,0x0,0x0,0x0,0x0,0x61,0x87,0x5d,0x50,0x0,0x0,0x0,0x0, + 0x62,0x2d,0x88,0x60,0x0,0x0,0x0,0x0,0x63,0x67,0x3f,0x50,0x0,0x0,0x0,0x0, + 0x64,0xd,0x6a,0x60,0x0,0x0,0x0,0x0,0x65,0x47,0x21,0x50,0x0,0x0,0x0,0x0, + 0x65,0xed,0x4c,0x60,0x0,0x0,0x0,0x0,0x67,0x27,0x3,0x50,0x0,0x0,0x0,0x0, + 0x67,0xcd,0x2e,0x60,0x0,0x0,0x0,0x0,0x69,0x6,0xe5,0x50,0x0,0x0,0x0,0x0, + 0x69,0xad,0x10,0x60,0x0,0x0,0x0,0x0,0x6a,0xe6,0xc7,0x50,0x0,0x0,0x0,0x0, + 0x6b,0x96,0x2c,0xe0,0x0,0x0,0x0,0x0,0x6c,0xcf,0xe3,0xd0,0x0,0x0,0x0,0x0, + 0x6d,0x76,0xe,0xe0,0x0,0x0,0x0,0x0,0x6e,0xaf,0xc5,0xd0,0x0,0x0,0x0,0x0, + 0x6f,0x55,0xf0,0xe0,0x0,0x0,0x0,0x0,0x70,0x8f,0xa7,0xd0,0x0,0x0,0x0,0x0, + 0x71,0x35,0xd2,0xe0,0x0,0x0,0x0,0x0,0x72,0x6f,0x89,0xd0,0x0,0x0,0x0,0x0, + 0x73,0x15,0xb4,0xe0,0x0,0x0,0x0,0x0,0x74,0x4f,0x6b,0xd0,0x0,0x0,0x0,0x0, + 0x74,0xfe,0xd1,0x60,0x0,0x0,0x0,0x0,0x76,0x38,0x88,0x50,0x0,0x0,0x0,0x0, + 0x76,0xde,0xb3,0x60,0x0,0x0,0x0,0x0,0x78,0x18,0x6a,0x50,0x0,0x0,0x0,0x0, + 0x78,0xbe,0x95,0x60,0x0,0x0,0x0,0x0,0x79,0xf8,0x4c,0x50,0x0,0x0,0x0,0x0, + 0x7a,0x9e,0x77,0x60,0x0,0x0,0x0,0x0,0x7b,0xd8,0x2e,0x50,0x0,0x0,0x0,0x0, + 0x7c,0x7e,0x59,0x60,0x0,0x0,0x0,0x0,0x7d,0xb8,0x10,0x50,0x0,0x0,0x0,0x0, + 0x7e,0x5e,0x3b,0x60,0x0,0x0,0x0,0x0,0x7f,0x97,0xf2,0x50,0x0,0x2,0x1,0x2, + 0x3,0x4,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0xc7,0xcc,0x0,0x0,0xff, + 0xff,0xd5,0xd0,0x1,0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0xff,0xff,0xd5,0xd0,0x1, + 0xc,0xff,0xff,0xd5,0xd0,0x1,0x10,0x4c,0x4d,0x54,0x0,0x41,0x44,0x54,0x0,0x41, + 0x53,0x54,0x0,0x41,0x57,0x54,0x0,0x41,0x50,0x54,0x0,0x0,0x0,0x0,0x0,0x1, + 0x0,0x0,0x0,0x0,0x1,0xa,0x41,0x53,0x54,0x34,0x41,0x44,0x54,0x2c,0x4d,0x33, + 0x2e,0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Belize + 0x0,0x0,0x3,0xd2, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x38,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x12,0x80,0x0,0x0,0x0,0x93, + 0x5e,0xd9,0xb0,0x9f,0x9f,0x3b,0xe0,0xa0,0x45,0x51,0xd8,0xa1,0x7f,0x1d,0xe0,0xa2, + 0x2e,0x6e,0x58,0xa3,0x5e,0xff,0xe0,0xa4,0xe,0x50,0x58,0xa5,0x3e,0xe1,0xe0,0xa5, + 0xee,0x32,0x58,0xa7,0x27,0xfe,0x60,0xa7,0xce,0x14,0x58,0xa9,0x7,0xe0,0x60,0xa9, + 0xad,0xf6,0x58,0xaa,0xe7,0xc2,0x60,0xab,0x97,0x12,0xd8,0xac,0xc7,0xa4,0x60,0xad, + 0x76,0xf4,0xd8,0xae,0xa7,0x86,0x60,0xaf,0x56,0xd6,0xd8,0xb0,0x87,0x68,0x60,0xb1, + 0x36,0xb8,0xd8,0xb2,0x70,0x84,0xe0,0xb3,0x16,0x9a,0xd8,0xb4,0x50,0x66,0xe0,0xb4, + 0xf6,0x7c,0xd8,0xb6,0x30,0x48,0xe0,0xb6,0xdf,0x99,0x58,0xb8,0x10,0x2a,0xe0,0xb8, + 0xbf,0x7b,0x58,0xb9,0xf0,0xc,0xe0,0xba,0x9f,0x5d,0x58,0xbb,0xd9,0x29,0x60,0xbc, + 0x7f,0x3f,0x58,0xbd,0xb9,0xb,0x60,0xbe,0x5f,0x21,0x58,0xbf,0x98,0xed,0x60,0xc0, + 0x3f,0x3,0x58,0xc1,0x78,0xcf,0x60,0xc2,0x28,0x1f,0xd8,0xc3,0x58,0xb1,0x60,0xc4, + 0x8,0x1,0xd8,0xc5,0x38,0x93,0x60,0xc5,0xe7,0xe3,0xd8,0xc7,0x21,0xaf,0xe0,0xc7, + 0xc7,0xc5,0xd8,0xc9,0x1,0x91,0xe0,0xc9,0xa7,0xa7,0xd8,0xca,0xe1,0x73,0xe0,0xcb, + 0x90,0xc4,0x58,0xcc,0xc1,0x55,0xe0,0xcd,0x70,0xa6,0x58,0x7,0x62,0xdb,0x60,0x7, + 0xb9,0xd0,0x50,0x18,0x61,0x71,0x60,0x18,0xab,0x37,0x50,0x0,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3, + 0x2,0x3,0x2,0xff,0xff,0xad,0x50,0x0,0x0,0xff,0xff,0xb2,0xa8,0x1,0x4,0xff, + 0xff,0xab,0xa0,0x0,0xa,0xff,0xff,0xb9,0xb0,0x1,0xe,0x4c,0x4d,0x54,0x0,0x2d, + 0x30,0x35,0x33,0x30,0x0,0x43,0x53,0x54,0x0,0x43,0x44,0x54,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0, + 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x38,0x0,0x0,0x0,0x4,0x0,0x0,0x0, + 0x12,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x93,0x5e,0xd9, + 0xb0,0xff,0xff,0xff,0xff,0x9f,0x9f,0x3b,0xe0,0xff,0xff,0xff,0xff,0xa0,0x45,0x51, + 0xd8,0xff,0xff,0xff,0xff,0xa1,0x7f,0x1d,0xe0,0xff,0xff,0xff,0xff,0xa2,0x2e,0x6e, + 0x58,0xff,0xff,0xff,0xff,0xa3,0x5e,0xff,0xe0,0xff,0xff,0xff,0xff,0xa4,0xe,0x50, + 0x58,0xff,0xff,0xff,0xff,0xa5,0x3e,0xe1,0xe0,0xff,0xff,0xff,0xff,0xa5,0xee,0x32, + 0x58,0xff,0xff,0xff,0xff,0xa7,0x27,0xfe,0x60,0xff,0xff,0xff,0xff,0xa7,0xce,0x14, + 0x58,0xff,0xff,0xff,0xff,0xa9,0x7,0xe0,0x60,0xff,0xff,0xff,0xff,0xa9,0xad,0xf6, + 0x58,0xff,0xff,0xff,0xff,0xaa,0xe7,0xc2,0x60,0xff,0xff,0xff,0xff,0xab,0x97,0x12, + 0xd8,0xff,0xff,0xff,0xff,0xac,0xc7,0xa4,0x60,0xff,0xff,0xff,0xff,0xad,0x76,0xf4, + 0xd8,0xff,0xff,0xff,0xff,0xae,0xa7,0x86,0x60,0xff,0xff,0xff,0xff,0xaf,0x56,0xd6, + 0xd8,0xff,0xff,0xff,0xff,0xb0,0x87,0x68,0x60,0xff,0xff,0xff,0xff,0xb1,0x36,0xb8, + 0xd8,0xff,0xff,0xff,0xff,0xb2,0x70,0x84,0xe0,0xff,0xff,0xff,0xff,0xb3,0x16,0x9a, + 0xd8,0xff,0xff,0xff,0xff,0xb4,0x50,0x66,0xe0,0xff,0xff,0xff,0xff,0xb4,0xf6,0x7c, + 0xd8,0xff,0xff,0xff,0xff,0xb6,0x30,0x48,0xe0,0xff,0xff,0xff,0xff,0xb6,0xdf,0x99, + 0x58,0xff,0xff,0xff,0xff,0xb8,0x10,0x2a,0xe0,0xff,0xff,0xff,0xff,0xb8,0xbf,0x7b, + 0x58,0xff,0xff,0xff,0xff,0xb9,0xf0,0xc,0xe0,0xff,0xff,0xff,0xff,0xba,0x9f,0x5d, + 0x58,0xff,0xff,0xff,0xff,0xbb,0xd9,0x29,0x60,0xff,0xff,0xff,0xff,0xbc,0x7f,0x3f, + 0x58,0xff,0xff,0xff,0xff,0xbd,0xb9,0xb,0x60,0xff,0xff,0xff,0xff,0xbe,0x5f,0x21, + 0x58,0xff,0xff,0xff,0xff,0xbf,0x98,0xed,0x60,0xff,0xff,0xff,0xff,0xc0,0x3f,0x3, + 0x58,0xff,0xff,0xff,0xff,0xc1,0x78,0xcf,0x60,0xff,0xff,0xff,0xff,0xc2,0x28,0x1f, + 0xd8,0xff,0xff,0xff,0xff,0xc3,0x58,0xb1,0x60,0xff,0xff,0xff,0xff,0xc4,0x8,0x1, + 0xd8,0xff,0xff,0xff,0xff,0xc5,0x38,0x93,0x60,0xff,0xff,0xff,0xff,0xc5,0xe7,0xe3, + 0xd8,0xff,0xff,0xff,0xff,0xc7,0x21,0xaf,0xe0,0xff,0xff,0xff,0xff,0xc7,0xc7,0xc5, + 0xd8,0xff,0xff,0xff,0xff,0xc9,0x1,0x91,0xe0,0xff,0xff,0xff,0xff,0xc9,0xa7,0xa7, + 0xd8,0xff,0xff,0xff,0xff,0xca,0xe1,0x73,0xe0,0xff,0xff,0xff,0xff,0xcb,0x90,0xc4, + 0x58,0xff,0xff,0xff,0xff,0xcc,0xc1,0x55,0xe0,0xff,0xff,0xff,0xff,0xcd,0x70,0xa6, + 0x58,0x0,0x0,0x0,0x0,0x7,0x62,0xdb,0x60,0x0,0x0,0x0,0x0,0x7,0xb9,0xd0, + 0x50,0x0,0x0,0x0,0x0,0x18,0x61,0x71,0x60,0x0,0x0,0x0,0x0,0x18,0xab,0x37, + 0x50,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x3,0x2,0x3,0x2,0xff,0xff,0xad,0x50,0x0,0x0,0xff, + 0xff,0xb2,0xa8,0x1,0x4,0xff,0xff,0xab,0xa0,0x0,0xa,0xff,0xff,0xb9,0xb0,0x1, + 0xe,0x4c,0x4d,0x54,0x0,0x2d,0x30,0x35,0x33,0x30,0x0,0x43,0x53,0x54,0x0,0x43, + 0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x43,0x53,0x54,0x36, + 0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Merida + 0x0,0x0,0x5,0xb0, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x58,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x10,0x80,0x0,0x0,0x0,0xa5, + 0xb6,0xda,0x60,0x16,0x86,0xd5,0x60,0x18,0x4c,0x4b,0x50,0x31,0x67,0x76,0x0,0x32, + 0x73,0x8,0x70,0x33,0x47,0x58,0x0,0x34,0x52,0xea,0x70,0x35,0x27,0x3a,0x0,0x36, + 0x32,0xcc,0x70,0x37,0x7,0x1c,0x0,0x38,0x1b,0xe8,0xf0,0x38,0xe6,0xfe,0x0,0x39, + 0xfb,0xca,0xf0,0x3a,0xf5,0x4,0x80,0x3b,0xb6,0xc2,0xf0,0x3c,0xaf,0xfc,0x80,0x3d, + 0xbb,0x8e,0xf0,0x3e,0x8f,0xde,0x80,0x3f,0x9b,0x70,0xf0,0x40,0x6f,0xc0,0x80,0x41, + 0x84,0x8d,0x70,0x42,0x4f,0xa2,0x80,0x43,0x64,0x6f,0x70,0x44,0x2f,0x84,0x80,0x45, + 0x44,0x51,0x70,0x46,0xf,0x66,0x80,0x47,0x24,0x33,0x70,0x47,0xf8,0x83,0x0,0x49, + 0x4,0x15,0x70,0x49,0xd8,0x65,0x0,0x4a,0xe3,0xf7,0x70,0x4b,0xb8,0x47,0x0,0x4c, + 0xcd,0x13,0xf0,0x4d,0x98,0x29,0x0,0x4e,0xac,0xf5,0xf0,0x4f,0x78,0xb,0x0,0x50, + 0x8c,0xd7,0xf0,0x51,0x61,0x27,0x80,0x52,0x6c,0xb9,0xf0,0x53,0x41,0x9,0x80,0x54, + 0x4c,0x9b,0xf0,0x55,0x20,0xeb,0x80,0x56,0x2c,0x7d,0xf0,0x57,0x0,0xcd,0x80,0x58, + 0x15,0x9a,0x70,0x58,0xe0,0xaf,0x80,0x59,0xf5,0x7c,0x70,0x5a,0xc0,0x91,0x80,0x5b, + 0xd5,0x5e,0x70,0x5c,0xa9,0xae,0x0,0x5d,0xb5,0x40,0x70,0x5e,0x89,0x90,0x0,0x5f, + 0x95,0x22,0x70,0x60,0x69,0x72,0x0,0x61,0x7e,0x3e,0xf0,0x62,0x49,0x54,0x0,0x63, + 0x5e,0x20,0xf0,0x64,0x29,0x36,0x0,0x65,0x3e,0x2,0xf0,0x66,0x12,0x52,0x80,0x67, + 0x1d,0xe4,0xf0,0x67,0xf2,0x34,0x80,0x68,0xfd,0xc6,0xf0,0x69,0xd2,0x16,0x80,0x6a, + 0xdd,0xa8,0xf0,0x6b,0xb1,0xf8,0x80,0x6c,0xc6,0xc5,0x70,0x6d,0x91,0xda,0x80,0x6e, + 0xa6,0xa7,0x70,0x6f,0x71,0xbc,0x80,0x70,0x86,0x89,0x70,0x71,0x5a,0xd9,0x0,0x72, + 0x66,0x6b,0x70,0x73,0x3a,0xbb,0x0,0x74,0x46,0x4d,0x70,0x75,0x1a,0x9d,0x0,0x76, + 0x2f,0x69,0xf0,0x76,0xfa,0x7f,0x0,0x78,0xf,0x4b,0xf0,0x78,0xda,0x61,0x0,0x79, + 0xef,0x2d,0xf0,0x7a,0xba,0x43,0x0,0x7b,0xcf,0xf,0xf0,0x7c,0xa3,0x5f,0x80,0x7d, + 0xae,0xf1,0xf0,0x7e,0x83,0x41,0x80,0x7f,0x8e,0xd3,0xf0,0x0,0x1,0x2,0x1,0x3, + 0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3, + 0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3, + 0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3, + 0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3, + 0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3, + 0x1,0x3,0x1,0xff,0xff,0xab,0xfc,0x0,0x0,0xff,0xff,0xab,0xa0,0x0,0x4,0xff, + 0xff,0xb9,0xb0,0x0,0x8,0xff,0xff,0xb9,0xb0,0x1,0xc,0xff,0xff,0xab,0xa0,0x0, + 0x4,0x4c,0x4d,0x54,0x0,0x43,0x53,0x54,0x0,0x45,0x53,0x54,0x0,0x43,0x44,0x54, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x58,0x0, + 0x0,0x0,0x5,0x0,0x0,0x0,0x10,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff, + 0xff,0xff,0xff,0xa5,0xb6,0xda,0x60,0x0,0x0,0x0,0x0,0x16,0x86,0xd5,0x60,0x0, + 0x0,0x0,0x0,0x18,0x4c,0x4b,0x50,0x0,0x0,0x0,0x0,0x31,0x67,0x76,0x0,0x0, + 0x0,0x0,0x0,0x32,0x73,0x8,0x70,0x0,0x0,0x0,0x0,0x33,0x47,0x58,0x0,0x0, + 0x0,0x0,0x0,0x34,0x52,0xea,0x70,0x0,0x0,0x0,0x0,0x35,0x27,0x3a,0x0,0x0, + 0x0,0x0,0x0,0x36,0x32,0xcc,0x70,0x0,0x0,0x0,0x0,0x37,0x7,0x1c,0x0,0x0, + 0x0,0x0,0x0,0x38,0x1b,0xe8,0xf0,0x0,0x0,0x0,0x0,0x38,0xe6,0xfe,0x0,0x0, + 0x0,0x0,0x0,0x39,0xfb,0xca,0xf0,0x0,0x0,0x0,0x0,0x3a,0xf5,0x4,0x80,0x0, + 0x0,0x0,0x0,0x3b,0xb6,0xc2,0xf0,0x0,0x0,0x0,0x0,0x3c,0xaf,0xfc,0x80,0x0, + 0x0,0x0,0x0,0x3d,0xbb,0x8e,0xf0,0x0,0x0,0x0,0x0,0x3e,0x8f,0xde,0x80,0x0, + 0x0,0x0,0x0,0x3f,0x9b,0x70,0xf0,0x0,0x0,0x0,0x0,0x40,0x6f,0xc0,0x80,0x0, + 0x0,0x0,0x0,0x41,0x84,0x8d,0x70,0x0,0x0,0x0,0x0,0x42,0x4f,0xa2,0x80,0x0, + 0x0,0x0,0x0,0x43,0x64,0x6f,0x70,0x0,0x0,0x0,0x0,0x44,0x2f,0x84,0x80,0x0, + 0x0,0x0,0x0,0x45,0x44,0x51,0x70,0x0,0x0,0x0,0x0,0x46,0xf,0x66,0x80,0x0, + 0x0,0x0,0x0,0x47,0x24,0x33,0x70,0x0,0x0,0x0,0x0,0x47,0xf8,0x83,0x0,0x0, + 0x0,0x0,0x0,0x49,0x4,0x15,0x70,0x0,0x0,0x0,0x0,0x49,0xd8,0x65,0x0,0x0, + 0x0,0x0,0x0,0x4a,0xe3,0xf7,0x70,0x0,0x0,0x0,0x0,0x4b,0xb8,0x47,0x0,0x0, + 0x0,0x0,0x0,0x4c,0xcd,0x13,0xf0,0x0,0x0,0x0,0x0,0x4d,0x98,0x29,0x0,0x0, + 0x0,0x0,0x0,0x4e,0xac,0xf5,0xf0,0x0,0x0,0x0,0x0,0x4f,0x78,0xb,0x0,0x0, + 0x0,0x0,0x0,0x50,0x8c,0xd7,0xf0,0x0,0x0,0x0,0x0,0x51,0x61,0x27,0x80,0x0, + 0x0,0x0,0x0,0x52,0x6c,0xb9,0xf0,0x0,0x0,0x0,0x0,0x53,0x41,0x9,0x80,0x0, + 0x0,0x0,0x0,0x54,0x4c,0x9b,0xf0,0x0,0x0,0x0,0x0,0x55,0x20,0xeb,0x80,0x0, + 0x0,0x0,0x0,0x56,0x2c,0x7d,0xf0,0x0,0x0,0x0,0x0,0x57,0x0,0xcd,0x80,0x0, + 0x0,0x0,0x0,0x58,0x15,0x9a,0x70,0x0,0x0,0x0,0x0,0x58,0xe0,0xaf,0x80,0x0, + 0x0,0x0,0x0,0x59,0xf5,0x7c,0x70,0x0,0x0,0x0,0x0,0x5a,0xc0,0x91,0x80,0x0, + 0x0,0x0,0x0,0x5b,0xd5,0x5e,0x70,0x0,0x0,0x0,0x0,0x5c,0xa9,0xae,0x0,0x0, + 0x0,0x0,0x0,0x5d,0xb5,0x40,0x70,0x0,0x0,0x0,0x0,0x5e,0x89,0x90,0x0,0x0, + 0x0,0x0,0x0,0x5f,0x95,0x22,0x70,0x0,0x0,0x0,0x0,0x60,0x69,0x72,0x0,0x0, + 0x0,0x0,0x0,0x61,0x7e,0x3e,0xf0,0x0,0x0,0x0,0x0,0x62,0x49,0x54,0x0,0x0, + 0x0,0x0,0x0,0x63,0x5e,0x20,0xf0,0x0,0x0,0x0,0x0,0x64,0x29,0x36,0x0,0x0, + 0x0,0x0,0x0,0x65,0x3e,0x2,0xf0,0x0,0x0,0x0,0x0,0x66,0x12,0x52,0x80,0x0, + 0x0,0x0,0x0,0x67,0x1d,0xe4,0xf0,0x0,0x0,0x0,0x0,0x67,0xf2,0x34,0x80,0x0, + 0x0,0x0,0x0,0x68,0xfd,0xc6,0xf0,0x0,0x0,0x0,0x0,0x69,0xd2,0x16,0x80,0x0, + 0x0,0x0,0x0,0x6a,0xdd,0xa8,0xf0,0x0,0x0,0x0,0x0,0x6b,0xb1,0xf8,0x80,0x0, + 0x0,0x0,0x0,0x6c,0xc6,0xc5,0x70,0x0,0x0,0x0,0x0,0x6d,0x91,0xda,0x80,0x0, + 0x0,0x0,0x0,0x6e,0xa6,0xa7,0x70,0x0,0x0,0x0,0x0,0x6f,0x71,0xbc,0x80,0x0, + 0x0,0x0,0x0,0x70,0x86,0x89,0x70,0x0,0x0,0x0,0x0,0x71,0x5a,0xd9,0x0,0x0, + 0x0,0x0,0x0,0x72,0x66,0x6b,0x70,0x0,0x0,0x0,0x0,0x73,0x3a,0xbb,0x0,0x0, + 0x0,0x0,0x0,0x74,0x46,0x4d,0x70,0x0,0x0,0x0,0x0,0x75,0x1a,0x9d,0x0,0x0, + 0x0,0x0,0x0,0x76,0x2f,0x69,0xf0,0x0,0x0,0x0,0x0,0x76,0xfa,0x7f,0x0,0x0, + 0x0,0x0,0x0,0x78,0xf,0x4b,0xf0,0x0,0x0,0x0,0x0,0x78,0xda,0x61,0x0,0x0, + 0x0,0x0,0x0,0x79,0xef,0x2d,0xf0,0x0,0x0,0x0,0x0,0x7a,0xba,0x43,0x0,0x0, + 0x0,0x0,0x0,0x7b,0xcf,0xf,0xf0,0x0,0x0,0x0,0x0,0x7c,0xa3,0x5f,0x80,0x0, + 0x0,0x0,0x0,0x7d,0xae,0xf1,0xf0,0x0,0x0,0x0,0x0,0x7e,0x83,0x41,0x80,0x0, + 0x0,0x0,0x0,0x7f,0x8e,0xd3,0xf0,0x0,0x1,0x2,0x1,0x3,0x1,0x3,0x1,0x3, + 0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3, + 0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3, + 0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3, + 0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3, + 0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0xff, + 0xff,0xab,0xfc,0x0,0x0,0xff,0xff,0xab,0xa0,0x0,0x4,0xff,0xff,0xb9,0xb0,0x0, + 0x8,0xff,0xff,0xb9,0xb0,0x1,0xc,0xff,0xff,0xab,0xa0,0x0,0x4,0x4c,0x4d,0x54, + 0x0,0x43,0x53,0x54,0x0,0x45,0x53,0x54,0x0,0x43,0x44,0x54,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x43,0x53,0x54,0x36,0x43,0x44,0x54,0x2c, + 0x4d,0x34,0x2e,0x31,0x2e,0x30,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Vancouver + 0x0,0x0,0xb,0x55, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xbe,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0x9e, + 0xb8,0xbd,0xa0,0x9f,0xbb,0x15,0x90,0xcb,0x89,0x1a,0xa0,0xd2,0x23,0xf4,0x70,0xd2, + 0x61,0x26,0x10,0xd3,0x76,0xf,0x20,0xd4,0x53,0x7d,0x10,0xd5,0x55,0xf1,0x20,0xd6, + 0x20,0xea,0x10,0xd7,0x35,0xd3,0x20,0xd8,0x0,0xcc,0x10,0xd9,0x15,0xb5,0x20,0xd9, + 0xe0,0xae,0x10,0xda,0xfe,0xd1,0xa0,0xdb,0xc0,0x90,0x10,0xdc,0xde,0xb3,0xa0,0xdd, + 0xa9,0xac,0x90,0xde,0xbe,0x95,0xa0,0xdf,0x89,0x8e,0x90,0xe0,0x9e,0x77,0xa0,0xe1, + 0x69,0x70,0x90,0xe2,0x7e,0x59,0xa0,0xe3,0x49,0x52,0x90,0xe4,0x5e,0x3b,0xa0,0xe5, + 0x29,0x34,0x90,0xe6,0x47,0x58,0x20,0xe7,0x12,0x51,0x10,0xe8,0x27,0x3a,0x20,0xe8, + 0xf2,0x33,0x10,0xea,0x7,0x1c,0x20,0xea,0xd2,0x15,0x10,0xeb,0xe6,0xfe,0x20,0xec, + 0xb1,0xf7,0x10,0xed,0xc6,0xe0,0x20,0xee,0x91,0xd9,0x10,0xef,0xaf,0xfc,0xa0,0xf0, + 0x71,0xbb,0x10,0xf1,0x8f,0xde,0xa0,0xf2,0x7f,0xc1,0x90,0xf3,0x6f,0xc0,0xa0,0xf4, + 0x5f,0xa3,0x90,0xf5,0x4f,0xa2,0xa0,0xf6,0x3f,0x85,0x90,0xf7,0x2f,0x84,0xa0,0xf8, + 0x28,0xa2,0x10,0xf9,0xf,0x66,0xa0,0xfa,0x8,0x84,0x10,0xfa,0xf8,0x83,0x20,0xfb, + 0xe8,0x66,0x10,0xfc,0xd8,0x65,0x20,0xfd,0xc8,0x48,0x10,0xfe,0xb8,0x47,0x20,0xff, + 0xa8,0x2a,0x10,0x0,0x98,0x29,0x20,0x1,0x88,0xc,0x10,0x2,0x78,0xb,0x20,0x3, + 0x71,0x28,0x90,0x4,0x61,0x27,0xa0,0x5,0x51,0xa,0x90,0x6,0x41,0x9,0xa0,0x7, + 0x30,0xec,0x90,0x8,0x20,0xeb,0xa0,0x9,0x10,0xce,0x90,0xa,0x0,0xcd,0xa0,0xa, + 0xf0,0xb0,0x90,0xb,0xe0,0xaf,0xa0,0xc,0xd9,0xcd,0x10,0xd,0xc0,0x91,0xa0,0xe, + 0xb9,0xaf,0x10,0xf,0xa9,0xae,0x20,0x10,0x99,0x91,0x10,0x11,0x89,0x90,0x20,0x12, + 0x79,0x73,0x10,0x13,0x69,0x72,0x20,0x14,0x59,0x55,0x10,0x15,0x49,0x54,0x20,0x16, + 0x39,0x37,0x10,0x17,0x29,0x36,0x20,0x18,0x22,0x53,0x90,0x19,0x9,0x18,0x20,0x1a, + 0x2,0x35,0x90,0x1a,0xf2,0x34,0xa0,0x1b,0xe2,0x17,0x90,0x1c,0xd2,0x16,0xa0,0x1d, + 0xc1,0xf9,0x90,0x1e,0xb1,0xf8,0xa0,0x1f,0xa1,0xdb,0x90,0x20,0x76,0x2b,0x20,0x21, + 0x81,0xbd,0x90,0x22,0x56,0xd,0x20,0x23,0x6a,0xda,0x10,0x24,0x35,0xef,0x20,0x25, + 0x4a,0xbc,0x10,0x26,0x15,0xd1,0x20,0x27,0x2a,0x9e,0x10,0x27,0xfe,0xed,0xa0,0x29, + 0xa,0x80,0x10,0x29,0xde,0xcf,0xa0,0x2a,0xea,0x62,0x10,0x2b,0xbe,0xb1,0xa0,0x2c, + 0xd3,0x7e,0x90,0x2d,0x9e,0x93,0xa0,0x2e,0xb3,0x60,0x90,0x2f,0x7e,0x75,0xa0,0x30, + 0x93,0x42,0x90,0x31,0x67,0x92,0x20,0x32,0x73,0x24,0x90,0x33,0x47,0x74,0x20,0x34, + 0x53,0x6,0x90,0x35,0x27,0x56,0x20,0x36,0x32,0xe8,0x90,0x37,0x7,0x38,0x20,0x38, + 0x1c,0x5,0x10,0x38,0xe7,0x1a,0x20,0x39,0xfb,0xe7,0x10,0x3a,0xc6,0xfc,0x20,0x3b, + 0xdb,0xc9,0x10,0x3c,0xb0,0x18,0xa0,0x3d,0xbb,0xab,0x10,0x3e,0x8f,0xfa,0xa0,0x3f, + 0x9b,0x8d,0x10,0x40,0x6f,0xdc,0xa0,0x41,0x84,0xa9,0x90,0x42,0x4f,0xbe,0xa0,0x43, + 0x64,0x8b,0x90,0x44,0x2f,0xa0,0xa0,0x45,0x44,0x6d,0x90,0x45,0xf3,0xd3,0x20,0x47, + 0x2d,0x8a,0x10,0x47,0xd3,0xb5,0x20,0x49,0xd,0x6c,0x10,0x49,0xb3,0x97,0x20,0x4a, + 0xed,0x4e,0x10,0x4b,0x9c,0xb3,0xa0,0x4c,0xd6,0x6a,0x90,0x4d,0x7c,0x95,0xa0,0x4e, + 0xb6,0x4c,0x90,0x4f,0x5c,0x77,0xa0,0x50,0x96,0x2e,0x90,0x51,0x3c,0x59,0xa0,0x52, + 0x76,0x10,0x90,0x53,0x1c,0x3b,0xa0,0x54,0x55,0xf2,0x90,0x54,0xfc,0x1d,0xa0,0x56, + 0x35,0xd4,0x90,0x56,0xe5,0x3a,0x20,0x58,0x1e,0xf1,0x10,0x58,0xc5,0x1c,0x20,0x59, + 0xfe,0xd3,0x10,0x5a,0xa4,0xfe,0x20,0x5b,0xde,0xb5,0x10,0x5c,0x84,0xe0,0x20,0x5d, + 0xbe,0x97,0x10,0x5e,0x64,0xc2,0x20,0x5f,0x9e,0x79,0x10,0x60,0x4d,0xde,0xa0,0x61, + 0x87,0x95,0x90,0x62,0x2d,0xc0,0xa0,0x63,0x67,0x77,0x90,0x64,0xd,0xa2,0xa0,0x65, + 0x47,0x59,0x90,0x65,0xed,0x84,0xa0,0x67,0x27,0x3b,0x90,0x67,0xcd,0x66,0xa0,0x69, + 0x7,0x1d,0x90,0x69,0xad,0x48,0xa0,0x6a,0xe6,0xff,0x90,0x6b,0x96,0x65,0x20,0x6c, + 0xd0,0x1c,0x10,0x6d,0x76,0x47,0x20,0x6e,0xaf,0xfe,0x10,0x6f,0x56,0x29,0x20,0x70, + 0x8f,0xe0,0x10,0x71,0x36,0xb,0x20,0x72,0x6f,0xc2,0x10,0x73,0x15,0xed,0x20,0x74, + 0x4f,0xa4,0x10,0x74,0xff,0x9,0xa0,0x76,0x38,0xc0,0x90,0x76,0xde,0xeb,0xa0,0x78, + 0x18,0xa2,0x90,0x78,0xbe,0xcd,0xa0,0x79,0xf8,0x84,0x90,0x7a,0x9e,0xaf,0xa0,0x7b, + 0xd8,0x66,0x90,0x7c,0x7e,0x91,0xa0,0x7d,0xb8,0x48,0x90,0x7e,0x5e,0x73,0xa0,0x7f, + 0x98,0x2a,0x90,0x2,0x1,0x2,0x3,0x4,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0xff,0xff,0x8c,0x94,0x0,0x0,0xff,0xff,0x9d,0x90,0x1,0x4,0xff,0xff,0x8f, + 0x80,0x0,0x8,0xff,0xff,0x9d,0x90,0x1,0xc,0xff,0xff,0x9d,0x90,0x1,0x10,0x4c, + 0x4d,0x54,0x0,0x50,0x44,0x54,0x0,0x50,0x53,0x54,0x0,0x50,0x57,0x54,0x0,0x50, + 0x50,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x1,0x54,0x5a,0x69, + 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xbf,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0x5e,0x3d,0x76,0xec,0xff,0xff,0xff,0xff,0x9e,0xb8,0xbd, + 0xa0,0xff,0xff,0xff,0xff,0x9f,0xbb,0x15,0x90,0xff,0xff,0xff,0xff,0xcb,0x89,0x1a, + 0xa0,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x61,0x26, + 0x10,0xff,0xff,0xff,0xff,0xd3,0x76,0xf,0x20,0xff,0xff,0xff,0xff,0xd4,0x53,0x7d, + 0x10,0xff,0xff,0xff,0xff,0xd5,0x55,0xf1,0x20,0xff,0xff,0xff,0xff,0xd6,0x20,0xea, + 0x10,0xff,0xff,0xff,0xff,0xd7,0x35,0xd3,0x20,0xff,0xff,0xff,0xff,0xd8,0x0,0xcc, + 0x10,0xff,0xff,0xff,0xff,0xd9,0x15,0xb5,0x20,0xff,0xff,0xff,0xff,0xd9,0xe0,0xae, + 0x10,0xff,0xff,0xff,0xff,0xda,0xfe,0xd1,0xa0,0xff,0xff,0xff,0xff,0xdb,0xc0,0x90, + 0x10,0xff,0xff,0xff,0xff,0xdc,0xde,0xb3,0xa0,0xff,0xff,0xff,0xff,0xdd,0xa9,0xac, + 0x90,0xff,0xff,0xff,0xff,0xde,0xbe,0x95,0xa0,0xff,0xff,0xff,0xff,0xdf,0x89,0x8e, + 0x90,0xff,0xff,0xff,0xff,0xe0,0x9e,0x77,0xa0,0xff,0xff,0xff,0xff,0xe1,0x69,0x70, + 0x90,0xff,0xff,0xff,0xff,0xe2,0x7e,0x59,0xa0,0xff,0xff,0xff,0xff,0xe3,0x49,0x52, + 0x90,0xff,0xff,0xff,0xff,0xe4,0x5e,0x3b,0xa0,0xff,0xff,0xff,0xff,0xe5,0x29,0x34, + 0x90,0xff,0xff,0xff,0xff,0xe6,0x47,0x58,0x20,0xff,0xff,0xff,0xff,0xe7,0x12,0x51, + 0x10,0xff,0xff,0xff,0xff,0xe8,0x27,0x3a,0x20,0xff,0xff,0xff,0xff,0xe8,0xf2,0x33, + 0x10,0xff,0xff,0xff,0xff,0xea,0x7,0x1c,0x20,0xff,0xff,0xff,0xff,0xea,0xd2,0x15, + 0x10,0xff,0xff,0xff,0xff,0xeb,0xe6,0xfe,0x20,0xff,0xff,0xff,0xff,0xec,0xb1,0xf7, + 0x10,0xff,0xff,0xff,0xff,0xed,0xc6,0xe0,0x20,0xff,0xff,0xff,0xff,0xee,0x91,0xd9, + 0x10,0xff,0xff,0xff,0xff,0xef,0xaf,0xfc,0xa0,0xff,0xff,0xff,0xff,0xf0,0x71,0xbb, + 0x10,0xff,0xff,0xff,0xff,0xf1,0x8f,0xde,0xa0,0xff,0xff,0xff,0xff,0xf2,0x7f,0xc1, + 0x90,0xff,0xff,0xff,0xff,0xf3,0x6f,0xc0,0xa0,0xff,0xff,0xff,0xff,0xf4,0x5f,0xa3, + 0x90,0xff,0xff,0xff,0xff,0xf5,0x4f,0xa2,0xa0,0xff,0xff,0xff,0xff,0xf6,0x3f,0x85, + 0x90,0xff,0xff,0xff,0xff,0xf7,0x2f,0x84,0xa0,0xff,0xff,0xff,0xff,0xf8,0x28,0xa2, + 0x10,0xff,0xff,0xff,0xff,0xf9,0xf,0x66,0xa0,0xff,0xff,0xff,0xff,0xfa,0x8,0x84, + 0x10,0xff,0xff,0xff,0xff,0xfa,0xf8,0x83,0x20,0xff,0xff,0xff,0xff,0xfb,0xe8,0x66, + 0x10,0xff,0xff,0xff,0xff,0xfc,0xd8,0x65,0x20,0xff,0xff,0xff,0xff,0xfd,0xc8,0x48, + 0x10,0xff,0xff,0xff,0xff,0xfe,0xb8,0x47,0x20,0xff,0xff,0xff,0xff,0xff,0xa8,0x2a, + 0x10,0x0,0x0,0x0,0x0,0x0,0x98,0x29,0x20,0x0,0x0,0x0,0x0,0x1,0x88,0xc, + 0x10,0x0,0x0,0x0,0x0,0x2,0x78,0xb,0x20,0x0,0x0,0x0,0x0,0x3,0x71,0x28, + 0x90,0x0,0x0,0x0,0x0,0x4,0x61,0x27,0xa0,0x0,0x0,0x0,0x0,0x5,0x51,0xa, + 0x90,0x0,0x0,0x0,0x0,0x6,0x41,0x9,0xa0,0x0,0x0,0x0,0x0,0x7,0x30,0xec, + 0x90,0x0,0x0,0x0,0x0,0x8,0x20,0xeb,0xa0,0x0,0x0,0x0,0x0,0x9,0x10,0xce, + 0x90,0x0,0x0,0x0,0x0,0xa,0x0,0xcd,0xa0,0x0,0x0,0x0,0x0,0xa,0xf0,0xb0, + 0x90,0x0,0x0,0x0,0x0,0xb,0xe0,0xaf,0xa0,0x0,0x0,0x0,0x0,0xc,0xd9,0xcd, + 0x10,0x0,0x0,0x0,0x0,0xd,0xc0,0x91,0xa0,0x0,0x0,0x0,0x0,0xe,0xb9,0xaf, + 0x10,0x0,0x0,0x0,0x0,0xf,0xa9,0xae,0x20,0x0,0x0,0x0,0x0,0x10,0x99,0x91, + 0x10,0x0,0x0,0x0,0x0,0x11,0x89,0x90,0x20,0x0,0x0,0x0,0x0,0x12,0x79,0x73, + 0x10,0x0,0x0,0x0,0x0,0x13,0x69,0x72,0x20,0x0,0x0,0x0,0x0,0x14,0x59,0x55, + 0x10,0x0,0x0,0x0,0x0,0x15,0x49,0x54,0x20,0x0,0x0,0x0,0x0,0x16,0x39,0x37, + 0x10,0x0,0x0,0x0,0x0,0x17,0x29,0x36,0x20,0x0,0x0,0x0,0x0,0x18,0x22,0x53, + 0x90,0x0,0x0,0x0,0x0,0x19,0x9,0x18,0x20,0x0,0x0,0x0,0x0,0x1a,0x2,0x35, + 0x90,0x0,0x0,0x0,0x0,0x1a,0xf2,0x34,0xa0,0x0,0x0,0x0,0x0,0x1b,0xe2,0x17, + 0x90,0x0,0x0,0x0,0x0,0x1c,0xd2,0x16,0xa0,0x0,0x0,0x0,0x0,0x1d,0xc1,0xf9, + 0x90,0x0,0x0,0x0,0x0,0x1e,0xb1,0xf8,0xa0,0x0,0x0,0x0,0x0,0x1f,0xa1,0xdb, + 0x90,0x0,0x0,0x0,0x0,0x20,0x76,0x2b,0x20,0x0,0x0,0x0,0x0,0x21,0x81,0xbd, + 0x90,0x0,0x0,0x0,0x0,0x22,0x56,0xd,0x20,0x0,0x0,0x0,0x0,0x23,0x6a,0xda, + 0x10,0x0,0x0,0x0,0x0,0x24,0x35,0xef,0x20,0x0,0x0,0x0,0x0,0x25,0x4a,0xbc, + 0x10,0x0,0x0,0x0,0x0,0x26,0x15,0xd1,0x20,0x0,0x0,0x0,0x0,0x27,0x2a,0x9e, + 0x10,0x0,0x0,0x0,0x0,0x27,0xfe,0xed,0xa0,0x0,0x0,0x0,0x0,0x29,0xa,0x80, + 0x10,0x0,0x0,0x0,0x0,0x29,0xde,0xcf,0xa0,0x0,0x0,0x0,0x0,0x2a,0xea,0x62, + 0x10,0x0,0x0,0x0,0x0,0x2b,0xbe,0xb1,0xa0,0x0,0x0,0x0,0x0,0x2c,0xd3,0x7e, + 0x90,0x0,0x0,0x0,0x0,0x2d,0x9e,0x93,0xa0,0x0,0x0,0x0,0x0,0x2e,0xb3,0x60, + 0x90,0x0,0x0,0x0,0x0,0x2f,0x7e,0x75,0xa0,0x0,0x0,0x0,0x0,0x30,0x93,0x42, + 0x90,0x0,0x0,0x0,0x0,0x31,0x67,0x92,0x20,0x0,0x0,0x0,0x0,0x32,0x73,0x24, + 0x90,0x0,0x0,0x0,0x0,0x33,0x47,0x74,0x20,0x0,0x0,0x0,0x0,0x34,0x53,0x6, + 0x90,0x0,0x0,0x0,0x0,0x35,0x27,0x56,0x20,0x0,0x0,0x0,0x0,0x36,0x32,0xe8, + 0x90,0x0,0x0,0x0,0x0,0x37,0x7,0x38,0x20,0x0,0x0,0x0,0x0,0x38,0x1c,0x5, + 0x10,0x0,0x0,0x0,0x0,0x38,0xe7,0x1a,0x20,0x0,0x0,0x0,0x0,0x39,0xfb,0xe7, + 0x10,0x0,0x0,0x0,0x0,0x3a,0xc6,0xfc,0x20,0x0,0x0,0x0,0x0,0x3b,0xdb,0xc9, + 0x10,0x0,0x0,0x0,0x0,0x3c,0xb0,0x18,0xa0,0x0,0x0,0x0,0x0,0x3d,0xbb,0xab, + 0x10,0x0,0x0,0x0,0x0,0x3e,0x8f,0xfa,0xa0,0x0,0x0,0x0,0x0,0x3f,0x9b,0x8d, + 0x10,0x0,0x0,0x0,0x0,0x40,0x6f,0xdc,0xa0,0x0,0x0,0x0,0x0,0x41,0x84,0xa9, + 0x90,0x0,0x0,0x0,0x0,0x42,0x4f,0xbe,0xa0,0x0,0x0,0x0,0x0,0x43,0x64,0x8b, + 0x90,0x0,0x0,0x0,0x0,0x44,0x2f,0xa0,0xa0,0x0,0x0,0x0,0x0,0x45,0x44,0x6d, + 0x90,0x0,0x0,0x0,0x0,0x45,0xf3,0xd3,0x20,0x0,0x0,0x0,0x0,0x47,0x2d,0x8a, + 0x10,0x0,0x0,0x0,0x0,0x47,0xd3,0xb5,0x20,0x0,0x0,0x0,0x0,0x49,0xd,0x6c, + 0x10,0x0,0x0,0x0,0x0,0x49,0xb3,0x97,0x20,0x0,0x0,0x0,0x0,0x4a,0xed,0x4e, + 0x10,0x0,0x0,0x0,0x0,0x4b,0x9c,0xb3,0xa0,0x0,0x0,0x0,0x0,0x4c,0xd6,0x6a, + 0x90,0x0,0x0,0x0,0x0,0x4d,0x7c,0x95,0xa0,0x0,0x0,0x0,0x0,0x4e,0xb6,0x4c, + 0x90,0x0,0x0,0x0,0x0,0x4f,0x5c,0x77,0xa0,0x0,0x0,0x0,0x0,0x50,0x96,0x2e, + 0x90,0x0,0x0,0x0,0x0,0x51,0x3c,0x59,0xa0,0x0,0x0,0x0,0x0,0x52,0x76,0x10, + 0x90,0x0,0x0,0x0,0x0,0x53,0x1c,0x3b,0xa0,0x0,0x0,0x0,0x0,0x54,0x55,0xf2, + 0x90,0x0,0x0,0x0,0x0,0x54,0xfc,0x1d,0xa0,0x0,0x0,0x0,0x0,0x56,0x35,0xd4, + 0x90,0x0,0x0,0x0,0x0,0x56,0xe5,0x3a,0x20,0x0,0x0,0x0,0x0,0x58,0x1e,0xf1, + 0x10,0x0,0x0,0x0,0x0,0x58,0xc5,0x1c,0x20,0x0,0x0,0x0,0x0,0x59,0xfe,0xd3, + 0x10,0x0,0x0,0x0,0x0,0x5a,0xa4,0xfe,0x20,0x0,0x0,0x0,0x0,0x5b,0xde,0xb5, + 0x10,0x0,0x0,0x0,0x0,0x5c,0x84,0xe0,0x20,0x0,0x0,0x0,0x0,0x5d,0xbe,0x97, + 0x10,0x0,0x0,0x0,0x0,0x5e,0x64,0xc2,0x20,0x0,0x0,0x0,0x0,0x5f,0x9e,0x79, + 0x10,0x0,0x0,0x0,0x0,0x60,0x4d,0xde,0xa0,0x0,0x0,0x0,0x0,0x61,0x87,0x95, + 0x90,0x0,0x0,0x0,0x0,0x62,0x2d,0xc0,0xa0,0x0,0x0,0x0,0x0,0x63,0x67,0x77, + 0x90,0x0,0x0,0x0,0x0,0x64,0xd,0xa2,0xa0,0x0,0x0,0x0,0x0,0x65,0x47,0x59, + 0x90,0x0,0x0,0x0,0x0,0x65,0xed,0x84,0xa0,0x0,0x0,0x0,0x0,0x67,0x27,0x3b, + 0x90,0x0,0x0,0x0,0x0,0x67,0xcd,0x66,0xa0,0x0,0x0,0x0,0x0,0x69,0x7,0x1d, + 0x90,0x0,0x0,0x0,0x0,0x69,0xad,0x48,0xa0,0x0,0x0,0x0,0x0,0x6a,0xe6,0xff, + 0x90,0x0,0x0,0x0,0x0,0x6b,0x96,0x65,0x20,0x0,0x0,0x0,0x0,0x6c,0xd0,0x1c, + 0x10,0x0,0x0,0x0,0x0,0x6d,0x76,0x47,0x20,0x0,0x0,0x0,0x0,0x6e,0xaf,0xfe, + 0x10,0x0,0x0,0x0,0x0,0x6f,0x56,0x29,0x20,0x0,0x0,0x0,0x0,0x70,0x8f,0xe0, + 0x10,0x0,0x0,0x0,0x0,0x71,0x36,0xb,0x20,0x0,0x0,0x0,0x0,0x72,0x6f,0xc2, + 0x10,0x0,0x0,0x0,0x0,0x73,0x15,0xed,0x20,0x0,0x0,0x0,0x0,0x74,0x4f,0xa4, + 0x10,0x0,0x0,0x0,0x0,0x74,0xff,0x9,0xa0,0x0,0x0,0x0,0x0,0x76,0x38,0xc0, + 0x90,0x0,0x0,0x0,0x0,0x76,0xde,0xeb,0xa0,0x0,0x0,0x0,0x0,0x78,0x18,0xa2, + 0x90,0x0,0x0,0x0,0x0,0x78,0xbe,0xcd,0xa0,0x0,0x0,0x0,0x0,0x79,0xf8,0x84, + 0x90,0x0,0x0,0x0,0x0,0x7a,0x9e,0xaf,0xa0,0x0,0x0,0x0,0x0,0x7b,0xd8,0x66, + 0x90,0x0,0x0,0x0,0x0,0x7c,0x7e,0x91,0xa0,0x0,0x0,0x0,0x0,0x7d,0xb8,0x48, + 0x90,0x0,0x0,0x0,0x0,0x7e,0x5e,0x73,0xa0,0x0,0x0,0x0,0x0,0x7f,0x98,0x2a, + 0x90,0x0,0x2,0x1,0x2,0x3,0x4,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x3, - 0x4,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, @@ -23947,36 +20365,27 @@ static const unsigned char qt_resource_data[] = { 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0xb5,0x94,0x0,0x0, - 0xff,0xff,0xc7,0xc0,0x1,0x4,0xff,0xff,0xb9,0xb0,0x0,0x8,0xff,0xff,0xc7,0xc0, - 0x1,0xc,0xff,0xff,0xc7,0xc0,0x1,0x10,0x4c,0x4d,0x54,0x0,0x45,0x44,0x54,0x0, - 0x45,0x53,0x54,0x0,0x45,0x57,0x54,0x0,0x45,0x50,0x54,0x0,0x0,0x0,0x0,0x0, - 0x1,0x0,0x0,0x0,0x0,0x1,0xa,0x45,0x53,0x54,0x35,0x45,0x44,0x54,0x2c,0x4d, - 0x33,0x2e,0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Nipigon - 0x0,0x0,0x8,0x53, + 0xff,0xff,0x8c,0x94,0x0,0x0,0xff,0xff,0x9d,0x90,0x1,0x4,0xff,0xff,0x8f,0x80, + 0x0,0x8,0xff,0xff,0x9d,0x90,0x1,0xc,0xff,0xff,0x9d,0x90,0x1,0x10,0x4c,0x4d, + 0x54,0x0,0x50,0x44,0x54,0x0,0x50,0x53,0x54,0x0,0x50,0x57,0x54,0x0,0x50,0x50, + 0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x1,0xa,0x50,0x53,0x54, + 0x38,0x50,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e, + 0x31,0x2e,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Indianapolis + 0x0,0x0,0x6,0x8b, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x87,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0x9e, - 0xb8,0x93,0x70,0x9f,0xba,0xeb,0x60,0xc8,0xf8,0x49,0x50,0xcb,0x88,0xf0,0x70,0xd2, - 0x23,0xf4,0x70,0xd2,0x60,0xfb,0xe0,0x8,0x20,0xc1,0x70,0x9,0x10,0xa4,0x60,0xa, - 0x0,0xa3,0x70,0xa,0xf0,0x86,0x60,0xb,0xe0,0x85,0x70,0xc,0xd9,0xa2,0xe0,0xd, - 0xc0,0x67,0x70,0xe,0xb9,0x84,0xe0,0xf,0xa9,0x83,0xf0,0x10,0x99,0x66,0xe0,0x11, - 0x89,0x65,0xf0,0x12,0x79,0x48,0xe0,0x13,0x69,0x47,0xf0,0x14,0x59,0x2a,0xe0,0x15, - 0x49,0x29,0xf0,0x16,0x39,0xc,0xe0,0x17,0x29,0xb,0xf0,0x18,0x22,0x29,0x60,0x19, - 0x8,0xed,0xf0,0x1a,0x2,0xb,0x60,0x1a,0xf2,0xa,0x70,0x1b,0xe1,0xed,0x60,0x1c, - 0xd1,0xec,0x70,0x1d,0xc1,0xcf,0x60,0x1e,0xb1,0xce,0x70,0x1f,0xa1,0xb1,0x60,0x20, - 0x76,0x0,0xf0,0x21,0x81,0x93,0x60,0x22,0x55,0xe2,0xf0,0x23,0x6a,0xaf,0xe0,0x24, - 0x35,0xc4,0xf0,0x25,0x4a,0x91,0xe0,0x26,0x15,0xa6,0xf0,0x27,0x2a,0x73,0xe0,0x27, - 0xfe,0xc3,0x70,0x29,0xa,0x55,0xe0,0x29,0xde,0xa5,0x70,0x2a,0xea,0x37,0xe0,0x2b, - 0xbe,0x87,0x70,0x2c,0xd3,0x54,0x60,0x2d,0x9e,0x69,0x70,0x2e,0xb3,0x36,0x60,0x2f, - 0x7e,0x4b,0x70,0x30,0x93,0x18,0x60,0x31,0x67,0x67,0xf0,0x32,0x72,0xfa,0x60,0x33, - 0x47,0x49,0xf0,0x34,0x52,0xdc,0x60,0x35,0x27,0x2b,0xf0,0x36,0x32,0xbe,0x60,0x37, - 0x7,0xd,0xf0,0x38,0x1b,0xda,0xe0,0x38,0xe6,0xef,0xf0,0x39,0xfb,0xbc,0xe0,0x3a, - 0xc6,0xd1,0xf0,0x3b,0xdb,0x9e,0xe0,0x3c,0xaf,0xee,0x70,0x3d,0xbb,0x80,0xe0,0x3e, - 0x8f,0xd0,0x70,0x3f,0x9b,0x62,0xe0,0x40,0x6f,0xb2,0x70,0x41,0x84,0x7f,0x60,0x42, - 0x4f,0x94,0x70,0x43,0x64,0x61,0x60,0x44,0x2f,0x76,0x70,0x45,0x44,0x43,0x60,0x45, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x63,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x1c,0x80,0x0,0x0,0x0,0x9e, + 0xa6,0x2c,0x80,0x9f,0xba,0xf9,0x70,0xa0,0x86,0xe,0x80,0xa1,0x9a,0xdb,0x70,0xca, + 0x57,0x22,0x80,0xca,0xd8,0x47,0x70,0xcb,0x88,0xfe,0x80,0xd2,0x23,0xf4,0x70,0xd2, + 0x61,0x9,0xf0,0xd3,0x75,0xf3,0x0,0xd4,0x40,0xeb,0xf0,0xd5,0x55,0xd5,0x0,0xd6, + 0x20,0xcd,0xf0,0xd7,0x35,0xb7,0x0,0xd8,0x0,0xaf,0xf0,0xd9,0x15,0x99,0x0,0xd9, + 0xe0,0x91,0xf0,0xda,0xfe,0xb5,0x80,0xdb,0xc0,0x73,0xf0,0xdc,0xde,0x97,0x80,0xdd, + 0xa9,0x90,0x70,0xde,0xbe,0x79,0x80,0xdf,0x89,0x72,0x70,0xe0,0x9e,0x5b,0x80,0xe1, + 0x69,0x54,0x70,0xe2,0x7e,0x3d,0x80,0xe3,0x49,0x36,0x70,0xe4,0x5e,0x1f,0x80,0xe8, + 0xf2,0x16,0xf0,0xea,0x7,0x0,0x0,0xfe,0xb8,0x1c,0xf0,0xff,0xa7,0xff,0xe0,0x0, + 0x97,0xfe,0xf0,0x1,0x87,0xe1,0xe0,0x44,0x2f,0x76,0x70,0x45,0x44,0x43,0x60,0x45, 0xf3,0xa8,0xf0,0x47,0x2d,0x5f,0xe0,0x47,0xd3,0x8a,0xf0,0x49,0xd,0x41,0xe0,0x49, 0xb3,0x6c,0xf0,0x4a,0xed,0x23,0xe0,0x4b,0x9c,0x89,0x70,0x4c,0xd6,0x40,0x60,0x4d, 0x7c,0x6b,0x70,0x4e,0xb6,0x22,0x60,0x4f,0x5c,0x4d,0x70,0x50,0x96,0x4,0x60,0x51, @@ -23992,311 +20401,195 @@ static const unsigned char qt_resource_data[] = { 0x15,0xc2,0xf0,0x74,0x4f,0x79,0xe0,0x74,0xfe,0xdf,0x70,0x76,0x38,0x96,0x60,0x76, 0xde,0xc1,0x70,0x78,0x18,0x78,0x60,0x78,0xbe,0xa3,0x70,0x79,0xf8,0x5a,0x60,0x7a, 0x9e,0x85,0x70,0x7b,0xd8,0x3c,0x60,0x7c,0x7e,0x67,0x70,0x7d,0xb8,0x1e,0x60,0x7e, - 0x5e,0x49,0x70,0x7f,0x98,0x0,0x60,0x2,0x1,0x2,0x1,0x3,0x4,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff, - 0xad,0x40,0x0,0x0,0xff,0xff,0xc7,0xc0,0x1,0x4,0xff,0xff,0xb9,0xb0,0x0,0x8, - 0xff,0xff,0xc7,0xc0,0x1,0xc,0xff,0xff,0xc7,0xc0,0x1,0x10,0x4c,0x4d,0x54,0x0, - 0x45,0x44,0x54,0x0,0x45,0x53,0x54,0x0,0x45,0x57,0x54,0x0,0x45,0x50,0x54,0x0, - 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x1,0x54,0x5a,0x69,0x66,0x32,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x88,0x0,0x0, - 0x0,0x5,0x0,0x0,0x0,0x14,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff, - 0xff,0xff,0x72,0xee,0x81,0x40,0xff,0xff,0xff,0xff,0x9e,0xb8,0x93,0x70,0xff,0xff, - 0xff,0xff,0x9f,0xba,0xeb,0x60,0xff,0xff,0xff,0xff,0xc8,0xf8,0x49,0x50,0xff,0xff, - 0xff,0xff,0xcb,0x88,0xf0,0x70,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff, - 0xff,0xff,0xd2,0x60,0xfb,0xe0,0x0,0x0,0x0,0x0,0x8,0x20,0xc1,0x70,0x0,0x0, - 0x0,0x0,0x9,0x10,0xa4,0x60,0x0,0x0,0x0,0x0,0xa,0x0,0xa3,0x70,0x0,0x0, - 0x0,0x0,0xa,0xf0,0x86,0x60,0x0,0x0,0x0,0x0,0xb,0xe0,0x85,0x70,0x0,0x0, - 0x0,0x0,0xc,0xd9,0xa2,0xe0,0x0,0x0,0x0,0x0,0xd,0xc0,0x67,0x70,0x0,0x0, - 0x0,0x0,0xe,0xb9,0x84,0xe0,0x0,0x0,0x0,0x0,0xf,0xa9,0x83,0xf0,0x0,0x0, - 0x0,0x0,0x10,0x99,0x66,0xe0,0x0,0x0,0x0,0x0,0x11,0x89,0x65,0xf0,0x0,0x0, - 0x0,0x0,0x12,0x79,0x48,0xe0,0x0,0x0,0x0,0x0,0x13,0x69,0x47,0xf0,0x0,0x0, - 0x0,0x0,0x14,0x59,0x2a,0xe0,0x0,0x0,0x0,0x0,0x15,0x49,0x29,0xf0,0x0,0x0, - 0x0,0x0,0x16,0x39,0xc,0xe0,0x0,0x0,0x0,0x0,0x17,0x29,0xb,0xf0,0x0,0x0, - 0x0,0x0,0x18,0x22,0x29,0x60,0x0,0x0,0x0,0x0,0x19,0x8,0xed,0xf0,0x0,0x0, - 0x0,0x0,0x1a,0x2,0xb,0x60,0x0,0x0,0x0,0x0,0x1a,0xf2,0xa,0x70,0x0,0x0, - 0x0,0x0,0x1b,0xe1,0xed,0x60,0x0,0x0,0x0,0x0,0x1c,0xd1,0xec,0x70,0x0,0x0, - 0x0,0x0,0x1d,0xc1,0xcf,0x60,0x0,0x0,0x0,0x0,0x1e,0xb1,0xce,0x70,0x0,0x0, - 0x0,0x0,0x1f,0xa1,0xb1,0x60,0x0,0x0,0x0,0x0,0x20,0x76,0x0,0xf0,0x0,0x0, - 0x0,0x0,0x21,0x81,0x93,0x60,0x0,0x0,0x0,0x0,0x22,0x55,0xe2,0xf0,0x0,0x0, - 0x0,0x0,0x23,0x6a,0xaf,0xe0,0x0,0x0,0x0,0x0,0x24,0x35,0xc4,0xf0,0x0,0x0, - 0x0,0x0,0x25,0x4a,0x91,0xe0,0x0,0x0,0x0,0x0,0x26,0x15,0xa6,0xf0,0x0,0x0, - 0x0,0x0,0x27,0x2a,0x73,0xe0,0x0,0x0,0x0,0x0,0x27,0xfe,0xc3,0x70,0x0,0x0, - 0x0,0x0,0x29,0xa,0x55,0xe0,0x0,0x0,0x0,0x0,0x29,0xde,0xa5,0x70,0x0,0x0, - 0x0,0x0,0x2a,0xea,0x37,0xe0,0x0,0x0,0x0,0x0,0x2b,0xbe,0x87,0x70,0x0,0x0, - 0x0,0x0,0x2c,0xd3,0x54,0x60,0x0,0x0,0x0,0x0,0x2d,0x9e,0x69,0x70,0x0,0x0, - 0x0,0x0,0x2e,0xb3,0x36,0x60,0x0,0x0,0x0,0x0,0x2f,0x7e,0x4b,0x70,0x0,0x0, - 0x0,0x0,0x30,0x93,0x18,0x60,0x0,0x0,0x0,0x0,0x31,0x67,0x67,0xf0,0x0,0x0, - 0x0,0x0,0x32,0x72,0xfa,0x60,0x0,0x0,0x0,0x0,0x33,0x47,0x49,0xf0,0x0,0x0, - 0x0,0x0,0x34,0x52,0xdc,0x60,0x0,0x0,0x0,0x0,0x35,0x27,0x2b,0xf0,0x0,0x0, - 0x0,0x0,0x36,0x32,0xbe,0x60,0x0,0x0,0x0,0x0,0x37,0x7,0xd,0xf0,0x0,0x0, - 0x0,0x0,0x38,0x1b,0xda,0xe0,0x0,0x0,0x0,0x0,0x38,0xe6,0xef,0xf0,0x0,0x0, - 0x0,0x0,0x39,0xfb,0xbc,0xe0,0x0,0x0,0x0,0x0,0x3a,0xc6,0xd1,0xf0,0x0,0x0, - 0x0,0x0,0x3b,0xdb,0x9e,0xe0,0x0,0x0,0x0,0x0,0x3c,0xaf,0xee,0x70,0x0,0x0, - 0x0,0x0,0x3d,0xbb,0x80,0xe0,0x0,0x0,0x0,0x0,0x3e,0x8f,0xd0,0x70,0x0,0x0, - 0x0,0x0,0x3f,0x9b,0x62,0xe0,0x0,0x0,0x0,0x0,0x40,0x6f,0xb2,0x70,0x0,0x0, - 0x0,0x0,0x41,0x84,0x7f,0x60,0x0,0x0,0x0,0x0,0x42,0x4f,0x94,0x70,0x0,0x0, - 0x0,0x0,0x43,0x64,0x61,0x60,0x0,0x0,0x0,0x0,0x44,0x2f,0x76,0x70,0x0,0x0, - 0x0,0x0,0x45,0x44,0x43,0x60,0x0,0x0,0x0,0x0,0x45,0xf3,0xa8,0xf0,0x0,0x0, - 0x0,0x0,0x47,0x2d,0x5f,0xe0,0x0,0x0,0x0,0x0,0x47,0xd3,0x8a,0xf0,0x0,0x0, - 0x0,0x0,0x49,0xd,0x41,0xe0,0x0,0x0,0x0,0x0,0x49,0xb3,0x6c,0xf0,0x0,0x0, - 0x0,0x0,0x4a,0xed,0x23,0xe0,0x0,0x0,0x0,0x0,0x4b,0x9c,0x89,0x70,0x0,0x0, - 0x0,0x0,0x4c,0xd6,0x40,0x60,0x0,0x0,0x0,0x0,0x4d,0x7c,0x6b,0x70,0x0,0x0, - 0x0,0x0,0x4e,0xb6,0x22,0x60,0x0,0x0,0x0,0x0,0x4f,0x5c,0x4d,0x70,0x0,0x0, - 0x0,0x0,0x50,0x96,0x4,0x60,0x0,0x0,0x0,0x0,0x51,0x3c,0x2f,0x70,0x0,0x0, - 0x0,0x0,0x52,0x75,0xe6,0x60,0x0,0x0,0x0,0x0,0x53,0x1c,0x11,0x70,0x0,0x0, - 0x0,0x0,0x54,0x55,0xc8,0x60,0x0,0x0,0x0,0x0,0x54,0xfb,0xf3,0x70,0x0,0x0, - 0x0,0x0,0x56,0x35,0xaa,0x60,0x0,0x0,0x0,0x0,0x56,0xe5,0xf,0xf0,0x0,0x0, - 0x0,0x0,0x58,0x1e,0xc6,0xe0,0x0,0x0,0x0,0x0,0x58,0xc4,0xf1,0xf0,0x0,0x0, - 0x0,0x0,0x59,0xfe,0xa8,0xe0,0x0,0x0,0x0,0x0,0x5a,0xa4,0xd3,0xf0,0x0,0x0, - 0x0,0x0,0x5b,0xde,0x8a,0xe0,0x0,0x0,0x0,0x0,0x5c,0x84,0xb5,0xf0,0x0,0x0, - 0x0,0x0,0x5d,0xbe,0x6c,0xe0,0x0,0x0,0x0,0x0,0x5e,0x64,0x97,0xf0,0x0,0x0, - 0x0,0x0,0x5f,0x9e,0x4e,0xe0,0x0,0x0,0x0,0x0,0x60,0x4d,0xb4,0x70,0x0,0x0, - 0x0,0x0,0x61,0x87,0x6b,0x60,0x0,0x0,0x0,0x0,0x62,0x2d,0x96,0x70,0x0,0x0, - 0x0,0x0,0x63,0x67,0x4d,0x60,0x0,0x0,0x0,0x0,0x64,0xd,0x78,0x70,0x0,0x0, - 0x0,0x0,0x65,0x47,0x2f,0x60,0x0,0x0,0x0,0x0,0x65,0xed,0x5a,0x70,0x0,0x0, - 0x0,0x0,0x67,0x27,0x11,0x60,0x0,0x0,0x0,0x0,0x67,0xcd,0x3c,0x70,0x0,0x0, - 0x0,0x0,0x69,0x6,0xf3,0x60,0x0,0x0,0x0,0x0,0x69,0xad,0x1e,0x70,0x0,0x0, - 0x0,0x0,0x6a,0xe6,0xd5,0x60,0x0,0x0,0x0,0x0,0x6b,0x96,0x3a,0xf0,0x0,0x0, - 0x0,0x0,0x6c,0xcf,0xf1,0xe0,0x0,0x0,0x0,0x0,0x6d,0x76,0x1c,0xf0,0x0,0x0, - 0x0,0x0,0x6e,0xaf,0xd3,0xe0,0x0,0x0,0x0,0x0,0x6f,0x55,0xfe,0xf0,0x0,0x0, - 0x0,0x0,0x70,0x8f,0xb5,0xe0,0x0,0x0,0x0,0x0,0x71,0x35,0xe0,0xf0,0x0,0x0, - 0x0,0x0,0x72,0x6f,0x97,0xe0,0x0,0x0,0x0,0x0,0x73,0x15,0xc2,0xf0,0x0,0x0, - 0x0,0x0,0x74,0x4f,0x79,0xe0,0x0,0x0,0x0,0x0,0x74,0xfe,0xdf,0x70,0x0,0x0, - 0x0,0x0,0x76,0x38,0x96,0x60,0x0,0x0,0x0,0x0,0x76,0xde,0xc1,0x70,0x0,0x0, - 0x0,0x0,0x78,0x18,0x78,0x60,0x0,0x0,0x0,0x0,0x78,0xbe,0xa3,0x70,0x0,0x0, - 0x0,0x0,0x79,0xf8,0x5a,0x60,0x0,0x0,0x0,0x0,0x7a,0x9e,0x85,0x70,0x0,0x0, - 0x0,0x0,0x7b,0xd8,0x3c,0x60,0x0,0x0,0x0,0x0,0x7c,0x7e,0x67,0x70,0x0,0x0, - 0x0,0x0,0x7d,0xb8,0x1e,0x60,0x0,0x0,0x0,0x0,0x7e,0x5e,0x49,0x70,0x0,0x0, - 0x0,0x0,0x7f,0x98,0x0,0x60,0x0,0x2,0x1,0x2,0x1,0x3,0x4,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff, - 0xad,0x40,0x0,0x0,0xff,0xff,0xc7,0xc0,0x1,0x4,0xff,0xff,0xb9,0xb0,0x0,0x8, - 0xff,0xff,0xc7,0xc0,0x1,0xc,0xff,0xff,0xc7,0xc0,0x1,0x10,0x4c,0x4d,0x54,0x0, - 0x45,0x44,0x54,0x0,0x45,0x53,0x54,0x0,0x45,0x57,0x54,0x0,0x45,0x50,0x54,0x0, - 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x1,0xa,0x45,0x53,0x54,0x35,0x45, - 0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e, - 0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Fort_Nelson - 0x0,0x0,0x8,0xc9, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x8f,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x80,0x0,0x0,0x0,0x9e, - 0xb8,0xbd,0xa0,0x9f,0xbb,0x15,0x90,0xcb,0x89,0x1a,0xa0,0xd2,0x23,0xf4,0x70,0xd2, - 0x61,0x26,0x10,0xd5,0x55,0xf1,0x20,0xd6,0x20,0xea,0x10,0xd7,0x35,0xd3,0x20,0xd8, - 0x0,0xcc,0x10,0xd9,0x15,0xb5,0x20,0xd9,0xe0,0xae,0x10,0xda,0xfe,0xd1,0xa0,0xdb, - 0xc0,0x90,0x10,0xdc,0xde,0xb3,0xa0,0xdd,0xa9,0xac,0x90,0xde,0xbe,0x95,0xa0,0xdf, - 0x89,0x8e,0x90,0xe0,0x9e,0x77,0xa0,0xe1,0x69,0x70,0x90,0xe2,0x7e,0x59,0xa0,0xe3, - 0x49,0x52,0x90,0xe4,0x5e,0x3b,0xa0,0xe5,0x29,0x34,0x90,0xe6,0x47,0x58,0x20,0xe7, - 0x12,0x51,0x10,0xe8,0x27,0x3a,0x20,0xe8,0xf2,0x33,0x10,0xea,0x7,0x1c,0x20,0xea, - 0xd2,0x15,0x10,0xeb,0xe6,0xfe,0x20,0xec,0xb1,0xf7,0x10,0xed,0xc6,0xe0,0x20,0xee, - 0x91,0xd9,0x10,0xef,0xaf,0xfc,0xa0,0xf0,0x71,0xbb,0x10,0xf1,0x8f,0xde,0xa0,0xf2, - 0x7f,0xc1,0x90,0xf3,0x6f,0xc0,0xa0,0xf4,0x5f,0xa3,0x90,0xf5,0x4f,0xa2,0xa0,0xf6, - 0x3f,0x85,0x90,0xf7,0x2f,0x84,0xa0,0xf8,0x28,0xa2,0x10,0xf9,0xf,0x66,0xa0,0xfa, - 0x8,0x84,0x10,0xfa,0xf8,0x83,0x20,0xfb,0xe8,0x66,0x10,0xfc,0xd8,0x65,0x20,0xfd, - 0xc8,0x48,0x10,0xfe,0xb8,0x47,0x20,0xff,0xa8,0x2a,0x10,0x0,0x98,0x29,0x20,0x1, - 0x88,0xc,0x10,0x2,0x78,0xb,0x20,0x3,0x71,0x28,0x90,0x4,0x61,0x27,0xa0,0x5, - 0x51,0xa,0x90,0x6,0x41,0x9,0xa0,0x7,0x30,0xec,0x90,0x8,0x20,0xeb,0xa0,0x9, - 0x10,0xce,0x90,0xa,0x0,0xcd,0xa0,0xa,0xf0,0xb0,0x90,0xb,0xe0,0xaf,0xa0,0xc, - 0xd9,0xcd,0x10,0xd,0xc0,0x91,0xa0,0xe,0xb9,0xaf,0x10,0xf,0xa9,0xae,0x20,0x10, - 0x99,0x91,0x10,0x11,0x89,0x90,0x20,0x12,0x79,0x73,0x10,0x13,0x69,0x72,0x20,0x14, - 0x59,0x55,0x10,0x15,0x49,0x54,0x20,0x16,0x39,0x37,0x10,0x17,0x29,0x36,0x20,0x18, - 0x22,0x53,0x90,0x19,0x9,0x18,0x20,0x1a,0x2,0x35,0x90,0x1a,0xf2,0x34,0xa0,0x1b, - 0xe2,0x17,0x90,0x1c,0xd2,0x16,0xa0,0x1d,0xc1,0xf9,0x90,0x1e,0xb1,0xf8,0xa0,0x1f, - 0xa1,0xdb,0x90,0x20,0x76,0x2b,0x20,0x21,0x81,0xbd,0x90,0x22,0x56,0xd,0x20,0x23, - 0x6a,0xda,0x10,0x24,0x35,0xef,0x20,0x25,0x4a,0xbc,0x10,0x26,0x15,0xd1,0x20,0x27, - 0x2a,0x9e,0x10,0x27,0xfe,0xed,0xa0,0x29,0xa,0x80,0x10,0x29,0xde,0xcf,0xa0,0x2a, - 0xea,0x62,0x10,0x2b,0xbe,0xb1,0xa0,0x2c,0xd3,0x7e,0x90,0x2d,0x9e,0x93,0xa0,0x2e, - 0xb3,0x60,0x90,0x2f,0x7e,0x75,0xa0,0x30,0x93,0x42,0x90,0x31,0x67,0x92,0x20,0x32, - 0x73,0x24,0x90,0x33,0x47,0x74,0x20,0x34,0x53,0x6,0x90,0x35,0x27,0x56,0x20,0x36, - 0x32,0xe8,0x90,0x37,0x7,0x38,0x20,0x38,0x1c,0x5,0x10,0x38,0xe7,0x1a,0x20,0x39, - 0xfb,0xe7,0x10,0x3a,0xc6,0xfc,0x20,0x3b,0xdb,0xc9,0x10,0x3c,0xb0,0x18,0xa0,0x3d, - 0xbb,0xab,0x10,0x3e,0x8f,0xfa,0xa0,0x3f,0x9b,0x8d,0x10,0x40,0x6f,0xdc,0xa0,0x41, - 0x84,0xa9,0x90,0x42,0x4f,0xbe,0xa0,0x43,0x64,0x8b,0x90,0x44,0x2f,0xa0,0xa0,0x45, - 0x44,0x6d,0x90,0x45,0xf3,0xd3,0x20,0x47,0x2d,0x8a,0x10,0x47,0xd3,0xb5,0x20,0x49, - 0xd,0x6c,0x10,0x49,0xb3,0x97,0x20,0x4a,0xed,0x4e,0x10,0x4b,0x9c,0xb3,0xa0,0x4c, - 0xd6,0x6a,0x90,0x4d,0x7c,0x95,0xa0,0x4e,0xb6,0x4c,0x90,0x4f,0x5c,0x77,0xa0,0x50, - 0x96,0x2e,0x90,0x51,0x3c,0x59,0xa0,0x52,0x76,0x10,0x90,0x53,0x1c,0x3b,0xa0,0x54, - 0x55,0xf2,0x90,0x54,0xfc,0x1d,0xa0,0x2,0x1,0x2,0x3,0x4,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x5e,0x49,0x70,0x7f,0x98,0x0,0x60,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4, 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x5,0xff,0xff,0x8c,0xf9,0x0,0x0,0xff,0xff,0x9d,0x90, - 0x1,0x4,0xff,0xff,0x8f,0x80,0x0,0x8,0xff,0xff,0x9d,0x90,0x1,0xc,0xff,0xff, - 0x9d,0x90,0x1,0x10,0xff,0xff,0x9d,0x90,0x0,0x14,0x4c,0x4d,0x54,0x0,0x50,0x44, - 0x54,0x0,0x50,0x53,0x54,0x0,0x50,0x57,0x54,0x0,0x50,0x50,0x54,0x0,0x4d,0x53, - 0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x54,0x5a, + 0x2,0x1,0x2,0x5,0x2,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0xff,0xff,0xaf,0x3a,0x0,0x0, + 0xff,0xff,0xb9,0xb0,0x1,0x4,0xff,0xff,0xab,0xa0,0x0,0x8,0xff,0xff,0xb9,0xb0, + 0x1,0xc,0xff,0xff,0xb9,0xb0,0x1,0x10,0xff,0xff,0xb9,0xb0,0x0,0x14,0xff,0xff, + 0xc7,0xc0,0x1,0x18,0x4c,0x4d,0x54,0x0,0x43,0x44,0x54,0x0,0x43,0x53,0x54,0x0, + 0x43,0x57,0x54,0x0,0x43,0x50,0x54,0x0,0x45,0x53,0x54,0x0,0x45,0x44,0x54,0x0, + 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x54,0x5a, 0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x90,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0xf8,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xff,0xff,0xff,0xff,0x5e,0x3d,0x76,0x87,0xff,0xff,0xff,0xff,0x9e,0xb8, - 0xbd,0xa0,0xff,0xff,0xff,0xff,0x9f,0xbb,0x15,0x90,0xff,0xff,0xff,0xff,0xcb,0x89, - 0x1a,0xa0,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x61, - 0x26,0x10,0xff,0xff,0xff,0xff,0xd5,0x55,0xf1,0x20,0xff,0xff,0xff,0xff,0xd6,0x20, - 0xea,0x10,0xff,0xff,0xff,0xff,0xd7,0x35,0xd3,0x20,0xff,0xff,0xff,0xff,0xd8,0x0, - 0xcc,0x10,0xff,0xff,0xff,0xff,0xd9,0x15,0xb5,0x20,0xff,0xff,0xff,0xff,0xd9,0xe0, - 0xae,0x10,0xff,0xff,0xff,0xff,0xda,0xfe,0xd1,0xa0,0xff,0xff,0xff,0xff,0xdb,0xc0, - 0x90,0x10,0xff,0xff,0xff,0xff,0xdc,0xde,0xb3,0xa0,0xff,0xff,0xff,0xff,0xdd,0xa9, - 0xac,0x90,0xff,0xff,0xff,0xff,0xde,0xbe,0x95,0xa0,0xff,0xff,0xff,0xff,0xdf,0x89, - 0x8e,0x90,0xff,0xff,0xff,0xff,0xe0,0x9e,0x77,0xa0,0xff,0xff,0xff,0xff,0xe1,0x69, - 0x70,0x90,0xff,0xff,0xff,0xff,0xe2,0x7e,0x59,0xa0,0xff,0xff,0xff,0xff,0xe3,0x49, - 0x52,0x90,0xff,0xff,0xff,0xff,0xe4,0x5e,0x3b,0xa0,0xff,0xff,0xff,0xff,0xe5,0x29, - 0x34,0x90,0xff,0xff,0xff,0xff,0xe6,0x47,0x58,0x20,0xff,0xff,0xff,0xff,0xe7,0x12, - 0x51,0x10,0xff,0xff,0xff,0xff,0xe8,0x27,0x3a,0x20,0xff,0xff,0xff,0xff,0xe8,0xf2, - 0x33,0x10,0xff,0xff,0xff,0xff,0xea,0x7,0x1c,0x20,0xff,0xff,0xff,0xff,0xea,0xd2, - 0x15,0x10,0xff,0xff,0xff,0xff,0xeb,0xe6,0xfe,0x20,0xff,0xff,0xff,0xff,0xec,0xb1, - 0xf7,0x10,0xff,0xff,0xff,0xff,0xed,0xc6,0xe0,0x20,0xff,0xff,0xff,0xff,0xee,0x91, - 0xd9,0x10,0xff,0xff,0xff,0xff,0xef,0xaf,0xfc,0xa0,0xff,0xff,0xff,0xff,0xf0,0x71, - 0xbb,0x10,0xff,0xff,0xff,0xff,0xf1,0x8f,0xde,0xa0,0xff,0xff,0xff,0xff,0xf2,0x7f, - 0xc1,0x90,0xff,0xff,0xff,0xff,0xf3,0x6f,0xc0,0xa0,0xff,0xff,0xff,0xff,0xf4,0x5f, - 0xa3,0x90,0xff,0xff,0xff,0xff,0xf5,0x4f,0xa2,0xa0,0xff,0xff,0xff,0xff,0xf6,0x3f, - 0x85,0x90,0xff,0xff,0xff,0xff,0xf7,0x2f,0x84,0xa0,0xff,0xff,0xff,0xff,0xf8,0x28, - 0xa2,0x10,0xff,0xff,0xff,0xff,0xf9,0xf,0x66,0xa0,0xff,0xff,0xff,0xff,0xfa,0x8, - 0x84,0x10,0xff,0xff,0xff,0xff,0xfa,0xf8,0x83,0x20,0xff,0xff,0xff,0xff,0xfb,0xe8, - 0x66,0x10,0xff,0xff,0xff,0xff,0xfc,0xd8,0x65,0x20,0xff,0xff,0xff,0xff,0xfd,0xc8, - 0x48,0x10,0xff,0xff,0xff,0xff,0xfe,0xb8,0x47,0x20,0xff,0xff,0xff,0xff,0xff,0xa8, - 0x2a,0x10,0x0,0x0,0x0,0x0,0x0,0x98,0x29,0x20,0x0,0x0,0x0,0x0,0x1,0x88, - 0xc,0x10,0x0,0x0,0x0,0x0,0x2,0x78,0xb,0x20,0x0,0x0,0x0,0x0,0x3,0x71, - 0x28,0x90,0x0,0x0,0x0,0x0,0x4,0x61,0x27,0xa0,0x0,0x0,0x0,0x0,0x5,0x51, - 0xa,0x90,0x0,0x0,0x0,0x0,0x6,0x41,0x9,0xa0,0x0,0x0,0x0,0x0,0x7,0x30, - 0xec,0x90,0x0,0x0,0x0,0x0,0x8,0x20,0xeb,0xa0,0x0,0x0,0x0,0x0,0x9,0x10, - 0xce,0x90,0x0,0x0,0x0,0x0,0xa,0x0,0xcd,0xa0,0x0,0x0,0x0,0x0,0xa,0xf0, - 0xb0,0x90,0x0,0x0,0x0,0x0,0xb,0xe0,0xaf,0xa0,0x0,0x0,0x0,0x0,0xc,0xd9, - 0xcd,0x10,0x0,0x0,0x0,0x0,0xd,0xc0,0x91,0xa0,0x0,0x0,0x0,0x0,0xe,0xb9, - 0xaf,0x10,0x0,0x0,0x0,0x0,0xf,0xa9,0xae,0x20,0x0,0x0,0x0,0x0,0x10,0x99, - 0x91,0x10,0x0,0x0,0x0,0x0,0x11,0x89,0x90,0x20,0x0,0x0,0x0,0x0,0x12,0x79, - 0x73,0x10,0x0,0x0,0x0,0x0,0x13,0x69,0x72,0x20,0x0,0x0,0x0,0x0,0x14,0x59, - 0x55,0x10,0x0,0x0,0x0,0x0,0x15,0x49,0x54,0x20,0x0,0x0,0x0,0x0,0x16,0x39, - 0x37,0x10,0x0,0x0,0x0,0x0,0x17,0x29,0x36,0x20,0x0,0x0,0x0,0x0,0x18,0x22, - 0x53,0x90,0x0,0x0,0x0,0x0,0x19,0x9,0x18,0x20,0x0,0x0,0x0,0x0,0x1a,0x2, - 0x35,0x90,0x0,0x0,0x0,0x0,0x1a,0xf2,0x34,0xa0,0x0,0x0,0x0,0x0,0x1b,0xe2, - 0x17,0x90,0x0,0x0,0x0,0x0,0x1c,0xd2,0x16,0xa0,0x0,0x0,0x0,0x0,0x1d,0xc1, - 0xf9,0x90,0x0,0x0,0x0,0x0,0x1e,0xb1,0xf8,0xa0,0x0,0x0,0x0,0x0,0x1f,0xa1, - 0xdb,0x90,0x0,0x0,0x0,0x0,0x20,0x76,0x2b,0x20,0x0,0x0,0x0,0x0,0x21,0x81, - 0xbd,0x90,0x0,0x0,0x0,0x0,0x22,0x56,0xd,0x20,0x0,0x0,0x0,0x0,0x23,0x6a, - 0xda,0x10,0x0,0x0,0x0,0x0,0x24,0x35,0xef,0x20,0x0,0x0,0x0,0x0,0x25,0x4a, - 0xbc,0x10,0x0,0x0,0x0,0x0,0x26,0x15,0xd1,0x20,0x0,0x0,0x0,0x0,0x27,0x2a, - 0x9e,0x10,0x0,0x0,0x0,0x0,0x27,0xfe,0xed,0xa0,0x0,0x0,0x0,0x0,0x29,0xa, - 0x80,0x10,0x0,0x0,0x0,0x0,0x29,0xde,0xcf,0xa0,0x0,0x0,0x0,0x0,0x2a,0xea, - 0x62,0x10,0x0,0x0,0x0,0x0,0x2b,0xbe,0xb1,0xa0,0x0,0x0,0x0,0x0,0x2c,0xd3, - 0x7e,0x90,0x0,0x0,0x0,0x0,0x2d,0x9e,0x93,0xa0,0x0,0x0,0x0,0x0,0x2e,0xb3, - 0x60,0x90,0x0,0x0,0x0,0x0,0x2f,0x7e,0x75,0xa0,0x0,0x0,0x0,0x0,0x30,0x93, - 0x42,0x90,0x0,0x0,0x0,0x0,0x31,0x67,0x92,0x20,0x0,0x0,0x0,0x0,0x32,0x73, - 0x24,0x90,0x0,0x0,0x0,0x0,0x33,0x47,0x74,0x20,0x0,0x0,0x0,0x0,0x34,0x53, - 0x6,0x90,0x0,0x0,0x0,0x0,0x35,0x27,0x56,0x20,0x0,0x0,0x0,0x0,0x36,0x32, - 0xe8,0x90,0x0,0x0,0x0,0x0,0x37,0x7,0x38,0x20,0x0,0x0,0x0,0x0,0x38,0x1c, - 0x5,0x10,0x0,0x0,0x0,0x0,0x38,0xe7,0x1a,0x20,0x0,0x0,0x0,0x0,0x39,0xfb, - 0xe7,0x10,0x0,0x0,0x0,0x0,0x3a,0xc6,0xfc,0x20,0x0,0x0,0x0,0x0,0x3b,0xdb, - 0xc9,0x10,0x0,0x0,0x0,0x0,0x3c,0xb0,0x18,0xa0,0x0,0x0,0x0,0x0,0x3d,0xbb, - 0xab,0x10,0x0,0x0,0x0,0x0,0x3e,0x8f,0xfa,0xa0,0x0,0x0,0x0,0x0,0x3f,0x9b, - 0x8d,0x10,0x0,0x0,0x0,0x0,0x40,0x6f,0xdc,0xa0,0x0,0x0,0x0,0x0,0x41,0x84, - 0xa9,0x90,0x0,0x0,0x0,0x0,0x42,0x4f,0xbe,0xa0,0x0,0x0,0x0,0x0,0x43,0x64, - 0x8b,0x90,0x0,0x0,0x0,0x0,0x44,0x2f,0xa0,0xa0,0x0,0x0,0x0,0x0,0x45,0x44, - 0x6d,0x90,0x0,0x0,0x0,0x0,0x45,0xf3,0xd3,0x20,0x0,0x0,0x0,0x0,0x47,0x2d, - 0x8a,0x10,0x0,0x0,0x0,0x0,0x47,0xd3,0xb5,0x20,0x0,0x0,0x0,0x0,0x49,0xd, - 0x6c,0x10,0x0,0x0,0x0,0x0,0x49,0xb3,0x97,0x20,0x0,0x0,0x0,0x0,0x4a,0xed, - 0x4e,0x10,0x0,0x0,0x0,0x0,0x4b,0x9c,0xb3,0xa0,0x0,0x0,0x0,0x0,0x4c,0xd6, - 0x6a,0x90,0x0,0x0,0x0,0x0,0x4d,0x7c,0x95,0xa0,0x0,0x0,0x0,0x0,0x4e,0xb6, - 0x4c,0x90,0x0,0x0,0x0,0x0,0x4f,0x5c,0x77,0xa0,0x0,0x0,0x0,0x0,0x50,0x96, - 0x2e,0x90,0x0,0x0,0x0,0x0,0x51,0x3c,0x59,0xa0,0x0,0x0,0x0,0x0,0x52,0x76, - 0x10,0x90,0x0,0x0,0x0,0x0,0x53,0x1c,0x3b,0xa0,0x0,0x0,0x0,0x0,0x54,0x55, - 0xf2,0x90,0x0,0x0,0x0,0x0,0x54,0xfc,0x1d,0xa0,0x0,0x2,0x1,0x2,0x3,0x4, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x5,0xff,0xff,0x8c,0xf9,0x0,0x0, - 0xff,0xff,0x9d,0x90,0x1,0x4,0xff,0xff,0x8f,0x80,0x0,0x8,0xff,0xff,0x9d,0x90, - 0x1,0xc,0xff,0xff,0x9d,0x90,0x1,0x10,0xff,0xff,0x9d,0x90,0x0,0x14,0x4c,0x4d, - 0x54,0x0,0x50,0x44,0x54,0x0,0x50,0x53,0x54,0x0,0x50,0x57,0x54,0x0,0x50,0x50, - 0x54,0x0,0x4d,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, - 0x1,0x0,0xa,0x4d,0x53,0x54,0x37,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Lower_Princes - 0x0,0x0,0x0,0xd0, + 0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x64,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x1c,0xf8,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xff,0xff,0xff,0xff,0x5e,0x3,0xfe,0xa0,0xff,0xff,0xff,0xff,0x9e,0xa6, + 0x2c,0x80,0xff,0xff,0xff,0xff,0x9f,0xba,0xf9,0x70,0xff,0xff,0xff,0xff,0xa0,0x86, + 0xe,0x80,0xff,0xff,0xff,0xff,0xa1,0x9a,0xdb,0x70,0xff,0xff,0xff,0xff,0xca,0x57, + 0x22,0x80,0xff,0xff,0xff,0xff,0xca,0xd8,0x47,0x70,0xff,0xff,0xff,0xff,0xcb,0x88, + 0xfe,0x80,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x61, + 0x9,0xf0,0xff,0xff,0xff,0xff,0xd3,0x75,0xf3,0x0,0xff,0xff,0xff,0xff,0xd4,0x40, + 0xeb,0xf0,0xff,0xff,0xff,0xff,0xd5,0x55,0xd5,0x0,0xff,0xff,0xff,0xff,0xd6,0x20, + 0xcd,0xf0,0xff,0xff,0xff,0xff,0xd7,0x35,0xb7,0x0,0xff,0xff,0xff,0xff,0xd8,0x0, + 0xaf,0xf0,0xff,0xff,0xff,0xff,0xd9,0x15,0x99,0x0,0xff,0xff,0xff,0xff,0xd9,0xe0, + 0x91,0xf0,0xff,0xff,0xff,0xff,0xda,0xfe,0xb5,0x80,0xff,0xff,0xff,0xff,0xdb,0xc0, + 0x73,0xf0,0xff,0xff,0xff,0xff,0xdc,0xde,0x97,0x80,0xff,0xff,0xff,0xff,0xdd,0xa9, + 0x90,0x70,0xff,0xff,0xff,0xff,0xde,0xbe,0x79,0x80,0xff,0xff,0xff,0xff,0xdf,0x89, + 0x72,0x70,0xff,0xff,0xff,0xff,0xe0,0x9e,0x5b,0x80,0xff,0xff,0xff,0xff,0xe1,0x69, + 0x54,0x70,0xff,0xff,0xff,0xff,0xe2,0x7e,0x3d,0x80,0xff,0xff,0xff,0xff,0xe3,0x49, + 0x36,0x70,0xff,0xff,0xff,0xff,0xe4,0x5e,0x1f,0x80,0xff,0xff,0xff,0xff,0xe8,0xf2, + 0x16,0xf0,0xff,0xff,0xff,0xff,0xea,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0xfe,0xb8, + 0x1c,0xf0,0xff,0xff,0xff,0xff,0xff,0xa7,0xff,0xe0,0x0,0x0,0x0,0x0,0x0,0x97, + 0xfe,0xf0,0x0,0x0,0x0,0x0,0x1,0x87,0xe1,0xe0,0x0,0x0,0x0,0x0,0x44,0x2f, + 0x76,0x70,0x0,0x0,0x0,0x0,0x45,0x44,0x43,0x60,0x0,0x0,0x0,0x0,0x45,0xf3, + 0xa8,0xf0,0x0,0x0,0x0,0x0,0x47,0x2d,0x5f,0xe0,0x0,0x0,0x0,0x0,0x47,0xd3, + 0x8a,0xf0,0x0,0x0,0x0,0x0,0x49,0xd,0x41,0xe0,0x0,0x0,0x0,0x0,0x49,0xb3, + 0x6c,0xf0,0x0,0x0,0x0,0x0,0x4a,0xed,0x23,0xe0,0x0,0x0,0x0,0x0,0x4b,0x9c, + 0x89,0x70,0x0,0x0,0x0,0x0,0x4c,0xd6,0x40,0x60,0x0,0x0,0x0,0x0,0x4d,0x7c, + 0x6b,0x70,0x0,0x0,0x0,0x0,0x4e,0xb6,0x22,0x60,0x0,0x0,0x0,0x0,0x4f,0x5c, + 0x4d,0x70,0x0,0x0,0x0,0x0,0x50,0x96,0x4,0x60,0x0,0x0,0x0,0x0,0x51,0x3c, + 0x2f,0x70,0x0,0x0,0x0,0x0,0x52,0x75,0xe6,0x60,0x0,0x0,0x0,0x0,0x53,0x1c, + 0x11,0x70,0x0,0x0,0x0,0x0,0x54,0x55,0xc8,0x60,0x0,0x0,0x0,0x0,0x54,0xfb, + 0xf3,0x70,0x0,0x0,0x0,0x0,0x56,0x35,0xaa,0x60,0x0,0x0,0x0,0x0,0x56,0xe5, + 0xf,0xf0,0x0,0x0,0x0,0x0,0x58,0x1e,0xc6,0xe0,0x0,0x0,0x0,0x0,0x58,0xc4, + 0xf1,0xf0,0x0,0x0,0x0,0x0,0x59,0xfe,0xa8,0xe0,0x0,0x0,0x0,0x0,0x5a,0xa4, + 0xd3,0xf0,0x0,0x0,0x0,0x0,0x5b,0xde,0x8a,0xe0,0x0,0x0,0x0,0x0,0x5c,0x84, + 0xb5,0xf0,0x0,0x0,0x0,0x0,0x5d,0xbe,0x6c,0xe0,0x0,0x0,0x0,0x0,0x5e,0x64, + 0x97,0xf0,0x0,0x0,0x0,0x0,0x5f,0x9e,0x4e,0xe0,0x0,0x0,0x0,0x0,0x60,0x4d, + 0xb4,0x70,0x0,0x0,0x0,0x0,0x61,0x87,0x6b,0x60,0x0,0x0,0x0,0x0,0x62,0x2d, + 0x96,0x70,0x0,0x0,0x0,0x0,0x63,0x67,0x4d,0x60,0x0,0x0,0x0,0x0,0x64,0xd, + 0x78,0x70,0x0,0x0,0x0,0x0,0x65,0x47,0x2f,0x60,0x0,0x0,0x0,0x0,0x65,0xed, + 0x5a,0x70,0x0,0x0,0x0,0x0,0x67,0x27,0x11,0x60,0x0,0x0,0x0,0x0,0x67,0xcd, + 0x3c,0x70,0x0,0x0,0x0,0x0,0x69,0x6,0xf3,0x60,0x0,0x0,0x0,0x0,0x69,0xad, + 0x1e,0x70,0x0,0x0,0x0,0x0,0x6a,0xe6,0xd5,0x60,0x0,0x0,0x0,0x0,0x6b,0x96, + 0x3a,0xf0,0x0,0x0,0x0,0x0,0x6c,0xcf,0xf1,0xe0,0x0,0x0,0x0,0x0,0x6d,0x76, + 0x1c,0xf0,0x0,0x0,0x0,0x0,0x6e,0xaf,0xd3,0xe0,0x0,0x0,0x0,0x0,0x6f,0x55, + 0xfe,0xf0,0x0,0x0,0x0,0x0,0x70,0x8f,0xb5,0xe0,0x0,0x0,0x0,0x0,0x71,0x35, + 0xe0,0xf0,0x0,0x0,0x0,0x0,0x72,0x6f,0x97,0xe0,0x0,0x0,0x0,0x0,0x73,0x15, + 0xc2,0xf0,0x0,0x0,0x0,0x0,0x74,0x4f,0x79,0xe0,0x0,0x0,0x0,0x0,0x74,0xfe, + 0xdf,0x70,0x0,0x0,0x0,0x0,0x76,0x38,0x96,0x60,0x0,0x0,0x0,0x0,0x76,0xde, + 0xc1,0x70,0x0,0x0,0x0,0x0,0x78,0x18,0x78,0x60,0x0,0x0,0x0,0x0,0x78,0xbe, + 0xa3,0x70,0x0,0x0,0x0,0x0,0x79,0xf8,0x5a,0x60,0x0,0x0,0x0,0x0,0x7a,0x9e, + 0x85,0x70,0x0,0x0,0x0,0x0,0x7b,0xd8,0x3c,0x60,0x0,0x0,0x0,0x0,0x7c,0x7e, + 0x67,0x70,0x0,0x0,0x0,0x0,0x7d,0xb8,0x1e,0x60,0x0,0x0,0x0,0x0,0x7e,0x5e, + 0x49,0x70,0x0,0x0,0x0,0x0,0x7f,0x98,0x0,0x60,0x0,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x3,0x4,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x5,0x2,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0xff,0xff, + 0xaf,0x3a,0x0,0x0,0xff,0xff,0xb9,0xb0,0x1,0x4,0xff,0xff,0xab,0xa0,0x0,0x8, + 0xff,0xff,0xb9,0xb0,0x1,0xc,0xff,0xff,0xb9,0xb0,0x1,0x10,0xff,0xff,0xb9,0xb0, + 0x0,0x14,0xff,0xff,0xc7,0xc0,0x1,0x18,0x4c,0x4d,0x54,0x0,0x43,0x44,0x54,0x0, + 0x43,0x53,0x54,0x0,0x43,0x57,0x54,0x0,0x43,0x50,0x54,0x0,0x45,0x53,0x54,0x0, + 0x45,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1, + 0x0,0x0,0xa,0x45,0x53,0x54,0x35,0x45,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e, + 0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Rosario + 0x0,0x0,0x4,0x55, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0x93, - 0x1e,0x2e,0x23,0xf6,0x98,0xec,0x48,0x0,0x1,0x2,0xff,0xff,0xbf,0x5d,0x0,0x0, - 0xff,0xff,0xc0,0xb8,0x0,0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0x4c,0x4d,0x54,0x0, - 0x41,0x4e,0x54,0x0,0x41,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a, - 0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0xf8,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xff,0xff,0xff,0xff,0x93,0x1e,0x2e,0x23,0xff,0xff,0xff,0xff,0xf6,0x98, - 0xec,0x48,0x0,0x1,0x2,0xff,0xff,0xbf,0x5d,0x0,0x0,0xff,0xff,0xc0,0xb8,0x0, - 0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x41,0x4e,0x54,0x0,0x41, - 0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x41,0x53,0x54,0x34,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Denver - 0x0,0x0,0x9,0x95, + 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3e,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0xa2, + 0x92,0x8f,0x30,0xb6,0x7b,0x52,0x40,0xb7,0x1a,0xc9,0xb0,0xb8,0x1e,0x8f,0x40,0xb8, + 0xd4,0x70,0x30,0xba,0x17,0x7d,0xc0,0xba,0xb5,0xa3,0xb0,0xbb,0xf8,0xb1,0x40,0xbc, + 0x96,0xd7,0x30,0xbd,0xd9,0xe4,0xc0,0xbe,0x78,0xa,0xb0,0xbf,0xbb,0x18,0x40,0xc0, + 0x5a,0x8f,0xb0,0xc1,0x9d,0x9d,0x40,0xc2,0x3b,0xc3,0x30,0xc3,0x7e,0xd0,0xc0,0xc4, + 0x1c,0xf6,0xb0,0xc5,0x60,0x4,0x40,0xc5,0xfe,0x2a,0x30,0xc7,0x41,0x37,0xc0,0xc7, + 0xe0,0xaf,0x30,0xc8,0x81,0x94,0x40,0xca,0x4d,0xa1,0xb0,0xca,0xee,0x86,0xc0,0xce, + 0x4d,0xff,0x30,0xce,0xb0,0xed,0xc0,0xd3,0x29,0x35,0xb0,0xd4,0x43,0x64,0xc0,0xf4, + 0x3d,0x8,0x30,0xf4,0x9f,0xf6,0xc0,0xf5,0x5,0x6c,0x30,0xf6,0x32,0x10,0x40,0xf6, + 0xe6,0x9f,0xb0,0xf8,0x13,0x43,0xc0,0xf8,0xc7,0xd3,0x30,0xf9,0xf4,0x77,0x40,0xfa, + 0xd3,0x36,0xb0,0xfb,0xc3,0x35,0xc0,0xfc,0xbc,0x53,0x30,0xfd,0xac,0x52,0x40,0xfe, + 0x9c,0x35,0x30,0xff,0x8c,0x34,0x40,0x7,0xa3,0x4a,0xb0,0x8,0x24,0x6f,0xa0,0x23, + 0x94,0xb5,0xb0,0x24,0x10,0x94,0xa0,0x25,0x37,0xf2,0xb0,0x25,0xf0,0x76,0xa0,0x27, + 0x21,0xf,0x30,0x27,0xd0,0x58,0xa0,0x29,0x0,0xff,0x40,0x29,0xb0,0x3a,0xa0,0x2a, + 0xe0,0xd3,0x30,0x2b,0x99,0x57,0x20,0x37,0xf6,0xc6,0xb0,0x38,0xbf,0x2a,0xb0,0x47, + 0x77,0x9,0xb0,0x47,0xdc,0x7f,0x20,0x48,0xfa,0xa2,0xb0,0x49,0xbc,0x61,0x20,0x7f, + 0xff,0xff,0xff,0x1,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x2,0x4,0x5,0x4,0x5,0x3,0x5,0x4,0x5,0x4,0x5, + 0x5,0xff,0xff,0xc3,0xd0,0x0,0x0,0xff,0xff,0xc3,0xd0,0x0,0x4,0xff,0xff,0xc7, + 0xc0,0x0,0x8,0xff,0xff,0xd5,0xd0,0x1,0xc,0xff,0xff,0xe3,0xe0,0x1,0x10,0xff, + 0xff,0xd5,0xd0,0x0,0xc,0x4c,0x4d,0x54,0x0,0x43,0x4d,0x54,0x0,0x2d,0x30,0x34, + 0x0,0x2d,0x30,0x33,0x0,0x2d,0x30,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x14,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x72,0x9c,0xad, + 0xb0,0xff,0xff,0xff,0xff,0xa2,0x92,0x8f,0x30,0xff,0xff,0xff,0xff,0xb6,0x7b,0x52, + 0x40,0xff,0xff,0xff,0xff,0xb7,0x1a,0xc9,0xb0,0xff,0xff,0xff,0xff,0xb8,0x1e,0x8f, + 0x40,0xff,0xff,0xff,0xff,0xb8,0xd4,0x70,0x30,0xff,0xff,0xff,0xff,0xba,0x17,0x7d, + 0xc0,0xff,0xff,0xff,0xff,0xba,0xb5,0xa3,0xb0,0xff,0xff,0xff,0xff,0xbb,0xf8,0xb1, + 0x40,0xff,0xff,0xff,0xff,0xbc,0x96,0xd7,0x30,0xff,0xff,0xff,0xff,0xbd,0xd9,0xe4, + 0xc0,0xff,0xff,0xff,0xff,0xbe,0x78,0xa,0xb0,0xff,0xff,0xff,0xff,0xbf,0xbb,0x18, + 0x40,0xff,0xff,0xff,0xff,0xc0,0x5a,0x8f,0xb0,0xff,0xff,0xff,0xff,0xc1,0x9d,0x9d, + 0x40,0xff,0xff,0xff,0xff,0xc2,0x3b,0xc3,0x30,0xff,0xff,0xff,0xff,0xc3,0x7e,0xd0, + 0xc0,0xff,0xff,0xff,0xff,0xc4,0x1c,0xf6,0xb0,0xff,0xff,0xff,0xff,0xc5,0x60,0x4, + 0x40,0xff,0xff,0xff,0xff,0xc5,0xfe,0x2a,0x30,0xff,0xff,0xff,0xff,0xc7,0x41,0x37, + 0xc0,0xff,0xff,0xff,0xff,0xc7,0xe0,0xaf,0x30,0xff,0xff,0xff,0xff,0xc8,0x81,0x94, + 0x40,0xff,0xff,0xff,0xff,0xca,0x4d,0xa1,0xb0,0xff,0xff,0xff,0xff,0xca,0xee,0x86, + 0xc0,0xff,0xff,0xff,0xff,0xce,0x4d,0xff,0x30,0xff,0xff,0xff,0xff,0xce,0xb0,0xed, + 0xc0,0xff,0xff,0xff,0xff,0xd3,0x29,0x35,0xb0,0xff,0xff,0xff,0xff,0xd4,0x43,0x64, + 0xc0,0xff,0xff,0xff,0xff,0xf4,0x3d,0x8,0x30,0xff,0xff,0xff,0xff,0xf4,0x9f,0xf6, + 0xc0,0xff,0xff,0xff,0xff,0xf5,0x5,0x6c,0x30,0xff,0xff,0xff,0xff,0xf6,0x32,0x10, + 0x40,0xff,0xff,0xff,0xff,0xf6,0xe6,0x9f,0xb0,0xff,0xff,0xff,0xff,0xf8,0x13,0x43, + 0xc0,0xff,0xff,0xff,0xff,0xf8,0xc7,0xd3,0x30,0xff,0xff,0xff,0xff,0xf9,0xf4,0x77, + 0x40,0xff,0xff,0xff,0xff,0xfa,0xd3,0x36,0xb0,0xff,0xff,0xff,0xff,0xfb,0xc3,0x35, + 0xc0,0xff,0xff,0xff,0xff,0xfc,0xbc,0x53,0x30,0xff,0xff,0xff,0xff,0xfd,0xac,0x52, + 0x40,0xff,0xff,0xff,0xff,0xfe,0x9c,0x35,0x30,0xff,0xff,0xff,0xff,0xff,0x8c,0x34, + 0x40,0x0,0x0,0x0,0x0,0x7,0xa3,0x4a,0xb0,0x0,0x0,0x0,0x0,0x8,0x24,0x6f, + 0xa0,0x0,0x0,0x0,0x0,0x23,0x94,0xb5,0xb0,0x0,0x0,0x0,0x0,0x24,0x10,0x94, + 0xa0,0x0,0x0,0x0,0x0,0x25,0x37,0xf2,0xb0,0x0,0x0,0x0,0x0,0x25,0xf0,0x76, + 0xa0,0x0,0x0,0x0,0x0,0x27,0x21,0xf,0x30,0x0,0x0,0x0,0x0,0x27,0xd0,0x58, + 0xa0,0x0,0x0,0x0,0x0,0x29,0x0,0xff,0x40,0x0,0x0,0x0,0x0,0x29,0xb0,0x3a, + 0xa0,0x0,0x0,0x0,0x0,0x2a,0xe0,0xd3,0x30,0x0,0x0,0x0,0x0,0x2b,0x99,0x57, + 0x20,0x0,0x0,0x0,0x0,0x37,0xf6,0xc6,0xb0,0x0,0x0,0x0,0x0,0x38,0xbf,0x2a, + 0xb0,0x0,0x0,0x0,0x0,0x47,0x77,0x9,0xb0,0x0,0x0,0x0,0x0,0x47,0xdc,0x7f, + 0x20,0x0,0x0,0x0,0x0,0x48,0xfa,0xa2,0xb0,0x0,0x0,0x0,0x0,0x49,0xbc,0x61, + 0x20,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x2,0x4,0x5,0x4, + 0x5,0x3,0x5,0x4,0x5,0x4,0x5,0x5,0xff,0xff,0xc3,0xd0,0x0,0x0,0xff,0xff, + 0xc3,0xd0,0x0,0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0xff,0xff,0xd5,0xd0,0x1,0xc, + 0xff,0xff,0xe3,0xe0,0x1,0x10,0xff,0xff,0xd5,0xd0,0x0,0xc,0x4c,0x4d,0x54,0x0, + 0x43,0x4d,0x54,0x0,0x2d,0x30,0x34,0x0,0x2d,0x30,0x33,0x0,0x2d,0x30,0x32,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2d,0x30, + 0x33,0x3e,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Campo_Grande + 0x0,0x0,0x7,0xe0, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x9e,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0x9e, - 0xa6,0x3a,0x90,0x9f,0xbb,0x7,0x80,0xa0,0x86,0x1c,0x90,0xa1,0x9a,0xe9,0x80,0xa2, - 0x65,0xfe,0x90,0xa3,0x84,0x6,0x0,0xa4,0x45,0xe0,0x90,0xa4,0x8f,0xa6,0x80,0xcb, - 0x89,0xc,0x90,0xd2,0x23,0xf4,0x70,0xd2,0x61,0x18,0x0,0xf7,0x2f,0x76,0x90,0xf8, - 0x28,0x94,0x0,0xf9,0xf,0x58,0x90,0xfa,0x8,0x76,0x0,0xfa,0xf8,0x75,0x10,0xfb, - 0xe8,0x58,0x0,0xfc,0xd8,0x57,0x10,0xfd,0xc8,0x3a,0x0,0xfe,0xb8,0x39,0x10,0xff, - 0xa8,0x1c,0x0,0x0,0x98,0x1b,0x10,0x1,0x87,0xfe,0x0,0x2,0x77,0xfd,0x10,0x3, - 0x71,0x1a,0x80,0x4,0x61,0x19,0x90,0x5,0x50,0xfc,0x80,0x6,0x40,0xfb,0x90,0x7, - 0x30,0xde,0x80,0x7,0x8d,0x35,0x90,0x9,0x10,0xc0,0x80,0x9,0xad,0xb1,0x10,0xa, - 0xf0,0xa2,0x80,0xb,0xe0,0xa1,0x90,0xc,0xd9,0xbf,0x0,0xd,0xc0,0x83,0x90,0xe, - 0xb9,0xa1,0x0,0xf,0xa9,0xa0,0x10,0x10,0x99,0x83,0x0,0x11,0x89,0x82,0x10,0x12, - 0x79,0x65,0x0,0x13,0x69,0x64,0x10,0x14,0x59,0x47,0x0,0x15,0x49,0x46,0x10,0x16, - 0x39,0x29,0x0,0x17,0x29,0x28,0x10,0x18,0x22,0x45,0x80,0x19,0x9,0xa,0x10,0x1a, - 0x2,0x27,0x80,0x1a,0xf2,0x26,0x90,0x1b,0xe2,0x9,0x80,0x1c,0xd2,0x8,0x90,0x1d, - 0xc1,0xeb,0x80,0x1e,0xb1,0xea,0x90,0x1f,0xa1,0xcd,0x80,0x20,0x76,0x1d,0x10,0x21, - 0x81,0xaf,0x80,0x22,0x55,0xff,0x10,0x23,0x6a,0xcc,0x0,0x24,0x35,0xe1,0x10,0x25, - 0x4a,0xae,0x0,0x26,0x15,0xc3,0x10,0x27,0x2a,0x90,0x0,0x27,0xfe,0xdf,0x90,0x29, - 0xa,0x72,0x0,0x29,0xde,0xc1,0x90,0x2a,0xea,0x54,0x0,0x2b,0xbe,0xa3,0x90,0x2c, - 0xd3,0x70,0x80,0x2d,0x9e,0x85,0x90,0x2e,0xb3,0x52,0x80,0x2f,0x7e,0x67,0x90,0x30, - 0x93,0x34,0x80,0x31,0x67,0x84,0x10,0x32,0x73,0x16,0x80,0x33,0x47,0x66,0x10,0x34, - 0x52,0xf8,0x80,0x35,0x27,0x48,0x10,0x36,0x32,0xda,0x80,0x37,0x7,0x2a,0x10,0x38, - 0x1b,0xf7,0x0,0x38,0xe7,0xc,0x10,0x39,0xfb,0xd9,0x0,0x3a,0xc6,0xee,0x10,0x3b, - 0xdb,0xbb,0x0,0x3c,0xb0,0xa,0x90,0x3d,0xbb,0x9d,0x0,0x3e,0x8f,0xec,0x90,0x3f, - 0x9b,0x7f,0x0,0x40,0x6f,0xce,0x90,0x41,0x84,0x9b,0x80,0x42,0x4f,0xb0,0x90,0x43, - 0x64,0x7d,0x80,0x44,0x2f,0x92,0x90,0x45,0x44,0x5f,0x80,0x45,0xf3,0xc5,0x10,0x47, - 0x2d,0x7c,0x0,0x47,0xd3,0xa7,0x10,0x49,0xd,0x5e,0x0,0x49,0xb3,0x89,0x10,0x4a, - 0xed,0x40,0x0,0x4b,0x9c,0xa5,0x90,0x4c,0xd6,0x5c,0x80,0x4d,0x7c,0x87,0x90,0x4e, - 0xb6,0x3e,0x80,0x4f,0x5c,0x69,0x90,0x50,0x96,0x20,0x80,0x51,0x3c,0x4b,0x90,0x52, - 0x76,0x2,0x80,0x53,0x1c,0x2d,0x90,0x54,0x55,0xe4,0x80,0x54,0xfc,0xf,0x90,0x56, - 0x35,0xc6,0x80,0x56,0xe5,0x2c,0x10,0x58,0x1e,0xe3,0x0,0x58,0xc5,0xe,0x10,0x59, - 0xfe,0xc5,0x0,0x5a,0xa4,0xf0,0x10,0x5b,0xde,0xa7,0x0,0x5c,0x84,0xd2,0x10,0x5d, - 0xbe,0x89,0x0,0x5e,0x64,0xb4,0x10,0x5f,0x9e,0x6b,0x0,0x60,0x4d,0xd0,0x90,0x61, - 0x87,0x87,0x80,0x62,0x2d,0xb2,0x90,0x63,0x67,0x69,0x80,0x64,0xd,0x94,0x90,0x65, - 0x47,0x4b,0x80,0x65,0xed,0x76,0x90,0x67,0x27,0x2d,0x80,0x67,0xcd,0x58,0x90,0x69, - 0x7,0xf,0x80,0x69,0xad,0x3a,0x90,0x6a,0xe6,0xf1,0x80,0x6b,0x96,0x57,0x10,0x6c, - 0xd0,0xe,0x0,0x6d,0x76,0x39,0x10,0x6e,0xaf,0xf0,0x0,0x6f,0x56,0x1b,0x10,0x70, - 0x8f,0xd2,0x0,0x71,0x35,0xfd,0x10,0x72,0x6f,0xb4,0x0,0x73,0x15,0xdf,0x10,0x74, - 0x4f,0x96,0x0,0x74,0xfe,0xfb,0x90,0x76,0x38,0xb2,0x80,0x76,0xde,0xdd,0x90,0x78, - 0x18,0x94,0x80,0x78,0xbe,0xbf,0x90,0x79,0xf8,0x76,0x80,0x7a,0x9e,0xa1,0x90,0x7b, - 0xd8,0x58,0x80,0x7c,0x7e,0x83,0x90,0x7d,0xb8,0x3a,0x80,0x7e,0x5e,0x65,0x90,0x7f, - 0x98,0x1c,0x80,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x81,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0x96, + 0xaa,0x7a,0x34,0xb8,0xf,0x57,0xf0,0xb8,0xfd,0x4e,0xb0,0xb9,0xf1,0x42,0x40,0xba, + 0xde,0x82,0x30,0xda,0x38,0xbc,0x40,0xda,0xec,0x8,0x40,0xdc,0x19,0xef,0xc0,0xdc, + 0xb9,0x67,0x30,0xdd,0xfb,0x23,0x40,0xde,0x9b,0xec,0x30,0xdf,0xdd,0xa8,0x40,0xe0, + 0x54,0x41,0x30,0xf4,0x98,0xd,0xc0,0xf5,0x5,0x6c,0x30,0xf6,0xc0,0x72,0x40,0xf7, + 0xe,0x2c,0xb0,0xf8,0x51,0x3a,0x40,0xf8,0xc7,0xd3,0x30,0xfa,0xa,0xe0,0xc0,0xfa, + 0xa9,0x6,0xb0,0xfb,0xec,0x14,0x40,0xfc,0x8b,0x8b,0xb0,0x1d,0xc9,0x9c,0x40,0x1e, + 0x78,0xe5,0xb0,0x1f,0xa0,0x43,0xc0,0x20,0x33,0xdd,0xb0,0x21,0x81,0x77,0x40,0x22, + 0xb,0xd6,0xb0,0x23,0x58,0x1e,0xc0,0x23,0xe2,0x7e,0x30,0x25,0x38,0x0,0xc0,0x25, + 0xd4,0xd5,0x30,0x27,0x21,0x1d,0x40,0x27,0xbd,0xf1,0xb0,0x29,0x0,0xff,0x40,0x29, + 0x94,0x99,0x30,0x2a,0xea,0x1b,0xc0,0x2b,0x6b,0x40,0xb0,0x2c,0xc0,0xc3,0x40,0x2d, + 0x66,0xd2,0x30,0x2e,0xa0,0xa5,0x40,0x2f,0x46,0xb4,0x30,0x30,0x80,0x87,0x40,0x31, + 0x1d,0x5b,0xb0,0x32,0x57,0x2e,0xc0,0x33,0x6,0x78,0x30,0x34,0x38,0x62,0x40,0x34, + 0xf8,0xcf,0x30,0x36,0x20,0x2d,0x40,0x36,0xcf,0x76,0xb0,0x37,0xf6,0xd4,0xc0,0x38, + 0xb8,0x93,0x30,0x39,0xdf,0xf1,0x40,0x3a,0x8f,0x3a,0xb0,0x3b,0xc9,0xd,0xc0,0x3c, + 0x6f,0x1c,0xb0,0x3d,0xc4,0x9f,0x40,0x3e,0x4e,0xfe,0xb0,0x3f,0x92,0xc,0x40,0x40, + 0x2e,0xe0,0xb0,0x41,0x87,0x6,0x40,0x42,0x17,0xfd,0x30,0x43,0x51,0xd0,0x40,0x43, + 0xf7,0xdf,0x30,0x45,0x4d,0x61,0xc0,0x45,0xe0,0xfb,0xb0,0x47,0x11,0x94,0x40,0x47, + 0xb7,0xa3,0x30,0x48,0xfa,0xb0,0xc0,0x49,0x97,0x85,0x30,0x4a,0xda,0x92,0xc0,0x4b, + 0x80,0xa1,0xb0,0x4c,0xba,0x74,0xc0,0x4d,0x60,0x83,0xb0,0x4e,0x9a,0x56,0xc0,0x4f, + 0x49,0xa0,0x30,0x50,0x83,0x73,0x40,0x51,0x20,0x47,0xb0,0x52,0x63,0x55,0x40,0x53, + 0x0,0x29,0xb0,0x54,0x43,0x37,0x40,0x54,0xe9,0x46,0x30,0x56,0x23,0x19,0x40,0x56, + 0xc9,0x28,0x30,0x58,0x2,0xfb,0x40,0x58,0xa9,0xa,0x30,0x59,0xe2,0xdd,0x40,0x5a, + 0x88,0xec,0x30,0x5b,0xcb,0xf9,0xc0,0x5c,0x68,0xce,0x30,0x5d,0xab,0xdb,0xc0,0x5e, + 0x48,0xb0,0x30,0x5f,0x8b,0xbd,0xc0,0x60,0x31,0xcc,0xb0,0x61,0x6b,0x9f,0xc0,0x62, + 0x11,0xae,0xb0,0x63,0x4b,0x81,0xc0,0x63,0xfa,0xcb,0x30,0x65,0x2b,0x63,0xc0,0x65, + 0xd1,0x72,0xb0,0x67,0x14,0x80,0x40,0x67,0xb1,0x54,0xb0,0x68,0xf4,0x62,0x40,0x69, + 0x9a,0x71,0x30,0x6a,0xd4,0x44,0x40,0x6b,0x7a,0x53,0x30,0x6c,0xb4,0x26,0x40,0x6d, + 0x5a,0x35,0x30,0x6e,0x94,0x8,0x40,0x6f,0x3a,0x17,0x30,0x70,0x7d,0x24,0xc0,0x71, + 0x19,0xf9,0x30,0x72,0x5d,0x6,0xc0,0x72,0xf9,0xdb,0x30,0x74,0x3c,0xe8,0xc0,0x74, + 0xd9,0xbd,0x30,0x76,0x1c,0xca,0xc0,0x76,0xc2,0xd9,0xb0,0x77,0xfc,0xac,0xc0,0x78, + 0xab,0xf6,0x30,0x79,0xdc,0x8e,0xc0,0x7a,0x82,0x9d,0xb0,0x7b,0xc5,0xab,0x40,0x7c, + 0x62,0x7f,0xb0,0x7d,0xa5,0x8d,0x40,0x7e,0x4b,0x9c,0x30,0x7f,0x85,0x6f,0x40,0x0, 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, @@ -24305,408 +20598,90 @@ static const unsigned char qt_resource_data[] = { 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0xff,0xff,0x9d,0x94,0x0,0x0,0xff,0xff,0xab,0xa0,0x1,0x4,0xff,0xff,0x9d, - 0x90,0x0,0x8,0xff,0xff,0xab,0xa0,0x1,0xc,0xff,0xff,0xab,0xa0,0x1,0x10,0x4c, - 0x4d,0x54,0x0,0x4d,0x44,0x54,0x0,0x4d,0x53,0x54,0x0,0x4d,0x57,0x54,0x0,0x4d, - 0x50,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x1,0x54,0x5a,0x69, - 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x9f,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0x5e,0x4,0xc,0xb0,0xff,0xff,0xff,0xff,0x9e,0xa6,0x3a, - 0x90,0xff,0xff,0xff,0xff,0x9f,0xbb,0x7,0x80,0xff,0xff,0xff,0xff,0xa0,0x86,0x1c, - 0x90,0xff,0xff,0xff,0xff,0xa1,0x9a,0xe9,0x80,0xff,0xff,0xff,0xff,0xa2,0x65,0xfe, - 0x90,0xff,0xff,0xff,0xff,0xa3,0x84,0x6,0x0,0xff,0xff,0xff,0xff,0xa4,0x45,0xe0, - 0x90,0xff,0xff,0xff,0xff,0xa4,0x8f,0xa6,0x80,0xff,0xff,0xff,0xff,0xcb,0x89,0xc, - 0x90,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x61,0x18, - 0x0,0xff,0xff,0xff,0xff,0xf7,0x2f,0x76,0x90,0xff,0xff,0xff,0xff,0xf8,0x28,0x94, - 0x0,0xff,0xff,0xff,0xff,0xf9,0xf,0x58,0x90,0xff,0xff,0xff,0xff,0xfa,0x8,0x76, - 0x0,0xff,0xff,0xff,0xff,0xfa,0xf8,0x75,0x10,0xff,0xff,0xff,0xff,0xfb,0xe8,0x58, - 0x0,0xff,0xff,0xff,0xff,0xfc,0xd8,0x57,0x10,0xff,0xff,0xff,0xff,0xfd,0xc8,0x3a, - 0x0,0xff,0xff,0xff,0xff,0xfe,0xb8,0x39,0x10,0xff,0xff,0xff,0xff,0xff,0xa8,0x1c, - 0x0,0x0,0x0,0x0,0x0,0x0,0x98,0x1b,0x10,0x0,0x0,0x0,0x0,0x1,0x87,0xfe, - 0x0,0x0,0x0,0x0,0x0,0x2,0x77,0xfd,0x10,0x0,0x0,0x0,0x0,0x3,0x71,0x1a, - 0x80,0x0,0x0,0x0,0x0,0x4,0x61,0x19,0x90,0x0,0x0,0x0,0x0,0x5,0x50,0xfc, - 0x80,0x0,0x0,0x0,0x0,0x6,0x40,0xfb,0x90,0x0,0x0,0x0,0x0,0x7,0x30,0xde, - 0x80,0x0,0x0,0x0,0x0,0x7,0x8d,0x35,0x90,0x0,0x0,0x0,0x0,0x9,0x10,0xc0, - 0x80,0x0,0x0,0x0,0x0,0x9,0xad,0xb1,0x10,0x0,0x0,0x0,0x0,0xa,0xf0,0xa2, - 0x80,0x0,0x0,0x0,0x0,0xb,0xe0,0xa1,0x90,0x0,0x0,0x0,0x0,0xc,0xd9,0xbf, - 0x0,0x0,0x0,0x0,0x0,0xd,0xc0,0x83,0x90,0x0,0x0,0x0,0x0,0xe,0xb9,0xa1, - 0x0,0x0,0x0,0x0,0x0,0xf,0xa9,0xa0,0x10,0x0,0x0,0x0,0x0,0x10,0x99,0x83, - 0x0,0x0,0x0,0x0,0x0,0x11,0x89,0x82,0x10,0x0,0x0,0x0,0x0,0x12,0x79,0x65, - 0x0,0x0,0x0,0x0,0x0,0x13,0x69,0x64,0x10,0x0,0x0,0x0,0x0,0x14,0x59,0x47, - 0x0,0x0,0x0,0x0,0x0,0x15,0x49,0x46,0x10,0x0,0x0,0x0,0x0,0x16,0x39,0x29, - 0x0,0x0,0x0,0x0,0x0,0x17,0x29,0x28,0x10,0x0,0x0,0x0,0x0,0x18,0x22,0x45, - 0x80,0x0,0x0,0x0,0x0,0x19,0x9,0xa,0x10,0x0,0x0,0x0,0x0,0x1a,0x2,0x27, - 0x80,0x0,0x0,0x0,0x0,0x1a,0xf2,0x26,0x90,0x0,0x0,0x0,0x0,0x1b,0xe2,0x9, - 0x80,0x0,0x0,0x0,0x0,0x1c,0xd2,0x8,0x90,0x0,0x0,0x0,0x0,0x1d,0xc1,0xeb, - 0x80,0x0,0x0,0x0,0x0,0x1e,0xb1,0xea,0x90,0x0,0x0,0x0,0x0,0x1f,0xa1,0xcd, - 0x80,0x0,0x0,0x0,0x0,0x20,0x76,0x1d,0x10,0x0,0x0,0x0,0x0,0x21,0x81,0xaf, - 0x80,0x0,0x0,0x0,0x0,0x22,0x55,0xff,0x10,0x0,0x0,0x0,0x0,0x23,0x6a,0xcc, - 0x0,0x0,0x0,0x0,0x0,0x24,0x35,0xe1,0x10,0x0,0x0,0x0,0x0,0x25,0x4a,0xae, - 0x0,0x0,0x0,0x0,0x0,0x26,0x15,0xc3,0x10,0x0,0x0,0x0,0x0,0x27,0x2a,0x90, - 0x0,0x0,0x0,0x0,0x0,0x27,0xfe,0xdf,0x90,0x0,0x0,0x0,0x0,0x29,0xa,0x72, - 0x0,0x0,0x0,0x0,0x0,0x29,0xde,0xc1,0x90,0x0,0x0,0x0,0x0,0x2a,0xea,0x54, - 0x0,0x0,0x0,0x0,0x0,0x2b,0xbe,0xa3,0x90,0x0,0x0,0x0,0x0,0x2c,0xd3,0x70, - 0x80,0x0,0x0,0x0,0x0,0x2d,0x9e,0x85,0x90,0x0,0x0,0x0,0x0,0x2e,0xb3,0x52, - 0x80,0x0,0x0,0x0,0x0,0x2f,0x7e,0x67,0x90,0x0,0x0,0x0,0x0,0x30,0x93,0x34, - 0x80,0x0,0x0,0x0,0x0,0x31,0x67,0x84,0x10,0x0,0x0,0x0,0x0,0x32,0x73,0x16, - 0x80,0x0,0x0,0x0,0x0,0x33,0x47,0x66,0x10,0x0,0x0,0x0,0x0,0x34,0x52,0xf8, - 0x80,0x0,0x0,0x0,0x0,0x35,0x27,0x48,0x10,0x0,0x0,0x0,0x0,0x36,0x32,0xda, - 0x80,0x0,0x0,0x0,0x0,0x37,0x7,0x2a,0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0xf7, - 0x0,0x0,0x0,0x0,0x0,0x38,0xe7,0xc,0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0xd9, - 0x0,0x0,0x0,0x0,0x0,0x3a,0xc6,0xee,0x10,0x0,0x0,0x0,0x0,0x3b,0xdb,0xbb, - 0x0,0x0,0x0,0x0,0x0,0x3c,0xb0,0xa,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x9d, - 0x0,0x0,0x0,0x0,0x0,0x3e,0x8f,0xec,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x7f, - 0x0,0x0,0x0,0x0,0x0,0x40,0x6f,0xce,0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x9b, - 0x80,0x0,0x0,0x0,0x0,0x42,0x4f,0xb0,0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x7d, - 0x80,0x0,0x0,0x0,0x0,0x44,0x2f,0x92,0x90,0x0,0x0,0x0,0x0,0x45,0x44,0x5f, - 0x80,0x0,0x0,0x0,0x0,0x45,0xf3,0xc5,0x10,0x0,0x0,0x0,0x0,0x47,0x2d,0x7c, - 0x0,0x0,0x0,0x0,0x0,0x47,0xd3,0xa7,0x10,0x0,0x0,0x0,0x0,0x49,0xd,0x5e, - 0x0,0x0,0x0,0x0,0x0,0x49,0xb3,0x89,0x10,0x0,0x0,0x0,0x0,0x4a,0xed,0x40, - 0x0,0x0,0x0,0x0,0x0,0x4b,0x9c,0xa5,0x90,0x0,0x0,0x0,0x0,0x4c,0xd6,0x5c, - 0x80,0x0,0x0,0x0,0x0,0x4d,0x7c,0x87,0x90,0x0,0x0,0x0,0x0,0x4e,0xb6,0x3e, - 0x80,0x0,0x0,0x0,0x0,0x4f,0x5c,0x69,0x90,0x0,0x0,0x0,0x0,0x50,0x96,0x20, - 0x80,0x0,0x0,0x0,0x0,0x51,0x3c,0x4b,0x90,0x0,0x0,0x0,0x0,0x52,0x76,0x2, - 0x80,0x0,0x0,0x0,0x0,0x53,0x1c,0x2d,0x90,0x0,0x0,0x0,0x0,0x54,0x55,0xe4, - 0x80,0x0,0x0,0x0,0x0,0x54,0xfc,0xf,0x90,0x0,0x0,0x0,0x0,0x56,0x35,0xc6, - 0x80,0x0,0x0,0x0,0x0,0x56,0xe5,0x2c,0x10,0x0,0x0,0x0,0x0,0x58,0x1e,0xe3, - 0x0,0x0,0x0,0x0,0x0,0x58,0xc5,0xe,0x10,0x0,0x0,0x0,0x0,0x59,0xfe,0xc5, - 0x0,0x0,0x0,0x0,0x0,0x5a,0xa4,0xf0,0x10,0x0,0x0,0x0,0x0,0x5b,0xde,0xa7, - 0x0,0x0,0x0,0x0,0x0,0x5c,0x84,0xd2,0x10,0x0,0x0,0x0,0x0,0x5d,0xbe,0x89, - 0x0,0x0,0x0,0x0,0x0,0x5e,0x64,0xb4,0x10,0x0,0x0,0x0,0x0,0x5f,0x9e,0x6b, - 0x0,0x0,0x0,0x0,0x0,0x60,0x4d,0xd0,0x90,0x0,0x0,0x0,0x0,0x61,0x87,0x87, - 0x80,0x0,0x0,0x0,0x0,0x62,0x2d,0xb2,0x90,0x0,0x0,0x0,0x0,0x63,0x67,0x69, - 0x80,0x0,0x0,0x0,0x0,0x64,0xd,0x94,0x90,0x0,0x0,0x0,0x0,0x65,0x47,0x4b, - 0x80,0x0,0x0,0x0,0x0,0x65,0xed,0x76,0x90,0x0,0x0,0x0,0x0,0x67,0x27,0x2d, - 0x80,0x0,0x0,0x0,0x0,0x67,0xcd,0x58,0x90,0x0,0x0,0x0,0x0,0x69,0x7,0xf, - 0x80,0x0,0x0,0x0,0x0,0x69,0xad,0x3a,0x90,0x0,0x0,0x0,0x0,0x6a,0xe6,0xf1, - 0x80,0x0,0x0,0x0,0x0,0x6b,0x96,0x57,0x10,0x0,0x0,0x0,0x0,0x6c,0xd0,0xe, - 0x0,0x0,0x0,0x0,0x0,0x6d,0x76,0x39,0x10,0x0,0x0,0x0,0x0,0x6e,0xaf,0xf0, - 0x0,0x0,0x0,0x0,0x0,0x6f,0x56,0x1b,0x10,0x0,0x0,0x0,0x0,0x70,0x8f,0xd2, - 0x0,0x0,0x0,0x0,0x0,0x71,0x35,0xfd,0x10,0x0,0x0,0x0,0x0,0x72,0x6f,0xb4, - 0x0,0x0,0x0,0x0,0x0,0x73,0x15,0xdf,0x10,0x0,0x0,0x0,0x0,0x74,0x4f,0x96, - 0x0,0x0,0x0,0x0,0x0,0x74,0xfe,0xfb,0x90,0x0,0x0,0x0,0x0,0x76,0x38,0xb2, - 0x80,0x0,0x0,0x0,0x0,0x76,0xde,0xdd,0x90,0x0,0x0,0x0,0x0,0x78,0x18,0x94, - 0x80,0x0,0x0,0x0,0x0,0x78,0xbe,0xbf,0x90,0x0,0x0,0x0,0x0,0x79,0xf8,0x76, - 0x80,0x0,0x0,0x0,0x0,0x7a,0x9e,0xa1,0x90,0x0,0x0,0x0,0x0,0x7b,0xd8,0x58, - 0x80,0x0,0x0,0x0,0x0,0x7c,0x7e,0x83,0x90,0x0,0x0,0x0,0x0,0x7d,0xb8,0x3a, - 0x80,0x0,0x0,0x0,0x0,0x7e,0x5e,0x65,0x90,0x0,0x0,0x0,0x0,0x7f,0x98,0x1c, - 0x80,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0xff,0xff,0x9d,0x94,0x0,0x0,0xff,0xff,0xab,0xa0,0x1,0x4,0xff,0xff,0x9d,0x90, - 0x0,0x8,0xff,0xff,0xab,0xa0,0x1,0xc,0xff,0xff,0xab,0xa0,0x1,0x10,0x4c,0x4d, - 0x54,0x0,0x4d,0x44,0x54,0x0,0x4d,0x53,0x54,0x0,0x4d,0x57,0x54,0x0,0x4d,0x50, - 0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x1,0xa,0x4d,0x53,0x54, - 0x37,0x4d,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e, - 0x31,0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Boa_Vista - 0x0,0x0,0x2,0x84, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x22,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0x96, - 0xaa,0x7f,0xe0,0xb8,0xf,0x57,0xf0,0xb8,0xfd,0x4e,0xb0,0xb9,0xf1,0x42,0x40,0xba, - 0xde,0x82,0x30,0xda,0x38,0xbc,0x40,0xda,0xec,0x8,0x40,0xdc,0x19,0xef,0xc0,0xdc, - 0xb9,0x67,0x30,0xdd,0xfb,0x23,0x40,0xde,0x9b,0xec,0x30,0xdf,0xdd,0xa8,0x40,0xe0, - 0x54,0x41,0x30,0xf4,0x98,0xd,0xc0,0xf5,0x5,0x6c,0x30,0xf6,0xc0,0x72,0x40,0xf7, - 0xe,0x2c,0xb0,0xf8,0x51,0x3a,0x40,0xf8,0xc7,0xd3,0x30,0xfa,0xa,0xe0,0xc0,0xfa, - 0xa9,0x6,0xb0,0xfb,0xec,0x14,0x40,0xfc,0x8b,0x8b,0xb0,0x1d,0xc9,0x9c,0x40,0x1e, - 0x78,0xe5,0xb0,0x1f,0xa0,0x43,0xc0,0x20,0x33,0xdd,0xb0,0x21,0x81,0x77,0x40,0x22, - 0xb,0xd6,0xb0,0x37,0xf6,0xd4,0xc0,0x38,0xb8,0x93,0x30,0x39,0xdf,0xf1,0x40,0x39, - 0xe9,0x1d,0xb0,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0xff,0xff,0xc7,0x20,0x0,0x0,0xff,0xff,0xd5,0xd0,0x1, - 0x4,0xff,0xff,0xc7,0xc0,0x0,0x9,0x4c,0x4d,0x54,0x0,0x41,0x4d,0x53,0x54,0x0, - 0x41,0x4d,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x22,0x0,0x0, - 0x0,0x3,0x0,0x0,0x0,0xd,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff, - 0xff,0xff,0x96,0xaa,0x7f,0xe0,0xff,0xff,0xff,0xff,0xb8,0xf,0x57,0xf0,0xff,0xff, - 0xff,0xff,0xb8,0xfd,0x4e,0xb0,0xff,0xff,0xff,0xff,0xb9,0xf1,0x42,0x40,0xff,0xff, - 0xff,0xff,0xba,0xde,0x82,0x30,0xff,0xff,0xff,0xff,0xda,0x38,0xbc,0x40,0xff,0xff, - 0xff,0xff,0xda,0xec,0x8,0x40,0xff,0xff,0xff,0xff,0xdc,0x19,0xef,0xc0,0xff,0xff, - 0xff,0xff,0xdc,0xb9,0x67,0x30,0xff,0xff,0xff,0xff,0xdd,0xfb,0x23,0x40,0xff,0xff, - 0xff,0xff,0xde,0x9b,0xec,0x30,0xff,0xff,0xff,0xff,0xdf,0xdd,0xa8,0x40,0xff,0xff, - 0xff,0xff,0xe0,0x54,0x41,0x30,0xff,0xff,0xff,0xff,0xf4,0x98,0xd,0xc0,0xff,0xff, - 0xff,0xff,0xf5,0x5,0x6c,0x30,0xff,0xff,0xff,0xff,0xf6,0xc0,0x72,0x40,0xff,0xff, - 0xff,0xff,0xf7,0xe,0x2c,0xb0,0xff,0xff,0xff,0xff,0xf8,0x51,0x3a,0x40,0xff,0xff, - 0xff,0xff,0xf8,0xc7,0xd3,0x30,0xff,0xff,0xff,0xff,0xfa,0xa,0xe0,0xc0,0xff,0xff, - 0xff,0xff,0xfa,0xa9,0x6,0xb0,0xff,0xff,0xff,0xff,0xfb,0xec,0x14,0x40,0xff,0xff, - 0xff,0xff,0xfc,0x8b,0x8b,0xb0,0x0,0x0,0x0,0x0,0x1d,0xc9,0x9c,0x40,0x0,0x0, - 0x0,0x0,0x1e,0x78,0xe5,0xb0,0x0,0x0,0x0,0x0,0x1f,0xa0,0x43,0xc0,0x0,0x0, - 0x0,0x0,0x20,0x33,0xdd,0xb0,0x0,0x0,0x0,0x0,0x21,0x81,0x77,0x40,0x0,0x0, - 0x0,0x0,0x22,0xb,0xd6,0xb0,0x0,0x0,0x0,0x0,0x37,0xf6,0xd4,0xc0,0x0,0x0, - 0x0,0x0,0x38,0xb8,0x93,0x30,0x0,0x0,0x0,0x0,0x39,0xdf,0xf1,0x40,0x0,0x0, - 0x0,0x0,0x39,0xe9,0x1d,0xb0,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0xc7,0x20,0x0,0x0,0xff,0xff, - 0xd5,0xd0,0x1,0x4,0xff,0xff,0xc7,0xc0,0x0,0x9,0x4c,0x4d,0x54,0x0,0x41,0x4d, - 0x53,0x54,0x0,0x41,0x4d,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x41,0x4d, - 0x54,0x34,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Recife - 0x0,0x0,0x2,0xd8, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x28,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0x96, - 0xaa,0x67,0xb8,0xb8,0xf,0x49,0xe0,0xb8,0xfd,0x40,0xa0,0xb9,0xf1,0x34,0x30,0xba, - 0xde,0x74,0x20,0xda,0x38,0xae,0x30,0xda,0xeb,0xfa,0x30,0xdc,0x19,0xe1,0xb0,0xdc, - 0xb9,0x59,0x20,0xdd,0xfb,0x15,0x30,0xde,0x9b,0xde,0x20,0xdf,0xdd,0x9a,0x30,0xe0, - 0x54,0x33,0x20,0xf4,0x97,0xff,0xb0,0xf5,0x5,0x5e,0x20,0xf6,0xc0,0x64,0x30,0xf7, - 0xe,0x1e,0xa0,0xf8,0x51,0x2c,0x30,0xf8,0xc7,0xc5,0x20,0xfa,0xa,0xd2,0xb0,0xfa, - 0xa8,0xf8,0xa0,0xfb,0xec,0x6,0x30,0xfc,0x8b,0x7d,0xa0,0x1d,0xc9,0x8e,0x30,0x1e, - 0x78,0xd7,0xa0,0x1f,0xa0,0x35,0xb0,0x20,0x33,0xcf,0xa0,0x21,0x81,0x69,0x30,0x22, - 0xb,0xc8,0xa0,0x23,0x58,0x10,0xb0,0x23,0xe2,0x70,0x20,0x25,0x37,0xf2,0xb0,0x25, - 0xd4,0xc7,0x20,0x37,0xf6,0xc6,0xb0,0x38,0xb8,0x85,0x20,0x39,0xdf,0xe3,0x30,0x39, - 0xe9,0xf,0xa0,0x3b,0xc8,0xff,0xb0,0x3c,0x6f,0xe,0xa0,0x0,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0xff,0xff,0xdf,0x48,0x0,0x0,0xff,0xff,0xe3,0xe0,0x1,0x4,0xff, - 0xff,0xd5,0xd0,0x0,0x9,0x4c,0x4d,0x54,0x0,0x42,0x52,0x53,0x54,0x0,0x42,0x52, - 0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3, - 0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x28,0x0,0x0,0x0,0x3, - 0x0,0x0,0x0,0xd,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff, - 0x96,0xaa,0x67,0xb8,0xff,0xff,0xff,0xff,0xb8,0xf,0x49,0xe0,0xff,0xff,0xff,0xff, - 0xb8,0xfd,0x40,0xa0,0xff,0xff,0xff,0xff,0xb9,0xf1,0x34,0x30,0xff,0xff,0xff,0xff, - 0xba,0xde,0x74,0x20,0xff,0xff,0xff,0xff,0xda,0x38,0xae,0x30,0xff,0xff,0xff,0xff, - 0xda,0xeb,0xfa,0x30,0xff,0xff,0xff,0xff,0xdc,0x19,0xe1,0xb0,0xff,0xff,0xff,0xff, - 0xdc,0xb9,0x59,0x20,0xff,0xff,0xff,0xff,0xdd,0xfb,0x15,0x30,0xff,0xff,0xff,0xff, - 0xde,0x9b,0xde,0x20,0xff,0xff,0xff,0xff,0xdf,0xdd,0x9a,0x30,0xff,0xff,0xff,0xff, - 0xe0,0x54,0x33,0x20,0xff,0xff,0xff,0xff,0xf4,0x97,0xff,0xb0,0xff,0xff,0xff,0xff, - 0xf5,0x5,0x5e,0x20,0xff,0xff,0xff,0xff,0xf6,0xc0,0x64,0x30,0xff,0xff,0xff,0xff, - 0xf7,0xe,0x1e,0xa0,0xff,0xff,0xff,0xff,0xf8,0x51,0x2c,0x30,0xff,0xff,0xff,0xff, - 0xf8,0xc7,0xc5,0x20,0xff,0xff,0xff,0xff,0xfa,0xa,0xd2,0xb0,0xff,0xff,0xff,0xff, - 0xfa,0xa8,0xf8,0xa0,0xff,0xff,0xff,0xff,0xfb,0xec,0x6,0x30,0xff,0xff,0xff,0xff, - 0xfc,0x8b,0x7d,0xa0,0x0,0x0,0x0,0x0,0x1d,0xc9,0x8e,0x30,0x0,0x0,0x0,0x0, - 0x1e,0x78,0xd7,0xa0,0x0,0x0,0x0,0x0,0x1f,0xa0,0x35,0xb0,0x0,0x0,0x0,0x0, - 0x20,0x33,0xcf,0xa0,0x0,0x0,0x0,0x0,0x21,0x81,0x69,0x30,0x0,0x0,0x0,0x0, - 0x22,0xb,0xc8,0xa0,0x0,0x0,0x0,0x0,0x23,0x58,0x10,0xb0,0x0,0x0,0x0,0x0, - 0x23,0xe2,0x70,0x20,0x0,0x0,0x0,0x0,0x25,0x37,0xf2,0xb0,0x0,0x0,0x0,0x0, - 0x25,0xd4,0xc7,0x20,0x0,0x0,0x0,0x0,0x37,0xf6,0xc6,0xb0,0x0,0x0,0x0,0x0, - 0x38,0xb8,0x85,0x20,0x0,0x0,0x0,0x0,0x39,0xdf,0xe3,0x30,0x0,0x0,0x0,0x0, - 0x39,0xe9,0xf,0xa0,0x0,0x0,0x0,0x0,0x3b,0xc8,0xff,0xb0,0x0,0x0,0x0,0x0, - 0x3c,0x6f,0xe,0xa0,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0xdf,0x48, - 0x0,0x0,0xff,0xff,0xe3,0xe0,0x1,0x4,0xff,0xff,0xd5,0xd0,0x0,0x9,0x4c,0x4d, - 0x54,0x0,0x42,0x52,0x53,0x54,0x0,0x42,0x52,0x54,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xa,0x42,0x52,0x54,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Paramaribo - 0x0,0x0,0x1,0x34, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x80,0x0,0x0,0x0,0x91, - 0x5,0x8e,0xb8,0xbe,0x2a,0x4b,0xc4,0xd2,0x62,0x2c,0xb4,0xb,0x11,0x58,0xb8,0x1b, - 0xbe,0x31,0xb8,0x0,0x1,0x2,0x3,0x4,0x5,0xff,0xff,0xcc,0x48,0x0,0x0,0xff, - 0xff,0xcc,0x3c,0x0,0x4,0xff,0xff,0xcc,0x4c,0x0,0x4,0xff,0xff,0xce,0xc8,0x0, - 0x8,0xff,0xff,0xce,0xc8,0x0,0xd,0xff,0xff,0xd5,0xd0,0x0,0xd,0x4c,0x4d,0x54, - 0x0,0x50,0x4d,0x54,0x0,0x4e,0x45,0x47,0x54,0x0,0x53,0x52,0x54,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0, - 0x0,0x6,0x0,0x0,0x0,0x11,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff, - 0xff,0xff,0x91,0x5,0x8e,0xb8,0xff,0xff,0xff,0xff,0xbe,0x2a,0x4b,0xc4,0xff,0xff, - 0xff,0xff,0xd2,0x62,0x2c,0xb4,0x0,0x0,0x0,0x0,0xb,0x11,0x58,0xb8,0x0,0x0, - 0x0,0x0,0x1b,0xbe,0x31,0xb8,0x0,0x1,0x2,0x3,0x4,0x5,0xff,0xff,0xcc,0x48, - 0x0,0x0,0xff,0xff,0xcc,0x3c,0x0,0x4,0xff,0xff,0xcc,0x4c,0x0,0x4,0xff,0xff, - 0xce,0xc8,0x0,0x8,0xff,0xff,0xce,0xc8,0x0,0xd,0xff,0xff,0xd5,0xd0,0x0,0xd, - 0x4c,0x4d,0x54,0x0,0x50,0x4d,0x54,0x0,0x4e,0x45,0x47,0x54,0x0,0x53,0x52,0x54, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x53,0x52, - 0x54,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Catamarca - 0x0,0x0,0x4,0x69, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x3d,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x16,0x80,0x0,0x0,0x0,0xa2, - 0x92,0x8f,0x30,0xb6,0x7b,0x52,0x40,0xb7,0x1a,0xc9,0xb0,0xb8,0x1e,0x8f,0x40,0xb8, - 0xd4,0x70,0x30,0xba,0x17,0x7d,0xc0,0xba,0xb5,0xa3,0xb0,0xbb,0xf8,0xb1,0x40,0xbc, - 0x96,0xd7,0x30,0xbd,0xd9,0xe4,0xc0,0xbe,0x78,0xa,0xb0,0xbf,0xbb,0x18,0x40,0xc0, - 0x5a,0x8f,0xb0,0xc1,0x9d,0x9d,0x40,0xc2,0x3b,0xc3,0x30,0xc3,0x7e,0xd0,0xc0,0xc4, - 0x1c,0xf6,0xb0,0xc5,0x60,0x4,0x40,0xc5,0xfe,0x2a,0x30,0xc7,0x41,0x37,0xc0,0xc7, - 0xe0,0xaf,0x30,0xc8,0x81,0x94,0x40,0xca,0x4d,0xa1,0xb0,0xca,0xee,0x86,0xc0,0xce, - 0x4d,0xff,0x30,0xce,0xb0,0xed,0xc0,0xd3,0x29,0x35,0xb0,0xd4,0x43,0x64,0xc0,0xf4, - 0x3d,0x8,0x30,0xf4,0x9f,0xf6,0xc0,0xf5,0x5,0x6c,0x30,0xf6,0x32,0x10,0x40,0xf6, - 0xe6,0x9f,0xb0,0xf8,0x13,0x43,0xc0,0xf8,0xc7,0xd3,0x30,0xf9,0xf4,0x77,0x40,0xfa, - 0xd3,0x36,0xb0,0xfb,0xc3,0x35,0xc0,0xfc,0xbc,0x53,0x30,0xfd,0xac,0x52,0x40,0xfe, - 0x9c,0x35,0x30,0xff,0x8c,0x34,0x40,0x7,0xa3,0x4a,0xb0,0x8,0x24,0x6f,0xa0,0x23, - 0x94,0xb5,0xb0,0x24,0x10,0x94,0xa0,0x25,0x37,0xf2,0xb0,0x25,0xf0,0x76,0xa0,0x27, - 0x21,0xf,0x30,0x27,0xd0,0x58,0xa0,0x29,0x0,0xff,0x40,0x29,0xb0,0x3a,0xa0,0x2a, - 0xe0,0xd3,0x30,0x2b,0x99,0x57,0x20,0x37,0xf6,0xc6,0xb0,0x38,0xbf,0x2a,0xb0,0x40, - 0xbb,0xf1,0x30,0x40,0xd5,0xb,0xc0,0x47,0x77,0x9,0xb0,0x47,0xdc,0x7f,0x20,0x1, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x6,0x4,0x5,0x4,0x5,0x3,0x5,0x6,0x5,0x4,0x5,0xff,0xff,0xc2,0x54, - 0x0,0x0,0xff,0xff,0xc3,0xd0,0x0,0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0xff,0xff, - 0xd5,0xd0,0x1,0xc,0xff,0xff,0xe3,0xe0,0x1,0xc,0xff,0xff,0xd5,0xd0,0x0,0x8, - 0xff,0xff,0xc7,0xc0,0x0,0x11,0xff,0xff,0xd5,0xd0,0x0,0x8,0x4c,0x4d,0x54,0x0, - 0x43,0x4d,0x54,0x0,0x41,0x52,0x54,0x0,0x41,0x52,0x53,0x54,0x0,0x57,0x41,0x52, - 0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x3e,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x16,0xf8,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x72,0x9c,0xaf,0x2c,0xff,0xff, - 0xff,0xff,0xa2,0x92,0x8f,0x30,0xff,0xff,0xff,0xff,0xb6,0x7b,0x52,0x40,0xff,0xff, - 0xff,0xff,0xb7,0x1a,0xc9,0xb0,0xff,0xff,0xff,0xff,0xb8,0x1e,0x8f,0x40,0xff,0xff, - 0xff,0xff,0xb8,0xd4,0x70,0x30,0xff,0xff,0xff,0xff,0xba,0x17,0x7d,0xc0,0xff,0xff, - 0xff,0xff,0xba,0xb5,0xa3,0xb0,0xff,0xff,0xff,0xff,0xbb,0xf8,0xb1,0x40,0xff,0xff, - 0xff,0xff,0xbc,0x96,0xd7,0x30,0xff,0xff,0xff,0xff,0xbd,0xd9,0xe4,0xc0,0xff,0xff, - 0xff,0xff,0xbe,0x78,0xa,0xb0,0xff,0xff,0xff,0xff,0xbf,0xbb,0x18,0x40,0xff,0xff, - 0xff,0xff,0xc0,0x5a,0x8f,0xb0,0xff,0xff,0xff,0xff,0xc1,0x9d,0x9d,0x40,0xff,0xff, - 0xff,0xff,0xc2,0x3b,0xc3,0x30,0xff,0xff,0xff,0xff,0xc3,0x7e,0xd0,0xc0,0xff,0xff, - 0xff,0xff,0xc4,0x1c,0xf6,0xb0,0xff,0xff,0xff,0xff,0xc5,0x60,0x4,0x40,0xff,0xff, - 0xff,0xff,0xc5,0xfe,0x2a,0x30,0xff,0xff,0xff,0xff,0xc7,0x41,0x37,0xc0,0xff,0xff, - 0xff,0xff,0xc7,0xe0,0xaf,0x30,0xff,0xff,0xff,0xff,0xc8,0x81,0x94,0x40,0xff,0xff, - 0xff,0xff,0xca,0x4d,0xa1,0xb0,0xff,0xff,0xff,0xff,0xca,0xee,0x86,0xc0,0xff,0xff, - 0xff,0xff,0xce,0x4d,0xff,0x30,0xff,0xff,0xff,0xff,0xce,0xb0,0xed,0xc0,0xff,0xff, - 0xff,0xff,0xd3,0x29,0x35,0xb0,0xff,0xff,0xff,0xff,0xd4,0x43,0x64,0xc0,0xff,0xff, - 0xff,0xff,0xf4,0x3d,0x8,0x30,0xff,0xff,0xff,0xff,0xf4,0x9f,0xf6,0xc0,0xff,0xff, - 0xff,0xff,0xf5,0x5,0x6c,0x30,0xff,0xff,0xff,0xff,0xf6,0x32,0x10,0x40,0xff,0xff, - 0xff,0xff,0xf6,0xe6,0x9f,0xb0,0xff,0xff,0xff,0xff,0xf8,0x13,0x43,0xc0,0xff,0xff, - 0xff,0xff,0xf8,0xc7,0xd3,0x30,0xff,0xff,0xff,0xff,0xf9,0xf4,0x77,0x40,0xff,0xff, - 0xff,0xff,0xfa,0xd3,0x36,0xb0,0xff,0xff,0xff,0xff,0xfb,0xc3,0x35,0xc0,0xff,0xff, - 0xff,0xff,0xfc,0xbc,0x53,0x30,0xff,0xff,0xff,0xff,0xfd,0xac,0x52,0x40,0xff,0xff, - 0xff,0xff,0xfe,0x9c,0x35,0x30,0xff,0xff,0xff,0xff,0xff,0x8c,0x34,0x40,0x0,0x0, - 0x0,0x0,0x7,0xa3,0x4a,0xb0,0x0,0x0,0x0,0x0,0x8,0x24,0x6f,0xa0,0x0,0x0, - 0x0,0x0,0x23,0x94,0xb5,0xb0,0x0,0x0,0x0,0x0,0x24,0x10,0x94,0xa0,0x0,0x0, - 0x0,0x0,0x25,0x37,0xf2,0xb0,0x0,0x0,0x0,0x0,0x25,0xf0,0x76,0xa0,0x0,0x0, - 0x0,0x0,0x27,0x21,0xf,0x30,0x0,0x0,0x0,0x0,0x27,0xd0,0x58,0xa0,0x0,0x0, - 0x0,0x0,0x29,0x0,0xff,0x40,0x0,0x0,0x0,0x0,0x29,0xb0,0x3a,0xa0,0x0,0x0, - 0x0,0x0,0x2a,0xe0,0xd3,0x30,0x0,0x0,0x0,0x0,0x2b,0x99,0x57,0x20,0x0,0x0, - 0x0,0x0,0x37,0xf6,0xc6,0xb0,0x0,0x0,0x0,0x0,0x38,0xbf,0x2a,0xb0,0x0,0x0, - 0x0,0x0,0x40,0xbb,0xf1,0x30,0x0,0x0,0x0,0x0,0x40,0xd5,0xb,0xc0,0x0,0x0, - 0x0,0x0,0x47,0x77,0x9,0xb0,0x0,0x0,0x0,0x0,0x47,0xdc,0x7f,0x20,0x0,0x1, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x6,0x4,0x5,0x4,0x5,0x3,0x5,0x6,0x5,0x4,0x5,0xff,0xff,0xc2,0x54, - 0x0,0x0,0xff,0xff,0xc3,0xd0,0x0,0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0xff,0xff, - 0xd5,0xd0,0x1,0xc,0xff,0xff,0xe3,0xe0,0x1,0xc,0xff,0xff,0xd5,0xd0,0x0,0x8, - 0xff,0xff,0xc7,0xc0,0x0,0x11,0xff,0xff,0xd5,0xd0,0x0,0x8,0x4c,0x4d,0x54,0x0, - 0x43,0x4d,0x54,0x0,0x41,0x52,0x54,0x0,0x41,0x52,0x53,0x54,0x0,0x57,0x41,0x52, - 0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xa,0x41,0x52,0x54,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Mendoza - 0x0,0x0,0x4,0x95, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x3d,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x1c,0x80,0x0,0x0,0x0,0xa2, - 0x92,0x8f,0x30,0xb6,0x7b,0x52,0x40,0xb7,0x1a,0xc9,0xb0,0xb8,0x1e,0x8f,0x40,0xb8, - 0xd4,0x70,0x30,0xba,0x17,0x7d,0xc0,0xba,0xb5,0xa3,0xb0,0xbb,0xf8,0xb1,0x40,0xbc, - 0x96,0xd7,0x30,0xbd,0xd9,0xe4,0xc0,0xbe,0x78,0xa,0xb0,0xbf,0xbb,0x18,0x40,0xc0, - 0x5a,0x8f,0xb0,0xc1,0x9d,0x9d,0x40,0xc2,0x3b,0xc3,0x30,0xc3,0x7e,0xd0,0xc0,0xc4, - 0x1c,0xf6,0xb0,0xc5,0x60,0x4,0x40,0xc5,0xfe,0x2a,0x30,0xc7,0x41,0x37,0xc0,0xc7, - 0xe0,0xaf,0x30,0xc8,0x81,0x94,0x40,0xca,0x4d,0xa1,0xb0,0xca,0xee,0x86,0xc0,0xce, - 0x4d,0xff,0x30,0xce,0xb0,0xed,0xc0,0xd3,0x29,0x35,0xb0,0xd4,0x43,0x64,0xc0,0xf4, - 0x3d,0x8,0x30,0xf4,0x9f,0xf6,0xc0,0xf5,0x5,0x6c,0x30,0xf6,0x32,0x10,0x40,0xf6, - 0xe6,0x9f,0xb0,0xf8,0x13,0x43,0xc0,0xf8,0xc7,0xd3,0x30,0xf9,0xf4,0x77,0x40,0xfa, - 0xd3,0x36,0xb0,0xfb,0xc3,0x35,0xc0,0xfc,0xbc,0x53,0x30,0xfd,0xac,0x52,0x40,0xfe, - 0x9c,0x35,0x30,0xff,0x8c,0x34,0x40,0x7,0xa3,0x4a,0xb0,0x8,0x24,0x6f,0xa0,0x23, - 0x94,0xb5,0xb0,0x24,0x10,0x94,0xa0,0x25,0x37,0xf2,0xb0,0x25,0xf0,0x76,0xa0,0x27, - 0x19,0x34,0x40,0x27,0xcd,0xc3,0xb0,0x28,0xfa,0x67,0xc0,0x29,0xb0,0x48,0xb0,0x2a, - 0xe0,0xe1,0x40,0x2b,0x99,0x57,0x20,0x37,0xf6,0xc6,0xb0,0x38,0xbf,0x2a,0xb0,0x40, - 0xb0,0x13,0xb0,0x41,0x56,0x3e,0xc0,0x47,0x77,0x9,0xb0,0x47,0xdc,0x7f,0x20,0x1, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x5,0x4,0x5,0x4,0x5,0x4,0x6, - 0x7,0x6,0x7,0x6,0x4,0x5,0x3,0x5,0x6,0x5,0x4,0x5,0xff,0xff,0xbf,0x7c, - 0x0,0x0,0xff,0xff,0xc3,0xd0,0x0,0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0xff,0xff, - 0xd5,0xd0,0x1,0xc,0xff,0xff,0xe3,0xe0,0x1,0xc,0xff,0xff,0xd5,0xd0,0x0,0x8, - 0xff,0xff,0xc7,0xc0,0x0,0x11,0xff,0xff,0xd5,0xd0,0x1,0x16,0xff,0xff,0xe3,0xe0, - 0x1,0xc,0xff,0xff,0xd5,0xd0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x43,0x4d,0x54,0x0, - 0x41,0x52,0x54,0x0,0x41,0x52,0x53,0x54,0x0,0x57,0x41,0x52,0x54,0x0,0x57,0x41, - 0x52,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa, - 0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3e,0x0,0x0,0x0,0xa, - 0x0,0x0,0x0,0x1c,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff, - 0x72,0x9c,0xb2,0x4,0xff,0xff,0xff,0xff,0xa2,0x92,0x8f,0x30,0xff,0xff,0xff,0xff, - 0xb6,0x7b,0x52,0x40,0xff,0xff,0xff,0xff,0xb7,0x1a,0xc9,0xb0,0xff,0xff,0xff,0xff, - 0xb8,0x1e,0x8f,0x40,0xff,0xff,0xff,0xff,0xb8,0xd4,0x70,0x30,0xff,0xff,0xff,0xff, - 0xba,0x17,0x7d,0xc0,0xff,0xff,0xff,0xff,0xba,0xb5,0xa3,0xb0,0xff,0xff,0xff,0xff, - 0xbb,0xf8,0xb1,0x40,0xff,0xff,0xff,0xff,0xbc,0x96,0xd7,0x30,0xff,0xff,0xff,0xff, - 0xbd,0xd9,0xe4,0xc0,0xff,0xff,0xff,0xff,0xbe,0x78,0xa,0xb0,0xff,0xff,0xff,0xff, - 0xbf,0xbb,0x18,0x40,0xff,0xff,0xff,0xff,0xc0,0x5a,0x8f,0xb0,0xff,0xff,0xff,0xff, - 0xc1,0x9d,0x9d,0x40,0xff,0xff,0xff,0xff,0xc2,0x3b,0xc3,0x30,0xff,0xff,0xff,0xff, - 0xc3,0x7e,0xd0,0xc0,0xff,0xff,0xff,0xff,0xc4,0x1c,0xf6,0xb0,0xff,0xff,0xff,0xff, - 0xc5,0x60,0x4,0x40,0xff,0xff,0xff,0xff,0xc5,0xfe,0x2a,0x30,0xff,0xff,0xff,0xff, - 0xc7,0x41,0x37,0xc0,0xff,0xff,0xff,0xff,0xc7,0xe0,0xaf,0x30,0xff,0xff,0xff,0xff, - 0xc8,0x81,0x94,0x40,0xff,0xff,0xff,0xff,0xca,0x4d,0xa1,0xb0,0xff,0xff,0xff,0xff, - 0xca,0xee,0x86,0xc0,0xff,0xff,0xff,0xff,0xce,0x4d,0xff,0x30,0xff,0xff,0xff,0xff, - 0xce,0xb0,0xed,0xc0,0xff,0xff,0xff,0xff,0xd3,0x29,0x35,0xb0,0xff,0xff,0xff,0xff, - 0xd4,0x43,0x64,0xc0,0xff,0xff,0xff,0xff,0xf4,0x3d,0x8,0x30,0xff,0xff,0xff,0xff, - 0xf4,0x9f,0xf6,0xc0,0xff,0xff,0xff,0xff,0xf5,0x5,0x6c,0x30,0xff,0xff,0xff,0xff, - 0xf6,0x32,0x10,0x40,0xff,0xff,0xff,0xff,0xf6,0xe6,0x9f,0xb0,0xff,0xff,0xff,0xff, - 0xf8,0x13,0x43,0xc0,0xff,0xff,0xff,0xff,0xf8,0xc7,0xd3,0x30,0xff,0xff,0xff,0xff, - 0xf9,0xf4,0x77,0x40,0xff,0xff,0xff,0xff,0xfa,0xd3,0x36,0xb0,0xff,0xff,0xff,0xff, - 0xfb,0xc3,0x35,0xc0,0xff,0xff,0xff,0xff,0xfc,0xbc,0x53,0x30,0xff,0xff,0xff,0xff, - 0xfd,0xac,0x52,0x40,0xff,0xff,0xff,0xff,0xfe,0x9c,0x35,0x30,0xff,0xff,0xff,0xff, - 0xff,0x8c,0x34,0x40,0x0,0x0,0x0,0x0,0x7,0xa3,0x4a,0xb0,0x0,0x0,0x0,0x0, - 0x8,0x24,0x6f,0xa0,0x0,0x0,0x0,0x0,0x23,0x94,0xb5,0xb0,0x0,0x0,0x0,0x0, - 0x24,0x10,0x94,0xa0,0x0,0x0,0x0,0x0,0x25,0x37,0xf2,0xb0,0x0,0x0,0x0,0x0, - 0x25,0xf0,0x76,0xa0,0x0,0x0,0x0,0x0,0x27,0x19,0x34,0x40,0x0,0x0,0x0,0x0, - 0x27,0xcd,0xc3,0xb0,0x0,0x0,0x0,0x0,0x28,0xfa,0x67,0xc0,0x0,0x0,0x0,0x0, - 0x29,0xb0,0x48,0xb0,0x0,0x0,0x0,0x0,0x2a,0xe0,0xe1,0x40,0x0,0x0,0x0,0x0, - 0x2b,0x99,0x57,0x20,0x0,0x0,0x0,0x0,0x37,0xf6,0xc6,0xb0,0x0,0x0,0x0,0x0, - 0x38,0xbf,0x2a,0xb0,0x0,0x0,0x0,0x0,0x40,0xb0,0x13,0xb0,0x0,0x0,0x0,0x0, - 0x41,0x56,0x3e,0xc0,0x0,0x0,0x0,0x0,0x47,0x77,0x9,0xb0,0x0,0x0,0x0,0x0, - 0x47,0xdc,0x7f,0x20,0x0,0x1,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x5, - 0x4,0x5,0x4,0x5,0x4,0x6,0x7,0x6,0x7,0x6,0x4,0x5,0x3,0x5,0x6,0x5, - 0x4,0x5,0xff,0xff,0xbf,0x7c,0x0,0x0,0xff,0xff,0xc3,0xd0,0x0,0x4,0xff,0xff, - 0xc7,0xc0,0x0,0x8,0xff,0xff,0xd5,0xd0,0x1,0xc,0xff,0xff,0xe3,0xe0,0x1,0xc, - 0xff,0xff,0xd5,0xd0,0x0,0x8,0xff,0xff,0xc7,0xc0,0x0,0x11,0xff,0xff,0xd5,0xd0, - 0x1,0x16,0xff,0xff,0xe3,0xe0,0x1,0xc,0xff,0xff,0xd5,0xd0,0x0,0x8,0x4c,0x4d, - 0x54,0x0,0x43,0x4d,0x54,0x0,0x41,0x52,0x54,0x0,0x41,0x52,0x53,0x54,0x0,0x57, - 0x41,0x52,0x54,0x0,0x57,0x41,0x52,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x41, - 0x52,0x54,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Hermosillo - 0x0,0x0,0x1,0xc6, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x10,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0xa5, - 0xb6,0xe8,0x70,0xaf,0xf2,0x6e,0xe0,0xb6,0x66,0x56,0x60,0xb7,0x43,0xd2,0x60,0xb8, - 0xc,0x36,0x60,0xb8,0xfd,0x86,0xf0,0xcb,0xea,0x71,0x60,0xd8,0x91,0xb4,0xf0,0x0, - 0x0,0x70,0x80,0x31,0x67,0x84,0x10,0x32,0x73,0x16,0x80,0x33,0x47,0x66,0x10,0x34, - 0x52,0xf8,0x80,0x35,0x27,0x48,0x10,0x36,0x32,0xda,0x80,0x0,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x3,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0xff,0xff,0x97,0xf8,0x0, - 0x0,0xff,0xff,0x9d,0x90,0x0,0x4,0xff,0xff,0xab,0xa0,0x0,0x8,0xff,0xff,0x8f, - 0x80,0x0,0xc,0xff,0xff,0xab,0xa0,0x1,0x10,0xff,0xff,0x9d,0x90,0x0,0x4,0x4c, - 0x4d,0x54,0x0,0x4d,0x53,0x54,0x0,0x43,0x53,0x54,0x0,0x50,0x53,0x54,0x0,0x4d, - 0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x10,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0xf8,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xa5,0xb6,0xe8,0x70,0xff,0xff,0xff,0xff,0xaf, - 0xf2,0x6e,0xe0,0xff,0xff,0xff,0xff,0xb6,0x66,0x56,0x60,0xff,0xff,0xff,0xff,0xb7, - 0x43,0xd2,0x60,0xff,0xff,0xff,0xff,0xb8,0xc,0x36,0x60,0xff,0xff,0xff,0xff,0xb8, - 0xfd,0x86,0xf0,0xff,0xff,0xff,0xff,0xcb,0xea,0x71,0x60,0xff,0xff,0xff,0xff,0xd8, - 0x91,0xb4,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x70,0x80,0x0,0x0,0x0,0x0,0x31, - 0x67,0x84,0x10,0x0,0x0,0x0,0x0,0x32,0x73,0x16,0x80,0x0,0x0,0x0,0x0,0x33, - 0x47,0x66,0x10,0x0,0x0,0x0,0x0,0x34,0x52,0xf8,0x80,0x0,0x0,0x0,0x0,0x35, - 0x27,0x48,0x10,0x0,0x0,0x0,0x0,0x36,0x32,0xda,0x80,0x0,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x3,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0xff,0xff,0x97,0xf8,0x0, - 0x0,0xff,0xff,0x9d,0x90,0x0,0x4,0xff,0xff,0xab,0xa0,0x0,0x8,0xff,0xff,0x8f, - 0x80,0x0,0xc,0xff,0xff,0xab,0xa0,0x1,0x10,0xff,0xff,0x9d,0x90,0x0,0x4,0x4c, - 0x4d,0x54,0x0,0x4d,0x53,0x54,0x0,0x43,0x53,0x54,0x0,0x50,0x53,0x54,0x0,0x4d, - 0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa, - 0x4d,0x53,0x54,0x37,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Ojinaga + 0xff,0xff,0xcc,0xcc,0x0,0x0,0xff,0xff,0xd5,0xd0,0x1,0x4,0xff,0xff,0xc7,0xc0, + 0x0,0x8,0x4c,0x4d,0x54,0x0,0x2d,0x30,0x33,0x0,0x2d,0x30,0x34,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc, + 0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x96,0xaa,0x7a,0x34, + 0xff,0xff,0xff,0xff,0xb8,0xf,0x57,0xf0,0xff,0xff,0xff,0xff,0xb8,0xfd,0x4e,0xb0, + 0xff,0xff,0xff,0xff,0xb9,0xf1,0x42,0x40,0xff,0xff,0xff,0xff,0xba,0xde,0x82,0x30, + 0xff,0xff,0xff,0xff,0xda,0x38,0xbc,0x40,0xff,0xff,0xff,0xff,0xda,0xec,0x8,0x40, + 0xff,0xff,0xff,0xff,0xdc,0x19,0xef,0xc0,0xff,0xff,0xff,0xff,0xdc,0xb9,0x67,0x30, + 0xff,0xff,0xff,0xff,0xdd,0xfb,0x23,0x40,0xff,0xff,0xff,0xff,0xde,0x9b,0xec,0x30, + 0xff,0xff,0xff,0xff,0xdf,0xdd,0xa8,0x40,0xff,0xff,0xff,0xff,0xe0,0x54,0x41,0x30, + 0xff,0xff,0xff,0xff,0xf4,0x98,0xd,0xc0,0xff,0xff,0xff,0xff,0xf5,0x5,0x6c,0x30, + 0xff,0xff,0xff,0xff,0xf6,0xc0,0x72,0x40,0xff,0xff,0xff,0xff,0xf7,0xe,0x2c,0xb0, + 0xff,0xff,0xff,0xff,0xf8,0x51,0x3a,0x40,0xff,0xff,0xff,0xff,0xf8,0xc7,0xd3,0x30, + 0xff,0xff,0xff,0xff,0xfa,0xa,0xe0,0xc0,0xff,0xff,0xff,0xff,0xfa,0xa9,0x6,0xb0, + 0xff,0xff,0xff,0xff,0xfb,0xec,0x14,0x40,0xff,0xff,0xff,0xff,0xfc,0x8b,0x8b,0xb0, + 0x0,0x0,0x0,0x0,0x1d,0xc9,0x9c,0x40,0x0,0x0,0x0,0x0,0x1e,0x78,0xe5,0xb0, + 0x0,0x0,0x0,0x0,0x1f,0xa0,0x43,0xc0,0x0,0x0,0x0,0x0,0x20,0x33,0xdd,0xb0, + 0x0,0x0,0x0,0x0,0x21,0x81,0x77,0x40,0x0,0x0,0x0,0x0,0x22,0xb,0xd6,0xb0, + 0x0,0x0,0x0,0x0,0x23,0x58,0x1e,0xc0,0x0,0x0,0x0,0x0,0x23,0xe2,0x7e,0x30, + 0x0,0x0,0x0,0x0,0x25,0x38,0x0,0xc0,0x0,0x0,0x0,0x0,0x25,0xd4,0xd5,0x30, + 0x0,0x0,0x0,0x0,0x27,0x21,0x1d,0x40,0x0,0x0,0x0,0x0,0x27,0xbd,0xf1,0xb0, + 0x0,0x0,0x0,0x0,0x29,0x0,0xff,0x40,0x0,0x0,0x0,0x0,0x29,0x94,0x99,0x30, + 0x0,0x0,0x0,0x0,0x2a,0xea,0x1b,0xc0,0x0,0x0,0x0,0x0,0x2b,0x6b,0x40,0xb0, + 0x0,0x0,0x0,0x0,0x2c,0xc0,0xc3,0x40,0x0,0x0,0x0,0x0,0x2d,0x66,0xd2,0x30, + 0x0,0x0,0x0,0x0,0x2e,0xa0,0xa5,0x40,0x0,0x0,0x0,0x0,0x2f,0x46,0xb4,0x30, + 0x0,0x0,0x0,0x0,0x30,0x80,0x87,0x40,0x0,0x0,0x0,0x0,0x31,0x1d,0x5b,0xb0, + 0x0,0x0,0x0,0x0,0x32,0x57,0x2e,0xc0,0x0,0x0,0x0,0x0,0x33,0x6,0x78,0x30, + 0x0,0x0,0x0,0x0,0x34,0x38,0x62,0x40,0x0,0x0,0x0,0x0,0x34,0xf8,0xcf,0x30, + 0x0,0x0,0x0,0x0,0x36,0x20,0x2d,0x40,0x0,0x0,0x0,0x0,0x36,0xcf,0x76,0xb0, + 0x0,0x0,0x0,0x0,0x37,0xf6,0xd4,0xc0,0x0,0x0,0x0,0x0,0x38,0xb8,0x93,0x30, + 0x0,0x0,0x0,0x0,0x39,0xdf,0xf1,0x40,0x0,0x0,0x0,0x0,0x3a,0x8f,0x3a,0xb0, + 0x0,0x0,0x0,0x0,0x3b,0xc9,0xd,0xc0,0x0,0x0,0x0,0x0,0x3c,0x6f,0x1c,0xb0, + 0x0,0x0,0x0,0x0,0x3d,0xc4,0x9f,0x40,0x0,0x0,0x0,0x0,0x3e,0x4e,0xfe,0xb0, + 0x0,0x0,0x0,0x0,0x3f,0x92,0xc,0x40,0x0,0x0,0x0,0x0,0x40,0x2e,0xe0,0xb0, + 0x0,0x0,0x0,0x0,0x41,0x87,0x6,0x40,0x0,0x0,0x0,0x0,0x42,0x17,0xfd,0x30, + 0x0,0x0,0x0,0x0,0x43,0x51,0xd0,0x40,0x0,0x0,0x0,0x0,0x43,0xf7,0xdf,0x30, + 0x0,0x0,0x0,0x0,0x45,0x4d,0x61,0xc0,0x0,0x0,0x0,0x0,0x45,0xe0,0xfb,0xb0, + 0x0,0x0,0x0,0x0,0x47,0x11,0x94,0x40,0x0,0x0,0x0,0x0,0x47,0xb7,0xa3,0x30, + 0x0,0x0,0x0,0x0,0x48,0xfa,0xb0,0xc0,0x0,0x0,0x0,0x0,0x49,0x97,0x85,0x30, + 0x0,0x0,0x0,0x0,0x4a,0xda,0x92,0xc0,0x0,0x0,0x0,0x0,0x4b,0x80,0xa1,0xb0, + 0x0,0x0,0x0,0x0,0x4c,0xba,0x74,0xc0,0x0,0x0,0x0,0x0,0x4d,0x60,0x83,0xb0, + 0x0,0x0,0x0,0x0,0x4e,0x9a,0x56,0xc0,0x0,0x0,0x0,0x0,0x4f,0x49,0xa0,0x30, + 0x0,0x0,0x0,0x0,0x50,0x83,0x73,0x40,0x0,0x0,0x0,0x0,0x51,0x20,0x47,0xb0, + 0x0,0x0,0x0,0x0,0x52,0x63,0x55,0x40,0x0,0x0,0x0,0x0,0x53,0x0,0x29,0xb0, + 0x0,0x0,0x0,0x0,0x54,0x43,0x37,0x40,0x0,0x0,0x0,0x0,0x54,0xe9,0x46,0x30, + 0x0,0x0,0x0,0x0,0x56,0x23,0x19,0x40,0x0,0x0,0x0,0x0,0x56,0xc9,0x28,0x30, + 0x0,0x0,0x0,0x0,0x58,0x2,0xfb,0x40,0x0,0x0,0x0,0x0,0x58,0xa9,0xa,0x30, + 0x0,0x0,0x0,0x0,0x59,0xe2,0xdd,0x40,0x0,0x0,0x0,0x0,0x5a,0x88,0xec,0x30, + 0x0,0x0,0x0,0x0,0x5b,0xcb,0xf9,0xc0,0x0,0x0,0x0,0x0,0x5c,0x68,0xce,0x30, + 0x0,0x0,0x0,0x0,0x5d,0xab,0xdb,0xc0,0x0,0x0,0x0,0x0,0x5e,0x48,0xb0,0x30, + 0x0,0x0,0x0,0x0,0x5f,0x8b,0xbd,0xc0,0x0,0x0,0x0,0x0,0x60,0x31,0xcc,0xb0, + 0x0,0x0,0x0,0x0,0x61,0x6b,0x9f,0xc0,0x0,0x0,0x0,0x0,0x62,0x11,0xae,0xb0, + 0x0,0x0,0x0,0x0,0x63,0x4b,0x81,0xc0,0x0,0x0,0x0,0x0,0x63,0xfa,0xcb,0x30, + 0x0,0x0,0x0,0x0,0x65,0x2b,0x63,0xc0,0x0,0x0,0x0,0x0,0x65,0xd1,0x72,0xb0, + 0x0,0x0,0x0,0x0,0x67,0x14,0x80,0x40,0x0,0x0,0x0,0x0,0x67,0xb1,0x54,0xb0, + 0x0,0x0,0x0,0x0,0x68,0xf4,0x62,0x40,0x0,0x0,0x0,0x0,0x69,0x9a,0x71,0x30, + 0x0,0x0,0x0,0x0,0x6a,0xd4,0x44,0x40,0x0,0x0,0x0,0x0,0x6b,0x7a,0x53,0x30, + 0x0,0x0,0x0,0x0,0x6c,0xb4,0x26,0x40,0x0,0x0,0x0,0x0,0x6d,0x5a,0x35,0x30, + 0x0,0x0,0x0,0x0,0x6e,0x94,0x8,0x40,0x0,0x0,0x0,0x0,0x6f,0x3a,0x17,0x30, + 0x0,0x0,0x0,0x0,0x70,0x7d,0x24,0xc0,0x0,0x0,0x0,0x0,0x71,0x19,0xf9,0x30, + 0x0,0x0,0x0,0x0,0x72,0x5d,0x6,0xc0,0x0,0x0,0x0,0x0,0x72,0xf9,0xdb,0x30, + 0x0,0x0,0x0,0x0,0x74,0x3c,0xe8,0xc0,0x0,0x0,0x0,0x0,0x74,0xd9,0xbd,0x30, + 0x0,0x0,0x0,0x0,0x76,0x1c,0xca,0xc0,0x0,0x0,0x0,0x0,0x76,0xc2,0xd9,0xb0, + 0x0,0x0,0x0,0x0,0x77,0xfc,0xac,0xc0,0x0,0x0,0x0,0x0,0x78,0xab,0xf6,0x30, + 0x0,0x0,0x0,0x0,0x79,0xdc,0x8e,0xc0,0x0,0x0,0x0,0x0,0x7a,0x82,0x9d,0xb0, + 0x0,0x0,0x0,0x0,0x7b,0xc5,0xab,0x40,0x0,0x0,0x0,0x0,0x7c,0x62,0x7f,0xb0, + 0x0,0x0,0x0,0x0,0x7d,0xa5,0x8d,0x40,0x0,0x0,0x0,0x0,0x7e,0x4b,0x9c,0x30, + 0x0,0x0,0x0,0x0,0x7f,0x85,0x6f,0x40,0x0,0x0,0x0,0x0,0x80,0x2b,0x7e,0x30, + 0x0,0x0,0x0,0x0,0x81,0x65,0x51,0x40,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0xff,0xff,0xcc,0xcc,0x0, + 0x0,0xff,0xff,0xd5,0xd0,0x1,0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0x4c,0x4d,0x54, + 0x0,0x2d,0x30,0x33,0x0,0x2d,0x30,0x34,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa, + 0x3c,0x2d,0x30,0x34,0x3e,0x34,0x3c,0x2d,0x30,0x33,0x3e,0x2c,0x4d,0x31,0x30,0x2e, + 0x33,0x2e,0x30,0x2f,0x30,0x2c,0x4d,0x32,0x2e,0x33,0x2e,0x30,0x2f,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Chihuahua 0x0,0x0,0x5,0xf2, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, @@ -24720,27 +20695,27 @@ static const unsigned char qt_resource_data[] = { 0x8f,0xec,0x90,0x3f,0x9b,0x7f,0x0,0x40,0x6f,0xce,0x90,0x41,0x84,0x9b,0x80,0x42, 0x4f,0xb0,0x90,0x43,0x64,0x7d,0x80,0x44,0x2f,0x92,0x90,0x45,0x44,0x5f,0x80,0x46, 0xf,0x74,0x90,0x47,0x24,0x41,0x80,0x47,0xf8,0x91,0x10,0x49,0x4,0x23,0x80,0x49, - 0xd8,0x73,0x10,0x4a,0xe4,0x5,0x80,0x4b,0x9c,0xa5,0x90,0x4c,0xd6,0x5c,0x80,0x4d, - 0x7c,0x87,0x90,0x4e,0xb6,0x3e,0x80,0x4f,0x5c,0x69,0x90,0x50,0x96,0x20,0x80,0x51, - 0x3c,0x4b,0x90,0x52,0x76,0x2,0x80,0x53,0x1c,0x2d,0x90,0x54,0x55,0xe4,0x80,0x54, - 0xfc,0xf,0x90,0x56,0x35,0xc6,0x80,0x56,0xe5,0x2c,0x10,0x58,0x1e,0xe3,0x0,0x58, - 0xc5,0xe,0x10,0x59,0xfe,0xc5,0x0,0x5a,0xa4,0xf0,0x10,0x5b,0xde,0xa7,0x0,0x5c, - 0x84,0xd2,0x10,0x5d,0xbe,0x89,0x0,0x5e,0x64,0xb4,0x10,0x5f,0x9e,0x6b,0x0,0x60, - 0x4d,0xd0,0x90,0x61,0x87,0x87,0x80,0x62,0x2d,0xb2,0x90,0x63,0x67,0x69,0x80,0x64, - 0xd,0x94,0x90,0x65,0x47,0x4b,0x80,0x65,0xed,0x76,0x90,0x67,0x27,0x2d,0x80,0x67, - 0xcd,0x58,0x90,0x69,0x7,0xf,0x80,0x69,0xad,0x3a,0x90,0x6a,0xe6,0xf1,0x80,0x6b, - 0x96,0x57,0x10,0x6c,0xd0,0xe,0x0,0x6d,0x76,0x39,0x10,0x6e,0xaf,0xf0,0x0,0x6f, - 0x56,0x1b,0x10,0x70,0x8f,0xd2,0x0,0x71,0x35,0xfd,0x10,0x72,0x6f,0xb4,0x0,0x73, - 0x15,0xdf,0x10,0x74,0x4f,0x96,0x0,0x74,0xfe,0xfb,0x90,0x76,0x38,0xb2,0x80,0x76, - 0xde,0xdd,0x90,0x78,0x18,0x94,0x80,0x78,0xbe,0xbf,0x90,0x79,0xf8,0x76,0x80,0x7a, - 0x9e,0xa1,0x90,0x7b,0xd8,0x58,0x80,0x7c,0x7e,0x83,0x90,0x7d,0xb8,0x3a,0x80,0x7e, - 0x5e,0x65,0x90,0x7f,0x98,0x1c,0x80,0x0,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x2, + 0xd8,0x73,0x10,0x4a,0xe4,0x5,0x80,0x4b,0xb8,0x55,0x10,0x4c,0xcd,0x22,0x0,0x4d, + 0x98,0x37,0x10,0x4e,0xad,0x4,0x0,0x4f,0x78,0x19,0x10,0x50,0x8c,0xe6,0x0,0x51, + 0x61,0x35,0x90,0x52,0x6c,0xc8,0x0,0x53,0x41,0x17,0x90,0x54,0x4c,0xaa,0x0,0x55, + 0x20,0xf9,0x90,0x56,0x2c,0x8c,0x0,0x57,0x0,0xdb,0x90,0x58,0x15,0xa8,0x80,0x58, + 0xe0,0xbd,0x90,0x59,0xf5,0x8a,0x80,0x5a,0xc0,0x9f,0x90,0x5b,0xd5,0x6c,0x80,0x5c, + 0xa9,0xbc,0x10,0x5d,0xb5,0x4e,0x80,0x5e,0x89,0x9e,0x10,0x5f,0x95,0x30,0x80,0x60, + 0x69,0x80,0x10,0x61,0x7e,0x4d,0x0,0x62,0x49,0x62,0x10,0x63,0x5e,0x2f,0x0,0x64, + 0x29,0x44,0x10,0x65,0x3e,0x11,0x0,0x66,0x12,0x60,0x90,0x67,0x1d,0xf3,0x0,0x67, + 0xf2,0x42,0x90,0x68,0xfd,0xd5,0x0,0x69,0xd2,0x24,0x90,0x6a,0xdd,0xb7,0x0,0x6b, + 0xb2,0x6,0x90,0x6c,0xc6,0xd3,0x80,0x6d,0x91,0xe8,0x90,0x6e,0xa6,0xb5,0x80,0x6f, + 0x71,0xca,0x90,0x70,0x86,0x97,0x80,0x71,0x5a,0xe7,0x10,0x72,0x66,0x79,0x80,0x73, + 0x3a,0xc9,0x10,0x74,0x46,0x5b,0x80,0x75,0x1a,0xab,0x10,0x76,0x2f,0x78,0x0,0x76, + 0xfa,0x8d,0x10,0x78,0xf,0x5a,0x0,0x78,0xda,0x6f,0x10,0x79,0xef,0x3c,0x0,0x7a, + 0xba,0x51,0x10,0x7b,0xcf,0x1e,0x0,0x7c,0xa3,0x6d,0x90,0x7d,0xaf,0x0,0x0,0x7e, + 0x83,0x4f,0x90,0x7f,0x8e,0xe2,0x0,0x0,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x2, 0x3,0x2,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1, 0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1, 0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1, 0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1, 0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1, - 0x4,0x1,0xff,0xff,0x9e,0x1c,0x0,0x0,0xff,0xff,0x9d,0x90,0x0,0x4,0xff,0xff, + 0x4,0x1,0xff,0xff,0x9c,0x8c,0x0,0x0,0xff,0xff,0x9d,0x90,0x0,0x4,0xff,0xff, 0xab,0xa0,0x0,0x8,0xff,0xff,0xb9,0xb0,0x1,0xc,0xff,0xff,0xab,0xa0,0x1,0x10, 0xff,0xff,0x9d,0x90,0x0,0x4,0x4c,0x4d,0x54,0x0,0x4d,0x53,0x54,0x0,0x43,0x53, 0x54,0x0,0x43,0x44,0x54,0x0,0x4d,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0, @@ -24764,226 +20739,275 @@ static const unsigned char qt_resource_data[] = { 0x92,0x90,0x0,0x0,0x0,0x0,0x45,0x44,0x5f,0x80,0x0,0x0,0x0,0x0,0x46,0xf, 0x74,0x90,0x0,0x0,0x0,0x0,0x47,0x24,0x41,0x80,0x0,0x0,0x0,0x0,0x47,0xf8, 0x91,0x10,0x0,0x0,0x0,0x0,0x49,0x4,0x23,0x80,0x0,0x0,0x0,0x0,0x49,0xd8, - 0x73,0x10,0x0,0x0,0x0,0x0,0x4a,0xe4,0x5,0x80,0x0,0x0,0x0,0x0,0x4b,0x9c, - 0xa5,0x90,0x0,0x0,0x0,0x0,0x4c,0xd6,0x5c,0x80,0x0,0x0,0x0,0x0,0x4d,0x7c, - 0x87,0x90,0x0,0x0,0x0,0x0,0x4e,0xb6,0x3e,0x80,0x0,0x0,0x0,0x0,0x4f,0x5c, - 0x69,0x90,0x0,0x0,0x0,0x0,0x50,0x96,0x20,0x80,0x0,0x0,0x0,0x0,0x51,0x3c, - 0x4b,0x90,0x0,0x0,0x0,0x0,0x52,0x76,0x2,0x80,0x0,0x0,0x0,0x0,0x53,0x1c, - 0x2d,0x90,0x0,0x0,0x0,0x0,0x54,0x55,0xe4,0x80,0x0,0x0,0x0,0x0,0x54,0xfc, - 0xf,0x90,0x0,0x0,0x0,0x0,0x56,0x35,0xc6,0x80,0x0,0x0,0x0,0x0,0x56,0xe5, - 0x2c,0x10,0x0,0x0,0x0,0x0,0x58,0x1e,0xe3,0x0,0x0,0x0,0x0,0x0,0x58,0xc5, - 0xe,0x10,0x0,0x0,0x0,0x0,0x59,0xfe,0xc5,0x0,0x0,0x0,0x0,0x0,0x5a,0xa4, - 0xf0,0x10,0x0,0x0,0x0,0x0,0x5b,0xde,0xa7,0x0,0x0,0x0,0x0,0x0,0x5c,0x84, - 0xd2,0x10,0x0,0x0,0x0,0x0,0x5d,0xbe,0x89,0x0,0x0,0x0,0x0,0x0,0x5e,0x64, - 0xb4,0x10,0x0,0x0,0x0,0x0,0x5f,0x9e,0x6b,0x0,0x0,0x0,0x0,0x0,0x60,0x4d, - 0xd0,0x90,0x0,0x0,0x0,0x0,0x61,0x87,0x87,0x80,0x0,0x0,0x0,0x0,0x62,0x2d, - 0xb2,0x90,0x0,0x0,0x0,0x0,0x63,0x67,0x69,0x80,0x0,0x0,0x0,0x0,0x64,0xd, - 0x94,0x90,0x0,0x0,0x0,0x0,0x65,0x47,0x4b,0x80,0x0,0x0,0x0,0x0,0x65,0xed, - 0x76,0x90,0x0,0x0,0x0,0x0,0x67,0x27,0x2d,0x80,0x0,0x0,0x0,0x0,0x67,0xcd, - 0x58,0x90,0x0,0x0,0x0,0x0,0x69,0x7,0xf,0x80,0x0,0x0,0x0,0x0,0x69,0xad, - 0x3a,0x90,0x0,0x0,0x0,0x0,0x6a,0xe6,0xf1,0x80,0x0,0x0,0x0,0x0,0x6b,0x96, - 0x57,0x10,0x0,0x0,0x0,0x0,0x6c,0xd0,0xe,0x0,0x0,0x0,0x0,0x0,0x6d,0x76, - 0x39,0x10,0x0,0x0,0x0,0x0,0x6e,0xaf,0xf0,0x0,0x0,0x0,0x0,0x0,0x6f,0x56, - 0x1b,0x10,0x0,0x0,0x0,0x0,0x70,0x8f,0xd2,0x0,0x0,0x0,0x0,0x0,0x71,0x35, - 0xfd,0x10,0x0,0x0,0x0,0x0,0x72,0x6f,0xb4,0x0,0x0,0x0,0x0,0x0,0x73,0x15, - 0xdf,0x10,0x0,0x0,0x0,0x0,0x74,0x4f,0x96,0x0,0x0,0x0,0x0,0x0,0x74,0xfe, - 0xfb,0x90,0x0,0x0,0x0,0x0,0x76,0x38,0xb2,0x80,0x0,0x0,0x0,0x0,0x76,0xde, - 0xdd,0x90,0x0,0x0,0x0,0x0,0x78,0x18,0x94,0x80,0x0,0x0,0x0,0x0,0x78,0xbe, - 0xbf,0x90,0x0,0x0,0x0,0x0,0x79,0xf8,0x76,0x80,0x0,0x0,0x0,0x0,0x7a,0x9e, - 0xa1,0x90,0x0,0x0,0x0,0x0,0x7b,0xd8,0x58,0x80,0x0,0x0,0x0,0x0,0x7c,0x7e, - 0x83,0x90,0x0,0x0,0x0,0x0,0x7d,0xb8,0x3a,0x80,0x0,0x0,0x0,0x0,0x7e,0x5e, - 0x65,0x90,0x0,0x0,0x0,0x0,0x7f,0x98,0x1c,0x80,0x0,0x1,0x2,0x1,0x2,0x1, + 0x73,0x10,0x0,0x0,0x0,0x0,0x4a,0xe4,0x5,0x80,0x0,0x0,0x0,0x0,0x4b,0xb8, + 0x55,0x10,0x0,0x0,0x0,0x0,0x4c,0xcd,0x22,0x0,0x0,0x0,0x0,0x0,0x4d,0x98, + 0x37,0x10,0x0,0x0,0x0,0x0,0x4e,0xad,0x4,0x0,0x0,0x0,0x0,0x0,0x4f,0x78, + 0x19,0x10,0x0,0x0,0x0,0x0,0x50,0x8c,0xe6,0x0,0x0,0x0,0x0,0x0,0x51,0x61, + 0x35,0x90,0x0,0x0,0x0,0x0,0x52,0x6c,0xc8,0x0,0x0,0x0,0x0,0x0,0x53,0x41, + 0x17,0x90,0x0,0x0,0x0,0x0,0x54,0x4c,0xaa,0x0,0x0,0x0,0x0,0x0,0x55,0x20, + 0xf9,0x90,0x0,0x0,0x0,0x0,0x56,0x2c,0x8c,0x0,0x0,0x0,0x0,0x0,0x57,0x0, + 0xdb,0x90,0x0,0x0,0x0,0x0,0x58,0x15,0xa8,0x80,0x0,0x0,0x0,0x0,0x58,0xe0, + 0xbd,0x90,0x0,0x0,0x0,0x0,0x59,0xf5,0x8a,0x80,0x0,0x0,0x0,0x0,0x5a,0xc0, + 0x9f,0x90,0x0,0x0,0x0,0x0,0x5b,0xd5,0x6c,0x80,0x0,0x0,0x0,0x0,0x5c,0xa9, + 0xbc,0x10,0x0,0x0,0x0,0x0,0x5d,0xb5,0x4e,0x80,0x0,0x0,0x0,0x0,0x5e,0x89, + 0x9e,0x10,0x0,0x0,0x0,0x0,0x5f,0x95,0x30,0x80,0x0,0x0,0x0,0x0,0x60,0x69, + 0x80,0x10,0x0,0x0,0x0,0x0,0x61,0x7e,0x4d,0x0,0x0,0x0,0x0,0x0,0x62,0x49, + 0x62,0x10,0x0,0x0,0x0,0x0,0x63,0x5e,0x2f,0x0,0x0,0x0,0x0,0x0,0x64,0x29, + 0x44,0x10,0x0,0x0,0x0,0x0,0x65,0x3e,0x11,0x0,0x0,0x0,0x0,0x0,0x66,0x12, + 0x60,0x90,0x0,0x0,0x0,0x0,0x67,0x1d,0xf3,0x0,0x0,0x0,0x0,0x0,0x67,0xf2, + 0x42,0x90,0x0,0x0,0x0,0x0,0x68,0xfd,0xd5,0x0,0x0,0x0,0x0,0x0,0x69,0xd2, + 0x24,0x90,0x0,0x0,0x0,0x0,0x6a,0xdd,0xb7,0x0,0x0,0x0,0x0,0x0,0x6b,0xb2, + 0x6,0x90,0x0,0x0,0x0,0x0,0x6c,0xc6,0xd3,0x80,0x0,0x0,0x0,0x0,0x6d,0x91, + 0xe8,0x90,0x0,0x0,0x0,0x0,0x6e,0xa6,0xb5,0x80,0x0,0x0,0x0,0x0,0x6f,0x71, + 0xca,0x90,0x0,0x0,0x0,0x0,0x70,0x86,0x97,0x80,0x0,0x0,0x0,0x0,0x71,0x5a, + 0xe7,0x10,0x0,0x0,0x0,0x0,0x72,0x66,0x79,0x80,0x0,0x0,0x0,0x0,0x73,0x3a, + 0xc9,0x10,0x0,0x0,0x0,0x0,0x74,0x46,0x5b,0x80,0x0,0x0,0x0,0x0,0x75,0x1a, + 0xab,0x10,0x0,0x0,0x0,0x0,0x76,0x2f,0x78,0x0,0x0,0x0,0x0,0x0,0x76,0xfa, + 0x8d,0x10,0x0,0x0,0x0,0x0,0x78,0xf,0x5a,0x0,0x0,0x0,0x0,0x0,0x78,0xda, + 0x6f,0x10,0x0,0x0,0x0,0x0,0x79,0xef,0x3c,0x0,0x0,0x0,0x0,0x0,0x7a,0xba, + 0x51,0x10,0x0,0x0,0x0,0x0,0x7b,0xcf,0x1e,0x0,0x0,0x0,0x0,0x0,0x7c,0xa3, + 0x6d,0x90,0x0,0x0,0x0,0x0,0x7d,0xaf,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0x83, + 0x4f,0x90,0x0,0x0,0x0,0x0,0x7f,0x8e,0xe2,0x0,0x0,0x1,0x2,0x1,0x2,0x1, 0x2,0x3,0x2,0x3,0x2,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4, 0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4, 0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4, 0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4, 0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4, - 0x1,0x4,0x1,0x4,0x1,0xff,0xff,0x9e,0x1c,0x0,0x0,0xff,0xff,0x9d,0x90,0x0, + 0x1,0x4,0x1,0x4,0x1,0xff,0xff,0x9c,0x8c,0x0,0x0,0xff,0xff,0x9d,0x90,0x0, 0x4,0xff,0xff,0xab,0xa0,0x0,0x8,0xff,0xff,0xb9,0xb0,0x1,0xc,0xff,0xff,0xab, 0xa0,0x1,0x10,0xff,0xff,0x9d,0x90,0x0,0x4,0x4c,0x4d,0x54,0x0,0x4d,0x53,0x54, 0x0,0x43,0x53,0x54,0x0,0x43,0x44,0x54,0x0,0x4d,0x44,0x54,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x4d,0x53,0x54,0x37,0x4d,0x44, - 0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30, + 0x54,0x2c,0x4d,0x34,0x2e,0x31,0x2e,0x30,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30, 0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Creston - 0x0,0x0,0x0,0xe9, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x3,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0x9b, - 0xd6,0x4b,0x70,0x9e,0xf9,0x3b,0x0,0x1,0x2,0x1,0xff,0xff,0x92,0xc4,0x0,0x0, - 0xff,0xff,0x9d,0x90,0x0,0x4,0xff,0xff,0x8f,0x80,0x0,0x8,0xff,0xff,0x9d,0x90, - 0x0,0x4,0x4c,0x4d,0x54,0x0,0x4d,0x53,0x54,0x0,0x50,0x53,0x54,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0, - 0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0, - 0x0,0xc,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x5e,0x3d, - 0x70,0xbc,0xff,0xff,0xff,0xff,0x9b,0xd6,0x4b,0x70,0xff,0xff,0xff,0xff,0x9e,0xf9, - 0x3b,0x0,0x0,0x1,0x2,0x1,0xff,0xff,0x92,0xc4,0x0,0x0,0xff,0xff,0x9d,0x90, - 0x0,0x4,0xff,0xff,0x8f,0x80,0x0,0x8,0xff,0xff,0x9d,0x90,0x0,0x4,0x4c,0x4d, - 0x54,0x0,0x4d,0x53,0x54,0x0,0x50,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xa,0x4d,0x53,0x54,0x37,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Edmonton - 0x0,0x0,0x9,0x62, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Goose_Bay + 0x0,0x0,0xc,0x93, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x9b,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0x88, - 0xde,0xce,0xe0,0x9e,0xb8,0xaf,0x90,0x9f,0xbb,0x7,0x80,0xa0,0x98,0x91,0x90,0xa0, - 0xd2,0x85,0x80,0xa2,0x8a,0xe8,0x90,0xa3,0x84,0x6,0x0,0xa4,0x6a,0xca,0x90,0xa5, - 0x35,0xc3,0x80,0xa6,0x53,0xe7,0x10,0xa7,0x15,0xa5,0x80,0xa8,0x33,0xc9,0x10,0xa8, - 0xfe,0xc2,0x0,0xcb,0x89,0xc,0x90,0xd2,0x23,0xf4,0x70,0xd2,0x61,0x18,0x0,0xd5, - 0x55,0xe3,0x10,0xd6,0x20,0xdc,0x0,0xfa,0xf8,0x75,0x10,0xfb,0xe8,0x58,0x0,0xfe, - 0xb8,0x39,0x10,0xff,0xa8,0x1c,0x0,0x4,0x61,0x19,0x90,0x5,0x50,0xfc,0x80,0x6, - 0x40,0xfb,0x90,0x7,0x30,0xde,0x80,0x8,0x20,0xdd,0x90,0x9,0x10,0xc0,0x80,0xa, - 0x0,0xbf,0x90,0xa,0xf0,0xa2,0x80,0xb,0xe0,0xa1,0x90,0xc,0xd9,0xbf,0x0,0xd, - 0xc0,0x83,0x90,0xe,0xb9,0xa1,0x0,0xf,0xa9,0xa0,0x10,0x10,0x99,0x83,0x0,0x11, - 0x89,0x82,0x10,0x12,0x79,0x65,0x0,0x13,0x69,0x64,0x10,0x14,0x59,0x47,0x0,0x15, - 0x49,0x46,0x10,0x16,0x39,0x29,0x0,0x17,0x29,0x28,0x10,0x18,0x22,0x45,0x80,0x19, - 0x9,0xa,0x10,0x1a,0x2,0x27,0x80,0x1a,0xf2,0x26,0x90,0x1b,0xe2,0x9,0x80,0x1c, - 0xd2,0x8,0x90,0x1d,0xc1,0xeb,0x80,0x1e,0xb1,0xea,0x90,0x1f,0xa1,0xcd,0x80,0x20, - 0x76,0x1d,0x10,0x21,0x81,0xaf,0x80,0x22,0x55,0xff,0x10,0x23,0x6a,0xcc,0x0,0x24, - 0x35,0xe1,0x10,0x25,0x4a,0xae,0x0,0x26,0x15,0xc3,0x10,0x27,0x2a,0x90,0x0,0x27, - 0xfe,0xdf,0x90,0x29,0xa,0x72,0x0,0x29,0xde,0xc1,0x90,0x2a,0xea,0x54,0x0,0x2b, - 0xbe,0xa3,0x90,0x2c,0xd3,0x70,0x80,0x2d,0x9e,0x85,0x90,0x2e,0xb3,0x52,0x80,0x2f, - 0x7e,0x67,0x90,0x30,0x93,0x34,0x80,0x31,0x67,0x84,0x10,0x32,0x73,0x16,0x80,0x33, - 0x47,0x66,0x10,0x34,0x52,0xf8,0x80,0x35,0x27,0x48,0x10,0x36,0x32,0xda,0x80,0x37, - 0x7,0x2a,0x10,0x38,0x1b,0xf7,0x0,0x38,0xe7,0xc,0x10,0x39,0xfb,0xd9,0x0,0x3a, - 0xc6,0xee,0x10,0x3b,0xdb,0xbb,0x0,0x3c,0xb0,0xa,0x90,0x3d,0xbb,0x9d,0x0,0x3e, - 0x8f,0xec,0x90,0x3f,0x9b,0x7f,0x0,0x40,0x6f,0xce,0x90,0x41,0x84,0x9b,0x80,0x42, - 0x4f,0xb0,0x90,0x43,0x64,0x7d,0x80,0x44,0x2f,0x92,0x90,0x45,0x44,0x5f,0x80,0x45, - 0xf3,0xc5,0x10,0x47,0x2d,0x7c,0x0,0x47,0xd3,0xa7,0x10,0x49,0xd,0x5e,0x0,0x49, - 0xb3,0x89,0x10,0x4a,0xed,0x40,0x0,0x4b,0x9c,0xa5,0x90,0x4c,0xd6,0x5c,0x80,0x4d, - 0x7c,0x87,0x90,0x4e,0xb6,0x3e,0x80,0x4f,0x5c,0x69,0x90,0x50,0x96,0x20,0x80,0x51, - 0x3c,0x4b,0x90,0x52,0x76,0x2,0x80,0x53,0x1c,0x2d,0x90,0x54,0x55,0xe4,0x80,0x54, - 0xfc,0xf,0x90,0x56,0x35,0xc6,0x80,0x56,0xe5,0x2c,0x10,0x58,0x1e,0xe3,0x0,0x58, - 0xc5,0xe,0x10,0x59,0xfe,0xc5,0x0,0x5a,0xa4,0xf0,0x10,0x5b,0xde,0xa7,0x0,0x5c, - 0x84,0xd2,0x10,0x5d,0xbe,0x89,0x0,0x5e,0x64,0xb4,0x10,0x5f,0x9e,0x6b,0x0,0x60, - 0x4d,0xd0,0x90,0x61,0x87,0x87,0x80,0x62,0x2d,0xb2,0x90,0x63,0x67,0x69,0x80,0x64, - 0xd,0x94,0x90,0x65,0x47,0x4b,0x80,0x65,0xed,0x76,0x90,0x67,0x27,0x2d,0x80,0x67, - 0xcd,0x58,0x90,0x69,0x7,0xf,0x80,0x69,0xad,0x3a,0x90,0x6a,0xe6,0xf1,0x80,0x6b, - 0x96,0x57,0x10,0x6c,0xd0,0xe,0x0,0x6d,0x76,0x39,0x10,0x6e,0xaf,0xf0,0x0,0x6f, - 0x56,0x1b,0x10,0x70,0x8f,0xd2,0x0,0x71,0x35,0xfd,0x10,0x72,0x6f,0xb4,0x0,0x73, - 0x15,0xdf,0x10,0x74,0x4f,0x96,0x0,0x74,0xfe,0xfb,0x90,0x76,0x38,0xb2,0x80,0x76, - 0xde,0xdd,0x90,0x78,0x18,0x94,0x80,0x78,0xbe,0xbf,0x90,0x79,0xf8,0x76,0x80,0x7a, - 0x9e,0xa1,0x90,0x7b,0xd8,0x58,0x80,0x7c,0x7e,0x83,0x90,0x7d,0xb8,0x3a,0x80,0x7e, - 0x5e,0x65,0x90,0x7f,0x98,0x1c,0x80,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0xff,0xff,0x95,0xa0,0x0,0x0,0xff,0xff,0xab,0xa0,0x1,0x4,0xff,0xff, - 0x9d,0x90,0x0,0x8,0xff,0xff,0xab,0xa0,0x1,0xc,0xff,0xff,0xab,0xa0,0x1,0x10, - 0x4c,0x4d,0x54,0x0,0x4d,0x44,0x54,0x0,0x4d,0x53,0x54,0x0,0x4d,0x57,0x54,0x0, - 0x4d,0x50,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x1,0x54,0x5a, - 0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x9b,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0xf8,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xff,0xff,0xff,0xff,0x88,0xde,0xce,0xe0,0xff,0xff,0xff,0xff,0x9e,0xb8, - 0xaf,0x90,0xff,0xff,0xff,0xff,0x9f,0xbb,0x7,0x80,0xff,0xff,0xff,0xff,0xa0,0x98, - 0x91,0x90,0xff,0xff,0xff,0xff,0xa0,0xd2,0x85,0x80,0xff,0xff,0xff,0xff,0xa2,0x8a, - 0xe8,0x90,0xff,0xff,0xff,0xff,0xa3,0x84,0x6,0x0,0xff,0xff,0xff,0xff,0xa4,0x6a, - 0xca,0x90,0xff,0xff,0xff,0xff,0xa5,0x35,0xc3,0x80,0xff,0xff,0xff,0xff,0xa6,0x53, - 0xe7,0x10,0xff,0xff,0xff,0xff,0xa7,0x15,0xa5,0x80,0xff,0xff,0xff,0xff,0xa8,0x33, - 0xc9,0x10,0xff,0xff,0xff,0xff,0xa8,0xfe,0xc2,0x0,0xff,0xff,0xff,0xff,0xcb,0x89, - 0xc,0x90,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x61, - 0x18,0x0,0xff,0xff,0xff,0xff,0xd5,0x55,0xe3,0x10,0xff,0xff,0xff,0xff,0xd6,0x20, - 0xdc,0x0,0xff,0xff,0xff,0xff,0xfa,0xf8,0x75,0x10,0xff,0xff,0xff,0xff,0xfb,0xe8, - 0x58,0x0,0xff,0xff,0xff,0xff,0xfe,0xb8,0x39,0x10,0xff,0xff,0xff,0xff,0xff,0xa8, - 0x1c,0x0,0x0,0x0,0x0,0x0,0x4,0x61,0x19,0x90,0x0,0x0,0x0,0x0,0x5,0x50, - 0xfc,0x80,0x0,0x0,0x0,0x0,0x6,0x40,0xfb,0x90,0x0,0x0,0x0,0x0,0x7,0x30, - 0xde,0x80,0x0,0x0,0x0,0x0,0x8,0x20,0xdd,0x90,0x0,0x0,0x0,0x0,0x9,0x10, - 0xc0,0x80,0x0,0x0,0x0,0x0,0xa,0x0,0xbf,0x90,0x0,0x0,0x0,0x0,0xa,0xf0, - 0xa2,0x80,0x0,0x0,0x0,0x0,0xb,0xe0,0xa1,0x90,0x0,0x0,0x0,0x0,0xc,0xd9, - 0xbf,0x0,0x0,0x0,0x0,0x0,0xd,0xc0,0x83,0x90,0x0,0x0,0x0,0x0,0xe,0xb9, - 0xa1,0x0,0x0,0x0,0x0,0x0,0xf,0xa9,0xa0,0x10,0x0,0x0,0x0,0x0,0x10,0x99, - 0x83,0x0,0x0,0x0,0x0,0x0,0x11,0x89,0x82,0x10,0x0,0x0,0x0,0x0,0x12,0x79, - 0x65,0x0,0x0,0x0,0x0,0x0,0x13,0x69,0x64,0x10,0x0,0x0,0x0,0x0,0x14,0x59, - 0x47,0x0,0x0,0x0,0x0,0x0,0x15,0x49,0x46,0x10,0x0,0x0,0x0,0x0,0x16,0x39, - 0x29,0x0,0x0,0x0,0x0,0x0,0x17,0x29,0x28,0x10,0x0,0x0,0x0,0x0,0x18,0x22, - 0x45,0x80,0x0,0x0,0x0,0x0,0x19,0x9,0xa,0x10,0x0,0x0,0x0,0x0,0x1a,0x2, - 0x27,0x80,0x0,0x0,0x0,0x0,0x1a,0xf2,0x26,0x90,0x0,0x0,0x0,0x0,0x1b,0xe2, - 0x9,0x80,0x0,0x0,0x0,0x0,0x1c,0xd2,0x8,0x90,0x0,0x0,0x0,0x0,0x1d,0xc1, - 0xeb,0x80,0x0,0x0,0x0,0x0,0x1e,0xb1,0xea,0x90,0x0,0x0,0x0,0x0,0x1f,0xa1, - 0xcd,0x80,0x0,0x0,0x0,0x0,0x20,0x76,0x1d,0x10,0x0,0x0,0x0,0x0,0x21,0x81, - 0xaf,0x80,0x0,0x0,0x0,0x0,0x22,0x55,0xff,0x10,0x0,0x0,0x0,0x0,0x23,0x6a, - 0xcc,0x0,0x0,0x0,0x0,0x0,0x24,0x35,0xe1,0x10,0x0,0x0,0x0,0x0,0x25,0x4a, - 0xae,0x0,0x0,0x0,0x0,0x0,0x26,0x15,0xc3,0x10,0x0,0x0,0x0,0x0,0x27,0x2a, - 0x90,0x0,0x0,0x0,0x0,0x0,0x27,0xfe,0xdf,0x90,0x0,0x0,0x0,0x0,0x29,0xa, - 0x72,0x0,0x0,0x0,0x0,0x0,0x29,0xde,0xc1,0x90,0x0,0x0,0x0,0x0,0x2a,0xea, - 0x54,0x0,0x0,0x0,0x0,0x0,0x2b,0xbe,0xa3,0x90,0x0,0x0,0x0,0x0,0x2c,0xd3, - 0x70,0x80,0x0,0x0,0x0,0x0,0x2d,0x9e,0x85,0x90,0x0,0x0,0x0,0x0,0x2e,0xb3, - 0x52,0x80,0x0,0x0,0x0,0x0,0x2f,0x7e,0x67,0x90,0x0,0x0,0x0,0x0,0x30,0x93, - 0x34,0x80,0x0,0x0,0x0,0x0,0x31,0x67,0x84,0x10,0x0,0x0,0x0,0x0,0x32,0x73, - 0x16,0x80,0x0,0x0,0x0,0x0,0x33,0x47,0x66,0x10,0x0,0x0,0x0,0x0,0x34,0x52, - 0xf8,0x80,0x0,0x0,0x0,0x0,0x35,0x27,0x48,0x10,0x0,0x0,0x0,0x0,0x36,0x32, - 0xda,0x80,0x0,0x0,0x0,0x0,0x37,0x7,0x2a,0x10,0x0,0x0,0x0,0x0,0x38,0x1b, - 0xf7,0x0,0x0,0x0,0x0,0x0,0x38,0xe7,0xc,0x10,0x0,0x0,0x0,0x0,0x39,0xfb, - 0xd9,0x0,0x0,0x0,0x0,0x0,0x3a,0xc6,0xee,0x10,0x0,0x0,0x0,0x0,0x3b,0xdb, - 0xbb,0x0,0x0,0x0,0x0,0x0,0x3c,0xb0,0xa,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb, - 0x9d,0x0,0x0,0x0,0x0,0x0,0x3e,0x8f,0xec,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b, - 0x7f,0x0,0x0,0x0,0x0,0x0,0x40,0x6f,0xce,0x90,0x0,0x0,0x0,0x0,0x41,0x84, - 0x9b,0x80,0x0,0x0,0x0,0x0,0x42,0x4f,0xb0,0x90,0x0,0x0,0x0,0x0,0x43,0x64, - 0x7d,0x80,0x0,0x0,0x0,0x0,0x44,0x2f,0x92,0x90,0x0,0x0,0x0,0x0,0x45,0x44, - 0x5f,0x80,0x0,0x0,0x0,0x0,0x45,0xf3,0xc5,0x10,0x0,0x0,0x0,0x0,0x47,0x2d, - 0x7c,0x0,0x0,0x0,0x0,0x0,0x47,0xd3,0xa7,0x10,0x0,0x0,0x0,0x0,0x49,0xd, - 0x5e,0x0,0x0,0x0,0x0,0x0,0x49,0xb3,0x89,0x10,0x0,0x0,0x0,0x0,0x4a,0xed, - 0x40,0x0,0x0,0x0,0x0,0x0,0x4b,0x9c,0xa5,0x90,0x0,0x0,0x0,0x0,0x4c,0xd6, - 0x5c,0x80,0x0,0x0,0x0,0x0,0x4d,0x7c,0x87,0x90,0x0,0x0,0x0,0x0,0x4e,0xb6, - 0x3e,0x80,0x0,0x0,0x0,0x0,0x4f,0x5c,0x69,0x90,0x0,0x0,0x0,0x0,0x50,0x96, - 0x20,0x80,0x0,0x0,0x0,0x0,0x51,0x3c,0x4b,0x90,0x0,0x0,0x0,0x0,0x52,0x76, - 0x2,0x80,0x0,0x0,0x0,0x0,0x53,0x1c,0x2d,0x90,0x0,0x0,0x0,0x0,0x54,0x55, - 0xe4,0x80,0x0,0x0,0x0,0x0,0x54,0xfc,0xf,0x90,0x0,0x0,0x0,0x0,0x56,0x35, - 0xc6,0x80,0x0,0x0,0x0,0x0,0x56,0xe5,0x2c,0x10,0x0,0x0,0x0,0x0,0x58,0x1e, - 0xe3,0x0,0x0,0x0,0x0,0x0,0x58,0xc5,0xe,0x10,0x0,0x0,0x0,0x0,0x59,0xfe, - 0xc5,0x0,0x0,0x0,0x0,0x0,0x5a,0xa4,0xf0,0x10,0x0,0x0,0x0,0x0,0x5b,0xde, - 0xa7,0x0,0x0,0x0,0x0,0x0,0x5c,0x84,0xd2,0x10,0x0,0x0,0x0,0x0,0x5d,0xbe, - 0x89,0x0,0x0,0x0,0x0,0x0,0x5e,0x64,0xb4,0x10,0x0,0x0,0x0,0x0,0x5f,0x9e, - 0x6b,0x0,0x0,0x0,0x0,0x0,0x60,0x4d,0xd0,0x90,0x0,0x0,0x0,0x0,0x61,0x87, - 0x87,0x80,0x0,0x0,0x0,0x0,0x62,0x2d,0xb2,0x90,0x0,0x0,0x0,0x0,0x63,0x67, - 0x69,0x80,0x0,0x0,0x0,0x0,0x64,0xd,0x94,0x90,0x0,0x0,0x0,0x0,0x65,0x47, - 0x4b,0x80,0x0,0x0,0x0,0x0,0x65,0xed,0x76,0x90,0x0,0x0,0x0,0x0,0x67,0x27, - 0x2d,0x80,0x0,0x0,0x0,0x0,0x67,0xcd,0x58,0x90,0x0,0x0,0x0,0x0,0x69,0x7, - 0xf,0x80,0x0,0x0,0x0,0x0,0x69,0xad,0x3a,0x90,0x0,0x0,0x0,0x0,0x6a,0xe6, - 0xf1,0x80,0x0,0x0,0x0,0x0,0x6b,0x96,0x57,0x10,0x0,0x0,0x0,0x0,0x6c,0xd0, - 0xe,0x0,0x0,0x0,0x0,0x0,0x6d,0x76,0x39,0x10,0x0,0x0,0x0,0x0,0x6e,0xaf, - 0xf0,0x0,0x0,0x0,0x0,0x0,0x6f,0x56,0x1b,0x10,0x0,0x0,0x0,0x0,0x70,0x8f, - 0xd2,0x0,0x0,0x0,0x0,0x0,0x71,0x35,0xfd,0x10,0x0,0x0,0x0,0x0,0x72,0x6f, - 0xb4,0x0,0x0,0x0,0x0,0x0,0x73,0x15,0xdf,0x10,0x0,0x0,0x0,0x0,0x74,0x4f, - 0x96,0x0,0x0,0x0,0x0,0x0,0x74,0xfe,0xfb,0x90,0x0,0x0,0x0,0x0,0x76,0x38, - 0xb2,0x80,0x0,0x0,0x0,0x0,0x76,0xde,0xdd,0x90,0x0,0x0,0x0,0x0,0x78,0x18, - 0x94,0x80,0x0,0x0,0x0,0x0,0x78,0xbe,0xbf,0x90,0x0,0x0,0x0,0x0,0x79,0xf8, - 0x76,0x80,0x0,0x0,0x0,0x0,0x7a,0x9e,0xa1,0x90,0x0,0x0,0x0,0x0,0x7b,0xd8, - 0x58,0x80,0x0,0x0,0x0,0x0,0x7c,0x7e,0x83,0x90,0x0,0x0,0x0,0x0,0x7d,0xb8, - 0x3a,0x80,0x0,0x0,0x0,0x0,0x7e,0x5e,0x65,0x90,0x0,0x0,0x0,0x0,0x7f,0x98, - 0x1c,0x80,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x3,0x4,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0x95, - 0xa0,0x0,0x0,0xff,0xff,0xab,0xa0,0x1,0x4,0xff,0xff,0x9d,0x90,0x0,0x8,0xff, - 0xff,0xab,0xa0,0x1,0xc,0xff,0xff,0xab,0xa0,0x1,0x10,0x4c,0x4d,0x54,0x0,0x4d, - 0x44,0x54,0x0,0x4d,0x53,0x54,0x0,0x4d,0x57,0x54,0x0,0x4d,0x50,0x54,0x0,0x0, - 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x1,0xa,0x4d,0x53,0x54,0x37,0x4d,0x44, - 0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30, - 0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Araguaina - 0x0,0x0,0x3,0x80, + 0x0,0x0,0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xcc,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x21,0x80,0x0,0x0,0x0,0x9e, + 0xb8,0x7e,0x8c,0x9f,0xba,0xd6,0x7c,0xbe,0x9e,0x4d,0x6c,0xc0,0xb8,0x31,0x38,0xc1, + 0x79,0xef,0xa8,0xc2,0x98,0x13,0x38,0xc3,0x59,0xd1,0xa8,0xc4,0x77,0xf5,0x38,0xc5, + 0x39,0xb3,0xa8,0xc6,0x61,0x11,0xb8,0xc7,0x19,0x95,0xa8,0xc8,0x40,0xf3,0xb8,0xc9, + 0x2,0xb2,0x28,0xca,0x20,0xd5,0xb8,0xca,0xe2,0x94,0x28,0xcc,0x0,0xb7,0xb8,0xd2, + 0x23,0xf4,0x70,0xd2,0x60,0xe6,0xc8,0xd3,0x88,0x44,0xd8,0xd4,0x4a,0x3,0x48,0xd5, + 0x68,0x26,0xd8,0xd6,0x29,0xe5,0x48,0xd7,0x48,0x8,0xd8,0xd8,0x9,0xc7,0x48,0xd9, + 0x27,0xea,0xd8,0xd9,0xe9,0xa9,0x48,0xdb,0x11,0x7,0x58,0xdb,0xd2,0xc5,0xc8,0xdc, + 0xde,0x74,0x58,0xdd,0xa9,0x6d,0x48,0xde,0xbe,0x56,0x58,0xdf,0x89,0x4f,0x48,0xe0, + 0x9e,0x38,0x58,0xe1,0x69,0x31,0x48,0xe2,0x7e,0x1a,0x58,0xe3,0x49,0x13,0x48,0xe4, + 0x5d,0xfc,0x58,0xe5,0x28,0xf5,0x48,0xe6,0x47,0x18,0xd8,0xe7,0x12,0x11,0xc8,0xe8, + 0x26,0xfa,0xd8,0xe8,0xf1,0xf3,0xc8,0xea,0x6,0xdc,0xd8,0xea,0xd1,0xd5,0xc8,0xeb, + 0xe6,0xbe,0xd8,0xec,0xb1,0xb7,0xc8,0xed,0xc6,0xa0,0xd8,0xee,0xbf,0xbe,0x48,0xef, + 0xaf,0xbd,0x58,0xf0,0x9f,0xa0,0x48,0xf1,0x8f,0x9f,0x58,0xf2,0x7f,0x82,0x48,0xf3, + 0x6f,0x81,0x58,0xf4,0x5f,0x64,0x48,0xf5,0x4f,0x63,0x58,0xf6,0x3f,0x46,0x48,0xf7, + 0x2f,0x45,0x58,0xf8,0x28,0x62,0xc8,0xf8,0xda,0x6b,0x58,0xf9,0xf,0x2e,0x60,0xfa, + 0x8,0x4b,0xd0,0xfa,0xf8,0x4a,0xe0,0xfb,0xe8,0x2d,0xd0,0xfc,0xd8,0x2c,0xe0,0xfd, + 0xc8,0xf,0xd0,0xfe,0xb8,0xe,0xe0,0xff,0xa7,0xf1,0xd0,0x0,0x97,0xf0,0xe0,0x1, + 0x87,0xd3,0xd0,0x2,0x77,0xd2,0xe0,0x3,0x70,0xf0,0x50,0x4,0x60,0xef,0x60,0x5, + 0x50,0xd2,0x50,0x6,0x40,0xd1,0x60,0x7,0x30,0xb4,0x50,0x8,0x20,0xb3,0x60,0x9, + 0x10,0x96,0x50,0xa,0x0,0x95,0x60,0xa,0xf0,0x78,0x50,0xb,0xe0,0x77,0x60,0xc, + 0xd9,0x94,0xd0,0xd,0xc0,0x59,0x60,0xe,0xb9,0x76,0xd0,0xf,0xa9,0x75,0xe0,0x10, + 0x99,0x58,0xd0,0x11,0x89,0x57,0xe0,0x12,0x79,0x3a,0xd0,0x13,0x69,0x39,0xe0,0x14, + 0x59,0x1c,0xd0,0x15,0x49,0x1b,0xe0,0x16,0x38,0xfe,0xd0,0x17,0x28,0xfd,0xe0,0x18, + 0x22,0x1b,0x50,0x19,0x8,0xdf,0xe0,0x1a,0x1,0xfd,0x50,0x1a,0xf1,0xfc,0x60,0x1b, + 0xe1,0xdf,0x50,0x1c,0xd1,0xde,0x60,0x1d,0xc1,0xc1,0x50,0x1e,0xb1,0xc0,0x60,0x1f, + 0xa1,0xa3,0x50,0x20,0x75,0xd6,0xfc,0x21,0x81,0x69,0x6c,0x22,0x55,0xb8,0xfc,0x23, + 0x6a,0x77,0xdc,0x24,0x35,0x9a,0xfc,0x25,0x4a,0x67,0xec,0x26,0x15,0x7c,0xfc,0x27, + 0x2a,0x49,0xec,0x27,0xfe,0x99,0x7c,0x29,0xa,0x2b,0xec,0x29,0xde,0x7b,0x7c,0x2a, + 0xea,0xd,0xec,0x2b,0xbe,0x5d,0x7c,0x2c,0xd3,0x2a,0x6c,0x2d,0x9e,0x3f,0x7c,0x2e, + 0xb3,0xc,0x6c,0x2f,0x7e,0x21,0x7c,0x30,0x92,0xee,0x6c,0x31,0x67,0x3d,0xfc,0x32, + 0x72,0xd0,0x6c,0x33,0x47,0x1f,0xfc,0x34,0x52,0xb2,0x6c,0x35,0x27,0x1,0xfc,0x36, + 0x32,0x94,0x6c,0x37,0x6,0xe3,0xfc,0x38,0x1b,0xb0,0xec,0x38,0xe6,0xc5,0xfc,0x39, + 0xfb,0x92,0xec,0x3a,0xc6,0xa7,0xfc,0x3b,0xdb,0x74,0xec,0x3c,0xaf,0xc4,0x7c,0x3d, + 0xbb,0x56,0xec,0x3e,0x8f,0xa6,0x7c,0x3f,0x9b,0x38,0xec,0x40,0x6f,0x88,0x7c,0x41, + 0x84,0x55,0x6c,0x42,0x4f,0x6a,0x7c,0x43,0x64,0x37,0x6c,0x44,0x2f,0x4c,0x7c,0x45, + 0x44,0x19,0x6c,0x45,0xf3,0x7e,0xfc,0x47,0x2d,0x35,0xec,0x47,0xd3,0x60,0xfc,0x49, + 0xd,0x17,0xec,0x49,0xb3,0x42,0xfc,0x4a,0xec,0xf9,0xec,0x4b,0x9c,0x5f,0x7c,0x4c, + 0xd6,0x16,0x6c,0x4d,0x7c,0x41,0x7c,0x4e,0xb6,0x14,0x50,0x4f,0x5c,0x3f,0x60,0x50, + 0x95,0xf6,0x50,0x51,0x3c,0x21,0x60,0x52,0x75,0xd8,0x50,0x53,0x1c,0x3,0x60,0x54, + 0x55,0xba,0x50,0x54,0xfb,0xe5,0x60,0x56,0x35,0x9c,0x50,0x56,0xe5,0x1,0xe0,0x58, + 0x1e,0xb8,0xd0,0x58,0xc4,0xe3,0xe0,0x59,0xfe,0x9a,0xd0,0x5a,0xa4,0xc5,0xe0,0x5b, + 0xde,0x7c,0xd0,0x5c,0x84,0xa7,0xe0,0x5d,0xbe,0x5e,0xd0,0x5e,0x64,0x89,0xe0,0x5f, + 0x9e,0x40,0xd0,0x60,0x4d,0xa6,0x60,0x61,0x87,0x5d,0x50,0x62,0x2d,0x88,0x60,0x63, + 0x67,0x3f,0x50,0x64,0xd,0x6a,0x60,0x65,0x47,0x21,0x50,0x65,0xed,0x4c,0x60,0x67, + 0x27,0x3,0x50,0x67,0xcd,0x2e,0x60,0x69,0x6,0xe5,0x50,0x69,0xad,0x10,0x60,0x6a, + 0xe6,0xc7,0x50,0x6b,0x96,0x2c,0xe0,0x6c,0xcf,0xe3,0xd0,0x6d,0x76,0xe,0xe0,0x6e, + 0xaf,0xc5,0xd0,0x6f,0x55,0xf0,0xe0,0x70,0x8f,0xa7,0xd0,0x71,0x35,0xd2,0xe0,0x72, + 0x6f,0x89,0xd0,0x73,0x15,0xb4,0xe0,0x74,0x4f,0x6b,0xd0,0x74,0xfe,0xd1,0x60,0x76, + 0x38,0x88,0x50,0x76,0xde,0xb3,0x60,0x78,0x18,0x6a,0x50,0x78,0xbe,0x95,0x60,0x79, + 0xf8,0x4c,0x50,0x7a,0x9e,0x77,0x60,0x7b,0xd8,0x2e,0x50,0x7c,0x7e,0x59,0x60,0x7d, + 0xb8,0x10,0x50,0x7e,0x5e,0x3b,0x60,0x7f,0x97,0xf2,0x50,0x1,0x2,0x1,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x6,0x5,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, + 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, + 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, + 0x8,0x7,0x8,0x9,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, + 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, + 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, + 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, + 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, + 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, + 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0xff,0xff,0xc7,0x5c,0x0,0x0,0xff,0xff,0xce, + 0x94,0x0,0x4,0xff,0xff,0xdc,0xa4,0x1,0x8,0xff,0xff,0xce,0xc8,0x0,0x4,0xff, + 0xff,0xdc,0xd8,0x1,0x8,0xff,0xff,0xdc,0xd8,0x1,0xc,0xff,0xff,0xdc,0xd8,0x1, + 0x10,0xff,0xff,0xd5,0xd0,0x1,0x14,0xff,0xff,0xc7,0xc0,0x0,0x18,0xff,0xff,0xe3, + 0xe0,0x1,0x1c,0xff,0xff,0xd5,0xd0,0x1,0x14,0x4c,0x4d,0x54,0x0,0x4e,0x53,0x54, + 0x0,0x4e,0x44,0x54,0x0,0x4e,0x50,0x54,0x0,0x4e,0x57,0x54,0x0,0x41,0x44,0x54, + 0x0,0x41,0x53,0x54,0x0,0x41,0x44,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x1, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, + 0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0xcd,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x21,0xf8,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x5e,0x3d,0x3c,0x24,0xff,0xff,0xff,0xff, + 0x9e,0xb8,0x7e,0x8c,0xff,0xff,0xff,0xff,0x9f,0xba,0xd6,0x7c,0xff,0xff,0xff,0xff, + 0xbe,0x9e,0x4d,0x6c,0xff,0xff,0xff,0xff,0xc0,0xb8,0x31,0x38,0xff,0xff,0xff,0xff, + 0xc1,0x79,0xef,0xa8,0xff,0xff,0xff,0xff,0xc2,0x98,0x13,0x38,0xff,0xff,0xff,0xff, + 0xc3,0x59,0xd1,0xa8,0xff,0xff,0xff,0xff,0xc4,0x77,0xf5,0x38,0xff,0xff,0xff,0xff, + 0xc5,0x39,0xb3,0xa8,0xff,0xff,0xff,0xff,0xc6,0x61,0x11,0xb8,0xff,0xff,0xff,0xff, + 0xc7,0x19,0x95,0xa8,0xff,0xff,0xff,0xff,0xc8,0x40,0xf3,0xb8,0xff,0xff,0xff,0xff, + 0xc9,0x2,0xb2,0x28,0xff,0xff,0xff,0xff,0xca,0x20,0xd5,0xb8,0xff,0xff,0xff,0xff, + 0xca,0xe2,0x94,0x28,0xff,0xff,0xff,0xff,0xcc,0x0,0xb7,0xb8,0xff,0xff,0xff,0xff, + 0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x60,0xe6,0xc8,0xff,0xff,0xff,0xff, + 0xd3,0x88,0x44,0xd8,0xff,0xff,0xff,0xff,0xd4,0x4a,0x3,0x48,0xff,0xff,0xff,0xff, + 0xd5,0x68,0x26,0xd8,0xff,0xff,0xff,0xff,0xd6,0x29,0xe5,0x48,0xff,0xff,0xff,0xff, + 0xd7,0x48,0x8,0xd8,0xff,0xff,0xff,0xff,0xd8,0x9,0xc7,0x48,0xff,0xff,0xff,0xff, + 0xd9,0x27,0xea,0xd8,0xff,0xff,0xff,0xff,0xd9,0xe9,0xa9,0x48,0xff,0xff,0xff,0xff, + 0xdb,0x11,0x7,0x58,0xff,0xff,0xff,0xff,0xdb,0xd2,0xc5,0xc8,0xff,0xff,0xff,0xff, + 0xdc,0xde,0x74,0x58,0xff,0xff,0xff,0xff,0xdd,0xa9,0x6d,0x48,0xff,0xff,0xff,0xff, + 0xde,0xbe,0x56,0x58,0xff,0xff,0xff,0xff,0xdf,0x89,0x4f,0x48,0xff,0xff,0xff,0xff, + 0xe0,0x9e,0x38,0x58,0xff,0xff,0xff,0xff,0xe1,0x69,0x31,0x48,0xff,0xff,0xff,0xff, + 0xe2,0x7e,0x1a,0x58,0xff,0xff,0xff,0xff,0xe3,0x49,0x13,0x48,0xff,0xff,0xff,0xff, + 0xe4,0x5d,0xfc,0x58,0xff,0xff,0xff,0xff,0xe5,0x28,0xf5,0x48,0xff,0xff,0xff,0xff, + 0xe6,0x47,0x18,0xd8,0xff,0xff,0xff,0xff,0xe7,0x12,0x11,0xc8,0xff,0xff,0xff,0xff, + 0xe8,0x26,0xfa,0xd8,0xff,0xff,0xff,0xff,0xe8,0xf1,0xf3,0xc8,0xff,0xff,0xff,0xff, + 0xea,0x6,0xdc,0xd8,0xff,0xff,0xff,0xff,0xea,0xd1,0xd5,0xc8,0xff,0xff,0xff,0xff, + 0xeb,0xe6,0xbe,0xd8,0xff,0xff,0xff,0xff,0xec,0xb1,0xb7,0xc8,0xff,0xff,0xff,0xff, + 0xed,0xc6,0xa0,0xd8,0xff,0xff,0xff,0xff,0xee,0xbf,0xbe,0x48,0xff,0xff,0xff,0xff, + 0xef,0xaf,0xbd,0x58,0xff,0xff,0xff,0xff,0xf0,0x9f,0xa0,0x48,0xff,0xff,0xff,0xff, + 0xf1,0x8f,0x9f,0x58,0xff,0xff,0xff,0xff,0xf2,0x7f,0x82,0x48,0xff,0xff,0xff,0xff, + 0xf3,0x6f,0x81,0x58,0xff,0xff,0xff,0xff,0xf4,0x5f,0x64,0x48,0xff,0xff,0xff,0xff, + 0xf5,0x4f,0x63,0x58,0xff,0xff,0xff,0xff,0xf6,0x3f,0x46,0x48,0xff,0xff,0xff,0xff, + 0xf7,0x2f,0x45,0x58,0xff,0xff,0xff,0xff,0xf8,0x28,0x62,0xc8,0xff,0xff,0xff,0xff, + 0xf8,0xda,0x6b,0x58,0xff,0xff,0xff,0xff,0xf9,0xf,0x2e,0x60,0xff,0xff,0xff,0xff, + 0xfa,0x8,0x4b,0xd0,0xff,0xff,0xff,0xff,0xfa,0xf8,0x4a,0xe0,0xff,0xff,0xff,0xff, + 0xfb,0xe8,0x2d,0xd0,0xff,0xff,0xff,0xff,0xfc,0xd8,0x2c,0xe0,0xff,0xff,0xff,0xff, + 0xfd,0xc8,0xf,0xd0,0xff,0xff,0xff,0xff,0xfe,0xb8,0xe,0xe0,0xff,0xff,0xff,0xff, + 0xff,0xa7,0xf1,0xd0,0x0,0x0,0x0,0x0,0x0,0x97,0xf0,0xe0,0x0,0x0,0x0,0x0, + 0x1,0x87,0xd3,0xd0,0x0,0x0,0x0,0x0,0x2,0x77,0xd2,0xe0,0x0,0x0,0x0,0x0, + 0x3,0x70,0xf0,0x50,0x0,0x0,0x0,0x0,0x4,0x60,0xef,0x60,0x0,0x0,0x0,0x0, + 0x5,0x50,0xd2,0x50,0x0,0x0,0x0,0x0,0x6,0x40,0xd1,0x60,0x0,0x0,0x0,0x0, + 0x7,0x30,0xb4,0x50,0x0,0x0,0x0,0x0,0x8,0x20,0xb3,0x60,0x0,0x0,0x0,0x0, + 0x9,0x10,0x96,0x50,0x0,0x0,0x0,0x0,0xa,0x0,0x95,0x60,0x0,0x0,0x0,0x0, + 0xa,0xf0,0x78,0x50,0x0,0x0,0x0,0x0,0xb,0xe0,0x77,0x60,0x0,0x0,0x0,0x0, + 0xc,0xd9,0x94,0xd0,0x0,0x0,0x0,0x0,0xd,0xc0,0x59,0x60,0x0,0x0,0x0,0x0, + 0xe,0xb9,0x76,0xd0,0x0,0x0,0x0,0x0,0xf,0xa9,0x75,0xe0,0x0,0x0,0x0,0x0, + 0x10,0x99,0x58,0xd0,0x0,0x0,0x0,0x0,0x11,0x89,0x57,0xe0,0x0,0x0,0x0,0x0, + 0x12,0x79,0x3a,0xd0,0x0,0x0,0x0,0x0,0x13,0x69,0x39,0xe0,0x0,0x0,0x0,0x0, + 0x14,0x59,0x1c,0xd0,0x0,0x0,0x0,0x0,0x15,0x49,0x1b,0xe0,0x0,0x0,0x0,0x0, + 0x16,0x38,0xfe,0xd0,0x0,0x0,0x0,0x0,0x17,0x28,0xfd,0xe0,0x0,0x0,0x0,0x0, + 0x18,0x22,0x1b,0x50,0x0,0x0,0x0,0x0,0x19,0x8,0xdf,0xe0,0x0,0x0,0x0,0x0, + 0x1a,0x1,0xfd,0x50,0x0,0x0,0x0,0x0,0x1a,0xf1,0xfc,0x60,0x0,0x0,0x0,0x0, + 0x1b,0xe1,0xdf,0x50,0x0,0x0,0x0,0x0,0x1c,0xd1,0xde,0x60,0x0,0x0,0x0,0x0, + 0x1d,0xc1,0xc1,0x50,0x0,0x0,0x0,0x0,0x1e,0xb1,0xc0,0x60,0x0,0x0,0x0,0x0, + 0x1f,0xa1,0xa3,0x50,0x0,0x0,0x0,0x0,0x20,0x75,0xd6,0xfc,0x0,0x0,0x0,0x0, + 0x21,0x81,0x69,0x6c,0x0,0x0,0x0,0x0,0x22,0x55,0xb8,0xfc,0x0,0x0,0x0,0x0, + 0x23,0x6a,0x77,0xdc,0x0,0x0,0x0,0x0,0x24,0x35,0x9a,0xfc,0x0,0x0,0x0,0x0, + 0x25,0x4a,0x67,0xec,0x0,0x0,0x0,0x0,0x26,0x15,0x7c,0xfc,0x0,0x0,0x0,0x0, + 0x27,0x2a,0x49,0xec,0x0,0x0,0x0,0x0,0x27,0xfe,0x99,0x7c,0x0,0x0,0x0,0x0, + 0x29,0xa,0x2b,0xec,0x0,0x0,0x0,0x0,0x29,0xde,0x7b,0x7c,0x0,0x0,0x0,0x0, + 0x2a,0xea,0xd,0xec,0x0,0x0,0x0,0x0,0x2b,0xbe,0x5d,0x7c,0x0,0x0,0x0,0x0, + 0x2c,0xd3,0x2a,0x6c,0x0,0x0,0x0,0x0,0x2d,0x9e,0x3f,0x7c,0x0,0x0,0x0,0x0, + 0x2e,0xb3,0xc,0x6c,0x0,0x0,0x0,0x0,0x2f,0x7e,0x21,0x7c,0x0,0x0,0x0,0x0, + 0x30,0x92,0xee,0x6c,0x0,0x0,0x0,0x0,0x31,0x67,0x3d,0xfc,0x0,0x0,0x0,0x0, + 0x32,0x72,0xd0,0x6c,0x0,0x0,0x0,0x0,0x33,0x47,0x1f,0xfc,0x0,0x0,0x0,0x0, + 0x34,0x52,0xb2,0x6c,0x0,0x0,0x0,0x0,0x35,0x27,0x1,0xfc,0x0,0x0,0x0,0x0, + 0x36,0x32,0x94,0x6c,0x0,0x0,0x0,0x0,0x37,0x6,0xe3,0xfc,0x0,0x0,0x0,0x0, + 0x38,0x1b,0xb0,0xec,0x0,0x0,0x0,0x0,0x38,0xe6,0xc5,0xfc,0x0,0x0,0x0,0x0, + 0x39,0xfb,0x92,0xec,0x0,0x0,0x0,0x0,0x3a,0xc6,0xa7,0xfc,0x0,0x0,0x0,0x0, + 0x3b,0xdb,0x74,0xec,0x0,0x0,0x0,0x0,0x3c,0xaf,0xc4,0x7c,0x0,0x0,0x0,0x0, + 0x3d,0xbb,0x56,0xec,0x0,0x0,0x0,0x0,0x3e,0x8f,0xa6,0x7c,0x0,0x0,0x0,0x0, + 0x3f,0x9b,0x38,0xec,0x0,0x0,0x0,0x0,0x40,0x6f,0x88,0x7c,0x0,0x0,0x0,0x0, + 0x41,0x84,0x55,0x6c,0x0,0x0,0x0,0x0,0x42,0x4f,0x6a,0x7c,0x0,0x0,0x0,0x0, + 0x43,0x64,0x37,0x6c,0x0,0x0,0x0,0x0,0x44,0x2f,0x4c,0x7c,0x0,0x0,0x0,0x0, + 0x45,0x44,0x19,0x6c,0x0,0x0,0x0,0x0,0x45,0xf3,0x7e,0xfc,0x0,0x0,0x0,0x0, + 0x47,0x2d,0x35,0xec,0x0,0x0,0x0,0x0,0x47,0xd3,0x60,0xfc,0x0,0x0,0x0,0x0, + 0x49,0xd,0x17,0xec,0x0,0x0,0x0,0x0,0x49,0xb3,0x42,0xfc,0x0,0x0,0x0,0x0, + 0x4a,0xec,0xf9,0xec,0x0,0x0,0x0,0x0,0x4b,0x9c,0x5f,0x7c,0x0,0x0,0x0,0x0, + 0x4c,0xd6,0x16,0x6c,0x0,0x0,0x0,0x0,0x4d,0x7c,0x41,0x7c,0x0,0x0,0x0,0x0, + 0x4e,0xb6,0x14,0x50,0x0,0x0,0x0,0x0,0x4f,0x5c,0x3f,0x60,0x0,0x0,0x0,0x0, + 0x50,0x95,0xf6,0x50,0x0,0x0,0x0,0x0,0x51,0x3c,0x21,0x60,0x0,0x0,0x0,0x0, + 0x52,0x75,0xd8,0x50,0x0,0x0,0x0,0x0,0x53,0x1c,0x3,0x60,0x0,0x0,0x0,0x0, + 0x54,0x55,0xba,0x50,0x0,0x0,0x0,0x0,0x54,0xfb,0xe5,0x60,0x0,0x0,0x0,0x0, + 0x56,0x35,0x9c,0x50,0x0,0x0,0x0,0x0,0x56,0xe5,0x1,0xe0,0x0,0x0,0x0,0x0, + 0x58,0x1e,0xb8,0xd0,0x0,0x0,0x0,0x0,0x58,0xc4,0xe3,0xe0,0x0,0x0,0x0,0x0, + 0x59,0xfe,0x9a,0xd0,0x0,0x0,0x0,0x0,0x5a,0xa4,0xc5,0xe0,0x0,0x0,0x0,0x0, + 0x5b,0xde,0x7c,0xd0,0x0,0x0,0x0,0x0,0x5c,0x84,0xa7,0xe0,0x0,0x0,0x0,0x0, + 0x5d,0xbe,0x5e,0xd0,0x0,0x0,0x0,0x0,0x5e,0x64,0x89,0xe0,0x0,0x0,0x0,0x0, + 0x5f,0x9e,0x40,0xd0,0x0,0x0,0x0,0x0,0x60,0x4d,0xa6,0x60,0x0,0x0,0x0,0x0, + 0x61,0x87,0x5d,0x50,0x0,0x0,0x0,0x0,0x62,0x2d,0x88,0x60,0x0,0x0,0x0,0x0, + 0x63,0x67,0x3f,0x50,0x0,0x0,0x0,0x0,0x64,0xd,0x6a,0x60,0x0,0x0,0x0,0x0, + 0x65,0x47,0x21,0x50,0x0,0x0,0x0,0x0,0x65,0xed,0x4c,0x60,0x0,0x0,0x0,0x0, + 0x67,0x27,0x3,0x50,0x0,0x0,0x0,0x0,0x67,0xcd,0x2e,0x60,0x0,0x0,0x0,0x0, + 0x69,0x6,0xe5,0x50,0x0,0x0,0x0,0x0,0x69,0xad,0x10,0x60,0x0,0x0,0x0,0x0, + 0x6a,0xe6,0xc7,0x50,0x0,0x0,0x0,0x0,0x6b,0x96,0x2c,0xe0,0x0,0x0,0x0,0x0, + 0x6c,0xcf,0xe3,0xd0,0x0,0x0,0x0,0x0,0x6d,0x76,0xe,0xe0,0x0,0x0,0x0,0x0, + 0x6e,0xaf,0xc5,0xd0,0x0,0x0,0x0,0x0,0x6f,0x55,0xf0,0xe0,0x0,0x0,0x0,0x0, + 0x70,0x8f,0xa7,0xd0,0x0,0x0,0x0,0x0,0x71,0x35,0xd2,0xe0,0x0,0x0,0x0,0x0, + 0x72,0x6f,0x89,0xd0,0x0,0x0,0x0,0x0,0x73,0x15,0xb4,0xe0,0x0,0x0,0x0,0x0, + 0x74,0x4f,0x6b,0xd0,0x0,0x0,0x0,0x0,0x74,0xfe,0xd1,0x60,0x0,0x0,0x0,0x0, + 0x76,0x38,0x88,0x50,0x0,0x0,0x0,0x0,0x76,0xde,0xb3,0x60,0x0,0x0,0x0,0x0, + 0x78,0x18,0x6a,0x50,0x0,0x0,0x0,0x0,0x78,0xbe,0x95,0x60,0x0,0x0,0x0,0x0, + 0x79,0xf8,0x4c,0x50,0x0,0x0,0x0,0x0,0x7a,0x9e,0x77,0x60,0x0,0x0,0x0,0x0, + 0x7b,0xd8,0x2e,0x50,0x0,0x0,0x0,0x0,0x7c,0x7e,0x59,0x60,0x0,0x0,0x0,0x0, + 0x7d,0xb8,0x10,0x50,0x0,0x0,0x0,0x0,0x7e,0x5e,0x3b,0x60,0x0,0x0,0x0,0x0, + 0x7f,0x97,0xf2,0x50,0x0,0x1,0x2,0x1,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x6,0x5,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, + 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, + 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x9,0x8,0x7, + 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, + 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, + 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, + 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, + 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, + 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, + 0x8,0xff,0xff,0xc7,0x5c,0x0,0x0,0xff,0xff,0xce,0x94,0x0,0x4,0xff,0xff,0xdc, + 0xa4,0x1,0x8,0xff,0xff,0xce,0xc8,0x0,0x4,0xff,0xff,0xdc,0xd8,0x1,0x8,0xff, + 0xff,0xdc,0xd8,0x1,0xc,0xff,0xff,0xdc,0xd8,0x1,0x10,0xff,0xff,0xd5,0xd0,0x1, + 0x14,0xff,0xff,0xc7,0xc0,0x0,0x18,0xff,0xff,0xe3,0xe0,0x1,0x1c,0xff,0xff,0xd5, + 0xd0,0x1,0x14,0x4c,0x4d,0x54,0x0,0x4e,0x53,0x54,0x0,0x4e,0x44,0x54,0x0,0x4e, + 0x50,0x54,0x0,0x4e,0x57,0x54,0x0,0x41,0x44,0x54,0x0,0x41,0x53,0x54,0x0,0x41, + 0x44,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0xa,0x41,0x53,0x54,0x34,0x41, + 0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e, + 0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Panama + 0x0,0x0,0x0,0xcb, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x34,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0x96, - 0xaa,0x74,0x30,0xb8,0xf,0x49,0xe0,0xb8,0xfd,0x40,0xa0,0xb9,0xf1,0x34,0x30,0xba, + 0x0,0x0,0x2,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0x8b, + 0xf4,0x61,0xe8,0x1,0x2,0xff,0xff,0xb5,0x70,0x0,0x0,0xff,0xff,0xb5,0x18,0x0, + 0x4,0xff,0xff,0xb9,0xb0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x43,0x4d,0x54,0x0,0x45, + 0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0, + 0x3,0x0,0x0,0x0,0xc,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff, + 0xff,0x69,0x87,0x26,0x10,0xff,0xff,0xff,0xff,0x8b,0xf4,0x61,0xe8,0x0,0x1,0x2, + 0xff,0xff,0xb5,0x70,0x0,0x0,0xff,0xff,0xb5,0x18,0x0,0x4,0xff,0xff,0xb9,0xb0, + 0x0,0x8,0x4c,0x4d,0x54,0x0,0x43,0x4d,0x54,0x0,0x45,0x53,0x54,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xa,0x45,0x53,0x54,0x35,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Maceio + 0x0,0x0,0x3,0x2, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2b,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0x96, + 0xaa,0x68,0x7c,0xb8,0xf,0x49,0xe0,0xb8,0xfd,0x40,0xa0,0xb9,0xf1,0x34,0x30,0xba, 0xde,0x74,0x20,0xda,0x38,0xae,0x30,0xda,0xeb,0xfa,0x30,0xdc,0x19,0xe1,0xb0,0xdc, 0xb9,0x59,0x20,0xdd,0xfb,0x15,0x30,0xde,0x9b,0xde,0x20,0xdf,0xdd,0x9a,0x30,0xe0, 0x54,0x33,0x20,0xf4,0x97,0xff,0xb0,0xf5,0x5,0x5e,0x20,0xf6,0xc0,0x64,0x30,0xf7, @@ -24991,1845 +21015,2066 @@ static const unsigned char qt_resource_data[] = { 0xa8,0xf8,0xa0,0xfb,0xec,0x6,0x30,0xfc,0x8b,0x7d,0xa0,0x1d,0xc9,0x8e,0x30,0x1e, 0x78,0xd7,0xa0,0x1f,0xa0,0x35,0xb0,0x20,0x33,0xcf,0xa0,0x21,0x81,0x69,0x30,0x22, 0xb,0xc8,0xa0,0x23,0x58,0x10,0xb0,0x23,0xe2,0x70,0x20,0x25,0x37,0xf2,0xb0,0x25, - 0xd4,0xc7,0x20,0x30,0x80,0x79,0x30,0x31,0x1d,0x4d,0xa0,0x32,0x57,0x20,0xb0,0x33, - 0x6,0x6a,0x20,0x34,0x38,0x54,0x30,0x34,0xf8,0xc1,0x20,0x36,0x20,0x1f,0x30,0x36, - 0xcf,0x68,0xa0,0x37,0xf6,0xc6,0xb0,0x38,0xb8,0x85,0x20,0x39,0xdf,0xe3,0x30,0x3a, - 0x8f,0x2c,0xa0,0x3b,0xc8,0xff,0xb0,0x3c,0x6f,0xe,0xa0,0x3d,0xc4,0x91,0x30,0x3e, - 0x4e,0xf0,0xa0,0x50,0x83,0x65,0x30,0x51,0x20,0x39,0xa0,0x0,0x2,0x1,0x2,0x1, + 0xd4,0xc7,0x20,0x30,0x80,0x79,0x30,0x31,0x1d,0x4d,0xa0,0x37,0xf6,0xc6,0xb0,0x38, + 0xb8,0x85,0x20,0x39,0xdf,0xe3,0x30,0x39,0xf2,0x4a,0x20,0x3b,0xc8,0xff,0xb0,0x3c, + 0x6f,0xe,0xa0,0x7f,0xff,0xff,0xff,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff, - 0xff,0xd2,0xd0,0x0,0x0,0xff,0xff,0xe3,0xe0,0x1,0x4,0xff,0xff,0xd5,0xd0,0x0, - 0x9,0x4c,0x4d,0x54,0x0,0x42,0x52,0x53,0x54,0x0,0x42,0x52,0x54,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x34,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xd, - 0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x96,0xaa,0x74,0x30, - 0xff,0xff,0xff,0xff,0xb8,0xf,0x49,0xe0,0xff,0xff,0xff,0xff,0xb8,0xfd,0x40,0xa0, - 0xff,0xff,0xff,0xff,0xb9,0xf1,0x34,0x30,0xff,0xff,0xff,0xff,0xba,0xde,0x74,0x20, - 0xff,0xff,0xff,0xff,0xda,0x38,0xae,0x30,0xff,0xff,0xff,0xff,0xda,0xeb,0xfa,0x30, - 0xff,0xff,0xff,0xff,0xdc,0x19,0xe1,0xb0,0xff,0xff,0xff,0xff,0xdc,0xb9,0x59,0x20, - 0xff,0xff,0xff,0xff,0xdd,0xfb,0x15,0x30,0xff,0xff,0xff,0xff,0xde,0x9b,0xde,0x20, - 0xff,0xff,0xff,0xff,0xdf,0xdd,0x9a,0x30,0xff,0xff,0xff,0xff,0xe0,0x54,0x33,0x20, - 0xff,0xff,0xff,0xff,0xf4,0x97,0xff,0xb0,0xff,0xff,0xff,0xff,0xf5,0x5,0x5e,0x20, - 0xff,0xff,0xff,0xff,0xf6,0xc0,0x64,0x30,0xff,0xff,0xff,0xff,0xf7,0xe,0x1e,0xa0, - 0xff,0xff,0xff,0xff,0xf8,0x51,0x2c,0x30,0xff,0xff,0xff,0xff,0xf8,0xc7,0xc5,0x20, - 0xff,0xff,0xff,0xff,0xfa,0xa,0xd2,0xb0,0xff,0xff,0xff,0xff,0xfa,0xa8,0xf8,0xa0, - 0xff,0xff,0xff,0xff,0xfb,0xec,0x6,0x30,0xff,0xff,0xff,0xff,0xfc,0x8b,0x7d,0xa0, - 0x0,0x0,0x0,0x0,0x1d,0xc9,0x8e,0x30,0x0,0x0,0x0,0x0,0x1e,0x78,0xd7,0xa0, - 0x0,0x0,0x0,0x0,0x1f,0xa0,0x35,0xb0,0x0,0x0,0x0,0x0,0x20,0x33,0xcf,0xa0, - 0x0,0x0,0x0,0x0,0x21,0x81,0x69,0x30,0x0,0x0,0x0,0x0,0x22,0xb,0xc8,0xa0, - 0x0,0x0,0x0,0x0,0x23,0x58,0x10,0xb0,0x0,0x0,0x0,0x0,0x23,0xe2,0x70,0x20, - 0x0,0x0,0x0,0x0,0x25,0x37,0xf2,0xb0,0x0,0x0,0x0,0x0,0x25,0xd4,0xc7,0x20, - 0x0,0x0,0x0,0x0,0x30,0x80,0x79,0x30,0x0,0x0,0x0,0x0,0x31,0x1d,0x4d,0xa0, - 0x0,0x0,0x0,0x0,0x32,0x57,0x20,0xb0,0x0,0x0,0x0,0x0,0x33,0x6,0x6a,0x20, - 0x0,0x0,0x0,0x0,0x34,0x38,0x54,0x30,0x0,0x0,0x0,0x0,0x34,0xf8,0xc1,0x20, - 0x0,0x0,0x0,0x0,0x36,0x20,0x1f,0x30,0x0,0x0,0x0,0x0,0x36,0xcf,0x68,0xa0, - 0x0,0x0,0x0,0x0,0x37,0xf6,0xc6,0xb0,0x0,0x0,0x0,0x0,0x38,0xb8,0x85,0x20, - 0x0,0x0,0x0,0x0,0x39,0xdf,0xe3,0x30,0x0,0x0,0x0,0x0,0x3a,0x8f,0x2c,0xa0, - 0x0,0x0,0x0,0x0,0x3b,0xc8,0xff,0xb0,0x0,0x0,0x0,0x0,0x3c,0x6f,0xe,0xa0, - 0x0,0x0,0x0,0x0,0x3d,0xc4,0x91,0x30,0x0,0x0,0x0,0x0,0x3e,0x4e,0xf0,0xa0, - 0x0,0x0,0x0,0x0,0x50,0x83,0x65,0x30,0x0,0x0,0x0,0x0,0x51,0x20,0x39,0xa0, - 0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x2,0x2,0xff,0xff,0xde,0x84,0x0,0x0,0xff,0xff,0xe3,0xe0,0x1,0x4,0xff,0xff, + 0xd5,0xd0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x2d,0x30,0x32,0x0,0x2d,0x30,0x33,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0, + 0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2b,0x0,0x0,0x0,0x3,0x0,0x0, + 0x0,0xc,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x96,0xaa, + 0x68,0x7c,0xff,0xff,0xff,0xff,0xb8,0xf,0x49,0xe0,0xff,0xff,0xff,0xff,0xb8,0xfd, + 0x40,0xa0,0xff,0xff,0xff,0xff,0xb9,0xf1,0x34,0x30,0xff,0xff,0xff,0xff,0xba,0xde, + 0x74,0x20,0xff,0xff,0xff,0xff,0xda,0x38,0xae,0x30,0xff,0xff,0xff,0xff,0xda,0xeb, + 0xfa,0x30,0xff,0xff,0xff,0xff,0xdc,0x19,0xe1,0xb0,0xff,0xff,0xff,0xff,0xdc,0xb9, + 0x59,0x20,0xff,0xff,0xff,0xff,0xdd,0xfb,0x15,0x30,0xff,0xff,0xff,0xff,0xde,0x9b, + 0xde,0x20,0xff,0xff,0xff,0xff,0xdf,0xdd,0x9a,0x30,0xff,0xff,0xff,0xff,0xe0,0x54, + 0x33,0x20,0xff,0xff,0xff,0xff,0xf4,0x97,0xff,0xb0,0xff,0xff,0xff,0xff,0xf5,0x5, + 0x5e,0x20,0xff,0xff,0xff,0xff,0xf6,0xc0,0x64,0x30,0xff,0xff,0xff,0xff,0xf7,0xe, + 0x1e,0xa0,0xff,0xff,0xff,0xff,0xf8,0x51,0x2c,0x30,0xff,0xff,0xff,0xff,0xf8,0xc7, + 0xc5,0x20,0xff,0xff,0xff,0xff,0xfa,0xa,0xd2,0xb0,0xff,0xff,0xff,0xff,0xfa,0xa8, + 0xf8,0xa0,0xff,0xff,0xff,0xff,0xfb,0xec,0x6,0x30,0xff,0xff,0xff,0xff,0xfc,0x8b, + 0x7d,0xa0,0x0,0x0,0x0,0x0,0x1d,0xc9,0x8e,0x30,0x0,0x0,0x0,0x0,0x1e,0x78, + 0xd7,0xa0,0x0,0x0,0x0,0x0,0x1f,0xa0,0x35,0xb0,0x0,0x0,0x0,0x0,0x20,0x33, + 0xcf,0xa0,0x0,0x0,0x0,0x0,0x21,0x81,0x69,0x30,0x0,0x0,0x0,0x0,0x22,0xb, + 0xc8,0xa0,0x0,0x0,0x0,0x0,0x23,0x58,0x10,0xb0,0x0,0x0,0x0,0x0,0x23,0xe2, + 0x70,0x20,0x0,0x0,0x0,0x0,0x25,0x37,0xf2,0xb0,0x0,0x0,0x0,0x0,0x25,0xd4, + 0xc7,0x20,0x0,0x0,0x0,0x0,0x30,0x80,0x79,0x30,0x0,0x0,0x0,0x0,0x31,0x1d, + 0x4d,0xa0,0x0,0x0,0x0,0x0,0x37,0xf6,0xc6,0xb0,0x0,0x0,0x0,0x0,0x38,0xb8, + 0x85,0x20,0x0,0x0,0x0,0x0,0x39,0xdf,0xe3,0x30,0x0,0x0,0x0,0x0,0x39,0xf2, + 0x4a,0x20,0x0,0x0,0x0,0x0,0x3b,0xc8,0xff,0xb0,0x0,0x0,0x0,0x0,0x3c,0x6f, + 0xe,0xa0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0xff,0xff,0xd2,0xd0,0x0,0x0,0xff,0xff,0xe3,0xe0,0x1,0x4, - 0xff,0xff,0xd5,0xd0,0x0,0x9,0x4c,0x4d,0x54,0x0,0x42,0x52,0x53,0x54,0x0,0x42, - 0x52,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x42,0x52,0x54,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Glace_Bay - 0x0,0x0,0x8,0x9e, + 0x1,0x2,0x1,0x2,0x2,0xff,0xff,0xde,0x84,0x0,0x0,0xff,0xff,0xe3,0xe0,0x1, + 0x4,0xff,0xff,0xd5,0xd0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x2d,0x30,0x32,0x0,0x2d, + 0x30,0x33,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2d,0x30,0x33,0x3e,0x33, + 0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Asuncion + 0x0,0x0,0x8,0x1d, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x8d,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0x80, - 0xf1,0xa8,0x34,0x9e,0xb8,0x85,0x60,0x9f,0xba,0xdd,0x50,0xcb,0x88,0xe2,0x60,0xd2, - 0x23,0xf4,0x70,0xd2,0x60,0xed,0xd0,0xe0,0x9e,0x3f,0x60,0xe1,0x69,0x38,0x50,0x4, - 0x60,0xef,0x60,0x5,0x50,0xd2,0x50,0x6,0x40,0xd1,0x60,0x7,0x30,0xb4,0x50,0x8, - 0x20,0xb3,0x60,0x9,0x10,0x96,0x50,0xa,0x0,0x95,0x60,0xa,0xf0,0x78,0x50,0xb, - 0xe0,0x77,0x60,0xc,0xd9,0x94,0xd0,0xd,0xc0,0x59,0x60,0xe,0xb9,0x76,0xd0,0xf, - 0xa9,0x75,0xe0,0x10,0x99,0x58,0xd0,0x11,0x89,0x57,0xe0,0x12,0x79,0x3a,0xd0,0x13, - 0x69,0x39,0xe0,0x14,0x59,0x1c,0xd0,0x15,0x49,0x1b,0xe0,0x16,0x38,0xfe,0xd0,0x17, - 0x28,0xfd,0xe0,0x18,0x22,0x1b,0x50,0x19,0x8,0xdf,0xe0,0x1a,0x1,0xfd,0x50,0x1a, - 0xf1,0xfc,0x60,0x1b,0xe1,0xdf,0x50,0x1c,0xd1,0xde,0x60,0x1d,0xc1,0xc1,0x50,0x1e, - 0xb1,0xc0,0x60,0x1f,0xa1,0xa3,0x50,0x20,0x75,0xf2,0xe0,0x21,0x81,0x85,0x50,0x22, - 0x55,0xd4,0xe0,0x23,0x6a,0xa1,0xd0,0x24,0x35,0xb6,0xe0,0x25,0x4a,0x83,0xd0,0x26, - 0x15,0x98,0xe0,0x27,0x2a,0x65,0xd0,0x27,0xfe,0xb5,0x60,0x29,0xa,0x47,0xd0,0x29, - 0xde,0x97,0x60,0x2a,0xea,0x29,0xd0,0x2b,0xbe,0x79,0x60,0x2c,0xd3,0x46,0x50,0x2d, - 0x9e,0x5b,0x60,0x2e,0xb3,0x28,0x50,0x2f,0x7e,0x3d,0x60,0x30,0x93,0xa,0x50,0x31, - 0x67,0x59,0xe0,0x32,0x72,0xec,0x50,0x33,0x47,0x3b,0xe0,0x34,0x52,0xce,0x50,0x35, - 0x27,0x1d,0xe0,0x36,0x32,0xb0,0x50,0x37,0x6,0xff,0xe0,0x38,0x1b,0xcc,0xd0,0x38, - 0xe6,0xe1,0xe0,0x39,0xfb,0xae,0xd0,0x3a,0xc6,0xc3,0xe0,0x3b,0xdb,0x90,0xd0,0x3c, - 0xaf,0xe0,0x60,0x3d,0xbb,0x72,0xd0,0x3e,0x8f,0xc2,0x60,0x3f,0x9b,0x54,0xd0,0x40, - 0x6f,0xa4,0x60,0x41,0x84,0x71,0x50,0x42,0x4f,0x86,0x60,0x43,0x64,0x53,0x50,0x44, - 0x2f,0x68,0x60,0x45,0x44,0x35,0x50,0x45,0xf3,0x9a,0xe0,0x47,0x2d,0x51,0xd0,0x47, - 0xd3,0x7c,0xe0,0x49,0xd,0x33,0xd0,0x49,0xb3,0x5e,0xe0,0x4a,0xed,0x15,0xd0,0x4b, - 0x9c,0x7b,0x60,0x4c,0xd6,0x32,0x50,0x4d,0x7c,0x5d,0x60,0x4e,0xb6,0x14,0x50,0x4f, - 0x5c,0x3f,0x60,0x50,0x95,0xf6,0x50,0x51,0x3c,0x21,0x60,0x52,0x75,0xd8,0x50,0x53, - 0x1c,0x3,0x60,0x54,0x55,0xba,0x50,0x54,0xfb,0xe5,0x60,0x56,0x35,0x9c,0x50,0x56, - 0xe5,0x1,0xe0,0x58,0x1e,0xb8,0xd0,0x58,0xc4,0xe3,0xe0,0x59,0xfe,0x9a,0xd0,0x5a, - 0xa4,0xc5,0xe0,0x5b,0xde,0x7c,0xd0,0x5c,0x84,0xa7,0xe0,0x5d,0xbe,0x5e,0xd0,0x5e, - 0x64,0x89,0xe0,0x5f,0x9e,0x40,0xd0,0x60,0x4d,0xa6,0x60,0x61,0x87,0x5d,0x50,0x62, - 0x2d,0x88,0x60,0x63,0x67,0x3f,0x50,0x64,0xd,0x6a,0x60,0x65,0x47,0x21,0x50,0x65, - 0xed,0x4c,0x60,0x67,0x27,0x3,0x50,0x67,0xcd,0x2e,0x60,0x69,0x6,0xe5,0x50,0x69, - 0xad,0x10,0x60,0x6a,0xe6,0xc7,0x50,0x6b,0x96,0x2c,0xe0,0x6c,0xcf,0xe3,0xd0,0x6d, - 0x76,0xe,0xe0,0x6e,0xaf,0xc5,0xd0,0x6f,0x55,0xf0,0xe0,0x70,0x8f,0xa7,0xd0,0x71, - 0x35,0xd2,0xe0,0x72,0x6f,0x89,0xd0,0x73,0x15,0xb4,0xe0,0x74,0x4f,0x6b,0xd0,0x74, - 0xfe,0xd1,0x60,0x76,0x38,0x88,0x50,0x76,0xde,0xb3,0x60,0x78,0x18,0x6a,0x50,0x78, - 0xbe,0x95,0x60,0x79,0xf8,0x4c,0x50,0x7a,0x9e,0x77,0x60,0x7b,0xd8,0x2e,0x50,0x7c, - 0x7e,0x59,0x60,0x7d,0xb8,0x10,0x50,0x7e,0x5e,0x3b,0x60,0x7f,0x97,0xf2,0x50,0x0, - 0x2,0x1,0x2,0x3,0x4,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0xc7,0xcc, - 0x0,0x0,0xff,0xff,0xd5,0xd0,0x1,0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0xff,0xff, - 0xd5,0xd0,0x1,0xc,0xff,0xff,0xd5,0xd0,0x1,0x10,0x4c,0x4d,0x54,0x0,0x41,0x44, - 0x54,0x0,0x41,0x53,0x54,0x0,0x41,0x57,0x54,0x0,0x41,0x50,0x54,0x0,0x0,0x0, - 0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x1,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5, - 0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8d,0x0,0x0,0x0,0x5, - 0x0,0x0,0x0,0x14,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff, - 0x80,0xf1,0xa8,0x34,0xff,0xff,0xff,0xff,0x9e,0xb8,0x85,0x60,0xff,0xff,0xff,0xff, - 0x9f,0xba,0xdd,0x50,0xff,0xff,0xff,0xff,0xcb,0x88,0xe2,0x60,0xff,0xff,0xff,0xff, - 0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x60,0xed,0xd0,0xff,0xff,0xff,0xff, - 0xe0,0x9e,0x3f,0x60,0xff,0xff,0xff,0xff,0xe1,0x69,0x38,0x50,0x0,0x0,0x0,0x0, - 0x4,0x60,0xef,0x60,0x0,0x0,0x0,0x0,0x5,0x50,0xd2,0x50,0x0,0x0,0x0,0x0, - 0x6,0x40,0xd1,0x60,0x0,0x0,0x0,0x0,0x7,0x30,0xb4,0x50,0x0,0x0,0x0,0x0, - 0x8,0x20,0xb3,0x60,0x0,0x0,0x0,0x0,0x9,0x10,0x96,0x50,0x0,0x0,0x0,0x0, - 0xa,0x0,0x95,0x60,0x0,0x0,0x0,0x0,0xa,0xf0,0x78,0x50,0x0,0x0,0x0,0x0, - 0xb,0xe0,0x77,0x60,0x0,0x0,0x0,0x0,0xc,0xd9,0x94,0xd0,0x0,0x0,0x0,0x0, - 0xd,0xc0,0x59,0x60,0x0,0x0,0x0,0x0,0xe,0xb9,0x76,0xd0,0x0,0x0,0x0,0x0, - 0xf,0xa9,0x75,0xe0,0x0,0x0,0x0,0x0,0x10,0x99,0x58,0xd0,0x0,0x0,0x0,0x0, - 0x11,0x89,0x57,0xe0,0x0,0x0,0x0,0x0,0x12,0x79,0x3a,0xd0,0x0,0x0,0x0,0x0, - 0x13,0x69,0x39,0xe0,0x0,0x0,0x0,0x0,0x14,0x59,0x1c,0xd0,0x0,0x0,0x0,0x0, - 0x15,0x49,0x1b,0xe0,0x0,0x0,0x0,0x0,0x16,0x38,0xfe,0xd0,0x0,0x0,0x0,0x0, - 0x17,0x28,0xfd,0xe0,0x0,0x0,0x0,0x0,0x18,0x22,0x1b,0x50,0x0,0x0,0x0,0x0, - 0x19,0x8,0xdf,0xe0,0x0,0x0,0x0,0x0,0x1a,0x1,0xfd,0x50,0x0,0x0,0x0,0x0, - 0x1a,0xf1,0xfc,0x60,0x0,0x0,0x0,0x0,0x1b,0xe1,0xdf,0x50,0x0,0x0,0x0,0x0, - 0x1c,0xd1,0xde,0x60,0x0,0x0,0x0,0x0,0x1d,0xc1,0xc1,0x50,0x0,0x0,0x0,0x0, - 0x1e,0xb1,0xc0,0x60,0x0,0x0,0x0,0x0,0x1f,0xa1,0xa3,0x50,0x0,0x0,0x0,0x0, - 0x20,0x75,0xf2,0xe0,0x0,0x0,0x0,0x0,0x21,0x81,0x85,0x50,0x0,0x0,0x0,0x0, - 0x22,0x55,0xd4,0xe0,0x0,0x0,0x0,0x0,0x23,0x6a,0xa1,0xd0,0x0,0x0,0x0,0x0, - 0x24,0x35,0xb6,0xe0,0x0,0x0,0x0,0x0,0x25,0x4a,0x83,0xd0,0x0,0x0,0x0,0x0, - 0x26,0x15,0x98,0xe0,0x0,0x0,0x0,0x0,0x27,0x2a,0x65,0xd0,0x0,0x0,0x0,0x0, - 0x27,0xfe,0xb5,0x60,0x0,0x0,0x0,0x0,0x29,0xa,0x47,0xd0,0x0,0x0,0x0,0x0, - 0x29,0xde,0x97,0x60,0x0,0x0,0x0,0x0,0x2a,0xea,0x29,0xd0,0x0,0x0,0x0,0x0, - 0x2b,0xbe,0x79,0x60,0x0,0x0,0x0,0x0,0x2c,0xd3,0x46,0x50,0x0,0x0,0x0,0x0, - 0x2d,0x9e,0x5b,0x60,0x0,0x0,0x0,0x0,0x2e,0xb3,0x28,0x50,0x0,0x0,0x0,0x0, - 0x2f,0x7e,0x3d,0x60,0x0,0x0,0x0,0x0,0x30,0x93,0xa,0x50,0x0,0x0,0x0,0x0, - 0x31,0x67,0x59,0xe0,0x0,0x0,0x0,0x0,0x32,0x72,0xec,0x50,0x0,0x0,0x0,0x0, - 0x33,0x47,0x3b,0xe0,0x0,0x0,0x0,0x0,0x34,0x52,0xce,0x50,0x0,0x0,0x0,0x0, - 0x35,0x27,0x1d,0xe0,0x0,0x0,0x0,0x0,0x36,0x32,0xb0,0x50,0x0,0x0,0x0,0x0, - 0x37,0x6,0xff,0xe0,0x0,0x0,0x0,0x0,0x38,0x1b,0xcc,0xd0,0x0,0x0,0x0,0x0, - 0x38,0xe6,0xe1,0xe0,0x0,0x0,0x0,0x0,0x39,0xfb,0xae,0xd0,0x0,0x0,0x0,0x0, - 0x3a,0xc6,0xc3,0xe0,0x0,0x0,0x0,0x0,0x3b,0xdb,0x90,0xd0,0x0,0x0,0x0,0x0, - 0x3c,0xaf,0xe0,0x60,0x0,0x0,0x0,0x0,0x3d,0xbb,0x72,0xd0,0x0,0x0,0x0,0x0, - 0x3e,0x8f,0xc2,0x60,0x0,0x0,0x0,0x0,0x3f,0x9b,0x54,0xd0,0x0,0x0,0x0,0x0, - 0x40,0x6f,0xa4,0x60,0x0,0x0,0x0,0x0,0x41,0x84,0x71,0x50,0x0,0x0,0x0,0x0, - 0x42,0x4f,0x86,0x60,0x0,0x0,0x0,0x0,0x43,0x64,0x53,0x50,0x0,0x0,0x0,0x0, - 0x44,0x2f,0x68,0x60,0x0,0x0,0x0,0x0,0x45,0x44,0x35,0x50,0x0,0x0,0x0,0x0, - 0x45,0xf3,0x9a,0xe0,0x0,0x0,0x0,0x0,0x47,0x2d,0x51,0xd0,0x0,0x0,0x0,0x0, - 0x47,0xd3,0x7c,0xe0,0x0,0x0,0x0,0x0,0x49,0xd,0x33,0xd0,0x0,0x0,0x0,0x0, - 0x49,0xb3,0x5e,0xe0,0x0,0x0,0x0,0x0,0x4a,0xed,0x15,0xd0,0x0,0x0,0x0,0x0, - 0x4b,0x9c,0x7b,0x60,0x0,0x0,0x0,0x0,0x4c,0xd6,0x32,0x50,0x0,0x0,0x0,0x0, - 0x4d,0x7c,0x5d,0x60,0x0,0x0,0x0,0x0,0x4e,0xb6,0x14,0x50,0x0,0x0,0x0,0x0, - 0x4f,0x5c,0x3f,0x60,0x0,0x0,0x0,0x0,0x50,0x95,0xf6,0x50,0x0,0x0,0x0,0x0, - 0x51,0x3c,0x21,0x60,0x0,0x0,0x0,0x0,0x52,0x75,0xd8,0x50,0x0,0x0,0x0,0x0, - 0x53,0x1c,0x3,0x60,0x0,0x0,0x0,0x0,0x54,0x55,0xba,0x50,0x0,0x0,0x0,0x0, - 0x54,0xfb,0xe5,0x60,0x0,0x0,0x0,0x0,0x56,0x35,0x9c,0x50,0x0,0x0,0x0,0x0, - 0x56,0xe5,0x1,0xe0,0x0,0x0,0x0,0x0,0x58,0x1e,0xb8,0xd0,0x0,0x0,0x0,0x0, - 0x58,0xc4,0xe3,0xe0,0x0,0x0,0x0,0x0,0x59,0xfe,0x9a,0xd0,0x0,0x0,0x0,0x0, - 0x5a,0xa4,0xc5,0xe0,0x0,0x0,0x0,0x0,0x5b,0xde,0x7c,0xd0,0x0,0x0,0x0,0x0, - 0x5c,0x84,0xa7,0xe0,0x0,0x0,0x0,0x0,0x5d,0xbe,0x5e,0xd0,0x0,0x0,0x0,0x0, - 0x5e,0x64,0x89,0xe0,0x0,0x0,0x0,0x0,0x5f,0x9e,0x40,0xd0,0x0,0x0,0x0,0x0, - 0x60,0x4d,0xa6,0x60,0x0,0x0,0x0,0x0,0x61,0x87,0x5d,0x50,0x0,0x0,0x0,0x0, - 0x62,0x2d,0x88,0x60,0x0,0x0,0x0,0x0,0x63,0x67,0x3f,0x50,0x0,0x0,0x0,0x0, - 0x64,0xd,0x6a,0x60,0x0,0x0,0x0,0x0,0x65,0x47,0x21,0x50,0x0,0x0,0x0,0x0, - 0x65,0xed,0x4c,0x60,0x0,0x0,0x0,0x0,0x67,0x27,0x3,0x50,0x0,0x0,0x0,0x0, - 0x67,0xcd,0x2e,0x60,0x0,0x0,0x0,0x0,0x69,0x6,0xe5,0x50,0x0,0x0,0x0,0x0, - 0x69,0xad,0x10,0x60,0x0,0x0,0x0,0x0,0x6a,0xe6,0xc7,0x50,0x0,0x0,0x0,0x0, - 0x6b,0x96,0x2c,0xe0,0x0,0x0,0x0,0x0,0x6c,0xcf,0xe3,0xd0,0x0,0x0,0x0,0x0, - 0x6d,0x76,0xe,0xe0,0x0,0x0,0x0,0x0,0x6e,0xaf,0xc5,0xd0,0x0,0x0,0x0,0x0, - 0x6f,0x55,0xf0,0xe0,0x0,0x0,0x0,0x0,0x70,0x8f,0xa7,0xd0,0x0,0x0,0x0,0x0, - 0x71,0x35,0xd2,0xe0,0x0,0x0,0x0,0x0,0x72,0x6f,0x89,0xd0,0x0,0x0,0x0,0x0, - 0x73,0x15,0xb4,0xe0,0x0,0x0,0x0,0x0,0x74,0x4f,0x6b,0xd0,0x0,0x0,0x0,0x0, - 0x74,0xfe,0xd1,0x60,0x0,0x0,0x0,0x0,0x76,0x38,0x88,0x50,0x0,0x0,0x0,0x0, - 0x76,0xde,0xb3,0x60,0x0,0x0,0x0,0x0,0x78,0x18,0x6a,0x50,0x0,0x0,0x0,0x0, - 0x78,0xbe,0x95,0x60,0x0,0x0,0x0,0x0,0x79,0xf8,0x4c,0x50,0x0,0x0,0x0,0x0, - 0x7a,0x9e,0x77,0x60,0x0,0x0,0x0,0x0,0x7b,0xd8,0x2e,0x50,0x0,0x0,0x0,0x0, - 0x7c,0x7e,0x59,0x60,0x0,0x0,0x0,0x0,0x7d,0xb8,0x10,0x50,0x0,0x0,0x0,0x0, - 0x7e,0x5e,0x3b,0x60,0x0,0x0,0x0,0x0,0x7f,0x97,0xf2,0x50,0x0,0x2,0x1,0x2, - 0x3,0x4,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0xc7,0xcc,0x0,0x0,0xff, - 0xff,0xd5,0xd0,0x1,0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0xff,0xff,0xd5,0xd0,0x1, - 0xc,0xff,0xff,0xd5,0xd0,0x1,0x10,0x4c,0x4d,0x54,0x0,0x41,0x44,0x54,0x0,0x41, - 0x53,0x54,0x0,0x41,0x57,0x54,0x0,0x41,0x50,0x54,0x0,0x0,0x0,0x0,0x0,0x1, - 0x0,0x0,0x0,0x0,0x1,0xa,0x41,0x53,0x54,0x34,0x41,0x44,0x54,0x2c,0x4d,0x33, - 0x2e,0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Belize - 0x0,0x0,0x3,0xd0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x82,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x80,0x0,0x0,0x0,0xb8, + 0x17,0xf5,0x90,0x5,0x2b,0xda,0x40,0x7,0xfc,0xf0,0xb0,0xa,0xcf,0x74,0xc0,0xb, + 0x97,0xca,0xb0,0xc,0xb1,0xf9,0xc0,0xd,0x78,0xfe,0x30,0xe,0x93,0x2d,0x40,0xf, + 0x5a,0x31,0xb0,0x10,0x74,0x60,0xc0,0x11,0x64,0x43,0xb0,0x12,0x55,0x94,0x40,0x13, + 0x46,0xc8,0xb0,0x14,0x38,0x19,0x40,0x15,0x27,0xfc,0x30,0x16,0x19,0x4c,0xc0,0x17, + 0x9,0x2f,0xb0,0x17,0xfa,0x80,0x40,0x18,0xea,0x63,0x30,0x19,0xdb,0xb3,0xc0,0x1a, + 0xcc,0xe8,0x30,0x1b,0xbe,0x38,0xc0,0x1c,0xae,0x1b,0xb0,0x1d,0x9f,0x6c,0x40,0x1e, + 0x8f,0x4f,0x30,0x1f,0x80,0x9f,0xc0,0x20,0x70,0x82,0xb0,0x21,0x61,0xd3,0x40,0x22, + 0x53,0x7,0xb0,0x23,0x44,0x58,0x40,0x24,0x34,0x3b,0x30,0x25,0x41,0x3b,0x40,0x26, + 0x15,0x6e,0xb0,0x27,0x6,0xbf,0x40,0x27,0xf6,0xa2,0x30,0x28,0xee,0x8a,0x40,0x29, + 0xb0,0x48,0xb0,0x2a,0xcf,0xbd,0xc0,0x2b,0xb9,0x9,0x30,0x2c,0xab,0xab,0x40,0x2d, + 0x70,0xc,0xb0,0x2e,0x8c,0xde,0xc0,0x2f,0x4f,0xee,0xb0,0x30,0x6e,0x12,0x40,0x31, + 0x36,0x68,0x30,0x32,0x57,0x2e,0xc0,0x33,0xf,0xb2,0xb0,0x34,0x37,0x10,0xc0,0x34, + 0xf8,0xcf,0x30,0x36,0x16,0xf2,0xc0,0x36,0xe1,0xeb,0xb0,0x37,0xf6,0xd4,0xc0,0x38, + 0xc1,0xcd,0xb0,0x39,0xd6,0xb6,0xc0,0x3a,0xa1,0xaf,0xb0,0x3b,0xbf,0xd3,0x40,0x3c, + 0xaf,0xb6,0x30,0x3d,0x71,0x90,0xc0,0x3e,0x8f,0x98,0x30,0x3f,0x5a,0xad,0x40,0x40, + 0x6f,0x7a,0x30,0x41,0x71,0xee,0x40,0x42,0x33,0xac,0xb0,0x43,0x51,0xd0,0x40,0x44, + 0x13,0x8e,0xb0,0x45,0x31,0xb2,0x40,0x45,0xf3,0x70,0xb0,0x47,0x1a,0xce,0xc0,0x47, + 0xd3,0x52,0xb0,0x48,0xfa,0xb0,0xc0,0x49,0xb3,0x34,0xb0,0x4a,0xda,0x92,0xc0,0x4b, + 0xc1,0x3b,0x30,0x4c,0xa7,0xff,0xc0,0x4d,0xa1,0x1d,0x30,0x4e,0x87,0xe1,0xc0,0x4f, + 0x80,0xff,0x30,0x50,0x70,0xfe,0x40,0x51,0x4e,0x6c,0x30,0x52,0x50,0xe0,0x40,0x53, + 0x2e,0x4e,0x30,0x54,0x30,0xc2,0x40,0x55,0xe,0x30,0x30,0x56,0x10,0xa4,0x40,0x56, + 0xf7,0x4c,0xb0,0x57,0xf0,0x86,0x40,0x58,0xd7,0x2e,0xb0,0x59,0xd0,0x68,0x40,0x5a, + 0xb7,0x10,0xb0,0x5b,0xb9,0x84,0xc0,0x5c,0x96,0xf2,0xb0,0x5d,0x99,0x66,0xc0,0x5e, + 0x76,0xd4,0xb0,0x5f,0x79,0x48,0xc0,0x60,0x5f,0xf1,0x30,0x61,0x59,0x2a,0xc0,0x62, + 0x3f,0xd3,0x30,0x63,0x39,0xc,0xc0,0x64,0x1f,0xb5,0x30,0x65,0x18,0xee,0xc0,0x65, + 0xff,0x97,0x30,0x67,0x2,0xb,0x40,0x67,0xdf,0x79,0x30,0x68,0xe1,0xed,0x40,0x69, + 0xbf,0x5b,0x30,0x6a,0xc1,0xcf,0x40,0x6b,0xa8,0x77,0xb0,0x6c,0xa1,0xb1,0x40,0x6d, + 0x88,0x59,0xb0,0x6e,0x81,0x93,0x40,0x6f,0x68,0x3b,0xb0,0x70,0x6a,0xaf,0xc0,0x71, + 0x48,0x1d,0xb0,0x72,0x4a,0x91,0xc0,0x73,0x27,0xff,0xb0,0x74,0x2a,0x73,0xc0,0x75, + 0x11,0x1c,0x30,0x76,0xa,0x55,0xc0,0x76,0xf0,0xfe,0x30,0x77,0xea,0x37,0xc0,0x78, + 0xd0,0xe0,0x30,0x79,0xca,0x19,0xc0,0x7a,0xb0,0xc2,0x30,0x7b,0xb3,0x36,0x40,0x7c, + 0x90,0xa4,0x30,0x7d,0x93,0x18,0x40,0x7e,0x70,0x86,0x30,0x7f,0x72,0xfa,0x40,0x7f, + 0xff,0xff,0xff,0x1,0x2,0x3,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4, + 0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4, + 0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4, + 0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4, + 0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4, + 0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4, + 0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4, + 0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4, + 0x2,0x4,0x2,0x4,0x4,0xff,0xff,0xc9,0xf0,0x0,0x0,0xff,0xff,0xc9,0xf0,0x0, + 0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0xff,0xff,0xd5,0xd0,0x0,0xc,0xff,0xff,0xd5, + 0xd0,0x1,0xc,0xff,0xff,0xc7,0xc0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x41,0x4d,0x54, + 0x0,0x2d,0x30,0x34,0x0,0x2d,0x30,0x33,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x10,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x69,0x87,0x11, + 0x90,0xff,0xff,0xff,0xff,0xb8,0x17,0xf5,0x90,0x0,0x0,0x0,0x0,0x5,0x2b,0xda, + 0x40,0x0,0x0,0x0,0x0,0x7,0xfc,0xf0,0xb0,0x0,0x0,0x0,0x0,0xa,0xcf,0x74, + 0xc0,0x0,0x0,0x0,0x0,0xb,0x97,0xca,0xb0,0x0,0x0,0x0,0x0,0xc,0xb1,0xf9, + 0xc0,0x0,0x0,0x0,0x0,0xd,0x78,0xfe,0x30,0x0,0x0,0x0,0x0,0xe,0x93,0x2d, + 0x40,0x0,0x0,0x0,0x0,0xf,0x5a,0x31,0xb0,0x0,0x0,0x0,0x0,0x10,0x74,0x60, + 0xc0,0x0,0x0,0x0,0x0,0x11,0x64,0x43,0xb0,0x0,0x0,0x0,0x0,0x12,0x55,0x94, + 0x40,0x0,0x0,0x0,0x0,0x13,0x46,0xc8,0xb0,0x0,0x0,0x0,0x0,0x14,0x38,0x19, + 0x40,0x0,0x0,0x0,0x0,0x15,0x27,0xfc,0x30,0x0,0x0,0x0,0x0,0x16,0x19,0x4c, + 0xc0,0x0,0x0,0x0,0x0,0x17,0x9,0x2f,0xb0,0x0,0x0,0x0,0x0,0x17,0xfa,0x80, + 0x40,0x0,0x0,0x0,0x0,0x18,0xea,0x63,0x30,0x0,0x0,0x0,0x0,0x19,0xdb,0xb3, + 0xc0,0x0,0x0,0x0,0x0,0x1a,0xcc,0xe8,0x30,0x0,0x0,0x0,0x0,0x1b,0xbe,0x38, + 0xc0,0x0,0x0,0x0,0x0,0x1c,0xae,0x1b,0xb0,0x0,0x0,0x0,0x0,0x1d,0x9f,0x6c, + 0x40,0x0,0x0,0x0,0x0,0x1e,0x8f,0x4f,0x30,0x0,0x0,0x0,0x0,0x1f,0x80,0x9f, + 0xc0,0x0,0x0,0x0,0x0,0x20,0x70,0x82,0xb0,0x0,0x0,0x0,0x0,0x21,0x61,0xd3, + 0x40,0x0,0x0,0x0,0x0,0x22,0x53,0x7,0xb0,0x0,0x0,0x0,0x0,0x23,0x44,0x58, + 0x40,0x0,0x0,0x0,0x0,0x24,0x34,0x3b,0x30,0x0,0x0,0x0,0x0,0x25,0x41,0x3b, + 0x40,0x0,0x0,0x0,0x0,0x26,0x15,0x6e,0xb0,0x0,0x0,0x0,0x0,0x27,0x6,0xbf, + 0x40,0x0,0x0,0x0,0x0,0x27,0xf6,0xa2,0x30,0x0,0x0,0x0,0x0,0x28,0xee,0x8a, + 0x40,0x0,0x0,0x0,0x0,0x29,0xb0,0x48,0xb0,0x0,0x0,0x0,0x0,0x2a,0xcf,0xbd, + 0xc0,0x0,0x0,0x0,0x0,0x2b,0xb9,0x9,0x30,0x0,0x0,0x0,0x0,0x2c,0xab,0xab, + 0x40,0x0,0x0,0x0,0x0,0x2d,0x70,0xc,0xb0,0x0,0x0,0x0,0x0,0x2e,0x8c,0xde, + 0xc0,0x0,0x0,0x0,0x0,0x2f,0x4f,0xee,0xb0,0x0,0x0,0x0,0x0,0x30,0x6e,0x12, + 0x40,0x0,0x0,0x0,0x0,0x31,0x36,0x68,0x30,0x0,0x0,0x0,0x0,0x32,0x57,0x2e, + 0xc0,0x0,0x0,0x0,0x0,0x33,0xf,0xb2,0xb0,0x0,0x0,0x0,0x0,0x34,0x37,0x10, + 0xc0,0x0,0x0,0x0,0x0,0x34,0xf8,0xcf,0x30,0x0,0x0,0x0,0x0,0x36,0x16,0xf2, + 0xc0,0x0,0x0,0x0,0x0,0x36,0xe1,0xeb,0xb0,0x0,0x0,0x0,0x0,0x37,0xf6,0xd4, + 0xc0,0x0,0x0,0x0,0x0,0x38,0xc1,0xcd,0xb0,0x0,0x0,0x0,0x0,0x39,0xd6,0xb6, + 0xc0,0x0,0x0,0x0,0x0,0x3a,0xa1,0xaf,0xb0,0x0,0x0,0x0,0x0,0x3b,0xbf,0xd3, + 0x40,0x0,0x0,0x0,0x0,0x3c,0xaf,0xb6,0x30,0x0,0x0,0x0,0x0,0x3d,0x71,0x90, + 0xc0,0x0,0x0,0x0,0x0,0x3e,0x8f,0x98,0x30,0x0,0x0,0x0,0x0,0x3f,0x5a,0xad, + 0x40,0x0,0x0,0x0,0x0,0x40,0x6f,0x7a,0x30,0x0,0x0,0x0,0x0,0x41,0x71,0xee, + 0x40,0x0,0x0,0x0,0x0,0x42,0x33,0xac,0xb0,0x0,0x0,0x0,0x0,0x43,0x51,0xd0, + 0x40,0x0,0x0,0x0,0x0,0x44,0x13,0x8e,0xb0,0x0,0x0,0x0,0x0,0x45,0x31,0xb2, + 0x40,0x0,0x0,0x0,0x0,0x45,0xf3,0x70,0xb0,0x0,0x0,0x0,0x0,0x47,0x1a,0xce, + 0xc0,0x0,0x0,0x0,0x0,0x47,0xd3,0x52,0xb0,0x0,0x0,0x0,0x0,0x48,0xfa,0xb0, + 0xc0,0x0,0x0,0x0,0x0,0x49,0xb3,0x34,0xb0,0x0,0x0,0x0,0x0,0x4a,0xda,0x92, + 0xc0,0x0,0x0,0x0,0x0,0x4b,0xc1,0x3b,0x30,0x0,0x0,0x0,0x0,0x4c,0xa7,0xff, + 0xc0,0x0,0x0,0x0,0x0,0x4d,0xa1,0x1d,0x30,0x0,0x0,0x0,0x0,0x4e,0x87,0xe1, + 0xc0,0x0,0x0,0x0,0x0,0x4f,0x80,0xff,0x30,0x0,0x0,0x0,0x0,0x50,0x70,0xfe, + 0x40,0x0,0x0,0x0,0x0,0x51,0x4e,0x6c,0x30,0x0,0x0,0x0,0x0,0x52,0x50,0xe0, + 0x40,0x0,0x0,0x0,0x0,0x53,0x2e,0x4e,0x30,0x0,0x0,0x0,0x0,0x54,0x30,0xc2, + 0x40,0x0,0x0,0x0,0x0,0x55,0xe,0x30,0x30,0x0,0x0,0x0,0x0,0x56,0x10,0xa4, + 0x40,0x0,0x0,0x0,0x0,0x56,0xf7,0x4c,0xb0,0x0,0x0,0x0,0x0,0x57,0xf0,0x86, + 0x40,0x0,0x0,0x0,0x0,0x58,0xd7,0x2e,0xb0,0x0,0x0,0x0,0x0,0x59,0xd0,0x68, + 0x40,0x0,0x0,0x0,0x0,0x5a,0xb7,0x10,0xb0,0x0,0x0,0x0,0x0,0x5b,0xb9,0x84, + 0xc0,0x0,0x0,0x0,0x0,0x5c,0x96,0xf2,0xb0,0x0,0x0,0x0,0x0,0x5d,0x99,0x66, + 0xc0,0x0,0x0,0x0,0x0,0x5e,0x76,0xd4,0xb0,0x0,0x0,0x0,0x0,0x5f,0x79,0x48, + 0xc0,0x0,0x0,0x0,0x0,0x60,0x5f,0xf1,0x30,0x0,0x0,0x0,0x0,0x61,0x59,0x2a, + 0xc0,0x0,0x0,0x0,0x0,0x62,0x3f,0xd3,0x30,0x0,0x0,0x0,0x0,0x63,0x39,0xc, + 0xc0,0x0,0x0,0x0,0x0,0x64,0x1f,0xb5,0x30,0x0,0x0,0x0,0x0,0x65,0x18,0xee, + 0xc0,0x0,0x0,0x0,0x0,0x65,0xff,0x97,0x30,0x0,0x0,0x0,0x0,0x67,0x2,0xb, + 0x40,0x0,0x0,0x0,0x0,0x67,0xdf,0x79,0x30,0x0,0x0,0x0,0x0,0x68,0xe1,0xed, + 0x40,0x0,0x0,0x0,0x0,0x69,0xbf,0x5b,0x30,0x0,0x0,0x0,0x0,0x6a,0xc1,0xcf, + 0x40,0x0,0x0,0x0,0x0,0x6b,0xa8,0x77,0xb0,0x0,0x0,0x0,0x0,0x6c,0xa1,0xb1, + 0x40,0x0,0x0,0x0,0x0,0x6d,0x88,0x59,0xb0,0x0,0x0,0x0,0x0,0x6e,0x81,0x93, + 0x40,0x0,0x0,0x0,0x0,0x6f,0x68,0x3b,0xb0,0x0,0x0,0x0,0x0,0x70,0x6a,0xaf, + 0xc0,0x0,0x0,0x0,0x0,0x71,0x48,0x1d,0xb0,0x0,0x0,0x0,0x0,0x72,0x4a,0x91, + 0xc0,0x0,0x0,0x0,0x0,0x73,0x27,0xff,0xb0,0x0,0x0,0x0,0x0,0x74,0x2a,0x73, + 0xc0,0x0,0x0,0x0,0x0,0x75,0x11,0x1c,0x30,0x0,0x0,0x0,0x0,0x76,0xa,0x55, + 0xc0,0x0,0x0,0x0,0x0,0x76,0xf0,0xfe,0x30,0x0,0x0,0x0,0x0,0x77,0xea,0x37, + 0xc0,0x0,0x0,0x0,0x0,0x78,0xd0,0xe0,0x30,0x0,0x0,0x0,0x0,0x79,0xca,0x19, + 0xc0,0x0,0x0,0x0,0x0,0x7a,0xb0,0xc2,0x30,0x0,0x0,0x0,0x0,0x7b,0xb3,0x36, + 0x40,0x0,0x0,0x0,0x0,0x7c,0x90,0xa4,0x30,0x0,0x0,0x0,0x0,0x7d,0x93,0x18, + 0x40,0x0,0x0,0x0,0x0,0x7e,0x70,0x86,0x30,0x0,0x0,0x0,0x0,0x7f,0x72,0xfa, + 0x40,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x2,0x3,0x2,0x4,0x2, + 0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2, + 0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2, + 0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2, + 0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2, + 0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2, + 0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2, + 0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2, + 0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x4,0xff,0xff,0xc9,0xf0, + 0x0,0x0,0xff,0xff,0xc9,0xf0,0x0,0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0xff,0xff, + 0xd5,0xd0,0x0,0xc,0xff,0xff,0xd5,0xd0,0x1,0xc,0xff,0xff,0xc7,0xc0,0x0,0x8, + 0x4c,0x4d,0x54,0x0,0x41,0x4d,0x54,0x0,0x2d,0x30,0x34,0x0,0x2d,0x30,0x33,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2d,0x30, + 0x34,0x3e,0x34,0x3c,0x2d,0x30,0x33,0x3e,0x2c,0x4d,0x31,0x30,0x2e,0x31,0x2e,0x30, + 0x2f,0x30,0x2c,0x4d,0x33,0x2e,0x34,0x2e,0x30,0x2f,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Puerto_Rico + 0x0,0x0,0x0,0xff, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x38,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x11,0x80,0x0,0x0,0x0,0x93, - 0x5e,0xd9,0xb0,0x9f,0x9f,0x3b,0xe0,0xa0,0x45,0x51,0xd8,0xa1,0x7f,0x1d,0xe0,0xa2, - 0x2e,0x6e,0x58,0xa3,0x5e,0xff,0xe0,0xa4,0xe,0x50,0x58,0xa5,0x3e,0xe1,0xe0,0xa5, - 0xee,0x32,0x58,0xa7,0x27,0xfe,0x60,0xa7,0xce,0x14,0x58,0xa9,0x7,0xe0,0x60,0xa9, - 0xad,0xf6,0x58,0xaa,0xe7,0xc2,0x60,0xab,0x97,0x12,0xd8,0xac,0xc7,0xa4,0x60,0xad, - 0x76,0xf4,0xd8,0xae,0xa7,0x86,0x60,0xaf,0x56,0xd6,0xd8,0xb0,0x87,0x68,0x60,0xb1, - 0x36,0xb8,0xd8,0xb2,0x70,0x84,0xe0,0xb3,0x16,0x9a,0xd8,0xb4,0x50,0x66,0xe0,0xb4, - 0xf6,0x7c,0xd8,0xb6,0x30,0x48,0xe0,0xb6,0xdf,0x99,0x58,0xb8,0x10,0x2a,0xe0,0xb8, - 0xbf,0x7b,0x58,0xb9,0xf0,0xc,0xe0,0xba,0x9f,0x5d,0x58,0xbb,0xd9,0x29,0x60,0xbc, - 0x7f,0x3f,0x58,0xbd,0xb9,0xb,0x60,0xbe,0x5f,0x21,0x58,0xbf,0x98,0xed,0x60,0xc0, - 0x3f,0x3,0x58,0xc1,0x78,0xcf,0x60,0xc2,0x28,0x1f,0xd8,0xc3,0x58,0xb1,0x60,0xc4, - 0x8,0x1,0xd8,0xc5,0x38,0x93,0x60,0xc5,0xe7,0xe3,0xd8,0xc7,0x21,0xaf,0xe0,0xc7, - 0xc7,0xc5,0xd8,0xc9,0x1,0x91,0xe0,0xc9,0xa7,0xa7,0xd8,0xca,0xe1,0x73,0xe0,0xcb, - 0x90,0xc4,0x58,0xcc,0xc1,0x55,0xe0,0xcd,0x70,0xa6,0x58,0x7,0x62,0xdb,0x60,0x7, - 0xb9,0xd0,0x50,0x18,0x61,0x71,0x60,0x18,0xab,0x37,0x50,0x0,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3, - 0x2,0x3,0x2,0xff,0xff,0xad,0x50,0x0,0x0,0xff,0xff,0xb2,0xa8,0x1,0x4,0xff, - 0xff,0xab,0xa0,0x0,0x9,0xff,0xff,0xb9,0xb0,0x1,0xd,0x4c,0x4d,0x54,0x0,0x43, - 0x48,0x44,0x54,0x0,0x43,0x53,0x54,0x0,0x43,0x44,0x54,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x38,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x11, - 0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x93,0x5e,0xd9,0xb0, - 0xff,0xff,0xff,0xff,0x9f,0x9f,0x3b,0xe0,0xff,0xff,0xff,0xff,0xa0,0x45,0x51,0xd8, - 0xff,0xff,0xff,0xff,0xa1,0x7f,0x1d,0xe0,0xff,0xff,0xff,0xff,0xa2,0x2e,0x6e,0x58, - 0xff,0xff,0xff,0xff,0xa3,0x5e,0xff,0xe0,0xff,0xff,0xff,0xff,0xa4,0xe,0x50,0x58, - 0xff,0xff,0xff,0xff,0xa5,0x3e,0xe1,0xe0,0xff,0xff,0xff,0xff,0xa5,0xee,0x32,0x58, - 0xff,0xff,0xff,0xff,0xa7,0x27,0xfe,0x60,0xff,0xff,0xff,0xff,0xa7,0xce,0x14,0x58, - 0xff,0xff,0xff,0xff,0xa9,0x7,0xe0,0x60,0xff,0xff,0xff,0xff,0xa9,0xad,0xf6,0x58, - 0xff,0xff,0xff,0xff,0xaa,0xe7,0xc2,0x60,0xff,0xff,0xff,0xff,0xab,0x97,0x12,0xd8, - 0xff,0xff,0xff,0xff,0xac,0xc7,0xa4,0x60,0xff,0xff,0xff,0xff,0xad,0x76,0xf4,0xd8, - 0xff,0xff,0xff,0xff,0xae,0xa7,0x86,0x60,0xff,0xff,0xff,0xff,0xaf,0x56,0xd6,0xd8, - 0xff,0xff,0xff,0xff,0xb0,0x87,0x68,0x60,0xff,0xff,0xff,0xff,0xb1,0x36,0xb8,0xd8, - 0xff,0xff,0xff,0xff,0xb2,0x70,0x84,0xe0,0xff,0xff,0xff,0xff,0xb3,0x16,0x9a,0xd8, - 0xff,0xff,0xff,0xff,0xb4,0x50,0x66,0xe0,0xff,0xff,0xff,0xff,0xb4,0xf6,0x7c,0xd8, - 0xff,0xff,0xff,0xff,0xb6,0x30,0x48,0xe0,0xff,0xff,0xff,0xff,0xb6,0xdf,0x99,0x58, - 0xff,0xff,0xff,0xff,0xb8,0x10,0x2a,0xe0,0xff,0xff,0xff,0xff,0xb8,0xbf,0x7b,0x58, - 0xff,0xff,0xff,0xff,0xb9,0xf0,0xc,0xe0,0xff,0xff,0xff,0xff,0xba,0x9f,0x5d,0x58, - 0xff,0xff,0xff,0xff,0xbb,0xd9,0x29,0x60,0xff,0xff,0xff,0xff,0xbc,0x7f,0x3f,0x58, - 0xff,0xff,0xff,0xff,0xbd,0xb9,0xb,0x60,0xff,0xff,0xff,0xff,0xbe,0x5f,0x21,0x58, - 0xff,0xff,0xff,0xff,0xbf,0x98,0xed,0x60,0xff,0xff,0xff,0xff,0xc0,0x3f,0x3,0x58, - 0xff,0xff,0xff,0xff,0xc1,0x78,0xcf,0x60,0xff,0xff,0xff,0xff,0xc2,0x28,0x1f,0xd8, - 0xff,0xff,0xff,0xff,0xc3,0x58,0xb1,0x60,0xff,0xff,0xff,0xff,0xc4,0x8,0x1,0xd8, - 0xff,0xff,0xff,0xff,0xc5,0x38,0x93,0x60,0xff,0xff,0xff,0xff,0xc5,0xe7,0xe3,0xd8, - 0xff,0xff,0xff,0xff,0xc7,0x21,0xaf,0xe0,0xff,0xff,0xff,0xff,0xc7,0xc7,0xc5,0xd8, - 0xff,0xff,0xff,0xff,0xc9,0x1,0x91,0xe0,0xff,0xff,0xff,0xff,0xc9,0xa7,0xa7,0xd8, - 0xff,0xff,0xff,0xff,0xca,0xe1,0x73,0xe0,0xff,0xff,0xff,0xff,0xcb,0x90,0xc4,0x58, - 0xff,0xff,0xff,0xff,0xcc,0xc1,0x55,0xe0,0xff,0xff,0xff,0xff,0xcd,0x70,0xa6,0x58, - 0x0,0x0,0x0,0x0,0x7,0x62,0xdb,0x60,0x0,0x0,0x0,0x0,0x7,0xb9,0xd0,0x50, - 0x0,0x0,0x0,0x0,0x18,0x61,0x71,0x60,0x0,0x0,0x0,0x0,0x18,0xab,0x37,0x50, - 0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x3,0x2,0x3,0x2,0xff,0xff,0xad,0x50,0x0,0x0,0xff,0xff, - 0xb2,0xa8,0x1,0x4,0xff,0xff,0xab,0xa0,0x0,0x9,0xff,0xff,0xb9,0xb0,0x1,0xd, - 0x4c,0x4d,0x54,0x0,0x43,0x48,0x44,0x54,0x0,0x43,0x53,0x54,0x0,0x43,0x44,0x54, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x43,0x53,0x54,0x36,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Merida - 0x0,0x0,0x5,0xb0, + 0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x10,0x80,0x0,0x0,0x0,0xcb, + 0xf6,0x32,0xc0,0xd2,0x23,0xf4,0x70,0xd2,0x60,0xed,0xd0,0x1,0x3,0x2,0x1,0xff, + 0xff,0xc2,0x7,0x0,0x0,0xff,0xff,0xc7,0xc0,0x0,0x4,0xff,0xff,0xd5,0xd0,0x1, + 0x8,0xff,0xff,0xd5,0xd0,0x1,0xc,0x4c,0x4d,0x54,0x0,0x41,0x53,0x54,0x0,0x41, + 0x50,0x54,0x0,0x41,0x57,0x54,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x5,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x10,0xf8,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x7a,0xe6,0x95,0xb9,0xff,0xff,0xff,0xff,0xcb, + 0xf6,0x32,0xc0,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2, + 0x60,0xed,0xd0,0x0,0x1,0x3,0x2,0x1,0xff,0xff,0xc2,0x7,0x0,0x0,0xff,0xff, + 0xc7,0xc0,0x0,0x4,0xff,0xff,0xd5,0xd0,0x1,0x8,0xff,0xff,0xd5,0xd0,0x1,0xc, + 0x4c,0x4d,0x54,0x0,0x41,0x53,0x54,0x0,0x41,0x50,0x54,0x0,0x41,0x57,0x54,0x0, + 0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0xa,0x41,0x53,0x54,0x34,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Coral_Harbour + 0x0,0x0,0x1,0x59, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x58,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x10,0x80,0x0,0x0,0x0,0xa5, - 0xb6,0xda,0x60,0x16,0x86,0xd5,0x60,0x18,0x4c,0x4b,0x50,0x31,0x67,0x76,0x0,0x32, - 0x73,0x8,0x70,0x33,0x47,0x58,0x0,0x34,0x52,0xea,0x70,0x35,0x27,0x3a,0x0,0x36, - 0x32,0xcc,0x70,0x37,0x7,0x1c,0x0,0x38,0x1b,0xe8,0xf0,0x38,0xe6,0xfe,0x0,0x39, - 0xfb,0xca,0xf0,0x3a,0xf5,0x4,0x80,0x3b,0xb6,0xc2,0xf0,0x3c,0xaf,0xfc,0x80,0x3d, - 0xbb,0x8e,0xf0,0x3e,0x8f,0xde,0x80,0x3f,0x9b,0x70,0xf0,0x40,0x6f,0xc0,0x80,0x41, - 0x84,0x8d,0x70,0x42,0x4f,0xa2,0x80,0x43,0x64,0x6f,0x70,0x44,0x2f,0x84,0x80,0x45, - 0x44,0x51,0x70,0x46,0xf,0x66,0x80,0x47,0x24,0x33,0x70,0x47,0xf8,0x83,0x0,0x49, - 0x4,0x15,0x70,0x49,0xd8,0x65,0x0,0x4a,0xe3,0xf7,0x70,0x4b,0xb8,0x47,0x0,0x4c, - 0xcd,0x13,0xf0,0x4d,0x98,0x29,0x0,0x4e,0xac,0xf5,0xf0,0x4f,0x78,0xb,0x0,0x50, - 0x8c,0xd7,0xf0,0x51,0x61,0x27,0x80,0x52,0x6c,0xb9,0xf0,0x53,0x41,0x9,0x80,0x54, - 0x4c,0x9b,0xf0,0x55,0x20,0xeb,0x80,0x56,0x2c,0x7d,0xf0,0x57,0x0,0xcd,0x80,0x58, - 0x15,0x9a,0x70,0x58,0xe0,0xaf,0x80,0x59,0xf5,0x7c,0x70,0x5a,0xc0,0x91,0x80,0x5b, - 0xd5,0x5e,0x70,0x5c,0xa9,0xae,0x0,0x5d,0xb5,0x40,0x70,0x5e,0x89,0x90,0x0,0x5f, - 0x95,0x22,0x70,0x60,0x69,0x72,0x0,0x61,0x7e,0x3e,0xf0,0x62,0x49,0x54,0x0,0x63, - 0x5e,0x20,0xf0,0x64,0x29,0x36,0x0,0x65,0x3e,0x2,0xf0,0x66,0x12,0x52,0x80,0x67, - 0x1d,0xe4,0xf0,0x67,0xf2,0x34,0x80,0x68,0xfd,0xc6,0xf0,0x69,0xd2,0x16,0x80,0x6a, - 0xdd,0xa8,0xf0,0x6b,0xb1,0xf8,0x80,0x6c,0xc6,0xc5,0x70,0x6d,0x91,0xda,0x80,0x6e, - 0xa6,0xa7,0x70,0x6f,0x71,0xbc,0x80,0x70,0x86,0x89,0x70,0x71,0x5a,0xd9,0x0,0x72, - 0x66,0x6b,0x70,0x73,0x3a,0xbb,0x0,0x74,0x46,0x4d,0x70,0x75,0x1a,0x9d,0x0,0x76, - 0x2f,0x69,0xf0,0x76,0xfa,0x7f,0x0,0x78,0xf,0x4b,0xf0,0x78,0xda,0x61,0x0,0x79, - 0xef,0x2d,0xf0,0x7a,0xba,0x43,0x0,0x7b,0xcf,0xf,0xf0,0x7c,0xa3,0x5f,0x80,0x7d, - 0xae,0xf1,0xf0,0x7e,0x83,0x41,0x80,0x7f,0x8e,0xd3,0xf0,0x0,0x1,0x2,0x1,0x3, - 0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3, - 0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3, - 0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3, - 0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3, - 0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3, - 0x1,0x3,0x1,0xff,0xff,0xab,0xfc,0x0,0x0,0xff,0xff,0xab,0xa0,0x0,0x4,0xff, - 0xff,0xb9,0xb0,0x0,0x8,0xff,0xff,0xb9,0xb0,0x1,0xc,0xff,0xff,0xab,0xa0,0x0, - 0x4,0x4c,0x4d,0x54,0x0,0x43,0x53,0x54,0x0,0x45,0x53,0x54,0x0,0x43,0x44,0x54, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x58,0x0, - 0x0,0x0,0x5,0x0,0x0,0x0,0x10,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff, - 0xff,0xff,0xff,0xa5,0xb6,0xda,0x60,0x0,0x0,0x0,0x0,0x16,0x86,0xd5,0x60,0x0, - 0x0,0x0,0x0,0x18,0x4c,0x4b,0x50,0x0,0x0,0x0,0x0,0x31,0x67,0x76,0x0,0x0, - 0x0,0x0,0x0,0x32,0x73,0x8,0x70,0x0,0x0,0x0,0x0,0x33,0x47,0x58,0x0,0x0, - 0x0,0x0,0x0,0x34,0x52,0xea,0x70,0x0,0x0,0x0,0x0,0x35,0x27,0x3a,0x0,0x0, - 0x0,0x0,0x0,0x36,0x32,0xcc,0x70,0x0,0x0,0x0,0x0,0x37,0x7,0x1c,0x0,0x0, - 0x0,0x0,0x0,0x38,0x1b,0xe8,0xf0,0x0,0x0,0x0,0x0,0x38,0xe6,0xfe,0x0,0x0, - 0x0,0x0,0x0,0x39,0xfb,0xca,0xf0,0x0,0x0,0x0,0x0,0x3a,0xf5,0x4,0x80,0x0, - 0x0,0x0,0x0,0x3b,0xb6,0xc2,0xf0,0x0,0x0,0x0,0x0,0x3c,0xaf,0xfc,0x80,0x0, - 0x0,0x0,0x0,0x3d,0xbb,0x8e,0xf0,0x0,0x0,0x0,0x0,0x3e,0x8f,0xde,0x80,0x0, - 0x0,0x0,0x0,0x3f,0x9b,0x70,0xf0,0x0,0x0,0x0,0x0,0x40,0x6f,0xc0,0x80,0x0, - 0x0,0x0,0x0,0x41,0x84,0x8d,0x70,0x0,0x0,0x0,0x0,0x42,0x4f,0xa2,0x80,0x0, - 0x0,0x0,0x0,0x43,0x64,0x6f,0x70,0x0,0x0,0x0,0x0,0x44,0x2f,0x84,0x80,0x0, - 0x0,0x0,0x0,0x45,0x44,0x51,0x70,0x0,0x0,0x0,0x0,0x46,0xf,0x66,0x80,0x0, - 0x0,0x0,0x0,0x47,0x24,0x33,0x70,0x0,0x0,0x0,0x0,0x47,0xf8,0x83,0x0,0x0, - 0x0,0x0,0x0,0x49,0x4,0x15,0x70,0x0,0x0,0x0,0x0,0x49,0xd8,0x65,0x0,0x0, - 0x0,0x0,0x0,0x4a,0xe3,0xf7,0x70,0x0,0x0,0x0,0x0,0x4b,0xb8,0x47,0x0,0x0, - 0x0,0x0,0x0,0x4c,0xcd,0x13,0xf0,0x0,0x0,0x0,0x0,0x4d,0x98,0x29,0x0,0x0, - 0x0,0x0,0x0,0x4e,0xac,0xf5,0xf0,0x0,0x0,0x0,0x0,0x4f,0x78,0xb,0x0,0x0, - 0x0,0x0,0x0,0x50,0x8c,0xd7,0xf0,0x0,0x0,0x0,0x0,0x51,0x61,0x27,0x80,0x0, - 0x0,0x0,0x0,0x52,0x6c,0xb9,0xf0,0x0,0x0,0x0,0x0,0x53,0x41,0x9,0x80,0x0, - 0x0,0x0,0x0,0x54,0x4c,0x9b,0xf0,0x0,0x0,0x0,0x0,0x55,0x20,0xeb,0x80,0x0, - 0x0,0x0,0x0,0x56,0x2c,0x7d,0xf0,0x0,0x0,0x0,0x0,0x57,0x0,0xcd,0x80,0x0, - 0x0,0x0,0x0,0x58,0x15,0x9a,0x70,0x0,0x0,0x0,0x0,0x58,0xe0,0xaf,0x80,0x0, - 0x0,0x0,0x0,0x59,0xf5,0x7c,0x70,0x0,0x0,0x0,0x0,0x5a,0xc0,0x91,0x80,0x0, - 0x0,0x0,0x0,0x5b,0xd5,0x5e,0x70,0x0,0x0,0x0,0x0,0x5c,0xa9,0xae,0x0,0x0, - 0x0,0x0,0x0,0x5d,0xb5,0x40,0x70,0x0,0x0,0x0,0x0,0x5e,0x89,0x90,0x0,0x0, - 0x0,0x0,0x0,0x5f,0x95,0x22,0x70,0x0,0x0,0x0,0x0,0x60,0x69,0x72,0x0,0x0, - 0x0,0x0,0x0,0x61,0x7e,0x3e,0xf0,0x0,0x0,0x0,0x0,0x62,0x49,0x54,0x0,0x0, - 0x0,0x0,0x0,0x63,0x5e,0x20,0xf0,0x0,0x0,0x0,0x0,0x64,0x29,0x36,0x0,0x0, - 0x0,0x0,0x0,0x65,0x3e,0x2,0xf0,0x0,0x0,0x0,0x0,0x66,0x12,0x52,0x80,0x0, - 0x0,0x0,0x0,0x67,0x1d,0xe4,0xf0,0x0,0x0,0x0,0x0,0x67,0xf2,0x34,0x80,0x0, - 0x0,0x0,0x0,0x68,0xfd,0xc6,0xf0,0x0,0x0,0x0,0x0,0x69,0xd2,0x16,0x80,0x0, - 0x0,0x0,0x0,0x6a,0xdd,0xa8,0xf0,0x0,0x0,0x0,0x0,0x6b,0xb1,0xf8,0x80,0x0, - 0x0,0x0,0x0,0x6c,0xc6,0xc5,0x70,0x0,0x0,0x0,0x0,0x6d,0x91,0xda,0x80,0x0, - 0x0,0x0,0x0,0x6e,0xa6,0xa7,0x70,0x0,0x0,0x0,0x0,0x6f,0x71,0xbc,0x80,0x0, - 0x0,0x0,0x0,0x70,0x86,0x89,0x70,0x0,0x0,0x0,0x0,0x71,0x5a,0xd9,0x0,0x0, - 0x0,0x0,0x0,0x72,0x66,0x6b,0x70,0x0,0x0,0x0,0x0,0x73,0x3a,0xbb,0x0,0x0, - 0x0,0x0,0x0,0x74,0x46,0x4d,0x70,0x0,0x0,0x0,0x0,0x75,0x1a,0x9d,0x0,0x0, - 0x0,0x0,0x0,0x76,0x2f,0x69,0xf0,0x0,0x0,0x0,0x0,0x76,0xfa,0x7f,0x0,0x0, - 0x0,0x0,0x0,0x78,0xf,0x4b,0xf0,0x0,0x0,0x0,0x0,0x78,0xda,0x61,0x0,0x0, - 0x0,0x0,0x0,0x79,0xef,0x2d,0xf0,0x0,0x0,0x0,0x0,0x7a,0xba,0x43,0x0,0x0, - 0x0,0x0,0x0,0x7b,0xcf,0xf,0xf0,0x0,0x0,0x0,0x0,0x7c,0xa3,0x5f,0x80,0x0, - 0x0,0x0,0x0,0x7d,0xae,0xf1,0xf0,0x0,0x0,0x0,0x0,0x7e,0x83,0x41,0x80,0x0, - 0x0,0x0,0x0,0x7f,0x8e,0xd3,0xf0,0x0,0x1,0x2,0x1,0x3,0x1,0x3,0x1,0x3, - 0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3, - 0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3, - 0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3, - 0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3, - 0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0xff, - 0xff,0xab,0xfc,0x0,0x0,0xff,0xff,0xab,0xa0,0x0,0x4,0xff,0xff,0xb9,0xb0,0x0, - 0x8,0xff,0xff,0xb9,0xb0,0x1,0xc,0xff,0xff,0xab,0xa0,0x0,0x4,0x4c,0x4d,0x54, - 0x0,0x43,0x53,0x54,0x0,0x45,0x53,0x54,0x0,0x43,0x44,0x54,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x43,0x53,0x54,0x36,0x43,0x44,0x54,0x2c, - 0x4d,0x34,0x2e,0x31,0x2e,0x30,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Vancouver - 0x0,0x0,0xb,0x55, + 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x7,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x80,0x0,0x0,0x0,0x9e, + 0xb8,0xa1,0x80,0x9f,0xba,0xf9,0x70,0xc8,0xf8,0x57,0x60,0xcb,0x88,0xfe,0x80,0xd2, + 0x23,0xf4,0x70,0xd2,0x61,0x9,0xf0,0x2,0x1,0x2,0x1,0x3,0x4,0x5,0xff,0xff, + 0xaa,0x1c,0x0,0x0,0xff,0xff,0xb9,0xb0,0x1,0x4,0xff,0xff,0xab,0xa0,0x0,0x8, + 0xff,0xff,0xb9,0xb0,0x1,0xc,0xff,0xff,0xb9,0xb0,0x1,0x10,0xff,0xff,0xb9,0xb0, + 0x0,0x14,0x4c,0x4d,0x54,0x0,0x43,0x44,0x54,0x0,0x43,0x53,0x54,0x0,0x43,0x57, + 0x54,0x0,0x43,0x50,0x54,0x0,0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0, + 0x0,0x0,0x0,0x0,0x1,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x18,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x72,0xee, + 0x84,0x64,0xff,0xff,0xff,0xff,0x9e,0xb8,0xa1,0x80,0xff,0xff,0xff,0xff,0x9f,0xba, + 0xf9,0x70,0xff,0xff,0xff,0xff,0xc8,0xf8,0x57,0x60,0xff,0xff,0xff,0xff,0xcb,0x88, + 0xfe,0x80,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x61, + 0x9,0xf0,0x0,0x2,0x1,0x2,0x1,0x3,0x4,0x5,0xff,0xff,0xaa,0x1c,0x0,0x0, + 0xff,0xff,0xb9,0xb0,0x1,0x4,0xff,0xff,0xab,0xa0,0x0,0x8,0xff,0xff,0xb9,0xb0, + 0x1,0xc,0xff,0xff,0xb9,0xb0,0x1,0x10,0xff,0xff,0xb9,0xb0,0x0,0x14,0x4c,0x4d, + 0x54,0x0,0x43,0x44,0x54,0x0,0x43,0x53,0x54,0x0,0x43,0x57,0x54,0x0,0x43,0x50, + 0x54,0x0,0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, + 0x1,0x0,0xa,0x45,0x53,0x54,0x35,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Scoresbysund + 0x0,0x0,0x7,0x8a, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xbe,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0x9e, - 0xb8,0xbd,0xa0,0x9f,0xbb,0x15,0x90,0xcb,0x89,0x1a,0xa0,0xd2,0x23,0xf4,0x70,0xd2, - 0x61,0x26,0x10,0xd3,0x76,0xf,0x20,0xd4,0x53,0x7d,0x10,0xd5,0x55,0xf1,0x20,0xd6, - 0x20,0xea,0x10,0xd7,0x35,0xd3,0x20,0xd8,0x0,0xcc,0x10,0xd9,0x15,0xb5,0x20,0xd9, - 0xe0,0xae,0x10,0xda,0xfe,0xd1,0xa0,0xdb,0xc0,0x90,0x10,0xdc,0xde,0xb3,0xa0,0xdd, - 0xa9,0xac,0x90,0xde,0xbe,0x95,0xa0,0xdf,0x89,0x8e,0x90,0xe0,0x9e,0x77,0xa0,0xe1, - 0x69,0x70,0x90,0xe2,0x7e,0x59,0xa0,0xe3,0x49,0x52,0x90,0xe4,0x5e,0x3b,0xa0,0xe5, - 0x29,0x34,0x90,0xe6,0x47,0x58,0x20,0xe7,0x12,0x51,0x10,0xe8,0x27,0x3a,0x20,0xe8, - 0xf2,0x33,0x10,0xea,0x7,0x1c,0x20,0xea,0xd2,0x15,0x10,0xeb,0xe6,0xfe,0x20,0xec, - 0xb1,0xf7,0x10,0xed,0xc6,0xe0,0x20,0xee,0x91,0xd9,0x10,0xef,0xaf,0xfc,0xa0,0xf0, - 0x71,0xbb,0x10,0xf1,0x8f,0xde,0xa0,0xf2,0x7f,0xc1,0x90,0xf3,0x6f,0xc0,0xa0,0xf4, - 0x5f,0xa3,0x90,0xf5,0x4f,0xa2,0xa0,0xf6,0x3f,0x85,0x90,0xf7,0x2f,0x84,0xa0,0xf8, - 0x28,0xa2,0x10,0xf9,0xf,0x66,0xa0,0xfa,0x8,0x84,0x10,0xfa,0xf8,0x83,0x20,0xfb, - 0xe8,0x66,0x10,0xfc,0xd8,0x65,0x20,0xfd,0xc8,0x48,0x10,0xfe,0xb8,0x47,0x20,0xff, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x77,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x10,0x80,0x0,0x0,0x0,0x9b, + 0x80,0x4c,0x18,0x13,0x4d,0x6e,0x40,0x14,0x34,0x24,0xc0,0x15,0x23,0xf9,0xa0,0x16, + 0x13,0xdc,0x90,0x17,0x3,0xcd,0x90,0x17,0xf3,0xbe,0x90,0x18,0xe3,0xaf,0x90,0x19, + 0xd3,0xa0,0x90,0x1a,0xc3,0x91,0x90,0x1b,0xbc,0xbd,0x10,0x1c,0xac,0xae,0x10,0x1d, + 0x9c,0x9f,0x10,0x1e,0x8c,0x90,0x10,0x1f,0x7c,0x81,0x10,0x20,0x6c,0x72,0x10,0x21, + 0x5c,0x63,0x10,0x22,0x4c,0x54,0x10,0x23,0x3c,0x45,0x10,0x24,0x2c,0x36,0x10,0x25, + 0x1c,0x27,0x10,0x26,0xc,0x18,0x10,0x27,0x5,0x43,0x90,0x27,0xf5,0x34,0x90,0x28, + 0xe5,0x25,0x90,0x29,0xd5,0x16,0x90,0x2a,0xc5,0x7,0x90,0x2b,0xb4,0xf8,0x90,0x2c, + 0xa4,0xe9,0x90,0x2d,0x94,0xda,0x90,0x2e,0x84,0xcb,0x90,0x2f,0x74,0xbc,0x90,0x30, + 0x64,0xad,0x90,0x31,0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34, + 0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38, + 0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b, + 0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f, + 0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43, + 0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47, + 0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a, + 0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e, + 0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52, + 0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56, + 0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59, + 0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d, + 0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61, + 0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65, + 0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68, + 0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c, + 0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70, + 0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74, + 0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78, + 0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b, + 0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f, + 0x8e,0x7f,0x90,0x7f,0xff,0xff,0xff,0x0,0x1,0x2,0x3,0x6,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x4,0xff,0xff, + 0xeb,0x68,0x0,0x0,0xff,0xff,0xe3,0xe0,0x0,0x4,0xff,0xff,0xf1,0xf0,0x1,0x8, + 0xff,0xff,0xe3,0xe0,0x0,0x4,0xff,0xff,0xf1,0xf0,0x0,0x8,0x0,0x0,0x0,0x0, + 0x1,0xc,0x0,0x0,0x0,0x0,0x1,0xc,0x4c,0x4d,0x54,0x0,0x2d,0x30,0x32,0x0, + 0x2d,0x30,0x31,0x0,0x2b,0x30,0x30,0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x0,0x0, + 0x0,0x0,0x0,0x1,0x1,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0, + 0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x77,0x0,0x0,0x0,0x7,0x0,0x0, + 0x0,0x10,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x9b,0x80, + 0x4c,0x18,0x0,0x0,0x0,0x0,0x13,0x4d,0x6e,0x40,0x0,0x0,0x0,0x0,0x14,0x34, + 0x24,0xc0,0x0,0x0,0x0,0x0,0x15,0x23,0xf9,0xa0,0x0,0x0,0x0,0x0,0x16,0x13, + 0xdc,0x90,0x0,0x0,0x0,0x0,0x17,0x3,0xcd,0x90,0x0,0x0,0x0,0x0,0x17,0xf3, + 0xbe,0x90,0x0,0x0,0x0,0x0,0x18,0xe3,0xaf,0x90,0x0,0x0,0x0,0x0,0x19,0xd3, + 0xa0,0x90,0x0,0x0,0x0,0x0,0x1a,0xc3,0x91,0x90,0x0,0x0,0x0,0x0,0x1b,0xbc, + 0xbd,0x10,0x0,0x0,0x0,0x0,0x1c,0xac,0xae,0x10,0x0,0x0,0x0,0x0,0x1d,0x9c, + 0x9f,0x10,0x0,0x0,0x0,0x0,0x1e,0x8c,0x90,0x10,0x0,0x0,0x0,0x0,0x1f,0x7c, + 0x81,0x10,0x0,0x0,0x0,0x0,0x20,0x6c,0x72,0x10,0x0,0x0,0x0,0x0,0x21,0x5c, + 0x63,0x10,0x0,0x0,0x0,0x0,0x22,0x4c,0x54,0x10,0x0,0x0,0x0,0x0,0x23,0x3c, + 0x45,0x10,0x0,0x0,0x0,0x0,0x24,0x2c,0x36,0x10,0x0,0x0,0x0,0x0,0x25,0x1c, + 0x27,0x10,0x0,0x0,0x0,0x0,0x26,0xc,0x18,0x10,0x0,0x0,0x0,0x0,0x27,0x5, + 0x43,0x90,0x0,0x0,0x0,0x0,0x27,0xf5,0x34,0x90,0x0,0x0,0x0,0x0,0x28,0xe5, + 0x25,0x90,0x0,0x0,0x0,0x0,0x29,0xd5,0x16,0x90,0x0,0x0,0x0,0x0,0x2a,0xc5, + 0x7,0x90,0x0,0x0,0x0,0x0,0x2b,0xb4,0xf8,0x90,0x0,0x0,0x0,0x0,0x2c,0xa4, + 0xe9,0x90,0x0,0x0,0x0,0x0,0x2d,0x94,0xda,0x90,0x0,0x0,0x0,0x0,0x2e,0x84, + 0xcb,0x90,0x0,0x0,0x0,0x0,0x2f,0x74,0xbc,0x90,0x0,0x0,0x0,0x0,0x30,0x64, + 0xad,0x90,0x0,0x0,0x0,0x0,0x31,0x5d,0xd9,0x10,0x0,0x0,0x0,0x0,0x32,0x72, + 0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d,0xbb,0x10,0x0,0x0,0x0,0x0,0x34,0x52, + 0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d,0x9d,0x10,0x0,0x0,0x0,0x0,0x36,0x32, + 0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd,0x7f,0x10,0x0,0x0,0x0,0x0,0x38,0x1b, + 0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd,0x61,0x10,0x0,0x0,0x0,0x0,0x39,0xfb, + 0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd,0x43,0x10,0x0,0x0,0x0,0x0,0x3b,0xdb, + 0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb, + 0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86,0x41,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b, + 0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66,0x23,0x90,0x0,0x0,0x0,0x0,0x41,0x84, + 0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46,0x5,0x90,0x0,0x0,0x0,0x0,0x43,0x64, + 0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25,0xe7,0x90,0x0,0x0,0x0,0x0,0x45,0x43, + 0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5,0xc9,0x90,0x0,0x0,0x0,0x0,0x47,0x23, + 0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee,0xe6,0x10,0x0,0x0,0x0,0x0,0x49,0x3, + 0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce,0xc8,0x10,0x0,0x0,0x0,0x0,0x4a,0xe3, + 0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae,0xaa,0x10,0x0,0x0,0x0,0x0,0x4c,0xcc, + 0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c,0x10,0x0,0x0,0x0,0x0,0x4e,0xac, + 0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e,0x10,0x0,0x0,0x0,0x0,0x50,0x8c, + 0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57,0x8a,0x90,0x0,0x0,0x0,0x0,0x52,0x6c, + 0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37,0x6c,0x90,0x0,0x0,0x0,0x0,0x54,0x4c, + 0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17,0x4e,0x90,0x0,0x0,0x0,0x0,0x56,0x2c, + 0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7,0x30,0x90,0x0,0x0,0x0,0x0,0x58,0x15, + 0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7,0x12,0x90,0x0,0x0,0x0,0x0,0x59,0xf5, + 0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4,0x90,0x0,0x0,0x0,0x0,0x5b,0xd5, + 0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0,0x11,0x10,0x0,0x0,0x0,0x0,0x5d,0xb4, + 0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3,0x10,0x0,0x0,0x0,0x0,0x5f,0x94, + 0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f,0xd5,0x10,0x0,0x0,0x0,0x0,0x61,0x7d, + 0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f,0xb7,0x10,0x0,0x0,0x0,0x0,0x63,0x5d, + 0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f,0x99,0x10,0x0,0x0,0x0,0x0,0x65,0x3d, + 0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8,0xb5,0x90,0x0,0x0,0x0,0x0,0x67,0x1d, + 0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8,0x97,0x90,0x0,0x0,0x0,0x0,0x68,0xfd, + 0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8,0x79,0x90,0x0,0x0,0x0,0x0,0x6a,0xdd, + 0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b,0x90,0x0,0x0,0x0,0x0,0x6c,0xc6, + 0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88,0x3d,0x90,0x0,0x0,0x0,0x0,0x6e,0xa6, + 0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68,0x1f,0x90,0x0,0x0,0x0,0x0,0x70,0x86, + 0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51,0x3c,0x10,0x0,0x0,0x0,0x0,0x72,0x66, + 0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31,0x1e,0x10,0x0,0x0,0x0,0x0,0x74,0x45, + 0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11,0x0,0x10,0x0,0x0,0x0,0x0,0x76,0x2f, + 0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0,0xe2,0x10,0x0,0x0,0x0,0x0,0x78,0xe, + 0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0,0xc4,0x10,0x0,0x0,0x0,0x0,0x79,0xee, + 0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6,0x10,0x0,0x0,0x0,0x0,0x7b,0xce, + 0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99,0xc2,0x90,0x0,0x0,0x0,0x0,0x7d,0xae, + 0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79,0xa4,0x90,0x0,0x0,0x0,0x0,0x7f,0x8e, + 0x7f,0x90,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x2,0x3,0x6,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x4,0xff,0xff,0xeb,0x68,0x0,0x0,0xff,0xff,0xe3,0xe0,0x0,0x4,0xff,0xff,0xf1, + 0xf0,0x1,0x8,0xff,0xff,0xe3,0xe0,0x0,0x4,0xff,0xff,0xf1,0xf0,0x0,0x8,0x0, + 0x0,0x0,0x0,0x1,0xc,0x0,0x0,0x0,0x0,0x1,0xc,0x4c,0x4d,0x54,0x0,0x2d, + 0x30,0x32,0x0,0x2d,0x30,0x31,0x0,0x2b,0x30,0x30,0x0,0x0,0x0,0x1,0x1,0x1, + 0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0xa,0x3c,0x2d,0x30,0x31,0x3e,0x31, + 0x3c,0x2b,0x30,0x30,0x3e,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2f,0x30,0x2c,0x4d, + 0x31,0x30,0x2e,0x35,0x2e,0x30,0x2f,0x31,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Costa_Rica + 0x0,0x0,0x1,0x55, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xa,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x11,0x80,0x0,0x0,0x0,0xa3, + 0xe8,0x16,0x4d,0x11,0x36,0x49,0x60,0x11,0xb7,0x6e,0x50,0x13,0x16,0x2b,0x60,0x13, + 0x97,0x50,0x50,0x27,0x97,0xe0,0x60,0x28,0x6e,0xb6,0xd0,0x29,0x77,0xc2,0x60,0x29, + 0xc2,0xd9,0xd0,0x1,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0xff,0xff,0xb1, + 0x33,0x0,0x0,0xff,0xff,0xb1,0x33,0x0,0x4,0xff,0xff,0xb9,0xb0,0x1,0x9,0xff, + 0xff,0xab,0xa0,0x0,0xd,0x4c,0x4d,0x54,0x0,0x53,0x4a,0x4d,0x54,0x0,0x43,0x44, + 0x54,0x0,0x43,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a, + 0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xb,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x11,0xf8,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xff,0xff,0xff,0xff,0x69,0x87,0x2a,0x4d,0xff,0xff,0xff,0xff,0xa3,0xe8, + 0x16,0x4d,0x0,0x0,0x0,0x0,0x11,0x36,0x49,0x60,0x0,0x0,0x0,0x0,0x11,0xb7, + 0x6e,0x50,0x0,0x0,0x0,0x0,0x13,0x16,0x2b,0x60,0x0,0x0,0x0,0x0,0x13,0x97, + 0x50,0x50,0x0,0x0,0x0,0x0,0x27,0x97,0xe0,0x60,0x0,0x0,0x0,0x0,0x28,0x6e, + 0xb6,0xd0,0x0,0x0,0x0,0x0,0x29,0x77,0xc2,0x60,0x0,0x0,0x0,0x0,0x29,0xc2, + 0xd9,0xd0,0x0,0x1,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0xff,0xff,0xb1, + 0x33,0x0,0x0,0xff,0xff,0xb1,0x33,0x0,0x4,0xff,0xff,0xb9,0xb0,0x1,0x9,0xff, + 0xff,0xab,0xa0,0x0,0xd,0x4c,0x4d,0x54,0x0,0x53,0x4a,0x4d,0x54,0x0,0x43,0x44, + 0x54,0x0,0x43,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x43, + 0x53,0x54,0x36,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Juneau + 0x0,0x0,0x9,0x3a, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x8f,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x26,0x80,0x0,0x0,0x0,0xcb, + 0x89,0x1a,0xa0,0xd2,0x23,0xf4,0x70,0xd2,0x61,0x26,0x10,0xfe,0xb8,0x47,0x20,0xff, 0xa8,0x2a,0x10,0x0,0x98,0x29,0x20,0x1,0x88,0xc,0x10,0x2,0x78,0xb,0x20,0x3, 0x71,0x28,0x90,0x4,0x61,0x27,0xa0,0x5,0x51,0xa,0x90,0x6,0x41,0x9,0xa0,0x7, - 0x30,0xec,0x90,0x8,0x20,0xeb,0xa0,0x9,0x10,0xce,0x90,0xa,0x0,0xcd,0xa0,0xa, + 0x30,0xec,0x90,0x7,0x8d,0x43,0xa0,0x9,0x10,0xce,0x90,0x9,0xad,0xbf,0x20,0xa, 0xf0,0xb0,0x90,0xb,0xe0,0xaf,0xa0,0xc,0xd9,0xcd,0x10,0xd,0xc0,0x91,0xa0,0xe, 0xb9,0xaf,0x10,0xf,0xa9,0xae,0x20,0x10,0x99,0x91,0x10,0x11,0x89,0x90,0x20,0x12, - 0x79,0x73,0x10,0x13,0x69,0x72,0x20,0x14,0x59,0x55,0x10,0x15,0x49,0x54,0x20,0x16, + 0x79,0x73,0x10,0x13,0x69,0x72,0x20,0x14,0x59,0x63,0x20,0x15,0x49,0x54,0x20,0x16, 0x39,0x37,0x10,0x17,0x29,0x36,0x20,0x18,0x22,0x53,0x90,0x19,0x9,0x18,0x20,0x1a, - 0x2,0x35,0x90,0x1a,0xf2,0x34,0xa0,0x1b,0xe2,0x17,0x90,0x1c,0xd2,0x16,0xa0,0x1d, - 0xc1,0xf9,0x90,0x1e,0xb1,0xf8,0xa0,0x1f,0xa1,0xdb,0x90,0x20,0x76,0x2b,0x20,0x21, - 0x81,0xbd,0x90,0x22,0x56,0xd,0x20,0x23,0x6a,0xda,0x10,0x24,0x35,0xef,0x20,0x25, - 0x4a,0xbc,0x10,0x26,0x15,0xd1,0x20,0x27,0x2a,0x9e,0x10,0x27,0xfe,0xed,0xa0,0x29, - 0xa,0x80,0x10,0x29,0xde,0xcf,0xa0,0x2a,0xea,0x62,0x10,0x2b,0xbe,0xb1,0xa0,0x2c, - 0xd3,0x7e,0x90,0x2d,0x9e,0x93,0xa0,0x2e,0xb3,0x60,0x90,0x2f,0x7e,0x75,0xa0,0x30, - 0x93,0x42,0x90,0x31,0x67,0x92,0x20,0x32,0x73,0x24,0x90,0x33,0x47,0x74,0x20,0x34, - 0x53,0x6,0x90,0x35,0x27,0x56,0x20,0x36,0x32,0xe8,0x90,0x37,0x7,0x38,0x20,0x38, - 0x1c,0x5,0x10,0x38,0xe7,0x1a,0x20,0x39,0xfb,0xe7,0x10,0x3a,0xc6,0xfc,0x20,0x3b, - 0xdb,0xc9,0x10,0x3c,0xb0,0x18,0xa0,0x3d,0xbb,0xab,0x10,0x3e,0x8f,0xfa,0xa0,0x3f, - 0x9b,0x8d,0x10,0x40,0x6f,0xdc,0xa0,0x41,0x84,0xa9,0x90,0x42,0x4f,0xbe,0xa0,0x43, - 0x64,0x8b,0x90,0x44,0x2f,0xa0,0xa0,0x45,0x44,0x6d,0x90,0x45,0xf3,0xd3,0x20,0x47, - 0x2d,0x8a,0x10,0x47,0xd3,0xb5,0x20,0x49,0xd,0x6c,0x10,0x49,0xb3,0x97,0x20,0x4a, - 0xed,0x4e,0x10,0x4b,0x9c,0xb3,0xa0,0x4c,0xd6,0x6a,0x90,0x4d,0x7c,0x95,0xa0,0x4e, - 0xb6,0x4c,0x90,0x4f,0x5c,0x77,0xa0,0x50,0x96,0x2e,0x90,0x51,0x3c,0x59,0xa0,0x52, - 0x76,0x10,0x90,0x53,0x1c,0x3b,0xa0,0x54,0x55,0xf2,0x90,0x54,0xfc,0x1d,0xa0,0x56, - 0x35,0xd4,0x90,0x56,0xe5,0x3a,0x20,0x58,0x1e,0xf1,0x10,0x58,0xc5,0x1c,0x20,0x59, - 0xfe,0xd3,0x10,0x5a,0xa4,0xfe,0x20,0x5b,0xde,0xb5,0x10,0x5c,0x84,0xe0,0x20,0x5d, - 0xbe,0x97,0x10,0x5e,0x64,0xc2,0x20,0x5f,0x9e,0x79,0x10,0x60,0x4d,0xde,0xa0,0x61, - 0x87,0x95,0x90,0x62,0x2d,0xc0,0xa0,0x63,0x67,0x77,0x90,0x64,0xd,0xa2,0xa0,0x65, - 0x47,0x59,0x90,0x65,0xed,0x84,0xa0,0x67,0x27,0x3b,0x90,0x67,0xcd,0x66,0xa0,0x69, - 0x7,0x1d,0x90,0x69,0xad,0x48,0xa0,0x6a,0xe6,0xff,0x90,0x6b,0x96,0x65,0x20,0x6c, - 0xd0,0x1c,0x10,0x6d,0x76,0x47,0x20,0x6e,0xaf,0xfe,0x10,0x6f,0x56,0x29,0x20,0x70, - 0x8f,0xe0,0x10,0x71,0x36,0xb,0x20,0x72,0x6f,0xc2,0x10,0x73,0x15,0xed,0x20,0x74, - 0x4f,0xa4,0x10,0x74,0xff,0x9,0xa0,0x76,0x38,0xc0,0x90,0x76,0xde,0xeb,0xa0,0x78, - 0x18,0xa2,0x90,0x78,0xbe,0xcd,0xa0,0x79,0xf8,0x84,0x90,0x7a,0x9e,0xaf,0xa0,0x7b, - 0xd8,0x66,0x90,0x7c,0x7e,0x91,0xa0,0x7d,0xb8,0x48,0x90,0x7e,0x5e,0x73,0xa0,0x7f, - 0x98,0x2a,0x90,0x2,0x1,0x2,0x3,0x4,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0xff,0xff,0x8c,0x94,0x0,0x0,0xff,0xff,0x9d,0x90,0x1,0x4,0xff,0xff,0x8f, - 0x80,0x0,0x8,0xff,0xff,0x9d,0x90,0x1,0xc,0xff,0xff,0x9d,0x90,0x1,0x10,0x4c, - 0x4d,0x54,0x0,0x50,0x44,0x54,0x0,0x50,0x53,0x54,0x0,0x50,0x57,0x54,0x0,0x50, - 0x50,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x1,0x54,0x5a,0x69, - 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0xbf,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0x5e,0x3d,0x76,0xec,0xff,0xff,0xff,0xff,0x9e,0xb8,0xbd, - 0xa0,0xff,0xff,0xff,0xff,0x9f,0xbb,0x15,0x90,0xff,0xff,0xff,0xff,0xcb,0x89,0x1a, - 0xa0,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x61,0x26, - 0x10,0xff,0xff,0xff,0xff,0xd3,0x76,0xf,0x20,0xff,0xff,0xff,0xff,0xd4,0x53,0x7d, - 0x10,0xff,0xff,0xff,0xff,0xd5,0x55,0xf1,0x20,0xff,0xff,0xff,0xff,0xd6,0x20,0xea, - 0x10,0xff,0xff,0xff,0xff,0xd7,0x35,0xd3,0x20,0xff,0xff,0xff,0xff,0xd8,0x0,0xcc, - 0x10,0xff,0xff,0xff,0xff,0xd9,0x15,0xb5,0x20,0xff,0xff,0xff,0xff,0xd9,0xe0,0xae, - 0x10,0xff,0xff,0xff,0xff,0xda,0xfe,0xd1,0xa0,0xff,0xff,0xff,0xff,0xdb,0xc0,0x90, - 0x10,0xff,0xff,0xff,0xff,0xdc,0xde,0xb3,0xa0,0xff,0xff,0xff,0xff,0xdd,0xa9,0xac, - 0x90,0xff,0xff,0xff,0xff,0xde,0xbe,0x95,0xa0,0xff,0xff,0xff,0xff,0xdf,0x89,0x8e, - 0x90,0xff,0xff,0xff,0xff,0xe0,0x9e,0x77,0xa0,0xff,0xff,0xff,0xff,0xe1,0x69,0x70, - 0x90,0xff,0xff,0xff,0xff,0xe2,0x7e,0x59,0xa0,0xff,0xff,0xff,0xff,0xe3,0x49,0x52, - 0x90,0xff,0xff,0xff,0xff,0xe4,0x5e,0x3b,0xa0,0xff,0xff,0xff,0xff,0xe5,0x29,0x34, - 0x90,0xff,0xff,0xff,0xff,0xe6,0x47,0x58,0x20,0xff,0xff,0xff,0xff,0xe7,0x12,0x51, - 0x10,0xff,0xff,0xff,0xff,0xe8,0x27,0x3a,0x20,0xff,0xff,0xff,0xff,0xe8,0xf2,0x33, - 0x10,0xff,0xff,0xff,0xff,0xea,0x7,0x1c,0x20,0xff,0xff,0xff,0xff,0xea,0xd2,0x15, - 0x10,0xff,0xff,0xff,0xff,0xeb,0xe6,0xfe,0x20,0xff,0xff,0xff,0xff,0xec,0xb1,0xf7, - 0x10,0xff,0xff,0xff,0xff,0xed,0xc6,0xe0,0x20,0xff,0xff,0xff,0xff,0xee,0x91,0xd9, - 0x10,0xff,0xff,0xff,0xff,0xef,0xaf,0xfc,0xa0,0xff,0xff,0xff,0xff,0xf0,0x71,0xbb, - 0x10,0xff,0xff,0xff,0xff,0xf1,0x8f,0xde,0xa0,0xff,0xff,0xff,0xff,0xf2,0x7f,0xc1, - 0x90,0xff,0xff,0xff,0xff,0xf3,0x6f,0xc0,0xa0,0xff,0xff,0xff,0xff,0xf4,0x5f,0xa3, - 0x90,0xff,0xff,0xff,0xff,0xf5,0x4f,0xa2,0xa0,0xff,0xff,0xff,0xff,0xf6,0x3f,0x85, - 0x90,0xff,0xff,0xff,0xff,0xf7,0x2f,0x84,0xa0,0xff,0xff,0xff,0xff,0xf8,0x28,0xa2, - 0x10,0xff,0xff,0xff,0xff,0xf9,0xf,0x66,0xa0,0xff,0xff,0xff,0xff,0xfa,0x8,0x84, - 0x10,0xff,0xff,0xff,0xff,0xfa,0xf8,0x83,0x20,0xff,0xff,0xff,0xff,0xfb,0xe8,0x66, - 0x10,0xff,0xff,0xff,0xff,0xfc,0xd8,0x65,0x20,0xff,0xff,0xff,0xff,0xfd,0xc8,0x48, - 0x10,0xff,0xff,0xff,0xff,0xfe,0xb8,0x47,0x20,0xff,0xff,0xff,0xff,0xff,0xa8,0x2a, - 0x10,0x0,0x0,0x0,0x0,0x0,0x98,0x29,0x20,0x0,0x0,0x0,0x0,0x1,0x88,0xc, - 0x10,0x0,0x0,0x0,0x0,0x2,0x78,0xb,0x20,0x0,0x0,0x0,0x0,0x3,0x71,0x28, - 0x90,0x0,0x0,0x0,0x0,0x4,0x61,0x27,0xa0,0x0,0x0,0x0,0x0,0x5,0x51,0xa, - 0x90,0x0,0x0,0x0,0x0,0x6,0x41,0x9,0xa0,0x0,0x0,0x0,0x0,0x7,0x30,0xec, - 0x90,0x0,0x0,0x0,0x0,0x8,0x20,0xeb,0xa0,0x0,0x0,0x0,0x0,0x9,0x10,0xce, - 0x90,0x0,0x0,0x0,0x0,0xa,0x0,0xcd,0xa0,0x0,0x0,0x0,0x0,0xa,0xf0,0xb0, - 0x90,0x0,0x0,0x0,0x0,0xb,0xe0,0xaf,0xa0,0x0,0x0,0x0,0x0,0xc,0xd9,0xcd, - 0x10,0x0,0x0,0x0,0x0,0xd,0xc0,0x91,0xa0,0x0,0x0,0x0,0x0,0xe,0xb9,0xaf, - 0x10,0x0,0x0,0x0,0x0,0xf,0xa9,0xae,0x20,0x0,0x0,0x0,0x0,0x10,0x99,0x91, - 0x10,0x0,0x0,0x0,0x0,0x11,0x89,0x90,0x20,0x0,0x0,0x0,0x0,0x12,0x79,0x73, - 0x10,0x0,0x0,0x0,0x0,0x13,0x69,0x72,0x20,0x0,0x0,0x0,0x0,0x14,0x59,0x55, - 0x10,0x0,0x0,0x0,0x0,0x15,0x49,0x54,0x20,0x0,0x0,0x0,0x0,0x16,0x39,0x37, - 0x10,0x0,0x0,0x0,0x0,0x17,0x29,0x36,0x20,0x0,0x0,0x0,0x0,0x18,0x22,0x53, - 0x90,0x0,0x0,0x0,0x0,0x19,0x9,0x18,0x20,0x0,0x0,0x0,0x0,0x1a,0x2,0x35, - 0x90,0x0,0x0,0x0,0x0,0x1a,0xf2,0x34,0xa0,0x0,0x0,0x0,0x0,0x1b,0xe2,0x17, - 0x90,0x0,0x0,0x0,0x0,0x1c,0xd2,0x16,0xa0,0x0,0x0,0x0,0x0,0x1d,0xc1,0xf9, - 0x90,0x0,0x0,0x0,0x0,0x1e,0xb1,0xf8,0xa0,0x0,0x0,0x0,0x0,0x1f,0xa1,0xdb, - 0x90,0x0,0x0,0x0,0x0,0x20,0x76,0x2b,0x20,0x0,0x0,0x0,0x0,0x21,0x81,0xbd, - 0x90,0x0,0x0,0x0,0x0,0x22,0x56,0xd,0x20,0x0,0x0,0x0,0x0,0x23,0x6a,0xda, - 0x10,0x0,0x0,0x0,0x0,0x24,0x35,0xef,0x20,0x0,0x0,0x0,0x0,0x25,0x4a,0xbc, - 0x10,0x0,0x0,0x0,0x0,0x26,0x15,0xd1,0x20,0x0,0x0,0x0,0x0,0x27,0x2a,0x9e, - 0x10,0x0,0x0,0x0,0x0,0x27,0xfe,0xed,0xa0,0x0,0x0,0x0,0x0,0x29,0xa,0x80, - 0x10,0x0,0x0,0x0,0x0,0x29,0xde,0xcf,0xa0,0x0,0x0,0x0,0x0,0x2a,0xea,0x62, - 0x10,0x0,0x0,0x0,0x0,0x2b,0xbe,0xb1,0xa0,0x0,0x0,0x0,0x0,0x2c,0xd3,0x7e, - 0x90,0x0,0x0,0x0,0x0,0x2d,0x9e,0x93,0xa0,0x0,0x0,0x0,0x0,0x2e,0xb3,0x60, - 0x90,0x0,0x0,0x0,0x0,0x2f,0x7e,0x75,0xa0,0x0,0x0,0x0,0x0,0x30,0x93,0x42, - 0x90,0x0,0x0,0x0,0x0,0x31,0x67,0x92,0x20,0x0,0x0,0x0,0x0,0x32,0x73,0x24, - 0x90,0x0,0x0,0x0,0x0,0x33,0x47,0x74,0x20,0x0,0x0,0x0,0x0,0x34,0x53,0x6, - 0x90,0x0,0x0,0x0,0x0,0x35,0x27,0x56,0x20,0x0,0x0,0x0,0x0,0x36,0x32,0xe8, - 0x90,0x0,0x0,0x0,0x0,0x37,0x7,0x38,0x20,0x0,0x0,0x0,0x0,0x38,0x1c,0x5, - 0x10,0x0,0x0,0x0,0x0,0x38,0xe7,0x1a,0x20,0x0,0x0,0x0,0x0,0x39,0xfb,0xe7, - 0x10,0x0,0x0,0x0,0x0,0x3a,0xc6,0xfc,0x20,0x0,0x0,0x0,0x0,0x3b,0xdb,0xc9, - 0x10,0x0,0x0,0x0,0x0,0x3c,0xb0,0x18,0xa0,0x0,0x0,0x0,0x0,0x3d,0xbb,0xab, - 0x10,0x0,0x0,0x0,0x0,0x3e,0x8f,0xfa,0xa0,0x0,0x0,0x0,0x0,0x3f,0x9b,0x8d, - 0x10,0x0,0x0,0x0,0x0,0x40,0x6f,0xdc,0xa0,0x0,0x0,0x0,0x0,0x41,0x84,0xa9, - 0x90,0x0,0x0,0x0,0x0,0x42,0x4f,0xbe,0xa0,0x0,0x0,0x0,0x0,0x43,0x64,0x8b, - 0x90,0x0,0x0,0x0,0x0,0x44,0x2f,0xa0,0xa0,0x0,0x0,0x0,0x0,0x45,0x44,0x6d, - 0x90,0x0,0x0,0x0,0x0,0x45,0xf3,0xd3,0x20,0x0,0x0,0x0,0x0,0x47,0x2d,0x8a, - 0x10,0x0,0x0,0x0,0x0,0x47,0xd3,0xb5,0x20,0x0,0x0,0x0,0x0,0x49,0xd,0x6c, - 0x10,0x0,0x0,0x0,0x0,0x49,0xb3,0x97,0x20,0x0,0x0,0x0,0x0,0x4a,0xed,0x4e, - 0x10,0x0,0x0,0x0,0x0,0x4b,0x9c,0xb3,0xa0,0x0,0x0,0x0,0x0,0x4c,0xd6,0x6a, - 0x90,0x0,0x0,0x0,0x0,0x4d,0x7c,0x95,0xa0,0x0,0x0,0x0,0x0,0x4e,0xb6,0x4c, - 0x90,0x0,0x0,0x0,0x0,0x4f,0x5c,0x77,0xa0,0x0,0x0,0x0,0x0,0x50,0x96,0x2e, - 0x90,0x0,0x0,0x0,0x0,0x51,0x3c,0x59,0xa0,0x0,0x0,0x0,0x0,0x52,0x76,0x10, - 0x90,0x0,0x0,0x0,0x0,0x53,0x1c,0x3b,0xa0,0x0,0x0,0x0,0x0,0x54,0x55,0xf2, - 0x90,0x0,0x0,0x0,0x0,0x54,0xfc,0x1d,0xa0,0x0,0x0,0x0,0x0,0x56,0x35,0xd4, - 0x90,0x0,0x0,0x0,0x0,0x56,0xe5,0x3a,0x20,0x0,0x0,0x0,0x0,0x58,0x1e,0xf1, - 0x10,0x0,0x0,0x0,0x0,0x58,0xc5,0x1c,0x20,0x0,0x0,0x0,0x0,0x59,0xfe,0xd3, - 0x10,0x0,0x0,0x0,0x0,0x5a,0xa4,0xfe,0x20,0x0,0x0,0x0,0x0,0x5b,0xde,0xb5, - 0x10,0x0,0x0,0x0,0x0,0x5c,0x84,0xe0,0x20,0x0,0x0,0x0,0x0,0x5d,0xbe,0x97, - 0x10,0x0,0x0,0x0,0x0,0x5e,0x64,0xc2,0x20,0x0,0x0,0x0,0x0,0x5f,0x9e,0x79, - 0x10,0x0,0x0,0x0,0x0,0x60,0x4d,0xde,0xa0,0x0,0x0,0x0,0x0,0x61,0x87,0x95, - 0x90,0x0,0x0,0x0,0x0,0x62,0x2d,0xc0,0xa0,0x0,0x0,0x0,0x0,0x63,0x67,0x77, - 0x90,0x0,0x0,0x0,0x0,0x64,0xd,0xa2,0xa0,0x0,0x0,0x0,0x0,0x65,0x47,0x59, - 0x90,0x0,0x0,0x0,0x0,0x65,0xed,0x84,0xa0,0x0,0x0,0x0,0x0,0x67,0x27,0x3b, - 0x90,0x0,0x0,0x0,0x0,0x67,0xcd,0x66,0xa0,0x0,0x0,0x0,0x0,0x69,0x7,0x1d, - 0x90,0x0,0x0,0x0,0x0,0x69,0xad,0x48,0xa0,0x0,0x0,0x0,0x0,0x6a,0xe6,0xff, - 0x90,0x0,0x0,0x0,0x0,0x6b,0x96,0x65,0x20,0x0,0x0,0x0,0x0,0x6c,0xd0,0x1c, - 0x10,0x0,0x0,0x0,0x0,0x6d,0x76,0x47,0x20,0x0,0x0,0x0,0x0,0x6e,0xaf,0xfe, - 0x10,0x0,0x0,0x0,0x0,0x6f,0x56,0x29,0x20,0x0,0x0,0x0,0x0,0x70,0x8f,0xe0, - 0x10,0x0,0x0,0x0,0x0,0x71,0x36,0xb,0x20,0x0,0x0,0x0,0x0,0x72,0x6f,0xc2, - 0x10,0x0,0x0,0x0,0x0,0x73,0x15,0xed,0x20,0x0,0x0,0x0,0x0,0x74,0x4f,0xa4, - 0x10,0x0,0x0,0x0,0x0,0x74,0xff,0x9,0xa0,0x0,0x0,0x0,0x0,0x76,0x38,0xc0, - 0x90,0x0,0x0,0x0,0x0,0x76,0xde,0xeb,0xa0,0x0,0x0,0x0,0x0,0x78,0x18,0xa2, - 0x90,0x0,0x0,0x0,0x0,0x78,0xbe,0xcd,0xa0,0x0,0x0,0x0,0x0,0x79,0xf8,0x84, - 0x90,0x0,0x0,0x0,0x0,0x7a,0x9e,0xaf,0xa0,0x0,0x0,0x0,0x0,0x7b,0xd8,0x66, - 0x90,0x0,0x0,0x0,0x0,0x7c,0x7e,0x91,0xa0,0x0,0x0,0x0,0x0,0x7d,0xb8,0x48, - 0x90,0x0,0x0,0x0,0x0,0x7e,0x5e,0x73,0xa0,0x0,0x0,0x0,0x0,0x7f,0x98,0x2a, - 0x90,0x0,0x2,0x1,0x2,0x3,0x4,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0xff,0xff,0x8c,0x94,0x0,0x0,0xff,0xff,0x9d,0x90,0x1,0x4,0xff,0xff,0x8f,0x80, - 0x0,0x8,0xff,0xff,0x9d,0x90,0x1,0xc,0xff,0xff,0x9d,0x90,0x1,0x10,0x4c,0x4d, - 0x54,0x0,0x50,0x44,0x54,0x0,0x50,0x53,0x54,0x0,0x50,0x57,0x54,0x0,0x50,0x50, - 0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x1,0xa,0x50,0x53,0x54, - 0x38,0x50,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e, - 0x31,0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Indianapolis - 0x0,0x0,0x6,0x8b, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x63,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x1c,0x80,0x0,0x0,0x0,0x9e, - 0xa6,0x2c,0x80,0x9f,0xba,0xf9,0x70,0xa0,0x86,0xe,0x80,0xa1,0x9a,0xdb,0x70,0xca, - 0x57,0x22,0x80,0xca,0xd8,0x47,0x70,0xcb,0x88,0xfe,0x80,0xd2,0x23,0xf4,0x70,0xd2, - 0x61,0x9,0xf0,0xd3,0x75,0xf3,0x0,0xd4,0x40,0xeb,0xf0,0xd5,0x55,0xd5,0x0,0xd6, - 0x20,0xcd,0xf0,0xd7,0x35,0xb7,0x0,0xd8,0x0,0xaf,0xf0,0xd9,0x15,0x99,0x0,0xd9, - 0xe0,0x91,0xf0,0xda,0xfe,0xb5,0x80,0xdb,0xc0,0x73,0xf0,0xdc,0xde,0x97,0x80,0xdd, - 0xa9,0x90,0x70,0xde,0xbe,0x79,0x80,0xdf,0x89,0x72,0x70,0xe0,0x9e,0x5b,0x80,0xe1, - 0x69,0x54,0x70,0xe2,0x7e,0x3d,0x80,0xe3,0x49,0x36,0x70,0xe4,0x5e,0x1f,0x80,0xe8, - 0xf2,0x16,0xf0,0xea,0x7,0x0,0x0,0xfe,0xb8,0x1c,0xf0,0xff,0xa7,0xff,0xe0,0x0, - 0x97,0xfe,0xf0,0x1,0x87,0xe1,0xe0,0x44,0x2f,0x76,0x70,0x45,0x44,0x43,0x60,0x45, - 0xf3,0xa8,0xf0,0x47,0x2d,0x5f,0xe0,0x47,0xd3,0x8a,0xf0,0x49,0xd,0x41,0xe0,0x49, - 0xb3,0x6c,0xf0,0x4a,0xed,0x23,0xe0,0x4b,0x9c,0x89,0x70,0x4c,0xd6,0x40,0x60,0x4d, - 0x7c,0x6b,0x70,0x4e,0xb6,0x22,0x60,0x4f,0x5c,0x4d,0x70,0x50,0x96,0x4,0x60,0x51, - 0x3c,0x2f,0x70,0x52,0x75,0xe6,0x60,0x53,0x1c,0x11,0x70,0x54,0x55,0xc8,0x60,0x54, - 0xfb,0xf3,0x70,0x56,0x35,0xaa,0x60,0x56,0xe5,0xf,0xf0,0x58,0x1e,0xc6,0xe0,0x58, - 0xc4,0xf1,0xf0,0x59,0xfe,0xa8,0xe0,0x5a,0xa4,0xd3,0xf0,0x5b,0xde,0x8a,0xe0,0x5c, - 0x84,0xb5,0xf0,0x5d,0xbe,0x6c,0xe0,0x5e,0x64,0x97,0xf0,0x5f,0x9e,0x4e,0xe0,0x60, - 0x4d,0xb4,0x70,0x61,0x87,0x6b,0x60,0x62,0x2d,0x96,0x70,0x63,0x67,0x4d,0x60,0x64, - 0xd,0x78,0x70,0x65,0x47,0x2f,0x60,0x65,0xed,0x5a,0x70,0x67,0x27,0x11,0x60,0x67, - 0xcd,0x3c,0x70,0x69,0x6,0xf3,0x60,0x69,0xad,0x1e,0x70,0x6a,0xe6,0xd5,0x60,0x6b, - 0x96,0x3a,0xf0,0x6c,0xcf,0xf1,0xe0,0x6d,0x76,0x1c,0xf0,0x6e,0xaf,0xd3,0xe0,0x6f, - 0x55,0xfe,0xf0,0x70,0x8f,0xb5,0xe0,0x71,0x35,0xe0,0xf0,0x72,0x6f,0x97,0xe0,0x73, - 0x15,0xc2,0xf0,0x74,0x4f,0x79,0xe0,0x74,0xfe,0xdf,0x70,0x76,0x38,0x96,0x60,0x76, - 0xde,0xc1,0x70,0x78,0x18,0x78,0x60,0x78,0xbe,0xa3,0x70,0x79,0xf8,0x5a,0x60,0x7a, - 0x9e,0x85,0x70,0x7b,0xd8,0x3c,0x60,0x7c,0x7e,0x67,0x70,0x7d,0xb8,0x1e,0x60,0x7e, - 0x5e,0x49,0x70,0x7f,0x98,0x0,0x60,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x5,0x2,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0xff,0xff,0xaf,0x3a,0x0,0x0, - 0xff,0xff,0xb9,0xb0,0x1,0x4,0xff,0xff,0xab,0xa0,0x0,0x8,0xff,0xff,0xb9,0xb0, - 0x1,0xc,0xff,0xff,0xb9,0xb0,0x1,0x10,0xff,0xff,0xb9,0xb0,0x0,0x14,0xff,0xff, - 0xc7,0xc0,0x1,0x18,0x4c,0x4d,0x54,0x0,0x43,0x44,0x54,0x0,0x43,0x53,0x54,0x0, - 0x43,0x57,0x54,0x0,0x43,0x50,0x54,0x0,0x45,0x53,0x54,0x0,0x45,0x44,0x54,0x0, - 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x54,0x5a, - 0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x64,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x1c,0xf8,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xff,0xff,0xff,0xff,0x5e,0x3,0xfe,0xa0,0xff,0xff,0xff,0xff,0x9e,0xa6, - 0x2c,0x80,0xff,0xff,0xff,0xff,0x9f,0xba,0xf9,0x70,0xff,0xff,0xff,0xff,0xa0,0x86, - 0xe,0x80,0xff,0xff,0xff,0xff,0xa1,0x9a,0xdb,0x70,0xff,0xff,0xff,0xff,0xca,0x57, - 0x22,0x80,0xff,0xff,0xff,0xff,0xca,0xd8,0x47,0x70,0xff,0xff,0xff,0xff,0xcb,0x88, - 0xfe,0x80,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x61, - 0x9,0xf0,0xff,0xff,0xff,0xff,0xd3,0x75,0xf3,0x0,0xff,0xff,0xff,0xff,0xd4,0x40, - 0xeb,0xf0,0xff,0xff,0xff,0xff,0xd5,0x55,0xd5,0x0,0xff,0xff,0xff,0xff,0xd6,0x20, - 0xcd,0xf0,0xff,0xff,0xff,0xff,0xd7,0x35,0xb7,0x0,0xff,0xff,0xff,0xff,0xd8,0x0, - 0xaf,0xf0,0xff,0xff,0xff,0xff,0xd9,0x15,0x99,0x0,0xff,0xff,0xff,0xff,0xd9,0xe0, - 0x91,0xf0,0xff,0xff,0xff,0xff,0xda,0xfe,0xb5,0x80,0xff,0xff,0xff,0xff,0xdb,0xc0, - 0x73,0xf0,0xff,0xff,0xff,0xff,0xdc,0xde,0x97,0x80,0xff,0xff,0xff,0xff,0xdd,0xa9, - 0x90,0x70,0xff,0xff,0xff,0xff,0xde,0xbe,0x79,0x80,0xff,0xff,0xff,0xff,0xdf,0x89, - 0x72,0x70,0xff,0xff,0xff,0xff,0xe0,0x9e,0x5b,0x80,0xff,0xff,0xff,0xff,0xe1,0x69, - 0x54,0x70,0xff,0xff,0xff,0xff,0xe2,0x7e,0x3d,0x80,0xff,0xff,0xff,0xff,0xe3,0x49, - 0x36,0x70,0xff,0xff,0xff,0xff,0xe4,0x5e,0x1f,0x80,0xff,0xff,0xff,0xff,0xe8,0xf2, - 0x16,0xf0,0xff,0xff,0xff,0xff,0xea,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0xfe,0xb8, - 0x1c,0xf0,0xff,0xff,0xff,0xff,0xff,0xa7,0xff,0xe0,0x0,0x0,0x0,0x0,0x0,0x97, - 0xfe,0xf0,0x0,0x0,0x0,0x0,0x1,0x87,0xe1,0xe0,0x0,0x0,0x0,0x0,0x44,0x2f, - 0x76,0x70,0x0,0x0,0x0,0x0,0x45,0x44,0x43,0x60,0x0,0x0,0x0,0x0,0x45,0xf3, - 0xa8,0xf0,0x0,0x0,0x0,0x0,0x47,0x2d,0x5f,0xe0,0x0,0x0,0x0,0x0,0x47,0xd3, - 0x8a,0xf0,0x0,0x0,0x0,0x0,0x49,0xd,0x41,0xe0,0x0,0x0,0x0,0x0,0x49,0xb3, - 0x6c,0xf0,0x0,0x0,0x0,0x0,0x4a,0xed,0x23,0xe0,0x0,0x0,0x0,0x0,0x4b,0x9c, - 0x89,0x70,0x0,0x0,0x0,0x0,0x4c,0xd6,0x40,0x60,0x0,0x0,0x0,0x0,0x4d,0x7c, - 0x6b,0x70,0x0,0x0,0x0,0x0,0x4e,0xb6,0x22,0x60,0x0,0x0,0x0,0x0,0x4f,0x5c, - 0x4d,0x70,0x0,0x0,0x0,0x0,0x50,0x96,0x4,0x60,0x0,0x0,0x0,0x0,0x51,0x3c, - 0x2f,0x70,0x0,0x0,0x0,0x0,0x52,0x75,0xe6,0x60,0x0,0x0,0x0,0x0,0x53,0x1c, - 0x11,0x70,0x0,0x0,0x0,0x0,0x54,0x55,0xc8,0x60,0x0,0x0,0x0,0x0,0x54,0xfb, - 0xf3,0x70,0x0,0x0,0x0,0x0,0x56,0x35,0xaa,0x60,0x0,0x0,0x0,0x0,0x56,0xe5, - 0xf,0xf0,0x0,0x0,0x0,0x0,0x58,0x1e,0xc6,0xe0,0x0,0x0,0x0,0x0,0x58,0xc4, - 0xf1,0xf0,0x0,0x0,0x0,0x0,0x59,0xfe,0xa8,0xe0,0x0,0x0,0x0,0x0,0x5a,0xa4, - 0xd3,0xf0,0x0,0x0,0x0,0x0,0x5b,0xde,0x8a,0xe0,0x0,0x0,0x0,0x0,0x5c,0x84, - 0xb5,0xf0,0x0,0x0,0x0,0x0,0x5d,0xbe,0x6c,0xe0,0x0,0x0,0x0,0x0,0x5e,0x64, - 0x97,0xf0,0x0,0x0,0x0,0x0,0x5f,0x9e,0x4e,0xe0,0x0,0x0,0x0,0x0,0x60,0x4d, - 0xb4,0x70,0x0,0x0,0x0,0x0,0x61,0x87,0x6b,0x60,0x0,0x0,0x0,0x0,0x62,0x2d, - 0x96,0x70,0x0,0x0,0x0,0x0,0x63,0x67,0x4d,0x60,0x0,0x0,0x0,0x0,0x64,0xd, - 0x78,0x70,0x0,0x0,0x0,0x0,0x65,0x47,0x2f,0x60,0x0,0x0,0x0,0x0,0x65,0xed, - 0x5a,0x70,0x0,0x0,0x0,0x0,0x67,0x27,0x11,0x60,0x0,0x0,0x0,0x0,0x67,0xcd, - 0x3c,0x70,0x0,0x0,0x0,0x0,0x69,0x6,0xf3,0x60,0x0,0x0,0x0,0x0,0x69,0xad, - 0x1e,0x70,0x0,0x0,0x0,0x0,0x6a,0xe6,0xd5,0x60,0x0,0x0,0x0,0x0,0x6b,0x96, - 0x3a,0xf0,0x0,0x0,0x0,0x0,0x6c,0xcf,0xf1,0xe0,0x0,0x0,0x0,0x0,0x6d,0x76, - 0x1c,0xf0,0x0,0x0,0x0,0x0,0x6e,0xaf,0xd3,0xe0,0x0,0x0,0x0,0x0,0x6f,0x55, - 0xfe,0xf0,0x0,0x0,0x0,0x0,0x70,0x8f,0xb5,0xe0,0x0,0x0,0x0,0x0,0x71,0x35, - 0xe0,0xf0,0x0,0x0,0x0,0x0,0x72,0x6f,0x97,0xe0,0x0,0x0,0x0,0x0,0x73,0x15, - 0xc2,0xf0,0x0,0x0,0x0,0x0,0x74,0x4f,0x79,0xe0,0x0,0x0,0x0,0x0,0x74,0xfe, - 0xdf,0x70,0x0,0x0,0x0,0x0,0x76,0x38,0x96,0x60,0x0,0x0,0x0,0x0,0x76,0xde, - 0xc1,0x70,0x0,0x0,0x0,0x0,0x78,0x18,0x78,0x60,0x0,0x0,0x0,0x0,0x78,0xbe, - 0xa3,0x70,0x0,0x0,0x0,0x0,0x79,0xf8,0x5a,0x60,0x0,0x0,0x0,0x0,0x7a,0x9e, - 0x85,0x70,0x0,0x0,0x0,0x0,0x7b,0xd8,0x3c,0x60,0x0,0x0,0x0,0x0,0x7c,0x7e, - 0x67,0x70,0x0,0x0,0x0,0x0,0x7d,0xb8,0x1e,0x60,0x0,0x0,0x0,0x0,0x7e,0x5e, - 0x49,0x70,0x0,0x0,0x0,0x0,0x7f,0x98,0x0,0x60,0x0,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x3,0x4,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x5,0x2,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0xff,0xff, - 0xaf,0x3a,0x0,0x0,0xff,0xff,0xb9,0xb0,0x1,0x4,0xff,0xff,0xab,0xa0,0x0,0x8, - 0xff,0xff,0xb9,0xb0,0x1,0xc,0xff,0xff,0xb9,0xb0,0x1,0x10,0xff,0xff,0xb9,0xb0, - 0x0,0x14,0xff,0xff,0xc7,0xc0,0x1,0x18,0x4c,0x4d,0x54,0x0,0x43,0x44,0x54,0x0, - 0x43,0x53,0x54,0x0,0x43,0x57,0x54,0x0,0x43,0x50,0x54,0x0,0x45,0x53,0x54,0x0, - 0x45,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1, - 0x0,0x0,0xa,0x45,0x53,0x54,0x35,0x45,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e, - 0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Rosario - 0x0,0x0,0x4,0x69, + 0x2,0x35,0x90,0x1a,0x2b,0x14,0x10,0x1a,0xf2,0x42,0xb0,0x1b,0xe2,0x25,0xa0,0x1c, + 0xd2,0x24,0xb0,0x1d,0xc2,0x7,0xa0,0x1e,0xb2,0x6,0xb0,0x1f,0xa1,0xe9,0xa0,0x20, + 0x76,0x39,0x30,0x21,0x81,0xcb,0xa0,0x22,0x56,0x1b,0x30,0x23,0x6a,0xe8,0x20,0x24, + 0x35,0xfd,0x30,0x25,0x4a,0xca,0x20,0x26,0x15,0xdf,0x30,0x27,0x2a,0xac,0x20,0x27, + 0xfe,0xfb,0xb0,0x29,0xa,0x8e,0x20,0x29,0xde,0xdd,0xb0,0x2a,0xea,0x70,0x20,0x2b, + 0xbe,0xbf,0xb0,0x2c,0xd3,0x8c,0xa0,0x2d,0x9e,0xa1,0xb0,0x2e,0xb3,0x6e,0xa0,0x2f, + 0x7e,0x83,0xb0,0x30,0x93,0x50,0xa0,0x31,0x67,0xa0,0x30,0x32,0x73,0x32,0xa0,0x33, + 0x47,0x82,0x30,0x34,0x53,0x14,0xa0,0x35,0x27,0x64,0x30,0x36,0x32,0xf6,0xa0,0x37, + 0x7,0x46,0x30,0x38,0x1c,0x13,0x20,0x38,0xe7,0x28,0x30,0x39,0xfb,0xf5,0x20,0x3a, + 0xc7,0xa,0x30,0x3b,0xdb,0xd7,0x20,0x3c,0xb0,0x26,0xb0,0x3d,0xbb,0xb9,0x20,0x3e, + 0x90,0x8,0xb0,0x3f,0x9b,0x9b,0x20,0x40,0x6f,0xea,0xb0,0x41,0x84,0xb7,0xa0,0x42, + 0x4f,0xcc,0xb0,0x43,0x64,0x99,0xa0,0x44,0x2f,0xae,0xb0,0x45,0x44,0x7b,0xa0,0x45, + 0xf3,0xe1,0x30,0x47,0x2d,0x98,0x20,0x47,0xd3,0xc3,0x30,0x49,0xd,0x7a,0x20,0x49, + 0xb3,0xa5,0x30,0x4a,0xed,0x5c,0x20,0x4b,0x9c,0xc1,0xb0,0x4c,0xd6,0x78,0xa0,0x4d, + 0x7c,0xa3,0xb0,0x4e,0xb6,0x5a,0xa0,0x4f,0x5c,0x85,0xb0,0x50,0x96,0x3c,0xa0,0x51, + 0x3c,0x67,0xb0,0x52,0x76,0x1e,0xa0,0x53,0x1c,0x49,0xb0,0x54,0x56,0x0,0xa0,0x54, + 0xfc,0x2b,0xb0,0x56,0x35,0xe2,0xa0,0x56,0xe5,0x48,0x30,0x58,0x1e,0xff,0x20,0x58, + 0xc5,0x2a,0x30,0x59,0xfe,0xe1,0x20,0x5a,0xa5,0xc,0x30,0x5b,0xde,0xc3,0x20,0x5c, + 0x84,0xee,0x30,0x5d,0xbe,0xa5,0x20,0x5e,0x64,0xd0,0x30,0x5f,0x9e,0x87,0x20,0x60, + 0x4d,0xec,0xb0,0x61,0x87,0xa3,0xa0,0x62,0x2d,0xce,0xb0,0x63,0x67,0x85,0xa0,0x64, + 0xd,0xb0,0xb0,0x65,0x47,0x67,0xa0,0x65,0xed,0x92,0xb0,0x67,0x27,0x49,0xa0,0x67, + 0xcd,0x74,0xb0,0x69,0x7,0x2b,0xa0,0x69,0xad,0x56,0xb0,0x6a,0xe7,0xd,0xa0,0x6b, + 0x96,0x73,0x30,0x6c,0xd0,0x2a,0x20,0x6d,0x76,0x55,0x30,0x6e,0xb0,0xc,0x20,0x6f, + 0x56,0x37,0x30,0x70,0x8f,0xee,0x20,0x71,0x36,0x19,0x30,0x72,0x6f,0xd0,0x20,0x73, + 0x15,0xfb,0x30,0x74,0x4f,0xb2,0x20,0x74,0xff,0x17,0xb0,0x76,0x38,0xce,0xa0,0x76, + 0xde,0xf9,0xb0,0x78,0x18,0xb0,0xa0,0x78,0xbe,0xdb,0xb0,0x79,0xf8,0x92,0xa0,0x7a, + 0x9e,0xbd,0xb0,0x7b,0xd8,0x74,0xa0,0x7c,0x7e,0x9f,0xb0,0x7d,0xb8,0x56,0xa0,0x7e, + 0x5e,0x81,0xb0,0x7f,0x98,0x38,0xa0,0x1,0x2,0x3,0x1,0x4,0x1,0x4,0x1,0x4, + 0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4, + 0x1,0x5,0x1,0x4,0x1,0x4,0x1,0x4,0x6,0x8,0x7,0x8,0x7,0x8,0x7,0x8, + 0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8, + 0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8, + 0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8, + 0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8, + 0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8, + 0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8, + 0x7,0x8,0x7,0x8,0x7,0x8,0xff,0xff,0x81,0xfb,0x0,0x0,0xff,0xff,0x8f,0x80, + 0x0,0x4,0xff,0xff,0x9d,0x90,0x1,0x8,0xff,0xff,0x9d,0x90,0x1,0xc,0xff,0xff, + 0x9d,0x90,0x1,0x10,0xff,0xff,0x8f,0x80,0x1,0x14,0xff,0xff,0x81,0x70,0x0,0x18, + 0xff,0xff,0x8f,0x80,0x1,0x1c,0xff,0xff,0x81,0x70,0x0,0x21,0x4c,0x4d,0x54,0x0, + 0x50,0x53,0x54,0x0,0x50,0x57,0x54,0x0,0x50,0x50,0x54,0x0,0x50,0x44,0x54,0x0, + 0x59,0x44,0x54,0x0,0x59,0x53,0x54,0x0,0x41,0x4b,0x44,0x54,0x0,0x41,0x4b,0x53, + 0x54,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0, + 0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0xa, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x26, + 0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x3f,0xc2,0xfd,0xd1, + 0xff,0xff,0xff,0xff,0x7d,0x87,0x32,0xc5,0xff,0xff,0xff,0xff,0xcb,0x89,0x1a,0xa0, + 0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x61,0x26,0x10, + 0xff,0xff,0xff,0xff,0xfe,0xb8,0x47,0x20,0xff,0xff,0xff,0xff,0xff,0xa8,0x2a,0x10, + 0x0,0x0,0x0,0x0,0x0,0x98,0x29,0x20,0x0,0x0,0x0,0x0,0x1,0x88,0xc,0x10, + 0x0,0x0,0x0,0x0,0x2,0x78,0xb,0x20,0x0,0x0,0x0,0x0,0x3,0x71,0x28,0x90, + 0x0,0x0,0x0,0x0,0x4,0x61,0x27,0xa0,0x0,0x0,0x0,0x0,0x5,0x51,0xa,0x90, + 0x0,0x0,0x0,0x0,0x6,0x41,0x9,0xa0,0x0,0x0,0x0,0x0,0x7,0x30,0xec,0x90, + 0x0,0x0,0x0,0x0,0x7,0x8d,0x43,0xa0,0x0,0x0,0x0,0x0,0x9,0x10,0xce,0x90, + 0x0,0x0,0x0,0x0,0x9,0xad,0xbf,0x20,0x0,0x0,0x0,0x0,0xa,0xf0,0xb0,0x90, + 0x0,0x0,0x0,0x0,0xb,0xe0,0xaf,0xa0,0x0,0x0,0x0,0x0,0xc,0xd9,0xcd,0x10, + 0x0,0x0,0x0,0x0,0xd,0xc0,0x91,0xa0,0x0,0x0,0x0,0x0,0xe,0xb9,0xaf,0x10, + 0x0,0x0,0x0,0x0,0xf,0xa9,0xae,0x20,0x0,0x0,0x0,0x0,0x10,0x99,0x91,0x10, + 0x0,0x0,0x0,0x0,0x11,0x89,0x90,0x20,0x0,0x0,0x0,0x0,0x12,0x79,0x73,0x10, + 0x0,0x0,0x0,0x0,0x13,0x69,0x72,0x20,0x0,0x0,0x0,0x0,0x14,0x59,0x63,0x20, + 0x0,0x0,0x0,0x0,0x15,0x49,0x54,0x20,0x0,0x0,0x0,0x0,0x16,0x39,0x37,0x10, + 0x0,0x0,0x0,0x0,0x17,0x29,0x36,0x20,0x0,0x0,0x0,0x0,0x18,0x22,0x53,0x90, + 0x0,0x0,0x0,0x0,0x19,0x9,0x18,0x20,0x0,0x0,0x0,0x0,0x1a,0x2,0x35,0x90, + 0x0,0x0,0x0,0x0,0x1a,0x2b,0x14,0x10,0x0,0x0,0x0,0x0,0x1a,0xf2,0x42,0xb0, + 0x0,0x0,0x0,0x0,0x1b,0xe2,0x25,0xa0,0x0,0x0,0x0,0x0,0x1c,0xd2,0x24,0xb0, + 0x0,0x0,0x0,0x0,0x1d,0xc2,0x7,0xa0,0x0,0x0,0x0,0x0,0x1e,0xb2,0x6,0xb0, + 0x0,0x0,0x0,0x0,0x1f,0xa1,0xe9,0xa0,0x0,0x0,0x0,0x0,0x20,0x76,0x39,0x30, + 0x0,0x0,0x0,0x0,0x21,0x81,0xcb,0xa0,0x0,0x0,0x0,0x0,0x22,0x56,0x1b,0x30, + 0x0,0x0,0x0,0x0,0x23,0x6a,0xe8,0x20,0x0,0x0,0x0,0x0,0x24,0x35,0xfd,0x30, + 0x0,0x0,0x0,0x0,0x25,0x4a,0xca,0x20,0x0,0x0,0x0,0x0,0x26,0x15,0xdf,0x30, + 0x0,0x0,0x0,0x0,0x27,0x2a,0xac,0x20,0x0,0x0,0x0,0x0,0x27,0xfe,0xfb,0xb0, + 0x0,0x0,0x0,0x0,0x29,0xa,0x8e,0x20,0x0,0x0,0x0,0x0,0x29,0xde,0xdd,0xb0, + 0x0,0x0,0x0,0x0,0x2a,0xea,0x70,0x20,0x0,0x0,0x0,0x0,0x2b,0xbe,0xbf,0xb0, + 0x0,0x0,0x0,0x0,0x2c,0xd3,0x8c,0xa0,0x0,0x0,0x0,0x0,0x2d,0x9e,0xa1,0xb0, + 0x0,0x0,0x0,0x0,0x2e,0xb3,0x6e,0xa0,0x0,0x0,0x0,0x0,0x2f,0x7e,0x83,0xb0, + 0x0,0x0,0x0,0x0,0x30,0x93,0x50,0xa0,0x0,0x0,0x0,0x0,0x31,0x67,0xa0,0x30, + 0x0,0x0,0x0,0x0,0x32,0x73,0x32,0xa0,0x0,0x0,0x0,0x0,0x33,0x47,0x82,0x30, + 0x0,0x0,0x0,0x0,0x34,0x53,0x14,0xa0,0x0,0x0,0x0,0x0,0x35,0x27,0x64,0x30, + 0x0,0x0,0x0,0x0,0x36,0x32,0xf6,0xa0,0x0,0x0,0x0,0x0,0x37,0x7,0x46,0x30, + 0x0,0x0,0x0,0x0,0x38,0x1c,0x13,0x20,0x0,0x0,0x0,0x0,0x38,0xe7,0x28,0x30, + 0x0,0x0,0x0,0x0,0x39,0xfb,0xf5,0x20,0x0,0x0,0x0,0x0,0x3a,0xc7,0xa,0x30, + 0x0,0x0,0x0,0x0,0x3b,0xdb,0xd7,0x20,0x0,0x0,0x0,0x0,0x3c,0xb0,0x26,0xb0, + 0x0,0x0,0x0,0x0,0x3d,0xbb,0xb9,0x20,0x0,0x0,0x0,0x0,0x3e,0x90,0x8,0xb0, + 0x0,0x0,0x0,0x0,0x3f,0x9b,0x9b,0x20,0x0,0x0,0x0,0x0,0x40,0x6f,0xea,0xb0, + 0x0,0x0,0x0,0x0,0x41,0x84,0xb7,0xa0,0x0,0x0,0x0,0x0,0x42,0x4f,0xcc,0xb0, + 0x0,0x0,0x0,0x0,0x43,0x64,0x99,0xa0,0x0,0x0,0x0,0x0,0x44,0x2f,0xae,0xb0, + 0x0,0x0,0x0,0x0,0x45,0x44,0x7b,0xa0,0x0,0x0,0x0,0x0,0x45,0xf3,0xe1,0x30, + 0x0,0x0,0x0,0x0,0x47,0x2d,0x98,0x20,0x0,0x0,0x0,0x0,0x47,0xd3,0xc3,0x30, + 0x0,0x0,0x0,0x0,0x49,0xd,0x7a,0x20,0x0,0x0,0x0,0x0,0x49,0xb3,0xa5,0x30, + 0x0,0x0,0x0,0x0,0x4a,0xed,0x5c,0x20,0x0,0x0,0x0,0x0,0x4b,0x9c,0xc1,0xb0, + 0x0,0x0,0x0,0x0,0x4c,0xd6,0x78,0xa0,0x0,0x0,0x0,0x0,0x4d,0x7c,0xa3,0xb0, + 0x0,0x0,0x0,0x0,0x4e,0xb6,0x5a,0xa0,0x0,0x0,0x0,0x0,0x4f,0x5c,0x85,0xb0, + 0x0,0x0,0x0,0x0,0x50,0x96,0x3c,0xa0,0x0,0x0,0x0,0x0,0x51,0x3c,0x67,0xb0, + 0x0,0x0,0x0,0x0,0x52,0x76,0x1e,0xa0,0x0,0x0,0x0,0x0,0x53,0x1c,0x49,0xb0, + 0x0,0x0,0x0,0x0,0x54,0x56,0x0,0xa0,0x0,0x0,0x0,0x0,0x54,0xfc,0x2b,0xb0, + 0x0,0x0,0x0,0x0,0x56,0x35,0xe2,0xa0,0x0,0x0,0x0,0x0,0x56,0xe5,0x48,0x30, + 0x0,0x0,0x0,0x0,0x58,0x1e,0xff,0x20,0x0,0x0,0x0,0x0,0x58,0xc5,0x2a,0x30, + 0x0,0x0,0x0,0x0,0x59,0xfe,0xe1,0x20,0x0,0x0,0x0,0x0,0x5a,0xa5,0xc,0x30, + 0x0,0x0,0x0,0x0,0x5b,0xde,0xc3,0x20,0x0,0x0,0x0,0x0,0x5c,0x84,0xee,0x30, + 0x0,0x0,0x0,0x0,0x5d,0xbe,0xa5,0x20,0x0,0x0,0x0,0x0,0x5e,0x64,0xd0,0x30, + 0x0,0x0,0x0,0x0,0x5f,0x9e,0x87,0x20,0x0,0x0,0x0,0x0,0x60,0x4d,0xec,0xb0, + 0x0,0x0,0x0,0x0,0x61,0x87,0xa3,0xa0,0x0,0x0,0x0,0x0,0x62,0x2d,0xce,0xb0, + 0x0,0x0,0x0,0x0,0x63,0x67,0x85,0xa0,0x0,0x0,0x0,0x0,0x64,0xd,0xb0,0xb0, + 0x0,0x0,0x0,0x0,0x65,0x47,0x67,0xa0,0x0,0x0,0x0,0x0,0x65,0xed,0x92,0xb0, + 0x0,0x0,0x0,0x0,0x67,0x27,0x49,0xa0,0x0,0x0,0x0,0x0,0x67,0xcd,0x74,0xb0, + 0x0,0x0,0x0,0x0,0x69,0x7,0x2b,0xa0,0x0,0x0,0x0,0x0,0x69,0xad,0x56,0xb0, + 0x0,0x0,0x0,0x0,0x6a,0xe7,0xd,0xa0,0x0,0x0,0x0,0x0,0x6b,0x96,0x73,0x30, + 0x0,0x0,0x0,0x0,0x6c,0xd0,0x2a,0x20,0x0,0x0,0x0,0x0,0x6d,0x76,0x55,0x30, + 0x0,0x0,0x0,0x0,0x6e,0xb0,0xc,0x20,0x0,0x0,0x0,0x0,0x6f,0x56,0x37,0x30, + 0x0,0x0,0x0,0x0,0x70,0x8f,0xee,0x20,0x0,0x0,0x0,0x0,0x71,0x36,0x19,0x30, + 0x0,0x0,0x0,0x0,0x72,0x6f,0xd0,0x20,0x0,0x0,0x0,0x0,0x73,0x15,0xfb,0x30, + 0x0,0x0,0x0,0x0,0x74,0x4f,0xb2,0x20,0x0,0x0,0x0,0x0,0x74,0xff,0x17,0xb0, + 0x0,0x0,0x0,0x0,0x76,0x38,0xce,0xa0,0x0,0x0,0x0,0x0,0x76,0xde,0xf9,0xb0, + 0x0,0x0,0x0,0x0,0x78,0x18,0xb0,0xa0,0x0,0x0,0x0,0x0,0x78,0xbe,0xdb,0xb0, + 0x0,0x0,0x0,0x0,0x79,0xf8,0x92,0xa0,0x0,0x0,0x0,0x0,0x7a,0x9e,0xbd,0xb0, + 0x0,0x0,0x0,0x0,0x7b,0xd8,0x74,0xa0,0x0,0x0,0x0,0x0,0x7c,0x7e,0x9f,0xb0, + 0x0,0x0,0x0,0x0,0x7d,0xb8,0x56,0xa0,0x0,0x0,0x0,0x0,0x7e,0x5e,0x81,0xb0, + 0x0,0x0,0x0,0x0,0x7f,0x98,0x38,0xa0,0x0,0x1,0x2,0x3,0x4,0x2,0x5,0x2, + 0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2, + 0x5,0x2,0x5,0x2,0x6,0x2,0x5,0x2,0x5,0x2,0x5,0x7,0x9,0x8,0x9,0x8, + 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, + 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, + 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, + 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, + 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, + 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, + 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x0,0x0,0xd3,0x7b,0x0,0x0,0xff, + 0xff,0x81,0xfb,0x0,0x0,0xff,0xff,0x8f,0x80,0x0,0x4,0xff,0xff,0x9d,0x90,0x1, + 0x8,0xff,0xff,0x9d,0x90,0x1,0xc,0xff,0xff,0x9d,0x90,0x1,0x10,0xff,0xff,0x8f, + 0x80,0x1,0x14,0xff,0xff,0x81,0x70,0x0,0x18,0xff,0xff,0x8f,0x80,0x1,0x1c,0xff, + 0xff,0x81,0x70,0x0,0x21,0x4c,0x4d,0x54,0x0,0x50,0x53,0x54,0x0,0x50,0x57,0x54, + 0x0,0x50,0x50,0x54,0x0,0x50,0x44,0x54,0x0,0x59,0x44,0x54,0x0,0x59,0x53,0x54, + 0x0,0x41,0x4b,0x44,0x54,0x0,0x41,0x4b,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x1, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0xa, + 0x41,0x4b,0x53,0x54,0x39,0x41,0x4b,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30, + 0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Caracas + 0x0,0x0,0x1,0x21, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x3d,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x16,0x80,0x0,0x0,0x0,0xa2, - 0x92,0x8f,0x30,0xb6,0x7b,0x52,0x40,0xb7,0x1a,0xc9,0xb0,0xb8,0x1e,0x8f,0x40,0xb8, - 0xd4,0x70,0x30,0xba,0x17,0x7d,0xc0,0xba,0xb5,0xa3,0xb0,0xbb,0xf8,0xb1,0x40,0xbc, - 0x96,0xd7,0x30,0xbd,0xd9,0xe4,0xc0,0xbe,0x78,0xa,0xb0,0xbf,0xbb,0x18,0x40,0xc0, - 0x5a,0x8f,0xb0,0xc1,0x9d,0x9d,0x40,0xc2,0x3b,0xc3,0x30,0xc3,0x7e,0xd0,0xc0,0xc4, - 0x1c,0xf6,0xb0,0xc5,0x60,0x4,0x40,0xc5,0xfe,0x2a,0x30,0xc7,0x41,0x37,0xc0,0xc7, - 0xe0,0xaf,0x30,0xc8,0x81,0x94,0x40,0xca,0x4d,0xa1,0xb0,0xca,0xee,0x86,0xc0,0xce, - 0x4d,0xff,0x30,0xce,0xb0,0xed,0xc0,0xd3,0x29,0x35,0xb0,0xd4,0x43,0x64,0xc0,0xf4, - 0x3d,0x8,0x30,0xf4,0x9f,0xf6,0xc0,0xf5,0x5,0x6c,0x30,0xf6,0x32,0x10,0x40,0xf6, - 0xe6,0x9f,0xb0,0xf8,0x13,0x43,0xc0,0xf8,0xc7,0xd3,0x30,0xf9,0xf4,0x77,0x40,0xfa, - 0xd3,0x36,0xb0,0xfb,0xc3,0x35,0xc0,0xfc,0xbc,0x53,0x30,0xfd,0xac,0x52,0x40,0xfe, - 0x9c,0x35,0x30,0xff,0x8c,0x34,0x40,0x7,0xa3,0x4a,0xb0,0x8,0x24,0x6f,0xa0,0x23, - 0x94,0xb5,0xb0,0x24,0x10,0x94,0xa0,0x25,0x37,0xf2,0xb0,0x25,0xf0,0x76,0xa0,0x27, - 0x21,0xf,0x30,0x27,0xd0,0x58,0xa0,0x29,0x0,0xff,0x40,0x29,0xb0,0x3a,0xa0,0x2a, - 0xe0,0xd3,0x30,0x2b,0x99,0x57,0x20,0x37,0xf6,0xc6,0xb0,0x38,0xbf,0x2a,0xb0,0x47, - 0x77,0x9,0xb0,0x47,0xdc,0x7f,0x20,0x48,0xfa,0xa2,0xb0,0x49,0xbc,0x61,0x20,0x1, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x6,0x4,0x5,0x4,0x5,0x3,0x5,0x4,0x5,0x4,0x5,0xff,0xff,0xc3,0xd0, - 0x0,0x0,0xff,0xff,0xc3,0xd0,0x0,0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0xff,0xff, - 0xd5,0xd0,0x1,0xc,0xff,0xff,0xe3,0xe0,0x1,0xc,0xff,0xff,0xd5,0xd0,0x0,0x8, - 0xff,0xff,0xc7,0xc0,0x0,0x11,0xff,0xff,0xd5,0xd0,0x0,0x8,0x4c,0x4d,0x54,0x0, - 0x43,0x4d,0x54,0x0,0x41,0x52,0x54,0x0,0x41,0x52,0x53,0x54,0x0,0x57,0x41,0x52, - 0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x3e,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x16,0xf8,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x72,0x9c,0xad,0xb0,0xff,0xff, - 0xff,0xff,0xa2,0x92,0x8f,0x30,0xff,0xff,0xff,0xff,0xb6,0x7b,0x52,0x40,0xff,0xff, - 0xff,0xff,0xb7,0x1a,0xc9,0xb0,0xff,0xff,0xff,0xff,0xb8,0x1e,0x8f,0x40,0xff,0xff, - 0xff,0xff,0xb8,0xd4,0x70,0x30,0xff,0xff,0xff,0xff,0xba,0x17,0x7d,0xc0,0xff,0xff, - 0xff,0xff,0xba,0xb5,0xa3,0xb0,0xff,0xff,0xff,0xff,0xbb,0xf8,0xb1,0x40,0xff,0xff, - 0xff,0xff,0xbc,0x96,0xd7,0x30,0xff,0xff,0xff,0xff,0xbd,0xd9,0xe4,0xc0,0xff,0xff, - 0xff,0xff,0xbe,0x78,0xa,0xb0,0xff,0xff,0xff,0xff,0xbf,0xbb,0x18,0x40,0xff,0xff, - 0xff,0xff,0xc0,0x5a,0x8f,0xb0,0xff,0xff,0xff,0xff,0xc1,0x9d,0x9d,0x40,0xff,0xff, - 0xff,0xff,0xc2,0x3b,0xc3,0x30,0xff,0xff,0xff,0xff,0xc3,0x7e,0xd0,0xc0,0xff,0xff, - 0xff,0xff,0xc4,0x1c,0xf6,0xb0,0xff,0xff,0xff,0xff,0xc5,0x60,0x4,0x40,0xff,0xff, - 0xff,0xff,0xc5,0xfe,0x2a,0x30,0xff,0xff,0xff,0xff,0xc7,0x41,0x37,0xc0,0xff,0xff, - 0xff,0xff,0xc7,0xe0,0xaf,0x30,0xff,0xff,0xff,0xff,0xc8,0x81,0x94,0x40,0xff,0xff, - 0xff,0xff,0xca,0x4d,0xa1,0xb0,0xff,0xff,0xff,0xff,0xca,0xee,0x86,0xc0,0xff,0xff, - 0xff,0xff,0xce,0x4d,0xff,0x30,0xff,0xff,0xff,0xff,0xce,0xb0,0xed,0xc0,0xff,0xff, - 0xff,0xff,0xd3,0x29,0x35,0xb0,0xff,0xff,0xff,0xff,0xd4,0x43,0x64,0xc0,0xff,0xff, - 0xff,0xff,0xf4,0x3d,0x8,0x30,0xff,0xff,0xff,0xff,0xf4,0x9f,0xf6,0xc0,0xff,0xff, - 0xff,0xff,0xf5,0x5,0x6c,0x30,0xff,0xff,0xff,0xff,0xf6,0x32,0x10,0x40,0xff,0xff, - 0xff,0xff,0xf6,0xe6,0x9f,0xb0,0xff,0xff,0xff,0xff,0xf8,0x13,0x43,0xc0,0xff,0xff, - 0xff,0xff,0xf8,0xc7,0xd3,0x30,0xff,0xff,0xff,0xff,0xf9,0xf4,0x77,0x40,0xff,0xff, - 0xff,0xff,0xfa,0xd3,0x36,0xb0,0xff,0xff,0xff,0xff,0xfb,0xc3,0x35,0xc0,0xff,0xff, - 0xff,0xff,0xfc,0xbc,0x53,0x30,0xff,0xff,0xff,0xff,0xfd,0xac,0x52,0x40,0xff,0xff, - 0xff,0xff,0xfe,0x9c,0x35,0x30,0xff,0xff,0xff,0xff,0xff,0x8c,0x34,0x40,0x0,0x0, - 0x0,0x0,0x7,0xa3,0x4a,0xb0,0x0,0x0,0x0,0x0,0x8,0x24,0x6f,0xa0,0x0,0x0, - 0x0,0x0,0x23,0x94,0xb5,0xb0,0x0,0x0,0x0,0x0,0x24,0x10,0x94,0xa0,0x0,0x0, - 0x0,0x0,0x25,0x37,0xf2,0xb0,0x0,0x0,0x0,0x0,0x25,0xf0,0x76,0xa0,0x0,0x0, - 0x0,0x0,0x27,0x21,0xf,0x30,0x0,0x0,0x0,0x0,0x27,0xd0,0x58,0xa0,0x0,0x0, - 0x0,0x0,0x29,0x0,0xff,0x40,0x0,0x0,0x0,0x0,0x29,0xb0,0x3a,0xa0,0x0,0x0, - 0x0,0x0,0x2a,0xe0,0xd3,0x30,0x0,0x0,0x0,0x0,0x2b,0x99,0x57,0x20,0x0,0x0, - 0x0,0x0,0x37,0xf6,0xc6,0xb0,0x0,0x0,0x0,0x0,0x38,0xbf,0x2a,0xb0,0x0,0x0, - 0x0,0x0,0x47,0x77,0x9,0xb0,0x0,0x0,0x0,0x0,0x47,0xdc,0x7f,0x20,0x0,0x0, - 0x0,0x0,0x48,0xfa,0xa2,0xb0,0x0,0x0,0x0,0x0,0x49,0xbc,0x61,0x20,0x0,0x1, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x6,0x4,0x5,0x4,0x5,0x3,0x5,0x4,0x5,0x4,0x5,0xff,0xff,0xc3,0xd0, - 0x0,0x0,0xff,0xff,0xc3,0xd0,0x0,0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0xff,0xff, - 0xd5,0xd0,0x1,0xc,0xff,0xff,0xe3,0xe0,0x1,0xc,0xff,0xff,0xd5,0xd0,0x0,0x8, - 0xff,0xff,0xc7,0xc0,0x0,0x11,0xff,0xff,0xd5,0xd0,0x0,0x8,0x4c,0x4d,0x54,0x0, - 0x43,0x4d,0x54,0x0,0x41,0x52,0x54,0x0,0x41,0x52,0x53,0x54,0x0,0x57,0x41,0x52, - 0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xa,0x41,0x52,0x54,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Campo_Grande - 0x0,0x0,0x7,0xdf, + 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x12,0x80,0x0,0x0,0x0,0x93, + 0x1e,0x2c,0x3c,0xf6,0x98,0xec,0x48,0x47,0x5b,0x92,0x70,0x57,0x25,0xa9,0x70,0x7f, + 0xff,0xff,0xff,0x1,0x2,0x3,0x2,0x3,0x3,0xff,0xff,0xc1,0x40,0x0,0x0,0xff, + 0xff,0xc1,0x44,0x0,0x4,0xff,0xff,0xc0,0xb8,0x0,0x8,0xff,0xff,0xc7,0xc0,0x0, + 0xe,0x4c,0x4d,0x54,0x0,0x43,0x4d,0x54,0x0,0x2d,0x30,0x34,0x33,0x30,0x0,0x2d, + 0x30,0x34,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0, + 0x0,0x0,0x4,0x0,0x0,0x0,0x12,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff, + 0xff,0xff,0xff,0x69,0x87,0x1a,0x40,0xff,0xff,0xff,0xff,0x93,0x1e,0x2c,0x3c,0xff, + 0xff,0xff,0xff,0xf6,0x98,0xec,0x48,0x0,0x0,0x0,0x0,0x47,0x5b,0x92,0x70,0x0, + 0x0,0x0,0x0,0x57,0x25,0xa9,0x70,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0, + 0x1,0x2,0x3,0x2,0x3,0x3,0xff,0xff,0xc1,0x40,0x0,0x0,0xff,0xff,0xc1,0x44, + 0x0,0x4,0xff,0xff,0xc0,0xb8,0x0,0x8,0xff,0xff,0xc7,0xc0,0x0,0xe,0x4c,0x4d, + 0x54,0x0,0x43,0x4d,0x54,0x0,0x2d,0x30,0x34,0x33,0x30,0x0,0x2d,0x30,0x34,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2d,0x30,0x34,0x3e,0x34,0xa, + + // /home/konrad/src/smoke/tzone/zoneinfo/America/Menominee + 0x0,0x0,0x8,0xeb, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x81,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0x96, - 0xaa,0x7a,0x34,0xb8,0xf,0x57,0xf0,0xb8,0xfd,0x4e,0xb0,0xb9,0xf1,0x42,0x40,0xba, - 0xde,0x82,0x30,0xda,0x38,0xbc,0x40,0xda,0xec,0x8,0x40,0xdc,0x19,0xef,0xc0,0xdc, - 0xb9,0x67,0x30,0xdd,0xfb,0x23,0x40,0xde,0x9b,0xec,0x30,0xdf,0xdd,0xa8,0x40,0xe0, - 0x54,0x41,0x30,0xf4,0x98,0xd,0xc0,0xf5,0x5,0x6c,0x30,0xf6,0xc0,0x72,0x40,0xf7, - 0xe,0x2c,0xb0,0xf8,0x51,0x3a,0x40,0xf8,0xc7,0xd3,0x30,0xfa,0xa,0xe0,0xc0,0xfa, - 0xa9,0x6,0xb0,0xfb,0xec,0x14,0x40,0xfc,0x8b,0x8b,0xb0,0x1d,0xc9,0x9c,0x40,0x1e, - 0x78,0xe5,0xb0,0x1f,0xa0,0x43,0xc0,0x20,0x33,0xdd,0xb0,0x21,0x81,0x77,0x40,0x22, - 0xb,0xd6,0xb0,0x23,0x58,0x1e,0xc0,0x23,0xe2,0x7e,0x30,0x25,0x38,0x0,0xc0,0x25, - 0xd4,0xd5,0x30,0x27,0x21,0x1d,0x40,0x27,0xbd,0xf1,0xb0,0x29,0x0,0xff,0x40,0x29, - 0x94,0x99,0x30,0x2a,0xea,0x1b,0xc0,0x2b,0x6b,0x40,0xb0,0x2c,0xc0,0xc3,0x40,0x2d, - 0x66,0xd2,0x30,0x2e,0xa0,0xa5,0x40,0x2f,0x46,0xb4,0x30,0x30,0x80,0x87,0x40,0x31, - 0x1d,0x5b,0xb0,0x32,0x57,0x2e,0xc0,0x33,0x6,0x78,0x30,0x34,0x38,0x62,0x40,0x34, - 0xf8,0xcf,0x30,0x36,0x20,0x2d,0x40,0x36,0xcf,0x76,0xb0,0x37,0xf6,0xd4,0xc0,0x38, - 0xb8,0x93,0x30,0x39,0xdf,0xf1,0x40,0x3a,0x8f,0x3a,0xb0,0x3b,0xc9,0xd,0xc0,0x3c, - 0x6f,0x1c,0xb0,0x3d,0xc4,0x9f,0x40,0x3e,0x4e,0xfe,0xb0,0x3f,0x92,0xc,0x40,0x40, - 0x2e,0xe0,0xb0,0x41,0x87,0x6,0x40,0x42,0x17,0xfd,0x30,0x43,0x51,0xd0,0x40,0x43, - 0xf7,0xdf,0x30,0x45,0x4d,0x61,0xc0,0x45,0xe0,0xfb,0xb0,0x47,0x11,0x94,0x40,0x47, - 0xb7,0xa3,0x30,0x48,0xfa,0xb0,0xc0,0x49,0x97,0x85,0x30,0x4a,0xda,0x92,0xc0,0x4b, - 0x80,0xa1,0xb0,0x4c,0xba,0x74,0xc0,0x4d,0x60,0x83,0xb0,0x4e,0x9a,0x56,0xc0,0x4f, - 0x49,0xa0,0x30,0x50,0x83,0x73,0x40,0x51,0x20,0x47,0xb0,0x52,0x63,0x55,0x40,0x53, - 0x0,0x29,0xb0,0x54,0x43,0x37,0x40,0x54,0xe9,0x46,0x30,0x56,0x23,0x19,0x40,0x56, - 0xc9,0x28,0x30,0x58,0x2,0xfb,0x40,0x58,0xa9,0xa,0x30,0x59,0xe2,0xdd,0x40,0x5a, - 0x88,0xec,0x30,0x5b,0xcb,0xf9,0xc0,0x5c,0x68,0xce,0x30,0x5d,0xab,0xdb,0xc0,0x5e, - 0x48,0xb0,0x30,0x5f,0x8b,0xbd,0xc0,0x60,0x31,0xcc,0xb0,0x61,0x6b,0x9f,0xc0,0x62, - 0x11,0xae,0xb0,0x63,0x4b,0x81,0xc0,0x63,0xfa,0xcb,0x30,0x65,0x2b,0x63,0xc0,0x65, - 0xd1,0x72,0xb0,0x67,0x14,0x80,0x40,0x67,0xb1,0x54,0xb0,0x68,0xf4,0x62,0x40,0x69, - 0x9a,0x71,0x30,0x6a,0xd4,0x44,0x40,0x6b,0x7a,0x53,0x30,0x6c,0xb4,0x26,0x40,0x6d, - 0x5a,0x35,0x30,0x6e,0x94,0x8,0x40,0x6f,0x3a,0x17,0x30,0x70,0x7d,0x24,0xc0,0x71, - 0x19,0xf9,0x30,0x72,0x5d,0x6,0xc0,0x72,0xf9,0xdb,0x30,0x74,0x3c,0xe8,0xc0,0x74, - 0xd9,0xbd,0x30,0x76,0x1c,0xca,0xc0,0x76,0xc2,0xd9,0xb0,0x77,0xfc,0xac,0xc0,0x78, - 0xab,0xf6,0x30,0x79,0xdc,0x8e,0xc0,0x7a,0x82,0x9d,0xb0,0x7b,0xc5,0xab,0x40,0x7c, - 0x62,0x7f,0xb0,0x7d,0xa5,0x8d,0x40,0x7e,0x4b,0x9c,0x30,0x7f,0x85,0x6f,0x40,0x0, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0xff,0xff,0xcc,0xcc,0x0,0x0,0xff,0xff,0xd5,0xd0,0x1,0x4,0xff,0xff,0xc7,0xc0, - 0x0,0x9,0x4c,0x4d,0x54,0x0,0x41,0x4d,0x53,0x54,0x0,0x41,0x4d,0x54,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0, - 0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0x0,0x0,0x0,0x3,0x0,0x0,0x0, - 0xd,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x96,0xaa,0x7a, - 0x34,0xff,0xff,0xff,0xff,0xb8,0xf,0x57,0xf0,0xff,0xff,0xff,0xff,0xb8,0xfd,0x4e, - 0xb0,0xff,0xff,0xff,0xff,0xb9,0xf1,0x42,0x40,0xff,0xff,0xff,0xff,0xba,0xde,0x82, - 0x30,0xff,0xff,0xff,0xff,0xda,0x38,0xbc,0x40,0xff,0xff,0xff,0xff,0xda,0xec,0x8, - 0x40,0xff,0xff,0xff,0xff,0xdc,0x19,0xef,0xc0,0xff,0xff,0xff,0xff,0xdc,0xb9,0x67, - 0x30,0xff,0xff,0xff,0xff,0xdd,0xfb,0x23,0x40,0xff,0xff,0xff,0xff,0xde,0x9b,0xec, - 0x30,0xff,0xff,0xff,0xff,0xdf,0xdd,0xa8,0x40,0xff,0xff,0xff,0xff,0xe0,0x54,0x41, - 0x30,0xff,0xff,0xff,0xff,0xf4,0x98,0xd,0xc0,0xff,0xff,0xff,0xff,0xf5,0x5,0x6c, - 0x30,0xff,0xff,0xff,0xff,0xf6,0xc0,0x72,0x40,0xff,0xff,0xff,0xff,0xf7,0xe,0x2c, - 0xb0,0xff,0xff,0xff,0xff,0xf8,0x51,0x3a,0x40,0xff,0xff,0xff,0xff,0xf8,0xc7,0xd3, - 0x30,0xff,0xff,0xff,0xff,0xfa,0xa,0xe0,0xc0,0xff,0xff,0xff,0xff,0xfa,0xa9,0x6, - 0xb0,0xff,0xff,0xff,0xff,0xfb,0xec,0x14,0x40,0xff,0xff,0xff,0xff,0xfc,0x8b,0x8b, - 0xb0,0x0,0x0,0x0,0x0,0x1d,0xc9,0x9c,0x40,0x0,0x0,0x0,0x0,0x1e,0x78,0xe5, - 0xb0,0x0,0x0,0x0,0x0,0x1f,0xa0,0x43,0xc0,0x0,0x0,0x0,0x0,0x20,0x33,0xdd, - 0xb0,0x0,0x0,0x0,0x0,0x21,0x81,0x77,0x40,0x0,0x0,0x0,0x0,0x22,0xb,0xd6, - 0xb0,0x0,0x0,0x0,0x0,0x23,0x58,0x1e,0xc0,0x0,0x0,0x0,0x0,0x23,0xe2,0x7e, - 0x30,0x0,0x0,0x0,0x0,0x25,0x38,0x0,0xc0,0x0,0x0,0x0,0x0,0x25,0xd4,0xd5, - 0x30,0x0,0x0,0x0,0x0,0x27,0x21,0x1d,0x40,0x0,0x0,0x0,0x0,0x27,0xbd,0xf1, - 0xb0,0x0,0x0,0x0,0x0,0x29,0x0,0xff,0x40,0x0,0x0,0x0,0x0,0x29,0x94,0x99, - 0x30,0x0,0x0,0x0,0x0,0x2a,0xea,0x1b,0xc0,0x0,0x0,0x0,0x0,0x2b,0x6b,0x40, - 0xb0,0x0,0x0,0x0,0x0,0x2c,0xc0,0xc3,0x40,0x0,0x0,0x0,0x0,0x2d,0x66,0xd2, - 0x30,0x0,0x0,0x0,0x0,0x2e,0xa0,0xa5,0x40,0x0,0x0,0x0,0x0,0x2f,0x46,0xb4, - 0x30,0x0,0x0,0x0,0x0,0x30,0x80,0x87,0x40,0x0,0x0,0x0,0x0,0x31,0x1d,0x5b, - 0xb0,0x0,0x0,0x0,0x0,0x32,0x57,0x2e,0xc0,0x0,0x0,0x0,0x0,0x33,0x6,0x78, - 0x30,0x0,0x0,0x0,0x0,0x34,0x38,0x62,0x40,0x0,0x0,0x0,0x0,0x34,0xf8,0xcf, - 0x30,0x0,0x0,0x0,0x0,0x36,0x20,0x2d,0x40,0x0,0x0,0x0,0x0,0x36,0xcf,0x76, - 0xb0,0x0,0x0,0x0,0x0,0x37,0xf6,0xd4,0xc0,0x0,0x0,0x0,0x0,0x38,0xb8,0x93, - 0x30,0x0,0x0,0x0,0x0,0x39,0xdf,0xf1,0x40,0x0,0x0,0x0,0x0,0x3a,0x8f,0x3a, - 0xb0,0x0,0x0,0x0,0x0,0x3b,0xc9,0xd,0xc0,0x0,0x0,0x0,0x0,0x3c,0x6f,0x1c, - 0xb0,0x0,0x0,0x0,0x0,0x3d,0xc4,0x9f,0x40,0x0,0x0,0x0,0x0,0x3e,0x4e,0xfe, - 0xb0,0x0,0x0,0x0,0x0,0x3f,0x92,0xc,0x40,0x0,0x0,0x0,0x0,0x40,0x2e,0xe0, - 0xb0,0x0,0x0,0x0,0x0,0x41,0x87,0x6,0x40,0x0,0x0,0x0,0x0,0x42,0x17,0xfd, - 0x30,0x0,0x0,0x0,0x0,0x43,0x51,0xd0,0x40,0x0,0x0,0x0,0x0,0x43,0xf7,0xdf, - 0x30,0x0,0x0,0x0,0x0,0x45,0x4d,0x61,0xc0,0x0,0x0,0x0,0x0,0x45,0xe0,0xfb, - 0xb0,0x0,0x0,0x0,0x0,0x47,0x11,0x94,0x40,0x0,0x0,0x0,0x0,0x47,0xb7,0xa3, - 0x30,0x0,0x0,0x0,0x0,0x48,0xfa,0xb0,0xc0,0x0,0x0,0x0,0x0,0x49,0x97,0x85, - 0x30,0x0,0x0,0x0,0x0,0x4a,0xda,0x92,0xc0,0x0,0x0,0x0,0x0,0x4b,0x80,0xa1, - 0xb0,0x0,0x0,0x0,0x0,0x4c,0xba,0x74,0xc0,0x0,0x0,0x0,0x0,0x4d,0x60,0x83, - 0xb0,0x0,0x0,0x0,0x0,0x4e,0x9a,0x56,0xc0,0x0,0x0,0x0,0x0,0x4f,0x49,0xa0, - 0x30,0x0,0x0,0x0,0x0,0x50,0x83,0x73,0x40,0x0,0x0,0x0,0x0,0x51,0x20,0x47, - 0xb0,0x0,0x0,0x0,0x0,0x52,0x63,0x55,0x40,0x0,0x0,0x0,0x0,0x53,0x0,0x29, - 0xb0,0x0,0x0,0x0,0x0,0x54,0x43,0x37,0x40,0x0,0x0,0x0,0x0,0x54,0xe9,0x46, - 0x30,0x0,0x0,0x0,0x0,0x56,0x23,0x19,0x40,0x0,0x0,0x0,0x0,0x56,0xc9,0x28, - 0x30,0x0,0x0,0x0,0x0,0x58,0x2,0xfb,0x40,0x0,0x0,0x0,0x0,0x58,0xa9,0xa, - 0x30,0x0,0x0,0x0,0x0,0x59,0xe2,0xdd,0x40,0x0,0x0,0x0,0x0,0x5a,0x88,0xec, - 0x30,0x0,0x0,0x0,0x0,0x5b,0xcb,0xf9,0xc0,0x0,0x0,0x0,0x0,0x5c,0x68,0xce, - 0x30,0x0,0x0,0x0,0x0,0x5d,0xab,0xdb,0xc0,0x0,0x0,0x0,0x0,0x5e,0x48,0xb0, - 0x30,0x0,0x0,0x0,0x0,0x5f,0x8b,0xbd,0xc0,0x0,0x0,0x0,0x0,0x60,0x31,0xcc, - 0xb0,0x0,0x0,0x0,0x0,0x61,0x6b,0x9f,0xc0,0x0,0x0,0x0,0x0,0x62,0x11,0xae, - 0xb0,0x0,0x0,0x0,0x0,0x63,0x4b,0x81,0xc0,0x0,0x0,0x0,0x0,0x63,0xfa,0xcb, - 0x30,0x0,0x0,0x0,0x0,0x65,0x2b,0x63,0xc0,0x0,0x0,0x0,0x0,0x65,0xd1,0x72, - 0xb0,0x0,0x0,0x0,0x0,0x67,0x14,0x80,0x40,0x0,0x0,0x0,0x0,0x67,0xb1,0x54, - 0xb0,0x0,0x0,0x0,0x0,0x68,0xf4,0x62,0x40,0x0,0x0,0x0,0x0,0x69,0x9a,0x71, - 0x30,0x0,0x0,0x0,0x0,0x6a,0xd4,0x44,0x40,0x0,0x0,0x0,0x0,0x6b,0x7a,0x53, - 0x30,0x0,0x0,0x0,0x0,0x6c,0xb4,0x26,0x40,0x0,0x0,0x0,0x0,0x6d,0x5a,0x35, - 0x30,0x0,0x0,0x0,0x0,0x6e,0x94,0x8,0x40,0x0,0x0,0x0,0x0,0x6f,0x3a,0x17, - 0x30,0x0,0x0,0x0,0x0,0x70,0x7d,0x24,0xc0,0x0,0x0,0x0,0x0,0x71,0x19,0xf9, - 0x30,0x0,0x0,0x0,0x0,0x72,0x5d,0x6,0xc0,0x0,0x0,0x0,0x0,0x72,0xf9,0xdb, - 0x30,0x0,0x0,0x0,0x0,0x74,0x3c,0xe8,0xc0,0x0,0x0,0x0,0x0,0x74,0xd9,0xbd, - 0x30,0x0,0x0,0x0,0x0,0x76,0x1c,0xca,0xc0,0x0,0x0,0x0,0x0,0x76,0xc2,0xd9, - 0xb0,0x0,0x0,0x0,0x0,0x77,0xfc,0xac,0xc0,0x0,0x0,0x0,0x0,0x78,0xab,0xf6, - 0x30,0x0,0x0,0x0,0x0,0x79,0xdc,0x8e,0xc0,0x0,0x0,0x0,0x0,0x7a,0x82,0x9d, - 0xb0,0x0,0x0,0x0,0x0,0x7b,0xc5,0xab,0x40,0x0,0x0,0x0,0x0,0x7c,0x62,0x7f, - 0xb0,0x0,0x0,0x0,0x0,0x7d,0xa5,0x8d,0x40,0x0,0x0,0x0,0x0,0x7e,0x4b,0x9c, - 0x30,0x0,0x0,0x0,0x0,0x7f,0x85,0x6f,0x40,0x0,0x0,0x0,0x0,0x80,0x2b,0x7e, - 0x30,0x0,0x0,0x0,0x0,0x81,0x65,0x51,0x40,0x0,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0xff,0xff,0xcc,0xcc, - 0x0,0x0,0xff,0xff,0xd5,0xd0,0x1,0x4,0xff,0xff,0xc7,0xc0,0x0,0x9,0x4c,0x4d, - 0x54,0x0,0x41,0x4d,0x53,0x54,0x0,0x41,0x4d,0x54,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xa,0x41,0x4d,0x54,0x34,0x41,0x4d,0x53,0x54,0x2c,0x4d,0x31,0x30,0x2e,0x33, - 0x2e,0x30,0x2f,0x30,0x2c,0x4d,0x32,0x2e,0x33,0x2e,0x30,0x2f,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Chihuahua - 0x0,0x0,0x5,0xf2, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x8f,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x18,0x80,0x0,0x0,0x0,0x9e, + 0xa6,0x2c,0x80,0x9f,0xba,0xf9,0x70,0xa0,0x86,0xe,0x80,0xa1,0x9a,0xdb,0x70,0xcb, + 0x88,0xfe,0x80,0xd2,0x23,0xf4,0x70,0xd2,0x61,0x9,0xf0,0xd3,0x75,0xf3,0x0,0xd4, + 0x40,0xeb,0xf0,0xf9,0xf,0x4a,0x80,0xfa,0x8,0x67,0xf0,0xfe,0xb8,0x2b,0x0,0x6, + 0x40,0xdf,0x70,0x7,0x30,0xd0,0x70,0x7,0x8d,0x27,0x80,0x9,0x10,0xb2,0x70,0x9, + 0xad,0xa3,0x0,0xa,0xf0,0x94,0x70,0xb,0xe0,0x93,0x80,0xc,0xd9,0xb0,0xf0,0xd, + 0xc0,0x75,0x80,0xe,0xb9,0x92,0xf0,0xf,0xa9,0x92,0x0,0x10,0x99,0x74,0xf0,0x11, + 0x89,0x74,0x0,0x12,0x79,0x56,0xf0,0x13,0x69,0x56,0x0,0x14,0x59,0x38,0xf0,0x15, + 0x49,0x38,0x0,0x16,0x39,0x1a,0xf0,0x17,0x29,0x1a,0x0,0x18,0x22,0x37,0x70,0x19, + 0x8,0xfc,0x0,0x1a,0x2,0x19,0x70,0x1a,0xf2,0x18,0x80,0x1b,0xe1,0xfb,0x70,0x1c, + 0xd1,0xfa,0x80,0x1d,0xc1,0xdd,0x70,0x1e,0xb1,0xdc,0x80,0x1f,0xa1,0xbf,0x70,0x20, + 0x76,0xf,0x0,0x21,0x81,0xa1,0x70,0x22,0x55,0xf1,0x0,0x23,0x6a,0xbd,0xf0,0x24, + 0x35,0xd3,0x0,0x25,0x4a,0x9f,0xf0,0x26,0x15,0xb5,0x0,0x27,0x2a,0x81,0xf0,0x27, + 0xfe,0xd1,0x80,0x29,0xa,0x63,0xf0,0x29,0xde,0xb3,0x80,0x2a,0xea,0x45,0xf0,0x2b, + 0xbe,0x95,0x80,0x2c,0xd3,0x62,0x70,0x2d,0x9e,0x77,0x80,0x2e,0xb3,0x44,0x70,0x2f, + 0x7e,0x59,0x80,0x30,0x93,0x26,0x70,0x31,0x67,0x76,0x0,0x32,0x73,0x8,0x70,0x33, + 0x47,0x58,0x0,0x34,0x52,0xea,0x70,0x35,0x27,0x3a,0x0,0x36,0x32,0xcc,0x70,0x37, + 0x7,0x1c,0x0,0x38,0x1b,0xe8,0xf0,0x38,0xe6,0xfe,0x0,0x39,0xfb,0xca,0xf0,0x3a, + 0xc6,0xe0,0x0,0x3b,0xdb,0xac,0xf0,0x3c,0xaf,0xfc,0x80,0x3d,0xbb,0x8e,0xf0,0x3e, + 0x8f,0xde,0x80,0x3f,0x9b,0x70,0xf0,0x40,0x6f,0xc0,0x80,0x41,0x84,0x8d,0x70,0x42, + 0x4f,0xa2,0x80,0x43,0x64,0x6f,0x70,0x44,0x2f,0x84,0x80,0x45,0x44,0x51,0x70,0x45, + 0xf3,0xb7,0x0,0x47,0x2d,0x6d,0xf0,0x47,0xd3,0x99,0x0,0x49,0xd,0x4f,0xf0,0x49, + 0xb3,0x7b,0x0,0x4a,0xed,0x31,0xf0,0x4b,0x9c,0x97,0x80,0x4c,0xd6,0x4e,0x70,0x4d, + 0x7c,0x79,0x80,0x4e,0xb6,0x30,0x70,0x4f,0x5c,0x5b,0x80,0x50,0x96,0x12,0x70,0x51, + 0x3c,0x3d,0x80,0x52,0x75,0xf4,0x70,0x53,0x1c,0x1f,0x80,0x54,0x55,0xd6,0x70,0x54, + 0xfc,0x1,0x80,0x56,0x35,0xb8,0x70,0x56,0xe5,0x1e,0x0,0x58,0x1e,0xd4,0xf0,0x58, + 0xc5,0x0,0x0,0x59,0xfe,0xb6,0xf0,0x5a,0xa4,0xe2,0x0,0x5b,0xde,0x98,0xf0,0x5c, + 0x84,0xc4,0x0,0x5d,0xbe,0x7a,0xf0,0x5e,0x64,0xa6,0x0,0x5f,0x9e,0x5c,0xf0,0x60, + 0x4d,0xc2,0x80,0x61,0x87,0x79,0x70,0x62,0x2d,0xa4,0x80,0x63,0x67,0x5b,0x70,0x64, + 0xd,0x86,0x80,0x65,0x47,0x3d,0x70,0x65,0xed,0x68,0x80,0x67,0x27,0x1f,0x70,0x67, + 0xcd,0x4a,0x80,0x69,0x7,0x1,0x70,0x69,0xad,0x2c,0x80,0x6a,0xe6,0xe3,0x70,0x6b, + 0x96,0x49,0x0,0x6c,0xcf,0xff,0xf0,0x6d,0x76,0x2b,0x0,0x6e,0xaf,0xe1,0xf0,0x6f, + 0x56,0xd,0x0,0x70,0x8f,0xc3,0xf0,0x71,0x35,0xef,0x0,0x72,0x6f,0xa5,0xf0,0x73, + 0x15,0xd1,0x0,0x74,0x4f,0x87,0xf0,0x74,0xfe,0xed,0x80,0x76,0x38,0xa4,0x70,0x76, + 0xde,0xcf,0x80,0x78,0x18,0x86,0x70,0x78,0xbe,0xb1,0x80,0x79,0xf8,0x68,0x70,0x7a, + 0x9e,0x93,0x80,0x7b,0xd8,0x4a,0x70,0x7c,0x7e,0x75,0x80,0x7d,0xb8,0x2c,0x70,0x7e, + 0x5e,0x57,0x80,0x7f,0x98,0xe,0x70,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x2,0x1, + 0x2,0x1,0x2,0x5,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0xad,0xdd,0x0,0x0,0xff,0xff,0xb9,0xb0, + 0x1,0x4,0xff,0xff,0xab,0xa0,0x0,0x8,0xff,0xff,0xb9,0xb0,0x1,0xc,0xff,0xff, + 0xb9,0xb0,0x1,0x10,0xff,0xff,0xb9,0xb0,0x0,0x14,0xff,0xff,0xab,0xa0,0x0,0x8, + 0x4c,0x4d,0x54,0x0,0x43,0x44,0x54,0x0,0x43,0x53,0x54,0x0,0x43,0x57,0x54,0x0, + 0x43,0x50,0x54,0x0,0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0, + 0x0,0x0,0x0,0x1,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0, + 0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x90,0x0,0x0,0x0,0x7,0x0,0x0, + 0x0,0x18,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x61,0x77, + 0x49,0x63,0xff,0xff,0xff,0xff,0x9e,0xa6,0x2c,0x80,0xff,0xff,0xff,0xff,0x9f,0xba, + 0xf9,0x70,0xff,0xff,0xff,0xff,0xa0,0x86,0xe,0x80,0xff,0xff,0xff,0xff,0xa1,0x9a, + 0xdb,0x70,0xff,0xff,0xff,0xff,0xcb,0x88,0xfe,0x80,0xff,0xff,0xff,0xff,0xd2,0x23, + 0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x61,0x9,0xf0,0xff,0xff,0xff,0xff,0xd3,0x75, + 0xf3,0x0,0xff,0xff,0xff,0xff,0xd4,0x40,0xeb,0xf0,0xff,0xff,0xff,0xff,0xf9,0xf, + 0x4a,0x80,0xff,0xff,0xff,0xff,0xfa,0x8,0x67,0xf0,0xff,0xff,0xff,0xff,0xfe,0xb8, + 0x2b,0x0,0x0,0x0,0x0,0x0,0x6,0x40,0xdf,0x70,0x0,0x0,0x0,0x0,0x7,0x30, + 0xd0,0x70,0x0,0x0,0x0,0x0,0x7,0x8d,0x27,0x80,0x0,0x0,0x0,0x0,0x9,0x10, + 0xb2,0x70,0x0,0x0,0x0,0x0,0x9,0xad,0xa3,0x0,0x0,0x0,0x0,0x0,0xa,0xf0, + 0x94,0x70,0x0,0x0,0x0,0x0,0xb,0xe0,0x93,0x80,0x0,0x0,0x0,0x0,0xc,0xd9, + 0xb0,0xf0,0x0,0x0,0x0,0x0,0xd,0xc0,0x75,0x80,0x0,0x0,0x0,0x0,0xe,0xb9, + 0x92,0xf0,0x0,0x0,0x0,0x0,0xf,0xa9,0x92,0x0,0x0,0x0,0x0,0x0,0x10,0x99, + 0x74,0xf0,0x0,0x0,0x0,0x0,0x11,0x89,0x74,0x0,0x0,0x0,0x0,0x0,0x12,0x79, + 0x56,0xf0,0x0,0x0,0x0,0x0,0x13,0x69,0x56,0x0,0x0,0x0,0x0,0x0,0x14,0x59, + 0x38,0xf0,0x0,0x0,0x0,0x0,0x15,0x49,0x38,0x0,0x0,0x0,0x0,0x0,0x16,0x39, + 0x1a,0xf0,0x0,0x0,0x0,0x0,0x17,0x29,0x1a,0x0,0x0,0x0,0x0,0x0,0x18,0x22, + 0x37,0x70,0x0,0x0,0x0,0x0,0x19,0x8,0xfc,0x0,0x0,0x0,0x0,0x0,0x1a,0x2, + 0x19,0x70,0x0,0x0,0x0,0x0,0x1a,0xf2,0x18,0x80,0x0,0x0,0x0,0x0,0x1b,0xe1, + 0xfb,0x70,0x0,0x0,0x0,0x0,0x1c,0xd1,0xfa,0x80,0x0,0x0,0x0,0x0,0x1d,0xc1, + 0xdd,0x70,0x0,0x0,0x0,0x0,0x1e,0xb1,0xdc,0x80,0x0,0x0,0x0,0x0,0x1f,0xa1, + 0xbf,0x70,0x0,0x0,0x0,0x0,0x20,0x76,0xf,0x0,0x0,0x0,0x0,0x0,0x21,0x81, + 0xa1,0x70,0x0,0x0,0x0,0x0,0x22,0x55,0xf1,0x0,0x0,0x0,0x0,0x0,0x23,0x6a, + 0xbd,0xf0,0x0,0x0,0x0,0x0,0x24,0x35,0xd3,0x0,0x0,0x0,0x0,0x0,0x25,0x4a, + 0x9f,0xf0,0x0,0x0,0x0,0x0,0x26,0x15,0xb5,0x0,0x0,0x0,0x0,0x0,0x27,0x2a, + 0x81,0xf0,0x0,0x0,0x0,0x0,0x27,0xfe,0xd1,0x80,0x0,0x0,0x0,0x0,0x29,0xa, + 0x63,0xf0,0x0,0x0,0x0,0x0,0x29,0xde,0xb3,0x80,0x0,0x0,0x0,0x0,0x2a,0xea, + 0x45,0xf0,0x0,0x0,0x0,0x0,0x2b,0xbe,0x95,0x80,0x0,0x0,0x0,0x0,0x2c,0xd3, + 0x62,0x70,0x0,0x0,0x0,0x0,0x2d,0x9e,0x77,0x80,0x0,0x0,0x0,0x0,0x2e,0xb3, + 0x44,0x70,0x0,0x0,0x0,0x0,0x2f,0x7e,0x59,0x80,0x0,0x0,0x0,0x0,0x30,0x93, + 0x26,0x70,0x0,0x0,0x0,0x0,0x31,0x67,0x76,0x0,0x0,0x0,0x0,0x0,0x32,0x73, + 0x8,0x70,0x0,0x0,0x0,0x0,0x33,0x47,0x58,0x0,0x0,0x0,0x0,0x0,0x34,0x52, + 0xea,0x70,0x0,0x0,0x0,0x0,0x35,0x27,0x3a,0x0,0x0,0x0,0x0,0x0,0x36,0x32, + 0xcc,0x70,0x0,0x0,0x0,0x0,0x37,0x7,0x1c,0x0,0x0,0x0,0x0,0x0,0x38,0x1b, + 0xe8,0xf0,0x0,0x0,0x0,0x0,0x38,0xe6,0xfe,0x0,0x0,0x0,0x0,0x0,0x39,0xfb, + 0xca,0xf0,0x0,0x0,0x0,0x0,0x3a,0xc6,0xe0,0x0,0x0,0x0,0x0,0x0,0x3b,0xdb, + 0xac,0xf0,0x0,0x0,0x0,0x0,0x3c,0xaf,0xfc,0x80,0x0,0x0,0x0,0x0,0x3d,0xbb, + 0x8e,0xf0,0x0,0x0,0x0,0x0,0x3e,0x8f,0xde,0x80,0x0,0x0,0x0,0x0,0x3f,0x9b, + 0x70,0xf0,0x0,0x0,0x0,0x0,0x40,0x6f,0xc0,0x80,0x0,0x0,0x0,0x0,0x41,0x84, + 0x8d,0x70,0x0,0x0,0x0,0x0,0x42,0x4f,0xa2,0x80,0x0,0x0,0x0,0x0,0x43,0x64, + 0x6f,0x70,0x0,0x0,0x0,0x0,0x44,0x2f,0x84,0x80,0x0,0x0,0x0,0x0,0x45,0x44, + 0x51,0x70,0x0,0x0,0x0,0x0,0x45,0xf3,0xb7,0x0,0x0,0x0,0x0,0x0,0x47,0x2d, + 0x6d,0xf0,0x0,0x0,0x0,0x0,0x47,0xd3,0x99,0x0,0x0,0x0,0x0,0x0,0x49,0xd, + 0x4f,0xf0,0x0,0x0,0x0,0x0,0x49,0xb3,0x7b,0x0,0x0,0x0,0x0,0x0,0x4a,0xed, + 0x31,0xf0,0x0,0x0,0x0,0x0,0x4b,0x9c,0x97,0x80,0x0,0x0,0x0,0x0,0x4c,0xd6, + 0x4e,0x70,0x0,0x0,0x0,0x0,0x4d,0x7c,0x79,0x80,0x0,0x0,0x0,0x0,0x4e,0xb6, + 0x30,0x70,0x0,0x0,0x0,0x0,0x4f,0x5c,0x5b,0x80,0x0,0x0,0x0,0x0,0x50,0x96, + 0x12,0x70,0x0,0x0,0x0,0x0,0x51,0x3c,0x3d,0x80,0x0,0x0,0x0,0x0,0x52,0x75, + 0xf4,0x70,0x0,0x0,0x0,0x0,0x53,0x1c,0x1f,0x80,0x0,0x0,0x0,0x0,0x54,0x55, + 0xd6,0x70,0x0,0x0,0x0,0x0,0x54,0xfc,0x1,0x80,0x0,0x0,0x0,0x0,0x56,0x35, + 0xb8,0x70,0x0,0x0,0x0,0x0,0x56,0xe5,0x1e,0x0,0x0,0x0,0x0,0x0,0x58,0x1e, + 0xd4,0xf0,0x0,0x0,0x0,0x0,0x58,0xc5,0x0,0x0,0x0,0x0,0x0,0x0,0x59,0xfe, + 0xb6,0xf0,0x0,0x0,0x0,0x0,0x5a,0xa4,0xe2,0x0,0x0,0x0,0x0,0x0,0x5b,0xde, + 0x98,0xf0,0x0,0x0,0x0,0x0,0x5c,0x84,0xc4,0x0,0x0,0x0,0x0,0x0,0x5d,0xbe, + 0x7a,0xf0,0x0,0x0,0x0,0x0,0x5e,0x64,0xa6,0x0,0x0,0x0,0x0,0x0,0x5f,0x9e, + 0x5c,0xf0,0x0,0x0,0x0,0x0,0x60,0x4d,0xc2,0x80,0x0,0x0,0x0,0x0,0x61,0x87, + 0x79,0x70,0x0,0x0,0x0,0x0,0x62,0x2d,0xa4,0x80,0x0,0x0,0x0,0x0,0x63,0x67, + 0x5b,0x70,0x0,0x0,0x0,0x0,0x64,0xd,0x86,0x80,0x0,0x0,0x0,0x0,0x65,0x47, + 0x3d,0x70,0x0,0x0,0x0,0x0,0x65,0xed,0x68,0x80,0x0,0x0,0x0,0x0,0x67,0x27, + 0x1f,0x70,0x0,0x0,0x0,0x0,0x67,0xcd,0x4a,0x80,0x0,0x0,0x0,0x0,0x69,0x7, + 0x1,0x70,0x0,0x0,0x0,0x0,0x69,0xad,0x2c,0x80,0x0,0x0,0x0,0x0,0x6a,0xe6, + 0xe3,0x70,0x0,0x0,0x0,0x0,0x6b,0x96,0x49,0x0,0x0,0x0,0x0,0x0,0x6c,0xcf, + 0xff,0xf0,0x0,0x0,0x0,0x0,0x6d,0x76,0x2b,0x0,0x0,0x0,0x0,0x0,0x6e,0xaf, + 0xe1,0xf0,0x0,0x0,0x0,0x0,0x6f,0x56,0xd,0x0,0x0,0x0,0x0,0x0,0x70,0x8f, + 0xc3,0xf0,0x0,0x0,0x0,0x0,0x71,0x35,0xef,0x0,0x0,0x0,0x0,0x0,0x72,0x6f, + 0xa5,0xf0,0x0,0x0,0x0,0x0,0x73,0x15,0xd1,0x0,0x0,0x0,0x0,0x0,0x74,0x4f, + 0x87,0xf0,0x0,0x0,0x0,0x0,0x74,0xfe,0xed,0x80,0x0,0x0,0x0,0x0,0x76,0x38, + 0xa4,0x70,0x0,0x0,0x0,0x0,0x76,0xde,0xcf,0x80,0x0,0x0,0x0,0x0,0x78,0x18, + 0x86,0x70,0x0,0x0,0x0,0x0,0x78,0xbe,0xb1,0x80,0x0,0x0,0x0,0x0,0x79,0xf8, + 0x68,0x70,0x0,0x0,0x0,0x0,0x7a,0x9e,0x93,0x80,0x0,0x0,0x0,0x0,0x7b,0xd8, + 0x4a,0x70,0x0,0x0,0x0,0x0,0x7c,0x7e,0x75,0x80,0x0,0x0,0x0,0x0,0x7d,0xb8, + 0x2c,0x70,0x0,0x0,0x0,0x0,0x7e,0x5e,0x57,0x80,0x0,0x0,0x0,0x0,0x7f,0x98, + 0xe,0x70,0x0,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x2,0x1,0x2,0x1,0x2,0x5, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0xff,0xff,0xad,0xdd,0x0,0x0,0xff,0xff,0xb9,0xb0,0x1,0x4,0xff,0xff, + 0xab,0xa0,0x0,0x8,0xff,0xff,0xb9,0xb0,0x1,0xc,0xff,0xff,0xb9,0xb0,0x1,0x10, + 0xff,0xff,0xb9,0xb0,0x0,0x14,0xff,0xff,0xab,0xa0,0x0,0x8,0x4c,0x4d,0x54,0x0, + 0x43,0x44,0x54,0x0,0x43,0x53,0x54,0x0,0x43,0x57,0x54,0x0,0x43,0x50,0x54,0x0, + 0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1, + 0x0,0x0,0xa,0x43,0x53,0x54,0x36,0x43,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e, + 0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Detroit + 0x0,0x0,0x8,0x8c, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x5b,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0xa5, - 0xb6,0xe8,0x70,0xaf,0xf2,0x6e,0xe0,0xb6,0x66,0x56,0x60,0xb7,0x43,0xd2,0x60,0xb8, - 0xc,0x36,0x60,0xb8,0xfd,0x86,0xf0,0x31,0x67,0x76,0x0,0x32,0x73,0x8,0x70,0x33, - 0x47,0x58,0x0,0x34,0x52,0xea,0x70,0x35,0x27,0x48,0x10,0x36,0x32,0xda,0x80,0x37, - 0x7,0x2a,0x10,0x38,0x1b,0xf7,0x0,0x38,0xe7,0xc,0x10,0x39,0xfb,0xd9,0x0,0x3a, - 0xf5,0x12,0x90,0x3b,0xb6,0xd1,0x0,0x3c,0xb0,0xa,0x90,0x3d,0xbb,0x9d,0x0,0x3e, - 0x8f,0xec,0x90,0x3f,0x9b,0x7f,0x0,0x40,0x6f,0xce,0x90,0x41,0x84,0x9b,0x80,0x42, - 0x4f,0xb0,0x90,0x43,0x64,0x7d,0x80,0x44,0x2f,0x92,0x90,0x45,0x44,0x5f,0x80,0x46, - 0xf,0x74,0x90,0x47,0x24,0x41,0x80,0x47,0xf8,0x91,0x10,0x49,0x4,0x23,0x80,0x49, - 0xd8,0x73,0x10,0x4a,0xe4,0x5,0x80,0x4b,0xb8,0x55,0x10,0x4c,0xcd,0x22,0x0,0x4d, - 0x98,0x37,0x10,0x4e,0xad,0x4,0x0,0x4f,0x78,0x19,0x10,0x50,0x8c,0xe6,0x0,0x51, - 0x61,0x35,0x90,0x52,0x6c,0xc8,0x0,0x53,0x41,0x17,0x90,0x54,0x4c,0xaa,0x0,0x55, - 0x20,0xf9,0x90,0x56,0x2c,0x8c,0x0,0x57,0x0,0xdb,0x90,0x58,0x15,0xa8,0x80,0x58, - 0xe0,0xbd,0x90,0x59,0xf5,0x8a,0x80,0x5a,0xc0,0x9f,0x90,0x5b,0xd5,0x6c,0x80,0x5c, - 0xa9,0xbc,0x10,0x5d,0xb5,0x4e,0x80,0x5e,0x89,0x9e,0x10,0x5f,0x95,0x30,0x80,0x60, - 0x69,0x80,0x10,0x61,0x7e,0x4d,0x0,0x62,0x49,0x62,0x10,0x63,0x5e,0x2f,0x0,0x64, - 0x29,0x44,0x10,0x65,0x3e,0x11,0x0,0x66,0x12,0x60,0x90,0x67,0x1d,0xf3,0x0,0x67, - 0xf2,0x42,0x90,0x68,0xfd,0xd5,0x0,0x69,0xd2,0x24,0x90,0x6a,0xdd,0xb7,0x0,0x6b, - 0xb2,0x6,0x90,0x6c,0xc6,0xd3,0x80,0x6d,0x91,0xe8,0x90,0x6e,0xa6,0xb5,0x80,0x6f, - 0x71,0xca,0x90,0x70,0x86,0x97,0x80,0x71,0x5a,0xe7,0x10,0x72,0x66,0x79,0x80,0x73, - 0x3a,0xc9,0x10,0x74,0x46,0x5b,0x80,0x75,0x1a,0xab,0x10,0x76,0x2f,0x78,0x0,0x76, - 0xfa,0x8d,0x10,0x78,0xf,0x5a,0x0,0x78,0xda,0x6f,0x10,0x79,0xef,0x3c,0x0,0x7a, - 0xba,0x51,0x10,0x7b,0xcf,0x1e,0x0,0x7c,0xa3,0x6d,0x90,0x7d,0xaf,0x0,0x0,0x7e, - 0x83,0x4f,0x90,0x7f,0x8e,0xe2,0x0,0x0,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x2, - 0x3,0x2,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1, - 0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1, - 0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1, - 0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1, - 0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1, - 0x4,0x1,0xff,0xff,0x9c,0x8c,0x0,0x0,0xff,0xff,0x9d,0x90,0x0,0x4,0xff,0xff, - 0xab,0xa0,0x0,0x8,0xff,0xff,0xb9,0xb0,0x1,0xc,0xff,0xff,0xab,0xa0,0x1,0x10, - 0xff,0xff,0x9d,0x90,0x0,0x4,0x4c,0x4d,0x54,0x0,0x4d,0x53,0x54,0x0,0x43,0x53, - 0x54,0x0,0x43,0x44,0x54,0x0,0x4d,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0, - 0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5b,0x0,0x0,0x0,0x6,0x0,0x0, - 0x0,0x14,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xa5,0xb6, - 0xe8,0x70,0xff,0xff,0xff,0xff,0xaf,0xf2,0x6e,0xe0,0xff,0xff,0xff,0xff,0xb6,0x66, - 0x56,0x60,0xff,0xff,0xff,0xff,0xb7,0x43,0xd2,0x60,0xff,0xff,0xff,0xff,0xb8,0xc, - 0x36,0x60,0xff,0xff,0xff,0xff,0xb8,0xfd,0x86,0xf0,0x0,0x0,0x0,0x0,0x31,0x67, - 0x76,0x0,0x0,0x0,0x0,0x0,0x32,0x73,0x8,0x70,0x0,0x0,0x0,0x0,0x33,0x47, - 0x58,0x0,0x0,0x0,0x0,0x0,0x34,0x52,0xea,0x70,0x0,0x0,0x0,0x0,0x35,0x27, - 0x48,0x10,0x0,0x0,0x0,0x0,0x36,0x32,0xda,0x80,0x0,0x0,0x0,0x0,0x37,0x7, - 0x2a,0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0xf7,0x0,0x0,0x0,0x0,0x0,0x38,0xe7, - 0xc,0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0xd9,0x0,0x0,0x0,0x0,0x0,0x3a,0xf5, - 0x12,0x90,0x0,0x0,0x0,0x0,0x3b,0xb6,0xd1,0x0,0x0,0x0,0x0,0x0,0x3c,0xb0, - 0xa,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x9d,0x0,0x0,0x0,0x0,0x0,0x3e,0x8f, - 0xec,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x7f,0x0,0x0,0x0,0x0,0x0,0x40,0x6f, - 0xce,0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x9b,0x80,0x0,0x0,0x0,0x0,0x42,0x4f, - 0xb0,0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x7d,0x80,0x0,0x0,0x0,0x0,0x44,0x2f, - 0x92,0x90,0x0,0x0,0x0,0x0,0x45,0x44,0x5f,0x80,0x0,0x0,0x0,0x0,0x46,0xf, - 0x74,0x90,0x0,0x0,0x0,0x0,0x47,0x24,0x41,0x80,0x0,0x0,0x0,0x0,0x47,0xf8, - 0x91,0x10,0x0,0x0,0x0,0x0,0x49,0x4,0x23,0x80,0x0,0x0,0x0,0x0,0x49,0xd8, - 0x73,0x10,0x0,0x0,0x0,0x0,0x4a,0xe4,0x5,0x80,0x0,0x0,0x0,0x0,0x4b,0xb8, - 0x55,0x10,0x0,0x0,0x0,0x0,0x4c,0xcd,0x22,0x0,0x0,0x0,0x0,0x0,0x4d,0x98, - 0x37,0x10,0x0,0x0,0x0,0x0,0x4e,0xad,0x4,0x0,0x0,0x0,0x0,0x0,0x4f,0x78, - 0x19,0x10,0x0,0x0,0x0,0x0,0x50,0x8c,0xe6,0x0,0x0,0x0,0x0,0x0,0x51,0x61, - 0x35,0x90,0x0,0x0,0x0,0x0,0x52,0x6c,0xc8,0x0,0x0,0x0,0x0,0x0,0x53,0x41, - 0x17,0x90,0x0,0x0,0x0,0x0,0x54,0x4c,0xaa,0x0,0x0,0x0,0x0,0x0,0x55,0x20, - 0xf9,0x90,0x0,0x0,0x0,0x0,0x56,0x2c,0x8c,0x0,0x0,0x0,0x0,0x0,0x57,0x0, - 0xdb,0x90,0x0,0x0,0x0,0x0,0x58,0x15,0xa8,0x80,0x0,0x0,0x0,0x0,0x58,0xe0, - 0xbd,0x90,0x0,0x0,0x0,0x0,0x59,0xf5,0x8a,0x80,0x0,0x0,0x0,0x0,0x5a,0xc0, - 0x9f,0x90,0x0,0x0,0x0,0x0,0x5b,0xd5,0x6c,0x80,0x0,0x0,0x0,0x0,0x5c,0xa9, - 0xbc,0x10,0x0,0x0,0x0,0x0,0x5d,0xb5,0x4e,0x80,0x0,0x0,0x0,0x0,0x5e,0x89, - 0x9e,0x10,0x0,0x0,0x0,0x0,0x5f,0x95,0x30,0x80,0x0,0x0,0x0,0x0,0x60,0x69, - 0x80,0x10,0x0,0x0,0x0,0x0,0x61,0x7e,0x4d,0x0,0x0,0x0,0x0,0x0,0x62,0x49, - 0x62,0x10,0x0,0x0,0x0,0x0,0x63,0x5e,0x2f,0x0,0x0,0x0,0x0,0x0,0x64,0x29, - 0x44,0x10,0x0,0x0,0x0,0x0,0x65,0x3e,0x11,0x0,0x0,0x0,0x0,0x0,0x66,0x12, - 0x60,0x90,0x0,0x0,0x0,0x0,0x67,0x1d,0xf3,0x0,0x0,0x0,0x0,0x0,0x67,0xf2, - 0x42,0x90,0x0,0x0,0x0,0x0,0x68,0xfd,0xd5,0x0,0x0,0x0,0x0,0x0,0x69,0xd2, - 0x24,0x90,0x0,0x0,0x0,0x0,0x6a,0xdd,0xb7,0x0,0x0,0x0,0x0,0x0,0x6b,0xb2, - 0x6,0x90,0x0,0x0,0x0,0x0,0x6c,0xc6,0xd3,0x80,0x0,0x0,0x0,0x0,0x6d,0x91, - 0xe8,0x90,0x0,0x0,0x0,0x0,0x6e,0xa6,0xb5,0x80,0x0,0x0,0x0,0x0,0x6f,0x71, - 0xca,0x90,0x0,0x0,0x0,0x0,0x70,0x86,0x97,0x80,0x0,0x0,0x0,0x0,0x71,0x5a, - 0xe7,0x10,0x0,0x0,0x0,0x0,0x72,0x66,0x79,0x80,0x0,0x0,0x0,0x0,0x73,0x3a, - 0xc9,0x10,0x0,0x0,0x0,0x0,0x74,0x46,0x5b,0x80,0x0,0x0,0x0,0x0,0x75,0x1a, - 0xab,0x10,0x0,0x0,0x0,0x0,0x76,0x2f,0x78,0x0,0x0,0x0,0x0,0x0,0x76,0xfa, - 0x8d,0x10,0x0,0x0,0x0,0x0,0x78,0xf,0x5a,0x0,0x0,0x0,0x0,0x0,0x78,0xda, - 0x6f,0x10,0x0,0x0,0x0,0x0,0x79,0xef,0x3c,0x0,0x0,0x0,0x0,0x0,0x7a,0xba, - 0x51,0x10,0x0,0x0,0x0,0x0,0x7b,0xcf,0x1e,0x0,0x0,0x0,0x0,0x0,0x7c,0xa3, - 0x6d,0x90,0x0,0x0,0x0,0x0,0x7d,0xaf,0x0,0x0,0x0,0x0,0x0,0x0,0x7e,0x83, - 0x4f,0x90,0x0,0x0,0x0,0x0,0x7f,0x8e,0xe2,0x0,0x0,0x1,0x2,0x1,0x2,0x1, - 0x2,0x3,0x2,0x3,0x2,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4, - 0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4, - 0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4, - 0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4, - 0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4, - 0x1,0x4,0x1,0x4,0x1,0xff,0xff,0x9c,0x8c,0x0,0x0,0xff,0xff,0x9d,0x90,0x0, - 0x4,0xff,0xff,0xab,0xa0,0x0,0x8,0xff,0xff,0xb9,0xb0,0x1,0xc,0xff,0xff,0xab, - 0xa0,0x1,0x10,0xff,0xff,0x9d,0x90,0x0,0x4,0x4c,0x4d,0x54,0x0,0x4d,0x53,0x54, - 0x0,0x43,0x53,0x54,0x0,0x43,0x44,0x54,0x0,0x4d,0x44,0x54,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x4d,0x53,0x54,0x37,0x4d,0x44, - 0x54,0x2c,0x4d,0x34,0x2e,0x31,0x2e,0x30,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30, - 0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Goose_Bay - 0x0,0x0,0xc,0x93, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xcc,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x21,0x80,0x0,0x0,0x0,0x9e, - 0xb8,0x7e,0x8c,0x9f,0xba,0xd6,0x7c,0xbe,0x9e,0x4d,0x6c,0xc0,0xb8,0x31,0x38,0xc1, - 0x79,0xef,0xa8,0xc2,0x98,0x13,0x38,0xc3,0x59,0xd1,0xa8,0xc4,0x77,0xf5,0x38,0xc5, - 0x39,0xb3,0xa8,0xc6,0x61,0x11,0xb8,0xc7,0x19,0x95,0xa8,0xc8,0x40,0xf3,0xb8,0xc9, - 0x2,0xb2,0x28,0xca,0x20,0xd5,0xb8,0xca,0xe2,0x94,0x28,0xcc,0x0,0xb7,0xb8,0xd2, - 0x23,0xf4,0x70,0xd2,0x60,0xe6,0xc8,0xd3,0x88,0x44,0xd8,0xd4,0x4a,0x3,0x48,0xd5, - 0x68,0x26,0xd8,0xd6,0x29,0xe5,0x48,0xd7,0x48,0x8,0xd8,0xd8,0x9,0xc7,0x48,0xd9, - 0x27,0xea,0xd8,0xd9,0xe9,0xa9,0x48,0xdb,0x11,0x7,0x58,0xdb,0xd2,0xc5,0xc8,0xdc, - 0xde,0x74,0x58,0xdd,0xa9,0x6d,0x48,0xde,0xbe,0x56,0x58,0xdf,0x89,0x4f,0x48,0xe0, - 0x9e,0x38,0x58,0xe1,0x69,0x31,0x48,0xe2,0x7e,0x1a,0x58,0xe3,0x49,0x13,0x48,0xe4, - 0x5d,0xfc,0x58,0xe5,0x28,0xf5,0x48,0xe6,0x47,0x18,0xd8,0xe7,0x12,0x11,0xc8,0xe8, - 0x26,0xfa,0xd8,0xe8,0xf1,0xf3,0xc8,0xea,0x6,0xdc,0xd8,0xea,0xd1,0xd5,0xc8,0xeb, - 0xe6,0xbe,0xd8,0xec,0xb1,0xb7,0xc8,0xed,0xc6,0xa0,0xd8,0xee,0xbf,0xbe,0x48,0xef, - 0xaf,0xbd,0x58,0xf0,0x9f,0xa0,0x48,0xf1,0x8f,0x9f,0x58,0xf2,0x7f,0x82,0x48,0xf3, - 0x6f,0x81,0x58,0xf4,0x5f,0x64,0x48,0xf5,0x4f,0x63,0x58,0xf6,0x3f,0x46,0x48,0xf7, - 0x2f,0x45,0x58,0xf8,0x28,0x62,0xc8,0xf8,0xda,0x6b,0x58,0xf9,0xf,0x2e,0x60,0xfa, - 0x8,0x4b,0xd0,0xfa,0xf8,0x4a,0xe0,0xfb,0xe8,0x2d,0xd0,0xfc,0xd8,0x2c,0xe0,0xfd, - 0xc8,0xf,0xd0,0xfe,0xb8,0xe,0xe0,0xff,0xa7,0xf1,0xd0,0x0,0x97,0xf0,0xe0,0x1, - 0x87,0xd3,0xd0,0x2,0x77,0xd2,0xe0,0x3,0x70,0xf0,0x50,0x4,0x60,0xef,0x60,0x5, - 0x50,0xd2,0x50,0x6,0x40,0xd1,0x60,0x7,0x30,0xb4,0x50,0x8,0x20,0xb3,0x60,0x9, - 0x10,0x96,0x50,0xa,0x0,0x95,0x60,0xa,0xf0,0x78,0x50,0xb,0xe0,0x77,0x60,0xc, - 0xd9,0x94,0xd0,0xd,0xc0,0x59,0x60,0xe,0xb9,0x76,0xd0,0xf,0xa9,0x75,0xe0,0x10, - 0x99,0x58,0xd0,0x11,0x89,0x57,0xe0,0x12,0x79,0x3a,0xd0,0x13,0x69,0x39,0xe0,0x14, - 0x59,0x1c,0xd0,0x15,0x49,0x1b,0xe0,0x16,0x38,0xfe,0xd0,0x17,0x28,0xfd,0xe0,0x18, - 0x22,0x1b,0x50,0x19,0x8,0xdf,0xe0,0x1a,0x1,0xfd,0x50,0x1a,0xf1,0xfc,0x60,0x1b, - 0xe1,0xdf,0x50,0x1c,0xd1,0xde,0x60,0x1d,0xc1,0xc1,0x50,0x1e,0xb1,0xc0,0x60,0x1f, - 0xa1,0xa3,0x50,0x20,0x75,0xd6,0xfc,0x21,0x81,0x69,0x6c,0x22,0x55,0xb8,0xfc,0x23, - 0x6a,0x77,0xdc,0x24,0x35,0x9a,0xfc,0x25,0x4a,0x67,0xec,0x26,0x15,0x7c,0xfc,0x27, - 0x2a,0x49,0xec,0x27,0xfe,0x99,0x7c,0x29,0xa,0x2b,0xec,0x29,0xde,0x7b,0x7c,0x2a, - 0xea,0xd,0xec,0x2b,0xbe,0x5d,0x7c,0x2c,0xd3,0x2a,0x6c,0x2d,0x9e,0x3f,0x7c,0x2e, - 0xb3,0xc,0x6c,0x2f,0x7e,0x21,0x7c,0x30,0x92,0xee,0x6c,0x31,0x67,0x3d,0xfc,0x32, - 0x72,0xd0,0x6c,0x33,0x47,0x1f,0xfc,0x34,0x52,0xb2,0x6c,0x35,0x27,0x1,0xfc,0x36, - 0x32,0x94,0x6c,0x37,0x6,0xe3,0xfc,0x38,0x1b,0xb0,0xec,0x38,0xe6,0xc5,0xfc,0x39, - 0xfb,0x92,0xec,0x3a,0xc6,0xa7,0xfc,0x3b,0xdb,0x74,0xec,0x3c,0xaf,0xc4,0x7c,0x3d, - 0xbb,0x56,0xec,0x3e,0x8f,0xa6,0x7c,0x3f,0x9b,0x38,0xec,0x40,0x6f,0x88,0x7c,0x41, - 0x84,0x55,0x6c,0x42,0x4f,0x6a,0x7c,0x43,0x64,0x37,0x6c,0x44,0x2f,0x4c,0x7c,0x45, - 0x44,0x19,0x6c,0x45,0xf3,0x7e,0xfc,0x47,0x2d,0x35,0xec,0x47,0xd3,0x60,0xfc,0x49, - 0xd,0x17,0xec,0x49,0xb3,0x42,0xfc,0x4a,0xec,0xf9,0xec,0x4b,0x9c,0x5f,0x7c,0x4c, - 0xd6,0x16,0x6c,0x4d,0x7c,0x41,0x7c,0x4e,0xb6,0x14,0x50,0x4f,0x5c,0x3f,0x60,0x50, - 0x95,0xf6,0x50,0x51,0x3c,0x21,0x60,0x52,0x75,0xd8,0x50,0x53,0x1c,0x3,0x60,0x54, - 0x55,0xba,0x50,0x54,0xfb,0xe5,0x60,0x56,0x35,0x9c,0x50,0x56,0xe5,0x1,0xe0,0x58, - 0x1e,0xb8,0xd0,0x58,0xc4,0xe3,0xe0,0x59,0xfe,0x9a,0xd0,0x5a,0xa4,0xc5,0xe0,0x5b, - 0xde,0x7c,0xd0,0x5c,0x84,0xa7,0xe0,0x5d,0xbe,0x5e,0xd0,0x5e,0x64,0x89,0xe0,0x5f, - 0x9e,0x40,0xd0,0x60,0x4d,0xa6,0x60,0x61,0x87,0x5d,0x50,0x62,0x2d,0x88,0x60,0x63, - 0x67,0x3f,0x50,0x64,0xd,0x6a,0x60,0x65,0x47,0x21,0x50,0x65,0xed,0x4c,0x60,0x67, - 0x27,0x3,0x50,0x67,0xcd,0x2e,0x60,0x69,0x6,0xe5,0x50,0x69,0xad,0x10,0x60,0x6a, - 0xe6,0xc7,0x50,0x6b,0x96,0x2c,0xe0,0x6c,0xcf,0xe3,0xd0,0x6d,0x76,0xe,0xe0,0x6e, - 0xaf,0xc5,0xd0,0x6f,0x55,0xf0,0xe0,0x70,0x8f,0xa7,0xd0,0x71,0x35,0xd2,0xe0,0x72, - 0x6f,0x89,0xd0,0x73,0x15,0xb4,0xe0,0x74,0x4f,0x6b,0xd0,0x74,0xfe,0xd1,0x60,0x76, - 0x38,0x88,0x50,0x76,0xde,0xb3,0x60,0x78,0x18,0x6a,0x50,0x78,0xbe,0x95,0x60,0x79, - 0xf8,0x4c,0x50,0x7a,0x9e,0x77,0x60,0x7b,0xd8,0x2e,0x50,0x7c,0x7e,0x59,0x60,0x7d, - 0xb8,0x10,0x50,0x7e,0x5e,0x3b,0x60,0x7f,0x97,0xf2,0x50,0x1,0x2,0x1,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x6,0x5,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, - 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, - 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, - 0x8,0x7,0x8,0x9,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, - 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, - 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, - 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, - 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, - 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, - 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0xff,0xff,0xc7,0x5c,0x0,0x0,0xff,0xff,0xce, - 0x94,0x0,0x4,0xff,0xff,0xdc,0xa4,0x1,0x8,0xff,0xff,0xce,0xc8,0x0,0x4,0xff, - 0xff,0xdc,0xd8,0x1,0x8,0xff,0xff,0xdc,0xd8,0x1,0xc,0xff,0xff,0xdc,0xd8,0x1, - 0x10,0xff,0xff,0xd5,0xd0,0x1,0x14,0xff,0xff,0xc7,0xc0,0x0,0x18,0xff,0xff,0xe3, - 0xe0,0x1,0x1c,0xff,0xff,0xd5,0xd0,0x1,0x14,0x4c,0x4d,0x54,0x0,0x4e,0x53,0x54, - 0x0,0x4e,0x44,0x54,0x0,0x4e,0x50,0x54,0x0,0x4e,0x57,0x54,0x0,0x41,0x44,0x54, - 0x0,0x41,0x53,0x54,0x0,0x41,0x44,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x1, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, - 0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0xcd,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x21,0xf8,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x5e,0x3d,0x3c,0x24,0xff,0xff,0xff,0xff, - 0x9e,0xb8,0x7e,0x8c,0xff,0xff,0xff,0xff,0x9f,0xba,0xd6,0x7c,0xff,0xff,0xff,0xff, - 0xbe,0x9e,0x4d,0x6c,0xff,0xff,0xff,0xff,0xc0,0xb8,0x31,0x38,0xff,0xff,0xff,0xff, - 0xc1,0x79,0xef,0xa8,0xff,0xff,0xff,0xff,0xc2,0x98,0x13,0x38,0xff,0xff,0xff,0xff, - 0xc3,0x59,0xd1,0xa8,0xff,0xff,0xff,0xff,0xc4,0x77,0xf5,0x38,0xff,0xff,0xff,0xff, - 0xc5,0x39,0xb3,0xa8,0xff,0xff,0xff,0xff,0xc6,0x61,0x11,0xb8,0xff,0xff,0xff,0xff, - 0xc7,0x19,0x95,0xa8,0xff,0xff,0xff,0xff,0xc8,0x40,0xf3,0xb8,0xff,0xff,0xff,0xff, - 0xc9,0x2,0xb2,0x28,0xff,0xff,0xff,0xff,0xca,0x20,0xd5,0xb8,0xff,0xff,0xff,0xff, - 0xca,0xe2,0x94,0x28,0xff,0xff,0xff,0xff,0xcc,0x0,0xb7,0xb8,0xff,0xff,0xff,0xff, - 0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x60,0xe6,0xc8,0xff,0xff,0xff,0xff, - 0xd3,0x88,0x44,0xd8,0xff,0xff,0xff,0xff,0xd4,0x4a,0x3,0x48,0xff,0xff,0xff,0xff, - 0xd5,0x68,0x26,0xd8,0xff,0xff,0xff,0xff,0xd6,0x29,0xe5,0x48,0xff,0xff,0xff,0xff, - 0xd7,0x48,0x8,0xd8,0xff,0xff,0xff,0xff,0xd8,0x9,0xc7,0x48,0xff,0xff,0xff,0xff, - 0xd9,0x27,0xea,0xd8,0xff,0xff,0xff,0xff,0xd9,0xe9,0xa9,0x48,0xff,0xff,0xff,0xff, - 0xdb,0x11,0x7,0x58,0xff,0xff,0xff,0xff,0xdb,0xd2,0xc5,0xc8,0xff,0xff,0xff,0xff, - 0xdc,0xde,0x74,0x58,0xff,0xff,0xff,0xff,0xdd,0xa9,0x6d,0x48,0xff,0xff,0xff,0xff, - 0xde,0xbe,0x56,0x58,0xff,0xff,0xff,0xff,0xdf,0x89,0x4f,0x48,0xff,0xff,0xff,0xff, - 0xe0,0x9e,0x38,0x58,0xff,0xff,0xff,0xff,0xe1,0x69,0x31,0x48,0xff,0xff,0xff,0xff, - 0xe2,0x7e,0x1a,0x58,0xff,0xff,0xff,0xff,0xe3,0x49,0x13,0x48,0xff,0xff,0xff,0xff, - 0xe4,0x5d,0xfc,0x58,0xff,0xff,0xff,0xff,0xe5,0x28,0xf5,0x48,0xff,0xff,0xff,0xff, - 0xe6,0x47,0x18,0xd8,0xff,0xff,0xff,0xff,0xe7,0x12,0x11,0xc8,0xff,0xff,0xff,0xff, - 0xe8,0x26,0xfa,0xd8,0xff,0xff,0xff,0xff,0xe8,0xf1,0xf3,0xc8,0xff,0xff,0xff,0xff, - 0xea,0x6,0xdc,0xd8,0xff,0xff,0xff,0xff,0xea,0xd1,0xd5,0xc8,0xff,0xff,0xff,0xff, - 0xeb,0xe6,0xbe,0xd8,0xff,0xff,0xff,0xff,0xec,0xb1,0xb7,0xc8,0xff,0xff,0xff,0xff, - 0xed,0xc6,0xa0,0xd8,0xff,0xff,0xff,0xff,0xee,0xbf,0xbe,0x48,0xff,0xff,0xff,0xff, - 0xef,0xaf,0xbd,0x58,0xff,0xff,0xff,0xff,0xf0,0x9f,0xa0,0x48,0xff,0xff,0xff,0xff, - 0xf1,0x8f,0x9f,0x58,0xff,0xff,0xff,0xff,0xf2,0x7f,0x82,0x48,0xff,0xff,0xff,0xff, - 0xf3,0x6f,0x81,0x58,0xff,0xff,0xff,0xff,0xf4,0x5f,0x64,0x48,0xff,0xff,0xff,0xff, - 0xf5,0x4f,0x63,0x58,0xff,0xff,0xff,0xff,0xf6,0x3f,0x46,0x48,0xff,0xff,0xff,0xff, - 0xf7,0x2f,0x45,0x58,0xff,0xff,0xff,0xff,0xf8,0x28,0x62,0xc8,0xff,0xff,0xff,0xff, - 0xf8,0xda,0x6b,0x58,0xff,0xff,0xff,0xff,0xf9,0xf,0x2e,0x60,0xff,0xff,0xff,0xff, - 0xfa,0x8,0x4b,0xd0,0xff,0xff,0xff,0xff,0xfa,0xf8,0x4a,0xe0,0xff,0xff,0xff,0xff, - 0xfb,0xe8,0x2d,0xd0,0xff,0xff,0xff,0xff,0xfc,0xd8,0x2c,0xe0,0xff,0xff,0xff,0xff, - 0xfd,0xc8,0xf,0xd0,0xff,0xff,0xff,0xff,0xfe,0xb8,0xe,0xe0,0xff,0xff,0xff,0xff, - 0xff,0xa7,0xf1,0xd0,0x0,0x0,0x0,0x0,0x0,0x97,0xf0,0xe0,0x0,0x0,0x0,0x0, - 0x1,0x87,0xd3,0xd0,0x0,0x0,0x0,0x0,0x2,0x77,0xd2,0xe0,0x0,0x0,0x0,0x0, - 0x3,0x70,0xf0,0x50,0x0,0x0,0x0,0x0,0x4,0x60,0xef,0x60,0x0,0x0,0x0,0x0, - 0x5,0x50,0xd2,0x50,0x0,0x0,0x0,0x0,0x6,0x40,0xd1,0x60,0x0,0x0,0x0,0x0, - 0x7,0x30,0xb4,0x50,0x0,0x0,0x0,0x0,0x8,0x20,0xb3,0x60,0x0,0x0,0x0,0x0, - 0x9,0x10,0x96,0x50,0x0,0x0,0x0,0x0,0xa,0x0,0x95,0x60,0x0,0x0,0x0,0x0, - 0xa,0xf0,0x78,0x50,0x0,0x0,0x0,0x0,0xb,0xe0,0x77,0x60,0x0,0x0,0x0,0x0, - 0xc,0xd9,0x94,0xd0,0x0,0x0,0x0,0x0,0xd,0xc0,0x59,0x60,0x0,0x0,0x0,0x0, - 0xe,0xb9,0x76,0xd0,0x0,0x0,0x0,0x0,0xf,0xa9,0x75,0xe0,0x0,0x0,0x0,0x0, - 0x10,0x99,0x58,0xd0,0x0,0x0,0x0,0x0,0x11,0x89,0x57,0xe0,0x0,0x0,0x0,0x0, - 0x12,0x79,0x3a,0xd0,0x0,0x0,0x0,0x0,0x13,0x69,0x39,0xe0,0x0,0x0,0x0,0x0, - 0x14,0x59,0x1c,0xd0,0x0,0x0,0x0,0x0,0x15,0x49,0x1b,0xe0,0x0,0x0,0x0,0x0, - 0x16,0x38,0xfe,0xd0,0x0,0x0,0x0,0x0,0x17,0x28,0xfd,0xe0,0x0,0x0,0x0,0x0, - 0x18,0x22,0x1b,0x50,0x0,0x0,0x0,0x0,0x19,0x8,0xdf,0xe0,0x0,0x0,0x0,0x0, - 0x1a,0x1,0xfd,0x50,0x0,0x0,0x0,0x0,0x1a,0xf1,0xfc,0x60,0x0,0x0,0x0,0x0, - 0x1b,0xe1,0xdf,0x50,0x0,0x0,0x0,0x0,0x1c,0xd1,0xde,0x60,0x0,0x0,0x0,0x0, - 0x1d,0xc1,0xc1,0x50,0x0,0x0,0x0,0x0,0x1e,0xb1,0xc0,0x60,0x0,0x0,0x0,0x0, - 0x1f,0xa1,0xa3,0x50,0x0,0x0,0x0,0x0,0x20,0x75,0xd6,0xfc,0x0,0x0,0x0,0x0, - 0x21,0x81,0x69,0x6c,0x0,0x0,0x0,0x0,0x22,0x55,0xb8,0xfc,0x0,0x0,0x0,0x0, - 0x23,0x6a,0x77,0xdc,0x0,0x0,0x0,0x0,0x24,0x35,0x9a,0xfc,0x0,0x0,0x0,0x0, - 0x25,0x4a,0x67,0xec,0x0,0x0,0x0,0x0,0x26,0x15,0x7c,0xfc,0x0,0x0,0x0,0x0, - 0x27,0x2a,0x49,0xec,0x0,0x0,0x0,0x0,0x27,0xfe,0x99,0x7c,0x0,0x0,0x0,0x0, - 0x29,0xa,0x2b,0xec,0x0,0x0,0x0,0x0,0x29,0xde,0x7b,0x7c,0x0,0x0,0x0,0x0, - 0x2a,0xea,0xd,0xec,0x0,0x0,0x0,0x0,0x2b,0xbe,0x5d,0x7c,0x0,0x0,0x0,0x0, - 0x2c,0xd3,0x2a,0x6c,0x0,0x0,0x0,0x0,0x2d,0x9e,0x3f,0x7c,0x0,0x0,0x0,0x0, - 0x2e,0xb3,0xc,0x6c,0x0,0x0,0x0,0x0,0x2f,0x7e,0x21,0x7c,0x0,0x0,0x0,0x0, - 0x30,0x92,0xee,0x6c,0x0,0x0,0x0,0x0,0x31,0x67,0x3d,0xfc,0x0,0x0,0x0,0x0, - 0x32,0x72,0xd0,0x6c,0x0,0x0,0x0,0x0,0x33,0x47,0x1f,0xfc,0x0,0x0,0x0,0x0, - 0x34,0x52,0xb2,0x6c,0x0,0x0,0x0,0x0,0x35,0x27,0x1,0xfc,0x0,0x0,0x0,0x0, - 0x36,0x32,0x94,0x6c,0x0,0x0,0x0,0x0,0x37,0x6,0xe3,0xfc,0x0,0x0,0x0,0x0, - 0x38,0x1b,0xb0,0xec,0x0,0x0,0x0,0x0,0x38,0xe6,0xc5,0xfc,0x0,0x0,0x0,0x0, - 0x39,0xfb,0x92,0xec,0x0,0x0,0x0,0x0,0x3a,0xc6,0xa7,0xfc,0x0,0x0,0x0,0x0, - 0x3b,0xdb,0x74,0xec,0x0,0x0,0x0,0x0,0x3c,0xaf,0xc4,0x7c,0x0,0x0,0x0,0x0, - 0x3d,0xbb,0x56,0xec,0x0,0x0,0x0,0x0,0x3e,0x8f,0xa6,0x7c,0x0,0x0,0x0,0x0, - 0x3f,0x9b,0x38,0xec,0x0,0x0,0x0,0x0,0x40,0x6f,0x88,0x7c,0x0,0x0,0x0,0x0, - 0x41,0x84,0x55,0x6c,0x0,0x0,0x0,0x0,0x42,0x4f,0x6a,0x7c,0x0,0x0,0x0,0x0, - 0x43,0x64,0x37,0x6c,0x0,0x0,0x0,0x0,0x44,0x2f,0x4c,0x7c,0x0,0x0,0x0,0x0, - 0x45,0x44,0x19,0x6c,0x0,0x0,0x0,0x0,0x45,0xf3,0x7e,0xfc,0x0,0x0,0x0,0x0, - 0x47,0x2d,0x35,0xec,0x0,0x0,0x0,0x0,0x47,0xd3,0x60,0xfc,0x0,0x0,0x0,0x0, - 0x49,0xd,0x17,0xec,0x0,0x0,0x0,0x0,0x49,0xb3,0x42,0xfc,0x0,0x0,0x0,0x0, - 0x4a,0xec,0xf9,0xec,0x0,0x0,0x0,0x0,0x4b,0x9c,0x5f,0x7c,0x0,0x0,0x0,0x0, - 0x4c,0xd6,0x16,0x6c,0x0,0x0,0x0,0x0,0x4d,0x7c,0x41,0x7c,0x0,0x0,0x0,0x0, - 0x4e,0xb6,0x14,0x50,0x0,0x0,0x0,0x0,0x4f,0x5c,0x3f,0x60,0x0,0x0,0x0,0x0, - 0x50,0x95,0xf6,0x50,0x0,0x0,0x0,0x0,0x51,0x3c,0x21,0x60,0x0,0x0,0x0,0x0, - 0x52,0x75,0xd8,0x50,0x0,0x0,0x0,0x0,0x53,0x1c,0x3,0x60,0x0,0x0,0x0,0x0, - 0x54,0x55,0xba,0x50,0x0,0x0,0x0,0x0,0x54,0xfb,0xe5,0x60,0x0,0x0,0x0,0x0, - 0x56,0x35,0x9c,0x50,0x0,0x0,0x0,0x0,0x56,0xe5,0x1,0xe0,0x0,0x0,0x0,0x0, - 0x58,0x1e,0xb8,0xd0,0x0,0x0,0x0,0x0,0x58,0xc4,0xe3,0xe0,0x0,0x0,0x0,0x0, - 0x59,0xfe,0x9a,0xd0,0x0,0x0,0x0,0x0,0x5a,0xa4,0xc5,0xe0,0x0,0x0,0x0,0x0, - 0x5b,0xde,0x7c,0xd0,0x0,0x0,0x0,0x0,0x5c,0x84,0xa7,0xe0,0x0,0x0,0x0,0x0, - 0x5d,0xbe,0x5e,0xd0,0x0,0x0,0x0,0x0,0x5e,0x64,0x89,0xe0,0x0,0x0,0x0,0x0, - 0x5f,0x9e,0x40,0xd0,0x0,0x0,0x0,0x0,0x60,0x4d,0xa6,0x60,0x0,0x0,0x0,0x0, - 0x61,0x87,0x5d,0x50,0x0,0x0,0x0,0x0,0x62,0x2d,0x88,0x60,0x0,0x0,0x0,0x0, - 0x63,0x67,0x3f,0x50,0x0,0x0,0x0,0x0,0x64,0xd,0x6a,0x60,0x0,0x0,0x0,0x0, - 0x65,0x47,0x21,0x50,0x0,0x0,0x0,0x0,0x65,0xed,0x4c,0x60,0x0,0x0,0x0,0x0, - 0x67,0x27,0x3,0x50,0x0,0x0,0x0,0x0,0x67,0xcd,0x2e,0x60,0x0,0x0,0x0,0x0, - 0x69,0x6,0xe5,0x50,0x0,0x0,0x0,0x0,0x69,0xad,0x10,0x60,0x0,0x0,0x0,0x0, - 0x6a,0xe6,0xc7,0x50,0x0,0x0,0x0,0x0,0x6b,0x96,0x2c,0xe0,0x0,0x0,0x0,0x0, - 0x6c,0xcf,0xe3,0xd0,0x0,0x0,0x0,0x0,0x6d,0x76,0xe,0xe0,0x0,0x0,0x0,0x0, - 0x6e,0xaf,0xc5,0xd0,0x0,0x0,0x0,0x0,0x6f,0x55,0xf0,0xe0,0x0,0x0,0x0,0x0, - 0x70,0x8f,0xa7,0xd0,0x0,0x0,0x0,0x0,0x71,0x35,0xd2,0xe0,0x0,0x0,0x0,0x0, - 0x72,0x6f,0x89,0xd0,0x0,0x0,0x0,0x0,0x73,0x15,0xb4,0xe0,0x0,0x0,0x0,0x0, - 0x74,0x4f,0x6b,0xd0,0x0,0x0,0x0,0x0,0x74,0xfe,0xd1,0x60,0x0,0x0,0x0,0x0, - 0x76,0x38,0x88,0x50,0x0,0x0,0x0,0x0,0x76,0xde,0xb3,0x60,0x0,0x0,0x0,0x0, - 0x78,0x18,0x6a,0x50,0x0,0x0,0x0,0x0,0x78,0xbe,0x95,0x60,0x0,0x0,0x0,0x0, - 0x79,0xf8,0x4c,0x50,0x0,0x0,0x0,0x0,0x7a,0x9e,0x77,0x60,0x0,0x0,0x0,0x0, - 0x7b,0xd8,0x2e,0x50,0x0,0x0,0x0,0x0,0x7c,0x7e,0x59,0x60,0x0,0x0,0x0,0x0, - 0x7d,0xb8,0x10,0x50,0x0,0x0,0x0,0x0,0x7e,0x5e,0x3b,0x60,0x0,0x0,0x0,0x0, - 0x7f,0x97,0xf2,0x50,0x0,0x1,0x2,0x1,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x6,0x5,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, - 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, - 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x9,0x8,0x7, - 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, - 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, - 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, - 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, - 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, - 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, - 0x8,0xff,0xff,0xc7,0x5c,0x0,0x0,0xff,0xff,0xce,0x94,0x0,0x4,0xff,0xff,0xdc, - 0xa4,0x1,0x8,0xff,0xff,0xce,0xc8,0x0,0x4,0xff,0xff,0xdc,0xd8,0x1,0x8,0xff, - 0xff,0xdc,0xd8,0x1,0xc,0xff,0xff,0xdc,0xd8,0x1,0x10,0xff,0xff,0xd5,0xd0,0x1, - 0x14,0xff,0xff,0xc7,0xc0,0x0,0x18,0xff,0xff,0xe3,0xe0,0x1,0x1c,0xff,0xff,0xd5, - 0xd0,0x1,0x14,0x4c,0x4d,0x54,0x0,0x4e,0x53,0x54,0x0,0x4e,0x44,0x54,0x0,0x4e, - 0x50,0x54,0x0,0x4e,0x57,0x54,0x0,0x41,0x44,0x54,0x0,0x41,0x53,0x54,0x0,0x41, - 0x44,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0xa,0x41,0x53,0x54,0x34,0x41, - 0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e, - 0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Panama - 0x0,0x0,0x0,0xcb, + 0x0,0x0,0x8a,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x80,0x0,0x0,0x0,0x85, + 0xbd,0x22,0x5b,0x99,0x3c,0x94,0x0,0xcb,0x88,0xf0,0x70,0xd2,0x23,0xf4,0x70,0xd2, + 0x60,0xfb,0xe0,0xd7,0x35,0xa8,0xf0,0xd8,0x0,0xa1,0xe0,0x6,0x40,0xdf,0x70,0x7, + 0x30,0xc2,0x60,0x7,0x8d,0x19,0x70,0x9,0x10,0xa4,0x60,0xa,0x0,0xa3,0x70,0xa, + 0xf0,0x86,0x60,0xb,0xe0,0x85,0x70,0xc,0xd9,0xa2,0xe0,0xd,0xc0,0x67,0x70,0xe, + 0xb9,0x84,0xe0,0xf,0xa9,0x83,0xf0,0x10,0x99,0x66,0xe0,0x11,0x89,0x65,0xf0,0x12, + 0x79,0x48,0xe0,0x13,0x69,0x47,0xf0,0x14,0x59,0x2a,0xe0,0x15,0x49,0x29,0xf0,0x16, + 0x39,0xc,0xe0,0x17,0x29,0xb,0xf0,0x18,0x22,0x29,0x60,0x19,0x8,0xed,0xf0,0x1a, + 0x2,0xb,0x60,0x1a,0xf2,0xa,0x70,0x1b,0xe1,0xed,0x60,0x1c,0xd1,0xec,0x70,0x1d, + 0xc1,0xcf,0x60,0x1e,0xb1,0xce,0x70,0x1f,0xa1,0xb1,0x60,0x20,0x76,0x0,0xf0,0x21, + 0x81,0x93,0x60,0x22,0x55,0xe2,0xf0,0x23,0x6a,0xaf,0xe0,0x24,0x35,0xc4,0xf0,0x25, + 0x4a,0x91,0xe0,0x26,0x15,0xa6,0xf0,0x27,0x2a,0x73,0xe0,0x27,0xfe,0xc3,0x70,0x29, + 0xa,0x55,0xe0,0x29,0xde,0xa5,0x70,0x2a,0xea,0x37,0xe0,0x2b,0xbe,0x87,0x70,0x2c, + 0xd3,0x54,0x60,0x2d,0x9e,0x69,0x70,0x2e,0xb3,0x36,0x60,0x2f,0x7e,0x4b,0x70,0x30, + 0x93,0x18,0x60,0x31,0x67,0x67,0xf0,0x32,0x72,0xfa,0x60,0x33,0x47,0x49,0xf0,0x34, + 0x52,0xdc,0x60,0x35,0x27,0x2b,0xf0,0x36,0x32,0xbe,0x60,0x37,0x7,0xd,0xf0,0x38, + 0x1b,0xda,0xe0,0x38,0xe6,0xef,0xf0,0x39,0xfb,0xbc,0xe0,0x3a,0xc6,0xd1,0xf0,0x3b, + 0xdb,0x9e,0xe0,0x3c,0xaf,0xee,0x70,0x3d,0xbb,0x80,0xe0,0x3e,0x8f,0xd0,0x70,0x3f, + 0x9b,0x62,0xe0,0x40,0x6f,0xb2,0x70,0x41,0x84,0x7f,0x60,0x42,0x4f,0x94,0x70,0x43, + 0x64,0x61,0x60,0x44,0x2f,0x76,0x70,0x45,0x44,0x43,0x60,0x45,0xf3,0xa8,0xf0,0x47, + 0x2d,0x5f,0xe0,0x47,0xd3,0x8a,0xf0,0x49,0xd,0x41,0xe0,0x49,0xb3,0x6c,0xf0,0x4a, + 0xed,0x23,0xe0,0x4b,0x9c,0x89,0x70,0x4c,0xd6,0x40,0x60,0x4d,0x7c,0x6b,0x70,0x4e, + 0xb6,0x22,0x60,0x4f,0x5c,0x4d,0x70,0x50,0x96,0x4,0x60,0x51,0x3c,0x2f,0x70,0x52, + 0x75,0xe6,0x60,0x53,0x1c,0x11,0x70,0x54,0x55,0xc8,0x60,0x54,0xfb,0xf3,0x70,0x56, + 0x35,0xaa,0x60,0x56,0xe5,0xf,0xf0,0x58,0x1e,0xc6,0xe0,0x58,0xc4,0xf1,0xf0,0x59, + 0xfe,0xa8,0xe0,0x5a,0xa4,0xd3,0xf0,0x5b,0xde,0x8a,0xe0,0x5c,0x84,0xb5,0xf0,0x5d, + 0xbe,0x6c,0xe0,0x5e,0x64,0x97,0xf0,0x5f,0x9e,0x4e,0xe0,0x60,0x4d,0xb4,0x70,0x61, + 0x87,0x6b,0x60,0x62,0x2d,0x96,0x70,0x63,0x67,0x4d,0x60,0x64,0xd,0x78,0x70,0x65, + 0x47,0x2f,0x60,0x65,0xed,0x5a,0x70,0x67,0x27,0x11,0x60,0x67,0xcd,0x3c,0x70,0x69, + 0x6,0xf3,0x60,0x69,0xad,0x1e,0x70,0x6a,0xe6,0xd5,0x60,0x6b,0x96,0x3a,0xf0,0x6c, + 0xcf,0xf1,0xe0,0x6d,0x76,0x1c,0xf0,0x6e,0xaf,0xd3,0xe0,0x6f,0x55,0xfe,0xf0,0x70, + 0x8f,0xb5,0xe0,0x71,0x35,0xe0,0xf0,0x72,0x6f,0x97,0xe0,0x73,0x15,0xc2,0xf0,0x74, + 0x4f,0x79,0xe0,0x74,0xfe,0xdf,0x70,0x76,0x38,0x96,0x60,0x76,0xde,0xc1,0x70,0x78, + 0x18,0x78,0x60,0x78,0xbe,0xa3,0x70,0x79,0xf8,0x5a,0x60,0x7a,0x9e,0x85,0x70,0x7b, + 0xd8,0x3c,0x60,0x7c,0x7e,0x67,0x70,0x7d,0xb8,0x1e,0x60,0x7e,0x5e,0x49,0x70,0x7f, + 0x98,0x0,0x60,0x0,0x1,0x2,0x3,0x4,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, + 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, + 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, + 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, + 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, + 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, + 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, + 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, + 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0xff,0xff,0xb2, + 0x25,0x0,0x0,0xff,0xff,0xab,0xa0,0x0,0x4,0xff,0xff,0xb9,0xb0,0x0,0x8,0xff, + 0xff,0xc7,0xc0,0x1,0xc,0xff,0xff,0xc7,0xc0,0x1,0x10,0xff,0xff,0xc7,0xc0,0x1, + 0x14,0x4c,0x4d,0x54,0x0,0x43,0x53,0x54,0x0,0x45,0x53,0x54,0x0,0x45,0x57,0x54, + 0x0,0x45,0x50,0x54,0x0,0x45,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0, + 0x0,0x0,0x0,0x1,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8a,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x18,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x85,0xbd,0x22, + 0x5b,0xff,0xff,0xff,0xff,0x99,0x3c,0x94,0x0,0xff,0xff,0xff,0xff,0xcb,0x88,0xf0, + 0x70,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x60,0xfb, + 0xe0,0xff,0xff,0xff,0xff,0xd7,0x35,0xa8,0xf0,0xff,0xff,0xff,0xff,0xd8,0x0,0xa1, + 0xe0,0x0,0x0,0x0,0x0,0x6,0x40,0xdf,0x70,0x0,0x0,0x0,0x0,0x7,0x30,0xc2, + 0x60,0x0,0x0,0x0,0x0,0x7,0x8d,0x19,0x70,0x0,0x0,0x0,0x0,0x9,0x10,0xa4, + 0x60,0x0,0x0,0x0,0x0,0xa,0x0,0xa3,0x70,0x0,0x0,0x0,0x0,0xa,0xf0,0x86, + 0x60,0x0,0x0,0x0,0x0,0xb,0xe0,0x85,0x70,0x0,0x0,0x0,0x0,0xc,0xd9,0xa2, + 0xe0,0x0,0x0,0x0,0x0,0xd,0xc0,0x67,0x70,0x0,0x0,0x0,0x0,0xe,0xb9,0x84, + 0xe0,0x0,0x0,0x0,0x0,0xf,0xa9,0x83,0xf0,0x0,0x0,0x0,0x0,0x10,0x99,0x66, + 0xe0,0x0,0x0,0x0,0x0,0x11,0x89,0x65,0xf0,0x0,0x0,0x0,0x0,0x12,0x79,0x48, + 0xe0,0x0,0x0,0x0,0x0,0x13,0x69,0x47,0xf0,0x0,0x0,0x0,0x0,0x14,0x59,0x2a, + 0xe0,0x0,0x0,0x0,0x0,0x15,0x49,0x29,0xf0,0x0,0x0,0x0,0x0,0x16,0x39,0xc, + 0xe0,0x0,0x0,0x0,0x0,0x17,0x29,0xb,0xf0,0x0,0x0,0x0,0x0,0x18,0x22,0x29, + 0x60,0x0,0x0,0x0,0x0,0x19,0x8,0xed,0xf0,0x0,0x0,0x0,0x0,0x1a,0x2,0xb, + 0x60,0x0,0x0,0x0,0x0,0x1a,0xf2,0xa,0x70,0x0,0x0,0x0,0x0,0x1b,0xe1,0xed, + 0x60,0x0,0x0,0x0,0x0,0x1c,0xd1,0xec,0x70,0x0,0x0,0x0,0x0,0x1d,0xc1,0xcf, + 0x60,0x0,0x0,0x0,0x0,0x1e,0xb1,0xce,0x70,0x0,0x0,0x0,0x0,0x1f,0xa1,0xb1, + 0x60,0x0,0x0,0x0,0x0,0x20,0x76,0x0,0xf0,0x0,0x0,0x0,0x0,0x21,0x81,0x93, + 0x60,0x0,0x0,0x0,0x0,0x22,0x55,0xe2,0xf0,0x0,0x0,0x0,0x0,0x23,0x6a,0xaf, + 0xe0,0x0,0x0,0x0,0x0,0x24,0x35,0xc4,0xf0,0x0,0x0,0x0,0x0,0x25,0x4a,0x91, + 0xe0,0x0,0x0,0x0,0x0,0x26,0x15,0xa6,0xf0,0x0,0x0,0x0,0x0,0x27,0x2a,0x73, + 0xe0,0x0,0x0,0x0,0x0,0x27,0xfe,0xc3,0x70,0x0,0x0,0x0,0x0,0x29,0xa,0x55, + 0xe0,0x0,0x0,0x0,0x0,0x29,0xde,0xa5,0x70,0x0,0x0,0x0,0x0,0x2a,0xea,0x37, + 0xe0,0x0,0x0,0x0,0x0,0x2b,0xbe,0x87,0x70,0x0,0x0,0x0,0x0,0x2c,0xd3,0x54, + 0x60,0x0,0x0,0x0,0x0,0x2d,0x9e,0x69,0x70,0x0,0x0,0x0,0x0,0x2e,0xb3,0x36, + 0x60,0x0,0x0,0x0,0x0,0x2f,0x7e,0x4b,0x70,0x0,0x0,0x0,0x0,0x30,0x93,0x18, + 0x60,0x0,0x0,0x0,0x0,0x31,0x67,0x67,0xf0,0x0,0x0,0x0,0x0,0x32,0x72,0xfa, + 0x60,0x0,0x0,0x0,0x0,0x33,0x47,0x49,0xf0,0x0,0x0,0x0,0x0,0x34,0x52,0xdc, + 0x60,0x0,0x0,0x0,0x0,0x35,0x27,0x2b,0xf0,0x0,0x0,0x0,0x0,0x36,0x32,0xbe, + 0x60,0x0,0x0,0x0,0x0,0x37,0x7,0xd,0xf0,0x0,0x0,0x0,0x0,0x38,0x1b,0xda, + 0xe0,0x0,0x0,0x0,0x0,0x38,0xe6,0xef,0xf0,0x0,0x0,0x0,0x0,0x39,0xfb,0xbc, + 0xe0,0x0,0x0,0x0,0x0,0x3a,0xc6,0xd1,0xf0,0x0,0x0,0x0,0x0,0x3b,0xdb,0x9e, + 0xe0,0x0,0x0,0x0,0x0,0x3c,0xaf,0xee,0x70,0x0,0x0,0x0,0x0,0x3d,0xbb,0x80, + 0xe0,0x0,0x0,0x0,0x0,0x3e,0x8f,0xd0,0x70,0x0,0x0,0x0,0x0,0x3f,0x9b,0x62, + 0xe0,0x0,0x0,0x0,0x0,0x40,0x6f,0xb2,0x70,0x0,0x0,0x0,0x0,0x41,0x84,0x7f, + 0x60,0x0,0x0,0x0,0x0,0x42,0x4f,0x94,0x70,0x0,0x0,0x0,0x0,0x43,0x64,0x61, + 0x60,0x0,0x0,0x0,0x0,0x44,0x2f,0x76,0x70,0x0,0x0,0x0,0x0,0x45,0x44,0x43, + 0x60,0x0,0x0,0x0,0x0,0x45,0xf3,0xa8,0xf0,0x0,0x0,0x0,0x0,0x47,0x2d,0x5f, + 0xe0,0x0,0x0,0x0,0x0,0x47,0xd3,0x8a,0xf0,0x0,0x0,0x0,0x0,0x49,0xd,0x41, + 0xe0,0x0,0x0,0x0,0x0,0x49,0xb3,0x6c,0xf0,0x0,0x0,0x0,0x0,0x4a,0xed,0x23, + 0xe0,0x0,0x0,0x0,0x0,0x4b,0x9c,0x89,0x70,0x0,0x0,0x0,0x0,0x4c,0xd6,0x40, + 0x60,0x0,0x0,0x0,0x0,0x4d,0x7c,0x6b,0x70,0x0,0x0,0x0,0x0,0x4e,0xb6,0x22, + 0x60,0x0,0x0,0x0,0x0,0x4f,0x5c,0x4d,0x70,0x0,0x0,0x0,0x0,0x50,0x96,0x4, + 0x60,0x0,0x0,0x0,0x0,0x51,0x3c,0x2f,0x70,0x0,0x0,0x0,0x0,0x52,0x75,0xe6, + 0x60,0x0,0x0,0x0,0x0,0x53,0x1c,0x11,0x70,0x0,0x0,0x0,0x0,0x54,0x55,0xc8, + 0x60,0x0,0x0,0x0,0x0,0x54,0xfb,0xf3,0x70,0x0,0x0,0x0,0x0,0x56,0x35,0xaa, + 0x60,0x0,0x0,0x0,0x0,0x56,0xe5,0xf,0xf0,0x0,0x0,0x0,0x0,0x58,0x1e,0xc6, + 0xe0,0x0,0x0,0x0,0x0,0x58,0xc4,0xf1,0xf0,0x0,0x0,0x0,0x0,0x59,0xfe,0xa8, + 0xe0,0x0,0x0,0x0,0x0,0x5a,0xa4,0xd3,0xf0,0x0,0x0,0x0,0x0,0x5b,0xde,0x8a, + 0xe0,0x0,0x0,0x0,0x0,0x5c,0x84,0xb5,0xf0,0x0,0x0,0x0,0x0,0x5d,0xbe,0x6c, + 0xe0,0x0,0x0,0x0,0x0,0x5e,0x64,0x97,0xf0,0x0,0x0,0x0,0x0,0x5f,0x9e,0x4e, + 0xe0,0x0,0x0,0x0,0x0,0x60,0x4d,0xb4,0x70,0x0,0x0,0x0,0x0,0x61,0x87,0x6b, + 0x60,0x0,0x0,0x0,0x0,0x62,0x2d,0x96,0x70,0x0,0x0,0x0,0x0,0x63,0x67,0x4d, + 0x60,0x0,0x0,0x0,0x0,0x64,0xd,0x78,0x70,0x0,0x0,0x0,0x0,0x65,0x47,0x2f, + 0x60,0x0,0x0,0x0,0x0,0x65,0xed,0x5a,0x70,0x0,0x0,0x0,0x0,0x67,0x27,0x11, + 0x60,0x0,0x0,0x0,0x0,0x67,0xcd,0x3c,0x70,0x0,0x0,0x0,0x0,0x69,0x6,0xf3, + 0x60,0x0,0x0,0x0,0x0,0x69,0xad,0x1e,0x70,0x0,0x0,0x0,0x0,0x6a,0xe6,0xd5, + 0x60,0x0,0x0,0x0,0x0,0x6b,0x96,0x3a,0xf0,0x0,0x0,0x0,0x0,0x6c,0xcf,0xf1, + 0xe0,0x0,0x0,0x0,0x0,0x6d,0x76,0x1c,0xf0,0x0,0x0,0x0,0x0,0x6e,0xaf,0xd3, + 0xe0,0x0,0x0,0x0,0x0,0x6f,0x55,0xfe,0xf0,0x0,0x0,0x0,0x0,0x70,0x8f,0xb5, + 0xe0,0x0,0x0,0x0,0x0,0x71,0x35,0xe0,0xf0,0x0,0x0,0x0,0x0,0x72,0x6f,0x97, + 0xe0,0x0,0x0,0x0,0x0,0x73,0x15,0xc2,0xf0,0x0,0x0,0x0,0x0,0x74,0x4f,0x79, + 0xe0,0x0,0x0,0x0,0x0,0x74,0xfe,0xdf,0x70,0x0,0x0,0x0,0x0,0x76,0x38,0x96, + 0x60,0x0,0x0,0x0,0x0,0x76,0xde,0xc1,0x70,0x0,0x0,0x0,0x0,0x78,0x18,0x78, + 0x60,0x0,0x0,0x0,0x0,0x78,0xbe,0xa3,0x70,0x0,0x0,0x0,0x0,0x79,0xf8,0x5a, + 0x60,0x0,0x0,0x0,0x0,0x7a,0x9e,0x85,0x70,0x0,0x0,0x0,0x0,0x7b,0xd8,0x3c, + 0x60,0x0,0x0,0x0,0x0,0x7c,0x7e,0x67,0x70,0x0,0x0,0x0,0x0,0x7d,0xb8,0x1e, + 0x60,0x0,0x0,0x0,0x0,0x7e,0x5e,0x49,0x70,0x0,0x0,0x0,0x0,0x7f,0x98,0x0, + 0x60,0x0,0x1,0x2,0x3,0x4,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, + 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, + 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, + 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, + 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, + 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, + 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, + 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, + 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0xff,0xff,0xb2,0x25,0x0, + 0x0,0xff,0xff,0xab,0xa0,0x0,0x4,0xff,0xff,0xb9,0xb0,0x0,0x8,0xff,0xff,0xc7, + 0xc0,0x1,0xc,0xff,0xff,0xc7,0xc0,0x1,0x10,0xff,0xff,0xc7,0xc0,0x1,0x14,0x4c, + 0x4d,0x54,0x0,0x43,0x53,0x54,0x0,0x45,0x53,0x54,0x0,0x45,0x57,0x54,0x0,0x45, + 0x50,0x54,0x0,0x45,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0, + 0x0,0x1,0x0,0xa,0x45,0x53,0x54,0x35,0x45,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32, + 0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Moncton + 0x0,0x0,0xc,0x5b, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0x8b, - 0xf4,0x61,0xe8,0x1,0x2,0xff,0xff,0xb5,0x70,0x0,0x0,0xff,0xff,0xb5,0x18,0x0, - 0x4,0xff,0xff,0xb9,0xb0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x43,0x4d,0x54,0x0,0x45, - 0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0, - 0x3,0x0,0x0,0x0,0xc,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff, - 0xff,0x69,0x87,0x26,0x10,0xff,0xff,0xff,0xff,0x8b,0xf4,0x61,0xe8,0x0,0x1,0x2, - 0xff,0xff,0xb5,0x70,0x0,0x0,0xff,0xff,0xb5,0x18,0x0,0x4,0xff,0xff,0xb9,0xb0, - 0x0,0x8,0x4c,0x4d,0x54,0x0,0x43,0x4d,0x54,0x0,0x45,0x53,0x54,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0xa,0x45,0x53,0x54,0x35,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Maceio - 0x0,0x0,0x2,0xf4, + 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xcf,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x80,0x0,0x0,0x0,0x80, + 0xf1,0xb6,0x50,0x9e,0xb8,0x85,0x60,0x9f,0xba,0xdd,0x50,0xbb,0x3c,0x38,0xd0,0xbb, + 0xb4,0x23,0x40,0xbd,0x1c,0x1a,0xd0,0xbd,0x94,0x5,0x40,0xbe,0xfb,0xfc,0xd0,0xbf, + 0x73,0xe7,0x40,0xc0,0xdb,0xde,0xd0,0xc1,0x53,0xc9,0x40,0xc2,0xbb,0xc0,0xd0,0xc3, + 0x33,0xab,0x40,0xc4,0x9b,0xa2,0xd0,0xc5,0x13,0x8d,0x40,0xc6,0x70,0xf8,0xd0,0xc7, + 0xd,0xcd,0x40,0xc8,0x48,0xf1,0xd0,0xc8,0xed,0xaf,0x40,0xca,0x16,0x5e,0xd0,0xca, + 0xd6,0xcb,0xc0,0xcb,0x88,0xe2,0x60,0xd2,0x23,0xf4,0x70,0xd2,0x60,0xed,0xd0,0xd3, + 0x75,0xd6,0xe0,0xd4,0x40,0xcf,0xd0,0xd5,0x55,0xb8,0xe0,0xd6,0x20,0xb1,0xd0,0xd7, + 0x35,0x9a,0xe0,0xd8,0x0,0x93,0xd0,0xd9,0x15,0x7c,0xe0,0xd9,0xe0,0x75,0xd0,0xda, + 0xfe,0x99,0x60,0xdb,0xc0,0x57,0xd0,0xdc,0xde,0x7b,0x60,0xdd,0xa9,0x74,0x50,0xde, + 0xbe,0x5d,0x60,0xdf,0x89,0x56,0x50,0xe0,0x9e,0x3f,0x60,0xe1,0x69,0x38,0x50,0xe2, + 0x7e,0x21,0x60,0xe3,0x49,0x1a,0x50,0xe4,0x5e,0x3,0x60,0xe5,0x28,0xfc,0x50,0xe6, + 0x47,0x1f,0xe0,0xe7,0x12,0x18,0xd0,0xe8,0x27,0x1,0xe0,0xe9,0x16,0xe4,0xd0,0xea, + 0x6,0xe3,0xe0,0xea,0xf6,0xc6,0xd0,0xeb,0xe6,0xc5,0xe0,0xec,0xd6,0xa8,0xd0,0xed, + 0xc6,0xa7,0xe0,0xee,0xbf,0xc5,0x50,0xef,0xaf,0xc4,0x60,0xf0,0x9f,0xa7,0x50,0xf1, + 0x8f,0xa6,0x60,0xf2,0x7f,0x89,0x50,0xf3,0x6f,0x88,0x60,0xf4,0x5f,0x6b,0x50,0xf5, + 0x4f,0x6a,0x60,0xf6,0x3f,0x4d,0x50,0xf7,0x2f,0x4c,0x60,0xf8,0x28,0x69,0xd0,0xf9, + 0xf,0x2e,0x60,0xfa,0x8,0x4b,0xd0,0xfa,0xf8,0x4a,0xe0,0xfb,0xe8,0x2d,0xd0,0xfc, + 0xd8,0x2c,0xe0,0xfd,0xc8,0xf,0xd0,0xfe,0xb8,0xe,0xe0,0xff,0xa7,0xf1,0xd0,0x0, + 0x97,0xf0,0xe0,0x1,0x87,0xd3,0xd0,0x2,0x77,0xd2,0xe0,0x3,0x70,0xf0,0x50,0x4, + 0x60,0xef,0x60,0x5,0x50,0xd2,0x50,0x8,0x20,0xb3,0x60,0x9,0x10,0x96,0x50,0xa, + 0x0,0x95,0x60,0xa,0xf0,0x78,0x50,0xb,0xe0,0x77,0x60,0xc,0xd9,0x94,0xd0,0xd, + 0xc0,0x59,0x60,0xe,0xb9,0x76,0xd0,0xf,0xa9,0x75,0xe0,0x10,0x99,0x58,0xd0,0x11, + 0x89,0x57,0xe0,0x12,0x79,0x3a,0xd0,0x13,0x69,0x39,0xe0,0x14,0x59,0x1c,0xd0,0x15, + 0x49,0x1b,0xe0,0x16,0x38,0xfe,0xd0,0x17,0x28,0xfd,0xe0,0x18,0x22,0x1b,0x50,0x19, + 0x8,0xdf,0xe0,0x1a,0x1,0xfd,0x50,0x1a,0xf1,0xfc,0x60,0x1b,0xe1,0xdf,0x50,0x1c, + 0xd1,0xde,0x60,0x1d,0xc1,0xc1,0x50,0x1e,0xb1,0xc0,0x60,0x1f,0xa1,0xa3,0x50,0x20, + 0x75,0xf2,0xe0,0x21,0x81,0x85,0x50,0x22,0x55,0xd4,0xe0,0x23,0x6a,0xa1,0xd0,0x24, + 0x35,0xb6,0xe0,0x25,0x4a,0x83,0xd0,0x26,0x15,0x98,0xe0,0x27,0x2a,0x65,0xd0,0x27, + 0xfe,0xb5,0x60,0x29,0xa,0x47,0xd0,0x29,0xde,0x97,0x60,0x2a,0xea,0x29,0xd0,0x2b, + 0xbe,0x5d,0x7c,0x2c,0xd3,0x2a,0x6c,0x2d,0x9e,0x3f,0x7c,0x2e,0xb3,0xc,0x6c,0x2f, + 0x7e,0x21,0x7c,0x30,0x92,0xee,0x6c,0x31,0x67,0x3d,0xfc,0x32,0x72,0xd0,0x6c,0x33, + 0x47,0x1f,0xfc,0x34,0x52,0xb2,0x6c,0x35,0x27,0x1,0xfc,0x36,0x32,0x94,0x6c,0x37, + 0x6,0xe3,0xfc,0x38,0x1b,0xb0,0xec,0x38,0xe6,0xc5,0xfc,0x39,0xfb,0x92,0xec,0x3a, + 0xc6,0xa7,0xfc,0x3b,0xdb,0x74,0xec,0x3c,0xaf,0xc4,0x7c,0x3d,0xbb,0x56,0xec,0x3e, + 0x8f,0xa6,0x7c,0x3f,0x9b,0x38,0xec,0x40,0x6f,0x88,0x7c,0x41,0x84,0x55,0x6c,0x42, + 0x4f,0x6a,0x7c,0x43,0x64,0x37,0x6c,0x44,0x2f,0x4c,0x7c,0x45,0x44,0x19,0x6c,0x45, + 0xf3,0x9a,0xe0,0x47,0x2d,0x51,0xd0,0x47,0xd3,0x7c,0xe0,0x49,0xd,0x33,0xd0,0x49, + 0xb3,0x5e,0xe0,0x4a,0xed,0x15,0xd0,0x4b,0x9c,0x7b,0x60,0x4c,0xd6,0x32,0x50,0x4d, + 0x7c,0x5d,0x60,0x4e,0xb6,0x14,0x50,0x4f,0x5c,0x3f,0x60,0x50,0x95,0xf6,0x50,0x51, + 0x3c,0x21,0x60,0x52,0x75,0xd8,0x50,0x53,0x1c,0x3,0x60,0x54,0x55,0xba,0x50,0x54, + 0xfb,0xe5,0x60,0x56,0x35,0x9c,0x50,0x56,0xe5,0x1,0xe0,0x58,0x1e,0xb8,0xd0,0x58, + 0xc4,0xe3,0xe0,0x59,0xfe,0x9a,0xd0,0x5a,0xa4,0xc5,0xe0,0x5b,0xde,0x7c,0xd0,0x5c, + 0x84,0xa7,0xe0,0x5d,0xbe,0x5e,0xd0,0x5e,0x64,0x89,0xe0,0x5f,0x9e,0x40,0xd0,0x60, + 0x4d,0xa6,0x60,0x61,0x87,0x5d,0x50,0x62,0x2d,0x88,0x60,0x63,0x67,0x3f,0x50,0x64, + 0xd,0x6a,0x60,0x65,0x47,0x21,0x50,0x65,0xed,0x4c,0x60,0x67,0x27,0x3,0x50,0x67, + 0xcd,0x2e,0x60,0x69,0x6,0xe5,0x50,0x69,0xad,0x10,0x60,0x6a,0xe6,0xc7,0x50,0x6b, + 0x96,0x2c,0xe0,0x6c,0xcf,0xe3,0xd0,0x6d,0x76,0xe,0xe0,0x6e,0xaf,0xc5,0xd0,0x6f, + 0x55,0xf0,0xe0,0x70,0x8f,0xa7,0xd0,0x71,0x35,0xd2,0xe0,0x72,0x6f,0x89,0xd0,0x73, + 0x15,0xb4,0xe0,0x74,0x4f,0x6b,0xd0,0x74,0xfe,0xd1,0x60,0x76,0x38,0x88,0x50,0x76, + 0xde,0xb3,0x60,0x78,0x18,0x6a,0x50,0x78,0xbe,0x95,0x60,0x79,0xf8,0x4c,0x50,0x7a, + 0x9e,0x77,0x60,0x7b,0xd8,0x2e,0x50,0x7c,0x7e,0x59,0x60,0x7d,0xb8,0x10,0x50,0x7e, + 0x5e,0x3b,0x60,0x7f,0x97,0xf2,0x50,0x1,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x4,0x5,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0xff,0xff,0xc3,0x44,0x0,0x0,0xff,0xff,0xb9,0xb0, + 0x0,0x4,0xff,0xff,0xd5,0xd0,0x1,0x8,0xff,0xff,0xc7,0xc0,0x0,0xc,0xff,0xff, + 0xd5,0xd0,0x1,0x10,0xff,0xff,0xd5,0xd0,0x1,0x14,0x4c,0x4d,0x54,0x0,0x45,0x53, + 0x54,0x0,0x41,0x44,0x54,0x0,0x41,0x53,0x54,0x0,0x41,0x57,0x54,0x0,0x41,0x50, + 0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x54,0x5a, + 0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xd0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0xf8,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xff,0xff,0xff,0xff,0x5e,0x1e,0xed,0xbc,0xff,0xff,0xff,0xff,0x80,0xf1, + 0xb6,0x50,0xff,0xff,0xff,0xff,0x9e,0xb8,0x85,0x60,0xff,0xff,0xff,0xff,0x9f,0xba, + 0xdd,0x50,0xff,0xff,0xff,0xff,0xbb,0x3c,0x38,0xd0,0xff,0xff,0xff,0xff,0xbb,0xb4, + 0x23,0x40,0xff,0xff,0xff,0xff,0xbd,0x1c,0x1a,0xd0,0xff,0xff,0xff,0xff,0xbd,0x94, + 0x5,0x40,0xff,0xff,0xff,0xff,0xbe,0xfb,0xfc,0xd0,0xff,0xff,0xff,0xff,0xbf,0x73, + 0xe7,0x40,0xff,0xff,0xff,0xff,0xc0,0xdb,0xde,0xd0,0xff,0xff,0xff,0xff,0xc1,0x53, + 0xc9,0x40,0xff,0xff,0xff,0xff,0xc2,0xbb,0xc0,0xd0,0xff,0xff,0xff,0xff,0xc3,0x33, + 0xab,0x40,0xff,0xff,0xff,0xff,0xc4,0x9b,0xa2,0xd0,0xff,0xff,0xff,0xff,0xc5,0x13, + 0x8d,0x40,0xff,0xff,0xff,0xff,0xc6,0x70,0xf8,0xd0,0xff,0xff,0xff,0xff,0xc7,0xd, + 0xcd,0x40,0xff,0xff,0xff,0xff,0xc8,0x48,0xf1,0xd0,0xff,0xff,0xff,0xff,0xc8,0xed, + 0xaf,0x40,0xff,0xff,0xff,0xff,0xca,0x16,0x5e,0xd0,0xff,0xff,0xff,0xff,0xca,0xd6, + 0xcb,0xc0,0xff,0xff,0xff,0xff,0xcb,0x88,0xe2,0x60,0xff,0xff,0xff,0xff,0xd2,0x23, + 0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x60,0xed,0xd0,0xff,0xff,0xff,0xff,0xd3,0x75, + 0xd6,0xe0,0xff,0xff,0xff,0xff,0xd4,0x40,0xcf,0xd0,0xff,0xff,0xff,0xff,0xd5,0x55, + 0xb8,0xe0,0xff,0xff,0xff,0xff,0xd6,0x20,0xb1,0xd0,0xff,0xff,0xff,0xff,0xd7,0x35, + 0x9a,0xe0,0xff,0xff,0xff,0xff,0xd8,0x0,0x93,0xd0,0xff,0xff,0xff,0xff,0xd9,0x15, + 0x7c,0xe0,0xff,0xff,0xff,0xff,0xd9,0xe0,0x75,0xd0,0xff,0xff,0xff,0xff,0xda,0xfe, + 0x99,0x60,0xff,0xff,0xff,0xff,0xdb,0xc0,0x57,0xd0,0xff,0xff,0xff,0xff,0xdc,0xde, + 0x7b,0x60,0xff,0xff,0xff,0xff,0xdd,0xa9,0x74,0x50,0xff,0xff,0xff,0xff,0xde,0xbe, + 0x5d,0x60,0xff,0xff,0xff,0xff,0xdf,0x89,0x56,0x50,0xff,0xff,0xff,0xff,0xe0,0x9e, + 0x3f,0x60,0xff,0xff,0xff,0xff,0xe1,0x69,0x38,0x50,0xff,0xff,0xff,0xff,0xe2,0x7e, + 0x21,0x60,0xff,0xff,0xff,0xff,0xe3,0x49,0x1a,0x50,0xff,0xff,0xff,0xff,0xe4,0x5e, + 0x3,0x60,0xff,0xff,0xff,0xff,0xe5,0x28,0xfc,0x50,0xff,0xff,0xff,0xff,0xe6,0x47, + 0x1f,0xe0,0xff,0xff,0xff,0xff,0xe7,0x12,0x18,0xd0,0xff,0xff,0xff,0xff,0xe8,0x27, + 0x1,0xe0,0xff,0xff,0xff,0xff,0xe9,0x16,0xe4,0xd0,0xff,0xff,0xff,0xff,0xea,0x6, + 0xe3,0xe0,0xff,0xff,0xff,0xff,0xea,0xf6,0xc6,0xd0,0xff,0xff,0xff,0xff,0xeb,0xe6, + 0xc5,0xe0,0xff,0xff,0xff,0xff,0xec,0xd6,0xa8,0xd0,0xff,0xff,0xff,0xff,0xed,0xc6, + 0xa7,0xe0,0xff,0xff,0xff,0xff,0xee,0xbf,0xc5,0x50,0xff,0xff,0xff,0xff,0xef,0xaf, + 0xc4,0x60,0xff,0xff,0xff,0xff,0xf0,0x9f,0xa7,0x50,0xff,0xff,0xff,0xff,0xf1,0x8f, + 0xa6,0x60,0xff,0xff,0xff,0xff,0xf2,0x7f,0x89,0x50,0xff,0xff,0xff,0xff,0xf3,0x6f, + 0x88,0x60,0xff,0xff,0xff,0xff,0xf4,0x5f,0x6b,0x50,0xff,0xff,0xff,0xff,0xf5,0x4f, + 0x6a,0x60,0xff,0xff,0xff,0xff,0xf6,0x3f,0x4d,0x50,0xff,0xff,0xff,0xff,0xf7,0x2f, + 0x4c,0x60,0xff,0xff,0xff,0xff,0xf8,0x28,0x69,0xd0,0xff,0xff,0xff,0xff,0xf9,0xf, + 0x2e,0x60,0xff,0xff,0xff,0xff,0xfa,0x8,0x4b,0xd0,0xff,0xff,0xff,0xff,0xfa,0xf8, + 0x4a,0xe0,0xff,0xff,0xff,0xff,0xfb,0xe8,0x2d,0xd0,0xff,0xff,0xff,0xff,0xfc,0xd8, + 0x2c,0xe0,0xff,0xff,0xff,0xff,0xfd,0xc8,0xf,0xd0,0xff,0xff,0xff,0xff,0xfe,0xb8, + 0xe,0xe0,0xff,0xff,0xff,0xff,0xff,0xa7,0xf1,0xd0,0x0,0x0,0x0,0x0,0x0,0x97, + 0xf0,0xe0,0x0,0x0,0x0,0x0,0x1,0x87,0xd3,0xd0,0x0,0x0,0x0,0x0,0x2,0x77, + 0xd2,0xe0,0x0,0x0,0x0,0x0,0x3,0x70,0xf0,0x50,0x0,0x0,0x0,0x0,0x4,0x60, + 0xef,0x60,0x0,0x0,0x0,0x0,0x5,0x50,0xd2,0x50,0x0,0x0,0x0,0x0,0x8,0x20, + 0xb3,0x60,0x0,0x0,0x0,0x0,0x9,0x10,0x96,0x50,0x0,0x0,0x0,0x0,0xa,0x0, + 0x95,0x60,0x0,0x0,0x0,0x0,0xa,0xf0,0x78,0x50,0x0,0x0,0x0,0x0,0xb,0xe0, + 0x77,0x60,0x0,0x0,0x0,0x0,0xc,0xd9,0x94,0xd0,0x0,0x0,0x0,0x0,0xd,0xc0, + 0x59,0x60,0x0,0x0,0x0,0x0,0xe,0xb9,0x76,0xd0,0x0,0x0,0x0,0x0,0xf,0xa9, + 0x75,0xe0,0x0,0x0,0x0,0x0,0x10,0x99,0x58,0xd0,0x0,0x0,0x0,0x0,0x11,0x89, + 0x57,0xe0,0x0,0x0,0x0,0x0,0x12,0x79,0x3a,0xd0,0x0,0x0,0x0,0x0,0x13,0x69, + 0x39,0xe0,0x0,0x0,0x0,0x0,0x14,0x59,0x1c,0xd0,0x0,0x0,0x0,0x0,0x15,0x49, + 0x1b,0xe0,0x0,0x0,0x0,0x0,0x16,0x38,0xfe,0xd0,0x0,0x0,0x0,0x0,0x17,0x28, + 0xfd,0xe0,0x0,0x0,0x0,0x0,0x18,0x22,0x1b,0x50,0x0,0x0,0x0,0x0,0x19,0x8, + 0xdf,0xe0,0x0,0x0,0x0,0x0,0x1a,0x1,0xfd,0x50,0x0,0x0,0x0,0x0,0x1a,0xf1, + 0xfc,0x60,0x0,0x0,0x0,0x0,0x1b,0xe1,0xdf,0x50,0x0,0x0,0x0,0x0,0x1c,0xd1, + 0xde,0x60,0x0,0x0,0x0,0x0,0x1d,0xc1,0xc1,0x50,0x0,0x0,0x0,0x0,0x1e,0xb1, + 0xc0,0x60,0x0,0x0,0x0,0x0,0x1f,0xa1,0xa3,0x50,0x0,0x0,0x0,0x0,0x20,0x75, + 0xf2,0xe0,0x0,0x0,0x0,0x0,0x21,0x81,0x85,0x50,0x0,0x0,0x0,0x0,0x22,0x55, + 0xd4,0xe0,0x0,0x0,0x0,0x0,0x23,0x6a,0xa1,0xd0,0x0,0x0,0x0,0x0,0x24,0x35, + 0xb6,0xe0,0x0,0x0,0x0,0x0,0x25,0x4a,0x83,0xd0,0x0,0x0,0x0,0x0,0x26,0x15, + 0x98,0xe0,0x0,0x0,0x0,0x0,0x27,0x2a,0x65,0xd0,0x0,0x0,0x0,0x0,0x27,0xfe, + 0xb5,0x60,0x0,0x0,0x0,0x0,0x29,0xa,0x47,0xd0,0x0,0x0,0x0,0x0,0x29,0xde, + 0x97,0x60,0x0,0x0,0x0,0x0,0x2a,0xea,0x29,0xd0,0x0,0x0,0x0,0x0,0x2b,0xbe, + 0x5d,0x7c,0x0,0x0,0x0,0x0,0x2c,0xd3,0x2a,0x6c,0x0,0x0,0x0,0x0,0x2d,0x9e, + 0x3f,0x7c,0x0,0x0,0x0,0x0,0x2e,0xb3,0xc,0x6c,0x0,0x0,0x0,0x0,0x2f,0x7e, + 0x21,0x7c,0x0,0x0,0x0,0x0,0x30,0x92,0xee,0x6c,0x0,0x0,0x0,0x0,0x31,0x67, + 0x3d,0xfc,0x0,0x0,0x0,0x0,0x32,0x72,0xd0,0x6c,0x0,0x0,0x0,0x0,0x33,0x47, + 0x1f,0xfc,0x0,0x0,0x0,0x0,0x34,0x52,0xb2,0x6c,0x0,0x0,0x0,0x0,0x35,0x27, + 0x1,0xfc,0x0,0x0,0x0,0x0,0x36,0x32,0x94,0x6c,0x0,0x0,0x0,0x0,0x37,0x6, + 0xe3,0xfc,0x0,0x0,0x0,0x0,0x38,0x1b,0xb0,0xec,0x0,0x0,0x0,0x0,0x38,0xe6, + 0xc5,0xfc,0x0,0x0,0x0,0x0,0x39,0xfb,0x92,0xec,0x0,0x0,0x0,0x0,0x3a,0xc6, + 0xa7,0xfc,0x0,0x0,0x0,0x0,0x3b,0xdb,0x74,0xec,0x0,0x0,0x0,0x0,0x3c,0xaf, + 0xc4,0x7c,0x0,0x0,0x0,0x0,0x3d,0xbb,0x56,0xec,0x0,0x0,0x0,0x0,0x3e,0x8f, + 0xa6,0x7c,0x0,0x0,0x0,0x0,0x3f,0x9b,0x38,0xec,0x0,0x0,0x0,0x0,0x40,0x6f, + 0x88,0x7c,0x0,0x0,0x0,0x0,0x41,0x84,0x55,0x6c,0x0,0x0,0x0,0x0,0x42,0x4f, + 0x6a,0x7c,0x0,0x0,0x0,0x0,0x43,0x64,0x37,0x6c,0x0,0x0,0x0,0x0,0x44,0x2f, + 0x4c,0x7c,0x0,0x0,0x0,0x0,0x45,0x44,0x19,0x6c,0x0,0x0,0x0,0x0,0x45,0xf3, + 0x9a,0xe0,0x0,0x0,0x0,0x0,0x47,0x2d,0x51,0xd0,0x0,0x0,0x0,0x0,0x47,0xd3, + 0x7c,0xe0,0x0,0x0,0x0,0x0,0x49,0xd,0x33,0xd0,0x0,0x0,0x0,0x0,0x49,0xb3, + 0x5e,0xe0,0x0,0x0,0x0,0x0,0x4a,0xed,0x15,0xd0,0x0,0x0,0x0,0x0,0x4b,0x9c, + 0x7b,0x60,0x0,0x0,0x0,0x0,0x4c,0xd6,0x32,0x50,0x0,0x0,0x0,0x0,0x4d,0x7c, + 0x5d,0x60,0x0,0x0,0x0,0x0,0x4e,0xb6,0x14,0x50,0x0,0x0,0x0,0x0,0x4f,0x5c, + 0x3f,0x60,0x0,0x0,0x0,0x0,0x50,0x95,0xf6,0x50,0x0,0x0,0x0,0x0,0x51,0x3c, + 0x21,0x60,0x0,0x0,0x0,0x0,0x52,0x75,0xd8,0x50,0x0,0x0,0x0,0x0,0x53,0x1c, + 0x3,0x60,0x0,0x0,0x0,0x0,0x54,0x55,0xba,0x50,0x0,0x0,0x0,0x0,0x54,0xfb, + 0xe5,0x60,0x0,0x0,0x0,0x0,0x56,0x35,0x9c,0x50,0x0,0x0,0x0,0x0,0x56,0xe5, + 0x1,0xe0,0x0,0x0,0x0,0x0,0x58,0x1e,0xb8,0xd0,0x0,0x0,0x0,0x0,0x58,0xc4, + 0xe3,0xe0,0x0,0x0,0x0,0x0,0x59,0xfe,0x9a,0xd0,0x0,0x0,0x0,0x0,0x5a,0xa4, + 0xc5,0xe0,0x0,0x0,0x0,0x0,0x5b,0xde,0x7c,0xd0,0x0,0x0,0x0,0x0,0x5c,0x84, + 0xa7,0xe0,0x0,0x0,0x0,0x0,0x5d,0xbe,0x5e,0xd0,0x0,0x0,0x0,0x0,0x5e,0x64, + 0x89,0xe0,0x0,0x0,0x0,0x0,0x5f,0x9e,0x40,0xd0,0x0,0x0,0x0,0x0,0x60,0x4d, + 0xa6,0x60,0x0,0x0,0x0,0x0,0x61,0x87,0x5d,0x50,0x0,0x0,0x0,0x0,0x62,0x2d, + 0x88,0x60,0x0,0x0,0x0,0x0,0x63,0x67,0x3f,0x50,0x0,0x0,0x0,0x0,0x64,0xd, + 0x6a,0x60,0x0,0x0,0x0,0x0,0x65,0x47,0x21,0x50,0x0,0x0,0x0,0x0,0x65,0xed, + 0x4c,0x60,0x0,0x0,0x0,0x0,0x67,0x27,0x3,0x50,0x0,0x0,0x0,0x0,0x67,0xcd, + 0x2e,0x60,0x0,0x0,0x0,0x0,0x69,0x6,0xe5,0x50,0x0,0x0,0x0,0x0,0x69,0xad, + 0x10,0x60,0x0,0x0,0x0,0x0,0x6a,0xe6,0xc7,0x50,0x0,0x0,0x0,0x0,0x6b,0x96, + 0x2c,0xe0,0x0,0x0,0x0,0x0,0x6c,0xcf,0xe3,0xd0,0x0,0x0,0x0,0x0,0x6d,0x76, + 0xe,0xe0,0x0,0x0,0x0,0x0,0x6e,0xaf,0xc5,0xd0,0x0,0x0,0x0,0x0,0x6f,0x55, + 0xf0,0xe0,0x0,0x0,0x0,0x0,0x70,0x8f,0xa7,0xd0,0x0,0x0,0x0,0x0,0x71,0x35, + 0xd2,0xe0,0x0,0x0,0x0,0x0,0x72,0x6f,0x89,0xd0,0x0,0x0,0x0,0x0,0x73,0x15, + 0xb4,0xe0,0x0,0x0,0x0,0x0,0x74,0x4f,0x6b,0xd0,0x0,0x0,0x0,0x0,0x74,0xfe, + 0xd1,0x60,0x0,0x0,0x0,0x0,0x76,0x38,0x88,0x50,0x0,0x0,0x0,0x0,0x76,0xde, + 0xb3,0x60,0x0,0x0,0x0,0x0,0x78,0x18,0x6a,0x50,0x0,0x0,0x0,0x0,0x78,0xbe, + 0x95,0x60,0x0,0x0,0x0,0x0,0x79,0xf8,0x4c,0x50,0x0,0x0,0x0,0x0,0x7a,0x9e, + 0x77,0x60,0x0,0x0,0x0,0x0,0x7b,0xd8,0x2e,0x50,0x0,0x0,0x0,0x0,0x7c,0x7e, + 0x59,0x60,0x0,0x0,0x0,0x0,0x7d,0xb8,0x10,0x50,0x0,0x0,0x0,0x0,0x7e,0x5e, + 0x3b,0x60,0x0,0x0,0x0,0x0,0x7f,0x97,0xf2,0x50,0x0,0x1,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x4,0x5,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0xff,0xff,0xc3,0x44,0x0,0x0, + 0xff,0xff,0xb9,0xb0,0x0,0x4,0xff,0xff,0xd5,0xd0,0x1,0x8,0xff,0xff,0xc7,0xc0, + 0x0,0xc,0xff,0xff,0xd5,0xd0,0x1,0x10,0xff,0xff,0xd5,0xd0,0x1,0x14,0x4c,0x4d, + 0x54,0x0,0x45,0x53,0x54,0x0,0x41,0x44,0x54,0x0,0x41,0x53,0x54,0x0,0x41,0x57, + 0x54,0x0,0x41,0x50,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0, + 0x0,0x1,0xa,0x41,0x53,0x54,0x34,0x41,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e, + 0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Phoenix + 0x0,0x0,0x1,0x61, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2a,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0x96, - 0xaa,0x68,0x7c,0xb8,0xf,0x49,0xe0,0xb8,0xfd,0x40,0xa0,0xb9,0xf1,0x34,0x30,0xba, - 0xde,0x74,0x20,0xda,0x38,0xae,0x30,0xda,0xeb,0xfa,0x30,0xdc,0x19,0xe1,0xb0,0xdc, - 0xb9,0x59,0x20,0xdd,0xfb,0x15,0x30,0xde,0x9b,0xde,0x20,0xdf,0xdd,0x9a,0x30,0xe0, - 0x54,0x33,0x20,0xf4,0x97,0xff,0xb0,0xf5,0x5,0x5e,0x20,0xf6,0xc0,0x64,0x30,0xf7, - 0xe,0x1e,0xa0,0xf8,0x51,0x2c,0x30,0xf8,0xc7,0xc5,0x20,0xfa,0xa,0xd2,0xb0,0xfa, - 0xa8,0xf8,0xa0,0xfb,0xec,0x6,0x30,0xfc,0x8b,0x7d,0xa0,0x1d,0xc9,0x8e,0x30,0x1e, - 0x78,0xd7,0xa0,0x1f,0xa0,0x35,0xb0,0x20,0x33,0xcf,0xa0,0x21,0x81,0x69,0x30,0x22, - 0xb,0xc8,0xa0,0x23,0x58,0x10,0xb0,0x23,0xe2,0x70,0x20,0x25,0x37,0xf2,0xb0,0x25, - 0xd4,0xc7,0x20,0x30,0x80,0x79,0x30,0x31,0x1d,0x4d,0xa0,0x37,0xf6,0xc6,0xb0,0x38, - 0xb8,0x85,0x20,0x39,0xdf,0xe3,0x30,0x39,0xf2,0x4a,0x20,0x3b,0xc8,0xff,0xb0,0x3c, - 0x6f,0xe,0xa0,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0xde, - 0x84,0x0,0x0,0xff,0xff,0xe3,0xe0,0x1,0x4,0xff,0xff,0xd5,0xd0,0x0,0x9,0x4c, - 0x4d,0x54,0x0,0x42,0x52,0x53,0x54,0x0,0x42,0x52,0x54,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xb,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x10,0x80,0x0,0x0,0x0,0x9e, + 0xa6,0x3a,0x90,0x9f,0xbb,0x7,0x80,0xa0,0x86,0x1c,0x90,0xa1,0x9a,0xe9,0x80,0xcb, + 0x89,0xc,0x90,0xcf,0x17,0xdf,0x1c,0xcf,0x8f,0xe5,0xac,0xd0,0x81,0x1a,0x1c,0xfa, + 0xf8,0x75,0x10,0xfb,0xe8,0x58,0x0,0x2,0x1,0x2,0x1,0x2,0x3,0x2,0x3,0x2, + 0x1,0x2,0xff,0xff,0x96,0xee,0x0,0x0,0xff,0xff,0xab,0xa0,0x1,0x4,0xff,0xff, + 0x9d,0x90,0x0,0x8,0xff,0xff,0xab,0xa0,0x1,0xc,0x4c,0x4d,0x54,0x0,0x4d,0x44, + 0x54,0x0,0x4d,0x53,0x54,0x0,0x4d,0x57,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x2a,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xd,0xf8,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x96,0xaa,0x68,0x7c,0xff,0xff, - 0xff,0xff,0xb8,0xf,0x49,0xe0,0xff,0xff,0xff,0xff,0xb8,0xfd,0x40,0xa0,0xff,0xff, - 0xff,0xff,0xb9,0xf1,0x34,0x30,0xff,0xff,0xff,0xff,0xba,0xde,0x74,0x20,0xff,0xff, - 0xff,0xff,0xda,0x38,0xae,0x30,0xff,0xff,0xff,0xff,0xda,0xeb,0xfa,0x30,0xff,0xff, - 0xff,0xff,0xdc,0x19,0xe1,0xb0,0xff,0xff,0xff,0xff,0xdc,0xb9,0x59,0x20,0xff,0xff, - 0xff,0xff,0xdd,0xfb,0x15,0x30,0xff,0xff,0xff,0xff,0xde,0x9b,0xde,0x20,0xff,0xff, - 0xff,0xff,0xdf,0xdd,0x9a,0x30,0xff,0xff,0xff,0xff,0xe0,0x54,0x33,0x20,0xff,0xff, - 0xff,0xff,0xf4,0x97,0xff,0xb0,0xff,0xff,0xff,0xff,0xf5,0x5,0x5e,0x20,0xff,0xff, - 0xff,0xff,0xf6,0xc0,0x64,0x30,0xff,0xff,0xff,0xff,0xf7,0xe,0x1e,0xa0,0xff,0xff, - 0xff,0xff,0xf8,0x51,0x2c,0x30,0xff,0xff,0xff,0xff,0xf8,0xc7,0xc5,0x20,0xff,0xff, - 0xff,0xff,0xfa,0xa,0xd2,0xb0,0xff,0xff,0xff,0xff,0xfa,0xa8,0xf8,0xa0,0xff,0xff, - 0xff,0xff,0xfb,0xec,0x6,0x30,0xff,0xff,0xff,0xff,0xfc,0x8b,0x7d,0xa0,0x0,0x0, - 0x0,0x0,0x1d,0xc9,0x8e,0x30,0x0,0x0,0x0,0x0,0x1e,0x78,0xd7,0xa0,0x0,0x0, - 0x0,0x0,0x1f,0xa0,0x35,0xb0,0x0,0x0,0x0,0x0,0x20,0x33,0xcf,0xa0,0x0,0x0, - 0x0,0x0,0x21,0x81,0x69,0x30,0x0,0x0,0x0,0x0,0x22,0xb,0xc8,0xa0,0x0,0x0, - 0x0,0x0,0x23,0x58,0x10,0xb0,0x0,0x0,0x0,0x0,0x23,0xe2,0x70,0x20,0x0,0x0, - 0x0,0x0,0x25,0x37,0xf2,0xb0,0x0,0x0,0x0,0x0,0x25,0xd4,0xc7,0x20,0x0,0x0, - 0x0,0x0,0x30,0x80,0x79,0x30,0x0,0x0,0x0,0x0,0x31,0x1d,0x4d,0xa0,0x0,0x0, - 0x0,0x0,0x37,0xf6,0xc6,0xb0,0x0,0x0,0x0,0x0,0x38,0xb8,0x85,0x20,0x0,0x0, - 0x0,0x0,0x39,0xdf,0xe3,0x30,0x0,0x0,0x0,0x0,0x39,0xf2,0x4a,0x20,0x0,0x0, - 0x0,0x0,0x3b,0xc8,0xff,0xb0,0x0,0x0,0x0,0x0,0x3c,0x6f,0xe,0xa0,0x0,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0xde,0x84,0x0,0x0,0xff,0xff, - 0xe3,0xe0,0x1,0x4,0xff,0xff,0xd5,0xd0,0x0,0x9,0x4c,0x4d,0x54,0x0,0x42,0x52, - 0x53,0x54,0x0,0x42,0x52,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x42,0x52, - 0x54,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Asuncion - 0x0,0x0,0x8,0xe, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x10,0xf8,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x5e,0x4,0xc,0xb0,0xff,0xff, + 0xff,0xff,0x9e,0xa6,0x3a,0x90,0xff,0xff,0xff,0xff,0x9f,0xbb,0x7,0x80,0xff,0xff, + 0xff,0xff,0xa0,0x86,0x1c,0x90,0xff,0xff,0xff,0xff,0xa1,0x9a,0xe9,0x80,0xff,0xff, + 0xff,0xff,0xcb,0x89,0xc,0x90,0xff,0xff,0xff,0xff,0xcf,0x17,0xdf,0x1c,0xff,0xff, + 0xff,0xff,0xcf,0x8f,0xe5,0xac,0xff,0xff,0xff,0xff,0xd0,0x81,0x1a,0x1c,0xff,0xff, + 0xff,0xff,0xfa,0xf8,0x75,0x10,0xff,0xff,0xff,0xff,0xfb,0xe8,0x58,0x0,0x0,0x2, + 0x1,0x2,0x1,0x2,0x3,0x2,0x3,0x2,0x1,0x2,0xff,0xff,0x96,0xee,0x0,0x0, + 0xff,0xff,0xab,0xa0,0x1,0x4,0xff,0xff,0x9d,0x90,0x0,0x8,0xff,0xff,0xab,0xa0, + 0x1,0xc,0x4c,0x4d,0x54,0x0,0x4d,0x44,0x54,0x0,0x4d,0x53,0x54,0x0,0x4d,0x57, + 0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x4d,0x53,0x54,0x37,0xa, + + // /home/konrad/src/smoke/tzone/zoneinfo/America/Resolute + 0x0,0x0,0x7,0x8a, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x81,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x80,0x0,0x0,0x0,0xb8, - 0x17,0xf5,0x90,0x5,0x2b,0xda,0x40,0x7,0xfc,0xf0,0xb0,0xa,0xcf,0x74,0xc0,0xb, - 0x97,0xca,0xb0,0xc,0xb1,0xf9,0xc0,0xd,0x78,0xfe,0x30,0xe,0x93,0x2d,0x40,0xf, - 0x5a,0x31,0xb0,0x10,0x74,0x60,0xc0,0x11,0x64,0x43,0xb0,0x12,0x55,0x94,0x40,0x13, - 0x46,0xc8,0xb0,0x14,0x38,0x19,0x40,0x15,0x27,0xfc,0x30,0x16,0x19,0x4c,0xc0,0x17, - 0x9,0x2f,0xb0,0x17,0xfa,0x80,0x40,0x18,0xea,0x63,0x30,0x19,0xdb,0xb3,0xc0,0x1a, - 0xcc,0xe8,0x30,0x1b,0xbe,0x38,0xc0,0x1c,0xae,0x1b,0xb0,0x1d,0x9f,0x6c,0x40,0x1e, - 0x8f,0x4f,0x30,0x1f,0x80,0x9f,0xc0,0x20,0x70,0x82,0xb0,0x21,0x61,0xd3,0x40,0x22, - 0x53,0x7,0xb0,0x23,0x44,0x58,0x40,0x24,0x34,0x3b,0x30,0x25,0x41,0x3b,0x40,0x26, - 0x15,0x6e,0xb0,0x27,0x6,0xbf,0x40,0x27,0xf6,0xa2,0x30,0x28,0xee,0x8a,0x40,0x29, - 0xb0,0x48,0xb0,0x2a,0xcf,0xbd,0xc0,0x2b,0xb9,0x9,0x30,0x2c,0xab,0xab,0x40,0x2d, - 0x70,0xc,0xb0,0x2e,0x8c,0xde,0xc0,0x2f,0x4f,0xee,0xb0,0x30,0x6e,0x12,0x40,0x31, - 0x36,0x68,0x30,0x32,0x57,0x2e,0xc0,0x33,0xf,0xb2,0xb0,0x34,0x37,0x10,0xc0,0x34, - 0xf8,0xcf,0x30,0x36,0x16,0xf2,0xc0,0x36,0xe1,0xeb,0xb0,0x37,0xf6,0xd4,0xc0,0x38, - 0xc1,0xcd,0xb0,0x39,0xd6,0xb6,0xc0,0x3a,0xa1,0xaf,0xb0,0x3b,0xbf,0xd3,0x40,0x3c, - 0xaf,0xb6,0x30,0x3d,0x71,0x90,0xc0,0x3e,0x8f,0x98,0x30,0x3f,0x5a,0xad,0x40,0x40, - 0x6f,0x7a,0x30,0x41,0x71,0xee,0x40,0x42,0x33,0xac,0xb0,0x43,0x51,0xd0,0x40,0x44, - 0x13,0x8e,0xb0,0x45,0x31,0xb2,0x40,0x45,0xf3,0x70,0xb0,0x47,0x1a,0xce,0xc0,0x47, - 0xd3,0x52,0xb0,0x48,0xfa,0xb0,0xc0,0x49,0xb3,0x34,0xb0,0x4a,0xda,0x92,0xc0,0x4b, - 0xc1,0x3b,0x30,0x4c,0xa7,0xff,0xc0,0x4d,0xa1,0x1d,0x30,0x4e,0x87,0xe1,0xc0,0x4f, - 0x80,0xff,0x30,0x50,0x70,0xfe,0x40,0x51,0x4e,0x6c,0x30,0x52,0x50,0xe0,0x40,0x53, - 0x2e,0x4e,0x30,0x54,0x30,0xc2,0x40,0x55,0xe,0x30,0x30,0x56,0x10,0xa4,0x40,0x56, - 0xf7,0x4c,0xb0,0x57,0xf0,0x86,0x40,0x58,0xd7,0x2e,0xb0,0x59,0xd0,0x68,0x40,0x5a, - 0xb7,0x10,0xb0,0x5b,0xb9,0x84,0xc0,0x5c,0x96,0xf2,0xb0,0x5d,0x99,0x66,0xc0,0x5e, - 0x76,0xd4,0xb0,0x5f,0x79,0x48,0xc0,0x60,0x5f,0xf1,0x30,0x61,0x59,0x2a,0xc0,0x62, - 0x3f,0xd3,0x30,0x63,0x39,0xc,0xc0,0x64,0x1f,0xb5,0x30,0x65,0x18,0xee,0xc0,0x65, - 0xff,0x97,0x30,0x67,0x2,0xb,0x40,0x67,0xdf,0x79,0x30,0x68,0xe1,0xed,0x40,0x69, - 0xbf,0x5b,0x30,0x6a,0xc1,0xcf,0x40,0x6b,0xa8,0x77,0xb0,0x6c,0xa1,0xb1,0x40,0x6d, - 0x88,0x59,0xb0,0x6e,0x81,0x93,0x40,0x6f,0x68,0x3b,0xb0,0x70,0x6a,0xaf,0xc0,0x71, - 0x48,0x1d,0xb0,0x72,0x4a,0x91,0xc0,0x73,0x27,0xff,0xb0,0x74,0x2a,0x73,0xc0,0x75, - 0x11,0x1c,0x30,0x76,0xa,0x55,0xc0,0x76,0xf0,0xfe,0x30,0x77,0xea,0x37,0xc0,0x78, - 0xd0,0xe0,0x30,0x79,0xca,0x19,0xc0,0x7a,0xb0,0xc2,0x30,0x7b,0xb3,0x36,0x40,0x7c, - 0x90,0xa4,0x30,0x7d,0x93,0x18,0x40,0x7e,0x70,0x86,0x30,0x7f,0x72,0xfa,0x40,0x1, - 0x2,0x3,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4, - 0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4, - 0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4, - 0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4, - 0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4, - 0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4, - 0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4, - 0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4, - 0xff,0xff,0xc9,0xf0,0x0,0x0,0xff,0xff,0xc9,0xf0,0x0,0x4,0xff,0xff,0xc7,0xc0, - 0x0,0x8,0xff,0xff,0xd5,0xd0,0x0,0x8,0xff,0xff,0xd5,0xd0,0x1,0xc,0xff,0xff, - 0xc7,0xc0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x41,0x4d,0x54,0x0,0x50,0x59,0x54,0x0, - 0x50,0x59,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x82,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0xf8,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x69,0x87,0x11,0x90,0xff,0xff,0xff, - 0xff,0xb8,0x17,0xf5,0x90,0x0,0x0,0x0,0x0,0x5,0x2b,0xda,0x40,0x0,0x0,0x0, - 0x0,0x7,0xfc,0xf0,0xb0,0x0,0x0,0x0,0x0,0xa,0xcf,0x74,0xc0,0x0,0x0,0x0, - 0x0,0xb,0x97,0xca,0xb0,0x0,0x0,0x0,0x0,0xc,0xb1,0xf9,0xc0,0x0,0x0,0x0, - 0x0,0xd,0x78,0xfe,0x30,0x0,0x0,0x0,0x0,0xe,0x93,0x2d,0x40,0x0,0x0,0x0, - 0x0,0xf,0x5a,0x31,0xb0,0x0,0x0,0x0,0x0,0x10,0x74,0x60,0xc0,0x0,0x0,0x0, - 0x0,0x11,0x64,0x43,0xb0,0x0,0x0,0x0,0x0,0x12,0x55,0x94,0x40,0x0,0x0,0x0, - 0x0,0x13,0x46,0xc8,0xb0,0x0,0x0,0x0,0x0,0x14,0x38,0x19,0x40,0x0,0x0,0x0, - 0x0,0x15,0x27,0xfc,0x30,0x0,0x0,0x0,0x0,0x16,0x19,0x4c,0xc0,0x0,0x0,0x0, - 0x0,0x17,0x9,0x2f,0xb0,0x0,0x0,0x0,0x0,0x17,0xfa,0x80,0x40,0x0,0x0,0x0, - 0x0,0x18,0xea,0x63,0x30,0x0,0x0,0x0,0x0,0x19,0xdb,0xb3,0xc0,0x0,0x0,0x0, - 0x0,0x1a,0xcc,0xe8,0x30,0x0,0x0,0x0,0x0,0x1b,0xbe,0x38,0xc0,0x0,0x0,0x0, - 0x0,0x1c,0xae,0x1b,0xb0,0x0,0x0,0x0,0x0,0x1d,0x9f,0x6c,0x40,0x0,0x0,0x0, - 0x0,0x1e,0x8f,0x4f,0x30,0x0,0x0,0x0,0x0,0x1f,0x80,0x9f,0xc0,0x0,0x0,0x0, - 0x0,0x20,0x70,0x82,0xb0,0x0,0x0,0x0,0x0,0x21,0x61,0xd3,0x40,0x0,0x0,0x0, - 0x0,0x22,0x53,0x7,0xb0,0x0,0x0,0x0,0x0,0x23,0x44,0x58,0x40,0x0,0x0,0x0, - 0x0,0x24,0x34,0x3b,0x30,0x0,0x0,0x0,0x0,0x25,0x41,0x3b,0x40,0x0,0x0,0x0, - 0x0,0x26,0x15,0x6e,0xb0,0x0,0x0,0x0,0x0,0x27,0x6,0xbf,0x40,0x0,0x0,0x0, - 0x0,0x27,0xf6,0xa2,0x30,0x0,0x0,0x0,0x0,0x28,0xee,0x8a,0x40,0x0,0x0,0x0, - 0x0,0x29,0xb0,0x48,0xb0,0x0,0x0,0x0,0x0,0x2a,0xcf,0xbd,0xc0,0x0,0x0,0x0, - 0x0,0x2b,0xb9,0x9,0x30,0x0,0x0,0x0,0x0,0x2c,0xab,0xab,0x40,0x0,0x0,0x0, - 0x0,0x2d,0x70,0xc,0xb0,0x0,0x0,0x0,0x0,0x2e,0x8c,0xde,0xc0,0x0,0x0,0x0, - 0x0,0x2f,0x4f,0xee,0xb0,0x0,0x0,0x0,0x0,0x30,0x6e,0x12,0x40,0x0,0x0,0x0, - 0x0,0x31,0x36,0x68,0x30,0x0,0x0,0x0,0x0,0x32,0x57,0x2e,0xc0,0x0,0x0,0x0, - 0x0,0x33,0xf,0xb2,0xb0,0x0,0x0,0x0,0x0,0x34,0x37,0x10,0xc0,0x0,0x0,0x0, - 0x0,0x34,0xf8,0xcf,0x30,0x0,0x0,0x0,0x0,0x36,0x16,0xf2,0xc0,0x0,0x0,0x0, - 0x0,0x36,0xe1,0xeb,0xb0,0x0,0x0,0x0,0x0,0x37,0xf6,0xd4,0xc0,0x0,0x0,0x0, - 0x0,0x38,0xc1,0xcd,0xb0,0x0,0x0,0x0,0x0,0x39,0xd6,0xb6,0xc0,0x0,0x0,0x0, - 0x0,0x3a,0xa1,0xaf,0xb0,0x0,0x0,0x0,0x0,0x3b,0xbf,0xd3,0x40,0x0,0x0,0x0, - 0x0,0x3c,0xaf,0xb6,0x30,0x0,0x0,0x0,0x0,0x3d,0x71,0x90,0xc0,0x0,0x0,0x0, - 0x0,0x3e,0x8f,0x98,0x30,0x0,0x0,0x0,0x0,0x3f,0x5a,0xad,0x40,0x0,0x0,0x0, - 0x0,0x40,0x6f,0x7a,0x30,0x0,0x0,0x0,0x0,0x41,0x71,0xee,0x40,0x0,0x0,0x0, - 0x0,0x42,0x33,0xac,0xb0,0x0,0x0,0x0,0x0,0x43,0x51,0xd0,0x40,0x0,0x0,0x0, - 0x0,0x44,0x13,0x8e,0xb0,0x0,0x0,0x0,0x0,0x45,0x31,0xb2,0x40,0x0,0x0,0x0, - 0x0,0x45,0xf3,0x70,0xb0,0x0,0x0,0x0,0x0,0x47,0x1a,0xce,0xc0,0x0,0x0,0x0, - 0x0,0x47,0xd3,0x52,0xb0,0x0,0x0,0x0,0x0,0x48,0xfa,0xb0,0xc0,0x0,0x0,0x0, - 0x0,0x49,0xb3,0x34,0xb0,0x0,0x0,0x0,0x0,0x4a,0xda,0x92,0xc0,0x0,0x0,0x0, - 0x0,0x4b,0xc1,0x3b,0x30,0x0,0x0,0x0,0x0,0x4c,0xa7,0xff,0xc0,0x0,0x0,0x0, - 0x0,0x4d,0xa1,0x1d,0x30,0x0,0x0,0x0,0x0,0x4e,0x87,0xe1,0xc0,0x0,0x0,0x0, - 0x0,0x4f,0x80,0xff,0x30,0x0,0x0,0x0,0x0,0x50,0x70,0xfe,0x40,0x0,0x0,0x0, - 0x0,0x51,0x4e,0x6c,0x30,0x0,0x0,0x0,0x0,0x52,0x50,0xe0,0x40,0x0,0x0,0x0, - 0x0,0x53,0x2e,0x4e,0x30,0x0,0x0,0x0,0x0,0x54,0x30,0xc2,0x40,0x0,0x0,0x0, - 0x0,0x55,0xe,0x30,0x30,0x0,0x0,0x0,0x0,0x56,0x10,0xa4,0x40,0x0,0x0,0x0, - 0x0,0x56,0xf7,0x4c,0xb0,0x0,0x0,0x0,0x0,0x57,0xf0,0x86,0x40,0x0,0x0,0x0, - 0x0,0x58,0xd7,0x2e,0xb0,0x0,0x0,0x0,0x0,0x59,0xd0,0x68,0x40,0x0,0x0,0x0, - 0x0,0x5a,0xb7,0x10,0xb0,0x0,0x0,0x0,0x0,0x5b,0xb9,0x84,0xc0,0x0,0x0,0x0, - 0x0,0x5c,0x96,0xf2,0xb0,0x0,0x0,0x0,0x0,0x5d,0x99,0x66,0xc0,0x0,0x0,0x0, - 0x0,0x5e,0x76,0xd4,0xb0,0x0,0x0,0x0,0x0,0x5f,0x79,0x48,0xc0,0x0,0x0,0x0, - 0x0,0x60,0x5f,0xf1,0x30,0x0,0x0,0x0,0x0,0x61,0x59,0x2a,0xc0,0x0,0x0,0x0, - 0x0,0x62,0x3f,0xd3,0x30,0x0,0x0,0x0,0x0,0x63,0x39,0xc,0xc0,0x0,0x0,0x0, - 0x0,0x64,0x1f,0xb5,0x30,0x0,0x0,0x0,0x0,0x65,0x18,0xee,0xc0,0x0,0x0,0x0, - 0x0,0x65,0xff,0x97,0x30,0x0,0x0,0x0,0x0,0x67,0x2,0xb,0x40,0x0,0x0,0x0, - 0x0,0x67,0xdf,0x79,0x30,0x0,0x0,0x0,0x0,0x68,0xe1,0xed,0x40,0x0,0x0,0x0, - 0x0,0x69,0xbf,0x5b,0x30,0x0,0x0,0x0,0x0,0x6a,0xc1,0xcf,0x40,0x0,0x0,0x0, - 0x0,0x6b,0xa8,0x77,0xb0,0x0,0x0,0x0,0x0,0x6c,0xa1,0xb1,0x40,0x0,0x0,0x0, - 0x0,0x6d,0x88,0x59,0xb0,0x0,0x0,0x0,0x0,0x6e,0x81,0x93,0x40,0x0,0x0,0x0, - 0x0,0x6f,0x68,0x3b,0xb0,0x0,0x0,0x0,0x0,0x70,0x6a,0xaf,0xc0,0x0,0x0,0x0, - 0x0,0x71,0x48,0x1d,0xb0,0x0,0x0,0x0,0x0,0x72,0x4a,0x91,0xc0,0x0,0x0,0x0, - 0x0,0x73,0x27,0xff,0xb0,0x0,0x0,0x0,0x0,0x74,0x2a,0x73,0xc0,0x0,0x0,0x0, - 0x0,0x75,0x11,0x1c,0x30,0x0,0x0,0x0,0x0,0x76,0xa,0x55,0xc0,0x0,0x0,0x0, - 0x0,0x76,0xf0,0xfe,0x30,0x0,0x0,0x0,0x0,0x77,0xea,0x37,0xc0,0x0,0x0,0x0, - 0x0,0x78,0xd0,0xe0,0x30,0x0,0x0,0x0,0x0,0x79,0xca,0x19,0xc0,0x0,0x0,0x0, - 0x0,0x7a,0xb0,0xc2,0x30,0x0,0x0,0x0,0x0,0x7b,0xb3,0x36,0x40,0x0,0x0,0x0, - 0x0,0x7c,0x90,0xa4,0x30,0x0,0x0,0x0,0x0,0x7d,0x93,0x18,0x40,0x0,0x0,0x0, - 0x0,0x7e,0x70,0x86,0x30,0x0,0x0,0x0,0x0,0x7f,0x72,0xfa,0x40,0x0,0x1,0x2, - 0x3,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2, - 0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2, - 0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2, - 0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2, - 0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2, - 0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2, - 0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2, - 0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0xff, - 0xff,0xc9,0xf0,0x0,0x0,0xff,0xff,0xc9,0xf0,0x0,0x4,0xff,0xff,0xc7,0xc0,0x0, - 0x8,0xff,0xff,0xd5,0xd0,0x0,0x8,0xff,0xff,0xd5,0xd0,0x1,0xc,0xff,0xff,0xc7, - 0xc0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x41,0x4d,0x54,0x0,0x50,0x59,0x54,0x0,0x50, - 0x59,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0xa,0x50,0x59,0x54,0x34,0x50,0x59,0x53,0x54,0x2c,0x4d,0x31,0x30,0x2e,0x31,0x2e, - 0x30,0x2f,0x30,0x2c,0x4d,0x33,0x2e,0x34,0x2e,0x30,0x2f,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Puerto_Rico - 0x0,0x0,0x0,0xff, + 0x0,0x0,0x78,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x80,0x0,0x0,0x0,0xd5, + 0xfb,0x81,0x80,0xf7,0x2f,0x4c,0x60,0xf8,0x28,0x77,0xe0,0x13,0x69,0x56,0x0,0x14, + 0x59,0x38,0xf0,0x15,0x49,0x38,0x0,0x16,0x39,0x1a,0xf0,0x17,0x29,0x1a,0x0,0x18, + 0x22,0x37,0x70,0x19,0x8,0xfc,0x0,0x1a,0x2,0x19,0x70,0x1a,0xf2,0x18,0x80,0x1b, + 0xe1,0xfb,0x70,0x1c,0xd1,0xfa,0x80,0x1d,0xc1,0xdd,0x70,0x1e,0xb1,0xdc,0x80,0x1f, + 0xa1,0xbf,0x70,0x20,0x76,0xf,0x0,0x21,0x81,0xa1,0x70,0x22,0x55,0xf1,0x0,0x23, + 0x6a,0xbd,0xf0,0x24,0x35,0xd3,0x0,0x25,0x4a,0x9f,0xf0,0x26,0x15,0xb5,0x0,0x27, + 0x2a,0x81,0xf0,0x27,0xfe,0xd1,0x80,0x29,0xa,0x63,0xf0,0x29,0xde,0xb3,0x80,0x2a, + 0xea,0x45,0xf0,0x2b,0xbe,0x95,0x80,0x2c,0xd3,0x62,0x70,0x2d,0x9e,0x77,0x80,0x2e, + 0xb3,0x44,0x70,0x2f,0x7e,0x59,0x80,0x30,0x93,0x26,0x70,0x31,0x67,0x76,0x0,0x32, + 0x73,0x8,0x70,0x33,0x47,0x58,0x0,0x34,0x52,0xea,0x70,0x35,0x27,0x3a,0x0,0x36, + 0x32,0xcc,0x70,0x37,0x7,0x1c,0x0,0x38,0x1b,0xe8,0xf0,0x38,0xe6,0xfe,0x0,0x39, + 0xfb,0xca,0xf0,0x3a,0xc6,0xe0,0x0,0x3b,0xdb,0xac,0xf0,0x3c,0xaf,0xfc,0x80,0x3d, + 0xbb,0x8e,0xf0,0x3e,0x8f,0xde,0x80,0x3f,0x9b,0x70,0xf0,0x40,0x6f,0xc0,0x80,0x41, + 0x84,0x8d,0x70,0x42,0x4f,0xa2,0x80,0x43,0x64,0x6f,0x70,0x44,0x2f,0x84,0x80,0x45, + 0x44,0x51,0x70,0x45,0xf3,0xb7,0x0,0x47,0x2d,0x6d,0xf0,0x47,0xd3,0x99,0x0,0x49, + 0xd,0x4f,0xf0,0x49,0xb3,0x7b,0x0,0x4a,0xed,0x31,0xf0,0x4b,0x9c,0x97,0x80,0x4c, + 0xd6,0x4e,0x70,0x4d,0x7c,0x79,0x80,0x4e,0xb6,0x30,0x70,0x4f,0x5c,0x5b,0x80,0x50, + 0x96,0x12,0x70,0x51,0x3c,0x3d,0x80,0x52,0x75,0xf4,0x70,0x53,0x1c,0x1f,0x80,0x54, + 0x55,0xd6,0x70,0x54,0xfc,0x1,0x80,0x56,0x35,0xb8,0x70,0x56,0xe5,0x1e,0x0,0x58, + 0x1e,0xd4,0xf0,0x58,0xc5,0x0,0x0,0x59,0xfe,0xb6,0xf0,0x5a,0xa4,0xe2,0x0,0x5b, + 0xde,0x98,0xf0,0x5c,0x84,0xc4,0x0,0x5d,0xbe,0x7a,0xf0,0x5e,0x64,0xa6,0x0,0x5f, + 0x9e,0x5c,0xf0,0x60,0x4d,0xc2,0x80,0x61,0x87,0x79,0x70,0x62,0x2d,0xa4,0x80,0x63, + 0x67,0x5b,0x70,0x64,0xd,0x86,0x80,0x65,0x47,0x3d,0x70,0x65,0xed,0x68,0x80,0x67, + 0x27,0x1f,0x70,0x67,0xcd,0x4a,0x80,0x69,0x7,0x1,0x70,0x69,0xad,0x2c,0x80,0x6a, + 0xe6,0xe3,0x70,0x6b,0x96,0x49,0x0,0x6c,0xcf,0xff,0xf0,0x6d,0x76,0x2b,0x0,0x6e, + 0xaf,0xe1,0xf0,0x6f,0x56,0xd,0x0,0x70,0x8f,0xc3,0xf0,0x71,0x35,0xef,0x0,0x72, + 0x6f,0xa5,0xf0,0x73,0x15,0xd1,0x0,0x74,0x4f,0x87,0xf0,0x74,0xfe,0xed,0x80,0x76, + 0x38,0xa4,0x70,0x76,0xde,0xcf,0x80,0x78,0x18,0x86,0x70,0x78,0xbe,0xb1,0x80,0x79, + 0xf8,0x68,0x70,0x7a,0x9e,0x93,0x80,0x7b,0xd8,0x4a,0x70,0x7c,0x7e,0x75,0x80,0x7d, + 0xb8,0x2c,0x70,0x7e,0x5e,0x57,0x80,0x7f,0x98,0xe,0x70,0x0,0x2,0x1,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x4,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x4,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xc7,0xc0,0x1,0x4,0xff, + 0xff,0xab,0xa0,0x0,0x9,0xff,0xff,0xb9,0xb0,0x1,0xd,0xff,0xff,0xb9,0xb0,0x0, + 0x11,0xff,0xff,0xab,0xa0,0x0,0x9,0x2d,0x30,0x30,0x0,0x43,0x44,0x44,0x54,0x0, + 0x43,0x53,0x54,0x0,0x43,0x44,0x54,0x0,0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x78,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x15,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xd5,0xfb,0x81,0x80,0xff,0xff,0xff,0xff,0xf7,0x2f,0x4c,0x60,0xff,0xff,0xff,0xff, + 0xf8,0x28,0x77,0xe0,0x0,0x0,0x0,0x0,0x13,0x69,0x56,0x0,0x0,0x0,0x0,0x0, + 0x14,0x59,0x38,0xf0,0x0,0x0,0x0,0x0,0x15,0x49,0x38,0x0,0x0,0x0,0x0,0x0, + 0x16,0x39,0x1a,0xf0,0x0,0x0,0x0,0x0,0x17,0x29,0x1a,0x0,0x0,0x0,0x0,0x0, + 0x18,0x22,0x37,0x70,0x0,0x0,0x0,0x0,0x19,0x8,0xfc,0x0,0x0,0x0,0x0,0x0, + 0x1a,0x2,0x19,0x70,0x0,0x0,0x0,0x0,0x1a,0xf2,0x18,0x80,0x0,0x0,0x0,0x0, + 0x1b,0xe1,0xfb,0x70,0x0,0x0,0x0,0x0,0x1c,0xd1,0xfa,0x80,0x0,0x0,0x0,0x0, + 0x1d,0xc1,0xdd,0x70,0x0,0x0,0x0,0x0,0x1e,0xb1,0xdc,0x80,0x0,0x0,0x0,0x0, + 0x1f,0xa1,0xbf,0x70,0x0,0x0,0x0,0x0,0x20,0x76,0xf,0x0,0x0,0x0,0x0,0x0, + 0x21,0x81,0xa1,0x70,0x0,0x0,0x0,0x0,0x22,0x55,0xf1,0x0,0x0,0x0,0x0,0x0, + 0x23,0x6a,0xbd,0xf0,0x0,0x0,0x0,0x0,0x24,0x35,0xd3,0x0,0x0,0x0,0x0,0x0, + 0x25,0x4a,0x9f,0xf0,0x0,0x0,0x0,0x0,0x26,0x15,0xb5,0x0,0x0,0x0,0x0,0x0, + 0x27,0x2a,0x81,0xf0,0x0,0x0,0x0,0x0,0x27,0xfe,0xd1,0x80,0x0,0x0,0x0,0x0, + 0x29,0xa,0x63,0xf0,0x0,0x0,0x0,0x0,0x29,0xde,0xb3,0x80,0x0,0x0,0x0,0x0, + 0x2a,0xea,0x45,0xf0,0x0,0x0,0x0,0x0,0x2b,0xbe,0x95,0x80,0x0,0x0,0x0,0x0, + 0x2c,0xd3,0x62,0x70,0x0,0x0,0x0,0x0,0x2d,0x9e,0x77,0x80,0x0,0x0,0x0,0x0, + 0x2e,0xb3,0x44,0x70,0x0,0x0,0x0,0x0,0x2f,0x7e,0x59,0x80,0x0,0x0,0x0,0x0, + 0x30,0x93,0x26,0x70,0x0,0x0,0x0,0x0,0x31,0x67,0x76,0x0,0x0,0x0,0x0,0x0, + 0x32,0x73,0x8,0x70,0x0,0x0,0x0,0x0,0x33,0x47,0x58,0x0,0x0,0x0,0x0,0x0, + 0x34,0x52,0xea,0x70,0x0,0x0,0x0,0x0,0x35,0x27,0x3a,0x0,0x0,0x0,0x0,0x0, + 0x36,0x32,0xcc,0x70,0x0,0x0,0x0,0x0,0x37,0x7,0x1c,0x0,0x0,0x0,0x0,0x0, + 0x38,0x1b,0xe8,0xf0,0x0,0x0,0x0,0x0,0x38,0xe6,0xfe,0x0,0x0,0x0,0x0,0x0, + 0x39,0xfb,0xca,0xf0,0x0,0x0,0x0,0x0,0x3a,0xc6,0xe0,0x0,0x0,0x0,0x0,0x0, + 0x3b,0xdb,0xac,0xf0,0x0,0x0,0x0,0x0,0x3c,0xaf,0xfc,0x80,0x0,0x0,0x0,0x0, + 0x3d,0xbb,0x8e,0xf0,0x0,0x0,0x0,0x0,0x3e,0x8f,0xde,0x80,0x0,0x0,0x0,0x0, + 0x3f,0x9b,0x70,0xf0,0x0,0x0,0x0,0x0,0x40,0x6f,0xc0,0x80,0x0,0x0,0x0,0x0, + 0x41,0x84,0x8d,0x70,0x0,0x0,0x0,0x0,0x42,0x4f,0xa2,0x80,0x0,0x0,0x0,0x0, + 0x43,0x64,0x6f,0x70,0x0,0x0,0x0,0x0,0x44,0x2f,0x84,0x80,0x0,0x0,0x0,0x0, + 0x45,0x44,0x51,0x70,0x0,0x0,0x0,0x0,0x45,0xf3,0xb7,0x0,0x0,0x0,0x0,0x0, + 0x47,0x2d,0x6d,0xf0,0x0,0x0,0x0,0x0,0x47,0xd3,0x99,0x0,0x0,0x0,0x0,0x0, + 0x49,0xd,0x4f,0xf0,0x0,0x0,0x0,0x0,0x49,0xb3,0x7b,0x0,0x0,0x0,0x0,0x0, + 0x4a,0xed,0x31,0xf0,0x0,0x0,0x0,0x0,0x4b,0x9c,0x97,0x80,0x0,0x0,0x0,0x0, + 0x4c,0xd6,0x4e,0x70,0x0,0x0,0x0,0x0,0x4d,0x7c,0x79,0x80,0x0,0x0,0x0,0x0, + 0x4e,0xb6,0x30,0x70,0x0,0x0,0x0,0x0,0x4f,0x5c,0x5b,0x80,0x0,0x0,0x0,0x0, + 0x50,0x96,0x12,0x70,0x0,0x0,0x0,0x0,0x51,0x3c,0x3d,0x80,0x0,0x0,0x0,0x0, + 0x52,0x75,0xf4,0x70,0x0,0x0,0x0,0x0,0x53,0x1c,0x1f,0x80,0x0,0x0,0x0,0x0, + 0x54,0x55,0xd6,0x70,0x0,0x0,0x0,0x0,0x54,0xfc,0x1,0x80,0x0,0x0,0x0,0x0, + 0x56,0x35,0xb8,0x70,0x0,0x0,0x0,0x0,0x56,0xe5,0x1e,0x0,0x0,0x0,0x0,0x0, + 0x58,0x1e,0xd4,0xf0,0x0,0x0,0x0,0x0,0x58,0xc5,0x0,0x0,0x0,0x0,0x0,0x0, + 0x59,0xfe,0xb6,0xf0,0x0,0x0,0x0,0x0,0x5a,0xa4,0xe2,0x0,0x0,0x0,0x0,0x0, + 0x5b,0xde,0x98,0xf0,0x0,0x0,0x0,0x0,0x5c,0x84,0xc4,0x0,0x0,0x0,0x0,0x0, + 0x5d,0xbe,0x7a,0xf0,0x0,0x0,0x0,0x0,0x5e,0x64,0xa6,0x0,0x0,0x0,0x0,0x0, + 0x5f,0x9e,0x5c,0xf0,0x0,0x0,0x0,0x0,0x60,0x4d,0xc2,0x80,0x0,0x0,0x0,0x0, + 0x61,0x87,0x79,0x70,0x0,0x0,0x0,0x0,0x62,0x2d,0xa4,0x80,0x0,0x0,0x0,0x0, + 0x63,0x67,0x5b,0x70,0x0,0x0,0x0,0x0,0x64,0xd,0x86,0x80,0x0,0x0,0x0,0x0, + 0x65,0x47,0x3d,0x70,0x0,0x0,0x0,0x0,0x65,0xed,0x68,0x80,0x0,0x0,0x0,0x0, + 0x67,0x27,0x1f,0x70,0x0,0x0,0x0,0x0,0x67,0xcd,0x4a,0x80,0x0,0x0,0x0,0x0, + 0x69,0x7,0x1,0x70,0x0,0x0,0x0,0x0,0x69,0xad,0x2c,0x80,0x0,0x0,0x0,0x0, + 0x6a,0xe6,0xe3,0x70,0x0,0x0,0x0,0x0,0x6b,0x96,0x49,0x0,0x0,0x0,0x0,0x0, + 0x6c,0xcf,0xff,0xf0,0x0,0x0,0x0,0x0,0x6d,0x76,0x2b,0x0,0x0,0x0,0x0,0x0, + 0x6e,0xaf,0xe1,0xf0,0x0,0x0,0x0,0x0,0x6f,0x56,0xd,0x0,0x0,0x0,0x0,0x0, + 0x70,0x8f,0xc3,0xf0,0x0,0x0,0x0,0x0,0x71,0x35,0xef,0x0,0x0,0x0,0x0,0x0, + 0x72,0x6f,0xa5,0xf0,0x0,0x0,0x0,0x0,0x73,0x15,0xd1,0x0,0x0,0x0,0x0,0x0, + 0x74,0x4f,0x87,0xf0,0x0,0x0,0x0,0x0,0x74,0xfe,0xed,0x80,0x0,0x0,0x0,0x0, + 0x76,0x38,0xa4,0x70,0x0,0x0,0x0,0x0,0x76,0xde,0xcf,0x80,0x0,0x0,0x0,0x0, + 0x78,0x18,0x86,0x70,0x0,0x0,0x0,0x0,0x78,0xbe,0xb1,0x80,0x0,0x0,0x0,0x0, + 0x79,0xf8,0x68,0x70,0x0,0x0,0x0,0x0,0x7a,0x9e,0x93,0x80,0x0,0x0,0x0,0x0, + 0x7b,0xd8,0x4a,0x70,0x0,0x0,0x0,0x0,0x7c,0x7e,0x75,0x80,0x0,0x0,0x0,0x0, + 0x7d,0xb8,0x2c,0x70,0x0,0x0,0x0,0x0,0x7e,0x5e,0x57,0x80,0x0,0x0,0x0,0x0, + 0x7f,0x98,0xe,0x70,0x0,0x2,0x1,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x4,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x4,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x0,0x0,0x0,0x0, + 0x0,0x0,0xff,0xff,0xc7,0xc0,0x1,0x4,0xff,0xff,0xab,0xa0,0x0,0x9,0xff,0xff, + 0xb9,0xb0,0x1,0xd,0xff,0xff,0xb9,0xb0,0x0,0x11,0xff,0xff,0xab,0xa0,0x0,0x9, + 0x2d,0x30,0x30,0x0,0x43,0x44,0x44,0x54,0x0,0x43,0x53,0x54,0x0,0x43,0x44,0x54, + 0x0,0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xa,0x43,0x53,0x54,0x36,0x43,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30, + 0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Boise + 0x0,0x0,0x9,0x63, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x10,0x80,0x0,0x0,0x0,0xcb, - 0xf6,0x32,0xc0,0xd2,0x23,0xf4,0x70,0xd2,0x60,0xed,0xd0,0x1,0x3,0x2,0x1,0xff, - 0xff,0xc2,0x7,0x0,0x0,0xff,0xff,0xc7,0xc0,0x0,0x4,0xff,0xff,0xd5,0xd0,0x1, - 0x8,0xff,0xff,0xd5,0xd0,0x1,0xc,0x4c,0x4d,0x54,0x0,0x41,0x53,0x54,0x0,0x41, - 0x50,0x54,0x0,0x41,0x57,0x54,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x5,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x10,0xf8,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x7a,0xe6,0x95,0xb9,0xff,0xff,0xff,0xff,0xcb, - 0xf6,0x32,0xc0,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2, - 0x60,0xed,0xd0,0x0,0x1,0x3,0x2,0x1,0xff,0xff,0xc2,0x7,0x0,0x0,0xff,0xff, - 0xc7,0xc0,0x0,0x4,0xff,0xff,0xd5,0xd0,0x1,0x8,0xff,0xff,0xd5,0xd0,0x1,0xc, - 0x4c,0x4d,0x54,0x0,0x41,0x53,0x54,0x0,0x41,0x50,0x54,0x0,0x41,0x57,0x54,0x0, - 0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0xa,0x41,0x53,0x54,0x34,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Coral_Harbour - 0x0,0x0,0x1,0x59, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x97,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x1c,0x80,0x0,0x0,0x0,0x9e, + 0xa6,0x48,0xa0,0x9f,0xbb,0x15,0x90,0xa0,0x86,0x2a,0xa0,0xa1,0x9a,0xf7,0x90,0xa8, + 0x46,0x4c,0x20,0xcb,0x89,0xc,0x90,0xd2,0x23,0xf4,0x70,0xd2,0x61,0x18,0x0,0xfa, + 0xf8,0x75,0x10,0xfb,0xe8,0x58,0x0,0xfc,0xd8,0x57,0x10,0xfd,0xc8,0x3a,0x0,0xfe, + 0xb8,0x39,0x10,0xff,0xa8,0x1c,0x0,0x0,0x98,0x1b,0x10,0x1,0x87,0xfe,0x0,0x2, + 0x77,0xfd,0x10,0x3,0x71,0x1a,0x80,0x4,0x61,0x19,0x90,0x5,0x50,0xfc,0x80,0x6, + 0x40,0xfb,0x90,0x7,0x30,0xde,0x80,0x7,0xb2,0x1f,0x90,0x9,0x10,0xc0,0x80,0x9, + 0xad,0xb1,0x10,0xa,0xf0,0xa2,0x80,0xb,0xe0,0xa1,0x90,0xc,0xd9,0xbf,0x0,0xd, + 0xc0,0x83,0x90,0xe,0xb9,0xa1,0x0,0xf,0xa9,0xa0,0x10,0x10,0x99,0x83,0x0,0x11, + 0x89,0x82,0x10,0x12,0x79,0x65,0x0,0x13,0x69,0x64,0x10,0x14,0x59,0x47,0x0,0x15, + 0x49,0x46,0x10,0x16,0x39,0x29,0x0,0x17,0x29,0x28,0x10,0x18,0x22,0x45,0x80,0x19, + 0x9,0xa,0x10,0x1a,0x2,0x27,0x80,0x1a,0xf2,0x26,0x90,0x1b,0xe2,0x9,0x80,0x1c, + 0xd2,0x8,0x90,0x1d,0xc1,0xeb,0x80,0x1e,0xb1,0xea,0x90,0x1f,0xa1,0xcd,0x80,0x20, + 0x76,0x1d,0x10,0x21,0x81,0xaf,0x80,0x22,0x55,0xff,0x10,0x23,0x6a,0xcc,0x0,0x24, + 0x35,0xe1,0x10,0x25,0x4a,0xae,0x0,0x26,0x15,0xc3,0x10,0x27,0x2a,0x90,0x0,0x27, + 0xfe,0xdf,0x90,0x29,0xa,0x72,0x0,0x29,0xde,0xc1,0x90,0x2a,0xea,0x54,0x0,0x2b, + 0xbe,0xa3,0x90,0x2c,0xd3,0x70,0x80,0x2d,0x9e,0x85,0x90,0x2e,0xb3,0x52,0x80,0x2f, + 0x7e,0x67,0x90,0x30,0x93,0x34,0x80,0x31,0x67,0x84,0x10,0x32,0x73,0x16,0x80,0x33, + 0x47,0x66,0x10,0x34,0x52,0xf8,0x80,0x35,0x27,0x48,0x10,0x36,0x32,0xda,0x80,0x37, + 0x7,0x2a,0x10,0x38,0x1b,0xf7,0x0,0x38,0xe7,0xc,0x10,0x39,0xfb,0xd9,0x0,0x3a, + 0xc6,0xee,0x10,0x3b,0xdb,0xbb,0x0,0x3c,0xb0,0xa,0x90,0x3d,0xbb,0x9d,0x0,0x3e, + 0x8f,0xec,0x90,0x3f,0x9b,0x7f,0x0,0x40,0x6f,0xce,0x90,0x41,0x84,0x9b,0x80,0x42, + 0x4f,0xb0,0x90,0x43,0x64,0x7d,0x80,0x44,0x2f,0x92,0x90,0x45,0x44,0x5f,0x80,0x45, + 0xf3,0xc5,0x10,0x47,0x2d,0x7c,0x0,0x47,0xd3,0xa7,0x10,0x49,0xd,0x5e,0x0,0x49, + 0xb3,0x89,0x10,0x4a,0xed,0x40,0x0,0x4b,0x9c,0xa5,0x90,0x4c,0xd6,0x5c,0x80,0x4d, + 0x7c,0x87,0x90,0x4e,0xb6,0x3e,0x80,0x4f,0x5c,0x69,0x90,0x50,0x96,0x20,0x80,0x51, + 0x3c,0x4b,0x90,0x52,0x76,0x2,0x80,0x53,0x1c,0x2d,0x90,0x54,0x55,0xe4,0x80,0x54, + 0xfc,0xf,0x90,0x56,0x35,0xc6,0x80,0x56,0xe5,0x2c,0x10,0x58,0x1e,0xe3,0x0,0x58, + 0xc5,0xe,0x10,0x59,0xfe,0xc5,0x0,0x5a,0xa4,0xf0,0x10,0x5b,0xde,0xa7,0x0,0x5c, + 0x84,0xd2,0x10,0x5d,0xbe,0x89,0x0,0x5e,0x64,0xb4,0x10,0x5f,0x9e,0x6b,0x0,0x60, + 0x4d,0xd0,0x90,0x61,0x87,0x87,0x80,0x62,0x2d,0xb2,0x90,0x63,0x67,0x69,0x80,0x64, + 0xd,0x94,0x90,0x65,0x47,0x4b,0x80,0x65,0xed,0x76,0x90,0x67,0x27,0x2d,0x80,0x67, + 0xcd,0x58,0x90,0x69,0x7,0xf,0x80,0x69,0xad,0x3a,0x90,0x6a,0xe6,0xf1,0x80,0x6b, + 0x96,0x57,0x10,0x6c,0xd0,0xe,0x0,0x6d,0x76,0x39,0x10,0x6e,0xaf,0xf0,0x0,0x6f, + 0x56,0x1b,0x10,0x70,0x8f,0xd2,0x0,0x71,0x35,0xfd,0x10,0x72,0x6f,0xb4,0x0,0x73, + 0x15,0xdf,0x10,0x74,0x4f,0x96,0x0,0x74,0xfe,0xfb,0x90,0x76,0x38,0xb2,0x80,0x76, + 0xde,0xdd,0x90,0x78,0x18,0x94,0x80,0x78,0xbe,0xbf,0x90,0x79,0xf8,0x76,0x80,0x7a, + 0x9e,0xa1,0x90,0x7b,0xd8,0x58,0x80,0x7c,0x7e,0x83,0x90,0x7d,0xb8,0x3a,0x80,0x7e, + 0x5e,0x65,0x90,0x7f,0x98,0x1c,0x80,0x2,0x1,0x2,0x1,0x2,0x5,0x3,0x4,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0xff,0xff, + 0x93,0xf,0x0,0x0,0xff,0xff,0x9d,0x90,0x1,0x4,0xff,0xff,0x8f,0x80,0x0,0x8, + 0xff,0xff,0xab,0xa0,0x1,0xc,0xff,0xff,0xab,0xa0,0x1,0x10,0xff,0xff,0x9d,0x90, + 0x0,0x14,0xff,0xff,0xab,0xa0,0x1,0x18,0x4c,0x4d,0x54,0x0,0x50,0x44,0x54,0x0, + 0x50,0x53,0x54,0x0,0x4d,0x57,0x54,0x0,0x4d,0x50,0x54,0x0,0x4d,0x53,0x54,0x0, + 0x4d,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1, + 0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x98,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x1c,0xf8,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x5e,0x4,0x1a,0xc0,0xff,0xff, + 0xff,0xff,0x9e,0xa6,0x48,0xa0,0xff,0xff,0xff,0xff,0x9f,0xbb,0x15,0x90,0xff,0xff, + 0xff,0xff,0xa0,0x86,0x2a,0xa0,0xff,0xff,0xff,0xff,0xa1,0x9a,0xf7,0x90,0xff,0xff, + 0xff,0xff,0xa8,0x46,0x4c,0x20,0xff,0xff,0xff,0xff,0xcb,0x89,0xc,0x90,0xff,0xff, + 0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x61,0x18,0x0,0xff,0xff, + 0xff,0xff,0xfa,0xf8,0x75,0x10,0xff,0xff,0xff,0xff,0xfb,0xe8,0x58,0x0,0xff,0xff, + 0xff,0xff,0xfc,0xd8,0x57,0x10,0xff,0xff,0xff,0xff,0xfd,0xc8,0x3a,0x0,0xff,0xff, + 0xff,0xff,0xfe,0xb8,0x39,0x10,0xff,0xff,0xff,0xff,0xff,0xa8,0x1c,0x0,0x0,0x0, + 0x0,0x0,0x0,0x98,0x1b,0x10,0x0,0x0,0x0,0x0,0x1,0x87,0xfe,0x0,0x0,0x0, + 0x0,0x0,0x2,0x77,0xfd,0x10,0x0,0x0,0x0,0x0,0x3,0x71,0x1a,0x80,0x0,0x0, + 0x0,0x0,0x4,0x61,0x19,0x90,0x0,0x0,0x0,0x0,0x5,0x50,0xfc,0x80,0x0,0x0, + 0x0,0x0,0x6,0x40,0xfb,0x90,0x0,0x0,0x0,0x0,0x7,0x30,0xde,0x80,0x0,0x0, + 0x0,0x0,0x7,0xb2,0x1f,0x90,0x0,0x0,0x0,0x0,0x9,0x10,0xc0,0x80,0x0,0x0, + 0x0,0x0,0x9,0xad,0xb1,0x10,0x0,0x0,0x0,0x0,0xa,0xf0,0xa2,0x80,0x0,0x0, + 0x0,0x0,0xb,0xe0,0xa1,0x90,0x0,0x0,0x0,0x0,0xc,0xd9,0xbf,0x0,0x0,0x0, + 0x0,0x0,0xd,0xc0,0x83,0x90,0x0,0x0,0x0,0x0,0xe,0xb9,0xa1,0x0,0x0,0x0, + 0x0,0x0,0xf,0xa9,0xa0,0x10,0x0,0x0,0x0,0x0,0x10,0x99,0x83,0x0,0x0,0x0, + 0x0,0x0,0x11,0x89,0x82,0x10,0x0,0x0,0x0,0x0,0x12,0x79,0x65,0x0,0x0,0x0, + 0x0,0x0,0x13,0x69,0x64,0x10,0x0,0x0,0x0,0x0,0x14,0x59,0x47,0x0,0x0,0x0, + 0x0,0x0,0x15,0x49,0x46,0x10,0x0,0x0,0x0,0x0,0x16,0x39,0x29,0x0,0x0,0x0, + 0x0,0x0,0x17,0x29,0x28,0x10,0x0,0x0,0x0,0x0,0x18,0x22,0x45,0x80,0x0,0x0, + 0x0,0x0,0x19,0x9,0xa,0x10,0x0,0x0,0x0,0x0,0x1a,0x2,0x27,0x80,0x0,0x0, + 0x0,0x0,0x1a,0xf2,0x26,0x90,0x0,0x0,0x0,0x0,0x1b,0xe2,0x9,0x80,0x0,0x0, + 0x0,0x0,0x1c,0xd2,0x8,0x90,0x0,0x0,0x0,0x0,0x1d,0xc1,0xeb,0x80,0x0,0x0, + 0x0,0x0,0x1e,0xb1,0xea,0x90,0x0,0x0,0x0,0x0,0x1f,0xa1,0xcd,0x80,0x0,0x0, + 0x0,0x0,0x20,0x76,0x1d,0x10,0x0,0x0,0x0,0x0,0x21,0x81,0xaf,0x80,0x0,0x0, + 0x0,0x0,0x22,0x55,0xff,0x10,0x0,0x0,0x0,0x0,0x23,0x6a,0xcc,0x0,0x0,0x0, + 0x0,0x0,0x24,0x35,0xe1,0x10,0x0,0x0,0x0,0x0,0x25,0x4a,0xae,0x0,0x0,0x0, + 0x0,0x0,0x26,0x15,0xc3,0x10,0x0,0x0,0x0,0x0,0x27,0x2a,0x90,0x0,0x0,0x0, + 0x0,0x0,0x27,0xfe,0xdf,0x90,0x0,0x0,0x0,0x0,0x29,0xa,0x72,0x0,0x0,0x0, + 0x0,0x0,0x29,0xde,0xc1,0x90,0x0,0x0,0x0,0x0,0x2a,0xea,0x54,0x0,0x0,0x0, + 0x0,0x0,0x2b,0xbe,0xa3,0x90,0x0,0x0,0x0,0x0,0x2c,0xd3,0x70,0x80,0x0,0x0, + 0x0,0x0,0x2d,0x9e,0x85,0x90,0x0,0x0,0x0,0x0,0x2e,0xb3,0x52,0x80,0x0,0x0, + 0x0,0x0,0x2f,0x7e,0x67,0x90,0x0,0x0,0x0,0x0,0x30,0x93,0x34,0x80,0x0,0x0, + 0x0,0x0,0x31,0x67,0x84,0x10,0x0,0x0,0x0,0x0,0x32,0x73,0x16,0x80,0x0,0x0, + 0x0,0x0,0x33,0x47,0x66,0x10,0x0,0x0,0x0,0x0,0x34,0x52,0xf8,0x80,0x0,0x0, + 0x0,0x0,0x35,0x27,0x48,0x10,0x0,0x0,0x0,0x0,0x36,0x32,0xda,0x80,0x0,0x0, + 0x0,0x0,0x37,0x7,0x2a,0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0xf7,0x0,0x0,0x0, + 0x0,0x0,0x38,0xe7,0xc,0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0xd9,0x0,0x0,0x0, + 0x0,0x0,0x3a,0xc6,0xee,0x10,0x0,0x0,0x0,0x0,0x3b,0xdb,0xbb,0x0,0x0,0x0, + 0x0,0x0,0x3c,0xb0,0xa,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x9d,0x0,0x0,0x0, + 0x0,0x0,0x3e,0x8f,0xec,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x7f,0x0,0x0,0x0, + 0x0,0x0,0x40,0x6f,0xce,0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x9b,0x80,0x0,0x0, + 0x0,0x0,0x42,0x4f,0xb0,0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x7d,0x80,0x0,0x0, + 0x0,0x0,0x44,0x2f,0x92,0x90,0x0,0x0,0x0,0x0,0x45,0x44,0x5f,0x80,0x0,0x0, + 0x0,0x0,0x45,0xf3,0xc5,0x10,0x0,0x0,0x0,0x0,0x47,0x2d,0x7c,0x0,0x0,0x0, + 0x0,0x0,0x47,0xd3,0xa7,0x10,0x0,0x0,0x0,0x0,0x49,0xd,0x5e,0x0,0x0,0x0, + 0x0,0x0,0x49,0xb3,0x89,0x10,0x0,0x0,0x0,0x0,0x4a,0xed,0x40,0x0,0x0,0x0, + 0x0,0x0,0x4b,0x9c,0xa5,0x90,0x0,0x0,0x0,0x0,0x4c,0xd6,0x5c,0x80,0x0,0x0, + 0x0,0x0,0x4d,0x7c,0x87,0x90,0x0,0x0,0x0,0x0,0x4e,0xb6,0x3e,0x80,0x0,0x0, + 0x0,0x0,0x4f,0x5c,0x69,0x90,0x0,0x0,0x0,0x0,0x50,0x96,0x20,0x80,0x0,0x0, + 0x0,0x0,0x51,0x3c,0x4b,0x90,0x0,0x0,0x0,0x0,0x52,0x76,0x2,0x80,0x0,0x0, + 0x0,0x0,0x53,0x1c,0x2d,0x90,0x0,0x0,0x0,0x0,0x54,0x55,0xe4,0x80,0x0,0x0, + 0x0,0x0,0x54,0xfc,0xf,0x90,0x0,0x0,0x0,0x0,0x56,0x35,0xc6,0x80,0x0,0x0, + 0x0,0x0,0x56,0xe5,0x2c,0x10,0x0,0x0,0x0,0x0,0x58,0x1e,0xe3,0x0,0x0,0x0, + 0x0,0x0,0x58,0xc5,0xe,0x10,0x0,0x0,0x0,0x0,0x59,0xfe,0xc5,0x0,0x0,0x0, + 0x0,0x0,0x5a,0xa4,0xf0,0x10,0x0,0x0,0x0,0x0,0x5b,0xde,0xa7,0x0,0x0,0x0, + 0x0,0x0,0x5c,0x84,0xd2,0x10,0x0,0x0,0x0,0x0,0x5d,0xbe,0x89,0x0,0x0,0x0, + 0x0,0x0,0x5e,0x64,0xb4,0x10,0x0,0x0,0x0,0x0,0x5f,0x9e,0x6b,0x0,0x0,0x0, + 0x0,0x0,0x60,0x4d,0xd0,0x90,0x0,0x0,0x0,0x0,0x61,0x87,0x87,0x80,0x0,0x0, + 0x0,0x0,0x62,0x2d,0xb2,0x90,0x0,0x0,0x0,0x0,0x63,0x67,0x69,0x80,0x0,0x0, + 0x0,0x0,0x64,0xd,0x94,0x90,0x0,0x0,0x0,0x0,0x65,0x47,0x4b,0x80,0x0,0x0, + 0x0,0x0,0x65,0xed,0x76,0x90,0x0,0x0,0x0,0x0,0x67,0x27,0x2d,0x80,0x0,0x0, + 0x0,0x0,0x67,0xcd,0x58,0x90,0x0,0x0,0x0,0x0,0x69,0x7,0xf,0x80,0x0,0x0, + 0x0,0x0,0x69,0xad,0x3a,0x90,0x0,0x0,0x0,0x0,0x6a,0xe6,0xf1,0x80,0x0,0x0, + 0x0,0x0,0x6b,0x96,0x57,0x10,0x0,0x0,0x0,0x0,0x6c,0xd0,0xe,0x0,0x0,0x0, + 0x0,0x0,0x6d,0x76,0x39,0x10,0x0,0x0,0x0,0x0,0x6e,0xaf,0xf0,0x0,0x0,0x0, + 0x0,0x0,0x6f,0x56,0x1b,0x10,0x0,0x0,0x0,0x0,0x70,0x8f,0xd2,0x0,0x0,0x0, + 0x0,0x0,0x71,0x35,0xfd,0x10,0x0,0x0,0x0,0x0,0x72,0x6f,0xb4,0x0,0x0,0x0, + 0x0,0x0,0x73,0x15,0xdf,0x10,0x0,0x0,0x0,0x0,0x74,0x4f,0x96,0x0,0x0,0x0, + 0x0,0x0,0x74,0xfe,0xfb,0x90,0x0,0x0,0x0,0x0,0x76,0x38,0xb2,0x80,0x0,0x0, + 0x0,0x0,0x76,0xde,0xdd,0x90,0x0,0x0,0x0,0x0,0x78,0x18,0x94,0x80,0x0,0x0, + 0x0,0x0,0x78,0xbe,0xbf,0x90,0x0,0x0,0x0,0x0,0x79,0xf8,0x76,0x80,0x0,0x0, + 0x0,0x0,0x7a,0x9e,0xa1,0x90,0x0,0x0,0x0,0x0,0x7b,0xd8,0x58,0x80,0x0,0x0, + 0x0,0x0,0x7c,0x7e,0x83,0x90,0x0,0x0,0x0,0x0,0x7d,0xb8,0x3a,0x80,0x0,0x0, + 0x0,0x0,0x7e,0x5e,0x65,0x90,0x0,0x0,0x0,0x0,0x7f,0x98,0x1c,0x80,0x0,0x2, + 0x1,0x2,0x1,0x2,0x5,0x3,0x4,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0xff,0xff,0x93,0xf,0x0,0x0,0xff,0xff,0x9d,0x90, + 0x1,0x4,0xff,0xff,0x8f,0x80,0x0,0x8,0xff,0xff,0xab,0xa0,0x1,0xc,0xff,0xff, + 0xab,0xa0,0x1,0x10,0xff,0xff,0x9d,0x90,0x0,0x14,0xff,0xff,0xab,0xa0,0x1,0x18, + 0x4c,0x4d,0x54,0x0,0x50,0x44,0x54,0x0,0x50,0x53,0x54,0x0,0x4d,0x57,0x54,0x0, + 0x4d,0x50,0x54,0x0,0x4d,0x53,0x54,0x0,0x4d,0x44,0x54,0x0,0x0,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0xa,0x4d,0x53,0x54,0x37,0x4d, + 0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e, + 0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Rankin_Inlet + 0x0,0x0,0x7,0x8a, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x7,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x80,0x0,0x0,0x0,0x9e, - 0xb8,0xa1,0x80,0x9f,0xba,0xf9,0x70,0xc8,0xf8,0x57,0x60,0xcb,0x88,0xfe,0x80,0xd2, - 0x23,0xf4,0x70,0xd2,0x61,0x9,0xf0,0x2,0x1,0x2,0x1,0x3,0x4,0x5,0xff,0xff, - 0xaa,0x1c,0x0,0x0,0xff,0xff,0xb9,0xb0,0x1,0x4,0xff,0xff,0xab,0xa0,0x0,0x8, - 0xff,0xff,0xb9,0xb0,0x1,0xc,0xff,0xff,0xb9,0xb0,0x1,0x10,0xff,0xff,0xb9,0xb0, - 0x0,0x14,0x4c,0x4d,0x54,0x0,0x43,0x44,0x54,0x0,0x43,0x53,0x54,0x0,0x43,0x57, - 0x54,0x0,0x43,0x50,0x54,0x0,0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0, - 0x0,0x0,0x0,0x0,0x1,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0, - 0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x6,0x0,0x0, - 0x0,0x18,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x72,0xee, - 0x84,0x64,0xff,0xff,0xff,0xff,0x9e,0xb8,0xa1,0x80,0xff,0xff,0xff,0xff,0x9f,0xba, - 0xf9,0x70,0xff,0xff,0xff,0xff,0xc8,0xf8,0x57,0x60,0xff,0xff,0xff,0xff,0xcb,0x88, - 0xfe,0x80,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x61, - 0x9,0xf0,0x0,0x2,0x1,0x2,0x1,0x3,0x4,0x5,0xff,0xff,0xaa,0x1c,0x0,0x0, - 0xff,0xff,0xb9,0xb0,0x1,0x4,0xff,0xff,0xab,0xa0,0x0,0x8,0xff,0xff,0xb9,0xb0, - 0x1,0xc,0xff,0xff,0xb9,0xb0,0x1,0x10,0xff,0xff,0xb9,0xb0,0x0,0x14,0x4c,0x4d, - 0x54,0x0,0x43,0x44,0x54,0x0,0x43,0x53,0x54,0x0,0x43,0x57,0x54,0x0,0x43,0x50, - 0x54,0x0,0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, - 0x1,0x0,0xa,0x45,0x53,0x54,0x35,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Scoresbysund - 0x0,0x0,0x7,0x85, + 0x0,0x0,0x78,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x80,0x0,0x0,0x0,0xe7, + 0x8c,0x6e,0x0,0xf7,0x2f,0x4c,0x60,0xf8,0x28,0x77,0xe0,0x13,0x69,0x56,0x0,0x14, + 0x59,0x38,0xf0,0x15,0x49,0x38,0x0,0x16,0x39,0x1a,0xf0,0x17,0x29,0x1a,0x0,0x18, + 0x22,0x37,0x70,0x19,0x8,0xfc,0x0,0x1a,0x2,0x19,0x70,0x1a,0xf2,0x18,0x80,0x1b, + 0xe1,0xfb,0x70,0x1c,0xd1,0xfa,0x80,0x1d,0xc1,0xdd,0x70,0x1e,0xb1,0xdc,0x80,0x1f, + 0xa1,0xbf,0x70,0x20,0x76,0xf,0x0,0x21,0x81,0xa1,0x70,0x22,0x55,0xf1,0x0,0x23, + 0x6a,0xbd,0xf0,0x24,0x35,0xd3,0x0,0x25,0x4a,0x9f,0xf0,0x26,0x15,0xb5,0x0,0x27, + 0x2a,0x81,0xf0,0x27,0xfe,0xd1,0x80,0x29,0xa,0x63,0xf0,0x29,0xde,0xb3,0x80,0x2a, + 0xea,0x45,0xf0,0x2b,0xbe,0x95,0x80,0x2c,0xd3,0x62,0x70,0x2d,0x9e,0x77,0x80,0x2e, + 0xb3,0x44,0x70,0x2f,0x7e,0x59,0x80,0x30,0x93,0x26,0x70,0x31,0x67,0x76,0x0,0x32, + 0x73,0x8,0x70,0x33,0x47,0x58,0x0,0x34,0x52,0xea,0x70,0x35,0x27,0x3a,0x0,0x36, + 0x32,0xcc,0x70,0x37,0x7,0x1c,0x0,0x38,0x1b,0xe8,0xf0,0x38,0xe6,0xfe,0x0,0x39, + 0xfb,0xca,0xf0,0x3a,0xc6,0xe0,0x0,0x3b,0xdb,0xac,0xf0,0x3c,0xaf,0xfc,0x80,0x3d, + 0xbb,0x8e,0xf0,0x3e,0x8f,0xde,0x80,0x3f,0x9b,0x70,0xf0,0x40,0x6f,0xc0,0x80,0x41, + 0x84,0x8d,0x70,0x42,0x4f,0xa2,0x80,0x43,0x64,0x6f,0x70,0x44,0x2f,0x84,0x80,0x45, + 0x44,0x51,0x70,0x45,0xf3,0xb7,0x0,0x47,0x2d,0x6d,0xf0,0x47,0xd3,0x99,0x0,0x49, + 0xd,0x4f,0xf0,0x49,0xb3,0x7b,0x0,0x4a,0xed,0x31,0xf0,0x4b,0x9c,0x97,0x80,0x4c, + 0xd6,0x4e,0x70,0x4d,0x7c,0x79,0x80,0x4e,0xb6,0x30,0x70,0x4f,0x5c,0x5b,0x80,0x50, + 0x96,0x12,0x70,0x51,0x3c,0x3d,0x80,0x52,0x75,0xf4,0x70,0x53,0x1c,0x1f,0x80,0x54, + 0x55,0xd6,0x70,0x54,0xfc,0x1,0x80,0x56,0x35,0xb8,0x70,0x56,0xe5,0x1e,0x0,0x58, + 0x1e,0xd4,0xf0,0x58,0xc5,0x0,0x0,0x59,0xfe,0xb6,0xf0,0x5a,0xa4,0xe2,0x0,0x5b, + 0xde,0x98,0xf0,0x5c,0x84,0xc4,0x0,0x5d,0xbe,0x7a,0xf0,0x5e,0x64,0xa6,0x0,0x5f, + 0x9e,0x5c,0xf0,0x60,0x4d,0xc2,0x80,0x61,0x87,0x79,0x70,0x62,0x2d,0xa4,0x80,0x63, + 0x67,0x5b,0x70,0x64,0xd,0x86,0x80,0x65,0x47,0x3d,0x70,0x65,0xed,0x68,0x80,0x67, + 0x27,0x1f,0x70,0x67,0xcd,0x4a,0x80,0x69,0x7,0x1,0x70,0x69,0xad,0x2c,0x80,0x6a, + 0xe6,0xe3,0x70,0x6b,0x96,0x49,0x0,0x6c,0xcf,0xff,0xf0,0x6d,0x76,0x2b,0x0,0x6e, + 0xaf,0xe1,0xf0,0x6f,0x56,0xd,0x0,0x70,0x8f,0xc3,0xf0,0x71,0x35,0xef,0x0,0x72, + 0x6f,0xa5,0xf0,0x73,0x15,0xd1,0x0,0x74,0x4f,0x87,0xf0,0x74,0xfe,0xed,0x80,0x76, + 0x38,0xa4,0x70,0x76,0xde,0xcf,0x80,0x78,0x18,0x86,0x70,0x78,0xbe,0xb1,0x80,0x79, + 0xf8,0x68,0x70,0x7a,0x9e,0x93,0x80,0x7b,0xd8,0x4a,0x70,0x7c,0x7e,0x75,0x80,0x7d, + 0xb8,0x2c,0x70,0x7e,0x5e,0x57,0x80,0x7f,0x98,0xe,0x70,0x0,0x2,0x1,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x4,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xc7,0xc0,0x1,0x4,0xff, + 0xff,0xab,0xa0,0x0,0x9,0xff,0xff,0xb9,0xb0,0x1,0xd,0xff,0xff,0xb9,0xb0,0x0, + 0x11,0xff,0xff,0xab,0xa0,0x0,0x9,0x2d,0x30,0x30,0x0,0x43,0x44,0x44,0x54,0x0, + 0x43,0x53,0x54,0x0,0x43,0x44,0x54,0x0,0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x78,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x15,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xe7,0x8c,0x6e,0x0,0xff,0xff,0xff,0xff,0xf7,0x2f,0x4c,0x60,0xff,0xff,0xff,0xff, + 0xf8,0x28,0x77,0xe0,0x0,0x0,0x0,0x0,0x13,0x69,0x56,0x0,0x0,0x0,0x0,0x0, + 0x14,0x59,0x38,0xf0,0x0,0x0,0x0,0x0,0x15,0x49,0x38,0x0,0x0,0x0,0x0,0x0, + 0x16,0x39,0x1a,0xf0,0x0,0x0,0x0,0x0,0x17,0x29,0x1a,0x0,0x0,0x0,0x0,0x0, + 0x18,0x22,0x37,0x70,0x0,0x0,0x0,0x0,0x19,0x8,0xfc,0x0,0x0,0x0,0x0,0x0, + 0x1a,0x2,0x19,0x70,0x0,0x0,0x0,0x0,0x1a,0xf2,0x18,0x80,0x0,0x0,0x0,0x0, + 0x1b,0xe1,0xfb,0x70,0x0,0x0,0x0,0x0,0x1c,0xd1,0xfa,0x80,0x0,0x0,0x0,0x0, + 0x1d,0xc1,0xdd,0x70,0x0,0x0,0x0,0x0,0x1e,0xb1,0xdc,0x80,0x0,0x0,0x0,0x0, + 0x1f,0xa1,0xbf,0x70,0x0,0x0,0x0,0x0,0x20,0x76,0xf,0x0,0x0,0x0,0x0,0x0, + 0x21,0x81,0xa1,0x70,0x0,0x0,0x0,0x0,0x22,0x55,0xf1,0x0,0x0,0x0,0x0,0x0, + 0x23,0x6a,0xbd,0xf0,0x0,0x0,0x0,0x0,0x24,0x35,0xd3,0x0,0x0,0x0,0x0,0x0, + 0x25,0x4a,0x9f,0xf0,0x0,0x0,0x0,0x0,0x26,0x15,0xb5,0x0,0x0,0x0,0x0,0x0, + 0x27,0x2a,0x81,0xf0,0x0,0x0,0x0,0x0,0x27,0xfe,0xd1,0x80,0x0,0x0,0x0,0x0, + 0x29,0xa,0x63,0xf0,0x0,0x0,0x0,0x0,0x29,0xde,0xb3,0x80,0x0,0x0,0x0,0x0, + 0x2a,0xea,0x45,0xf0,0x0,0x0,0x0,0x0,0x2b,0xbe,0x95,0x80,0x0,0x0,0x0,0x0, + 0x2c,0xd3,0x62,0x70,0x0,0x0,0x0,0x0,0x2d,0x9e,0x77,0x80,0x0,0x0,0x0,0x0, + 0x2e,0xb3,0x44,0x70,0x0,0x0,0x0,0x0,0x2f,0x7e,0x59,0x80,0x0,0x0,0x0,0x0, + 0x30,0x93,0x26,0x70,0x0,0x0,0x0,0x0,0x31,0x67,0x76,0x0,0x0,0x0,0x0,0x0, + 0x32,0x73,0x8,0x70,0x0,0x0,0x0,0x0,0x33,0x47,0x58,0x0,0x0,0x0,0x0,0x0, + 0x34,0x52,0xea,0x70,0x0,0x0,0x0,0x0,0x35,0x27,0x3a,0x0,0x0,0x0,0x0,0x0, + 0x36,0x32,0xcc,0x70,0x0,0x0,0x0,0x0,0x37,0x7,0x1c,0x0,0x0,0x0,0x0,0x0, + 0x38,0x1b,0xe8,0xf0,0x0,0x0,0x0,0x0,0x38,0xe6,0xfe,0x0,0x0,0x0,0x0,0x0, + 0x39,0xfb,0xca,0xf0,0x0,0x0,0x0,0x0,0x3a,0xc6,0xe0,0x0,0x0,0x0,0x0,0x0, + 0x3b,0xdb,0xac,0xf0,0x0,0x0,0x0,0x0,0x3c,0xaf,0xfc,0x80,0x0,0x0,0x0,0x0, + 0x3d,0xbb,0x8e,0xf0,0x0,0x0,0x0,0x0,0x3e,0x8f,0xde,0x80,0x0,0x0,0x0,0x0, + 0x3f,0x9b,0x70,0xf0,0x0,0x0,0x0,0x0,0x40,0x6f,0xc0,0x80,0x0,0x0,0x0,0x0, + 0x41,0x84,0x8d,0x70,0x0,0x0,0x0,0x0,0x42,0x4f,0xa2,0x80,0x0,0x0,0x0,0x0, + 0x43,0x64,0x6f,0x70,0x0,0x0,0x0,0x0,0x44,0x2f,0x84,0x80,0x0,0x0,0x0,0x0, + 0x45,0x44,0x51,0x70,0x0,0x0,0x0,0x0,0x45,0xf3,0xb7,0x0,0x0,0x0,0x0,0x0, + 0x47,0x2d,0x6d,0xf0,0x0,0x0,0x0,0x0,0x47,0xd3,0x99,0x0,0x0,0x0,0x0,0x0, + 0x49,0xd,0x4f,0xf0,0x0,0x0,0x0,0x0,0x49,0xb3,0x7b,0x0,0x0,0x0,0x0,0x0, + 0x4a,0xed,0x31,0xf0,0x0,0x0,0x0,0x0,0x4b,0x9c,0x97,0x80,0x0,0x0,0x0,0x0, + 0x4c,0xd6,0x4e,0x70,0x0,0x0,0x0,0x0,0x4d,0x7c,0x79,0x80,0x0,0x0,0x0,0x0, + 0x4e,0xb6,0x30,0x70,0x0,0x0,0x0,0x0,0x4f,0x5c,0x5b,0x80,0x0,0x0,0x0,0x0, + 0x50,0x96,0x12,0x70,0x0,0x0,0x0,0x0,0x51,0x3c,0x3d,0x80,0x0,0x0,0x0,0x0, + 0x52,0x75,0xf4,0x70,0x0,0x0,0x0,0x0,0x53,0x1c,0x1f,0x80,0x0,0x0,0x0,0x0, + 0x54,0x55,0xd6,0x70,0x0,0x0,0x0,0x0,0x54,0xfc,0x1,0x80,0x0,0x0,0x0,0x0, + 0x56,0x35,0xb8,0x70,0x0,0x0,0x0,0x0,0x56,0xe5,0x1e,0x0,0x0,0x0,0x0,0x0, + 0x58,0x1e,0xd4,0xf0,0x0,0x0,0x0,0x0,0x58,0xc5,0x0,0x0,0x0,0x0,0x0,0x0, + 0x59,0xfe,0xb6,0xf0,0x0,0x0,0x0,0x0,0x5a,0xa4,0xe2,0x0,0x0,0x0,0x0,0x0, + 0x5b,0xde,0x98,0xf0,0x0,0x0,0x0,0x0,0x5c,0x84,0xc4,0x0,0x0,0x0,0x0,0x0, + 0x5d,0xbe,0x7a,0xf0,0x0,0x0,0x0,0x0,0x5e,0x64,0xa6,0x0,0x0,0x0,0x0,0x0, + 0x5f,0x9e,0x5c,0xf0,0x0,0x0,0x0,0x0,0x60,0x4d,0xc2,0x80,0x0,0x0,0x0,0x0, + 0x61,0x87,0x79,0x70,0x0,0x0,0x0,0x0,0x62,0x2d,0xa4,0x80,0x0,0x0,0x0,0x0, + 0x63,0x67,0x5b,0x70,0x0,0x0,0x0,0x0,0x64,0xd,0x86,0x80,0x0,0x0,0x0,0x0, + 0x65,0x47,0x3d,0x70,0x0,0x0,0x0,0x0,0x65,0xed,0x68,0x80,0x0,0x0,0x0,0x0, + 0x67,0x27,0x1f,0x70,0x0,0x0,0x0,0x0,0x67,0xcd,0x4a,0x80,0x0,0x0,0x0,0x0, + 0x69,0x7,0x1,0x70,0x0,0x0,0x0,0x0,0x69,0xad,0x2c,0x80,0x0,0x0,0x0,0x0, + 0x6a,0xe6,0xe3,0x70,0x0,0x0,0x0,0x0,0x6b,0x96,0x49,0x0,0x0,0x0,0x0,0x0, + 0x6c,0xcf,0xff,0xf0,0x0,0x0,0x0,0x0,0x6d,0x76,0x2b,0x0,0x0,0x0,0x0,0x0, + 0x6e,0xaf,0xe1,0xf0,0x0,0x0,0x0,0x0,0x6f,0x56,0xd,0x0,0x0,0x0,0x0,0x0, + 0x70,0x8f,0xc3,0xf0,0x0,0x0,0x0,0x0,0x71,0x35,0xef,0x0,0x0,0x0,0x0,0x0, + 0x72,0x6f,0xa5,0xf0,0x0,0x0,0x0,0x0,0x73,0x15,0xd1,0x0,0x0,0x0,0x0,0x0, + 0x74,0x4f,0x87,0xf0,0x0,0x0,0x0,0x0,0x74,0xfe,0xed,0x80,0x0,0x0,0x0,0x0, + 0x76,0x38,0xa4,0x70,0x0,0x0,0x0,0x0,0x76,0xde,0xcf,0x80,0x0,0x0,0x0,0x0, + 0x78,0x18,0x86,0x70,0x0,0x0,0x0,0x0,0x78,0xbe,0xb1,0x80,0x0,0x0,0x0,0x0, + 0x79,0xf8,0x68,0x70,0x0,0x0,0x0,0x0,0x7a,0x9e,0x93,0x80,0x0,0x0,0x0,0x0, + 0x7b,0xd8,0x4a,0x70,0x0,0x0,0x0,0x0,0x7c,0x7e,0x75,0x80,0x0,0x0,0x0,0x0, + 0x7d,0xb8,0x2c,0x70,0x0,0x0,0x0,0x0,0x7e,0x5e,0x57,0x80,0x0,0x0,0x0,0x0, + 0x7f,0x98,0xe,0x70,0x0,0x2,0x1,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x4,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x0,0x0,0x0,0x0, + 0x0,0x0,0xff,0xff,0xc7,0xc0,0x1,0x4,0xff,0xff,0xab,0xa0,0x0,0x9,0xff,0xff, + 0xb9,0xb0,0x1,0xd,0xff,0xff,0xb9,0xb0,0x0,0x11,0xff,0xff,0xab,0xa0,0x0,0x9, + 0x2d,0x30,0x30,0x0,0x43,0x44,0x44,0x54,0x0,0x43,0x53,0x54,0x0,0x43,0x44,0x54, + 0x0,0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xa,0x43,0x53,0x54,0x36,0x43,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30, + 0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Dominica + 0x0,0x0,0x0,0xaa, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x76,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x16,0x80,0x0,0x0,0x0,0x9b, - 0x80,0x4c,0x18,0x13,0x4d,0x6e,0x40,0x14,0x34,0x24,0xc0,0x15,0x23,0xf9,0xa0,0x16, - 0x13,0xdc,0x90,0x17,0x3,0xcd,0x90,0x17,0xf3,0xbe,0x90,0x18,0xe3,0xaf,0x90,0x19, - 0xd3,0xa0,0x90,0x1a,0xc3,0x91,0x90,0x1b,0xbc,0xbd,0x10,0x1c,0xac,0xae,0x10,0x1d, - 0x9c,0x9f,0x10,0x1e,0x8c,0x90,0x10,0x1f,0x7c,0x81,0x10,0x20,0x6c,0x72,0x10,0x21, - 0x5c,0x63,0x10,0x22,0x4c,0x54,0x10,0x23,0x3c,0x45,0x10,0x24,0x2c,0x36,0x10,0x25, - 0x1c,0x27,0x10,0x26,0xc,0x18,0x10,0x27,0x5,0x43,0x90,0x27,0xf5,0x34,0x90,0x28, - 0xe5,0x25,0x90,0x29,0xd5,0x16,0x90,0x2a,0xc5,0x7,0x90,0x2b,0xb4,0xf8,0x90,0x2c, - 0xa4,0xe9,0x90,0x2d,0x94,0xda,0x90,0x2e,0x84,0xcb,0x90,0x2f,0x74,0xbc,0x90,0x30, - 0x64,0xad,0x90,0x31,0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34, - 0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38, - 0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b, - 0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f, - 0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43, - 0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47, - 0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a, - 0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e, - 0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52, - 0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56, - 0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59, - 0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d, - 0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61, - 0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65, - 0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68, - 0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c, - 0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70, - 0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74, - 0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78, - 0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b, - 0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f, - 0x8e,0x7f,0x90,0x0,0x1,0x2,0x3,0x6,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0xff,0xff,0xeb,0x68,0x0,0x0,0xff, - 0xff,0xe3,0xe0,0x0,0x4,0xff,0xff,0xf1,0xf0,0x1,0x8,0xff,0xff,0xe3,0xe0,0x0, - 0x4,0xff,0xff,0xf1,0xf0,0x0,0xd,0x0,0x0,0x0,0x0,0x1,0x11,0x0,0x0,0x0, - 0x0,0x1,0x11,0x4c,0x4d,0x54,0x0,0x43,0x47,0x54,0x0,0x43,0x47,0x53,0x54,0x0, - 0x45,0x47,0x54,0x0,0x45,0x47,0x53,0x54,0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x0, - 0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0, - 0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x76,0x0,0x0,0x0,0x7,0x0, - 0x0,0x0,0x16,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x9b, - 0x80,0x4c,0x18,0x0,0x0,0x0,0x0,0x13,0x4d,0x6e,0x40,0x0,0x0,0x0,0x0,0x14, - 0x34,0x24,0xc0,0x0,0x0,0x0,0x0,0x15,0x23,0xf9,0xa0,0x0,0x0,0x0,0x0,0x16, - 0x13,0xdc,0x90,0x0,0x0,0x0,0x0,0x17,0x3,0xcd,0x90,0x0,0x0,0x0,0x0,0x17, - 0xf3,0xbe,0x90,0x0,0x0,0x0,0x0,0x18,0xe3,0xaf,0x90,0x0,0x0,0x0,0x0,0x19, - 0xd3,0xa0,0x90,0x0,0x0,0x0,0x0,0x1a,0xc3,0x91,0x90,0x0,0x0,0x0,0x0,0x1b, - 0xbc,0xbd,0x10,0x0,0x0,0x0,0x0,0x1c,0xac,0xae,0x10,0x0,0x0,0x0,0x0,0x1d, - 0x9c,0x9f,0x10,0x0,0x0,0x0,0x0,0x1e,0x8c,0x90,0x10,0x0,0x0,0x0,0x0,0x1f, - 0x7c,0x81,0x10,0x0,0x0,0x0,0x0,0x20,0x6c,0x72,0x10,0x0,0x0,0x0,0x0,0x21, - 0x5c,0x63,0x10,0x0,0x0,0x0,0x0,0x22,0x4c,0x54,0x10,0x0,0x0,0x0,0x0,0x23, - 0x3c,0x45,0x10,0x0,0x0,0x0,0x0,0x24,0x2c,0x36,0x10,0x0,0x0,0x0,0x0,0x25, - 0x1c,0x27,0x10,0x0,0x0,0x0,0x0,0x26,0xc,0x18,0x10,0x0,0x0,0x0,0x0,0x27, - 0x5,0x43,0x90,0x0,0x0,0x0,0x0,0x27,0xf5,0x34,0x90,0x0,0x0,0x0,0x0,0x28, - 0xe5,0x25,0x90,0x0,0x0,0x0,0x0,0x29,0xd5,0x16,0x90,0x0,0x0,0x0,0x0,0x2a, - 0xc5,0x7,0x90,0x0,0x0,0x0,0x0,0x2b,0xb4,0xf8,0x90,0x0,0x0,0x0,0x0,0x2c, - 0xa4,0xe9,0x90,0x0,0x0,0x0,0x0,0x2d,0x94,0xda,0x90,0x0,0x0,0x0,0x0,0x2e, - 0x84,0xcb,0x90,0x0,0x0,0x0,0x0,0x2f,0x74,0xbc,0x90,0x0,0x0,0x0,0x0,0x30, - 0x64,0xad,0x90,0x0,0x0,0x0,0x0,0x31,0x5d,0xd9,0x10,0x0,0x0,0x0,0x0,0x32, - 0x72,0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d,0xbb,0x10,0x0,0x0,0x0,0x0,0x34, - 0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d,0x9d,0x10,0x0,0x0,0x0,0x0,0x36, - 0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd,0x7f,0x10,0x0,0x0,0x0,0x0,0x38, - 0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd,0x61,0x10,0x0,0x0,0x0,0x0,0x39, - 0xfb,0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd,0x43,0x10,0x0,0x0,0x0,0x0,0x3b, - 0xdb,0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f,0x90,0x0,0x0,0x0,0x0,0x3d, - 0xbb,0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86,0x41,0x90,0x0,0x0,0x0,0x0,0x3f, - 0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66,0x23,0x90,0x0,0x0,0x0,0x0,0x41, - 0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46,0x5,0x90,0x0,0x0,0x0,0x0,0x43, - 0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25,0xe7,0x90,0x0,0x0,0x0,0x0,0x45, - 0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5,0xc9,0x90,0x0,0x0,0x0,0x0,0x47, - 0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee,0xe6,0x10,0x0,0x0,0x0,0x0,0x49, - 0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce,0xc8,0x10,0x0,0x0,0x0,0x0,0x4a, - 0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae,0xaa,0x10,0x0,0x0,0x0,0x0,0x4c, - 0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c,0x10,0x0,0x0,0x0,0x0,0x4e, - 0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e,0x10,0x0,0x0,0x0,0x0,0x50, - 0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57,0x8a,0x90,0x0,0x0,0x0,0x0,0x52, - 0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37,0x6c,0x90,0x0,0x0,0x0,0x0,0x54, - 0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17,0x4e,0x90,0x0,0x0,0x0,0x0,0x56, - 0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7,0x30,0x90,0x0,0x0,0x0,0x0,0x58, - 0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7,0x12,0x90,0x0,0x0,0x0,0x0,0x59, - 0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4,0x90,0x0,0x0,0x0,0x0,0x5b, - 0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0,0x11,0x10,0x0,0x0,0x0,0x0,0x5d, - 0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3,0x10,0x0,0x0,0x0,0x0,0x5f, - 0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f,0xd5,0x10,0x0,0x0,0x0,0x0,0x61, - 0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f,0xb7,0x10,0x0,0x0,0x0,0x0,0x63, - 0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f,0x99,0x10,0x0,0x0,0x0,0x0,0x65, - 0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8,0xb5,0x90,0x0,0x0,0x0,0x0,0x67, - 0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8,0x97,0x90,0x0,0x0,0x0,0x0,0x68, - 0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8,0x79,0x90,0x0,0x0,0x0,0x0,0x6a, - 0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b,0x90,0x0,0x0,0x0,0x0,0x6c, - 0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88,0x3d,0x90,0x0,0x0,0x0,0x0,0x6e, - 0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68,0x1f,0x90,0x0,0x0,0x0,0x0,0x70, - 0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51,0x3c,0x10,0x0,0x0,0x0,0x0,0x72, - 0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31,0x1e,0x10,0x0,0x0,0x0,0x0,0x74, - 0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11,0x0,0x10,0x0,0x0,0x0,0x0,0x76, - 0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0,0xe2,0x10,0x0,0x0,0x0,0x0,0x78, - 0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0,0xc4,0x10,0x0,0x0,0x0,0x0,0x79, - 0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6,0x10,0x0,0x0,0x0,0x0,0x7b, - 0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99,0xc2,0x90,0x0,0x0,0x0,0x0,0x7d, - 0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79,0xa4,0x90,0x0,0x0,0x0,0x0,0x7f, - 0x8e,0x7f,0x90,0x0,0x1,0x2,0x3,0x6,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0xff,0xff,0xeb,0x68,0x0,0x0,0xff, - 0xff,0xe3,0xe0,0x0,0x4,0xff,0xff,0xf1,0xf0,0x1,0x8,0xff,0xff,0xe3,0xe0,0x0, - 0x4,0xff,0xff,0xf1,0xf0,0x0,0xd,0x0,0x0,0x0,0x0,0x1,0x11,0x0,0x0,0x0, - 0x0,0x1,0x11,0x4c,0x4d,0x54,0x0,0x43,0x47,0x54,0x0,0x43,0x47,0x53,0x54,0x0, - 0x45,0x47,0x54,0x0,0x45,0x47,0x53,0x54,0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x0, - 0x0,0x0,0x0,0x0,0x1,0x1,0x0,0xa,0x45,0x47,0x54,0x31,0x45,0x47,0x53,0x54, - 0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2f,0x30,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e, - 0x30,0x2f,0x31,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Costa_Rica - 0x0,0x0,0x1,0x55, + 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x93, + 0x37,0x33,0xac,0x0,0x1,0xff,0xff,0xc6,0x54,0x0,0x0,0xff,0xff,0xc7,0xc0,0x0, + 0x4,0x4c,0x4d,0x54,0x0,0x41,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, + 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0x93,0x37,0x33,0xac,0x0,0x1,0xff,0xff,0xc6,0x54,0x0, + 0x0,0xff,0xff,0xc7,0xc0,0x0,0x4,0x4c,0x4d,0x54,0x0,0x41,0x53,0x54,0x0,0x0, + 0x0,0x0,0x0,0xa,0x41,0x53,0x54,0x34,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Thule + 0x0,0x0,0x5,0xf8, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xa,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x11,0x80,0x0,0x0,0x0,0xa3, - 0xe8,0x16,0x4d,0x11,0x36,0x49,0x60,0x11,0xb7,0x6e,0x50,0x13,0x16,0x2b,0x60,0x13, - 0x97,0x50,0x50,0x27,0x97,0xe0,0x60,0x28,0x6e,0xb6,0xd0,0x29,0x77,0xc2,0x60,0x29, - 0xc2,0xd9,0xd0,0x1,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0xff,0xff,0xb1, - 0x33,0x0,0x0,0xff,0xff,0xb1,0x33,0x0,0x4,0xff,0xff,0xb9,0xb0,0x1,0x9,0xff, - 0xff,0xab,0xa0,0x0,0xd,0x4c,0x4d,0x54,0x0,0x53,0x4a,0x4d,0x54,0x0,0x43,0x44, - 0x54,0x0,0x43,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a, - 0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xb,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x11,0xf8,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xff,0xff,0xff,0xff,0x69,0x87,0x2a,0x4d,0xff,0xff,0xff,0xff,0xa3,0xe8, - 0x16,0x4d,0x0,0x0,0x0,0x0,0x11,0x36,0x49,0x60,0x0,0x0,0x0,0x0,0x11,0xb7, - 0x6e,0x50,0x0,0x0,0x0,0x0,0x13,0x16,0x2b,0x60,0x0,0x0,0x0,0x0,0x13,0x97, - 0x50,0x50,0x0,0x0,0x0,0x0,0x27,0x97,0xe0,0x60,0x0,0x0,0x0,0x0,0x28,0x6e, - 0xb6,0xd0,0x0,0x0,0x0,0x0,0x29,0x77,0xc2,0x60,0x0,0x0,0x0,0x0,0x29,0xc2, - 0xd9,0xd0,0x0,0x1,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0xff,0xff,0xb1, - 0x33,0x0,0x0,0xff,0xff,0xb1,0x33,0x0,0x4,0xff,0xff,0xb9,0xb0,0x1,0x9,0xff, - 0xff,0xab,0xa0,0x0,0xd,0x4c,0x4d,0x54,0x0,0x53,0x4a,0x4d,0x54,0x0,0x43,0x44, - 0x54,0x0,0x43,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x43, - 0x53,0x54,0x36,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Juneau - 0x0,0x0,0x9,0x3a, - 0x54, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x60,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0x9b, + 0x80,0x77,0xfc,0x27,0xf5,0x7a,0xe0,0x28,0xe5,0x5d,0xd0,0x29,0xd5,0x5c,0xe0,0x2a, + 0xc5,0x3f,0xd0,0x2b,0xbe,0x79,0x60,0x2c,0xd3,0x46,0x50,0x2d,0x9e,0x5b,0x60,0x2e, + 0xb3,0x28,0x50,0x2f,0x7e,0x3d,0x60,0x30,0x93,0xa,0x50,0x31,0x67,0x59,0xe0,0x32, + 0x72,0xec,0x50,0x33,0x47,0x3b,0xe0,0x34,0x52,0xce,0x50,0x35,0x27,0x1d,0xe0,0x36, + 0x32,0xb0,0x50,0x37,0x6,0xff,0xe0,0x38,0x1b,0xcc,0xd0,0x38,0xe6,0xe1,0xe0,0x39, + 0xfb,0xae,0xd0,0x3a,0xc6,0xc3,0xe0,0x3b,0xdb,0x90,0xd0,0x3c,0xaf,0xe0,0x60,0x3d, + 0xbb,0x72,0xd0,0x3e,0x8f,0xc2,0x60,0x3f,0x9b,0x54,0xd0,0x40,0x6f,0xa4,0x60,0x41, + 0x84,0x71,0x50,0x42,0x4f,0x86,0x60,0x43,0x64,0x53,0x50,0x44,0x2f,0x68,0x60,0x45, + 0x44,0x35,0x50,0x45,0xf3,0x9a,0xe0,0x47,0x2d,0x51,0xd0,0x47,0xd3,0x7c,0xe0,0x49, + 0xd,0x33,0xd0,0x49,0xb3,0x5e,0xe0,0x4a,0xed,0x15,0xd0,0x4b,0x9c,0x7b,0x60,0x4c, + 0xd6,0x32,0x50,0x4d,0x7c,0x5d,0x60,0x4e,0xb6,0x14,0x50,0x4f,0x5c,0x3f,0x60,0x50, + 0x95,0xf6,0x50,0x51,0x3c,0x21,0x60,0x52,0x75,0xd8,0x50,0x53,0x1c,0x3,0x60,0x54, + 0x55,0xba,0x50,0x54,0xfb,0xe5,0x60,0x56,0x35,0x9c,0x50,0x56,0xe5,0x1,0xe0,0x58, + 0x1e,0xb8,0xd0,0x58,0xc4,0xe3,0xe0,0x59,0xfe,0x9a,0xd0,0x5a,0xa4,0xc5,0xe0,0x5b, + 0xde,0x7c,0xd0,0x5c,0x84,0xa7,0xe0,0x5d,0xbe,0x5e,0xd0,0x5e,0x64,0x89,0xe0,0x5f, + 0x9e,0x40,0xd0,0x60,0x4d,0xa6,0x60,0x61,0x87,0x5d,0x50,0x62,0x2d,0x88,0x60,0x63, + 0x67,0x3f,0x50,0x64,0xd,0x6a,0x60,0x65,0x47,0x21,0x50,0x65,0xed,0x4c,0x60,0x67, + 0x27,0x3,0x50,0x67,0xcd,0x2e,0x60,0x69,0x6,0xe5,0x50,0x69,0xad,0x10,0x60,0x6a, + 0xe6,0xc7,0x50,0x6b,0x96,0x2c,0xe0,0x6c,0xcf,0xe3,0xd0,0x6d,0x76,0xe,0xe0,0x6e, + 0xaf,0xc5,0xd0,0x6f,0x55,0xf0,0xe0,0x70,0x8f,0xa7,0xd0,0x71,0x35,0xd2,0xe0,0x72, + 0x6f,0x89,0xd0,0x73,0x15,0xb4,0xe0,0x74,0x4f,0x6b,0xd0,0x74,0xfe,0xd1,0x60,0x76, + 0x38,0x88,0x50,0x76,0xde,0xb3,0x60,0x78,0x18,0x6a,0x50,0x78,0xbe,0x95,0x60,0x79, + 0xf8,0x4c,0x50,0x7a,0x9e,0x77,0x60,0x7b,0xd8,0x2e,0x50,0x7c,0x7e,0x59,0x60,0x7d, + 0xb8,0x10,0x50,0x7e,0x5e,0x3b,0x60,0x7f,0x97,0xf2,0x50,0x0,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0xbf,0x84,0x0, + 0x0,0xff,0xff,0xd5,0xd0,0x1,0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0x4c,0x4d,0x54, + 0x0,0x41,0x44,0x54,0x0,0x41,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x8f,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x26,0x80,0x0,0x0,0x0,0xcb, - 0x89,0x1a,0xa0,0xd2,0x23,0xf4,0x70,0xd2,0x61,0x26,0x10,0xfe,0xb8,0x47,0x20,0xff, - 0xa8,0x2a,0x10,0x0,0x98,0x29,0x20,0x1,0x88,0xc,0x10,0x2,0x78,0xb,0x20,0x3, - 0x71,0x28,0x90,0x4,0x61,0x27,0xa0,0x5,0x51,0xa,0x90,0x6,0x41,0x9,0xa0,0x7, - 0x30,0xec,0x90,0x7,0x8d,0x43,0xa0,0x9,0x10,0xce,0x90,0x9,0xad,0xbf,0x20,0xa, - 0xf0,0xb0,0x90,0xb,0xe0,0xaf,0xa0,0xc,0xd9,0xcd,0x10,0xd,0xc0,0x91,0xa0,0xe, - 0xb9,0xaf,0x10,0xf,0xa9,0xae,0x20,0x10,0x99,0x91,0x10,0x11,0x89,0x90,0x20,0x12, - 0x79,0x73,0x10,0x13,0x69,0x72,0x20,0x14,0x59,0x63,0x20,0x15,0x49,0x54,0x20,0x16, - 0x39,0x37,0x10,0x17,0x29,0x36,0x20,0x18,0x22,0x53,0x90,0x19,0x9,0x18,0x20,0x1a, - 0x2,0x35,0x90,0x1a,0x2b,0x14,0x10,0x1a,0xf2,0x42,0xb0,0x1b,0xe2,0x25,0xa0,0x1c, - 0xd2,0x24,0xb0,0x1d,0xc2,0x7,0xa0,0x1e,0xb2,0x6,0xb0,0x1f,0xa1,0xe9,0xa0,0x20, - 0x76,0x39,0x30,0x21,0x81,0xcb,0xa0,0x22,0x56,0x1b,0x30,0x23,0x6a,0xe8,0x20,0x24, - 0x35,0xfd,0x30,0x25,0x4a,0xca,0x20,0x26,0x15,0xdf,0x30,0x27,0x2a,0xac,0x20,0x27, - 0xfe,0xfb,0xb0,0x29,0xa,0x8e,0x20,0x29,0xde,0xdd,0xb0,0x2a,0xea,0x70,0x20,0x2b, - 0xbe,0xbf,0xb0,0x2c,0xd3,0x8c,0xa0,0x2d,0x9e,0xa1,0xb0,0x2e,0xb3,0x6e,0xa0,0x2f, - 0x7e,0x83,0xb0,0x30,0x93,0x50,0xa0,0x31,0x67,0xa0,0x30,0x32,0x73,0x32,0xa0,0x33, - 0x47,0x82,0x30,0x34,0x53,0x14,0xa0,0x35,0x27,0x64,0x30,0x36,0x32,0xf6,0xa0,0x37, - 0x7,0x46,0x30,0x38,0x1c,0x13,0x20,0x38,0xe7,0x28,0x30,0x39,0xfb,0xf5,0x20,0x3a, - 0xc7,0xa,0x30,0x3b,0xdb,0xd7,0x20,0x3c,0xb0,0x26,0xb0,0x3d,0xbb,0xb9,0x20,0x3e, - 0x90,0x8,0xb0,0x3f,0x9b,0x9b,0x20,0x40,0x6f,0xea,0xb0,0x41,0x84,0xb7,0xa0,0x42, - 0x4f,0xcc,0xb0,0x43,0x64,0x99,0xa0,0x44,0x2f,0xae,0xb0,0x45,0x44,0x7b,0xa0,0x45, - 0xf3,0xe1,0x30,0x47,0x2d,0x98,0x20,0x47,0xd3,0xc3,0x30,0x49,0xd,0x7a,0x20,0x49, - 0xb3,0xa5,0x30,0x4a,0xed,0x5c,0x20,0x4b,0x9c,0xc1,0xb0,0x4c,0xd6,0x78,0xa0,0x4d, - 0x7c,0xa3,0xb0,0x4e,0xb6,0x5a,0xa0,0x4f,0x5c,0x85,0xb0,0x50,0x96,0x3c,0xa0,0x51, - 0x3c,0x67,0xb0,0x52,0x76,0x1e,0xa0,0x53,0x1c,0x49,0xb0,0x54,0x56,0x0,0xa0,0x54, - 0xfc,0x2b,0xb0,0x56,0x35,0xe2,0xa0,0x56,0xe5,0x48,0x30,0x58,0x1e,0xff,0x20,0x58, - 0xc5,0x2a,0x30,0x59,0xfe,0xe1,0x20,0x5a,0xa5,0xc,0x30,0x5b,0xde,0xc3,0x20,0x5c, - 0x84,0xee,0x30,0x5d,0xbe,0xa5,0x20,0x5e,0x64,0xd0,0x30,0x5f,0x9e,0x87,0x20,0x60, - 0x4d,0xec,0xb0,0x61,0x87,0xa3,0xa0,0x62,0x2d,0xce,0xb0,0x63,0x67,0x85,0xa0,0x64, - 0xd,0xb0,0xb0,0x65,0x47,0x67,0xa0,0x65,0xed,0x92,0xb0,0x67,0x27,0x49,0xa0,0x67, - 0xcd,0x74,0xb0,0x69,0x7,0x2b,0xa0,0x69,0xad,0x56,0xb0,0x6a,0xe7,0xd,0xa0,0x6b, - 0x96,0x73,0x30,0x6c,0xd0,0x2a,0x20,0x6d,0x76,0x55,0x30,0x6e,0xb0,0xc,0x20,0x6f, - 0x56,0x37,0x30,0x70,0x8f,0xee,0x20,0x71,0x36,0x19,0x30,0x72,0x6f,0xd0,0x20,0x73, - 0x15,0xfb,0x30,0x74,0x4f,0xb2,0x20,0x74,0xff,0x17,0xb0,0x76,0x38,0xce,0xa0,0x76, - 0xde,0xf9,0xb0,0x78,0x18,0xb0,0xa0,0x78,0xbe,0xdb,0xb0,0x79,0xf8,0x92,0xa0,0x7a, - 0x9e,0xbd,0xb0,0x7b,0xd8,0x74,0xa0,0x7c,0x7e,0x9f,0xb0,0x7d,0xb8,0x56,0xa0,0x7e, - 0x5e,0x81,0xb0,0x7f,0x98,0x38,0xa0,0x1,0x2,0x3,0x1,0x4,0x1,0x4,0x1,0x4, - 0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4, - 0x1,0x5,0x1,0x4,0x1,0x4,0x1,0x4,0x6,0x8,0x7,0x8,0x7,0x8,0x7,0x8, - 0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8, - 0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8, - 0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8, - 0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8, - 0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8, - 0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8, - 0x7,0x8,0x7,0x8,0x7,0x8,0xff,0xff,0x81,0xfb,0x0,0x0,0xff,0xff,0x8f,0x80, - 0x0,0x4,0xff,0xff,0x9d,0x90,0x1,0x8,0xff,0xff,0x9d,0x90,0x1,0xc,0xff,0xff, - 0x9d,0x90,0x1,0x10,0xff,0xff,0x8f,0x80,0x1,0x14,0xff,0xff,0x81,0x70,0x0,0x18, - 0xff,0xff,0x8f,0x80,0x1,0x1c,0xff,0xff,0x81,0x70,0x0,0x21,0x4c,0x4d,0x54,0x0, - 0x50,0x53,0x54,0x0,0x50,0x57,0x54,0x0,0x50,0x50,0x54,0x0,0x50,0x44,0x54,0x0, - 0x59,0x44,0x54,0x0,0x59,0x53,0x54,0x0,0x41,0x4b,0x44,0x54,0x0,0x41,0x4b,0x53, - 0x54,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0, - 0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0xa, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x91,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x26, - 0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x3f,0xc0,0xd1,0x85, - 0xff,0xff,0xff,0xff,0x7d,0x87,0x32,0xc5,0xff,0xff,0xff,0xff,0xcb,0x89,0x1a,0xa0, - 0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x61,0x26,0x10, - 0xff,0xff,0xff,0xff,0xfe,0xb8,0x47,0x20,0xff,0xff,0xff,0xff,0xff,0xa8,0x2a,0x10, - 0x0,0x0,0x0,0x0,0x0,0x98,0x29,0x20,0x0,0x0,0x0,0x0,0x1,0x88,0xc,0x10, - 0x0,0x0,0x0,0x0,0x2,0x78,0xb,0x20,0x0,0x0,0x0,0x0,0x3,0x71,0x28,0x90, - 0x0,0x0,0x0,0x0,0x4,0x61,0x27,0xa0,0x0,0x0,0x0,0x0,0x5,0x51,0xa,0x90, - 0x0,0x0,0x0,0x0,0x6,0x41,0x9,0xa0,0x0,0x0,0x0,0x0,0x7,0x30,0xec,0x90, - 0x0,0x0,0x0,0x0,0x7,0x8d,0x43,0xa0,0x0,0x0,0x0,0x0,0x9,0x10,0xce,0x90, - 0x0,0x0,0x0,0x0,0x9,0xad,0xbf,0x20,0x0,0x0,0x0,0x0,0xa,0xf0,0xb0,0x90, - 0x0,0x0,0x0,0x0,0xb,0xe0,0xaf,0xa0,0x0,0x0,0x0,0x0,0xc,0xd9,0xcd,0x10, - 0x0,0x0,0x0,0x0,0xd,0xc0,0x91,0xa0,0x0,0x0,0x0,0x0,0xe,0xb9,0xaf,0x10, - 0x0,0x0,0x0,0x0,0xf,0xa9,0xae,0x20,0x0,0x0,0x0,0x0,0x10,0x99,0x91,0x10, - 0x0,0x0,0x0,0x0,0x11,0x89,0x90,0x20,0x0,0x0,0x0,0x0,0x12,0x79,0x73,0x10, - 0x0,0x0,0x0,0x0,0x13,0x69,0x72,0x20,0x0,0x0,0x0,0x0,0x14,0x59,0x63,0x20, - 0x0,0x0,0x0,0x0,0x15,0x49,0x54,0x20,0x0,0x0,0x0,0x0,0x16,0x39,0x37,0x10, - 0x0,0x0,0x0,0x0,0x17,0x29,0x36,0x20,0x0,0x0,0x0,0x0,0x18,0x22,0x53,0x90, - 0x0,0x0,0x0,0x0,0x19,0x9,0x18,0x20,0x0,0x0,0x0,0x0,0x1a,0x2,0x35,0x90, - 0x0,0x0,0x0,0x0,0x1a,0x2b,0x14,0x10,0x0,0x0,0x0,0x0,0x1a,0xf2,0x42,0xb0, - 0x0,0x0,0x0,0x0,0x1b,0xe2,0x25,0xa0,0x0,0x0,0x0,0x0,0x1c,0xd2,0x24,0xb0, - 0x0,0x0,0x0,0x0,0x1d,0xc2,0x7,0xa0,0x0,0x0,0x0,0x0,0x1e,0xb2,0x6,0xb0, - 0x0,0x0,0x0,0x0,0x1f,0xa1,0xe9,0xa0,0x0,0x0,0x0,0x0,0x20,0x76,0x39,0x30, - 0x0,0x0,0x0,0x0,0x21,0x81,0xcb,0xa0,0x0,0x0,0x0,0x0,0x22,0x56,0x1b,0x30, - 0x0,0x0,0x0,0x0,0x23,0x6a,0xe8,0x20,0x0,0x0,0x0,0x0,0x24,0x35,0xfd,0x30, - 0x0,0x0,0x0,0x0,0x25,0x4a,0xca,0x20,0x0,0x0,0x0,0x0,0x26,0x15,0xdf,0x30, - 0x0,0x0,0x0,0x0,0x27,0x2a,0xac,0x20,0x0,0x0,0x0,0x0,0x27,0xfe,0xfb,0xb0, - 0x0,0x0,0x0,0x0,0x29,0xa,0x8e,0x20,0x0,0x0,0x0,0x0,0x29,0xde,0xdd,0xb0, - 0x0,0x0,0x0,0x0,0x2a,0xea,0x70,0x20,0x0,0x0,0x0,0x0,0x2b,0xbe,0xbf,0xb0, - 0x0,0x0,0x0,0x0,0x2c,0xd3,0x8c,0xa0,0x0,0x0,0x0,0x0,0x2d,0x9e,0xa1,0xb0, - 0x0,0x0,0x0,0x0,0x2e,0xb3,0x6e,0xa0,0x0,0x0,0x0,0x0,0x2f,0x7e,0x83,0xb0, - 0x0,0x0,0x0,0x0,0x30,0x93,0x50,0xa0,0x0,0x0,0x0,0x0,0x31,0x67,0xa0,0x30, - 0x0,0x0,0x0,0x0,0x32,0x73,0x32,0xa0,0x0,0x0,0x0,0x0,0x33,0x47,0x82,0x30, - 0x0,0x0,0x0,0x0,0x34,0x53,0x14,0xa0,0x0,0x0,0x0,0x0,0x35,0x27,0x64,0x30, - 0x0,0x0,0x0,0x0,0x36,0x32,0xf6,0xa0,0x0,0x0,0x0,0x0,0x37,0x7,0x46,0x30, - 0x0,0x0,0x0,0x0,0x38,0x1c,0x13,0x20,0x0,0x0,0x0,0x0,0x38,0xe7,0x28,0x30, - 0x0,0x0,0x0,0x0,0x39,0xfb,0xf5,0x20,0x0,0x0,0x0,0x0,0x3a,0xc7,0xa,0x30, - 0x0,0x0,0x0,0x0,0x3b,0xdb,0xd7,0x20,0x0,0x0,0x0,0x0,0x3c,0xb0,0x26,0xb0, - 0x0,0x0,0x0,0x0,0x3d,0xbb,0xb9,0x20,0x0,0x0,0x0,0x0,0x3e,0x90,0x8,0xb0, - 0x0,0x0,0x0,0x0,0x3f,0x9b,0x9b,0x20,0x0,0x0,0x0,0x0,0x40,0x6f,0xea,0xb0, - 0x0,0x0,0x0,0x0,0x41,0x84,0xb7,0xa0,0x0,0x0,0x0,0x0,0x42,0x4f,0xcc,0xb0, - 0x0,0x0,0x0,0x0,0x43,0x64,0x99,0xa0,0x0,0x0,0x0,0x0,0x44,0x2f,0xae,0xb0, - 0x0,0x0,0x0,0x0,0x45,0x44,0x7b,0xa0,0x0,0x0,0x0,0x0,0x45,0xf3,0xe1,0x30, - 0x0,0x0,0x0,0x0,0x47,0x2d,0x98,0x20,0x0,0x0,0x0,0x0,0x47,0xd3,0xc3,0x30, - 0x0,0x0,0x0,0x0,0x49,0xd,0x7a,0x20,0x0,0x0,0x0,0x0,0x49,0xb3,0xa5,0x30, - 0x0,0x0,0x0,0x0,0x4a,0xed,0x5c,0x20,0x0,0x0,0x0,0x0,0x4b,0x9c,0xc1,0xb0, - 0x0,0x0,0x0,0x0,0x4c,0xd6,0x78,0xa0,0x0,0x0,0x0,0x0,0x4d,0x7c,0xa3,0xb0, - 0x0,0x0,0x0,0x0,0x4e,0xb6,0x5a,0xa0,0x0,0x0,0x0,0x0,0x4f,0x5c,0x85,0xb0, - 0x0,0x0,0x0,0x0,0x50,0x96,0x3c,0xa0,0x0,0x0,0x0,0x0,0x51,0x3c,0x67,0xb0, - 0x0,0x0,0x0,0x0,0x52,0x76,0x1e,0xa0,0x0,0x0,0x0,0x0,0x53,0x1c,0x49,0xb0, - 0x0,0x0,0x0,0x0,0x54,0x56,0x0,0xa0,0x0,0x0,0x0,0x0,0x54,0xfc,0x2b,0xb0, - 0x0,0x0,0x0,0x0,0x56,0x35,0xe2,0xa0,0x0,0x0,0x0,0x0,0x56,0xe5,0x48,0x30, - 0x0,0x0,0x0,0x0,0x58,0x1e,0xff,0x20,0x0,0x0,0x0,0x0,0x58,0xc5,0x2a,0x30, - 0x0,0x0,0x0,0x0,0x59,0xfe,0xe1,0x20,0x0,0x0,0x0,0x0,0x5a,0xa5,0xc,0x30, - 0x0,0x0,0x0,0x0,0x5b,0xde,0xc3,0x20,0x0,0x0,0x0,0x0,0x5c,0x84,0xee,0x30, - 0x0,0x0,0x0,0x0,0x5d,0xbe,0xa5,0x20,0x0,0x0,0x0,0x0,0x5e,0x64,0xd0,0x30, - 0x0,0x0,0x0,0x0,0x5f,0x9e,0x87,0x20,0x0,0x0,0x0,0x0,0x60,0x4d,0xec,0xb0, - 0x0,0x0,0x0,0x0,0x61,0x87,0xa3,0xa0,0x0,0x0,0x0,0x0,0x62,0x2d,0xce,0xb0, - 0x0,0x0,0x0,0x0,0x63,0x67,0x85,0xa0,0x0,0x0,0x0,0x0,0x64,0xd,0xb0,0xb0, - 0x0,0x0,0x0,0x0,0x65,0x47,0x67,0xa0,0x0,0x0,0x0,0x0,0x65,0xed,0x92,0xb0, - 0x0,0x0,0x0,0x0,0x67,0x27,0x49,0xa0,0x0,0x0,0x0,0x0,0x67,0xcd,0x74,0xb0, - 0x0,0x0,0x0,0x0,0x69,0x7,0x2b,0xa0,0x0,0x0,0x0,0x0,0x69,0xad,0x56,0xb0, - 0x0,0x0,0x0,0x0,0x6a,0xe7,0xd,0xa0,0x0,0x0,0x0,0x0,0x6b,0x96,0x73,0x30, - 0x0,0x0,0x0,0x0,0x6c,0xd0,0x2a,0x20,0x0,0x0,0x0,0x0,0x6d,0x76,0x55,0x30, - 0x0,0x0,0x0,0x0,0x6e,0xb0,0xc,0x20,0x0,0x0,0x0,0x0,0x6f,0x56,0x37,0x30, - 0x0,0x0,0x0,0x0,0x70,0x8f,0xee,0x20,0x0,0x0,0x0,0x0,0x71,0x36,0x19,0x30, - 0x0,0x0,0x0,0x0,0x72,0x6f,0xd0,0x20,0x0,0x0,0x0,0x0,0x73,0x15,0xfb,0x30, - 0x0,0x0,0x0,0x0,0x74,0x4f,0xb2,0x20,0x0,0x0,0x0,0x0,0x74,0xff,0x17,0xb0, - 0x0,0x0,0x0,0x0,0x76,0x38,0xce,0xa0,0x0,0x0,0x0,0x0,0x76,0xde,0xf9,0xb0, - 0x0,0x0,0x0,0x0,0x78,0x18,0xb0,0xa0,0x0,0x0,0x0,0x0,0x78,0xbe,0xdb,0xb0, - 0x0,0x0,0x0,0x0,0x79,0xf8,0x92,0xa0,0x0,0x0,0x0,0x0,0x7a,0x9e,0xbd,0xb0, - 0x0,0x0,0x0,0x0,0x7b,0xd8,0x74,0xa0,0x0,0x0,0x0,0x0,0x7c,0x7e,0x9f,0xb0, - 0x0,0x0,0x0,0x0,0x7d,0xb8,0x56,0xa0,0x0,0x0,0x0,0x0,0x7e,0x5e,0x81,0xb0, - 0x0,0x0,0x0,0x0,0x7f,0x98,0x38,0xa0,0x0,0x1,0x2,0x3,0x4,0x2,0x5,0x2, - 0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2, - 0x5,0x2,0x5,0x2,0x6,0x2,0x5,0x2,0x5,0x2,0x5,0x7,0x9,0x8,0x9,0x8, - 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, - 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, - 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, - 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, - 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, - 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, - 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x0,0x0,0xd3,0x7b,0x0,0x0,0xff, - 0xff,0x81,0xfb,0x0,0x0,0xff,0xff,0x8f,0x80,0x0,0x4,0xff,0xff,0x9d,0x90,0x1, - 0x8,0xff,0xff,0x9d,0x90,0x1,0xc,0xff,0xff,0x9d,0x90,0x1,0x10,0xff,0xff,0x8f, - 0x80,0x1,0x14,0xff,0xff,0x81,0x70,0x0,0x18,0xff,0xff,0x8f,0x80,0x1,0x1c,0xff, - 0xff,0x81,0x70,0x0,0x21,0x4c,0x4d,0x54,0x0,0x50,0x53,0x54,0x0,0x50,0x57,0x54, - 0x0,0x50,0x50,0x54,0x0,0x50,0x44,0x54,0x0,0x59,0x44,0x54,0x0,0x59,0x53,0x54, - 0x0,0x41,0x4b,0x44,0x54,0x0,0x41,0x4b,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x1, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0xa, - 0x41,0x4b,0x53,0x54,0x39,0x41,0x4b,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30, - 0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Caracas - 0x0,0x0,0x1,0x5, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x60,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0xf8,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x9b,0x80,0x77,0xfc,0x0,0x0,0x0,0x0,0x27, + 0xf5,0x7a,0xe0,0x0,0x0,0x0,0x0,0x28,0xe5,0x5d,0xd0,0x0,0x0,0x0,0x0,0x29, + 0xd5,0x5c,0xe0,0x0,0x0,0x0,0x0,0x2a,0xc5,0x3f,0xd0,0x0,0x0,0x0,0x0,0x2b, + 0xbe,0x79,0x60,0x0,0x0,0x0,0x0,0x2c,0xd3,0x46,0x50,0x0,0x0,0x0,0x0,0x2d, + 0x9e,0x5b,0x60,0x0,0x0,0x0,0x0,0x2e,0xb3,0x28,0x50,0x0,0x0,0x0,0x0,0x2f, + 0x7e,0x3d,0x60,0x0,0x0,0x0,0x0,0x30,0x93,0xa,0x50,0x0,0x0,0x0,0x0,0x31, + 0x67,0x59,0xe0,0x0,0x0,0x0,0x0,0x32,0x72,0xec,0x50,0x0,0x0,0x0,0x0,0x33, + 0x47,0x3b,0xe0,0x0,0x0,0x0,0x0,0x34,0x52,0xce,0x50,0x0,0x0,0x0,0x0,0x35, + 0x27,0x1d,0xe0,0x0,0x0,0x0,0x0,0x36,0x32,0xb0,0x50,0x0,0x0,0x0,0x0,0x37, + 0x6,0xff,0xe0,0x0,0x0,0x0,0x0,0x38,0x1b,0xcc,0xd0,0x0,0x0,0x0,0x0,0x38, + 0xe6,0xe1,0xe0,0x0,0x0,0x0,0x0,0x39,0xfb,0xae,0xd0,0x0,0x0,0x0,0x0,0x3a, + 0xc6,0xc3,0xe0,0x0,0x0,0x0,0x0,0x3b,0xdb,0x90,0xd0,0x0,0x0,0x0,0x0,0x3c, + 0xaf,0xe0,0x60,0x0,0x0,0x0,0x0,0x3d,0xbb,0x72,0xd0,0x0,0x0,0x0,0x0,0x3e, + 0x8f,0xc2,0x60,0x0,0x0,0x0,0x0,0x3f,0x9b,0x54,0xd0,0x0,0x0,0x0,0x0,0x40, + 0x6f,0xa4,0x60,0x0,0x0,0x0,0x0,0x41,0x84,0x71,0x50,0x0,0x0,0x0,0x0,0x42, + 0x4f,0x86,0x60,0x0,0x0,0x0,0x0,0x43,0x64,0x53,0x50,0x0,0x0,0x0,0x0,0x44, + 0x2f,0x68,0x60,0x0,0x0,0x0,0x0,0x45,0x44,0x35,0x50,0x0,0x0,0x0,0x0,0x45, + 0xf3,0x9a,0xe0,0x0,0x0,0x0,0x0,0x47,0x2d,0x51,0xd0,0x0,0x0,0x0,0x0,0x47, + 0xd3,0x7c,0xe0,0x0,0x0,0x0,0x0,0x49,0xd,0x33,0xd0,0x0,0x0,0x0,0x0,0x49, + 0xb3,0x5e,0xe0,0x0,0x0,0x0,0x0,0x4a,0xed,0x15,0xd0,0x0,0x0,0x0,0x0,0x4b, + 0x9c,0x7b,0x60,0x0,0x0,0x0,0x0,0x4c,0xd6,0x32,0x50,0x0,0x0,0x0,0x0,0x4d, + 0x7c,0x5d,0x60,0x0,0x0,0x0,0x0,0x4e,0xb6,0x14,0x50,0x0,0x0,0x0,0x0,0x4f, + 0x5c,0x3f,0x60,0x0,0x0,0x0,0x0,0x50,0x95,0xf6,0x50,0x0,0x0,0x0,0x0,0x51, + 0x3c,0x21,0x60,0x0,0x0,0x0,0x0,0x52,0x75,0xd8,0x50,0x0,0x0,0x0,0x0,0x53, + 0x1c,0x3,0x60,0x0,0x0,0x0,0x0,0x54,0x55,0xba,0x50,0x0,0x0,0x0,0x0,0x54, + 0xfb,0xe5,0x60,0x0,0x0,0x0,0x0,0x56,0x35,0x9c,0x50,0x0,0x0,0x0,0x0,0x56, + 0xe5,0x1,0xe0,0x0,0x0,0x0,0x0,0x58,0x1e,0xb8,0xd0,0x0,0x0,0x0,0x0,0x58, + 0xc4,0xe3,0xe0,0x0,0x0,0x0,0x0,0x59,0xfe,0x9a,0xd0,0x0,0x0,0x0,0x0,0x5a, + 0xa4,0xc5,0xe0,0x0,0x0,0x0,0x0,0x5b,0xde,0x7c,0xd0,0x0,0x0,0x0,0x0,0x5c, + 0x84,0xa7,0xe0,0x0,0x0,0x0,0x0,0x5d,0xbe,0x5e,0xd0,0x0,0x0,0x0,0x0,0x5e, + 0x64,0x89,0xe0,0x0,0x0,0x0,0x0,0x5f,0x9e,0x40,0xd0,0x0,0x0,0x0,0x0,0x60, + 0x4d,0xa6,0x60,0x0,0x0,0x0,0x0,0x61,0x87,0x5d,0x50,0x0,0x0,0x0,0x0,0x62, + 0x2d,0x88,0x60,0x0,0x0,0x0,0x0,0x63,0x67,0x3f,0x50,0x0,0x0,0x0,0x0,0x64, + 0xd,0x6a,0x60,0x0,0x0,0x0,0x0,0x65,0x47,0x21,0x50,0x0,0x0,0x0,0x0,0x65, + 0xed,0x4c,0x60,0x0,0x0,0x0,0x0,0x67,0x27,0x3,0x50,0x0,0x0,0x0,0x0,0x67, + 0xcd,0x2e,0x60,0x0,0x0,0x0,0x0,0x69,0x6,0xe5,0x50,0x0,0x0,0x0,0x0,0x69, + 0xad,0x10,0x60,0x0,0x0,0x0,0x0,0x6a,0xe6,0xc7,0x50,0x0,0x0,0x0,0x0,0x6b, + 0x96,0x2c,0xe0,0x0,0x0,0x0,0x0,0x6c,0xcf,0xe3,0xd0,0x0,0x0,0x0,0x0,0x6d, + 0x76,0xe,0xe0,0x0,0x0,0x0,0x0,0x6e,0xaf,0xc5,0xd0,0x0,0x0,0x0,0x0,0x6f, + 0x55,0xf0,0xe0,0x0,0x0,0x0,0x0,0x70,0x8f,0xa7,0xd0,0x0,0x0,0x0,0x0,0x71, + 0x35,0xd2,0xe0,0x0,0x0,0x0,0x0,0x72,0x6f,0x89,0xd0,0x0,0x0,0x0,0x0,0x73, + 0x15,0xb4,0xe0,0x0,0x0,0x0,0x0,0x74,0x4f,0x6b,0xd0,0x0,0x0,0x0,0x0,0x74, + 0xfe,0xd1,0x60,0x0,0x0,0x0,0x0,0x76,0x38,0x88,0x50,0x0,0x0,0x0,0x0,0x76, + 0xde,0xb3,0x60,0x0,0x0,0x0,0x0,0x78,0x18,0x6a,0x50,0x0,0x0,0x0,0x0,0x78, + 0xbe,0x95,0x60,0x0,0x0,0x0,0x0,0x79,0xf8,0x4c,0x50,0x0,0x0,0x0,0x0,0x7a, + 0x9e,0x77,0x60,0x0,0x0,0x0,0x0,0x7b,0xd8,0x2e,0x50,0x0,0x0,0x0,0x0,0x7c, + 0x7e,0x59,0x60,0x0,0x0,0x0,0x0,0x7d,0xb8,0x10,0x50,0x0,0x0,0x0,0x0,0x7e, + 0x5e,0x3b,0x60,0x0,0x0,0x0,0x0,0x7f,0x97,0xf2,0x50,0x0,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0xbf,0x84,0x0, + 0x0,0xff,0xff,0xd5,0xd0,0x1,0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0x4c,0x4d,0x54, + 0x0,0x41,0x44,0x54,0x0,0x41,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa, + 0x41,0x53,0x54,0x34,0x41,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30,0x2c,0x4d, + 0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Guayaquil + 0x0,0x0,0x1,0xf, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x5,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0x93, - 0x1e,0x2c,0x3c,0xf6,0x98,0xec,0x48,0x47,0x5b,0x92,0x70,0x57,0x25,0xa9,0x70,0x1, - 0x2,0x3,0x2,0x3,0xff,0xff,0xc1,0x40,0x0,0x0,0xff,0xff,0xc1,0x44,0x0,0x4, - 0xff,0xff,0xc0,0xb8,0x0,0x8,0xff,0xff,0xc7,0xc0,0x0,0x8,0x4c,0x4d,0x54,0x0, - 0x43,0x4d,0x54,0x0,0x56,0x45,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0xc,0xf8,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x69,0x87,0x1a,0x40,0xff,0xff,0xff,0xff, - 0x93,0x1e,0x2c,0x3c,0xff,0xff,0xff,0xff,0xf6,0x98,0xec,0x48,0x0,0x0,0x0,0x0, - 0x47,0x5b,0x92,0x70,0x0,0x0,0x0,0x0,0x57,0x25,0xa9,0x70,0x0,0x1,0x2,0x3, - 0x2,0x3,0xff,0xff,0xc1,0x40,0x0,0x0,0xff,0xff,0xc1,0x44,0x0,0x4,0xff,0xff, - 0xc0,0xb8,0x0,0x8,0xff,0xff,0xc7,0xc0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x43,0x4d, - 0x54,0x0,0x56,0x45,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x56, - 0x45,0x54,0x34,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Menominee - 0x0,0x0,0x8,0xeb, + 0x0,0x0,0x5,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x10,0x80,0x0,0x0,0x0,0xb6, + 0xa4,0x42,0x18,0x2b,0x16,0xfc,0xd0,0x2b,0x71,0xe6,0x40,0x7f,0xff,0xff,0xff,0x1, + 0x3,0x2,0x3,0x3,0xff,0xff,0xb5,0x28,0x0,0x0,0xff,0xff,0xb6,0x68,0x0,0x4, + 0xff,0xff,0xc7,0xc0,0x1,0x8,0xff,0xff,0xb9,0xb0,0x0,0xc,0x4c,0x4d,0x54,0x0, + 0x51,0x4d,0x54,0x0,0x2d,0x30,0x34,0x0,0x2d,0x30,0x35,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x10, + 0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x69,0x87,0x26,0x58, + 0xff,0xff,0xff,0xff,0xb6,0xa4,0x42,0x18,0x0,0x0,0x0,0x0,0x2b,0x16,0xfc,0xd0, + 0x0,0x0,0x0,0x0,0x2b,0x71,0xe6,0x40,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff, + 0x0,0x1,0x3,0x2,0x3,0x3,0xff,0xff,0xb5,0x28,0x0,0x0,0xff,0xff,0xb6,0x68, + 0x0,0x4,0xff,0xff,0xc7,0xc0,0x1,0x8,0xff,0xff,0xb9,0xb0,0x0,0xc,0x4c,0x4d, + 0x54,0x0,0x51,0x4d,0x54,0x0,0x2d,0x30,0x34,0x0,0x2d,0x30,0x35,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2d,0x30,0x35,0x3e,0x35,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Godthab + 0x0,0x0,0x7,0x64, + 0x54, + 0x5a,0x69,0x66,0x33,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x77,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0x9b, + 0x80,0x68,0x0,0x13,0x4d,0x7c,0x50,0x14,0x33,0xfa,0x90,0x15,0x23,0xeb,0x90,0x16, + 0x13,0xdc,0x90,0x17,0x3,0xcd,0x90,0x17,0xf3,0xbe,0x90,0x18,0xe3,0xaf,0x90,0x19, + 0xd3,0xa0,0x90,0x1a,0xc3,0x91,0x90,0x1b,0xbc,0xbd,0x10,0x1c,0xac,0xae,0x10,0x1d, + 0x9c,0x9f,0x10,0x1e,0x8c,0x90,0x10,0x1f,0x7c,0x81,0x10,0x20,0x6c,0x72,0x10,0x21, + 0x5c,0x63,0x10,0x22,0x4c,0x54,0x10,0x23,0x3c,0x45,0x10,0x24,0x2c,0x36,0x10,0x25, + 0x1c,0x27,0x10,0x26,0xc,0x18,0x10,0x27,0x5,0x43,0x90,0x27,0xf5,0x34,0x90,0x28, + 0xe5,0x25,0x90,0x29,0xd5,0x16,0x90,0x2a,0xc5,0x7,0x90,0x2b,0xb4,0xf8,0x90,0x2c, + 0xa4,0xe9,0x90,0x2d,0x94,0xda,0x90,0x2e,0x84,0xcb,0x90,0x2f,0x74,0xbc,0x90,0x30, + 0x64,0xad,0x90,0x31,0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34, + 0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38, + 0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b, + 0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f, + 0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43, + 0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47, + 0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a, + 0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e, + 0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52, + 0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56, + 0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59, + 0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d, + 0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61, + 0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65, + 0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68, + 0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c, + 0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70, + 0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74, + 0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78, + 0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b, + 0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f, + 0x8e,0x7f,0x90,0x7f,0xff,0xff,0xff,0x0,0x1,0x4,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x2,0xff,0xff, + 0xcf,0x80,0x0,0x0,0xff,0xff,0xd5,0xd0,0x0,0x4,0xff,0xff,0xd5,0xd0,0x0,0x4, + 0xff,0xff,0xe3,0xe0,0x1,0x8,0xff,0xff,0xe3,0xe0,0x1,0x8,0x4c,0x4d,0x54,0x0, + 0x2d,0x30,0x33,0x0,0x2d,0x30,0x32,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x1, + 0x1,0x0,0x54,0x5a,0x69,0x66,0x33,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x77,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xc,0xf8,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x9b,0x80,0x68,0x0,0x0,0x0, + 0x0,0x0,0x13,0x4d,0x7c,0x50,0x0,0x0,0x0,0x0,0x14,0x33,0xfa,0x90,0x0,0x0, + 0x0,0x0,0x15,0x23,0xeb,0x90,0x0,0x0,0x0,0x0,0x16,0x13,0xdc,0x90,0x0,0x0, + 0x0,0x0,0x17,0x3,0xcd,0x90,0x0,0x0,0x0,0x0,0x17,0xf3,0xbe,0x90,0x0,0x0, + 0x0,0x0,0x18,0xe3,0xaf,0x90,0x0,0x0,0x0,0x0,0x19,0xd3,0xa0,0x90,0x0,0x0, + 0x0,0x0,0x1a,0xc3,0x91,0x90,0x0,0x0,0x0,0x0,0x1b,0xbc,0xbd,0x10,0x0,0x0, + 0x0,0x0,0x1c,0xac,0xae,0x10,0x0,0x0,0x0,0x0,0x1d,0x9c,0x9f,0x10,0x0,0x0, + 0x0,0x0,0x1e,0x8c,0x90,0x10,0x0,0x0,0x0,0x0,0x1f,0x7c,0x81,0x10,0x0,0x0, + 0x0,0x0,0x20,0x6c,0x72,0x10,0x0,0x0,0x0,0x0,0x21,0x5c,0x63,0x10,0x0,0x0, + 0x0,0x0,0x22,0x4c,0x54,0x10,0x0,0x0,0x0,0x0,0x23,0x3c,0x45,0x10,0x0,0x0, + 0x0,0x0,0x24,0x2c,0x36,0x10,0x0,0x0,0x0,0x0,0x25,0x1c,0x27,0x10,0x0,0x0, + 0x0,0x0,0x26,0xc,0x18,0x10,0x0,0x0,0x0,0x0,0x27,0x5,0x43,0x90,0x0,0x0, + 0x0,0x0,0x27,0xf5,0x34,0x90,0x0,0x0,0x0,0x0,0x28,0xe5,0x25,0x90,0x0,0x0, + 0x0,0x0,0x29,0xd5,0x16,0x90,0x0,0x0,0x0,0x0,0x2a,0xc5,0x7,0x90,0x0,0x0, + 0x0,0x0,0x2b,0xb4,0xf8,0x90,0x0,0x0,0x0,0x0,0x2c,0xa4,0xe9,0x90,0x0,0x0, + 0x0,0x0,0x2d,0x94,0xda,0x90,0x0,0x0,0x0,0x0,0x2e,0x84,0xcb,0x90,0x0,0x0, + 0x0,0x0,0x2f,0x74,0xbc,0x90,0x0,0x0,0x0,0x0,0x30,0x64,0xad,0x90,0x0,0x0, + 0x0,0x0,0x31,0x5d,0xd9,0x10,0x0,0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0, + 0x0,0x0,0x33,0x3d,0xbb,0x10,0x0,0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0, + 0x0,0x0,0x35,0x1d,0x9d,0x10,0x0,0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0, + 0x0,0x0,0x36,0xfd,0x7f,0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0, + 0x0,0x0,0x38,0xdd,0x61,0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0, + 0x0,0x0,0x3a,0xbd,0x43,0x10,0x0,0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0, + 0x0,0x0,0x3c,0xa6,0x5f,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0, + 0x0,0x0,0x3e,0x86,0x41,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0, + 0x0,0x0,0x40,0x66,0x23,0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0, + 0x0,0x0,0x42,0x46,0x5,0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0, + 0x0,0x0,0x44,0x25,0xe7,0x90,0x0,0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0, + 0x0,0x0,0x46,0x5,0xc9,0x90,0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0, + 0x0,0x0,0x47,0xee,0xe6,0x10,0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0, + 0x0,0x0,0x49,0xce,0xc8,0x10,0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0, + 0x0,0x0,0x4b,0xae,0xaa,0x10,0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0, + 0x0,0x0,0x4d,0x8e,0x8c,0x10,0x0,0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0, + 0x0,0x0,0x4f,0x6e,0x6e,0x10,0x0,0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0, + 0x0,0x0,0x51,0x57,0x8a,0x90,0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0, + 0x0,0x0,0x53,0x37,0x6c,0x90,0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0, + 0x0,0x0,0x55,0x17,0x4e,0x90,0x0,0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0, + 0x0,0x0,0x56,0xf7,0x30,0x90,0x0,0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0, + 0x0,0x0,0x58,0xd7,0x12,0x90,0x0,0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0, + 0x0,0x0,0x5a,0xb6,0xf4,0x90,0x0,0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0, + 0x0,0x0,0x5c,0xa0,0x11,0x10,0x0,0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0, + 0x0,0x0,0x5e,0x7f,0xf3,0x10,0x0,0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0, + 0x0,0x0,0x60,0x5f,0xd5,0x10,0x0,0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0, + 0x0,0x0,0x62,0x3f,0xb7,0x10,0x0,0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0, + 0x0,0x0,0x64,0x1f,0x99,0x10,0x0,0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0, + 0x0,0x0,0x66,0x8,0xb5,0x90,0x0,0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0, + 0x0,0x0,0x67,0xe8,0x97,0x90,0x0,0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0, + 0x0,0x0,0x69,0xc8,0x79,0x90,0x0,0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0, + 0x0,0x0,0x6b,0xa8,0x5b,0x90,0x0,0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0, + 0x0,0x0,0x6d,0x88,0x3d,0x90,0x0,0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0, + 0x0,0x0,0x6f,0x68,0x1f,0x90,0x0,0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0, + 0x0,0x0,0x71,0x51,0x3c,0x10,0x0,0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0, + 0x0,0x0,0x73,0x31,0x1e,0x10,0x0,0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0, + 0x0,0x0,0x75,0x11,0x0,0x10,0x0,0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0, + 0x0,0x0,0x76,0xf0,0xe2,0x10,0x0,0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0, + 0x0,0x0,0x78,0xd0,0xc4,0x10,0x0,0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0, + 0x0,0x0,0x7a,0xb0,0xa6,0x10,0x0,0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0, + 0x0,0x0,0x7c,0x99,0xc2,0x90,0x0,0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0, + 0x0,0x0,0x7e,0x79,0xa4,0x90,0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x0, + 0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x4,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x2,0xff,0xff,0xcf, + 0x80,0x0,0x0,0xff,0xff,0xd5,0xd0,0x0,0x4,0xff,0xff,0xd5,0xd0,0x0,0x4,0xff, + 0xff,0xe3,0xe0,0x1,0x8,0xff,0xff,0xe3,0xe0,0x1,0x8,0x4c,0x4d,0x54,0x0,0x2d, + 0x30,0x33,0x0,0x2d,0x30,0x32,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x1,0x1, + 0x0,0xa,0x3c,0x2d,0x30,0x33,0x3e,0x33,0x3c,0x2d,0x30,0x32,0x3e,0x2c,0x4d,0x33, + 0x2e,0x35,0x2e,0x30,0x2f,0x2d,0x32,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30,0x2f, + 0x2d,0x31,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Whitehorse + 0x0,0x0,0x8,0x2d, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x8f,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x18,0x80,0x0,0x0,0x0,0x9e, - 0xa6,0x2c,0x80,0x9f,0xba,0xf9,0x70,0xa0,0x86,0xe,0x80,0xa1,0x9a,0xdb,0x70,0xcb, - 0x88,0xfe,0x80,0xd2,0x23,0xf4,0x70,0xd2,0x61,0x9,0xf0,0xd3,0x75,0xf3,0x0,0xd4, - 0x40,0xeb,0xf0,0xf9,0xf,0x4a,0x80,0xfa,0x8,0x67,0xf0,0xfe,0xb8,0x2b,0x0,0x6, - 0x40,0xdf,0x70,0x7,0x30,0xd0,0x70,0x7,0x8d,0x27,0x80,0x9,0x10,0xb2,0x70,0x9, - 0xad,0xa3,0x0,0xa,0xf0,0x94,0x70,0xb,0xe0,0x93,0x80,0xc,0xd9,0xb0,0xf0,0xd, - 0xc0,0x75,0x80,0xe,0xb9,0x92,0xf0,0xf,0xa9,0x92,0x0,0x10,0x99,0x74,0xf0,0x11, - 0x89,0x74,0x0,0x12,0x79,0x56,0xf0,0x13,0x69,0x56,0x0,0x14,0x59,0x38,0xf0,0x15, - 0x49,0x38,0x0,0x16,0x39,0x1a,0xf0,0x17,0x29,0x1a,0x0,0x18,0x22,0x37,0x70,0x19, - 0x8,0xfc,0x0,0x1a,0x2,0x19,0x70,0x1a,0xf2,0x18,0x80,0x1b,0xe1,0xfb,0x70,0x1c, - 0xd1,0xfa,0x80,0x1d,0xc1,0xdd,0x70,0x1e,0xb1,0xdc,0x80,0x1f,0xa1,0xbf,0x70,0x20, - 0x76,0xf,0x0,0x21,0x81,0xa1,0x70,0x22,0x55,0xf1,0x0,0x23,0x6a,0xbd,0xf0,0x24, - 0x35,0xd3,0x0,0x25,0x4a,0x9f,0xf0,0x26,0x15,0xb5,0x0,0x27,0x2a,0x81,0xf0,0x27, - 0xfe,0xd1,0x80,0x29,0xa,0x63,0xf0,0x29,0xde,0xb3,0x80,0x2a,0xea,0x45,0xf0,0x2b, - 0xbe,0x95,0x80,0x2c,0xd3,0x62,0x70,0x2d,0x9e,0x77,0x80,0x2e,0xb3,0x44,0x70,0x2f, - 0x7e,0x59,0x80,0x30,0x93,0x26,0x70,0x31,0x67,0x76,0x0,0x32,0x73,0x8,0x70,0x33, - 0x47,0x58,0x0,0x34,0x52,0xea,0x70,0x35,0x27,0x3a,0x0,0x36,0x32,0xcc,0x70,0x37, - 0x7,0x1c,0x0,0x38,0x1b,0xe8,0xf0,0x38,0xe6,0xfe,0x0,0x39,0xfb,0xca,0xf0,0x3a, - 0xc6,0xe0,0x0,0x3b,0xdb,0xac,0xf0,0x3c,0xaf,0xfc,0x80,0x3d,0xbb,0x8e,0xf0,0x3e, - 0x8f,0xde,0x80,0x3f,0x9b,0x70,0xf0,0x40,0x6f,0xc0,0x80,0x41,0x84,0x8d,0x70,0x42, - 0x4f,0xa2,0x80,0x43,0x64,0x6f,0x70,0x44,0x2f,0x84,0x80,0x45,0x44,0x51,0x70,0x45, - 0xf3,0xb7,0x0,0x47,0x2d,0x6d,0xf0,0x47,0xd3,0x99,0x0,0x49,0xd,0x4f,0xf0,0x49, - 0xb3,0x7b,0x0,0x4a,0xed,0x31,0xf0,0x4b,0x9c,0x97,0x80,0x4c,0xd6,0x4e,0x70,0x4d, - 0x7c,0x79,0x80,0x4e,0xb6,0x30,0x70,0x4f,0x5c,0x5b,0x80,0x50,0x96,0x12,0x70,0x51, - 0x3c,0x3d,0x80,0x52,0x75,0xf4,0x70,0x53,0x1c,0x1f,0x80,0x54,0x55,0xd6,0x70,0x54, - 0xfc,0x1,0x80,0x56,0x35,0xb8,0x70,0x56,0xe5,0x1e,0x0,0x58,0x1e,0xd4,0xf0,0x58, - 0xc5,0x0,0x0,0x59,0xfe,0xb6,0xf0,0x5a,0xa4,0xe2,0x0,0x5b,0xde,0x98,0xf0,0x5c, - 0x84,0xc4,0x0,0x5d,0xbe,0x7a,0xf0,0x5e,0x64,0xa6,0x0,0x5f,0x9e,0x5c,0xf0,0x60, - 0x4d,0xc2,0x80,0x61,0x87,0x79,0x70,0x62,0x2d,0xa4,0x80,0x63,0x67,0x5b,0x70,0x64, - 0xd,0x86,0x80,0x65,0x47,0x3d,0x70,0x65,0xed,0x68,0x80,0x67,0x27,0x1f,0x70,0x67, - 0xcd,0x4a,0x80,0x69,0x7,0x1,0x70,0x69,0xad,0x2c,0x80,0x6a,0xe6,0xe3,0x70,0x6b, - 0x96,0x49,0x0,0x6c,0xcf,0xff,0xf0,0x6d,0x76,0x2b,0x0,0x6e,0xaf,0xe1,0xf0,0x6f, - 0x56,0xd,0x0,0x70,0x8f,0xc3,0xf0,0x71,0x35,0xef,0x0,0x72,0x6f,0xa5,0xf0,0x73, - 0x15,0xd1,0x0,0x74,0x4f,0x87,0xf0,0x74,0xfe,0xed,0x80,0x76,0x38,0xa4,0x70,0x76, - 0xde,0xcf,0x80,0x78,0x18,0x86,0x70,0x78,0xbe,0xb1,0x80,0x79,0xf8,0x68,0x70,0x7a, - 0x9e,0x93,0x80,0x7b,0xd8,0x4a,0x70,0x7c,0x7e,0x75,0x80,0x7d,0xb8,0x2c,0x70,0x7e, - 0x5e,0x57,0x80,0x7f,0x98,0xe,0x70,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x2,0x1, - 0x2,0x1,0x2,0x5,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0xad,0xdd,0x0,0x0,0xff,0xff,0xb9,0xb0, - 0x1,0x4,0xff,0xff,0xab,0xa0,0x0,0x8,0xff,0xff,0xb9,0xb0,0x1,0xc,0xff,0xff, - 0xb9,0xb0,0x1,0x10,0xff,0xff,0xb9,0xb0,0x0,0x14,0xff,0xff,0xab,0xa0,0x0,0x8, - 0x4c,0x4d,0x54,0x0,0x43,0x44,0x54,0x0,0x43,0x53,0x54,0x0,0x43,0x57,0x54,0x0, - 0x43,0x50,0x54,0x0,0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0, - 0x0,0x0,0x0,0x1,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0, - 0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x90,0x0,0x0,0x0,0x7,0x0,0x0, - 0x0,0x18,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x61,0x77, - 0x49,0x63,0xff,0xff,0xff,0xff,0x9e,0xa6,0x2c,0x80,0xff,0xff,0xff,0xff,0x9f,0xba, - 0xf9,0x70,0xff,0xff,0xff,0xff,0xa0,0x86,0xe,0x80,0xff,0xff,0xff,0xff,0xa1,0x9a, - 0xdb,0x70,0xff,0xff,0xff,0xff,0xcb,0x88,0xfe,0x80,0xff,0xff,0xff,0xff,0xd2,0x23, - 0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x61,0x9,0xf0,0xff,0xff,0xff,0xff,0xd3,0x75, - 0xf3,0x0,0xff,0xff,0xff,0xff,0xd4,0x40,0xeb,0xf0,0xff,0xff,0xff,0xff,0xf9,0xf, - 0x4a,0x80,0xff,0xff,0xff,0xff,0xfa,0x8,0x67,0xf0,0xff,0xff,0xff,0xff,0xfe,0xb8, - 0x2b,0x0,0x0,0x0,0x0,0x0,0x6,0x40,0xdf,0x70,0x0,0x0,0x0,0x0,0x7,0x30, - 0xd0,0x70,0x0,0x0,0x0,0x0,0x7,0x8d,0x27,0x80,0x0,0x0,0x0,0x0,0x9,0x10, - 0xb2,0x70,0x0,0x0,0x0,0x0,0x9,0xad,0xa3,0x0,0x0,0x0,0x0,0x0,0xa,0xf0, - 0x94,0x70,0x0,0x0,0x0,0x0,0xb,0xe0,0x93,0x80,0x0,0x0,0x0,0x0,0xc,0xd9, - 0xb0,0xf0,0x0,0x0,0x0,0x0,0xd,0xc0,0x75,0x80,0x0,0x0,0x0,0x0,0xe,0xb9, - 0x92,0xf0,0x0,0x0,0x0,0x0,0xf,0xa9,0x92,0x0,0x0,0x0,0x0,0x0,0x10,0x99, - 0x74,0xf0,0x0,0x0,0x0,0x0,0x11,0x89,0x74,0x0,0x0,0x0,0x0,0x0,0x12,0x79, - 0x56,0xf0,0x0,0x0,0x0,0x0,0x13,0x69,0x56,0x0,0x0,0x0,0x0,0x0,0x14,0x59, - 0x38,0xf0,0x0,0x0,0x0,0x0,0x15,0x49,0x38,0x0,0x0,0x0,0x0,0x0,0x16,0x39, - 0x1a,0xf0,0x0,0x0,0x0,0x0,0x17,0x29,0x1a,0x0,0x0,0x0,0x0,0x0,0x18,0x22, - 0x37,0x70,0x0,0x0,0x0,0x0,0x19,0x8,0xfc,0x0,0x0,0x0,0x0,0x0,0x1a,0x2, - 0x19,0x70,0x0,0x0,0x0,0x0,0x1a,0xf2,0x18,0x80,0x0,0x0,0x0,0x0,0x1b,0xe1, - 0xfb,0x70,0x0,0x0,0x0,0x0,0x1c,0xd1,0xfa,0x80,0x0,0x0,0x0,0x0,0x1d,0xc1, - 0xdd,0x70,0x0,0x0,0x0,0x0,0x1e,0xb1,0xdc,0x80,0x0,0x0,0x0,0x0,0x1f,0xa1, - 0xbf,0x70,0x0,0x0,0x0,0x0,0x20,0x76,0xf,0x0,0x0,0x0,0x0,0x0,0x21,0x81, - 0xa1,0x70,0x0,0x0,0x0,0x0,0x22,0x55,0xf1,0x0,0x0,0x0,0x0,0x0,0x23,0x6a, - 0xbd,0xf0,0x0,0x0,0x0,0x0,0x24,0x35,0xd3,0x0,0x0,0x0,0x0,0x0,0x25,0x4a, - 0x9f,0xf0,0x0,0x0,0x0,0x0,0x26,0x15,0xb5,0x0,0x0,0x0,0x0,0x0,0x27,0x2a, - 0x81,0xf0,0x0,0x0,0x0,0x0,0x27,0xfe,0xd1,0x80,0x0,0x0,0x0,0x0,0x29,0xa, - 0x63,0xf0,0x0,0x0,0x0,0x0,0x29,0xde,0xb3,0x80,0x0,0x0,0x0,0x0,0x2a,0xea, - 0x45,0xf0,0x0,0x0,0x0,0x0,0x2b,0xbe,0x95,0x80,0x0,0x0,0x0,0x0,0x2c,0xd3, - 0x62,0x70,0x0,0x0,0x0,0x0,0x2d,0x9e,0x77,0x80,0x0,0x0,0x0,0x0,0x2e,0xb3, - 0x44,0x70,0x0,0x0,0x0,0x0,0x2f,0x7e,0x59,0x80,0x0,0x0,0x0,0x0,0x30,0x93, - 0x26,0x70,0x0,0x0,0x0,0x0,0x31,0x67,0x76,0x0,0x0,0x0,0x0,0x0,0x32,0x73, - 0x8,0x70,0x0,0x0,0x0,0x0,0x33,0x47,0x58,0x0,0x0,0x0,0x0,0x0,0x34,0x52, - 0xea,0x70,0x0,0x0,0x0,0x0,0x35,0x27,0x3a,0x0,0x0,0x0,0x0,0x0,0x36,0x32, - 0xcc,0x70,0x0,0x0,0x0,0x0,0x37,0x7,0x1c,0x0,0x0,0x0,0x0,0x0,0x38,0x1b, - 0xe8,0xf0,0x0,0x0,0x0,0x0,0x38,0xe6,0xfe,0x0,0x0,0x0,0x0,0x0,0x39,0xfb, - 0xca,0xf0,0x0,0x0,0x0,0x0,0x3a,0xc6,0xe0,0x0,0x0,0x0,0x0,0x0,0x3b,0xdb, - 0xac,0xf0,0x0,0x0,0x0,0x0,0x3c,0xaf,0xfc,0x80,0x0,0x0,0x0,0x0,0x3d,0xbb, - 0x8e,0xf0,0x0,0x0,0x0,0x0,0x3e,0x8f,0xde,0x80,0x0,0x0,0x0,0x0,0x3f,0x9b, - 0x70,0xf0,0x0,0x0,0x0,0x0,0x40,0x6f,0xc0,0x80,0x0,0x0,0x0,0x0,0x41,0x84, - 0x8d,0x70,0x0,0x0,0x0,0x0,0x42,0x4f,0xa2,0x80,0x0,0x0,0x0,0x0,0x43,0x64, - 0x6f,0x70,0x0,0x0,0x0,0x0,0x44,0x2f,0x84,0x80,0x0,0x0,0x0,0x0,0x45,0x44, - 0x51,0x70,0x0,0x0,0x0,0x0,0x45,0xf3,0xb7,0x0,0x0,0x0,0x0,0x0,0x47,0x2d, - 0x6d,0xf0,0x0,0x0,0x0,0x0,0x47,0xd3,0x99,0x0,0x0,0x0,0x0,0x0,0x49,0xd, - 0x4f,0xf0,0x0,0x0,0x0,0x0,0x49,0xb3,0x7b,0x0,0x0,0x0,0x0,0x0,0x4a,0xed, - 0x31,0xf0,0x0,0x0,0x0,0x0,0x4b,0x9c,0x97,0x80,0x0,0x0,0x0,0x0,0x4c,0xd6, - 0x4e,0x70,0x0,0x0,0x0,0x0,0x4d,0x7c,0x79,0x80,0x0,0x0,0x0,0x0,0x4e,0xb6, - 0x30,0x70,0x0,0x0,0x0,0x0,0x4f,0x5c,0x5b,0x80,0x0,0x0,0x0,0x0,0x50,0x96, - 0x12,0x70,0x0,0x0,0x0,0x0,0x51,0x3c,0x3d,0x80,0x0,0x0,0x0,0x0,0x52,0x75, - 0xf4,0x70,0x0,0x0,0x0,0x0,0x53,0x1c,0x1f,0x80,0x0,0x0,0x0,0x0,0x54,0x55, - 0xd6,0x70,0x0,0x0,0x0,0x0,0x54,0xfc,0x1,0x80,0x0,0x0,0x0,0x0,0x56,0x35, - 0xb8,0x70,0x0,0x0,0x0,0x0,0x56,0xe5,0x1e,0x0,0x0,0x0,0x0,0x0,0x58,0x1e, - 0xd4,0xf0,0x0,0x0,0x0,0x0,0x58,0xc5,0x0,0x0,0x0,0x0,0x0,0x0,0x59,0xfe, - 0xb6,0xf0,0x0,0x0,0x0,0x0,0x5a,0xa4,0xe2,0x0,0x0,0x0,0x0,0x0,0x5b,0xde, - 0x98,0xf0,0x0,0x0,0x0,0x0,0x5c,0x84,0xc4,0x0,0x0,0x0,0x0,0x0,0x5d,0xbe, - 0x7a,0xf0,0x0,0x0,0x0,0x0,0x5e,0x64,0xa6,0x0,0x0,0x0,0x0,0x0,0x5f,0x9e, - 0x5c,0xf0,0x0,0x0,0x0,0x0,0x60,0x4d,0xc2,0x80,0x0,0x0,0x0,0x0,0x61,0x87, - 0x79,0x70,0x0,0x0,0x0,0x0,0x62,0x2d,0xa4,0x80,0x0,0x0,0x0,0x0,0x63,0x67, - 0x5b,0x70,0x0,0x0,0x0,0x0,0x64,0xd,0x86,0x80,0x0,0x0,0x0,0x0,0x65,0x47, - 0x3d,0x70,0x0,0x0,0x0,0x0,0x65,0xed,0x68,0x80,0x0,0x0,0x0,0x0,0x67,0x27, - 0x1f,0x70,0x0,0x0,0x0,0x0,0x67,0xcd,0x4a,0x80,0x0,0x0,0x0,0x0,0x69,0x7, - 0x1,0x70,0x0,0x0,0x0,0x0,0x69,0xad,0x2c,0x80,0x0,0x0,0x0,0x0,0x6a,0xe6, - 0xe3,0x70,0x0,0x0,0x0,0x0,0x6b,0x96,0x49,0x0,0x0,0x0,0x0,0x0,0x6c,0xcf, - 0xff,0xf0,0x0,0x0,0x0,0x0,0x6d,0x76,0x2b,0x0,0x0,0x0,0x0,0x0,0x6e,0xaf, - 0xe1,0xf0,0x0,0x0,0x0,0x0,0x6f,0x56,0xd,0x0,0x0,0x0,0x0,0x0,0x70,0x8f, - 0xc3,0xf0,0x0,0x0,0x0,0x0,0x71,0x35,0xef,0x0,0x0,0x0,0x0,0x0,0x72,0x6f, - 0xa5,0xf0,0x0,0x0,0x0,0x0,0x73,0x15,0xd1,0x0,0x0,0x0,0x0,0x0,0x74,0x4f, - 0x87,0xf0,0x0,0x0,0x0,0x0,0x74,0xfe,0xed,0x80,0x0,0x0,0x0,0x0,0x76,0x38, - 0xa4,0x70,0x0,0x0,0x0,0x0,0x76,0xde,0xcf,0x80,0x0,0x0,0x0,0x0,0x78,0x18, - 0x86,0x70,0x0,0x0,0x0,0x0,0x78,0xbe,0xb1,0x80,0x0,0x0,0x0,0x0,0x79,0xf8, - 0x68,0x70,0x0,0x0,0x0,0x0,0x7a,0x9e,0x93,0x80,0x0,0x0,0x0,0x0,0x7b,0xd8, - 0x4a,0x70,0x0,0x0,0x0,0x0,0x7c,0x7e,0x75,0x80,0x0,0x0,0x0,0x0,0x7d,0xb8, - 0x2c,0x70,0x0,0x0,0x0,0x0,0x7e,0x5e,0x57,0x80,0x0,0x0,0x0,0x0,0x7f,0x98, - 0xe,0x70,0x0,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x2,0x1,0x2,0x1,0x2,0x5, + 0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x7f,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x21,0x80,0x0,0x0,0x0,0x9e, + 0xb8,0xcb,0xb0,0x9f,0xbb,0x23,0xa0,0xa0,0xd0,0xc,0xb0,0xa1,0xa2,0xd2,0x80,0xcb, + 0x89,0x28,0xb0,0xd2,0x23,0xf4,0x70,0xd2,0x61,0x34,0x20,0xf7,0x2f,0x76,0x90,0xf8, + 0x28,0xa2,0x10,0xfb,0x1d,0x5f,0x10,0x13,0x69,0x72,0x20,0x14,0x59,0x55,0x10,0x15, + 0x49,0x54,0x20,0x16,0x39,0x37,0x10,0x17,0x29,0x36,0x20,0x18,0x22,0x53,0x90,0x19, + 0x9,0x18,0x20,0x1a,0x2,0x35,0x90,0x1a,0xf2,0x34,0xa0,0x1b,0xe2,0x17,0x90,0x1c, + 0xd2,0x16,0xa0,0x1d,0xc1,0xf9,0x90,0x1e,0xb1,0xf8,0xa0,0x1f,0xa1,0xdb,0x90,0x20, + 0x76,0x2b,0x20,0x21,0x81,0xbd,0x90,0x22,0x56,0xd,0x20,0x23,0x6a,0xda,0x10,0x24, + 0x35,0xef,0x20,0x25,0x4a,0xbc,0x10,0x26,0x15,0xd1,0x20,0x27,0x2a,0x9e,0x10,0x27, + 0xfe,0xed,0xa0,0x29,0xa,0x80,0x10,0x29,0xde,0xcf,0xa0,0x2a,0xea,0x62,0x10,0x2b, + 0xbe,0xb1,0xa0,0x2c,0xd3,0x7e,0x90,0x2d,0x9e,0x93,0xa0,0x2e,0xb3,0x60,0x90,0x2f, + 0x7e,0x75,0xa0,0x30,0x93,0x42,0x90,0x31,0x67,0x92,0x20,0x32,0x73,0x24,0x90,0x33, + 0x47,0x74,0x20,0x34,0x53,0x6,0x90,0x35,0x27,0x56,0x20,0x36,0x32,0xe8,0x90,0x37, + 0x7,0x38,0x20,0x38,0x1c,0x5,0x10,0x38,0xe7,0x1a,0x20,0x39,0xfb,0xe7,0x10,0x3a, + 0xc6,0xfc,0x20,0x3b,0xdb,0xc9,0x10,0x3c,0xb0,0x18,0xa0,0x3d,0xbb,0xab,0x10,0x3e, + 0x8f,0xfa,0xa0,0x3f,0x9b,0x8d,0x10,0x40,0x6f,0xdc,0xa0,0x41,0x84,0xa9,0x90,0x42, + 0x4f,0xbe,0xa0,0x43,0x64,0x8b,0x90,0x44,0x2f,0xa0,0xa0,0x45,0x44,0x6d,0x90,0x45, + 0xf3,0xd3,0x20,0x47,0x2d,0x8a,0x10,0x47,0xd3,0xb5,0x20,0x49,0xd,0x6c,0x10,0x49, + 0xb3,0x97,0x20,0x4a,0xed,0x4e,0x10,0x4b,0x9c,0xb3,0xa0,0x4c,0xd6,0x6a,0x90,0x4d, + 0x7c,0x95,0xa0,0x4e,0xb6,0x4c,0x90,0x4f,0x5c,0x77,0xa0,0x50,0x96,0x2e,0x90,0x51, + 0x3c,0x59,0xa0,0x52,0x76,0x10,0x90,0x53,0x1c,0x3b,0xa0,0x54,0x55,0xf2,0x90,0x54, + 0xfc,0x1d,0xa0,0x56,0x35,0xd4,0x90,0x56,0xe5,0x3a,0x20,0x58,0x1e,0xf1,0x10,0x58, + 0xc5,0x1c,0x20,0x59,0xfe,0xd3,0x10,0x5a,0xa4,0xfe,0x20,0x5b,0xde,0xb5,0x10,0x5c, + 0x84,0xe0,0x20,0x5d,0xbe,0x97,0x10,0x5e,0x64,0xc2,0x20,0x5f,0x9e,0x79,0x10,0x60, + 0x4d,0xde,0xa0,0x61,0x87,0x95,0x90,0x62,0x2d,0xc0,0xa0,0x63,0x67,0x77,0x90,0x64, + 0xd,0xa2,0xa0,0x65,0x47,0x59,0x90,0x65,0xed,0x84,0xa0,0x67,0x27,0x3b,0x90,0x67, + 0xcd,0x66,0xa0,0x69,0x7,0x1d,0x90,0x69,0xad,0x48,0xa0,0x6a,0xe6,0xff,0x90,0x6b, + 0x96,0x65,0x20,0x6c,0xd0,0x1c,0x10,0x6d,0x76,0x47,0x20,0x6e,0xaf,0xfe,0x10,0x6f, + 0x56,0x29,0x20,0x70,0x8f,0xe0,0x10,0x71,0x36,0xb,0x20,0x72,0x6f,0xc2,0x10,0x73, + 0x15,0xed,0x20,0x74,0x4f,0xa4,0x10,0x74,0xff,0x9,0xa0,0x76,0x38,0xc0,0x90,0x76, + 0xde,0xeb,0xa0,0x78,0x18,0xa2,0x90,0x78,0xbe,0xcd,0xa0,0x79,0xf8,0x84,0x90,0x7a, + 0x9e,0xaf,0xa0,0x7b,0xd8,0x66,0x90,0x7c,0x7e,0x91,0xa0,0x7d,0xb8,0x48,0x90,0x7e, + 0x5e,0x73,0xa0,0x7f,0x98,0x2a,0x90,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x2,0x5, + 0x2,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, + 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, + 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, + 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, + 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, + 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, + 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, + 0x7,0x6,0x7,0x6,0x7,0x6,0xff,0xff,0x81,0x64,0x0,0x0,0xff,0xff,0x8f,0x80, + 0x1,0x4,0xff,0xff,0x81,0x70,0x0,0x8,0xff,0xff,0x8f,0x80,0x1,0xc,0xff,0xff, + 0x8f,0x80,0x1,0x10,0xff,0xff,0x9d,0x90,0x1,0x14,0xff,0xff,0x8f,0x80,0x0,0x19, + 0xff,0xff,0x9d,0x90,0x1,0x1d,0x4c,0x4d,0x54,0x0,0x59,0x44,0x54,0x0,0x59,0x53, + 0x54,0x0,0x59,0x57,0x54,0x0,0x59,0x50,0x54,0x0,0x59,0x44,0x44,0x54,0x0,0x50, + 0x53,0x54,0x0,0x50,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0, + 0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x0,0x0,0x0,0x8,0x0, + 0x0,0x0,0x21,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x7d, + 0x86,0x8a,0x9c,0xff,0xff,0xff,0xff,0x9e,0xb8,0xcb,0xb0,0xff,0xff,0xff,0xff,0x9f, + 0xbb,0x23,0xa0,0xff,0xff,0xff,0xff,0xa0,0xd0,0xc,0xb0,0xff,0xff,0xff,0xff,0xa1, + 0xa2,0xd2,0x80,0xff,0xff,0xff,0xff,0xcb,0x89,0x28,0xb0,0xff,0xff,0xff,0xff,0xd2, + 0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x61,0x34,0x20,0xff,0xff,0xff,0xff,0xf7, + 0x2f,0x76,0x90,0xff,0xff,0xff,0xff,0xf8,0x28,0xa2,0x10,0xff,0xff,0xff,0xff,0xfb, + 0x1d,0x5f,0x10,0x0,0x0,0x0,0x0,0x13,0x69,0x72,0x20,0x0,0x0,0x0,0x0,0x14, + 0x59,0x55,0x10,0x0,0x0,0x0,0x0,0x15,0x49,0x54,0x20,0x0,0x0,0x0,0x0,0x16, + 0x39,0x37,0x10,0x0,0x0,0x0,0x0,0x17,0x29,0x36,0x20,0x0,0x0,0x0,0x0,0x18, + 0x22,0x53,0x90,0x0,0x0,0x0,0x0,0x19,0x9,0x18,0x20,0x0,0x0,0x0,0x0,0x1a, + 0x2,0x35,0x90,0x0,0x0,0x0,0x0,0x1a,0xf2,0x34,0xa0,0x0,0x0,0x0,0x0,0x1b, + 0xe2,0x17,0x90,0x0,0x0,0x0,0x0,0x1c,0xd2,0x16,0xa0,0x0,0x0,0x0,0x0,0x1d, + 0xc1,0xf9,0x90,0x0,0x0,0x0,0x0,0x1e,0xb1,0xf8,0xa0,0x0,0x0,0x0,0x0,0x1f, + 0xa1,0xdb,0x90,0x0,0x0,0x0,0x0,0x20,0x76,0x2b,0x20,0x0,0x0,0x0,0x0,0x21, + 0x81,0xbd,0x90,0x0,0x0,0x0,0x0,0x22,0x56,0xd,0x20,0x0,0x0,0x0,0x0,0x23, + 0x6a,0xda,0x10,0x0,0x0,0x0,0x0,0x24,0x35,0xef,0x20,0x0,0x0,0x0,0x0,0x25, + 0x4a,0xbc,0x10,0x0,0x0,0x0,0x0,0x26,0x15,0xd1,0x20,0x0,0x0,0x0,0x0,0x27, + 0x2a,0x9e,0x10,0x0,0x0,0x0,0x0,0x27,0xfe,0xed,0xa0,0x0,0x0,0x0,0x0,0x29, + 0xa,0x80,0x10,0x0,0x0,0x0,0x0,0x29,0xde,0xcf,0xa0,0x0,0x0,0x0,0x0,0x2a, + 0xea,0x62,0x10,0x0,0x0,0x0,0x0,0x2b,0xbe,0xb1,0xa0,0x0,0x0,0x0,0x0,0x2c, + 0xd3,0x7e,0x90,0x0,0x0,0x0,0x0,0x2d,0x9e,0x93,0xa0,0x0,0x0,0x0,0x0,0x2e, + 0xb3,0x60,0x90,0x0,0x0,0x0,0x0,0x2f,0x7e,0x75,0xa0,0x0,0x0,0x0,0x0,0x30, + 0x93,0x42,0x90,0x0,0x0,0x0,0x0,0x31,0x67,0x92,0x20,0x0,0x0,0x0,0x0,0x32, + 0x73,0x24,0x90,0x0,0x0,0x0,0x0,0x33,0x47,0x74,0x20,0x0,0x0,0x0,0x0,0x34, + 0x53,0x6,0x90,0x0,0x0,0x0,0x0,0x35,0x27,0x56,0x20,0x0,0x0,0x0,0x0,0x36, + 0x32,0xe8,0x90,0x0,0x0,0x0,0x0,0x37,0x7,0x38,0x20,0x0,0x0,0x0,0x0,0x38, + 0x1c,0x5,0x10,0x0,0x0,0x0,0x0,0x38,0xe7,0x1a,0x20,0x0,0x0,0x0,0x0,0x39, + 0xfb,0xe7,0x10,0x0,0x0,0x0,0x0,0x3a,0xc6,0xfc,0x20,0x0,0x0,0x0,0x0,0x3b, + 0xdb,0xc9,0x10,0x0,0x0,0x0,0x0,0x3c,0xb0,0x18,0xa0,0x0,0x0,0x0,0x0,0x3d, + 0xbb,0xab,0x10,0x0,0x0,0x0,0x0,0x3e,0x8f,0xfa,0xa0,0x0,0x0,0x0,0x0,0x3f, + 0x9b,0x8d,0x10,0x0,0x0,0x0,0x0,0x40,0x6f,0xdc,0xa0,0x0,0x0,0x0,0x0,0x41, + 0x84,0xa9,0x90,0x0,0x0,0x0,0x0,0x42,0x4f,0xbe,0xa0,0x0,0x0,0x0,0x0,0x43, + 0x64,0x8b,0x90,0x0,0x0,0x0,0x0,0x44,0x2f,0xa0,0xa0,0x0,0x0,0x0,0x0,0x45, + 0x44,0x6d,0x90,0x0,0x0,0x0,0x0,0x45,0xf3,0xd3,0x20,0x0,0x0,0x0,0x0,0x47, + 0x2d,0x8a,0x10,0x0,0x0,0x0,0x0,0x47,0xd3,0xb5,0x20,0x0,0x0,0x0,0x0,0x49, + 0xd,0x6c,0x10,0x0,0x0,0x0,0x0,0x49,0xb3,0x97,0x20,0x0,0x0,0x0,0x0,0x4a, + 0xed,0x4e,0x10,0x0,0x0,0x0,0x0,0x4b,0x9c,0xb3,0xa0,0x0,0x0,0x0,0x0,0x4c, + 0xd6,0x6a,0x90,0x0,0x0,0x0,0x0,0x4d,0x7c,0x95,0xa0,0x0,0x0,0x0,0x0,0x4e, + 0xb6,0x4c,0x90,0x0,0x0,0x0,0x0,0x4f,0x5c,0x77,0xa0,0x0,0x0,0x0,0x0,0x50, + 0x96,0x2e,0x90,0x0,0x0,0x0,0x0,0x51,0x3c,0x59,0xa0,0x0,0x0,0x0,0x0,0x52, + 0x76,0x10,0x90,0x0,0x0,0x0,0x0,0x53,0x1c,0x3b,0xa0,0x0,0x0,0x0,0x0,0x54, + 0x55,0xf2,0x90,0x0,0x0,0x0,0x0,0x54,0xfc,0x1d,0xa0,0x0,0x0,0x0,0x0,0x56, + 0x35,0xd4,0x90,0x0,0x0,0x0,0x0,0x56,0xe5,0x3a,0x20,0x0,0x0,0x0,0x0,0x58, + 0x1e,0xf1,0x10,0x0,0x0,0x0,0x0,0x58,0xc5,0x1c,0x20,0x0,0x0,0x0,0x0,0x59, + 0xfe,0xd3,0x10,0x0,0x0,0x0,0x0,0x5a,0xa4,0xfe,0x20,0x0,0x0,0x0,0x0,0x5b, + 0xde,0xb5,0x10,0x0,0x0,0x0,0x0,0x5c,0x84,0xe0,0x20,0x0,0x0,0x0,0x0,0x5d, + 0xbe,0x97,0x10,0x0,0x0,0x0,0x0,0x5e,0x64,0xc2,0x20,0x0,0x0,0x0,0x0,0x5f, + 0x9e,0x79,0x10,0x0,0x0,0x0,0x0,0x60,0x4d,0xde,0xa0,0x0,0x0,0x0,0x0,0x61, + 0x87,0x95,0x90,0x0,0x0,0x0,0x0,0x62,0x2d,0xc0,0xa0,0x0,0x0,0x0,0x0,0x63, + 0x67,0x77,0x90,0x0,0x0,0x0,0x0,0x64,0xd,0xa2,0xa0,0x0,0x0,0x0,0x0,0x65, + 0x47,0x59,0x90,0x0,0x0,0x0,0x0,0x65,0xed,0x84,0xa0,0x0,0x0,0x0,0x0,0x67, + 0x27,0x3b,0x90,0x0,0x0,0x0,0x0,0x67,0xcd,0x66,0xa0,0x0,0x0,0x0,0x0,0x69, + 0x7,0x1d,0x90,0x0,0x0,0x0,0x0,0x69,0xad,0x48,0xa0,0x0,0x0,0x0,0x0,0x6a, + 0xe6,0xff,0x90,0x0,0x0,0x0,0x0,0x6b,0x96,0x65,0x20,0x0,0x0,0x0,0x0,0x6c, + 0xd0,0x1c,0x10,0x0,0x0,0x0,0x0,0x6d,0x76,0x47,0x20,0x0,0x0,0x0,0x0,0x6e, + 0xaf,0xfe,0x10,0x0,0x0,0x0,0x0,0x6f,0x56,0x29,0x20,0x0,0x0,0x0,0x0,0x70, + 0x8f,0xe0,0x10,0x0,0x0,0x0,0x0,0x71,0x36,0xb,0x20,0x0,0x0,0x0,0x0,0x72, + 0x6f,0xc2,0x10,0x0,0x0,0x0,0x0,0x73,0x15,0xed,0x20,0x0,0x0,0x0,0x0,0x74, + 0x4f,0xa4,0x10,0x0,0x0,0x0,0x0,0x74,0xff,0x9,0xa0,0x0,0x0,0x0,0x0,0x76, + 0x38,0xc0,0x90,0x0,0x0,0x0,0x0,0x76,0xde,0xeb,0xa0,0x0,0x0,0x0,0x0,0x78, + 0x18,0xa2,0x90,0x0,0x0,0x0,0x0,0x78,0xbe,0xcd,0xa0,0x0,0x0,0x0,0x0,0x79, + 0xf8,0x84,0x90,0x0,0x0,0x0,0x0,0x7a,0x9e,0xaf,0xa0,0x0,0x0,0x0,0x0,0x7b, + 0xd8,0x66,0x90,0x0,0x0,0x0,0x0,0x7c,0x7e,0x91,0xa0,0x0,0x0,0x0,0x0,0x7d, + 0xb8,0x48,0x90,0x0,0x0,0x0,0x0,0x7e,0x5e,0x73,0xa0,0x0,0x0,0x0,0x0,0x7f, + 0x98,0x2a,0x90,0x0,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x2,0x5,0x2,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0xff,0xff,0x81,0x64,0x0,0x0,0xff,0xff,0x8f,0x80,0x1,0x4,0xff, + 0xff,0x81,0x70,0x0,0x8,0xff,0xff,0x8f,0x80,0x1,0xc,0xff,0xff,0x8f,0x80,0x1, + 0x10,0xff,0xff,0x9d,0x90,0x1,0x14,0xff,0xff,0x8f,0x80,0x0,0x19,0xff,0xff,0x9d, + 0x90,0x1,0x1d,0x4c,0x4d,0x54,0x0,0x59,0x44,0x54,0x0,0x59,0x53,0x54,0x0,0x59, + 0x57,0x54,0x0,0x59,0x50,0x54,0x0,0x59,0x44,0x44,0x54,0x0,0x50,0x53,0x54,0x0, + 0x50,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0xa,0x50,0x53,0x54,0x38,0x50,0x44,0x54,0x2c,0x4d,0x33,0x2e, + 0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Anchorage + 0x0,0x0,0x9,0x4c, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x90,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x28,0x80,0x0,0x0,0x0,0xcb, + 0x89,0x36,0xc0,0xd2,0x23,0xf4,0x70,0xd2,0x61,0x42,0x30,0xfa,0xd2,0x47,0xa0,0xfe, + 0xb8,0x63,0x40,0xff,0xa8,0x46,0x30,0x0,0x98,0x45,0x40,0x1,0x88,0x28,0x30,0x2, + 0x78,0x27,0x40,0x3,0x71,0x44,0xb0,0x4,0x61,0x43,0xc0,0x5,0x51,0x26,0xb0,0x6, + 0x41,0x25,0xc0,0x7,0x31,0x8,0xb0,0x7,0x8d,0x5f,0xc0,0x9,0x10,0xea,0xb0,0x9, + 0xad,0xdb,0x40,0xa,0xf0,0xcc,0xb0,0xb,0xe0,0xcb,0xc0,0xc,0xd9,0xe9,0x30,0xd, + 0xc0,0xad,0xc0,0xe,0xb9,0xcb,0x30,0xf,0xa9,0xca,0x40,0x10,0x99,0xad,0x30,0x11, + 0x89,0xac,0x40,0x12,0x79,0x8f,0x30,0x13,0x69,0x8e,0x40,0x14,0x59,0x71,0x30,0x15, + 0x49,0x70,0x40,0x16,0x39,0x53,0x30,0x17,0x29,0x52,0x40,0x18,0x22,0x6f,0xb0,0x19, + 0x9,0x34,0x40,0x1a,0x2,0x51,0xb0,0x1a,0x2b,0x14,0x10,0x1a,0xf2,0x42,0xb0,0x1b, + 0xe2,0x25,0xa0,0x1c,0xd2,0x24,0xb0,0x1d,0xc2,0x7,0xa0,0x1e,0xb2,0x6,0xb0,0x1f, + 0xa1,0xe9,0xa0,0x20,0x76,0x39,0x30,0x21,0x81,0xcb,0xa0,0x22,0x56,0x1b,0x30,0x23, + 0x6a,0xe8,0x20,0x24,0x35,0xfd,0x30,0x25,0x4a,0xca,0x20,0x26,0x15,0xdf,0x30,0x27, + 0x2a,0xac,0x20,0x27,0xfe,0xfb,0xb0,0x29,0xa,0x8e,0x20,0x29,0xde,0xdd,0xb0,0x2a, + 0xea,0x70,0x20,0x2b,0xbe,0xbf,0xb0,0x2c,0xd3,0x8c,0xa0,0x2d,0x9e,0xa1,0xb0,0x2e, + 0xb3,0x6e,0xa0,0x2f,0x7e,0x83,0xb0,0x30,0x93,0x50,0xa0,0x31,0x67,0xa0,0x30,0x32, + 0x73,0x32,0xa0,0x33,0x47,0x82,0x30,0x34,0x53,0x14,0xa0,0x35,0x27,0x64,0x30,0x36, + 0x32,0xf6,0xa0,0x37,0x7,0x46,0x30,0x38,0x1c,0x13,0x20,0x38,0xe7,0x28,0x30,0x39, + 0xfb,0xf5,0x20,0x3a,0xc7,0xa,0x30,0x3b,0xdb,0xd7,0x20,0x3c,0xb0,0x26,0xb0,0x3d, + 0xbb,0xb9,0x20,0x3e,0x90,0x8,0xb0,0x3f,0x9b,0x9b,0x20,0x40,0x6f,0xea,0xb0,0x41, + 0x84,0xb7,0xa0,0x42,0x4f,0xcc,0xb0,0x43,0x64,0x99,0xa0,0x44,0x2f,0xae,0xb0,0x45, + 0x44,0x7b,0xa0,0x45,0xf3,0xe1,0x30,0x47,0x2d,0x98,0x20,0x47,0xd3,0xc3,0x30,0x49, + 0xd,0x7a,0x20,0x49,0xb3,0xa5,0x30,0x4a,0xed,0x5c,0x20,0x4b,0x9c,0xc1,0xb0,0x4c, + 0xd6,0x78,0xa0,0x4d,0x7c,0xa3,0xb0,0x4e,0xb6,0x5a,0xa0,0x4f,0x5c,0x85,0xb0,0x50, + 0x96,0x3c,0xa0,0x51,0x3c,0x67,0xb0,0x52,0x76,0x1e,0xa0,0x53,0x1c,0x49,0xb0,0x54, + 0x56,0x0,0xa0,0x54,0xfc,0x2b,0xb0,0x56,0x35,0xe2,0xa0,0x56,0xe5,0x48,0x30,0x58, + 0x1e,0xff,0x20,0x58,0xc5,0x2a,0x30,0x59,0xfe,0xe1,0x20,0x5a,0xa5,0xc,0x30,0x5b, + 0xde,0xc3,0x20,0x5c,0x84,0xee,0x30,0x5d,0xbe,0xa5,0x20,0x5e,0x64,0xd0,0x30,0x5f, + 0x9e,0x87,0x20,0x60,0x4d,0xec,0xb0,0x61,0x87,0xa3,0xa0,0x62,0x2d,0xce,0xb0,0x63, + 0x67,0x85,0xa0,0x64,0xd,0xb0,0xb0,0x65,0x47,0x67,0xa0,0x65,0xed,0x92,0xb0,0x67, + 0x27,0x49,0xa0,0x67,0xcd,0x74,0xb0,0x69,0x7,0x2b,0xa0,0x69,0xad,0x56,0xb0,0x6a, + 0xe7,0xd,0xa0,0x6b,0x96,0x73,0x30,0x6c,0xd0,0x2a,0x20,0x6d,0x76,0x55,0x30,0x6e, + 0xb0,0xc,0x20,0x6f,0x56,0x37,0x30,0x70,0x8f,0xee,0x20,0x71,0x36,0x19,0x30,0x72, + 0x6f,0xd0,0x20,0x73,0x15,0xfb,0x30,0x74,0x4f,0xb2,0x20,0x74,0xff,0x17,0xb0,0x76, + 0x38,0xce,0xa0,0x76,0xde,0xf9,0xb0,0x78,0x18,0xb0,0xa0,0x78,0xbe,0xdb,0xb0,0x79, + 0xf8,0x92,0xa0,0x7a,0x9e,0xbd,0xb0,0x7b,0xd8,0x74,0xa0,0x7c,0x7e,0x9f,0xb0,0x7d, + 0xb8,0x56,0xa0,0x7e,0x5e,0x81,0xb0,0x7f,0x98,0x38,0xa0,0x1,0x2,0x3,0x1,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x6,0x8,0x7, + 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, + 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, + 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, + 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, + 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, + 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, + 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0xff,0xff,0x73,0x78,0x0, + 0x0,0xff,0xff,0x73,0x60,0x0,0x4,0xff,0xff,0x81,0x70,0x1,0x8,0xff,0xff,0x81, + 0x70,0x1,0xc,0xff,0xff,0x73,0x60,0x0,0x10,0xff,0xff,0x81,0x70,0x1,0x15,0xff, + 0xff,0x81,0x70,0x0,0x1a,0xff,0xff,0x8f,0x80,0x1,0x1e,0xff,0xff,0x81,0x70,0x0, + 0x23,0x4c,0x4d,0x54,0x0,0x41,0x53,0x54,0x0,0x41,0x57,0x54,0x0,0x41,0x50,0x54, + 0x0,0x41,0x48,0x53,0x54,0x0,0x41,0x48,0x44,0x54,0x0,0x59,0x53,0x54,0x0,0x41, + 0x4b,0x44,0x54,0x0,0x41,0x4b,0x53,0x54,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xa,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0x0, + 0x0,0x0,0xa,0x0,0x0,0x0,0x28,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff, + 0xff,0xff,0xff,0x3f,0xc2,0xfd,0xd1,0xff,0xff,0xff,0xff,0x7d,0x87,0x41,0x48,0xff, + 0xff,0xff,0xff,0xcb,0x89,0x36,0xc0,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff, + 0xff,0xff,0xff,0xd2,0x61,0x42,0x30,0xff,0xff,0xff,0xff,0xfa,0xd2,0x47,0xa0,0xff, + 0xff,0xff,0xff,0xfe,0xb8,0x63,0x40,0xff,0xff,0xff,0xff,0xff,0xa8,0x46,0x30,0x0, + 0x0,0x0,0x0,0x0,0x98,0x45,0x40,0x0,0x0,0x0,0x0,0x1,0x88,0x28,0x30,0x0, + 0x0,0x0,0x0,0x2,0x78,0x27,0x40,0x0,0x0,0x0,0x0,0x3,0x71,0x44,0xb0,0x0, + 0x0,0x0,0x0,0x4,0x61,0x43,0xc0,0x0,0x0,0x0,0x0,0x5,0x51,0x26,0xb0,0x0, + 0x0,0x0,0x0,0x6,0x41,0x25,0xc0,0x0,0x0,0x0,0x0,0x7,0x31,0x8,0xb0,0x0, + 0x0,0x0,0x0,0x7,0x8d,0x5f,0xc0,0x0,0x0,0x0,0x0,0x9,0x10,0xea,0xb0,0x0, + 0x0,0x0,0x0,0x9,0xad,0xdb,0x40,0x0,0x0,0x0,0x0,0xa,0xf0,0xcc,0xb0,0x0, + 0x0,0x0,0x0,0xb,0xe0,0xcb,0xc0,0x0,0x0,0x0,0x0,0xc,0xd9,0xe9,0x30,0x0, + 0x0,0x0,0x0,0xd,0xc0,0xad,0xc0,0x0,0x0,0x0,0x0,0xe,0xb9,0xcb,0x30,0x0, + 0x0,0x0,0x0,0xf,0xa9,0xca,0x40,0x0,0x0,0x0,0x0,0x10,0x99,0xad,0x30,0x0, + 0x0,0x0,0x0,0x11,0x89,0xac,0x40,0x0,0x0,0x0,0x0,0x12,0x79,0x8f,0x30,0x0, + 0x0,0x0,0x0,0x13,0x69,0x8e,0x40,0x0,0x0,0x0,0x0,0x14,0x59,0x71,0x30,0x0, + 0x0,0x0,0x0,0x15,0x49,0x70,0x40,0x0,0x0,0x0,0x0,0x16,0x39,0x53,0x30,0x0, + 0x0,0x0,0x0,0x17,0x29,0x52,0x40,0x0,0x0,0x0,0x0,0x18,0x22,0x6f,0xb0,0x0, + 0x0,0x0,0x0,0x19,0x9,0x34,0x40,0x0,0x0,0x0,0x0,0x1a,0x2,0x51,0xb0,0x0, + 0x0,0x0,0x0,0x1a,0x2b,0x14,0x10,0x0,0x0,0x0,0x0,0x1a,0xf2,0x42,0xb0,0x0, + 0x0,0x0,0x0,0x1b,0xe2,0x25,0xa0,0x0,0x0,0x0,0x0,0x1c,0xd2,0x24,0xb0,0x0, + 0x0,0x0,0x0,0x1d,0xc2,0x7,0xa0,0x0,0x0,0x0,0x0,0x1e,0xb2,0x6,0xb0,0x0, + 0x0,0x0,0x0,0x1f,0xa1,0xe9,0xa0,0x0,0x0,0x0,0x0,0x20,0x76,0x39,0x30,0x0, + 0x0,0x0,0x0,0x21,0x81,0xcb,0xa0,0x0,0x0,0x0,0x0,0x22,0x56,0x1b,0x30,0x0, + 0x0,0x0,0x0,0x23,0x6a,0xe8,0x20,0x0,0x0,0x0,0x0,0x24,0x35,0xfd,0x30,0x0, + 0x0,0x0,0x0,0x25,0x4a,0xca,0x20,0x0,0x0,0x0,0x0,0x26,0x15,0xdf,0x30,0x0, + 0x0,0x0,0x0,0x27,0x2a,0xac,0x20,0x0,0x0,0x0,0x0,0x27,0xfe,0xfb,0xb0,0x0, + 0x0,0x0,0x0,0x29,0xa,0x8e,0x20,0x0,0x0,0x0,0x0,0x29,0xde,0xdd,0xb0,0x0, + 0x0,0x0,0x0,0x2a,0xea,0x70,0x20,0x0,0x0,0x0,0x0,0x2b,0xbe,0xbf,0xb0,0x0, + 0x0,0x0,0x0,0x2c,0xd3,0x8c,0xa0,0x0,0x0,0x0,0x0,0x2d,0x9e,0xa1,0xb0,0x0, + 0x0,0x0,0x0,0x2e,0xb3,0x6e,0xa0,0x0,0x0,0x0,0x0,0x2f,0x7e,0x83,0xb0,0x0, + 0x0,0x0,0x0,0x30,0x93,0x50,0xa0,0x0,0x0,0x0,0x0,0x31,0x67,0xa0,0x30,0x0, + 0x0,0x0,0x0,0x32,0x73,0x32,0xa0,0x0,0x0,0x0,0x0,0x33,0x47,0x82,0x30,0x0, + 0x0,0x0,0x0,0x34,0x53,0x14,0xa0,0x0,0x0,0x0,0x0,0x35,0x27,0x64,0x30,0x0, + 0x0,0x0,0x0,0x36,0x32,0xf6,0xa0,0x0,0x0,0x0,0x0,0x37,0x7,0x46,0x30,0x0, + 0x0,0x0,0x0,0x38,0x1c,0x13,0x20,0x0,0x0,0x0,0x0,0x38,0xe7,0x28,0x30,0x0, + 0x0,0x0,0x0,0x39,0xfb,0xf5,0x20,0x0,0x0,0x0,0x0,0x3a,0xc7,0xa,0x30,0x0, + 0x0,0x0,0x0,0x3b,0xdb,0xd7,0x20,0x0,0x0,0x0,0x0,0x3c,0xb0,0x26,0xb0,0x0, + 0x0,0x0,0x0,0x3d,0xbb,0xb9,0x20,0x0,0x0,0x0,0x0,0x3e,0x90,0x8,0xb0,0x0, + 0x0,0x0,0x0,0x3f,0x9b,0x9b,0x20,0x0,0x0,0x0,0x0,0x40,0x6f,0xea,0xb0,0x0, + 0x0,0x0,0x0,0x41,0x84,0xb7,0xa0,0x0,0x0,0x0,0x0,0x42,0x4f,0xcc,0xb0,0x0, + 0x0,0x0,0x0,0x43,0x64,0x99,0xa0,0x0,0x0,0x0,0x0,0x44,0x2f,0xae,0xb0,0x0, + 0x0,0x0,0x0,0x45,0x44,0x7b,0xa0,0x0,0x0,0x0,0x0,0x45,0xf3,0xe1,0x30,0x0, + 0x0,0x0,0x0,0x47,0x2d,0x98,0x20,0x0,0x0,0x0,0x0,0x47,0xd3,0xc3,0x30,0x0, + 0x0,0x0,0x0,0x49,0xd,0x7a,0x20,0x0,0x0,0x0,0x0,0x49,0xb3,0xa5,0x30,0x0, + 0x0,0x0,0x0,0x4a,0xed,0x5c,0x20,0x0,0x0,0x0,0x0,0x4b,0x9c,0xc1,0xb0,0x0, + 0x0,0x0,0x0,0x4c,0xd6,0x78,0xa0,0x0,0x0,0x0,0x0,0x4d,0x7c,0xa3,0xb0,0x0, + 0x0,0x0,0x0,0x4e,0xb6,0x5a,0xa0,0x0,0x0,0x0,0x0,0x4f,0x5c,0x85,0xb0,0x0, + 0x0,0x0,0x0,0x50,0x96,0x3c,0xa0,0x0,0x0,0x0,0x0,0x51,0x3c,0x67,0xb0,0x0, + 0x0,0x0,0x0,0x52,0x76,0x1e,0xa0,0x0,0x0,0x0,0x0,0x53,0x1c,0x49,0xb0,0x0, + 0x0,0x0,0x0,0x54,0x56,0x0,0xa0,0x0,0x0,0x0,0x0,0x54,0xfc,0x2b,0xb0,0x0, + 0x0,0x0,0x0,0x56,0x35,0xe2,0xa0,0x0,0x0,0x0,0x0,0x56,0xe5,0x48,0x30,0x0, + 0x0,0x0,0x0,0x58,0x1e,0xff,0x20,0x0,0x0,0x0,0x0,0x58,0xc5,0x2a,0x30,0x0, + 0x0,0x0,0x0,0x59,0xfe,0xe1,0x20,0x0,0x0,0x0,0x0,0x5a,0xa5,0xc,0x30,0x0, + 0x0,0x0,0x0,0x5b,0xde,0xc3,0x20,0x0,0x0,0x0,0x0,0x5c,0x84,0xee,0x30,0x0, + 0x0,0x0,0x0,0x5d,0xbe,0xa5,0x20,0x0,0x0,0x0,0x0,0x5e,0x64,0xd0,0x30,0x0, + 0x0,0x0,0x0,0x5f,0x9e,0x87,0x20,0x0,0x0,0x0,0x0,0x60,0x4d,0xec,0xb0,0x0, + 0x0,0x0,0x0,0x61,0x87,0xa3,0xa0,0x0,0x0,0x0,0x0,0x62,0x2d,0xce,0xb0,0x0, + 0x0,0x0,0x0,0x63,0x67,0x85,0xa0,0x0,0x0,0x0,0x0,0x64,0xd,0xb0,0xb0,0x0, + 0x0,0x0,0x0,0x65,0x47,0x67,0xa0,0x0,0x0,0x0,0x0,0x65,0xed,0x92,0xb0,0x0, + 0x0,0x0,0x0,0x67,0x27,0x49,0xa0,0x0,0x0,0x0,0x0,0x67,0xcd,0x74,0xb0,0x0, + 0x0,0x0,0x0,0x69,0x7,0x2b,0xa0,0x0,0x0,0x0,0x0,0x69,0xad,0x56,0xb0,0x0, + 0x0,0x0,0x0,0x6a,0xe7,0xd,0xa0,0x0,0x0,0x0,0x0,0x6b,0x96,0x73,0x30,0x0, + 0x0,0x0,0x0,0x6c,0xd0,0x2a,0x20,0x0,0x0,0x0,0x0,0x6d,0x76,0x55,0x30,0x0, + 0x0,0x0,0x0,0x6e,0xb0,0xc,0x20,0x0,0x0,0x0,0x0,0x6f,0x56,0x37,0x30,0x0, + 0x0,0x0,0x0,0x70,0x8f,0xee,0x20,0x0,0x0,0x0,0x0,0x71,0x36,0x19,0x30,0x0, + 0x0,0x0,0x0,0x72,0x6f,0xd0,0x20,0x0,0x0,0x0,0x0,0x73,0x15,0xfb,0x30,0x0, + 0x0,0x0,0x0,0x74,0x4f,0xb2,0x20,0x0,0x0,0x0,0x0,0x74,0xff,0x17,0xb0,0x0, + 0x0,0x0,0x0,0x76,0x38,0xce,0xa0,0x0,0x0,0x0,0x0,0x76,0xde,0xf9,0xb0,0x0, + 0x0,0x0,0x0,0x78,0x18,0xb0,0xa0,0x0,0x0,0x0,0x0,0x78,0xbe,0xdb,0xb0,0x0, + 0x0,0x0,0x0,0x79,0xf8,0x92,0xa0,0x0,0x0,0x0,0x0,0x7a,0x9e,0xbd,0xb0,0x0, + 0x0,0x0,0x0,0x7b,0xd8,0x74,0xa0,0x0,0x0,0x0,0x0,0x7c,0x7e,0x9f,0xb0,0x0, + 0x0,0x0,0x0,0x7d,0xb8,0x56,0xa0,0x0,0x0,0x0,0x0,0x7e,0x5e,0x81,0xb0,0x0, + 0x0,0x0,0x0,0x7f,0x98,0x38,0xa0,0x0,0x1,0x2,0x3,0x4,0x2,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x7,0x9,0x8,0x9,0x8, + 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, + 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, + 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, + 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, + 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, + 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, + 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x0,0x0,0xc4,0xf8,0x0,0x0,0xff, + 0xff,0x73,0x78,0x0,0x0,0xff,0xff,0x73,0x60,0x0,0x4,0xff,0xff,0x81,0x70,0x1, + 0x8,0xff,0xff,0x81,0x70,0x1,0xc,0xff,0xff,0x73,0x60,0x0,0x10,0xff,0xff,0x81, + 0x70,0x1,0x15,0xff,0xff,0x81,0x70,0x0,0x1a,0xff,0xff,0x8f,0x80,0x1,0x1e,0xff, + 0xff,0x81,0x70,0x0,0x23,0x4c,0x4d,0x54,0x0,0x41,0x53,0x54,0x0,0x41,0x57,0x54, + 0x0,0x41,0x50,0x54,0x0,0x41,0x48,0x53,0x54,0x0,0x41,0x48,0x44,0x54,0x0,0x59, + 0x53,0x54,0x0,0x41,0x4b,0x44,0x54,0x0,0x41,0x4b,0x53,0x54,0x0,0x0,0x0,0x0, + 0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0, + 0x0,0xa,0x41,0x4b,0x53,0x54,0x39,0x41,0x4b,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32, + 0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Toronto + 0x0,0x0,0xd,0xaf, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xe9,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0x9e, + 0xb8,0x93,0x70,0x9f,0xba,0xeb,0x60,0xa0,0x87,0x2e,0xc8,0xa1,0x9a,0xb1,0x40,0xa2, + 0x94,0x6,0xf0,0xa3,0x55,0xa9,0x40,0xa4,0x86,0x5d,0xf0,0xa5,0x28,0x78,0x60,0xa6, + 0x66,0x3f,0xf0,0xa7,0xc,0x4e,0xe0,0xa8,0x46,0x21,0xf0,0xa8,0xec,0x30,0xe0,0xaa, + 0x1c,0xc9,0x70,0xaa,0xd5,0x4d,0x60,0xab,0xfc,0xab,0x70,0xac,0xb5,0x2f,0x60,0xad, + 0xdc,0x8d,0x70,0xae,0x95,0x11,0x60,0xaf,0xbc,0x6f,0x70,0xb0,0x7e,0x2d,0xe0,0xb1, + 0x9c,0x51,0x70,0xb2,0x67,0x4a,0x60,0xb3,0x7c,0x33,0x70,0xb4,0x47,0x2c,0x60,0xb5, + 0x5c,0x15,0x70,0xb6,0x27,0xe,0x60,0xb7,0x3b,0xf7,0x70,0xb8,0x6,0xf0,0x60,0xb9, + 0x25,0x13,0xf0,0xb9,0xe6,0xd2,0x60,0xbb,0x4,0xf5,0xf0,0xbb,0xcf,0xee,0xe0,0xbc, + 0xe4,0xd7,0xf0,0xbd,0xaf,0xd0,0xe0,0xbe,0xc4,0xb9,0xf0,0xbf,0x8f,0xb2,0xe0,0xc0, + 0xa4,0x9b,0xf0,0xc1,0x6f,0x94,0xe0,0xc2,0x84,0x7d,0xf0,0xc3,0x4f,0x76,0xe0,0xc4, + 0x64,0x5f,0xf0,0xc5,0x2f,0x58,0xe0,0xc6,0x4d,0x7c,0x70,0xc7,0xf,0x3a,0xe0,0xc8, + 0x2d,0x5e,0x70,0xcb,0x88,0xf0,0x70,0xd2,0x23,0xf4,0x70,0xd2,0x60,0xfb,0xe0,0xd3, + 0x75,0xe4,0xf0,0xd4,0x40,0xdd,0xe0,0xd5,0x55,0xaa,0xd0,0xd6,0x20,0xa3,0xc0,0xd7, + 0x35,0x8c,0xd0,0xd8,0x0,0x85,0xc0,0xd9,0x15,0x6e,0xd0,0xda,0x33,0x76,0x40,0xda, + 0xfe,0xa7,0x70,0xdc,0x13,0x74,0x60,0xdc,0xde,0x89,0x70,0xdd,0xa9,0x82,0x60,0xde, + 0xbe,0x6b,0x70,0xdf,0x89,0x64,0x60,0xe0,0x9e,0x4d,0x70,0xe1,0x69,0x46,0x60,0xe2, + 0x7e,0x2f,0x70,0xe3,0x49,0x28,0x60,0xe4,0x5e,0x11,0x70,0xe5,0x29,0xa,0x60,0xe6, + 0x47,0x2d,0xf0,0xe7,0x12,0x26,0xe0,0xe8,0x27,0xf,0xf0,0xe9,0x16,0xf2,0xe0,0xea, + 0x6,0xf1,0xf0,0xea,0xf6,0xd4,0xe0,0xeb,0xe6,0xd3,0xf0,0xec,0xd6,0xb6,0xe0,0xed, + 0xc6,0xb5,0xf0,0xee,0xbf,0xd3,0x60,0xef,0xaf,0xd2,0x70,0xf0,0x9f,0xb5,0x60,0xf1, + 0x8f,0xb4,0x70,0xf2,0x7f,0x97,0x60,0xf3,0x6f,0x96,0x70,0xf4,0x5f,0x79,0x60,0xf5, + 0x4f,0x78,0x70,0xf6,0x3f,0x5b,0x60,0xf7,0x2f,0x5a,0x70,0xf8,0x28,0x77,0xe0,0xf9, + 0xf,0x3c,0x70,0xfa,0x8,0x59,0xe0,0xfa,0xf8,0x58,0xf0,0xfb,0xe8,0x3b,0xe0,0xfc, + 0xd8,0x3a,0xf0,0xfd,0xc8,0x1d,0xe0,0xfe,0xb8,0x1c,0xf0,0xff,0xa7,0xff,0xe0,0x0, + 0x97,0xfe,0xf0,0x1,0x87,0xe1,0xe0,0x2,0x77,0xe0,0xf0,0x3,0x70,0xfe,0x60,0x4, + 0x60,0xfd,0x70,0x5,0x50,0xe0,0x60,0x6,0x40,0xdf,0x70,0x7,0x30,0xc2,0x60,0x8, + 0x20,0xc1,0x70,0x9,0x10,0xa4,0x60,0xa,0x0,0xa3,0x70,0xa,0xf0,0x86,0x60,0xb, + 0xe0,0x85,0x70,0xc,0xd9,0xa2,0xe0,0xd,0xc0,0x67,0x70,0xe,0xb9,0x84,0xe0,0xf, + 0xa9,0x83,0xf0,0x10,0x99,0x66,0xe0,0x11,0x89,0x65,0xf0,0x12,0x79,0x48,0xe0,0x13, + 0x69,0x47,0xf0,0x14,0x59,0x2a,0xe0,0x15,0x49,0x29,0xf0,0x16,0x39,0xc,0xe0,0x17, + 0x29,0xb,0xf0,0x18,0x22,0x29,0x60,0x19,0x8,0xed,0xf0,0x1a,0x2,0xb,0x60,0x1a, + 0xf2,0xa,0x70,0x1b,0xe1,0xed,0x60,0x1c,0xd1,0xec,0x70,0x1d,0xc1,0xcf,0x60,0x1e, + 0xb1,0xce,0x70,0x1f,0xa1,0xb1,0x60,0x20,0x76,0x0,0xf0,0x21,0x81,0x93,0x60,0x22, + 0x55,0xe2,0xf0,0x23,0x6a,0xaf,0xe0,0x24,0x35,0xc4,0xf0,0x25,0x4a,0x91,0xe0,0x26, + 0x15,0xa6,0xf0,0x27,0x2a,0x73,0xe0,0x27,0xfe,0xc3,0x70,0x29,0xa,0x55,0xe0,0x29, + 0xde,0xa5,0x70,0x2a,0xea,0x37,0xe0,0x2b,0xbe,0x87,0x70,0x2c,0xd3,0x54,0x60,0x2d, + 0x9e,0x69,0x70,0x2e,0xb3,0x36,0x60,0x2f,0x7e,0x4b,0x70,0x30,0x93,0x18,0x60,0x31, + 0x67,0x67,0xf0,0x32,0x72,0xfa,0x60,0x33,0x47,0x49,0xf0,0x34,0x52,0xdc,0x60,0x35, + 0x27,0x2b,0xf0,0x36,0x32,0xbe,0x60,0x37,0x7,0xd,0xf0,0x38,0x1b,0xda,0xe0,0x38, + 0xe6,0xef,0xf0,0x39,0xfb,0xbc,0xe0,0x3a,0xc6,0xd1,0xf0,0x3b,0xdb,0x9e,0xe0,0x3c, + 0xaf,0xee,0x70,0x3d,0xbb,0x80,0xe0,0x3e,0x8f,0xd0,0x70,0x3f,0x9b,0x62,0xe0,0x40, + 0x6f,0xb2,0x70,0x41,0x84,0x7f,0x60,0x42,0x4f,0x94,0x70,0x43,0x64,0x61,0x60,0x44, + 0x2f,0x76,0x70,0x45,0x44,0x43,0x60,0x45,0xf3,0xa8,0xf0,0x47,0x2d,0x5f,0xe0,0x47, + 0xd3,0x8a,0xf0,0x49,0xd,0x41,0xe0,0x49,0xb3,0x6c,0xf0,0x4a,0xed,0x23,0xe0,0x4b, + 0x9c,0x89,0x70,0x4c,0xd6,0x40,0x60,0x4d,0x7c,0x6b,0x70,0x4e,0xb6,0x22,0x60,0x4f, + 0x5c,0x4d,0x70,0x50,0x96,0x4,0x60,0x51,0x3c,0x2f,0x70,0x52,0x75,0xe6,0x60,0x53, + 0x1c,0x11,0x70,0x54,0x55,0xc8,0x60,0x54,0xfb,0xf3,0x70,0x56,0x35,0xaa,0x60,0x56, + 0xe5,0xf,0xf0,0x58,0x1e,0xc6,0xe0,0x58,0xc4,0xf1,0xf0,0x59,0xfe,0xa8,0xe0,0x5a, + 0xa4,0xd3,0xf0,0x5b,0xde,0x8a,0xe0,0x5c,0x84,0xb5,0xf0,0x5d,0xbe,0x6c,0xe0,0x5e, + 0x64,0x97,0xf0,0x5f,0x9e,0x4e,0xe0,0x60,0x4d,0xb4,0x70,0x61,0x87,0x6b,0x60,0x62, + 0x2d,0x96,0x70,0x63,0x67,0x4d,0x60,0x64,0xd,0x78,0x70,0x65,0x47,0x2f,0x60,0x65, + 0xed,0x5a,0x70,0x67,0x27,0x11,0x60,0x67,0xcd,0x3c,0x70,0x69,0x6,0xf3,0x60,0x69, + 0xad,0x1e,0x70,0x6a,0xe6,0xd5,0x60,0x6b,0x96,0x3a,0xf0,0x6c,0xcf,0xf1,0xe0,0x6d, + 0x76,0x1c,0xf0,0x6e,0xaf,0xd3,0xe0,0x6f,0x55,0xfe,0xf0,0x70,0x8f,0xb5,0xe0,0x71, + 0x35,0xe0,0xf0,0x72,0x6f,0x97,0xe0,0x73,0x15,0xc2,0xf0,0x74,0x4f,0x79,0xe0,0x74, + 0xfe,0xdf,0x70,0x76,0x38,0x96,0x60,0x76,0xde,0xc1,0x70,0x78,0x18,0x78,0x60,0x78, + 0xbe,0xa3,0x70,0x79,0xf8,0x5a,0x60,0x7a,0x9e,0x85,0x70,0x7b,0xd8,0x3c,0x60,0x7c, + 0x7e,0x67,0x70,0x7d,0xb8,0x1e,0x60,0x7e,0x5e,0x49,0x70,0x7f,0x98,0x0,0x60,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x3,0x4,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, @@ -26837,1526 +23082,1717 @@ static const unsigned char qt_resource_data[] = { 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0xff,0xff,0xad,0xdd,0x0,0x0,0xff,0xff,0xb9,0xb0,0x1,0x4,0xff,0xff, - 0xab,0xa0,0x0,0x8,0xff,0xff,0xb9,0xb0,0x1,0xc,0xff,0xff,0xb9,0xb0,0x1,0x10, - 0xff,0xff,0xb9,0xb0,0x0,0x14,0xff,0xff,0xab,0xa0,0x0,0x8,0x4c,0x4d,0x54,0x0, - 0x43,0x44,0x54,0x0,0x43,0x53,0x54,0x0,0x43,0x57,0x54,0x0,0x43,0x50,0x54,0x0, - 0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1, - 0x0,0x0,0xa,0x43,0x53,0x54,0x36,0x43,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e, - 0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Detroit - 0x0,0x0,0x8,0xa8, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0xb5,0x94,0x0,0x0,0xff,0xff, + 0xc7,0xc0,0x1,0x4,0xff,0xff,0xb9,0xb0,0x0,0x8,0xff,0xff,0xc7,0xc0,0x1,0xc, + 0xff,0xff,0xc7,0xc0,0x1,0x10,0x4c,0x4d,0x54,0x0,0x45,0x44,0x54,0x0,0x45,0x53, + 0x54,0x0,0x45,0x57,0x54,0x0,0x45,0x50,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0, + 0x0,0x0,0x0,0x1,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14, + 0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x72,0xee,0x78,0xec, + 0xff,0xff,0xff,0xff,0x9e,0xb8,0x93,0x70,0xff,0xff,0xff,0xff,0x9f,0xba,0xeb,0x60, + 0xff,0xff,0xff,0xff,0xa0,0x87,0x2e,0xc8,0xff,0xff,0xff,0xff,0xa1,0x9a,0xb1,0x40, + 0xff,0xff,0xff,0xff,0xa2,0x94,0x6,0xf0,0xff,0xff,0xff,0xff,0xa3,0x55,0xa9,0x40, + 0xff,0xff,0xff,0xff,0xa4,0x86,0x5d,0xf0,0xff,0xff,0xff,0xff,0xa5,0x28,0x78,0x60, + 0xff,0xff,0xff,0xff,0xa6,0x66,0x3f,0xf0,0xff,0xff,0xff,0xff,0xa7,0xc,0x4e,0xe0, + 0xff,0xff,0xff,0xff,0xa8,0x46,0x21,0xf0,0xff,0xff,0xff,0xff,0xa8,0xec,0x30,0xe0, + 0xff,0xff,0xff,0xff,0xaa,0x1c,0xc9,0x70,0xff,0xff,0xff,0xff,0xaa,0xd5,0x4d,0x60, + 0xff,0xff,0xff,0xff,0xab,0xfc,0xab,0x70,0xff,0xff,0xff,0xff,0xac,0xb5,0x2f,0x60, + 0xff,0xff,0xff,0xff,0xad,0xdc,0x8d,0x70,0xff,0xff,0xff,0xff,0xae,0x95,0x11,0x60, + 0xff,0xff,0xff,0xff,0xaf,0xbc,0x6f,0x70,0xff,0xff,0xff,0xff,0xb0,0x7e,0x2d,0xe0, + 0xff,0xff,0xff,0xff,0xb1,0x9c,0x51,0x70,0xff,0xff,0xff,0xff,0xb2,0x67,0x4a,0x60, + 0xff,0xff,0xff,0xff,0xb3,0x7c,0x33,0x70,0xff,0xff,0xff,0xff,0xb4,0x47,0x2c,0x60, + 0xff,0xff,0xff,0xff,0xb5,0x5c,0x15,0x70,0xff,0xff,0xff,0xff,0xb6,0x27,0xe,0x60, + 0xff,0xff,0xff,0xff,0xb7,0x3b,0xf7,0x70,0xff,0xff,0xff,0xff,0xb8,0x6,0xf0,0x60, + 0xff,0xff,0xff,0xff,0xb9,0x25,0x13,0xf0,0xff,0xff,0xff,0xff,0xb9,0xe6,0xd2,0x60, + 0xff,0xff,0xff,0xff,0xbb,0x4,0xf5,0xf0,0xff,0xff,0xff,0xff,0xbb,0xcf,0xee,0xe0, + 0xff,0xff,0xff,0xff,0xbc,0xe4,0xd7,0xf0,0xff,0xff,0xff,0xff,0xbd,0xaf,0xd0,0xe0, + 0xff,0xff,0xff,0xff,0xbe,0xc4,0xb9,0xf0,0xff,0xff,0xff,0xff,0xbf,0x8f,0xb2,0xe0, + 0xff,0xff,0xff,0xff,0xc0,0xa4,0x9b,0xf0,0xff,0xff,0xff,0xff,0xc1,0x6f,0x94,0xe0, + 0xff,0xff,0xff,0xff,0xc2,0x84,0x7d,0xf0,0xff,0xff,0xff,0xff,0xc3,0x4f,0x76,0xe0, + 0xff,0xff,0xff,0xff,0xc4,0x64,0x5f,0xf0,0xff,0xff,0xff,0xff,0xc5,0x2f,0x58,0xe0, + 0xff,0xff,0xff,0xff,0xc6,0x4d,0x7c,0x70,0xff,0xff,0xff,0xff,0xc7,0xf,0x3a,0xe0, + 0xff,0xff,0xff,0xff,0xc8,0x2d,0x5e,0x70,0xff,0xff,0xff,0xff,0xcb,0x88,0xf0,0x70, + 0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x60,0xfb,0xe0, + 0xff,0xff,0xff,0xff,0xd3,0x75,0xe4,0xf0,0xff,0xff,0xff,0xff,0xd4,0x40,0xdd,0xe0, + 0xff,0xff,0xff,0xff,0xd5,0x55,0xaa,0xd0,0xff,0xff,0xff,0xff,0xd6,0x20,0xa3,0xc0, + 0xff,0xff,0xff,0xff,0xd7,0x35,0x8c,0xd0,0xff,0xff,0xff,0xff,0xd8,0x0,0x85,0xc0, + 0xff,0xff,0xff,0xff,0xd9,0x15,0x6e,0xd0,0xff,0xff,0xff,0xff,0xda,0x33,0x76,0x40, + 0xff,0xff,0xff,0xff,0xda,0xfe,0xa7,0x70,0xff,0xff,0xff,0xff,0xdc,0x13,0x74,0x60, + 0xff,0xff,0xff,0xff,0xdc,0xde,0x89,0x70,0xff,0xff,0xff,0xff,0xdd,0xa9,0x82,0x60, + 0xff,0xff,0xff,0xff,0xde,0xbe,0x6b,0x70,0xff,0xff,0xff,0xff,0xdf,0x89,0x64,0x60, + 0xff,0xff,0xff,0xff,0xe0,0x9e,0x4d,0x70,0xff,0xff,0xff,0xff,0xe1,0x69,0x46,0x60, + 0xff,0xff,0xff,0xff,0xe2,0x7e,0x2f,0x70,0xff,0xff,0xff,0xff,0xe3,0x49,0x28,0x60, + 0xff,0xff,0xff,0xff,0xe4,0x5e,0x11,0x70,0xff,0xff,0xff,0xff,0xe5,0x29,0xa,0x60, + 0xff,0xff,0xff,0xff,0xe6,0x47,0x2d,0xf0,0xff,0xff,0xff,0xff,0xe7,0x12,0x26,0xe0, + 0xff,0xff,0xff,0xff,0xe8,0x27,0xf,0xf0,0xff,0xff,0xff,0xff,0xe9,0x16,0xf2,0xe0, + 0xff,0xff,0xff,0xff,0xea,0x6,0xf1,0xf0,0xff,0xff,0xff,0xff,0xea,0xf6,0xd4,0xe0, + 0xff,0xff,0xff,0xff,0xeb,0xe6,0xd3,0xf0,0xff,0xff,0xff,0xff,0xec,0xd6,0xb6,0xe0, + 0xff,0xff,0xff,0xff,0xed,0xc6,0xb5,0xf0,0xff,0xff,0xff,0xff,0xee,0xbf,0xd3,0x60, + 0xff,0xff,0xff,0xff,0xef,0xaf,0xd2,0x70,0xff,0xff,0xff,0xff,0xf0,0x9f,0xb5,0x60, + 0xff,0xff,0xff,0xff,0xf1,0x8f,0xb4,0x70,0xff,0xff,0xff,0xff,0xf2,0x7f,0x97,0x60, + 0xff,0xff,0xff,0xff,0xf3,0x6f,0x96,0x70,0xff,0xff,0xff,0xff,0xf4,0x5f,0x79,0x60, + 0xff,0xff,0xff,0xff,0xf5,0x4f,0x78,0x70,0xff,0xff,0xff,0xff,0xf6,0x3f,0x5b,0x60, + 0xff,0xff,0xff,0xff,0xf7,0x2f,0x5a,0x70,0xff,0xff,0xff,0xff,0xf8,0x28,0x77,0xe0, + 0xff,0xff,0xff,0xff,0xf9,0xf,0x3c,0x70,0xff,0xff,0xff,0xff,0xfa,0x8,0x59,0xe0, + 0xff,0xff,0xff,0xff,0xfa,0xf8,0x58,0xf0,0xff,0xff,0xff,0xff,0xfb,0xe8,0x3b,0xe0, + 0xff,0xff,0xff,0xff,0xfc,0xd8,0x3a,0xf0,0xff,0xff,0xff,0xff,0xfd,0xc8,0x1d,0xe0, + 0xff,0xff,0xff,0xff,0xfe,0xb8,0x1c,0xf0,0xff,0xff,0xff,0xff,0xff,0xa7,0xff,0xe0, + 0x0,0x0,0x0,0x0,0x0,0x97,0xfe,0xf0,0x0,0x0,0x0,0x0,0x1,0x87,0xe1,0xe0, + 0x0,0x0,0x0,0x0,0x2,0x77,0xe0,0xf0,0x0,0x0,0x0,0x0,0x3,0x70,0xfe,0x60, + 0x0,0x0,0x0,0x0,0x4,0x60,0xfd,0x70,0x0,0x0,0x0,0x0,0x5,0x50,0xe0,0x60, + 0x0,0x0,0x0,0x0,0x6,0x40,0xdf,0x70,0x0,0x0,0x0,0x0,0x7,0x30,0xc2,0x60, + 0x0,0x0,0x0,0x0,0x8,0x20,0xc1,0x70,0x0,0x0,0x0,0x0,0x9,0x10,0xa4,0x60, + 0x0,0x0,0x0,0x0,0xa,0x0,0xa3,0x70,0x0,0x0,0x0,0x0,0xa,0xf0,0x86,0x60, + 0x0,0x0,0x0,0x0,0xb,0xe0,0x85,0x70,0x0,0x0,0x0,0x0,0xc,0xd9,0xa2,0xe0, + 0x0,0x0,0x0,0x0,0xd,0xc0,0x67,0x70,0x0,0x0,0x0,0x0,0xe,0xb9,0x84,0xe0, + 0x0,0x0,0x0,0x0,0xf,0xa9,0x83,0xf0,0x0,0x0,0x0,0x0,0x10,0x99,0x66,0xe0, + 0x0,0x0,0x0,0x0,0x11,0x89,0x65,0xf0,0x0,0x0,0x0,0x0,0x12,0x79,0x48,0xe0, + 0x0,0x0,0x0,0x0,0x13,0x69,0x47,0xf0,0x0,0x0,0x0,0x0,0x14,0x59,0x2a,0xe0, + 0x0,0x0,0x0,0x0,0x15,0x49,0x29,0xf0,0x0,0x0,0x0,0x0,0x16,0x39,0xc,0xe0, + 0x0,0x0,0x0,0x0,0x17,0x29,0xb,0xf0,0x0,0x0,0x0,0x0,0x18,0x22,0x29,0x60, + 0x0,0x0,0x0,0x0,0x19,0x8,0xed,0xf0,0x0,0x0,0x0,0x0,0x1a,0x2,0xb,0x60, + 0x0,0x0,0x0,0x0,0x1a,0xf2,0xa,0x70,0x0,0x0,0x0,0x0,0x1b,0xe1,0xed,0x60, + 0x0,0x0,0x0,0x0,0x1c,0xd1,0xec,0x70,0x0,0x0,0x0,0x0,0x1d,0xc1,0xcf,0x60, + 0x0,0x0,0x0,0x0,0x1e,0xb1,0xce,0x70,0x0,0x0,0x0,0x0,0x1f,0xa1,0xb1,0x60, + 0x0,0x0,0x0,0x0,0x20,0x76,0x0,0xf0,0x0,0x0,0x0,0x0,0x21,0x81,0x93,0x60, + 0x0,0x0,0x0,0x0,0x22,0x55,0xe2,0xf0,0x0,0x0,0x0,0x0,0x23,0x6a,0xaf,0xe0, + 0x0,0x0,0x0,0x0,0x24,0x35,0xc4,0xf0,0x0,0x0,0x0,0x0,0x25,0x4a,0x91,0xe0, + 0x0,0x0,0x0,0x0,0x26,0x15,0xa6,0xf0,0x0,0x0,0x0,0x0,0x27,0x2a,0x73,0xe0, + 0x0,0x0,0x0,0x0,0x27,0xfe,0xc3,0x70,0x0,0x0,0x0,0x0,0x29,0xa,0x55,0xe0, + 0x0,0x0,0x0,0x0,0x29,0xde,0xa5,0x70,0x0,0x0,0x0,0x0,0x2a,0xea,0x37,0xe0, + 0x0,0x0,0x0,0x0,0x2b,0xbe,0x87,0x70,0x0,0x0,0x0,0x0,0x2c,0xd3,0x54,0x60, + 0x0,0x0,0x0,0x0,0x2d,0x9e,0x69,0x70,0x0,0x0,0x0,0x0,0x2e,0xb3,0x36,0x60, + 0x0,0x0,0x0,0x0,0x2f,0x7e,0x4b,0x70,0x0,0x0,0x0,0x0,0x30,0x93,0x18,0x60, + 0x0,0x0,0x0,0x0,0x31,0x67,0x67,0xf0,0x0,0x0,0x0,0x0,0x32,0x72,0xfa,0x60, + 0x0,0x0,0x0,0x0,0x33,0x47,0x49,0xf0,0x0,0x0,0x0,0x0,0x34,0x52,0xdc,0x60, + 0x0,0x0,0x0,0x0,0x35,0x27,0x2b,0xf0,0x0,0x0,0x0,0x0,0x36,0x32,0xbe,0x60, + 0x0,0x0,0x0,0x0,0x37,0x7,0xd,0xf0,0x0,0x0,0x0,0x0,0x38,0x1b,0xda,0xe0, + 0x0,0x0,0x0,0x0,0x38,0xe6,0xef,0xf0,0x0,0x0,0x0,0x0,0x39,0xfb,0xbc,0xe0, + 0x0,0x0,0x0,0x0,0x3a,0xc6,0xd1,0xf0,0x0,0x0,0x0,0x0,0x3b,0xdb,0x9e,0xe0, + 0x0,0x0,0x0,0x0,0x3c,0xaf,0xee,0x70,0x0,0x0,0x0,0x0,0x3d,0xbb,0x80,0xe0, + 0x0,0x0,0x0,0x0,0x3e,0x8f,0xd0,0x70,0x0,0x0,0x0,0x0,0x3f,0x9b,0x62,0xe0, + 0x0,0x0,0x0,0x0,0x40,0x6f,0xb2,0x70,0x0,0x0,0x0,0x0,0x41,0x84,0x7f,0x60, + 0x0,0x0,0x0,0x0,0x42,0x4f,0x94,0x70,0x0,0x0,0x0,0x0,0x43,0x64,0x61,0x60, + 0x0,0x0,0x0,0x0,0x44,0x2f,0x76,0x70,0x0,0x0,0x0,0x0,0x45,0x44,0x43,0x60, + 0x0,0x0,0x0,0x0,0x45,0xf3,0xa8,0xf0,0x0,0x0,0x0,0x0,0x47,0x2d,0x5f,0xe0, + 0x0,0x0,0x0,0x0,0x47,0xd3,0x8a,0xf0,0x0,0x0,0x0,0x0,0x49,0xd,0x41,0xe0, + 0x0,0x0,0x0,0x0,0x49,0xb3,0x6c,0xf0,0x0,0x0,0x0,0x0,0x4a,0xed,0x23,0xe0, + 0x0,0x0,0x0,0x0,0x4b,0x9c,0x89,0x70,0x0,0x0,0x0,0x0,0x4c,0xd6,0x40,0x60, + 0x0,0x0,0x0,0x0,0x4d,0x7c,0x6b,0x70,0x0,0x0,0x0,0x0,0x4e,0xb6,0x22,0x60, + 0x0,0x0,0x0,0x0,0x4f,0x5c,0x4d,0x70,0x0,0x0,0x0,0x0,0x50,0x96,0x4,0x60, + 0x0,0x0,0x0,0x0,0x51,0x3c,0x2f,0x70,0x0,0x0,0x0,0x0,0x52,0x75,0xe6,0x60, + 0x0,0x0,0x0,0x0,0x53,0x1c,0x11,0x70,0x0,0x0,0x0,0x0,0x54,0x55,0xc8,0x60, + 0x0,0x0,0x0,0x0,0x54,0xfb,0xf3,0x70,0x0,0x0,0x0,0x0,0x56,0x35,0xaa,0x60, + 0x0,0x0,0x0,0x0,0x56,0xe5,0xf,0xf0,0x0,0x0,0x0,0x0,0x58,0x1e,0xc6,0xe0, + 0x0,0x0,0x0,0x0,0x58,0xc4,0xf1,0xf0,0x0,0x0,0x0,0x0,0x59,0xfe,0xa8,0xe0, + 0x0,0x0,0x0,0x0,0x5a,0xa4,0xd3,0xf0,0x0,0x0,0x0,0x0,0x5b,0xde,0x8a,0xe0, + 0x0,0x0,0x0,0x0,0x5c,0x84,0xb5,0xf0,0x0,0x0,0x0,0x0,0x5d,0xbe,0x6c,0xe0, + 0x0,0x0,0x0,0x0,0x5e,0x64,0x97,0xf0,0x0,0x0,0x0,0x0,0x5f,0x9e,0x4e,0xe0, + 0x0,0x0,0x0,0x0,0x60,0x4d,0xb4,0x70,0x0,0x0,0x0,0x0,0x61,0x87,0x6b,0x60, + 0x0,0x0,0x0,0x0,0x62,0x2d,0x96,0x70,0x0,0x0,0x0,0x0,0x63,0x67,0x4d,0x60, + 0x0,0x0,0x0,0x0,0x64,0xd,0x78,0x70,0x0,0x0,0x0,0x0,0x65,0x47,0x2f,0x60, + 0x0,0x0,0x0,0x0,0x65,0xed,0x5a,0x70,0x0,0x0,0x0,0x0,0x67,0x27,0x11,0x60, + 0x0,0x0,0x0,0x0,0x67,0xcd,0x3c,0x70,0x0,0x0,0x0,0x0,0x69,0x6,0xf3,0x60, + 0x0,0x0,0x0,0x0,0x69,0xad,0x1e,0x70,0x0,0x0,0x0,0x0,0x6a,0xe6,0xd5,0x60, + 0x0,0x0,0x0,0x0,0x6b,0x96,0x3a,0xf0,0x0,0x0,0x0,0x0,0x6c,0xcf,0xf1,0xe0, + 0x0,0x0,0x0,0x0,0x6d,0x76,0x1c,0xf0,0x0,0x0,0x0,0x0,0x6e,0xaf,0xd3,0xe0, + 0x0,0x0,0x0,0x0,0x6f,0x55,0xfe,0xf0,0x0,0x0,0x0,0x0,0x70,0x8f,0xb5,0xe0, + 0x0,0x0,0x0,0x0,0x71,0x35,0xe0,0xf0,0x0,0x0,0x0,0x0,0x72,0x6f,0x97,0xe0, + 0x0,0x0,0x0,0x0,0x73,0x15,0xc2,0xf0,0x0,0x0,0x0,0x0,0x74,0x4f,0x79,0xe0, + 0x0,0x0,0x0,0x0,0x74,0xfe,0xdf,0x70,0x0,0x0,0x0,0x0,0x76,0x38,0x96,0x60, + 0x0,0x0,0x0,0x0,0x76,0xde,0xc1,0x70,0x0,0x0,0x0,0x0,0x78,0x18,0x78,0x60, + 0x0,0x0,0x0,0x0,0x78,0xbe,0xa3,0x70,0x0,0x0,0x0,0x0,0x79,0xf8,0x5a,0x60, + 0x0,0x0,0x0,0x0,0x7a,0x9e,0x85,0x70,0x0,0x0,0x0,0x0,0x7b,0xd8,0x3c,0x60, + 0x0,0x0,0x0,0x0,0x7c,0x7e,0x67,0x70,0x0,0x0,0x0,0x0,0x7d,0xb8,0x1e,0x60, + 0x0,0x0,0x0,0x0,0x7e,0x5e,0x49,0x70,0x0,0x0,0x0,0x0,0x7f,0x98,0x0,0x60, + 0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x3, + 0x4,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0xb5,0x94,0x0,0x0, + 0xff,0xff,0xc7,0xc0,0x1,0x4,0xff,0xff,0xb9,0xb0,0x0,0x8,0xff,0xff,0xc7,0xc0, + 0x1,0xc,0xff,0xff,0xc7,0xc0,0x1,0x10,0x4c,0x4d,0x54,0x0,0x45,0x44,0x54,0x0, + 0x45,0x53,0x54,0x0,0x45,0x57,0x54,0x0,0x45,0x50,0x54,0x0,0x0,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x1,0xa,0x45,0x53,0x54,0x35,0x45,0x44,0x54,0x2c,0x4d, + 0x33,0x2e,0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Dawson + 0x0,0x0,0x8,0x2d, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x8c,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x80,0x0,0x0,0x0,0x85, - 0xbd,0x22,0x5b,0x99,0x3c,0x94,0x0,0xcb,0x88,0xf0,0x70,0xd2,0x23,0xf4,0x70,0xd2, - 0x60,0xfb,0xe0,0xd7,0x35,0xa8,0xf0,0xd8,0x0,0xa1,0xe0,0xfb,0x33,0xac,0x70,0xfb, - 0xe8,0x3b,0xe0,0x6,0x40,0xdf,0x70,0x7,0x30,0xc2,0x60,0x7,0x8d,0x19,0x70,0x9, - 0x10,0xa4,0x60,0xa,0x0,0xa3,0x70,0xa,0xf0,0x86,0x60,0xb,0xe0,0x85,0x70,0xc, - 0xd9,0xa2,0xe0,0xd,0xc0,0x67,0x70,0xe,0xb9,0x84,0xe0,0xf,0xa9,0x83,0xf0,0x10, - 0x99,0x66,0xe0,0x11,0x89,0x65,0xf0,0x12,0x79,0x48,0xe0,0x13,0x69,0x47,0xf0,0x14, - 0x59,0x2a,0xe0,0x15,0x49,0x29,0xf0,0x16,0x39,0xc,0xe0,0x17,0x29,0xb,0xf0,0x18, - 0x22,0x29,0x60,0x19,0x8,0xed,0xf0,0x1a,0x2,0xb,0x60,0x1a,0xf2,0xa,0x70,0x1b, - 0xe1,0xed,0x60,0x1c,0xd1,0xec,0x70,0x1d,0xc1,0xcf,0x60,0x1e,0xb1,0xce,0x70,0x1f, - 0xa1,0xb1,0x60,0x20,0x76,0x0,0xf0,0x21,0x81,0x93,0x60,0x22,0x55,0xe2,0xf0,0x23, - 0x6a,0xaf,0xe0,0x24,0x35,0xc4,0xf0,0x25,0x4a,0x91,0xe0,0x26,0x15,0xa6,0xf0,0x27, - 0x2a,0x73,0xe0,0x27,0xfe,0xc3,0x70,0x29,0xa,0x55,0xe0,0x29,0xde,0xa5,0x70,0x2a, - 0xea,0x37,0xe0,0x2b,0xbe,0x87,0x70,0x2c,0xd3,0x54,0x60,0x2d,0x9e,0x69,0x70,0x2e, - 0xb3,0x36,0x60,0x2f,0x7e,0x4b,0x70,0x30,0x93,0x18,0x60,0x31,0x67,0x67,0xf0,0x32, - 0x72,0xfa,0x60,0x33,0x47,0x49,0xf0,0x34,0x52,0xdc,0x60,0x35,0x27,0x2b,0xf0,0x36, - 0x32,0xbe,0x60,0x37,0x7,0xd,0xf0,0x38,0x1b,0xda,0xe0,0x38,0xe6,0xef,0xf0,0x39, - 0xfb,0xbc,0xe0,0x3a,0xc6,0xd1,0xf0,0x3b,0xdb,0x9e,0xe0,0x3c,0xaf,0xee,0x70,0x3d, - 0xbb,0x80,0xe0,0x3e,0x8f,0xd0,0x70,0x3f,0x9b,0x62,0xe0,0x40,0x6f,0xb2,0x70,0x41, - 0x84,0x7f,0x60,0x42,0x4f,0x94,0x70,0x43,0x64,0x61,0x60,0x44,0x2f,0x76,0x70,0x45, - 0x44,0x43,0x60,0x45,0xf3,0xa8,0xf0,0x47,0x2d,0x5f,0xe0,0x47,0xd3,0x8a,0xf0,0x49, - 0xd,0x41,0xe0,0x49,0xb3,0x6c,0xf0,0x4a,0xed,0x23,0xe0,0x4b,0x9c,0x89,0x70,0x4c, - 0xd6,0x40,0x60,0x4d,0x7c,0x6b,0x70,0x4e,0xb6,0x22,0x60,0x4f,0x5c,0x4d,0x70,0x50, - 0x96,0x4,0x60,0x51,0x3c,0x2f,0x70,0x52,0x75,0xe6,0x60,0x53,0x1c,0x11,0x70,0x54, - 0x55,0xc8,0x60,0x54,0xfb,0xf3,0x70,0x56,0x35,0xaa,0x60,0x56,0xe5,0xf,0xf0,0x58, - 0x1e,0xc6,0xe0,0x58,0xc4,0xf1,0xf0,0x59,0xfe,0xa8,0xe0,0x5a,0xa4,0xd3,0xf0,0x5b, - 0xde,0x8a,0xe0,0x5c,0x84,0xb5,0xf0,0x5d,0xbe,0x6c,0xe0,0x5e,0x64,0x97,0xf0,0x5f, - 0x9e,0x4e,0xe0,0x60,0x4d,0xb4,0x70,0x61,0x87,0x6b,0x60,0x62,0x2d,0x96,0x70,0x63, - 0x67,0x4d,0x60,0x64,0xd,0x78,0x70,0x65,0x47,0x2f,0x60,0x65,0xed,0x5a,0x70,0x67, - 0x27,0x11,0x60,0x67,0xcd,0x3c,0x70,0x69,0x6,0xf3,0x60,0x69,0xad,0x1e,0x70,0x6a, - 0xe6,0xd5,0x60,0x6b,0x96,0x3a,0xf0,0x6c,0xcf,0xf1,0xe0,0x6d,0x76,0x1c,0xf0,0x6e, - 0xaf,0xd3,0xe0,0x6f,0x55,0xfe,0xf0,0x70,0x8f,0xb5,0xe0,0x71,0x35,0xe0,0xf0,0x72, - 0x6f,0x97,0xe0,0x73,0x15,0xc2,0xf0,0x74,0x4f,0x79,0xe0,0x74,0xfe,0xdf,0x70,0x76, - 0x38,0x96,0x60,0x76,0xde,0xc1,0x70,0x78,0x18,0x78,0x60,0x78,0xbe,0xa3,0x70,0x79, - 0xf8,0x5a,0x60,0x7a,0x9e,0x85,0x70,0x7b,0xd8,0x3c,0x60,0x7c,0x7e,0x67,0x70,0x7d, - 0xb8,0x1e,0x60,0x7e,0x5e,0x49,0x70,0x7f,0x98,0x0,0x60,0x0,0x1,0x2,0x3,0x4, - 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, - 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, - 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, - 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, - 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, - 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, - 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, - 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, - 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0xff,0xff,0xb2,0x25,0x0,0x0,0xff,0xff,0xab, - 0xa0,0x0,0x4,0xff,0xff,0xb9,0xb0,0x0,0x8,0xff,0xff,0xc7,0xc0,0x1,0xc,0xff, - 0xff,0xc7,0xc0,0x1,0x10,0xff,0xff,0xc7,0xc0,0x1,0x14,0x4c,0x4d,0x54,0x0,0x43, - 0x53,0x54,0x0,0x45,0x53,0x54,0x0,0x45,0x57,0x54,0x0,0x45,0x50,0x54,0x0,0x45, - 0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x8c,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0xf8,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x85,0xbd,0x22,0x5b,0xff,0xff,0xff,0xff,0x99, - 0x3c,0x94,0x0,0xff,0xff,0xff,0xff,0xcb,0x88,0xf0,0x70,0xff,0xff,0xff,0xff,0xd2, - 0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x60,0xfb,0xe0,0xff,0xff,0xff,0xff,0xd7, - 0x35,0xa8,0xf0,0xff,0xff,0xff,0xff,0xd8,0x0,0xa1,0xe0,0xff,0xff,0xff,0xff,0xfb, - 0x33,0xac,0x70,0xff,0xff,0xff,0xff,0xfb,0xe8,0x3b,0xe0,0x0,0x0,0x0,0x0,0x6, - 0x40,0xdf,0x70,0x0,0x0,0x0,0x0,0x7,0x30,0xc2,0x60,0x0,0x0,0x0,0x0,0x7, - 0x8d,0x19,0x70,0x0,0x0,0x0,0x0,0x9,0x10,0xa4,0x60,0x0,0x0,0x0,0x0,0xa, - 0x0,0xa3,0x70,0x0,0x0,0x0,0x0,0xa,0xf0,0x86,0x60,0x0,0x0,0x0,0x0,0xb, - 0xe0,0x85,0x70,0x0,0x0,0x0,0x0,0xc,0xd9,0xa2,0xe0,0x0,0x0,0x0,0x0,0xd, - 0xc0,0x67,0x70,0x0,0x0,0x0,0x0,0xe,0xb9,0x84,0xe0,0x0,0x0,0x0,0x0,0xf, - 0xa9,0x83,0xf0,0x0,0x0,0x0,0x0,0x10,0x99,0x66,0xe0,0x0,0x0,0x0,0x0,0x11, - 0x89,0x65,0xf0,0x0,0x0,0x0,0x0,0x12,0x79,0x48,0xe0,0x0,0x0,0x0,0x0,0x13, - 0x69,0x47,0xf0,0x0,0x0,0x0,0x0,0x14,0x59,0x2a,0xe0,0x0,0x0,0x0,0x0,0x15, - 0x49,0x29,0xf0,0x0,0x0,0x0,0x0,0x16,0x39,0xc,0xe0,0x0,0x0,0x0,0x0,0x17, - 0x29,0xb,0xf0,0x0,0x0,0x0,0x0,0x18,0x22,0x29,0x60,0x0,0x0,0x0,0x0,0x19, - 0x8,0xed,0xf0,0x0,0x0,0x0,0x0,0x1a,0x2,0xb,0x60,0x0,0x0,0x0,0x0,0x1a, - 0xf2,0xa,0x70,0x0,0x0,0x0,0x0,0x1b,0xe1,0xed,0x60,0x0,0x0,0x0,0x0,0x1c, - 0xd1,0xec,0x70,0x0,0x0,0x0,0x0,0x1d,0xc1,0xcf,0x60,0x0,0x0,0x0,0x0,0x1e, - 0xb1,0xce,0x70,0x0,0x0,0x0,0x0,0x1f,0xa1,0xb1,0x60,0x0,0x0,0x0,0x0,0x20, - 0x76,0x0,0xf0,0x0,0x0,0x0,0x0,0x21,0x81,0x93,0x60,0x0,0x0,0x0,0x0,0x22, - 0x55,0xe2,0xf0,0x0,0x0,0x0,0x0,0x23,0x6a,0xaf,0xe0,0x0,0x0,0x0,0x0,0x24, - 0x35,0xc4,0xf0,0x0,0x0,0x0,0x0,0x25,0x4a,0x91,0xe0,0x0,0x0,0x0,0x0,0x26, - 0x15,0xa6,0xf0,0x0,0x0,0x0,0x0,0x27,0x2a,0x73,0xe0,0x0,0x0,0x0,0x0,0x27, - 0xfe,0xc3,0x70,0x0,0x0,0x0,0x0,0x29,0xa,0x55,0xe0,0x0,0x0,0x0,0x0,0x29, - 0xde,0xa5,0x70,0x0,0x0,0x0,0x0,0x2a,0xea,0x37,0xe0,0x0,0x0,0x0,0x0,0x2b, - 0xbe,0x87,0x70,0x0,0x0,0x0,0x0,0x2c,0xd3,0x54,0x60,0x0,0x0,0x0,0x0,0x2d, - 0x9e,0x69,0x70,0x0,0x0,0x0,0x0,0x2e,0xb3,0x36,0x60,0x0,0x0,0x0,0x0,0x2f, - 0x7e,0x4b,0x70,0x0,0x0,0x0,0x0,0x30,0x93,0x18,0x60,0x0,0x0,0x0,0x0,0x31, - 0x67,0x67,0xf0,0x0,0x0,0x0,0x0,0x32,0x72,0xfa,0x60,0x0,0x0,0x0,0x0,0x33, - 0x47,0x49,0xf0,0x0,0x0,0x0,0x0,0x34,0x52,0xdc,0x60,0x0,0x0,0x0,0x0,0x35, - 0x27,0x2b,0xf0,0x0,0x0,0x0,0x0,0x36,0x32,0xbe,0x60,0x0,0x0,0x0,0x0,0x37, - 0x7,0xd,0xf0,0x0,0x0,0x0,0x0,0x38,0x1b,0xda,0xe0,0x0,0x0,0x0,0x0,0x38, - 0xe6,0xef,0xf0,0x0,0x0,0x0,0x0,0x39,0xfb,0xbc,0xe0,0x0,0x0,0x0,0x0,0x3a, - 0xc6,0xd1,0xf0,0x0,0x0,0x0,0x0,0x3b,0xdb,0x9e,0xe0,0x0,0x0,0x0,0x0,0x3c, - 0xaf,0xee,0x70,0x0,0x0,0x0,0x0,0x3d,0xbb,0x80,0xe0,0x0,0x0,0x0,0x0,0x3e, - 0x8f,0xd0,0x70,0x0,0x0,0x0,0x0,0x3f,0x9b,0x62,0xe0,0x0,0x0,0x0,0x0,0x40, - 0x6f,0xb2,0x70,0x0,0x0,0x0,0x0,0x41,0x84,0x7f,0x60,0x0,0x0,0x0,0x0,0x42, - 0x4f,0x94,0x70,0x0,0x0,0x0,0x0,0x43,0x64,0x61,0x60,0x0,0x0,0x0,0x0,0x44, - 0x2f,0x76,0x70,0x0,0x0,0x0,0x0,0x45,0x44,0x43,0x60,0x0,0x0,0x0,0x0,0x45, - 0xf3,0xa8,0xf0,0x0,0x0,0x0,0x0,0x47,0x2d,0x5f,0xe0,0x0,0x0,0x0,0x0,0x47, - 0xd3,0x8a,0xf0,0x0,0x0,0x0,0x0,0x49,0xd,0x41,0xe0,0x0,0x0,0x0,0x0,0x49, - 0xb3,0x6c,0xf0,0x0,0x0,0x0,0x0,0x4a,0xed,0x23,0xe0,0x0,0x0,0x0,0x0,0x4b, - 0x9c,0x89,0x70,0x0,0x0,0x0,0x0,0x4c,0xd6,0x40,0x60,0x0,0x0,0x0,0x0,0x4d, - 0x7c,0x6b,0x70,0x0,0x0,0x0,0x0,0x4e,0xb6,0x22,0x60,0x0,0x0,0x0,0x0,0x4f, - 0x5c,0x4d,0x70,0x0,0x0,0x0,0x0,0x50,0x96,0x4,0x60,0x0,0x0,0x0,0x0,0x51, - 0x3c,0x2f,0x70,0x0,0x0,0x0,0x0,0x52,0x75,0xe6,0x60,0x0,0x0,0x0,0x0,0x53, - 0x1c,0x11,0x70,0x0,0x0,0x0,0x0,0x54,0x55,0xc8,0x60,0x0,0x0,0x0,0x0,0x54, - 0xfb,0xf3,0x70,0x0,0x0,0x0,0x0,0x56,0x35,0xaa,0x60,0x0,0x0,0x0,0x0,0x56, - 0xe5,0xf,0xf0,0x0,0x0,0x0,0x0,0x58,0x1e,0xc6,0xe0,0x0,0x0,0x0,0x0,0x58, - 0xc4,0xf1,0xf0,0x0,0x0,0x0,0x0,0x59,0xfe,0xa8,0xe0,0x0,0x0,0x0,0x0,0x5a, - 0xa4,0xd3,0xf0,0x0,0x0,0x0,0x0,0x5b,0xde,0x8a,0xe0,0x0,0x0,0x0,0x0,0x5c, - 0x84,0xb5,0xf0,0x0,0x0,0x0,0x0,0x5d,0xbe,0x6c,0xe0,0x0,0x0,0x0,0x0,0x5e, - 0x64,0x97,0xf0,0x0,0x0,0x0,0x0,0x5f,0x9e,0x4e,0xe0,0x0,0x0,0x0,0x0,0x60, - 0x4d,0xb4,0x70,0x0,0x0,0x0,0x0,0x61,0x87,0x6b,0x60,0x0,0x0,0x0,0x0,0x62, - 0x2d,0x96,0x70,0x0,0x0,0x0,0x0,0x63,0x67,0x4d,0x60,0x0,0x0,0x0,0x0,0x64, - 0xd,0x78,0x70,0x0,0x0,0x0,0x0,0x65,0x47,0x2f,0x60,0x0,0x0,0x0,0x0,0x65, - 0xed,0x5a,0x70,0x0,0x0,0x0,0x0,0x67,0x27,0x11,0x60,0x0,0x0,0x0,0x0,0x67, - 0xcd,0x3c,0x70,0x0,0x0,0x0,0x0,0x69,0x6,0xf3,0x60,0x0,0x0,0x0,0x0,0x69, - 0xad,0x1e,0x70,0x0,0x0,0x0,0x0,0x6a,0xe6,0xd5,0x60,0x0,0x0,0x0,0x0,0x6b, - 0x96,0x3a,0xf0,0x0,0x0,0x0,0x0,0x6c,0xcf,0xf1,0xe0,0x0,0x0,0x0,0x0,0x6d, - 0x76,0x1c,0xf0,0x0,0x0,0x0,0x0,0x6e,0xaf,0xd3,0xe0,0x0,0x0,0x0,0x0,0x6f, - 0x55,0xfe,0xf0,0x0,0x0,0x0,0x0,0x70,0x8f,0xb5,0xe0,0x0,0x0,0x0,0x0,0x71, - 0x35,0xe0,0xf0,0x0,0x0,0x0,0x0,0x72,0x6f,0x97,0xe0,0x0,0x0,0x0,0x0,0x73, - 0x15,0xc2,0xf0,0x0,0x0,0x0,0x0,0x74,0x4f,0x79,0xe0,0x0,0x0,0x0,0x0,0x74, - 0xfe,0xdf,0x70,0x0,0x0,0x0,0x0,0x76,0x38,0x96,0x60,0x0,0x0,0x0,0x0,0x76, - 0xde,0xc1,0x70,0x0,0x0,0x0,0x0,0x78,0x18,0x78,0x60,0x0,0x0,0x0,0x0,0x78, - 0xbe,0xa3,0x70,0x0,0x0,0x0,0x0,0x79,0xf8,0x5a,0x60,0x0,0x0,0x0,0x0,0x7a, - 0x9e,0x85,0x70,0x0,0x0,0x0,0x0,0x7b,0xd8,0x3c,0x60,0x0,0x0,0x0,0x0,0x7c, - 0x7e,0x67,0x70,0x0,0x0,0x0,0x0,0x7d,0xb8,0x1e,0x60,0x0,0x0,0x0,0x0,0x7e, - 0x5e,0x49,0x70,0x0,0x0,0x0,0x0,0x7f,0x98,0x0,0x60,0x0,0x1,0x2,0x3,0x4, - 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, - 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, - 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, - 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, - 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, - 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, - 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, - 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, - 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0xff,0xff,0xb2,0x25,0x0,0x0,0xff,0xff,0xab, - 0xa0,0x0,0x4,0xff,0xff,0xb9,0xb0,0x0,0x8,0xff,0xff,0xc7,0xc0,0x1,0xc,0xff, - 0xff,0xc7,0xc0,0x1,0x10,0xff,0xff,0xc7,0xc0,0x1,0x14,0x4c,0x4d,0x54,0x0,0x43, - 0x53,0x54,0x0,0x45,0x53,0x54,0x0,0x45,0x57,0x54,0x0,0x45,0x50,0x54,0x0,0x45, - 0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa, - 0x45,0x53,0x54,0x35,0x45,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30,0x2c,0x4d, - 0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Moncton - 0x0,0x0,0xc,0x5b, + 0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x7f,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x21,0x80,0x0,0x0,0x0,0x9e, + 0xb8,0xcb,0xb0,0x9f,0xbb,0x23,0xa0,0xa0,0xd0,0xc,0xb0,0xa1,0xa2,0xd2,0x80,0xcb, + 0x89,0x28,0xb0,0xd2,0x23,0xf4,0x70,0xd2,0x61,0x34,0x20,0xf7,0x2f,0x76,0x90,0xf8, + 0x28,0xa2,0x10,0x7,0x30,0xec,0x90,0x13,0x69,0x72,0x20,0x14,0x59,0x55,0x10,0x15, + 0x49,0x54,0x20,0x16,0x39,0x37,0x10,0x17,0x29,0x36,0x20,0x18,0x22,0x53,0x90,0x19, + 0x9,0x18,0x20,0x1a,0x2,0x35,0x90,0x1a,0xf2,0x34,0xa0,0x1b,0xe2,0x17,0x90,0x1c, + 0xd2,0x16,0xa0,0x1d,0xc1,0xf9,0x90,0x1e,0xb1,0xf8,0xa0,0x1f,0xa1,0xdb,0x90,0x20, + 0x76,0x2b,0x20,0x21,0x81,0xbd,0x90,0x22,0x56,0xd,0x20,0x23,0x6a,0xda,0x10,0x24, + 0x35,0xef,0x20,0x25,0x4a,0xbc,0x10,0x26,0x15,0xd1,0x20,0x27,0x2a,0x9e,0x10,0x27, + 0xfe,0xed,0xa0,0x29,0xa,0x80,0x10,0x29,0xde,0xcf,0xa0,0x2a,0xea,0x62,0x10,0x2b, + 0xbe,0xb1,0xa0,0x2c,0xd3,0x7e,0x90,0x2d,0x9e,0x93,0xa0,0x2e,0xb3,0x60,0x90,0x2f, + 0x7e,0x75,0xa0,0x30,0x93,0x42,0x90,0x31,0x67,0x92,0x20,0x32,0x73,0x24,0x90,0x33, + 0x47,0x74,0x20,0x34,0x53,0x6,0x90,0x35,0x27,0x56,0x20,0x36,0x32,0xe8,0x90,0x37, + 0x7,0x38,0x20,0x38,0x1c,0x5,0x10,0x38,0xe7,0x1a,0x20,0x39,0xfb,0xe7,0x10,0x3a, + 0xc6,0xfc,0x20,0x3b,0xdb,0xc9,0x10,0x3c,0xb0,0x18,0xa0,0x3d,0xbb,0xab,0x10,0x3e, + 0x8f,0xfa,0xa0,0x3f,0x9b,0x8d,0x10,0x40,0x6f,0xdc,0xa0,0x41,0x84,0xa9,0x90,0x42, + 0x4f,0xbe,0xa0,0x43,0x64,0x8b,0x90,0x44,0x2f,0xa0,0xa0,0x45,0x44,0x6d,0x90,0x45, + 0xf3,0xd3,0x20,0x47,0x2d,0x8a,0x10,0x47,0xd3,0xb5,0x20,0x49,0xd,0x6c,0x10,0x49, + 0xb3,0x97,0x20,0x4a,0xed,0x4e,0x10,0x4b,0x9c,0xb3,0xa0,0x4c,0xd6,0x6a,0x90,0x4d, + 0x7c,0x95,0xa0,0x4e,0xb6,0x4c,0x90,0x4f,0x5c,0x77,0xa0,0x50,0x96,0x2e,0x90,0x51, + 0x3c,0x59,0xa0,0x52,0x76,0x10,0x90,0x53,0x1c,0x3b,0xa0,0x54,0x55,0xf2,0x90,0x54, + 0xfc,0x1d,0xa0,0x56,0x35,0xd4,0x90,0x56,0xe5,0x3a,0x20,0x58,0x1e,0xf1,0x10,0x58, + 0xc5,0x1c,0x20,0x59,0xfe,0xd3,0x10,0x5a,0xa4,0xfe,0x20,0x5b,0xde,0xb5,0x10,0x5c, + 0x84,0xe0,0x20,0x5d,0xbe,0x97,0x10,0x5e,0x64,0xc2,0x20,0x5f,0x9e,0x79,0x10,0x60, + 0x4d,0xde,0xa0,0x61,0x87,0x95,0x90,0x62,0x2d,0xc0,0xa0,0x63,0x67,0x77,0x90,0x64, + 0xd,0xa2,0xa0,0x65,0x47,0x59,0x90,0x65,0xed,0x84,0xa0,0x67,0x27,0x3b,0x90,0x67, + 0xcd,0x66,0xa0,0x69,0x7,0x1d,0x90,0x69,0xad,0x48,0xa0,0x6a,0xe6,0xff,0x90,0x6b, + 0x96,0x65,0x20,0x6c,0xd0,0x1c,0x10,0x6d,0x76,0x47,0x20,0x6e,0xaf,0xfe,0x10,0x6f, + 0x56,0x29,0x20,0x70,0x8f,0xe0,0x10,0x71,0x36,0xb,0x20,0x72,0x6f,0xc2,0x10,0x73, + 0x15,0xed,0x20,0x74,0x4f,0xa4,0x10,0x74,0xff,0x9,0xa0,0x76,0x38,0xc0,0x90,0x76, + 0xde,0xeb,0xa0,0x78,0x18,0xa2,0x90,0x78,0xbe,0xcd,0xa0,0x79,0xf8,0x84,0x90,0x7a, + 0x9e,0xaf,0xa0,0x7b,0xd8,0x66,0x90,0x7c,0x7e,0x91,0xa0,0x7d,0xb8,0x48,0x90,0x7e, + 0x5e,0x73,0xa0,0x7f,0x98,0x2a,0x90,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x2,0x5, + 0x2,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, + 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, + 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, + 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, + 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, + 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, + 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, + 0x7,0x6,0x7,0x6,0x7,0x6,0xff,0xff,0x7d,0x4c,0x0,0x0,0xff,0xff,0x8f,0x80, + 0x1,0x4,0xff,0xff,0x81,0x70,0x0,0x8,0xff,0xff,0x8f,0x80,0x1,0xc,0xff,0xff, + 0x8f,0x80,0x1,0x10,0xff,0xff,0x9d,0x90,0x1,0x14,0xff,0xff,0x8f,0x80,0x0,0x19, + 0xff,0xff,0x9d,0x90,0x1,0x1d,0x4c,0x4d,0x54,0x0,0x59,0x44,0x54,0x0,0x59,0x53, + 0x54,0x0,0x59,0x57,0x54,0x0,0x59,0x50,0x54,0x0,0x59,0x44,0x44,0x54,0x0,0x50, + 0x53,0x54,0x0,0x50,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0, + 0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x0,0x0,0x0,0x8,0x0, + 0x0,0x0,0x21,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x7d, + 0x86,0x8e,0xb4,0xff,0xff,0xff,0xff,0x9e,0xb8,0xcb,0xb0,0xff,0xff,0xff,0xff,0x9f, + 0xbb,0x23,0xa0,0xff,0xff,0xff,0xff,0xa0,0xd0,0xc,0xb0,0xff,0xff,0xff,0xff,0xa1, + 0xa2,0xd2,0x80,0xff,0xff,0xff,0xff,0xcb,0x89,0x28,0xb0,0xff,0xff,0xff,0xff,0xd2, + 0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x61,0x34,0x20,0xff,0xff,0xff,0xff,0xf7, + 0x2f,0x76,0x90,0xff,0xff,0xff,0xff,0xf8,0x28,0xa2,0x10,0x0,0x0,0x0,0x0,0x7, + 0x30,0xec,0x90,0x0,0x0,0x0,0x0,0x13,0x69,0x72,0x20,0x0,0x0,0x0,0x0,0x14, + 0x59,0x55,0x10,0x0,0x0,0x0,0x0,0x15,0x49,0x54,0x20,0x0,0x0,0x0,0x0,0x16, + 0x39,0x37,0x10,0x0,0x0,0x0,0x0,0x17,0x29,0x36,0x20,0x0,0x0,0x0,0x0,0x18, + 0x22,0x53,0x90,0x0,0x0,0x0,0x0,0x19,0x9,0x18,0x20,0x0,0x0,0x0,0x0,0x1a, + 0x2,0x35,0x90,0x0,0x0,0x0,0x0,0x1a,0xf2,0x34,0xa0,0x0,0x0,0x0,0x0,0x1b, + 0xe2,0x17,0x90,0x0,0x0,0x0,0x0,0x1c,0xd2,0x16,0xa0,0x0,0x0,0x0,0x0,0x1d, + 0xc1,0xf9,0x90,0x0,0x0,0x0,0x0,0x1e,0xb1,0xf8,0xa0,0x0,0x0,0x0,0x0,0x1f, + 0xa1,0xdb,0x90,0x0,0x0,0x0,0x0,0x20,0x76,0x2b,0x20,0x0,0x0,0x0,0x0,0x21, + 0x81,0xbd,0x90,0x0,0x0,0x0,0x0,0x22,0x56,0xd,0x20,0x0,0x0,0x0,0x0,0x23, + 0x6a,0xda,0x10,0x0,0x0,0x0,0x0,0x24,0x35,0xef,0x20,0x0,0x0,0x0,0x0,0x25, + 0x4a,0xbc,0x10,0x0,0x0,0x0,0x0,0x26,0x15,0xd1,0x20,0x0,0x0,0x0,0x0,0x27, + 0x2a,0x9e,0x10,0x0,0x0,0x0,0x0,0x27,0xfe,0xed,0xa0,0x0,0x0,0x0,0x0,0x29, + 0xa,0x80,0x10,0x0,0x0,0x0,0x0,0x29,0xde,0xcf,0xa0,0x0,0x0,0x0,0x0,0x2a, + 0xea,0x62,0x10,0x0,0x0,0x0,0x0,0x2b,0xbe,0xb1,0xa0,0x0,0x0,0x0,0x0,0x2c, + 0xd3,0x7e,0x90,0x0,0x0,0x0,0x0,0x2d,0x9e,0x93,0xa0,0x0,0x0,0x0,0x0,0x2e, + 0xb3,0x60,0x90,0x0,0x0,0x0,0x0,0x2f,0x7e,0x75,0xa0,0x0,0x0,0x0,0x0,0x30, + 0x93,0x42,0x90,0x0,0x0,0x0,0x0,0x31,0x67,0x92,0x20,0x0,0x0,0x0,0x0,0x32, + 0x73,0x24,0x90,0x0,0x0,0x0,0x0,0x33,0x47,0x74,0x20,0x0,0x0,0x0,0x0,0x34, + 0x53,0x6,0x90,0x0,0x0,0x0,0x0,0x35,0x27,0x56,0x20,0x0,0x0,0x0,0x0,0x36, + 0x32,0xe8,0x90,0x0,0x0,0x0,0x0,0x37,0x7,0x38,0x20,0x0,0x0,0x0,0x0,0x38, + 0x1c,0x5,0x10,0x0,0x0,0x0,0x0,0x38,0xe7,0x1a,0x20,0x0,0x0,0x0,0x0,0x39, + 0xfb,0xe7,0x10,0x0,0x0,0x0,0x0,0x3a,0xc6,0xfc,0x20,0x0,0x0,0x0,0x0,0x3b, + 0xdb,0xc9,0x10,0x0,0x0,0x0,0x0,0x3c,0xb0,0x18,0xa0,0x0,0x0,0x0,0x0,0x3d, + 0xbb,0xab,0x10,0x0,0x0,0x0,0x0,0x3e,0x8f,0xfa,0xa0,0x0,0x0,0x0,0x0,0x3f, + 0x9b,0x8d,0x10,0x0,0x0,0x0,0x0,0x40,0x6f,0xdc,0xa0,0x0,0x0,0x0,0x0,0x41, + 0x84,0xa9,0x90,0x0,0x0,0x0,0x0,0x42,0x4f,0xbe,0xa0,0x0,0x0,0x0,0x0,0x43, + 0x64,0x8b,0x90,0x0,0x0,0x0,0x0,0x44,0x2f,0xa0,0xa0,0x0,0x0,0x0,0x0,0x45, + 0x44,0x6d,0x90,0x0,0x0,0x0,0x0,0x45,0xf3,0xd3,0x20,0x0,0x0,0x0,0x0,0x47, + 0x2d,0x8a,0x10,0x0,0x0,0x0,0x0,0x47,0xd3,0xb5,0x20,0x0,0x0,0x0,0x0,0x49, + 0xd,0x6c,0x10,0x0,0x0,0x0,0x0,0x49,0xb3,0x97,0x20,0x0,0x0,0x0,0x0,0x4a, + 0xed,0x4e,0x10,0x0,0x0,0x0,0x0,0x4b,0x9c,0xb3,0xa0,0x0,0x0,0x0,0x0,0x4c, + 0xd6,0x6a,0x90,0x0,0x0,0x0,0x0,0x4d,0x7c,0x95,0xa0,0x0,0x0,0x0,0x0,0x4e, + 0xb6,0x4c,0x90,0x0,0x0,0x0,0x0,0x4f,0x5c,0x77,0xa0,0x0,0x0,0x0,0x0,0x50, + 0x96,0x2e,0x90,0x0,0x0,0x0,0x0,0x51,0x3c,0x59,0xa0,0x0,0x0,0x0,0x0,0x52, + 0x76,0x10,0x90,0x0,0x0,0x0,0x0,0x53,0x1c,0x3b,0xa0,0x0,0x0,0x0,0x0,0x54, + 0x55,0xf2,0x90,0x0,0x0,0x0,0x0,0x54,0xfc,0x1d,0xa0,0x0,0x0,0x0,0x0,0x56, + 0x35,0xd4,0x90,0x0,0x0,0x0,0x0,0x56,0xe5,0x3a,0x20,0x0,0x0,0x0,0x0,0x58, + 0x1e,0xf1,0x10,0x0,0x0,0x0,0x0,0x58,0xc5,0x1c,0x20,0x0,0x0,0x0,0x0,0x59, + 0xfe,0xd3,0x10,0x0,0x0,0x0,0x0,0x5a,0xa4,0xfe,0x20,0x0,0x0,0x0,0x0,0x5b, + 0xde,0xb5,0x10,0x0,0x0,0x0,0x0,0x5c,0x84,0xe0,0x20,0x0,0x0,0x0,0x0,0x5d, + 0xbe,0x97,0x10,0x0,0x0,0x0,0x0,0x5e,0x64,0xc2,0x20,0x0,0x0,0x0,0x0,0x5f, + 0x9e,0x79,0x10,0x0,0x0,0x0,0x0,0x60,0x4d,0xde,0xa0,0x0,0x0,0x0,0x0,0x61, + 0x87,0x95,0x90,0x0,0x0,0x0,0x0,0x62,0x2d,0xc0,0xa0,0x0,0x0,0x0,0x0,0x63, + 0x67,0x77,0x90,0x0,0x0,0x0,0x0,0x64,0xd,0xa2,0xa0,0x0,0x0,0x0,0x0,0x65, + 0x47,0x59,0x90,0x0,0x0,0x0,0x0,0x65,0xed,0x84,0xa0,0x0,0x0,0x0,0x0,0x67, + 0x27,0x3b,0x90,0x0,0x0,0x0,0x0,0x67,0xcd,0x66,0xa0,0x0,0x0,0x0,0x0,0x69, + 0x7,0x1d,0x90,0x0,0x0,0x0,0x0,0x69,0xad,0x48,0xa0,0x0,0x0,0x0,0x0,0x6a, + 0xe6,0xff,0x90,0x0,0x0,0x0,0x0,0x6b,0x96,0x65,0x20,0x0,0x0,0x0,0x0,0x6c, + 0xd0,0x1c,0x10,0x0,0x0,0x0,0x0,0x6d,0x76,0x47,0x20,0x0,0x0,0x0,0x0,0x6e, + 0xaf,0xfe,0x10,0x0,0x0,0x0,0x0,0x6f,0x56,0x29,0x20,0x0,0x0,0x0,0x0,0x70, + 0x8f,0xe0,0x10,0x0,0x0,0x0,0x0,0x71,0x36,0xb,0x20,0x0,0x0,0x0,0x0,0x72, + 0x6f,0xc2,0x10,0x0,0x0,0x0,0x0,0x73,0x15,0xed,0x20,0x0,0x0,0x0,0x0,0x74, + 0x4f,0xa4,0x10,0x0,0x0,0x0,0x0,0x74,0xff,0x9,0xa0,0x0,0x0,0x0,0x0,0x76, + 0x38,0xc0,0x90,0x0,0x0,0x0,0x0,0x76,0xde,0xeb,0xa0,0x0,0x0,0x0,0x0,0x78, + 0x18,0xa2,0x90,0x0,0x0,0x0,0x0,0x78,0xbe,0xcd,0xa0,0x0,0x0,0x0,0x0,0x79, + 0xf8,0x84,0x90,0x0,0x0,0x0,0x0,0x7a,0x9e,0xaf,0xa0,0x0,0x0,0x0,0x0,0x7b, + 0xd8,0x66,0x90,0x0,0x0,0x0,0x0,0x7c,0x7e,0x91,0xa0,0x0,0x0,0x0,0x0,0x7d, + 0xb8,0x48,0x90,0x0,0x0,0x0,0x0,0x7e,0x5e,0x73,0xa0,0x0,0x0,0x0,0x0,0x7f, + 0x98,0x2a,0x90,0x0,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x2,0x5,0x2,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0xff,0xff,0x7d,0x4c,0x0,0x0,0xff,0xff,0x8f,0x80,0x1,0x4,0xff, + 0xff,0x81,0x70,0x0,0x8,0xff,0xff,0x8f,0x80,0x1,0xc,0xff,0xff,0x8f,0x80,0x1, + 0x10,0xff,0xff,0x9d,0x90,0x1,0x14,0xff,0xff,0x8f,0x80,0x0,0x19,0xff,0xff,0x9d, + 0x90,0x1,0x1d,0x4c,0x4d,0x54,0x0,0x59,0x44,0x54,0x0,0x59,0x53,0x54,0x0,0x59, + 0x57,0x54,0x0,0x59,0x50,0x54,0x0,0x59,0x44,0x44,0x54,0x0,0x50,0x53,0x54,0x0, + 0x50,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0xa,0x50,0x53,0x54,0x38,0x50,0x44,0x54,0x2c,0x4d,0x33,0x2e, + 0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Shiprock + 0x0,0x0,0x9,0x95, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xcf,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x80,0x0,0x0,0x0,0x80, - 0xf1,0xb6,0x50,0x9e,0xb8,0x85,0x60,0x9f,0xba,0xdd,0x50,0xbb,0x3c,0x38,0xd0,0xbb, - 0xb4,0x23,0x40,0xbd,0x1c,0x1a,0xd0,0xbd,0x94,0x5,0x40,0xbe,0xfb,0xfc,0xd0,0xbf, - 0x73,0xe7,0x40,0xc0,0xdb,0xde,0xd0,0xc1,0x53,0xc9,0x40,0xc2,0xbb,0xc0,0xd0,0xc3, - 0x33,0xab,0x40,0xc4,0x9b,0xa2,0xd0,0xc5,0x13,0x8d,0x40,0xc6,0x70,0xf8,0xd0,0xc7, - 0xd,0xcd,0x40,0xc8,0x48,0xf1,0xd0,0xc8,0xed,0xaf,0x40,0xca,0x16,0x5e,0xd0,0xca, - 0xd6,0xcb,0xc0,0xcb,0x88,0xe2,0x60,0xd2,0x23,0xf4,0x70,0xd2,0x60,0xed,0xd0,0xd3, - 0x75,0xd6,0xe0,0xd4,0x40,0xcf,0xd0,0xd5,0x55,0xb8,0xe0,0xd6,0x20,0xb1,0xd0,0xd7, - 0x35,0x9a,0xe0,0xd8,0x0,0x93,0xd0,0xd9,0x15,0x7c,0xe0,0xd9,0xe0,0x75,0xd0,0xda, - 0xfe,0x99,0x60,0xdb,0xc0,0x57,0xd0,0xdc,0xde,0x7b,0x60,0xdd,0xa9,0x74,0x50,0xde, - 0xbe,0x5d,0x60,0xdf,0x89,0x56,0x50,0xe0,0x9e,0x3f,0x60,0xe1,0x69,0x38,0x50,0xe2, - 0x7e,0x21,0x60,0xe3,0x49,0x1a,0x50,0xe4,0x5e,0x3,0x60,0xe5,0x28,0xfc,0x50,0xe6, - 0x47,0x1f,0xe0,0xe7,0x12,0x18,0xd0,0xe8,0x27,0x1,0xe0,0xe9,0x16,0xe4,0xd0,0xea, - 0x6,0xe3,0xe0,0xea,0xf6,0xc6,0xd0,0xeb,0xe6,0xc5,0xe0,0xec,0xd6,0xa8,0xd0,0xed, - 0xc6,0xa7,0xe0,0xee,0xbf,0xc5,0x50,0xef,0xaf,0xc4,0x60,0xf0,0x9f,0xa7,0x50,0xf1, - 0x8f,0xa6,0x60,0xf2,0x7f,0x89,0x50,0xf3,0x6f,0x88,0x60,0xf4,0x5f,0x6b,0x50,0xf5, - 0x4f,0x6a,0x60,0xf6,0x3f,0x4d,0x50,0xf7,0x2f,0x4c,0x60,0xf8,0x28,0x69,0xd0,0xf9, - 0xf,0x2e,0x60,0xfa,0x8,0x4b,0xd0,0xfa,0xf8,0x4a,0xe0,0xfb,0xe8,0x2d,0xd0,0xfc, - 0xd8,0x2c,0xe0,0xfd,0xc8,0xf,0xd0,0xfe,0xb8,0xe,0xe0,0xff,0xa7,0xf1,0xd0,0x0, - 0x97,0xf0,0xe0,0x1,0x87,0xd3,0xd0,0x2,0x77,0xd2,0xe0,0x3,0x70,0xf0,0x50,0x4, - 0x60,0xef,0x60,0x5,0x50,0xd2,0x50,0x8,0x20,0xb3,0x60,0x9,0x10,0x96,0x50,0xa, - 0x0,0x95,0x60,0xa,0xf0,0x78,0x50,0xb,0xe0,0x77,0x60,0xc,0xd9,0x94,0xd0,0xd, - 0xc0,0x59,0x60,0xe,0xb9,0x76,0xd0,0xf,0xa9,0x75,0xe0,0x10,0x99,0x58,0xd0,0x11, - 0x89,0x57,0xe0,0x12,0x79,0x3a,0xd0,0x13,0x69,0x39,0xe0,0x14,0x59,0x1c,0xd0,0x15, - 0x49,0x1b,0xe0,0x16,0x38,0xfe,0xd0,0x17,0x28,0xfd,0xe0,0x18,0x22,0x1b,0x50,0x19, - 0x8,0xdf,0xe0,0x1a,0x1,0xfd,0x50,0x1a,0xf1,0xfc,0x60,0x1b,0xe1,0xdf,0x50,0x1c, - 0xd1,0xde,0x60,0x1d,0xc1,0xc1,0x50,0x1e,0xb1,0xc0,0x60,0x1f,0xa1,0xa3,0x50,0x20, - 0x75,0xf2,0xe0,0x21,0x81,0x85,0x50,0x22,0x55,0xd4,0xe0,0x23,0x6a,0xa1,0xd0,0x24, - 0x35,0xb6,0xe0,0x25,0x4a,0x83,0xd0,0x26,0x15,0x98,0xe0,0x27,0x2a,0x65,0xd0,0x27, - 0xfe,0xb5,0x60,0x29,0xa,0x47,0xd0,0x29,0xde,0x97,0x60,0x2a,0xea,0x29,0xd0,0x2b, - 0xbe,0x5d,0x7c,0x2c,0xd3,0x2a,0x6c,0x2d,0x9e,0x3f,0x7c,0x2e,0xb3,0xc,0x6c,0x2f, - 0x7e,0x21,0x7c,0x30,0x92,0xee,0x6c,0x31,0x67,0x3d,0xfc,0x32,0x72,0xd0,0x6c,0x33, - 0x47,0x1f,0xfc,0x34,0x52,0xb2,0x6c,0x35,0x27,0x1,0xfc,0x36,0x32,0x94,0x6c,0x37, - 0x6,0xe3,0xfc,0x38,0x1b,0xb0,0xec,0x38,0xe6,0xc5,0xfc,0x39,0xfb,0x92,0xec,0x3a, - 0xc6,0xa7,0xfc,0x3b,0xdb,0x74,0xec,0x3c,0xaf,0xc4,0x7c,0x3d,0xbb,0x56,0xec,0x3e, - 0x8f,0xa6,0x7c,0x3f,0x9b,0x38,0xec,0x40,0x6f,0x88,0x7c,0x41,0x84,0x55,0x6c,0x42, - 0x4f,0x6a,0x7c,0x43,0x64,0x37,0x6c,0x44,0x2f,0x4c,0x7c,0x45,0x44,0x19,0x6c,0x45, - 0xf3,0x9a,0xe0,0x47,0x2d,0x51,0xd0,0x47,0xd3,0x7c,0xe0,0x49,0xd,0x33,0xd0,0x49, - 0xb3,0x5e,0xe0,0x4a,0xed,0x15,0xd0,0x4b,0x9c,0x7b,0x60,0x4c,0xd6,0x32,0x50,0x4d, - 0x7c,0x5d,0x60,0x4e,0xb6,0x14,0x50,0x4f,0x5c,0x3f,0x60,0x50,0x95,0xf6,0x50,0x51, - 0x3c,0x21,0x60,0x52,0x75,0xd8,0x50,0x53,0x1c,0x3,0x60,0x54,0x55,0xba,0x50,0x54, - 0xfb,0xe5,0x60,0x56,0x35,0x9c,0x50,0x56,0xe5,0x1,0xe0,0x58,0x1e,0xb8,0xd0,0x58, - 0xc4,0xe3,0xe0,0x59,0xfe,0x9a,0xd0,0x5a,0xa4,0xc5,0xe0,0x5b,0xde,0x7c,0xd0,0x5c, - 0x84,0xa7,0xe0,0x5d,0xbe,0x5e,0xd0,0x5e,0x64,0x89,0xe0,0x5f,0x9e,0x40,0xd0,0x60, - 0x4d,0xa6,0x60,0x61,0x87,0x5d,0x50,0x62,0x2d,0x88,0x60,0x63,0x67,0x3f,0x50,0x64, - 0xd,0x6a,0x60,0x65,0x47,0x21,0x50,0x65,0xed,0x4c,0x60,0x67,0x27,0x3,0x50,0x67, - 0xcd,0x2e,0x60,0x69,0x6,0xe5,0x50,0x69,0xad,0x10,0x60,0x6a,0xe6,0xc7,0x50,0x6b, - 0x96,0x2c,0xe0,0x6c,0xcf,0xe3,0xd0,0x6d,0x76,0xe,0xe0,0x6e,0xaf,0xc5,0xd0,0x6f, - 0x55,0xf0,0xe0,0x70,0x8f,0xa7,0xd0,0x71,0x35,0xd2,0xe0,0x72,0x6f,0x89,0xd0,0x73, - 0x15,0xb4,0xe0,0x74,0x4f,0x6b,0xd0,0x74,0xfe,0xd1,0x60,0x76,0x38,0x88,0x50,0x76, - 0xde,0xb3,0x60,0x78,0x18,0x6a,0x50,0x78,0xbe,0x95,0x60,0x79,0xf8,0x4c,0x50,0x7a, - 0x9e,0x77,0x60,0x7b,0xd8,0x2e,0x50,0x7c,0x7e,0x59,0x60,0x7d,0xb8,0x10,0x50,0x7e, - 0x5e,0x3b,0x60,0x7f,0x97,0xf2,0x50,0x1,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x4,0x5,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0xff,0xff,0xc3,0x44,0x0,0x0,0xff,0xff,0xb9,0xb0, - 0x0,0x4,0xff,0xff,0xd5,0xd0,0x1,0x8,0xff,0xff,0xc7,0xc0,0x0,0xc,0xff,0xff, - 0xd5,0xd0,0x1,0x10,0xff,0xff,0xd5,0xd0,0x1,0x14,0x4c,0x4d,0x54,0x0,0x45,0x53, - 0x54,0x0,0x41,0x44,0x54,0x0,0x41,0x53,0x54,0x0,0x41,0x57,0x54,0x0,0x41,0x50, - 0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x54,0x5a, - 0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xd0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0xf8,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xff,0xff,0xff,0xff,0x5e,0x1e,0xed,0xbc,0xff,0xff,0xff,0xff,0x80,0xf1, - 0xb6,0x50,0xff,0xff,0xff,0xff,0x9e,0xb8,0x85,0x60,0xff,0xff,0xff,0xff,0x9f,0xba, - 0xdd,0x50,0xff,0xff,0xff,0xff,0xbb,0x3c,0x38,0xd0,0xff,0xff,0xff,0xff,0xbb,0xb4, - 0x23,0x40,0xff,0xff,0xff,0xff,0xbd,0x1c,0x1a,0xd0,0xff,0xff,0xff,0xff,0xbd,0x94, - 0x5,0x40,0xff,0xff,0xff,0xff,0xbe,0xfb,0xfc,0xd0,0xff,0xff,0xff,0xff,0xbf,0x73, - 0xe7,0x40,0xff,0xff,0xff,0xff,0xc0,0xdb,0xde,0xd0,0xff,0xff,0xff,0xff,0xc1,0x53, - 0xc9,0x40,0xff,0xff,0xff,0xff,0xc2,0xbb,0xc0,0xd0,0xff,0xff,0xff,0xff,0xc3,0x33, - 0xab,0x40,0xff,0xff,0xff,0xff,0xc4,0x9b,0xa2,0xd0,0xff,0xff,0xff,0xff,0xc5,0x13, - 0x8d,0x40,0xff,0xff,0xff,0xff,0xc6,0x70,0xf8,0xd0,0xff,0xff,0xff,0xff,0xc7,0xd, - 0xcd,0x40,0xff,0xff,0xff,0xff,0xc8,0x48,0xf1,0xd0,0xff,0xff,0xff,0xff,0xc8,0xed, - 0xaf,0x40,0xff,0xff,0xff,0xff,0xca,0x16,0x5e,0xd0,0xff,0xff,0xff,0xff,0xca,0xd6, - 0xcb,0xc0,0xff,0xff,0xff,0xff,0xcb,0x88,0xe2,0x60,0xff,0xff,0xff,0xff,0xd2,0x23, - 0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x60,0xed,0xd0,0xff,0xff,0xff,0xff,0xd3,0x75, - 0xd6,0xe0,0xff,0xff,0xff,0xff,0xd4,0x40,0xcf,0xd0,0xff,0xff,0xff,0xff,0xd5,0x55, - 0xb8,0xe0,0xff,0xff,0xff,0xff,0xd6,0x20,0xb1,0xd0,0xff,0xff,0xff,0xff,0xd7,0x35, - 0x9a,0xe0,0xff,0xff,0xff,0xff,0xd8,0x0,0x93,0xd0,0xff,0xff,0xff,0xff,0xd9,0x15, - 0x7c,0xe0,0xff,0xff,0xff,0xff,0xd9,0xe0,0x75,0xd0,0xff,0xff,0xff,0xff,0xda,0xfe, - 0x99,0x60,0xff,0xff,0xff,0xff,0xdb,0xc0,0x57,0xd0,0xff,0xff,0xff,0xff,0xdc,0xde, - 0x7b,0x60,0xff,0xff,0xff,0xff,0xdd,0xa9,0x74,0x50,0xff,0xff,0xff,0xff,0xde,0xbe, - 0x5d,0x60,0xff,0xff,0xff,0xff,0xdf,0x89,0x56,0x50,0xff,0xff,0xff,0xff,0xe0,0x9e, - 0x3f,0x60,0xff,0xff,0xff,0xff,0xe1,0x69,0x38,0x50,0xff,0xff,0xff,0xff,0xe2,0x7e, - 0x21,0x60,0xff,0xff,0xff,0xff,0xe3,0x49,0x1a,0x50,0xff,0xff,0xff,0xff,0xe4,0x5e, - 0x3,0x60,0xff,0xff,0xff,0xff,0xe5,0x28,0xfc,0x50,0xff,0xff,0xff,0xff,0xe6,0x47, - 0x1f,0xe0,0xff,0xff,0xff,0xff,0xe7,0x12,0x18,0xd0,0xff,0xff,0xff,0xff,0xe8,0x27, - 0x1,0xe0,0xff,0xff,0xff,0xff,0xe9,0x16,0xe4,0xd0,0xff,0xff,0xff,0xff,0xea,0x6, - 0xe3,0xe0,0xff,0xff,0xff,0xff,0xea,0xf6,0xc6,0xd0,0xff,0xff,0xff,0xff,0xeb,0xe6, - 0xc5,0xe0,0xff,0xff,0xff,0xff,0xec,0xd6,0xa8,0xd0,0xff,0xff,0xff,0xff,0xed,0xc6, - 0xa7,0xe0,0xff,0xff,0xff,0xff,0xee,0xbf,0xc5,0x50,0xff,0xff,0xff,0xff,0xef,0xaf, - 0xc4,0x60,0xff,0xff,0xff,0xff,0xf0,0x9f,0xa7,0x50,0xff,0xff,0xff,0xff,0xf1,0x8f, - 0xa6,0x60,0xff,0xff,0xff,0xff,0xf2,0x7f,0x89,0x50,0xff,0xff,0xff,0xff,0xf3,0x6f, - 0x88,0x60,0xff,0xff,0xff,0xff,0xf4,0x5f,0x6b,0x50,0xff,0xff,0xff,0xff,0xf5,0x4f, - 0x6a,0x60,0xff,0xff,0xff,0xff,0xf6,0x3f,0x4d,0x50,0xff,0xff,0xff,0xff,0xf7,0x2f, - 0x4c,0x60,0xff,0xff,0xff,0xff,0xf8,0x28,0x69,0xd0,0xff,0xff,0xff,0xff,0xf9,0xf, - 0x2e,0x60,0xff,0xff,0xff,0xff,0xfa,0x8,0x4b,0xd0,0xff,0xff,0xff,0xff,0xfa,0xf8, - 0x4a,0xe0,0xff,0xff,0xff,0xff,0xfb,0xe8,0x2d,0xd0,0xff,0xff,0xff,0xff,0xfc,0xd8, - 0x2c,0xe0,0xff,0xff,0xff,0xff,0xfd,0xc8,0xf,0xd0,0xff,0xff,0xff,0xff,0xfe,0xb8, - 0xe,0xe0,0xff,0xff,0xff,0xff,0xff,0xa7,0xf1,0xd0,0x0,0x0,0x0,0x0,0x0,0x97, - 0xf0,0xe0,0x0,0x0,0x0,0x0,0x1,0x87,0xd3,0xd0,0x0,0x0,0x0,0x0,0x2,0x77, - 0xd2,0xe0,0x0,0x0,0x0,0x0,0x3,0x70,0xf0,0x50,0x0,0x0,0x0,0x0,0x4,0x60, - 0xef,0x60,0x0,0x0,0x0,0x0,0x5,0x50,0xd2,0x50,0x0,0x0,0x0,0x0,0x8,0x20, - 0xb3,0x60,0x0,0x0,0x0,0x0,0x9,0x10,0x96,0x50,0x0,0x0,0x0,0x0,0xa,0x0, - 0x95,0x60,0x0,0x0,0x0,0x0,0xa,0xf0,0x78,0x50,0x0,0x0,0x0,0x0,0xb,0xe0, - 0x77,0x60,0x0,0x0,0x0,0x0,0xc,0xd9,0x94,0xd0,0x0,0x0,0x0,0x0,0xd,0xc0, - 0x59,0x60,0x0,0x0,0x0,0x0,0xe,0xb9,0x76,0xd0,0x0,0x0,0x0,0x0,0xf,0xa9, - 0x75,0xe0,0x0,0x0,0x0,0x0,0x10,0x99,0x58,0xd0,0x0,0x0,0x0,0x0,0x11,0x89, - 0x57,0xe0,0x0,0x0,0x0,0x0,0x12,0x79,0x3a,0xd0,0x0,0x0,0x0,0x0,0x13,0x69, - 0x39,0xe0,0x0,0x0,0x0,0x0,0x14,0x59,0x1c,0xd0,0x0,0x0,0x0,0x0,0x15,0x49, - 0x1b,0xe0,0x0,0x0,0x0,0x0,0x16,0x38,0xfe,0xd0,0x0,0x0,0x0,0x0,0x17,0x28, - 0xfd,0xe0,0x0,0x0,0x0,0x0,0x18,0x22,0x1b,0x50,0x0,0x0,0x0,0x0,0x19,0x8, - 0xdf,0xe0,0x0,0x0,0x0,0x0,0x1a,0x1,0xfd,0x50,0x0,0x0,0x0,0x0,0x1a,0xf1, - 0xfc,0x60,0x0,0x0,0x0,0x0,0x1b,0xe1,0xdf,0x50,0x0,0x0,0x0,0x0,0x1c,0xd1, - 0xde,0x60,0x0,0x0,0x0,0x0,0x1d,0xc1,0xc1,0x50,0x0,0x0,0x0,0x0,0x1e,0xb1, - 0xc0,0x60,0x0,0x0,0x0,0x0,0x1f,0xa1,0xa3,0x50,0x0,0x0,0x0,0x0,0x20,0x75, - 0xf2,0xe0,0x0,0x0,0x0,0x0,0x21,0x81,0x85,0x50,0x0,0x0,0x0,0x0,0x22,0x55, - 0xd4,0xe0,0x0,0x0,0x0,0x0,0x23,0x6a,0xa1,0xd0,0x0,0x0,0x0,0x0,0x24,0x35, - 0xb6,0xe0,0x0,0x0,0x0,0x0,0x25,0x4a,0x83,0xd0,0x0,0x0,0x0,0x0,0x26,0x15, - 0x98,0xe0,0x0,0x0,0x0,0x0,0x27,0x2a,0x65,0xd0,0x0,0x0,0x0,0x0,0x27,0xfe, - 0xb5,0x60,0x0,0x0,0x0,0x0,0x29,0xa,0x47,0xd0,0x0,0x0,0x0,0x0,0x29,0xde, - 0x97,0x60,0x0,0x0,0x0,0x0,0x2a,0xea,0x29,0xd0,0x0,0x0,0x0,0x0,0x2b,0xbe, - 0x5d,0x7c,0x0,0x0,0x0,0x0,0x2c,0xd3,0x2a,0x6c,0x0,0x0,0x0,0x0,0x2d,0x9e, - 0x3f,0x7c,0x0,0x0,0x0,0x0,0x2e,0xb3,0xc,0x6c,0x0,0x0,0x0,0x0,0x2f,0x7e, - 0x21,0x7c,0x0,0x0,0x0,0x0,0x30,0x92,0xee,0x6c,0x0,0x0,0x0,0x0,0x31,0x67, - 0x3d,0xfc,0x0,0x0,0x0,0x0,0x32,0x72,0xd0,0x6c,0x0,0x0,0x0,0x0,0x33,0x47, - 0x1f,0xfc,0x0,0x0,0x0,0x0,0x34,0x52,0xb2,0x6c,0x0,0x0,0x0,0x0,0x35,0x27, - 0x1,0xfc,0x0,0x0,0x0,0x0,0x36,0x32,0x94,0x6c,0x0,0x0,0x0,0x0,0x37,0x6, - 0xe3,0xfc,0x0,0x0,0x0,0x0,0x38,0x1b,0xb0,0xec,0x0,0x0,0x0,0x0,0x38,0xe6, - 0xc5,0xfc,0x0,0x0,0x0,0x0,0x39,0xfb,0x92,0xec,0x0,0x0,0x0,0x0,0x3a,0xc6, - 0xa7,0xfc,0x0,0x0,0x0,0x0,0x3b,0xdb,0x74,0xec,0x0,0x0,0x0,0x0,0x3c,0xaf, - 0xc4,0x7c,0x0,0x0,0x0,0x0,0x3d,0xbb,0x56,0xec,0x0,0x0,0x0,0x0,0x3e,0x8f, - 0xa6,0x7c,0x0,0x0,0x0,0x0,0x3f,0x9b,0x38,0xec,0x0,0x0,0x0,0x0,0x40,0x6f, - 0x88,0x7c,0x0,0x0,0x0,0x0,0x41,0x84,0x55,0x6c,0x0,0x0,0x0,0x0,0x42,0x4f, - 0x6a,0x7c,0x0,0x0,0x0,0x0,0x43,0x64,0x37,0x6c,0x0,0x0,0x0,0x0,0x44,0x2f, - 0x4c,0x7c,0x0,0x0,0x0,0x0,0x45,0x44,0x19,0x6c,0x0,0x0,0x0,0x0,0x45,0xf3, - 0x9a,0xe0,0x0,0x0,0x0,0x0,0x47,0x2d,0x51,0xd0,0x0,0x0,0x0,0x0,0x47,0xd3, - 0x7c,0xe0,0x0,0x0,0x0,0x0,0x49,0xd,0x33,0xd0,0x0,0x0,0x0,0x0,0x49,0xb3, - 0x5e,0xe0,0x0,0x0,0x0,0x0,0x4a,0xed,0x15,0xd0,0x0,0x0,0x0,0x0,0x4b,0x9c, - 0x7b,0x60,0x0,0x0,0x0,0x0,0x4c,0xd6,0x32,0x50,0x0,0x0,0x0,0x0,0x4d,0x7c, - 0x5d,0x60,0x0,0x0,0x0,0x0,0x4e,0xb6,0x14,0x50,0x0,0x0,0x0,0x0,0x4f,0x5c, - 0x3f,0x60,0x0,0x0,0x0,0x0,0x50,0x95,0xf6,0x50,0x0,0x0,0x0,0x0,0x51,0x3c, - 0x21,0x60,0x0,0x0,0x0,0x0,0x52,0x75,0xd8,0x50,0x0,0x0,0x0,0x0,0x53,0x1c, - 0x3,0x60,0x0,0x0,0x0,0x0,0x54,0x55,0xba,0x50,0x0,0x0,0x0,0x0,0x54,0xfb, - 0xe5,0x60,0x0,0x0,0x0,0x0,0x56,0x35,0x9c,0x50,0x0,0x0,0x0,0x0,0x56,0xe5, - 0x1,0xe0,0x0,0x0,0x0,0x0,0x58,0x1e,0xb8,0xd0,0x0,0x0,0x0,0x0,0x58,0xc4, - 0xe3,0xe0,0x0,0x0,0x0,0x0,0x59,0xfe,0x9a,0xd0,0x0,0x0,0x0,0x0,0x5a,0xa4, - 0xc5,0xe0,0x0,0x0,0x0,0x0,0x5b,0xde,0x7c,0xd0,0x0,0x0,0x0,0x0,0x5c,0x84, - 0xa7,0xe0,0x0,0x0,0x0,0x0,0x5d,0xbe,0x5e,0xd0,0x0,0x0,0x0,0x0,0x5e,0x64, - 0x89,0xe0,0x0,0x0,0x0,0x0,0x5f,0x9e,0x40,0xd0,0x0,0x0,0x0,0x0,0x60,0x4d, - 0xa6,0x60,0x0,0x0,0x0,0x0,0x61,0x87,0x5d,0x50,0x0,0x0,0x0,0x0,0x62,0x2d, - 0x88,0x60,0x0,0x0,0x0,0x0,0x63,0x67,0x3f,0x50,0x0,0x0,0x0,0x0,0x64,0xd, - 0x6a,0x60,0x0,0x0,0x0,0x0,0x65,0x47,0x21,0x50,0x0,0x0,0x0,0x0,0x65,0xed, - 0x4c,0x60,0x0,0x0,0x0,0x0,0x67,0x27,0x3,0x50,0x0,0x0,0x0,0x0,0x67,0xcd, - 0x2e,0x60,0x0,0x0,0x0,0x0,0x69,0x6,0xe5,0x50,0x0,0x0,0x0,0x0,0x69,0xad, - 0x10,0x60,0x0,0x0,0x0,0x0,0x6a,0xe6,0xc7,0x50,0x0,0x0,0x0,0x0,0x6b,0x96, - 0x2c,0xe0,0x0,0x0,0x0,0x0,0x6c,0xcf,0xe3,0xd0,0x0,0x0,0x0,0x0,0x6d,0x76, - 0xe,0xe0,0x0,0x0,0x0,0x0,0x6e,0xaf,0xc5,0xd0,0x0,0x0,0x0,0x0,0x6f,0x55, - 0xf0,0xe0,0x0,0x0,0x0,0x0,0x70,0x8f,0xa7,0xd0,0x0,0x0,0x0,0x0,0x71,0x35, - 0xd2,0xe0,0x0,0x0,0x0,0x0,0x72,0x6f,0x89,0xd0,0x0,0x0,0x0,0x0,0x73,0x15, - 0xb4,0xe0,0x0,0x0,0x0,0x0,0x74,0x4f,0x6b,0xd0,0x0,0x0,0x0,0x0,0x74,0xfe, - 0xd1,0x60,0x0,0x0,0x0,0x0,0x76,0x38,0x88,0x50,0x0,0x0,0x0,0x0,0x76,0xde, - 0xb3,0x60,0x0,0x0,0x0,0x0,0x78,0x18,0x6a,0x50,0x0,0x0,0x0,0x0,0x78,0xbe, - 0x95,0x60,0x0,0x0,0x0,0x0,0x79,0xf8,0x4c,0x50,0x0,0x0,0x0,0x0,0x7a,0x9e, - 0x77,0x60,0x0,0x0,0x0,0x0,0x7b,0xd8,0x2e,0x50,0x0,0x0,0x0,0x0,0x7c,0x7e, - 0x59,0x60,0x0,0x0,0x0,0x0,0x7d,0xb8,0x10,0x50,0x0,0x0,0x0,0x0,0x7e,0x5e, - 0x3b,0x60,0x0,0x0,0x0,0x0,0x7f,0x97,0xf2,0x50,0x0,0x1,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x4,0x5,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0xff,0xff,0xc3,0x44,0x0,0x0, - 0xff,0xff,0xb9,0xb0,0x0,0x4,0xff,0xff,0xd5,0xd0,0x1,0x8,0xff,0xff,0xc7,0xc0, - 0x0,0xc,0xff,0xff,0xd5,0xd0,0x1,0x10,0xff,0xff,0xd5,0xd0,0x1,0x14,0x4c,0x4d, - 0x54,0x0,0x45,0x53,0x54,0x0,0x41,0x44,0x54,0x0,0x41,0x53,0x54,0x0,0x41,0x57, - 0x54,0x0,0x41,0x50,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0, - 0x0,0x1,0xa,0x41,0x53,0x54,0x34,0x41,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e, - 0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Phoenix - 0x0,0x0,0x1,0x61, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xb,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x10,0x80,0x0,0x0,0x0,0x9e, - 0xa6,0x3a,0x90,0x9f,0xbb,0x7,0x80,0xa0,0x86,0x1c,0x90,0xa1,0x9a,0xe9,0x80,0xcb, - 0x89,0xc,0x90,0xcf,0x17,0xdf,0x1c,0xcf,0x8f,0xe5,0xac,0xd0,0x81,0x1a,0x1c,0xfa, - 0xf8,0x75,0x10,0xfb,0xe8,0x58,0x0,0x2,0x1,0x2,0x1,0x2,0x3,0x2,0x3,0x2, - 0x1,0x2,0xff,0xff,0x96,0xee,0x0,0x0,0xff,0xff,0xab,0xa0,0x1,0x4,0xff,0xff, - 0x9d,0x90,0x0,0x8,0xff,0xff,0xab,0xa0,0x1,0xc,0x4c,0x4d,0x54,0x0,0x4d,0x44, - 0x54,0x0,0x4d,0x53,0x54,0x0,0x4d,0x57,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x10,0xf8,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x5e,0x4,0xc,0xb0,0xff,0xff, - 0xff,0xff,0x9e,0xa6,0x3a,0x90,0xff,0xff,0xff,0xff,0x9f,0xbb,0x7,0x80,0xff,0xff, - 0xff,0xff,0xa0,0x86,0x1c,0x90,0xff,0xff,0xff,0xff,0xa1,0x9a,0xe9,0x80,0xff,0xff, - 0xff,0xff,0xcb,0x89,0xc,0x90,0xff,0xff,0xff,0xff,0xcf,0x17,0xdf,0x1c,0xff,0xff, - 0xff,0xff,0xcf,0x8f,0xe5,0xac,0xff,0xff,0xff,0xff,0xd0,0x81,0x1a,0x1c,0xff,0xff, - 0xff,0xff,0xfa,0xf8,0x75,0x10,0xff,0xff,0xff,0xff,0xfb,0xe8,0x58,0x0,0x0,0x2, - 0x1,0x2,0x1,0x2,0x3,0x2,0x3,0x2,0x1,0x2,0xff,0xff,0x96,0xee,0x0,0x0, - 0xff,0xff,0xab,0xa0,0x1,0x4,0xff,0xff,0x9d,0x90,0x0,0x8,0xff,0xff,0xab,0xa0, - 0x1,0xc,0x4c,0x4d,0x54,0x0,0x4d,0x44,0x54,0x0,0x4d,0x53,0x54,0x0,0x4d,0x57, - 0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x4d,0x53,0x54,0x37,0xa, - - // /home/konrad/src/smoke/tzone/zoneinfo/America/Resolute - 0x0,0x0,0x7,0x8a, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x78,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x80,0x0,0x0,0x0,0xd5, - 0xfb,0x81,0x80,0xf7,0x2f,0x4c,0x60,0xf8,0x28,0x77,0xe0,0x13,0x69,0x56,0x0,0x14, - 0x59,0x38,0xf0,0x15,0x49,0x38,0x0,0x16,0x39,0x1a,0xf0,0x17,0x29,0x1a,0x0,0x18, - 0x22,0x37,0x70,0x19,0x8,0xfc,0x0,0x1a,0x2,0x19,0x70,0x1a,0xf2,0x18,0x80,0x1b, - 0xe1,0xfb,0x70,0x1c,0xd1,0xfa,0x80,0x1d,0xc1,0xdd,0x70,0x1e,0xb1,0xdc,0x80,0x1f, - 0xa1,0xbf,0x70,0x20,0x76,0xf,0x0,0x21,0x81,0xa1,0x70,0x22,0x55,0xf1,0x0,0x23, - 0x6a,0xbd,0xf0,0x24,0x35,0xd3,0x0,0x25,0x4a,0x9f,0xf0,0x26,0x15,0xb5,0x0,0x27, - 0x2a,0x81,0xf0,0x27,0xfe,0xd1,0x80,0x29,0xa,0x63,0xf0,0x29,0xde,0xb3,0x80,0x2a, - 0xea,0x45,0xf0,0x2b,0xbe,0x95,0x80,0x2c,0xd3,0x62,0x70,0x2d,0x9e,0x77,0x80,0x2e, - 0xb3,0x44,0x70,0x2f,0x7e,0x59,0x80,0x30,0x93,0x26,0x70,0x31,0x67,0x76,0x0,0x32, - 0x73,0x8,0x70,0x33,0x47,0x58,0x0,0x34,0x52,0xea,0x70,0x35,0x27,0x3a,0x0,0x36, - 0x32,0xcc,0x70,0x37,0x7,0x1c,0x0,0x38,0x1b,0xe8,0xf0,0x38,0xe6,0xfe,0x0,0x39, - 0xfb,0xca,0xf0,0x3a,0xc6,0xe0,0x0,0x3b,0xdb,0xac,0xf0,0x3c,0xaf,0xfc,0x80,0x3d, - 0xbb,0x8e,0xf0,0x3e,0x8f,0xde,0x80,0x3f,0x9b,0x70,0xf0,0x40,0x6f,0xc0,0x80,0x41, - 0x84,0x8d,0x70,0x42,0x4f,0xa2,0x80,0x43,0x64,0x6f,0x70,0x44,0x2f,0x84,0x80,0x45, - 0x44,0x51,0x70,0x45,0xf3,0xb7,0x0,0x47,0x2d,0x6d,0xf0,0x47,0xd3,0x99,0x0,0x49, - 0xd,0x4f,0xf0,0x49,0xb3,0x7b,0x0,0x4a,0xed,0x31,0xf0,0x4b,0x9c,0x97,0x80,0x4c, - 0xd6,0x4e,0x70,0x4d,0x7c,0x79,0x80,0x4e,0xb6,0x30,0x70,0x4f,0x5c,0x5b,0x80,0x50, - 0x96,0x12,0x70,0x51,0x3c,0x3d,0x80,0x52,0x75,0xf4,0x70,0x53,0x1c,0x1f,0x80,0x54, - 0x55,0xd6,0x70,0x54,0xfc,0x1,0x80,0x56,0x35,0xb8,0x70,0x56,0xe5,0x1e,0x0,0x58, - 0x1e,0xd4,0xf0,0x58,0xc5,0x0,0x0,0x59,0xfe,0xb6,0xf0,0x5a,0xa4,0xe2,0x0,0x5b, - 0xde,0x98,0xf0,0x5c,0x84,0xc4,0x0,0x5d,0xbe,0x7a,0xf0,0x5e,0x64,0xa6,0x0,0x5f, - 0x9e,0x5c,0xf0,0x60,0x4d,0xc2,0x80,0x61,0x87,0x79,0x70,0x62,0x2d,0xa4,0x80,0x63, - 0x67,0x5b,0x70,0x64,0xd,0x86,0x80,0x65,0x47,0x3d,0x70,0x65,0xed,0x68,0x80,0x67, - 0x27,0x1f,0x70,0x67,0xcd,0x4a,0x80,0x69,0x7,0x1,0x70,0x69,0xad,0x2c,0x80,0x6a, - 0xe6,0xe3,0x70,0x6b,0x96,0x49,0x0,0x6c,0xcf,0xff,0xf0,0x6d,0x76,0x2b,0x0,0x6e, - 0xaf,0xe1,0xf0,0x6f,0x56,0xd,0x0,0x70,0x8f,0xc3,0xf0,0x71,0x35,0xef,0x0,0x72, - 0x6f,0xa5,0xf0,0x73,0x15,0xd1,0x0,0x74,0x4f,0x87,0xf0,0x74,0xfe,0xed,0x80,0x76, - 0x38,0xa4,0x70,0x76,0xde,0xcf,0x80,0x78,0x18,0x86,0x70,0x78,0xbe,0xb1,0x80,0x79, - 0xf8,0x68,0x70,0x7a,0x9e,0x93,0x80,0x7b,0xd8,0x4a,0x70,0x7c,0x7e,0x75,0x80,0x7d, - 0xb8,0x2c,0x70,0x7e,0x5e,0x57,0x80,0x7f,0x98,0xe,0x70,0x0,0x2,0x1,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x4,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x4,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xc7,0xc0,0x1,0x4,0xff, - 0xff,0xab,0xa0,0x0,0x9,0xff,0xff,0xb9,0xb0,0x1,0xd,0xff,0xff,0xb9,0xb0,0x0, - 0x11,0xff,0xff,0xab,0xa0,0x0,0x9,0x2d,0x30,0x30,0x0,0x43,0x44,0x44,0x54,0x0, - 0x43,0x53,0x54,0x0,0x43,0x44,0x54,0x0,0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6, - 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x78,0x0,0x0,0x0,0x6, - 0x0,0x0,0x0,0x15,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff, - 0xd5,0xfb,0x81,0x80,0xff,0xff,0xff,0xff,0xf7,0x2f,0x4c,0x60,0xff,0xff,0xff,0xff, - 0xf8,0x28,0x77,0xe0,0x0,0x0,0x0,0x0,0x13,0x69,0x56,0x0,0x0,0x0,0x0,0x0, - 0x14,0x59,0x38,0xf0,0x0,0x0,0x0,0x0,0x15,0x49,0x38,0x0,0x0,0x0,0x0,0x0, - 0x16,0x39,0x1a,0xf0,0x0,0x0,0x0,0x0,0x17,0x29,0x1a,0x0,0x0,0x0,0x0,0x0, - 0x18,0x22,0x37,0x70,0x0,0x0,0x0,0x0,0x19,0x8,0xfc,0x0,0x0,0x0,0x0,0x0, - 0x1a,0x2,0x19,0x70,0x0,0x0,0x0,0x0,0x1a,0xf2,0x18,0x80,0x0,0x0,0x0,0x0, - 0x1b,0xe1,0xfb,0x70,0x0,0x0,0x0,0x0,0x1c,0xd1,0xfa,0x80,0x0,0x0,0x0,0x0, - 0x1d,0xc1,0xdd,0x70,0x0,0x0,0x0,0x0,0x1e,0xb1,0xdc,0x80,0x0,0x0,0x0,0x0, - 0x1f,0xa1,0xbf,0x70,0x0,0x0,0x0,0x0,0x20,0x76,0xf,0x0,0x0,0x0,0x0,0x0, - 0x21,0x81,0xa1,0x70,0x0,0x0,0x0,0x0,0x22,0x55,0xf1,0x0,0x0,0x0,0x0,0x0, - 0x23,0x6a,0xbd,0xf0,0x0,0x0,0x0,0x0,0x24,0x35,0xd3,0x0,0x0,0x0,0x0,0x0, - 0x25,0x4a,0x9f,0xf0,0x0,0x0,0x0,0x0,0x26,0x15,0xb5,0x0,0x0,0x0,0x0,0x0, - 0x27,0x2a,0x81,0xf0,0x0,0x0,0x0,0x0,0x27,0xfe,0xd1,0x80,0x0,0x0,0x0,0x0, - 0x29,0xa,0x63,0xf0,0x0,0x0,0x0,0x0,0x29,0xde,0xb3,0x80,0x0,0x0,0x0,0x0, - 0x2a,0xea,0x45,0xf0,0x0,0x0,0x0,0x0,0x2b,0xbe,0x95,0x80,0x0,0x0,0x0,0x0, - 0x2c,0xd3,0x62,0x70,0x0,0x0,0x0,0x0,0x2d,0x9e,0x77,0x80,0x0,0x0,0x0,0x0, - 0x2e,0xb3,0x44,0x70,0x0,0x0,0x0,0x0,0x2f,0x7e,0x59,0x80,0x0,0x0,0x0,0x0, - 0x30,0x93,0x26,0x70,0x0,0x0,0x0,0x0,0x31,0x67,0x76,0x0,0x0,0x0,0x0,0x0, - 0x32,0x73,0x8,0x70,0x0,0x0,0x0,0x0,0x33,0x47,0x58,0x0,0x0,0x0,0x0,0x0, - 0x34,0x52,0xea,0x70,0x0,0x0,0x0,0x0,0x35,0x27,0x3a,0x0,0x0,0x0,0x0,0x0, - 0x36,0x32,0xcc,0x70,0x0,0x0,0x0,0x0,0x37,0x7,0x1c,0x0,0x0,0x0,0x0,0x0, - 0x38,0x1b,0xe8,0xf0,0x0,0x0,0x0,0x0,0x38,0xe6,0xfe,0x0,0x0,0x0,0x0,0x0, - 0x39,0xfb,0xca,0xf0,0x0,0x0,0x0,0x0,0x3a,0xc6,0xe0,0x0,0x0,0x0,0x0,0x0, - 0x3b,0xdb,0xac,0xf0,0x0,0x0,0x0,0x0,0x3c,0xaf,0xfc,0x80,0x0,0x0,0x0,0x0, - 0x3d,0xbb,0x8e,0xf0,0x0,0x0,0x0,0x0,0x3e,0x8f,0xde,0x80,0x0,0x0,0x0,0x0, - 0x3f,0x9b,0x70,0xf0,0x0,0x0,0x0,0x0,0x40,0x6f,0xc0,0x80,0x0,0x0,0x0,0x0, - 0x41,0x84,0x8d,0x70,0x0,0x0,0x0,0x0,0x42,0x4f,0xa2,0x80,0x0,0x0,0x0,0x0, - 0x43,0x64,0x6f,0x70,0x0,0x0,0x0,0x0,0x44,0x2f,0x84,0x80,0x0,0x0,0x0,0x0, - 0x45,0x44,0x51,0x70,0x0,0x0,0x0,0x0,0x45,0xf3,0xb7,0x0,0x0,0x0,0x0,0x0, - 0x47,0x2d,0x6d,0xf0,0x0,0x0,0x0,0x0,0x47,0xd3,0x99,0x0,0x0,0x0,0x0,0x0, - 0x49,0xd,0x4f,0xf0,0x0,0x0,0x0,0x0,0x49,0xb3,0x7b,0x0,0x0,0x0,0x0,0x0, - 0x4a,0xed,0x31,0xf0,0x0,0x0,0x0,0x0,0x4b,0x9c,0x97,0x80,0x0,0x0,0x0,0x0, - 0x4c,0xd6,0x4e,0x70,0x0,0x0,0x0,0x0,0x4d,0x7c,0x79,0x80,0x0,0x0,0x0,0x0, - 0x4e,0xb6,0x30,0x70,0x0,0x0,0x0,0x0,0x4f,0x5c,0x5b,0x80,0x0,0x0,0x0,0x0, - 0x50,0x96,0x12,0x70,0x0,0x0,0x0,0x0,0x51,0x3c,0x3d,0x80,0x0,0x0,0x0,0x0, - 0x52,0x75,0xf4,0x70,0x0,0x0,0x0,0x0,0x53,0x1c,0x1f,0x80,0x0,0x0,0x0,0x0, - 0x54,0x55,0xd6,0x70,0x0,0x0,0x0,0x0,0x54,0xfc,0x1,0x80,0x0,0x0,0x0,0x0, - 0x56,0x35,0xb8,0x70,0x0,0x0,0x0,0x0,0x56,0xe5,0x1e,0x0,0x0,0x0,0x0,0x0, - 0x58,0x1e,0xd4,0xf0,0x0,0x0,0x0,0x0,0x58,0xc5,0x0,0x0,0x0,0x0,0x0,0x0, - 0x59,0xfe,0xb6,0xf0,0x0,0x0,0x0,0x0,0x5a,0xa4,0xe2,0x0,0x0,0x0,0x0,0x0, - 0x5b,0xde,0x98,0xf0,0x0,0x0,0x0,0x0,0x5c,0x84,0xc4,0x0,0x0,0x0,0x0,0x0, - 0x5d,0xbe,0x7a,0xf0,0x0,0x0,0x0,0x0,0x5e,0x64,0xa6,0x0,0x0,0x0,0x0,0x0, - 0x5f,0x9e,0x5c,0xf0,0x0,0x0,0x0,0x0,0x60,0x4d,0xc2,0x80,0x0,0x0,0x0,0x0, - 0x61,0x87,0x79,0x70,0x0,0x0,0x0,0x0,0x62,0x2d,0xa4,0x80,0x0,0x0,0x0,0x0, - 0x63,0x67,0x5b,0x70,0x0,0x0,0x0,0x0,0x64,0xd,0x86,0x80,0x0,0x0,0x0,0x0, - 0x65,0x47,0x3d,0x70,0x0,0x0,0x0,0x0,0x65,0xed,0x68,0x80,0x0,0x0,0x0,0x0, - 0x67,0x27,0x1f,0x70,0x0,0x0,0x0,0x0,0x67,0xcd,0x4a,0x80,0x0,0x0,0x0,0x0, - 0x69,0x7,0x1,0x70,0x0,0x0,0x0,0x0,0x69,0xad,0x2c,0x80,0x0,0x0,0x0,0x0, - 0x6a,0xe6,0xe3,0x70,0x0,0x0,0x0,0x0,0x6b,0x96,0x49,0x0,0x0,0x0,0x0,0x0, - 0x6c,0xcf,0xff,0xf0,0x0,0x0,0x0,0x0,0x6d,0x76,0x2b,0x0,0x0,0x0,0x0,0x0, - 0x6e,0xaf,0xe1,0xf0,0x0,0x0,0x0,0x0,0x6f,0x56,0xd,0x0,0x0,0x0,0x0,0x0, - 0x70,0x8f,0xc3,0xf0,0x0,0x0,0x0,0x0,0x71,0x35,0xef,0x0,0x0,0x0,0x0,0x0, - 0x72,0x6f,0xa5,0xf0,0x0,0x0,0x0,0x0,0x73,0x15,0xd1,0x0,0x0,0x0,0x0,0x0, - 0x74,0x4f,0x87,0xf0,0x0,0x0,0x0,0x0,0x74,0xfe,0xed,0x80,0x0,0x0,0x0,0x0, - 0x76,0x38,0xa4,0x70,0x0,0x0,0x0,0x0,0x76,0xde,0xcf,0x80,0x0,0x0,0x0,0x0, - 0x78,0x18,0x86,0x70,0x0,0x0,0x0,0x0,0x78,0xbe,0xb1,0x80,0x0,0x0,0x0,0x0, - 0x79,0xf8,0x68,0x70,0x0,0x0,0x0,0x0,0x7a,0x9e,0x93,0x80,0x0,0x0,0x0,0x0, - 0x7b,0xd8,0x4a,0x70,0x0,0x0,0x0,0x0,0x7c,0x7e,0x75,0x80,0x0,0x0,0x0,0x0, - 0x7d,0xb8,0x2c,0x70,0x0,0x0,0x0,0x0,0x7e,0x5e,0x57,0x80,0x0,0x0,0x0,0x0, - 0x7f,0x98,0xe,0x70,0x0,0x2,0x1,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x4,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x4,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x0,0x0,0x0,0x0, - 0x0,0x0,0xff,0xff,0xc7,0xc0,0x1,0x4,0xff,0xff,0xab,0xa0,0x0,0x9,0xff,0xff, - 0xb9,0xb0,0x1,0xd,0xff,0xff,0xb9,0xb0,0x0,0x11,0xff,0xff,0xab,0xa0,0x0,0x9, - 0x2d,0x30,0x30,0x0,0x43,0x44,0x44,0x54,0x0,0x43,0x53,0x54,0x0,0x43,0x44,0x54, - 0x0,0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xa,0x43,0x53,0x54,0x36,0x43,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30, - 0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Boise - 0x0,0x0,0x9,0x63, + 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x9e,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0x9e, + 0xa6,0x3a,0x90,0x9f,0xbb,0x7,0x80,0xa0,0x86,0x1c,0x90,0xa1,0x9a,0xe9,0x80,0xa2, + 0x65,0xfe,0x90,0xa3,0x84,0x6,0x0,0xa4,0x45,0xe0,0x90,0xa4,0x8f,0xa6,0x80,0xcb, + 0x89,0xc,0x90,0xd2,0x23,0xf4,0x70,0xd2,0x61,0x18,0x0,0xf7,0x2f,0x76,0x90,0xf8, + 0x28,0x94,0x0,0xf9,0xf,0x58,0x90,0xfa,0x8,0x76,0x0,0xfa,0xf8,0x75,0x10,0xfb, + 0xe8,0x58,0x0,0xfc,0xd8,0x57,0x10,0xfd,0xc8,0x3a,0x0,0xfe,0xb8,0x39,0x10,0xff, + 0xa8,0x1c,0x0,0x0,0x98,0x1b,0x10,0x1,0x87,0xfe,0x0,0x2,0x77,0xfd,0x10,0x3, + 0x71,0x1a,0x80,0x4,0x61,0x19,0x90,0x5,0x50,0xfc,0x80,0x6,0x40,0xfb,0x90,0x7, + 0x30,0xde,0x80,0x7,0x8d,0x35,0x90,0x9,0x10,0xc0,0x80,0x9,0xad,0xb1,0x10,0xa, + 0xf0,0xa2,0x80,0xb,0xe0,0xa1,0x90,0xc,0xd9,0xbf,0x0,0xd,0xc0,0x83,0x90,0xe, + 0xb9,0xa1,0x0,0xf,0xa9,0xa0,0x10,0x10,0x99,0x83,0x0,0x11,0x89,0x82,0x10,0x12, + 0x79,0x65,0x0,0x13,0x69,0x64,0x10,0x14,0x59,0x47,0x0,0x15,0x49,0x46,0x10,0x16, + 0x39,0x29,0x0,0x17,0x29,0x28,0x10,0x18,0x22,0x45,0x80,0x19,0x9,0xa,0x10,0x1a, + 0x2,0x27,0x80,0x1a,0xf2,0x26,0x90,0x1b,0xe2,0x9,0x80,0x1c,0xd2,0x8,0x90,0x1d, + 0xc1,0xeb,0x80,0x1e,0xb1,0xea,0x90,0x1f,0xa1,0xcd,0x80,0x20,0x76,0x1d,0x10,0x21, + 0x81,0xaf,0x80,0x22,0x55,0xff,0x10,0x23,0x6a,0xcc,0x0,0x24,0x35,0xe1,0x10,0x25, + 0x4a,0xae,0x0,0x26,0x15,0xc3,0x10,0x27,0x2a,0x90,0x0,0x27,0xfe,0xdf,0x90,0x29, + 0xa,0x72,0x0,0x29,0xde,0xc1,0x90,0x2a,0xea,0x54,0x0,0x2b,0xbe,0xa3,0x90,0x2c, + 0xd3,0x70,0x80,0x2d,0x9e,0x85,0x90,0x2e,0xb3,0x52,0x80,0x2f,0x7e,0x67,0x90,0x30, + 0x93,0x34,0x80,0x31,0x67,0x84,0x10,0x32,0x73,0x16,0x80,0x33,0x47,0x66,0x10,0x34, + 0x52,0xf8,0x80,0x35,0x27,0x48,0x10,0x36,0x32,0xda,0x80,0x37,0x7,0x2a,0x10,0x38, + 0x1b,0xf7,0x0,0x38,0xe7,0xc,0x10,0x39,0xfb,0xd9,0x0,0x3a,0xc6,0xee,0x10,0x3b, + 0xdb,0xbb,0x0,0x3c,0xb0,0xa,0x90,0x3d,0xbb,0x9d,0x0,0x3e,0x8f,0xec,0x90,0x3f, + 0x9b,0x7f,0x0,0x40,0x6f,0xce,0x90,0x41,0x84,0x9b,0x80,0x42,0x4f,0xb0,0x90,0x43, + 0x64,0x7d,0x80,0x44,0x2f,0x92,0x90,0x45,0x44,0x5f,0x80,0x45,0xf3,0xc5,0x10,0x47, + 0x2d,0x7c,0x0,0x47,0xd3,0xa7,0x10,0x49,0xd,0x5e,0x0,0x49,0xb3,0x89,0x10,0x4a, + 0xed,0x40,0x0,0x4b,0x9c,0xa5,0x90,0x4c,0xd6,0x5c,0x80,0x4d,0x7c,0x87,0x90,0x4e, + 0xb6,0x3e,0x80,0x4f,0x5c,0x69,0x90,0x50,0x96,0x20,0x80,0x51,0x3c,0x4b,0x90,0x52, + 0x76,0x2,0x80,0x53,0x1c,0x2d,0x90,0x54,0x55,0xe4,0x80,0x54,0xfc,0xf,0x90,0x56, + 0x35,0xc6,0x80,0x56,0xe5,0x2c,0x10,0x58,0x1e,0xe3,0x0,0x58,0xc5,0xe,0x10,0x59, + 0xfe,0xc5,0x0,0x5a,0xa4,0xf0,0x10,0x5b,0xde,0xa7,0x0,0x5c,0x84,0xd2,0x10,0x5d, + 0xbe,0x89,0x0,0x5e,0x64,0xb4,0x10,0x5f,0x9e,0x6b,0x0,0x60,0x4d,0xd0,0x90,0x61, + 0x87,0x87,0x80,0x62,0x2d,0xb2,0x90,0x63,0x67,0x69,0x80,0x64,0xd,0x94,0x90,0x65, + 0x47,0x4b,0x80,0x65,0xed,0x76,0x90,0x67,0x27,0x2d,0x80,0x67,0xcd,0x58,0x90,0x69, + 0x7,0xf,0x80,0x69,0xad,0x3a,0x90,0x6a,0xe6,0xf1,0x80,0x6b,0x96,0x57,0x10,0x6c, + 0xd0,0xe,0x0,0x6d,0x76,0x39,0x10,0x6e,0xaf,0xf0,0x0,0x6f,0x56,0x1b,0x10,0x70, + 0x8f,0xd2,0x0,0x71,0x35,0xfd,0x10,0x72,0x6f,0xb4,0x0,0x73,0x15,0xdf,0x10,0x74, + 0x4f,0x96,0x0,0x74,0xfe,0xfb,0x90,0x76,0x38,0xb2,0x80,0x76,0xde,0xdd,0x90,0x78, + 0x18,0x94,0x80,0x78,0xbe,0xbf,0x90,0x79,0xf8,0x76,0x80,0x7a,0x9e,0xa1,0x90,0x7b, + 0xd8,0x58,0x80,0x7c,0x7e,0x83,0x90,0x7d,0xb8,0x3a,0x80,0x7e,0x5e,0x65,0x90,0x7f, + 0x98,0x1c,0x80,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0xff,0xff,0x9d,0x94,0x0,0x0,0xff,0xff,0xab,0xa0,0x1,0x4,0xff,0xff,0x9d, + 0x90,0x0,0x8,0xff,0xff,0xab,0xa0,0x1,0xc,0xff,0xff,0xab,0xa0,0x1,0x10,0x4c, + 0x4d,0x54,0x0,0x4d,0x44,0x54,0x0,0x4d,0x53,0x54,0x0,0x4d,0x57,0x54,0x0,0x4d, + 0x50,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x1,0x54,0x5a,0x69, + 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x9f,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0x5e,0x4,0xc,0xb0,0xff,0xff,0xff,0xff,0x9e,0xa6,0x3a, + 0x90,0xff,0xff,0xff,0xff,0x9f,0xbb,0x7,0x80,0xff,0xff,0xff,0xff,0xa0,0x86,0x1c, + 0x90,0xff,0xff,0xff,0xff,0xa1,0x9a,0xe9,0x80,0xff,0xff,0xff,0xff,0xa2,0x65,0xfe, + 0x90,0xff,0xff,0xff,0xff,0xa3,0x84,0x6,0x0,0xff,0xff,0xff,0xff,0xa4,0x45,0xe0, + 0x90,0xff,0xff,0xff,0xff,0xa4,0x8f,0xa6,0x80,0xff,0xff,0xff,0xff,0xcb,0x89,0xc, + 0x90,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x61,0x18, + 0x0,0xff,0xff,0xff,0xff,0xf7,0x2f,0x76,0x90,0xff,0xff,0xff,0xff,0xf8,0x28,0x94, + 0x0,0xff,0xff,0xff,0xff,0xf9,0xf,0x58,0x90,0xff,0xff,0xff,0xff,0xfa,0x8,0x76, + 0x0,0xff,0xff,0xff,0xff,0xfa,0xf8,0x75,0x10,0xff,0xff,0xff,0xff,0xfb,0xe8,0x58, + 0x0,0xff,0xff,0xff,0xff,0xfc,0xd8,0x57,0x10,0xff,0xff,0xff,0xff,0xfd,0xc8,0x3a, + 0x0,0xff,0xff,0xff,0xff,0xfe,0xb8,0x39,0x10,0xff,0xff,0xff,0xff,0xff,0xa8,0x1c, + 0x0,0x0,0x0,0x0,0x0,0x0,0x98,0x1b,0x10,0x0,0x0,0x0,0x0,0x1,0x87,0xfe, + 0x0,0x0,0x0,0x0,0x0,0x2,0x77,0xfd,0x10,0x0,0x0,0x0,0x0,0x3,0x71,0x1a, + 0x80,0x0,0x0,0x0,0x0,0x4,0x61,0x19,0x90,0x0,0x0,0x0,0x0,0x5,0x50,0xfc, + 0x80,0x0,0x0,0x0,0x0,0x6,0x40,0xfb,0x90,0x0,0x0,0x0,0x0,0x7,0x30,0xde, + 0x80,0x0,0x0,0x0,0x0,0x7,0x8d,0x35,0x90,0x0,0x0,0x0,0x0,0x9,0x10,0xc0, + 0x80,0x0,0x0,0x0,0x0,0x9,0xad,0xb1,0x10,0x0,0x0,0x0,0x0,0xa,0xf0,0xa2, + 0x80,0x0,0x0,0x0,0x0,0xb,0xe0,0xa1,0x90,0x0,0x0,0x0,0x0,0xc,0xd9,0xbf, + 0x0,0x0,0x0,0x0,0x0,0xd,0xc0,0x83,0x90,0x0,0x0,0x0,0x0,0xe,0xb9,0xa1, + 0x0,0x0,0x0,0x0,0x0,0xf,0xa9,0xa0,0x10,0x0,0x0,0x0,0x0,0x10,0x99,0x83, + 0x0,0x0,0x0,0x0,0x0,0x11,0x89,0x82,0x10,0x0,0x0,0x0,0x0,0x12,0x79,0x65, + 0x0,0x0,0x0,0x0,0x0,0x13,0x69,0x64,0x10,0x0,0x0,0x0,0x0,0x14,0x59,0x47, + 0x0,0x0,0x0,0x0,0x0,0x15,0x49,0x46,0x10,0x0,0x0,0x0,0x0,0x16,0x39,0x29, + 0x0,0x0,0x0,0x0,0x0,0x17,0x29,0x28,0x10,0x0,0x0,0x0,0x0,0x18,0x22,0x45, + 0x80,0x0,0x0,0x0,0x0,0x19,0x9,0xa,0x10,0x0,0x0,0x0,0x0,0x1a,0x2,0x27, + 0x80,0x0,0x0,0x0,0x0,0x1a,0xf2,0x26,0x90,0x0,0x0,0x0,0x0,0x1b,0xe2,0x9, + 0x80,0x0,0x0,0x0,0x0,0x1c,0xd2,0x8,0x90,0x0,0x0,0x0,0x0,0x1d,0xc1,0xeb, + 0x80,0x0,0x0,0x0,0x0,0x1e,0xb1,0xea,0x90,0x0,0x0,0x0,0x0,0x1f,0xa1,0xcd, + 0x80,0x0,0x0,0x0,0x0,0x20,0x76,0x1d,0x10,0x0,0x0,0x0,0x0,0x21,0x81,0xaf, + 0x80,0x0,0x0,0x0,0x0,0x22,0x55,0xff,0x10,0x0,0x0,0x0,0x0,0x23,0x6a,0xcc, + 0x0,0x0,0x0,0x0,0x0,0x24,0x35,0xe1,0x10,0x0,0x0,0x0,0x0,0x25,0x4a,0xae, + 0x0,0x0,0x0,0x0,0x0,0x26,0x15,0xc3,0x10,0x0,0x0,0x0,0x0,0x27,0x2a,0x90, + 0x0,0x0,0x0,0x0,0x0,0x27,0xfe,0xdf,0x90,0x0,0x0,0x0,0x0,0x29,0xa,0x72, + 0x0,0x0,0x0,0x0,0x0,0x29,0xde,0xc1,0x90,0x0,0x0,0x0,0x0,0x2a,0xea,0x54, + 0x0,0x0,0x0,0x0,0x0,0x2b,0xbe,0xa3,0x90,0x0,0x0,0x0,0x0,0x2c,0xd3,0x70, + 0x80,0x0,0x0,0x0,0x0,0x2d,0x9e,0x85,0x90,0x0,0x0,0x0,0x0,0x2e,0xb3,0x52, + 0x80,0x0,0x0,0x0,0x0,0x2f,0x7e,0x67,0x90,0x0,0x0,0x0,0x0,0x30,0x93,0x34, + 0x80,0x0,0x0,0x0,0x0,0x31,0x67,0x84,0x10,0x0,0x0,0x0,0x0,0x32,0x73,0x16, + 0x80,0x0,0x0,0x0,0x0,0x33,0x47,0x66,0x10,0x0,0x0,0x0,0x0,0x34,0x52,0xf8, + 0x80,0x0,0x0,0x0,0x0,0x35,0x27,0x48,0x10,0x0,0x0,0x0,0x0,0x36,0x32,0xda, + 0x80,0x0,0x0,0x0,0x0,0x37,0x7,0x2a,0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0xf7, + 0x0,0x0,0x0,0x0,0x0,0x38,0xe7,0xc,0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0xd9, + 0x0,0x0,0x0,0x0,0x0,0x3a,0xc6,0xee,0x10,0x0,0x0,0x0,0x0,0x3b,0xdb,0xbb, + 0x0,0x0,0x0,0x0,0x0,0x3c,0xb0,0xa,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x9d, + 0x0,0x0,0x0,0x0,0x0,0x3e,0x8f,0xec,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x7f, + 0x0,0x0,0x0,0x0,0x0,0x40,0x6f,0xce,0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x9b, + 0x80,0x0,0x0,0x0,0x0,0x42,0x4f,0xb0,0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x7d, + 0x80,0x0,0x0,0x0,0x0,0x44,0x2f,0x92,0x90,0x0,0x0,0x0,0x0,0x45,0x44,0x5f, + 0x80,0x0,0x0,0x0,0x0,0x45,0xf3,0xc5,0x10,0x0,0x0,0x0,0x0,0x47,0x2d,0x7c, + 0x0,0x0,0x0,0x0,0x0,0x47,0xd3,0xa7,0x10,0x0,0x0,0x0,0x0,0x49,0xd,0x5e, + 0x0,0x0,0x0,0x0,0x0,0x49,0xb3,0x89,0x10,0x0,0x0,0x0,0x0,0x4a,0xed,0x40, + 0x0,0x0,0x0,0x0,0x0,0x4b,0x9c,0xa5,0x90,0x0,0x0,0x0,0x0,0x4c,0xd6,0x5c, + 0x80,0x0,0x0,0x0,0x0,0x4d,0x7c,0x87,0x90,0x0,0x0,0x0,0x0,0x4e,0xb6,0x3e, + 0x80,0x0,0x0,0x0,0x0,0x4f,0x5c,0x69,0x90,0x0,0x0,0x0,0x0,0x50,0x96,0x20, + 0x80,0x0,0x0,0x0,0x0,0x51,0x3c,0x4b,0x90,0x0,0x0,0x0,0x0,0x52,0x76,0x2, + 0x80,0x0,0x0,0x0,0x0,0x53,0x1c,0x2d,0x90,0x0,0x0,0x0,0x0,0x54,0x55,0xe4, + 0x80,0x0,0x0,0x0,0x0,0x54,0xfc,0xf,0x90,0x0,0x0,0x0,0x0,0x56,0x35,0xc6, + 0x80,0x0,0x0,0x0,0x0,0x56,0xe5,0x2c,0x10,0x0,0x0,0x0,0x0,0x58,0x1e,0xe3, + 0x0,0x0,0x0,0x0,0x0,0x58,0xc5,0xe,0x10,0x0,0x0,0x0,0x0,0x59,0xfe,0xc5, + 0x0,0x0,0x0,0x0,0x0,0x5a,0xa4,0xf0,0x10,0x0,0x0,0x0,0x0,0x5b,0xde,0xa7, + 0x0,0x0,0x0,0x0,0x0,0x5c,0x84,0xd2,0x10,0x0,0x0,0x0,0x0,0x5d,0xbe,0x89, + 0x0,0x0,0x0,0x0,0x0,0x5e,0x64,0xb4,0x10,0x0,0x0,0x0,0x0,0x5f,0x9e,0x6b, + 0x0,0x0,0x0,0x0,0x0,0x60,0x4d,0xd0,0x90,0x0,0x0,0x0,0x0,0x61,0x87,0x87, + 0x80,0x0,0x0,0x0,0x0,0x62,0x2d,0xb2,0x90,0x0,0x0,0x0,0x0,0x63,0x67,0x69, + 0x80,0x0,0x0,0x0,0x0,0x64,0xd,0x94,0x90,0x0,0x0,0x0,0x0,0x65,0x47,0x4b, + 0x80,0x0,0x0,0x0,0x0,0x65,0xed,0x76,0x90,0x0,0x0,0x0,0x0,0x67,0x27,0x2d, + 0x80,0x0,0x0,0x0,0x0,0x67,0xcd,0x58,0x90,0x0,0x0,0x0,0x0,0x69,0x7,0xf, + 0x80,0x0,0x0,0x0,0x0,0x69,0xad,0x3a,0x90,0x0,0x0,0x0,0x0,0x6a,0xe6,0xf1, + 0x80,0x0,0x0,0x0,0x0,0x6b,0x96,0x57,0x10,0x0,0x0,0x0,0x0,0x6c,0xd0,0xe, + 0x0,0x0,0x0,0x0,0x0,0x6d,0x76,0x39,0x10,0x0,0x0,0x0,0x0,0x6e,0xaf,0xf0, + 0x0,0x0,0x0,0x0,0x0,0x6f,0x56,0x1b,0x10,0x0,0x0,0x0,0x0,0x70,0x8f,0xd2, + 0x0,0x0,0x0,0x0,0x0,0x71,0x35,0xfd,0x10,0x0,0x0,0x0,0x0,0x72,0x6f,0xb4, + 0x0,0x0,0x0,0x0,0x0,0x73,0x15,0xdf,0x10,0x0,0x0,0x0,0x0,0x74,0x4f,0x96, + 0x0,0x0,0x0,0x0,0x0,0x74,0xfe,0xfb,0x90,0x0,0x0,0x0,0x0,0x76,0x38,0xb2, + 0x80,0x0,0x0,0x0,0x0,0x76,0xde,0xdd,0x90,0x0,0x0,0x0,0x0,0x78,0x18,0x94, + 0x80,0x0,0x0,0x0,0x0,0x78,0xbe,0xbf,0x90,0x0,0x0,0x0,0x0,0x79,0xf8,0x76, + 0x80,0x0,0x0,0x0,0x0,0x7a,0x9e,0xa1,0x90,0x0,0x0,0x0,0x0,0x7b,0xd8,0x58, + 0x80,0x0,0x0,0x0,0x0,0x7c,0x7e,0x83,0x90,0x0,0x0,0x0,0x0,0x7d,0xb8,0x3a, + 0x80,0x0,0x0,0x0,0x0,0x7e,0x5e,0x65,0x90,0x0,0x0,0x0,0x0,0x7f,0x98,0x1c, + 0x80,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0xff,0xff,0x9d,0x94,0x0,0x0,0xff,0xff,0xab,0xa0,0x1,0x4,0xff,0xff,0x9d,0x90, + 0x0,0x8,0xff,0xff,0xab,0xa0,0x1,0xc,0xff,0xff,0xab,0xa0,0x1,0x10,0x4c,0x4d, + 0x54,0x0,0x4d,0x44,0x54,0x0,0x4d,0x53,0x54,0x0,0x4d,0x57,0x54,0x0,0x4d,0x50, + 0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x1,0xa,0x4d,0x53,0x54, + 0x37,0x4d,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e, + 0x31,0x2e,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Fort_Wayne + 0x0,0x0,0x6,0x8b, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x97,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x1c,0x80,0x0,0x0,0x0,0x9e, - 0xa6,0x48,0xa0,0x9f,0xbb,0x15,0x90,0xa0,0x86,0x2a,0xa0,0xa1,0x9a,0xf7,0x90,0xa8, - 0x46,0x4c,0x20,0xcb,0x89,0xc,0x90,0xd2,0x23,0xf4,0x70,0xd2,0x61,0x18,0x0,0xfa, - 0xf8,0x75,0x10,0xfb,0xe8,0x58,0x0,0xfc,0xd8,0x57,0x10,0xfd,0xc8,0x3a,0x0,0xfe, - 0xb8,0x39,0x10,0xff,0xa8,0x1c,0x0,0x0,0x98,0x1b,0x10,0x1,0x87,0xfe,0x0,0x2, - 0x77,0xfd,0x10,0x3,0x71,0x1a,0x80,0x4,0x61,0x19,0x90,0x5,0x50,0xfc,0x80,0x6, - 0x40,0xfb,0x90,0x7,0x30,0xde,0x80,0x7,0xb2,0x1f,0x90,0x9,0x10,0xc0,0x80,0x9, - 0xad,0xb1,0x10,0xa,0xf0,0xa2,0x80,0xb,0xe0,0xa1,0x90,0xc,0xd9,0xbf,0x0,0xd, - 0xc0,0x83,0x90,0xe,0xb9,0xa1,0x0,0xf,0xa9,0xa0,0x10,0x10,0x99,0x83,0x0,0x11, - 0x89,0x82,0x10,0x12,0x79,0x65,0x0,0x13,0x69,0x64,0x10,0x14,0x59,0x47,0x0,0x15, - 0x49,0x46,0x10,0x16,0x39,0x29,0x0,0x17,0x29,0x28,0x10,0x18,0x22,0x45,0x80,0x19, - 0x9,0xa,0x10,0x1a,0x2,0x27,0x80,0x1a,0xf2,0x26,0x90,0x1b,0xe2,0x9,0x80,0x1c, - 0xd2,0x8,0x90,0x1d,0xc1,0xeb,0x80,0x1e,0xb1,0xea,0x90,0x1f,0xa1,0xcd,0x80,0x20, - 0x76,0x1d,0x10,0x21,0x81,0xaf,0x80,0x22,0x55,0xff,0x10,0x23,0x6a,0xcc,0x0,0x24, - 0x35,0xe1,0x10,0x25,0x4a,0xae,0x0,0x26,0x15,0xc3,0x10,0x27,0x2a,0x90,0x0,0x27, - 0xfe,0xdf,0x90,0x29,0xa,0x72,0x0,0x29,0xde,0xc1,0x90,0x2a,0xea,0x54,0x0,0x2b, - 0xbe,0xa3,0x90,0x2c,0xd3,0x70,0x80,0x2d,0x9e,0x85,0x90,0x2e,0xb3,0x52,0x80,0x2f, - 0x7e,0x67,0x90,0x30,0x93,0x34,0x80,0x31,0x67,0x84,0x10,0x32,0x73,0x16,0x80,0x33, - 0x47,0x66,0x10,0x34,0x52,0xf8,0x80,0x35,0x27,0x48,0x10,0x36,0x32,0xda,0x80,0x37, - 0x7,0x2a,0x10,0x38,0x1b,0xf7,0x0,0x38,0xe7,0xc,0x10,0x39,0xfb,0xd9,0x0,0x3a, - 0xc6,0xee,0x10,0x3b,0xdb,0xbb,0x0,0x3c,0xb0,0xa,0x90,0x3d,0xbb,0x9d,0x0,0x3e, - 0x8f,0xec,0x90,0x3f,0x9b,0x7f,0x0,0x40,0x6f,0xce,0x90,0x41,0x84,0x9b,0x80,0x42, - 0x4f,0xb0,0x90,0x43,0x64,0x7d,0x80,0x44,0x2f,0x92,0x90,0x45,0x44,0x5f,0x80,0x45, - 0xf3,0xc5,0x10,0x47,0x2d,0x7c,0x0,0x47,0xd3,0xa7,0x10,0x49,0xd,0x5e,0x0,0x49, - 0xb3,0x89,0x10,0x4a,0xed,0x40,0x0,0x4b,0x9c,0xa5,0x90,0x4c,0xd6,0x5c,0x80,0x4d, - 0x7c,0x87,0x90,0x4e,0xb6,0x3e,0x80,0x4f,0x5c,0x69,0x90,0x50,0x96,0x20,0x80,0x51, - 0x3c,0x4b,0x90,0x52,0x76,0x2,0x80,0x53,0x1c,0x2d,0x90,0x54,0x55,0xe4,0x80,0x54, - 0xfc,0xf,0x90,0x56,0x35,0xc6,0x80,0x56,0xe5,0x2c,0x10,0x58,0x1e,0xe3,0x0,0x58, - 0xc5,0xe,0x10,0x59,0xfe,0xc5,0x0,0x5a,0xa4,0xf0,0x10,0x5b,0xde,0xa7,0x0,0x5c, - 0x84,0xd2,0x10,0x5d,0xbe,0x89,0x0,0x5e,0x64,0xb4,0x10,0x5f,0x9e,0x6b,0x0,0x60, - 0x4d,0xd0,0x90,0x61,0x87,0x87,0x80,0x62,0x2d,0xb2,0x90,0x63,0x67,0x69,0x80,0x64, - 0xd,0x94,0x90,0x65,0x47,0x4b,0x80,0x65,0xed,0x76,0x90,0x67,0x27,0x2d,0x80,0x67, - 0xcd,0x58,0x90,0x69,0x7,0xf,0x80,0x69,0xad,0x3a,0x90,0x6a,0xe6,0xf1,0x80,0x6b, - 0x96,0x57,0x10,0x6c,0xd0,0xe,0x0,0x6d,0x76,0x39,0x10,0x6e,0xaf,0xf0,0x0,0x6f, - 0x56,0x1b,0x10,0x70,0x8f,0xd2,0x0,0x71,0x35,0xfd,0x10,0x72,0x6f,0xb4,0x0,0x73, - 0x15,0xdf,0x10,0x74,0x4f,0x96,0x0,0x74,0xfe,0xfb,0x90,0x76,0x38,0xb2,0x80,0x76, - 0xde,0xdd,0x90,0x78,0x18,0x94,0x80,0x78,0xbe,0xbf,0x90,0x79,0xf8,0x76,0x80,0x7a, - 0x9e,0xa1,0x90,0x7b,0xd8,0x58,0x80,0x7c,0x7e,0x83,0x90,0x7d,0xb8,0x3a,0x80,0x7e, - 0x5e,0x65,0x90,0x7f,0x98,0x1c,0x80,0x2,0x1,0x2,0x1,0x2,0x5,0x3,0x4,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x0,0x0,0x63,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x1c,0x80,0x0,0x0,0x0,0x9e, + 0xa6,0x2c,0x80,0x9f,0xba,0xf9,0x70,0xa0,0x86,0xe,0x80,0xa1,0x9a,0xdb,0x70,0xca, + 0x57,0x22,0x80,0xca,0xd8,0x47,0x70,0xcb,0x88,0xfe,0x80,0xd2,0x23,0xf4,0x70,0xd2, + 0x61,0x9,0xf0,0xd3,0x75,0xf3,0x0,0xd4,0x40,0xeb,0xf0,0xd5,0x55,0xd5,0x0,0xd6, + 0x20,0xcd,0xf0,0xd7,0x35,0xb7,0x0,0xd8,0x0,0xaf,0xf0,0xd9,0x15,0x99,0x0,0xd9, + 0xe0,0x91,0xf0,0xda,0xfe,0xb5,0x80,0xdb,0xc0,0x73,0xf0,0xdc,0xde,0x97,0x80,0xdd, + 0xa9,0x90,0x70,0xde,0xbe,0x79,0x80,0xdf,0x89,0x72,0x70,0xe0,0x9e,0x5b,0x80,0xe1, + 0x69,0x54,0x70,0xe2,0x7e,0x3d,0x80,0xe3,0x49,0x36,0x70,0xe4,0x5e,0x1f,0x80,0xe8, + 0xf2,0x16,0xf0,0xea,0x7,0x0,0x0,0xfe,0xb8,0x1c,0xf0,0xff,0xa7,0xff,0xe0,0x0, + 0x97,0xfe,0xf0,0x1,0x87,0xe1,0xe0,0x44,0x2f,0x76,0x70,0x45,0x44,0x43,0x60,0x45, + 0xf3,0xa8,0xf0,0x47,0x2d,0x5f,0xe0,0x47,0xd3,0x8a,0xf0,0x49,0xd,0x41,0xe0,0x49, + 0xb3,0x6c,0xf0,0x4a,0xed,0x23,0xe0,0x4b,0x9c,0x89,0x70,0x4c,0xd6,0x40,0x60,0x4d, + 0x7c,0x6b,0x70,0x4e,0xb6,0x22,0x60,0x4f,0x5c,0x4d,0x70,0x50,0x96,0x4,0x60,0x51, + 0x3c,0x2f,0x70,0x52,0x75,0xe6,0x60,0x53,0x1c,0x11,0x70,0x54,0x55,0xc8,0x60,0x54, + 0xfb,0xf3,0x70,0x56,0x35,0xaa,0x60,0x56,0xe5,0xf,0xf0,0x58,0x1e,0xc6,0xe0,0x58, + 0xc4,0xf1,0xf0,0x59,0xfe,0xa8,0xe0,0x5a,0xa4,0xd3,0xf0,0x5b,0xde,0x8a,0xe0,0x5c, + 0x84,0xb5,0xf0,0x5d,0xbe,0x6c,0xe0,0x5e,0x64,0x97,0xf0,0x5f,0x9e,0x4e,0xe0,0x60, + 0x4d,0xb4,0x70,0x61,0x87,0x6b,0x60,0x62,0x2d,0x96,0x70,0x63,0x67,0x4d,0x60,0x64, + 0xd,0x78,0x70,0x65,0x47,0x2f,0x60,0x65,0xed,0x5a,0x70,0x67,0x27,0x11,0x60,0x67, + 0xcd,0x3c,0x70,0x69,0x6,0xf3,0x60,0x69,0xad,0x1e,0x70,0x6a,0xe6,0xd5,0x60,0x6b, + 0x96,0x3a,0xf0,0x6c,0xcf,0xf1,0xe0,0x6d,0x76,0x1c,0xf0,0x6e,0xaf,0xd3,0xe0,0x6f, + 0x55,0xfe,0xf0,0x70,0x8f,0xb5,0xe0,0x71,0x35,0xe0,0xf0,0x72,0x6f,0x97,0xe0,0x73, + 0x15,0xc2,0xf0,0x74,0x4f,0x79,0xe0,0x74,0xfe,0xdf,0x70,0x76,0x38,0x96,0x60,0x76, + 0xde,0xc1,0x70,0x78,0x18,0x78,0x60,0x78,0xbe,0xa3,0x70,0x79,0xf8,0x5a,0x60,0x7a, + 0x9e,0x85,0x70,0x7b,0xd8,0x3c,0x60,0x7c,0x7e,0x67,0x70,0x7d,0xb8,0x1e,0x60,0x7e, + 0x5e,0x49,0x70,0x7f,0x98,0x0,0x60,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x5,0x2,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0xff,0xff,0xaf,0x3a,0x0,0x0, + 0xff,0xff,0xb9,0xb0,0x1,0x4,0xff,0xff,0xab,0xa0,0x0,0x8,0xff,0xff,0xb9,0xb0, + 0x1,0xc,0xff,0xff,0xb9,0xb0,0x1,0x10,0xff,0xff,0xb9,0xb0,0x0,0x14,0xff,0xff, + 0xc7,0xc0,0x1,0x18,0x4c,0x4d,0x54,0x0,0x43,0x44,0x54,0x0,0x43,0x53,0x54,0x0, + 0x43,0x57,0x54,0x0,0x43,0x50,0x54,0x0,0x45,0x53,0x54,0x0,0x45,0x44,0x54,0x0, + 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x54,0x5a, + 0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x64,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x1c,0xf8,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xff,0xff,0xff,0xff,0x5e,0x3,0xfe,0xa0,0xff,0xff,0xff,0xff,0x9e,0xa6, + 0x2c,0x80,0xff,0xff,0xff,0xff,0x9f,0xba,0xf9,0x70,0xff,0xff,0xff,0xff,0xa0,0x86, + 0xe,0x80,0xff,0xff,0xff,0xff,0xa1,0x9a,0xdb,0x70,0xff,0xff,0xff,0xff,0xca,0x57, + 0x22,0x80,0xff,0xff,0xff,0xff,0xca,0xd8,0x47,0x70,0xff,0xff,0xff,0xff,0xcb,0x88, + 0xfe,0x80,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x61, + 0x9,0xf0,0xff,0xff,0xff,0xff,0xd3,0x75,0xf3,0x0,0xff,0xff,0xff,0xff,0xd4,0x40, + 0xeb,0xf0,0xff,0xff,0xff,0xff,0xd5,0x55,0xd5,0x0,0xff,0xff,0xff,0xff,0xd6,0x20, + 0xcd,0xf0,0xff,0xff,0xff,0xff,0xd7,0x35,0xb7,0x0,0xff,0xff,0xff,0xff,0xd8,0x0, + 0xaf,0xf0,0xff,0xff,0xff,0xff,0xd9,0x15,0x99,0x0,0xff,0xff,0xff,0xff,0xd9,0xe0, + 0x91,0xf0,0xff,0xff,0xff,0xff,0xda,0xfe,0xb5,0x80,0xff,0xff,0xff,0xff,0xdb,0xc0, + 0x73,0xf0,0xff,0xff,0xff,0xff,0xdc,0xde,0x97,0x80,0xff,0xff,0xff,0xff,0xdd,0xa9, + 0x90,0x70,0xff,0xff,0xff,0xff,0xde,0xbe,0x79,0x80,0xff,0xff,0xff,0xff,0xdf,0x89, + 0x72,0x70,0xff,0xff,0xff,0xff,0xe0,0x9e,0x5b,0x80,0xff,0xff,0xff,0xff,0xe1,0x69, + 0x54,0x70,0xff,0xff,0xff,0xff,0xe2,0x7e,0x3d,0x80,0xff,0xff,0xff,0xff,0xe3,0x49, + 0x36,0x70,0xff,0xff,0xff,0xff,0xe4,0x5e,0x1f,0x80,0xff,0xff,0xff,0xff,0xe8,0xf2, + 0x16,0xf0,0xff,0xff,0xff,0xff,0xea,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0xfe,0xb8, + 0x1c,0xf0,0xff,0xff,0xff,0xff,0xff,0xa7,0xff,0xe0,0x0,0x0,0x0,0x0,0x0,0x97, + 0xfe,0xf0,0x0,0x0,0x0,0x0,0x1,0x87,0xe1,0xe0,0x0,0x0,0x0,0x0,0x44,0x2f, + 0x76,0x70,0x0,0x0,0x0,0x0,0x45,0x44,0x43,0x60,0x0,0x0,0x0,0x0,0x45,0xf3, + 0xa8,0xf0,0x0,0x0,0x0,0x0,0x47,0x2d,0x5f,0xe0,0x0,0x0,0x0,0x0,0x47,0xd3, + 0x8a,0xf0,0x0,0x0,0x0,0x0,0x49,0xd,0x41,0xe0,0x0,0x0,0x0,0x0,0x49,0xb3, + 0x6c,0xf0,0x0,0x0,0x0,0x0,0x4a,0xed,0x23,0xe0,0x0,0x0,0x0,0x0,0x4b,0x9c, + 0x89,0x70,0x0,0x0,0x0,0x0,0x4c,0xd6,0x40,0x60,0x0,0x0,0x0,0x0,0x4d,0x7c, + 0x6b,0x70,0x0,0x0,0x0,0x0,0x4e,0xb6,0x22,0x60,0x0,0x0,0x0,0x0,0x4f,0x5c, + 0x4d,0x70,0x0,0x0,0x0,0x0,0x50,0x96,0x4,0x60,0x0,0x0,0x0,0x0,0x51,0x3c, + 0x2f,0x70,0x0,0x0,0x0,0x0,0x52,0x75,0xe6,0x60,0x0,0x0,0x0,0x0,0x53,0x1c, + 0x11,0x70,0x0,0x0,0x0,0x0,0x54,0x55,0xc8,0x60,0x0,0x0,0x0,0x0,0x54,0xfb, + 0xf3,0x70,0x0,0x0,0x0,0x0,0x56,0x35,0xaa,0x60,0x0,0x0,0x0,0x0,0x56,0xe5, + 0xf,0xf0,0x0,0x0,0x0,0x0,0x58,0x1e,0xc6,0xe0,0x0,0x0,0x0,0x0,0x58,0xc4, + 0xf1,0xf0,0x0,0x0,0x0,0x0,0x59,0xfe,0xa8,0xe0,0x0,0x0,0x0,0x0,0x5a,0xa4, + 0xd3,0xf0,0x0,0x0,0x0,0x0,0x5b,0xde,0x8a,0xe0,0x0,0x0,0x0,0x0,0x5c,0x84, + 0xb5,0xf0,0x0,0x0,0x0,0x0,0x5d,0xbe,0x6c,0xe0,0x0,0x0,0x0,0x0,0x5e,0x64, + 0x97,0xf0,0x0,0x0,0x0,0x0,0x5f,0x9e,0x4e,0xe0,0x0,0x0,0x0,0x0,0x60,0x4d, + 0xb4,0x70,0x0,0x0,0x0,0x0,0x61,0x87,0x6b,0x60,0x0,0x0,0x0,0x0,0x62,0x2d, + 0x96,0x70,0x0,0x0,0x0,0x0,0x63,0x67,0x4d,0x60,0x0,0x0,0x0,0x0,0x64,0xd, + 0x78,0x70,0x0,0x0,0x0,0x0,0x65,0x47,0x2f,0x60,0x0,0x0,0x0,0x0,0x65,0xed, + 0x5a,0x70,0x0,0x0,0x0,0x0,0x67,0x27,0x11,0x60,0x0,0x0,0x0,0x0,0x67,0xcd, + 0x3c,0x70,0x0,0x0,0x0,0x0,0x69,0x6,0xf3,0x60,0x0,0x0,0x0,0x0,0x69,0xad, + 0x1e,0x70,0x0,0x0,0x0,0x0,0x6a,0xe6,0xd5,0x60,0x0,0x0,0x0,0x0,0x6b,0x96, + 0x3a,0xf0,0x0,0x0,0x0,0x0,0x6c,0xcf,0xf1,0xe0,0x0,0x0,0x0,0x0,0x6d,0x76, + 0x1c,0xf0,0x0,0x0,0x0,0x0,0x6e,0xaf,0xd3,0xe0,0x0,0x0,0x0,0x0,0x6f,0x55, + 0xfe,0xf0,0x0,0x0,0x0,0x0,0x70,0x8f,0xb5,0xe0,0x0,0x0,0x0,0x0,0x71,0x35, + 0xe0,0xf0,0x0,0x0,0x0,0x0,0x72,0x6f,0x97,0xe0,0x0,0x0,0x0,0x0,0x73,0x15, + 0xc2,0xf0,0x0,0x0,0x0,0x0,0x74,0x4f,0x79,0xe0,0x0,0x0,0x0,0x0,0x74,0xfe, + 0xdf,0x70,0x0,0x0,0x0,0x0,0x76,0x38,0x96,0x60,0x0,0x0,0x0,0x0,0x76,0xde, + 0xc1,0x70,0x0,0x0,0x0,0x0,0x78,0x18,0x78,0x60,0x0,0x0,0x0,0x0,0x78,0xbe, + 0xa3,0x70,0x0,0x0,0x0,0x0,0x79,0xf8,0x5a,0x60,0x0,0x0,0x0,0x0,0x7a,0x9e, + 0x85,0x70,0x0,0x0,0x0,0x0,0x7b,0xd8,0x3c,0x60,0x0,0x0,0x0,0x0,0x7c,0x7e, + 0x67,0x70,0x0,0x0,0x0,0x0,0x7d,0xb8,0x1e,0x60,0x0,0x0,0x0,0x0,0x7e,0x5e, + 0x49,0x70,0x0,0x0,0x0,0x0,0x7f,0x98,0x0,0x60,0x0,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x3,0x4,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x5,0x2,0x5,0x6,0x5,0x6,0x5,0x6,0x5, 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0xff,0xff, - 0x93,0xf,0x0,0x0,0xff,0xff,0x9d,0x90,0x1,0x4,0xff,0xff,0x8f,0x80,0x0,0x8, - 0xff,0xff,0xab,0xa0,0x1,0xc,0xff,0xff,0xab,0xa0,0x1,0x10,0xff,0xff,0x9d,0x90, - 0x0,0x14,0xff,0xff,0xab,0xa0,0x1,0x18,0x4c,0x4d,0x54,0x0,0x50,0x44,0x54,0x0, - 0x50,0x53,0x54,0x0,0x4d,0x57,0x54,0x0,0x4d,0x50,0x54,0x0,0x4d,0x53,0x54,0x0, - 0x4d,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1, - 0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x98,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x1c,0xf8,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x5e,0x4,0x1a,0xc0,0xff,0xff, - 0xff,0xff,0x9e,0xa6,0x48,0xa0,0xff,0xff,0xff,0xff,0x9f,0xbb,0x15,0x90,0xff,0xff, - 0xff,0xff,0xa0,0x86,0x2a,0xa0,0xff,0xff,0xff,0xff,0xa1,0x9a,0xf7,0x90,0xff,0xff, - 0xff,0xff,0xa8,0x46,0x4c,0x20,0xff,0xff,0xff,0xff,0xcb,0x89,0xc,0x90,0xff,0xff, - 0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x61,0x18,0x0,0xff,0xff, - 0xff,0xff,0xfa,0xf8,0x75,0x10,0xff,0xff,0xff,0xff,0xfb,0xe8,0x58,0x0,0xff,0xff, - 0xff,0xff,0xfc,0xd8,0x57,0x10,0xff,0xff,0xff,0xff,0xfd,0xc8,0x3a,0x0,0xff,0xff, - 0xff,0xff,0xfe,0xb8,0x39,0x10,0xff,0xff,0xff,0xff,0xff,0xa8,0x1c,0x0,0x0,0x0, - 0x0,0x0,0x0,0x98,0x1b,0x10,0x0,0x0,0x0,0x0,0x1,0x87,0xfe,0x0,0x0,0x0, - 0x0,0x0,0x2,0x77,0xfd,0x10,0x0,0x0,0x0,0x0,0x3,0x71,0x1a,0x80,0x0,0x0, - 0x0,0x0,0x4,0x61,0x19,0x90,0x0,0x0,0x0,0x0,0x5,0x50,0xfc,0x80,0x0,0x0, - 0x0,0x0,0x6,0x40,0xfb,0x90,0x0,0x0,0x0,0x0,0x7,0x30,0xde,0x80,0x0,0x0, - 0x0,0x0,0x7,0xb2,0x1f,0x90,0x0,0x0,0x0,0x0,0x9,0x10,0xc0,0x80,0x0,0x0, - 0x0,0x0,0x9,0xad,0xb1,0x10,0x0,0x0,0x0,0x0,0xa,0xf0,0xa2,0x80,0x0,0x0, - 0x0,0x0,0xb,0xe0,0xa1,0x90,0x0,0x0,0x0,0x0,0xc,0xd9,0xbf,0x0,0x0,0x0, - 0x0,0x0,0xd,0xc0,0x83,0x90,0x0,0x0,0x0,0x0,0xe,0xb9,0xa1,0x0,0x0,0x0, - 0x0,0x0,0xf,0xa9,0xa0,0x10,0x0,0x0,0x0,0x0,0x10,0x99,0x83,0x0,0x0,0x0, - 0x0,0x0,0x11,0x89,0x82,0x10,0x0,0x0,0x0,0x0,0x12,0x79,0x65,0x0,0x0,0x0, - 0x0,0x0,0x13,0x69,0x64,0x10,0x0,0x0,0x0,0x0,0x14,0x59,0x47,0x0,0x0,0x0, - 0x0,0x0,0x15,0x49,0x46,0x10,0x0,0x0,0x0,0x0,0x16,0x39,0x29,0x0,0x0,0x0, - 0x0,0x0,0x17,0x29,0x28,0x10,0x0,0x0,0x0,0x0,0x18,0x22,0x45,0x80,0x0,0x0, - 0x0,0x0,0x19,0x9,0xa,0x10,0x0,0x0,0x0,0x0,0x1a,0x2,0x27,0x80,0x0,0x0, - 0x0,0x0,0x1a,0xf2,0x26,0x90,0x0,0x0,0x0,0x0,0x1b,0xe2,0x9,0x80,0x0,0x0, - 0x0,0x0,0x1c,0xd2,0x8,0x90,0x0,0x0,0x0,0x0,0x1d,0xc1,0xeb,0x80,0x0,0x0, - 0x0,0x0,0x1e,0xb1,0xea,0x90,0x0,0x0,0x0,0x0,0x1f,0xa1,0xcd,0x80,0x0,0x0, - 0x0,0x0,0x20,0x76,0x1d,0x10,0x0,0x0,0x0,0x0,0x21,0x81,0xaf,0x80,0x0,0x0, - 0x0,0x0,0x22,0x55,0xff,0x10,0x0,0x0,0x0,0x0,0x23,0x6a,0xcc,0x0,0x0,0x0, - 0x0,0x0,0x24,0x35,0xe1,0x10,0x0,0x0,0x0,0x0,0x25,0x4a,0xae,0x0,0x0,0x0, - 0x0,0x0,0x26,0x15,0xc3,0x10,0x0,0x0,0x0,0x0,0x27,0x2a,0x90,0x0,0x0,0x0, - 0x0,0x0,0x27,0xfe,0xdf,0x90,0x0,0x0,0x0,0x0,0x29,0xa,0x72,0x0,0x0,0x0, - 0x0,0x0,0x29,0xde,0xc1,0x90,0x0,0x0,0x0,0x0,0x2a,0xea,0x54,0x0,0x0,0x0, - 0x0,0x0,0x2b,0xbe,0xa3,0x90,0x0,0x0,0x0,0x0,0x2c,0xd3,0x70,0x80,0x0,0x0, - 0x0,0x0,0x2d,0x9e,0x85,0x90,0x0,0x0,0x0,0x0,0x2e,0xb3,0x52,0x80,0x0,0x0, - 0x0,0x0,0x2f,0x7e,0x67,0x90,0x0,0x0,0x0,0x0,0x30,0x93,0x34,0x80,0x0,0x0, - 0x0,0x0,0x31,0x67,0x84,0x10,0x0,0x0,0x0,0x0,0x32,0x73,0x16,0x80,0x0,0x0, - 0x0,0x0,0x33,0x47,0x66,0x10,0x0,0x0,0x0,0x0,0x34,0x52,0xf8,0x80,0x0,0x0, - 0x0,0x0,0x35,0x27,0x48,0x10,0x0,0x0,0x0,0x0,0x36,0x32,0xda,0x80,0x0,0x0, - 0x0,0x0,0x37,0x7,0x2a,0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0xf7,0x0,0x0,0x0, - 0x0,0x0,0x38,0xe7,0xc,0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0xd9,0x0,0x0,0x0, - 0x0,0x0,0x3a,0xc6,0xee,0x10,0x0,0x0,0x0,0x0,0x3b,0xdb,0xbb,0x0,0x0,0x0, - 0x0,0x0,0x3c,0xb0,0xa,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x9d,0x0,0x0,0x0, - 0x0,0x0,0x3e,0x8f,0xec,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x7f,0x0,0x0,0x0, - 0x0,0x0,0x40,0x6f,0xce,0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x9b,0x80,0x0,0x0, - 0x0,0x0,0x42,0x4f,0xb0,0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x7d,0x80,0x0,0x0, - 0x0,0x0,0x44,0x2f,0x92,0x90,0x0,0x0,0x0,0x0,0x45,0x44,0x5f,0x80,0x0,0x0, - 0x0,0x0,0x45,0xf3,0xc5,0x10,0x0,0x0,0x0,0x0,0x47,0x2d,0x7c,0x0,0x0,0x0, - 0x0,0x0,0x47,0xd3,0xa7,0x10,0x0,0x0,0x0,0x0,0x49,0xd,0x5e,0x0,0x0,0x0, - 0x0,0x0,0x49,0xb3,0x89,0x10,0x0,0x0,0x0,0x0,0x4a,0xed,0x40,0x0,0x0,0x0, - 0x0,0x0,0x4b,0x9c,0xa5,0x90,0x0,0x0,0x0,0x0,0x4c,0xd6,0x5c,0x80,0x0,0x0, - 0x0,0x0,0x4d,0x7c,0x87,0x90,0x0,0x0,0x0,0x0,0x4e,0xb6,0x3e,0x80,0x0,0x0, - 0x0,0x0,0x4f,0x5c,0x69,0x90,0x0,0x0,0x0,0x0,0x50,0x96,0x20,0x80,0x0,0x0, - 0x0,0x0,0x51,0x3c,0x4b,0x90,0x0,0x0,0x0,0x0,0x52,0x76,0x2,0x80,0x0,0x0, - 0x0,0x0,0x53,0x1c,0x2d,0x90,0x0,0x0,0x0,0x0,0x54,0x55,0xe4,0x80,0x0,0x0, - 0x0,0x0,0x54,0xfc,0xf,0x90,0x0,0x0,0x0,0x0,0x56,0x35,0xc6,0x80,0x0,0x0, - 0x0,0x0,0x56,0xe5,0x2c,0x10,0x0,0x0,0x0,0x0,0x58,0x1e,0xe3,0x0,0x0,0x0, - 0x0,0x0,0x58,0xc5,0xe,0x10,0x0,0x0,0x0,0x0,0x59,0xfe,0xc5,0x0,0x0,0x0, - 0x0,0x0,0x5a,0xa4,0xf0,0x10,0x0,0x0,0x0,0x0,0x5b,0xde,0xa7,0x0,0x0,0x0, - 0x0,0x0,0x5c,0x84,0xd2,0x10,0x0,0x0,0x0,0x0,0x5d,0xbe,0x89,0x0,0x0,0x0, - 0x0,0x0,0x5e,0x64,0xb4,0x10,0x0,0x0,0x0,0x0,0x5f,0x9e,0x6b,0x0,0x0,0x0, - 0x0,0x0,0x60,0x4d,0xd0,0x90,0x0,0x0,0x0,0x0,0x61,0x87,0x87,0x80,0x0,0x0, - 0x0,0x0,0x62,0x2d,0xb2,0x90,0x0,0x0,0x0,0x0,0x63,0x67,0x69,0x80,0x0,0x0, - 0x0,0x0,0x64,0xd,0x94,0x90,0x0,0x0,0x0,0x0,0x65,0x47,0x4b,0x80,0x0,0x0, - 0x0,0x0,0x65,0xed,0x76,0x90,0x0,0x0,0x0,0x0,0x67,0x27,0x2d,0x80,0x0,0x0, - 0x0,0x0,0x67,0xcd,0x58,0x90,0x0,0x0,0x0,0x0,0x69,0x7,0xf,0x80,0x0,0x0, - 0x0,0x0,0x69,0xad,0x3a,0x90,0x0,0x0,0x0,0x0,0x6a,0xe6,0xf1,0x80,0x0,0x0, - 0x0,0x0,0x6b,0x96,0x57,0x10,0x0,0x0,0x0,0x0,0x6c,0xd0,0xe,0x0,0x0,0x0, - 0x0,0x0,0x6d,0x76,0x39,0x10,0x0,0x0,0x0,0x0,0x6e,0xaf,0xf0,0x0,0x0,0x0, - 0x0,0x0,0x6f,0x56,0x1b,0x10,0x0,0x0,0x0,0x0,0x70,0x8f,0xd2,0x0,0x0,0x0, - 0x0,0x0,0x71,0x35,0xfd,0x10,0x0,0x0,0x0,0x0,0x72,0x6f,0xb4,0x0,0x0,0x0, - 0x0,0x0,0x73,0x15,0xdf,0x10,0x0,0x0,0x0,0x0,0x74,0x4f,0x96,0x0,0x0,0x0, - 0x0,0x0,0x74,0xfe,0xfb,0x90,0x0,0x0,0x0,0x0,0x76,0x38,0xb2,0x80,0x0,0x0, - 0x0,0x0,0x76,0xde,0xdd,0x90,0x0,0x0,0x0,0x0,0x78,0x18,0x94,0x80,0x0,0x0, - 0x0,0x0,0x78,0xbe,0xbf,0x90,0x0,0x0,0x0,0x0,0x79,0xf8,0x76,0x80,0x0,0x0, - 0x0,0x0,0x7a,0x9e,0xa1,0x90,0x0,0x0,0x0,0x0,0x7b,0xd8,0x58,0x80,0x0,0x0, - 0x0,0x0,0x7c,0x7e,0x83,0x90,0x0,0x0,0x0,0x0,0x7d,0xb8,0x3a,0x80,0x0,0x0, - 0x0,0x0,0x7e,0x5e,0x65,0x90,0x0,0x0,0x0,0x0,0x7f,0x98,0x1c,0x80,0x0,0x2, - 0x1,0x2,0x1,0x2,0x5,0x3,0x4,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0xff,0xff,0x93,0xf,0x0,0x0,0xff,0xff,0x9d,0x90, - 0x1,0x4,0xff,0xff,0x8f,0x80,0x0,0x8,0xff,0xff,0xab,0xa0,0x1,0xc,0xff,0xff, - 0xab,0xa0,0x1,0x10,0xff,0xff,0x9d,0x90,0x0,0x14,0xff,0xff,0xab,0xa0,0x1,0x18, - 0x4c,0x4d,0x54,0x0,0x50,0x44,0x54,0x0,0x50,0x53,0x54,0x0,0x4d,0x57,0x54,0x0, - 0x4d,0x50,0x54,0x0,0x4d,0x53,0x54,0x0,0x4d,0x44,0x54,0x0,0x0,0x0,0x0,0x0, - 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0xa,0x4d,0x53,0x54,0x37,0x4d, - 0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e, - 0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Rankin_Inlet - 0x0,0x0,0x7,0x8a, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x78,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x80,0x0,0x0,0x0,0xe7, - 0x8c,0x6e,0x0,0xf7,0x2f,0x4c,0x60,0xf8,0x28,0x77,0xe0,0x13,0x69,0x56,0x0,0x14, - 0x59,0x38,0xf0,0x15,0x49,0x38,0x0,0x16,0x39,0x1a,0xf0,0x17,0x29,0x1a,0x0,0x18, - 0x22,0x37,0x70,0x19,0x8,0xfc,0x0,0x1a,0x2,0x19,0x70,0x1a,0xf2,0x18,0x80,0x1b, - 0xe1,0xfb,0x70,0x1c,0xd1,0xfa,0x80,0x1d,0xc1,0xdd,0x70,0x1e,0xb1,0xdc,0x80,0x1f, - 0xa1,0xbf,0x70,0x20,0x76,0xf,0x0,0x21,0x81,0xa1,0x70,0x22,0x55,0xf1,0x0,0x23, - 0x6a,0xbd,0xf0,0x24,0x35,0xd3,0x0,0x25,0x4a,0x9f,0xf0,0x26,0x15,0xb5,0x0,0x27, - 0x2a,0x81,0xf0,0x27,0xfe,0xd1,0x80,0x29,0xa,0x63,0xf0,0x29,0xde,0xb3,0x80,0x2a, - 0xea,0x45,0xf0,0x2b,0xbe,0x95,0x80,0x2c,0xd3,0x62,0x70,0x2d,0x9e,0x77,0x80,0x2e, - 0xb3,0x44,0x70,0x2f,0x7e,0x59,0x80,0x30,0x93,0x26,0x70,0x31,0x67,0x76,0x0,0x32, - 0x73,0x8,0x70,0x33,0x47,0x58,0x0,0x34,0x52,0xea,0x70,0x35,0x27,0x3a,0x0,0x36, - 0x32,0xcc,0x70,0x37,0x7,0x1c,0x0,0x38,0x1b,0xe8,0xf0,0x38,0xe6,0xfe,0x0,0x39, - 0xfb,0xca,0xf0,0x3a,0xc6,0xe0,0x0,0x3b,0xdb,0xac,0xf0,0x3c,0xaf,0xfc,0x80,0x3d, - 0xbb,0x8e,0xf0,0x3e,0x8f,0xde,0x80,0x3f,0x9b,0x70,0xf0,0x40,0x6f,0xc0,0x80,0x41, - 0x84,0x8d,0x70,0x42,0x4f,0xa2,0x80,0x43,0x64,0x6f,0x70,0x44,0x2f,0x84,0x80,0x45, - 0x44,0x51,0x70,0x45,0xf3,0xb7,0x0,0x47,0x2d,0x6d,0xf0,0x47,0xd3,0x99,0x0,0x49, - 0xd,0x4f,0xf0,0x49,0xb3,0x7b,0x0,0x4a,0xed,0x31,0xf0,0x4b,0x9c,0x97,0x80,0x4c, - 0xd6,0x4e,0x70,0x4d,0x7c,0x79,0x80,0x4e,0xb6,0x30,0x70,0x4f,0x5c,0x5b,0x80,0x50, - 0x96,0x12,0x70,0x51,0x3c,0x3d,0x80,0x52,0x75,0xf4,0x70,0x53,0x1c,0x1f,0x80,0x54, - 0x55,0xd6,0x70,0x54,0xfc,0x1,0x80,0x56,0x35,0xb8,0x70,0x56,0xe5,0x1e,0x0,0x58, - 0x1e,0xd4,0xf0,0x58,0xc5,0x0,0x0,0x59,0xfe,0xb6,0xf0,0x5a,0xa4,0xe2,0x0,0x5b, - 0xde,0x98,0xf0,0x5c,0x84,0xc4,0x0,0x5d,0xbe,0x7a,0xf0,0x5e,0x64,0xa6,0x0,0x5f, - 0x9e,0x5c,0xf0,0x60,0x4d,0xc2,0x80,0x61,0x87,0x79,0x70,0x62,0x2d,0xa4,0x80,0x63, - 0x67,0x5b,0x70,0x64,0xd,0x86,0x80,0x65,0x47,0x3d,0x70,0x65,0xed,0x68,0x80,0x67, - 0x27,0x1f,0x70,0x67,0xcd,0x4a,0x80,0x69,0x7,0x1,0x70,0x69,0xad,0x2c,0x80,0x6a, - 0xe6,0xe3,0x70,0x6b,0x96,0x49,0x0,0x6c,0xcf,0xff,0xf0,0x6d,0x76,0x2b,0x0,0x6e, - 0xaf,0xe1,0xf0,0x6f,0x56,0xd,0x0,0x70,0x8f,0xc3,0xf0,0x71,0x35,0xef,0x0,0x72, - 0x6f,0xa5,0xf0,0x73,0x15,0xd1,0x0,0x74,0x4f,0x87,0xf0,0x74,0xfe,0xed,0x80,0x76, - 0x38,0xa4,0x70,0x76,0xde,0xcf,0x80,0x78,0x18,0x86,0x70,0x78,0xbe,0xb1,0x80,0x79, - 0xf8,0x68,0x70,0x7a,0x9e,0x93,0x80,0x7b,0xd8,0x4a,0x70,0x7c,0x7e,0x75,0x80,0x7d, - 0xb8,0x2c,0x70,0x7e,0x5e,0x57,0x80,0x7f,0x98,0xe,0x70,0x0,0x2,0x1,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x4,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xc7,0xc0,0x1,0x4,0xff, - 0xff,0xab,0xa0,0x0,0x9,0xff,0xff,0xb9,0xb0,0x1,0xd,0xff,0xff,0xb9,0xb0,0x0, - 0x11,0xff,0xff,0xab,0xa0,0x0,0x9,0x2d,0x30,0x30,0x0,0x43,0x44,0x44,0x54,0x0, - 0x43,0x53,0x54,0x0,0x43,0x44,0x54,0x0,0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6, - 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x78,0x0,0x0,0x0,0x6, - 0x0,0x0,0x0,0x15,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff, - 0xe7,0x8c,0x6e,0x0,0xff,0xff,0xff,0xff,0xf7,0x2f,0x4c,0x60,0xff,0xff,0xff,0xff, - 0xf8,0x28,0x77,0xe0,0x0,0x0,0x0,0x0,0x13,0x69,0x56,0x0,0x0,0x0,0x0,0x0, - 0x14,0x59,0x38,0xf0,0x0,0x0,0x0,0x0,0x15,0x49,0x38,0x0,0x0,0x0,0x0,0x0, - 0x16,0x39,0x1a,0xf0,0x0,0x0,0x0,0x0,0x17,0x29,0x1a,0x0,0x0,0x0,0x0,0x0, - 0x18,0x22,0x37,0x70,0x0,0x0,0x0,0x0,0x19,0x8,0xfc,0x0,0x0,0x0,0x0,0x0, - 0x1a,0x2,0x19,0x70,0x0,0x0,0x0,0x0,0x1a,0xf2,0x18,0x80,0x0,0x0,0x0,0x0, - 0x1b,0xe1,0xfb,0x70,0x0,0x0,0x0,0x0,0x1c,0xd1,0xfa,0x80,0x0,0x0,0x0,0x0, - 0x1d,0xc1,0xdd,0x70,0x0,0x0,0x0,0x0,0x1e,0xb1,0xdc,0x80,0x0,0x0,0x0,0x0, - 0x1f,0xa1,0xbf,0x70,0x0,0x0,0x0,0x0,0x20,0x76,0xf,0x0,0x0,0x0,0x0,0x0, - 0x21,0x81,0xa1,0x70,0x0,0x0,0x0,0x0,0x22,0x55,0xf1,0x0,0x0,0x0,0x0,0x0, - 0x23,0x6a,0xbd,0xf0,0x0,0x0,0x0,0x0,0x24,0x35,0xd3,0x0,0x0,0x0,0x0,0x0, - 0x25,0x4a,0x9f,0xf0,0x0,0x0,0x0,0x0,0x26,0x15,0xb5,0x0,0x0,0x0,0x0,0x0, - 0x27,0x2a,0x81,0xf0,0x0,0x0,0x0,0x0,0x27,0xfe,0xd1,0x80,0x0,0x0,0x0,0x0, - 0x29,0xa,0x63,0xf0,0x0,0x0,0x0,0x0,0x29,0xde,0xb3,0x80,0x0,0x0,0x0,0x0, - 0x2a,0xea,0x45,0xf0,0x0,0x0,0x0,0x0,0x2b,0xbe,0x95,0x80,0x0,0x0,0x0,0x0, - 0x2c,0xd3,0x62,0x70,0x0,0x0,0x0,0x0,0x2d,0x9e,0x77,0x80,0x0,0x0,0x0,0x0, - 0x2e,0xb3,0x44,0x70,0x0,0x0,0x0,0x0,0x2f,0x7e,0x59,0x80,0x0,0x0,0x0,0x0, - 0x30,0x93,0x26,0x70,0x0,0x0,0x0,0x0,0x31,0x67,0x76,0x0,0x0,0x0,0x0,0x0, - 0x32,0x73,0x8,0x70,0x0,0x0,0x0,0x0,0x33,0x47,0x58,0x0,0x0,0x0,0x0,0x0, - 0x34,0x52,0xea,0x70,0x0,0x0,0x0,0x0,0x35,0x27,0x3a,0x0,0x0,0x0,0x0,0x0, - 0x36,0x32,0xcc,0x70,0x0,0x0,0x0,0x0,0x37,0x7,0x1c,0x0,0x0,0x0,0x0,0x0, - 0x38,0x1b,0xe8,0xf0,0x0,0x0,0x0,0x0,0x38,0xe6,0xfe,0x0,0x0,0x0,0x0,0x0, - 0x39,0xfb,0xca,0xf0,0x0,0x0,0x0,0x0,0x3a,0xc6,0xe0,0x0,0x0,0x0,0x0,0x0, - 0x3b,0xdb,0xac,0xf0,0x0,0x0,0x0,0x0,0x3c,0xaf,0xfc,0x80,0x0,0x0,0x0,0x0, - 0x3d,0xbb,0x8e,0xf0,0x0,0x0,0x0,0x0,0x3e,0x8f,0xde,0x80,0x0,0x0,0x0,0x0, - 0x3f,0x9b,0x70,0xf0,0x0,0x0,0x0,0x0,0x40,0x6f,0xc0,0x80,0x0,0x0,0x0,0x0, - 0x41,0x84,0x8d,0x70,0x0,0x0,0x0,0x0,0x42,0x4f,0xa2,0x80,0x0,0x0,0x0,0x0, - 0x43,0x64,0x6f,0x70,0x0,0x0,0x0,0x0,0x44,0x2f,0x84,0x80,0x0,0x0,0x0,0x0, - 0x45,0x44,0x51,0x70,0x0,0x0,0x0,0x0,0x45,0xf3,0xb7,0x0,0x0,0x0,0x0,0x0, - 0x47,0x2d,0x6d,0xf0,0x0,0x0,0x0,0x0,0x47,0xd3,0x99,0x0,0x0,0x0,0x0,0x0, - 0x49,0xd,0x4f,0xf0,0x0,0x0,0x0,0x0,0x49,0xb3,0x7b,0x0,0x0,0x0,0x0,0x0, - 0x4a,0xed,0x31,0xf0,0x0,0x0,0x0,0x0,0x4b,0x9c,0x97,0x80,0x0,0x0,0x0,0x0, - 0x4c,0xd6,0x4e,0x70,0x0,0x0,0x0,0x0,0x4d,0x7c,0x79,0x80,0x0,0x0,0x0,0x0, - 0x4e,0xb6,0x30,0x70,0x0,0x0,0x0,0x0,0x4f,0x5c,0x5b,0x80,0x0,0x0,0x0,0x0, - 0x50,0x96,0x12,0x70,0x0,0x0,0x0,0x0,0x51,0x3c,0x3d,0x80,0x0,0x0,0x0,0x0, - 0x52,0x75,0xf4,0x70,0x0,0x0,0x0,0x0,0x53,0x1c,0x1f,0x80,0x0,0x0,0x0,0x0, - 0x54,0x55,0xd6,0x70,0x0,0x0,0x0,0x0,0x54,0xfc,0x1,0x80,0x0,0x0,0x0,0x0, - 0x56,0x35,0xb8,0x70,0x0,0x0,0x0,0x0,0x56,0xe5,0x1e,0x0,0x0,0x0,0x0,0x0, - 0x58,0x1e,0xd4,0xf0,0x0,0x0,0x0,0x0,0x58,0xc5,0x0,0x0,0x0,0x0,0x0,0x0, - 0x59,0xfe,0xb6,0xf0,0x0,0x0,0x0,0x0,0x5a,0xa4,0xe2,0x0,0x0,0x0,0x0,0x0, - 0x5b,0xde,0x98,0xf0,0x0,0x0,0x0,0x0,0x5c,0x84,0xc4,0x0,0x0,0x0,0x0,0x0, - 0x5d,0xbe,0x7a,0xf0,0x0,0x0,0x0,0x0,0x5e,0x64,0xa6,0x0,0x0,0x0,0x0,0x0, - 0x5f,0x9e,0x5c,0xf0,0x0,0x0,0x0,0x0,0x60,0x4d,0xc2,0x80,0x0,0x0,0x0,0x0, - 0x61,0x87,0x79,0x70,0x0,0x0,0x0,0x0,0x62,0x2d,0xa4,0x80,0x0,0x0,0x0,0x0, - 0x63,0x67,0x5b,0x70,0x0,0x0,0x0,0x0,0x64,0xd,0x86,0x80,0x0,0x0,0x0,0x0, - 0x65,0x47,0x3d,0x70,0x0,0x0,0x0,0x0,0x65,0xed,0x68,0x80,0x0,0x0,0x0,0x0, - 0x67,0x27,0x1f,0x70,0x0,0x0,0x0,0x0,0x67,0xcd,0x4a,0x80,0x0,0x0,0x0,0x0, - 0x69,0x7,0x1,0x70,0x0,0x0,0x0,0x0,0x69,0xad,0x2c,0x80,0x0,0x0,0x0,0x0, - 0x6a,0xe6,0xe3,0x70,0x0,0x0,0x0,0x0,0x6b,0x96,0x49,0x0,0x0,0x0,0x0,0x0, - 0x6c,0xcf,0xff,0xf0,0x0,0x0,0x0,0x0,0x6d,0x76,0x2b,0x0,0x0,0x0,0x0,0x0, - 0x6e,0xaf,0xe1,0xf0,0x0,0x0,0x0,0x0,0x6f,0x56,0xd,0x0,0x0,0x0,0x0,0x0, - 0x70,0x8f,0xc3,0xf0,0x0,0x0,0x0,0x0,0x71,0x35,0xef,0x0,0x0,0x0,0x0,0x0, - 0x72,0x6f,0xa5,0xf0,0x0,0x0,0x0,0x0,0x73,0x15,0xd1,0x0,0x0,0x0,0x0,0x0, - 0x74,0x4f,0x87,0xf0,0x0,0x0,0x0,0x0,0x74,0xfe,0xed,0x80,0x0,0x0,0x0,0x0, - 0x76,0x38,0xa4,0x70,0x0,0x0,0x0,0x0,0x76,0xde,0xcf,0x80,0x0,0x0,0x0,0x0, - 0x78,0x18,0x86,0x70,0x0,0x0,0x0,0x0,0x78,0xbe,0xb1,0x80,0x0,0x0,0x0,0x0, - 0x79,0xf8,0x68,0x70,0x0,0x0,0x0,0x0,0x7a,0x9e,0x93,0x80,0x0,0x0,0x0,0x0, - 0x7b,0xd8,0x4a,0x70,0x0,0x0,0x0,0x0,0x7c,0x7e,0x75,0x80,0x0,0x0,0x0,0x0, - 0x7d,0xb8,0x2c,0x70,0x0,0x0,0x0,0x0,0x7e,0x5e,0x57,0x80,0x0,0x0,0x0,0x0, - 0x7f,0x98,0xe,0x70,0x0,0x2,0x1,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x4,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x0,0x0,0x0,0x0, - 0x0,0x0,0xff,0xff,0xc7,0xc0,0x1,0x4,0xff,0xff,0xab,0xa0,0x0,0x9,0xff,0xff, - 0xb9,0xb0,0x1,0xd,0xff,0xff,0xb9,0xb0,0x0,0x11,0xff,0xff,0xab,0xa0,0x0,0x9, - 0x2d,0x30,0x30,0x0,0x43,0x44,0x44,0x54,0x0,0x43,0x53,0x54,0x0,0x43,0x44,0x54, - 0x0,0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xa,0x43,0x53,0x54,0x36,0x43,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30, - 0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Dominica - 0x0,0x0,0x0,0xaa, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x93, - 0x37,0x33,0xac,0x0,0x1,0xff,0xff,0xc6,0x54,0x0,0x0,0xff,0xff,0xc7,0xc0,0x0, - 0x4,0x4c,0x4d,0x54,0x0,0x41,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, - 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0x93,0x37,0x33,0xac,0x0,0x1,0xff,0xff,0xc6,0x54,0x0, - 0x0,0xff,0xff,0xc7,0xc0,0x0,0x4,0x4c,0x4d,0x54,0x0,0x41,0x53,0x54,0x0,0x0, - 0x0,0x0,0x0,0xa,0x41,0x53,0x54,0x34,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Thule - 0x0,0x0,0x5,0xf8, + 0xaf,0x3a,0x0,0x0,0xff,0xff,0xb9,0xb0,0x1,0x4,0xff,0xff,0xab,0xa0,0x0,0x8, + 0xff,0xff,0xb9,0xb0,0x1,0xc,0xff,0xff,0xb9,0xb0,0x1,0x10,0xff,0xff,0xb9,0xb0, + 0x0,0x14,0xff,0xff,0xc7,0xc0,0x1,0x18,0x4c,0x4d,0x54,0x0,0x43,0x44,0x54,0x0, + 0x43,0x53,0x54,0x0,0x43,0x57,0x54,0x0,0x43,0x50,0x54,0x0,0x45,0x53,0x54,0x0, + 0x45,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1, + 0x0,0x0,0xa,0x45,0x53,0x54,0x35,0x45,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e, + 0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Atka + 0x0,0x0,0x9,0x3d, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x60,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0x9b, - 0x80,0x77,0xfc,0x27,0xf5,0x7a,0xe0,0x28,0xe5,0x5d,0xd0,0x29,0xd5,0x5c,0xe0,0x2a, - 0xc5,0x3f,0xd0,0x2b,0xbe,0x79,0x60,0x2c,0xd3,0x46,0x50,0x2d,0x9e,0x5b,0x60,0x2e, - 0xb3,0x28,0x50,0x2f,0x7e,0x3d,0x60,0x30,0x93,0xa,0x50,0x31,0x67,0x59,0xe0,0x32, - 0x72,0xec,0x50,0x33,0x47,0x3b,0xe0,0x34,0x52,0xce,0x50,0x35,0x27,0x1d,0xe0,0x36, - 0x32,0xb0,0x50,0x37,0x6,0xff,0xe0,0x38,0x1b,0xcc,0xd0,0x38,0xe6,0xe1,0xe0,0x39, - 0xfb,0xae,0xd0,0x3a,0xc6,0xc3,0xe0,0x3b,0xdb,0x90,0xd0,0x3c,0xaf,0xe0,0x60,0x3d, - 0xbb,0x72,0xd0,0x3e,0x8f,0xc2,0x60,0x3f,0x9b,0x54,0xd0,0x40,0x6f,0xa4,0x60,0x41, - 0x84,0x71,0x50,0x42,0x4f,0x86,0x60,0x43,0x64,0x53,0x50,0x44,0x2f,0x68,0x60,0x45, - 0x44,0x35,0x50,0x45,0xf3,0x9a,0xe0,0x47,0x2d,0x51,0xd0,0x47,0xd3,0x7c,0xe0,0x49, - 0xd,0x33,0xd0,0x49,0xb3,0x5e,0xe0,0x4a,0xed,0x15,0xd0,0x4b,0x9c,0x7b,0x60,0x4c, - 0xd6,0x32,0x50,0x4d,0x7c,0x5d,0x60,0x4e,0xb6,0x14,0x50,0x4f,0x5c,0x3f,0x60,0x50, - 0x95,0xf6,0x50,0x51,0x3c,0x21,0x60,0x52,0x75,0xd8,0x50,0x53,0x1c,0x3,0x60,0x54, - 0x55,0xba,0x50,0x54,0xfb,0xe5,0x60,0x56,0x35,0x9c,0x50,0x56,0xe5,0x1,0xe0,0x58, - 0x1e,0xb8,0xd0,0x58,0xc4,0xe3,0xe0,0x59,0xfe,0x9a,0xd0,0x5a,0xa4,0xc5,0xe0,0x5b, - 0xde,0x7c,0xd0,0x5c,0x84,0xa7,0xe0,0x5d,0xbe,0x5e,0xd0,0x5e,0x64,0x89,0xe0,0x5f, - 0x9e,0x40,0xd0,0x60,0x4d,0xa6,0x60,0x61,0x87,0x5d,0x50,0x62,0x2d,0x88,0x60,0x63, - 0x67,0x3f,0x50,0x64,0xd,0x6a,0x60,0x65,0x47,0x21,0x50,0x65,0xed,0x4c,0x60,0x67, - 0x27,0x3,0x50,0x67,0xcd,0x2e,0x60,0x69,0x6,0xe5,0x50,0x69,0xad,0x10,0x60,0x6a, - 0xe6,0xc7,0x50,0x6b,0x96,0x2c,0xe0,0x6c,0xcf,0xe3,0xd0,0x6d,0x76,0xe,0xe0,0x6e, - 0xaf,0xc5,0xd0,0x6f,0x55,0xf0,0xe0,0x70,0x8f,0xa7,0xd0,0x71,0x35,0xd2,0xe0,0x72, - 0x6f,0x89,0xd0,0x73,0x15,0xb4,0xe0,0x74,0x4f,0x6b,0xd0,0x74,0xfe,0xd1,0x60,0x76, - 0x38,0x88,0x50,0x76,0xde,0xb3,0x60,0x78,0x18,0x6a,0x50,0x78,0xbe,0x95,0x60,0x79, - 0xf8,0x4c,0x50,0x7a,0x9e,0x77,0x60,0x7b,0xd8,0x2e,0x50,0x7c,0x7e,0x59,0x60,0x7d, - 0xb8,0x10,0x50,0x7e,0x5e,0x3b,0x60,0x7f,0x97,0xf2,0x50,0x0,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x0,0x0,0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x90,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x21,0x80,0x0,0x0,0x0,0xcb, + 0x89,0x44,0xd0,0xd2,0x23,0xf4,0x70,0xd2,0x61,0x50,0x40,0xfa,0xd2,0x55,0xb0,0xfe, + 0xb8,0x71,0x50,0xff,0xa8,0x54,0x40,0x0,0x98,0x53,0x50,0x1,0x88,0x36,0x40,0x2, + 0x78,0x35,0x50,0x3,0x71,0x52,0xc0,0x4,0x61,0x51,0xd0,0x5,0x51,0x34,0xc0,0x6, + 0x41,0x33,0xd0,0x7,0x31,0x16,0xc0,0x7,0x8d,0x6d,0xd0,0x9,0x10,0xf8,0xc0,0x9, + 0xad,0xe9,0x50,0xa,0xf0,0xda,0xc0,0xb,0xe0,0xd9,0xd0,0xc,0xd9,0xf7,0x40,0xd, + 0xc0,0xbb,0xd0,0xe,0xb9,0xd9,0x40,0xf,0xa9,0xd8,0x50,0x10,0x99,0xbb,0x40,0x11, + 0x89,0xba,0x50,0x12,0x79,0x9d,0x40,0x13,0x69,0x9c,0x50,0x14,0x59,0x7f,0x40,0x15, + 0x49,0x7e,0x50,0x16,0x39,0x61,0x40,0x17,0x29,0x60,0x50,0x18,0x22,0x7d,0xc0,0x19, + 0x9,0x42,0x50,0x1a,0x2,0x5f,0xc0,0x1a,0x2b,0x22,0x20,0x1a,0xf2,0x50,0xc0,0x1b, + 0xe2,0x33,0xb0,0x1c,0xd2,0x32,0xc0,0x1d,0xc2,0x15,0xb0,0x1e,0xb2,0x14,0xc0,0x1f, + 0xa1,0xf7,0xb0,0x20,0x76,0x47,0x40,0x21,0x81,0xd9,0xb0,0x22,0x56,0x29,0x40,0x23, + 0x6a,0xf6,0x30,0x24,0x36,0xb,0x40,0x25,0x4a,0xd8,0x30,0x26,0x15,0xed,0x40,0x27, + 0x2a,0xba,0x30,0x27,0xff,0x9,0xc0,0x29,0xa,0x9c,0x30,0x29,0xde,0xeb,0xc0,0x2a, + 0xea,0x7e,0x30,0x2b,0xbe,0xcd,0xc0,0x2c,0xd3,0x9a,0xb0,0x2d,0x9e,0xaf,0xc0,0x2e, + 0xb3,0x7c,0xb0,0x2f,0x7e,0x91,0xc0,0x30,0x93,0x5e,0xb0,0x31,0x67,0xae,0x40,0x32, + 0x73,0x40,0xb0,0x33,0x47,0x90,0x40,0x34,0x53,0x22,0xb0,0x35,0x27,0x72,0x40,0x36, + 0x33,0x4,0xb0,0x37,0x7,0x54,0x40,0x38,0x1c,0x21,0x30,0x38,0xe7,0x36,0x40,0x39, + 0xfc,0x3,0x30,0x3a,0xc7,0x18,0x40,0x3b,0xdb,0xe5,0x30,0x3c,0xb0,0x34,0xc0,0x3d, + 0xbb,0xc7,0x30,0x3e,0x90,0x16,0xc0,0x3f,0x9b,0xa9,0x30,0x40,0x6f,0xf8,0xc0,0x41, + 0x84,0xc5,0xb0,0x42,0x4f,0xda,0xc0,0x43,0x64,0xa7,0xb0,0x44,0x2f,0xbc,0xc0,0x45, + 0x44,0x89,0xb0,0x45,0xf3,0xef,0x40,0x47,0x2d,0xa6,0x30,0x47,0xd3,0xd1,0x40,0x49, + 0xd,0x88,0x30,0x49,0xb3,0xb3,0x40,0x4a,0xed,0x6a,0x30,0x4b,0x9c,0xcf,0xc0,0x4c, + 0xd6,0x86,0xb0,0x4d,0x7c,0xb1,0xc0,0x4e,0xb6,0x68,0xb0,0x4f,0x5c,0x93,0xc0,0x50, + 0x96,0x4a,0xb0,0x51,0x3c,0x75,0xc0,0x52,0x76,0x2c,0xb0,0x53,0x1c,0x57,0xc0,0x54, + 0x56,0xe,0xb0,0x54,0xfc,0x39,0xc0,0x56,0x35,0xf0,0xb0,0x56,0xe5,0x56,0x40,0x58, + 0x1f,0xd,0x30,0x58,0xc5,0x38,0x40,0x59,0xfe,0xef,0x30,0x5a,0xa5,0x1a,0x40,0x5b, + 0xde,0xd1,0x30,0x5c,0x84,0xfc,0x40,0x5d,0xbe,0xb3,0x30,0x5e,0x64,0xde,0x40,0x5f, + 0x9e,0x95,0x30,0x60,0x4d,0xfa,0xc0,0x61,0x87,0xb1,0xb0,0x62,0x2d,0xdc,0xc0,0x63, + 0x67,0x93,0xb0,0x64,0xd,0xbe,0xc0,0x65,0x47,0x75,0xb0,0x65,0xed,0xa0,0xc0,0x67, + 0x27,0x57,0xb0,0x67,0xcd,0x82,0xc0,0x69,0x7,0x39,0xb0,0x69,0xad,0x64,0xc0,0x6a, + 0xe7,0x1b,0xb0,0x6b,0x96,0x81,0x40,0x6c,0xd0,0x38,0x30,0x6d,0x76,0x63,0x40,0x6e, + 0xb0,0x1a,0x30,0x6f,0x56,0x45,0x40,0x70,0x8f,0xfc,0x30,0x71,0x36,0x27,0x40,0x72, + 0x6f,0xde,0x30,0x73,0x16,0x9,0x40,0x74,0x4f,0xc0,0x30,0x74,0xff,0x25,0xc0,0x76, + 0x38,0xdc,0xb0,0x76,0xdf,0x7,0xc0,0x78,0x18,0xbe,0xb0,0x78,0xbe,0xe9,0xc0,0x79, + 0xf8,0xa0,0xb0,0x7a,0x9e,0xcb,0xc0,0x7b,0xd8,0x82,0xb0,0x7c,0x7e,0xad,0xc0,0x7d, + 0xb8,0x64,0xb0,0x7e,0x5e,0x8f,0xc0,0x7f,0x98,0x46,0xb0,0x1,0x2,0x3,0x1,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x6,0x8,0x7, + 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, + 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, + 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, + 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, + 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, + 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, + 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0xff,0xff,0x5a,0x62,0x0, + 0x0,0xff,0xff,0x65,0x50,0x0,0x4,0xff,0xff,0x73,0x60,0x1,0x8,0xff,0xff,0x73, + 0x60,0x1,0xc,0xff,0xff,0x65,0x50,0x0,0x10,0xff,0xff,0x73,0x60,0x1,0x14,0xff, + 0xff,0x73,0x60,0x0,0x18,0xff,0xff,0x81,0x70,0x1,0x1d,0xff,0xff,0x73,0x60,0x0, + 0x19,0x4c,0x4d,0x54,0x0,0x4e,0x53,0x54,0x0,0x4e,0x57,0x54,0x0,0x4e,0x50,0x54, + 0x0,0x42,0x53,0x54,0x0,0x42,0x44,0x54,0x0,0x41,0x48,0x53,0x54,0x0,0x48,0x44, + 0x54,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0, + 0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0xa, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x21, + 0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x3f,0xc2,0xfd,0xd1, + 0xff,0xff,0xff,0xff,0x7d,0x87,0x5a,0x5e,0xff,0xff,0xff,0xff,0xcb,0x89,0x44,0xd0, + 0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x61,0x50,0x40, + 0xff,0xff,0xff,0xff,0xfa,0xd2,0x55,0xb0,0xff,0xff,0xff,0xff,0xfe,0xb8,0x71,0x50, + 0xff,0xff,0xff,0xff,0xff,0xa8,0x54,0x40,0x0,0x0,0x0,0x0,0x0,0x98,0x53,0x50, + 0x0,0x0,0x0,0x0,0x1,0x88,0x36,0x40,0x0,0x0,0x0,0x0,0x2,0x78,0x35,0x50, + 0x0,0x0,0x0,0x0,0x3,0x71,0x52,0xc0,0x0,0x0,0x0,0x0,0x4,0x61,0x51,0xd0, + 0x0,0x0,0x0,0x0,0x5,0x51,0x34,0xc0,0x0,0x0,0x0,0x0,0x6,0x41,0x33,0xd0, + 0x0,0x0,0x0,0x0,0x7,0x31,0x16,0xc0,0x0,0x0,0x0,0x0,0x7,0x8d,0x6d,0xd0, + 0x0,0x0,0x0,0x0,0x9,0x10,0xf8,0xc0,0x0,0x0,0x0,0x0,0x9,0xad,0xe9,0x50, + 0x0,0x0,0x0,0x0,0xa,0xf0,0xda,0xc0,0x0,0x0,0x0,0x0,0xb,0xe0,0xd9,0xd0, + 0x0,0x0,0x0,0x0,0xc,0xd9,0xf7,0x40,0x0,0x0,0x0,0x0,0xd,0xc0,0xbb,0xd0, + 0x0,0x0,0x0,0x0,0xe,0xb9,0xd9,0x40,0x0,0x0,0x0,0x0,0xf,0xa9,0xd8,0x50, + 0x0,0x0,0x0,0x0,0x10,0x99,0xbb,0x40,0x0,0x0,0x0,0x0,0x11,0x89,0xba,0x50, + 0x0,0x0,0x0,0x0,0x12,0x79,0x9d,0x40,0x0,0x0,0x0,0x0,0x13,0x69,0x9c,0x50, + 0x0,0x0,0x0,0x0,0x14,0x59,0x7f,0x40,0x0,0x0,0x0,0x0,0x15,0x49,0x7e,0x50, + 0x0,0x0,0x0,0x0,0x16,0x39,0x61,0x40,0x0,0x0,0x0,0x0,0x17,0x29,0x60,0x50, + 0x0,0x0,0x0,0x0,0x18,0x22,0x7d,0xc0,0x0,0x0,0x0,0x0,0x19,0x9,0x42,0x50, + 0x0,0x0,0x0,0x0,0x1a,0x2,0x5f,0xc0,0x0,0x0,0x0,0x0,0x1a,0x2b,0x22,0x20, + 0x0,0x0,0x0,0x0,0x1a,0xf2,0x50,0xc0,0x0,0x0,0x0,0x0,0x1b,0xe2,0x33,0xb0, + 0x0,0x0,0x0,0x0,0x1c,0xd2,0x32,0xc0,0x0,0x0,0x0,0x0,0x1d,0xc2,0x15,0xb0, + 0x0,0x0,0x0,0x0,0x1e,0xb2,0x14,0xc0,0x0,0x0,0x0,0x0,0x1f,0xa1,0xf7,0xb0, + 0x0,0x0,0x0,0x0,0x20,0x76,0x47,0x40,0x0,0x0,0x0,0x0,0x21,0x81,0xd9,0xb0, + 0x0,0x0,0x0,0x0,0x22,0x56,0x29,0x40,0x0,0x0,0x0,0x0,0x23,0x6a,0xf6,0x30, + 0x0,0x0,0x0,0x0,0x24,0x36,0xb,0x40,0x0,0x0,0x0,0x0,0x25,0x4a,0xd8,0x30, + 0x0,0x0,0x0,0x0,0x26,0x15,0xed,0x40,0x0,0x0,0x0,0x0,0x27,0x2a,0xba,0x30, + 0x0,0x0,0x0,0x0,0x27,0xff,0x9,0xc0,0x0,0x0,0x0,0x0,0x29,0xa,0x9c,0x30, + 0x0,0x0,0x0,0x0,0x29,0xde,0xeb,0xc0,0x0,0x0,0x0,0x0,0x2a,0xea,0x7e,0x30, + 0x0,0x0,0x0,0x0,0x2b,0xbe,0xcd,0xc0,0x0,0x0,0x0,0x0,0x2c,0xd3,0x9a,0xb0, + 0x0,0x0,0x0,0x0,0x2d,0x9e,0xaf,0xc0,0x0,0x0,0x0,0x0,0x2e,0xb3,0x7c,0xb0, + 0x0,0x0,0x0,0x0,0x2f,0x7e,0x91,0xc0,0x0,0x0,0x0,0x0,0x30,0x93,0x5e,0xb0, + 0x0,0x0,0x0,0x0,0x31,0x67,0xae,0x40,0x0,0x0,0x0,0x0,0x32,0x73,0x40,0xb0, + 0x0,0x0,0x0,0x0,0x33,0x47,0x90,0x40,0x0,0x0,0x0,0x0,0x34,0x53,0x22,0xb0, + 0x0,0x0,0x0,0x0,0x35,0x27,0x72,0x40,0x0,0x0,0x0,0x0,0x36,0x33,0x4,0xb0, + 0x0,0x0,0x0,0x0,0x37,0x7,0x54,0x40,0x0,0x0,0x0,0x0,0x38,0x1c,0x21,0x30, + 0x0,0x0,0x0,0x0,0x38,0xe7,0x36,0x40,0x0,0x0,0x0,0x0,0x39,0xfc,0x3,0x30, + 0x0,0x0,0x0,0x0,0x3a,0xc7,0x18,0x40,0x0,0x0,0x0,0x0,0x3b,0xdb,0xe5,0x30, + 0x0,0x0,0x0,0x0,0x3c,0xb0,0x34,0xc0,0x0,0x0,0x0,0x0,0x3d,0xbb,0xc7,0x30, + 0x0,0x0,0x0,0x0,0x3e,0x90,0x16,0xc0,0x0,0x0,0x0,0x0,0x3f,0x9b,0xa9,0x30, + 0x0,0x0,0x0,0x0,0x40,0x6f,0xf8,0xc0,0x0,0x0,0x0,0x0,0x41,0x84,0xc5,0xb0, + 0x0,0x0,0x0,0x0,0x42,0x4f,0xda,0xc0,0x0,0x0,0x0,0x0,0x43,0x64,0xa7,0xb0, + 0x0,0x0,0x0,0x0,0x44,0x2f,0xbc,0xc0,0x0,0x0,0x0,0x0,0x45,0x44,0x89,0xb0, + 0x0,0x0,0x0,0x0,0x45,0xf3,0xef,0x40,0x0,0x0,0x0,0x0,0x47,0x2d,0xa6,0x30, + 0x0,0x0,0x0,0x0,0x47,0xd3,0xd1,0x40,0x0,0x0,0x0,0x0,0x49,0xd,0x88,0x30, + 0x0,0x0,0x0,0x0,0x49,0xb3,0xb3,0x40,0x0,0x0,0x0,0x0,0x4a,0xed,0x6a,0x30, + 0x0,0x0,0x0,0x0,0x4b,0x9c,0xcf,0xc0,0x0,0x0,0x0,0x0,0x4c,0xd6,0x86,0xb0, + 0x0,0x0,0x0,0x0,0x4d,0x7c,0xb1,0xc0,0x0,0x0,0x0,0x0,0x4e,0xb6,0x68,0xb0, + 0x0,0x0,0x0,0x0,0x4f,0x5c,0x93,0xc0,0x0,0x0,0x0,0x0,0x50,0x96,0x4a,0xb0, + 0x0,0x0,0x0,0x0,0x51,0x3c,0x75,0xc0,0x0,0x0,0x0,0x0,0x52,0x76,0x2c,0xb0, + 0x0,0x0,0x0,0x0,0x53,0x1c,0x57,0xc0,0x0,0x0,0x0,0x0,0x54,0x56,0xe,0xb0, + 0x0,0x0,0x0,0x0,0x54,0xfc,0x39,0xc0,0x0,0x0,0x0,0x0,0x56,0x35,0xf0,0xb0, + 0x0,0x0,0x0,0x0,0x56,0xe5,0x56,0x40,0x0,0x0,0x0,0x0,0x58,0x1f,0xd,0x30, + 0x0,0x0,0x0,0x0,0x58,0xc5,0x38,0x40,0x0,0x0,0x0,0x0,0x59,0xfe,0xef,0x30, + 0x0,0x0,0x0,0x0,0x5a,0xa5,0x1a,0x40,0x0,0x0,0x0,0x0,0x5b,0xde,0xd1,0x30, + 0x0,0x0,0x0,0x0,0x5c,0x84,0xfc,0x40,0x0,0x0,0x0,0x0,0x5d,0xbe,0xb3,0x30, + 0x0,0x0,0x0,0x0,0x5e,0x64,0xde,0x40,0x0,0x0,0x0,0x0,0x5f,0x9e,0x95,0x30, + 0x0,0x0,0x0,0x0,0x60,0x4d,0xfa,0xc0,0x0,0x0,0x0,0x0,0x61,0x87,0xb1,0xb0, + 0x0,0x0,0x0,0x0,0x62,0x2d,0xdc,0xc0,0x0,0x0,0x0,0x0,0x63,0x67,0x93,0xb0, + 0x0,0x0,0x0,0x0,0x64,0xd,0xbe,0xc0,0x0,0x0,0x0,0x0,0x65,0x47,0x75,0xb0, + 0x0,0x0,0x0,0x0,0x65,0xed,0xa0,0xc0,0x0,0x0,0x0,0x0,0x67,0x27,0x57,0xb0, + 0x0,0x0,0x0,0x0,0x67,0xcd,0x82,0xc0,0x0,0x0,0x0,0x0,0x69,0x7,0x39,0xb0, + 0x0,0x0,0x0,0x0,0x69,0xad,0x64,0xc0,0x0,0x0,0x0,0x0,0x6a,0xe7,0x1b,0xb0, + 0x0,0x0,0x0,0x0,0x6b,0x96,0x81,0x40,0x0,0x0,0x0,0x0,0x6c,0xd0,0x38,0x30, + 0x0,0x0,0x0,0x0,0x6d,0x76,0x63,0x40,0x0,0x0,0x0,0x0,0x6e,0xb0,0x1a,0x30, + 0x0,0x0,0x0,0x0,0x6f,0x56,0x45,0x40,0x0,0x0,0x0,0x0,0x70,0x8f,0xfc,0x30, + 0x0,0x0,0x0,0x0,0x71,0x36,0x27,0x40,0x0,0x0,0x0,0x0,0x72,0x6f,0xde,0x30, + 0x0,0x0,0x0,0x0,0x73,0x16,0x9,0x40,0x0,0x0,0x0,0x0,0x74,0x4f,0xc0,0x30, + 0x0,0x0,0x0,0x0,0x74,0xff,0x25,0xc0,0x0,0x0,0x0,0x0,0x76,0x38,0xdc,0xb0, + 0x0,0x0,0x0,0x0,0x76,0xdf,0x7,0xc0,0x0,0x0,0x0,0x0,0x78,0x18,0xbe,0xb0, + 0x0,0x0,0x0,0x0,0x78,0xbe,0xe9,0xc0,0x0,0x0,0x0,0x0,0x79,0xf8,0xa0,0xb0, + 0x0,0x0,0x0,0x0,0x7a,0x9e,0xcb,0xc0,0x0,0x0,0x0,0x0,0x7b,0xd8,0x82,0xb0, + 0x0,0x0,0x0,0x0,0x7c,0x7e,0xad,0xc0,0x0,0x0,0x0,0x0,0x7d,0xb8,0x64,0xb0, + 0x0,0x0,0x0,0x0,0x7e,0x5e,0x8f,0xc0,0x0,0x0,0x0,0x0,0x7f,0x98,0x46,0xb0, + 0x0,0x1,0x2,0x3,0x4,0x2,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x7,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, + 0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, + 0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, + 0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, + 0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, + 0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, + 0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, + 0x8,0x9,0x0,0x0,0xab,0xe2,0x0,0x0,0xff,0xff,0x5a,0x62,0x0,0x0,0xff,0xff, + 0x65,0x50,0x0,0x4,0xff,0xff,0x73,0x60,0x1,0x8,0xff,0xff,0x73,0x60,0x1,0xc, + 0xff,0xff,0x65,0x50,0x0,0x10,0xff,0xff,0x73,0x60,0x1,0x14,0xff,0xff,0x73,0x60, + 0x0,0x18,0xff,0xff,0x81,0x70,0x1,0x1d,0xff,0xff,0x73,0x60,0x0,0x19,0x4c,0x4d, + 0x54,0x0,0x4e,0x53,0x54,0x0,0x4e,0x57,0x54,0x0,0x4e,0x50,0x54,0x0,0x42,0x53, + 0x54,0x0,0x42,0x44,0x54,0x0,0x41,0x48,0x53,0x54,0x0,0x48,0x44,0x54,0x0,0x0, + 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0, + 0x0,0x0,0x0,0xa,0x48,0x53,0x54,0x31,0x30,0x48,0x44,0x54,0x2c,0x4d,0x33,0x2e, + 0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Aruba + 0x0,0x0,0x0,0xd4, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xe,0x80,0x0,0x0,0x0,0x93, + 0x1e,0x2e,0x23,0xf6,0x98,0xec,0x48,0x0,0x1,0x2,0xff,0xff,0xbf,0x5d,0x0,0x0, + 0xff,0xff,0xc0,0xb8,0x0,0x4,0xff,0xff,0xc7,0xc0,0x0,0xa,0x4c,0x4d,0x54,0x0, + 0x2d,0x30,0x34,0x33,0x30,0x0,0x41,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xe,0xf8,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x93,0x1e,0x2e,0x23,0xff,0xff,0xff,0xff, + 0xf6,0x98,0xec,0x48,0x0,0x1,0x2,0xff,0xff,0xbf,0x5d,0x0,0x0,0xff,0xff,0xc0, + 0xb8,0x0,0x4,0xff,0xff,0xc7,0xc0,0x0,0xa,0x4c,0x4d,0x54,0x0,0x2d,0x30,0x34, + 0x33,0x30,0x0,0x41,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x41,0x53, + 0x54,0x34,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Adak + 0x0,0x0,0x9,0x3d, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x90,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x21,0x80,0x0,0x0,0x0,0xcb, + 0x89,0x44,0xd0,0xd2,0x23,0xf4,0x70,0xd2,0x61,0x50,0x40,0xfa,0xd2,0x55,0xb0,0xfe, + 0xb8,0x71,0x50,0xff,0xa8,0x54,0x40,0x0,0x98,0x53,0x50,0x1,0x88,0x36,0x40,0x2, + 0x78,0x35,0x50,0x3,0x71,0x52,0xc0,0x4,0x61,0x51,0xd0,0x5,0x51,0x34,0xc0,0x6, + 0x41,0x33,0xd0,0x7,0x31,0x16,0xc0,0x7,0x8d,0x6d,0xd0,0x9,0x10,0xf8,0xc0,0x9, + 0xad,0xe9,0x50,0xa,0xf0,0xda,0xc0,0xb,0xe0,0xd9,0xd0,0xc,0xd9,0xf7,0x40,0xd, + 0xc0,0xbb,0xd0,0xe,0xb9,0xd9,0x40,0xf,0xa9,0xd8,0x50,0x10,0x99,0xbb,0x40,0x11, + 0x89,0xba,0x50,0x12,0x79,0x9d,0x40,0x13,0x69,0x9c,0x50,0x14,0x59,0x7f,0x40,0x15, + 0x49,0x7e,0x50,0x16,0x39,0x61,0x40,0x17,0x29,0x60,0x50,0x18,0x22,0x7d,0xc0,0x19, + 0x9,0x42,0x50,0x1a,0x2,0x5f,0xc0,0x1a,0x2b,0x22,0x20,0x1a,0xf2,0x50,0xc0,0x1b, + 0xe2,0x33,0xb0,0x1c,0xd2,0x32,0xc0,0x1d,0xc2,0x15,0xb0,0x1e,0xb2,0x14,0xc0,0x1f, + 0xa1,0xf7,0xb0,0x20,0x76,0x47,0x40,0x21,0x81,0xd9,0xb0,0x22,0x56,0x29,0x40,0x23, + 0x6a,0xf6,0x30,0x24,0x36,0xb,0x40,0x25,0x4a,0xd8,0x30,0x26,0x15,0xed,0x40,0x27, + 0x2a,0xba,0x30,0x27,0xff,0x9,0xc0,0x29,0xa,0x9c,0x30,0x29,0xde,0xeb,0xc0,0x2a, + 0xea,0x7e,0x30,0x2b,0xbe,0xcd,0xc0,0x2c,0xd3,0x9a,0xb0,0x2d,0x9e,0xaf,0xc0,0x2e, + 0xb3,0x7c,0xb0,0x2f,0x7e,0x91,0xc0,0x30,0x93,0x5e,0xb0,0x31,0x67,0xae,0x40,0x32, + 0x73,0x40,0xb0,0x33,0x47,0x90,0x40,0x34,0x53,0x22,0xb0,0x35,0x27,0x72,0x40,0x36, + 0x33,0x4,0xb0,0x37,0x7,0x54,0x40,0x38,0x1c,0x21,0x30,0x38,0xe7,0x36,0x40,0x39, + 0xfc,0x3,0x30,0x3a,0xc7,0x18,0x40,0x3b,0xdb,0xe5,0x30,0x3c,0xb0,0x34,0xc0,0x3d, + 0xbb,0xc7,0x30,0x3e,0x90,0x16,0xc0,0x3f,0x9b,0xa9,0x30,0x40,0x6f,0xf8,0xc0,0x41, + 0x84,0xc5,0xb0,0x42,0x4f,0xda,0xc0,0x43,0x64,0xa7,0xb0,0x44,0x2f,0xbc,0xc0,0x45, + 0x44,0x89,0xb0,0x45,0xf3,0xef,0x40,0x47,0x2d,0xa6,0x30,0x47,0xd3,0xd1,0x40,0x49, + 0xd,0x88,0x30,0x49,0xb3,0xb3,0x40,0x4a,0xed,0x6a,0x30,0x4b,0x9c,0xcf,0xc0,0x4c, + 0xd6,0x86,0xb0,0x4d,0x7c,0xb1,0xc0,0x4e,0xb6,0x68,0xb0,0x4f,0x5c,0x93,0xc0,0x50, + 0x96,0x4a,0xb0,0x51,0x3c,0x75,0xc0,0x52,0x76,0x2c,0xb0,0x53,0x1c,0x57,0xc0,0x54, + 0x56,0xe,0xb0,0x54,0xfc,0x39,0xc0,0x56,0x35,0xf0,0xb0,0x56,0xe5,0x56,0x40,0x58, + 0x1f,0xd,0x30,0x58,0xc5,0x38,0x40,0x59,0xfe,0xef,0x30,0x5a,0xa5,0x1a,0x40,0x5b, + 0xde,0xd1,0x30,0x5c,0x84,0xfc,0x40,0x5d,0xbe,0xb3,0x30,0x5e,0x64,0xde,0x40,0x5f, + 0x9e,0x95,0x30,0x60,0x4d,0xfa,0xc0,0x61,0x87,0xb1,0xb0,0x62,0x2d,0xdc,0xc0,0x63, + 0x67,0x93,0xb0,0x64,0xd,0xbe,0xc0,0x65,0x47,0x75,0xb0,0x65,0xed,0xa0,0xc0,0x67, + 0x27,0x57,0xb0,0x67,0xcd,0x82,0xc0,0x69,0x7,0x39,0xb0,0x69,0xad,0x64,0xc0,0x6a, + 0xe7,0x1b,0xb0,0x6b,0x96,0x81,0x40,0x6c,0xd0,0x38,0x30,0x6d,0x76,0x63,0x40,0x6e, + 0xb0,0x1a,0x30,0x6f,0x56,0x45,0x40,0x70,0x8f,0xfc,0x30,0x71,0x36,0x27,0x40,0x72, + 0x6f,0xde,0x30,0x73,0x16,0x9,0x40,0x74,0x4f,0xc0,0x30,0x74,0xff,0x25,0xc0,0x76, + 0x38,0xdc,0xb0,0x76,0xdf,0x7,0xc0,0x78,0x18,0xbe,0xb0,0x78,0xbe,0xe9,0xc0,0x79, + 0xf8,0xa0,0xb0,0x7a,0x9e,0xcb,0xc0,0x7b,0xd8,0x82,0xb0,0x7c,0x7e,0xad,0xc0,0x7d, + 0xb8,0x64,0xb0,0x7e,0x5e,0x8f,0xc0,0x7f,0x98,0x46,0xb0,0x1,0x2,0x3,0x1,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x6,0x8,0x7, + 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, + 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, + 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, + 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, + 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, + 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, + 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0xff,0xff,0x5a,0x62,0x0, + 0x0,0xff,0xff,0x65,0x50,0x0,0x4,0xff,0xff,0x73,0x60,0x1,0x8,0xff,0xff,0x73, + 0x60,0x1,0xc,0xff,0xff,0x65,0x50,0x0,0x10,0xff,0xff,0x73,0x60,0x1,0x14,0xff, + 0xff,0x73,0x60,0x0,0x18,0xff,0xff,0x81,0x70,0x1,0x1d,0xff,0xff,0x73,0x60,0x0, + 0x19,0x4c,0x4d,0x54,0x0,0x4e,0x53,0x54,0x0,0x4e,0x57,0x54,0x0,0x4e,0x50,0x54, + 0x0,0x42,0x53,0x54,0x0,0x42,0x44,0x54,0x0,0x41,0x48,0x53,0x54,0x0,0x48,0x44, + 0x54,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0, + 0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0xa, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x21, + 0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x3f,0xc2,0xfd,0xd1, + 0xff,0xff,0xff,0xff,0x7d,0x87,0x5a,0x5e,0xff,0xff,0xff,0xff,0xcb,0x89,0x44,0xd0, + 0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x61,0x50,0x40, + 0xff,0xff,0xff,0xff,0xfa,0xd2,0x55,0xb0,0xff,0xff,0xff,0xff,0xfe,0xb8,0x71,0x50, + 0xff,0xff,0xff,0xff,0xff,0xa8,0x54,0x40,0x0,0x0,0x0,0x0,0x0,0x98,0x53,0x50, + 0x0,0x0,0x0,0x0,0x1,0x88,0x36,0x40,0x0,0x0,0x0,0x0,0x2,0x78,0x35,0x50, + 0x0,0x0,0x0,0x0,0x3,0x71,0x52,0xc0,0x0,0x0,0x0,0x0,0x4,0x61,0x51,0xd0, + 0x0,0x0,0x0,0x0,0x5,0x51,0x34,0xc0,0x0,0x0,0x0,0x0,0x6,0x41,0x33,0xd0, + 0x0,0x0,0x0,0x0,0x7,0x31,0x16,0xc0,0x0,0x0,0x0,0x0,0x7,0x8d,0x6d,0xd0, + 0x0,0x0,0x0,0x0,0x9,0x10,0xf8,0xc0,0x0,0x0,0x0,0x0,0x9,0xad,0xe9,0x50, + 0x0,0x0,0x0,0x0,0xa,0xf0,0xda,0xc0,0x0,0x0,0x0,0x0,0xb,0xe0,0xd9,0xd0, + 0x0,0x0,0x0,0x0,0xc,0xd9,0xf7,0x40,0x0,0x0,0x0,0x0,0xd,0xc0,0xbb,0xd0, + 0x0,0x0,0x0,0x0,0xe,0xb9,0xd9,0x40,0x0,0x0,0x0,0x0,0xf,0xa9,0xd8,0x50, + 0x0,0x0,0x0,0x0,0x10,0x99,0xbb,0x40,0x0,0x0,0x0,0x0,0x11,0x89,0xba,0x50, + 0x0,0x0,0x0,0x0,0x12,0x79,0x9d,0x40,0x0,0x0,0x0,0x0,0x13,0x69,0x9c,0x50, + 0x0,0x0,0x0,0x0,0x14,0x59,0x7f,0x40,0x0,0x0,0x0,0x0,0x15,0x49,0x7e,0x50, + 0x0,0x0,0x0,0x0,0x16,0x39,0x61,0x40,0x0,0x0,0x0,0x0,0x17,0x29,0x60,0x50, + 0x0,0x0,0x0,0x0,0x18,0x22,0x7d,0xc0,0x0,0x0,0x0,0x0,0x19,0x9,0x42,0x50, + 0x0,0x0,0x0,0x0,0x1a,0x2,0x5f,0xc0,0x0,0x0,0x0,0x0,0x1a,0x2b,0x22,0x20, + 0x0,0x0,0x0,0x0,0x1a,0xf2,0x50,0xc0,0x0,0x0,0x0,0x0,0x1b,0xe2,0x33,0xb0, + 0x0,0x0,0x0,0x0,0x1c,0xd2,0x32,0xc0,0x0,0x0,0x0,0x0,0x1d,0xc2,0x15,0xb0, + 0x0,0x0,0x0,0x0,0x1e,0xb2,0x14,0xc0,0x0,0x0,0x0,0x0,0x1f,0xa1,0xf7,0xb0, + 0x0,0x0,0x0,0x0,0x20,0x76,0x47,0x40,0x0,0x0,0x0,0x0,0x21,0x81,0xd9,0xb0, + 0x0,0x0,0x0,0x0,0x22,0x56,0x29,0x40,0x0,0x0,0x0,0x0,0x23,0x6a,0xf6,0x30, + 0x0,0x0,0x0,0x0,0x24,0x36,0xb,0x40,0x0,0x0,0x0,0x0,0x25,0x4a,0xd8,0x30, + 0x0,0x0,0x0,0x0,0x26,0x15,0xed,0x40,0x0,0x0,0x0,0x0,0x27,0x2a,0xba,0x30, + 0x0,0x0,0x0,0x0,0x27,0xff,0x9,0xc0,0x0,0x0,0x0,0x0,0x29,0xa,0x9c,0x30, + 0x0,0x0,0x0,0x0,0x29,0xde,0xeb,0xc0,0x0,0x0,0x0,0x0,0x2a,0xea,0x7e,0x30, + 0x0,0x0,0x0,0x0,0x2b,0xbe,0xcd,0xc0,0x0,0x0,0x0,0x0,0x2c,0xd3,0x9a,0xb0, + 0x0,0x0,0x0,0x0,0x2d,0x9e,0xaf,0xc0,0x0,0x0,0x0,0x0,0x2e,0xb3,0x7c,0xb0, + 0x0,0x0,0x0,0x0,0x2f,0x7e,0x91,0xc0,0x0,0x0,0x0,0x0,0x30,0x93,0x5e,0xb0, + 0x0,0x0,0x0,0x0,0x31,0x67,0xae,0x40,0x0,0x0,0x0,0x0,0x32,0x73,0x40,0xb0, + 0x0,0x0,0x0,0x0,0x33,0x47,0x90,0x40,0x0,0x0,0x0,0x0,0x34,0x53,0x22,0xb0, + 0x0,0x0,0x0,0x0,0x35,0x27,0x72,0x40,0x0,0x0,0x0,0x0,0x36,0x33,0x4,0xb0, + 0x0,0x0,0x0,0x0,0x37,0x7,0x54,0x40,0x0,0x0,0x0,0x0,0x38,0x1c,0x21,0x30, + 0x0,0x0,0x0,0x0,0x38,0xe7,0x36,0x40,0x0,0x0,0x0,0x0,0x39,0xfc,0x3,0x30, + 0x0,0x0,0x0,0x0,0x3a,0xc7,0x18,0x40,0x0,0x0,0x0,0x0,0x3b,0xdb,0xe5,0x30, + 0x0,0x0,0x0,0x0,0x3c,0xb0,0x34,0xc0,0x0,0x0,0x0,0x0,0x3d,0xbb,0xc7,0x30, + 0x0,0x0,0x0,0x0,0x3e,0x90,0x16,0xc0,0x0,0x0,0x0,0x0,0x3f,0x9b,0xa9,0x30, + 0x0,0x0,0x0,0x0,0x40,0x6f,0xf8,0xc0,0x0,0x0,0x0,0x0,0x41,0x84,0xc5,0xb0, + 0x0,0x0,0x0,0x0,0x42,0x4f,0xda,0xc0,0x0,0x0,0x0,0x0,0x43,0x64,0xa7,0xb0, + 0x0,0x0,0x0,0x0,0x44,0x2f,0xbc,0xc0,0x0,0x0,0x0,0x0,0x45,0x44,0x89,0xb0, + 0x0,0x0,0x0,0x0,0x45,0xf3,0xef,0x40,0x0,0x0,0x0,0x0,0x47,0x2d,0xa6,0x30, + 0x0,0x0,0x0,0x0,0x47,0xd3,0xd1,0x40,0x0,0x0,0x0,0x0,0x49,0xd,0x88,0x30, + 0x0,0x0,0x0,0x0,0x49,0xb3,0xb3,0x40,0x0,0x0,0x0,0x0,0x4a,0xed,0x6a,0x30, + 0x0,0x0,0x0,0x0,0x4b,0x9c,0xcf,0xc0,0x0,0x0,0x0,0x0,0x4c,0xd6,0x86,0xb0, + 0x0,0x0,0x0,0x0,0x4d,0x7c,0xb1,0xc0,0x0,0x0,0x0,0x0,0x4e,0xb6,0x68,0xb0, + 0x0,0x0,0x0,0x0,0x4f,0x5c,0x93,0xc0,0x0,0x0,0x0,0x0,0x50,0x96,0x4a,0xb0, + 0x0,0x0,0x0,0x0,0x51,0x3c,0x75,0xc0,0x0,0x0,0x0,0x0,0x52,0x76,0x2c,0xb0, + 0x0,0x0,0x0,0x0,0x53,0x1c,0x57,0xc0,0x0,0x0,0x0,0x0,0x54,0x56,0xe,0xb0, + 0x0,0x0,0x0,0x0,0x54,0xfc,0x39,0xc0,0x0,0x0,0x0,0x0,0x56,0x35,0xf0,0xb0, + 0x0,0x0,0x0,0x0,0x56,0xe5,0x56,0x40,0x0,0x0,0x0,0x0,0x58,0x1f,0xd,0x30, + 0x0,0x0,0x0,0x0,0x58,0xc5,0x38,0x40,0x0,0x0,0x0,0x0,0x59,0xfe,0xef,0x30, + 0x0,0x0,0x0,0x0,0x5a,0xa5,0x1a,0x40,0x0,0x0,0x0,0x0,0x5b,0xde,0xd1,0x30, + 0x0,0x0,0x0,0x0,0x5c,0x84,0xfc,0x40,0x0,0x0,0x0,0x0,0x5d,0xbe,0xb3,0x30, + 0x0,0x0,0x0,0x0,0x5e,0x64,0xde,0x40,0x0,0x0,0x0,0x0,0x5f,0x9e,0x95,0x30, + 0x0,0x0,0x0,0x0,0x60,0x4d,0xfa,0xc0,0x0,0x0,0x0,0x0,0x61,0x87,0xb1,0xb0, + 0x0,0x0,0x0,0x0,0x62,0x2d,0xdc,0xc0,0x0,0x0,0x0,0x0,0x63,0x67,0x93,0xb0, + 0x0,0x0,0x0,0x0,0x64,0xd,0xbe,0xc0,0x0,0x0,0x0,0x0,0x65,0x47,0x75,0xb0, + 0x0,0x0,0x0,0x0,0x65,0xed,0xa0,0xc0,0x0,0x0,0x0,0x0,0x67,0x27,0x57,0xb0, + 0x0,0x0,0x0,0x0,0x67,0xcd,0x82,0xc0,0x0,0x0,0x0,0x0,0x69,0x7,0x39,0xb0, + 0x0,0x0,0x0,0x0,0x69,0xad,0x64,0xc0,0x0,0x0,0x0,0x0,0x6a,0xe7,0x1b,0xb0, + 0x0,0x0,0x0,0x0,0x6b,0x96,0x81,0x40,0x0,0x0,0x0,0x0,0x6c,0xd0,0x38,0x30, + 0x0,0x0,0x0,0x0,0x6d,0x76,0x63,0x40,0x0,0x0,0x0,0x0,0x6e,0xb0,0x1a,0x30, + 0x0,0x0,0x0,0x0,0x6f,0x56,0x45,0x40,0x0,0x0,0x0,0x0,0x70,0x8f,0xfc,0x30, + 0x0,0x0,0x0,0x0,0x71,0x36,0x27,0x40,0x0,0x0,0x0,0x0,0x72,0x6f,0xde,0x30, + 0x0,0x0,0x0,0x0,0x73,0x16,0x9,0x40,0x0,0x0,0x0,0x0,0x74,0x4f,0xc0,0x30, + 0x0,0x0,0x0,0x0,0x74,0xff,0x25,0xc0,0x0,0x0,0x0,0x0,0x76,0x38,0xdc,0xb0, + 0x0,0x0,0x0,0x0,0x76,0xdf,0x7,0xc0,0x0,0x0,0x0,0x0,0x78,0x18,0xbe,0xb0, + 0x0,0x0,0x0,0x0,0x78,0xbe,0xe9,0xc0,0x0,0x0,0x0,0x0,0x79,0xf8,0xa0,0xb0, + 0x0,0x0,0x0,0x0,0x7a,0x9e,0xcb,0xc0,0x0,0x0,0x0,0x0,0x7b,0xd8,0x82,0xb0, + 0x0,0x0,0x0,0x0,0x7c,0x7e,0xad,0xc0,0x0,0x0,0x0,0x0,0x7d,0xb8,0x64,0xb0, + 0x0,0x0,0x0,0x0,0x7e,0x5e,0x8f,0xc0,0x0,0x0,0x0,0x0,0x7f,0x98,0x46,0xb0, + 0x0,0x1,0x2,0x3,0x4,0x2,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x7,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, + 0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, + 0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, + 0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, + 0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, + 0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, + 0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, + 0x8,0x9,0x0,0x0,0xab,0xe2,0x0,0x0,0xff,0xff,0x5a,0x62,0x0,0x0,0xff,0xff, + 0x65,0x50,0x0,0x4,0xff,0xff,0x73,0x60,0x1,0x8,0xff,0xff,0x73,0x60,0x1,0xc, + 0xff,0xff,0x65,0x50,0x0,0x10,0xff,0xff,0x73,0x60,0x1,0x14,0xff,0xff,0x73,0x60, + 0x0,0x18,0xff,0xff,0x81,0x70,0x1,0x1d,0xff,0xff,0x73,0x60,0x0,0x19,0x4c,0x4d, + 0x54,0x0,0x4e,0x53,0x54,0x0,0x4e,0x57,0x54,0x0,0x4e,0x50,0x54,0x0,0x42,0x53, + 0x54,0x0,0x42,0x44,0x54,0x0,0x41,0x48,0x53,0x54,0x0,0x48,0x44,0x54,0x0,0x0, + 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0, + 0x0,0x0,0x0,0xa,0x48,0x53,0x54,0x31,0x30,0x48,0x44,0x54,0x2c,0x4d,0x33,0x2e, + 0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Fortaleza + 0x0,0x0,0x2,0xe6, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x29,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0x96, + 0xaa,0x6b,0x18,0xb8,0xf,0x49,0xe0,0xb8,0xfd,0x40,0xa0,0xb9,0xf1,0x34,0x30,0xba, + 0xde,0x74,0x20,0xda,0x38,0xae,0x30,0xda,0xeb,0xfa,0x30,0xdc,0x19,0xe1,0xb0,0xdc, + 0xb9,0x59,0x20,0xdd,0xfb,0x15,0x30,0xde,0x9b,0xde,0x20,0xdf,0xdd,0x9a,0x30,0xe0, + 0x54,0x33,0x20,0xf4,0x97,0xff,0xb0,0xf5,0x5,0x5e,0x20,0xf6,0xc0,0x64,0x30,0xf7, + 0xe,0x1e,0xa0,0xf8,0x51,0x2c,0x30,0xf8,0xc7,0xc5,0x20,0xfa,0xa,0xd2,0xb0,0xfa, + 0xa8,0xf8,0xa0,0xfb,0xec,0x6,0x30,0xfc,0x8b,0x7d,0xa0,0x1d,0xc9,0x8e,0x30,0x1e, + 0x78,0xd7,0xa0,0x1f,0xa0,0x35,0xb0,0x20,0x33,0xcf,0xa0,0x21,0x81,0x69,0x30,0x22, + 0xb,0xc8,0xa0,0x23,0x58,0x10,0xb0,0x23,0xe2,0x70,0x20,0x25,0x37,0xf2,0xb0,0x25, + 0xd4,0xc7,0x20,0x37,0xf6,0xc6,0xb0,0x38,0xb8,0x85,0x20,0x39,0xdf,0xe3,0x30,0x39, + 0xf2,0x4a,0x20,0x3b,0xc8,0xff,0xb0,0x3c,0x6f,0xe,0xa0,0x7f,0xff,0xff,0xff,0x0, 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0xbf,0x84,0x0, - 0x0,0xff,0xff,0xd5,0xd0,0x1,0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0x4c,0x4d,0x54, - 0x0,0x41,0x44,0x54,0x0,0x41,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x2,0xff,0xff,0xdb,0xe8,0x0,0x0,0xff,0xff, + 0xe3,0xe0,0x1,0x4,0xff,0xff,0xd5,0xd0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x2d,0x30, + 0x32,0x0,0x2d,0x30,0x33,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66, + 0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x29, + 0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0x96,0xaa,0x6b,0x18,0xff,0xff,0xff,0xff,0xb8,0xf,0x49,0xe0, + 0xff,0xff,0xff,0xff,0xb8,0xfd,0x40,0xa0,0xff,0xff,0xff,0xff,0xb9,0xf1,0x34,0x30, + 0xff,0xff,0xff,0xff,0xba,0xde,0x74,0x20,0xff,0xff,0xff,0xff,0xda,0x38,0xae,0x30, + 0xff,0xff,0xff,0xff,0xda,0xeb,0xfa,0x30,0xff,0xff,0xff,0xff,0xdc,0x19,0xe1,0xb0, + 0xff,0xff,0xff,0xff,0xdc,0xb9,0x59,0x20,0xff,0xff,0xff,0xff,0xdd,0xfb,0x15,0x30, + 0xff,0xff,0xff,0xff,0xde,0x9b,0xde,0x20,0xff,0xff,0xff,0xff,0xdf,0xdd,0x9a,0x30, + 0xff,0xff,0xff,0xff,0xe0,0x54,0x33,0x20,0xff,0xff,0xff,0xff,0xf4,0x97,0xff,0xb0, + 0xff,0xff,0xff,0xff,0xf5,0x5,0x5e,0x20,0xff,0xff,0xff,0xff,0xf6,0xc0,0x64,0x30, + 0xff,0xff,0xff,0xff,0xf7,0xe,0x1e,0xa0,0xff,0xff,0xff,0xff,0xf8,0x51,0x2c,0x30, + 0xff,0xff,0xff,0xff,0xf8,0xc7,0xc5,0x20,0xff,0xff,0xff,0xff,0xfa,0xa,0xd2,0xb0, + 0xff,0xff,0xff,0xff,0xfa,0xa8,0xf8,0xa0,0xff,0xff,0xff,0xff,0xfb,0xec,0x6,0x30, + 0xff,0xff,0xff,0xff,0xfc,0x8b,0x7d,0xa0,0x0,0x0,0x0,0x0,0x1d,0xc9,0x8e,0x30, + 0x0,0x0,0x0,0x0,0x1e,0x78,0xd7,0xa0,0x0,0x0,0x0,0x0,0x1f,0xa0,0x35,0xb0, + 0x0,0x0,0x0,0x0,0x20,0x33,0xcf,0xa0,0x0,0x0,0x0,0x0,0x21,0x81,0x69,0x30, + 0x0,0x0,0x0,0x0,0x22,0xb,0xc8,0xa0,0x0,0x0,0x0,0x0,0x23,0x58,0x10,0xb0, + 0x0,0x0,0x0,0x0,0x23,0xe2,0x70,0x20,0x0,0x0,0x0,0x0,0x25,0x37,0xf2,0xb0, + 0x0,0x0,0x0,0x0,0x25,0xd4,0xc7,0x20,0x0,0x0,0x0,0x0,0x37,0xf6,0xc6,0xb0, + 0x0,0x0,0x0,0x0,0x38,0xb8,0x85,0x20,0x0,0x0,0x0,0x0,0x39,0xdf,0xe3,0x30, + 0x0,0x0,0x0,0x0,0x39,0xf2,0x4a,0x20,0x0,0x0,0x0,0x0,0x3b,0xc8,0xff,0xb0, + 0x0,0x0,0x0,0x0,0x3c,0x6f,0xe,0xa0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff, + 0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x2,0xff,0xff,0xdb,0xe8,0x0,0x0,0xff, + 0xff,0xe3,0xe0,0x1,0x4,0xff,0xff,0xd5,0xd0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x2d, + 0x30,0x32,0x0,0x2d,0x30,0x33,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2d, + 0x30,0x33,0x3e,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Guadeloupe + 0x0,0x0,0x0,0xaa, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x93, + 0x37,0x33,0xac,0x0,0x1,0xff,0xff,0xc6,0x54,0x0,0x0,0xff,0xff,0xc7,0xc0,0x0, + 0x4,0x4c,0x4d,0x54,0x0,0x41,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, + 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0x93,0x37,0x33,0xac,0x0,0x1,0xff,0xff,0xc6,0x54,0x0, + 0x0,0xff,0xff,0xc7,0xc0,0x0,0x4,0x4c,0x4d,0x54,0x0,0x41,0x53,0x54,0x0,0x0, + 0x0,0x0,0x0,0xa,0x41,0x53,0x54,0x34,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Marigot + 0x0,0x0,0x0,0xaa, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x93, + 0x37,0x33,0xac,0x0,0x1,0xff,0xff,0xc6,0x54,0x0,0x0,0xff,0xff,0xc7,0xc0,0x0, + 0x4,0x4c,0x4d,0x54,0x0,0x41,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, + 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0x93,0x37,0x33,0xac,0x0,0x1,0xff,0xff,0xc6,0x54,0x0, + 0x0,0xff,0xff,0xc7,0xc0,0x0,0x4,0x4c,0x4d,0x54,0x0,0x41,0x53,0x54,0x0,0x0, + 0x0,0x0,0x0,0xa,0x41,0x53,0x54,0x34,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Cuiaba + 0x0,0x0,0x7,0xc4, + 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x60,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0xf8,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x9b,0x80,0x77,0xfc,0x0,0x0,0x0,0x0,0x27, - 0xf5,0x7a,0xe0,0x0,0x0,0x0,0x0,0x28,0xe5,0x5d,0xd0,0x0,0x0,0x0,0x0,0x29, - 0xd5,0x5c,0xe0,0x0,0x0,0x0,0x0,0x2a,0xc5,0x3f,0xd0,0x0,0x0,0x0,0x0,0x2b, - 0xbe,0x79,0x60,0x0,0x0,0x0,0x0,0x2c,0xd3,0x46,0x50,0x0,0x0,0x0,0x0,0x2d, - 0x9e,0x5b,0x60,0x0,0x0,0x0,0x0,0x2e,0xb3,0x28,0x50,0x0,0x0,0x0,0x0,0x2f, - 0x7e,0x3d,0x60,0x0,0x0,0x0,0x0,0x30,0x93,0xa,0x50,0x0,0x0,0x0,0x0,0x31, - 0x67,0x59,0xe0,0x0,0x0,0x0,0x0,0x32,0x72,0xec,0x50,0x0,0x0,0x0,0x0,0x33, - 0x47,0x3b,0xe0,0x0,0x0,0x0,0x0,0x34,0x52,0xce,0x50,0x0,0x0,0x0,0x0,0x35, - 0x27,0x1d,0xe0,0x0,0x0,0x0,0x0,0x36,0x32,0xb0,0x50,0x0,0x0,0x0,0x0,0x37, - 0x6,0xff,0xe0,0x0,0x0,0x0,0x0,0x38,0x1b,0xcc,0xd0,0x0,0x0,0x0,0x0,0x38, - 0xe6,0xe1,0xe0,0x0,0x0,0x0,0x0,0x39,0xfb,0xae,0xd0,0x0,0x0,0x0,0x0,0x3a, - 0xc6,0xc3,0xe0,0x0,0x0,0x0,0x0,0x3b,0xdb,0x90,0xd0,0x0,0x0,0x0,0x0,0x3c, - 0xaf,0xe0,0x60,0x0,0x0,0x0,0x0,0x3d,0xbb,0x72,0xd0,0x0,0x0,0x0,0x0,0x3e, - 0x8f,0xc2,0x60,0x0,0x0,0x0,0x0,0x3f,0x9b,0x54,0xd0,0x0,0x0,0x0,0x0,0x40, - 0x6f,0xa4,0x60,0x0,0x0,0x0,0x0,0x41,0x84,0x71,0x50,0x0,0x0,0x0,0x0,0x42, - 0x4f,0x86,0x60,0x0,0x0,0x0,0x0,0x43,0x64,0x53,0x50,0x0,0x0,0x0,0x0,0x44, - 0x2f,0x68,0x60,0x0,0x0,0x0,0x0,0x45,0x44,0x35,0x50,0x0,0x0,0x0,0x0,0x45, - 0xf3,0x9a,0xe0,0x0,0x0,0x0,0x0,0x47,0x2d,0x51,0xd0,0x0,0x0,0x0,0x0,0x47, - 0xd3,0x7c,0xe0,0x0,0x0,0x0,0x0,0x49,0xd,0x33,0xd0,0x0,0x0,0x0,0x0,0x49, - 0xb3,0x5e,0xe0,0x0,0x0,0x0,0x0,0x4a,0xed,0x15,0xd0,0x0,0x0,0x0,0x0,0x4b, - 0x9c,0x7b,0x60,0x0,0x0,0x0,0x0,0x4c,0xd6,0x32,0x50,0x0,0x0,0x0,0x0,0x4d, - 0x7c,0x5d,0x60,0x0,0x0,0x0,0x0,0x4e,0xb6,0x14,0x50,0x0,0x0,0x0,0x0,0x4f, - 0x5c,0x3f,0x60,0x0,0x0,0x0,0x0,0x50,0x95,0xf6,0x50,0x0,0x0,0x0,0x0,0x51, - 0x3c,0x21,0x60,0x0,0x0,0x0,0x0,0x52,0x75,0xd8,0x50,0x0,0x0,0x0,0x0,0x53, - 0x1c,0x3,0x60,0x0,0x0,0x0,0x0,0x54,0x55,0xba,0x50,0x0,0x0,0x0,0x0,0x54, - 0xfb,0xe5,0x60,0x0,0x0,0x0,0x0,0x56,0x35,0x9c,0x50,0x0,0x0,0x0,0x0,0x56, - 0xe5,0x1,0xe0,0x0,0x0,0x0,0x0,0x58,0x1e,0xb8,0xd0,0x0,0x0,0x0,0x0,0x58, - 0xc4,0xe3,0xe0,0x0,0x0,0x0,0x0,0x59,0xfe,0x9a,0xd0,0x0,0x0,0x0,0x0,0x5a, - 0xa4,0xc5,0xe0,0x0,0x0,0x0,0x0,0x5b,0xde,0x7c,0xd0,0x0,0x0,0x0,0x0,0x5c, - 0x84,0xa7,0xe0,0x0,0x0,0x0,0x0,0x5d,0xbe,0x5e,0xd0,0x0,0x0,0x0,0x0,0x5e, - 0x64,0x89,0xe0,0x0,0x0,0x0,0x0,0x5f,0x9e,0x40,0xd0,0x0,0x0,0x0,0x0,0x60, - 0x4d,0xa6,0x60,0x0,0x0,0x0,0x0,0x61,0x87,0x5d,0x50,0x0,0x0,0x0,0x0,0x62, - 0x2d,0x88,0x60,0x0,0x0,0x0,0x0,0x63,0x67,0x3f,0x50,0x0,0x0,0x0,0x0,0x64, - 0xd,0x6a,0x60,0x0,0x0,0x0,0x0,0x65,0x47,0x21,0x50,0x0,0x0,0x0,0x0,0x65, - 0xed,0x4c,0x60,0x0,0x0,0x0,0x0,0x67,0x27,0x3,0x50,0x0,0x0,0x0,0x0,0x67, - 0xcd,0x2e,0x60,0x0,0x0,0x0,0x0,0x69,0x6,0xe5,0x50,0x0,0x0,0x0,0x0,0x69, - 0xad,0x10,0x60,0x0,0x0,0x0,0x0,0x6a,0xe6,0xc7,0x50,0x0,0x0,0x0,0x0,0x6b, - 0x96,0x2c,0xe0,0x0,0x0,0x0,0x0,0x6c,0xcf,0xe3,0xd0,0x0,0x0,0x0,0x0,0x6d, - 0x76,0xe,0xe0,0x0,0x0,0x0,0x0,0x6e,0xaf,0xc5,0xd0,0x0,0x0,0x0,0x0,0x6f, - 0x55,0xf0,0xe0,0x0,0x0,0x0,0x0,0x70,0x8f,0xa7,0xd0,0x0,0x0,0x0,0x0,0x71, - 0x35,0xd2,0xe0,0x0,0x0,0x0,0x0,0x72,0x6f,0x89,0xd0,0x0,0x0,0x0,0x0,0x73, - 0x15,0xb4,0xe0,0x0,0x0,0x0,0x0,0x74,0x4f,0x6b,0xd0,0x0,0x0,0x0,0x0,0x74, - 0xfe,0xd1,0x60,0x0,0x0,0x0,0x0,0x76,0x38,0x88,0x50,0x0,0x0,0x0,0x0,0x76, - 0xde,0xb3,0x60,0x0,0x0,0x0,0x0,0x78,0x18,0x6a,0x50,0x0,0x0,0x0,0x0,0x78, - 0xbe,0x95,0x60,0x0,0x0,0x0,0x0,0x79,0xf8,0x4c,0x50,0x0,0x0,0x0,0x0,0x7a, - 0x9e,0x77,0x60,0x0,0x0,0x0,0x0,0x7b,0xd8,0x2e,0x50,0x0,0x0,0x0,0x0,0x7c, - 0x7e,0x59,0x60,0x0,0x0,0x0,0x0,0x7d,0xb8,0x10,0x50,0x0,0x0,0x0,0x0,0x7e, - 0x5e,0x3b,0x60,0x0,0x0,0x0,0x0,0x7f,0x97,0xf2,0x50,0x0,0x2,0x1,0x2,0x1, + 0x0,0x0,0x7f,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0x96, + 0xaa,0x7b,0x94,0xb8,0xf,0x57,0xf0,0xb8,0xfd,0x4e,0xb0,0xb9,0xf1,0x42,0x40,0xba, + 0xde,0x82,0x30,0xda,0x38,0xbc,0x40,0xda,0xec,0x8,0x40,0xdc,0x19,0xef,0xc0,0xdc, + 0xb9,0x67,0x30,0xdd,0xfb,0x23,0x40,0xde,0x9b,0xec,0x30,0xdf,0xdd,0xa8,0x40,0xe0, + 0x54,0x41,0x30,0xf4,0x98,0xd,0xc0,0xf5,0x5,0x6c,0x30,0xf6,0xc0,0x72,0x40,0xf7, + 0xe,0x2c,0xb0,0xf8,0x51,0x3a,0x40,0xf8,0xc7,0xd3,0x30,0xfa,0xa,0xe0,0xc0,0xfa, + 0xa9,0x6,0xb0,0xfb,0xec,0x14,0x40,0xfc,0x8b,0x8b,0xb0,0x1d,0xc9,0x9c,0x40,0x1e, + 0x78,0xe5,0xb0,0x1f,0xa0,0x43,0xc0,0x20,0x33,0xdd,0xb0,0x21,0x81,0x77,0x40,0x22, + 0xb,0xd6,0xb0,0x23,0x58,0x1e,0xc0,0x23,0xe2,0x7e,0x30,0x25,0x38,0x0,0xc0,0x25, + 0xd4,0xd5,0x30,0x27,0x21,0x1d,0x40,0x27,0xbd,0xf1,0xb0,0x29,0x0,0xff,0x40,0x29, + 0x94,0x99,0x30,0x2a,0xea,0x1b,0xc0,0x2b,0x6b,0x40,0xb0,0x2c,0xc0,0xc3,0x40,0x2d, + 0x66,0xd2,0x30,0x2e,0xa0,0xa5,0x40,0x2f,0x46,0xb4,0x30,0x30,0x80,0x87,0x40,0x31, + 0x1d,0x5b,0xb0,0x32,0x57,0x2e,0xc0,0x33,0x6,0x78,0x30,0x34,0x38,0x62,0x40,0x34, + 0xf8,0xcf,0x30,0x36,0x20,0x2d,0x40,0x36,0xcf,0x76,0xb0,0x37,0xf6,0xd4,0xc0,0x38, + 0xb8,0x93,0x30,0x39,0xdf,0xf1,0x40,0x3a,0x8f,0x3a,0xb0,0x3b,0xc9,0xd,0xc0,0x3c, + 0x6f,0x1c,0xb0,0x3d,0xc4,0x9f,0x40,0x3e,0x4e,0xfe,0xb0,0x41,0x87,0x6,0x40,0x42, + 0x17,0xfd,0x30,0x43,0x51,0xd0,0x40,0x43,0xf7,0xdf,0x30,0x45,0x4d,0x61,0xc0,0x45, + 0xe0,0xfb,0xb0,0x47,0x11,0x94,0x40,0x47,0xb7,0xa3,0x30,0x48,0xfa,0xb0,0xc0,0x49, + 0x97,0x85,0x30,0x4a,0xda,0x92,0xc0,0x4b,0x80,0xa1,0xb0,0x4c,0xba,0x74,0xc0,0x4d, + 0x60,0x83,0xb0,0x4e,0x9a,0x56,0xc0,0x4f,0x49,0xa0,0x30,0x50,0x83,0x73,0x40,0x51, + 0x20,0x47,0xb0,0x52,0x63,0x55,0x40,0x53,0x0,0x29,0xb0,0x54,0x43,0x37,0x40,0x54, + 0xe9,0x46,0x30,0x56,0x23,0x19,0x40,0x56,0xc9,0x28,0x30,0x58,0x2,0xfb,0x40,0x58, + 0xa9,0xa,0x30,0x59,0xe2,0xdd,0x40,0x5a,0x88,0xec,0x30,0x5b,0xcb,0xf9,0xc0,0x5c, + 0x68,0xce,0x30,0x5d,0xab,0xdb,0xc0,0x5e,0x48,0xb0,0x30,0x5f,0x8b,0xbd,0xc0,0x60, + 0x31,0xcc,0xb0,0x61,0x6b,0x9f,0xc0,0x62,0x11,0xae,0xb0,0x63,0x4b,0x81,0xc0,0x63, + 0xfa,0xcb,0x30,0x65,0x2b,0x63,0xc0,0x65,0xd1,0x72,0xb0,0x67,0x14,0x80,0x40,0x67, + 0xb1,0x54,0xb0,0x68,0xf4,0x62,0x40,0x69,0x9a,0x71,0x30,0x6a,0xd4,0x44,0x40,0x6b, + 0x7a,0x53,0x30,0x6c,0xb4,0x26,0x40,0x6d,0x5a,0x35,0x30,0x6e,0x94,0x8,0x40,0x6f, + 0x3a,0x17,0x30,0x70,0x7d,0x24,0xc0,0x71,0x19,0xf9,0x30,0x72,0x5d,0x6,0xc0,0x72, + 0xf9,0xdb,0x30,0x74,0x3c,0xe8,0xc0,0x74,0xd9,0xbd,0x30,0x76,0x1c,0xca,0xc0,0x76, + 0xc2,0xd9,0xb0,0x77,0xfc,0xac,0xc0,0x78,0xab,0xf6,0x30,0x79,0xdc,0x8e,0xc0,0x7a, + 0x82,0x9d,0xb0,0x7b,0xc5,0xab,0x40,0x7c,0x62,0x7f,0xb0,0x7d,0xa5,0x8d,0x40,0x7e, + 0x4b,0x9c,0x30,0x7f,0x85,0x6f,0x40,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0xbf,0x84,0x0, - 0x0,0xff,0xff,0xd5,0xd0,0x1,0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0x4c,0x4d,0x54, - 0x0,0x41,0x44,0x54,0x0,0x41,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa, - 0x41,0x53,0x54,0x34,0x41,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30,0x2c,0x4d, - 0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Guayaquil - 0x0,0x0,0x0,0xcb, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0xff,0xff,0xcb,0x6c,0x0,0x0,0xff,0xff,0xd5,0xd0, + 0x1,0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x2d,0x30,0x33,0x0, + 0x2d,0x30,0x34,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x81,0x0,0x0, + 0x0,0x3,0x0,0x0,0x0,0xc,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff, + 0xff,0xff,0x96,0xaa,0x7b,0x94,0xff,0xff,0xff,0xff,0xb8,0xf,0x57,0xf0,0xff,0xff, + 0xff,0xff,0xb8,0xfd,0x4e,0xb0,0xff,0xff,0xff,0xff,0xb9,0xf1,0x42,0x40,0xff,0xff, + 0xff,0xff,0xba,0xde,0x82,0x30,0xff,0xff,0xff,0xff,0xda,0x38,0xbc,0x40,0xff,0xff, + 0xff,0xff,0xda,0xec,0x8,0x40,0xff,0xff,0xff,0xff,0xdc,0x19,0xef,0xc0,0xff,0xff, + 0xff,0xff,0xdc,0xb9,0x67,0x30,0xff,0xff,0xff,0xff,0xdd,0xfb,0x23,0x40,0xff,0xff, + 0xff,0xff,0xde,0x9b,0xec,0x30,0xff,0xff,0xff,0xff,0xdf,0xdd,0xa8,0x40,0xff,0xff, + 0xff,0xff,0xe0,0x54,0x41,0x30,0xff,0xff,0xff,0xff,0xf4,0x98,0xd,0xc0,0xff,0xff, + 0xff,0xff,0xf5,0x5,0x6c,0x30,0xff,0xff,0xff,0xff,0xf6,0xc0,0x72,0x40,0xff,0xff, + 0xff,0xff,0xf7,0xe,0x2c,0xb0,0xff,0xff,0xff,0xff,0xf8,0x51,0x3a,0x40,0xff,0xff, + 0xff,0xff,0xf8,0xc7,0xd3,0x30,0xff,0xff,0xff,0xff,0xfa,0xa,0xe0,0xc0,0xff,0xff, + 0xff,0xff,0xfa,0xa9,0x6,0xb0,0xff,0xff,0xff,0xff,0xfb,0xec,0x14,0x40,0xff,0xff, + 0xff,0xff,0xfc,0x8b,0x8b,0xb0,0x0,0x0,0x0,0x0,0x1d,0xc9,0x9c,0x40,0x0,0x0, + 0x0,0x0,0x1e,0x78,0xe5,0xb0,0x0,0x0,0x0,0x0,0x1f,0xa0,0x43,0xc0,0x0,0x0, + 0x0,0x0,0x20,0x33,0xdd,0xb0,0x0,0x0,0x0,0x0,0x21,0x81,0x77,0x40,0x0,0x0, + 0x0,0x0,0x22,0xb,0xd6,0xb0,0x0,0x0,0x0,0x0,0x23,0x58,0x1e,0xc0,0x0,0x0, + 0x0,0x0,0x23,0xe2,0x7e,0x30,0x0,0x0,0x0,0x0,0x25,0x38,0x0,0xc0,0x0,0x0, + 0x0,0x0,0x25,0xd4,0xd5,0x30,0x0,0x0,0x0,0x0,0x27,0x21,0x1d,0x40,0x0,0x0, + 0x0,0x0,0x27,0xbd,0xf1,0xb0,0x0,0x0,0x0,0x0,0x29,0x0,0xff,0x40,0x0,0x0, + 0x0,0x0,0x29,0x94,0x99,0x30,0x0,0x0,0x0,0x0,0x2a,0xea,0x1b,0xc0,0x0,0x0, + 0x0,0x0,0x2b,0x6b,0x40,0xb0,0x0,0x0,0x0,0x0,0x2c,0xc0,0xc3,0x40,0x0,0x0, + 0x0,0x0,0x2d,0x66,0xd2,0x30,0x0,0x0,0x0,0x0,0x2e,0xa0,0xa5,0x40,0x0,0x0, + 0x0,0x0,0x2f,0x46,0xb4,0x30,0x0,0x0,0x0,0x0,0x30,0x80,0x87,0x40,0x0,0x0, + 0x0,0x0,0x31,0x1d,0x5b,0xb0,0x0,0x0,0x0,0x0,0x32,0x57,0x2e,0xc0,0x0,0x0, + 0x0,0x0,0x33,0x6,0x78,0x30,0x0,0x0,0x0,0x0,0x34,0x38,0x62,0x40,0x0,0x0, + 0x0,0x0,0x34,0xf8,0xcf,0x30,0x0,0x0,0x0,0x0,0x36,0x20,0x2d,0x40,0x0,0x0, + 0x0,0x0,0x36,0xcf,0x76,0xb0,0x0,0x0,0x0,0x0,0x37,0xf6,0xd4,0xc0,0x0,0x0, + 0x0,0x0,0x38,0xb8,0x93,0x30,0x0,0x0,0x0,0x0,0x39,0xdf,0xf1,0x40,0x0,0x0, + 0x0,0x0,0x3a,0x8f,0x3a,0xb0,0x0,0x0,0x0,0x0,0x3b,0xc9,0xd,0xc0,0x0,0x0, + 0x0,0x0,0x3c,0x6f,0x1c,0xb0,0x0,0x0,0x0,0x0,0x3d,0xc4,0x9f,0x40,0x0,0x0, + 0x0,0x0,0x3e,0x4e,0xfe,0xb0,0x0,0x0,0x0,0x0,0x41,0x87,0x6,0x40,0x0,0x0, + 0x0,0x0,0x42,0x17,0xfd,0x30,0x0,0x0,0x0,0x0,0x43,0x51,0xd0,0x40,0x0,0x0, + 0x0,0x0,0x43,0xf7,0xdf,0x30,0x0,0x0,0x0,0x0,0x45,0x4d,0x61,0xc0,0x0,0x0, + 0x0,0x0,0x45,0xe0,0xfb,0xb0,0x0,0x0,0x0,0x0,0x47,0x11,0x94,0x40,0x0,0x0, + 0x0,0x0,0x47,0xb7,0xa3,0x30,0x0,0x0,0x0,0x0,0x48,0xfa,0xb0,0xc0,0x0,0x0, + 0x0,0x0,0x49,0x97,0x85,0x30,0x0,0x0,0x0,0x0,0x4a,0xda,0x92,0xc0,0x0,0x0, + 0x0,0x0,0x4b,0x80,0xa1,0xb0,0x0,0x0,0x0,0x0,0x4c,0xba,0x74,0xc0,0x0,0x0, + 0x0,0x0,0x4d,0x60,0x83,0xb0,0x0,0x0,0x0,0x0,0x4e,0x9a,0x56,0xc0,0x0,0x0, + 0x0,0x0,0x4f,0x49,0xa0,0x30,0x0,0x0,0x0,0x0,0x50,0x83,0x73,0x40,0x0,0x0, + 0x0,0x0,0x51,0x20,0x47,0xb0,0x0,0x0,0x0,0x0,0x52,0x63,0x55,0x40,0x0,0x0, + 0x0,0x0,0x53,0x0,0x29,0xb0,0x0,0x0,0x0,0x0,0x54,0x43,0x37,0x40,0x0,0x0, + 0x0,0x0,0x54,0xe9,0x46,0x30,0x0,0x0,0x0,0x0,0x56,0x23,0x19,0x40,0x0,0x0, + 0x0,0x0,0x56,0xc9,0x28,0x30,0x0,0x0,0x0,0x0,0x58,0x2,0xfb,0x40,0x0,0x0, + 0x0,0x0,0x58,0xa9,0xa,0x30,0x0,0x0,0x0,0x0,0x59,0xe2,0xdd,0x40,0x0,0x0, + 0x0,0x0,0x5a,0x88,0xec,0x30,0x0,0x0,0x0,0x0,0x5b,0xcb,0xf9,0xc0,0x0,0x0, + 0x0,0x0,0x5c,0x68,0xce,0x30,0x0,0x0,0x0,0x0,0x5d,0xab,0xdb,0xc0,0x0,0x0, + 0x0,0x0,0x5e,0x48,0xb0,0x30,0x0,0x0,0x0,0x0,0x5f,0x8b,0xbd,0xc0,0x0,0x0, + 0x0,0x0,0x60,0x31,0xcc,0xb0,0x0,0x0,0x0,0x0,0x61,0x6b,0x9f,0xc0,0x0,0x0, + 0x0,0x0,0x62,0x11,0xae,0xb0,0x0,0x0,0x0,0x0,0x63,0x4b,0x81,0xc0,0x0,0x0, + 0x0,0x0,0x63,0xfa,0xcb,0x30,0x0,0x0,0x0,0x0,0x65,0x2b,0x63,0xc0,0x0,0x0, + 0x0,0x0,0x65,0xd1,0x72,0xb0,0x0,0x0,0x0,0x0,0x67,0x14,0x80,0x40,0x0,0x0, + 0x0,0x0,0x67,0xb1,0x54,0xb0,0x0,0x0,0x0,0x0,0x68,0xf4,0x62,0x40,0x0,0x0, + 0x0,0x0,0x69,0x9a,0x71,0x30,0x0,0x0,0x0,0x0,0x6a,0xd4,0x44,0x40,0x0,0x0, + 0x0,0x0,0x6b,0x7a,0x53,0x30,0x0,0x0,0x0,0x0,0x6c,0xb4,0x26,0x40,0x0,0x0, + 0x0,0x0,0x6d,0x5a,0x35,0x30,0x0,0x0,0x0,0x0,0x6e,0x94,0x8,0x40,0x0,0x0, + 0x0,0x0,0x6f,0x3a,0x17,0x30,0x0,0x0,0x0,0x0,0x70,0x7d,0x24,0xc0,0x0,0x0, + 0x0,0x0,0x71,0x19,0xf9,0x30,0x0,0x0,0x0,0x0,0x72,0x5d,0x6,0xc0,0x0,0x0, + 0x0,0x0,0x72,0xf9,0xdb,0x30,0x0,0x0,0x0,0x0,0x74,0x3c,0xe8,0xc0,0x0,0x0, + 0x0,0x0,0x74,0xd9,0xbd,0x30,0x0,0x0,0x0,0x0,0x76,0x1c,0xca,0xc0,0x0,0x0, + 0x0,0x0,0x76,0xc2,0xd9,0xb0,0x0,0x0,0x0,0x0,0x77,0xfc,0xac,0xc0,0x0,0x0, + 0x0,0x0,0x78,0xab,0xf6,0x30,0x0,0x0,0x0,0x0,0x79,0xdc,0x8e,0xc0,0x0,0x0, + 0x0,0x0,0x7a,0x82,0x9d,0xb0,0x0,0x0,0x0,0x0,0x7b,0xc5,0xab,0x40,0x0,0x0, + 0x0,0x0,0x7c,0x62,0x7f,0xb0,0x0,0x0,0x0,0x0,0x7d,0xa5,0x8d,0x40,0x0,0x0, + 0x0,0x0,0x7e,0x4b,0x9c,0x30,0x0,0x0,0x0,0x0,0x7f,0x85,0x6f,0x40,0x0,0x0, + 0x0,0x0,0x80,0x2b,0x7e,0x30,0x0,0x0,0x0,0x0,0x81,0x65,0x51,0x40,0x0,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0xff, + 0xff,0xcb,0x6c,0x0,0x0,0xff,0xff,0xd5,0xd0,0x1,0x4,0xff,0xff,0xc7,0xc0,0x0, + 0x8,0x4c,0x4d,0x54,0x0,0x2d,0x30,0x33,0x0,0x2d,0x30,0x34,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0xa,0x3c,0x2d,0x30,0x34,0x3e,0x34,0x3c,0x2d,0x30,0x33,0x3e,0x2c, + 0x4d,0x31,0x30,0x2e,0x33,0x2e,0x30,0x2f,0x30,0x2c,0x4d,0x32,0x2e,0x33,0x2e,0x30, + 0x2f,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Sao_Paulo + 0x0,0x0,0x7,0xe0, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0xb6, - 0xa4,0x42,0x18,0x1,0x2,0xff,0xff,0xb5,0x28,0x0,0x0,0xff,0xff,0xb6,0x68,0x0, - 0x4,0xff,0xff,0xb9,0xb0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x51,0x4d,0x54,0x0,0x45, - 0x43,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0, - 0x3,0x0,0x0,0x0,0xc,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff, - 0xff,0x69,0x87,0x26,0x58,0xff,0xff,0xff,0xff,0xb6,0xa4,0x42,0x18,0x0,0x1,0x2, - 0xff,0xff,0xb5,0x28,0x0,0x0,0xff,0xff,0xb6,0x68,0x0,0x4,0xff,0xff,0xb9,0xb0, - 0x0,0x8,0x4c,0x4d,0x54,0x0,0x51,0x4d,0x54,0x0,0x45,0x43,0x54,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0xa,0x45,0x43,0x54,0x35,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Godthab - 0x0,0x0,0x7,0x55, - 0x54, - 0x5a,0x69,0x66,0x33,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x76,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0x9b, - 0x80,0x68,0x0,0x13,0x4d,0x7c,0x50,0x14,0x33,0xfa,0x90,0x15,0x23,0xeb,0x90,0x16, - 0x13,0xdc,0x90,0x17,0x3,0xcd,0x90,0x17,0xf3,0xbe,0x90,0x18,0xe3,0xaf,0x90,0x19, - 0xd3,0xa0,0x90,0x1a,0xc3,0x91,0x90,0x1b,0xbc,0xbd,0x10,0x1c,0xac,0xae,0x10,0x1d, - 0x9c,0x9f,0x10,0x1e,0x8c,0x90,0x10,0x1f,0x7c,0x81,0x10,0x20,0x6c,0x72,0x10,0x21, - 0x5c,0x63,0x10,0x22,0x4c,0x54,0x10,0x23,0x3c,0x45,0x10,0x24,0x2c,0x36,0x10,0x25, - 0x1c,0x27,0x10,0x26,0xc,0x18,0x10,0x27,0x5,0x43,0x90,0x27,0xf5,0x34,0x90,0x28, - 0xe5,0x25,0x90,0x29,0xd5,0x16,0x90,0x2a,0xc5,0x7,0x90,0x2b,0xb4,0xf8,0x90,0x2c, - 0xa4,0xe9,0x90,0x2d,0x94,0xda,0x90,0x2e,0x84,0xcb,0x90,0x2f,0x74,0xbc,0x90,0x30, - 0x64,0xad,0x90,0x31,0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34, - 0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38, - 0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b, - 0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f, - 0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43, - 0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47, - 0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a, - 0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e, - 0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52, - 0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56, - 0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59, - 0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d, - 0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61, - 0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65, - 0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68, - 0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c, - 0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70, - 0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74, - 0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78, - 0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b, - 0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f, - 0x8e,0x7f,0x90,0x0,0x1,0x4,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0xff,0xff,0xcf,0x80,0x0,0x0,0xff, - 0xff,0xd5,0xd0,0x0,0x4,0xff,0xff,0xd5,0xd0,0x0,0x4,0xff,0xff,0xe3,0xe0,0x1, - 0x8,0xff,0xff,0xe3,0xe0,0x1,0x8,0x4c,0x4d,0x54,0x0,0x57,0x47,0x54,0x0,0x57, - 0x47,0x53,0x54,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x1,0x1,0x0,0x54,0x5a, - 0x69,0x66,0x33,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x76,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xd,0xf8,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xff,0xff,0xff,0xff,0x9b,0x80,0x68,0x0,0x0,0x0,0x0,0x0,0x13,0x4d, - 0x7c,0x50,0x0,0x0,0x0,0x0,0x14,0x33,0xfa,0x90,0x0,0x0,0x0,0x0,0x15,0x23, - 0xeb,0x90,0x0,0x0,0x0,0x0,0x16,0x13,0xdc,0x90,0x0,0x0,0x0,0x0,0x17,0x3, - 0xcd,0x90,0x0,0x0,0x0,0x0,0x17,0xf3,0xbe,0x90,0x0,0x0,0x0,0x0,0x18,0xe3, - 0xaf,0x90,0x0,0x0,0x0,0x0,0x19,0xd3,0xa0,0x90,0x0,0x0,0x0,0x0,0x1a,0xc3, - 0x91,0x90,0x0,0x0,0x0,0x0,0x1b,0xbc,0xbd,0x10,0x0,0x0,0x0,0x0,0x1c,0xac, - 0xae,0x10,0x0,0x0,0x0,0x0,0x1d,0x9c,0x9f,0x10,0x0,0x0,0x0,0x0,0x1e,0x8c, - 0x90,0x10,0x0,0x0,0x0,0x0,0x1f,0x7c,0x81,0x10,0x0,0x0,0x0,0x0,0x20,0x6c, - 0x72,0x10,0x0,0x0,0x0,0x0,0x21,0x5c,0x63,0x10,0x0,0x0,0x0,0x0,0x22,0x4c, - 0x54,0x10,0x0,0x0,0x0,0x0,0x23,0x3c,0x45,0x10,0x0,0x0,0x0,0x0,0x24,0x2c, - 0x36,0x10,0x0,0x0,0x0,0x0,0x25,0x1c,0x27,0x10,0x0,0x0,0x0,0x0,0x26,0xc, - 0x18,0x10,0x0,0x0,0x0,0x0,0x27,0x5,0x43,0x90,0x0,0x0,0x0,0x0,0x27,0xf5, - 0x34,0x90,0x0,0x0,0x0,0x0,0x28,0xe5,0x25,0x90,0x0,0x0,0x0,0x0,0x29,0xd5, - 0x16,0x90,0x0,0x0,0x0,0x0,0x2a,0xc5,0x7,0x90,0x0,0x0,0x0,0x0,0x2b,0xb4, - 0xf8,0x90,0x0,0x0,0x0,0x0,0x2c,0xa4,0xe9,0x90,0x0,0x0,0x0,0x0,0x2d,0x94, - 0xda,0x90,0x0,0x0,0x0,0x0,0x2e,0x84,0xcb,0x90,0x0,0x0,0x0,0x0,0x2f,0x74, - 0xbc,0x90,0x0,0x0,0x0,0x0,0x30,0x64,0xad,0x90,0x0,0x0,0x0,0x0,0x31,0x5d, - 0xd9,0x10,0x0,0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d, - 0xbb,0x10,0x0,0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d, - 0x9d,0x10,0x0,0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd, - 0x7f,0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd, - 0x61,0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd, - 0x43,0x10,0x0,0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6, - 0x5f,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86, - 0x41,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66, - 0x23,0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46, - 0x5,0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25, - 0xe7,0x90,0x0,0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5, - 0xc9,0x90,0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee, - 0xe6,0x10,0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce, - 0xc8,0x10,0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae, - 0xaa,0x10,0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e, - 0x8c,0x10,0x0,0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e, - 0x6e,0x10,0x0,0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57, - 0x8a,0x90,0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37, - 0x6c,0x90,0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17, - 0x4e,0x90,0x0,0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7, - 0x30,0x90,0x0,0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7, - 0x12,0x90,0x0,0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6, - 0xf4,0x90,0x0,0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0, - 0x11,0x10,0x0,0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f, - 0xf3,0x10,0x0,0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f, - 0xd5,0x10,0x0,0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f, - 0xb7,0x10,0x0,0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f, - 0x99,0x10,0x0,0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8, - 0xb5,0x90,0x0,0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8, - 0x97,0x90,0x0,0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8, - 0x79,0x90,0x0,0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8, - 0x5b,0x90,0x0,0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88, - 0x3d,0x90,0x0,0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68, - 0x1f,0x90,0x0,0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51, - 0x3c,0x10,0x0,0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31, - 0x1e,0x10,0x0,0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11, - 0x0,0x10,0x0,0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0, - 0xe2,0x10,0x0,0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0, - 0xc4,0x10,0x0,0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0, - 0xa6,0x10,0x0,0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99, - 0xc2,0x90,0x0,0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79, - 0xa4,0x90,0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x1,0x4,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0xff,0xff,0xcf,0x80,0x0,0x0,0xff,0xff,0xd5,0xd0,0x0,0x4,0xff,0xff,0xd5,0xd0, - 0x0,0x4,0xff,0xff,0xe3,0xe0,0x1,0x8,0xff,0xff,0xe3,0xe0,0x1,0x8,0x4c,0x4d, - 0x54,0x0,0x57,0x47,0x54,0x0,0x57,0x47,0x53,0x54,0x0,0x0,0x0,0x1,0x1,0x0, - 0x0,0x0,0x1,0x1,0x0,0xa,0x57,0x47,0x54,0x33,0x57,0x47,0x53,0x54,0x2c,0x4d, - 0x33,0x2e,0x35,0x2e,0x30,0x2f,0x2d,0x32,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30, - 0x2f,0x2d,0x31,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Whitehorse - 0x0,0x0,0x8,0x2d, + 0x0,0x0,0x81,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0x96, + 0xaa,0x72,0xb4,0xb8,0xf,0x49,0xe0,0xb8,0xfd,0x40,0xa0,0xb9,0xf1,0x34,0x30,0xba, + 0xde,0x74,0x20,0xda,0x38,0xae,0x30,0xda,0xeb,0xfa,0x30,0xdc,0x19,0xe1,0xb0,0xdc, + 0xb9,0x59,0x20,0xdd,0xfb,0x15,0x30,0xde,0x9b,0xde,0x20,0xdf,0xdd,0x9a,0x30,0xe0, + 0x54,0x33,0x20,0xf4,0x5a,0x9,0x30,0xf5,0x5,0x5e,0x20,0xf6,0xc0,0x64,0x30,0xf7, + 0xe,0x1e,0xa0,0xf8,0x51,0x2c,0x30,0xf8,0xc7,0xc5,0x20,0xfa,0xa,0xd2,0xb0,0xfa, + 0xa8,0xf8,0xa0,0xfb,0xec,0x6,0x30,0xfc,0x8b,0x7d,0xa0,0x1d,0xc9,0x8e,0x30,0x1e, + 0x78,0xd7,0xa0,0x1f,0xa0,0x35,0xb0,0x20,0x33,0xcf,0xa0,0x21,0x81,0x69,0x30,0x22, + 0xb,0xc8,0xa0,0x23,0x58,0x10,0xb0,0x23,0xe2,0x70,0x20,0x25,0x37,0xf2,0xb0,0x25, + 0xd4,0xc7,0x20,0x27,0x21,0xf,0x30,0x27,0xbd,0xe3,0xa0,0x29,0x0,0xf1,0x30,0x29, + 0x94,0x8b,0x20,0x2a,0xea,0xd,0xb0,0x2b,0x6b,0x32,0xa0,0x2c,0xc0,0xb5,0x30,0x2d, + 0x66,0xc4,0x20,0x2e,0xa0,0x97,0x30,0x2f,0x46,0xa6,0x20,0x30,0x80,0x79,0x30,0x31, + 0x1d,0x4d,0xa0,0x32,0x57,0x20,0xb0,0x33,0x6,0x6a,0x20,0x34,0x38,0x54,0x30,0x34, + 0xf8,0xc1,0x20,0x36,0x20,0x1f,0x30,0x36,0xcf,0x68,0xa0,0x37,0xf6,0xc6,0xb0,0x38, + 0xb8,0x85,0x20,0x39,0xdf,0xe3,0x30,0x3a,0x8f,0x2c,0xa0,0x3b,0xc8,0xff,0xb0,0x3c, + 0x6f,0xe,0xa0,0x3d,0xc4,0x91,0x30,0x3e,0x4e,0xf0,0xa0,0x3f,0x91,0xfe,0x30,0x40, + 0x2e,0xd2,0xa0,0x41,0x86,0xf8,0x30,0x42,0x17,0xef,0x20,0x43,0x51,0xc2,0x30,0x43, + 0xf7,0xd1,0x20,0x45,0x4d,0x53,0xb0,0x45,0xe0,0xed,0xa0,0x47,0x11,0x86,0x30,0x47, + 0xb7,0x95,0x20,0x48,0xfa,0xa2,0xb0,0x49,0x97,0x77,0x20,0x4a,0xda,0x84,0xb0,0x4b, + 0x80,0x93,0xa0,0x4c,0xba,0x66,0xb0,0x4d,0x60,0x75,0xa0,0x4e,0x9a,0x48,0xb0,0x4f, + 0x49,0x92,0x20,0x50,0x83,0x65,0x30,0x51,0x20,0x39,0xa0,0x52,0x63,0x47,0x30,0x53, + 0x0,0x1b,0xa0,0x54,0x43,0x29,0x30,0x54,0xe9,0x38,0x20,0x56,0x23,0xb,0x30,0x56, + 0xc9,0x1a,0x20,0x58,0x2,0xed,0x30,0x58,0xa8,0xfc,0x20,0x59,0xe2,0xcf,0x30,0x5a, + 0x88,0xde,0x20,0x5b,0xcb,0xeb,0xb0,0x5c,0x68,0xc0,0x20,0x5d,0xab,0xcd,0xb0,0x5e, + 0x48,0xa2,0x20,0x5f,0x8b,0xaf,0xb0,0x60,0x31,0xbe,0xa0,0x61,0x6b,0x91,0xb0,0x62, + 0x11,0xa0,0xa0,0x63,0x4b,0x73,0xb0,0x63,0xfa,0xbd,0x20,0x65,0x2b,0x55,0xb0,0x65, + 0xd1,0x64,0xa0,0x67,0x14,0x72,0x30,0x67,0xb1,0x46,0xa0,0x68,0xf4,0x54,0x30,0x69, + 0x9a,0x63,0x20,0x6a,0xd4,0x36,0x30,0x6b,0x7a,0x45,0x20,0x6c,0xb4,0x18,0x30,0x6d, + 0x5a,0x27,0x20,0x6e,0x93,0xfa,0x30,0x6f,0x3a,0x9,0x20,0x70,0x7d,0x16,0xb0,0x71, + 0x19,0xeb,0x20,0x72,0x5c,0xf8,0xb0,0x72,0xf9,0xcd,0x20,0x74,0x3c,0xda,0xb0,0x74, + 0xd9,0xaf,0x20,0x76,0x1c,0xbc,0xb0,0x76,0xc2,0xcb,0xa0,0x77,0xfc,0x9e,0xb0,0x78, + 0xab,0xe8,0x20,0x79,0xdc,0x80,0xb0,0x7a,0x82,0x8f,0xa0,0x7b,0xc5,0x9d,0x30,0x7c, + 0x62,0x71,0xa0,0x7d,0xa5,0x7f,0x30,0x7e,0x4b,0x8e,0x20,0x7f,0x85,0x61,0x30,0x0, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0xff,0xff,0xd4,0x4c,0x0,0x0,0xff,0xff,0xe3,0xe0,0x1,0x4,0xff,0xff,0xd5,0xd0, + 0x0,0x8,0x4c,0x4d,0x54,0x0,0x2d,0x30,0x32,0x0,0x2d,0x30,0x33,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc, + 0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x96,0xaa,0x72,0xb4, + 0xff,0xff,0xff,0xff,0xb8,0xf,0x49,0xe0,0xff,0xff,0xff,0xff,0xb8,0xfd,0x40,0xa0, + 0xff,0xff,0xff,0xff,0xb9,0xf1,0x34,0x30,0xff,0xff,0xff,0xff,0xba,0xde,0x74,0x20, + 0xff,0xff,0xff,0xff,0xda,0x38,0xae,0x30,0xff,0xff,0xff,0xff,0xda,0xeb,0xfa,0x30, + 0xff,0xff,0xff,0xff,0xdc,0x19,0xe1,0xb0,0xff,0xff,0xff,0xff,0xdc,0xb9,0x59,0x20, + 0xff,0xff,0xff,0xff,0xdd,0xfb,0x15,0x30,0xff,0xff,0xff,0xff,0xde,0x9b,0xde,0x20, + 0xff,0xff,0xff,0xff,0xdf,0xdd,0x9a,0x30,0xff,0xff,0xff,0xff,0xe0,0x54,0x33,0x20, + 0xff,0xff,0xff,0xff,0xf4,0x5a,0x9,0x30,0xff,0xff,0xff,0xff,0xf5,0x5,0x5e,0x20, + 0xff,0xff,0xff,0xff,0xf6,0xc0,0x64,0x30,0xff,0xff,0xff,0xff,0xf7,0xe,0x1e,0xa0, + 0xff,0xff,0xff,0xff,0xf8,0x51,0x2c,0x30,0xff,0xff,0xff,0xff,0xf8,0xc7,0xc5,0x20, + 0xff,0xff,0xff,0xff,0xfa,0xa,0xd2,0xb0,0xff,0xff,0xff,0xff,0xfa,0xa8,0xf8,0xa0, + 0xff,0xff,0xff,0xff,0xfb,0xec,0x6,0x30,0xff,0xff,0xff,0xff,0xfc,0x8b,0x7d,0xa0, + 0x0,0x0,0x0,0x0,0x1d,0xc9,0x8e,0x30,0x0,0x0,0x0,0x0,0x1e,0x78,0xd7,0xa0, + 0x0,0x0,0x0,0x0,0x1f,0xa0,0x35,0xb0,0x0,0x0,0x0,0x0,0x20,0x33,0xcf,0xa0, + 0x0,0x0,0x0,0x0,0x21,0x81,0x69,0x30,0x0,0x0,0x0,0x0,0x22,0xb,0xc8,0xa0, + 0x0,0x0,0x0,0x0,0x23,0x58,0x10,0xb0,0x0,0x0,0x0,0x0,0x23,0xe2,0x70,0x20, + 0x0,0x0,0x0,0x0,0x25,0x37,0xf2,0xb0,0x0,0x0,0x0,0x0,0x25,0xd4,0xc7,0x20, + 0x0,0x0,0x0,0x0,0x27,0x21,0xf,0x30,0x0,0x0,0x0,0x0,0x27,0xbd,0xe3,0xa0, + 0x0,0x0,0x0,0x0,0x29,0x0,0xf1,0x30,0x0,0x0,0x0,0x0,0x29,0x94,0x8b,0x20, + 0x0,0x0,0x0,0x0,0x2a,0xea,0xd,0xb0,0x0,0x0,0x0,0x0,0x2b,0x6b,0x32,0xa0, + 0x0,0x0,0x0,0x0,0x2c,0xc0,0xb5,0x30,0x0,0x0,0x0,0x0,0x2d,0x66,0xc4,0x20, + 0x0,0x0,0x0,0x0,0x2e,0xa0,0x97,0x30,0x0,0x0,0x0,0x0,0x2f,0x46,0xa6,0x20, + 0x0,0x0,0x0,0x0,0x30,0x80,0x79,0x30,0x0,0x0,0x0,0x0,0x31,0x1d,0x4d,0xa0, + 0x0,0x0,0x0,0x0,0x32,0x57,0x20,0xb0,0x0,0x0,0x0,0x0,0x33,0x6,0x6a,0x20, + 0x0,0x0,0x0,0x0,0x34,0x38,0x54,0x30,0x0,0x0,0x0,0x0,0x34,0xf8,0xc1,0x20, + 0x0,0x0,0x0,0x0,0x36,0x20,0x1f,0x30,0x0,0x0,0x0,0x0,0x36,0xcf,0x68,0xa0, + 0x0,0x0,0x0,0x0,0x37,0xf6,0xc6,0xb0,0x0,0x0,0x0,0x0,0x38,0xb8,0x85,0x20, + 0x0,0x0,0x0,0x0,0x39,0xdf,0xe3,0x30,0x0,0x0,0x0,0x0,0x3a,0x8f,0x2c,0xa0, + 0x0,0x0,0x0,0x0,0x3b,0xc8,0xff,0xb0,0x0,0x0,0x0,0x0,0x3c,0x6f,0xe,0xa0, + 0x0,0x0,0x0,0x0,0x3d,0xc4,0x91,0x30,0x0,0x0,0x0,0x0,0x3e,0x4e,0xf0,0xa0, + 0x0,0x0,0x0,0x0,0x3f,0x91,0xfe,0x30,0x0,0x0,0x0,0x0,0x40,0x2e,0xd2,0xa0, + 0x0,0x0,0x0,0x0,0x41,0x86,0xf8,0x30,0x0,0x0,0x0,0x0,0x42,0x17,0xef,0x20, + 0x0,0x0,0x0,0x0,0x43,0x51,0xc2,0x30,0x0,0x0,0x0,0x0,0x43,0xf7,0xd1,0x20, + 0x0,0x0,0x0,0x0,0x45,0x4d,0x53,0xb0,0x0,0x0,0x0,0x0,0x45,0xe0,0xed,0xa0, + 0x0,0x0,0x0,0x0,0x47,0x11,0x86,0x30,0x0,0x0,0x0,0x0,0x47,0xb7,0x95,0x20, + 0x0,0x0,0x0,0x0,0x48,0xfa,0xa2,0xb0,0x0,0x0,0x0,0x0,0x49,0x97,0x77,0x20, + 0x0,0x0,0x0,0x0,0x4a,0xda,0x84,0xb0,0x0,0x0,0x0,0x0,0x4b,0x80,0x93,0xa0, + 0x0,0x0,0x0,0x0,0x4c,0xba,0x66,0xb0,0x0,0x0,0x0,0x0,0x4d,0x60,0x75,0xa0, + 0x0,0x0,0x0,0x0,0x4e,0x9a,0x48,0xb0,0x0,0x0,0x0,0x0,0x4f,0x49,0x92,0x20, + 0x0,0x0,0x0,0x0,0x50,0x83,0x65,0x30,0x0,0x0,0x0,0x0,0x51,0x20,0x39,0xa0, + 0x0,0x0,0x0,0x0,0x52,0x63,0x47,0x30,0x0,0x0,0x0,0x0,0x53,0x0,0x1b,0xa0, + 0x0,0x0,0x0,0x0,0x54,0x43,0x29,0x30,0x0,0x0,0x0,0x0,0x54,0xe9,0x38,0x20, + 0x0,0x0,0x0,0x0,0x56,0x23,0xb,0x30,0x0,0x0,0x0,0x0,0x56,0xc9,0x1a,0x20, + 0x0,0x0,0x0,0x0,0x58,0x2,0xed,0x30,0x0,0x0,0x0,0x0,0x58,0xa8,0xfc,0x20, + 0x0,0x0,0x0,0x0,0x59,0xe2,0xcf,0x30,0x0,0x0,0x0,0x0,0x5a,0x88,0xde,0x20, + 0x0,0x0,0x0,0x0,0x5b,0xcb,0xeb,0xb0,0x0,0x0,0x0,0x0,0x5c,0x68,0xc0,0x20, + 0x0,0x0,0x0,0x0,0x5d,0xab,0xcd,0xb0,0x0,0x0,0x0,0x0,0x5e,0x48,0xa2,0x20, + 0x0,0x0,0x0,0x0,0x5f,0x8b,0xaf,0xb0,0x0,0x0,0x0,0x0,0x60,0x31,0xbe,0xa0, + 0x0,0x0,0x0,0x0,0x61,0x6b,0x91,0xb0,0x0,0x0,0x0,0x0,0x62,0x11,0xa0,0xa0, + 0x0,0x0,0x0,0x0,0x63,0x4b,0x73,0xb0,0x0,0x0,0x0,0x0,0x63,0xfa,0xbd,0x20, + 0x0,0x0,0x0,0x0,0x65,0x2b,0x55,0xb0,0x0,0x0,0x0,0x0,0x65,0xd1,0x64,0xa0, + 0x0,0x0,0x0,0x0,0x67,0x14,0x72,0x30,0x0,0x0,0x0,0x0,0x67,0xb1,0x46,0xa0, + 0x0,0x0,0x0,0x0,0x68,0xf4,0x54,0x30,0x0,0x0,0x0,0x0,0x69,0x9a,0x63,0x20, + 0x0,0x0,0x0,0x0,0x6a,0xd4,0x36,0x30,0x0,0x0,0x0,0x0,0x6b,0x7a,0x45,0x20, + 0x0,0x0,0x0,0x0,0x6c,0xb4,0x18,0x30,0x0,0x0,0x0,0x0,0x6d,0x5a,0x27,0x20, + 0x0,0x0,0x0,0x0,0x6e,0x93,0xfa,0x30,0x0,0x0,0x0,0x0,0x6f,0x3a,0x9,0x20, + 0x0,0x0,0x0,0x0,0x70,0x7d,0x16,0xb0,0x0,0x0,0x0,0x0,0x71,0x19,0xeb,0x20, + 0x0,0x0,0x0,0x0,0x72,0x5c,0xf8,0xb0,0x0,0x0,0x0,0x0,0x72,0xf9,0xcd,0x20, + 0x0,0x0,0x0,0x0,0x74,0x3c,0xda,0xb0,0x0,0x0,0x0,0x0,0x74,0xd9,0xaf,0x20, + 0x0,0x0,0x0,0x0,0x76,0x1c,0xbc,0xb0,0x0,0x0,0x0,0x0,0x76,0xc2,0xcb,0xa0, + 0x0,0x0,0x0,0x0,0x77,0xfc,0x9e,0xb0,0x0,0x0,0x0,0x0,0x78,0xab,0xe8,0x20, + 0x0,0x0,0x0,0x0,0x79,0xdc,0x80,0xb0,0x0,0x0,0x0,0x0,0x7a,0x82,0x8f,0xa0, + 0x0,0x0,0x0,0x0,0x7b,0xc5,0x9d,0x30,0x0,0x0,0x0,0x0,0x7c,0x62,0x71,0xa0, + 0x0,0x0,0x0,0x0,0x7d,0xa5,0x7f,0x30,0x0,0x0,0x0,0x0,0x7e,0x4b,0x8e,0x20, + 0x0,0x0,0x0,0x0,0x7f,0x85,0x61,0x30,0x0,0x0,0x0,0x0,0x80,0x2b,0x70,0x20, + 0x0,0x0,0x0,0x0,0x81,0x65,0x43,0x30,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0xff,0xff,0xd4,0x4c,0x0, + 0x0,0xff,0xff,0xe3,0xe0,0x1,0x4,0xff,0xff,0xd5,0xd0,0x0,0x8,0x4c,0x4d,0x54, + 0x0,0x2d,0x30,0x32,0x0,0x2d,0x30,0x33,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa, + 0x3c,0x2d,0x30,0x33,0x3e,0x33,0x3c,0x2d,0x30,0x32,0x3e,0x2c,0x4d,0x31,0x30,0x2e, + 0x33,0x2e,0x30,0x2f,0x30,0x2c,0x4d,0x32,0x2e,0x33,0x2e,0x30,0x2f,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/St_Kitts + 0x0,0x0,0x0,0xaa, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x7f,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x21,0x80,0x0,0x0,0x0,0x9e, - 0xb8,0xcb,0xb0,0x9f,0xbb,0x23,0xa0,0xa0,0xd0,0xc,0xb0,0xa1,0xa2,0xd2,0x80,0xcb, - 0x89,0x28,0xb0,0xd2,0x23,0xf4,0x70,0xd2,0x61,0x34,0x20,0xf7,0x2f,0x76,0x90,0xf8, - 0x28,0xa2,0x10,0xfb,0x1d,0x5f,0x10,0x13,0x69,0x72,0x20,0x14,0x59,0x55,0x10,0x15, - 0x49,0x54,0x20,0x16,0x39,0x37,0x10,0x17,0x29,0x36,0x20,0x18,0x22,0x53,0x90,0x19, - 0x9,0x18,0x20,0x1a,0x2,0x35,0x90,0x1a,0xf2,0x34,0xa0,0x1b,0xe2,0x17,0x90,0x1c, - 0xd2,0x16,0xa0,0x1d,0xc1,0xf9,0x90,0x1e,0xb1,0xf8,0xa0,0x1f,0xa1,0xdb,0x90,0x20, - 0x76,0x2b,0x20,0x21,0x81,0xbd,0x90,0x22,0x56,0xd,0x20,0x23,0x6a,0xda,0x10,0x24, - 0x35,0xef,0x20,0x25,0x4a,0xbc,0x10,0x26,0x15,0xd1,0x20,0x27,0x2a,0x9e,0x10,0x27, - 0xfe,0xed,0xa0,0x29,0xa,0x80,0x10,0x29,0xde,0xcf,0xa0,0x2a,0xea,0x62,0x10,0x2b, - 0xbe,0xb1,0xa0,0x2c,0xd3,0x7e,0x90,0x2d,0x9e,0x93,0xa0,0x2e,0xb3,0x60,0x90,0x2f, - 0x7e,0x75,0xa0,0x30,0x93,0x42,0x90,0x31,0x67,0x92,0x20,0x32,0x73,0x24,0x90,0x33, - 0x47,0x74,0x20,0x34,0x53,0x6,0x90,0x35,0x27,0x56,0x20,0x36,0x32,0xe8,0x90,0x37, - 0x7,0x38,0x20,0x38,0x1c,0x5,0x10,0x38,0xe7,0x1a,0x20,0x39,0xfb,0xe7,0x10,0x3a, - 0xc6,0xfc,0x20,0x3b,0xdb,0xc9,0x10,0x3c,0xb0,0x18,0xa0,0x3d,0xbb,0xab,0x10,0x3e, - 0x8f,0xfa,0xa0,0x3f,0x9b,0x8d,0x10,0x40,0x6f,0xdc,0xa0,0x41,0x84,0xa9,0x90,0x42, - 0x4f,0xbe,0xa0,0x43,0x64,0x8b,0x90,0x44,0x2f,0xa0,0xa0,0x45,0x44,0x6d,0x90,0x45, - 0xf3,0xd3,0x20,0x47,0x2d,0x8a,0x10,0x47,0xd3,0xb5,0x20,0x49,0xd,0x6c,0x10,0x49, - 0xb3,0x97,0x20,0x4a,0xed,0x4e,0x10,0x4b,0x9c,0xb3,0xa0,0x4c,0xd6,0x6a,0x90,0x4d, - 0x7c,0x95,0xa0,0x4e,0xb6,0x4c,0x90,0x4f,0x5c,0x77,0xa0,0x50,0x96,0x2e,0x90,0x51, - 0x3c,0x59,0xa0,0x52,0x76,0x10,0x90,0x53,0x1c,0x3b,0xa0,0x54,0x55,0xf2,0x90,0x54, - 0xfc,0x1d,0xa0,0x56,0x35,0xd4,0x90,0x56,0xe5,0x3a,0x20,0x58,0x1e,0xf1,0x10,0x58, - 0xc5,0x1c,0x20,0x59,0xfe,0xd3,0x10,0x5a,0xa4,0xfe,0x20,0x5b,0xde,0xb5,0x10,0x5c, - 0x84,0xe0,0x20,0x5d,0xbe,0x97,0x10,0x5e,0x64,0xc2,0x20,0x5f,0x9e,0x79,0x10,0x60, - 0x4d,0xde,0xa0,0x61,0x87,0x95,0x90,0x62,0x2d,0xc0,0xa0,0x63,0x67,0x77,0x90,0x64, - 0xd,0xa2,0xa0,0x65,0x47,0x59,0x90,0x65,0xed,0x84,0xa0,0x67,0x27,0x3b,0x90,0x67, - 0xcd,0x66,0xa0,0x69,0x7,0x1d,0x90,0x69,0xad,0x48,0xa0,0x6a,0xe6,0xff,0x90,0x6b, - 0x96,0x65,0x20,0x6c,0xd0,0x1c,0x10,0x6d,0x76,0x47,0x20,0x6e,0xaf,0xfe,0x10,0x6f, - 0x56,0x29,0x20,0x70,0x8f,0xe0,0x10,0x71,0x36,0xb,0x20,0x72,0x6f,0xc2,0x10,0x73, - 0x15,0xed,0x20,0x74,0x4f,0xa4,0x10,0x74,0xff,0x9,0xa0,0x76,0x38,0xc0,0x90,0x76, - 0xde,0xeb,0xa0,0x78,0x18,0xa2,0x90,0x78,0xbe,0xcd,0xa0,0x79,0xf8,0x84,0x90,0x7a, - 0x9e,0xaf,0xa0,0x7b,0xd8,0x66,0x90,0x7c,0x7e,0x91,0xa0,0x7d,0xb8,0x48,0x90,0x7e, - 0x5e,0x73,0xa0,0x7f,0x98,0x2a,0x90,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x2,0x5, - 0x2,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, - 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, - 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, - 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, - 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, - 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, - 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, - 0x7,0x6,0x7,0x6,0x7,0x6,0xff,0xff,0x81,0x64,0x0,0x0,0xff,0xff,0x8f,0x80, - 0x1,0x4,0xff,0xff,0x81,0x70,0x0,0x8,0xff,0xff,0x8f,0x80,0x1,0xc,0xff,0xff, - 0x8f,0x80,0x1,0x10,0xff,0xff,0x9d,0x90,0x1,0x14,0xff,0xff,0x8f,0x80,0x0,0x19, - 0xff,0xff,0x9d,0x90,0x1,0x1d,0x4c,0x4d,0x54,0x0,0x59,0x44,0x54,0x0,0x59,0x53, - 0x54,0x0,0x59,0x57,0x54,0x0,0x59,0x50,0x54,0x0,0x59,0x44,0x44,0x54,0x0,0x50, - 0x53,0x54,0x0,0x50,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0, - 0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x0,0x0,0x0,0x8,0x0, - 0x0,0x0,0x21,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x7d, - 0x86,0x8a,0x9c,0xff,0xff,0xff,0xff,0x9e,0xb8,0xcb,0xb0,0xff,0xff,0xff,0xff,0x9f, - 0xbb,0x23,0xa0,0xff,0xff,0xff,0xff,0xa0,0xd0,0xc,0xb0,0xff,0xff,0xff,0xff,0xa1, - 0xa2,0xd2,0x80,0xff,0xff,0xff,0xff,0xcb,0x89,0x28,0xb0,0xff,0xff,0xff,0xff,0xd2, - 0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x61,0x34,0x20,0xff,0xff,0xff,0xff,0xf7, - 0x2f,0x76,0x90,0xff,0xff,0xff,0xff,0xf8,0x28,0xa2,0x10,0xff,0xff,0xff,0xff,0xfb, - 0x1d,0x5f,0x10,0x0,0x0,0x0,0x0,0x13,0x69,0x72,0x20,0x0,0x0,0x0,0x0,0x14, - 0x59,0x55,0x10,0x0,0x0,0x0,0x0,0x15,0x49,0x54,0x20,0x0,0x0,0x0,0x0,0x16, - 0x39,0x37,0x10,0x0,0x0,0x0,0x0,0x17,0x29,0x36,0x20,0x0,0x0,0x0,0x0,0x18, - 0x22,0x53,0x90,0x0,0x0,0x0,0x0,0x19,0x9,0x18,0x20,0x0,0x0,0x0,0x0,0x1a, - 0x2,0x35,0x90,0x0,0x0,0x0,0x0,0x1a,0xf2,0x34,0xa0,0x0,0x0,0x0,0x0,0x1b, - 0xe2,0x17,0x90,0x0,0x0,0x0,0x0,0x1c,0xd2,0x16,0xa0,0x0,0x0,0x0,0x0,0x1d, - 0xc1,0xf9,0x90,0x0,0x0,0x0,0x0,0x1e,0xb1,0xf8,0xa0,0x0,0x0,0x0,0x0,0x1f, - 0xa1,0xdb,0x90,0x0,0x0,0x0,0x0,0x20,0x76,0x2b,0x20,0x0,0x0,0x0,0x0,0x21, - 0x81,0xbd,0x90,0x0,0x0,0x0,0x0,0x22,0x56,0xd,0x20,0x0,0x0,0x0,0x0,0x23, - 0x6a,0xda,0x10,0x0,0x0,0x0,0x0,0x24,0x35,0xef,0x20,0x0,0x0,0x0,0x0,0x25, - 0x4a,0xbc,0x10,0x0,0x0,0x0,0x0,0x26,0x15,0xd1,0x20,0x0,0x0,0x0,0x0,0x27, - 0x2a,0x9e,0x10,0x0,0x0,0x0,0x0,0x27,0xfe,0xed,0xa0,0x0,0x0,0x0,0x0,0x29, - 0xa,0x80,0x10,0x0,0x0,0x0,0x0,0x29,0xde,0xcf,0xa0,0x0,0x0,0x0,0x0,0x2a, - 0xea,0x62,0x10,0x0,0x0,0x0,0x0,0x2b,0xbe,0xb1,0xa0,0x0,0x0,0x0,0x0,0x2c, - 0xd3,0x7e,0x90,0x0,0x0,0x0,0x0,0x2d,0x9e,0x93,0xa0,0x0,0x0,0x0,0x0,0x2e, - 0xb3,0x60,0x90,0x0,0x0,0x0,0x0,0x2f,0x7e,0x75,0xa0,0x0,0x0,0x0,0x0,0x30, - 0x93,0x42,0x90,0x0,0x0,0x0,0x0,0x31,0x67,0x92,0x20,0x0,0x0,0x0,0x0,0x32, - 0x73,0x24,0x90,0x0,0x0,0x0,0x0,0x33,0x47,0x74,0x20,0x0,0x0,0x0,0x0,0x34, - 0x53,0x6,0x90,0x0,0x0,0x0,0x0,0x35,0x27,0x56,0x20,0x0,0x0,0x0,0x0,0x36, - 0x32,0xe8,0x90,0x0,0x0,0x0,0x0,0x37,0x7,0x38,0x20,0x0,0x0,0x0,0x0,0x38, - 0x1c,0x5,0x10,0x0,0x0,0x0,0x0,0x38,0xe7,0x1a,0x20,0x0,0x0,0x0,0x0,0x39, - 0xfb,0xe7,0x10,0x0,0x0,0x0,0x0,0x3a,0xc6,0xfc,0x20,0x0,0x0,0x0,0x0,0x3b, - 0xdb,0xc9,0x10,0x0,0x0,0x0,0x0,0x3c,0xb0,0x18,0xa0,0x0,0x0,0x0,0x0,0x3d, - 0xbb,0xab,0x10,0x0,0x0,0x0,0x0,0x3e,0x8f,0xfa,0xa0,0x0,0x0,0x0,0x0,0x3f, - 0x9b,0x8d,0x10,0x0,0x0,0x0,0x0,0x40,0x6f,0xdc,0xa0,0x0,0x0,0x0,0x0,0x41, - 0x84,0xa9,0x90,0x0,0x0,0x0,0x0,0x42,0x4f,0xbe,0xa0,0x0,0x0,0x0,0x0,0x43, - 0x64,0x8b,0x90,0x0,0x0,0x0,0x0,0x44,0x2f,0xa0,0xa0,0x0,0x0,0x0,0x0,0x45, - 0x44,0x6d,0x90,0x0,0x0,0x0,0x0,0x45,0xf3,0xd3,0x20,0x0,0x0,0x0,0x0,0x47, - 0x2d,0x8a,0x10,0x0,0x0,0x0,0x0,0x47,0xd3,0xb5,0x20,0x0,0x0,0x0,0x0,0x49, - 0xd,0x6c,0x10,0x0,0x0,0x0,0x0,0x49,0xb3,0x97,0x20,0x0,0x0,0x0,0x0,0x4a, - 0xed,0x4e,0x10,0x0,0x0,0x0,0x0,0x4b,0x9c,0xb3,0xa0,0x0,0x0,0x0,0x0,0x4c, - 0xd6,0x6a,0x90,0x0,0x0,0x0,0x0,0x4d,0x7c,0x95,0xa0,0x0,0x0,0x0,0x0,0x4e, - 0xb6,0x4c,0x90,0x0,0x0,0x0,0x0,0x4f,0x5c,0x77,0xa0,0x0,0x0,0x0,0x0,0x50, - 0x96,0x2e,0x90,0x0,0x0,0x0,0x0,0x51,0x3c,0x59,0xa0,0x0,0x0,0x0,0x0,0x52, - 0x76,0x10,0x90,0x0,0x0,0x0,0x0,0x53,0x1c,0x3b,0xa0,0x0,0x0,0x0,0x0,0x54, - 0x55,0xf2,0x90,0x0,0x0,0x0,0x0,0x54,0xfc,0x1d,0xa0,0x0,0x0,0x0,0x0,0x56, - 0x35,0xd4,0x90,0x0,0x0,0x0,0x0,0x56,0xe5,0x3a,0x20,0x0,0x0,0x0,0x0,0x58, - 0x1e,0xf1,0x10,0x0,0x0,0x0,0x0,0x58,0xc5,0x1c,0x20,0x0,0x0,0x0,0x0,0x59, - 0xfe,0xd3,0x10,0x0,0x0,0x0,0x0,0x5a,0xa4,0xfe,0x20,0x0,0x0,0x0,0x0,0x5b, - 0xde,0xb5,0x10,0x0,0x0,0x0,0x0,0x5c,0x84,0xe0,0x20,0x0,0x0,0x0,0x0,0x5d, - 0xbe,0x97,0x10,0x0,0x0,0x0,0x0,0x5e,0x64,0xc2,0x20,0x0,0x0,0x0,0x0,0x5f, - 0x9e,0x79,0x10,0x0,0x0,0x0,0x0,0x60,0x4d,0xde,0xa0,0x0,0x0,0x0,0x0,0x61, - 0x87,0x95,0x90,0x0,0x0,0x0,0x0,0x62,0x2d,0xc0,0xa0,0x0,0x0,0x0,0x0,0x63, - 0x67,0x77,0x90,0x0,0x0,0x0,0x0,0x64,0xd,0xa2,0xa0,0x0,0x0,0x0,0x0,0x65, - 0x47,0x59,0x90,0x0,0x0,0x0,0x0,0x65,0xed,0x84,0xa0,0x0,0x0,0x0,0x0,0x67, - 0x27,0x3b,0x90,0x0,0x0,0x0,0x0,0x67,0xcd,0x66,0xa0,0x0,0x0,0x0,0x0,0x69, - 0x7,0x1d,0x90,0x0,0x0,0x0,0x0,0x69,0xad,0x48,0xa0,0x0,0x0,0x0,0x0,0x6a, - 0xe6,0xff,0x90,0x0,0x0,0x0,0x0,0x6b,0x96,0x65,0x20,0x0,0x0,0x0,0x0,0x6c, - 0xd0,0x1c,0x10,0x0,0x0,0x0,0x0,0x6d,0x76,0x47,0x20,0x0,0x0,0x0,0x0,0x6e, - 0xaf,0xfe,0x10,0x0,0x0,0x0,0x0,0x6f,0x56,0x29,0x20,0x0,0x0,0x0,0x0,0x70, - 0x8f,0xe0,0x10,0x0,0x0,0x0,0x0,0x71,0x36,0xb,0x20,0x0,0x0,0x0,0x0,0x72, - 0x6f,0xc2,0x10,0x0,0x0,0x0,0x0,0x73,0x15,0xed,0x20,0x0,0x0,0x0,0x0,0x74, - 0x4f,0xa4,0x10,0x0,0x0,0x0,0x0,0x74,0xff,0x9,0xa0,0x0,0x0,0x0,0x0,0x76, - 0x38,0xc0,0x90,0x0,0x0,0x0,0x0,0x76,0xde,0xeb,0xa0,0x0,0x0,0x0,0x0,0x78, - 0x18,0xa2,0x90,0x0,0x0,0x0,0x0,0x78,0xbe,0xcd,0xa0,0x0,0x0,0x0,0x0,0x79, - 0xf8,0x84,0x90,0x0,0x0,0x0,0x0,0x7a,0x9e,0xaf,0xa0,0x0,0x0,0x0,0x0,0x7b, - 0xd8,0x66,0x90,0x0,0x0,0x0,0x0,0x7c,0x7e,0x91,0xa0,0x0,0x0,0x0,0x0,0x7d, - 0xb8,0x48,0x90,0x0,0x0,0x0,0x0,0x7e,0x5e,0x73,0xa0,0x0,0x0,0x0,0x0,0x7f, - 0x98,0x2a,0x90,0x0,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x2,0x5,0x2,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0xff,0xff,0x81,0x64,0x0,0x0,0xff,0xff,0x8f,0x80,0x1,0x4,0xff, - 0xff,0x81,0x70,0x0,0x8,0xff,0xff,0x8f,0x80,0x1,0xc,0xff,0xff,0x8f,0x80,0x1, - 0x10,0xff,0xff,0x9d,0x90,0x1,0x14,0xff,0xff,0x8f,0x80,0x0,0x19,0xff,0xff,0x9d, - 0x90,0x1,0x1d,0x4c,0x4d,0x54,0x0,0x59,0x44,0x54,0x0,0x59,0x53,0x54,0x0,0x59, - 0x57,0x54,0x0,0x59,0x50,0x54,0x0,0x59,0x44,0x44,0x54,0x0,0x50,0x53,0x54,0x0, - 0x50,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x1,0x0,0x0,0x0,0xa,0x50,0x53,0x54,0x38,0x50,0x44,0x54,0x2c,0x4d,0x33,0x2e, - 0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Anchorage - 0x0,0x0,0x9,0x50, + 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x93, + 0x37,0x33,0xac,0x0,0x1,0xff,0xff,0xc6,0x54,0x0,0x0,0xff,0xff,0xc7,0xc0,0x0, + 0x4,0x4c,0x4d,0x54,0x0,0x41,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, + 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0x93,0x37,0x33,0xac,0x0,0x1,0xff,0xff,0xc6,0x54,0x0, + 0x0,0xff,0xff,0xc7,0xc0,0x0,0x4,0x4c,0x4d,0x54,0x0,0x41,0x53,0x54,0x0,0x0, + 0x0,0x0,0x0,0xa,0x41,0x53,0x54,0x34,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Mexico_City + 0x0,0x0,0x6,0x52, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x90,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x2a,0x80,0x0,0x0,0x0,0xcb, - 0x89,0x36,0xc0,0xd2,0x23,0xf4,0x70,0xd2,0x61,0x42,0x30,0xfa,0xd2,0x47,0xa0,0xfe, - 0xb8,0x63,0x40,0xff,0xa8,0x46,0x30,0x0,0x98,0x45,0x40,0x1,0x88,0x28,0x30,0x2, - 0x78,0x27,0x40,0x3,0x71,0x44,0xb0,0x4,0x61,0x43,0xc0,0x5,0x51,0x26,0xb0,0x6, - 0x41,0x25,0xc0,0x7,0x31,0x8,0xb0,0x7,0x8d,0x5f,0xc0,0x9,0x10,0xea,0xb0,0x9, - 0xad,0xdb,0x40,0xa,0xf0,0xcc,0xb0,0xb,0xe0,0xcb,0xc0,0xc,0xd9,0xe9,0x30,0xd, - 0xc0,0xad,0xc0,0xe,0xb9,0xcb,0x30,0xf,0xa9,0xca,0x40,0x10,0x99,0xad,0x30,0x11, - 0x89,0xac,0x40,0x12,0x79,0x8f,0x30,0x13,0x69,0x8e,0x40,0x14,0x59,0x71,0x30,0x15, - 0x49,0x70,0x40,0x16,0x39,0x53,0x30,0x17,0x29,0x52,0x40,0x18,0x22,0x6f,0xb0,0x19, - 0x9,0x34,0x40,0x1a,0x2,0x51,0xb0,0x1a,0x2b,0x14,0x10,0x1a,0xf2,0x42,0xb0,0x1b, - 0xe2,0x25,0xa0,0x1c,0xd2,0x24,0xb0,0x1d,0xc2,0x7,0xa0,0x1e,0xb2,0x6,0xb0,0x1f, - 0xa1,0xe9,0xa0,0x20,0x76,0x39,0x30,0x21,0x81,0xcb,0xa0,0x22,0x56,0x1b,0x30,0x23, - 0x6a,0xe8,0x20,0x24,0x35,0xfd,0x30,0x25,0x4a,0xca,0x20,0x26,0x15,0xdf,0x30,0x27, - 0x2a,0xac,0x20,0x27,0xfe,0xfb,0xb0,0x29,0xa,0x8e,0x20,0x29,0xde,0xdd,0xb0,0x2a, - 0xea,0x70,0x20,0x2b,0xbe,0xbf,0xb0,0x2c,0xd3,0x8c,0xa0,0x2d,0x9e,0xa1,0xb0,0x2e, - 0xb3,0x6e,0xa0,0x2f,0x7e,0x83,0xb0,0x30,0x93,0x50,0xa0,0x31,0x67,0xa0,0x30,0x32, - 0x73,0x32,0xa0,0x33,0x47,0x82,0x30,0x34,0x53,0x14,0xa0,0x35,0x27,0x64,0x30,0x36, - 0x32,0xf6,0xa0,0x37,0x7,0x46,0x30,0x38,0x1c,0x13,0x20,0x38,0xe7,0x28,0x30,0x39, - 0xfb,0xf5,0x20,0x3a,0xc7,0xa,0x30,0x3b,0xdb,0xd7,0x20,0x3c,0xb0,0x26,0xb0,0x3d, - 0xbb,0xb9,0x20,0x3e,0x90,0x8,0xb0,0x3f,0x9b,0x9b,0x20,0x40,0x6f,0xea,0xb0,0x41, - 0x84,0xb7,0xa0,0x42,0x4f,0xcc,0xb0,0x43,0x64,0x99,0xa0,0x44,0x2f,0xae,0xb0,0x45, - 0x44,0x7b,0xa0,0x45,0xf3,0xe1,0x30,0x47,0x2d,0x98,0x20,0x47,0xd3,0xc3,0x30,0x49, - 0xd,0x7a,0x20,0x49,0xb3,0xa5,0x30,0x4a,0xed,0x5c,0x20,0x4b,0x9c,0xc1,0xb0,0x4c, - 0xd6,0x78,0xa0,0x4d,0x7c,0xa3,0xb0,0x4e,0xb6,0x5a,0xa0,0x4f,0x5c,0x85,0xb0,0x50, - 0x96,0x3c,0xa0,0x51,0x3c,0x67,0xb0,0x52,0x76,0x1e,0xa0,0x53,0x1c,0x49,0xb0,0x54, - 0x56,0x0,0xa0,0x54,0xfc,0x2b,0xb0,0x56,0x35,0xe2,0xa0,0x56,0xe5,0x48,0x30,0x58, - 0x1e,0xff,0x20,0x58,0xc5,0x2a,0x30,0x59,0xfe,0xe1,0x20,0x5a,0xa5,0xc,0x30,0x5b, - 0xde,0xc3,0x20,0x5c,0x84,0xee,0x30,0x5d,0xbe,0xa5,0x20,0x5e,0x64,0xd0,0x30,0x5f, - 0x9e,0x87,0x20,0x60,0x4d,0xec,0xb0,0x61,0x87,0xa3,0xa0,0x62,0x2d,0xce,0xb0,0x63, - 0x67,0x85,0xa0,0x64,0xd,0xb0,0xb0,0x65,0x47,0x67,0xa0,0x65,0xed,0x92,0xb0,0x67, - 0x27,0x49,0xa0,0x67,0xcd,0x74,0xb0,0x69,0x7,0x2b,0xa0,0x69,0xad,0x56,0xb0,0x6a, - 0xe7,0xd,0xa0,0x6b,0x96,0x73,0x30,0x6c,0xd0,0x2a,0x20,0x6d,0x76,0x55,0x30,0x6e, - 0xb0,0xc,0x20,0x6f,0x56,0x37,0x30,0x70,0x8f,0xee,0x20,0x71,0x36,0x19,0x30,0x72, - 0x6f,0xd0,0x20,0x73,0x15,0xfb,0x30,0x74,0x4f,0xb2,0x20,0x74,0xff,0x17,0xb0,0x76, - 0x38,0xce,0xa0,0x76,0xde,0xf9,0xb0,0x78,0x18,0xb0,0xa0,0x78,0xbe,0xdb,0xb0,0x79, - 0xf8,0x92,0xa0,0x7a,0x9e,0xbd,0xb0,0x7b,0xd8,0x74,0xa0,0x7c,0x7e,0x9f,0xb0,0x7d, - 0xb8,0x56,0xa0,0x7e,0x5e,0x81,0xb0,0x7f,0x98,0x38,0xa0,0x1,0x2,0x3,0x1,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x6,0x8,0x7, - 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, - 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, - 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, - 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, - 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, - 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, - 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0xff,0xff,0x73,0x78,0x0, - 0x0,0xff,0xff,0x73,0x60,0x0,0x4,0xff,0xff,0x81,0x70,0x1,0x8,0xff,0xff,0x81, - 0x70,0x1,0xd,0xff,0xff,0x73,0x60,0x0,0x12,0xff,0xff,0x81,0x70,0x1,0x17,0xff, - 0xff,0x81,0x70,0x0,0x1c,0xff,0xff,0x8f,0x80,0x1,0x20,0xff,0xff,0x81,0x70,0x0, - 0x25,0x4c,0x4d,0x54,0x0,0x43,0x41,0x54,0x0,0x43,0x41,0x57,0x54,0x0,0x43,0x41, - 0x50,0x54,0x0,0x41,0x48,0x53,0x54,0x0,0x41,0x48,0x44,0x54,0x0,0x59,0x53,0x54, - 0x0,0x41,0x4b,0x44,0x54,0x0,0x41,0x4b,0x53,0x54,0x0,0x0,0x0,0x0,0x1,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, - 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x92,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x2a,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0x3f,0xc0,0xe0,0x8,0xff,0xff,0xff,0xff,0x7d,0x87,0x41, - 0x48,0xff,0xff,0xff,0xff,0xcb,0x89,0x36,0xc0,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4, - 0x70,0xff,0xff,0xff,0xff,0xd2,0x61,0x42,0x30,0xff,0xff,0xff,0xff,0xfa,0xd2,0x47, - 0xa0,0xff,0xff,0xff,0xff,0xfe,0xb8,0x63,0x40,0xff,0xff,0xff,0xff,0xff,0xa8,0x46, - 0x30,0x0,0x0,0x0,0x0,0x0,0x98,0x45,0x40,0x0,0x0,0x0,0x0,0x1,0x88,0x28, - 0x30,0x0,0x0,0x0,0x0,0x2,0x78,0x27,0x40,0x0,0x0,0x0,0x0,0x3,0x71,0x44, - 0xb0,0x0,0x0,0x0,0x0,0x4,0x61,0x43,0xc0,0x0,0x0,0x0,0x0,0x5,0x51,0x26, - 0xb0,0x0,0x0,0x0,0x0,0x6,0x41,0x25,0xc0,0x0,0x0,0x0,0x0,0x7,0x31,0x8, - 0xb0,0x0,0x0,0x0,0x0,0x7,0x8d,0x5f,0xc0,0x0,0x0,0x0,0x0,0x9,0x10,0xea, - 0xb0,0x0,0x0,0x0,0x0,0x9,0xad,0xdb,0x40,0x0,0x0,0x0,0x0,0xa,0xf0,0xcc, - 0xb0,0x0,0x0,0x0,0x0,0xb,0xe0,0xcb,0xc0,0x0,0x0,0x0,0x0,0xc,0xd9,0xe9, - 0x30,0x0,0x0,0x0,0x0,0xd,0xc0,0xad,0xc0,0x0,0x0,0x0,0x0,0xe,0xb9,0xcb, - 0x30,0x0,0x0,0x0,0x0,0xf,0xa9,0xca,0x40,0x0,0x0,0x0,0x0,0x10,0x99,0xad, - 0x30,0x0,0x0,0x0,0x0,0x11,0x89,0xac,0x40,0x0,0x0,0x0,0x0,0x12,0x79,0x8f, - 0x30,0x0,0x0,0x0,0x0,0x13,0x69,0x8e,0x40,0x0,0x0,0x0,0x0,0x14,0x59,0x71, - 0x30,0x0,0x0,0x0,0x0,0x15,0x49,0x70,0x40,0x0,0x0,0x0,0x0,0x16,0x39,0x53, - 0x30,0x0,0x0,0x0,0x0,0x17,0x29,0x52,0x40,0x0,0x0,0x0,0x0,0x18,0x22,0x6f, - 0xb0,0x0,0x0,0x0,0x0,0x19,0x9,0x34,0x40,0x0,0x0,0x0,0x0,0x1a,0x2,0x51, - 0xb0,0x0,0x0,0x0,0x0,0x1a,0x2b,0x14,0x10,0x0,0x0,0x0,0x0,0x1a,0xf2,0x42, - 0xb0,0x0,0x0,0x0,0x0,0x1b,0xe2,0x25,0xa0,0x0,0x0,0x0,0x0,0x1c,0xd2,0x24, - 0xb0,0x0,0x0,0x0,0x0,0x1d,0xc2,0x7,0xa0,0x0,0x0,0x0,0x0,0x1e,0xb2,0x6, - 0xb0,0x0,0x0,0x0,0x0,0x1f,0xa1,0xe9,0xa0,0x0,0x0,0x0,0x0,0x20,0x76,0x39, - 0x30,0x0,0x0,0x0,0x0,0x21,0x81,0xcb,0xa0,0x0,0x0,0x0,0x0,0x22,0x56,0x1b, - 0x30,0x0,0x0,0x0,0x0,0x23,0x6a,0xe8,0x20,0x0,0x0,0x0,0x0,0x24,0x35,0xfd, - 0x30,0x0,0x0,0x0,0x0,0x25,0x4a,0xca,0x20,0x0,0x0,0x0,0x0,0x26,0x15,0xdf, - 0x30,0x0,0x0,0x0,0x0,0x27,0x2a,0xac,0x20,0x0,0x0,0x0,0x0,0x27,0xfe,0xfb, - 0xb0,0x0,0x0,0x0,0x0,0x29,0xa,0x8e,0x20,0x0,0x0,0x0,0x0,0x29,0xde,0xdd, - 0xb0,0x0,0x0,0x0,0x0,0x2a,0xea,0x70,0x20,0x0,0x0,0x0,0x0,0x2b,0xbe,0xbf, - 0xb0,0x0,0x0,0x0,0x0,0x2c,0xd3,0x8c,0xa0,0x0,0x0,0x0,0x0,0x2d,0x9e,0xa1, - 0xb0,0x0,0x0,0x0,0x0,0x2e,0xb3,0x6e,0xa0,0x0,0x0,0x0,0x0,0x2f,0x7e,0x83, - 0xb0,0x0,0x0,0x0,0x0,0x30,0x93,0x50,0xa0,0x0,0x0,0x0,0x0,0x31,0x67,0xa0, - 0x30,0x0,0x0,0x0,0x0,0x32,0x73,0x32,0xa0,0x0,0x0,0x0,0x0,0x33,0x47,0x82, - 0x30,0x0,0x0,0x0,0x0,0x34,0x53,0x14,0xa0,0x0,0x0,0x0,0x0,0x35,0x27,0x64, - 0x30,0x0,0x0,0x0,0x0,0x36,0x32,0xf6,0xa0,0x0,0x0,0x0,0x0,0x37,0x7,0x46, - 0x30,0x0,0x0,0x0,0x0,0x38,0x1c,0x13,0x20,0x0,0x0,0x0,0x0,0x38,0xe7,0x28, - 0x30,0x0,0x0,0x0,0x0,0x39,0xfb,0xf5,0x20,0x0,0x0,0x0,0x0,0x3a,0xc7,0xa, - 0x30,0x0,0x0,0x0,0x0,0x3b,0xdb,0xd7,0x20,0x0,0x0,0x0,0x0,0x3c,0xb0,0x26, - 0xb0,0x0,0x0,0x0,0x0,0x3d,0xbb,0xb9,0x20,0x0,0x0,0x0,0x0,0x3e,0x90,0x8, - 0xb0,0x0,0x0,0x0,0x0,0x3f,0x9b,0x9b,0x20,0x0,0x0,0x0,0x0,0x40,0x6f,0xea, - 0xb0,0x0,0x0,0x0,0x0,0x41,0x84,0xb7,0xa0,0x0,0x0,0x0,0x0,0x42,0x4f,0xcc, - 0xb0,0x0,0x0,0x0,0x0,0x43,0x64,0x99,0xa0,0x0,0x0,0x0,0x0,0x44,0x2f,0xae, - 0xb0,0x0,0x0,0x0,0x0,0x45,0x44,0x7b,0xa0,0x0,0x0,0x0,0x0,0x45,0xf3,0xe1, - 0x30,0x0,0x0,0x0,0x0,0x47,0x2d,0x98,0x20,0x0,0x0,0x0,0x0,0x47,0xd3,0xc3, - 0x30,0x0,0x0,0x0,0x0,0x49,0xd,0x7a,0x20,0x0,0x0,0x0,0x0,0x49,0xb3,0xa5, - 0x30,0x0,0x0,0x0,0x0,0x4a,0xed,0x5c,0x20,0x0,0x0,0x0,0x0,0x4b,0x9c,0xc1, - 0xb0,0x0,0x0,0x0,0x0,0x4c,0xd6,0x78,0xa0,0x0,0x0,0x0,0x0,0x4d,0x7c,0xa3, - 0xb0,0x0,0x0,0x0,0x0,0x4e,0xb6,0x5a,0xa0,0x0,0x0,0x0,0x0,0x4f,0x5c,0x85, - 0xb0,0x0,0x0,0x0,0x0,0x50,0x96,0x3c,0xa0,0x0,0x0,0x0,0x0,0x51,0x3c,0x67, - 0xb0,0x0,0x0,0x0,0x0,0x52,0x76,0x1e,0xa0,0x0,0x0,0x0,0x0,0x53,0x1c,0x49, - 0xb0,0x0,0x0,0x0,0x0,0x54,0x56,0x0,0xa0,0x0,0x0,0x0,0x0,0x54,0xfc,0x2b, - 0xb0,0x0,0x0,0x0,0x0,0x56,0x35,0xe2,0xa0,0x0,0x0,0x0,0x0,0x56,0xe5,0x48, - 0x30,0x0,0x0,0x0,0x0,0x58,0x1e,0xff,0x20,0x0,0x0,0x0,0x0,0x58,0xc5,0x2a, - 0x30,0x0,0x0,0x0,0x0,0x59,0xfe,0xe1,0x20,0x0,0x0,0x0,0x0,0x5a,0xa5,0xc, - 0x30,0x0,0x0,0x0,0x0,0x5b,0xde,0xc3,0x20,0x0,0x0,0x0,0x0,0x5c,0x84,0xee, - 0x30,0x0,0x0,0x0,0x0,0x5d,0xbe,0xa5,0x20,0x0,0x0,0x0,0x0,0x5e,0x64,0xd0, - 0x30,0x0,0x0,0x0,0x0,0x5f,0x9e,0x87,0x20,0x0,0x0,0x0,0x0,0x60,0x4d,0xec, - 0xb0,0x0,0x0,0x0,0x0,0x61,0x87,0xa3,0xa0,0x0,0x0,0x0,0x0,0x62,0x2d,0xce, - 0xb0,0x0,0x0,0x0,0x0,0x63,0x67,0x85,0xa0,0x0,0x0,0x0,0x0,0x64,0xd,0xb0, - 0xb0,0x0,0x0,0x0,0x0,0x65,0x47,0x67,0xa0,0x0,0x0,0x0,0x0,0x65,0xed,0x92, - 0xb0,0x0,0x0,0x0,0x0,0x67,0x27,0x49,0xa0,0x0,0x0,0x0,0x0,0x67,0xcd,0x74, - 0xb0,0x0,0x0,0x0,0x0,0x69,0x7,0x2b,0xa0,0x0,0x0,0x0,0x0,0x69,0xad,0x56, - 0xb0,0x0,0x0,0x0,0x0,0x6a,0xe7,0xd,0xa0,0x0,0x0,0x0,0x0,0x6b,0x96,0x73, - 0x30,0x0,0x0,0x0,0x0,0x6c,0xd0,0x2a,0x20,0x0,0x0,0x0,0x0,0x6d,0x76,0x55, - 0x30,0x0,0x0,0x0,0x0,0x6e,0xb0,0xc,0x20,0x0,0x0,0x0,0x0,0x6f,0x56,0x37, - 0x30,0x0,0x0,0x0,0x0,0x70,0x8f,0xee,0x20,0x0,0x0,0x0,0x0,0x71,0x36,0x19, - 0x30,0x0,0x0,0x0,0x0,0x72,0x6f,0xd0,0x20,0x0,0x0,0x0,0x0,0x73,0x15,0xfb, - 0x30,0x0,0x0,0x0,0x0,0x74,0x4f,0xb2,0x20,0x0,0x0,0x0,0x0,0x74,0xff,0x17, - 0xb0,0x0,0x0,0x0,0x0,0x76,0x38,0xce,0xa0,0x0,0x0,0x0,0x0,0x76,0xde,0xf9, - 0xb0,0x0,0x0,0x0,0x0,0x78,0x18,0xb0,0xa0,0x0,0x0,0x0,0x0,0x78,0xbe,0xdb, - 0xb0,0x0,0x0,0x0,0x0,0x79,0xf8,0x92,0xa0,0x0,0x0,0x0,0x0,0x7a,0x9e,0xbd, - 0xb0,0x0,0x0,0x0,0x0,0x7b,0xd8,0x74,0xa0,0x0,0x0,0x0,0x0,0x7c,0x7e,0x9f, - 0xb0,0x0,0x0,0x0,0x0,0x7d,0xb8,0x56,0xa0,0x0,0x0,0x0,0x0,0x7e,0x5e,0x81, - 0xb0,0x0,0x0,0x0,0x0,0x7f,0x98,0x38,0xa0,0x0,0x1,0x2,0x3,0x4,0x2,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x7,0x9,0x8, - 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, - 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, - 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, - 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, - 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, - 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, - 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x0,0x0,0xc4,0xf8,0x0, - 0x0,0xff,0xff,0x73,0x78,0x0,0x0,0xff,0xff,0x73,0x60,0x0,0x4,0xff,0xff,0x81, - 0x70,0x1,0x8,0xff,0xff,0x81,0x70,0x1,0xd,0xff,0xff,0x73,0x60,0x0,0x12,0xff, - 0xff,0x81,0x70,0x1,0x17,0xff,0xff,0x81,0x70,0x0,0x1c,0xff,0xff,0x8f,0x80,0x1, - 0x20,0xff,0xff,0x81,0x70,0x0,0x25,0x4c,0x4d,0x54,0x0,0x43,0x41,0x54,0x0,0x43, - 0x41,0x57,0x54,0x0,0x43,0x41,0x50,0x54,0x0,0x41,0x48,0x53,0x54,0x0,0x41,0x48, - 0x44,0x54,0x0,0x59,0x53,0x54,0x0,0x41,0x4b,0x44,0x54,0x0,0x41,0x4b,0x53,0x54, - 0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, - 0x0,0x0,0x0,0x0,0x0,0xa,0x41,0x4b,0x53,0x54,0x39,0x41,0x4b,0x44,0x54,0x2c, - 0x4d,0x33,0x2e,0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Toronto - 0x0,0x0,0xd,0xaf, + 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x63,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0xa5, + 0xb6,0xe8,0x70,0xaf,0xf2,0x6e,0xe0,0xb6,0x66,0x56,0x60,0xb7,0x43,0xd2,0x60,0xb8, + 0xc,0x36,0x60,0xb8,0xfd,0x86,0xf0,0xc5,0xde,0xb0,0x60,0xc6,0x97,0x34,0x50,0xc9, + 0x55,0xf1,0xe0,0xc9,0xea,0xdd,0x50,0xcf,0x2,0xc6,0xe0,0xcf,0xb7,0x56,0x50,0xda, + 0x99,0x15,0xe0,0xdb,0x76,0x83,0xd0,0x31,0x67,0x76,0x0,0x32,0x73,0x8,0x70,0x33, + 0x47,0x58,0x0,0x34,0x52,0xea,0x70,0x35,0x27,0x3a,0x0,0x36,0x32,0xcc,0x70,0x37, + 0x7,0x1c,0x0,0x38,0x1b,0xe8,0xf0,0x38,0xe6,0xfe,0x0,0x39,0xfb,0xca,0xf0,0x3a, + 0xf5,0x4,0x80,0x3b,0xb6,0xc2,0xf0,0x3c,0xaf,0xfc,0x80,0x3d,0xbb,0x8e,0xf0,0x3e, + 0x8f,0xde,0x80,0x3f,0x9b,0x70,0xf0,0x40,0x6f,0xc0,0x80,0x41,0x84,0x8d,0x70,0x42, + 0x4f,0xa2,0x80,0x43,0x64,0x6f,0x70,0x44,0x2f,0x84,0x80,0x45,0x44,0x51,0x70,0x46, + 0xf,0x66,0x80,0x47,0x24,0x33,0x70,0x47,0xf8,0x83,0x0,0x49,0x4,0x15,0x70,0x49, + 0xd8,0x65,0x0,0x4a,0xe3,0xf7,0x70,0x4b,0xb8,0x47,0x0,0x4c,0xcd,0x13,0xf0,0x4d, + 0x98,0x29,0x0,0x4e,0xac,0xf5,0xf0,0x4f,0x78,0xb,0x0,0x50,0x8c,0xd7,0xf0,0x51, + 0x61,0x27,0x80,0x52,0x6c,0xb9,0xf0,0x53,0x41,0x9,0x80,0x54,0x4c,0x9b,0xf0,0x55, + 0x20,0xeb,0x80,0x56,0x2c,0x7d,0xf0,0x57,0x0,0xcd,0x80,0x58,0x15,0x9a,0x70,0x58, + 0xe0,0xaf,0x80,0x59,0xf5,0x7c,0x70,0x5a,0xc0,0x91,0x80,0x5b,0xd5,0x5e,0x70,0x5c, + 0xa9,0xae,0x0,0x5d,0xb5,0x40,0x70,0x5e,0x89,0x90,0x0,0x5f,0x95,0x22,0x70,0x60, + 0x69,0x72,0x0,0x61,0x7e,0x3e,0xf0,0x62,0x49,0x54,0x0,0x63,0x5e,0x20,0xf0,0x64, + 0x29,0x36,0x0,0x65,0x3e,0x2,0xf0,0x66,0x12,0x52,0x80,0x67,0x1d,0xe4,0xf0,0x67, + 0xf2,0x34,0x80,0x68,0xfd,0xc6,0xf0,0x69,0xd2,0x16,0x80,0x6a,0xdd,0xa8,0xf0,0x6b, + 0xb1,0xf8,0x80,0x6c,0xc6,0xc5,0x70,0x6d,0x91,0xda,0x80,0x6e,0xa6,0xa7,0x70,0x6f, + 0x71,0xbc,0x80,0x70,0x86,0x89,0x70,0x71,0x5a,0xd9,0x0,0x72,0x66,0x6b,0x70,0x73, + 0x3a,0xbb,0x0,0x74,0x46,0x4d,0x70,0x75,0x1a,0x9d,0x0,0x76,0x2f,0x69,0xf0,0x76, + 0xfa,0x7f,0x0,0x78,0xf,0x4b,0xf0,0x78,0xda,0x61,0x0,0x79,0xef,0x2d,0xf0,0x7a, + 0xba,0x43,0x0,0x7b,0xcf,0xf,0xf0,0x7c,0xa3,0x5f,0x80,0x7d,0xae,0xf1,0xf0,0x7e, + 0x83,0x41,0x80,0x7f,0x8e,0xd3,0xf0,0x0,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x2, + 0x3,0x2,0x4,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0xff,0xff,0xa3,0xc,0x0,0x0, + 0xff,0xff,0x9d,0x90,0x0,0x4,0xff,0xff,0xab,0xa0,0x0,0x8,0xff,0xff,0xb9,0xb0, + 0x1,0xc,0xff,0xff,0xb9,0xb0,0x1,0x10,0x4c,0x4d,0x54,0x0,0x4d,0x53,0x54,0x0, + 0x43,0x53,0x54,0x0,0x43,0x44,0x54,0x0,0x43,0x57,0x54,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0, + 0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x63,0x0,0x0,0x0,0x5,0x0,0x0, + 0x0,0x14,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xa5,0xb6, + 0xe8,0x70,0xff,0xff,0xff,0xff,0xaf,0xf2,0x6e,0xe0,0xff,0xff,0xff,0xff,0xb6,0x66, + 0x56,0x60,0xff,0xff,0xff,0xff,0xb7,0x43,0xd2,0x60,0xff,0xff,0xff,0xff,0xb8,0xc, + 0x36,0x60,0xff,0xff,0xff,0xff,0xb8,0xfd,0x86,0xf0,0xff,0xff,0xff,0xff,0xc5,0xde, + 0xb0,0x60,0xff,0xff,0xff,0xff,0xc6,0x97,0x34,0x50,0xff,0xff,0xff,0xff,0xc9,0x55, + 0xf1,0xe0,0xff,0xff,0xff,0xff,0xc9,0xea,0xdd,0x50,0xff,0xff,0xff,0xff,0xcf,0x2, + 0xc6,0xe0,0xff,0xff,0xff,0xff,0xcf,0xb7,0x56,0x50,0xff,0xff,0xff,0xff,0xda,0x99, + 0x15,0xe0,0xff,0xff,0xff,0xff,0xdb,0x76,0x83,0xd0,0x0,0x0,0x0,0x0,0x31,0x67, + 0x76,0x0,0x0,0x0,0x0,0x0,0x32,0x73,0x8,0x70,0x0,0x0,0x0,0x0,0x33,0x47, + 0x58,0x0,0x0,0x0,0x0,0x0,0x34,0x52,0xea,0x70,0x0,0x0,0x0,0x0,0x35,0x27, + 0x3a,0x0,0x0,0x0,0x0,0x0,0x36,0x32,0xcc,0x70,0x0,0x0,0x0,0x0,0x37,0x7, + 0x1c,0x0,0x0,0x0,0x0,0x0,0x38,0x1b,0xe8,0xf0,0x0,0x0,0x0,0x0,0x38,0xe6, + 0xfe,0x0,0x0,0x0,0x0,0x0,0x39,0xfb,0xca,0xf0,0x0,0x0,0x0,0x0,0x3a,0xf5, + 0x4,0x80,0x0,0x0,0x0,0x0,0x3b,0xb6,0xc2,0xf0,0x0,0x0,0x0,0x0,0x3c,0xaf, + 0xfc,0x80,0x0,0x0,0x0,0x0,0x3d,0xbb,0x8e,0xf0,0x0,0x0,0x0,0x0,0x3e,0x8f, + 0xde,0x80,0x0,0x0,0x0,0x0,0x3f,0x9b,0x70,0xf0,0x0,0x0,0x0,0x0,0x40,0x6f, + 0xc0,0x80,0x0,0x0,0x0,0x0,0x41,0x84,0x8d,0x70,0x0,0x0,0x0,0x0,0x42,0x4f, + 0xa2,0x80,0x0,0x0,0x0,0x0,0x43,0x64,0x6f,0x70,0x0,0x0,0x0,0x0,0x44,0x2f, + 0x84,0x80,0x0,0x0,0x0,0x0,0x45,0x44,0x51,0x70,0x0,0x0,0x0,0x0,0x46,0xf, + 0x66,0x80,0x0,0x0,0x0,0x0,0x47,0x24,0x33,0x70,0x0,0x0,0x0,0x0,0x47,0xf8, + 0x83,0x0,0x0,0x0,0x0,0x0,0x49,0x4,0x15,0x70,0x0,0x0,0x0,0x0,0x49,0xd8, + 0x65,0x0,0x0,0x0,0x0,0x0,0x4a,0xe3,0xf7,0x70,0x0,0x0,0x0,0x0,0x4b,0xb8, + 0x47,0x0,0x0,0x0,0x0,0x0,0x4c,0xcd,0x13,0xf0,0x0,0x0,0x0,0x0,0x4d,0x98, + 0x29,0x0,0x0,0x0,0x0,0x0,0x4e,0xac,0xf5,0xf0,0x0,0x0,0x0,0x0,0x4f,0x78, + 0xb,0x0,0x0,0x0,0x0,0x0,0x50,0x8c,0xd7,0xf0,0x0,0x0,0x0,0x0,0x51,0x61, + 0x27,0x80,0x0,0x0,0x0,0x0,0x52,0x6c,0xb9,0xf0,0x0,0x0,0x0,0x0,0x53,0x41, + 0x9,0x80,0x0,0x0,0x0,0x0,0x54,0x4c,0x9b,0xf0,0x0,0x0,0x0,0x0,0x55,0x20, + 0xeb,0x80,0x0,0x0,0x0,0x0,0x56,0x2c,0x7d,0xf0,0x0,0x0,0x0,0x0,0x57,0x0, + 0xcd,0x80,0x0,0x0,0x0,0x0,0x58,0x15,0x9a,0x70,0x0,0x0,0x0,0x0,0x58,0xe0, + 0xaf,0x80,0x0,0x0,0x0,0x0,0x59,0xf5,0x7c,0x70,0x0,0x0,0x0,0x0,0x5a,0xc0, + 0x91,0x80,0x0,0x0,0x0,0x0,0x5b,0xd5,0x5e,0x70,0x0,0x0,0x0,0x0,0x5c,0xa9, + 0xae,0x0,0x0,0x0,0x0,0x0,0x5d,0xb5,0x40,0x70,0x0,0x0,0x0,0x0,0x5e,0x89, + 0x90,0x0,0x0,0x0,0x0,0x0,0x5f,0x95,0x22,0x70,0x0,0x0,0x0,0x0,0x60,0x69, + 0x72,0x0,0x0,0x0,0x0,0x0,0x61,0x7e,0x3e,0xf0,0x0,0x0,0x0,0x0,0x62,0x49, + 0x54,0x0,0x0,0x0,0x0,0x0,0x63,0x5e,0x20,0xf0,0x0,0x0,0x0,0x0,0x64,0x29, + 0x36,0x0,0x0,0x0,0x0,0x0,0x65,0x3e,0x2,0xf0,0x0,0x0,0x0,0x0,0x66,0x12, + 0x52,0x80,0x0,0x0,0x0,0x0,0x67,0x1d,0xe4,0xf0,0x0,0x0,0x0,0x0,0x67,0xf2, + 0x34,0x80,0x0,0x0,0x0,0x0,0x68,0xfd,0xc6,0xf0,0x0,0x0,0x0,0x0,0x69,0xd2, + 0x16,0x80,0x0,0x0,0x0,0x0,0x6a,0xdd,0xa8,0xf0,0x0,0x0,0x0,0x0,0x6b,0xb1, + 0xf8,0x80,0x0,0x0,0x0,0x0,0x6c,0xc6,0xc5,0x70,0x0,0x0,0x0,0x0,0x6d,0x91, + 0xda,0x80,0x0,0x0,0x0,0x0,0x6e,0xa6,0xa7,0x70,0x0,0x0,0x0,0x0,0x6f,0x71, + 0xbc,0x80,0x0,0x0,0x0,0x0,0x70,0x86,0x89,0x70,0x0,0x0,0x0,0x0,0x71,0x5a, + 0xd9,0x0,0x0,0x0,0x0,0x0,0x72,0x66,0x6b,0x70,0x0,0x0,0x0,0x0,0x73,0x3a, + 0xbb,0x0,0x0,0x0,0x0,0x0,0x74,0x46,0x4d,0x70,0x0,0x0,0x0,0x0,0x75,0x1a, + 0x9d,0x0,0x0,0x0,0x0,0x0,0x76,0x2f,0x69,0xf0,0x0,0x0,0x0,0x0,0x76,0xfa, + 0x7f,0x0,0x0,0x0,0x0,0x0,0x78,0xf,0x4b,0xf0,0x0,0x0,0x0,0x0,0x78,0xda, + 0x61,0x0,0x0,0x0,0x0,0x0,0x79,0xef,0x2d,0xf0,0x0,0x0,0x0,0x0,0x7a,0xba, + 0x43,0x0,0x0,0x0,0x0,0x0,0x7b,0xcf,0xf,0xf0,0x0,0x0,0x0,0x0,0x7c,0xa3, + 0x5f,0x80,0x0,0x0,0x0,0x0,0x7d,0xae,0xf1,0xf0,0x0,0x0,0x0,0x0,0x7e,0x83, + 0x41,0x80,0x0,0x0,0x0,0x0,0x7f,0x8e,0xd3,0xf0,0x0,0x1,0x2,0x1,0x2,0x1, + 0x2,0x3,0x2,0x3,0x2,0x4,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0xff,0xff,0xa3, + 0xc,0x0,0x0,0xff,0xff,0x9d,0x90,0x0,0x4,0xff,0xff,0xab,0xa0,0x0,0x8,0xff, + 0xff,0xb9,0xb0,0x1,0xc,0xff,0xff,0xb9,0xb0,0x1,0x10,0x4c,0x4d,0x54,0x0,0x4d, + 0x53,0x54,0x0,0x43,0x53,0x54,0x0,0x43,0x44,0x54,0x0,0x43,0x57,0x54,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x43,0x53,0x54,0x36,0x43,0x44, + 0x54,0x2c,0x4d,0x34,0x2e,0x31,0x2e,0x30,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30, + 0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Inuvik + 0x0,0x0,0x7,0x88, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xe9,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0x9e, - 0xb8,0x93,0x70,0x9f,0xba,0xeb,0x60,0xa0,0x87,0x2e,0xc8,0xa1,0x9a,0xb1,0x40,0xa2, - 0x94,0x6,0xf0,0xa3,0x55,0xa9,0x40,0xa4,0x86,0x5d,0xf0,0xa5,0x28,0x78,0x60,0xa6, - 0x66,0x3f,0xf0,0xa7,0xc,0x4e,0xe0,0xa8,0x46,0x21,0xf0,0xa8,0xec,0x30,0xe0,0xaa, - 0x1c,0xc9,0x70,0xaa,0xd5,0x4d,0x60,0xab,0xfc,0xab,0x70,0xac,0xb5,0x2f,0x60,0xad, - 0xdc,0x8d,0x70,0xae,0x95,0x11,0x60,0xaf,0xbc,0x6f,0x70,0xb0,0x7e,0x2d,0xe0,0xb1, - 0x9c,0x51,0x70,0xb2,0x67,0x4a,0x60,0xb3,0x7c,0x33,0x70,0xb4,0x47,0x2c,0x60,0xb5, - 0x5c,0x15,0x70,0xb6,0x27,0xe,0x60,0xb7,0x3b,0xf7,0x70,0xb8,0x6,0xf0,0x60,0xb9, - 0x25,0x13,0xf0,0xb9,0xe6,0xd2,0x60,0xbb,0x4,0xf5,0xf0,0xbb,0xcf,0xee,0xe0,0xbc, - 0xe4,0xd7,0xf0,0xbd,0xaf,0xd0,0xe0,0xbe,0xc4,0xb9,0xf0,0xbf,0x8f,0xb2,0xe0,0xc0, - 0xa4,0x9b,0xf0,0xc1,0x6f,0x94,0xe0,0xc2,0x84,0x7d,0xf0,0xc3,0x4f,0x76,0xe0,0xc4, - 0x64,0x5f,0xf0,0xc5,0x2f,0x58,0xe0,0xc6,0x4d,0x7c,0x70,0xc7,0xf,0x3a,0xe0,0xc8, - 0x2d,0x5e,0x70,0xcb,0x88,0xf0,0x70,0xd2,0x23,0xf4,0x70,0xd2,0x60,0xfb,0xe0,0xd3, - 0x75,0xe4,0xf0,0xd4,0x40,0xdd,0xe0,0xd5,0x55,0xaa,0xd0,0xd6,0x20,0xa3,0xc0,0xd7, - 0x35,0x8c,0xd0,0xd8,0x0,0x85,0xc0,0xd9,0x15,0x6e,0xd0,0xda,0x33,0x76,0x40,0xda, - 0xfe,0xa7,0x70,0xdc,0x13,0x74,0x60,0xdc,0xde,0x89,0x70,0xdd,0xa9,0x82,0x60,0xde, - 0xbe,0x6b,0x70,0xdf,0x89,0x64,0x60,0xe0,0x9e,0x4d,0x70,0xe1,0x69,0x46,0x60,0xe2, - 0x7e,0x2f,0x70,0xe3,0x49,0x28,0x60,0xe4,0x5e,0x11,0x70,0xe5,0x29,0xa,0x60,0xe6, - 0x47,0x2d,0xf0,0xe7,0x12,0x26,0xe0,0xe8,0x27,0xf,0xf0,0xe9,0x16,0xf2,0xe0,0xea, - 0x6,0xf1,0xf0,0xea,0xf6,0xd4,0xe0,0xeb,0xe6,0xd3,0xf0,0xec,0xd6,0xb6,0xe0,0xed, - 0xc6,0xb5,0xf0,0xee,0xbf,0xd3,0x60,0xef,0xaf,0xd2,0x70,0xf0,0x9f,0xb5,0x60,0xf1, - 0x8f,0xb4,0x70,0xf2,0x7f,0x97,0x60,0xf3,0x6f,0x96,0x70,0xf4,0x5f,0x79,0x60,0xf5, - 0x4f,0x78,0x70,0xf6,0x3f,0x5b,0x60,0xf7,0x2f,0x5a,0x70,0xf8,0x28,0x77,0xe0,0xf9, - 0xf,0x3c,0x70,0xfa,0x8,0x59,0xe0,0xfa,0xf8,0x58,0xf0,0xfb,0xe8,0x3b,0xe0,0xfc, - 0xd8,0x3a,0xf0,0xfd,0xc8,0x1d,0xe0,0xfe,0xb8,0x1c,0xf0,0xff,0xa7,0xff,0xe0,0x0, - 0x97,0xfe,0xf0,0x1,0x87,0xe1,0xe0,0x2,0x77,0xe0,0xf0,0x3,0x70,0xfe,0x60,0x4, - 0x60,0xfd,0x70,0x5,0x50,0xe0,0x60,0x6,0x40,0xdf,0x70,0x7,0x30,0xc2,0x60,0x8, - 0x20,0xc1,0x70,0x9,0x10,0xa4,0x60,0xa,0x0,0xa3,0x70,0xa,0xf0,0x86,0x60,0xb, - 0xe0,0x85,0x70,0xc,0xd9,0xa2,0xe0,0xd,0xc0,0x67,0x70,0xe,0xb9,0x84,0xe0,0xf, - 0xa9,0x83,0xf0,0x10,0x99,0x66,0xe0,0x11,0x89,0x65,0xf0,0x12,0x79,0x48,0xe0,0x13, - 0x69,0x47,0xf0,0x14,0x59,0x2a,0xe0,0x15,0x49,0x29,0xf0,0x16,0x39,0xc,0xe0,0x17, - 0x29,0xb,0xf0,0x18,0x22,0x29,0x60,0x19,0x8,0xed,0xf0,0x1a,0x2,0xb,0x60,0x1a, - 0xf2,0xa,0x70,0x1b,0xe1,0xed,0x60,0x1c,0xd1,0xec,0x70,0x1d,0xc1,0xcf,0x60,0x1e, - 0xb1,0xce,0x70,0x1f,0xa1,0xb1,0x60,0x20,0x76,0x0,0xf0,0x21,0x81,0x93,0x60,0x22, - 0x55,0xe2,0xf0,0x23,0x6a,0xaf,0xe0,0x24,0x35,0xc4,0xf0,0x25,0x4a,0x91,0xe0,0x26, - 0x15,0xa6,0xf0,0x27,0x2a,0x73,0xe0,0x27,0xfe,0xc3,0x70,0x29,0xa,0x55,0xe0,0x29, - 0xde,0xa5,0x70,0x2a,0xea,0x37,0xe0,0x2b,0xbe,0x87,0x70,0x2c,0xd3,0x54,0x60,0x2d, - 0x9e,0x69,0x70,0x2e,0xb3,0x36,0x60,0x2f,0x7e,0x4b,0x70,0x30,0x93,0x18,0x60,0x31, - 0x67,0x67,0xf0,0x32,0x72,0xfa,0x60,0x33,0x47,0x49,0xf0,0x34,0x52,0xdc,0x60,0x35, - 0x27,0x2b,0xf0,0x36,0x32,0xbe,0x60,0x37,0x7,0xd,0xf0,0x38,0x1b,0xda,0xe0,0x38, - 0xe6,0xef,0xf0,0x39,0xfb,0xbc,0xe0,0x3a,0xc6,0xd1,0xf0,0x3b,0xdb,0x9e,0xe0,0x3c, - 0xaf,0xee,0x70,0x3d,0xbb,0x80,0xe0,0x3e,0x8f,0xd0,0x70,0x3f,0x9b,0x62,0xe0,0x40, - 0x6f,0xb2,0x70,0x41,0x84,0x7f,0x60,0x42,0x4f,0x94,0x70,0x43,0x64,0x61,0x60,0x44, - 0x2f,0x76,0x70,0x45,0x44,0x43,0x60,0x45,0xf3,0xa8,0xf0,0x47,0x2d,0x5f,0xe0,0x47, - 0xd3,0x8a,0xf0,0x49,0xd,0x41,0xe0,0x49,0xb3,0x6c,0xf0,0x4a,0xed,0x23,0xe0,0x4b, - 0x9c,0x89,0x70,0x4c,0xd6,0x40,0x60,0x4d,0x7c,0x6b,0x70,0x4e,0xb6,0x22,0x60,0x4f, - 0x5c,0x4d,0x70,0x50,0x96,0x4,0x60,0x51,0x3c,0x2f,0x70,0x52,0x75,0xe6,0x60,0x53, - 0x1c,0x11,0x70,0x54,0x55,0xc8,0x60,0x54,0xfb,0xf3,0x70,0x56,0x35,0xaa,0x60,0x56, - 0xe5,0xf,0xf0,0x58,0x1e,0xc6,0xe0,0x58,0xc4,0xf1,0xf0,0x59,0xfe,0xa8,0xe0,0x5a, - 0xa4,0xd3,0xf0,0x5b,0xde,0x8a,0xe0,0x5c,0x84,0xb5,0xf0,0x5d,0xbe,0x6c,0xe0,0x5e, - 0x64,0x97,0xf0,0x5f,0x9e,0x4e,0xe0,0x60,0x4d,0xb4,0x70,0x61,0x87,0x6b,0x60,0x62, - 0x2d,0x96,0x70,0x63,0x67,0x4d,0x60,0x64,0xd,0x78,0x70,0x65,0x47,0x2f,0x60,0x65, - 0xed,0x5a,0x70,0x67,0x27,0x11,0x60,0x67,0xcd,0x3c,0x70,0x69,0x6,0xf3,0x60,0x69, - 0xad,0x1e,0x70,0x6a,0xe6,0xd5,0x60,0x6b,0x96,0x3a,0xf0,0x6c,0xcf,0xf1,0xe0,0x6d, - 0x76,0x1c,0xf0,0x6e,0xaf,0xd3,0xe0,0x6f,0x55,0xfe,0xf0,0x70,0x8f,0xb5,0xe0,0x71, - 0x35,0xe0,0xf0,0x72,0x6f,0x97,0xe0,0x73,0x15,0xc2,0xf0,0x74,0x4f,0x79,0xe0,0x74, - 0xfe,0xdf,0x70,0x76,0x38,0x96,0x60,0x76,0xde,0xc1,0x70,0x78,0x18,0x78,0x60,0x78, - 0xbe,0xa3,0x70,0x79,0xf8,0x5a,0x60,0x7a,0x9e,0x85,0x70,0x7b,0xd8,0x3c,0x60,0x7c, - 0x7e,0x67,0x70,0x7d,0xb8,0x1e,0x60,0x7e,0x5e,0x49,0x70,0x7f,0x98,0x0,0x60,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x3,0x4,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x0,0x0,0x79,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x15,0x80,0x0,0x0,0x0,0xe0, + 0x6,0x4e,0x80,0xf7,0x2f,0x68,0x80,0xf8,0x28,0x94,0x0,0x11,0x89,0x90,0x20,0x13, + 0x69,0x64,0x10,0x14,0x59,0x47,0x0,0x15,0x49,0x46,0x10,0x16,0x39,0x29,0x0,0x17, + 0x29,0x28,0x10,0x18,0x22,0x45,0x80,0x19,0x9,0xa,0x10,0x1a,0x2,0x27,0x80,0x1a, + 0xf2,0x26,0x90,0x1b,0xe2,0x9,0x80,0x1c,0xd2,0x8,0x90,0x1d,0xc1,0xeb,0x80,0x1e, + 0xb1,0xea,0x90,0x1f,0xa1,0xcd,0x80,0x20,0x76,0x1d,0x10,0x21,0x81,0xaf,0x80,0x22, + 0x55,0xff,0x10,0x23,0x6a,0xcc,0x0,0x24,0x35,0xe1,0x10,0x25,0x4a,0xae,0x0,0x26, + 0x15,0xc3,0x10,0x27,0x2a,0x90,0x0,0x27,0xfe,0xdf,0x90,0x29,0xa,0x72,0x0,0x29, + 0xde,0xc1,0x90,0x2a,0xea,0x54,0x0,0x2b,0xbe,0xa3,0x90,0x2c,0xd3,0x70,0x80,0x2d, + 0x9e,0x85,0x90,0x2e,0xb3,0x52,0x80,0x2f,0x7e,0x67,0x90,0x30,0x93,0x34,0x80,0x31, + 0x67,0x84,0x10,0x32,0x73,0x16,0x80,0x33,0x47,0x66,0x10,0x34,0x52,0xf8,0x80,0x35, + 0x27,0x48,0x10,0x36,0x32,0xda,0x80,0x37,0x7,0x2a,0x10,0x38,0x1b,0xf7,0x0,0x38, + 0xe7,0xc,0x10,0x39,0xfb,0xd9,0x0,0x3a,0xc6,0xee,0x10,0x3b,0xdb,0xbb,0x0,0x3c, + 0xb0,0xa,0x90,0x3d,0xbb,0x9d,0x0,0x3e,0x8f,0xec,0x90,0x3f,0x9b,0x7f,0x0,0x40, + 0x6f,0xce,0x90,0x41,0x84,0x9b,0x80,0x42,0x4f,0xb0,0x90,0x43,0x64,0x7d,0x80,0x44, + 0x2f,0x92,0x90,0x45,0x44,0x5f,0x80,0x45,0xf3,0xc5,0x10,0x47,0x2d,0x7c,0x0,0x47, + 0xd3,0xa7,0x10,0x49,0xd,0x5e,0x0,0x49,0xb3,0x89,0x10,0x4a,0xed,0x40,0x0,0x4b, + 0x9c,0xa5,0x90,0x4c,0xd6,0x5c,0x80,0x4d,0x7c,0x87,0x90,0x4e,0xb6,0x3e,0x80,0x4f, + 0x5c,0x69,0x90,0x50,0x96,0x20,0x80,0x51,0x3c,0x4b,0x90,0x52,0x76,0x2,0x80,0x53, + 0x1c,0x2d,0x90,0x54,0x55,0xe4,0x80,0x54,0xfc,0xf,0x90,0x56,0x35,0xc6,0x80,0x56, + 0xe5,0x2c,0x10,0x58,0x1e,0xe3,0x0,0x58,0xc5,0xe,0x10,0x59,0xfe,0xc5,0x0,0x5a, + 0xa4,0xf0,0x10,0x5b,0xde,0xa7,0x0,0x5c,0x84,0xd2,0x10,0x5d,0xbe,0x89,0x0,0x5e, + 0x64,0xb4,0x10,0x5f,0x9e,0x6b,0x0,0x60,0x4d,0xd0,0x90,0x61,0x87,0x87,0x80,0x62, + 0x2d,0xb2,0x90,0x63,0x67,0x69,0x80,0x64,0xd,0x94,0x90,0x65,0x47,0x4b,0x80,0x65, + 0xed,0x76,0x90,0x67,0x27,0x2d,0x80,0x67,0xcd,0x58,0x90,0x69,0x7,0xf,0x80,0x69, + 0xad,0x3a,0x90,0x6a,0xe6,0xf1,0x80,0x6b,0x96,0x57,0x10,0x6c,0xd0,0xe,0x0,0x6d, + 0x76,0x39,0x10,0x6e,0xaf,0xf0,0x0,0x6f,0x56,0x1b,0x10,0x70,0x8f,0xd2,0x0,0x71, + 0x35,0xfd,0x10,0x72,0x6f,0xb4,0x0,0x73,0x15,0xdf,0x10,0x74,0x4f,0x96,0x0,0x74, + 0xfe,0xfb,0x90,0x76,0x38,0xb2,0x80,0x76,0xde,0xdd,0x90,0x78,0x18,0x94,0x80,0x78, + 0xbe,0xbf,0x90,0x79,0xf8,0x76,0x80,0x7a,0x9e,0xa1,0x90,0x7b,0xd8,0x58,0x80,0x7c, + 0x7e,0x83,0x90,0x7d,0xb8,0x3a,0x80,0x7e,0x5e,0x65,0x90,0x7f,0x98,0x1c,0x80,0x0, + 0x2,0x1,0x2,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff, + 0xab,0xa0,0x1,0x4,0xff,0xff,0x8f,0x80,0x0,0x9,0xff,0xff,0x9d,0x90,0x0,0xd, + 0xff,0xff,0xab,0xa0,0x1,0x11,0x2d,0x30,0x30,0x0,0x50,0x44,0x44,0x54,0x0,0x50, + 0x53,0x54,0x0,0x4d,0x53,0x54,0x0,0x4d,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0, + 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x79,0x0,0x0,0x0,0x5,0x0,0x0,0x0, + 0x15,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xe0,0x6,0x4e, + 0x80,0xff,0xff,0xff,0xff,0xf7,0x2f,0x68,0x80,0xff,0xff,0xff,0xff,0xf8,0x28,0x94, + 0x0,0x0,0x0,0x0,0x0,0x11,0x89,0x90,0x20,0x0,0x0,0x0,0x0,0x13,0x69,0x64, + 0x10,0x0,0x0,0x0,0x0,0x14,0x59,0x47,0x0,0x0,0x0,0x0,0x0,0x15,0x49,0x46, + 0x10,0x0,0x0,0x0,0x0,0x16,0x39,0x29,0x0,0x0,0x0,0x0,0x0,0x17,0x29,0x28, + 0x10,0x0,0x0,0x0,0x0,0x18,0x22,0x45,0x80,0x0,0x0,0x0,0x0,0x19,0x9,0xa, + 0x10,0x0,0x0,0x0,0x0,0x1a,0x2,0x27,0x80,0x0,0x0,0x0,0x0,0x1a,0xf2,0x26, + 0x90,0x0,0x0,0x0,0x0,0x1b,0xe2,0x9,0x80,0x0,0x0,0x0,0x0,0x1c,0xd2,0x8, + 0x90,0x0,0x0,0x0,0x0,0x1d,0xc1,0xeb,0x80,0x0,0x0,0x0,0x0,0x1e,0xb1,0xea, + 0x90,0x0,0x0,0x0,0x0,0x1f,0xa1,0xcd,0x80,0x0,0x0,0x0,0x0,0x20,0x76,0x1d, + 0x10,0x0,0x0,0x0,0x0,0x21,0x81,0xaf,0x80,0x0,0x0,0x0,0x0,0x22,0x55,0xff, + 0x10,0x0,0x0,0x0,0x0,0x23,0x6a,0xcc,0x0,0x0,0x0,0x0,0x0,0x24,0x35,0xe1, + 0x10,0x0,0x0,0x0,0x0,0x25,0x4a,0xae,0x0,0x0,0x0,0x0,0x0,0x26,0x15,0xc3, + 0x10,0x0,0x0,0x0,0x0,0x27,0x2a,0x90,0x0,0x0,0x0,0x0,0x0,0x27,0xfe,0xdf, + 0x90,0x0,0x0,0x0,0x0,0x29,0xa,0x72,0x0,0x0,0x0,0x0,0x0,0x29,0xde,0xc1, + 0x90,0x0,0x0,0x0,0x0,0x2a,0xea,0x54,0x0,0x0,0x0,0x0,0x0,0x2b,0xbe,0xa3, + 0x90,0x0,0x0,0x0,0x0,0x2c,0xd3,0x70,0x80,0x0,0x0,0x0,0x0,0x2d,0x9e,0x85, + 0x90,0x0,0x0,0x0,0x0,0x2e,0xb3,0x52,0x80,0x0,0x0,0x0,0x0,0x2f,0x7e,0x67, + 0x90,0x0,0x0,0x0,0x0,0x30,0x93,0x34,0x80,0x0,0x0,0x0,0x0,0x31,0x67,0x84, + 0x10,0x0,0x0,0x0,0x0,0x32,0x73,0x16,0x80,0x0,0x0,0x0,0x0,0x33,0x47,0x66, + 0x10,0x0,0x0,0x0,0x0,0x34,0x52,0xf8,0x80,0x0,0x0,0x0,0x0,0x35,0x27,0x48, + 0x10,0x0,0x0,0x0,0x0,0x36,0x32,0xda,0x80,0x0,0x0,0x0,0x0,0x37,0x7,0x2a, + 0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0xf7,0x0,0x0,0x0,0x0,0x0,0x38,0xe7,0xc, + 0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0xd9,0x0,0x0,0x0,0x0,0x0,0x3a,0xc6,0xee, + 0x10,0x0,0x0,0x0,0x0,0x3b,0xdb,0xbb,0x0,0x0,0x0,0x0,0x0,0x3c,0xb0,0xa, + 0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x9d,0x0,0x0,0x0,0x0,0x0,0x3e,0x8f,0xec, + 0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x7f,0x0,0x0,0x0,0x0,0x0,0x40,0x6f,0xce, + 0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x9b,0x80,0x0,0x0,0x0,0x0,0x42,0x4f,0xb0, + 0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x7d,0x80,0x0,0x0,0x0,0x0,0x44,0x2f,0x92, + 0x90,0x0,0x0,0x0,0x0,0x45,0x44,0x5f,0x80,0x0,0x0,0x0,0x0,0x45,0xf3,0xc5, + 0x10,0x0,0x0,0x0,0x0,0x47,0x2d,0x7c,0x0,0x0,0x0,0x0,0x0,0x47,0xd3,0xa7, + 0x10,0x0,0x0,0x0,0x0,0x49,0xd,0x5e,0x0,0x0,0x0,0x0,0x0,0x49,0xb3,0x89, + 0x10,0x0,0x0,0x0,0x0,0x4a,0xed,0x40,0x0,0x0,0x0,0x0,0x0,0x4b,0x9c,0xa5, + 0x90,0x0,0x0,0x0,0x0,0x4c,0xd6,0x5c,0x80,0x0,0x0,0x0,0x0,0x4d,0x7c,0x87, + 0x90,0x0,0x0,0x0,0x0,0x4e,0xb6,0x3e,0x80,0x0,0x0,0x0,0x0,0x4f,0x5c,0x69, + 0x90,0x0,0x0,0x0,0x0,0x50,0x96,0x20,0x80,0x0,0x0,0x0,0x0,0x51,0x3c,0x4b, + 0x90,0x0,0x0,0x0,0x0,0x52,0x76,0x2,0x80,0x0,0x0,0x0,0x0,0x53,0x1c,0x2d, + 0x90,0x0,0x0,0x0,0x0,0x54,0x55,0xe4,0x80,0x0,0x0,0x0,0x0,0x54,0xfc,0xf, + 0x90,0x0,0x0,0x0,0x0,0x56,0x35,0xc6,0x80,0x0,0x0,0x0,0x0,0x56,0xe5,0x2c, + 0x10,0x0,0x0,0x0,0x0,0x58,0x1e,0xe3,0x0,0x0,0x0,0x0,0x0,0x58,0xc5,0xe, + 0x10,0x0,0x0,0x0,0x0,0x59,0xfe,0xc5,0x0,0x0,0x0,0x0,0x0,0x5a,0xa4,0xf0, + 0x10,0x0,0x0,0x0,0x0,0x5b,0xde,0xa7,0x0,0x0,0x0,0x0,0x0,0x5c,0x84,0xd2, + 0x10,0x0,0x0,0x0,0x0,0x5d,0xbe,0x89,0x0,0x0,0x0,0x0,0x0,0x5e,0x64,0xb4, + 0x10,0x0,0x0,0x0,0x0,0x5f,0x9e,0x6b,0x0,0x0,0x0,0x0,0x0,0x60,0x4d,0xd0, + 0x90,0x0,0x0,0x0,0x0,0x61,0x87,0x87,0x80,0x0,0x0,0x0,0x0,0x62,0x2d,0xb2, + 0x90,0x0,0x0,0x0,0x0,0x63,0x67,0x69,0x80,0x0,0x0,0x0,0x0,0x64,0xd,0x94, + 0x90,0x0,0x0,0x0,0x0,0x65,0x47,0x4b,0x80,0x0,0x0,0x0,0x0,0x65,0xed,0x76, + 0x90,0x0,0x0,0x0,0x0,0x67,0x27,0x2d,0x80,0x0,0x0,0x0,0x0,0x67,0xcd,0x58, + 0x90,0x0,0x0,0x0,0x0,0x69,0x7,0xf,0x80,0x0,0x0,0x0,0x0,0x69,0xad,0x3a, + 0x90,0x0,0x0,0x0,0x0,0x6a,0xe6,0xf1,0x80,0x0,0x0,0x0,0x0,0x6b,0x96,0x57, + 0x10,0x0,0x0,0x0,0x0,0x6c,0xd0,0xe,0x0,0x0,0x0,0x0,0x0,0x6d,0x76,0x39, + 0x10,0x0,0x0,0x0,0x0,0x6e,0xaf,0xf0,0x0,0x0,0x0,0x0,0x0,0x6f,0x56,0x1b, + 0x10,0x0,0x0,0x0,0x0,0x70,0x8f,0xd2,0x0,0x0,0x0,0x0,0x0,0x71,0x35,0xfd, + 0x10,0x0,0x0,0x0,0x0,0x72,0x6f,0xb4,0x0,0x0,0x0,0x0,0x0,0x73,0x15,0xdf, + 0x10,0x0,0x0,0x0,0x0,0x74,0x4f,0x96,0x0,0x0,0x0,0x0,0x0,0x74,0xfe,0xfb, + 0x90,0x0,0x0,0x0,0x0,0x76,0x38,0xb2,0x80,0x0,0x0,0x0,0x0,0x76,0xde,0xdd, + 0x90,0x0,0x0,0x0,0x0,0x78,0x18,0x94,0x80,0x0,0x0,0x0,0x0,0x78,0xbe,0xbf, + 0x90,0x0,0x0,0x0,0x0,0x79,0xf8,0x76,0x80,0x0,0x0,0x0,0x0,0x7a,0x9e,0xa1, + 0x90,0x0,0x0,0x0,0x0,0x7b,0xd8,0x58,0x80,0x0,0x0,0x0,0x0,0x7c,0x7e,0x83, + 0x90,0x0,0x0,0x0,0x0,0x7d,0xb8,0x3a,0x80,0x0,0x0,0x0,0x0,0x7e,0x5e,0x65, + 0x90,0x0,0x0,0x0,0x0,0x7f,0x98,0x1c,0x80,0x0,0x2,0x1,0x2,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xab,0xa0,0x1,0x4,0xff,0xff, + 0x8f,0x80,0x0,0x9,0xff,0xff,0x9d,0x90,0x0,0xd,0xff,0xff,0xab,0xa0,0x1,0x11, + 0x2d,0x30,0x30,0x0,0x50,0x44,0x44,0x54,0x0,0x50,0x53,0x54,0x0,0x4d,0x53,0x54, + 0x0,0x4d,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa, + 0x4d,0x53,0x54,0x37,0x4d,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30,0x2c,0x4d, + 0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Virgin + 0x0,0x0,0x0,0xaa, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x93, + 0x37,0x33,0xac,0x0,0x1,0xff,0xff,0xc6,0x54,0x0,0x0,0xff,0xff,0xc7,0xc0,0x0, + 0x4,0x4c,0x4d,0x54,0x0,0x41,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, + 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0x93,0x37,0x33,0xac,0x0,0x1,0xff,0xff,0xc6,0x54,0x0, + 0x0,0xff,0xff,0xc7,0xc0,0x0,0x4,0x4c,0x4d,0x54,0x0,0x41,0x53,0x54,0x0,0x0, + 0x0,0x0,0x0,0xa,0x41,0x53,0x54,0x34,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Santarem + 0x0,0x0,0x2,0x78, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x20,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0x96, + 0xaa,0x7a,0x48,0xb8,0xf,0x57,0xf0,0xb8,0xfd,0x4e,0xb0,0xb9,0xf1,0x42,0x40,0xba, + 0xde,0x82,0x30,0xda,0x38,0xbc,0x40,0xda,0xec,0x8,0x40,0xdc,0x19,0xef,0xc0,0xdc, + 0xb9,0x67,0x30,0xdd,0xfb,0x23,0x40,0xde,0x9b,0xec,0x30,0xdf,0xdd,0xa8,0x40,0xe0, + 0x54,0x41,0x30,0xf4,0x98,0xd,0xc0,0xf5,0x5,0x6c,0x30,0xf6,0xc0,0x72,0x40,0xf7, + 0xe,0x2c,0xb0,0xf8,0x51,0x3a,0x40,0xf8,0xc7,0xd3,0x30,0xfa,0xa,0xe0,0xc0,0xfa, + 0xa9,0x6,0xb0,0xfb,0xec,0x14,0x40,0xfc,0x8b,0x8b,0xb0,0x1d,0xc9,0x9c,0x40,0x1e, + 0x78,0xe5,0xb0,0x1f,0xa0,0x43,0xc0,0x20,0x33,0xdd,0xb0,0x21,0x81,0x77,0x40,0x22, + 0xb,0xd6,0xb0,0x48,0x60,0x71,0x40,0x7f,0xff,0xff,0xff,0x0,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x3,0xff,0xff,0xcc,0xb8,0x0, + 0x0,0xff,0xff,0xd5,0xd0,0x1,0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0xff,0xff,0xd5, + 0xd0,0x0,0x4,0x4c,0x4d,0x54,0x0,0x2d,0x30,0x33,0x0,0x2d,0x30,0x34,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0, + 0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x4,0x0, + 0x0,0x0,0xc,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x96, + 0xaa,0x7a,0x48,0xff,0xff,0xff,0xff,0xb8,0xf,0x57,0xf0,0xff,0xff,0xff,0xff,0xb8, + 0xfd,0x4e,0xb0,0xff,0xff,0xff,0xff,0xb9,0xf1,0x42,0x40,0xff,0xff,0xff,0xff,0xba, + 0xde,0x82,0x30,0xff,0xff,0xff,0xff,0xda,0x38,0xbc,0x40,0xff,0xff,0xff,0xff,0xda, + 0xec,0x8,0x40,0xff,0xff,0xff,0xff,0xdc,0x19,0xef,0xc0,0xff,0xff,0xff,0xff,0xdc, + 0xb9,0x67,0x30,0xff,0xff,0xff,0xff,0xdd,0xfb,0x23,0x40,0xff,0xff,0xff,0xff,0xde, + 0x9b,0xec,0x30,0xff,0xff,0xff,0xff,0xdf,0xdd,0xa8,0x40,0xff,0xff,0xff,0xff,0xe0, + 0x54,0x41,0x30,0xff,0xff,0xff,0xff,0xf4,0x98,0xd,0xc0,0xff,0xff,0xff,0xff,0xf5, + 0x5,0x6c,0x30,0xff,0xff,0xff,0xff,0xf6,0xc0,0x72,0x40,0xff,0xff,0xff,0xff,0xf7, + 0xe,0x2c,0xb0,0xff,0xff,0xff,0xff,0xf8,0x51,0x3a,0x40,0xff,0xff,0xff,0xff,0xf8, + 0xc7,0xd3,0x30,0xff,0xff,0xff,0xff,0xfa,0xa,0xe0,0xc0,0xff,0xff,0xff,0xff,0xfa, + 0xa9,0x6,0xb0,0xff,0xff,0xff,0xff,0xfb,0xec,0x14,0x40,0xff,0xff,0xff,0xff,0xfc, + 0x8b,0x8b,0xb0,0x0,0x0,0x0,0x0,0x1d,0xc9,0x9c,0x40,0x0,0x0,0x0,0x0,0x1e, + 0x78,0xe5,0xb0,0x0,0x0,0x0,0x0,0x1f,0xa0,0x43,0xc0,0x0,0x0,0x0,0x0,0x20, + 0x33,0xdd,0xb0,0x0,0x0,0x0,0x0,0x21,0x81,0x77,0x40,0x0,0x0,0x0,0x0,0x22, + 0xb,0xd6,0xb0,0x0,0x0,0x0,0x0,0x48,0x60,0x71,0x40,0x0,0x0,0x0,0x0,0x7f, + 0xff,0xff,0xff,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x3,0x3,0xff,0xff,0xcc,0xb8,0x0,0x0,0xff,0xff,0xd5,0xd0,0x1,0x4,0xff, + 0xff,0xc7,0xc0,0x0,0x8,0xff,0xff,0xd5,0xd0,0x0,0x4,0x4c,0x4d,0x54,0x0,0x2d, + 0x30,0x33,0x0,0x2d,0x30,0x34,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa, + 0x3c,0x2d,0x30,0x33,0x3e,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Chicago + 0x0,0x0,0xe,0x1, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xec,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x18,0x80,0x0,0x0,0x0,0x9e, + 0xa6,0x2c,0x80,0x9f,0xba,0xf9,0x70,0xa0,0x86,0xe,0x80,0xa1,0x9a,0xdb,0x70,0xa2, + 0xcb,0x74,0x0,0xa3,0x83,0xf7,0xf0,0xa4,0x45,0xd2,0x80,0xa5,0x63,0xd9,0xf0,0xa6, + 0x53,0xd9,0x0,0xa7,0x15,0x97,0x70,0xa8,0x33,0xbb,0x0,0xa8,0xfe,0xb3,0xf0,0xaa, + 0x13,0x9d,0x0,0xaa,0xde,0x95,0xf0,0xab,0xf3,0x7f,0x0,0xac,0xbe,0x77,0xf0,0xad, + 0xd3,0x61,0x0,0xae,0x9e,0x59,0xf0,0xaf,0xb3,0x43,0x0,0xb0,0x7e,0x3b,0xf0,0xb1, + 0x9c,0x5f,0x80,0xb2,0x67,0x58,0x70,0xb3,0x7c,0x41,0x80,0xb4,0x47,0x3a,0x70,0xb5, + 0x5c,0x23,0x80,0xb6,0x27,0x1c,0x70,0xb7,0x3c,0x5,0x80,0xb8,0x6,0xfe,0x70,0xb9, + 0x1b,0xe7,0x80,0xb9,0xe6,0xe0,0x70,0xbb,0x5,0x4,0x0,0xbb,0xc6,0xc2,0x70,0xbc, + 0xe4,0xe6,0x0,0xbd,0xaf,0xde,0xf0,0xbe,0xc4,0xc8,0x0,0xbf,0x8f,0xc0,0xf0,0xc0, + 0x5a,0xd6,0x0,0xc1,0xb0,0x3c,0x70,0xc2,0x84,0x8c,0x0,0xc3,0x4f,0x84,0xf0,0xc4, + 0x64,0x6e,0x0,0xc5,0x2f,0x66,0xf0,0xc6,0x4d,0x8a,0x80,0xc7,0xf,0x48,0xf0,0xc8, + 0x2d,0x6c,0x80,0xc8,0xf8,0x65,0x70,0xca,0xd,0x4e,0x80,0xca,0xd8,0x47,0x70,0xcb, + 0x88,0xfe,0x80,0xd2,0x23,0xf4,0x70,0xd2,0x61,0x9,0xf0,0xd3,0x75,0xf3,0x0,0xd4, + 0x40,0xeb,0xf0,0xd5,0x55,0xd5,0x0,0xd6,0x20,0xcd,0xf0,0xd7,0x35,0xb7,0x0,0xd8, + 0x0,0xaf,0xf0,0xd9,0x15,0x99,0x0,0xd9,0xe0,0x91,0xf0,0xda,0xfe,0xb5,0x80,0xdb, + 0xc0,0x73,0xf0,0xdc,0xde,0x97,0x80,0xdd,0xa9,0x90,0x70,0xde,0xbe,0x79,0x80,0xdf, + 0x89,0x72,0x70,0xe0,0x9e,0x5b,0x80,0xe1,0x69,0x54,0x70,0xe2,0x7e,0x3d,0x80,0xe3, + 0x49,0x36,0x70,0xe4,0x5e,0x1f,0x80,0xe5,0x57,0x3c,0xf0,0xe6,0x47,0x3c,0x0,0xe7, + 0x37,0x1e,0xf0,0xe8,0x27,0x1e,0x0,0xe9,0x17,0x0,0xf0,0xea,0x7,0x0,0x0,0xea, + 0xf6,0xe2,0xf0,0xeb,0xe6,0xe2,0x0,0xec,0xd6,0xc4,0xf0,0xed,0xc6,0xc4,0x0,0xee, + 0xbf,0xe1,0x70,0xef,0xaf,0xe0,0x80,0xf0,0x9f,0xc3,0x70,0xf1,0x8f,0xc2,0x80,0xf2, + 0x7f,0xa5,0x70,0xf3,0x6f,0xa4,0x80,0xf4,0x5f,0x87,0x70,0xf5,0x4f,0x86,0x80,0xf6, + 0x3f,0x69,0x70,0xf7,0x2f,0x68,0x80,0xf8,0x28,0x85,0xf0,0xf9,0xf,0x4a,0x80,0xfa, + 0x8,0x67,0xf0,0xfa,0xf8,0x67,0x0,0xfb,0xe8,0x49,0xf0,0xfc,0xd8,0x49,0x0,0xfd, + 0xc8,0x2b,0xf0,0xfe,0xb8,0x2b,0x0,0xff,0xa8,0xd,0xf0,0x0,0x98,0xd,0x0,0x1, + 0x87,0xef,0xf0,0x2,0x77,0xef,0x0,0x3,0x71,0xc,0x70,0x4,0x61,0xb,0x80,0x5, + 0x50,0xee,0x70,0x6,0x40,0xed,0x80,0x7,0x30,0xd0,0x70,0x7,0x8d,0x27,0x80,0x9, + 0x10,0xb2,0x70,0x9,0xad,0xa3,0x0,0xa,0xf0,0x94,0x70,0xb,0xe0,0x93,0x80,0xc, + 0xd9,0xb0,0xf0,0xd,0xc0,0x75,0x80,0xe,0xb9,0x92,0xf0,0xf,0xa9,0x92,0x0,0x10, + 0x99,0x74,0xf0,0x11,0x89,0x74,0x0,0x12,0x79,0x56,0xf0,0x13,0x69,0x56,0x0,0x14, + 0x59,0x38,0xf0,0x15,0x49,0x38,0x0,0x16,0x39,0x1a,0xf0,0x17,0x29,0x1a,0x0,0x18, + 0x22,0x37,0x70,0x19,0x8,0xfc,0x0,0x1a,0x2,0x19,0x70,0x1a,0xf2,0x18,0x80,0x1b, + 0xe1,0xfb,0x70,0x1c,0xd1,0xfa,0x80,0x1d,0xc1,0xdd,0x70,0x1e,0xb1,0xdc,0x80,0x1f, + 0xa1,0xbf,0x70,0x20,0x76,0xf,0x0,0x21,0x81,0xa1,0x70,0x22,0x55,0xf1,0x0,0x23, + 0x6a,0xbd,0xf0,0x24,0x35,0xd3,0x0,0x25,0x4a,0x9f,0xf0,0x26,0x15,0xb5,0x0,0x27, + 0x2a,0x81,0xf0,0x27,0xfe,0xd1,0x80,0x29,0xa,0x63,0xf0,0x29,0xde,0xb3,0x80,0x2a, + 0xea,0x45,0xf0,0x2b,0xbe,0x95,0x80,0x2c,0xd3,0x62,0x70,0x2d,0x9e,0x77,0x80,0x2e, + 0xb3,0x44,0x70,0x2f,0x7e,0x59,0x80,0x30,0x93,0x26,0x70,0x31,0x67,0x76,0x0,0x32, + 0x73,0x8,0x70,0x33,0x47,0x58,0x0,0x34,0x52,0xea,0x70,0x35,0x27,0x3a,0x0,0x36, + 0x32,0xcc,0x70,0x37,0x7,0x1c,0x0,0x38,0x1b,0xe8,0xf0,0x38,0xe6,0xfe,0x0,0x39, + 0xfb,0xca,0xf0,0x3a,0xc6,0xe0,0x0,0x3b,0xdb,0xac,0xf0,0x3c,0xaf,0xfc,0x80,0x3d, + 0xbb,0x8e,0xf0,0x3e,0x8f,0xde,0x80,0x3f,0x9b,0x70,0xf0,0x40,0x6f,0xc0,0x80,0x41, + 0x84,0x8d,0x70,0x42,0x4f,0xa2,0x80,0x43,0x64,0x6f,0x70,0x44,0x2f,0x84,0x80,0x45, + 0x44,0x51,0x70,0x45,0xf3,0xb7,0x0,0x47,0x2d,0x6d,0xf0,0x47,0xd3,0x99,0x0,0x49, + 0xd,0x4f,0xf0,0x49,0xb3,0x7b,0x0,0x4a,0xed,0x31,0xf0,0x4b,0x9c,0x97,0x80,0x4c, + 0xd6,0x4e,0x70,0x4d,0x7c,0x79,0x80,0x4e,0xb6,0x30,0x70,0x4f,0x5c,0x5b,0x80,0x50, + 0x96,0x12,0x70,0x51,0x3c,0x3d,0x80,0x52,0x75,0xf4,0x70,0x53,0x1c,0x1f,0x80,0x54, + 0x55,0xd6,0x70,0x54,0xfc,0x1,0x80,0x56,0x35,0xb8,0x70,0x56,0xe5,0x1e,0x0,0x58, + 0x1e,0xd4,0xf0,0x58,0xc5,0x0,0x0,0x59,0xfe,0xb6,0xf0,0x5a,0xa4,0xe2,0x0,0x5b, + 0xde,0x98,0xf0,0x5c,0x84,0xc4,0x0,0x5d,0xbe,0x7a,0xf0,0x5e,0x64,0xa6,0x0,0x5f, + 0x9e,0x5c,0xf0,0x60,0x4d,0xc2,0x80,0x61,0x87,0x79,0x70,0x62,0x2d,0xa4,0x80,0x63, + 0x67,0x5b,0x70,0x64,0xd,0x86,0x80,0x65,0x47,0x3d,0x70,0x65,0xed,0x68,0x80,0x67, + 0x27,0x1f,0x70,0x67,0xcd,0x4a,0x80,0x69,0x7,0x1,0x70,0x69,0xad,0x2c,0x80,0x6a, + 0xe6,0xe3,0x70,0x6b,0x96,0x49,0x0,0x6c,0xcf,0xff,0xf0,0x6d,0x76,0x2b,0x0,0x6e, + 0xaf,0xe1,0xf0,0x6f,0x56,0xd,0x0,0x70,0x8f,0xc3,0xf0,0x71,0x35,0xef,0x0,0x72, + 0x6f,0xa5,0xf0,0x73,0x15,0xd1,0x0,0x74,0x4f,0x87,0xf0,0x74,0xfe,0xed,0x80,0x76, + 0x38,0xa4,0x70,0x76,0xde,0xcf,0x80,0x78,0x18,0x86,0x70,0x78,0xbe,0xb1,0x80,0x79, + 0xf8,0x68,0x70,0x7a,0x9e,0x93,0x80,0x7b,0xd8,0x4a,0x70,0x7c,0x7e,0x75,0x80,0x7d, + 0xb8,0x2c,0x70,0x7e,0x5e,0x57,0x80,0x7f,0x98,0xe,0x70,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0xb5,0x94,0x0,0x0,0xff,0xff, - 0xc7,0xc0,0x1,0x4,0xff,0xff,0xb9,0xb0,0x0,0x8,0xff,0xff,0xc7,0xc0,0x1,0xc, - 0xff,0xff,0xc7,0xc0,0x1,0x10,0x4c,0x4d,0x54,0x0,0x45,0x44,0x54,0x0,0x45,0x53, - 0x54,0x0,0x45,0x57,0x54,0x0,0x45,0x50,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0, - 0x0,0x0,0x0,0x1,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14, - 0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x72,0xee,0x78,0xec, - 0xff,0xff,0xff,0xff,0x9e,0xb8,0x93,0x70,0xff,0xff,0xff,0xff,0x9f,0xba,0xeb,0x60, - 0xff,0xff,0xff,0xff,0xa0,0x87,0x2e,0xc8,0xff,0xff,0xff,0xff,0xa1,0x9a,0xb1,0x40, - 0xff,0xff,0xff,0xff,0xa2,0x94,0x6,0xf0,0xff,0xff,0xff,0xff,0xa3,0x55,0xa9,0x40, - 0xff,0xff,0xff,0xff,0xa4,0x86,0x5d,0xf0,0xff,0xff,0xff,0xff,0xa5,0x28,0x78,0x60, - 0xff,0xff,0xff,0xff,0xa6,0x66,0x3f,0xf0,0xff,0xff,0xff,0xff,0xa7,0xc,0x4e,0xe0, - 0xff,0xff,0xff,0xff,0xa8,0x46,0x21,0xf0,0xff,0xff,0xff,0xff,0xa8,0xec,0x30,0xe0, - 0xff,0xff,0xff,0xff,0xaa,0x1c,0xc9,0x70,0xff,0xff,0xff,0xff,0xaa,0xd5,0x4d,0x60, - 0xff,0xff,0xff,0xff,0xab,0xfc,0xab,0x70,0xff,0xff,0xff,0xff,0xac,0xb5,0x2f,0x60, - 0xff,0xff,0xff,0xff,0xad,0xdc,0x8d,0x70,0xff,0xff,0xff,0xff,0xae,0x95,0x11,0x60, - 0xff,0xff,0xff,0xff,0xaf,0xbc,0x6f,0x70,0xff,0xff,0xff,0xff,0xb0,0x7e,0x2d,0xe0, - 0xff,0xff,0xff,0xff,0xb1,0x9c,0x51,0x70,0xff,0xff,0xff,0xff,0xb2,0x67,0x4a,0x60, - 0xff,0xff,0xff,0xff,0xb3,0x7c,0x33,0x70,0xff,0xff,0xff,0xff,0xb4,0x47,0x2c,0x60, - 0xff,0xff,0xff,0xff,0xb5,0x5c,0x15,0x70,0xff,0xff,0xff,0xff,0xb6,0x27,0xe,0x60, - 0xff,0xff,0xff,0xff,0xb7,0x3b,0xf7,0x70,0xff,0xff,0xff,0xff,0xb8,0x6,0xf0,0x60, - 0xff,0xff,0xff,0xff,0xb9,0x25,0x13,0xf0,0xff,0xff,0xff,0xff,0xb9,0xe6,0xd2,0x60, - 0xff,0xff,0xff,0xff,0xbb,0x4,0xf5,0xf0,0xff,0xff,0xff,0xff,0xbb,0xcf,0xee,0xe0, - 0xff,0xff,0xff,0xff,0xbc,0xe4,0xd7,0xf0,0xff,0xff,0xff,0xff,0xbd,0xaf,0xd0,0xe0, - 0xff,0xff,0xff,0xff,0xbe,0xc4,0xb9,0xf0,0xff,0xff,0xff,0xff,0xbf,0x8f,0xb2,0xe0, - 0xff,0xff,0xff,0xff,0xc0,0xa4,0x9b,0xf0,0xff,0xff,0xff,0xff,0xc1,0x6f,0x94,0xe0, - 0xff,0xff,0xff,0xff,0xc2,0x84,0x7d,0xf0,0xff,0xff,0xff,0xff,0xc3,0x4f,0x76,0xe0, - 0xff,0xff,0xff,0xff,0xc4,0x64,0x5f,0xf0,0xff,0xff,0xff,0xff,0xc5,0x2f,0x58,0xe0, - 0xff,0xff,0xff,0xff,0xc6,0x4d,0x7c,0x70,0xff,0xff,0xff,0xff,0xc7,0xf,0x3a,0xe0, - 0xff,0xff,0xff,0xff,0xc8,0x2d,0x5e,0x70,0xff,0xff,0xff,0xff,0xcb,0x88,0xf0,0x70, - 0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x60,0xfb,0xe0, - 0xff,0xff,0xff,0xff,0xd3,0x75,0xe4,0xf0,0xff,0xff,0xff,0xff,0xd4,0x40,0xdd,0xe0, - 0xff,0xff,0xff,0xff,0xd5,0x55,0xaa,0xd0,0xff,0xff,0xff,0xff,0xd6,0x20,0xa3,0xc0, - 0xff,0xff,0xff,0xff,0xd7,0x35,0x8c,0xd0,0xff,0xff,0xff,0xff,0xd8,0x0,0x85,0xc0, - 0xff,0xff,0xff,0xff,0xd9,0x15,0x6e,0xd0,0xff,0xff,0xff,0xff,0xda,0x33,0x76,0x40, - 0xff,0xff,0xff,0xff,0xda,0xfe,0xa7,0x70,0xff,0xff,0xff,0xff,0xdc,0x13,0x74,0x60, - 0xff,0xff,0xff,0xff,0xdc,0xde,0x89,0x70,0xff,0xff,0xff,0xff,0xdd,0xa9,0x82,0x60, - 0xff,0xff,0xff,0xff,0xde,0xbe,0x6b,0x70,0xff,0xff,0xff,0xff,0xdf,0x89,0x64,0x60, - 0xff,0xff,0xff,0xff,0xe0,0x9e,0x4d,0x70,0xff,0xff,0xff,0xff,0xe1,0x69,0x46,0x60, - 0xff,0xff,0xff,0xff,0xe2,0x7e,0x2f,0x70,0xff,0xff,0xff,0xff,0xe3,0x49,0x28,0x60, - 0xff,0xff,0xff,0xff,0xe4,0x5e,0x11,0x70,0xff,0xff,0xff,0xff,0xe5,0x29,0xa,0x60, - 0xff,0xff,0xff,0xff,0xe6,0x47,0x2d,0xf0,0xff,0xff,0xff,0xff,0xe7,0x12,0x26,0xe0, - 0xff,0xff,0xff,0xff,0xe8,0x27,0xf,0xf0,0xff,0xff,0xff,0xff,0xe9,0x16,0xf2,0xe0, - 0xff,0xff,0xff,0xff,0xea,0x6,0xf1,0xf0,0xff,0xff,0xff,0xff,0xea,0xf6,0xd4,0xe0, - 0xff,0xff,0xff,0xff,0xeb,0xe6,0xd3,0xf0,0xff,0xff,0xff,0xff,0xec,0xd6,0xb6,0xe0, - 0xff,0xff,0xff,0xff,0xed,0xc6,0xb5,0xf0,0xff,0xff,0xff,0xff,0xee,0xbf,0xd3,0x60, - 0xff,0xff,0xff,0xff,0xef,0xaf,0xd2,0x70,0xff,0xff,0xff,0xff,0xf0,0x9f,0xb5,0x60, - 0xff,0xff,0xff,0xff,0xf1,0x8f,0xb4,0x70,0xff,0xff,0xff,0xff,0xf2,0x7f,0x97,0x60, - 0xff,0xff,0xff,0xff,0xf3,0x6f,0x96,0x70,0xff,0xff,0xff,0xff,0xf4,0x5f,0x79,0x60, - 0xff,0xff,0xff,0xff,0xf5,0x4f,0x78,0x70,0xff,0xff,0xff,0xff,0xf6,0x3f,0x5b,0x60, - 0xff,0xff,0xff,0xff,0xf7,0x2f,0x5a,0x70,0xff,0xff,0xff,0xff,0xf8,0x28,0x77,0xe0, - 0xff,0xff,0xff,0xff,0xf9,0xf,0x3c,0x70,0xff,0xff,0xff,0xff,0xfa,0x8,0x59,0xe0, - 0xff,0xff,0xff,0xff,0xfa,0xf8,0x58,0xf0,0xff,0xff,0xff,0xff,0xfb,0xe8,0x3b,0xe0, - 0xff,0xff,0xff,0xff,0xfc,0xd8,0x3a,0xf0,0xff,0xff,0xff,0xff,0xfd,0xc8,0x1d,0xe0, - 0xff,0xff,0xff,0xff,0xfe,0xb8,0x1c,0xf0,0xff,0xff,0xff,0xff,0xff,0xa7,0xff,0xe0, - 0x0,0x0,0x0,0x0,0x0,0x97,0xfe,0xf0,0x0,0x0,0x0,0x0,0x1,0x87,0xe1,0xe0, - 0x0,0x0,0x0,0x0,0x2,0x77,0xe0,0xf0,0x0,0x0,0x0,0x0,0x3,0x70,0xfe,0x60, - 0x0,0x0,0x0,0x0,0x4,0x60,0xfd,0x70,0x0,0x0,0x0,0x0,0x5,0x50,0xe0,0x60, - 0x0,0x0,0x0,0x0,0x6,0x40,0xdf,0x70,0x0,0x0,0x0,0x0,0x7,0x30,0xc2,0x60, - 0x0,0x0,0x0,0x0,0x8,0x20,0xc1,0x70,0x0,0x0,0x0,0x0,0x9,0x10,0xa4,0x60, - 0x0,0x0,0x0,0x0,0xa,0x0,0xa3,0x70,0x0,0x0,0x0,0x0,0xa,0xf0,0x86,0x60, - 0x0,0x0,0x0,0x0,0xb,0xe0,0x85,0x70,0x0,0x0,0x0,0x0,0xc,0xd9,0xa2,0xe0, - 0x0,0x0,0x0,0x0,0xd,0xc0,0x67,0x70,0x0,0x0,0x0,0x0,0xe,0xb9,0x84,0xe0, - 0x0,0x0,0x0,0x0,0xf,0xa9,0x83,0xf0,0x0,0x0,0x0,0x0,0x10,0x99,0x66,0xe0, - 0x0,0x0,0x0,0x0,0x11,0x89,0x65,0xf0,0x0,0x0,0x0,0x0,0x12,0x79,0x48,0xe0, - 0x0,0x0,0x0,0x0,0x13,0x69,0x47,0xf0,0x0,0x0,0x0,0x0,0x14,0x59,0x2a,0xe0, - 0x0,0x0,0x0,0x0,0x15,0x49,0x29,0xf0,0x0,0x0,0x0,0x0,0x16,0x39,0xc,0xe0, - 0x0,0x0,0x0,0x0,0x17,0x29,0xb,0xf0,0x0,0x0,0x0,0x0,0x18,0x22,0x29,0x60, - 0x0,0x0,0x0,0x0,0x19,0x8,0xed,0xf0,0x0,0x0,0x0,0x0,0x1a,0x2,0xb,0x60, - 0x0,0x0,0x0,0x0,0x1a,0xf2,0xa,0x70,0x0,0x0,0x0,0x0,0x1b,0xe1,0xed,0x60, - 0x0,0x0,0x0,0x0,0x1c,0xd1,0xec,0x70,0x0,0x0,0x0,0x0,0x1d,0xc1,0xcf,0x60, - 0x0,0x0,0x0,0x0,0x1e,0xb1,0xce,0x70,0x0,0x0,0x0,0x0,0x1f,0xa1,0xb1,0x60, - 0x0,0x0,0x0,0x0,0x20,0x76,0x0,0xf0,0x0,0x0,0x0,0x0,0x21,0x81,0x93,0x60, - 0x0,0x0,0x0,0x0,0x22,0x55,0xe2,0xf0,0x0,0x0,0x0,0x0,0x23,0x6a,0xaf,0xe0, - 0x0,0x0,0x0,0x0,0x24,0x35,0xc4,0xf0,0x0,0x0,0x0,0x0,0x25,0x4a,0x91,0xe0, - 0x0,0x0,0x0,0x0,0x26,0x15,0xa6,0xf0,0x0,0x0,0x0,0x0,0x27,0x2a,0x73,0xe0, - 0x0,0x0,0x0,0x0,0x27,0xfe,0xc3,0x70,0x0,0x0,0x0,0x0,0x29,0xa,0x55,0xe0, - 0x0,0x0,0x0,0x0,0x29,0xde,0xa5,0x70,0x0,0x0,0x0,0x0,0x2a,0xea,0x37,0xe0, - 0x0,0x0,0x0,0x0,0x2b,0xbe,0x87,0x70,0x0,0x0,0x0,0x0,0x2c,0xd3,0x54,0x60, - 0x0,0x0,0x0,0x0,0x2d,0x9e,0x69,0x70,0x0,0x0,0x0,0x0,0x2e,0xb3,0x36,0x60, - 0x0,0x0,0x0,0x0,0x2f,0x7e,0x4b,0x70,0x0,0x0,0x0,0x0,0x30,0x93,0x18,0x60, - 0x0,0x0,0x0,0x0,0x31,0x67,0x67,0xf0,0x0,0x0,0x0,0x0,0x32,0x72,0xfa,0x60, - 0x0,0x0,0x0,0x0,0x33,0x47,0x49,0xf0,0x0,0x0,0x0,0x0,0x34,0x52,0xdc,0x60, - 0x0,0x0,0x0,0x0,0x35,0x27,0x2b,0xf0,0x0,0x0,0x0,0x0,0x36,0x32,0xbe,0x60, - 0x0,0x0,0x0,0x0,0x37,0x7,0xd,0xf0,0x0,0x0,0x0,0x0,0x38,0x1b,0xda,0xe0, - 0x0,0x0,0x0,0x0,0x38,0xe6,0xef,0xf0,0x0,0x0,0x0,0x0,0x39,0xfb,0xbc,0xe0, - 0x0,0x0,0x0,0x0,0x3a,0xc6,0xd1,0xf0,0x0,0x0,0x0,0x0,0x3b,0xdb,0x9e,0xe0, - 0x0,0x0,0x0,0x0,0x3c,0xaf,0xee,0x70,0x0,0x0,0x0,0x0,0x3d,0xbb,0x80,0xe0, - 0x0,0x0,0x0,0x0,0x3e,0x8f,0xd0,0x70,0x0,0x0,0x0,0x0,0x3f,0x9b,0x62,0xe0, - 0x0,0x0,0x0,0x0,0x40,0x6f,0xb2,0x70,0x0,0x0,0x0,0x0,0x41,0x84,0x7f,0x60, - 0x0,0x0,0x0,0x0,0x42,0x4f,0x94,0x70,0x0,0x0,0x0,0x0,0x43,0x64,0x61,0x60, - 0x0,0x0,0x0,0x0,0x44,0x2f,0x76,0x70,0x0,0x0,0x0,0x0,0x45,0x44,0x43,0x60, - 0x0,0x0,0x0,0x0,0x45,0xf3,0xa8,0xf0,0x0,0x0,0x0,0x0,0x47,0x2d,0x5f,0xe0, - 0x0,0x0,0x0,0x0,0x47,0xd3,0x8a,0xf0,0x0,0x0,0x0,0x0,0x49,0xd,0x41,0xe0, - 0x0,0x0,0x0,0x0,0x49,0xb3,0x6c,0xf0,0x0,0x0,0x0,0x0,0x4a,0xed,0x23,0xe0, - 0x0,0x0,0x0,0x0,0x4b,0x9c,0x89,0x70,0x0,0x0,0x0,0x0,0x4c,0xd6,0x40,0x60, - 0x0,0x0,0x0,0x0,0x4d,0x7c,0x6b,0x70,0x0,0x0,0x0,0x0,0x4e,0xb6,0x22,0x60, - 0x0,0x0,0x0,0x0,0x4f,0x5c,0x4d,0x70,0x0,0x0,0x0,0x0,0x50,0x96,0x4,0x60, - 0x0,0x0,0x0,0x0,0x51,0x3c,0x2f,0x70,0x0,0x0,0x0,0x0,0x52,0x75,0xe6,0x60, - 0x0,0x0,0x0,0x0,0x53,0x1c,0x11,0x70,0x0,0x0,0x0,0x0,0x54,0x55,0xc8,0x60, - 0x0,0x0,0x0,0x0,0x54,0xfb,0xf3,0x70,0x0,0x0,0x0,0x0,0x56,0x35,0xaa,0x60, - 0x0,0x0,0x0,0x0,0x56,0xe5,0xf,0xf0,0x0,0x0,0x0,0x0,0x58,0x1e,0xc6,0xe0, - 0x0,0x0,0x0,0x0,0x58,0xc4,0xf1,0xf0,0x0,0x0,0x0,0x0,0x59,0xfe,0xa8,0xe0, - 0x0,0x0,0x0,0x0,0x5a,0xa4,0xd3,0xf0,0x0,0x0,0x0,0x0,0x5b,0xde,0x8a,0xe0, - 0x0,0x0,0x0,0x0,0x5c,0x84,0xb5,0xf0,0x0,0x0,0x0,0x0,0x5d,0xbe,0x6c,0xe0, - 0x0,0x0,0x0,0x0,0x5e,0x64,0x97,0xf0,0x0,0x0,0x0,0x0,0x5f,0x9e,0x4e,0xe0, - 0x0,0x0,0x0,0x0,0x60,0x4d,0xb4,0x70,0x0,0x0,0x0,0x0,0x61,0x87,0x6b,0x60, - 0x0,0x0,0x0,0x0,0x62,0x2d,0x96,0x70,0x0,0x0,0x0,0x0,0x63,0x67,0x4d,0x60, - 0x0,0x0,0x0,0x0,0x64,0xd,0x78,0x70,0x0,0x0,0x0,0x0,0x65,0x47,0x2f,0x60, - 0x0,0x0,0x0,0x0,0x65,0xed,0x5a,0x70,0x0,0x0,0x0,0x0,0x67,0x27,0x11,0x60, - 0x0,0x0,0x0,0x0,0x67,0xcd,0x3c,0x70,0x0,0x0,0x0,0x0,0x69,0x6,0xf3,0x60, - 0x0,0x0,0x0,0x0,0x69,0xad,0x1e,0x70,0x0,0x0,0x0,0x0,0x6a,0xe6,0xd5,0x60, - 0x0,0x0,0x0,0x0,0x6b,0x96,0x3a,0xf0,0x0,0x0,0x0,0x0,0x6c,0xcf,0xf1,0xe0, - 0x0,0x0,0x0,0x0,0x6d,0x76,0x1c,0xf0,0x0,0x0,0x0,0x0,0x6e,0xaf,0xd3,0xe0, - 0x0,0x0,0x0,0x0,0x6f,0x55,0xfe,0xf0,0x0,0x0,0x0,0x0,0x70,0x8f,0xb5,0xe0, - 0x0,0x0,0x0,0x0,0x71,0x35,0xe0,0xf0,0x0,0x0,0x0,0x0,0x72,0x6f,0x97,0xe0, - 0x0,0x0,0x0,0x0,0x73,0x15,0xc2,0xf0,0x0,0x0,0x0,0x0,0x74,0x4f,0x79,0xe0, - 0x0,0x0,0x0,0x0,0x74,0xfe,0xdf,0x70,0x0,0x0,0x0,0x0,0x76,0x38,0x96,0x60, - 0x0,0x0,0x0,0x0,0x76,0xde,0xc1,0x70,0x0,0x0,0x0,0x0,0x78,0x18,0x78,0x60, - 0x0,0x0,0x0,0x0,0x78,0xbe,0xa3,0x70,0x0,0x0,0x0,0x0,0x79,0xf8,0x5a,0x60, - 0x0,0x0,0x0,0x0,0x7a,0x9e,0x85,0x70,0x0,0x0,0x0,0x0,0x7b,0xd8,0x3c,0x60, - 0x0,0x0,0x0,0x0,0x7c,0x7e,0x67,0x70,0x0,0x0,0x0,0x0,0x7d,0xb8,0x1e,0x60, - 0x0,0x0,0x0,0x0,0x7e,0x5e,0x49,0x70,0x0,0x0,0x0,0x0,0x7f,0x98,0x0,0x60, - 0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x3,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x4,0x5,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0xad,0xd4,0x0,0x0,0xff,0xff,0xb9, + 0xb0,0x1,0x4,0xff,0xff,0xab,0xa0,0x0,0x8,0xff,0xff,0xb9,0xb0,0x0,0xc,0xff, + 0xff,0xb9,0xb0,0x1,0x10,0xff,0xff,0xb9,0xb0,0x1,0x14,0xff,0xff,0xab,0xa0,0x0, + 0x8,0x4c,0x4d,0x54,0x0,0x43,0x44,0x54,0x0,0x43,0x53,0x54,0x0,0x45,0x53,0x54, + 0x0,0x43,0x57,0x54,0x0,0x43,0x50,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0, + 0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0, + 0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xed,0x0,0x0,0x0,0x7,0x0, + 0x0,0x0,0x18,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x5e, + 0x3,0xfe,0xa0,0xff,0xff,0xff,0xff,0x9e,0xa6,0x2c,0x80,0xff,0xff,0xff,0xff,0x9f, + 0xba,0xf9,0x70,0xff,0xff,0xff,0xff,0xa0,0x86,0xe,0x80,0xff,0xff,0xff,0xff,0xa1, + 0x9a,0xdb,0x70,0xff,0xff,0xff,0xff,0xa2,0xcb,0x74,0x0,0xff,0xff,0xff,0xff,0xa3, + 0x83,0xf7,0xf0,0xff,0xff,0xff,0xff,0xa4,0x45,0xd2,0x80,0xff,0xff,0xff,0xff,0xa5, + 0x63,0xd9,0xf0,0xff,0xff,0xff,0xff,0xa6,0x53,0xd9,0x0,0xff,0xff,0xff,0xff,0xa7, + 0x15,0x97,0x70,0xff,0xff,0xff,0xff,0xa8,0x33,0xbb,0x0,0xff,0xff,0xff,0xff,0xa8, + 0xfe,0xb3,0xf0,0xff,0xff,0xff,0xff,0xaa,0x13,0x9d,0x0,0xff,0xff,0xff,0xff,0xaa, + 0xde,0x95,0xf0,0xff,0xff,0xff,0xff,0xab,0xf3,0x7f,0x0,0xff,0xff,0xff,0xff,0xac, + 0xbe,0x77,0xf0,0xff,0xff,0xff,0xff,0xad,0xd3,0x61,0x0,0xff,0xff,0xff,0xff,0xae, + 0x9e,0x59,0xf0,0xff,0xff,0xff,0xff,0xaf,0xb3,0x43,0x0,0xff,0xff,0xff,0xff,0xb0, + 0x7e,0x3b,0xf0,0xff,0xff,0xff,0xff,0xb1,0x9c,0x5f,0x80,0xff,0xff,0xff,0xff,0xb2, + 0x67,0x58,0x70,0xff,0xff,0xff,0xff,0xb3,0x7c,0x41,0x80,0xff,0xff,0xff,0xff,0xb4, + 0x47,0x3a,0x70,0xff,0xff,0xff,0xff,0xb5,0x5c,0x23,0x80,0xff,0xff,0xff,0xff,0xb6, + 0x27,0x1c,0x70,0xff,0xff,0xff,0xff,0xb7,0x3c,0x5,0x80,0xff,0xff,0xff,0xff,0xb8, + 0x6,0xfe,0x70,0xff,0xff,0xff,0xff,0xb9,0x1b,0xe7,0x80,0xff,0xff,0xff,0xff,0xb9, + 0xe6,0xe0,0x70,0xff,0xff,0xff,0xff,0xbb,0x5,0x4,0x0,0xff,0xff,0xff,0xff,0xbb, + 0xc6,0xc2,0x70,0xff,0xff,0xff,0xff,0xbc,0xe4,0xe6,0x0,0xff,0xff,0xff,0xff,0xbd, + 0xaf,0xde,0xf0,0xff,0xff,0xff,0xff,0xbe,0xc4,0xc8,0x0,0xff,0xff,0xff,0xff,0xbf, + 0x8f,0xc0,0xf0,0xff,0xff,0xff,0xff,0xc0,0x5a,0xd6,0x0,0xff,0xff,0xff,0xff,0xc1, + 0xb0,0x3c,0x70,0xff,0xff,0xff,0xff,0xc2,0x84,0x8c,0x0,0xff,0xff,0xff,0xff,0xc3, + 0x4f,0x84,0xf0,0xff,0xff,0xff,0xff,0xc4,0x64,0x6e,0x0,0xff,0xff,0xff,0xff,0xc5, + 0x2f,0x66,0xf0,0xff,0xff,0xff,0xff,0xc6,0x4d,0x8a,0x80,0xff,0xff,0xff,0xff,0xc7, + 0xf,0x48,0xf0,0xff,0xff,0xff,0xff,0xc8,0x2d,0x6c,0x80,0xff,0xff,0xff,0xff,0xc8, + 0xf8,0x65,0x70,0xff,0xff,0xff,0xff,0xca,0xd,0x4e,0x80,0xff,0xff,0xff,0xff,0xca, + 0xd8,0x47,0x70,0xff,0xff,0xff,0xff,0xcb,0x88,0xfe,0x80,0xff,0xff,0xff,0xff,0xd2, + 0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x61,0x9,0xf0,0xff,0xff,0xff,0xff,0xd3, + 0x75,0xf3,0x0,0xff,0xff,0xff,0xff,0xd4,0x40,0xeb,0xf0,0xff,0xff,0xff,0xff,0xd5, + 0x55,0xd5,0x0,0xff,0xff,0xff,0xff,0xd6,0x20,0xcd,0xf0,0xff,0xff,0xff,0xff,0xd7, + 0x35,0xb7,0x0,0xff,0xff,0xff,0xff,0xd8,0x0,0xaf,0xf0,0xff,0xff,0xff,0xff,0xd9, + 0x15,0x99,0x0,0xff,0xff,0xff,0xff,0xd9,0xe0,0x91,0xf0,0xff,0xff,0xff,0xff,0xda, + 0xfe,0xb5,0x80,0xff,0xff,0xff,0xff,0xdb,0xc0,0x73,0xf0,0xff,0xff,0xff,0xff,0xdc, + 0xde,0x97,0x80,0xff,0xff,0xff,0xff,0xdd,0xa9,0x90,0x70,0xff,0xff,0xff,0xff,0xde, + 0xbe,0x79,0x80,0xff,0xff,0xff,0xff,0xdf,0x89,0x72,0x70,0xff,0xff,0xff,0xff,0xe0, + 0x9e,0x5b,0x80,0xff,0xff,0xff,0xff,0xe1,0x69,0x54,0x70,0xff,0xff,0xff,0xff,0xe2, + 0x7e,0x3d,0x80,0xff,0xff,0xff,0xff,0xe3,0x49,0x36,0x70,0xff,0xff,0xff,0xff,0xe4, + 0x5e,0x1f,0x80,0xff,0xff,0xff,0xff,0xe5,0x57,0x3c,0xf0,0xff,0xff,0xff,0xff,0xe6, + 0x47,0x3c,0x0,0xff,0xff,0xff,0xff,0xe7,0x37,0x1e,0xf0,0xff,0xff,0xff,0xff,0xe8, + 0x27,0x1e,0x0,0xff,0xff,0xff,0xff,0xe9,0x17,0x0,0xf0,0xff,0xff,0xff,0xff,0xea, + 0x7,0x0,0x0,0xff,0xff,0xff,0xff,0xea,0xf6,0xe2,0xf0,0xff,0xff,0xff,0xff,0xeb, + 0xe6,0xe2,0x0,0xff,0xff,0xff,0xff,0xec,0xd6,0xc4,0xf0,0xff,0xff,0xff,0xff,0xed, + 0xc6,0xc4,0x0,0xff,0xff,0xff,0xff,0xee,0xbf,0xe1,0x70,0xff,0xff,0xff,0xff,0xef, + 0xaf,0xe0,0x80,0xff,0xff,0xff,0xff,0xf0,0x9f,0xc3,0x70,0xff,0xff,0xff,0xff,0xf1, + 0x8f,0xc2,0x80,0xff,0xff,0xff,0xff,0xf2,0x7f,0xa5,0x70,0xff,0xff,0xff,0xff,0xf3, + 0x6f,0xa4,0x80,0xff,0xff,0xff,0xff,0xf4,0x5f,0x87,0x70,0xff,0xff,0xff,0xff,0xf5, + 0x4f,0x86,0x80,0xff,0xff,0xff,0xff,0xf6,0x3f,0x69,0x70,0xff,0xff,0xff,0xff,0xf7, + 0x2f,0x68,0x80,0xff,0xff,0xff,0xff,0xf8,0x28,0x85,0xf0,0xff,0xff,0xff,0xff,0xf9, + 0xf,0x4a,0x80,0xff,0xff,0xff,0xff,0xfa,0x8,0x67,0xf0,0xff,0xff,0xff,0xff,0xfa, + 0xf8,0x67,0x0,0xff,0xff,0xff,0xff,0xfb,0xe8,0x49,0xf0,0xff,0xff,0xff,0xff,0xfc, + 0xd8,0x49,0x0,0xff,0xff,0xff,0xff,0xfd,0xc8,0x2b,0xf0,0xff,0xff,0xff,0xff,0xfe, + 0xb8,0x2b,0x0,0xff,0xff,0xff,0xff,0xff,0xa8,0xd,0xf0,0x0,0x0,0x0,0x0,0x0, + 0x98,0xd,0x0,0x0,0x0,0x0,0x0,0x1,0x87,0xef,0xf0,0x0,0x0,0x0,0x0,0x2, + 0x77,0xef,0x0,0x0,0x0,0x0,0x0,0x3,0x71,0xc,0x70,0x0,0x0,0x0,0x0,0x4, + 0x61,0xb,0x80,0x0,0x0,0x0,0x0,0x5,0x50,0xee,0x70,0x0,0x0,0x0,0x0,0x6, + 0x40,0xed,0x80,0x0,0x0,0x0,0x0,0x7,0x30,0xd0,0x70,0x0,0x0,0x0,0x0,0x7, + 0x8d,0x27,0x80,0x0,0x0,0x0,0x0,0x9,0x10,0xb2,0x70,0x0,0x0,0x0,0x0,0x9, + 0xad,0xa3,0x0,0x0,0x0,0x0,0x0,0xa,0xf0,0x94,0x70,0x0,0x0,0x0,0x0,0xb, + 0xe0,0x93,0x80,0x0,0x0,0x0,0x0,0xc,0xd9,0xb0,0xf0,0x0,0x0,0x0,0x0,0xd, + 0xc0,0x75,0x80,0x0,0x0,0x0,0x0,0xe,0xb9,0x92,0xf0,0x0,0x0,0x0,0x0,0xf, + 0xa9,0x92,0x0,0x0,0x0,0x0,0x0,0x10,0x99,0x74,0xf0,0x0,0x0,0x0,0x0,0x11, + 0x89,0x74,0x0,0x0,0x0,0x0,0x0,0x12,0x79,0x56,0xf0,0x0,0x0,0x0,0x0,0x13, + 0x69,0x56,0x0,0x0,0x0,0x0,0x0,0x14,0x59,0x38,0xf0,0x0,0x0,0x0,0x0,0x15, + 0x49,0x38,0x0,0x0,0x0,0x0,0x0,0x16,0x39,0x1a,0xf0,0x0,0x0,0x0,0x0,0x17, + 0x29,0x1a,0x0,0x0,0x0,0x0,0x0,0x18,0x22,0x37,0x70,0x0,0x0,0x0,0x0,0x19, + 0x8,0xfc,0x0,0x0,0x0,0x0,0x0,0x1a,0x2,0x19,0x70,0x0,0x0,0x0,0x0,0x1a, + 0xf2,0x18,0x80,0x0,0x0,0x0,0x0,0x1b,0xe1,0xfb,0x70,0x0,0x0,0x0,0x0,0x1c, + 0xd1,0xfa,0x80,0x0,0x0,0x0,0x0,0x1d,0xc1,0xdd,0x70,0x0,0x0,0x0,0x0,0x1e, + 0xb1,0xdc,0x80,0x0,0x0,0x0,0x0,0x1f,0xa1,0xbf,0x70,0x0,0x0,0x0,0x0,0x20, + 0x76,0xf,0x0,0x0,0x0,0x0,0x0,0x21,0x81,0xa1,0x70,0x0,0x0,0x0,0x0,0x22, + 0x55,0xf1,0x0,0x0,0x0,0x0,0x0,0x23,0x6a,0xbd,0xf0,0x0,0x0,0x0,0x0,0x24, + 0x35,0xd3,0x0,0x0,0x0,0x0,0x0,0x25,0x4a,0x9f,0xf0,0x0,0x0,0x0,0x0,0x26, + 0x15,0xb5,0x0,0x0,0x0,0x0,0x0,0x27,0x2a,0x81,0xf0,0x0,0x0,0x0,0x0,0x27, + 0xfe,0xd1,0x80,0x0,0x0,0x0,0x0,0x29,0xa,0x63,0xf0,0x0,0x0,0x0,0x0,0x29, + 0xde,0xb3,0x80,0x0,0x0,0x0,0x0,0x2a,0xea,0x45,0xf0,0x0,0x0,0x0,0x0,0x2b, + 0xbe,0x95,0x80,0x0,0x0,0x0,0x0,0x2c,0xd3,0x62,0x70,0x0,0x0,0x0,0x0,0x2d, + 0x9e,0x77,0x80,0x0,0x0,0x0,0x0,0x2e,0xb3,0x44,0x70,0x0,0x0,0x0,0x0,0x2f, + 0x7e,0x59,0x80,0x0,0x0,0x0,0x0,0x30,0x93,0x26,0x70,0x0,0x0,0x0,0x0,0x31, + 0x67,0x76,0x0,0x0,0x0,0x0,0x0,0x32,0x73,0x8,0x70,0x0,0x0,0x0,0x0,0x33, + 0x47,0x58,0x0,0x0,0x0,0x0,0x0,0x34,0x52,0xea,0x70,0x0,0x0,0x0,0x0,0x35, + 0x27,0x3a,0x0,0x0,0x0,0x0,0x0,0x36,0x32,0xcc,0x70,0x0,0x0,0x0,0x0,0x37, + 0x7,0x1c,0x0,0x0,0x0,0x0,0x0,0x38,0x1b,0xe8,0xf0,0x0,0x0,0x0,0x0,0x38, + 0xe6,0xfe,0x0,0x0,0x0,0x0,0x0,0x39,0xfb,0xca,0xf0,0x0,0x0,0x0,0x0,0x3a, + 0xc6,0xe0,0x0,0x0,0x0,0x0,0x0,0x3b,0xdb,0xac,0xf0,0x0,0x0,0x0,0x0,0x3c, + 0xaf,0xfc,0x80,0x0,0x0,0x0,0x0,0x3d,0xbb,0x8e,0xf0,0x0,0x0,0x0,0x0,0x3e, + 0x8f,0xde,0x80,0x0,0x0,0x0,0x0,0x3f,0x9b,0x70,0xf0,0x0,0x0,0x0,0x0,0x40, + 0x6f,0xc0,0x80,0x0,0x0,0x0,0x0,0x41,0x84,0x8d,0x70,0x0,0x0,0x0,0x0,0x42, + 0x4f,0xa2,0x80,0x0,0x0,0x0,0x0,0x43,0x64,0x6f,0x70,0x0,0x0,0x0,0x0,0x44, + 0x2f,0x84,0x80,0x0,0x0,0x0,0x0,0x45,0x44,0x51,0x70,0x0,0x0,0x0,0x0,0x45, + 0xf3,0xb7,0x0,0x0,0x0,0x0,0x0,0x47,0x2d,0x6d,0xf0,0x0,0x0,0x0,0x0,0x47, + 0xd3,0x99,0x0,0x0,0x0,0x0,0x0,0x49,0xd,0x4f,0xf0,0x0,0x0,0x0,0x0,0x49, + 0xb3,0x7b,0x0,0x0,0x0,0x0,0x0,0x4a,0xed,0x31,0xf0,0x0,0x0,0x0,0x0,0x4b, + 0x9c,0x97,0x80,0x0,0x0,0x0,0x0,0x4c,0xd6,0x4e,0x70,0x0,0x0,0x0,0x0,0x4d, + 0x7c,0x79,0x80,0x0,0x0,0x0,0x0,0x4e,0xb6,0x30,0x70,0x0,0x0,0x0,0x0,0x4f, + 0x5c,0x5b,0x80,0x0,0x0,0x0,0x0,0x50,0x96,0x12,0x70,0x0,0x0,0x0,0x0,0x51, + 0x3c,0x3d,0x80,0x0,0x0,0x0,0x0,0x52,0x75,0xf4,0x70,0x0,0x0,0x0,0x0,0x53, + 0x1c,0x1f,0x80,0x0,0x0,0x0,0x0,0x54,0x55,0xd6,0x70,0x0,0x0,0x0,0x0,0x54, + 0xfc,0x1,0x80,0x0,0x0,0x0,0x0,0x56,0x35,0xb8,0x70,0x0,0x0,0x0,0x0,0x56, + 0xe5,0x1e,0x0,0x0,0x0,0x0,0x0,0x58,0x1e,0xd4,0xf0,0x0,0x0,0x0,0x0,0x58, + 0xc5,0x0,0x0,0x0,0x0,0x0,0x0,0x59,0xfe,0xb6,0xf0,0x0,0x0,0x0,0x0,0x5a, + 0xa4,0xe2,0x0,0x0,0x0,0x0,0x0,0x5b,0xde,0x98,0xf0,0x0,0x0,0x0,0x0,0x5c, + 0x84,0xc4,0x0,0x0,0x0,0x0,0x0,0x5d,0xbe,0x7a,0xf0,0x0,0x0,0x0,0x0,0x5e, + 0x64,0xa6,0x0,0x0,0x0,0x0,0x0,0x5f,0x9e,0x5c,0xf0,0x0,0x0,0x0,0x0,0x60, + 0x4d,0xc2,0x80,0x0,0x0,0x0,0x0,0x61,0x87,0x79,0x70,0x0,0x0,0x0,0x0,0x62, + 0x2d,0xa4,0x80,0x0,0x0,0x0,0x0,0x63,0x67,0x5b,0x70,0x0,0x0,0x0,0x0,0x64, + 0xd,0x86,0x80,0x0,0x0,0x0,0x0,0x65,0x47,0x3d,0x70,0x0,0x0,0x0,0x0,0x65, + 0xed,0x68,0x80,0x0,0x0,0x0,0x0,0x67,0x27,0x1f,0x70,0x0,0x0,0x0,0x0,0x67, + 0xcd,0x4a,0x80,0x0,0x0,0x0,0x0,0x69,0x7,0x1,0x70,0x0,0x0,0x0,0x0,0x69, + 0xad,0x2c,0x80,0x0,0x0,0x0,0x0,0x6a,0xe6,0xe3,0x70,0x0,0x0,0x0,0x0,0x6b, + 0x96,0x49,0x0,0x0,0x0,0x0,0x0,0x6c,0xcf,0xff,0xf0,0x0,0x0,0x0,0x0,0x6d, + 0x76,0x2b,0x0,0x0,0x0,0x0,0x0,0x6e,0xaf,0xe1,0xf0,0x0,0x0,0x0,0x0,0x6f, + 0x56,0xd,0x0,0x0,0x0,0x0,0x0,0x70,0x8f,0xc3,0xf0,0x0,0x0,0x0,0x0,0x71, + 0x35,0xef,0x0,0x0,0x0,0x0,0x0,0x72,0x6f,0xa5,0xf0,0x0,0x0,0x0,0x0,0x73, + 0x15,0xd1,0x0,0x0,0x0,0x0,0x0,0x74,0x4f,0x87,0xf0,0x0,0x0,0x0,0x0,0x74, + 0xfe,0xed,0x80,0x0,0x0,0x0,0x0,0x76,0x38,0xa4,0x70,0x0,0x0,0x0,0x0,0x76, + 0xde,0xcf,0x80,0x0,0x0,0x0,0x0,0x78,0x18,0x86,0x70,0x0,0x0,0x0,0x0,0x78, + 0xbe,0xb1,0x80,0x0,0x0,0x0,0x0,0x79,0xf8,0x68,0x70,0x0,0x0,0x0,0x0,0x7a, + 0x9e,0x93,0x80,0x0,0x0,0x0,0x0,0x7b,0xd8,0x4a,0x70,0x0,0x0,0x0,0x0,0x7c, + 0x7e,0x75,0x80,0x0,0x0,0x0,0x0,0x7d,0xb8,0x2c,0x70,0x0,0x0,0x0,0x0,0x7e, + 0x5e,0x57,0x80,0x0,0x0,0x0,0x0,0x7f,0x98,0xe,0x70,0x0,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x3,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x4,0x5,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x3, - 0x4,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, @@ -28367,131 +24803,313 @@ static const unsigned char qt_resource_data[] = { 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0xb5,0x94,0x0,0x0, - 0xff,0xff,0xc7,0xc0,0x1,0x4,0xff,0xff,0xb9,0xb0,0x0,0x8,0xff,0xff,0xc7,0xc0, - 0x1,0xc,0xff,0xff,0xc7,0xc0,0x1,0x10,0x4c,0x4d,0x54,0x0,0x45,0x44,0x54,0x0, - 0x45,0x53,0x54,0x0,0x45,0x57,0x54,0x0,0x45,0x50,0x54,0x0,0x0,0x0,0x0,0x0, - 0x1,0x0,0x0,0x0,0x0,0x1,0xa,0x45,0x53,0x54,0x35,0x45,0x44,0x54,0x2c,0x4d, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0xad,0xd4,0x0,0x0,0xff,0xff, + 0xb9,0xb0,0x1,0x4,0xff,0xff,0xab,0xa0,0x0,0x8,0xff,0xff,0xb9,0xb0,0x0,0xc, + 0xff,0xff,0xb9,0xb0,0x1,0x10,0xff,0xff,0xb9,0xb0,0x1,0x14,0xff,0xff,0xab,0xa0, + 0x0,0x8,0x4c,0x4d,0x54,0x0,0x43,0x44,0x54,0x0,0x43,0x53,0x54,0x0,0x45,0x53, + 0x54,0x0,0x43,0x57,0x54,0x0,0x43,0x50,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x1, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0x43,0x53,0x54,0x36,0x43,0x44,0x54, + 0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, + + // /home/konrad/src/smoke/tzone/zoneinfo/America/Port-au-Prince + 0x0,0x0,0x5,0xaf, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x56,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x80,0x0,0x0,0x0,0x9c, + 0x6e,0x71,0xfc,0x19,0x1b,0x46,0xd0,0x1a,0x1,0xef,0x40,0x1a,0xf1,0xee,0x50,0x1b, + 0xe1,0xd1,0x40,0x1c,0xd1,0xd0,0x50,0x1d,0xc1,0xb3,0x40,0x1e,0xb1,0xb2,0x50,0x1f, + 0xa1,0x95,0x40,0x20,0x91,0x94,0x50,0x21,0x81,0x77,0x40,0x22,0x55,0xd4,0xe0,0x23, + 0x6a,0xaf,0xe0,0x24,0x35,0xb6,0xe0,0x25,0x4a,0x91,0xe0,0x26,0x15,0x98,0xe0,0x27, + 0x2a,0x73,0xe0,0x27,0xfe,0xb5,0x60,0x29,0xa,0x55,0xe0,0x29,0xde,0x97,0x60,0x2a, + 0xea,0x37,0xe0,0x2b,0xbe,0x79,0x60,0x2c,0xd3,0x54,0x60,0x2d,0x9e,0x5b,0x60,0x2e, + 0xb3,0x36,0x60,0x2f,0x7e,0x3d,0x60,0x30,0x93,0x18,0x60,0x31,0x67,0x59,0xe0,0x32, + 0x72,0xfa,0x60,0x33,0x47,0x3b,0xe0,0x34,0x52,0xdc,0x60,0x42,0x4f,0x78,0x50,0x43, + 0x64,0x45,0x40,0x44,0x2f,0x5a,0x50,0x45,0x44,0x27,0x40,0x4f,0x5c,0x4d,0x70,0x50, + 0x96,0x4,0x60,0x51,0x3c,0x2f,0x70,0x52,0x75,0xe6,0x60,0x53,0x1c,0x11,0x70,0x54, + 0x55,0xc8,0x60,0x54,0xfb,0xf3,0x70,0x56,0x35,0xaa,0x60,0x58,0xc4,0xf1,0xf0,0x59, + 0xfe,0xa8,0xe0,0x5a,0xa4,0xd3,0xf0,0x5b,0xde,0x8a,0xe0,0x5c,0x84,0xb5,0xf0,0x5d, + 0xbe,0x6c,0xe0,0x5e,0x64,0x97,0xf0,0x5f,0x9e,0x4e,0xe0,0x60,0x4d,0xb4,0x70,0x61, + 0x87,0x6b,0x60,0x62,0x2d,0x96,0x70,0x63,0x67,0x4d,0x60,0x64,0xd,0x78,0x70,0x65, + 0x47,0x2f,0x60,0x65,0xed,0x5a,0x70,0x67,0x27,0x11,0x60,0x67,0xcd,0x3c,0x70,0x69, + 0x6,0xf3,0x60,0x69,0xad,0x1e,0x70,0x6a,0xe6,0xd5,0x60,0x6b,0x96,0x3a,0xf0,0x6c, + 0xcf,0xf1,0xe0,0x6d,0x76,0x1c,0xf0,0x6e,0xaf,0xd3,0xe0,0x6f,0x55,0xfe,0xf0,0x70, + 0x8f,0xb5,0xe0,0x71,0x35,0xe0,0xf0,0x72,0x6f,0x97,0xe0,0x73,0x15,0xc2,0xf0,0x74, + 0x4f,0x79,0xe0,0x74,0xfe,0xdf,0x70,0x76,0x38,0x96,0x60,0x76,0xde,0xc1,0x70,0x78, + 0x18,0x78,0x60,0x78,0xbe,0xa3,0x70,0x79,0xf8,0x5a,0x60,0x7a,0x9e,0x85,0x70,0x7b, + 0xd8,0x3c,0x60,0x7c,0x7e,0x67,0x70,0x7d,0xb8,0x1e,0x60,0x7e,0x5e,0x49,0x70,0x7f, + 0x98,0x0,0x60,0x1,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0xff,0xff,0xbc,0x30,0x0,0x0,0xff, + 0xff,0xbc,0x44,0x0,0x4,0xff,0xff,0xc7,0xc0,0x1,0x9,0xff,0xff,0xb9,0xb0,0x0, + 0xd,0xff,0xff,0xc7,0xc0,0x1,0x9,0xff,0xff,0xb9,0xb0,0x0,0xd,0x4c,0x4d,0x54, + 0x0,0x50,0x50,0x4d,0x54,0x0,0x45,0x44,0x54,0x0,0x45,0x53,0x54,0x0,0x0,0x0, + 0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x57,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x11,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff, + 0xff,0xff,0x69,0x87,0x1f,0x50,0xff,0xff,0xff,0xff,0x9c,0x6e,0x71,0xfc,0x0,0x0, + 0x0,0x0,0x19,0x1b,0x46,0xd0,0x0,0x0,0x0,0x0,0x1a,0x1,0xef,0x40,0x0,0x0, + 0x0,0x0,0x1a,0xf1,0xee,0x50,0x0,0x0,0x0,0x0,0x1b,0xe1,0xd1,0x40,0x0,0x0, + 0x0,0x0,0x1c,0xd1,0xd0,0x50,0x0,0x0,0x0,0x0,0x1d,0xc1,0xb3,0x40,0x0,0x0, + 0x0,0x0,0x1e,0xb1,0xb2,0x50,0x0,0x0,0x0,0x0,0x1f,0xa1,0x95,0x40,0x0,0x0, + 0x0,0x0,0x20,0x91,0x94,0x50,0x0,0x0,0x0,0x0,0x21,0x81,0x77,0x40,0x0,0x0, + 0x0,0x0,0x22,0x55,0xd4,0xe0,0x0,0x0,0x0,0x0,0x23,0x6a,0xaf,0xe0,0x0,0x0, + 0x0,0x0,0x24,0x35,0xb6,0xe0,0x0,0x0,0x0,0x0,0x25,0x4a,0x91,0xe0,0x0,0x0, + 0x0,0x0,0x26,0x15,0x98,0xe0,0x0,0x0,0x0,0x0,0x27,0x2a,0x73,0xe0,0x0,0x0, + 0x0,0x0,0x27,0xfe,0xb5,0x60,0x0,0x0,0x0,0x0,0x29,0xa,0x55,0xe0,0x0,0x0, + 0x0,0x0,0x29,0xde,0x97,0x60,0x0,0x0,0x0,0x0,0x2a,0xea,0x37,0xe0,0x0,0x0, + 0x0,0x0,0x2b,0xbe,0x79,0x60,0x0,0x0,0x0,0x0,0x2c,0xd3,0x54,0x60,0x0,0x0, + 0x0,0x0,0x2d,0x9e,0x5b,0x60,0x0,0x0,0x0,0x0,0x2e,0xb3,0x36,0x60,0x0,0x0, + 0x0,0x0,0x2f,0x7e,0x3d,0x60,0x0,0x0,0x0,0x0,0x30,0x93,0x18,0x60,0x0,0x0, + 0x0,0x0,0x31,0x67,0x59,0xe0,0x0,0x0,0x0,0x0,0x32,0x72,0xfa,0x60,0x0,0x0, + 0x0,0x0,0x33,0x47,0x3b,0xe0,0x0,0x0,0x0,0x0,0x34,0x52,0xdc,0x60,0x0,0x0, + 0x0,0x0,0x42,0x4f,0x78,0x50,0x0,0x0,0x0,0x0,0x43,0x64,0x45,0x40,0x0,0x0, + 0x0,0x0,0x44,0x2f,0x5a,0x50,0x0,0x0,0x0,0x0,0x45,0x44,0x27,0x40,0x0,0x0, + 0x0,0x0,0x4f,0x5c,0x4d,0x70,0x0,0x0,0x0,0x0,0x50,0x96,0x4,0x60,0x0,0x0, + 0x0,0x0,0x51,0x3c,0x2f,0x70,0x0,0x0,0x0,0x0,0x52,0x75,0xe6,0x60,0x0,0x0, + 0x0,0x0,0x53,0x1c,0x11,0x70,0x0,0x0,0x0,0x0,0x54,0x55,0xc8,0x60,0x0,0x0, + 0x0,0x0,0x54,0xfb,0xf3,0x70,0x0,0x0,0x0,0x0,0x56,0x35,0xaa,0x60,0x0,0x0, + 0x0,0x0,0x58,0xc4,0xf1,0xf0,0x0,0x0,0x0,0x0,0x59,0xfe,0xa8,0xe0,0x0,0x0, + 0x0,0x0,0x5a,0xa4,0xd3,0xf0,0x0,0x0,0x0,0x0,0x5b,0xde,0x8a,0xe0,0x0,0x0, + 0x0,0x0,0x5c,0x84,0xb5,0xf0,0x0,0x0,0x0,0x0,0x5d,0xbe,0x6c,0xe0,0x0,0x0, + 0x0,0x0,0x5e,0x64,0x97,0xf0,0x0,0x0,0x0,0x0,0x5f,0x9e,0x4e,0xe0,0x0,0x0, + 0x0,0x0,0x60,0x4d,0xb4,0x70,0x0,0x0,0x0,0x0,0x61,0x87,0x6b,0x60,0x0,0x0, + 0x0,0x0,0x62,0x2d,0x96,0x70,0x0,0x0,0x0,0x0,0x63,0x67,0x4d,0x60,0x0,0x0, + 0x0,0x0,0x64,0xd,0x78,0x70,0x0,0x0,0x0,0x0,0x65,0x47,0x2f,0x60,0x0,0x0, + 0x0,0x0,0x65,0xed,0x5a,0x70,0x0,0x0,0x0,0x0,0x67,0x27,0x11,0x60,0x0,0x0, + 0x0,0x0,0x67,0xcd,0x3c,0x70,0x0,0x0,0x0,0x0,0x69,0x6,0xf3,0x60,0x0,0x0, + 0x0,0x0,0x69,0xad,0x1e,0x70,0x0,0x0,0x0,0x0,0x6a,0xe6,0xd5,0x60,0x0,0x0, + 0x0,0x0,0x6b,0x96,0x3a,0xf0,0x0,0x0,0x0,0x0,0x6c,0xcf,0xf1,0xe0,0x0,0x0, + 0x0,0x0,0x6d,0x76,0x1c,0xf0,0x0,0x0,0x0,0x0,0x6e,0xaf,0xd3,0xe0,0x0,0x0, + 0x0,0x0,0x6f,0x55,0xfe,0xf0,0x0,0x0,0x0,0x0,0x70,0x8f,0xb5,0xe0,0x0,0x0, + 0x0,0x0,0x71,0x35,0xe0,0xf0,0x0,0x0,0x0,0x0,0x72,0x6f,0x97,0xe0,0x0,0x0, + 0x0,0x0,0x73,0x15,0xc2,0xf0,0x0,0x0,0x0,0x0,0x74,0x4f,0x79,0xe0,0x0,0x0, + 0x0,0x0,0x74,0xfe,0xdf,0x70,0x0,0x0,0x0,0x0,0x76,0x38,0x96,0x60,0x0,0x0, + 0x0,0x0,0x76,0xde,0xc1,0x70,0x0,0x0,0x0,0x0,0x78,0x18,0x78,0x60,0x0,0x0, + 0x0,0x0,0x78,0xbe,0xa3,0x70,0x0,0x0,0x0,0x0,0x79,0xf8,0x5a,0x60,0x0,0x0, + 0x0,0x0,0x7a,0x9e,0x85,0x70,0x0,0x0,0x0,0x0,0x7b,0xd8,0x3c,0x60,0x0,0x0, + 0x0,0x0,0x7c,0x7e,0x67,0x70,0x0,0x0,0x0,0x0,0x7d,0xb8,0x1e,0x60,0x0,0x0, + 0x0,0x0,0x7e,0x5e,0x49,0x70,0x0,0x0,0x0,0x0,0x7f,0x98,0x0,0x60,0x0,0x1, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0xff,0xff,0xbc,0x30,0x0,0x0,0xff,0xff,0xbc,0x44,0x0, + 0x4,0xff,0xff,0xc7,0xc0,0x1,0x9,0xff,0xff,0xb9,0xb0,0x0,0xd,0xff,0xff,0xc7, + 0xc0,0x1,0x9,0xff,0xff,0xb9,0xb0,0x0,0xd,0x4c,0x4d,0x54,0x0,0x50,0x50,0x4d, + 0x54,0x0,0x45,0x44,0x54,0x0,0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x1, + 0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x45,0x53,0x54,0x35,0x45,0x44,0x54,0x2c,0x4d, 0x33,0x2e,0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Dawson - 0x0,0x0,0x8,0x2d, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Swift_Current + 0x0,0x0,0x2,0x3e, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x18,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x80,0x0,0x0,0x0,0x86, + 0xfd,0x96,0x18,0x9e,0xb8,0xaf,0x90,0x9f,0xbb,0x7,0x80,0xcb,0x89,0xc,0x90,0xd2, + 0x23,0xf4,0x70,0xd2,0x61,0x18,0x0,0xd3,0x76,0x1,0x10,0xd4,0x53,0x6f,0x0,0xd5, + 0x55,0xe3,0x10,0xd6,0x20,0xdc,0x0,0xd7,0x35,0xc5,0x10,0xd8,0x0,0xbe,0x0,0xd9, + 0x15,0xa7,0x10,0xd9,0xe0,0xa0,0x0,0xe8,0x27,0x2c,0x10,0xe9,0x17,0xf,0x0,0xeb, + 0xe6,0xf0,0x10,0xec,0xd6,0xd3,0x0,0xed,0xc6,0xd2,0x10,0xee,0x91,0xcb,0x0,0xef, + 0xaf,0xee,0x90,0xf0,0x71,0xad,0x0,0x4,0x61,0x19,0x90,0x0,0x2,0x1,0x2,0x3, + 0x4,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x5,0xff,0xff,0x9a,0xe8,0x0,0x0,0xff,0xff,0xab,0xa0,0x1,0x4,0xff, + 0xff,0x9d,0x90,0x0,0x8,0xff,0xff,0xab,0xa0,0x1,0xc,0xff,0xff,0xab,0xa0,0x1, + 0x10,0xff,0xff,0xab,0xa0,0x0,0x14,0x4c,0x4d,0x54,0x0,0x4d,0x44,0x54,0x0,0x4d, + 0x53,0x54,0x0,0x4d,0x57,0x54,0x0,0x4d,0x50,0x54,0x0,0x43,0x53,0x54,0x0,0x0, + 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x54,0x5a,0x69,0x66,0x32, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x18,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x18,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff, + 0xff,0xff,0xff,0x86,0xfd,0x96,0x18,0xff,0xff,0xff,0xff,0x9e,0xb8,0xaf,0x90,0xff, + 0xff,0xff,0xff,0x9f,0xbb,0x7,0x80,0xff,0xff,0xff,0xff,0xcb,0x89,0xc,0x90,0xff, + 0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x61,0x18,0x0,0xff, + 0xff,0xff,0xff,0xd3,0x76,0x1,0x10,0xff,0xff,0xff,0xff,0xd4,0x53,0x6f,0x0,0xff, + 0xff,0xff,0xff,0xd5,0x55,0xe3,0x10,0xff,0xff,0xff,0xff,0xd6,0x20,0xdc,0x0,0xff, + 0xff,0xff,0xff,0xd7,0x35,0xc5,0x10,0xff,0xff,0xff,0xff,0xd8,0x0,0xbe,0x0,0xff, + 0xff,0xff,0xff,0xd9,0x15,0xa7,0x10,0xff,0xff,0xff,0xff,0xd9,0xe0,0xa0,0x0,0xff, + 0xff,0xff,0xff,0xe8,0x27,0x2c,0x10,0xff,0xff,0xff,0xff,0xe9,0x17,0xf,0x0,0xff, + 0xff,0xff,0xff,0xeb,0xe6,0xf0,0x10,0xff,0xff,0xff,0xff,0xec,0xd6,0xd3,0x0,0xff, + 0xff,0xff,0xff,0xed,0xc6,0xd2,0x10,0xff,0xff,0xff,0xff,0xee,0x91,0xcb,0x0,0xff, + 0xff,0xff,0xff,0xef,0xaf,0xee,0x90,0xff,0xff,0xff,0xff,0xf0,0x71,0xad,0x0,0x0, + 0x0,0x0,0x0,0x4,0x61,0x19,0x90,0x0,0x2,0x1,0x2,0x3,0x4,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x5,0xff, + 0xff,0x9a,0xe8,0x0,0x0,0xff,0xff,0xab,0xa0,0x1,0x4,0xff,0xff,0x9d,0x90,0x0, + 0x8,0xff,0xff,0xab,0xa0,0x1,0xc,0xff,0xff,0xab,0xa0,0x1,0x10,0xff,0xff,0xab, + 0xa0,0x0,0x14,0x4c,0x4d,0x54,0x0,0x4d,0x44,0x54,0x0,0x4d,0x53,0x54,0x0,0x4d, + 0x57,0x54,0x0,0x4d,0x50,0x54,0x0,0x43,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x1, + 0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0x43,0x53,0x54,0x36,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Guyana + 0x0,0x0,0x1,0xa, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x5,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x12,0x80,0x0,0x0,0x0,0x98, + 0xd9,0x79,0x88,0xa,0x7d,0xb4,0x3c,0x27,0x7f,0xfb,0x30,0x7f,0xff,0xff,0xff,0x0, + 0x1,0x2,0x3,0x3,0xff,0xff,0xc9,0x78,0x0,0x0,0xff,0xff,0xcb,0x44,0x0,0x4, + 0xff,0xff,0xd5,0xd0,0x0,0xa,0xff,0xff,0xc7,0xc0,0x0,0xe,0x4c,0x4d,0x54,0x0, + 0x2d,0x30,0x33,0x34,0x35,0x0,0x2d,0x30,0x33,0x0,0x2d,0x30,0x34,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0, + 0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x4,0x0,0x0, + 0x0,0x12,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x98,0xd9, + 0x79,0x88,0x0,0x0,0x0,0x0,0xa,0x7d,0xb4,0x3c,0x0,0x0,0x0,0x0,0x27,0x7f, + 0xfb,0x30,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x2,0x3,0x3,0xff, + 0xff,0xc9,0x78,0x0,0x0,0xff,0xff,0xcb,0x44,0x0,0x4,0xff,0xff,0xd5,0xd0,0x0, + 0xa,0xff,0xff,0xc7,0xc0,0x0,0xe,0x4c,0x4d,0x54,0x0,0x2d,0x30,0x33,0x34,0x35, + 0x0,0x2d,0x30,0x33,0x0,0x2d,0x30,0x34,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xa,0x3c,0x2d,0x30,0x34,0x3e,0x34,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Santiago + 0x0,0x0,0x9,0xea, + 0x54, + 0x5a,0x69,0x66,0x33,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x7f,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x21,0x80,0x0,0x0,0x0,0x9e, - 0xb8,0xcb,0xb0,0x9f,0xbb,0x23,0xa0,0xa0,0xd0,0xc,0xb0,0xa1,0xa2,0xd2,0x80,0xcb, - 0x89,0x28,0xb0,0xd2,0x23,0xf4,0x70,0xd2,0x61,0x34,0x20,0xf7,0x2f,0x76,0x90,0xf8, - 0x28,0xa2,0x10,0x7,0x30,0xec,0x90,0x13,0x69,0x72,0x20,0x14,0x59,0x55,0x10,0x15, - 0x49,0x54,0x20,0x16,0x39,0x37,0x10,0x17,0x29,0x36,0x20,0x18,0x22,0x53,0x90,0x19, - 0x9,0x18,0x20,0x1a,0x2,0x35,0x90,0x1a,0xf2,0x34,0xa0,0x1b,0xe2,0x17,0x90,0x1c, - 0xd2,0x16,0xa0,0x1d,0xc1,0xf9,0x90,0x1e,0xb1,0xf8,0xa0,0x1f,0xa1,0xdb,0x90,0x20, - 0x76,0x2b,0x20,0x21,0x81,0xbd,0x90,0x22,0x56,0xd,0x20,0x23,0x6a,0xda,0x10,0x24, - 0x35,0xef,0x20,0x25,0x4a,0xbc,0x10,0x26,0x15,0xd1,0x20,0x27,0x2a,0x9e,0x10,0x27, - 0xfe,0xed,0xa0,0x29,0xa,0x80,0x10,0x29,0xde,0xcf,0xa0,0x2a,0xea,0x62,0x10,0x2b, - 0xbe,0xb1,0xa0,0x2c,0xd3,0x7e,0x90,0x2d,0x9e,0x93,0xa0,0x2e,0xb3,0x60,0x90,0x2f, - 0x7e,0x75,0xa0,0x30,0x93,0x42,0x90,0x31,0x67,0x92,0x20,0x32,0x73,0x24,0x90,0x33, - 0x47,0x74,0x20,0x34,0x53,0x6,0x90,0x35,0x27,0x56,0x20,0x36,0x32,0xe8,0x90,0x37, - 0x7,0x38,0x20,0x38,0x1c,0x5,0x10,0x38,0xe7,0x1a,0x20,0x39,0xfb,0xe7,0x10,0x3a, - 0xc6,0xfc,0x20,0x3b,0xdb,0xc9,0x10,0x3c,0xb0,0x18,0xa0,0x3d,0xbb,0xab,0x10,0x3e, - 0x8f,0xfa,0xa0,0x3f,0x9b,0x8d,0x10,0x40,0x6f,0xdc,0xa0,0x41,0x84,0xa9,0x90,0x42, - 0x4f,0xbe,0xa0,0x43,0x64,0x8b,0x90,0x44,0x2f,0xa0,0xa0,0x45,0x44,0x6d,0x90,0x45, - 0xf3,0xd3,0x20,0x47,0x2d,0x8a,0x10,0x47,0xd3,0xb5,0x20,0x49,0xd,0x6c,0x10,0x49, - 0xb3,0x97,0x20,0x4a,0xed,0x4e,0x10,0x4b,0x9c,0xb3,0xa0,0x4c,0xd6,0x6a,0x90,0x4d, - 0x7c,0x95,0xa0,0x4e,0xb6,0x4c,0x90,0x4f,0x5c,0x77,0xa0,0x50,0x96,0x2e,0x90,0x51, - 0x3c,0x59,0xa0,0x52,0x76,0x10,0x90,0x53,0x1c,0x3b,0xa0,0x54,0x55,0xf2,0x90,0x54, - 0xfc,0x1d,0xa0,0x56,0x35,0xd4,0x90,0x56,0xe5,0x3a,0x20,0x58,0x1e,0xf1,0x10,0x58, - 0xc5,0x1c,0x20,0x59,0xfe,0xd3,0x10,0x5a,0xa4,0xfe,0x20,0x5b,0xde,0xb5,0x10,0x5c, - 0x84,0xe0,0x20,0x5d,0xbe,0x97,0x10,0x5e,0x64,0xc2,0x20,0x5f,0x9e,0x79,0x10,0x60, - 0x4d,0xde,0xa0,0x61,0x87,0x95,0x90,0x62,0x2d,0xc0,0xa0,0x63,0x67,0x77,0x90,0x64, - 0xd,0xa2,0xa0,0x65,0x47,0x59,0x90,0x65,0xed,0x84,0xa0,0x67,0x27,0x3b,0x90,0x67, - 0xcd,0x66,0xa0,0x69,0x7,0x1d,0x90,0x69,0xad,0x48,0xa0,0x6a,0xe6,0xff,0x90,0x6b, - 0x96,0x65,0x20,0x6c,0xd0,0x1c,0x10,0x6d,0x76,0x47,0x20,0x6e,0xaf,0xfe,0x10,0x6f, - 0x56,0x29,0x20,0x70,0x8f,0xe0,0x10,0x71,0x36,0xb,0x20,0x72,0x6f,0xc2,0x10,0x73, - 0x15,0xed,0x20,0x74,0x4f,0xa4,0x10,0x74,0xff,0x9,0xa0,0x76,0x38,0xc0,0x90,0x76, - 0xde,0xeb,0xa0,0x78,0x18,0xa2,0x90,0x78,0xbe,0xcd,0xa0,0x79,0xf8,0x84,0x90,0x7a, - 0x9e,0xaf,0xa0,0x7b,0xd8,0x66,0x90,0x7c,0x7e,0x91,0xa0,0x7d,0xb8,0x48,0x90,0x7e, - 0x5e,0x73,0xa0,0x7f,0x98,0x2a,0x90,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x2,0x5, - 0x2,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, + 0x0,0x0,0xa0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0x8f, + 0x30,0x47,0x46,0x9b,0x5c,0xe5,0x50,0x9f,0x7c,0xe2,0xc6,0xa1,0x0,0x71,0xc0,0xb0, + 0x5e,0x77,0xc6,0xb1,0x77,0x3d,0x40,0xb2,0x41,0x0,0xd0,0xb3,0x58,0x70,0xc0,0xb4, + 0x22,0x34,0x50,0xb5,0x39,0xa4,0x40,0xb6,0x3,0x67,0xd0,0xb7,0x1a,0xd7,0xc0,0xb7, + 0xe4,0x9b,0x50,0xb8,0xfd,0x5c,0xc0,0xb9,0xc7,0x20,0x50,0xcc,0x1c,0x6e,0x40,0xcc, + 0x6c,0xe7,0xd0,0xd3,0xdc,0x8f,0xc0,0xd4,0x1b,0xc9,0xb0,0xd5,0x33,0x55,0xc0,0xd5, + 0x76,0x92,0x40,0xfd,0xd1,0x3c,0x40,0xfe,0x92,0xfa,0xb0,0xff,0xcc,0xcd,0xc0,0x0, + 0x72,0xdc,0xb0,0x1,0x75,0x50,0xc0,0x2,0x40,0x49,0xb0,0x3,0x55,0x32,0xc0,0x4, + 0x20,0x2b,0xb0,0x5,0x3e,0x4f,0x40,0x6,0x0,0xd,0xb0,0x7,0xb,0xbc,0x40,0x7, + 0xdf,0xef,0xb0,0x8,0xfe,0x13,0x40,0x9,0xbf,0xd1,0xb0,0xa,0xdd,0xf5,0x40,0xb, + 0xa8,0xee,0x30,0xc,0xbd,0xd7,0x40,0xd,0x88,0xd0,0x30,0xe,0x9d,0xb9,0x40,0xf, + 0x68,0xb2,0x30,0x10,0x86,0xd5,0xc0,0x11,0x48,0x94,0x30,0x12,0x66,0xb7,0xc0,0x13, + 0x28,0x76,0x30,0x14,0x46,0x99,0xc0,0x15,0x11,0x92,0xb0,0x16,0x26,0x7b,0xc0,0x16, + 0xf1,0x74,0xb0,0x18,0x6,0x5d,0xc0,0x18,0xd1,0x56,0xb0,0x19,0xe6,0x3f,0xc0,0x1a, + 0xb1,0x38,0xb0,0x1b,0xcf,0x5c,0x40,0x1c,0x91,0x1a,0xb0,0x1d,0xaf,0x3e,0x40,0x1e, + 0x70,0xfc,0xb0,0x1f,0x8f,0x20,0x40,0x20,0x7f,0x3,0x30,0x21,0x6f,0x2,0x40,0x22, + 0x39,0xfb,0x30,0x23,0x4e,0xe4,0x40,0x24,0x19,0xdd,0x30,0x25,0x38,0x0,0xc0,0x25, + 0xf9,0xbf,0x30,0x26,0xf2,0xf8,0xc0,0x27,0xd9,0xa1,0x30,0x28,0xf7,0xc4,0xc0,0x29, + 0xc2,0xbd,0xb0,0x2a,0xd7,0xa6,0xc0,0x2b,0xa2,0x9f,0xb0,0x2c,0xb7,0x88,0xc0,0x2d, + 0x82,0x81,0xb0,0x2e,0x97,0x6a,0xc0,0x2f,0x62,0x63,0xb0,0x30,0x80,0x87,0x40,0x31, + 0x42,0x45,0xb0,0x32,0x60,0x69,0x40,0x33,0x3d,0xd7,0x30,0x34,0x40,0x4b,0x40,0x35, + 0xb,0x44,0x30,0x36,0xd,0xb8,0x40,0x37,0x6,0xd5,0xb0,0x38,0x0,0xf,0x40,0x38, + 0xcb,0x8,0x30,0x39,0xe9,0x2b,0xc0,0x3a,0xaa,0xea,0x30,0x3b,0xc9,0xd,0xc0,0x3c, + 0x8a,0xcc,0x30,0x3d,0xa8,0xef,0xc0,0x3e,0x6a,0xae,0x30,0x3f,0x88,0xd1,0xc0,0x40, + 0x53,0xca,0xb0,0x41,0x68,0xb3,0xc0,0x42,0x33,0xac,0xb0,0x43,0x48,0x95,0xc0,0x44, + 0x13,0x8e,0xb0,0x45,0x31,0xb2,0x40,0x45,0xf3,0x70,0xb0,0x47,0x11,0x94,0x40,0x47, + 0xef,0x2,0x30,0x48,0xf1,0x76,0x40,0x49,0xbc,0x6f,0x30,0x4a,0xd1,0x58,0x40,0x4b, + 0xb8,0x0,0xb0,0x4c,0xb1,0x3a,0x40,0x4d,0xc6,0x7,0x30,0x4e,0x50,0x82,0xc0,0x4f, + 0x9c,0xae,0xb0,0x50,0x42,0xd9,0xc0,0x51,0x7c,0x90,0xb0,0x52,0x2b,0xf6,0x40,0x53, + 0x5c,0x72,0xb0,0x54,0xb,0xd8,0x40,0x57,0x37,0xe6,0x30,0x57,0xaf,0xec,0xc0,0x59, + 0x17,0xc8,0x30,0x59,0x8f,0xce,0xc0,0x5a,0xf7,0xaa,0x30,0x5b,0x6f,0xb0,0xc0,0x5c, + 0xd7,0x8c,0x30,0x5d,0x4f,0x92,0xc0,0x5e,0xb7,0x6e,0x30,0x5f,0x2f,0x74,0xc0,0x60, + 0x97,0x50,0x30,0x61,0x18,0x91,0x40,0x62,0x80,0x6c,0xb0,0x62,0xf8,0x73,0x40,0x64, + 0x60,0x4e,0xb0,0x64,0xd8,0x55,0x40,0x66,0x40,0x30,0xb0,0x66,0xb8,0x37,0x40,0x68, + 0x20,0x12,0xb0,0x68,0x98,0x19,0x40,0x69,0xff,0xf4,0xb0,0x6a,0x77,0xfb,0x40,0x6b, + 0xdf,0xd6,0xb0,0x6c,0x61,0x17,0xc0,0x6d,0xc8,0xf3,0x30,0x6e,0x40,0xf9,0xc0,0x6f, + 0xa8,0xd5,0x30,0x70,0x20,0xdb,0xc0,0x71,0x88,0xb7,0x30,0x72,0x0,0xbd,0xc0,0x73, + 0x68,0x99,0x30,0x73,0xe0,0x9f,0xc0,0x75,0x48,0x7b,0x30,0x75,0xc9,0xbc,0x40,0x77, + 0x31,0x97,0xb0,0x77,0xa9,0x9e,0x40,0x79,0x11,0x79,0xb0,0x79,0x89,0x80,0x40,0x7a, + 0xf1,0x5b,0xb0,0x7b,0x69,0x62,0x40,0x7c,0xd1,0x3d,0xb0,0x7d,0x49,0x44,0x40,0x7e, + 0xb1,0x1f,0xb0,0x7f,0x29,0x26,0x40,0x7f,0xff,0xff,0xff,0x1,0x2,0x1,0x3,0x1, + 0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x3,0x2,0x3,0x5,0x3,0x2, + 0x3,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, - 0x7,0x6,0x7,0x6,0x7,0x6,0xff,0xff,0x7d,0x4c,0x0,0x0,0xff,0xff,0x8f,0x80, - 0x1,0x4,0xff,0xff,0x81,0x70,0x0,0x8,0xff,0xff,0x8f,0x80,0x1,0xc,0xff,0xff, - 0x8f,0x80,0x1,0x10,0xff,0xff,0x9d,0x90,0x1,0x14,0xff,0xff,0x8f,0x80,0x0,0x19, - 0xff,0xff,0x9d,0x90,0x1,0x1d,0x4c,0x4d,0x54,0x0,0x59,0x44,0x54,0x0,0x59,0x53, - 0x54,0x0,0x59,0x57,0x54,0x0,0x59,0x50,0x54,0x0,0x59,0x44,0x44,0x54,0x0,0x50, - 0x53,0x54,0x0,0x50,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0, - 0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x0,0x0,0x0,0x8,0x0, - 0x0,0x0,0x21,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x7d, - 0x86,0x8e,0xb4,0xff,0xff,0xff,0xff,0x9e,0xb8,0xcb,0xb0,0xff,0xff,0xff,0xff,0x9f, - 0xbb,0x23,0xa0,0xff,0xff,0xff,0xff,0xa0,0xd0,0xc,0xb0,0xff,0xff,0xff,0xff,0xa1, - 0xa2,0xd2,0x80,0xff,0xff,0xff,0xff,0xcb,0x89,0x28,0xb0,0xff,0xff,0xff,0xff,0xd2, - 0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x61,0x34,0x20,0xff,0xff,0xff,0xff,0xf7, - 0x2f,0x76,0x90,0xff,0xff,0xff,0xff,0xf8,0x28,0xa2,0x10,0x0,0x0,0x0,0x0,0x7, - 0x30,0xec,0x90,0x0,0x0,0x0,0x0,0x13,0x69,0x72,0x20,0x0,0x0,0x0,0x0,0x14, - 0x59,0x55,0x10,0x0,0x0,0x0,0x0,0x15,0x49,0x54,0x20,0x0,0x0,0x0,0x0,0x16, - 0x39,0x37,0x10,0x0,0x0,0x0,0x0,0x17,0x29,0x36,0x20,0x0,0x0,0x0,0x0,0x18, - 0x22,0x53,0x90,0x0,0x0,0x0,0x0,0x19,0x9,0x18,0x20,0x0,0x0,0x0,0x0,0x1a, - 0x2,0x35,0x90,0x0,0x0,0x0,0x0,0x1a,0xf2,0x34,0xa0,0x0,0x0,0x0,0x0,0x1b, - 0xe2,0x17,0x90,0x0,0x0,0x0,0x0,0x1c,0xd2,0x16,0xa0,0x0,0x0,0x0,0x0,0x1d, - 0xc1,0xf9,0x90,0x0,0x0,0x0,0x0,0x1e,0xb1,0xf8,0xa0,0x0,0x0,0x0,0x0,0x1f, - 0xa1,0xdb,0x90,0x0,0x0,0x0,0x0,0x20,0x76,0x2b,0x20,0x0,0x0,0x0,0x0,0x21, - 0x81,0xbd,0x90,0x0,0x0,0x0,0x0,0x22,0x56,0xd,0x20,0x0,0x0,0x0,0x0,0x23, - 0x6a,0xda,0x10,0x0,0x0,0x0,0x0,0x24,0x35,0xef,0x20,0x0,0x0,0x0,0x0,0x25, - 0x4a,0xbc,0x10,0x0,0x0,0x0,0x0,0x26,0x15,0xd1,0x20,0x0,0x0,0x0,0x0,0x27, - 0x2a,0x9e,0x10,0x0,0x0,0x0,0x0,0x27,0xfe,0xed,0xa0,0x0,0x0,0x0,0x0,0x29, - 0xa,0x80,0x10,0x0,0x0,0x0,0x0,0x29,0xde,0xcf,0xa0,0x0,0x0,0x0,0x0,0x2a, - 0xea,0x62,0x10,0x0,0x0,0x0,0x0,0x2b,0xbe,0xb1,0xa0,0x0,0x0,0x0,0x0,0x2c, - 0xd3,0x7e,0x90,0x0,0x0,0x0,0x0,0x2d,0x9e,0x93,0xa0,0x0,0x0,0x0,0x0,0x2e, - 0xb3,0x60,0x90,0x0,0x0,0x0,0x0,0x2f,0x7e,0x75,0xa0,0x0,0x0,0x0,0x0,0x30, - 0x93,0x42,0x90,0x0,0x0,0x0,0x0,0x31,0x67,0x92,0x20,0x0,0x0,0x0,0x0,0x32, - 0x73,0x24,0x90,0x0,0x0,0x0,0x0,0x33,0x47,0x74,0x20,0x0,0x0,0x0,0x0,0x34, - 0x53,0x6,0x90,0x0,0x0,0x0,0x0,0x35,0x27,0x56,0x20,0x0,0x0,0x0,0x0,0x36, - 0x32,0xe8,0x90,0x0,0x0,0x0,0x0,0x37,0x7,0x38,0x20,0x0,0x0,0x0,0x0,0x38, - 0x1c,0x5,0x10,0x0,0x0,0x0,0x0,0x38,0xe7,0x1a,0x20,0x0,0x0,0x0,0x0,0x39, - 0xfb,0xe7,0x10,0x0,0x0,0x0,0x0,0x3a,0xc6,0xfc,0x20,0x0,0x0,0x0,0x0,0x3b, - 0xdb,0xc9,0x10,0x0,0x0,0x0,0x0,0x3c,0xb0,0x18,0xa0,0x0,0x0,0x0,0x0,0x3d, - 0xbb,0xab,0x10,0x0,0x0,0x0,0x0,0x3e,0x8f,0xfa,0xa0,0x0,0x0,0x0,0x0,0x3f, - 0x9b,0x8d,0x10,0x0,0x0,0x0,0x0,0x40,0x6f,0xdc,0xa0,0x0,0x0,0x0,0x0,0x41, - 0x84,0xa9,0x90,0x0,0x0,0x0,0x0,0x42,0x4f,0xbe,0xa0,0x0,0x0,0x0,0x0,0x43, - 0x64,0x8b,0x90,0x0,0x0,0x0,0x0,0x44,0x2f,0xa0,0xa0,0x0,0x0,0x0,0x0,0x45, - 0x44,0x6d,0x90,0x0,0x0,0x0,0x0,0x45,0xf3,0xd3,0x20,0x0,0x0,0x0,0x0,0x47, - 0x2d,0x8a,0x10,0x0,0x0,0x0,0x0,0x47,0xd3,0xb5,0x20,0x0,0x0,0x0,0x0,0x49, - 0xd,0x6c,0x10,0x0,0x0,0x0,0x0,0x49,0xb3,0x97,0x20,0x0,0x0,0x0,0x0,0x4a, - 0xed,0x4e,0x10,0x0,0x0,0x0,0x0,0x4b,0x9c,0xb3,0xa0,0x0,0x0,0x0,0x0,0x4c, - 0xd6,0x6a,0x90,0x0,0x0,0x0,0x0,0x4d,0x7c,0x95,0xa0,0x0,0x0,0x0,0x0,0x4e, - 0xb6,0x4c,0x90,0x0,0x0,0x0,0x0,0x4f,0x5c,0x77,0xa0,0x0,0x0,0x0,0x0,0x50, - 0x96,0x2e,0x90,0x0,0x0,0x0,0x0,0x51,0x3c,0x59,0xa0,0x0,0x0,0x0,0x0,0x52, - 0x76,0x10,0x90,0x0,0x0,0x0,0x0,0x53,0x1c,0x3b,0xa0,0x0,0x0,0x0,0x0,0x54, - 0x55,0xf2,0x90,0x0,0x0,0x0,0x0,0x54,0xfc,0x1d,0xa0,0x0,0x0,0x0,0x0,0x56, - 0x35,0xd4,0x90,0x0,0x0,0x0,0x0,0x56,0xe5,0x3a,0x20,0x0,0x0,0x0,0x0,0x58, - 0x1e,0xf1,0x10,0x0,0x0,0x0,0x0,0x58,0xc5,0x1c,0x20,0x0,0x0,0x0,0x0,0x59, - 0xfe,0xd3,0x10,0x0,0x0,0x0,0x0,0x5a,0xa4,0xfe,0x20,0x0,0x0,0x0,0x0,0x5b, - 0xde,0xb5,0x10,0x0,0x0,0x0,0x0,0x5c,0x84,0xe0,0x20,0x0,0x0,0x0,0x0,0x5d, - 0xbe,0x97,0x10,0x0,0x0,0x0,0x0,0x5e,0x64,0xc2,0x20,0x0,0x0,0x0,0x0,0x5f, - 0x9e,0x79,0x10,0x0,0x0,0x0,0x0,0x60,0x4d,0xde,0xa0,0x0,0x0,0x0,0x0,0x61, - 0x87,0x95,0x90,0x0,0x0,0x0,0x0,0x62,0x2d,0xc0,0xa0,0x0,0x0,0x0,0x0,0x63, - 0x67,0x77,0x90,0x0,0x0,0x0,0x0,0x64,0xd,0xa2,0xa0,0x0,0x0,0x0,0x0,0x65, - 0x47,0x59,0x90,0x0,0x0,0x0,0x0,0x65,0xed,0x84,0xa0,0x0,0x0,0x0,0x0,0x67, - 0x27,0x3b,0x90,0x0,0x0,0x0,0x0,0x67,0xcd,0x66,0xa0,0x0,0x0,0x0,0x0,0x69, - 0x7,0x1d,0x90,0x0,0x0,0x0,0x0,0x69,0xad,0x48,0xa0,0x0,0x0,0x0,0x0,0x6a, - 0xe6,0xff,0x90,0x0,0x0,0x0,0x0,0x6b,0x96,0x65,0x20,0x0,0x0,0x0,0x0,0x6c, - 0xd0,0x1c,0x10,0x0,0x0,0x0,0x0,0x6d,0x76,0x47,0x20,0x0,0x0,0x0,0x0,0x6e, - 0xaf,0xfe,0x10,0x0,0x0,0x0,0x0,0x6f,0x56,0x29,0x20,0x0,0x0,0x0,0x0,0x70, - 0x8f,0xe0,0x10,0x0,0x0,0x0,0x0,0x71,0x36,0xb,0x20,0x0,0x0,0x0,0x0,0x72, - 0x6f,0xc2,0x10,0x0,0x0,0x0,0x0,0x73,0x15,0xed,0x20,0x0,0x0,0x0,0x0,0x74, - 0x4f,0xa4,0x10,0x0,0x0,0x0,0x0,0x74,0xff,0x9,0xa0,0x0,0x0,0x0,0x0,0x76, - 0x38,0xc0,0x90,0x0,0x0,0x0,0x0,0x76,0xde,0xeb,0xa0,0x0,0x0,0x0,0x0,0x78, - 0x18,0xa2,0x90,0x0,0x0,0x0,0x0,0x78,0xbe,0xcd,0xa0,0x0,0x0,0x0,0x0,0x79, - 0xf8,0x84,0x90,0x0,0x0,0x0,0x0,0x7a,0x9e,0xaf,0xa0,0x0,0x0,0x0,0x0,0x7b, - 0xd8,0x66,0x90,0x0,0x0,0x0,0x0,0x7c,0x7e,0x91,0xa0,0x0,0x0,0x0,0x0,0x7d, - 0xb8,0x48,0x90,0x0,0x0,0x0,0x0,0x7e,0x5e,0x73,0xa0,0x0,0x0,0x0,0x0,0x7f, - 0x98,0x2a,0x90,0x0,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x2,0x5,0x2,0x6,0x7, + 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, + 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x6,0xff,0xff,0xbd,0xba,0x0, + 0x0,0xff,0xff,0xbd,0xba,0x0,0x4,0xff,0xff,0xb9,0xb0,0x0,0x8,0xff,0xff,0xc7, + 0xc0,0x0,0xc,0xff,0xff,0xc7,0xc0,0x1,0xc,0xff,0xff,0xd5,0xd0,0x1,0x10,0xff, + 0xff,0xd5,0xd0,0x1,0x10,0xff,0xff,0xc7,0xc0,0x0,0xc,0x4c,0x4d,0x54,0x0,0x53, + 0x4d,0x54,0x0,0x2d,0x30,0x35,0x0,0x2d,0x30,0x34,0x0,0x2d,0x30,0x33,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x54, + 0x5a,0x69,0x66,0x33,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xa1,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x14,0xf8,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x69,0x87,0x1d,0xc6,0xff,0xff,0xff,0xff,0x8f, + 0x30,0x47,0x46,0xff,0xff,0xff,0xff,0x9b,0x5c,0xe5,0x50,0xff,0xff,0xff,0xff,0x9f, + 0x7c,0xe2,0xc6,0xff,0xff,0xff,0xff,0xa1,0x0,0x71,0xc0,0xff,0xff,0xff,0xff,0xb0, + 0x5e,0x77,0xc6,0xff,0xff,0xff,0xff,0xb1,0x77,0x3d,0x40,0xff,0xff,0xff,0xff,0xb2, + 0x41,0x0,0xd0,0xff,0xff,0xff,0xff,0xb3,0x58,0x70,0xc0,0xff,0xff,0xff,0xff,0xb4, + 0x22,0x34,0x50,0xff,0xff,0xff,0xff,0xb5,0x39,0xa4,0x40,0xff,0xff,0xff,0xff,0xb6, + 0x3,0x67,0xd0,0xff,0xff,0xff,0xff,0xb7,0x1a,0xd7,0xc0,0xff,0xff,0xff,0xff,0xb7, + 0xe4,0x9b,0x50,0xff,0xff,0xff,0xff,0xb8,0xfd,0x5c,0xc0,0xff,0xff,0xff,0xff,0xb9, + 0xc7,0x20,0x50,0xff,0xff,0xff,0xff,0xcc,0x1c,0x6e,0x40,0xff,0xff,0xff,0xff,0xcc, + 0x6c,0xe7,0xd0,0xff,0xff,0xff,0xff,0xd3,0xdc,0x8f,0xc0,0xff,0xff,0xff,0xff,0xd4, + 0x1b,0xc9,0xb0,0xff,0xff,0xff,0xff,0xd5,0x33,0x55,0xc0,0xff,0xff,0xff,0xff,0xd5, + 0x76,0x92,0x40,0xff,0xff,0xff,0xff,0xfd,0xd1,0x3c,0x40,0xff,0xff,0xff,0xff,0xfe, + 0x92,0xfa,0xb0,0xff,0xff,0xff,0xff,0xff,0xcc,0xcd,0xc0,0x0,0x0,0x0,0x0,0x0, + 0x72,0xdc,0xb0,0x0,0x0,0x0,0x0,0x1,0x75,0x50,0xc0,0x0,0x0,0x0,0x0,0x2, + 0x40,0x49,0xb0,0x0,0x0,0x0,0x0,0x3,0x55,0x32,0xc0,0x0,0x0,0x0,0x0,0x4, + 0x20,0x2b,0xb0,0x0,0x0,0x0,0x0,0x5,0x3e,0x4f,0x40,0x0,0x0,0x0,0x0,0x6, + 0x0,0xd,0xb0,0x0,0x0,0x0,0x0,0x7,0xb,0xbc,0x40,0x0,0x0,0x0,0x0,0x7, + 0xdf,0xef,0xb0,0x0,0x0,0x0,0x0,0x8,0xfe,0x13,0x40,0x0,0x0,0x0,0x0,0x9, + 0xbf,0xd1,0xb0,0x0,0x0,0x0,0x0,0xa,0xdd,0xf5,0x40,0x0,0x0,0x0,0x0,0xb, + 0xa8,0xee,0x30,0x0,0x0,0x0,0x0,0xc,0xbd,0xd7,0x40,0x0,0x0,0x0,0x0,0xd, + 0x88,0xd0,0x30,0x0,0x0,0x0,0x0,0xe,0x9d,0xb9,0x40,0x0,0x0,0x0,0x0,0xf, + 0x68,0xb2,0x30,0x0,0x0,0x0,0x0,0x10,0x86,0xd5,0xc0,0x0,0x0,0x0,0x0,0x11, + 0x48,0x94,0x30,0x0,0x0,0x0,0x0,0x12,0x66,0xb7,0xc0,0x0,0x0,0x0,0x0,0x13, + 0x28,0x76,0x30,0x0,0x0,0x0,0x0,0x14,0x46,0x99,0xc0,0x0,0x0,0x0,0x0,0x15, + 0x11,0x92,0xb0,0x0,0x0,0x0,0x0,0x16,0x26,0x7b,0xc0,0x0,0x0,0x0,0x0,0x16, + 0xf1,0x74,0xb0,0x0,0x0,0x0,0x0,0x18,0x6,0x5d,0xc0,0x0,0x0,0x0,0x0,0x18, + 0xd1,0x56,0xb0,0x0,0x0,0x0,0x0,0x19,0xe6,0x3f,0xc0,0x0,0x0,0x0,0x0,0x1a, + 0xb1,0x38,0xb0,0x0,0x0,0x0,0x0,0x1b,0xcf,0x5c,0x40,0x0,0x0,0x0,0x0,0x1c, + 0x91,0x1a,0xb0,0x0,0x0,0x0,0x0,0x1d,0xaf,0x3e,0x40,0x0,0x0,0x0,0x0,0x1e, + 0x70,0xfc,0xb0,0x0,0x0,0x0,0x0,0x1f,0x8f,0x20,0x40,0x0,0x0,0x0,0x0,0x20, + 0x7f,0x3,0x30,0x0,0x0,0x0,0x0,0x21,0x6f,0x2,0x40,0x0,0x0,0x0,0x0,0x22, + 0x39,0xfb,0x30,0x0,0x0,0x0,0x0,0x23,0x4e,0xe4,0x40,0x0,0x0,0x0,0x0,0x24, + 0x19,0xdd,0x30,0x0,0x0,0x0,0x0,0x25,0x38,0x0,0xc0,0x0,0x0,0x0,0x0,0x25, + 0xf9,0xbf,0x30,0x0,0x0,0x0,0x0,0x26,0xf2,0xf8,0xc0,0x0,0x0,0x0,0x0,0x27, + 0xd9,0xa1,0x30,0x0,0x0,0x0,0x0,0x28,0xf7,0xc4,0xc0,0x0,0x0,0x0,0x0,0x29, + 0xc2,0xbd,0xb0,0x0,0x0,0x0,0x0,0x2a,0xd7,0xa6,0xc0,0x0,0x0,0x0,0x0,0x2b, + 0xa2,0x9f,0xb0,0x0,0x0,0x0,0x0,0x2c,0xb7,0x88,0xc0,0x0,0x0,0x0,0x0,0x2d, + 0x82,0x81,0xb0,0x0,0x0,0x0,0x0,0x2e,0x97,0x6a,0xc0,0x0,0x0,0x0,0x0,0x2f, + 0x62,0x63,0xb0,0x0,0x0,0x0,0x0,0x30,0x80,0x87,0x40,0x0,0x0,0x0,0x0,0x31, + 0x42,0x45,0xb0,0x0,0x0,0x0,0x0,0x32,0x60,0x69,0x40,0x0,0x0,0x0,0x0,0x33, + 0x3d,0xd7,0x30,0x0,0x0,0x0,0x0,0x34,0x40,0x4b,0x40,0x0,0x0,0x0,0x0,0x35, + 0xb,0x44,0x30,0x0,0x0,0x0,0x0,0x36,0xd,0xb8,0x40,0x0,0x0,0x0,0x0,0x37, + 0x6,0xd5,0xb0,0x0,0x0,0x0,0x0,0x38,0x0,0xf,0x40,0x0,0x0,0x0,0x0,0x38, + 0xcb,0x8,0x30,0x0,0x0,0x0,0x0,0x39,0xe9,0x2b,0xc0,0x0,0x0,0x0,0x0,0x3a, + 0xaa,0xea,0x30,0x0,0x0,0x0,0x0,0x3b,0xc9,0xd,0xc0,0x0,0x0,0x0,0x0,0x3c, + 0x8a,0xcc,0x30,0x0,0x0,0x0,0x0,0x3d,0xa8,0xef,0xc0,0x0,0x0,0x0,0x0,0x3e, + 0x6a,0xae,0x30,0x0,0x0,0x0,0x0,0x3f,0x88,0xd1,0xc0,0x0,0x0,0x0,0x0,0x40, + 0x53,0xca,0xb0,0x0,0x0,0x0,0x0,0x41,0x68,0xb3,0xc0,0x0,0x0,0x0,0x0,0x42, + 0x33,0xac,0xb0,0x0,0x0,0x0,0x0,0x43,0x48,0x95,0xc0,0x0,0x0,0x0,0x0,0x44, + 0x13,0x8e,0xb0,0x0,0x0,0x0,0x0,0x45,0x31,0xb2,0x40,0x0,0x0,0x0,0x0,0x45, + 0xf3,0x70,0xb0,0x0,0x0,0x0,0x0,0x47,0x11,0x94,0x40,0x0,0x0,0x0,0x0,0x47, + 0xef,0x2,0x30,0x0,0x0,0x0,0x0,0x48,0xf1,0x76,0x40,0x0,0x0,0x0,0x0,0x49, + 0xbc,0x6f,0x30,0x0,0x0,0x0,0x0,0x4a,0xd1,0x58,0x40,0x0,0x0,0x0,0x0,0x4b, + 0xb8,0x0,0xb0,0x0,0x0,0x0,0x0,0x4c,0xb1,0x3a,0x40,0x0,0x0,0x0,0x0,0x4d, + 0xc6,0x7,0x30,0x0,0x0,0x0,0x0,0x4e,0x50,0x82,0xc0,0x0,0x0,0x0,0x0,0x4f, + 0x9c,0xae,0xb0,0x0,0x0,0x0,0x0,0x50,0x42,0xd9,0xc0,0x0,0x0,0x0,0x0,0x51, + 0x7c,0x90,0xb0,0x0,0x0,0x0,0x0,0x52,0x2b,0xf6,0x40,0x0,0x0,0x0,0x0,0x53, + 0x5c,0x72,0xb0,0x0,0x0,0x0,0x0,0x54,0xb,0xd8,0x40,0x0,0x0,0x0,0x0,0x57, + 0x37,0xe6,0x30,0x0,0x0,0x0,0x0,0x57,0xaf,0xec,0xc0,0x0,0x0,0x0,0x0,0x59, + 0x17,0xc8,0x30,0x0,0x0,0x0,0x0,0x59,0x8f,0xce,0xc0,0x0,0x0,0x0,0x0,0x5a, + 0xf7,0xaa,0x30,0x0,0x0,0x0,0x0,0x5b,0x6f,0xb0,0xc0,0x0,0x0,0x0,0x0,0x5c, + 0xd7,0x8c,0x30,0x0,0x0,0x0,0x0,0x5d,0x4f,0x92,0xc0,0x0,0x0,0x0,0x0,0x5e, + 0xb7,0x6e,0x30,0x0,0x0,0x0,0x0,0x5f,0x2f,0x74,0xc0,0x0,0x0,0x0,0x0,0x60, + 0x97,0x50,0x30,0x0,0x0,0x0,0x0,0x61,0x18,0x91,0x40,0x0,0x0,0x0,0x0,0x62, + 0x80,0x6c,0xb0,0x0,0x0,0x0,0x0,0x62,0xf8,0x73,0x40,0x0,0x0,0x0,0x0,0x64, + 0x60,0x4e,0xb0,0x0,0x0,0x0,0x0,0x64,0xd8,0x55,0x40,0x0,0x0,0x0,0x0,0x66, + 0x40,0x30,0xb0,0x0,0x0,0x0,0x0,0x66,0xb8,0x37,0x40,0x0,0x0,0x0,0x0,0x68, + 0x20,0x12,0xb0,0x0,0x0,0x0,0x0,0x68,0x98,0x19,0x40,0x0,0x0,0x0,0x0,0x69, + 0xff,0xf4,0xb0,0x0,0x0,0x0,0x0,0x6a,0x77,0xfb,0x40,0x0,0x0,0x0,0x0,0x6b, + 0xdf,0xd6,0xb0,0x0,0x0,0x0,0x0,0x6c,0x61,0x17,0xc0,0x0,0x0,0x0,0x0,0x6d, + 0xc8,0xf3,0x30,0x0,0x0,0x0,0x0,0x6e,0x40,0xf9,0xc0,0x0,0x0,0x0,0x0,0x6f, + 0xa8,0xd5,0x30,0x0,0x0,0x0,0x0,0x70,0x20,0xdb,0xc0,0x0,0x0,0x0,0x0,0x71, + 0x88,0xb7,0x30,0x0,0x0,0x0,0x0,0x72,0x0,0xbd,0xc0,0x0,0x0,0x0,0x0,0x73, + 0x68,0x99,0x30,0x0,0x0,0x0,0x0,0x73,0xe0,0x9f,0xc0,0x0,0x0,0x0,0x0,0x75, + 0x48,0x7b,0x30,0x0,0x0,0x0,0x0,0x75,0xc9,0xbc,0x40,0x0,0x0,0x0,0x0,0x77, + 0x31,0x97,0xb0,0x0,0x0,0x0,0x0,0x77,0xa9,0x9e,0x40,0x0,0x0,0x0,0x0,0x79, + 0x11,0x79,0xb0,0x0,0x0,0x0,0x0,0x79,0x89,0x80,0x40,0x0,0x0,0x0,0x0,0x7a, + 0xf1,0x5b,0xb0,0x0,0x0,0x0,0x0,0x7b,0x69,0x62,0x40,0x0,0x0,0x0,0x0,0x7c, + 0xd1,0x3d,0xb0,0x0,0x0,0x0,0x0,0x7d,0x49,0x44,0x40,0x0,0x0,0x0,0x0,0x7e, + 0xb1,0x1f,0xb0,0x0,0x0,0x0,0x0,0x7f,0x29,0x26,0x40,0x0,0x0,0x0,0x0,0x7f, + 0xff,0xff,0xff,0x0,0x1,0x2,0x1,0x3,0x1,0x4,0x2,0x4,0x2,0x4,0x2,0x4, + 0x2,0x4,0x2,0x3,0x2,0x3,0x5,0x3,0x2,0x3,0x6,0x7,0x6,0x7,0x6,0x7, 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, @@ -28499,188 +25117,289 @@ static const unsigned char qt_resource_data[] = { 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0xff,0xff,0x7d,0x4c,0x0,0x0,0xff,0xff,0x8f,0x80,0x1,0x4,0xff, - 0xff,0x81,0x70,0x0,0x8,0xff,0xff,0x8f,0x80,0x1,0xc,0xff,0xff,0x8f,0x80,0x1, - 0x10,0xff,0xff,0x9d,0x90,0x1,0x14,0xff,0xff,0x8f,0x80,0x0,0x19,0xff,0xff,0x9d, - 0x90,0x1,0x1d,0x4c,0x4d,0x54,0x0,0x59,0x44,0x54,0x0,0x59,0x53,0x54,0x0,0x59, - 0x57,0x54,0x0,0x59,0x50,0x54,0x0,0x59,0x44,0x44,0x54,0x0,0x50,0x53,0x54,0x0, - 0x50,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x1,0x0,0x0,0x0,0xa,0x50,0x53,0x54,0x38,0x50,0x44,0x54,0x2c,0x4d,0x33,0x2e, - 0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Shiprock - 0x0,0x0,0x9,0x95, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x6,0xff,0xff,0xbd,0xba,0x0,0x0,0xff,0xff,0xbd,0xba,0x0,0x4, + 0xff,0xff,0xb9,0xb0,0x0,0x8,0xff,0xff,0xc7,0xc0,0x0,0xc,0xff,0xff,0xc7,0xc0, + 0x1,0xc,0xff,0xff,0xd5,0xd0,0x1,0x10,0xff,0xff,0xd5,0xd0,0x1,0x10,0xff,0xff, + 0xc7,0xc0,0x0,0xc,0x4c,0x4d,0x54,0x0,0x53,0x4d,0x54,0x0,0x2d,0x30,0x35,0x0, + 0x2d,0x30,0x34,0x0,0x2d,0x30,0x33,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0xa,0x3c,0x2d,0x30,0x34,0x3e,0x34,0x3c, + 0x2d,0x30,0x33,0x3e,0x2c,0x4d,0x38,0x2e,0x32,0x2e,0x36,0x2f,0x32,0x34,0x2c,0x4d, + 0x35,0x2e,0x32,0x2e,0x36,0x2f,0x32,0x34,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Bahia + 0x0,0x0,0x4,0x1a, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x9e,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0x9e, - 0xa6,0x3a,0x90,0x9f,0xbb,0x7,0x80,0xa0,0x86,0x1c,0x90,0xa1,0x9a,0xe9,0x80,0xa2, - 0x65,0xfe,0x90,0xa3,0x84,0x6,0x0,0xa4,0x45,0xe0,0x90,0xa4,0x8f,0xa6,0x80,0xcb, - 0x89,0xc,0x90,0xd2,0x23,0xf4,0x70,0xd2,0x61,0x18,0x0,0xf7,0x2f,0x76,0x90,0xf8, - 0x28,0x94,0x0,0xf9,0xf,0x58,0x90,0xfa,0x8,0x76,0x0,0xfa,0xf8,0x75,0x10,0xfb, - 0xe8,0x58,0x0,0xfc,0xd8,0x57,0x10,0xfd,0xc8,0x3a,0x0,0xfe,0xb8,0x39,0x10,0xff, - 0xa8,0x1c,0x0,0x0,0x98,0x1b,0x10,0x1,0x87,0xfe,0x0,0x2,0x77,0xfd,0x10,0x3, - 0x71,0x1a,0x80,0x4,0x61,0x19,0x90,0x5,0x50,0xfc,0x80,0x6,0x40,0xfb,0x90,0x7, - 0x30,0xde,0x80,0x7,0x8d,0x35,0x90,0x9,0x10,0xc0,0x80,0x9,0xad,0xb1,0x10,0xa, - 0xf0,0xa2,0x80,0xb,0xe0,0xa1,0x90,0xc,0xd9,0xbf,0x0,0xd,0xc0,0x83,0x90,0xe, - 0xb9,0xa1,0x0,0xf,0xa9,0xa0,0x10,0x10,0x99,0x83,0x0,0x11,0x89,0x82,0x10,0x12, - 0x79,0x65,0x0,0x13,0x69,0x64,0x10,0x14,0x59,0x47,0x0,0x15,0x49,0x46,0x10,0x16, - 0x39,0x29,0x0,0x17,0x29,0x28,0x10,0x18,0x22,0x45,0x80,0x19,0x9,0xa,0x10,0x1a, - 0x2,0x27,0x80,0x1a,0xf2,0x26,0x90,0x1b,0xe2,0x9,0x80,0x1c,0xd2,0x8,0x90,0x1d, - 0xc1,0xeb,0x80,0x1e,0xb1,0xea,0x90,0x1f,0xa1,0xcd,0x80,0x20,0x76,0x1d,0x10,0x21, - 0x81,0xaf,0x80,0x22,0x55,0xff,0x10,0x23,0x6a,0xcc,0x0,0x24,0x35,0xe1,0x10,0x25, - 0x4a,0xae,0x0,0x26,0x15,0xc3,0x10,0x27,0x2a,0x90,0x0,0x27,0xfe,0xdf,0x90,0x29, - 0xa,0x72,0x0,0x29,0xde,0xc1,0x90,0x2a,0xea,0x54,0x0,0x2b,0xbe,0xa3,0x90,0x2c, - 0xd3,0x70,0x80,0x2d,0x9e,0x85,0x90,0x2e,0xb3,0x52,0x80,0x2f,0x7e,0x67,0x90,0x30, - 0x93,0x34,0x80,0x31,0x67,0x84,0x10,0x32,0x73,0x16,0x80,0x33,0x47,0x66,0x10,0x34, - 0x52,0xf8,0x80,0x35,0x27,0x48,0x10,0x36,0x32,0xda,0x80,0x37,0x7,0x2a,0x10,0x38, - 0x1b,0xf7,0x0,0x38,0xe7,0xc,0x10,0x39,0xfb,0xd9,0x0,0x3a,0xc6,0xee,0x10,0x3b, - 0xdb,0xbb,0x0,0x3c,0xb0,0xa,0x90,0x3d,0xbb,0x9d,0x0,0x3e,0x8f,0xec,0x90,0x3f, - 0x9b,0x7f,0x0,0x40,0x6f,0xce,0x90,0x41,0x84,0x9b,0x80,0x42,0x4f,0xb0,0x90,0x43, - 0x64,0x7d,0x80,0x44,0x2f,0x92,0x90,0x45,0x44,0x5f,0x80,0x45,0xf3,0xc5,0x10,0x47, - 0x2d,0x7c,0x0,0x47,0xd3,0xa7,0x10,0x49,0xd,0x5e,0x0,0x49,0xb3,0x89,0x10,0x4a, - 0xed,0x40,0x0,0x4b,0x9c,0xa5,0x90,0x4c,0xd6,0x5c,0x80,0x4d,0x7c,0x87,0x90,0x4e, - 0xb6,0x3e,0x80,0x4f,0x5c,0x69,0x90,0x50,0x96,0x20,0x80,0x51,0x3c,0x4b,0x90,0x52, - 0x76,0x2,0x80,0x53,0x1c,0x2d,0x90,0x54,0x55,0xe4,0x80,0x54,0xfc,0xf,0x90,0x56, - 0x35,0xc6,0x80,0x56,0xe5,0x2c,0x10,0x58,0x1e,0xe3,0x0,0x58,0xc5,0xe,0x10,0x59, - 0xfe,0xc5,0x0,0x5a,0xa4,0xf0,0x10,0x5b,0xde,0xa7,0x0,0x5c,0x84,0xd2,0x10,0x5d, - 0xbe,0x89,0x0,0x5e,0x64,0xb4,0x10,0x5f,0x9e,0x6b,0x0,0x60,0x4d,0xd0,0x90,0x61, - 0x87,0x87,0x80,0x62,0x2d,0xb2,0x90,0x63,0x67,0x69,0x80,0x64,0xd,0x94,0x90,0x65, - 0x47,0x4b,0x80,0x65,0xed,0x76,0x90,0x67,0x27,0x2d,0x80,0x67,0xcd,0x58,0x90,0x69, - 0x7,0xf,0x80,0x69,0xad,0x3a,0x90,0x6a,0xe6,0xf1,0x80,0x6b,0x96,0x57,0x10,0x6c, - 0xd0,0xe,0x0,0x6d,0x76,0x39,0x10,0x6e,0xaf,0xf0,0x0,0x6f,0x56,0x1b,0x10,0x70, - 0x8f,0xd2,0x0,0x71,0x35,0xfd,0x10,0x72,0x6f,0xb4,0x0,0x73,0x15,0xdf,0x10,0x74, - 0x4f,0x96,0x0,0x74,0xfe,0xfb,0x90,0x76,0x38,0xb2,0x80,0x76,0xde,0xdd,0x90,0x78, - 0x18,0x94,0x80,0x78,0xbe,0xbf,0x90,0x79,0xf8,0x76,0x80,0x7a,0x9e,0xa1,0x90,0x7b, - 0xd8,0x58,0x80,0x7c,0x7e,0x83,0x90,0x7d,0xb8,0x3a,0x80,0x7e,0x5e,0x65,0x90,0x7f, - 0x98,0x1c,0x80,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3f,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0x96, + 0xaa,0x6b,0x1c,0xb8,0xf,0x49,0xe0,0xb8,0xfd,0x40,0xa0,0xb9,0xf1,0x34,0x30,0xba, + 0xde,0x74,0x20,0xda,0x38,0xae,0x30,0xda,0xeb,0xfa,0x30,0xdc,0x19,0xe1,0xb0,0xdc, + 0xb9,0x59,0x20,0xdd,0xfb,0x15,0x30,0xde,0x9b,0xde,0x20,0xdf,0xdd,0x9a,0x30,0xe0, + 0x54,0x33,0x20,0xf4,0x97,0xff,0xb0,0xf5,0x5,0x5e,0x20,0xf6,0xc0,0x64,0x30,0xf7, + 0xe,0x1e,0xa0,0xf8,0x51,0x2c,0x30,0xf8,0xc7,0xc5,0x20,0xfa,0xa,0xd2,0xb0,0xfa, + 0xa8,0xf8,0xa0,0xfb,0xec,0x6,0x30,0xfc,0x8b,0x7d,0xa0,0x1d,0xc9,0x8e,0x30,0x1e, + 0x78,0xd7,0xa0,0x1f,0xa0,0x35,0xb0,0x20,0x33,0xcf,0xa0,0x21,0x81,0x69,0x30,0x22, + 0xb,0xc8,0xa0,0x23,0x58,0x10,0xb0,0x23,0xe2,0x70,0x20,0x25,0x37,0xf2,0xb0,0x25, + 0xd4,0xc7,0x20,0x27,0x21,0xf,0x30,0x27,0xbd,0xe3,0xa0,0x29,0x0,0xf1,0x30,0x29, + 0x94,0x8b,0x20,0x2a,0xea,0xd,0xb0,0x2b,0x6b,0x32,0xa0,0x2c,0xc0,0xb5,0x30,0x2d, + 0x66,0xc4,0x20,0x2e,0xa0,0x97,0x30,0x2f,0x46,0xa6,0x20,0x30,0x80,0x79,0x30,0x31, + 0x1d,0x4d,0xa0,0x32,0x57,0x20,0xb0,0x33,0x6,0x6a,0x20,0x34,0x38,0x54,0x30,0x34, + 0xf8,0xc1,0x20,0x36,0x20,0x1f,0x30,0x36,0xcf,0x68,0xa0,0x37,0xf6,0xc6,0xb0,0x38, + 0xb8,0x85,0x20,0x39,0xdf,0xe3,0x30,0x3a,0x8f,0x2c,0xa0,0x3b,0xc8,0xff,0xb0,0x3c, + 0x6f,0xe,0xa0,0x3d,0xc4,0x91,0x30,0x3e,0x4e,0xf0,0xa0,0x4e,0x9a,0x48,0xb0,0x4f, + 0x49,0x92,0x20,0x7f,0xff,0xff,0xff,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0xff,0xff,0x9d,0x94,0x0,0x0,0xff,0xff,0xab,0xa0,0x1,0x4,0xff,0xff,0x9d, - 0x90,0x0,0x8,0xff,0xff,0xab,0xa0,0x1,0xc,0xff,0xff,0xab,0xa0,0x1,0x10,0x4c, - 0x4d,0x54,0x0,0x4d,0x44,0x54,0x0,0x4d,0x53,0x54,0x0,0x4d,0x57,0x54,0x0,0x4d, - 0x50,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x1,0x54,0x5a,0x69, + 0x2,0x1,0x2,0x1,0x2,0x2,0xff,0xff,0xdb,0xe4,0x0,0x0,0xff,0xff,0xe3,0xe0, + 0x1,0x4,0xff,0xff,0xd5,0xd0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x2d,0x30,0x32,0x0, + 0x2d,0x30,0x33,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x0,0x0, + 0x0,0x3,0x0,0x0,0x0,0xc,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff, + 0xff,0xff,0x96,0xaa,0x6b,0x1c,0xff,0xff,0xff,0xff,0xb8,0xf,0x49,0xe0,0xff,0xff, + 0xff,0xff,0xb8,0xfd,0x40,0xa0,0xff,0xff,0xff,0xff,0xb9,0xf1,0x34,0x30,0xff,0xff, + 0xff,0xff,0xba,0xde,0x74,0x20,0xff,0xff,0xff,0xff,0xda,0x38,0xae,0x30,0xff,0xff, + 0xff,0xff,0xda,0xeb,0xfa,0x30,0xff,0xff,0xff,0xff,0xdc,0x19,0xe1,0xb0,0xff,0xff, + 0xff,0xff,0xdc,0xb9,0x59,0x20,0xff,0xff,0xff,0xff,0xdd,0xfb,0x15,0x30,0xff,0xff, + 0xff,0xff,0xde,0x9b,0xde,0x20,0xff,0xff,0xff,0xff,0xdf,0xdd,0x9a,0x30,0xff,0xff, + 0xff,0xff,0xe0,0x54,0x33,0x20,0xff,0xff,0xff,0xff,0xf4,0x97,0xff,0xb0,0xff,0xff, + 0xff,0xff,0xf5,0x5,0x5e,0x20,0xff,0xff,0xff,0xff,0xf6,0xc0,0x64,0x30,0xff,0xff, + 0xff,0xff,0xf7,0xe,0x1e,0xa0,0xff,0xff,0xff,0xff,0xf8,0x51,0x2c,0x30,0xff,0xff, + 0xff,0xff,0xf8,0xc7,0xc5,0x20,0xff,0xff,0xff,0xff,0xfa,0xa,0xd2,0xb0,0xff,0xff, + 0xff,0xff,0xfa,0xa8,0xf8,0xa0,0xff,0xff,0xff,0xff,0xfb,0xec,0x6,0x30,0xff,0xff, + 0xff,0xff,0xfc,0x8b,0x7d,0xa0,0x0,0x0,0x0,0x0,0x1d,0xc9,0x8e,0x30,0x0,0x0, + 0x0,0x0,0x1e,0x78,0xd7,0xa0,0x0,0x0,0x0,0x0,0x1f,0xa0,0x35,0xb0,0x0,0x0, + 0x0,0x0,0x20,0x33,0xcf,0xa0,0x0,0x0,0x0,0x0,0x21,0x81,0x69,0x30,0x0,0x0, + 0x0,0x0,0x22,0xb,0xc8,0xa0,0x0,0x0,0x0,0x0,0x23,0x58,0x10,0xb0,0x0,0x0, + 0x0,0x0,0x23,0xe2,0x70,0x20,0x0,0x0,0x0,0x0,0x25,0x37,0xf2,0xb0,0x0,0x0, + 0x0,0x0,0x25,0xd4,0xc7,0x20,0x0,0x0,0x0,0x0,0x27,0x21,0xf,0x30,0x0,0x0, + 0x0,0x0,0x27,0xbd,0xe3,0xa0,0x0,0x0,0x0,0x0,0x29,0x0,0xf1,0x30,0x0,0x0, + 0x0,0x0,0x29,0x94,0x8b,0x20,0x0,0x0,0x0,0x0,0x2a,0xea,0xd,0xb0,0x0,0x0, + 0x0,0x0,0x2b,0x6b,0x32,0xa0,0x0,0x0,0x0,0x0,0x2c,0xc0,0xb5,0x30,0x0,0x0, + 0x0,0x0,0x2d,0x66,0xc4,0x20,0x0,0x0,0x0,0x0,0x2e,0xa0,0x97,0x30,0x0,0x0, + 0x0,0x0,0x2f,0x46,0xa6,0x20,0x0,0x0,0x0,0x0,0x30,0x80,0x79,0x30,0x0,0x0, + 0x0,0x0,0x31,0x1d,0x4d,0xa0,0x0,0x0,0x0,0x0,0x32,0x57,0x20,0xb0,0x0,0x0, + 0x0,0x0,0x33,0x6,0x6a,0x20,0x0,0x0,0x0,0x0,0x34,0x38,0x54,0x30,0x0,0x0, + 0x0,0x0,0x34,0xf8,0xc1,0x20,0x0,0x0,0x0,0x0,0x36,0x20,0x1f,0x30,0x0,0x0, + 0x0,0x0,0x36,0xcf,0x68,0xa0,0x0,0x0,0x0,0x0,0x37,0xf6,0xc6,0xb0,0x0,0x0, + 0x0,0x0,0x38,0xb8,0x85,0x20,0x0,0x0,0x0,0x0,0x39,0xdf,0xe3,0x30,0x0,0x0, + 0x0,0x0,0x3a,0x8f,0x2c,0xa0,0x0,0x0,0x0,0x0,0x3b,0xc8,0xff,0xb0,0x0,0x0, + 0x0,0x0,0x3c,0x6f,0xe,0xa0,0x0,0x0,0x0,0x0,0x3d,0xc4,0x91,0x30,0x0,0x0, + 0x0,0x0,0x3e,0x4e,0xf0,0xa0,0x0,0x0,0x0,0x0,0x4e,0x9a,0x48,0xb0,0x0,0x0, + 0x0,0x0,0x4f,0x49,0x92,0x20,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x2,0xff,0xff,0xdb, + 0xe4,0x0,0x0,0xff,0xff,0xe3,0xe0,0x1,0x4,0xff,0xff,0xd5,0xd0,0x0,0x8,0x4c, + 0x4d,0x54,0x0,0x2d,0x30,0x32,0x0,0x2d,0x30,0x33,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xa,0x3c,0x2d,0x30,0x33,0x3e,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Miquelon + 0x0,0x0,0x6,0xa0, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x6a,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x10,0x80,0x0,0x0,0x0,0x91, + 0xb6,0x38,0xa8,0x13,0x6e,0x63,0xc0,0x20,0x75,0xe4,0xd0,0x21,0x81,0x77,0x40,0x22, + 0x55,0xc6,0xd0,0x23,0x6a,0x93,0xc0,0x24,0x35,0xa8,0xd0,0x25,0x4a,0x75,0xc0,0x26, + 0x15,0x8a,0xd0,0x27,0x2a,0x57,0xc0,0x27,0xfe,0xa7,0x50,0x29,0xa,0x39,0xc0,0x29, + 0xde,0x89,0x50,0x2a,0xea,0x1b,0xc0,0x2b,0xbe,0x6b,0x50,0x2c,0xd3,0x38,0x40,0x2d, + 0x9e,0x4d,0x50,0x2e,0xb3,0x1a,0x40,0x2f,0x7e,0x2f,0x50,0x30,0x92,0xfc,0x40,0x31, + 0x67,0x4b,0xd0,0x32,0x72,0xde,0x40,0x33,0x47,0x2d,0xd0,0x34,0x52,0xc0,0x40,0x35, + 0x27,0xf,0xd0,0x36,0x32,0xa2,0x40,0x37,0x6,0xf1,0xd0,0x38,0x1b,0xbe,0xc0,0x38, + 0xe6,0xd3,0xd0,0x39,0xfb,0xa0,0xc0,0x3a,0xc6,0xb5,0xd0,0x3b,0xdb,0x82,0xc0,0x3c, + 0xaf,0xd2,0x50,0x3d,0xbb,0x64,0xc0,0x3e,0x8f,0xb4,0x50,0x3f,0x9b,0x46,0xc0,0x40, + 0x6f,0x96,0x50,0x41,0x84,0x63,0x40,0x42,0x4f,0x78,0x50,0x43,0x64,0x45,0x40,0x44, + 0x2f,0x5a,0x50,0x45,0x44,0x27,0x40,0x45,0xf3,0x8c,0xd0,0x47,0x2d,0x43,0xc0,0x47, + 0xd3,0x6e,0xd0,0x49,0xd,0x25,0xc0,0x49,0xb3,0x50,0xd0,0x4a,0xed,0x7,0xc0,0x4b, + 0x9c,0x6d,0x50,0x4c,0xd6,0x24,0x40,0x4d,0x7c,0x4f,0x50,0x4e,0xb6,0x6,0x40,0x4f, + 0x5c,0x31,0x50,0x50,0x95,0xe8,0x40,0x51,0x3c,0x13,0x50,0x52,0x75,0xca,0x40,0x53, + 0x1b,0xf5,0x50,0x54,0x55,0xac,0x40,0x54,0xfb,0xd7,0x50,0x56,0x35,0x8e,0x40,0x56, + 0xe4,0xf3,0xd0,0x58,0x1e,0xaa,0xc0,0x58,0xc4,0xd5,0xd0,0x59,0xfe,0x8c,0xc0,0x5a, + 0xa4,0xb7,0xd0,0x5b,0xde,0x6e,0xc0,0x5c,0x84,0x99,0xd0,0x5d,0xbe,0x50,0xc0,0x5e, + 0x64,0x7b,0xd0,0x5f,0x9e,0x32,0xc0,0x60,0x4d,0x98,0x50,0x61,0x87,0x4f,0x40,0x62, + 0x2d,0x7a,0x50,0x63,0x67,0x31,0x40,0x64,0xd,0x5c,0x50,0x65,0x47,0x13,0x40,0x65, + 0xed,0x3e,0x50,0x67,0x26,0xf5,0x40,0x67,0xcd,0x20,0x50,0x69,0x6,0xd7,0x40,0x69, + 0xad,0x2,0x50,0x6a,0xe6,0xb9,0x40,0x6b,0x96,0x1e,0xd0,0x6c,0xcf,0xd5,0xc0,0x6d, + 0x76,0x0,0xd0,0x6e,0xaf,0xb7,0xc0,0x6f,0x55,0xe2,0xd0,0x70,0x8f,0x99,0xc0,0x71, + 0x35,0xc4,0xd0,0x72,0x6f,0x7b,0xc0,0x73,0x15,0xa6,0xd0,0x74,0x4f,0x5d,0xc0,0x74, + 0xfe,0xc3,0x50,0x76,0x38,0x7a,0x40,0x76,0xde,0xa5,0x50,0x78,0x18,0x5c,0x40,0x78, + 0xbe,0x87,0x50,0x79,0xf8,0x3e,0x40,0x7a,0x9e,0x69,0x50,0x7b,0xd8,0x20,0x40,0x7c, + 0x7e,0x4b,0x50,0x7d,0xb8,0x2,0x40,0x7e,0x5e,0x2d,0x50,0x7f,0x97,0xe4,0x40,0x7f, + 0xff,0xff,0xff,0x0,0x1,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x2,0xff,0xff,0xcb, + 0x58,0x0,0x0,0xff,0xff,0xc7,0xc0,0x0,0x4,0xff,0xff,0xd5,0xd0,0x0,0x8,0xff, + 0xff,0xe3,0xe0,0x1,0xc,0x4c,0x4d,0x54,0x0,0x41,0x53,0x54,0x0,0x2d,0x30,0x33, + 0x0,0x2d,0x30,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x9f,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0x5e,0x4,0xc,0xb0,0xff,0xff,0xff,0xff,0x9e,0xa6,0x3a, - 0x90,0xff,0xff,0xff,0xff,0x9f,0xbb,0x7,0x80,0xff,0xff,0xff,0xff,0xa0,0x86,0x1c, - 0x90,0xff,0xff,0xff,0xff,0xa1,0x9a,0xe9,0x80,0xff,0xff,0xff,0xff,0xa2,0x65,0xfe, - 0x90,0xff,0xff,0xff,0xff,0xa3,0x84,0x6,0x0,0xff,0xff,0xff,0xff,0xa4,0x45,0xe0, - 0x90,0xff,0xff,0xff,0xff,0xa4,0x8f,0xa6,0x80,0xff,0xff,0xff,0xff,0xcb,0x89,0xc, - 0x90,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x61,0x18, - 0x0,0xff,0xff,0xff,0xff,0xf7,0x2f,0x76,0x90,0xff,0xff,0xff,0xff,0xf8,0x28,0x94, - 0x0,0xff,0xff,0xff,0xff,0xf9,0xf,0x58,0x90,0xff,0xff,0xff,0xff,0xfa,0x8,0x76, - 0x0,0xff,0xff,0xff,0xff,0xfa,0xf8,0x75,0x10,0xff,0xff,0xff,0xff,0xfb,0xe8,0x58, - 0x0,0xff,0xff,0xff,0xff,0xfc,0xd8,0x57,0x10,0xff,0xff,0xff,0xff,0xfd,0xc8,0x3a, - 0x0,0xff,0xff,0xff,0xff,0xfe,0xb8,0x39,0x10,0xff,0xff,0xff,0xff,0xff,0xa8,0x1c, - 0x0,0x0,0x0,0x0,0x0,0x0,0x98,0x1b,0x10,0x0,0x0,0x0,0x0,0x1,0x87,0xfe, - 0x0,0x0,0x0,0x0,0x0,0x2,0x77,0xfd,0x10,0x0,0x0,0x0,0x0,0x3,0x71,0x1a, - 0x80,0x0,0x0,0x0,0x0,0x4,0x61,0x19,0x90,0x0,0x0,0x0,0x0,0x5,0x50,0xfc, - 0x80,0x0,0x0,0x0,0x0,0x6,0x40,0xfb,0x90,0x0,0x0,0x0,0x0,0x7,0x30,0xde, - 0x80,0x0,0x0,0x0,0x0,0x7,0x8d,0x35,0x90,0x0,0x0,0x0,0x0,0x9,0x10,0xc0, - 0x80,0x0,0x0,0x0,0x0,0x9,0xad,0xb1,0x10,0x0,0x0,0x0,0x0,0xa,0xf0,0xa2, - 0x80,0x0,0x0,0x0,0x0,0xb,0xe0,0xa1,0x90,0x0,0x0,0x0,0x0,0xc,0xd9,0xbf, - 0x0,0x0,0x0,0x0,0x0,0xd,0xc0,0x83,0x90,0x0,0x0,0x0,0x0,0xe,0xb9,0xa1, - 0x0,0x0,0x0,0x0,0x0,0xf,0xa9,0xa0,0x10,0x0,0x0,0x0,0x0,0x10,0x99,0x83, - 0x0,0x0,0x0,0x0,0x0,0x11,0x89,0x82,0x10,0x0,0x0,0x0,0x0,0x12,0x79,0x65, - 0x0,0x0,0x0,0x0,0x0,0x13,0x69,0x64,0x10,0x0,0x0,0x0,0x0,0x14,0x59,0x47, - 0x0,0x0,0x0,0x0,0x0,0x15,0x49,0x46,0x10,0x0,0x0,0x0,0x0,0x16,0x39,0x29, - 0x0,0x0,0x0,0x0,0x0,0x17,0x29,0x28,0x10,0x0,0x0,0x0,0x0,0x18,0x22,0x45, - 0x80,0x0,0x0,0x0,0x0,0x19,0x9,0xa,0x10,0x0,0x0,0x0,0x0,0x1a,0x2,0x27, - 0x80,0x0,0x0,0x0,0x0,0x1a,0xf2,0x26,0x90,0x0,0x0,0x0,0x0,0x1b,0xe2,0x9, - 0x80,0x0,0x0,0x0,0x0,0x1c,0xd2,0x8,0x90,0x0,0x0,0x0,0x0,0x1d,0xc1,0xeb, - 0x80,0x0,0x0,0x0,0x0,0x1e,0xb1,0xea,0x90,0x0,0x0,0x0,0x0,0x1f,0xa1,0xcd, - 0x80,0x0,0x0,0x0,0x0,0x20,0x76,0x1d,0x10,0x0,0x0,0x0,0x0,0x21,0x81,0xaf, - 0x80,0x0,0x0,0x0,0x0,0x22,0x55,0xff,0x10,0x0,0x0,0x0,0x0,0x23,0x6a,0xcc, - 0x0,0x0,0x0,0x0,0x0,0x24,0x35,0xe1,0x10,0x0,0x0,0x0,0x0,0x25,0x4a,0xae, - 0x0,0x0,0x0,0x0,0x0,0x26,0x15,0xc3,0x10,0x0,0x0,0x0,0x0,0x27,0x2a,0x90, - 0x0,0x0,0x0,0x0,0x0,0x27,0xfe,0xdf,0x90,0x0,0x0,0x0,0x0,0x29,0xa,0x72, - 0x0,0x0,0x0,0x0,0x0,0x29,0xde,0xc1,0x90,0x0,0x0,0x0,0x0,0x2a,0xea,0x54, - 0x0,0x0,0x0,0x0,0x0,0x2b,0xbe,0xa3,0x90,0x0,0x0,0x0,0x0,0x2c,0xd3,0x70, - 0x80,0x0,0x0,0x0,0x0,0x2d,0x9e,0x85,0x90,0x0,0x0,0x0,0x0,0x2e,0xb3,0x52, - 0x80,0x0,0x0,0x0,0x0,0x2f,0x7e,0x67,0x90,0x0,0x0,0x0,0x0,0x30,0x93,0x34, - 0x80,0x0,0x0,0x0,0x0,0x31,0x67,0x84,0x10,0x0,0x0,0x0,0x0,0x32,0x73,0x16, - 0x80,0x0,0x0,0x0,0x0,0x33,0x47,0x66,0x10,0x0,0x0,0x0,0x0,0x34,0x52,0xf8, - 0x80,0x0,0x0,0x0,0x0,0x35,0x27,0x48,0x10,0x0,0x0,0x0,0x0,0x36,0x32,0xda, - 0x80,0x0,0x0,0x0,0x0,0x37,0x7,0x2a,0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0xf7, - 0x0,0x0,0x0,0x0,0x0,0x38,0xe7,0xc,0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0xd9, - 0x0,0x0,0x0,0x0,0x0,0x3a,0xc6,0xee,0x10,0x0,0x0,0x0,0x0,0x3b,0xdb,0xbb, - 0x0,0x0,0x0,0x0,0x0,0x3c,0xb0,0xa,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x9d, - 0x0,0x0,0x0,0x0,0x0,0x3e,0x8f,0xec,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x7f, - 0x0,0x0,0x0,0x0,0x0,0x40,0x6f,0xce,0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x9b, - 0x80,0x0,0x0,0x0,0x0,0x42,0x4f,0xb0,0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x7d, - 0x80,0x0,0x0,0x0,0x0,0x44,0x2f,0x92,0x90,0x0,0x0,0x0,0x0,0x45,0x44,0x5f, - 0x80,0x0,0x0,0x0,0x0,0x45,0xf3,0xc5,0x10,0x0,0x0,0x0,0x0,0x47,0x2d,0x7c, - 0x0,0x0,0x0,0x0,0x0,0x47,0xd3,0xa7,0x10,0x0,0x0,0x0,0x0,0x49,0xd,0x5e, - 0x0,0x0,0x0,0x0,0x0,0x49,0xb3,0x89,0x10,0x0,0x0,0x0,0x0,0x4a,0xed,0x40, - 0x0,0x0,0x0,0x0,0x0,0x4b,0x9c,0xa5,0x90,0x0,0x0,0x0,0x0,0x4c,0xd6,0x5c, - 0x80,0x0,0x0,0x0,0x0,0x4d,0x7c,0x87,0x90,0x0,0x0,0x0,0x0,0x4e,0xb6,0x3e, - 0x80,0x0,0x0,0x0,0x0,0x4f,0x5c,0x69,0x90,0x0,0x0,0x0,0x0,0x50,0x96,0x20, - 0x80,0x0,0x0,0x0,0x0,0x51,0x3c,0x4b,0x90,0x0,0x0,0x0,0x0,0x52,0x76,0x2, - 0x80,0x0,0x0,0x0,0x0,0x53,0x1c,0x2d,0x90,0x0,0x0,0x0,0x0,0x54,0x55,0xe4, - 0x80,0x0,0x0,0x0,0x0,0x54,0xfc,0xf,0x90,0x0,0x0,0x0,0x0,0x56,0x35,0xc6, - 0x80,0x0,0x0,0x0,0x0,0x56,0xe5,0x2c,0x10,0x0,0x0,0x0,0x0,0x58,0x1e,0xe3, - 0x0,0x0,0x0,0x0,0x0,0x58,0xc5,0xe,0x10,0x0,0x0,0x0,0x0,0x59,0xfe,0xc5, - 0x0,0x0,0x0,0x0,0x0,0x5a,0xa4,0xf0,0x10,0x0,0x0,0x0,0x0,0x5b,0xde,0xa7, - 0x0,0x0,0x0,0x0,0x0,0x5c,0x84,0xd2,0x10,0x0,0x0,0x0,0x0,0x5d,0xbe,0x89, - 0x0,0x0,0x0,0x0,0x0,0x5e,0x64,0xb4,0x10,0x0,0x0,0x0,0x0,0x5f,0x9e,0x6b, - 0x0,0x0,0x0,0x0,0x0,0x60,0x4d,0xd0,0x90,0x0,0x0,0x0,0x0,0x61,0x87,0x87, - 0x80,0x0,0x0,0x0,0x0,0x62,0x2d,0xb2,0x90,0x0,0x0,0x0,0x0,0x63,0x67,0x69, - 0x80,0x0,0x0,0x0,0x0,0x64,0xd,0x94,0x90,0x0,0x0,0x0,0x0,0x65,0x47,0x4b, - 0x80,0x0,0x0,0x0,0x0,0x65,0xed,0x76,0x90,0x0,0x0,0x0,0x0,0x67,0x27,0x2d, - 0x80,0x0,0x0,0x0,0x0,0x67,0xcd,0x58,0x90,0x0,0x0,0x0,0x0,0x69,0x7,0xf, - 0x80,0x0,0x0,0x0,0x0,0x69,0xad,0x3a,0x90,0x0,0x0,0x0,0x0,0x6a,0xe6,0xf1, - 0x80,0x0,0x0,0x0,0x0,0x6b,0x96,0x57,0x10,0x0,0x0,0x0,0x0,0x6c,0xd0,0xe, - 0x0,0x0,0x0,0x0,0x0,0x6d,0x76,0x39,0x10,0x0,0x0,0x0,0x0,0x6e,0xaf,0xf0, - 0x0,0x0,0x0,0x0,0x0,0x6f,0x56,0x1b,0x10,0x0,0x0,0x0,0x0,0x70,0x8f,0xd2, - 0x0,0x0,0x0,0x0,0x0,0x71,0x35,0xfd,0x10,0x0,0x0,0x0,0x0,0x72,0x6f,0xb4, - 0x0,0x0,0x0,0x0,0x0,0x73,0x15,0xdf,0x10,0x0,0x0,0x0,0x0,0x74,0x4f,0x96, - 0x0,0x0,0x0,0x0,0x0,0x74,0xfe,0xfb,0x90,0x0,0x0,0x0,0x0,0x76,0x38,0xb2, - 0x80,0x0,0x0,0x0,0x0,0x76,0xde,0xdd,0x90,0x0,0x0,0x0,0x0,0x78,0x18,0x94, - 0x80,0x0,0x0,0x0,0x0,0x78,0xbe,0xbf,0x90,0x0,0x0,0x0,0x0,0x79,0xf8,0x76, - 0x80,0x0,0x0,0x0,0x0,0x7a,0x9e,0xa1,0x90,0x0,0x0,0x0,0x0,0x7b,0xd8,0x58, - 0x80,0x0,0x0,0x0,0x0,0x7c,0x7e,0x83,0x90,0x0,0x0,0x0,0x0,0x7d,0xb8,0x3a, - 0x80,0x0,0x0,0x0,0x0,0x7e,0x5e,0x65,0x90,0x0,0x0,0x0,0x0,0x7f,0x98,0x1c, - 0x80,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0xff,0xff,0x9d,0x94,0x0,0x0,0xff,0xff,0xab,0xa0,0x1,0x4,0xff,0xff,0x9d,0x90, - 0x0,0x8,0xff,0xff,0xab,0xa0,0x1,0xc,0xff,0xff,0xab,0xa0,0x1,0x10,0x4c,0x4d, - 0x54,0x0,0x4d,0x44,0x54,0x0,0x4d,0x53,0x54,0x0,0x4d,0x57,0x54,0x0,0x4d,0x50, - 0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x1,0xa,0x4d,0x53,0x54, - 0x37,0x4d,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e, - 0x31,0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Fort_Wayne - 0x0,0x0,0x6,0x8b, + 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x6a,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x10,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0x91,0xb6,0x38,0xa8,0x0,0x0,0x0,0x0,0x13,0x6e,0x63, + 0xc0,0x0,0x0,0x0,0x0,0x20,0x75,0xe4,0xd0,0x0,0x0,0x0,0x0,0x21,0x81,0x77, + 0x40,0x0,0x0,0x0,0x0,0x22,0x55,0xc6,0xd0,0x0,0x0,0x0,0x0,0x23,0x6a,0x93, + 0xc0,0x0,0x0,0x0,0x0,0x24,0x35,0xa8,0xd0,0x0,0x0,0x0,0x0,0x25,0x4a,0x75, + 0xc0,0x0,0x0,0x0,0x0,0x26,0x15,0x8a,0xd0,0x0,0x0,0x0,0x0,0x27,0x2a,0x57, + 0xc0,0x0,0x0,0x0,0x0,0x27,0xfe,0xa7,0x50,0x0,0x0,0x0,0x0,0x29,0xa,0x39, + 0xc0,0x0,0x0,0x0,0x0,0x29,0xde,0x89,0x50,0x0,0x0,0x0,0x0,0x2a,0xea,0x1b, + 0xc0,0x0,0x0,0x0,0x0,0x2b,0xbe,0x6b,0x50,0x0,0x0,0x0,0x0,0x2c,0xd3,0x38, + 0x40,0x0,0x0,0x0,0x0,0x2d,0x9e,0x4d,0x50,0x0,0x0,0x0,0x0,0x2e,0xb3,0x1a, + 0x40,0x0,0x0,0x0,0x0,0x2f,0x7e,0x2f,0x50,0x0,0x0,0x0,0x0,0x30,0x92,0xfc, + 0x40,0x0,0x0,0x0,0x0,0x31,0x67,0x4b,0xd0,0x0,0x0,0x0,0x0,0x32,0x72,0xde, + 0x40,0x0,0x0,0x0,0x0,0x33,0x47,0x2d,0xd0,0x0,0x0,0x0,0x0,0x34,0x52,0xc0, + 0x40,0x0,0x0,0x0,0x0,0x35,0x27,0xf,0xd0,0x0,0x0,0x0,0x0,0x36,0x32,0xa2, + 0x40,0x0,0x0,0x0,0x0,0x37,0x6,0xf1,0xd0,0x0,0x0,0x0,0x0,0x38,0x1b,0xbe, + 0xc0,0x0,0x0,0x0,0x0,0x38,0xe6,0xd3,0xd0,0x0,0x0,0x0,0x0,0x39,0xfb,0xa0, + 0xc0,0x0,0x0,0x0,0x0,0x3a,0xc6,0xb5,0xd0,0x0,0x0,0x0,0x0,0x3b,0xdb,0x82, + 0xc0,0x0,0x0,0x0,0x0,0x3c,0xaf,0xd2,0x50,0x0,0x0,0x0,0x0,0x3d,0xbb,0x64, + 0xc0,0x0,0x0,0x0,0x0,0x3e,0x8f,0xb4,0x50,0x0,0x0,0x0,0x0,0x3f,0x9b,0x46, + 0xc0,0x0,0x0,0x0,0x0,0x40,0x6f,0x96,0x50,0x0,0x0,0x0,0x0,0x41,0x84,0x63, + 0x40,0x0,0x0,0x0,0x0,0x42,0x4f,0x78,0x50,0x0,0x0,0x0,0x0,0x43,0x64,0x45, + 0x40,0x0,0x0,0x0,0x0,0x44,0x2f,0x5a,0x50,0x0,0x0,0x0,0x0,0x45,0x44,0x27, + 0x40,0x0,0x0,0x0,0x0,0x45,0xf3,0x8c,0xd0,0x0,0x0,0x0,0x0,0x47,0x2d,0x43, + 0xc0,0x0,0x0,0x0,0x0,0x47,0xd3,0x6e,0xd0,0x0,0x0,0x0,0x0,0x49,0xd,0x25, + 0xc0,0x0,0x0,0x0,0x0,0x49,0xb3,0x50,0xd0,0x0,0x0,0x0,0x0,0x4a,0xed,0x7, + 0xc0,0x0,0x0,0x0,0x0,0x4b,0x9c,0x6d,0x50,0x0,0x0,0x0,0x0,0x4c,0xd6,0x24, + 0x40,0x0,0x0,0x0,0x0,0x4d,0x7c,0x4f,0x50,0x0,0x0,0x0,0x0,0x4e,0xb6,0x6, + 0x40,0x0,0x0,0x0,0x0,0x4f,0x5c,0x31,0x50,0x0,0x0,0x0,0x0,0x50,0x95,0xe8, + 0x40,0x0,0x0,0x0,0x0,0x51,0x3c,0x13,0x50,0x0,0x0,0x0,0x0,0x52,0x75,0xca, + 0x40,0x0,0x0,0x0,0x0,0x53,0x1b,0xf5,0x50,0x0,0x0,0x0,0x0,0x54,0x55,0xac, + 0x40,0x0,0x0,0x0,0x0,0x54,0xfb,0xd7,0x50,0x0,0x0,0x0,0x0,0x56,0x35,0x8e, + 0x40,0x0,0x0,0x0,0x0,0x56,0xe4,0xf3,0xd0,0x0,0x0,0x0,0x0,0x58,0x1e,0xaa, + 0xc0,0x0,0x0,0x0,0x0,0x58,0xc4,0xd5,0xd0,0x0,0x0,0x0,0x0,0x59,0xfe,0x8c, + 0xc0,0x0,0x0,0x0,0x0,0x5a,0xa4,0xb7,0xd0,0x0,0x0,0x0,0x0,0x5b,0xde,0x6e, + 0xc0,0x0,0x0,0x0,0x0,0x5c,0x84,0x99,0xd0,0x0,0x0,0x0,0x0,0x5d,0xbe,0x50, + 0xc0,0x0,0x0,0x0,0x0,0x5e,0x64,0x7b,0xd0,0x0,0x0,0x0,0x0,0x5f,0x9e,0x32, + 0xc0,0x0,0x0,0x0,0x0,0x60,0x4d,0x98,0x50,0x0,0x0,0x0,0x0,0x61,0x87,0x4f, + 0x40,0x0,0x0,0x0,0x0,0x62,0x2d,0x7a,0x50,0x0,0x0,0x0,0x0,0x63,0x67,0x31, + 0x40,0x0,0x0,0x0,0x0,0x64,0xd,0x5c,0x50,0x0,0x0,0x0,0x0,0x65,0x47,0x13, + 0x40,0x0,0x0,0x0,0x0,0x65,0xed,0x3e,0x50,0x0,0x0,0x0,0x0,0x67,0x26,0xf5, + 0x40,0x0,0x0,0x0,0x0,0x67,0xcd,0x20,0x50,0x0,0x0,0x0,0x0,0x69,0x6,0xd7, + 0x40,0x0,0x0,0x0,0x0,0x69,0xad,0x2,0x50,0x0,0x0,0x0,0x0,0x6a,0xe6,0xb9, + 0x40,0x0,0x0,0x0,0x0,0x6b,0x96,0x1e,0xd0,0x0,0x0,0x0,0x0,0x6c,0xcf,0xd5, + 0xc0,0x0,0x0,0x0,0x0,0x6d,0x76,0x0,0xd0,0x0,0x0,0x0,0x0,0x6e,0xaf,0xb7, + 0xc0,0x0,0x0,0x0,0x0,0x6f,0x55,0xe2,0xd0,0x0,0x0,0x0,0x0,0x70,0x8f,0x99, + 0xc0,0x0,0x0,0x0,0x0,0x71,0x35,0xc4,0xd0,0x0,0x0,0x0,0x0,0x72,0x6f,0x7b, + 0xc0,0x0,0x0,0x0,0x0,0x73,0x15,0xa6,0xd0,0x0,0x0,0x0,0x0,0x74,0x4f,0x5d, + 0xc0,0x0,0x0,0x0,0x0,0x74,0xfe,0xc3,0x50,0x0,0x0,0x0,0x0,0x76,0x38,0x7a, + 0x40,0x0,0x0,0x0,0x0,0x76,0xde,0xa5,0x50,0x0,0x0,0x0,0x0,0x78,0x18,0x5c, + 0x40,0x0,0x0,0x0,0x0,0x78,0xbe,0x87,0x50,0x0,0x0,0x0,0x0,0x79,0xf8,0x3e, + 0x40,0x0,0x0,0x0,0x0,0x7a,0x9e,0x69,0x50,0x0,0x0,0x0,0x0,0x7b,0xd8,0x20, + 0x40,0x0,0x0,0x0,0x0,0x7c,0x7e,0x4b,0x50,0x0,0x0,0x0,0x0,0x7d,0xb8,0x2, + 0x40,0x0,0x0,0x0,0x0,0x7e,0x5e,0x2d,0x50,0x0,0x0,0x0,0x0,0x7f,0x97,0xe4, + 0x40,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x2,0xff,0xff,0xcb,0x58,0x0,0x0,0xff,0xff,0xc7,0xc0,0x0,0x4,0xff, + 0xff,0xd5,0xd0,0x0,0x8,0xff,0xff,0xe3,0xe0,0x1,0xc,0x4c,0x4d,0x54,0x0,0x41, + 0x53,0x54,0x0,0x2d,0x30,0x33,0x0,0x2d,0x30,0x32,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0xa,0x3c,0x2d,0x30,0x33,0x3e,0x33,0x3c,0x2d,0x30,0x32,0x3e,0x2c, + 0x4d,0x33,0x2e,0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/El_Salvador + 0x0,0x0,0x0,0xfa, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x63,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x1c,0x80,0x0,0x0,0x0,0x9e, - 0xa6,0x2c,0x80,0x9f,0xba,0xf9,0x70,0xa0,0x86,0xe,0x80,0xa1,0x9a,0xdb,0x70,0xca, - 0x57,0x22,0x80,0xca,0xd8,0x47,0x70,0xcb,0x88,0xfe,0x80,0xd2,0x23,0xf4,0x70,0xd2, - 0x61,0x9,0xf0,0xd3,0x75,0xf3,0x0,0xd4,0x40,0xeb,0xf0,0xd5,0x55,0xd5,0x0,0xd6, - 0x20,0xcd,0xf0,0xd7,0x35,0xb7,0x0,0xd8,0x0,0xaf,0xf0,0xd9,0x15,0x99,0x0,0xd9, - 0xe0,0x91,0xf0,0xda,0xfe,0xb5,0x80,0xdb,0xc0,0x73,0xf0,0xdc,0xde,0x97,0x80,0xdd, - 0xa9,0x90,0x70,0xde,0xbe,0x79,0x80,0xdf,0x89,0x72,0x70,0xe0,0x9e,0x5b,0x80,0xe1, - 0x69,0x54,0x70,0xe2,0x7e,0x3d,0x80,0xe3,0x49,0x36,0x70,0xe4,0x5e,0x1f,0x80,0xe8, - 0xf2,0x16,0xf0,0xea,0x7,0x0,0x0,0xfe,0xb8,0x1c,0xf0,0xff,0xa7,0xff,0xe0,0x0, - 0x97,0xfe,0xf0,0x1,0x87,0xe1,0xe0,0x44,0x2f,0x76,0x70,0x45,0x44,0x43,0x60,0x45, - 0xf3,0xa8,0xf0,0x47,0x2d,0x5f,0xe0,0x47,0xd3,0x8a,0xf0,0x49,0xd,0x41,0xe0,0x49, - 0xb3,0x6c,0xf0,0x4a,0xed,0x23,0xe0,0x4b,0x9c,0x89,0x70,0x4c,0xd6,0x40,0x60,0x4d, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0xa3, + 0xd5,0xa6,0x20,0x20,0x9a,0xdc,0xe0,0x21,0x5c,0x9b,0x50,0x22,0x7a,0xbe,0xe0,0x23, + 0x3c,0x7d,0x50,0x0,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0xac,0x60,0x0,0x0,0xff, + 0xff,0xb9,0xb0,0x1,0x4,0xff,0xff,0xab,0xa0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x43, + 0x44,0x54,0x0,0x43,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, + 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0xa3,0xd5,0xa6,0x20,0x0,0x0,0x0,0x0,0x20,0x9a,0xdc, + 0xe0,0x0,0x0,0x0,0x0,0x21,0x5c,0x9b,0x50,0x0,0x0,0x0,0x0,0x22,0x7a,0xbe, + 0xe0,0x0,0x0,0x0,0x0,0x23,0x3c,0x7d,0x50,0x0,0x2,0x1,0x2,0x1,0x2,0xff, + 0xff,0xac,0x60,0x0,0x0,0xff,0xff,0xb9,0xb0,0x1,0x4,0xff,0xff,0xab,0xa0,0x0, + 0x8,0x4c,0x4d,0x54,0x0,0x43,0x44,0x54,0x0,0x43,0x53,0x54,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0xa,0x43,0x53,0x54,0x36,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Cancun + 0x0,0x0,0x3,0x30, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2b,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0xa5, + 0xb6,0xda,0x60,0x16,0x86,0xd5,0x60,0x31,0x67,0x67,0xf0,0x32,0x72,0xfa,0x60,0x33, + 0x47,0x49,0xf0,0x34,0x52,0xdc,0x60,0x35,0x27,0x2b,0xf0,0x35,0xc4,0x0,0x60,0x36, + 0x32,0xcc,0x70,0x37,0x7,0x1c,0x0,0x38,0x1b,0xe8,0xf0,0x38,0xe6,0xfe,0x0,0x39, + 0xfb,0xca,0xf0,0x3a,0xf5,0x4,0x80,0x3b,0xb6,0xc2,0xf0,0x3c,0xaf,0xfc,0x80,0x3d, + 0xbb,0x8e,0xf0,0x3e,0x8f,0xde,0x80,0x3f,0x9b,0x70,0xf0,0x40,0x6f,0xc0,0x80,0x41, + 0x84,0x8d,0x70,0x42,0x4f,0xa2,0x80,0x43,0x64,0x6f,0x70,0x44,0x2f,0x84,0x80,0x45, + 0x44,0x51,0x70,0x46,0xf,0x66,0x80,0x47,0x24,0x33,0x70,0x47,0xf8,0x83,0x0,0x49, + 0x4,0x15,0x70,0x49,0xd8,0x65,0x0,0x4a,0xe3,0xf7,0x70,0x4b,0xb8,0x47,0x0,0x4c, + 0xcd,0x13,0xf0,0x4d,0x98,0x29,0x0,0x4e,0xac,0xf5,0xf0,0x4f,0x78,0xb,0x0,0x50, + 0x8c,0xd7,0xf0,0x51,0x61,0x27,0x80,0x52,0x6c,0xb9,0xf0,0x53,0x41,0x9,0x80,0x54, + 0x4c,0x9b,0xf0,0x54,0xcd,0xdd,0x0,0x0,0x1,0x3,0x2,0x3,0x2,0x3,0x2,0x4, + 0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4, + 0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4, + 0x1,0x3,0xff,0xff,0xae,0xa8,0x0,0x0,0xff,0xff,0xab,0xa0,0x0,0x4,0xff,0xff, + 0xc7,0xc0,0x1,0x8,0xff,0xff,0xb9,0xb0,0x0,0xc,0xff,0xff,0xb9,0xb0,0x1,0x10, + 0x4c,0x4d,0x54,0x0,0x43,0x53,0x54,0x0,0x45,0x44,0x54,0x0,0x45,0x53,0x54,0x0, + 0x43,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a, + 0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x2b,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0xf8,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xff,0xff,0xff,0xff,0xa5,0xb6,0xda,0x60,0x0,0x0,0x0,0x0,0x16,0x86, + 0xd5,0x60,0x0,0x0,0x0,0x0,0x31,0x67,0x67,0xf0,0x0,0x0,0x0,0x0,0x32,0x72, + 0xfa,0x60,0x0,0x0,0x0,0x0,0x33,0x47,0x49,0xf0,0x0,0x0,0x0,0x0,0x34,0x52, + 0xdc,0x60,0x0,0x0,0x0,0x0,0x35,0x27,0x2b,0xf0,0x0,0x0,0x0,0x0,0x35,0xc4, + 0x0,0x60,0x0,0x0,0x0,0x0,0x36,0x32,0xcc,0x70,0x0,0x0,0x0,0x0,0x37,0x7, + 0x1c,0x0,0x0,0x0,0x0,0x0,0x38,0x1b,0xe8,0xf0,0x0,0x0,0x0,0x0,0x38,0xe6, + 0xfe,0x0,0x0,0x0,0x0,0x0,0x39,0xfb,0xca,0xf0,0x0,0x0,0x0,0x0,0x3a,0xf5, + 0x4,0x80,0x0,0x0,0x0,0x0,0x3b,0xb6,0xc2,0xf0,0x0,0x0,0x0,0x0,0x3c,0xaf, + 0xfc,0x80,0x0,0x0,0x0,0x0,0x3d,0xbb,0x8e,0xf0,0x0,0x0,0x0,0x0,0x3e,0x8f, + 0xde,0x80,0x0,0x0,0x0,0x0,0x3f,0x9b,0x70,0xf0,0x0,0x0,0x0,0x0,0x40,0x6f, + 0xc0,0x80,0x0,0x0,0x0,0x0,0x41,0x84,0x8d,0x70,0x0,0x0,0x0,0x0,0x42,0x4f, + 0xa2,0x80,0x0,0x0,0x0,0x0,0x43,0x64,0x6f,0x70,0x0,0x0,0x0,0x0,0x44,0x2f, + 0x84,0x80,0x0,0x0,0x0,0x0,0x45,0x44,0x51,0x70,0x0,0x0,0x0,0x0,0x46,0xf, + 0x66,0x80,0x0,0x0,0x0,0x0,0x47,0x24,0x33,0x70,0x0,0x0,0x0,0x0,0x47,0xf8, + 0x83,0x0,0x0,0x0,0x0,0x0,0x49,0x4,0x15,0x70,0x0,0x0,0x0,0x0,0x49,0xd8, + 0x65,0x0,0x0,0x0,0x0,0x0,0x4a,0xe3,0xf7,0x70,0x0,0x0,0x0,0x0,0x4b,0xb8, + 0x47,0x0,0x0,0x0,0x0,0x0,0x4c,0xcd,0x13,0xf0,0x0,0x0,0x0,0x0,0x4d,0x98, + 0x29,0x0,0x0,0x0,0x0,0x0,0x4e,0xac,0xf5,0xf0,0x0,0x0,0x0,0x0,0x4f,0x78, + 0xb,0x0,0x0,0x0,0x0,0x0,0x50,0x8c,0xd7,0xf0,0x0,0x0,0x0,0x0,0x51,0x61, + 0x27,0x80,0x0,0x0,0x0,0x0,0x52,0x6c,0xb9,0xf0,0x0,0x0,0x0,0x0,0x53,0x41, + 0x9,0x80,0x0,0x0,0x0,0x0,0x54,0x4c,0x9b,0xf0,0x0,0x0,0x0,0x0,0x54,0xcd, + 0xdd,0x0,0x0,0x1,0x3,0x2,0x3,0x2,0x3,0x2,0x4,0x1,0x4,0x1,0x4,0x1, + 0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1, + 0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x3,0xff,0xff,0xae, + 0xa8,0x0,0x0,0xff,0xff,0xab,0xa0,0x0,0x4,0xff,0xff,0xc7,0xc0,0x1,0x8,0xff, + 0xff,0xb9,0xb0,0x0,0xc,0xff,0xff,0xb9,0xb0,0x1,0x10,0x4c,0x4d,0x54,0x0,0x43, + 0x53,0x54,0x0,0x45,0x44,0x54,0x0,0x45,0x53,0x54,0x0,0x43,0x44,0x54,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x45,0x53,0x54,0x35,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Pangnirtung + 0x0,0x0,0x8,0x3c, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x7b,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x29,0x80,0x0,0x0,0x0,0xa3, + 0xd5,0x52,0x80,0xcb,0x88,0xe2,0x60,0xd2,0x23,0xf4,0x70,0xd2,0x60,0xed,0xd0,0xf7, + 0x2f,0x30,0x40,0xf8,0x28,0x5b,0xc0,0x13,0x69,0x39,0xe0,0x14,0x59,0x1c,0xd0,0x15, + 0x49,0x1b,0xe0,0x16,0x38,0xfe,0xd0,0x17,0x28,0xfd,0xe0,0x18,0x22,0x1b,0x50,0x19, + 0x8,0xdf,0xe0,0x1a,0x1,0xfd,0x50,0x1a,0xf1,0xfc,0x60,0x1b,0xe1,0xdf,0x50,0x1c, + 0xd1,0xde,0x60,0x1d,0xc1,0xc1,0x50,0x1e,0xb1,0xc0,0x60,0x1f,0xa1,0xa3,0x50,0x20, + 0x75,0xf2,0xe0,0x21,0x81,0x85,0x50,0x22,0x55,0xd4,0xe0,0x23,0x6a,0xa1,0xd0,0x24, + 0x35,0xb6,0xe0,0x25,0x4a,0x83,0xd0,0x26,0x15,0x98,0xe0,0x27,0x2a,0x65,0xd0,0x27, + 0xfe,0xb5,0x60,0x29,0xa,0x47,0xd0,0x29,0xde,0x97,0x60,0x2a,0xea,0x29,0xd0,0x2b, + 0xbe,0x79,0x60,0x2c,0xd3,0x46,0x50,0x2d,0x9e,0x5b,0x60,0x2e,0xb3,0x28,0x50,0x2f, + 0x7e,0x3d,0x60,0x30,0x93,0x18,0x60,0x31,0x67,0x67,0xf0,0x32,0x72,0xfa,0x60,0x33, + 0x47,0x49,0xf0,0x34,0x52,0xdc,0x60,0x35,0x27,0x2b,0xf0,0x36,0x32,0xbe,0x60,0x37, + 0x7,0xd,0xf0,0x38,0x1b,0xda,0xe0,0x38,0xe6,0xfe,0x0,0x39,0xfb,0xca,0xf0,0x3a, + 0xc6,0xd1,0xf0,0x3b,0xdb,0x9e,0xe0,0x3c,0xaf,0xee,0x70,0x3d,0xbb,0x80,0xe0,0x3e, + 0x8f,0xd0,0x70,0x3f,0x9b,0x62,0xe0,0x40,0x6f,0xb2,0x70,0x41,0x84,0x7f,0x60,0x42, + 0x4f,0x94,0x70,0x43,0x64,0x61,0x60,0x44,0x2f,0x76,0x70,0x45,0x44,0x43,0x60,0x45, + 0xf3,0xa8,0xf0,0x47,0x2d,0x5f,0xe0,0x47,0xd3,0x8a,0xf0,0x49,0xd,0x41,0xe0,0x49, + 0xb3,0x6c,0xf0,0x4a,0xed,0x23,0xe0,0x4b,0x9c,0x89,0x70,0x4c,0xd6,0x40,0x60,0x4d, 0x7c,0x6b,0x70,0x4e,0xb6,0x22,0x60,0x4f,0x5c,0x4d,0x70,0x50,0x96,0x4,0x60,0x51, 0x3c,0x2f,0x70,0x52,0x75,0xe6,0x60,0x53,0x1c,0x11,0x70,0x54,0x55,0xc8,0x60,0x54, 0xfb,0xf3,0x70,0x56,0x35,0xaa,0x60,0x56,0xe5,0xf,0xf0,0x58,0x1e,0xc6,0xe0,0x58, @@ -28694,737 +25413,333 @@ static const unsigned char qt_resource_data[] = { 0x15,0xc2,0xf0,0x74,0x4f,0x79,0xe0,0x74,0xfe,0xdf,0x70,0x76,0x38,0x96,0x60,0x76, 0xde,0xc1,0x70,0x78,0x18,0x78,0x60,0x78,0xbe,0xa3,0x70,0x79,0xf8,0x5a,0x60,0x7a, 0x9e,0x85,0x70,0x7b,0xd8,0x3c,0x60,0x7c,0x7e,0x67,0x70,0x7d,0xb8,0x1e,0x60,0x7e, - 0x5e,0x49,0x70,0x7f,0x98,0x0,0x60,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x5,0x2,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0xff,0xff,0xaf,0x3a,0x0,0x0, - 0xff,0xff,0xb9,0xb0,0x1,0x4,0xff,0xff,0xab,0xa0,0x0,0x8,0xff,0xff,0xb9,0xb0, - 0x1,0xc,0xff,0xff,0xb9,0xb0,0x1,0x10,0xff,0xff,0xb9,0xb0,0x0,0x14,0xff,0xff, - 0xc7,0xc0,0x1,0x18,0x4c,0x4d,0x54,0x0,0x43,0x44,0x54,0x0,0x43,0x53,0x54,0x0, - 0x43,0x57,0x54,0x0,0x43,0x50,0x54,0x0,0x45,0x53,0x54,0x0,0x45,0x44,0x54,0x0, - 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x54,0x5a, - 0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x64,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x1c,0xf8,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xff,0xff,0xff,0xff,0x5e,0x3,0xfe,0xa0,0xff,0xff,0xff,0xff,0x9e,0xa6, - 0x2c,0x80,0xff,0xff,0xff,0xff,0x9f,0xba,0xf9,0x70,0xff,0xff,0xff,0xff,0xa0,0x86, - 0xe,0x80,0xff,0xff,0xff,0xff,0xa1,0x9a,0xdb,0x70,0xff,0xff,0xff,0xff,0xca,0x57, - 0x22,0x80,0xff,0xff,0xff,0xff,0xca,0xd8,0x47,0x70,0xff,0xff,0xff,0xff,0xcb,0x88, - 0xfe,0x80,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x61, - 0x9,0xf0,0xff,0xff,0xff,0xff,0xd3,0x75,0xf3,0x0,0xff,0xff,0xff,0xff,0xd4,0x40, - 0xeb,0xf0,0xff,0xff,0xff,0xff,0xd5,0x55,0xd5,0x0,0xff,0xff,0xff,0xff,0xd6,0x20, - 0xcd,0xf0,0xff,0xff,0xff,0xff,0xd7,0x35,0xb7,0x0,0xff,0xff,0xff,0xff,0xd8,0x0, - 0xaf,0xf0,0xff,0xff,0xff,0xff,0xd9,0x15,0x99,0x0,0xff,0xff,0xff,0xff,0xd9,0xe0, - 0x91,0xf0,0xff,0xff,0xff,0xff,0xda,0xfe,0xb5,0x80,0xff,0xff,0xff,0xff,0xdb,0xc0, - 0x73,0xf0,0xff,0xff,0xff,0xff,0xdc,0xde,0x97,0x80,0xff,0xff,0xff,0xff,0xdd,0xa9, - 0x90,0x70,0xff,0xff,0xff,0xff,0xde,0xbe,0x79,0x80,0xff,0xff,0xff,0xff,0xdf,0x89, - 0x72,0x70,0xff,0xff,0xff,0xff,0xe0,0x9e,0x5b,0x80,0xff,0xff,0xff,0xff,0xe1,0x69, - 0x54,0x70,0xff,0xff,0xff,0xff,0xe2,0x7e,0x3d,0x80,0xff,0xff,0xff,0xff,0xe3,0x49, - 0x36,0x70,0xff,0xff,0xff,0xff,0xe4,0x5e,0x1f,0x80,0xff,0xff,0xff,0xff,0xe8,0xf2, - 0x16,0xf0,0xff,0xff,0xff,0xff,0xea,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0xfe,0xb8, - 0x1c,0xf0,0xff,0xff,0xff,0xff,0xff,0xa7,0xff,0xe0,0x0,0x0,0x0,0x0,0x0,0x97, - 0xfe,0xf0,0x0,0x0,0x0,0x0,0x1,0x87,0xe1,0xe0,0x0,0x0,0x0,0x0,0x44,0x2f, - 0x76,0x70,0x0,0x0,0x0,0x0,0x45,0x44,0x43,0x60,0x0,0x0,0x0,0x0,0x45,0xf3, - 0xa8,0xf0,0x0,0x0,0x0,0x0,0x47,0x2d,0x5f,0xe0,0x0,0x0,0x0,0x0,0x47,0xd3, - 0x8a,0xf0,0x0,0x0,0x0,0x0,0x49,0xd,0x41,0xe0,0x0,0x0,0x0,0x0,0x49,0xb3, - 0x6c,0xf0,0x0,0x0,0x0,0x0,0x4a,0xed,0x23,0xe0,0x0,0x0,0x0,0x0,0x4b,0x9c, - 0x89,0x70,0x0,0x0,0x0,0x0,0x4c,0xd6,0x40,0x60,0x0,0x0,0x0,0x0,0x4d,0x7c, - 0x6b,0x70,0x0,0x0,0x0,0x0,0x4e,0xb6,0x22,0x60,0x0,0x0,0x0,0x0,0x4f,0x5c, - 0x4d,0x70,0x0,0x0,0x0,0x0,0x50,0x96,0x4,0x60,0x0,0x0,0x0,0x0,0x51,0x3c, - 0x2f,0x70,0x0,0x0,0x0,0x0,0x52,0x75,0xe6,0x60,0x0,0x0,0x0,0x0,0x53,0x1c, - 0x11,0x70,0x0,0x0,0x0,0x0,0x54,0x55,0xc8,0x60,0x0,0x0,0x0,0x0,0x54,0xfb, - 0xf3,0x70,0x0,0x0,0x0,0x0,0x56,0x35,0xaa,0x60,0x0,0x0,0x0,0x0,0x56,0xe5, - 0xf,0xf0,0x0,0x0,0x0,0x0,0x58,0x1e,0xc6,0xe0,0x0,0x0,0x0,0x0,0x58,0xc4, - 0xf1,0xf0,0x0,0x0,0x0,0x0,0x59,0xfe,0xa8,0xe0,0x0,0x0,0x0,0x0,0x5a,0xa4, - 0xd3,0xf0,0x0,0x0,0x0,0x0,0x5b,0xde,0x8a,0xe0,0x0,0x0,0x0,0x0,0x5c,0x84, - 0xb5,0xf0,0x0,0x0,0x0,0x0,0x5d,0xbe,0x6c,0xe0,0x0,0x0,0x0,0x0,0x5e,0x64, - 0x97,0xf0,0x0,0x0,0x0,0x0,0x5f,0x9e,0x4e,0xe0,0x0,0x0,0x0,0x0,0x60,0x4d, - 0xb4,0x70,0x0,0x0,0x0,0x0,0x61,0x87,0x6b,0x60,0x0,0x0,0x0,0x0,0x62,0x2d, - 0x96,0x70,0x0,0x0,0x0,0x0,0x63,0x67,0x4d,0x60,0x0,0x0,0x0,0x0,0x64,0xd, - 0x78,0x70,0x0,0x0,0x0,0x0,0x65,0x47,0x2f,0x60,0x0,0x0,0x0,0x0,0x65,0xed, - 0x5a,0x70,0x0,0x0,0x0,0x0,0x67,0x27,0x11,0x60,0x0,0x0,0x0,0x0,0x67,0xcd, - 0x3c,0x70,0x0,0x0,0x0,0x0,0x69,0x6,0xf3,0x60,0x0,0x0,0x0,0x0,0x69,0xad, - 0x1e,0x70,0x0,0x0,0x0,0x0,0x6a,0xe6,0xd5,0x60,0x0,0x0,0x0,0x0,0x6b,0x96, - 0x3a,0xf0,0x0,0x0,0x0,0x0,0x6c,0xcf,0xf1,0xe0,0x0,0x0,0x0,0x0,0x6d,0x76, - 0x1c,0xf0,0x0,0x0,0x0,0x0,0x6e,0xaf,0xd3,0xe0,0x0,0x0,0x0,0x0,0x6f,0x55, - 0xfe,0xf0,0x0,0x0,0x0,0x0,0x70,0x8f,0xb5,0xe0,0x0,0x0,0x0,0x0,0x71,0x35, - 0xe0,0xf0,0x0,0x0,0x0,0x0,0x72,0x6f,0x97,0xe0,0x0,0x0,0x0,0x0,0x73,0x15, - 0xc2,0xf0,0x0,0x0,0x0,0x0,0x74,0x4f,0x79,0xe0,0x0,0x0,0x0,0x0,0x74,0xfe, - 0xdf,0x70,0x0,0x0,0x0,0x0,0x76,0x38,0x96,0x60,0x0,0x0,0x0,0x0,0x76,0xde, - 0xc1,0x70,0x0,0x0,0x0,0x0,0x78,0x18,0x78,0x60,0x0,0x0,0x0,0x0,0x78,0xbe, - 0xa3,0x70,0x0,0x0,0x0,0x0,0x79,0xf8,0x5a,0x60,0x0,0x0,0x0,0x0,0x7a,0x9e, - 0x85,0x70,0x0,0x0,0x0,0x0,0x7b,0xd8,0x3c,0x60,0x0,0x0,0x0,0x0,0x7c,0x7e, - 0x67,0x70,0x0,0x0,0x0,0x0,0x7d,0xb8,0x1e,0x60,0x0,0x0,0x0,0x0,0x7e,0x5e, - 0x49,0x70,0x0,0x0,0x0,0x0,0x7f,0x98,0x0,0x60,0x0,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x3,0x4,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x5,0x2,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0xff,0xff, - 0xaf,0x3a,0x0,0x0,0xff,0xff,0xb9,0xb0,0x1,0x4,0xff,0xff,0xab,0xa0,0x0,0x8, - 0xff,0xff,0xb9,0xb0,0x1,0xc,0xff,0xff,0xb9,0xb0,0x1,0x10,0xff,0xff,0xb9,0xb0, - 0x0,0x14,0xff,0xff,0xc7,0xc0,0x1,0x18,0x4c,0x4d,0x54,0x0,0x43,0x44,0x54,0x0, - 0x43,0x53,0x54,0x0,0x43,0x57,0x54,0x0,0x43,0x50,0x54,0x0,0x45,0x53,0x54,0x0, - 0x45,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1, - 0x0,0x0,0xa,0x45,0x53,0x54,0x35,0x45,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e, - 0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Atka - 0x0,0x0,0x9,0x3d, + 0x5e,0x49,0x70,0x7f,0x98,0x0,0x60,0x0,0x3,0x1,0x2,0x3,0x4,0x3,0x5,0x3, + 0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3, + 0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x8,0x9,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xd5,0xd0,0x1,0x4,0xff,0xff, + 0xd5,0xd0,0x1,0x8,0xff,0xff,0xc7,0xc0,0x0,0xc,0xff,0xff,0xe3,0xe0,0x1,0x10, + 0xff,0xff,0xd5,0xd0,0x1,0x15,0xff,0xff,0xc7,0xc0,0x1,0x19,0xff,0xff,0xb9,0xb0, + 0x0,0x1d,0xff,0xff,0xab,0xa0,0x0,0x21,0xff,0xff,0xb9,0xb0,0x1,0x25,0xff,0xff, + 0xc7,0xc0,0x1,0x19,0xff,0xff,0xb9,0xb0,0x0,0x1d,0x2d,0x30,0x30,0x0,0x41,0x57, + 0x54,0x0,0x41,0x50,0x54,0x0,0x41,0x53,0x54,0x0,0x41,0x44,0x44,0x54,0x0,0x41, + 0x44,0x54,0x0,0x45,0x44,0x54,0x0,0x45,0x53,0x54,0x0,0x43,0x53,0x54,0x0,0x43, + 0x44,0x54,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xc,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7b,0x0, + 0x0,0x0,0xc,0x0,0x0,0x0,0x29,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff, + 0xff,0xff,0xff,0xa3,0xd5,0x52,0x80,0xff,0xff,0xff,0xff,0xcb,0x88,0xe2,0x60,0xff, + 0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x60,0xed,0xd0,0xff, + 0xff,0xff,0xff,0xf7,0x2f,0x30,0x40,0xff,0xff,0xff,0xff,0xf8,0x28,0x5b,0xc0,0x0, + 0x0,0x0,0x0,0x13,0x69,0x39,0xe0,0x0,0x0,0x0,0x0,0x14,0x59,0x1c,0xd0,0x0, + 0x0,0x0,0x0,0x15,0x49,0x1b,0xe0,0x0,0x0,0x0,0x0,0x16,0x38,0xfe,0xd0,0x0, + 0x0,0x0,0x0,0x17,0x28,0xfd,0xe0,0x0,0x0,0x0,0x0,0x18,0x22,0x1b,0x50,0x0, + 0x0,0x0,0x0,0x19,0x8,0xdf,0xe0,0x0,0x0,0x0,0x0,0x1a,0x1,0xfd,0x50,0x0, + 0x0,0x0,0x0,0x1a,0xf1,0xfc,0x60,0x0,0x0,0x0,0x0,0x1b,0xe1,0xdf,0x50,0x0, + 0x0,0x0,0x0,0x1c,0xd1,0xde,0x60,0x0,0x0,0x0,0x0,0x1d,0xc1,0xc1,0x50,0x0, + 0x0,0x0,0x0,0x1e,0xb1,0xc0,0x60,0x0,0x0,0x0,0x0,0x1f,0xa1,0xa3,0x50,0x0, + 0x0,0x0,0x0,0x20,0x75,0xf2,0xe0,0x0,0x0,0x0,0x0,0x21,0x81,0x85,0x50,0x0, + 0x0,0x0,0x0,0x22,0x55,0xd4,0xe0,0x0,0x0,0x0,0x0,0x23,0x6a,0xa1,0xd0,0x0, + 0x0,0x0,0x0,0x24,0x35,0xb6,0xe0,0x0,0x0,0x0,0x0,0x25,0x4a,0x83,0xd0,0x0, + 0x0,0x0,0x0,0x26,0x15,0x98,0xe0,0x0,0x0,0x0,0x0,0x27,0x2a,0x65,0xd0,0x0, + 0x0,0x0,0x0,0x27,0xfe,0xb5,0x60,0x0,0x0,0x0,0x0,0x29,0xa,0x47,0xd0,0x0, + 0x0,0x0,0x0,0x29,0xde,0x97,0x60,0x0,0x0,0x0,0x0,0x2a,0xea,0x29,0xd0,0x0, + 0x0,0x0,0x0,0x2b,0xbe,0x79,0x60,0x0,0x0,0x0,0x0,0x2c,0xd3,0x46,0x50,0x0, + 0x0,0x0,0x0,0x2d,0x9e,0x5b,0x60,0x0,0x0,0x0,0x0,0x2e,0xb3,0x28,0x50,0x0, + 0x0,0x0,0x0,0x2f,0x7e,0x3d,0x60,0x0,0x0,0x0,0x0,0x30,0x93,0x18,0x60,0x0, + 0x0,0x0,0x0,0x31,0x67,0x67,0xf0,0x0,0x0,0x0,0x0,0x32,0x72,0xfa,0x60,0x0, + 0x0,0x0,0x0,0x33,0x47,0x49,0xf0,0x0,0x0,0x0,0x0,0x34,0x52,0xdc,0x60,0x0, + 0x0,0x0,0x0,0x35,0x27,0x2b,0xf0,0x0,0x0,0x0,0x0,0x36,0x32,0xbe,0x60,0x0, + 0x0,0x0,0x0,0x37,0x7,0xd,0xf0,0x0,0x0,0x0,0x0,0x38,0x1b,0xda,0xe0,0x0, + 0x0,0x0,0x0,0x38,0xe6,0xfe,0x0,0x0,0x0,0x0,0x0,0x39,0xfb,0xca,0xf0,0x0, + 0x0,0x0,0x0,0x3a,0xc6,0xd1,0xf0,0x0,0x0,0x0,0x0,0x3b,0xdb,0x9e,0xe0,0x0, + 0x0,0x0,0x0,0x3c,0xaf,0xee,0x70,0x0,0x0,0x0,0x0,0x3d,0xbb,0x80,0xe0,0x0, + 0x0,0x0,0x0,0x3e,0x8f,0xd0,0x70,0x0,0x0,0x0,0x0,0x3f,0x9b,0x62,0xe0,0x0, + 0x0,0x0,0x0,0x40,0x6f,0xb2,0x70,0x0,0x0,0x0,0x0,0x41,0x84,0x7f,0x60,0x0, + 0x0,0x0,0x0,0x42,0x4f,0x94,0x70,0x0,0x0,0x0,0x0,0x43,0x64,0x61,0x60,0x0, + 0x0,0x0,0x0,0x44,0x2f,0x76,0x70,0x0,0x0,0x0,0x0,0x45,0x44,0x43,0x60,0x0, + 0x0,0x0,0x0,0x45,0xf3,0xa8,0xf0,0x0,0x0,0x0,0x0,0x47,0x2d,0x5f,0xe0,0x0, + 0x0,0x0,0x0,0x47,0xd3,0x8a,0xf0,0x0,0x0,0x0,0x0,0x49,0xd,0x41,0xe0,0x0, + 0x0,0x0,0x0,0x49,0xb3,0x6c,0xf0,0x0,0x0,0x0,0x0,0x4a,0xed,0x23,0xe0,0x0, + 0x0,0x0,0x0,0x4b,0x9c,0x89,0x70,0x0,0x0,0x0,0x0,0x4c,0xd6,0x40,0x60,0x0, + 0x0,0x0,0x0,0x4d,0x7c,0x6b,0x70,0x0,0x0,0x0,0x0,0x4e,0xb6,0x22,0x60,0x0, + 0x0,0x0,0x0,0x4f,0x5c,0x4d,0x70,0x0,0x0,0x0,0x0,0x50,0x96,0x4,0x60,0x0, + 0x0,0x0,0x0,0x51,0x3c,0x2f,0x70,0x0,0x0,0x0,0x0,0x52,0x75,0xe6,0x60,0x0, + 0x0,0x0,0x0,0x53,0x1c,0x11,0x70,0x0,0x0,0x0,0x0,0x54,0x55,0xc8,0x60,0x0, + 0x0,0x0,0x0,0x54,0xfb,0xf3,0x70,0x0,0x0,0x0,0x0,0x56,0x35,0xaa,0x60,0x0, + 0x0,0x0,0x0,0x56,0xe5,0xf,0xf0,0x0,0x0,0x0,0x0,0x58,0x1e,0xc6,0xe0,0x0, + 0x0,0x0,0x0,0x58,0xc4,0xf1,0xf0,0x0,0x0,0x0,0x0,0x59,0xfe,0xa8,0xe0,0x0, + 0x0,0x0,0x0,0x5a,0xa4,0xd3,0xf0,0x0,0x0,0x0,0x0,0x5b,0xde,0x8a,0xe0,0x0, + 0x0,0x0,0x0,0x5c,0x84,0xb5,0xf0,0x0,0x0,0x0,0x0,0x5d,0xbe,0x6c,0xe0,0x0, + 0x0,0x0,0x0,0x5e,0x64,0x97,0xf0,0x0,0x0,0x0,0x0,0x5f,0x9e,0x4e,0xe0,0x0, + 0x0,0x0,0x0,0x60,0x4d,0xb4,0x70,0x0,0x0,0x0,0x0,0x61,0x87,0x6b,0x60,0x0, + 0x0,0x0,0x0,0x62,0x2d,0x96,0x70,0x0,0x0,0x0,0x0,0x63,0x67,0x4d,0x60,0x0, + 0x0,0x0,0x0,0x64,0xd,0x78,0x70,0x0,0x0,0x0,0x0,0x65,0x47,0x2f,0x60,0x0, + 0x0,0x0,0x0,0x65,0xed,0x5a,0x70,0x0,0x0,0x0,0x0,0x67,0x27,0x11,0x60,0x0, + 0x0,0x0,0x0,0x67,0xcd,0x3c,0x70,0x0,0x0,0x0,0x0,0x69,0x6,0xf3,0x60,0x0, + 0x0,0x0,0x0,0x69,0xad,0x1e,0x70,0x0,0x0,0x0,0x0,0x6a,0xe6,0xd5,0x60,0x0, + 0x0,0x0,0x0,0x6b,0x96,0x3a,0xf0,0x0,0x0,0x0,0x0,0x6c,0xcf,0xf1,0xe0,0x0, + 0x0,0x0,0x0,0x6d,0x76,0x1c,0xf0,0x0,0x0,0x0,0x0,0x6e,0xaf,0xd3,0xe0,0x0, + 0x0,0x0,0x0,0x6f,0x55,0xfe,0xf0,0x0,0x0,0x0,0x0,0x70,0x8f,0xb5,0xe0,0x0, + 0x0,0x0,0x0,0x71,0x35,0xe0,0xf0,0x0,0x0,0x0,0x0,0x72,0x6f,0x97,0xe0,0x0, + 0x0,0x0,0x0,0x73,0x15,0xc2,0xf0,0x0,0x0,0x0,0x0,0x74,0x4f,0x79,0xe0,0x0, + 0x0,0x0,0x0,0x74,0xfe,0xdf,0x70,0x0,0x0,0x0,0x0,0x76,0x38,0x96,0x60,0x0, + 0x0,0x0,0x0,0x76,0xde,0xc1,0x70,0x0,0x0,0x0,0x0,0x78,0x18,0x78,0x60,0x0, + 0x0,0x0,0x0,0x78,0xbe,0xa3,0x70,0x0,0x0,0x0,0x0,0x79,0xf8,0x5a,0x60,0x0, + 0x0,0x0,0x0,0x7a,0x9e,0x85,0x70,0x0,0x0,0x0,0x0,0x7b,0xd8,0x3c,0x60,0x0, + 0x0,0x0,0x0,0x7c,0x7e,0x67,0x70,0x0,0x0,0x0,0x0,0x7d,0xb8,0x1e,0x60,0x0, + 0x0,0x0,0x0,0x7e,0x5e,0x49,0x70,0x0,0x0,0x0,0x0,0x7f,0x98,0x0,0x60,0x0, + 0x3,0x1,0x2,0x3,0x4,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3, + 0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3, + 0x5,0x3,0x5,0x3,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x8,0x9,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x0,0x0,0x0,0x0,0x0,0x0, + 0xff,0xff,0xd5,0xd0,0x1,0x4,0xff,0xff,0xd5,0xd0,0x1,0x8,0xff,0xff,0xc7,0xc0, + 0x0,0xc,0xff,0xff,0xe3,0xe0,0x1,0x10,0xff,0xff,0xd5,0xd0,0x1,0x15,0xff,0xff, + 0xc7,0xc0,0x1,0x19,0xff,0xff,0xb9,0xb0,0x0,0x1d,0xff,0xff,0xab,0xa0,0x0,0x21, + 0xff,0xff,0xb9,0xb0,0x1,0x25,0xff,0xff,0xc7,0xc0,0x1,0x19,0xff,0xff,0xb9,0xb0, + 0x0,0x1d,0x2d,0x30,0x30,0x0,0x41,0x57,0x54,0x0,0x41,0x50,0x54,0x0,0x41,0x53, + 0x54,0x0,0x41,0x44,0x44,0x54,0x0,0x41,0x44,0x54,0x0,0x45,0x44,0x54,0x0,0x45, + 0x53,0x54,0x0,0x43,0x53,0x54,0x0,0x43,0x44,0x54,0x0,0x0,0x0,0x1,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0xa,0x45,0x53,0x54,0x35,0x45,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32, + 0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Noronha + 0x0,0x0,0x2,0xe6, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x90,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x21,0x80,0x0,0x0,0x0,0xcb, - 0x89,0x44,0xd0,0xd2,0x23,0xf4,0x70,0xd2,0x61,0x50,0x40,0xfa,0xd2,0x55,0xb0,0xfe, - 0xb8,0x71,0x50,0xff,0xa8,0x54,0x40,0x0,0x98,0x53,0x50,0x1,0x88,0x36,0x40,0x2, - 0x78,0x35,0x50,0x3,0x71,0x52,0xc0,0x4,0x61,0x51,0xd0,0x5,0x51,0x34,0xc0,0x6, - 0x41,0x33,0xd0,0x7,0x31,0x16,0xc0,0x7,0x8d,0x6d,0xd0,0x9,0x10,0xf8,0xc0,0x9, - 0xad,0xe9,0x50,0xa,0xf0,0xda,0xc0,0xb,0xe0,0xd9,0xd0,0xc,0xd9,0xf7,0x40,0xd, - 0xc0,0xbb,0xd0,0xe,0xb9,0xd9,0x40,0xf,0xa9,0xd8,0x50,0x10,0x99,0xbb,0x40,0x11, - 0x89,0xba,0x50,0x12,0x79,0x9d,0x40,0x13,0x69,0x9c,0x50,0x14,0x59,0x7f,0x40,0x15, - 0x49,0x7e,0x50,0x16,0x39,0x61,0x40,0x17,0x29,0x60,0x50,0x18,0x22,0x7d,0xc0,0x19, - 0x9,0x42,0x50,0x1a,0x2,0x5f,0xc0,0x1a,0x2b,0x22,0x20,0x1a,0xf2,0x50,0xc0,0x1b, - 0xe2,0x33,0xb0,0x1c,0xd2,0x32,0xc0,0x1d,0xc2,0x15,0xb0,0x1e,0xb2,0x14,0xc0,0x1f, - 0xa1,0xf7,0xb0,0x20,0x76,0x47,0x40,0x21,0x81,0xd9,0xb0,0x22,0x56,0x29,0x40,0x23, - 0x6a,0xf6,0x30,0x24,0x36,0xb,0x40,0x25,0x4a,0xd8,0x30,0x26,0x15,0xed,0x40,0x27, - 0x2a,0xba,0x30,0x27,0xff,0x9,0xc0,0x29,0xa,0x9c,0x30,0x29,0xde,0xeb,0xc0,0x2a, - 0xea,0x7e,0x30,0x2b,0xbe,0xcd,0xc0,0x2c,0xd3,0x9a,0xb0,0x2d,0x9e,0xaf,0xc0,0x2e, - 0xb3,0x7c,0xb0,0x2f,0x7e,0x91,0xc0,0x30,0x93,0x5e,0xb0,0x31,0x67,0xae,0x40,0x32, - 0x73,0x40,0xb0,0x33,0x47,0x90,0x40,0x34,0x53,0x22,0xb0,0x35,0x27,0x72,0x40,0x36, - 0x33,0x4,0xb0,0x37,0x7,0x54,0x40,0x38,0x1c,0x21,0x30,0x38,0xe7,0x36,0x40,0x39, - 0xfc,0x3,0x30,0x3a,0xc7,0x18,0x40,0x3b,0xdb,0xe5,0x30,0x3c,0xb0,0x34,0xc0,0x3d, - 0xbb,0xc7,0x30,0x3e,0x90,0x16,0xc0,0x3f,0x9b,0xa9,0x30,0x40,0x6f,0xf8,0xc0,0x41, - 0x84,0xc5,0xb0,0x42,0x4f,0xda,0xc0,0x43,0x64,0xa7,0xb0,0x44,0x2f,0xbc,0xc0,0x45, - 0x44,0x89,0xb0,0x45,0xf3,0xef,0x40,0x47,0x2d,0xa6,0x30,0x47,0xd3,0xd1,0x40,0x49, - 0xd,0x88,0x30,0x49,0xb3,0xb3,0x40,0x4a,0xed,0x6a,0x30,0x4b,0x9c,0xcf,0xc0,0x4c, - 0xd6,0x86,0xb0,0x4d,0x7c,0xb1,0xc0,0x4e,0xb6,0x68,0xb0,0x4f,0x5c,0x93,0xc0,0x50, - 0x96,0x4a,0xb0,0x51,0x3c,0x75,0xc0,0x52,0x76,0x2c,0xb0,0x53,0x1c,0x57,0xc0,0x54, - 0x56,0xe,0xb0,0x54,0xfc,0x39,0xc0,0x56,0x35,0xf0,0xb0,0x56,0xe5,0x56,0x40,0x58, - 0x1f,0xd,0x30,0x58,0xc5,0x38,0x40,0x59,0xfe,0xef,0x30,0x5a,0xa5,0x1a,0x40,0x5b, - 0xde,0xd1,0x30,0x5c,0x84,0xfc,0x40,0x5d,0xbe,0xb3,0x30,0x5e,0x64,0xde,0x40,0x5f, - 0x9e,0x95,0x30,0x60,0x4d,0xfa,0xc0,0x61,0x87,0xb1,0xb0,0x62,0x2d,0xdc,0xc0,0x63, - 0x67,0x93,0xb0,0x64,0xd,0xbe,0xc0,0x65,0x47,0x75,0xb0,0x65,0xed,0xa0,0xc0,0x67, - 0x27,0x57,0xb0,0x67,0xcd,0x82,0xc0,0x69,0x7,0x39,0xb0,0x69,0xad,0x64,0xc0,0x6a, - 0xe7,0x1b,0xb0,0x6b,0x96,0x81,0x40,0x6c,0xd0,0x38,0x30,0x6d,0x76,0x63,0x40,0x6e, - 0xb0,0x1a,0x30,0x6f,0x56,0x45,0x40,0x70,0x8f,0xfc,0x30,0x71,0x36,0x27,0x40,0x72, - 0x6f,0xde,0x30,0x73,0x16,0x9,0x40,0x74,0x4f,0xc0,0x30,0x74,0xff,0x25,0xc0,0x76, - 0x38,0xdc,0xb0,0x76,0xdf,0x7,0xc0,0x78,0x18,0xbe,0xb0,0x78,0xbe,0xe9,0xc0,0x79, - 0xf8,0xa0,0xb0,0x7a,0x9e,0xcb,0xc0,0x7b,0xd8,0x82,0xb0,0x7c,0x7e,0xad,0xc0,0x7d, - 0xb8,0x64,0xb0,0x7e,0x5e,0x8f,0xc0,0x7f,0x98,0x46,0xb0,0x1,0x2,0x3,0x1,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x6,0x8,0x7, - 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, - 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, - 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, - 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, - 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, - 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, - 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0xff,0xff,0x5a,0x62,0x0, - 0x0,0xff,0xff,0x65,0x50,0x0,0x4,0xff,0xff,0x73,0x60,0x1,0x8,0xff,0xff,0x73, - 0x60,0x1,0xc,0xff,0xff,0x65,0x50,0x0,0x10,0xff,0xff,0x73,0x60,0x1,0x14,0xff, - 0xff,0x73,0x60,0x0,0x18,0xff,0xff,0x81,0x70,0x1,0x1d,0xff,0xff,0x73,0x60,0x0, - 0x19,0x4c,0x4d,0x54,0x0,0x4e,0x53,0x54,0x0,0x4e,0x57,0x54,0x0,0x4e,0x50,0x54, - 0x0,0x42,0x53,0x54,0x0,0x42,0x44,0x54,0x0,0x41,0x48,0x53,0x54,0x0,0x48,0x44, - 0x54,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0, - 0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0xa, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x21, - 0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x3f,0xc0,0xf9,0x1f, - 0xff,0xff,0xff,0xff,0x7d,0x87,0x5a,0x5e,0xff,0xff,0xff,0xff,0xcb,0x89,0x44,0xd0, - 0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x61,0x50,0x40, - 0xff,0xff,0xff,0xff,0xfa,0xd2,0x55,0xb0,0xff,0xff,0xff,0xff,0xfe,0xb8,0x71,0x50, - 0xff,0xff,0xff,0xff,0xff,0xa8,0x54,0x40,0x0,0x0,0x0,0x0,0x0,0x98,0x53,0x50, - 0x0,0x0,0x0,0x0,0x1,0x88,0x36,0x40,0x0,0x0,0x0,0x0,0x2,0x78,0x35,0x50, - 0x0,0x0,0x0,0x0,0x3,0x71,0x52,0xc0,0x0,0x0,0x0,0x0,0x4,0x61,0x51,0xd0, - 0x0,0x0,0x0,0x0,0x5,0x51,0x34,0xc0,0x0,0x0,0x0,0x0,0x6,0x41,0x33,0xd0, - 0x0,0x0,0x0,0x0,0x7,0x31,0x16,0xc0,0x0,0x0,0x0,0x0,0x7,0x8d,0x6d,0xd0, - 0x0,0x0,0x0,0x0,0x9,0x10,0xf8,0xc0,0x0,0x0,0x0,0x0,0x9,0xad,0xe9,0x50, - 0x0,0x0,0x0,0x0,0xa,0xf0,0xda,0xc0,0x0,0x0,0x0,0x0,0xb,0xe0,0xd9,0xd0, - 0x0,0x0,0x0,0x0,0xc,0xd9,0xf7,0x40,0x0,0x0,0x0,0x0,0xd,0xc0,0xbb,0xd0, - 0x0,0x0,0x0,0x0,0xe,0xb9,0xd9,0x40,0x0,0x0,0x0,0x0,0xf,0xa9,0xd8,0x50, - 0x0,0x0,0x0,0x0,0x10,0x99,0xbb,0x40,0x0,0x0,0x0,0x0,0x11,0x89,0xba,0x50, - 0x0,0x0,0x0,0x0,0x12,0x79,0x9d,0x40,0x0,0x0,0x0,0x0,0x13,0x69,0x9c,0x50, - 0x0,0x0,0x0,0x0,0x14,0x59,0x7f,0x40,0x0,0x0,0x0,0x0,0x15,0x49,0x7e,0x50, - 0x0,0x0,0x0,0x0,0x16,0x39,0x61,0x40,0x0,0x0,0x0,0x0,0x17,0x29,0x60,0x50, - 0x0,0x0,0x0,0x0,0x18,0x22,0x7d,0xc0,0x0,0x0,0x0,0x0,0x19,0x9,0x42,0x50, - 0x0,0x0,0x0,0x0,0x1a,0x2,0x5f,0xc0,0x0,0x0,0x0,0x0,0x1a,0x2b,0x22,0x20, - 0x0,0x0,0x0,0x0,0x1a,0xf2,0x50,0xc0,0x0,0x0,0x0,0x0,0x1b,0xe2,0x33,0xb0, - 0x0,0x0,0x0,0x0,0x1c,0xd2,0x32,0xc0,0x0,0x0,0x0,0x0,0x1d,0xc2,0x15,0xb0, - 0x0,0x0,0x0,0x0,0x1e,0xb2,0x14,0xc0,0x0,0x0,0x0,0x0,0x1f,0xa1,0xf7,0xb0, - 0x0,0x0,0x0,0x0,0x20,0x76,0x47,0x40,0x0,0x0,0x0,0x0,0x21,0x81,0xd9,0xb0, - 0x0,0x0,0x0,0x0,0x22,0x56,0x29,0x40,0x0,0x0,0x0,0x0,0x23,0x6a,0xf6,0x30, - 0x0,0x0,0x0,0x0,0x24,0x36,0xb,0x40,0x0,0x0,0x0,0x0,0x25,0x4a,0xd8,0x30, - 0x0,0x0,0x0,0x0,0x26,0x15,0xed,0x40,0x0,0x0,0x0,0x0,0x27,0x2a,0xba,0x30, - 0x0,0x0,0x0,0x0,0x27,0xff,0x9,0xc0,0x0,0x0,0x0,0x0,0x29,0xa,0x9c,0x30, - 0x0,0x0,0x0,0x0,0x29,0xde,0xeb,0xc0,0x0,0x0,0x0,0x0,0x2a,0xea,0x7e,0x30, - 0x0,0x0,0x0,0x0,0x2b,0xbe,0xcd,0xc0,0x0,0x0,0x0,0x0,0x2c,0xd3,0x9a,0xb0, - 0x0,0x0,0x0,0x0,0x2d,0x9e,0xaf,0xc0,0x0,0x0,0x0,0x0,0x2e,0xb3,0x7c,0xb0, - 0x0,0x0,0x0,0x0,0x2f,0x7e,0x91,0xc0,0x0,0x0,0x0,0x0,0x30,0x93,0x5e,0xb0, - 0x0,0x0,0x0,0x0,0x31,0x67,0xae,0x40,0x0,0x0,0x0,0x0,0x32,0x73,0x40,0xb0, - 0x0,0x0,0x0,0x0,0x33,0x47,0x90,0x40,0x0,0x0,0x0,0x0,0x34,0x53,0x22,0xb0, - 0x0,0x0,0x0,0x0,0x35,0x27,0x72,0x40,0x0,0x0,0x0,0x0,0x36,0x33,0x4,0xb0, - 0x0,0x0,0x0,0x0,0x37,0x7,0x54,0x40,0x0,0x0,0x0,0x0,0x38,0x1c,0x21,0x30, - 0x0,0x0,0x0,0x0,0x38,0xe7,0x36,0x40,0x0,0x0,0x0,0x0,0x39,0xfc,0x3,0x30, - 0x0,0x0,0x0,0x0,0x3a,0xc7,0x18,0x40,0x0,0x0,0x0,0x0,0x3b,0xdb,0xe5,0x30, - 0x0,0x0,0x0,0x0,0x3c,0xb0,0x34,0xc0,0x0,0x0,0x0,0x0,0x3d,0xbb,0xc7,0x30, - 0x0,0x0,0x0,0x0,0x3e,0x90,0x16,0xc0,0x0,0x0,0x0,0x0,0x3f,0x9b,0xa9,0x30, - 0x0,0x0,0x0,0x0,0x40,0x6f,0xf8,0xc0,0x0,0x0,0x0,0x0,0x41,0x84,0xc5,0xb0, - 0x0,0x0,0x0,0x0,0x42,0x4f,0xda,0xc0,0x0,0x0,0x0,0x0,0x43,0x64,0xa7,0xb0, - 0x0,0x0,0x0,0x0,0x44,0x2f,0xbc,0xc0,0x0,0x0,0x0,0x0,0x45,0x44,0x89,0xb0, - 0x0,0x0,0x0,0x0,0x45,0xf3,0xef,0x40,0x0,0x0,0x0,0x0,0x47,0x2d,0xa6,0x30, - 0x0,0x0,0x0,0x0,0x47,0xd3,0xd1,0x40,0x0,0x0,0x0,0x0,0x49,0xd,0x88,0x30, - 0x0,0x0,0x0,0x0,0x49,0xb3,0xb3,0x40,0x0,0x0,0x0,0x0,0x4a,0xed,0x6a,0x30, - 0x0,0x0,0x0,0x0,0x4b,0x9c,0xcf,0xc0,0x0,0x0,0x0,0x0,0x4c,0xd6,0x86,0xb0, - 0x0,0x0,0x0,0x0,0x4d,0x7c,0xb1,0xc0,0x0,0x0,0x0,0x0,0x4e,0xb6,0x68,0xb0, - 0x0,0x0,0x0,0x0,0x4f,0x5c,0x93,0xc0,0x0,0x0,0x0,0x0,0x50,0x96,0x4a,0xb0, - 0x0,0x0,0x0,0x0,0x51,0x3c,0x75,0xc0,0x0,0x0,0x0,0x0,0x52,0x76,0x2c,0xb0, - 0x0,0x0,0x0,0x0,0x53,0x1c,0x57,0xc0,0x0,0x0,0x0,0x0,0x54,0x56,0xe,0xb0, - 0x0,0x0,0x0,0x0,0x54,0xfc,0x39,0xc0,0x0,0x0,0x0,0x0,0x56,0x35,0xf0,0xb0, - 0x0,0x0,0x0,0x0,0x56,0xe5,0x56,0x40,0x0,0x0,0x0,0x0,0x58,0x1f,0xd,0x30, - 0x0,0x0,0x0,0x0,0x58,0xc5,0x38,0x40,0x0,0x0,0x0,0x0,0x59,0xfe,0xef,0x30, - 0x0,0x0,0x0,0x0,0x5a,0xa5,0x1a,0x40,0x0,0x0,0x0,0x0,0x5b,0xde,0xd1,0x30, - 0x0,0x0,0x0,0x0,0x5c,0x84,0xfc,0x40,0x0,0x0,0x0,0x0,0x5d,0xbe,0xb3,0x30, - 0x0,0x0,0x0,0x0,0x5e,0x64,0xde,0x40,0x0,0x0,0x0,0x0,0x5f,0x9e,0x95,0x30, - 0x0,0x0,0x0,0x0,0x60,0x4d,0xfa,0xc0,0x0,0x0,0x0,0x0,0x61,0x87,0xb1,0xb0, - 0x0,0x0,0x0,0x0,0x62,0x2d,0xdc,0xc0,0x0,0x0,0x0,0x0,0x63,0x67,0x93,0xb0, - 0x0,0x0,0x0,0x0,0x64,0xd,0xbe,0xc0,0x0,0x0,0x0,0x0,0x65,0x47,0x75,0xb0, - 0x0,0x0,0x0,0x0,0x65,0xed,0xa0,0xc0,0x0,0x0,0x0,0x0,0x67,0x27,0x57,0xb0, - 0x0,0x0,0x0,0x0,0x67,0xcd,0x82,0xc0,0x0,0x0,0x0,0x0,0x69,0x7,0x39,0xb0, - 0x0,0x0,0x0,0x0,0x69,0xad,0x64,0xc0,0x0,0x0,0x0,0x0,0x6a,0xe7,0x1b,0xb0, - 0x0,0x0,0x0,0x0,0x6b,0x96,0x81,0x40,0x0,0x0,0x0,0x0,0x6c,0xd0,0x38,0x30, - 0x0,0x0,0x0,0x0,0x6d,0x76,0x63,0x40,0x0,0x0,0x0,0x0,0x6e,0xb0,0x1a,0x30, - 0x0,0x0,0x0,0x0,0x6f,0x56,0x45,0x40,0x0,0x0,0x0,0x0,0x70,0x8f,0xfc,0x30, - 0x0,0x0,0x0,0x0,0x71,0x36,0x27,0x40,0x0,0x0,0x0,0x0,0x72,0x6f,0xde,0x30, - 0x0,0x0,0x0,0x0,0x73,0x16,0x9,0x40,0x0,0x0,0x0,0x0,0x74,0x4f,0xc0,0x30, - 0x0,0x0,0x0,0x0,0x74,0xff,0x25,0xc0,0x0,0x0,0x0,0x0,0x76,0x38,0xdc,0xb0, - 0x0,0x0,0x0,0x0,0x76,0xdf,0x7,0xc0,0x0,0x0,0x0,0x0,0x78,0x18,0xbe,0xb0, - 0x0,0x0,0x0,0x0,0x78,0xbe,0xe9,0xc0,0x0,0x0,0x0,0x0,0x79,0xf8,0xa0,0xb0, - 0x0,0x0,0x0,0x0,0x7a,0x9e,0xcb,0xc0,0x0,0x0,0x0,0x0,0x7b,0xd8,0x82,0xb0, - 0x0,0x0,0x0,0x0,0x7c,0x7e,0xad,0xc0,0x0,0x0,0x0,0x0,0x7d,0xb8,0x64,0xb0, - 0x0,0x0,0x0,0x0,0x7e,0x5e,0x8f,0xc0,0x0,0x0,0x0,0x0,0x7f,0x98,0x46,0xb0, - 0x0,0x1,0x2,0x3,0x4,0x2,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x7,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, - 0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, - 0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, - 0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, - 0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, - 0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, - 0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, - 0x8,0x9,0x0,0x0,0xab,0xe1,0x0,0x0,0xff,0xff,0x5a,0x62,0x0,0x0,0xff,0xff, - 0x65,0x50,0x0,0x4,0xff,0xff,0x73,0x60,0x1,0x8,0xff,0xff,0x73,0x60,0x1,0xc, - 0xff,0xff,0x65,0x50,0x0,0x10,0xff,0xff,0x73,0x60,0x1,0x14,0xff,0xff,0x73,0x60, - 0x0,0x18,0xff,0xff,0x81,0x70,0x1,0x1d,0xff,0xff,0x73,0x60,0x0,0x19,0x4c,0x4d, - 0x54,0x0,0x4e,0x53,0x54,0x0,0x4e,0x57,0x54,0x0,0x4e,0x50,0x54,0x0,0x42,0x53, - 0x54,0x0,0x42,0x44,0x54,0x0,0x41,0x48,0x53,0x54,0x0,0x48,0x44,0x54,0x0,0x0, - 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0, - 0x0,0x0,0x0,0xa,0x48,0x53,0x54,0x31,0x30,0x48,0x44,0x54,0x2c,0x4d,0x33,0x2e, - 0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Aruba - 0x0,0x0,0x0,0xd0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x29,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0x96, + 0xaa,0x65,0x64,0xb8,0xf,0x3b,0xd0,0xb8,0xfd,0x32,0x90,0xb9,0xf1,0x26,0x20,0xba, + 0xde,0x66,0x10,0xda,0x38,0xa0,0x20,0xda,0xeb,0xec,0x20,0xdc,0x19,0xd3,0xa0,0xdc, + 0xb9,0x4b,0x10,0xdd,0xfb,0x7,0x20,0xde,0x9b,0xd0,0x10,0xdf,0xdd,0x8c,0x20,0xe0, + 0x54,0x25,0x10,0xf4,0x97,0xf1,0xa0,0xf5,0x5,0x50,0x10,0xf6,0xc0,0x56,0x20,0xf7, + 0xe,0x10,0x90,0xf8,0x51,0x1e,0x20,0xf8,0xc7,0xb7,0x10,0xfa,0xa,0xc4,0xa0,0xfa, + 0xa8,0xea,0x90,0xfb,0xeb,0xf8,0x20,0xfc,0x8b,0x6f,0x90,0x1d,0xc9,0x80,0x20,0x1e, + 0x78,0xc9,0x90,0x1f,0xa0,0x27,0xa0,0x20,0x33,0xc1,0x90,0x21,0x81,0x5b,0x20,0x22, + 0xb,0xba,0x90,0x23,0x58,0x2,0xa0,0x23,0xe2,0x62,0x10,0x25,0x37,0xe4,0xa0,0x25, + 0xd4,0xb9,0x10,0x37,0xf6,0xb8,0xa0,0x38,0xb8,0x77,0x10,0x39,0xdf,0xd5,0x20,0x39, + 0xe9,0x1,0x90,0x3b,0xc8,0xf1,0xa0,0x3c,0x6f,0x0,0x90,0x7f,0xff,0xff,0xff,0x0, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x2,0xff,0xff,0xe1,0x9c,0x0,0x0,0xff,0xff, + 0xf1,0xf0,0x1,0x4,0xff,0xff,0xe3,0xe0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x2d,0x30, + 0x31,0x0,0x2d,0x30,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66, + 0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x29, + 0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0x96,0xaa,0x65,0x64,0xff,0xff,0xff,0xff,0xb8,0xf,0x3b,0xd0, + 0xff,0xff,0xff,0xff,0xb8,0xfd,0x32,0x90,0xff,0xff,0xff,0xff,0xb9,0xf1,0x26,0x20, + 0xff,0xff,0xff,0xff,0xba,0xde,0x66,0x10,0xff,0xff,0xff,0xff,0xda,0x38,0xa0,0x20, + 0xff,0xff,0xff,0xff,0xda,0xeb,0xec,0x20,0xff,0xff,0xff,0xff,0xdc,0x19,0xd3,0xa0, + 0xff,0xff,0xff,0xff,0xdc,0xb9,0x4b,0x10,0xff,0xff,0xff,0xff,0xdd,0xfb,0x7,0x20, + 0xff,0xff,0xff,0xff,0xde,0x9b,0xd0,0x10,0xff,0xff,0xff,0xff,0xdf,0xdd,0x8c,0x20, + 0xff,0xff,0xff,0xff,0xe0,0x54,0x25,0x10,0xff,0xff,0xff,0xff,0xf4,0x97,0xf1,0xa0, + 0xff,0xff,0xff,0xff,0xf5,0x5,0x50,0x10,0xff,0xff,0xff,0xff,0xf6,0xc0,0x56,0x20, + 0xff,0xff,0xff,0xff,0xf7,0xe,0x10,0x90,0xff,0xff,0xff,0xff,0xf8,0x51,0x1e,0x20, + 0xff,0xff,0xff,0xff,0xf8,0xc7,0xb7,0x10,0xff,0xff,0xff,0xff,0xfa,0xa,0xc4,0xa0, + 0xff,0xff,0xff,0xff,0xfa,0xa8,0xea,0x90,0xff,0xff,0xff,0xff,0xfb,0xeb,0xf8,0x20, + 0xff,0xff,0xff,0xff,0xfc,0x8b,0x6f,0x90,0x0,0x0,0x0,0x0,0x1d,0xc9,0x80,0x20, + 0x0,0x0,0x0,0x0,0x1e,0x78,0xc9,0x90,0x0,0x0,0x0,0x0,0x1f,0xa0,0x27,0xa0, + 0x0,0x0,0x0,0x0,0x20,0x33,0xc1,0x90,0x0,0x0,0x0,0x0,0x21,0x81,0x5b,0x20, + 0x0,0x0,0x0,0x0,0x22,0xb,0xba,0x90,0x0,0x0,0x0,0x0,0x23,0x58,0x2,0xa0, + 0x0,0x0,0x0,0x0,0x23,0xe2,0x62,0x10,0x0,0x0,0x0,0x0,0x25,0x37,0xe4,0xa0, + 0x0,0x0,0x0,0x0,0x25,0xd4,0xb9,0x10,0x0,0x0,0x0,0x0,0x37,0xf6,0xb8,0xa0, + 0x0,0x0,0x0,0x0,0x38,0xb8,0x77,0x10,0x0,0x0,0x0,0x0,0x39,0xdf,0xd5,0x20, + 0x0,0x0,0x0,0x0,0x39,0xe9,0x1,0x90,0x0,0x0,0x0,0x0,0x3b,0xc8,0xf1,0xa0, + 0x0,0x0,0x0,0x0,0x3c,0x6f,0x0,0x90,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff, + 0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x2,0xff,0xff,0xe1,0x9c,0x0,0x0,0xff, + 0xff,0xf1,0xf0,0x1,0x4,0xff,0xff,0xe3,0xe0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x2d, + 0x30,0x31,0x0,0x2d,0x30,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2d, + 0x30,0x32,0x3e,0x32,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Jamaica + 0x0,0x0,0x1,0xfb, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0x93, - 0x1e,0x2e,0x23,0xf6,0x98,0xec,0x48,0x0,0x1,0x2,0xff,0xff,0xbf,0x5d,0x0,0x0, - 0xff,0xff,0xc0,0xb8,0x0,0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0x4c,0x4d,0x54,0x0, - 0x41,0x4e,0x54,0x0,0x41,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a, - 0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0xf8,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xff,0xff,0xff,0xff,0x93,0x1e,0x2e,0x23,0xff,0xff,0xff,0xff,0xf6,0x98, - 0xec,0x48,0x0,0x1,0x2,0xff,0xff,0xbf,0x5d,0x0,0x0,0xff,0xff,0xc0,0xb8,0x0, - 0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x41,0x4e,0x54,0x0,0x41, - 0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x41,0x53,0x54,0x34,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Adak - 0x0,0x0,0x9,0x3d, + 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x16,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x10,0x80,0x0,0x0,0x0,0x93, + 0xf,0xb4,0xff,0x7,0x8d,0x19,0x70,0x9,0x10,0xa4,0x60,0x9,0xad,0x94,0xf0,0xa, + 0xf0,0x86,0x60,0xb,0xe0,0x85,0x70,0xc,0xd9,0xa2,0xe0,0xd,0xc0,0x67,0x70,0xe, + 0xb9,0x84,0xe0,0xf,0xa9,0x83,0xf0,0x10,0x99,0x66,0xe0,0x11,0x89,0x65,0xf0,0x12, + 0x79,0x48,0xe0,0x13,0x69,0x47,0xf0,0x14,0x59,0x2a,0xe0,0x15,0x49,0x29,0xf0,0x16, + 0x39,0xc,0xe0,0x17,0x29,0xb,0xf0,0x18,0x22,0x29,0x60,0x19,0x8,0xed,0xf0,0x1a, + 0x2,0xb,0x60,0x1,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0xff,0xff,0xb8,0x1,0x0,0x0,0xff, + 0xff,0xb8,0x1,0x0,0x4,0xff,0xff,0xb9,0xb0,0x0,0x8,0xff,0xff,0xc7,0xc0,0x1, + 0xc,0x4c,0x4d,0x54,0x0,0x4b,0x4d,0x54,0x0,0x45,0x53,0x54,0x0,0x45,0x44,0x54, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x17,0x0,0x0,0x0, + 0x4,0x0,0x0,0x0,0x10,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff, + 0xff,0x69,0x87,0x23,0x7f,0xff,0xff,0xff,0xff,0x93,0xf,0xb4,0xff,0x0,0x0,0x0, + 0x0,0x7,0x8d,0x19,0x70,0x0,0x0,0x0,0x0,0x9,0x10,0xa4,0x60,0x0,0x0,0x0, + 0x0,0x9,0xad,0x94,0xf0,0x0,0x0,0x0,0x0,0xa,0xf0,0x86,0x60,0x0,0x0,0x0, + 0x0,0xb,0xe0,0x85,0x70,0x0,0x0,0x0,0x0,0xc,0xd9,0xa2,0xe0,0x0,0x0,0x0, + 0x0,0xd,0xc0,0x67,0x70,0x0,0x0,0x0,0x0,0xe,0xb9,0x84,0xe0,0x0,0x0,0x0, + 0x0,0xf,0xa9,0x83,0xf0,0x0,0x0,0x0,0x0,0x10,0x99,0x66,0xe0,0x0,0x0,0x0, + 0x0,0x11,0x89,0x65,0xf0,0x0,0x0,0x0,0x0,0x12,0x79,0x48,0xe0,0x0,0x0,0x0, + 0x0,0x13,0x69,0x47,0xf0,0x0,0x0,0x0,0x0,0x14,0x59,0x2a,0xe0,0x0,0x0,0x0, + 0x0,0x15,0x49,0x29,0xf0,0x0,0x0,0x0,0x0,0x16,0x39,0xc,0xe0,0x0,0x0,0x0, + 0x0,0x17,0x29,0xb,0xf0,0x0,0x0,0x0,0x0,0x18,0x22,0x29,0x60,0x0,0x0,0x0, + 0x0,0x19,0x8,0xed,0xf0,0x0,0x0,0x0,0x0,0x1a,0x2,0xb,0x60,0x0,0x1,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0xff,0xff,0xb8,0x1,0x0,0x0,0xff,0xff,0xb8,0x1,0x0,0x4, + 0xff,0xff,0xb9,0xb0,0x0,0x8,0xff,0xff,0xc7,0xc0,0x1,0xc,0x4c,0x4d,0x54,0x0, + 0x4b,0x4d,0x54,0x0,0x45,0x53,0x54,0x0,0x45,0x44,0x54,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xa,0x45,0x53,0x54,0x35,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Thunder_Bay + 0x0,0x0,0x8,0xa3, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x90,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x21,0x80,0x0,0x0,0x0,0xcb, - 0x89,0x44,0xd0,0xd2,0x23,0xf4,0x70,0xd2,0x61,0x50,0x40,0xfa,0xd2,0x55,0xb0,0xfe, - 0xb8,0x71,0x50,0xff,0xa8,0x54,0x40,0x0,0x98,0x53,0x50,0x1,0x88,0x36,0x40,0x2, - 0x78,0x35,0x50,0x3,0x71,0x52,0xc0,0x4,0x61,0x51,0xd0,0x5,0x51,0x34,0xc0,0x6, - 0x41,0x33,0xd0,0x7,0x31,0x16,0xc0,0x7,0x8d,0x6d,0xd0,0x9,0x10,0xf8,0xc0,0x9, - 0xad,0xe9,0x50,0xa,0xf0,0xda,0xc0,0xb,0xe0,0xd9,0xd0,0xc,0xd9,0xf7,0x40,0xd, - 0xc0,0xbb,0xd0,0xe,0xb9,0xd9,0x40,0xf,0xa9,0xd8,0x50,0x10,0x99,0xbb,0x40,0x11, - 0x89,0xba,0x50,0x12,0x79,0x9d,0x40,0x13,0x69,0x9c,0x50,0x14,0x59,0x7f,0x40,0x15, - 0x49,0x7e,0x50,0x16,0x39,0x61,0x40,0x17,0x29,0x60,0x50,0x18,0x22,0x7d,0xc0,0x19, - 0x9,0x42,0x50,0x1a,0x2,0x5f,0xc0,0x1a,0x2b,0x22,0x20,0x1a,0xf2,0x50,0xc0,0x1b, - 0xe2,0x33,0xb0,0x1c,0xd2,0x32,0xc0,0x1d,0xc2,0x15,0xb0,0x1e,0xb2,0x14,0xc0,0x1f, - 0xa1,0xf7,0xb0,0x20,0x76,0x47,0x40,0x21,0x81,0xd9,0xb0,0x22,0x56,0x29,0x40,0x23, - 0x6a,0xf6,0x30,0x24,0x36,0xb,0x40,0x25,0x4a,0xd8,0x30,0x26,0x15,0xed,0x40,0x27, - 0x2a,0xba,0x30,0x27,0xff,0x9,0xc0,0x29,0xa,0x9c,0x30,0x29,0xde,0xeb,0xc0,0x2a, - 0xea,0x7e,0x30,0x2b,0xbe,0xcd,0xc0,0x2c,0xd3,0x9a,0xb0,0x2d,0x9e,0xaf,0xc0,0x2e, - 0xb3,0x7c,0xb0,0x2f,0x7e,0x91,0xc0,0x30,0x93,0x5e,0xb0,0x31,0x67,0xae,0x40,0x32, - 0x73,0x40,0xb0,0x33,0x47,0x90,0x40,0x34,0x53,0x22,0xb0,0x35,0x27,0x72,0x40,0x36, - 0x33,0x4,0xb0,0x37,0x7,0x54,0x40,0x38,0x1c,0x21,0x30,0x38,0xe7,0x36,0x40,0x39, - 0xfc,0x3,0x30,0x3a,0xc7,0x18,0x40,0x3b,0xdb,0xe5,0x30,0x3c,0xb0,0x34,0xc0,0x3d, - 0xbb,0xc7,0x30,0x3e,0x90,0x16,0xc0,0x3f,0x9b,0xa9,0x30,0x40,0x6f,0xf8,0xc0,0x41, - 0x84,0xc5,0xb0,0x42,0x4f,0xda,0xc0,0x43,0x64,0xa7,0xb0,0x44,0x2f,0xbc,0xc0,0x45, - 0x44,0x89,0xb0,0x45,0xf3,0xef,0x40,0x47,0x2d,0xa6,0x30,0x47,0xd3,0xd1,0x40,0x49, - 0xd,0x88,0x30,0x49,0xb3,0xb3,0x40,0x4a,0xed,0x6a,0x30,0x4b,0x9c,0xcf,0xc0,0x4c, - 0xd6,0x86,0xb0,0x4d,0x7c,0xb1,0xc0,0x4e,0xb6,0x68,0xb0,0x4f,0x5c,0x93,0xc0,0x50, - 0x96,0x4a,0xb0,0x51,0x3c,0x75,0xc0,0x52,0x76,0x2c,0xb0,0x53,0x1c,0x57,0xc0,0x54, - 0x56,0xe,0xb0,0x54,0xfc,0x39,0xc0,0x56,0x35,0xf0,0xb0,0x56,0xe5,0x56,0x40,0x58, - 0x1f,0xd,0x30,0x58,0xc5,0x38,0x40,0x59,0xfe,0xef,0x30,0x5a,0xa5,0x1a,0x40,0x5b, - 0xde,0xd1,0x30,0x5c,0x84,0xfc,0x40,0x5d,0xbe,0xb3,0x30,0x5e,0x64,0xde,0x40,0x5f, - 0x9e,0x95,0x30,0x60,0x4d,0xfa,0xc0,0x61,0x87,0xb1,0xb0,0x62,0x2d,0xdc,0xc0,0x63, - 0x67,0x93,0xb0,0x64,0xd,0xbe,0xc0,0x65,0x47,0x75,0xb0,0x65,0xed,0xa0,0xc0,0x67, - 0x27,0x57,0xb0,0x67,0xcd,0x82,0xc0,0x69,0x7,0x39,0xb0,0x69,0xad,0x64,0xc0,0x6a, - 0xe7,0x1b,0xb0,0x6b,0x96,0x81,0x40,0x6c,0xd0,0x38,0x30,0x6d,0x76,0x63,0x40,0x6e, - 0xb0,0x1a,0x30,0x6f,0x56,0x45,0x40,0x70,0x8f,0xfc,0x30,0x71,0x36,0x27,0x40,0x72, - 0x6f,0xde,0x30,0x73,0x16,0x9,0x40,0x74,0x4f,0xc0,0x30,0x74,0xff,0x25,0xc0,0x76, - 0x38,0xdc,0xb0,0x76,0xdf,0x7,0xc0,0x78,0x18,0xbe,0xb0,0x78,0xbe,0xe9,0xc0,0x79, - 0xf8,0xa0,0xb0,0x7a,0x9e,0xcb,0xc0,0x7b,0xd8,0x82,0xb0,0x7c,0x7e,0xad,0xc0,0x7d, - 0xb8,0x64,0xb0,0x7e,0x5e,0x8f,0xc0,0x7f,0x98,0x46,0xb0,0x1,0x2,0x3,0x1,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x6,0x8,0x7, - 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, - 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, - 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, - 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, - 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, - 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, - 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0xff,0xff,0x5a,0x62,0x0, - 0x0,0xff,0xff,0x65,0x50,0x0,0x4,0xff,0xff,0x73,0x60,0x1,0x8,0xff,0xff,0x73, - 0x60,0x1,0xc,0xff,0xff,0x65,0x50,0x0,0x10,0xff,0xff,0x73,0x60,0x1,0x14,0xff, - 0xff,0x73,0x60,0x0,0x18,0xff,0xff,0x81,0x70,0x1,0x1d,0xff,0xff,0x73,0x60,0x0, - 0x19,0x4c,0x4d,0x54,0x0,0x4e,0x53,0x54,0x0,0x4e,0x57,0x54,0x0,0x4e,0x50,0x54, - 0x0,0x42,0x53,0x54,0x0,0x42,0x44,0x54,0x0,0x41,0x48,0x53,0x54,0x0,0x48,0x44, - 0x54,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0, - 0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0xa, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x21, - 0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x3f,0xc0,0xf9,0x1f, - 0xff,0xff,0xff,0xff,0x7d,0x87,0x5a,0x5e,0xff,0xff,0xff,0xff,0xcb,0x89,0x44,0xd0, - 0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x61,0x50,0x40, - 0xff,0xff,0xff,0xff,0xfa,0xd2,0x55,0xb0,0xff,0xff,0xff,0xff,0xfe,0xb8,0x71,0x50, - 0xff,0xff,0xff,0xff,0xff,0xa8,0x54,0x40,0x0,0x0,0x0,0x0,0x0,0x98,0x53,0x50, - 0x0,0x0,0x0,0x0,0x1,0x88,0x36,0x40,0x0,0x0,0x0,0x0,0x2,0x78,0x35,0x50, - 0x0,0x0,0x0,0x0,0x3,0x71,0x52,0xc0,0x0,0x0,0x0,0x0,0x4,0x61,0x51,0xd0, - 0x0,0x0,0x0,0x0,0x5,0x51,0x34,0xc0,0x0,0x0,0x0,0x0,0x6,0x41,0x33,0xd0, - 0x0,0x0,0x0,0x0,0x7,0x31,0x16,0xc0,0x0,0x0,0x0,0x0,0x7,0x8d,0x6d,0xd0, - 0x0,0x0,0x0,0x0,0x9,0x10,0xf8,0xc0,0x0,0x0,0x0,0x0,0x9,0xad,0xe9,0x50, - 0x0,0x0,0x0,0x0,0xa,0xf0,0xda,0xc0,0x0,0x0,0x0,0x0,0xb,0xe0,0xd9,0xd0, - 0x0,0x0,0x0,0x0,0xc,0xd9,0xf7,0x40,0x0,0x0,0x0,0x0,0xd,0xc0,0xbb,0xd0, - 0x0,0x0,0x0,0x0,0xe,0xb9,0xd9,0x40,0x0,0x0,0x0,0x0,0xf,0xa9,0xd8,0x50, - 0x0,0x0,0x0,0x0,0x10,0x99,0xbb,0x40,0x0,0x0,0x0,0x0,0x11,0x89,0xba,0x50, - 0x0,0x0,0x0,0x0,0x12,0x79,0x9d,0x40,0x0,0x0,0x0,0x0,0x13,0x69,0x9c,0x50, - 0x0,0x0,0x0,0x0,0x14,0x59,0x7f,0x40,0x0,0x0,0x0,0x0,0x15,0x49,0x7e,0x50, - 0x0,0x0,0x0,0x0,0x16,0x39,0x61,0x40,0x0,0x0,0x0,0x0,0x17,0x29,0x60,0x50, - 0x0,0x0,0x0,0x0,0x18,0x22,0x7d,0xc0,0x0,0x0,0x0,0x0,0x19,0x9,0x42,0x50, - 0x0,0x0,0x0,0x0,0x1a,0x2,0x5f,0xc0,0x0,0x0,0x0,0x0,0x1a,0x2b,0x22,0x20, - 0x0,0x0,0x0,0x0,0x1a,0xf2,0x50,0xc0,0x0,0x0,0x0,0x0,0x1b,0xe2,0x33,0xb0, - 0x0,0x0,0x0,0x0,0x1c,0xd2,0x32,0xc0,0x0,0x0,0x0,0x0,0x1d,0xc2,0x15,0xb0, - 0x0,0x0,0x0,0x0,0x1e,0xb2,0x14,0xc0,0x0,0x0,0x0,0x0,0x1f,0xa1,0xf7,0xb0, - 0x0,0x0,0x0,0x0,0x20,0x76,0x47,0x40,0x0,0x0,0x0,0x0,0x21,0x81,0xd9,0xb0, - 0x0,0x0,0x0,0x0,0x22,0x56,0x29,0x40,0x0,0x0,0x0,0x0,0x23,0x6a,0xf6,0x30, - 0x0,0x0,0x0,0x0,0x24,0x36,0xb,0x40,0x0,0x0,0x0,0x0,0x25,0x4a,0xd8,0x30, - 0x0,0x0,0x0,0x0,0x26,0x15,0xed,0x40,0x0,0x0,0x0,0x0,0x27,0x2a,0xba,0x30, - 0x0,0x0,0x0,0x0,0x27,0xff,0x9,0xc0,0x0,0x0,0x0,0x0,0x29,0xa,0x9c,0x30, - 0x0,0x0,0x0,0x0,0x29,0xde,0xeb,0xc0,0x0,0x0,0x0,0x0,0x2a,0xea,0x7e,0x30, - 0x0,0x0,0x0,0x0,0x2b,0xbe,0xcd,0xc0,0x0,0x0,0x0,0x0,0x2c,0xd3,0x9a,0xb0, - 0x0,0x0,0x0,0x0,0x2d,0x9e,0xaf,0xc0,0x0,0x0,0x0,0x0,0x2e,0xb3,0x7c,0xb0, - 0x0,0x0,0x0,0x0,0x2f,0x7e,0x91,0xc0,0x0,0x0,0x0,0x0,0x30,0x93,0x5e,0xb0, - 0x0,0x0,0x0,0x0,0x31,0x67,0xae,0x40,0x0,0x0,0x0,0x0,0x32,0x73,0x40,0xb0, - 0x0,0x0,0x0,0x0,0x33,0x47,0x90,0x40,0x0,0x0,0x0,0x0,0x34,0x53,0x22,0xb0, - 0x0,0x0,0x0,0x0,0x35,0x27,0x72,0x40,0x0,0x0,0x0,0x0,0x36,0x33,0x4,0xb0, - 0x0,0x0,0x0,0x0,0x37,0x7,0x54,0x40,0x0,0x0,0x0,0x0,0x38,0x1c,0x21,0x30, - 0x0,0x0,0x0,0x0,0x38,0xe7,0x36,0x40,0x0,0x0,0x0,0x0,0x39,0xfc,0x3,0x30, - 0x0,0x0,0x0,0x0,0x3a,0xc7,0x18,0x40,0x0,0x0,0x0,0x0,0x3b,0xdb,0xe5,0x30, - 0x0,0x0,0x0,0x0,0x3c,0xb0,0x34,0xc0,0x0,0x0,0x0,0x0,0x3d,0xbb,0xc7,0x30, - 0x0,0x0,0x0,0x0,0x3e,0x90,0x16,0xc0,0x0,0x0,0x0,0x0,0x3f,0x9b,0xa9,0x30, - 0x0,0x0,0x0,0x0,0x40,0x6f,0xf8,0xc0,0x0,0x0,0x0,0x0,0x41,0x84,0xc5,0xb0, - 0x0,0x0,0x0,0x0,0x42,0x4f,0xda,0xc0,0x0,0x0,0x0,0x0,0x43,0x64,0xa7,0xb0, - 0x0,0x0,0x0,0x0,0x44,0x2f,0xbc,0xc0,0x0,0x0,0x0,0x0,0x45,0x44,0x89,0xb0, - 0x0,0x0,0x0,0x0,0x45,0xf3,0xef,0x40,0x0,0x0,0x0,0x0,0x47,0x2d,0xa6,0x30, - 0x0,0x0,0x0,0x0,0x47,0xd3,0xd1,0x40,0x0,0x0,0x0,0x0,0x49,0xd,0x88,0x30, - 0x0,0x0,0x0,0x0,0x49,0xb3,0xb3,0x40,0x0,0x0,0x0,0x0,0x4a,0xed,0x6a,0x30, - 0x0,0x0,0x0,0x0,0x4b,0x9c,0xcf,0xc0,0x0,0x0,0x0,0x0,0x4c,0xd6,0x86,0xb0, - 0x0,0x0,0x0,0x0,0x4d,0x7c,0xb1,0xc0,0x0,0x0,0x0,0x0,0x4e,0xb6,0x68,0xb0, - 0x0,0x0,0x0,0x0,0x4f,0x5c,0x93,0xc0,0x0,0x0,0x0,0x0,0x50,0x96,0x4a,0xb0, - 0x0,0x0,0x0,0x0,0x51,0x3c,0x75,0xc0,0x0,0x0,0x0,0x0,0x52,0x76,0x2c,0xb0, - 0x0,0x0,0x0,0x0,0x53,0x1c,0x57,0xc0,0x0,0x0,0x0,0x0,0x54,0x56,0xe,0xb0, - 0x0,0x0,0x0,0x0,0x54,0xfc,0x39,0xc0,0x0,0x0,0x0,0x0,0x56,0x35,0xf0,0xb0, - 0x0,0x0,0x0,0x0,0x56,0xe5,0x56,0x40,0x0,0x0,0x0,0x0,0x58,0x1f,0xd,0x30, - 0x0,0x0,0x0,0x0,0x58,0xc5,0x38,0x40,0x0,0x0,0x0,0x0,0x59,0xfe,0xef,0x30, - 0x0,0x0,0x0,0x0,0x5a,0xa5,0x1a,0x40,0x0,0x0,0x0,0x0,0x5b,0xde,0xd1,0x30, - 0x0,0x0,0x0,0x0,0x5c,0x84,0xfc,0x40,0x0,0x0,0x0,0x0,0x5d,0xbe,0xb3,0x30, - 0x0,0x0,0x0,0x0,0x5e,0x64,0xde,0x40,0x0,0x0,0x0,0x0,0x5f,0x9e,0x95,0x30, - 0x0,0x0,0x0,0x0,0x60,0x4d,0xfa,0xc0,0x0,0x0,0x0,0x0,0x61,0x87,0xb1,0xb0, - 0x0,0x0,0x0,0x0,0x62,0x2d,0xdc,0xc0,0x0,0x0,0x0,0x0,0x63,0x67,0x93,0xb0, - 0x0,0x0,0x0,0x0,0x64,0xd,0xbe,0xc0,0x0,0x0,0x0,0x0,0x65,0x47,0x75,0xb0, - 0x0,0x0,0x0,0x0,0x65,0xed,0xa0,0xc0,0x0,0x0,0x0,0x0,0x67,0x27,0x57,0xb0, - 0x0,0x0,0x0,0x0,0x67,0xcd,0x82,0xc0,0x0,0x0,0x0,0x0,0x69,0x7,0x39,0xb0, - 0x0,0x0,0x0,0x0,0x69,0xad,0x64,0xc0,0x0,0x0,0x0,0x0,0x6a,0xe7,0x1b,0xb0, - 0x0,0x0,0x0,0x0,0x6b,0x96,0x81,0x40,0x0,0x0,0x0,0x0,0x6c,0xd0,0x38,0x30, - 0x0,0x0,0x0,0x0,0x6d,0x76,0x63,0x40,0x0,0x0,0x0,0x0,0x6e,0xb0,0x1a,0x30, - 0x0,0x0,0x0,0x0,0x6f,0x56,0x45,0x40,0x0,0x0,0x0,0x0,0x70,0x8f,0xfc,0x30, - 0x0,0x0,0x0,0x0,0x71,0x36,0x27,0x40,0x0,0x0,0x0,0x0,0x72,0x6f,0xde,0x30, - 0x0,0x0,0x0,0x0,0x73,0x16,0x9,0x40,0x0,0x0,0x0,0x0,0x74,0x4f,0xc0,0x30, - 0x0,0x0,0x0,0x0,0x74,0xff,0x25,0xc0,0x0,0x0,0x0,0x0,0x76,0x38,0xdc,0xb0, - 0x0,0x0,0x0,0x0,0x76,0xdf,0x7,0xc0,0x0,0x0,0x0,0x0,0x78,0x18,0xbe,0xb0, - 0x0,0x0,0x0,0x0,0x78,0xbe,0xe9,0xc0,0x0,0x0,0x0,0x0,0x79,0xf8,0xa0,0xb0, - 0x0,0x0,0x0,0x0,0x7a,0x9e,0xcb,0xc0,0x0,0x0,0x0,0x0,0x7b,0xd8,0x82,0xb0, - 0x0,0x0,0x0,0x0,0x7c,0x7e,0xad,0xc0,0x0,0x0,0x0,0x0,0x7d,0xb8,0x64,0xb0, - 0x0,0x0,0x0,0x0,0x7e,0x5e,0x8f,0xc0,0x0,0x0,0x0,0x0,0x7f,0x98,0x46,0xb0, - 0x0,0x1,0x2,0x3,0x4,0x2,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x7,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, - 0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, - 0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, - 0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, - 0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, - 0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, - 0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, - 0x8,0x9,0x0,0x0,0xab,0xe1,0x0,0x0,0xff,0xff,0x5a,0x62,0x0,0x0,0xff,0xff, - 0x65,0x50,0x0,0x4,0xff,0xff,0x73,0x60,0x1,0x8,0xff,0xff,0x73,0x60,0x1,0xc, - 0xff,0xff,0x65,0x50,0x0,0x10,0xff,0xff,0x73,0x60,0x1,0x14,0xff,0xff,0x73,0x60, - 0x0,0x18,0xff,0xff,0x81,0x70,0x1,0x1d,0xff,0xff,0x73,0x60,0x0,0x19,0x4c,0x4d, - 0x54,0x0,0x4e,0x53,0x54,0x0,0x4e,0x57,0x54,0x0,0x4e,0x50,0x54,0x0,0x42,0x53, - 0x54,0x0,0x42,0x44,0x54,0x0,0x41,0x48,0x53,0x54,0x0,0x48,0x44,0x54,0x0,0x0, - 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0, - 0x0,0x0,0x0,0xa,0x48,0x53,0x54,0x31,0x30,0x48,0x44,0x54,0x2c,0x4d,0x33,0x2e, - 0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Fortaleza - 0x0,0x0,0x2,0xd8, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x28,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0x96, - 0xaa,0x6b,0x18,0xb8,0xf,0x49,0xe0,0xb8,0xfd,0x40,0xa0,0xb9,0xf1,0x34,0x30,0xba, - 0xde,0x74,0x20,0xda,0x38,0xae,0x30,0xda,0xeb,0xfa,0x30,0xdc,0x19,0xe1,0xb0,0xdc, - 0xb9,0x59,0x20,0xdd,0xfb,0x15,0x30,0xde,0x9b,0xde,0x20,0xdf,0xdd,0x9a,0x30,0xe0, - 0x54,0x33,0x20,0xf4,0x97,0xff,0xb0,0xf5,0x5,0x5e,0x20,0xf6,0xc0,0x64,0x30,0xf7, - 0xe,0x1e,0xa0,0xf8,0x51,0x2c,0x30,0xf8,0xc7,0xc5,0x20,0xfa,0xa,0xd2,0xb0,0xfa, - 0xa8,0xf8,0xa0,0xfb,0xec,0x6,0x30,0xfc,0x8b,0x7d,0xa0,0x1d,0xc9,0x8e,0x30,0x1e, - 0x78,0xd7,0xa0,0x1f,0xa0,0x35,0xb0,0x20,0x33,0xcf,0xa0,0x21,0x81,0x69,0x30,0x22, - 0xb,0xc8,0xa0,0x23,0x58,0x10,0xb0,0x23,0xe2,0x70,0x20,0x25,0x37,0xf2,0xb0,0x25, - 0xd4,0xc7,0x20,0x37,0xf6,0xc6,0xb0,0x38,0xb8,0x85,0x20,0x39,0xdf,0xe3,0x30,0x39, - 0xf2,0x4a,0x20,0x3b,0xc8,0xff,0xb0,0x3c,0x6f,0xe,0xa0,0x0,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0xff,0xff,0xdb,0xe8,0x0,0x0,0xff,0xff,0xe3,0xe0,0x1,0x4,0xff, - 0xff,0xd5,0xd0,0x0,0x9,0x4c,0x4d,0x54,0x0,0x42,0x52,0x53,0x54,0x0,0x42,0x52, - 0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3, - 0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x28,0x0,0x0,0x0,0x3, - 0x0,0x0,0x0,0xd,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff, - 0x96,0xaa,0x6b,0x18,0xff,0xff,0xff,0xff,0xb8,0xf,0x49,0xe0,0xff,0xff,0xff,0xff, - 0xb8,0xfd,0x40,0xa0,0xff,0xff,0xff,0xff,0xb9,0xf1,0x34,0x30,0xff,0xff,0xff,0xff, - 0xba,0xde,0x74,0x20,0xff,0xff,0xff,0xff,0xda,0x38,0xae,0x30,0xff,0xff,0xff,0xff, - 0xda,0xeb,0xfa,0x30,0xff,0xff,0xff,0xff,0xdc,0x19,0xe1,0xb0,0xff,0xff,0xff,0xff, - 0xdc,0xb9,0x59,0x20,0xff,0xff,0xff,0xff,0xdd,0xfb,0x15,0x30,0xff,0xff,0xff,0xff, - 0xde,0x9b,0xde,0x20,0xff,0xff,0xff,0xff,0xdf,0xdd,0x9a,0x30,0xff,0xff,0xff,0xff, - 0xe0,0x54,0x33,0x20,0xff,0xff,0xff,0xff,0xf4,0x97,0xff,0xb0,0xff,0xff,0xff,0xff, - 0xf5,0x5,0x5e,0x20,0xff,0xff,0xff,0xff,0xf6,0xc0,0x64,0x30,0xff,0xff,0xff,0xff, - 0xf7,0xe,0x1e,0xa0,0xff,0xff,0xff,0xff,0xf8,0x51,0x2c,0x30,0xff,0xff,0xff,0xff, - 0xf8,0xc7,0xc5,0x20,0xff,0xff,0xff,0xff,0xfa,0xa,0xd2,0xb0,0xff,0xff,0xff,0xff, - 0xfa,0xa8,0xf8,0xa0,0xff,0xff,0xff,0xff,0xfb,0xec,0x6,0x30,0xff,0xff,0xff,0xff, - 0xfc,0x8b,0x7d,0xa0,0x0,0x0,0x0,0x0,0x1d,0xc9,0x8e,0x30,0x0,0x0,0x0,0x0, - 0x1e,0x78,0xd7,0xa0,0x0,0x0,0x0,0x0,0x1f,0xa0,0x35,0xb0,0x0,0x0,0x0,0x0, - 0x20,0x33,0xcf,0xa0,0x0,0x0,0x0,0x0,0x21,0x81,0x69,0x30,0x0,0x0,0x0,0x0, - 0x22,0xb,0xc8,0xa0,0x0,0x0,0x0,0x0,0x23,0x58,0x10,0xb0,0x0,0x0,0x0,0x0, - 0x23,0xe2,0x70,0x20,0x0,0x0,0x0,0x0,0x25,0x37,0xf2,0xb0,0x0,0x0,0x0,0x0, - 0x25,0xd4,0xc7,0x20,0x0,0x0,0x0,0x0,0x37,0xf6,0xc6,0xb0,0x0,0x0,0x0,0x0, - 0x38,0xb8,0x85,0x20,0x0,0x0,0x0,0x0,0x39,0xdf,0xe3,0x30,0x0,0x0,0x0,0x0, - 0x39,0xf2,0x4a,0x20,0x0,0x0,0x0,0x0,0x3b,0xc8,0xff,0xb0,0x0,0x0,0x0,0x0, - 0x3c,0x6f,0xe,0xa0,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0xdb,0xe8, - 0x0,0x0,0xff,0xff,0xe3,0xe0,0x1,0x4,0xff,0xff,0xd5,0xd0,0x0,0x9,0x4c,0x4d, - 0x54,0x0,0x42,0x52,0x53,0x54,0x0,0x42,0x52,0x54,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xa,0x42,0x52,0x54,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Guadeloupe - 0x0,0x0,0x0,0xaa, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x93, - 0x37,0x33,0xac,0x0,0x1,0xff,0xff,0xc6,0x54,0x0,0x0,0xff,0xff,0xc7,0xc0,0x0, - 0x4,0x4c,0x4d,0x54,0x0,0x41,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, - 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0x93,0x37,0x33,0xac,0x0,0x1,0xff,0xff,0xc6,0x54,0x0, - 0x0,0xff,0xff,0xc7,0xc0,0x0,0x4,0x4c,0x4d,0x54,0x0,0x41,0x53,0x54,0x0,0x0, - 0x0,0x0,0x0,0xa,0x41,0x53,0x54,0x34,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Marigot - 0x0,0x0,0x0,0xaa, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x93, - 0x37,0x33,0xac,0x0,0x1,0xff,0xff,0xc6,0x54,0x0,0x0,0xff,0xff,0xc7,0xc0,0x0, - 0x4,0x4c,0x4d,0x54,0x0,0x41,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, - 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0x93,0x37,0x33,0xac,0x0,0x1,0xff,0xff,0xc6,0x54,0x0, - 0x0,0xff,0xff,0xc7,0xc0,0x0,0x4,0x4c,0x4d,0x54,0x0,0x41,0x53,0x54,0x0,0x0, - 0x0,0x0,0x0,0xa,0x41,0x53,0x54,0x34,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Cuiaba - 0x0,0x0,0x7,0xc3, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x7f,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0x96, - 0xaa,0x7b,0x94,0xb8,0xf,0x57,0xf0,0xb8,0xfd,0x4e,0xb0,0xb9,0xf1,0x42,0x40,0xba, - 0xde,0x82,0x30,0xda,0x38,0xbc,0x40,0xda,0xec,0x8,0x40,0xdc,0x19,0xef,0xc0,0xdc, - 0xb9,0x67,0x30,0xdd,0xfb,0x23,0x40,0xde,0x9b,0xec,0x30,0xdf,0xdd,0xa8,0x40,0xe0, - 0x54,0x41,0x30,0xf4,0x98,0xd,0xc0,0xf5,0x5,0x6c,0x30,0xf6,0xc0,0x72,0x40,0xf7, - 0xe,0x2c,0xb0,0xf8,0x51,0x3a,0x40,0xf8,0xc7,0xd3,0x30,0xfa,0xa,0xe0,0xc0,0xfa, - 0xa9,0x6,0xb0,0xfb,0xec,0x14,0x40,0xfc,0x8b,0x8b,0xb0,0x1d,0xc9,0x9c,0x40,0x1e, - 0x78,0xe5,0xb0,0x1f,0xa0,0x43,0xc0,0x20,0x33,0xdd,0xb0,0x21,0x81,0x77,0x40,0x22, - 0xb,0xd6,0xb0,0x23,0x58,0x1e,0xc0,0x23,0xe2,0x7e,0x30,0x25,0x38,0x0,0xc0,0x25, - 0xd4,0xd5,0x30,0x27,0x21,0x1d,0x40,0x27,0xbd,0xf1,0xb0,0x29,0x0,0xff,0x40,0x29, - 0x94,0x99,0x30,0x2a,0xea,0x1b,0xc0,0x2b,0x6b,0x40,0xb0,0x2c,0xc0,0xc3,0x40,0x2d, - 0x66,0xd2,0x30,0x2e,0xa0,0xa5,0x40,0x2f,0x46,0xb4,0x30,0x30,0x80,0x87,0x40,0x31, - 0x1d,0x5b,0xb0,0x32,0x57,0x2e,0xc0,0x33,0x6,0x78,0x30,0x34,0x38,0x62,0x40,0x34, - 0xf8,0xcf,0x30,0x36,0x20,0x2d,0x40,0x36,0xcf,0x76,0xb0,0x37,0xf6,0xd4,0xc0,0x38, - 0xb8,0x93,0x30,0x39,0xdf,0xf1,0x40,0x3a,0x8f,0x3a,0xb0,0x3b,0xc9,0xd,0xc0,0x3c, - 0x6f,0x1c,0xb0,0x3d,0xc4,0x9f,0x40,0x3e,0x4e,0xfe,0xb0,0x41,0x87,0x6,0x40,0x42, - 0x17,0xfd,0x30,0x43,0x51,0xd0,0x40,0x43,0xf7,0xdf,0x30,0x45,0x4d,0x61,0xc0,0x45, - 0xe0,0xfb,0xb0,0x47,0x11,0x94,0x40,0x47,0xb7,0xa3,0x30,0x48,0xfa,0xb0,0xc0,0x49, - 0x97,0x85,0x30,0x4a,0xda,0x92,0xc0,0x4b,0x80,0xa1,0xb0,0x4c,0xba,0x74,0xc0,0x4d, - 0x60,0x83,0xb0,0x4e,0x9a,0x56,0xc0,0x4f,0x49,0xa0,0x30,0x50,0x83,0x73,0x40,0x51, - 0x20,0x47,0xb0,0x52,0x63,0x55,0x40,0x53,0x0,0x29,0xb0,0x54,0x43,0x37,0x40,0x54, - 0xe9,0x46,0x30,0x56,0x23,0x19,0x40,0x56,0xc9,0x28,0x30,0x58,0x2,0xfb,0x40,0x58, - 0xa9,0xa,0x30,0x59,0xe2,0xdd,0x40,0x5a,0x88,0xec,0x30,0x5b,0xcb,0xf9,0xc0,0x5c, - 0x68,0xce,0x30,0x5d,0xab,0xdb,0xc0,0x5e,0x48,0xb0,0x30,0x5f,0x8b,0xbd,0xc0,0x60, - 0x31,0xcc,0xb0,0x61,0x6b,0x9f,0xc0,0x62,0x11,0xae,0xb0,0x63,0x4b,0x81,0xc0,0x63, - 0xfa,0xcb,0x30,0x65,0x2b,0x63,0xc0,0x65,0xd1,0x72,0xb0,0x67,0x14,0x80,0x40,0x67, - 0xb1,0x54,0xb0,0x68,0xf4,0x62,0x40,0x69,0x9a,0x71,0x30,0x6a,0xd4,0x44,0x40,0x6b, - 0x7a,0x53,0x30,0x6c,0xb4,0x26,0x40,0x6d,0x5a,0x35,0x30,0x6e,0x94,0x8,0x40,0x6f, - 0x3a,0x17,0x30,0x70,0x7d,0x24,0xc0,0x71,0x19,0xf9,0x30,0x72,0x5d,0x6,0xc0,0x72, - 0xf9,0xdb,0x30,0x74,0x3c,0xe8,0xc0,0x74,0xd9,0xbd,0x30,0x76,0x1c,0xca,0xc0,0x76, - 0xc2,0xd9,0xb0,0x77,0xfc,0xac,0xc0,0x78,0xab,0xf6,0x30,0x79,0xdc,0x8e,0xc0,0x7a, - 0x82,0x9d,0xb0,0x7b,0xc5,0xab,0x40,0x7c,0x62,0x7f,0xb0,0x7d,0xa5,0x8d,0x40,0x7e, - 0x4b,0x9c,0x30,0x7f,0x85,0x6f,0x40,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0xff,0xff,0xcb,0x6c,0x0,0x0,0xff,0xff,0xd5,0xd0, - 0x1,0x4,0xff,0xff,0xc7,0xc0,0x0,0x9,0x4c,0x4d,0x54,0x0,0x41,0x4d,0x53,0x54, - 0x0,0x41,0x4d,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32, + 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x8b,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x80,0x0,0x0,0x0,0x8f, + 0x24,0x7b,0xe0,0xcb,0x88,0xf0,0x70,0xd2,0x23,0xf4,0x70,0xd2,0x60,0xfb,0xe0,0x0, + 0x97,0xfe,0xf0,0x1,0x87,0xe1,0xe0,0x2,0x77,0xe0,0xf0,0x3,0x70,0xfe,0x60,0x4, + 0x60,0xfd,0x70,0x5,0x50,0xe0,0x60,0x8,0x20,0xc1,0x70,0x9,0x10,0xa4,0x60,0xa, + 0x0,0xa3,0x70,0xa,0xf0,0x86,0x60,0xb,0xe0,0x85,0x70,0xc,0xd9,0xa2,0xe0,0xd, + 0xc0,0x67,0x70,0xe,0xb9,0x84,0xe0,0xf,0xa9,0x83,0xf0,0x10,0x99,0x66,0xe0,0x11, + 0x89,0x65,0xf0,0x12,0x79,0x48,0xe0,0x13,0x69,0x47,0xf0,0x14,0x59,0x2a,0xe0,0x15, + 0x49,0x29,0xf0,0x16,0x39,0xc,0xe0,0x17,0x29,0xb,0xf0,0x18,0x22,0x29,0x60,0x19, + 0x8,0xed,0xf0,0x1a,0x2,0xb,0x60,0x1a,0xf2,0xa,0x70,0x1b,0xe1,0xed,0x60,0x1c, + 0xd1,0xec,0x70,0x1d,0xc1,0xcf,0x60,0x1e,0xb1,0xce,0x70,0x1f,0xa1,0xb1,0x60,0x20, + 0x76,0x0,0xf0,0x21,0x81,0x93,0x60,0x22,0x55,0xe2,0xf0,0x23,0x6a,0xaf,0xe0,0x24, + 0x35,0xc4,0xf0,0x25,0x4a,0x91,0xe0,0x26,0x15,0xa6,0xf0,0x27,0x2a,0x73,0xe0,0x27, + 0xfe,0xc3,0x70,0x29,0xa,0x55,0xe0,0x29,0xde,0xa5,0x70,0x2a,0xea,0x37,0xe0,0x2b, + 0xbe,0x87,0x70,0x2c,0xd3,0x54,0x60,0x2d,0x9e,0x69,0x70,0x2e,0xb3,0x36,0x60,0x2f, + 0x7e,0x4b,0x70,0x30,0x93,0x18,0x60,0x31,0x67,0x67,0xf0,0x32,0x72,0xfa,0x60,0x33, + 0x47,0x49,0xf0,0x34,0x52,0xdc,0x60,0x35,0x27,0x2b,0xf0,0x36,0x32,0xbe,0x60,0x37, + 0x7,0xd,0xf0,0x38,0x1b,0xda,0xe0,0x38,0xe6,0xef,0xf0,0x39,0xfb,0xbc,0xe0,0x3a, + 0xc6,0xd1,0xf0,0x3b,0xdb,0x9e,0xe0,0x3c,0xaf,0xee,0x70,0x3d,0xbb,0x80,0xe0,0x3e, + 0x8f,0xd0,0x70,0x3f,0x9b,0x62,0xe0,0x40,0x6f,0xb2,0x70,0x41,0x84,0x7f,0x60,0x42, + 0x4f,0x94,0x70,0x43,0x64,0x61,0x60,0x44,0x2f,0x76,0x70,0x45,0x44,0x43,0x60,0x45, + 0xf3,0xa8,0xf0,0x47,0x2d,0x5f,0xe0,0x47,0xd3,0x8a,0xf0,0x49,0xd,0x41,0xe0,0x49, + 0xb3,0x6c,0xf0,0x4a,0xed,0x23,0xe0,0x4b,0x9c,0x89,0x70,0x4c,0xd6,0x40,0x60,0x4d, + 0x7c,0x6b,0x70,0x4e,0xb6,0x22,0x60,0x4f,0x5c,0x4d,0x70,0x50,0x96,0x4,0x60,0x51, + 0x3c,0x2f,0x70,0x52,0x75,0xe6,0x60,0x53,0x1c,0x11,0x70,0x54,0x55,0xc8,0x60,0x54, + 0xfb,0xf3,0x70,0x56,0x35,0xaa,0x60,0x56,0xe5,0xf,0xf0,0x58,0x1e,0xc6,0xe0,0x58, + 0xc4,0xf1,0xf0,0x59,0xfe,0xa8,0xe0,0x5a,0xa4,0xd3,0xf0,0x5b,0xde,0x8a,0xe0,0x5c, + 0x84,0xb5,0xf0,0x5d,0xbe,0x6c,0xe0,0x5e,0x64,0x97,0xf0,0x5f,0x9e,0x4e,0xe0,0x60, + 0x4d,0xb4,0x70,0x61,0x87,0x6b,0x60,0x62,0x2d,0x96,0x70,0x63,0x67,0x4d,0x60,0x64, + 0xd,0x78,0x70,0x65,0x47,0x2f,0x60,0x65,0xed,0x5a,0x70,0x67,0x27,0x11,0x60,0x67, + 0xcd,0x3c,0x70,0x69,0x6,0xf3,0x60,0x69,0xad,0x1e,0x70,0x6a,0xe6,0xd5,0x60,0x6b, + 0x96,0x3a,0xf0,0x6c,0xcf,0xf1,0xe0,0x6d,0x76,0x1c,0xf0,0x6e,0xaf,0xd3,0xe0,0x6f, + 0x55,0xfe,0xf0,0x70,0x8f,0xb5,0xe0,0x71,0x35,0xe0,0xf0,0x72,0x6f,0x97,0xe0,0x73, + 0x15,0xc2,0xf0,0x74,0x4f,0x79,0xe0,0x74,0xfe,0xdf,0x70,0x76,0x38,0x96,0x60,0x76, + 0xde,0xc1,0x70,0x78,0x18,0x78,0x60,0x78,0xbe,0xa3,0x70,0x79,0xf8,0x5a,0x60,0x7a, + 0x9e,0x85,0x70,0x7b,0xd8,0x3c,0x60,0x7c,0x7e,0x67,0x70,0x7d,0xb8,0x1e,0x60,0x7e, + 0x5e,0x49,0x70,0x7f,0x98,0x0,0x60,0x1,0x2,0x3,0x4,0x2,0x5,0x2,0x5,0x2, + 0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2, + 0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2, + 0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2, + 0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2, + 0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2, + 0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2, + 0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2, + 0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2, + 0x5,0x2,0xff,0xff,0xac,0x54,0x0,0x0,0xff,0xff,0xab,0xa0,0x0,0x4,0xff,0xff, + 0xb9,0xb0,0x0,0x8,0xff,0xff,0xc7,0xc0,0x1,0xc,0xff,0xff,0xc7,0xc0,0x1,0x10, + 0xff,0xff,0xc7,0xc0,0x1,0x14,0x4c,0x4d,0x54,0x0,0x43,0x53,0x54,0x0,0x45,0x53, + 0x54,0x0,0x45,0x57,0x54,0x0,0x45,0x50,0x54,0x0,0x45,0x44,0x54,0x0,0x0,0x0, + 0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x54,0x5a,0x69,0x66,0x32,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x81,0x0, - 0x0,0x0,0x3,0x0,0x0,0x0,0xd,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff, - 0xff,0xff,0xff,0x96,0xaa,0x7b,0x94,0xff,0xff,0xff,0xff,0xb8,0xf,0x57,0xf0,0xff, - 0xff,0xff,0xff,0xb8,0xfd,0x4e,0xb0,0xff,0xff,0xff,0xff,0xb9,0xf1,0x42,0x40,0xff, - 0xff,0xff,0xff,0xba,0xde,0x82,0x30,0xff,0xff,0xff,0xff,0xda,0x38,0xbc,0x40,0xff, - 0xff,0xff,0xff,0xda,0xec,0x8,0x40,0xff,0xff,0xff,0xff,0xdc,0x19,0xef,0xc0,0xff, - 0xff,0xff,0xff,0xdc,0xb9,0x67,0x30,0xff,0xff,0xff,0xff,0xdd,0xfb,0x23,0x40,0xff, - 0xff,0xff,0xff,0xde,0x9b,0xec,0x30,0xff,0xff,0xff,0xff,0xdf,0xdd,0xa8,0x40,0xff, - 0xff,0xff,0xff,0xe0,0x54,0x41,0x30,0xff,0xff,0xff,0xff,0xf4,0x98,0xd,0xc0,0xff, - 0xff,0xff,0xff,0xf5,0x5,0x6c,0x30,0xff,0xff,0xff,0xff,0xf6,0xc0,0x72,0x40,0xff, - 0xff,0xff,0xff,0xf7,0xe,0x2c,0xb0,0xff,0xff,0xff,0xff,0xf8,0x51,0x3a,0x40,0xff, - 0xff,0xff,0xff,0xf8,0xc7,0xd3,0x30,0xff,0xff,0xff,0xff,0xfa,0xa,0xe0,0xc0,0xff, - 0xff,0xff,0xff,0xfa,0xa9,0x6,0xb0,0xff,0xff,0xff,0xff,0xfb,0xec,0x14,0x40,0xff, - 0xff,0xff,0xff,0xfc,0x8b,0x8b,0xb0,0x0,0x0,0x0,0x0,0x1d,0xc9,0x9c,0x40,0x0, - 0x0,0x0,0x0,0x1e,0x78,0xe5,0xb0,0x0,0x0,0x0,0x0,0x1f,0xa0,0x43,0xc0,0x0, - 0x0,0x0,0x0,0x20,0x33,0xdd,0xb0,0x0,0x0,0x0,0x0,0x21,0x81,0x77,0x40,0x0, - 0x0,0x0,0x0,0x22,0xb,0xd6,0xb0,0x0,0x0,0x0,0x0,0x23,0x58,0x1e,0xc0,0x0, - 0x0,0x0,0x0,0x23,0xe2,0x7e,0x30,0x0,0x0,0x0,0x0,0x25,0x38,0x0,0xc0,0x0, - 0x0,0x0,0x0,0x25,0xd4,0xd5,0x30,0x0,0x0,0x0,0x0,0x27,0x21,0x1d,0x40,0x0, - 0x0,0x0,0x0,0x27,0xbd,0xf1,0xb0,0x0,0x0,0x0,0x0,0x29,0x0,0xff,0x40,0x0, - 0x0,0x0,0x0,0x29,0x94,0x99,0x30,0x0,0x0,0x0,0x0,0x2a,0xea,0x1b,0xc0,0x0, - 0x0,0x0,0x0,0x2b,0x6b,0x40,0xb0,0x0,0x0,0x0,0x0,0x2c,0xc0,0xc3,0x40,0x0, - 0x0,0x0,0x0,0x2d,0x66,0xd2,0x30,0x0,0x0,0x0,0x0,0x2e,0xa0,0xa5,0x40,0x0, - 0x0,0x0,0x0,0x2f,0x46,0xb4,0x30,0x0,0x0,0x0,0x0,0x30,0x80,0x87,0x40,0x0, - 0x0,0x0,0x0,0x31,0x1d,0x5b,0xb0,0x0,0x0,0x0,0x0,0x32,0x57,0x2e,0xc0,0x0, - 0x0,0x0,0x0,0x33,0x6,0x78,0x30,0x0,0x0,0x0,0x0,0x34,0x38,0x62,0x40,0x0, - 0x0,0x0,0x0,0x34,0xf8,0xcf,0x30,0x0,0x0,0x0,0x0,0x36,0x20,0x2d,0x40,0x0, - 0x0,0x0,0x0,0x36,0xcf,0x76,0xb0,0x0,0x0,0x0,0x0,0x37,0xf6,0xd4,0xc0,0x0, - 0x0,0x0,0x0,0x38,0xb8,0x93,0x30,0x0,0x0,0x0,0x0,0x39,0xdf,0xf1,0x40,0x0, - 0x0,0x0,0x0,0x3a,0x8f,0x3a,0xb0,0x0,0x0,0x0,0x0,0x3b,0xc9,0xd,0xc0,0x0, - 0x0,0x0,0x0,0x3c,0x6f,0x1c,0xb0,0x0,0x0,0x0,0x0,0x3d,0xc4,0x9f,0x40,0x0, - 0x0,0x0,0x0,0x3e,0x4e,0xfe,0xb0,0x0,0x0,0x0,0x0,0x41,0x87,0x6,0x40,0x0, - 0x0,0x0,0x0,0x42,0x17,0xfd,0x30,0x0,0x0,0x0,0x0,0x43,0x51,0xd0,0x40,0x0, - 0x0,0x0,0x0,0x43,0xf7,0xdf,0x30,0x0,0x0,0x0,0x0,0x45,0x4d,0x61,0xc0,0x0, - 0x0,0x0,0x0,0x45,0xe0,0xfb,0xb0,0x0,0x0,0x0,0x0,0x47,0x11,0x94,0x40,0x0, - 0x0,0x0,0x0,0x47,0xb7,0xa3,0x30,0x0,0x0,0x0,0x0,0x48,0xfa,0xb0,0xc0,0x0, - 0x0,0x0,0x0,0x49,0x97,0x85,0x30,0x0,0x0,0x0,0x0,0x4a,0xda,0x92,0xc0,0x0, - 0x0,0x0,0x0,0x4b,0x80,0xa1,0xb0,0x0,0x0,0x0,0x0,0x4c,0xba,0x74,0xc0,0x0, - 0x0,0x0,0x0,0x4d,0x60,0x83,0xb0,0x0,0x0,0x0,0x0,0x4e,0x9a,0x56,0xc0,0x0, - 0x0,0x0,0x0,0x4f,0x49,0xa0,0x30,0x0,0x0,0x0,0x0,0x50,0x83,0x73,0x40,0x0, - 0x0,0x0,0x0,0x51,0x20,0x47,0xb0,0x0,0x0,0x0,0x0,0x52,0x63,0x55,0x40,0x0, - 0x0,0x0,0x0,0x53,0x0,0x29,0xb0,0x0,0x0,0x0,0x0,0x54,0x43,0x37,0x40,0x0, - 0x0,0x0,0x0,0x54,0xe9,0x46,0x30,0x0,0x0,0x0,0x0,0x56,0x23,0x19,0x40,0x0, - 0x0,0x0,0x0,0x56,0xc9,0x28,0x30,0x0,0x0,0x0,0x0,0x58,0x2,0xfb,0x40,0x0, - 0x0,0x0,0x0,0x58,0xa9,0xa,0x30,0x0,0x0,0x0,0x0,0x59,0xe2,0xdd,0x40,0x0, - 0x0,0x0,0x0,0x5a,0x88,0xec,0x30,0x0,0x0,0x0,0x0,0x5b,0xcb,0xf9,0xc0,0x0, - 0x0,0x0,0x0,0x5c,0x68,0xce,0x30,0x0,0x0,0x0,0x0,0x5d,0xab,0xdb,0xc0,0x0, - 0x0,0x0,0x0,0x5e,0x48,0xb0,0x30,0x0,0x0,0x0,0x0,0x5f,0x8b,0xbd,0xc0,0x0, - 0x0,0x0,0x0,0x60,0x31,0xcc,0xb0,0x0,0x0,0x0,0x0,0x61,0x6b,0x9f,0xc0,0x0, - 0x0,0x0,0x0,0x62,0x11,0xae,0xb0,0x0,0x0,0x0,0x0,0x63,0x4b,0x81,0xc0,0x0, - 0x0,0x0,0x0,0x63,0xfa,0xcb,0x30,0x0,0x0,0x0,0x0,0x65,0x2b,0x63,0xc0,0x0, - 0x0,0x0,0x0,0x65,0xd1,0x72,0xb0,0x0,0x0,0x0,0x0,0x67,0x14,0x80,0x40,0x0, - 0x0,0x0,0x0,0x67,0xb1,0x54,0xb0,0x0,0x0,0x0,0x0,0x68,0xf4,0x62,0x40,0x0, - 0x0,0x0,0x0,0x69,0x9a,0x71,0x30,0x0,0x0,0x0,0x0,0x6a,0xd4,0x44,0x40,0x0, - 0x0,0x0,0x0,0x6b,0x7a,0x53,0x30,0x0,0x0,0x0,0x0,0x6c,0xb4,0x26,0x40,0x0, - 0x0,0x0,0x0,0x6d,0x5a,0x35,0x30,0x0,0x0,0x0,0x0,0x6e,0x94,0x8,0x40,0x0, - 0x0,0x0,0x0,0x6f,0x3a,0x17,0x30,0x0,0x0,0x0,0x0,0x70,0x7d,0x24,0xc0,0x0, - 0x0,0x0,0x0,0x71,0x19,0xf9,0x30,0x0,0x0,0x0,0x0,0x72,0x5d,0x6,0xc0,0x0, - 0x0,0x0,0x0,0x72,0xf9,0xdb,0x30,0x0,0x0,0x0,0x0,0x74,0x3c,0xe8,0xc0,0x0, - 0x0,0x0,0x0,0x74,0xd9,0xbd,0x30,0x0,0x0,0x0,0x0,0x76,0x1c,0xca,0xc0,0x0, - 0x0,0x0,0x0,0x76,0xc2,0xd9,0xb0,0x0,0x0,0x0,0x0,0x77,0xfc,0xac,0xc0,0x0, - 0x0,0x0,0x0,0x78,0xab,0xf6,0x30,0x0,0x0,0x0,0x0,0x79,0xdc,0x8e,0xc0,0x0, - 0x0,0x0,0x0,0x7a,0x82,0x9d,0xb0,0x0,0x0,0x0,0x0,0x7b,0xc5,0xab,0x40,0x0, - 0x0,0x0,0x0,0x7c,0x62,0x7f,0xb0,0x0,0x0,0x0,0x0,0x7d,0xa5,0x8d,0x40,0x0, - 0x0,0x0,0x0,0x7e,0x4b,0x9c,0x30,0x0,0x0,0x0,0x0,0x7f,0x85,0x6f,0x40,0x0, - 0x0,0x0,0x0,0x80,0x2b,0x7e,0x30,0x0,0x0,0x0,0x0,0x81,0x65,0x51,0x40,0x0, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0xff,0xff,0xcb,0x6c,0x0,0x0,0xff,0xff,0xd5,0xd0,0x1,0x4,0xff,0xff,0xc7,0xc0, - 0x0,0x9,0x4c,0x4d,0x54,0x0,0x41,0x4d,0x53,0x54,0x0,0x41,0x4d,0x54,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0xa,0x41,0x4d,0x54,0x34,0x41,0x4d,0x53,0x54,0x2c,0x4d, - 0x31,0x30,0x2e,0x33,0x2e,0x30,0x2f,0x30,0x2c,0x4d,0x32,0x2e,0x33,0x2e,0x30,0x2f, + 0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8c,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x18,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff, + 0xff,0xff,0x72,0xee,0x82,0x2c,0xff,0xff,0xff,0xff,0x8f,0x24,0x7b,0xe0,0xff,0xff, + 0xff,0xff,0xcb,0x88,0xf0,0x70,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff, + 0xff,0xff,0xd2,0x60,0xfb,0xe0,0x0,0x0,0x0,0x0,0x0,0x97,0xfe,0xf0,0x0,0x0, + 0x0,0x0,0x1,0x87,0xe1,0xe0,0x0,0x0,0x0,0x0,0x2,0x77,0xe0,0xf0,0x0,0x0, + 0x0,0x0,0x3,0x70,0xfe,0x60,0x0,0x0,0x0,0x0,0x4,0x60,0xfd,0x70,0x0,0x0, + 0x0,0x0,0x5,0x50,0xe0,0x60,0x0,0x0,0x0,0x0,0x8,0x20,0xc1,0x70,0x0,0x0, + 0x0,0x0,0x9,0x10,0xa4,0x60,0x0,0x0,0x0,0x0,0xa,0x0,0xa3,0x70,0x0,0x0, + 0x0,0x0,0xa,0xf0,0x86,0x60,0x0,0x0,0x0,0x0,0xb,0xe0,0x85,0x70,0x0,0x0, + 0x0,0x0,0xc,0xd9,0xa2,0xe0,0x0,0x0,0x0,0x0,0xd,0xc0,0x67,0x70,0x0,0x0, + 0x0,0x0,0xe,0xb9,0x84,0xe0,0x0,0x0,0x0,0x0,0xf,0xa9,0x83,0xf0,0x0,0x0, + 0x0,0x0,0x10,0x99,0x66,0xe0,0x0,0x0,0x0,0x0,0x11,0x89,0x65,0xf0,0x0,0x0, + 0x0,0x0,0x12,0x79,0x48,0xe0,0x0,0x0,0x0,0x0,0x13,0x69,0x47,0xf0,0x0,0x0, + 0x0,0x0,0x14,0x59,0x2a,0xe0,0x0,0x0,0x0,0x0,0x15,0x49,0x29,0xf0,0x0,0x0, + 0x0,0x0,0x16,0x39,0xc,0xe0,0x0,0x0,0x0,0x0,0x17,0x29,0xb,0xf0,0x0,0x0, + 0x0,0x0,0x18,0x22,0x29,0x60,0x0,0x0,0x0,0x0,0x19,0x8,0xed,0xf0,0x0,0x0, + 0x0,0x0,0x1a,0x2,0xb,0x60,0x0,0x0,0x0,0x0,0x1a,0xf2,0xa,0x70,0x0,0x0, + 0x0,0x0,0x1b,0xe1,0xed,0x60,0x0,0x0,0x0,0x0,0x1c,0xd1,0xec,0x70,0x0,0x0, + 0x0,0x0,0x1d,0xc1,0xcf,0x60,0x0,0x0,0x0,0x0,0x1e,0xb1,0xce,0x70,0x0,0x0, + 0x0,0x0,0x1f,0xa1,0xb1,0x60,0x0,0x0,0x0,0x0,0x20,0x76,0x0,0xf0,0x0,0x0, + 0x0,0x0,0x21,0x81,0x93,0x60,0x0,0x0,0x0,0x0,0x22,0x55,0xe2,0xf0,0x0,0x0, + 0x0,0x0,0x23,0x6a,0xaf,0xe0,0x0,0x0,0x0,0x0,0x24,0x35,0xc4,0xf0,0x0,0x0, + 0x0,0x0,0x25,0x4a,0x91,0xe0,0x0,0x0,0x0,0x0,0x26,0x15,0xa6,0xf0,0x0,0x0, + 0x0,0x0,0x27,0x2a,0x73,0xe0,0x0,0x0,0x0,0x0,0x27,0xfe,0xc3,0x70,0x0,0x0, + 0x0,0x0,0x29,0xa,0x55,0xe0,0x0,0x0,0x0,0x0,0x29,0xde,0xa5,0x70,0x0,0x0, + 0x0,0x0,0x2a,0xea,0x37,0xe0,0x0,0x0,0x0,0x0,0x2b,0xbe,0x87,0x70,0x0,0x0, + 0x0,0x0,0x2c,0xd3,0x54,0x60,0x0,0x0,0x0,0x0,0x2d,0x9e,0x69,0x70,0x0,0x0, + 0x0,0x0,0x2e,0xb3,0x36,0x60,0x0,0x0,0x0,0x0,0x2f,0x7e,0x4b,0x70,0x0,0x0, + 0x0,0x0,0x30,0x93,0x18,0x60,0x0,0x0,0x0,0x0,0x31,0x67,0x67,0xf0,0x0,0x0, + 0x0,0x0,0x32,0x72,0xfa,0x60,0x0,0x0,0x0,0x0,0x33,0x47,0x49,0xf0,0x0,0x0, + 0x0,0x0,0x34,0x52,0xdc,0x60,0x0,0x0,0x0,0x0,0x35,0x27,0x2b,0xf0,0x0,0x0, + 0x0,0x0,0x36,0x32,0xbe,0x60,0x0,0x0,0x0,0x0,0x37,0x7,0xd,0xf0,0x0,0x0, + 0x0,0x0,0x38,0x1b,0xda,0xe0,0x0,0x0,0x0,0x0,0x38,0xe6,0xef,0xf0,0x0,0x0, + 0x0,0x0,0x39,0xfb,0xbc,0xe0,0x0,0x0,0x0,0x0,0x3a,0xc6,0xd1,0xf0,0x0,0x0, + 0x0,0x0,0x3b,0xdb,0x9e,0xe0,0x0,0x0,0x0,0x0,0x3c,0xaf,0xee,0x70,0x0,0x0, + 0x0,0x0,0x3d,0xbb,0x80,0xe0,0x0,0x0,0x0,0x0,0x3e,0x8f,0xd0,0x70,0x0,0x0, + 0x0,0x0,0x3f,0x9b,0x62,0xe0,0x0,0x0,0x0,0x0,0x40,0x6f,0xb2,0x70,0x0,0x0, + 0x0,0x0,0x41,0x84,0x7f,0x60,0x0,0x0,0x0,0x0,0x42,0x4f,0x94,0x70,0x0,0x0, + 0x0,0x0,0x43,0x64,0x61,0x60,0x0,0x0,0x0,0x0,0x44,0x2f,0x76,0x70,0x0,0x0, + 0x0,0x0,0x45,0x44,0x43,0x60,0x0,0x0,0x0,0x0,0x45,0xf3,0xa8,0xf0,0x0,0x0, + 0x0,0x0,0x47,0x2d,0x5f,0xe0,0x0,0x0,0x0,0x0,0x47,0xd3,0x8a,0xf0,0x0,0x0, + 0x0,0x0,0x49,0xd,0x41,0xe0,0x0,0x0,0x0,0x0,0x49,0xb3,0x6c,0xf0,0x0,0x0, + 0x0,0x0,0x4a,0xed,0x23,0xe0,0x0,0x0,0x0,0x0,0x4b,0x9c,0x89,0x70,0x0,0x0, + 0x0,0x0,0x4c,0xd6,0x40,0x60,0x0,0x0,0x0,0x0,0x4d,0x7c,0x6b,0x70,0x0,0x0, + 0x0,0x0,0x4e,0xb6,0x22,0x60,0x0,0x0,0x0,0x0,0x4f,0x5c,0x4d,0x70,0x0,0x0, + 0x0,0x0,0x50,0x96,0x4,0x60,0x0,0x0,0x0,0x0,0x51,0x3c,0x2f,0x70,0x0,0x0, + 0x0,0x0,0x52,0x75,0xe6,0x60,0x0,0x0,0x0,0x0,0x53,0x1c,0x11,0x70,0x0,0x0, + 0x0,0x0,0x54,0x55,0xc8,0x60,0x0,0x0,0x0,0x0,0x54,0xfb,0xf3,0x70,0x0,0x0, + 0x0,0x0,0x56,0x35,0xaa,0x60,0x0,0x0,0x0,0x0,0x56,0xe5,0xf,0xf0,0x0,0x0, + 0x0,0x0,0x58,0x1e,0xc6,0xe0,0x0,0x0,0x0,0x0,0x58,0xc4,0xf1,0xf0,0x0,0x0, + 0x0,0x0,0x59,0xfe,0xa8,0xe0,0x0,0x0,0x0,0x0,0x5a,0xa4,0xd3,0xf0,0x0,0x0, + 0x0,0x0,0x5b,0xde,0x8a,0xe0,0x0,0x0,0x0,0x0,0x5c,0x84,0xb5,0xf0,0x0,0x0, + 0x0,0x0,0x5d,0xbe,0x6c,0xe0,0x0,0x0,0x0,0x0,0x5e,0x64,0x97,0xf0,0x0,0x0, + 0x0,0x0,0x5f,0x9e,0x4e,0xe0,0x0,0x0,0x0,0x0,0x60,0x4d,0xb4,0x70,0x0,0x0, + 0x0,0x0,0x61,0x87,0x6b,0x60,0x0,0x0,0x0,0x0,0x62,0x2d,0x96,0x70,0x0,0x0, + 0x0,0x0,0x63,0x67,0x4d,0x60,0x0,0x0,0x0,0x0,0x64,0xd,0x78,0x70,0x0,0x0, + 0x0,0x0,0x65,0x47,0x2f,0x60,0x0,0x0,0x0,0x0,0x65,0xed,0x5a,0x70,0x0,0x0, + 0x0,0x0,0x67,0x27,0x11,0x60,0x0,0x0,0x0,0x0,0x67,0xcd,0x3c,0x70,0x0,0x0, + 0x0,0x0,0x69,0x6,0xf3,0x60,0x0,0x0,0x0,0x0,0x69,0xad,0x1e,0x70,0x0,0x0, + 0x0,0x0,0x6a,0xe6,0xd5,0x60,0x0,0x0,0x0,0x0,0x6b,0x96,0x3a,0xf0,0x0,0x0, + 0x0,0x0,0x6c,0xcf,0xf1,0xe0,0x0,0x0,0x0,0x0,0x6d,0x76,0x1c,0xf0,0x0,0x0, + 0x0,0x0,0x6e,0xaf,0xd3,0xe0,0x0,0x0,0x0,0x0,0x6f,0x55,0xfe,0xf0,0x0,0x0, + 0x0,0x0,0x70,0x8f,0xb5,0xe0,0x0,0x0,0x0,0x0,0x71,0x35,0xe0,0xf0,0x0,0x0, + 0x0,0x0,0x72,0x6f,0x97,0xe0,0x0,0x0,0x0,0x0,0x73,0x15,0xc2,0xf0,0x0,0x0, + 0x0,0x0,0x74,0x4f,0x79,0xe0,0x0,0x0,0x0,0x0,0x74,0xfe,0xdf,0x70,0x0,0x0, + 0x0,0x0,0x76,0x38,0x96,0x60,0x0,0x0,0x0,0x0,0x76,0xde,0xc1,0x70,0x0,0x0, + 0x0,0x0,0x78,0x18,0x78,0x60,0x0,0x0,0x0,0x0,0x78,0xbe,0xa3,0x70,0x0,0x0, + 0x0,0x0,0x79,0xf8,0x5a,0x60,0x0,0x0,0x0,0x0,0x7a,0x9e,0x85,0x70,0x0,0x0, + 0x0,0x0,0x7b,0xd8,0x3c,0x60,0x0,0x0,0x0,0x0,0x7c,0x7e,0x67,0x70,0x0,0x0, + 0x0,0x0,0x7d,0xb8,0x1e,0x60,0x0,0x0,0x0,0x0,0x7e,0x5e,0x49,0x70,0x0,0x0, + 0x0,0x0,0x7f,0x98,0x0,0x60,0x0,0x1,0x2,0x3,0x4,0x2,0x5,0x2,0x5,0x2, + 0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2, + 0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2, + 0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2, + 0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2, + 0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2, + 0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2, + 0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2, + 0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2, + 0x5,0x2,0xff,0xff,0xac,0x54,0x0,0x0,0xff,0xff,0xab,0xa0,0x0,0x4,0xff,0xff, + 0xb9,0xb0,0x0,0x8,0xff,0xff,0xc7,0xc0,0x1,0xc,0xff,0xff,0xc7,0xc0,0x1,0x10, + 0xff,0xff,0xc7,0xc0,0x1,0x14,0x4c,0x4d,0x54,0x0,0x43,0x53,0x54,0x0,0x45,0x53, + 0x54,0x0,0x45,0x57,0x54,0x0,0x45,0x50,0x54,0x0,0x45,0x44,0x54,0x0,0x0,0x0, + 0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0x45,0x53,0x54,0x35,0x45, + 0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e, 0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Sao_Paulo - 0x0,0x0,0x7,0xdf, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x81,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0x96, - 0xaa,0x72,0xb4,0xb8,0xf,0x49,0xe0,0xb8,0xfd,0x40,0xa0,0xb9,0xf1,0x34,0x30,0xba, - 0xde,0x74,0x20,0xda,0x38,0xae,0x30,0xda,0xeb,0xfa,0x30,0xdc,0x19,0xe1,0xb0,0xdc, - 0xb9,0x59,0x20,0xdd,0xfb,0x15,0x30,0xde,0x9b,0xde,0x20,0xdf,0xdd,0x9a,0x30,0xe0, - 0x54,0x33,0x20,0xf4,0x5a,0x9,0x30,0xf5,0x5,0x5e,0x20,0xf6,0xc0,0x64,0x30,0xf7, - 0xe,0x1e,0xa0,0xf8,0x51,0x2c,0x30,0xf8,0xc7,0xc5,0x20,0xfa,0xa,0xd2,0xb0,0xfa, - 0xa8,0xf8,0xa0,0xfb,0xec,0x6,0x30,0xfc,0x8b,0x7d,0xa0,0x1d,0xc9,0x8e,0x30,0x1e, - 0x78,0xd7,0xa0,0x1f,0xa0,0x35,0xb0,0x20,0x33,0xcf,0xa0,0x21,0x81,0x69,0x30,0x22, - 0xb,0xc8,0xa0,0x23,0x58,0x10,0xb0,0x23,0xe2,0x70,0x20,0x25,0x37,0xf2,0xb0,0x25, - 0xd4,0xc7,0x20,0x27,0x21,0xf,0x30,0x27,0xbd,0xe3,0xa0,0x29,0x0,0xf1,0x30,0x29, - 0x94,0x8b,0x20,0x2a,0xea,0xd,0xb0,0x2b,0x6b,0x32,0xa0,0x2c,0xc0,0xb5,0x30,0x2d, - 0x66,0xc4,0x20,0x2e,0xa0,0x97,0x30,0x2f,0x46,0xa6,0x20,0x30,0x80,0x79,0x30,0x31, - 0x1d,0x4d,0xa0,0x32,0x57,0x20,0xb0,0x33,0x6,0x6a,0x20,0x34,0x38,0x54,0x30,0x34, - 0xf8,0xc1,0x20,0x36,0x20,0x1f,0x30,0x36,0xcf,0x68,0xa0,0x37,0xf6,0xc6,0xb0,0x38, - 0xb8,0x85,0x20,0x39,0xdf,0xe3,0x30,0x3a,0x8f,0x2c,0xa0,0x3b,0xc8,0xff,0xb0,0x3c, - 0x6f,0xe,0xa0,0x3d,0xc4,0x91,0x30,0x3e,0x4e,0xf0,0xa0,0x3f,0x91,0xfe,0x30,0x40, - 0x2e,0xd2,0xa0,0x41,0x86,0xf8,0x30,0x42,0x17,0xef,0x20,0x43,0x51,0xc2,0x30,0x43, - 0xf7,0xd1,0x20,0x45,0x4d,0x53,0xb0,0x45,0xe0,0xed,0xa0,0x47,0x11,0x86,0x30,0x47, - 0xb7,0x95,0x20,0x48,0xfa,0xa2,0xb0,0x49,0x97,0x77,0x20,0x4a,0xda,0x84,0xb0,0x4b, - 0x80,0x93,0xa0,0x4c,0xba,0x66,0xb0,0x4d,0x60,0x75,0xa0,0x4e,0x9a,0x48,0xb0,0x4f, - 0x49,0x92,0x20,0x50,0x83,0x65,0x30,0x51,0x20,0x39,0xa0,0x52,0x63,0x47,0x30,0x53, - 0x0,0x1b,0xa0,0x54,0x43,0x29,0x30,0x54,0xe9,0x38,0x20,0x56,0x23,0xb,0x30,0x56, - 0xc9,0x1a,0x20,0x58,0x2,0xed,0x30,0x58,0xa8,0xfc,0x20,0x59,0xe2,0xcf,0x30,0x5a, - 0x88,0xde,0x20,0x5b,0xcb,0xeb,0xb0,0x5c,0x68,0xc0,0x20,0x5d,0xab,0xcd,0xb0,0x5e, - 0x48,0xa2,0x20,0x5f,0x8b,0xaf,0xb0,0x60,0x31,0xbe,0xa0,0x61,0x6b,0x91,0xb0,0x62, - 0x11,0xa0,0xa0,0x63,0x4b,0x73,0xb0,0x63,0xfa,0xbd,0x20,0x65,0x2b,0x55,0xb0,0x65, - 0xd1,0x64,0xa0,0x67,0x14,0x72,0x30,0x67,0xb1,0x46,0xa0,0x68,0xf4,0x54,0x30,0x69, - 0x9a,0x63,0x20,0x6a,0xd4,0x36,0x30,0x6b,0x7a,0x45,0x20,0x6c,0xb4,0x18,0x30,0x6d, - 0x5a,0x27,0x20,0x6e,0x93,0xfa,0x30,0x6f,0x3a,0x9,0x20,0x70,0x7d,0x16,0xb0,0x71, - 0x19,0xeb,0x20,0x72,0x5c,0xf8,0xb0,0x72,0xf9,0xcd,0x20,0x74,0x3c,0xda,0xb0,0x74, - 0xd9,0xaf,0x20,0x76,0x1c,0xbc,0xb0,0x76,0xc2,0xcb,0xa0,0x77,0xfc,0x9e,0xb0,0x78, - 0xab,0xe8,0x20,0x79,0xdc,0x80,0xb0,0x7a,0x82,0x8f,0xa0,0x7b,0xc5,0x9d,0x30,0x7c, - 0x62,0x71,0xa0,0x7d,0xa5,0x7f,0x30,0x7e,0x4b,0x8e,0x20,0x7f,0x85,0x61,0x30,0x0, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0xff,0xff,0xd4,0x4c,0x0,0x0,0xff,0xff,0xe3,0xe0,0x1,0x4,0xff,0xff,0xd5,0xd0, - 0x0,0x9,0x4c,0x4d,0x54,0x0,0x42,0x52,0x53,0x54,0x0,0x42,0x52,0x54,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0, - 0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0x0,0x0,0x0,0x3,0x0,0x0,0x0, - 0xd,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x96,0xaa,0x72, - 0xb4,0xff,0xff,0xff,0xff,0xb8,0xf,0x49,0xe0,0xff,0xff,0xff,0xff,0xb8,0xfd,0x40, - 0xa0,0xff,0xff,0xff,0xff,0xb9,0xf1,0x34,0x30,0xff,0xff,0xff,0xff,0xba,0xde,0x74, - 0x20,0xff,0xff,0xff,0xff,0xda,0x38,0xae,0x30,0xff,0xff,0xff,0xff,0xda,0xeb,0xfa, - 0x30,0xff,0xff,0xff,0xff,0xdc,0x19,0xe1,0xb0,0xff,0xff,0xff,0xff,0xdc,0xb9,0x59, - 0x20,0xff,0xff,0xff,0xff,0xdd,0xfb,0x15,0x30,0xff,0xff,0xff,0xff,0xde,0x9b,0xde, - 0x20,0xff,0xff,0xff,0xff,0xdf,0xdd,0x9a,0x30,0xff,0xff,0xff,0xff,0xe0,0x54,0x33, - 0x20,0xff,0xff,0xff,0xff,0xf4,0x5a,0x9,0x30,0xff,0xff,0xff,0xff,0xf5,0x5,0x5e, - 0x20,0xff,0xff,0xff,0xff,0xf6,0xc0,0x64,0x30,0xff,0xff,0xff,0xff,0xf7,0xe,0x1e, - 0xa0,0xff,0xff,0xff,0xff,0xf8,0x51,0x2c,0x30,0xff,0xff,0xff,0xff,0xf8,0xc7,0xc5, - 0x20,0xff,0xff,0xff,0xff,0xfa,0xa,0xd2,0xb0,0xff,0xff,0xff,0xff,0xfa,0xa8,0xf8, - 0xa0,0xff,0xff,0xff,0xff,0xfb,0xec,0x6,0x30,0xff,0xff,0xff,0xff,0xfc,0x8b,0x7d, - 0xa0,0x0,0x0,0x0,0x0,0x1d,0xc9,0x8e,0x30,0x0,0x0,0x0,0x0,0x1e,0x78,0xd7, - 0xa0,0x0,0x0,0x0,0x0,0x1f,0xa0,0x35,0xb0,0x0,0x0,0x0,0x0,0x20,0x33,0xcf, - 0xa0,0x0,0x0,0x0,0x0,0x21,0x81,0x69,0x30,0x0,0x0,0x0,0x0,0x22,0xb,0xc8, - 0xa0,0x0,0x0,0x0,0x0,0x23,0x58,0x10,0xb0,0x0,0x0,0x0,0x0,0x23,0xe2,0x70, - 0x20,0x0,0x0,0x0,0x0,0x25,0x37,0xf2,0xb0,0x0,0x0,0x0,0x0,0x25,0xd4,0xc7, - 0x20,0x0,0x0,0x0,0x0,0x27,0x21,0xf,0x30,0x0,0x0,0x0,0x0,0x27,0xbd,0xe3, - 0xa0,0x0,0x0,0x0,0x0,0x29,0x0,0xf1,0x30,0x0,0x0,0x0,0x0,0x29,0x94,0x8b, - 0x20,0x0,0x0,0x0,0x0,0x2a,0xea,0xd,0xb0,0x0,0x0,0x0,0x0,0x2b,0x6b,0x32, - 0xa0,0x0,0x0,0x0,0x0,0x2c,0xc0,0xb5,0x30,0x0,0x0,0x0,0x0,0x2d,0x66,0xc4, - 0x20,0x0,0x0,0x0,0x0,0x2e,0xa0,0x97,0x30,0x0,0x0,0x0,0x0,0x2f,0x46,0xa6, - 0x20,0x0,0x0,0x0,0x0,0x30,0x80,0x79,0x30,0x0,0x0,0x0,0x0,0x31,0x1d,0x4d, - 0xa0,0x0,0x0,0x0,0x0,0x32,0x57,0x20,0xb0,0x0,0x0,0x0,0x0,0x33,0x6,0x6a, - 0x20,0x0,0x0,0x0,0x0,0x34,0x38,0x54,0x30,0x0,0x0,0x0,0x0,0x34,0xf8,0xc1, - 0x20,0x0,0x0,0x0,0x0,0x36,0x20,0x1f,0x30,0x0,0x0,0x0,0x0,0x36,0xcf,0x68, - 0xa0,0x0,0x0,0x0,0x0,0x37,0xf6,0xc6,0xb0,0x0,0x0,0x0,0x0,0x38,0xb8,0x85, - 0x20,0x0,0x0,0x0,0x0,0x39,0xdf,0xe3,0x30,0x0,0x0,0x0,0x0,0x3a,0x8f,0x2c, - 0xa0,0x0,0x0,0x0,0x0,0x3b,0xc8,0xff,0xb0,0x0,0x0,0x0,0x0,0x3c,0x6f,0xe, - 0xa0,0x0,0x0,0x0,0x0,0x3d,0xc4,0x91,0x30,0x0,0x0,0x0,0x0,0x3e,0x4e,0xf0, - 0xa0,0x0,0x0,0x0,0x0,0x3f,0x91,0xfe,0x30,0x0,0x0,0x0,0x0,0x40,0x2e,0xd2, - 0xa0,0x0,0x0,0x0,0x0,0x41,0x86,0xf8,0x30,0x0,0x0,0x0,0x0,0x42,0x17,0xef, - 0x20,0x0,0x0,0x0,0x0,0x43,0x51,0xc2,0x30,0x0,0x0,0x0,0x0,0x43,0xf7,0xd1, - 0x20,0x0,0x0,0x0,0x0,0x45,0x4d,0x53,0xb0,0x0,0x0,0x0,0x0,0x45,0xe0,0xed, - 0xa0,0x0,0x0,0x0,0x0,0x47,0x11,0x86,0x30,0x0,0x0,0x0,0x0,0x47,0xb7,0x95, - 0x20,0x0,0x0,0x0,0x0,0x48,0xfa,0xa2,0xb0,0x0,0x0,0x0,0x0,0x49,0x97,0x77, - 0x20,0x0,0x0,0x0,0x0,0x4a,0xda,0x84,0xb0,0x0,0x0,0x0,0x0,0x4b,0x80,0x93, - 0xa0,0x0,0x0,0x0,0x0,0x4c,0xba,0x66,0xb0,0x0,0x0,0x0,0x0,0x4d,0x60,0x75, - 0xa0,0x0,0x0,0x0,0x0,0x4e,0x9a,0x48,0xb0,0x0,0x0,0x0,0x0,0x4f,0x49,0x92, - 0x20,0x0,0x0,0x0,0x0,0x50,0x83,0x65,0x30,0x0,0x0,0x0,0x0,0x51,0x20,0x39, - 0xa0,0x0,0x0,0x0,0x0,0x52,0x63,0x47,0x30,0x0,0x0,0x0,0x0,0x53,0x0,0x1b, - 0xa0,0x0,0x0,0x0,0x0,0x54,0x43,0x29,0x30,0x0,0x0,0x0,0x0,0x54,0xe9,0x38, - 0x20,0x0,0x0,0x0,0x0,0x56,0x23,0xb,0x30,0x0,0x0,0x0,0x0,0x56,0xc9,0x1a, - 0x20,0x0,0x0,0x0,0x0,0x58,0x2,0xed,0x30,0x0,0x0,0x0,0x0,0x58,0xa8,0xfc, - 0x20,0x0,0x0,0x0,0x0,0x59,0xe2,0xcf,0x30,0x0,0x0,0x0,0x0,0x5a,0x88,0xde, - 0x20,0x0,0x0,0x0,0x0,0x5b,0xcb,0xeb,0xb0,0x0,0x0,0x0,0x0,0x5c,0x68,0xc0, - 0x20,0x0,0x0,0x0,0x0,0x5d,0xab,0xcd,0xb0,0x0,0x0,0x0,0x0,0x5e,0x48,0xa2, - 0x20,0x0,0x0,0x0,0x0,0x5f,0x8b,0xaf,0xb0,0x0,0x0,0x0,0x0,0x60,0x31,0xbe, - 0xa0,0x0,0x0,0x0,0x0,0x61,0x6b,0x91,0xb0,0x0,0x0,0x0,0x0,0x62,0x11,0xa0, - 0xa0,0x0,0x0,0x0,0x0,0x63,0x4b,0x73,0xb0,0x0,0x0,0x0,0x0,0x63,0xfa,0xbd, - 0x20,0x0,0x0,0x0,0x0,0x65,0x2b,0x55,0xb0,0x0,0x0,0x0,0x0,0x65,0xd1,0x64, - 0xa0,0x0,0x0,0x0,0x0,0x67,0x14,0x72,0x30,0x0,0x0,0x0,0x0,0x67,0xb1,0x46, - 0xa0,0x0,0x0,0x0,0x0,0x68,0xf4,0x54,0x30,0x0,0x0,0x0,0x0,0x69,0x9a,0x63, - 0x20,0x0,0x0,0x0,0x0,0x6a,0xd4,0x36,0x30,0x0,0x0,0x0,0x0,0x6b,0x7a,0x45, - 0x20,0x0,0x0,0x0,0x0,0x6c,0xb4,0x18,0x30,0x0,0x0,0x0,0x0,0x6d,0x5a,0x27, - 0x20,0x0,0x0,0x0,0x0,0x6e,0x93,0xfa,0x30,0x0,0x0,0x0,0x0,0x6f,0x3a,0x9, - 0x20,0x0,0x0,0x0,0x0,0x70,0x7d,0x16,0xb0,0x0,0x0,0x0,0x0,0x71,0x19,0xeb, - 0x20,0x0,0x0,0x0,0x0,0x72,0x5c,0xf8,0xb0,0x0,0x0,0x0,0x0,0x72,0xf9,0xcd, - 0x20,0x0,0x0,0x0,0x0,0x74,0x3c,0xda,0xb0,0x0,0x0,0x0,0x0,0x74,0xd9,0xaf, - 0x20,0x0,0x0,0x0,0x0,0x76,0x1c,0xbc,0xb0,0x0,0x0,0x0,0x0,0x76,0xc2,0xcb, - 0xa0,0x0,0x0,0x0,0x0,0x77,0xfc,0x9e,0xb0,0x0,0x0,0x0,0x0,0x78,0xab,0xe8, - 0x20,0x0,0x0,0x0,0x0,0x79,0xdc,0x80,0xb0,0x0,0x0,0x0,0x0,0x7a,0x82,0x8f, - 0xa0,0x0,0x0,0x0,0x0,0x7b,0xc5,0x9d,0x30,0x0,0x0,0x0,0x0,0x7c,0x62,0x71, - 0xa0,0x0,0x0,0x0,0x0,0x7d,0xa5,0x7f,0x30,0x0,0x0,0x0,0x0,0x7e,0x4b,0x8e, - 0x20,0x0,0x0,0x0,0x0,0x7f,0x85,0x61,0x30,0x0,0x0,0x0,0x0,0x80,0x2b,0x70, - 0x20,0x0,0x0,0x0,0x0,0x81,0x65,0x43,0x30,0x0,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0xff,0xff,0xd4,0x4c, - 0x0,0x0,0xff,0xff,0xe3,0xe0,0x1,0x4,0xff,0xff,0xd5,0xd0,0x0,0x9,0x4c,0x4d, - 0x54,0x0,0x42,0x52,0x53,0x54,0x0,0x42,0x52,0x54,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xa,0x42,0x52,0x54,0x33,0x42,0x52,0x53,0x54,0x2c,0x4d,0x31,0x30,0x2e,0x33, - 0x2e,0x30,0x2f,0x30,0x2c,0x4d,0x32,0x2e,0x33,0x2e,0x30,0x2f,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/St_Kitts + // /home/konrad/src/smoke/tzone/zoneinfo/America/Anguilla 0x0,0x0,0x0,0xaa, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, @@ -29438,236 +25753,383 @@ static const unsigned char qt_resource_data[] = { 0x0,0xff,0xff,0xff,0xff,0x93,0x37,0x33,0xac,0x0,0x1,0xff,0xff,0xc6,0x54,0x0, 0x0,0xff,0xff,0xc7,0xc0,0x0,0x4,0x4c,0x4d,0x54,0x0,0x41,0x53,0x54,0x0,0x0, 0x0,0x0,0x0,0xa,0x41,0x53,0x54,0x34,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Mexico_City - 0x0,0x0,0x6,0x52, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x63,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0xa5, - 0xb6,0xe8,0x70,0xaf,0xf2,0x6e,0xe0,0xb6,0x66,0x56,0x60,0xb7,0x43,0xd2,0x60,0xb8, - 0xc,0x36,0x60,0xb8,0xfd,0x86,0xf0,0xc5,0xde,0xb0,0x60,0xc6,0x97,0x34,0x50,0xc9, - 0x55,0xf1,0xe0,0xc9,0xea,0xdd,0x50,0xcf,0x2,0xc6,0xe0,0xcf,0xb7,0x56,0x50,0xda, - 0x99,0x15,0xe0,0xdb,0x76,0x83,0xd0,0x31,0x67,0x76,0x0,0x32,0x73,0x8,0x70,0x33, - 0x47,0x58,0x0,0x34,0x52,0xea,0x70,0x35,0x27,0x3a,0x0,0x36,0x32,0xcc,0x70,0x37, - 0x7,0x1c,0x0,0x38,0x1b,0xe8,0xf0,0x38,0xe6,0xfe,0x0,0x39,0xfb,0xca,0xf0,0x3a, - 0xf5,0x4,0x80,0x3b,0xb6,0xc2,0xf0,0x3c,0xaf,0xfc,0x80,0x3d,0xbb,0x8e,0xf0,0x3e, - 0x8f,0xde,0x80,0x3f,0x9b,0x70,0xf0,0x40,0x6f,0xc0,0x80,0x41,0x84,0x8d,0x70,0x42, - 0x4f,0xa2,0x80,0x43,0x64,0x6f,0x70,0x44,0x2f,0x84,0x80,0x45,0x44,0x51,0x70,0x46, - 0xf,0x66,0x80,0x47,0x24,0x33,0x70,0x47,0xf8,0x83,0x0,0x49,0x4,0x15,0x70,0x49, - 0xd8,0x65,0x0,0x4a,0xe3,0xf7,0x70,0x4b,0xb8,0x47,0x0,0x4c,0xcd,0x13,0xf0,0x4d, - 0x98,0x29,0x0,0x4e,0xac,0xf5,0xf0,0x4f,0x78,0xb,0x0,0x50,0x8c,0xd7,0xf0,0x51, - 0x61,0x27,0x80,0x52,0x6c,0xb9,0xf0,0x53,0x41,0x9,0x80,0x54,0x4c,0x9b,0xf0,0x55, - 0x20,0xeb,0x80,0x56,0x2c,0x7d,0xf0,0x57,0x0,0xcd,0x80,0x58,0x15,0x9a,0x70,0x58, - 0xe0,0xaf,0x80,0x59,0xf5,0x7c,0x70,0x5a,0xc0,0x91,0x80,0x5b,0xd5,0x5e,0x70,0x5c, - 0xa9,0xae,0x0,0x5d,0xb5,0x40,0x70,0x5e,0x89,0x90,0x0,0x5f,0x95,0x22,0x70,0x60, - 0x69,0x72,0x0,0x61,0x7e,0x3e,0xf0,0x62,0x49,0x54,0x0,0x63,0x5e,0x20,0xf0,0x64, - 0x29,0x36,0x0,0x65,0x3e,0x2,0xf0,0x66,0x12,0x52,0x80,0x67,0x1d,0xe4,0xf0,0x67, - 0xf2,0x34,0x80,0x68,0xfd,0xc6,0xf0,0x69,0xd2,0x16,0x80,0x6a,0xdd,0xa8,0xf0,0x6b, - 0xb1,0xf8,0x80,0x6c,0xc6,0xc5,0x70,0x6d,0x91,0xda,0x80,0x6e,0xa6,0xa7,0x70,0x6f, - 0x71,0xbc,0x80,0x70,0x86,0x89,0x70,0x71,0x5a,0xd9,0x0,0x72,0x66,0x6b,0x70,0x73, - 0x3a,0xbb,0x0,0x74,0x46,0x4d,0x70,0x75,0x1a,0x9d,0x0,0x76,0x2f,0x69,0xf0,0x76, - 0xfa,0x7f,0x0,0x78,0xf,0x4b,0xf0,0x78,0xda,0x61,0x0,0x79,0xef,0x2d,0xf0,0x7a, - 0xba,0x43,0x0,0x7b,0xcf,0xf,0xf0,0x7c,0xa3,0x5f,0x80,0x7d,0xae,0xf1,0xf0,0x7e, - 0x83,0x41,0x80,0x7f,0x8e,0xd3,0xf0,0x0,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x2, - 0x3,0x2,0x4,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0xff,0xff,0xa3,0xc,0x0,0x0, - 0xff,0xff,0x9d,0x90,0x0,0x4,0xff,0xff,0xab,0xa0,0x0,0x8,0xff,0xff,0xb9,0xb0, - 0x1,0xc,0xff,0xff,0xb9,0xb0,0x1,0x10,0x4c,0x4d,0x54,0x0,0x4d,0x53,0x54,0x0, - 0x43,0x53,0x54,0x0,0x43,0x44,0x54,0x0,0x43,0x57,0x54,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0, - 0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x63,0x0,0x0,0x0,0x5,0x0,0x0, - 0x0,0x14,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xa5,0xb6, - 0xe8,0x70,0xff,0xff,0xff,0xff,0xaf,0xf2,0x6e,0xe0,0xff,0xff,0xff,0xff,0xb6,0x66, - 0x56,0x60,0xff,0xff,0xff,0xff,0xb7,0x43,0xd2,0x60,0xff,0xff,0xff,0xff,0xb8,0xc, - 0x36,0x60,0xff,0xff,0xff,0xff,0xb8,0xfd,0x86,0xf0,0xff,0xff,0xff,0xff,0xc5,0xde, - 0xb0,0x60,0xff,0xff,0xff,0xff,0xc6,0x97,0x34,0x50,0xff,0xff,0xff,0xff,0xc9,0x55, - 0xf1,0xe0,0xff,0xff,0xff,0xff,0xc9,0xea,0xdd,0x50,0xff,0xff,0xff,0xff,0xcf,0x2, - 0xc6,0xe0,0xff,0xff,0xff,0xff,0xcf,0xb7,0x56,0x50,0xff,0xff,0xff,0xff,0xda,0x99, - 0x15,0xe0,0xff,0xff,0xff,0xff,0xdb,0x76,0x83,0xd0,0x0,0x0,0x0,0x0,0x31,0x67, - 0x76,0x0,0x0,0x0,0x0,0x0,0x32,0x73,0x8,0x70,0x0,0x0,0x0,0x0,0x33,0x47, - 0x58,0x0,0x0,0x0,0x0,0x0,0x34,0x52,0xea,0x70,0x0,0x0,0x0,0x0,0x35,0x27, - 0x3a,0x0,0x0,0x0,0x0,0x0,0x36,0x32,0xcc,0x70,0x0,0x0,0x0,0x0,0x37,0x7, - 0x1c,0x0,0x0,0x0,0x0,0x0,0x38,0x1b,0xe8,0xf0,0x0,0x0,0x0,0x0,0x38,0xe6, - 0xfe,0x0,0x0,0x0,0x0,0x0,0x39,0xfb,0xca,0xf0,0x0,0x0,0x0,0x0,0x3a,0xf5, - 0x4,0x80,0x0,0x0,0x0,0x0,0x3b,0xb6,0xc2,0xf0,0x0,0x0,0x0,0x0,0x3c,0xaf, - 0xfc,0x80,0x0,0x0,0x0,0x0,0x3d,0xbb,0x8e,0xf0,0x0,0x0,0x0,0x0,0x3e,0x8f, - 0xde,0x80,0x0,0x0,0x0,0x0,0x3f,0x9b,0x70,0xf0,0x0,0x0,0x0,0x0,0x40,0x6f, - 0xc0,0x80,0x0,0x0,0x0,0x0,0x41,0x84,0x8d,0x70,0x0,0x0,0x0,0x0,0x42,0x4f, - 0xa2,0x80,0x0,0x0,0x0,0x0,0x43,0x64,0x6f,0x70,0x0,0x0,0x0,0x0,0x44,0x2f, - 0x84,0x80,0x0,0x0,0x0,0x0,0x45,0x44,0x51,0x70,0x0,0x0,0x0,0x0,0x46,0xf, - 0x66,0x80,0x0,0x0,0x0,0x0,0x47,0x24,0x33,0x70,0x0,0x0,0x0,0x0,0x47,0xf8, - 0x83,0x0,0x0,0x0,0x0,0x0,0x49,0x4,0x15,0x70,0x0,0x0,0x0,0x0,0x49,0xd8, - 0x65,0x0,0x0,0x0,0x0,0x0,0x4a,0xe3,0xf7,0x70,0x0,0x0,0x0,0x0,0x4b,0xb8, - 0x47,0x0,0x0,0x0,0x0,0x0,0x4c,0xcd,0x13,0xf0,0x0,0x0,0x0,0x0,0x4d,0x98, - 0x29,0x0,0x0,0x0,0x0,0x0,0x4e,0xac,0xf5,0xf0,0x0,0x0,0x0,0x0,0x4f,0x78, - 0xb,0x0,0x0,0x0,0x0,0x0,0x50,0x8c,0xd7,0xf0,0x0,0x0,0x0,0x0,0x51,0x61, - 0x27,0x80,0x0,0x0,0x0,0x0,0x52,0x6c,0xb9,0xf0,0x0,0x0,0x0,0x0,0x53,0x41, - 0x9,0x80,0x0,0x0,0x0,0x0,0x54,0x4c,0x9b,0xf0,0x0,0x0,0x0,0x0,0x55,0x20, - 0xeb,0x80,0x0,0x0,0x0,0x0,0x56,0x2c,0x7d,0xf0,0x0,0x0,0x0,0x0,0x57,0x0, - 0xcd,0x80,0x0,0x0,0x0,0x0,0x58,0x15,0x9a,0x70,0x0,0x0,0x0,0x0,0x58,0xe0, - 0xaf,0x80,0x0,0x0,0x0,0x0,0x59,0xf5,0x7c,0x70,0x0,0x0,0x0,0x0,0x5a,0xc0, - 0x91,0x80,0x0,0x0,0x0,0x0,0x5b,0xd5,0x5e,0x70,0x0,0x0,0x0,0x0,0x5c,0xa9, - 0xae,0x0,0x0,0x0,0x0,0x0,0x5d,0xb5,0x40,0x70,0x0,0x0,0x0,0x0,0x5e,0x89, - 0x90,0x0,0x0,0x0,0x0,0x0,0x5f,0x95,0x22,0x70,0x0,0x0,0x0,0x0,0x60,0x69, - 0x72,0x0,0x0,0x0,0x0,0x0,0x61,0x7e,0x3e,0xf0,0x0,0x0,0x0,0x0,0x62,0x49, - 0x54,0x0,0x0,0x0,0x0,0x0,0x63,0x5e,0x20,0xf0,0x0,0x0,0x0,0x0,0x64,0x29, - 0x36,0x0,0x0,0x0,0x0,0x0,0x65,0x3e,0x2,0xf0,0x0,0x0,0x0,0x0,0x66,0x12, - 0x52,0x80,0x0,0x0,0x0,0x0,0x67,0x1d,0xe4,0xf0,0x0,0x0,0x0,0x0,0x67,0xf2, - 0x34,0x80,0x0,0x0,0x0,0x0,0x68,0xfd,0xc6,0xf0,0x0,0x0,0x0,0x0,0x69,0xd2, - 0x16,0x80,0x0,0x0,0x0,0x0,0x6a,0xdd,0xa8,0xf0,0x0,0x0,0x0,0x0,0x6b,0xb1, - 0xf8,0x80,0x0,0x0,0x0,0x0,0x6c,0xc6,0xc5,0x70,0x0,0x0,0x0,0x0,0x6d,0x91, - 0xda,0x80,0x0,0x0,0x0,0x0,0x6e,0xa6,0xa7,0x70,0x0,0x0,0x0,0x0,0x6f,0x71, - 0xbc,0x80,0x0,0x0,0x0,0x0,0x70,0x86,0x89,0x70,0x0,0x0,0x0,0x0,0x71,0x5a, - 0xd9,0x0,0x0,0x0,0x0,0x0,0x72,0x66,0x6b,0x70,0x0,0x0,0x0,0x0,0x73,0x3a, - 0xbb,0x0,0x0,0x0,0x0,0x0,0x74,0x46,0x4d,0x70,0x0,0x0,0x0,0x0,0x75,0x1a, - 0x9d,0x0,0x0,0x0,0x0,0x0,0x76,0x2f,0x69,0xf0,0x0,0x0,0x0,0x0,0x76,0xfa, - 0x7f,0x0,0x0,0x0,0x0,0x0,0x78,0xf,0x4b,0xf0,0x0,0x0,0x0,0x0,0x78,0xda, - 0x61,0x0,0x0,0x0,0x0,0x0,0x79,0xef,0x2d,0xf0,0x0,0x0,0x0,0x0,0x7a,0xba, - 0x43,0x0,0x0,0x0,0x0,0x0,0x7b,0xcf,0xf,0xf0,0x0,0x0,0x0,0x0,0x7c,0xa3, - 0x5f,0x80,0x0,0x0,0x0,0x0,0x7d,0xae,0xf1,0xf0,0x0,0x0,0x0,0x0,0x7e,0x83, - 0x41,0x80,0x0,0x0,0x0,0x0,0x7f,0x8e,0xd3,0xf0,0x0,0x1,0x2,0x1,0x2,0x1, - 0x2,0x3,0x2,0x3,0x2,0x4,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0xff,0xff,0xa3, - 0xc,0x0,0x0,0xff,0xff,0x9d,0x90,0x0,0x4,0xff,0xff,0xab,0xa0,0x0,0x8,0xff, - 0xff,0xb9,0xb0,0x1,0xc,0xff,0xff,0xb9,0xb0,0x1,0x10,0x4c,0x4d,0x54,0x0,0x4d, - 0x53,0x54,0x0,0x43,0x53,0x54,0x0,0x43,0x44,0x54,0x0,0x43,0x57,0x54,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x43,0x53,0x54,0x36,0x43,0x44, - 0x54,0x2c,0x4d,0x34,0x2e,0x31,0x2e,0x30,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30, - 0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Inuvik - 0x0,0x0,0x7,0x88, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Louisville + 0x0,0x0,0xa,0xdd, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x79,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x15,0x80,0x0,0x0,0x0,0xe0, - 0x6,0x4e,0x80,0xf7,0x2f,0x68,0x80,0xf8,0x28,0x94,0x0,0x11,0x89,0x90,0x20,0x13, - 0x69,0x64,0x10,0x14,0x59,0x47,0x0,0x15,0x49,0x46,0x10,0x16,0x39,0x29,0x0,0x17, - 0x29,0x28,0x10,0x18,0x22,0x45,0x80,0x19,0x9,0xa,0x10,0x1a,0x2,0x27,0x80,0x1a, - 0xf2,0x26,0x90,0x1b,0xe2,0x9,0x80,0x1c,0xd2,0x8,0x90,0x1d,0xc1,0xeb,0x80,0x1e, - 0xb1,0xea,0x90,0x1f,0xa1,0xcd,0x80,0x20,0x76,0x1d,0x10,0x21,0x81,0xaf,0x80,0x22, - 0x55,0xff,0x10,0x23,0x6a,0xcc,0x0,0x24,0x35,0xe1,0x10,0x25,0x4a,0xae,0x0,0x26, - 0x15,0xc3,0x10,0x27,0x2a,0x90,0x0,0x27,0xfe,0xdf,0x90,0x29,0xa,0x72,0x0,0x29, - 0xde,0xc1,0x90,0x2a,0xea,0x54,0x0,0x2b,0xbe,0xa3,0x90,0x2c,0xd3,0x70,0x80,0x2d, - 0x9e,0x85,0x90,0x2e,0xb3,0x52,0x80,0x2f,0x7e,0x67,0x90,0x30,0x93,0x34,0x80,0x31, - 0x67,0x84,0x10,0x32,0x73,0x16,0x80,0x33,0x47,0x66,0x10,0x34,0x52,0xf8,0x80,0x35, - 0x27,0x48,0x10,0x36,0x32,0xda,0x80,0x37,0x7,0x2a,0x10,0x38,0x1b,0xf7,0x0,0x38, - 0xe7,0xc,0x10,0x39,0xfb,0xd9,0x0,0x3a,0xc6,0xee,0x10,0x3b,0xdb,0xbb,0x0,0x3c, - 0xb0,0xa,0x90,0x3d,0xbb,0x9d,0x0,0x3e,0x8f,0xec,0x90,0x3f,0x9b,0x7f,0x0,0x40, - 0x6f,0xce,0x90,0x41,0x84,0x9b,0x80,0x42,0x4f,0xb0,0x90,0x43,0x64,0x7d,0x80,0x44, - 0x2f,0x92,0x90,0x45,0x44,0x5f,0x80,0x45,0xf3,0xc5,0x10,0x47,0x2d,0x7c,0x0,0x47, - 0xd3,0xa7,0x10,0x49,0xd,0x5e,0x0,0x49,0xb3,0x89,0x10,0x4a,0xed,0x40,0x0,0x4b, - 0x9c,0xa5,0x90,0x4c,0xd6,0x5c,0x80,0x4d,0x7c,0x87,0x90,0x4e,0xb6,0x3e,0x80,0x4f, - 0x5c,0x69,0x90,0x50,0x96,0x20,0x80,0x51,0x3c,0x4b,0x90,0x52,0x76,0x2,0x80,0x53, - 0x1c,0x2d,0x90,0x54,0x55,0xe4,0x80,0x54,0xfc,0xf,0x90,0x56,0x35,0xc6,0x80,0x56, - 0xe5,0x2c,0x10,0x58,0x1e,0xe3,0x0,0x58,0xc5,0xe,0x10,0x59,0xfe,0xc5,0x0,0x5a, - 0xa4,0xf0,0x10,0x5b,0xde,0xa7,0x0,0x5c,0x84,0xd2,0x10,0x5d,0xbe,0x89,0x0,0x5e, - 0x64,0xb4,0x10,0x5f,0x9e,0x6b,0x0,0x60,0x4d,0xd0,0x90,0x61,0x87,0x87,0x80,0x62, - 0x2d,0xb2,0x90,0x63,0x67,0x69,0x80,0x64,0xd,0x94,0x90,0x65,0x47,0x4b,0x80,0x65, - 0xed,0x76,0x90,0x67,0x27,0x2d,0x80,0x67,0xcd,0x58,0x90,0x69,0x7,0xf,0x80,0x69, - 0xad,0x3a,0x90,0x6a,0xe6,0xf1,0x80,0x6b,0x96,0x57,0x10,0x6c,0xd0,0xe,0x0,0x6d, - 0x76,0x39,0x10,0x6e,0xaf,0xf0,0x0,0x6f,0x56,0x1b,0x10,0x70,0x8f,0xd2,0x0,0x71, - 0x35,0xfd,0x10,0x72,0x6f,0xb4,0x0,0x73,0x15,0xdf,0x10,0x74,0x4f,0x96,0x0,0x74, - 0xfe,0xfb,0x90,0x76,0x38,0xb2,0x80,0x76,0xde,0xdd,0x90,0x78,0x18,0x94,0x80,0x78, - 0xbe,0xbf,0x90,0x79,0xf8,0x76,0x80,0x7a,0x9e,0xa1,0x90,0x7b,0xd8,0x58,0x80,0x7c, - 0x7e,0x83,0x90,0x7d,0xb8,0x3a,0x80,0x7e,0x5e,0x65,0x90,0x7f,0x98,0x1c,0x80,0x0, - 0x2,0x1,0x2,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff, - 0xab,0xa0,0x1,0x4,0xff,0xff,0x8f,0x80,0x0,0x9,0xff,0xff,0x9d,0x90,0x0,0xd, - 0xff,0xff,0xab,0xa0,0x1,0x11,0x2d,0x30,0x30,0x0,0x50,0x44,0x44,0x54,0x0,0x50, - 0x53,0x54,0x0,0x4d,0x53,0x54,0x0,0x4d,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0, - 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x79,0x0,0x0,0x0,0x5,0x0,0x0,0x0, - 0x15,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xe0,0x6,0x4e, - 0x80,0xff,0xff,0xff,0xff,0xf7,0x2f,0x68,0x80,0xff,0xff,0xff,0xff,0xf8,0x28,0x94, - 0x0,0x0,0x0,0x0,0x0,0x11,0x89,0x90,0x20,0x0,0x0,0x0,0x0,0x13,0x69,0x64, - 0x10,0x0,0x0,0x0,0x0,0x14,0x59,0x47,0x0,0x0,0x0,0x0,0x0,0x15,0x49,0x46, - 0x10,0x0,0x0,0x0,0x0,0x16,0x39,0x29,0x0,0x0,0x0,0x0,0x0,0x17,0x29,0x28, - 0x10,0x0,0x0,0x0,0x0,0x18,0x22,0x45,0x80,0x0,0x0,0x0,0x0,0x19,0x9,0xa, - 0x10,0x0,0x0,0x0,0x0,0x1a,0x2,0x27,0x80,0x0,0x0,0x0,0x0,0x1a,0xf2,0x26, - 0x90,0x0,0x0,0x0,0x0,0x1b,0xe2,0x9,0x80,0x0,0x0,0x0,0x0,0x1c,0xd2,0x8, - 0x90,0x0,0x0,0x0,0x0,0x1d,0xc1,0xeb,0x80,0x0,0x0,0x0,0x0,0x1e,0xb1,0xea, - 0x90,0x0,0x0,0x0,0x0,0x1f,0xa1,0xcd,0x80,0x0,0x0,0x0,0x0,0x20,0x76,0x1d, - 0x10,0x0,0x0,0x0,0x0,0x21,0x81,0xaf,0x80,0x0,0x0,0x0,0x0,0x22,0x55,0xff, - 0x10,0x0,0x0,0x0,0x0,0x23,0x6a,0xcc,0x0,0x0,0x0,0x0,0x0,0x24,0x35,0xe1, - 0x10,0x0,0x0,0x0,0x0,0x25,0x4a,0xae,0x0,0x0,0x0,0x0,0x0,0x26,0x15,0xc3, - 0x10,0x0,0x0,0x0,0x0,0x27,0x2a,0x90,0x0,0x0,0x0,0x0,0x0,0x27,0xfe,0xdf, - 0x90,0x0,0x0,0x0,0x0,0x29,0xa,0x72,0x0,0x0,0x0,0x0,0x0,0x29,0xde,0xc1, - 0x90,0x0,0x0,0x0,0x0,0x2a,0xea,0x54,0x0,0x0,0x0,0x0,0x0,0x2b,0xbe,0xa3, - 0x90,0x0,0x0,0x0,0x0,0x2c,0xd3,0x70,0x80,0x0,0x0,0x0,0x0,0x2d,0x9e,0x85, - 0x90,0x0,0x0,0x0,0x0,0x2e,0xb3,0x52,0x80,0x0,0x0,0x0,0x0,0x2f,0x7e,0x67, - 0x90,0x0,0x0,0x0,0x0,0x30,0x93,0x34,0x80,0x0,0x0,0x0,0x0,0x31,0x67,0x84, - 0x10,0x0,0x0,0x0,0x0,0x32,0x73,0x16,0x80,0x0,0x0,0x0,0x0,0x33,0x47,0x66, - 0x10,0x0,0x0,0x0,0x0,0x34,0x52,0xf8,0x80,0x0,0x0,0x0,0x0,0x35,0x27,0x48, - 0x10,0x0,0x0,0x0,0x0,0x36,0x32,0xda,0x80,0x0,0x0,0x0,0x0,0x37,0x7,0x2a, - 0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0xf7,0x0,0x0,0x0,0x0,0x0,0x38,0xe7,0xc, - 0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0xd9,0x0,0x0,0x0,0x0,0x0,0x3a,0xc6,0xee, - 0x10,0x0,0x0,0x0,0x0,0x3b,0xdb,0xbb,0x0,0x0,0x0,0x0,0x0,0x3c,0xb0,0xa, - 0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x9d,0x0,0x0,0x0,0x0,0x0,0x3e,0x8f,0xec, - 0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x7f,0x0,0x0,0x0,0x0,0x0,0x40,0x6f,0xce, - 0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x9b,0x80,0x0,0x0,0x0,0x0,0x42,0x4f,0xb0, - 0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x7d,0x80,0x0,0x0,0x0,0x0,0x44,0x2f,0x92, - 0x90,0x0,0x0,0x0,0x0,0x45,0x44,0x5f,0x80,0x0,0x0,0x0,0x0,0x45,0xf3,0xc5, - 0x10,0x0,0x0,0x0,0x0,0x47,0x2d,0x7c,0x0,0x0,0x0,0x0,0x0,0x47,0xd3,0xa7, - 0x10,0x0,0x0,0x0,0x0,0x49,0xd,0x5e,0x0,0x0,0x0,0x0,0x0,0x49,0xb3,0x89, - 0x10,0x0,0x0,0x0,0x0,0x4a,0xed,0x40,0x0,0x0,0x0,0x0,0x0,0x4b,0x9c,0xa5, - 0x90,0x0,0x0,0x0,0x0,0x4c,0xd6,0x5c,0x80,0x0,0x0,0x0,0x0,0x4d,0x7c,0x87, - 0x90,0x0,0x0,0x0,0x0,0x4e,0xb6,0x3e,0x80,0x0,0x0,0x0,0x0,0x4f,0x5c,0x69, - 0x90,0x0,0x0,0x0,0x0,0x50,0x96,0x20,0x80,0x0,0x0,0x0,0x0,0x51,0x3c,0x4b, - 0x90,0x0,0x0,0x0,0x0,0x52,0x76,0x2,0x80,0x0,0x0,0x0,0x0,0x53,0x1c,0x2d, - 0x90,0x0,0x0,0x0,0x0,0x54,0x55,0xe4,0x80,0x0,0x0,0x0,0x0,0x54,0xfc,0xf, - 0x90,0x0,0x0,0x0,0x0,0x56,0x35,0xc6,0x80,0x0,0x0,0x0,0x0,0x56,0xe5,0x2c, - 0x10,0x0,0x0,0x0,0x0,0x58,0x1e,0xe3,0x0,0x0,0x0,0x0,0x0,0x58,0xc5,0xe, - 0x10,0x0,0x0,0x0,0x0,0x59,0xfe,0xc5,0x0,0x0,0x0,0x0,0x0,0x5a,0xa4,0xf0, - 0x10,0x0,0x0,0x0,0x0,0x5b,0xde,0xa7,0x0,0x0,0x0,0x0,0x0,0x5c,0x84,0xd2, - 0x10,0x0,0x0,0x0,0x0,0x5d,0xbe,0x89,0x0,0x0,0x0,0x0,0x0,0x5e,0x64,0xb4, - 0x10,0x0,0x0,0x0,0x0,0x5f,0x9e,0x6b,0x0,0x0,0x0,0x0,0x0,0x60,0x4d,0xd0, - 0x90,0x0,0x0,0x0,0x0,0x61,0x87,0x87,0x80,0x0,0x0,0x0,0x0,0x62,0x2d,0xb2, - 0x90,0x0,0x0,0x0,0x0,0x63,0x67,0x69,0x80,0x0,0x0,0x0,0x0,0x64,0xd,0x94, - 0x90,0x0,0x0,0x0,0x0,0x65,0x47,0x4b,0x80,0x0,0x0,0x0,0x0,0x65,0xed,0x76, - 0x90,0x0,0x0,0x0,0x0,0x67,0x27,0x2d,0x80,0x0,0x0,0x0,0x0,0x67,0xcd,0x58, - 0x90,0x0,0x0,0x0,0x0,0x69,0x7,0xf,0x80,0x0,0x0,0x0,0x0,0x69,0xad,0x3a, - 0x90,0x0,0x0,0x0,0x0,0x6a,0xe6,0xf1,0x80,0x0,0x0,0x0,0x0,0x6b,0x96,0x57, - 0x10,0x0,0x0,0x0,0x0,0x6c,0xd0,0xe,0x0,0x0,0x0,0x0,0x0,0x6d,0x76,0x39, - 0x10,0x0,0x0,0x0,0x0,0x6e,0xaf,0xf0,0x0,0x0,0x0,0x0,0x0,0x6f,0x56,0x1b, - 0x10,0x0,0x0,0x0,0x0,0x70,0x8f,0xd2,0x0,0x0,0x0,0x0,0x0,0x71,0x35,0xfd, - 0x10,0x0,0x0,0x0,0x0,0x72,0x6f,0xb4,0x0,0x0,0x0,0x0,0x0,0x73,0x15,0xdf, - 0x10,0x0,0x0,0x0,0x0,0x74,0x4f,0x96,0x0,0x0,0x0,0x0,0x0,0x74,0xfe,0xfb, - 0x90,0x0,0x0,0x0,0x0,0x76,0x38,0xb2,0x80,0x0,0x0,0x0,0x0,0x76,0xde,0xdd, - 0x90,0x0,0x0,0x0,0x0,0x78,0x18,0x94,0x80,0x0,0x0,0x0,0x0,0x78,0xbe,0xbf, - 0x90,0x0,0x0,0x0,0x0,0x79,0xf8,0x76,0x80,0x0,0x0,0x0,0x0,0x7a,0x9e,0xa1, - 0x90,0x0,0x0,0x0,0x0,0x7b,0xd8,0x58,0x80,0x0,0x0,0x0,0x0,0x7c,0x7e,0x83, - 0x90,0x0,0x0,0x0,0x0,0x7d,0xb8,0x3a,0x80,0x0,0x0,0x0,0x0,0x7e,0x5e,0x65, - 0x90,0x0,0x0,0x0,0x0,0x7f,0x98,0x1c,0x80,0x0,0x2,0x1,0x2,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xab,0xa0,0x1,0x4,0xff,0xff, - 0x8f,0x80,0x0,0x9,0xff,0xff,0x9d,0x90,0x0,0xd,0xff,0xff,0xab,0xa0,0x1,0x11, - 0x2d,0x30,0x30,0x0,0x50,0x44,0x44,0x54,0x0,0x50,0x53,0x54,0x0,0x4d,0x53,0x54, - 0x0,0x4d,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa, - 0x4d,0x53,0x54,0x37,0x4d,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30,0x2c,0x4d, - 0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Virgin + 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xb2,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x1c,0x80,0x0,0x0,0x0,0x9e, + 0xa6,0x2c,0x80,0x9f,0xba,0xf9,0x70,0xa0,0x86,0xe,0x80,0xa1,0x9a,0xdb,0x70,0xa4, + 0x73,0xf7,0x0,0xa5,0x16,0x11,0x70,0xca,0xd,0x4e,0x80,0xca,0xd8,0x47,0x70,0xcb, + 0x88,0xfe,0x80,0xd2,0x23,0xf4,0x70,0xd2,0x61,0x9,0xf0,0xd2,0xdb,0x97,0x60,0xd3, + 0xa4,0x9,0x70,0xd5,0x55,0xd5,0x0,0xdb,0xc0,0x73,0xf0,0xdc,0xde,0x97,0x80,0xdd, + 0xa9,0x90,0x70,0xde,0xbe,0x79,0x80,0xdf,0x89,0x72,0x70,0xe0,0x9e,0x5b,0x80,0xe1, + 0x69,0x54,0x70,0xe2,0x7e,0x3d,0x80,0xe3,0x49,0x36,0x70,0xe4,0x5e,0x1f,0x80,0xe5, + 0x29,0x18,0x70,0xe6,0x47,0x3c,0x0,0xe7,0x37,0x1e,0xf0,0xe8,0x27,0x1e,0x0,0xe9, + 0x17,0x0,0xf0,0xea,0x7,0x0,0x0,0xea,0xf6,0xe2,0xf0,0xeb,0xe6,0xe2,0x0,0xec, + 0xd6,0xc4,0xf0,0xed,0xc6,0xc4,0x0,0xee,0xbf,0xe1,0x70,0xef,0xaf,0xe0,0x80,0xf0, + 0x1e,0x90,0x70,0xfc,0xd8,0x3a,0xf0,0xfd,0xc8,0x1d,0xe0,0xfe,0xb8,0x1c,0xf0,0xff, + 0xa7,0xff,0xe0,0x0,0x97,0xfe,0xf0,0x1,0x87,0xe1,0xe0,0x2,0x77,0xe0,0xf0,0x3, + 0x70,0xfe,0x60,0x4,0x60,0xfd,0x70,0x5,0x50,0xe0,0x60,0x6,0x40,0xdf,0x70,0x7, + 0x30,0xc2,0x60,0x7,0x8d,0x19,0x70,0x9,0x10,0xb2,0x70,0x9,0xad,0x94,0xf0,0xa, + 0xf0,0x86,0x60,0xb,0xe0,0x85,0x70,0xc,0xd9,0xa2,0xe0,0xd,0xc0,0x67,0x70,0xe, + 0xb9,0x84,0xe0,0xf,0xa9,0x83,0xf0,0x10,0x99,0x66,0xe0,0x11,0x89,0x65,0xf0,0x12, + 0x79,0x48,0xe0,0x13,0x69,0x47,0xf0,0x14,0x59,0x2a,0xe0,0x15,0x49,0x29,0xf0,0x16, + 0x39,0xc,0xe0,0x17,0x29,0xb,0xf0,0x18,0x22,0x29,0x60,0x19,0x8,0xed,0xf0,0x1a, + 0x2,0xb,0x60,0x1a,0xf2,0xa,0x70,0x1b,0xe1,0xed,0x60,0x1c,0xd1,0xec,0x70,0x1d, + 0xc1,0xcf,0x60,0x1e,0xb1,0xce,0x70,0x1f,0xa1,0xb1,0x60,0x20,0x76,0x0,0xf0,0x21, + 0x81,0x93,0x60,0x22,0x55,0xe2,0xf0,0x23,0x6a,0xaf,0xe0,0x24,0x35,0xc4,0xf0,0x25, + 0x4a,0x91,0xe0,0x26,0x15,0xa6,0xf0,0x27,0x2a,0x73,0xe0,0x27,0xfe,0xc3,0x70,0x29, + 0xa,0x55,0xe0,0x29,0xde,0xa5,0x70,0x2a,0xea,0x37,0xe0,0x2b,0xbe,0x87,0x70,0x2c, + 0xd3,0x54,0x60,0x2d,0x9e,0x69,0x70,0x2e,0xb3,0x36,0x60,0x2f,0x7e,0x4b,0x70,0x30, + 0x93,0x18,0x60,0x31,0x67,0x67,0xf0,0x32,0x72,0xfa,0x60,0x33,0x47,0x49,0xf0,0x34, + 0x52,0xdc,0x60,0x35,0x27,0x2b,0xf0,0x36,0x32,0xbe,0x60,0x37,0x7,0xd,0xf0,0x38, + 0x1b,0xda,0xe0,0x38,0xe6,0xef,0xf0,0x39,0xfb,0xbc,0xe0,0x3a,0xc6,0xd1,0xf0,0x3b, + 0xdb,0x9e,0xe0,0x3c,0xaf,0xee,0x70,0x3d,0xbb,0x80,0xe0,0x3e,0x8f,0xd0,0x70,0x3f, + 0x9b,0x62,0xe0,0x40,0x6f,0xb2,0x70,0x41,0x84,0x7f,0x60,0x42,0x4f,0x94,0x70,0x43, + 0x64,0x61,0x60,0x44,0x2f,0x76,0x70,0x45,0x44,0x43,0x60,0x45,0xf3,0xa8,0xf0,0x47, + 0x2d,0x5f,0xe0,0x47,0xd3,0x8a,0xf0,0x49,0xd,0x41,0xe0,0x49,0xb3,0x6c,0xf0,0x4a, + 0xed,0x23,0xe0,0x4b,0x9c,0x89,0x70,0x4c,0xd6,0x40,0x60,0x4d,0x7c,0x6b,0x70,0x4e, + 0xb6,0x22,0x60,0x4f,0x5c,0x4d,0x70,0x50,0x96,0x4,0x60,0x51,0x3c,0x2f,0x70,0x52, + 0x75,0xe6,0x60,0x53,0x1c,0x11,0x70,0x54,0x55,0xc8,0x60,0x54,0xfb,0xf3,0x70,0x56, + 0x35,0xaa,0x60,0x56,0xe5,0xf,0xf0,0x58,0x1e,0xc6,0xe0,0x58,0xc4,0xf1,0xf0,0x59, + 0xfe,0xa8,0xe0,0x5a,0xa4,0xd3,0xf0,0x5b,0xde,0x8a,0xe0,0x5c,0x84,0xb5,0xf0,0x5d, + 0xbe,0x6c,0xe0,0x5e,0x64,0x97,0xf0,0x5f,0x9e,0x4e,0xe0,0x60,0x4d,0xb4,0x70,0x61, + 0x87,0x6b,0x60,0x62,0x2d,0x96,0x70,0x63,0x67,0x4d,0x60,0x64,0xd,0x78,0x70,0x65, + 0x47,0x2f,0x60,0x65,0xed,0x5a,0x70,0x67,0x27,0x11,0x60,0x67,0xcd,0x3c,0x70,0x69, + 0x6,0xf3,0x60,0x69,0xad,0x1e,0x70,0x6a,0xe6,0xd5,0x60,0x6b,0x96,0x3a,0xf0,0x6c, + 0xcf,0xf1,0xe0,0x6d,0x76,0x1c,0xf0,0x6e,0xaf,0xd3,0xe0,0x6f,0x55,0xfe,0xf0,0x70, + 0x8f,0xb5,0xe0,0x71,0x35,0xe0,0xf0,0x72,0x6f,0x97,0xe0,0x73,0x15,0xc2,0xf0,0x74, + 0x4f,0x79,0xe0,0x74,0xfe,0xdf,0x70,0x76,0x38,0x96,0x60,0x76,0xde,0xc1,0x70,0x78, + 0x18,0x78,0x60,0x78,0xbe,0xa3,0x70,0x79,0xf8,0x5a,0x60,0x7a,0x9e,0x85,0x70,0x7b, + 0xd8,0x3c,0x60,0x7c,0x7e,0x67,0x70,0x7d,0xb8,0x1e,0x60,0x7e,0x5e,0x49,0x70,0x7f, + 0x98,0x0,0x60,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x1,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0xff,0xff,0xaf,0x9a,0x0,0x0,0xff,0xff,0xb9,0xb0,0x1, + 0x4,0xff,0xff,0xab,0xa0,0x0,0x8,0xff,0xff,0xb9,0xb0,0x1,0xc,0xff,0xff,0xb9, + 0xb0,0x1,0x10,0xff,0xff,0xb9,0xb0,0x0,0x14,0xff,0xff,0xc7,0xc0,0x1,0x18,0x4c, + 0x4d,0x54,0x0,0x43,0x44,0x54,0x0,0x43,0x53,0x54,0x0,0x43,0x57,0x54,0x0,0x43, + 0x50,0x54,0x0,0x45,0x53,0x54,0x0,0x45,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x1, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb3,0x0,0x0,0x0, + 0x7,0x0,0x0,0x0,0x1c,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff, + 0xff,0x5e,0x3,0xfe,0xa0,0xff,0xff,0xff,0xff,0x9e,0xa6,0x2c,0x80,0xff,0xff,0xff, + 0xff,0x9f,0xba,0xf9,0x70,0xff,0xff,0xff,0xff,0xa0,0x86,0xe,0x80,0xff,0xff,0xff, + 0xff,0xa1,0x9a,0xdb,0x70,0xff,0xff,0xff,0xff,0xa4,0x73,0xf7,0x0,0xff,0xff,0xff, + 0xff,0xa5,0x16,0x11,0x70,0xff,0xff,0xff,0xff,0xca,0xd,0x4e,0x80,0xff,0xff,0xff, + 0xff,0xca,0xd8,0x47,0x70,0xff,0xff,0xff,0xff,0xcb,0x88,0xfe,0x80,0xff,0xff,0xff, + 0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x61,0x9,0xf0,0xff,0xff,0xff, + 0xff,0xd2,0xdb,0x97,0x60,0xff,0xff,0xff,0xff,0xd3,0xa4,0x9,0x70,0xff,0xff,0xff, + 0xff,0xd5,0x55,0xd5,0x0,0xff,0xff,0xff,0xff,0xdb,0xc0,0x73,0xf0,0xff,0xff,0xff, + 0xff,0xdc,0xde,0x97,0x80,0xff,0xff,0xff,0xff,0xdd,0xa9,0x90,0x70,0xff,0xff,0xff, + 0xff,0xde,0xbe,0x79,0x80,0xff,0xff,0xff,0xff,0xdf,0x89,0x72,0x70,0xff,0xff,0xff, + 0xff,0xe0,0x9e,0x5b,0x80,0xff,0xff,0xff,0xff,0xe1,0x69,0x54,0x70,0xff,0xff,0xff, + 0xff,0xe2,0x7e,0x3d,0x80,0xff,0xff,0xff,0xff,0xe3,0x49,0x36,0x70,0xff,0xff,0xff, + 0xff,0xe4,0x5e,0x1f,0x80,0xff,0xff,0xff,0xff,0xe5,0x29,0x18,0x70,0xff,0xff,0xff, + 0xff,0xe6,0x47,0x3c,0x0,0xff,0xff,0xff,0xff,0xe7,0x37,0x1e,0xf0,0xff,0xff,0xff, + 0xff,0xe8,0x27,0x1e,0x0,0xff,0xff,0xff,0xff,0xe9,0x17,0x0,0xf0,0xff,0xff,0xff, + 0xff,0xea,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0xea,0xf6,0xe2,0xf0,0xff,0xff,0xff, + 0xff,0xeb,0xe6,0xe2,0x0,0xff,0xff,0xff,0xff,0xec,0xd6,0xc4,0xf0,0xff,0xff,0xff, + 0xff,0xed,0xc6,0xc4,0x0,0xff,0xff,0xff,0xff,0xee,0xbf,0xe1,0x70,0xff,0xff,0xff, + 0xff,0xef,0xaf,0xe0,0x80,0xff,0xff,0xff,0xff,0xf0,0x1e,0x90,0x70,0xff,0xff,0xff, + 0xff,0xfc,0xd8,0x3a,0xf0,0xff,0xff,0xff,0xff,0xfd,0xc8,0x1d,0xe0,0xff,0xff,0xff, + 0xff,0xfe,0xb8,0x1c,0xf0,0xff,0xff,0xff,0xff,0xff,0xa7,0xff,0xe0,0x0,0x0,0x0, + 0x0,0x0,0x97,0xfe,0xf0,0x0,0x0,0x0,0x0,0x1,0x87,0xe1,0xe0,0x0,0x0,0x0, + 0x0,0x2,0x77,0xe0,0xf0,0x0,0x0,0x0,0x0,0x3,0x70,0xfe,0x60,0x0,0x0,0x0, + 0x0,0x4,0x60,0xfd,0x70,0x0,0x0,0x0,0x0,0x5,0x50,0xe0,0x60,0x0,0x0,0x0, + 0x0,0x6,0x40,0xdf,0x70,0x0,0x0,0x0,0x0,0x7,0x30,0xc2,0x60,0x0,0x0,0x0, + 0x0,0x7,0x8d,0x19,0x70,0x0,0x0,0x0,0x0,0x9,0x10,0xb2,0x70,0x0,0x0,0x0, + 0x0,0x9,0xad,0x94,0xf0,0x0,0x0,0x0,0x0,0xa,0xf0,0x86,0x60,0x0,0x0,0x0, + 0x0,0xb,0xe0,0x85,0x70,0x0,0x0,0x0,0x0,0xc,0xd9,0xa2,0xe0,0x0,0x0,0x0, + 0x0,0xd,0xc0,0x67,0x70,0x0,0x0,0x0,0x0,0xe,0xb9,0x84,0xe0,0x0,0x0,0x0, + 0x0,0xf,0xa9,0x83,0xf0,0x0,0x0,0x0,0x0,0x10,0x99,0x66,0xe0,0x0,0x0,0x0, + 0x0,0x11,0x89,0x65,0xf0,0x0,0x0,0x0,0x0,0x12,0x79,0x48,0xe0,0x0,0x0,0x0, + 0x0,0x13,0x69,0x47,0xf0,0x0,0x0,0x0,0x0,0x14,0x59,0x2a,0xe0,0x0,0x0,0x0, + 0x0,0x15,0x49,0x29,0xf0,0x0,0x0,0x0,0x0,0x16,0x39,0xc,0xe0,0x0,0x0,0x0, + 0x0,0x17,0x29,0xb,0xf0,0x0,0x0,0x0,0x0,0x18,0x22,0x29,0x60,0x0,0x0,0x0, + 0x0,0x19,0x8,0xed,0xf0,0x0,0x0,0x0,0x0,0x1a,0x2,0xb,0x60,0x0,0x0,0x0, + 0x0,0x1a,0xf2,0xa,0x70,0x0,0x0,0x0,0x0,0x1b,0xe1,0xed,0x60,0x0,0x0,0x0, + 0x0,0x1c,0xd1,0xec,0x70,0x0,0x0,0x0,0x0,0x1d,0xc1,0xcf,0x60,0x0,0x0,0x0, + 0x0,0x1e,0xb1,0xce,0x70,0x0,0x0,0x0,0x0,0x1f,0xa1,0xb1,0x60,0x0,0x0,0x0, + 0x0,0x20,0x76,0x0,0xf0,0x0,0x0,0x0,0x0,0x21,0x81,0x93,0x60,0x0,0x0,0x0, + 0x0,0x22,0x55,0xe2,0xf0,0x0,0x0,0x0,0x0,0x23,0x6a,0xaf,0xe0,0x0,0x0,0x0, + 0x0,0x24,0x35,0xc4,0xf0,0x0,0x0,0x0,0x0,0x25,0x4a,0x91,0xe0,0x0,0x0,0x0, + 0x0,0x26,0x15,0xa6,0xf0,0x0,0x0,0x0,0x0,0x27,0x2a,0x73,0xe0,0x0,0x0,0x0, + 0x0,0x27,0xfe,0xc3,0x70,0x0,0x0,0x0,0x0,0x29,0xa,0x55,0xe0,0x0,0x0,0x0, + 0x0,0x29,0xde,0xa5,0x70,0x0,0x0,0x0,0x0,0x2a,0xea,0x37,0xe0,0x0,0x0,0x0, + 0x0,0x2b,0xbe,0x87,0x70,0x0,0x0,0x0,0x0,0x2c,0xd3,0x54,0x60,0x0,0x0,0x0, + 0x0,0x2d,0x9e,0x69,0x70,0x0,0x0,0x0,0x0,0x2e,0xb3,0x36,0x60,0x0,0x0,0x0, + 0x0,0x2f,0x7e,0x4b,0x70,0x0,0x0,0x0,0x0,0x30,0x93,0x18,0x60,0x0,0x0,0x0, + 0x0,0x31,0x67,0x67,0xf0,0x0,0x0,0x0,0x0,0x32,0x72,0xfa,0x60,0x0,0x0,0x0, + 0x0,0x33,0x47,0x49,0xf0,0x0,0x0,0x0,0x0,0x34,0x52,0xdc,0x60,0x0,0x0,0x0, + 0x0,0x35,0x27,0x2b,0xf0,0x0,0x0,0x0,0x0,0x36,0x32,0xbe,0x60,0x0,0x0,0x0, + 0x0,0x37,0x7,0xd,0xf0,0x0,0x0,0x0,0x0,0x38,0x1b,0xda,0xe0,0x0,0x0,0x0, + 0x0,0x38,0xe6,0xef,0xf0,0x0,0x0,0x0,0x0,0x39,0xfb,0xbc,0xe0,0x0,0x0,0x0, + 0x0,0x3a,0xc6,0xd1,0xf0,0x0,0x0,0x0,0x0,0x3b,0xdb,0x9e,0xe0,0x0,0x0,0x0, + 0x0,0x3c,0xaf,0xee,0x70,0x0,0x0,0x0,0x0,0x3d,0xbb,0x80,0xe0,0x0,0x0,0x0, + 0x0,0x3e,0x8f,0xd0,0x70,0x0,0x0,0x0,0x0,0x3f,0x9b,0x62,0xe0,0x0,0x0,0x0, + 0x0,0x40,0x6f,0xb2,0x70,0x0,0x0,0x0,0x0,0x41,0x84,0x7f,0x60,0x0,0x0,0x0, + 0x0,0x42,0x4f,0x94,0x70,0x0,0x0,0x0,0x0,0x43,0x64,0x61,0x60,0x0,0x0,0x0, + 0x0,0x44,0x2f,0x76,0x70,0x0,0x0,0x0,0x0,0x45,0x44,0x43,0x60,0x0,0x0,0x0, + 0x0,0x45,0xf3,0xa8,0xf0,0x0,0x0,0x0,0x0,0x47,0x2d,0x5f,0xe0,0x0,0x0,0x0, + 0x0,0x47,0xd3,0x8a,0xf0,0x0,0x0,0x0,0x0,0x49,0xd,0x41,0xe0,0x0,0x0,0x0, + 0x0,0x49,0xb3,0x6c,0xf0,0x0,0x0,0x0,0x0,0x4a,0xed,0x23,0xe0,0x0,0x0,0x0, + 0x0,0x4b,0x9c,0x89,0x70,0x0,0x0,0x0,0x0,0x4c,0xd6,0x40,0x60,0x0,0x0,0x0, + 0x0,0x4d,0x7c,0x6b,0x70,0x0,0x0,0x0,0x0,0x4e,0xb6,0x22,0x60,0x0,0x0,0x0, + 0x0,0x4f,0x5c,0x4d,0x70,0x0,0x0,0x0,0x0,0x50,0x96,0x4,0x60,0x0,0x0,0x0, + 0x0,0x51,0x3c,0x2f,0x70,0x0,0x0,0x0,0x0,0x52,0x75,0xe6,0x60,0x0,0x0,0x0, + 0x0,0x53,0x1c,0x11,0x70,0x0,0x0,0x0,0x0,0x54,0x55,0xc8,0x60,0x0,0x0,0x0, + 0x0,0x54,0xfb,0xf3,0x70,0x0,0x0,0x0,0x0,0x56,0x35,0xaa,0x60,0x0,0x0,0x0, + 0x0,0x56,0xe5,0xf,0xf0,0x0,0x0,0x0,0x0,0x58,0x1e,0xc6,0xe0,0x0,0x0,0x0, + 0x0,0x58,0xc4,0xf1,0xf0,0x0,0x0,0x0,0x0,0x59,0xfe,0xa8,0xe0,0x0,0x0,0x0, + 0x0,0x5a,0xa4,0xd3,0xf0,0x0,0x0,0x0,0x0,0x5b,0xde,0x8a,0xe0,0x0,0x0,0x0, + 0x0,0x5c,0x84,0xb5,0xf0,0x0,0x0,0x0,0x0,0x5d,0xbe,0x6c,0xe0,0x0,0x0,0x0, + 0x0,0x5e,0x64,0x97,0xf0,0x0,0x0,0x0,0x0,0x5f,0x9e,0x4e,0xe0,0x0,0x0,0x0, + 0x0,0x60,0x4d,0xb4,0x70,0x0,0x0,0x0,0x0,0x61,0x87,0x6b,0x60,0x0,0x0,0x0, + 0x0,0x62,0x2d,0x96,0x70,0x0,0x0,0x0,0x0,0x63,0x67,0x4d,0x60,0x0,0x0,0x0, + 0x0,0x64,0xd,0x78,0x70,0x0,0x0,0x0,0x0,0x65,0x47,0x2f,0x60,0x0,0x0,0x0, + 0x0,0x65,0xed,0x5a,0x70,0x0,0x0,0x0,0x0,0x67,0x27,0x11,0x60,0x0,0x0,0x0, + 0x0,0x67,0xcd,0x3c,0x70,0x0,0x0,0x0,0x0,0x69,0x6,0xf3,0x60,0x0,0x0,0x0, + 0x0,0x69,0xad,0x1e,0x70,0x0,0x0,0x0,0x0,0x6a,0xe6,0xd5,0x60,0x0,0x0,0x0, + 0x0,0x6b,0x96,0x3a,0xf0,0x0,0x0,0x0,0x0,0x6c,0xcf,0xf1,0xe0,0x0,0x0,0x0, + 0x0,0x6d,0x76,0x1c,0xf0,0x0,0x0,0x0,0x0,0x6e,0xaf,0xd3,0xe0,0x0,0x0,0x0, + 0x0,0x6f,0x55,0xfe,0xf0,0x0,0x0,0x0,0x0,0x70,0x8f,0xb5,0xe0,0x0,0x0,0x0, + 0x0,0x71,0x35,0xe0,0xf0,0x0,0x0,0x0,0x0,0x72,0x6f,0x97,0xe0,0x0,0x0,0x0, + 0x0,0x73,0x15,0xc2,0xf0,0x0,0x0,0x0,0x0,0x74,0x4f,0x79,0xe0,0x0,0x0,0x0, + 0x0,0x74,0xfe,0xdf,0x70,0x0,0x0,0x0,0x0,0x76,0x38,0x96,0x60,0x0,0x0,0x0, + 0x0,0x76,0xde,0xc1,0x70,0x0,0x0,0x0,0x0,0x78,0x18,0x78,0x60,0x0,0x0,0x0, + 0x0,0x78,0xbe,0xa3,0x70,0x0,0x0,0x0,0x0,0x79,0xf8,0x5a,0x60,0x0,0x0,0x0, + 0x0,0x7a,0x9e,0x85,0x70,0x0,0x0,0x0,0x0,0x7b,0xd8,0x3c,0x60,0x0,0x0,0x0, + 0x0,0x7c,0x7e,0x67,0x70,0x0,0x0,0x0,0x0,0x7d,0xb8,0x1e,0x60,0x0,0x0,0x0, + 0x0,0x7e,0x5e,0x49,0x70,0x0,0x0,0x0,0x0,0x7f,0x98,0x0,0x60,0x0,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x1,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0xff,0xff,0xaf,0x9a,0x0,0x0,0xff,0xff,0xb9,0xb0,0x1,0x4,0xff,0xff,0xab,0xa0, + 0x0,0x8,0xff,0xff,0xb9,0xb0,0x1,0xc,0xff,0xff,0xb9,0xb0,0x1,0x10,0xff,0xff, + 0xb9,0xb0,0x0,0x14,0xff,0xff,0xc7,0xc0,0x1,0x18,0x4c,0x4d,0x54,0x0,0x43,0x44, + 0x54,0x0,0x43,0x53,0x54,0x0,0x43,0x57,0x54,0x0,0x43,0x50,0x54,0x0,0x45,0x53, + 0x54,0x0,0x45,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, + 0x0,0x1,0x0,0x0,0xa,0x45,0x53,0x54,0x35,0x45,0x44,0x54,0x2c,0x4d,0x33,0x2e, + 0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Danmarkshavn + 0x0,0x0,0x2,0xc8, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x23,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x80,0x0,0x0,0x0,0x9b, + 0x80,0x49,0x0,0x13,0x4d,0x7c,0x50,0x14,0x33,0xfa,0x90,0x15,0x23,0xeb,0x90,0x16, + 0x13,0xdc,0x90,0x17,0x3,0xcd,0x90,0x17,0xf3,0xbe,0x90,0x18,0xe3,0xaf,0x90,0x19, + 0xd3,0xa0,0x90,0x1a,0xc3,0x91,0x90,0x1b,0xbc,0xbd,0x10,0x1c,0xac,0xae,0x10,0x1d, + 0x9c,0x9f,0x10,0x1e,0x8c,0x90,0x10,0x1f,0x7c,0x81,0x10,0x20,0x6c,0x72,0x10,0x21, + 0x5c,0x63,0x10,0x22,0x4c,0x54,0x10,0x23,0x3c,0x45,0x10,0x24,0x2c,0x36,0x10,0x25, + 0x1c,0x27,0x10,0x26,0xc,0x18,0x10,0x27,0x5,0x43,0x90,0x27,0xf5,0x34,0x90,0x28, + 0xe5,0x25,0x90,0x29,0xd5,0x16,0x90,0x2a,0xc5,0x7,0x90,0x2b,0xb4,0xf8,0x90,0x2c, + 0xa4,0xe9,0x90,0x2d,0x94,0xda,0x90,0x2e,0x84,0xcb,0x90,0x2f,0x74,0xbc,0x90,0x30, + 0x64,0xad,0x90,0x30,0xe7,0x4e,0x30,0x0,0x1,0x4,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x5,0xff,0xff,0xee,0x80,0x0,0x0, + 0xff,0xff,0xd5,0xd0,0x0,0x4,0xff,0xff,0xd5,0xd0,0x0,0x4,0xff,0xff,0xe3,0xe0, + 0x1,0x8,0xff,0xff,0xe3,0xe0,0x1,0x8,0x0,0x0,0x0,0x0,0x0,0xc,0x4c,0x4d, + 0x54,0x0,0x2d,0x30,0x33,0x0,0x2d,0x30,0x32,0x0,0x47,0x4d,0x54,0x0,0x0,0x0, + 0x1,0x1,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x23,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x10,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff, + 0xff,0xff,0x9b,0x80,0x49,0x0,0x0,0x0,0x0,0x0,0x13,0x4d,0x7c,0x50,0x0,0x0, + 0x0,0x0,0x14,0x33,0xfa,0x90,0x0,0x0,0x0,0x0,0x15,0x23,0xeb,0x90,0x0,0x0, + 0x0,0x0,0x16,0x13,0xdc,0x90,0x0,0x0,0x0,0x0,0x17,0x3,0xcd,0x90,0x0,0x0, + 0x0,0x0,0x17,0xf3,0xbe,0x90,0x0,0x0,0x0,0x0,0x18,0xe3,0xaf,0x90,0x0,0x0, + 0x0,0x0,0x19,0xd3,0xa0,0x90,0x0,0x0,0x0,0x0,0x1a,0xc3,0x91,0x90,0x0,0x0, + 0x0,0x0,0x1b,0xbc,0xbd,0x10,0x0,0x0,0x0,0x0,0x1c,0xac,0xae,0x10,0x0,0x0, + 0x0,0x0,0x1d,0x9c,0x9f,0x10,0x0,0x0,0x0,0x0,0x1e,0x8c,0x90,0x10,0x0,0x0, + 0x0,0x0,0x1f,0x7c,0x81,0x10,0x0,0x0,0x0,0x0,0x20,0x6c,0x72,0x10,0x0,0x0, + 0x0,0x0,0x21,0x5c,0x63,0x10,0x0,0x0,0x0,0x0,0x22,0x4c,0x54,0x10,0x0,0x0, + 0x0,0x0,0x23,0x3c,0x45,0x10,0x0,0x0,0x0,0x0,0x24,0x2c,0x36,0x10,0x0,0x0, + 0x0,0x0,0x25,0x1c,0x27,0x10,0x0,0x0,0x0,0x0,0x26,0xc,0x18,0x10,0x0,0x0, + 0x0,0x0,0x27,0x5,0x43,0x90,0x0,0x0,0x0,0x0,0x27,0xf5,0x34,0x90,0x0,0x0, + 0x0,0x0,0x28,0xe5,0x25,0x90,0x0,0x0,0x0,0x0,0x29,0xd5,0x16,0x90,0x0,0x0, + 0x0,0x0,0x2a,0xc5,0x7,0x90,0x0,0x0,0x0,0x0,0x2b,0xb4,0xf8,0x90,0x0,0x0, + 0x0,0x0,0x2c,0xa4,0xe9,0x90,0x0,0x0,0x0,0x0,0x2d,0x94,0xda,0x90,0x0,0x0, + 0x0,0x0,0x2e,0x84,0xcb,0x90,0x0,0x0,0x0,0x0,0x2f,0x74,0xbc,0x90,0x0,0x0, + 0x0,0x0,0x30,0x64,0xad,0x90,0x0,0x0,0x0,0x0,0x30,0xe7,0x4e,0x30,0x0,0x1, + 0x4,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x5,0xff,0xff,0xee,0x80,0x0,0x0,0xff,0xff,0xd5,0xd0,0x0,0x4,0xff,0xff,0xd5, + 0xd0,0x0,0x4,0xff,0xff,0xe3,0xe0,0x1,0x8,0xff,0xff,0xe3,0xe0,0x1,0x8,0x0, + 0x0,0x0,0x0,0x0,0xc,0x4c,0x4d,0x54,0x0,0x2d,0x30,0x33,0x0,0x2d,0x30,0x32, + 0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x1,0x1,0x0, + 0x0,0xa,0x47,0x4d,0x54,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Cambridge_Bay + 0x0,0x0,0x8,0x32, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x7c,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x25,0x80,0x0,0x0,0x0,0xa1, + 0xf2,0xcd,0x80,0xcb,0x89,0xc,0x90,0xd2,0x23,0xf4,0x70,0xd2,0x61,0x18,0x0,0xf7, + 0x2f,0x5a,0x70,0xf8,0x28,0x85,0xf0,0x13,0x69,0x64,0x10,0x14,0x59,0x47,0x0,0x15, + 0x49,0x46,0x10,0x16,0x39,0x29,0x0,0x17,0x29,0x28,0x10,0x18,0x22,0x45,0x80,0x19, + 0x9,0xa,0x10,0x1a,0x2,0x27,0x80,0x1a,0xf2,0x26,0x90,0x1b,0xe2,0x9,0x80,0x1c, + 0xd2,0x8,0x90,0x1d,0xc1,0xeb,0x80,0x1e,0xb1,0xea,0x90,0x1f,0xa1,0xcd,0x80,0x20, + 0x76,0x1d,0x10,0x21,0x81,0xaf,0x80,0x22,0x55,0xff,0x10,0x23,0x6a,0xcc,0x0,0x24, + 0x35,0xe1,0x10,0x25,0x4a,0xae,0x0,0x26,0x15,0xc3,0x10,0x27,0x2a,0x90,0x0,0x27, + 0xfe,0xdf,0x90,0x29,0xa,0x72,0x0,0x29,0xde,0xc1,0x90,0x2a,0xea,0x54,0x0,0x2b, + 0xbe,0xa3,0x90,0x2c,0xd3,0x70,0x80,0x2d,0x9e,0x85,0x90,0x2e,0xb3,0x52,0x80,0x2f, + 0x7e,0x67,0x90,0x30,0x93,0x34,0x80,0x31,0x67,0x84,0x10,0x32,0x73,0x16,0x80,0x33, + 0x47,0x66,0x10,0x34,0x52,0xf8,0x80,0x35,0x27,0x48,0x10,0x36,0x32,0xda,0x80,0x37, + 0x7,0x2a,0x10,0x38,0x1b,0xf7,0x0,0x38,0xe6,0xfe,0x0,0x39,0xfb,0xca,0xf0,0x3a, + 0x4,0xe9,0x50,0x3a,0xc6,0xee,0x10,0x3b,0xdb,0xbb,0x0,0x3c,0xb0,0xa,0x90,0x3d, + 0xbb,0x9d,0x0,0x3e,0x8f,0xec,0x90,0x3f,0x9b,0x7f,0x0,0x40,0x6f,0xce,0x90,0x41, + 0x84,0x9b,0x80,0x42,0x4f,0xb0,0x90,0x43,0x64,0x7d,0x80,0x44,0x2f,0x92,0x90,0x45, + 0x44,0x5f,0x80,0x45,0xf3,0xc5,0x10,0x47,0x2d,0x7c,0x0,0x47,0xd3,0xa7,0x10,0x49, + 0xd,0x5e,0x0,0x49,0xb3,0x89,0x10,0x4a,0xed,0x40,0x0,0x4b,0x9c,0xa5,0x90,0x4c, + 0xd6,0x5c,0x80,0x4d,0x7c,0x87,0x90,0x4e,0xb6,0x3e,0x80,0x4f,0x5c,0x69,0x90,0x50, + 0x96,0x20,0x80,0x51,0x3c,0x4b,0x90,0x52,0x76,0x2,0x80,0x53,0x1c,0x2d,0x90,0x54, + 0x55,0xe4,0x80,0x54,0xfc,0xf,0x90,0x56,0x35,0xc6,0x80,0x56,0xe5,0x2c,0x10,0x58, + 0x1e,0xe3,0x0,0x58,0xc5,0xe,0x10,0x59,0xfe,0xc5,0x0,0x5a,0xa4,0xf0,0x10,0x5b, + 0xde,0xa7,0x0,0x5c,0x84,0xd2,0x10,0x5d,0xbe,0x89,0x0,0x5e,0x64,0xb4,0x10,0x5f, + 0x9e,0x6b,0x0,0x60,0x4d,0xd0,0x90,0x61,0x87,0x87,0x80,0x62,0x2d,0xb2,0x90,0x63, + 0x67,0x69,0x80,0x64,0xd,0x94,0x90,0x65,0x47,0x4b,0x80,0x65,0xed,0x76,0x90,0x67, + 0x27,0x2d,0x80,0x67,0xcd,0x58,0x90,0x69,0x7,0xf,0x80,0x69,0xad,0x3a,0x90,0x6a, + 0xe6,0xf1,0x80,0x6b,0x96,0x57,0x10,0x6c,0xd0,0xe,0x0,0x6d,0x76,0x39,0x10,0x6e, + 0xaf,0xf0,0x0,0x6f,0x56,0x1b,0x10,0x70,0x8f,0xd2,0x0,0x71,0x35,0xfd,0x10,0x72, + 0x6f,0xb4,0x0,0x73,0x15,0xdf,0x10,0x74,0x4f,0x96,0x0,0x74,0xfe,0xfb,0x90,0x76, + 0x38,0xb2,0x80,0x76,0xde,0xdd,0x90,0x78,0x18,0x94,0x80,0x78,0xbe,0xbf,0x90,0x79, + 0xf8,0x76,0x80,0x7a,0x9e,0xa1,0x90,0x7b,0xd8,0x58,0x80,0x7c,0x7e,0x83,0x90,0x7d, + 0xb8,0x3a,0x80,0x7e,0x5e,0x65,0x90,0x7f,0x98,0x1c,0x80,0x0,0x3,0x1,0x2,0x3, + 0x4,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3, + 0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3, + 0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x7,0x6,0x8,0x7,0x5,0x3,0x5, + 0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5, + 0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5, + 0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5, + 0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5, + 0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xab, + 0xa0,0x1,0x4,0xff,0xff,0xab,0xa0,0x1,0x8,0xff,0xff,0x9d,0x90,0x0,0xc,0xff, + 0xff,0xb9,0xb0,0x1,0x10,0xff,0xff,0xab,0xa0,0x1,0x15,0xff,0xff,0xb9,0xb0,0x1, + 0x19,0xff,0xff,0xab,0xa0,0x0,0x1d,0xff,0xff,0xb9,0xb0,0x0,0x21,0xff,0xff,0xab, + 0xa0,0x1,0x15,0xff,0xff,0x9d,0x90,0x0,0xc,0x2d,0x30,0x30,0x0,0x4d,0x57,0x54, + 0x0,0x4d,0x50,0x54,0x0,0x4d,0x53,0x54,0x0,0x4d,0x44,0x44,0x54,0x0,0x4d,0x44, + 0x54,0x0,0x43,0x44,0x54,0x0,0x43,0x53,0x54,0x0,0x45,0x53,0x54,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0xb, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x25, + 0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xa1,0xf2,0xcd,0x80, + 0xff,0xff,0xff,0xff,0xcb,0x89,0xc,0x90,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70, + 0xff,0xff,0xff,0xff,0xd2,0x61,0x18,0x0,0xff,0xff,0xff,0xff,0xf7,0x2f,0x5a,0x70, + 0xff,0xff,0xff,0xff,0xf8,0x28,0x85,0xf0,0x0,0x0,0x0,0x0,0x13,0x69,0x64,0x10, + 0x0,0x0,0x0,0x0,0x14,0x59,0x47,0x0,0x0,0x0,0x0,0x0,0x15,0x49,0x46,0x10, + 0x0,0x0,0x0,0x0,0x16,0x39,0x29,0x0,0x0,0x0,0x0,0x0,0x17,0x29,0x28,0x10, + 0x0,0x0,0x0,0x0,0x18,0x22,0x45,0x80,0x0,0x0,0x0,0x0,0x19,0x9,0xa,0x10, + 0x0,0x0,0x0,0x0,0x1a,0x2,0x27,0x80,0x0,0x0,0x0,0x0,0x1a,0xf2,0x26,0x90, + 0x0,0x0,0x0,0x0,0x1b,0xe2,0x9,0x80,0x0,0x0,0x0,0x0,0x1c,0xd2,0x8,0x90, + 0x0,0x0,0x0,0x0,0x1d,0xc1,0xeb,0x80,0x0,0x0,0x0,0x0,0x1e,0xb1,0xea,0x90, + 0x0,0x0,0x0,0x0,0x1f,0xa1,0xcd,0x80,0x0,0x0,0x0,0x0,0x20,0x76,0x1d,0x10, + 0x0,0x0,0x0,0x0,0x21,0x81,0xaf,0x80,0x0,0x0,0x0,0x0,0x22,0x55,0xff,0x10, + 0x0,0x0,0x0,0x0,0x23,0x6a,0xcc,0x0,0x0,0x0,0x0,0x0,0x24,0x35,0xe1,0x10, + 0x0,0x0,0x0,0x0,0x25,0x4a,0xae,0x0,0x0,0x0,0x0,0x0,0x26,0x15,0xc3,0x10, + 0x0,0x0,0x0,0x0,0x27,0x2a,0x90,0x0,0x0,0x0,0x0,0x0,0x27,0xfe,0xdf,0x90, + 0x0,0x0,0x0,0x0,0x29,0xa,0x72,0x0,0x0,0x0,0x0,0x0,0x29,0xde,0xc1,0x90, + 0x0,0x0,0x0,0x0,0x2a,0xea,0x54,0x0,0x0,0x0,0x0,0x0,0x2b,0xbe,0xa3,0x90, + 0x0,0x0,0x0,0x0,0x2c,0xd3,0x70,0x80,0x0,0x0,0x0,0x0,0x2d,0x9e,0x85,0x90, + 0x0,0x0,0x0,0x0,0x2e,0xb3,0x52,0x80,0x0,0x0,0x0,0x0,0x2f,0x7e,0x67,0x90, + 0x0,0x0,0x0,0x0,0x30,0x93,0x34,0x80,0x0,0x0,0x0,0x0,0x31,0x67,0x84,0x10, + 0x0,0x0,0x0,0x0,0x32,0x73,0x16,0x80,0x0,0x0,0x0,0x0,0x33,0x47,0x66,0x10, + 0x0,0x0,0x0,0x0,0x34,0x52,0xf8,0x80,0x0,0x0,0x0,0x0,0x35,0x27,0x48,0x10, + 0x0,0x0,0x0,0x0,0x36,0x32,0xda,0x80,0x0,0x0,0x0,0x0,0x37,0x7,0x2a,0x10, + 0x0,0x0,0x0,0x0,0x38,0x1b,0xf7,0x0,0x0,0x0,0x0,0x0,0x38,0xe6,0xfe,0x0, + 0x0,0x0,0x0,0x0,0x39,0xfb,0xca,0xf0,0x0,0x0,0x0,0x0,0x3a,0x4,0xe9,0x50, + 0x0,0x0,0x0,0x0,0x3a,0xc6,0xee,0x10,0x0,0x0,0x0,0x0,0x3b,0xdb,0xbb,0x0, + 0x0,0x0,0x0,0x0,0x3c,0xb0,0xa,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x9d,0x0, + 0x0,0x0,0x0,0x0,0x3e,0x8f,0xec,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x7f,0x0, + 0x0,0x0,0x0,0x0,0x40,0x6f,0xce,0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x9b,0x80, + 0x0,0x0,0x0,0x0,0x42,0x4f,0xb0,0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x7d,0x80, + 0x0,0x0,0x0,0x0,0x44,0x2f,0x92,0x90,0x0,0x0,0x0,0x0,0x45,0x44,0x5f,0x80, + 0x0,0x0,0x0,0x0,0x45,0xf3,0xc5,0x10,0x0,0x0,0x0,0x0,0x47,0x2d,0x7c,0x0, + 0x0,0x0,0x0,0x0,0x47,0xd3,0xa7,0x10,0x0,0x0,0x0,0x0,0x49,0xd,0x5e,0x0, + 0x0,0x0,0x0,0x0,0x49,0xb3,0x89,0x10,0x0,0x0,0x0,0x0,0x4a,0xed,0x40,0x0, + 0x0,0x0,0x0,0x0,0x4b,0x9c,0xa5,0x90,0x0,0x0,0x0,0x0,0x4c,0xd6,0x5c,0x80, + 0x0,0x0,0x0,0x0,0x4d,0x7c,0x87,0x90,0x0,0x0,0x0,0x0,0x4e,0xb6,0x3e,0x80, + 0x0,0x0,0x0,0x0,0x4f,0x5c,0x69,0x90,0x0,0x0,0x0,0x0,0x50,0x96,0x20,0x80, + 0x0,0x0,0x0,0x0,0x51,0x3c,0x4b,0x90,0x0,0x0,0x0,0x0,0x52,0x76,0x2,0x80, + 0x0,0x0,0x0,0x0,0x53,0x1c,0x2d,0x90,0x0,0x0,0x0,0x0,0x54,0x55,0xe4,0x80, + 0x0,0x0,0x0,0x0,0x54,0xfc,0xf,0x90,0x0,0x0,0x0,0x0,0x56,0x35,0xc6,0x80, + 0x0,0x0,0x0,0x0,0x56,0xe5,0x2c,0x10,0x0,0x0,0x0,0x0,0x58,0x1e,0xe3,0x0, + 0x0,0x0,0x0,0x0,0x58,0xc5,0xe,0x10,0x0,0x0,0x0,0x0,0x59,0xfe,0xc5,0x0, + 0x0,0x0,0x0,0x0,0x5a,0xa4,0xf0,0x10,0x0,0x0,0x0,0x0,0x5b,0xde,0xa7,0x0, + 0x0,0x0,0x0,0x0,0x5c,0x84,0xd2,0x10,0x0,0x0,0x0,0x0,0x5d,0xbe,0x89,0x0, + 0x0,0x0,0x0,0x0,0x5e,0x64,0xb4,0x10,0x0,0x0,0x0,0x0,0x5f,0x9e,0x6b,0x0, + 0x0,0x0,0x0,0x0,0x60,0x4d,0xd0,0x90,0x0,0x0,0x0,0x0,0x61,0x87,0x87,0x80, + 0x0,0x0,0x0,0x0,0x62,0x2d,0xb2,0x90,0x0,0x0,0x0,0x0,0x63,0x67,0x69,0x80, + 0x0,0x0,0x0,0x0,0x64,0xd,0x94,0x90,0x0,0x0,0x0,0x0,0x65,0x47,0x4b,0x80, + 0x0,0x0,0x0,0x0,0x65,0xed,0x76,0x90,0x0,0x0,0x0,0x0,0x67,0x27,0x2d,0x80, + 0x0,0x0,0x0,0x0,0x67,0xcd,0x58,0x90,0x0,0x0,0x0,0x0,0x69,0x7,0xf,0x80, + 0x0,0x0,0x0,0x0,0x69,0xad,0x3a,0x90,0x0,0x0,0x0,0x0,0x6a,0xe6,0xf1,0x80, + 0x0,0x0,0x0,0x0,0x6b,0x96,0x57,0x10,0x0,0x0,0x0,0x0,0x6c,0xd0,0xe,0x0, + 0x0,0x0,0x0,0x0,0x6d,0x76,0x39,0x10,0x0,0x0,0x0,0x0,0x6e,0xaf,0xf0,0x0, + 0x0,0x0,0x0,0x0,0x6f,0x56,0x1b,0x10,0x0,0x0,0x0,0x0,0x70,0x8f,0xd2,0x0, + 0x0,0x0,0x0,0x0,0x71,0x35,0xfd,0x10,0x0,0x0,0x0,0x0,0x72,0x6f,0xb4,0x0, + 0x0,0x0,0x0,0x0,0x73,0x15,0xdf,0x10,0x0,0x0,0x0,0x0,0x74,0x4f,0x96,0x0, + 0x0,0x0,0x0,0x0,0x74,0xfe,0xfb,0x90,0x0,0x0,0x0,0x0,0x76,0x38,0xb2,0x80, + 0x0,0x0,0x0,0x0,0x76,0xde,0xdd,0x90,0x0,0x0,0x0,0x0,0x78,0x18,0x94,0x80, + 0x0,0x0,0x0,0x0,0x78,0xbe,0xbf,0x90,0x0,0x0,0x0,0x0,0x79,0xf8,0x76,0x80, + 0x0,0x0,0x0,0x0,0x7a,0x9e,0xa1,0x90,0x0,0x0,0x0,0x0,0x7b,0xd8,0x58,0x80, + 0x0,0x0,0x0,0x0,0x7c,0x7e,0x83,0x90,0x0,0x0,0x0,0x0,0x7d,0xb8,0x3a,0x80, + 0x0,0x0,0x0,0x0,0x7e,0x5e,0x65,0x90,0x0,0x0,0x0,0x0,0x7f,0x98,0x1c,0x80, + 0x0,0x3,0x1,0x2,0x3,0x4,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5, + 0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5, + 0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x7,0x6, + 0x8,0x7,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3, + 0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3, + 0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3, + 0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3, + 0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x0,0x0,0x0,0x0, + 0x0,0x0,0xff,0xff,0xab,0xa0,0x1,0x4,0xff,0xff,0xab,0xa0,0x1,0x8,0xff,0xff, + 0x9d,0x90,0x0,0xc,0xff,0xff,0xb9,0xb0,0x1,0x10,0xff,0xff,0xab,0xa0,0x1,0x15, + 0xff,0xff,0xb9,0xb0,0x1,0x19,0xff,0xff,0xab,0xa0,0x0,0x1d,0xff,0xff,0xb9,0xb0, + 0x0,0x21,0xff,0xff,0xab,0xa0,0x1,0x15,0xff,0xff,0x9d,0x90,0x0,0xc,0x2d,0x30, + 0x30,0x0,0x4d,0x57,0x54,0x0,0x4d,0x50,0x54,0x0,0x4d,0x53,0x54,0x0,0x4d,0x44, + 0x44,0x54,0x0,0x4d,0x44,0x54,0x0,0x43,0x44,0x54,0x0,0x43,0x53,0x54,0x0,0x45, + 0x53,0x54,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x4d,0x53,0x54,0x37,0x4d,0x44, + 0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30, + 0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Cayman + 0x0,0x0,0x0,0xcb, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0x8b, + 0xf4,0x61,0xe8,0x1,0x2,0xff,0xff,0xb5,0x70,0x0,0x0,0xff,0xff,0xb5,0x18,0x0, + 0x4,0xff,0xff,0xb9,0xb0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x43,0x4d,0x54,0x0,0x45, + 0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0, + 0x3,0x0,0x0,0x0,0xc,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff, + 0xff,0x69,0x87,0x26,0x10,0xff,0xff,0xff,0xff,0x8b,0xf4,0x61,0xe8,0x0,0x1,0x2, + 0xff,0xff,0xb5,0x70,0x0,0x0,0xff,0xff,0xb5,0x18,0x0,0x4,0xff,0xff,0xb9,0xb0, + 0x0,0x8,0x4c,0x4d,0x54,0x0,0x43,0x4d,0x54,0x0,0x45,0x53,0x54,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xa,0x45,0x53,0x54,0x35,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Antigua 0x0,0x0,0x0,0xaa, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, @@ -29681,1166 +26143,675 @@ static const unsigned char qt_resource_data[] = { 0x0,0xff,0xff,0xff,0xff,0x93,0x37,0x33,0xac,0x0,0x1,0xff,0xff,0xc6,0x54,0x0, 0x0,0xff,0xff,0xc7,0xc0,0x0,0x4,0x4c,0x4d,0x54,0x0,0x41,0x53,0x54,0x0,0x0, 0x0,0x0,0x0,0xa,0x41,0x53,0x54,0x34,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Santarem - 0x0,0x0,0x2,0x72, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x1f,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x11,0x80,0x0,0x0,0x0,0x96, - 0xaa,0x7a,0x48,0xb8,0xf,0x57,0xf0,0xb8,0xfd,0x4e,0xb0,0xb9,0xf1,0x42,0x40,0xba, - 0xde,0x82,0x30,0xda,0x38,0xbc,0x40,0xda,0xec,0x8,0x40,0xdc,0x19,0xef,0xc0,0xdc, - 0xb9,0x67,0x30,0xdd,0xfb,0x23,0x40,0xde,0x9b,0xec,0x30,0xdf,0xdd,0xa8,0x40,0xe0, - 0x54,0x41,0x30,0xf4,0x98,0xd,0xc0,0xf5,0x5,0x6c,0x30,0xf6,0xc0,0x72,0x40,0xf7, - 0xe,0x2c,0xb0,0xf8,0x51,0x3a,0x40,0xf8,0xc7,0xd3,0x30,0xfa,0xa,0xe0,0xc0,0xfa, - 0xa9,0x6,0xb0,0xfb,0xec,0x14,0x40,0xfc,0x8b,0x8b,0xb0,0x1d,0xc9,0x9c,0x40,0x1e, - 0x78,0xe5,0xb0,0x1f,0xa0,0x43,0xc0,0x20,0x33,0xdd,0xb0,0x21,0x81,0x77,0x40,0x22, - 0xb,0xd6,0xb0,0x48,0x60,0x71,0x40,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x3,0xff,0xff,0xcc,0xb8,0x0,0x0,0xff,0xff,0xd5,0xd0, - 0x1,0x4,0xff,0xff,0xc7,0xc0,0x0,0x9,0xff,0xff,0xd5,0xd0,0x0,0xd,0x4c,0x4d, - 0x54,0x0,0x41,0x4d,0x53,0x54,0x0,0x41,0x4d,0x54,0x0,0x42,0x52,0x54,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0, - 0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1f,0x0,0x0,0x0,0x4,0x0, - 0x0,0x0,0x11,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x96, - 0xaa,0x7a,0x48,0xff,0xff,0xff,0xff,0xb8,0xf,0x57,0xf0,0xff,0xff,0xff,0xff,0xb8, - 0xfd,0x4e,0xb0,0xff,0xff,0xff,0xff,0xb9,0xf1,0x42,0x40,0xff,0xff,0xff,0xff,0xba, - 0xde,0x82,0x30,0xff,0xff,0xff,0xff,0xda,0x38,0xbc,0x40,0xff,0xff,0xff,0xff,0xda, - 0xec,0x8,0x40,0xff,0xff,0xff,0xff,0xdc,0x19,0xef,0xc0,0xff,0xff,0xff,0xff,0xdc, - 0xb9,0x67,0x30,0xff,0xff,0xff,0xff,0xdd,0xfb,0x23,0x40,0xff,0xff,0xff,0xff,0xde, - 0x9b,0xec,0x30,0xff,0xff,0xff,0xff,0xdf,0xdd,0xa8,0x40,0xff,0xff,0xff,0xff,0xe0, - 0x54,0x41,0x30,0xff,0xff,0xff,0xff,0xf4,0x98,0xd,0xc0,0xff,0xff,0xff,0xff,0xf5, - 0x5,0x6c,0x30,0xff,0xff,0xff,0xff,0xf6,0xc0,0x72,0x40,0xff,0xff,0xff,0xff,0xf7, - 0xe,0x2c,0xb0,0xff,0xff,0xff,0xff,0xf8,0x51,0x3a,0x40,0xff,0xff,0xff,0xff,0xf8, - 0xc7,0xd3,0x30,0xff,0xff,0xff,0xff,0xfa,0xa,0xe0,0xc0,0xff,0xff,0xff,0xff,0xfa, - 0xa9,0x6,0xb0,0xff,0xff,0xff,0xff,0xfb,0xec,0x14,0x40,0xff,0xff,0xff,0xff,0xfc, - 0x8b,0x8b,0xb0,0x0,0x0,0x0,0x0,0x1d,0xc9,0x9c,0x40,0x0,0x0,0x0,0x0,0x1e, - 0x78,0xe5,0xb0,0x0,0x0,0x0,0x0,0x1f,0xa0,0x43,0xc0,0x0,0x0,0x0,0x0,0x20, - 0x33,0xdd,0xb0,0x0,0x0,0x0,0x0,0x21,0x81,0x77,0x40,0x0,0x0,0x0,0x0,0x22, - 0xb,0xd6,0xb0,0x0,0x0,0x0,0x0,0x48,0x60,0x71,0x40,0x0,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0xff,0xff,0xcc,0xb8,0x0,0x0, - 0xff,0xff,0xd5,0xd0,0x1,0x4,0xff,0xff,0xc7,0xc0,0x0,0x9,0xff,0xff,0xd5,0xd0, - 0x0,0xd,0x4c,0x4d,0x54,0x0,0x41,0x4d,0x53,0x54,0x0,0x41,0x4d,0x54,0x0,0x42, - 0x52,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x42,0x52,0x54,0x33, - 0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Chicago - 0x0,0x0,0xe,0x1, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Cordoba + 0x0,0x0,0x4,0x55, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xec,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x18,0x80,0x0,0x0,0x0,0x9e, - 0xa6,0x2c,0x80,0x9f,0xba,0xf9,0x70,0xa0,0x86,0xe,0x80,0xa1,0x9a,0xdb,0x70,0xa2, - 0xcb,0x74,0x0,0xa3,0x83,0xf7,0xf0,0xa4,0x45,0xd2,0x80,0xa5,0x63,0xd9,0xf0,0xa6, - 0x53,0xd9,0x0,0xa7,0x15,0x97,0x70,0xa8,0x33,0xbb,0x0,0xa8,0xfe,0xb3,0xf0,0xaa, - 0x13,0x9d,0x0,0xaa,0xde,0x95,0xf0,0xab,0xf3,0x7f,0x0,0xac,0xbe,0x77,0xf0,0xad, - 0xd3,0x61,0x0,0xae,0x9e,0x59,0xf0,0xaf,0xb3,0x43,0x0,0xb0,0x7e,0x3b,0xf0,0xb1, - 0x9c,0x5f,0x80,0xb2,0x67,0x58,0x70,0xb3,0x7c,0x41,0x80,0xb4,0x47,0x3a,0x70,0xb5, - 0x5c,0x23,0x80,0xb6,0x27,0x1c,0x70,0xb7,0x3c,0x5,0x80,0xb8,0x6,0xfe,0x70,0xb9, - 0x1b,0xe7,0x80,0xb9,0xe6,0xe0,0x70,0xbb,0x5,0x4,0x0,0xbb,0xc6,0xc2,0x70,0xbc, - 0xe4,0xe6,0x0,0xbd,0xaf,0xde,0xf0,0xbe,0xc4,0xc8,0x0,0xbf,0x8f,0xc0,0xf0,0xc0, - 0x5a,0xd6,0x0,0xc1,0xb0,0x3c,0x70,0xc2,0x84,0x8c,0x0,0xc3,0x4f,0x84,0xf0,0xc4, - 0x64,0x6e,0x0,0xc5,0x2f,0x66,0xf0,0xc6,0x4d,0x8a,0x80,0xc7,0xf,0x48,0xf0,0xc8, - 0x2d,0x6c,0x80,0xc8,0xf8,0x65,0x70,0xca,0xd,0x4e,0x80,0xca,0xd8,0x47,0x70,0xcb, - 0x88,0xfe,0x80,0xd2,0x23,0xf4,0x70,0xd2,0x61,0x9,0xf0,0xd3,0x75,0xf3,0x0,0xd4, - 0x40,0xeb,0xf0,0xd5,0x55,0xd5,0x0,0xd6,0x20,0xcd,0xf0,0xd7,0x35,0xb7,0x0,0xd8, - 0x0,0xaf,0xf0,0xd9,0x15,0x99,0x0,0xd9,0xe0,0x91,0xf0,0xda,0xfe,0xb5,0x80,0xdb, - 0xc0,0x73,0xf0,0xdc,0xde,0x97,0x80,0xdd,0xa9,0x90,0x70,0xde,0xbe,0x79,0x80,0xdf, - 0x89,0x72,0x70,0xe0,0x9e,0x5b,0x80,0xe1,0x69,0x54,0x70,0xe2,0x7e,0x3d,0x80,0xe3, - 0x49,0x36,0x70,0xe4,0x5e,0x1f,0x80,0xe5,0x57,0x3c,0xf0,0xe6,0x47,0x3c,0x0,0xe7, - 0x37,0x1e,0xf0,0xe8,0x27,0x1e,0x0,0xe9,0x17,0x0,0xf0,0xea,0x7,0x0,0x0,0xea, - 0xf6,0xe2,0xf0,0xeb,0xe6,0xe2,0x0,0xec,0xd6,0xc4,0xf0,0xed,0xc6,0xc4,0x0,0xee, - 0xbf,0xe1,0x70,0xef,0xaf,0xe0,0x80,0xf0,0x9f,0xc3,0x70,0xf1,0x8f,0xc2,0x80,0xf2, - 0x7f,0xa5,0x70,0xf3,0x6f,0xa4,0x80,0xf4,0x5f,0x87,0x70,0xf5,0x4f,0x86,0x80,0xf6, - 0x3f,0x69,0x70,0xf7,0x2f,0x68,0x80,0xf8,0x28,0x85,0xf0,0xf9,0xf,0x4a,0x80,0xfa, - 0x8,0x67,0xf0,0xfa,0xf8,0x67,0x0,0xfb,0xe8,0x49,0xf0,0xfc,0xd8,0x49,0x0,0xfd, - 0xc8,0x2b,0xf0,0xfe,0xb8,0x2b,0x0,0xff,0xa8,0xd,0xf0,0x0,0x98,0xd,0x0,0x1, - 0x87,0xef,0xf0,0x2,0x77,0xef,0x0,0x3,0x71,0xc,0x70,0x4,0x61,0xb,0x80,0x5, - 0x50,0xee,0x70,0x6,0x40,0xed,0x80,0x7,0x30,0xd0,0x70,0x7,0x8d,0x27,0x80,0x9, - 0x10,0xb2,0x70,0x9,0xad,0xa3,0x0,0xa,0xf0,0x94,0x70,0xb,0xe0,0x93,0x80,0xc, - 0xd9,0xb0,0xf0,0xd,0xc0,0x75,0x80,0xe,0xb9,0x92,0xf0,0xf,0xa9,0x92,0x0,0x10, - 0x99,0x74,0xf0,0x11,0x89,0x74,0x0,0x12,0x79,0x56,0xf0,0x13,0x69,0x56,0x0,0x14, - 0x59,0x38,0xf0,0x15,0x49,0x38,0x0,0x16,0x39,0x1a,0xf0,0x17,0x29,0x1a,0x0,0x18, - 0x22,0x37,0x70,0x19,0x8,0xfc,0x0,0x1a,0x2,0x19,0x70,0x1a,0xf2,0x18,0x80,0x1b, - 0xe1,0xfb,0x70,0x1c,0xd1,0xfa,0x80,0x1d,0xc1,0xdd,0x70,0x1e,0xb1,0xdc,0x80,0x1f, - 0xa1,0xbf,0x70,0x20,0x76,0xf,0x0,0x21,0x81,0xa1,0x70,0x22,0x55,0xf1,0x0,0x23, - 0x6a,0xbd,0xf0,0x24,0x35,0xd3,0x0,0x25,0x4a,0x9f,0xf0,0x26,0x15,0xb5,0x0,0x27, - 0x2a,0x81,0xf0,0x27,0xfe,0xd1,0x80,0x29,0xa,0x63,0xf0,0x29,0xde,0xb3,0x80,0x2a, - 0xea,0x45,0xf0,0x2b,0xbe,0x95,0x80,0x2c,0xd3,0x62,0x70,0x2d,0x9e,0x77,0x80,0x2e, - 0xb3,0x44,0x70,0x2f,0x7e,0x59,0x80,0x30,0x93,0x26,0x70,0x31,0x67,0x76,0x0,0x32, - 0x73,0x8,0x70,0x33,0x47,0x58,0x0,0x34,0x52,0xea,0x70,0x35,0x27,0x3a,0x0,0x36, - 0x32,0xcc,0x70,0x37,0x7,0x1c,0x0,0x38,0x1b,0xe8,0xf0,0x38,0xe6,0xfe,0x0,0x39, - 0xfb,0xca,0xf0,0x3a,0xc6,0xe0,0x0,0x3b,0xdb,0xac,0xf0,0x3c,0xaf,0xfc,0x80,0x3d, - 0xbb,0x8e,0xf0,0x3e,0x8f,0xde,0x80,0x3f,0x9b,0x70,0xf0,0x40,0x6f,0xc0,0x80,0x41, - 0x84,0x8d,0x70,0x42,0x4f,0xa2,0x80,0x43,0x64,0x6f,0x70,0x44,0x2f,0x84,0x80,0x45, - 0x44,0x51,0x70,0x45,0xf3,0xb7,0x0,0x47,0x2d,0x6d,0xf0,0x47,0xd3,0x99,0x0,0x49, - 0xd,0x4f,0xf0,0x49,0xb3,0x7b,0x0,0x4a,0xed,0x31,0xf0,0x4b,0x9c,0x97,0x80,0x4c, - 0xd6,0x4e,0x70,0x4d,0x7c,0x79,0x80,0x4e,0xb6,0x30,0x70,0x4f,0x5c,0x5b,0x80,0x50, - 0x96,0x12,0x70,0x51,0x3c,0x3d,0x80,0x52,0x75,0xf4,0x70,0x53,0x1c,0x1f,0x80,0x54, - 0x55,0xd6,0x70,0x54,0xfc,0x1,0x80,0x56,0x35,0xb8,0x70,0x56,0xe5,0x1e,0x0,0x58, - 0x1e,0xd4,0xf0,0x58,0xc5,0x0,0x0,0x59,0xfe,0xb6,0xf0,0x5a,0xa4,0xe2,0x0,0x5b, - 0xde,0x98,0xf0,0x5c,0x84,0xc4,0x0,0x5d,0xbe,0x7a,0xf0,0x5e,0x64,0xa6,0x0,0x5f, - 0x9e,0x5c,0xf0,0x60,0x4d,0xc2,0x80,0x61,0x87,0x79,0x70,0x62,0x2d,0xa4,0x80,0x63, - 0x67,0x5b,0x70,0x64,0xd,0x86,0x80,0x65,0x47,0x3d,0x70,0x65,0xed,0x68,0x80,0x67, - 0x27,0x1f,0x70,0x67,0xcd,0x4a,0x80,0x69,0x7,0x1,0x70,0x69,0xad,0x2c,0x80,0x6a, - 0xe6,0xe3,0x70,0x6b,0x96,0x49,0x0,0x6c,0xcf,0xff,0xf0,0x6d,0x76,0x2b,0x0,0x6e, - 0xaf,0xe1,0xf0,0x6f,0x56,0xd,0x0,0x70,0x8f,0xc3,0xf0,0x71,0x35,0xef,0x0,0x72, - 0x6f,0xa5,0xf0,0x73,0x15,0xd1,0x0,0x74,0x4f,0x87,0xf0,0x74,0xfe,0xed,0x80,0x76, - 0x38,0xa4,0x70,0x76,0xde,0xcf,0x80,0x78,0x18,0x86,0x70,0x78,0xbe,0xb1,0x80,0x79, - 0xf8,0x68,0x70,0x7a,0x9e,0x93,0x80,0x7b,0xd8,0x4a,0x70,0x7c,0x7e,0x75,0x80,0x7d, - 0xb8,0x2c,0x70,0x7e,0x5e,0x57,0x80,0x7f,0x98,0xe,0x70,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x3,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x4,0x5,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0xad,0xd4,0x0,0x0,0xff,0xff,0xb9, - 0xb0,0x1,0x4,0xff,0xff,0xab,0xa0,0x0,0x8,0xff,0xff,0xb9,0xb0,0x0,0xc,0xff, - 0xff,0xb9,0xb0,0x1,0x10,0xff,0xff,0xb9,0xb0,0x1,0x14,0xff,0xff,0xab,0xa0,0x0, - 0x8,0x4c,0x4d,0x54,0x0,0x43,0x44,0x54,0x0,0x43,0x53,0x54,0x0,0x45,0x53,0x54, - 0x0,0x43,0x57,0x54,0x0,0x43,0x50,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0, - 0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0, - 0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xed,0x0,0x0,0x0,0x7,0x0, - 0x0,0x0,0x18,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x5e, - 0x3,0xfe,0xa0,0xff,0xff,0xff,0xff,0x9e,0xa6,0x2c,0x80,0xff,0xff,0xff,0xff,0x9f, - 0xba,0xf9,0x70,0xff,0xff,0xff,0xff,0xa0,0x86,0xe,0x80,0xff,0xff,0xff,0xff,0xa1, - 0x9a,0xdb,0x70,0xff,0xff,0xff,0xff,0xa2,0xcb,0x74,0x0,0xff,0xff,0xff,0xff,0xa3, - 0x83,0xf7,0xf0,0xff,0xff,0xff,0xff,0xa4,0x45,0xd2,0x80,0xff,0xff,0xff,0xff,0xa5, - 0x63,0xd9,0xf0,0xff,0xff,0xff,0xff,0xa6,0x53,0xd9,0x0,0xff,0xff,0xff,0xff,0xa7, - 0x15,0x97,0x70,0xff,0xff,0xff,0xff,0xa8,0x33,0xbb,0x0,0xff,0xff,0xff,0xff,0xa8, - 0xfe,0xb3,0xf0,0xff,0xff,0xff,0xff,0xaa,0x13,0x9d,0x0,0xff,0xff,0xff,0xff,0xaa, - 0xde,0x95,0xf0,0xff,0xff,0xff,0xff,0xab,0xf3,0x7f,0x0,0xff,0xff,0xff,0xff,0xac, - 0xbe,0x77,0xf0,0xff,0xff,0xff,0xff,0xad,0xd3,0x61,0x0,0xff,0xff,0xff,0xff,0xae, - 0x9e,0x59,0xf0,0xff,0xff,0xff,0xff,0xaf,0xb3,0x43,0x0,0xff,0xff,0xff,0xff,0xb0, - 0x7e,0x3b,0xf0,0xff,0xff,0xff,0xff,0xb1,0x9c,0x5f,0x80,0xff,0xff,0xff,0xff,0xb2, - 0x67,0x58,0x70,0xff,0xff,0xff,0xff,0xb3,0x7c,0x41,0x80,0xff,0xff,0xff,0xff,0xb4, - 0x47,0x3a,0x70,0xff,0xff,0xff,0xff,0xb5,0x5c,0x23,0x80,0xff,0xff,0xff,0xff,0xb6, - 0x27,0x1c,0x70,0xff,0xff,0xff,0xff,0xb7,0x3c,0x5,0x80,0xff,0xff,0xff,0xff,0xb8, - 0x6,0xfe,0x70,0xff,0xff,0xff,0xff,0xb9,0x1b,0xe7,0x80,0xff,0xff,0xff,0xff,0xb9, - 0xe6,0xe0,0x70,0xff,0xff,0xff,0xff,0xbb,0x5,0x4,0x0,0xff,0xff,0xff,0xff,0xbb, - 0xc6,0xc2,0x70,0xff,0xff,0xff,0xff,0xbc,0xe4,0xe6,0x0,0xff,0xff,0xff,0xff,0xbd, - 0xaf,0xde,0xf0,0xff,0xff,0xff,0xff,0xbe,0xc4,0xc8,0x0,0xff,0xff,0xff,0xff,0xbf, - 0x8f,0xc0,0xf0,0xff,0xff,0xff,0xff,0xc0,0x5a,0xd6,0x0,0xff,0xff,0xff,0xff,0xc1, - 0xb0,0x3c,0x70,0xff,0xff,0xff,0xff,0xc2,0x84,0x8c,0x0,0xff,0xff,0xff,0xff,0xc3, - 0x4f,0x84,0xf0,0xff,0xff,0xff,0xff,0xc4,0x64,0x6e,0x0,0xff,0xff,0xff,0xff,0xc5, - 0x2f,0x66,0xf0,0xff,0xff,0xff,0xff,0xc6,0x4d,0x8a,0x80,0xff,0xff,0xff,0xff,0xc7, - 0xf,0x48,0xf0,0xff,0xff,0xff,0xff,0xc8,0x2d,0x6c,0x80,0xff,0xff,0xff,0xff,0xc8, - 0xf8,0x65,0x70,0xff,0xff,0xff,0xff,0xca,0xd,0x4e,0x80,0xff,0xff,0xff,0xff,0xca, - 0xd8,0x47,0x70,0xff,0xff,0xff,0xff,0xcb,0x88,0xfe,0x80,0xff,0xff,0xff,0xff,0xd2, - 0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x61,0x9,0xf0,0xff,0xff,0xff,0xff,0xd3, - 0x75,0xf3,0x0,0xff,0xff,0xff,0xff,0xd4,0x40,0xeb,0xf0,0xff,0xff,0xff,0xff,0xd5, - 0x55,0xd5,0x0,0xff,0xff,0xff,0xff,0xd6,0x20,0xcd,0xf0,0xff,0xff,0xff,0xff,0xd7, - 0x35,0xb7,0x0,0xff,0xff,0xff,0xff,0xd8,0x0,0xaf,0xf0,0xff,0xff,0xff,0xff,0xd9, - 0x15,0x99,0x0,0xff,0xff,0xff,0xff,0xd9,0xe0,0x91,0xf0,0xff,0xff,0xff,0xff,0xda, - 0xfe,0xb5,0x80,0xff,0xff,0xff,0xff,0xdb,0xc0,0x73,0xf0,0xff,0xff,0xff,0xff,0xdc, - 0xde,0x97,0x80,0xff,0xff,0xff,0xff,0xdd,0xa9,0x90,0x70,0xff,0xff,0xff,0xff,0xde, - 0xbe,0x79,0x80,0xff,0xff,0xff,0xff,0xdf,0x89,0x72,0x70,0xff,0xff,0xff,0xff,0xe0, - 0x9e,0x5b,0x80,0xff,0xff,0xff,0xff,0xe1,0x69,0x54,0x70,0xff,0xff,0xff,0xff,0xe2, - 0x7e,0x3d,0x80,0xff,0xff,0xff,0xff,0xe3,0x49,0x36,0x70,0xff,0xff,0xff,0xff,0xe4, - 0x5e,0x1f,0x80,0xff,0xff,0xff,0xff,0xe5,0x57,0x3c,0xf0,0xff,0xff,0xff,0xff,0xe6, - 0x47,0x3c,0x0,0xff,0xff,0xff,0xff,0xe7,0x37,0x1e,0xf0,0xff,0xff,0xff,0xff,0xe8, - 0x27,0x1e,0x0,0xff,0xff,0xff,0xff,0xe9,0x17,0x0,0xf0,0xff,0xff,0xff,0xff,0xea, - 0x7,0x0,0x0,0xff,0xff,0xff,0xff,0xea,0xf6,0xe2,0xf0,0xff,0xff,0xff,0xff,0xeb, - 0xe6,0xe2,0x0,0xff,0xff,0xff,0xff,0xec,0xd6,0xc4,0xf0,0xff,0xff,0xff,0xff,0xed, - 0xc6,0xc4,0x0,0xff,0xff,0xff,0xff,0xee,0xbf,0xe1,0x70,0xff,0xff,0xff,0xff,0xef, - 0xaf,0xe0,0x80,0xff,0xff,0xff,0xff,0xf0,0x9f,0xc3,0x70,0xff,0xff,0xff,0xff,0xf1, - 0x8f,0xc2,0x80,0xff,0xff,0xff,0xff,0xf2,0x7f,0xa5,0x70,0xff,0xff,0xff,0xff,0xf3, - 0x6f,0xa4,0x80,0xff,0xff,0xff,0xff,0xf4,0x5f,0x87,0x70,0xff,0xff,0xff,0xff,0xf5, - 0x4f,0x86,0x80,0xff,0xff,0xff,0xff,0xf6,0x3f,0x69,0x70,0xff,0xff,0xff,0xff,0xf7, - 0x2f,0x68,0x80,0xff,0xff,0xff,0xff,0xf8,0x28,0x85,0xf0,0xff,0xff,0xff,0xff,0xf9, - 0xf,0x4a,0x80,0xff,0xff,0xff,0xff,0xfa,0x8,0x67,0xf0,0xff,0xff,0xff,0xff,0xfa, - 0xf8,0x67,0x0,0xff,0xff,0xff,0xff,0xfb,0xe8,0x49,0xf0,0xff,0xff,0xff,0xff,0xfc, - 0xd8,0x49,0x0,0xff,0xff,0xff,0xff,0xfd,0xc8,0x2b,0xf0,0xff,0xff,0xff,0xff,0xfe, - 0xb8,0x2b,0x0,0xff,0xff,0xff,0xff,0xff,0xa8,0xd,0xf0,0x0,0x0,0x0,0x0,0x0, - 0x98,0xd,0x0,0x0,0x0,0x0,0x0,0x1,0x87,0xef,0xf0,0x0,0x0,0x0,0x0,0x2, - 0x77,0xef,0x0,0x0,0x0,0x0,0x0,0x3,0x71,0xc,0x70,0x0,0x0,0x0,0x0,0x4, - 0x61,0xb,0x80,0x0,0x0,0x0,0x0,0x5,0x50,0xee,0x70,0x0,0x0,0x0,0x0,0x6, - 0x40,0xed,0x80,0x0,0x0,0x0,0x0,0x7,0x30,0xd0,0x70,0x0,0x0,0x0,0x0,0x7, - 0x8d,0x27,0x80,0x0,0x0,0x0,0x0,0x9,0x10,0xb2,0x70,0x0,0x0,0x0,0x0,0x9, - 0xad,0xa3,0x0,0x0,0x0,0x0,0x0,0xa,0xf0,0x94,0x70,0x0,0x0,0x0,0x0,0xb, - 0xe0,0x93,0x80,0x0,0x0,0x0,0x0,0xc,0xd9,0xb0,0xf0,0x0,0x0,0x0,0x0,0xd, - 0xc0,0x75,0x80,0x0,0x0,0x0,0x0,0xe,0xb9,0x92,0xf0,0x0,0x0,0x0,0x0,0xf, - 0xa9,0x92,0x0,0x0,0x0,0x0,0x0,0x10,0x99,0x74,0xf0,0x0,0x0,0x0,0x0,0x11, - 0x89,0x74,0x0,0x0,0x0,0x0,0x0,0x12,0x79,0x56,0xf0,0x0,0x0,0x0,0x0,0x13, - 0x69,0x56,0x0,0x0,0x0,0x0,0x0,0x14,0x59,0x38,0xf0,0x0,0x0,0x0,0x0,0x15, - 0x49,0x38,0x0,0x0,0x0,0x0,0x0,0x16,0x39,0x1a,0xf0,0x0,0x0,0x0,0x0,0x17, - 0x29,0x1a,0x0,0x0,0x0,0x0,0x0,0x18,0x22,0x37,0x70,0x0,0x0,0x0,0x0,0x19, - 0x8,0xfc,0x0,0x0,0x0,0x0,0x0,0x1a,0x2,0x19,0x70,0x0,0x0,0x0,0x0,0x1a, - 0xf2,0x18,0x80,0x0,0x0,0x0,0x0,0x1b,0xe1,0xfb,0x70,0x0,0x0,0x0,0x0,0x1c, - 0xd1,0xfa,0x80,0x0,0x0,0x0,0x0,0x1d,0xc1,0xdd,0x70,0x0,0x0,0x0,0x0,0x1e, - 0xb1,0xdc,0x80,0x0,0x0,0x0,0x0,0x1f,0xa1,0xbf,0x70,0x0,0x0,0x0,0x0,0x20, - 0x76,0xf,0x0,0x0,0x0,0x0,0x0,0x21,0x81,0xa1,0x70,0x0,0x0,0x0,0x0,0x22, - 0x55,0xf1,0x0,0x0,0x0,0x0,0x0,0x23,0x6a,0xbd,0xf0,0x0,0x0,0x0,0x0,0x24, - 0x35,0xd3,0x0,0x0,0x0,0x0,0x0,0x25,0x4a,0x9f,0xf0,0x0,0x0,0x0,0x0,0x26, - 0x15,0xb5,0x0,0x0,0x0,0x0,0x0,0x27,0x2a,0x81,0xf0,0x0,0x0,0x0,0x0,0x27, - 0xfe,0xd1,0x80,0x0,0x0,0x0,0x0,0x29,0xa,0x63,0xf0,0x0,0x0,0x0,0x0,0x29, - 0xde,0xb3,0x80,0x0,0x0,0x0,0x0,0x2a,0xea,0x45,0xf0,0x0,0x0,0x0,0x0,0x2b, - 0xbe,0x95,0x80,0x0,0x0,0x0,0x0,0x2c,0xd3,0x62,0x70,0x0,0x0,0x0,0x0,0x2d, - 0x9e,0x77,0x80,0x0,0x0,0x0,0x0,0x2e,0xb3,0x44,0x70,0x0,0x0,0x0,0x0,0x2f, - 0x7e,0x59,0x80,0x0,0x0,0x0,0x0,0x30,0x93,0x26,0x70,0x0,0x0,0x0,0x0,0x31, - 0x67,0x76,0x0,0x0,0x0,0x0,0x0,0x32,0x73,0x8,0x70,0x0,0x0,0x0,0x0,0x33, - 0x47,0x58,0x0,0x0,0x0,0x0,0x0,0x34,0x52,0xea,0x70,0x0,0x0,0x0,0x0,0x35, - 0x27,0x3a,0x0,0x0,0x0,0x0,0x0,0x36,0x32,0xcc,0x70,0x0,0x0,0x0,0x0,0x37, - 0x7,0x1c,0x0,0x0,0x0,0x0,0x0,0x38,0x1b,0xe8,0xf0,0x0,0x0,0x0,0x0,0x38, - 0xe6,0xfe,0x0,0x0,0x0,0x0,0x0,0x39,0xfb,0xca,0xf0,0x0,0x0,0x0,0x0,0x3a, - 0xc6,0xe0,0x0,0x0,0x0,0x0,0x0,0x3b,0xdb,0xac,0xf0,0x0,0x0,0x0,0x0,0x3c, - 0xaf,0xfc,0x80,0x0,0x0,0x0,0x0,0x3d,0xbb,0x8e,0xf0,0x0,0x0,0x0,0x0,0x3e, - 0x8f,0xde,0x80,0x0,0x0,0x0,0x0,0x3f,0x9b,0x70,0xf0,0x0,0x0,0x0,0x0,0x40, - 0x6f,0xc0,0x80,0x0,0x0,0x0,0x0,0x41,0x84,0x8d,0x70,0x0,0x0,0x0,0x0,0x42, - 0x4f,0xa2,0x80,0x0,0x0,0x0,0x0,0x43,0x64,0x6f,0x70,0x0,0x0,0x0,0x0,0x44, - 0x2f,0x84,0x80,0x0,0x0,0x0,0x0,0x45,0x44,0x51,0x70,0x0,0x0,0x0,0x0,0x45, - 0xf3,0xb7,0x0,0x0,0x0,0x0,0x0,0x47,0x2d,0x6d,0xf0,0x0,0x0,0x0,0x0,0x47, - 0xd3,0x99,0x0,0x0,0x0,0x0,0x0,0x49,0xd,0x4f,0xf0,0x0,0x0,0x0,0x0,0x49, - 0xb3,0x7b,0x0,0x0,0x0,0x0,0x0,0x4a,0xed,0x31,0xf0,0x0,0x0,0x0,0x0,0x4b, - 0x9c,0x97,0x80,0x0,0x0,0x0,0x0,0x4c,0xd6,0x4e,0x70,0x0,0x0,0x0,0x0,0x4d, - 0x7c,0x79,0x80,0x0,0x0,0x0,0x0,0x4e,0xb6,0x30,0x70,0x0,0x0,0x0,0x0,0x4f, - 0x5c,0x5b,0x80,0x0,0x0,0x0,0x0,0x50,0x96,0x12,0x70,0x0,0x0,0x0,0x0,0x51, - 0x3c,0x3d,0x80,0x0,0x0,0x0,0x0,0x52,0x75,0xf4,0x70,0x0,0x0,0x0,0x0,0x53, - 0x1c,0x1f,0x80,0x0,0x0,0x0,0x0,0x54,0x55,0xd6,0x70,0x0,0x0,0x0,0x0,0x54, - 0xfc,0x1,0x80,0x0,0x0,0x0,0x0,0x56,0x35,0xb8,0x70,0x0,0x0,0x0,0x0,0x56, - 0xe5,0x1e,0x0,0x0,0x0,0x0,0x0,0x58,0x1e,0xd4,0xf0,0x0,0x0,0x0,0x0,0x58, - 0xc5,0x0,0x0,0x0,0x0,0x0,0x0,0x59,0xfe,0xb6,0xf0,0x0,0x0,0x0,0x0,0x5a, - 0xa4,0xe2,0x0,0x0,0x0,0x0,0x0,0x5b,0xde,0x98,0xf0,0x0,0x0,0x0,0x0,0x5c, - 0x84,0xc4,0x0,0x0,0x0,0x0,0x0,0x5d,0xbe,0x7a,0xf0,0x0,0x0,0x0,0x0,0x5e, - 0x64,0xa6,0x0,0x0,0x0,0x0,0x0,0x5f,0x9e,0x5c,0xf0,0x0,0x0,0x0,0x0,0x60, - 0x4d,0xc2,0x80,0x0,0x0,0x0,0x0,0x61,0x87,0x79,0x70,0x0,0x0,0x0,0x0,0x62, - 0x2d,0xa4,0x80,0x0,0x0,0x0,0x0,0x63,0x67,0x5b,0x70,0x0,0x0,0x0,0x0,0x64, - 0xd,0x86,0x80,0x0,0x0,0x0,0x0,0x65,0x47,0x3d,0x70,0x0,0x0,0x0,0x0,0x65, - 0xed,0x68,0x80,0x0,0x0,0x0,0x0,0x67,0x27,0x1f,0x70,0x0,0x0,0x0,0x0,0x67, - 0xcd,0x4a,0x80,0x0,0x0,0x0,0x0,0x69,0x7,0x1,0x70,0x0,0x0,0x0,0x0,0x69, - 0xad,0x2c,0x80,0x0,0x0,0x0,0x0,0x6a,0xe6,0xe3,0x70,0x0,0x0,0x0,0x0,0x6b, - 0x96,0x49,0x0,0x0,0x0,0x0,0x0,0x6c,0xcf,0xff,0xf0,0x0,0x0,0x0,0x0,0x6d, - 0x76,0x2b,0x0,0x0,0x0,0x0,0x0,0x6e,0xaf,0xe1,0xf0,0x0,0x0,0x0,0x0,0x6f, - 0x56,0xd,0x0,0x0,0x0,0x0,0x0,0x70,0x8f,0xc3,0xf0,0x0,0x0,0x0,0x0,0x71, - 0x35,0xef,0x0,0x0,0x0,0x0,0x0,0x72,0x6f,0xa5,0xf0,0x0,0x0,0x0,0x0,0x73, - 0x15,0xd1,0x0,0x0,0x0,0x0,0x0,0x74,0x4f,0x87,0xf0,0x0,0x0,0x0,0x0,0x74, - 0xfe,0xed,0x80,0x0,0x0,0x0,0x0,0x76,0x38,0xa4,0x70,0x0,0x0,0x0,0x0,0x76, - 0xde,0xcf,0x80,0x0,0x0,0x0,0x0,0x78,0x18,0x86,0x70,0x0,0x0,0x0,0x0,0x78, - 0xbe,0xb1,0x80,0x0,0x0,0x0,0x0,0x79,0xf8,0x68,0x70,0x0,0x0,0x0,0x0,0x7a, - 0x9e,0x93,0x80,0x0,0x0,0x0,0x0,0x7b,0xd8,0x4a,0x70,0x0,0x0,0x0,0x0,0x7c, - 0x7e,0x75,0x80,0x0,0x0,0x0,0x0,0x7d,0xb8,0x2c,0x70,0x0,0x0,0x0,0x0,0x7e, - 0x5e,0x57,0x80,0x0,0x0,0x0,0x0,0x7f,0x98,0xe,0x70,0x0,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x3,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x4,0x5,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0xad,0xd4,0x0,0x0,0xff,0xff, - 0xb9,0xb0,0x1,0x4,0xff,0xff,0xab,0xa0,0x0,0x8,0xff,0xff,0xb9,0xb0,0x0,0xc, - 0xff,0xff,0xb9,0xb0,0x1,0x10,0xff,0xff,0xb9,0xb0,0x1,0x14,0xff,0xff,0xab,0xa0, - 0x0,0x8,0x4c,0x4d,0x54,0x0,0x43,0x44,0x54,0x0,0x43,0x53,0x54,0x0,0x45,0x53, - 0x54,0x0,0x43,0x57,0x54,0x0,0x43,0x50,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x1, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0x43,0x53,0x54,0x36,0x43,0x44,0x54, - 0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, - - // /home/konrad/src/smoke/tzone/zoneinfo/America/Port-au-Prince - 0x0,0x0,0x3,0x51, + 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3e,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0xa2, + 0x92,0x8f,0x30,0xb6,0x7b,0x52,0x40,0xb7,0x1a,0xc9,0xb0,0xb8,0x1e,0x8f,0x40,0xb8, + 0xd4,0x70,0x30,0xba,0x17,0x7d,0xc0,0xba,0xb5,0xa3,0xb0,0xbb,0xf8,0xb1,0x40,0xbc, + 0x96,0xd7,0x30,0xbd,0xd9,0xe4,0xc0,0xbe,0x78,0xa,0xb0,0xbf,0xbb,0x18,0x40,0xc0, + 0x5a,0x8f,0xb0,0xc1,0x9d,0x9d,0x40,0xc2,0x3b,0xc3,0x30,0xc3,0x7e,0xd0,0xc0,0xc4, + 0x1c,0xf6,0xb0,0xc5,0x60,0x4,0x40,0xc5,0xfe,0x2a,0x30,0xc7,0x41,0x37,0xc0,0xc7, + 0xe0,0xaf,0x30,0xc8,0x81,0x94,0x40,0xca,0x4d,0xa1,0xb0,0xca,0xee,0x86,0xc0,0xce, + 0x4d,0xff,0x30,0xce,0xb0,0xed,0xc0,0xd3,0x29,0x35,0xb0,0xd4,0x43,0x64,0xc0,0xf4, + 0x3d,0x8,0x30,0xf4,0x9f,0xf6,0xc0,0xf5,0x5,0x6c,0x30,0xf6,0x32,0x10,0x40,0xf6, + 0xe6,0x9f,0xb0,0xf8,0x13,0x43,0xc0,0xf8,0xc7,0xd3,0x30,0xf9,0xf4,0x77,0x40,0xfa, + 0xd3,0x36,0xb0,0xfb,0xc3,0x35,0xc0,0xfc,0xbc,0x53,0x30,0xfd,0xac,0x52,0x40,0xfe, + 0x9c,0x35,0x30,0xff,0x8c,0x34,0x40,0x7,0xa3,0x4a,0xb0,0x8,0x24,0x6f,0xa0,0x23, + 0x94,0xb5,0xb0,0x24,0x10,0x94,0xa0,0x25,0x37,0xf2,0xb0,0x25,0xf0,0x76,0xa0,0x27, + 0x21,0xf,0x30,0x27,0xd0,0x58,0xa0,0x29,0x0,0xff,0x40,0x29,0xb0,0x3a,0xa0,0x2a, + 0xe0,0xd3,0x30,0x2b,0x99,0x57,0x20,0x37,0xf6,0xc6,0xb0,0x38,0xbf,0x2a,0xb0,0x47, + 0x77,0x9,0xb0,0x47,0xdc,0x7f,0x20,0x48,0xfa,0xa2,0xb0,0x49,0xbc,0x61,0x20,0x7f, + 0xff,0xff,0xff,0x1,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x2,0x4,0x5,0x4,0x5,0x3,0x5,0x4,0x5,0x4,0x5, + 0x5,0xff,0xff,0xc3,0xd0,0x0,0x0,0xff,0xff,0xc3,0xd0,0x0,0x4,0xff,0xff,0xc7, + 0xc0,0x0,0x8,0xff,0xff,0xd5,0xd0,0x1,0xc,0xff,0xff,0xe3,0xe0,0x1,0x10,0xff, + 0xff,0xd5,0xd0,0x0,0xc,0x4c,0x4d,0x54,0x0,0x43,0x4d,0x54,0x0,0x2d,0x30,0x34, + 0x0,0x2d,0x30,0x33,0x0,0x2d,0x30,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x14,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x72,0x9c,0xad, + 0xb0,0xff,0xff,0xff,0xff,0xa2,0x92,0x8f,0x30,0xff,0xff,0xff,0xff,0xb6,0x7b,0x52, + 0x40,0xff,0xff,0xff,0xff,0xb7,0x1a,0xc9,0xb0,0xff,0xff,0xff,0xff,0xb8,0x1e,0x8f, + 0x40,0xff,0xff,0xff,0xff,0xb8,0xd4,0x70,0x30,0xff,0xff,0xff,0xff,0xba,0x17,0x7d, + 0xc0,0xff,0xff,0xff,0xff,0xba,0xb5,0xa3,0xb0,0xff,0xff,0xff,0xff,0xbb,0xf8,0xb1, + 0x40,0xff,0xff,0xff,0xff,0xbc,0x96,0xd7,0x30,0xff,0xff,0xff,0xff,0xbd,0xd9,0xe4, + 0xc0,0xff,0xff,0xff,0xff,0xbe,0x78,0xa,0xb0,0xff,0xff,0xff,0xff,0xbf,0xbb,0x18, + 0x40,0xff,0xff,0xff,0xff,0xc0,0x5a,0x8f,0xb0,0xff,0xff,0xff,0xff,0xc1,0x9d,0x9d, + 0x40,0xff,0xff,0xff,0xff,0xc2,0x3b,0xc3,0x30,0xff,0xff,0xff,0xff,0xc3,0x7e,0xd0, + 0xc0,0xff,0xff,0xff,0xff,0xc4,0x1c,0xf6,0xb0,0xff,0xff,0xff,0xff,0xc5,0x60,0x4, + 0x40,0xff,0xff,0xff,0xff,0xc5,0xfe,0x2a,0x30,0xff,0xff,0xff,0xff,0xc7,0x41,0x37, + 0xc0,0xff,0xff,0xff,0xff,0xc7,0xe0,0xaf,0x30,0xff,0xff,0xff,0xff,0xc8,0x81,0x94, + 0x40,0xff,0xff,0xff,0xff,0xca,0x4d,0xa1,0xb0,0xff,0xff,0xff,0xff,0xca,0xee,0x86, + 0xc0,0xff,0xff,0xff,0xff,0xce,0x4d,0xff,0x30,0xff,0xff,0xff,0xff,0xce,0xb0,0xed, + 0xc0,0xff,0xff,0xff,0xff,0xd3,0x29,0x35,0xb0,0xff,0xff,0xff,0xff,0xd4,0x43,0x64, + 0xc0,0xff,0xff,0xff,0xff,0xf4,0x3d,0x8,0x30,0xff,0xff,0xff,0xff,0xf4,0x9f,0xf6, + 0xc0,0xff,0xff,0xff,0xff,0xf5,0x5,0x6c,0x30,0xff,0xff,0xff,0xff,0xf6,0x32,0x10, + 0x40,0xff,0xff,0xff,0xff,0xf6,0xe6,0x9f,0xb0,0xff,0xff,0xff,0xff,0xf8,0x13,0x43, + 0xc0,0xff,0xff,0xff,0xff,0xf8,0xc7,0xd3,0x30,0xff,0xff,0xff,0xff,0xf9,0xf4,0x77, + 0x40,0xff,0xff,0xff,0xff,0xfa,0xd3,0x36,0xb0,0xff,0xff,0xff,0xff,0xfb,0xc3,0x35, + 0xc0,0xff,0xff,0xff,0xff,0xfc,0xbc,0x53,0x30,0xff,0xff,0xff,0xff,0xfd,0xac,0x52, + 0x40,0xff,0xff,0xff,0xff,0xfe,0x9c,0x35,0x30,0xff,0xff,0xff,0xff,0xff,0x8c,0x34, + 0x40,0x0,0x0,0x0,0x0,0x7,0xa3,0x4a,0xb0,0x0,0x0,0x0,0x0,0x8,0x24,0x6f, + 0xa0,0x0,0x0,0x0,0x0,0x23,0x94,0xb5,0xb0,0x0,0x0,0x0,0x0,0x24,0x10,0x94, + 0xa0,0x0,0x0,0x0,0x0,0x25,0x37,0xf2,0xb0,0x0,0x0,0x0,0x0,0x25,0xf0,0x76, + 0xa0,0x0,0x0,0x0,0x0,0x27,0x21,0xf,0x30,0x0,0x0,0x0,0x0,0x27,0xd0,0x58, + 0xa0,0x0,0x0,0x0,0x0,0x29,0x0,0xff,0x40,0x0,0x0,0x0,0x0,0x29,0xb0,0x3a, + 0xa0,0x0,0x0,0x0,0x0,0x2a,0xe0,0xd3,0x30,0x0,0x0,0x0,0x0,0x2b,0x99,0x57, + 0x20,0x0,0x0,0x0,0x0,0x37,0xf6,0xc6,0xb0,0x0,0x0,0x0,0x0,0x38,0xbf,0x2a, + 0xb0,0x0,0x0,0x0,0x0,0x47,0x77,0x9,0xb0,0x0,0x0,0x0,0x0,0x47,0xdc,0x7f, + 0x20,0x0,0x0,0x0,0x0,0x48,0xfa,0xa2,0xb0,0x0,0x0,0x0,0x0,0x49,0xbc,0x61, + 0x20,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x2,0x4,0x5,0x4, + 0x5,0x3,0x5,0x4,0x5,0x4,0x5,0x5,0xff,0xff,0xc3,0xd0,0x0,0x0,0xff,0xff, + 0xc3,0xd0,0x0,0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0xff,0xff,0xd5,0xd0,0x1,0xc, + 0xff,0xff,0xe3,0xe0,0x1,0x10,0xff,0xff,0xd5,0xd0,0x0,0xc,0x4c,0x4d,0x54,0x0, + 0x43,0x4d,0x54,0x0,0x2d,0x30,0x34,0x0,0x2d,0x30,0x33,0x0,0x2d,0x30,0x32,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2d,0x30, + 0x33,0x3e,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/La_Paz + 0x0,0x0,0x1,0x3, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2c,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x80,0x0,0x0,0x0,0x9c, - 0x6e,0x71,0xfc,0x19,0x1b,0x46,0xd0,0x1a,0x1,0xef,0x40,0x1a,0xf1,0xee,0x50,0x1b, - 0xe1,0xd1,0x40,0x1c,0xd1,0xd0,0x50,0x1d,0xc1,0xb3,0x40,0x1e,0xb1,0xb2,0x50,0x1f, - 0xa1,0x95,0x40,0x20,0x91,0x94,0x50,0x21,0x81,0x77,0x40,0x22,0x55,0xd4,0xe0,0x23, - 0x6a,0xaf,0xe0,0x24,0x35,0xb6,0xe0,0x25,0x4a,0x91,0xe0,0x26,0x15,0x98,0xe0,0x27, - 0x2a,0x73,0xe0,0x27,0xfe,0xb5,0x60,0x29,0xa,0x55,0xe0,0x29,0xde,0x97,0x60,0x2a, - 0xea,0x37,0xe0,0x2b,0xbe,0x79,0x60,0x2c,0xd3,0x54,0x60,0x2d,0x9e,0x5b,0x60,0x2e, - 0xb3,0x36,0x60,0x2f,0x7e,0x3d,0x60,0x30,0x93,0x18,0x60,0x31,0x67,0x59,0xe0,0x32, - 0x72,0xfa,0x60,0x33,0x47,0x3b,0xe0,0x34,0x52,0xdc,0x60,0x42,0x4f,0x78,0x50,0x43, - 0x64,0x45,0x40,0x44,0x2f,0x5a,0x50,0x45,0x44,0x27,0x40,0x4f,0x5c,0x4d,0x70,0x50, - 0x96,0x4,0x60,0x51,0x3c,0x2f,0x70,0x52,0x75,0xe6,0x60,0x53,0x1c,0x11,0x70,0x54, - 0x55,0xc8,0x60,0x54,0xfb,0xf3,0x70,0x56,0x35,0xaa,0x60,0x1,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0xff,0xff,0xbc,0x30,0x0,0x0,0xff,0xff,0xbc, - 0x44,0x0,0x4,0xff,0xff,0xc7,0xc0,0x1,0x9,0xff,0xff,0xb9,0xb0,0x0,0xd,0xff, - 0xff,0xc7,0xc0,0x1,0x9,0xff,0xff,0xb9,0xb0,0x0,0xd,0x4c,0x4d,0x54,0x0,0x50, - 0x50,0x4d,0x54,0x0,0x45,0x44,0x54,0x0,0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x0, - 0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6, - 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2d,0x0,0x0,0x0,0x6, - 0x0,0x0,0x0,0x11,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff, - 0x69,0x87,0x1f,0x50,0xff,0xff,0xff,0xff,0x9c,0x6e,0x71,0xfc,0x0,0x0,0x0,0x0, - 0x19,0x1b,0x46,0xd0,0x0,0x0,0x0,0x0,0x1a,0x1,0xef,0x40,0x0,0x0,0x0,0x0, - 0x1a,0xf1,0xee,0x50,0x0,0x0,0x0,0x0,0x1b,0xe1,0xd1,0x40,0x0,0x0,0x0,0x0, - 0x1c,0xd1,0xd0,0x50,0x0,0x0,0x0,0x0,0x1d,0xc1,0xb3,0x40,0x0,0x0,0x0,0x0, - 0x1e,0xb1,0xb2,0x50,0x0,0x0,0x0,0x0,0x1f,0xa1,0x95,0x40,0x0,0x0,0x0,0x0, - 0x20,0x91,0x94,0x50,0x0,0x0,0x0,0x0,0x21,0x81,0x77,0x40,0x0,0x0,0x0,0x0, - 0x22,0x55,0xd4,0xe0,0x0,0x0,0x0,0x0,0x23,0x6a,0xaf,0xe0,0x0,0x0,0x0,0x0, - 0x24,0x35,0xb6,0xe0,0x0,0x0,0x0,0x0,0x25,0x4a,0x91,0xe0,0x0,0x0,0x0,0x0, - 0x26,0x15,0x98,0xe0,0x0,0x0,0x0,0x0,0x27,0x2a,0x73,0xe0,0x0,0x0,0x0,0x0, - 0x27,0xfe,0xb5,0x60,0x0,0x0,0x0,0x0,0x29,0xa,0x55,0xe0,0x0,0x0,0x0,0x0, - 0x29,0xde,0x97,0x60,0x0,0x0,0x0,0x0,0x2a,0xea,0x37,0xe0,0x0,0x0,0x0,0x0, - 0x2b,0xbe,0x79,0x60,0x0,0x0,0x0,0x0,0x2c,0xd3,0x54,0x60,0x0,0x0,0x0,0x0, - 0x2d,0x9e,0x5b,0x60,0x0,0x0,0x0,0x0,0x2e,0xb3,0x36,0x60,0x0,0x0,0x0,0x0, - 0x2f,0x7e,0x3d,0x60,0x0,0x0,0x0,0x0,0x30,0x93,0x18,0x60,0x0,0x0,0x0,0x0, - 0x31,0x67,0x59,0xe0,0x0,0x0,0x0,0x0,0x32,0x72,0xfa,0x60,0x0,0x0,0x0,0x0, - 0x33,0x47,0x3b,0xe0,0x0,0x0,0x0,0x0,0x34,0x52,0xdc,0x60,0x0,0x0,0x0,0x0, - 0x42,0x4f,0x78,0x50,0x0,0x0,0x0,0x0,0x43,0x64,0x45,0x40,0x0,0x0,0x0,0x0, - 0x44,0x2f,0x5a,0x50,0x0,0x0,0x0,0x0,0x45,0x44,0x27,0x40,0x0,0x0,0x0,0x0, - 0x4f,0x5c,0x4d,0x70,0x0,0x0,0x0,0x0,0x50,0x96,0x4,0x60,0x0,0x0,0x0,0x0, - 0x51,0x3c,0x2f,0x70,0x0,0x0,0x0,0x0,0x52,0x75,0xe6,0x60,0x0,0x0,0x0,0x0, - 0x53,0x1c,0x11,0x70,0x0,0x0,0x0,0x0,0x54,0x55,0xc8,0x60,0x0,0x0,0x0,0x0, - 0x54,0xfb,0xf3,0x70,0x0,0x0,0x0,0x0,0x56,0x35,0xaa,0x60,0x0,0x1,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0xff,0xff,0xbc,0x30,0x0,0x0,0xff, - 0xff,0xbc,0x44,0x0,0x4,0xff,0xff,0xc7,0xc0,0x1,0x9,0xff,0xff,0xb9,0xb0,0x0, - 0xd,0xff,0xff,0xc7,0xc0,0x1,0x9,0xff,0xff,0xb9,0xb0,0x0,0xd,0x4c,0x4d,0x54, - 0x0,0x50,0x50,0x4d,0x54,0x0,0x45,0x44,0x54,0x0,0x45,0x53,0x54,0x0,0x0,0x0, - 0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x45,0x53,0x54,0x35,0xa, - - // /home/konrad/src/smoke/tzone/zoneinfo/America/Swift_Current - 0x0,0x0,0x2,0x3e, + 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x11,0x80,0x0,0x0,0x0,0xb8, + 0x1e,0x96,0xe4,0xb8,0xee,0xd5,0xd4,0x7f,0xff,0xff,0xff,0x1,0x2,0x3,0x3,0xff, + 0xff,0xc0,0x1c,0x0,0x0,0xff,0xff,0xc0,0x1c,0x0,0x4,0xff,0xff,0xce,0x2c,0x1, + 0x8,0xff,0xff,0xc7,0xc0,0x0,0xd,0x4c,0x4d,0x54,0x0,0x43,0x4d,0x54,0x0,0x42, + 0x4f,0x53,0x54,0x0,0x2d,0x30,0x34,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x11,0xf8,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x69,0x87,0x1b,0x64,0xff,0xff,0xff,0xff, + 0xb8,0x1e,0x96,0xe4,0xff,0xff,0xff,0xff,0xb8,0xee,0xd5,0xd4,0x0,0x0,0x0,0x0, + 0x7f,0xff,0xff,0xff,0x0,0x1,0x2,0x3,0x3,0xff,0xff,0xc0,0x1c,0x0,0x0,0xff, + 0xff,0xc0,0x1c,0x0,0x4,0xff,0xff,0xce,0x2c,0x1,0x8,0xff,0xff,0xc7,0xc0,0x0, + 0xd,0x4c,0x4d,0x54,0x0,0x43,0x4d,0x54,0x0,0x42,0x4f,0x53,0x54,0x0,0x2d,0x30, + 0x34,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2d,0x30,0x34,0x3e, + 0x34,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Iqaluit + 0x0,0x0,0x7,0xfe, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x7a,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x21,0x80,0x0,0x0,0x0,0xcc, + 0x6c,0xa1,0x80,0xd2,0x23,0xf4,0x70,0xd2,0x60,0xfb,0xe0,0xf7,0x2f,0x3e,0x50,0xf8, + 0x28,0x69,0xd0,0x13,0x69,0x47,0xf0,0x14,0x59,0x2a,0xe0,0x15,0x49,0x29,0xf0,0x16, + 0x39,0xc,0xe0,0x17,0x29,0xb,0xf0,0x18,0x22,0x29,0x60,0x19,0x8,0xed,0xf0,0x1a, + 0x2,0xb,0x60,0x1a,0xf2,0xa,0x70,0x1b,0xe1,0xed,0x60,0x1c,0xd1,0xec,0x70,0x1d, + 0xc1,0xcf,0x60,0x1e,0xb1,0xce,0x70,0x1f,0xa1,0xb1,0x60,0x20,0x76,0x0,0xf0,0x21, + 0x81,0x93,0x60,0x22,0x55,0xe2,0xf0,0x23,0x6a,0xaf,0xe0,0x24,0x35,0xc4,0xf0,0x25, + 0x4a,0x91,0xe0,0x26,0x15,0xa6,0xf0,0x27,0x2a,0x73,0xe0,0x27,0xfe,0xc3,0x70,0x29, + 0xa,0x55,0xe0,0x29,0xde,0xa5,0x70,0x2a,0xea,0x37,0xe0,0x2b,0xbe,0x87,0x70,0x2c, + 0xd3,0x54,0x60,0x2d,0x9e,0x69,0x70,0x2e,0xb3,0x36,0x60,0x2f,0x7e,0x4b,0x70,0x30, + 0x93,0x18,0x60,0x31,0x67,0x67,0xf0,0x32,0x72,0xfa,0x60,0x33,0x47,0x49,0xf0,0x34, + 0x52,0xdc,0x60,0x35,0x27,0x2b,0xf0,0x36,0x32,0xbe,0x60,0x37,0x7,0xd,0xf0,0x38, + 0x1b,0xda,0xe0,0x38,0xe6,0xfe,0x0,0x39,0xfb,0xca,0xf0,0x3a,0xc6,0xd1,0xf0,0x3b, + 0xdb,0x9e,0xe0,0x3c,0xaf,0xee,0x70,0x3d,0xbb,0x80,0xe0,0x3e,0x8f,0xd0,0x70,0x3f, + 0x9b,0x62,0xe0,0x40,0x6f,0xb2,0x70,0x41,0x84,0x7f,0x60,0x42,0x4f,0x94,0x70,0x43, + 0x64,0x61,0x60,0x44,0x2f,0x76,0x70,0x45,0x44,0x43,0x60,0x45,0xf3,0xa8,0xf0,0x47, + 0x2d,0x5f,0xe0,0x47,0xd3,0x8a,0xf0,0x49,0xd,0x41,0xe0,0x49,0xb3,0x6c,0xf0,0x4a, + 0xed,0x23,0xe0,0x4b,0x9c,0x89,0x70,0x4c,0xd6,0x40,0x60,0x4d,0x7c,0x6b,0x70,0x4e, + 0xb6,0x22,0x60,0x4f,0x5c,0x4d,0x70,0x50,0x96,0x4,0x60,0x51,0x3c,0x2f,0x70,0x52, + 0x75,0xe6,0x60,0x53,0x1c,0x11,0x70,0x54,0x55,0xc8,0x60,0x54,0xfb,0xf3,0x70,0x56, + 0x35,0xaa,0x60,0x56,0xe5,0xf,0xf0,0x58,0x1e,0xc6,0xe0,0x58,0xc4,0xf1,0xf0,0x59, + 0xfe,0xa8,0xe0,0x5a,0xa4,0xd3,0xf0,0x5b,0xde,0x8a,0xe0,0x5c,0x84,0xb5,0xf0,0x5d, + 0xbe,0x6c,0xe0,0x5e,0x64,0x97,0xf0,0x5f,0x9e,0x4e,0xe0,0x60,0x4d,0xb4,0x70,0x61, + 0x87,0x6b,0x60,0x62,0x2d,0x96,0x70,0x63,0x67,0x4d,0x60,0x64,0xd,0x78,0x70,0x65, + 0x47,0x2f,0x60,0x65,0xed,0x5a,0x70,0x67,0x27,0x11,0x60,0x67,0xcd,0x3c,0x70,0x69, + 0x6,0xf3,0x60,0x69,0xad,0x1e,0x70,0x6a,0xe6,0xd5,0x60,0x6b,0x96,0x3a,0xf0,0x6c, + 0xcf,0xf1,0xe0,0x6d,0x76,0x1c,0xf0,0x6e,0xaf,0xd3,0xe0,0x6f,0x55,0xfe,0xf0,0x70, + 0x8f,0xb5,0xe0,0x71,0x35,0xe0,0xf0,0x72,0x6f,0x97,0xe0,0x73,0x15,0xc2,0xf0,0x74, + 0x4f,0x79,0xe0,0x74,0xfe,0xdf,0x70,0x76,0x38,0x96,0x60,0x76,0xde,0xc1,0x70,0x78, + 0x18,0x78,0x60,0x78,0xbe,0xa3,0x70,0x79,0xf8,0x5a,0x60,0x7a,0x9e,0x85,0x70,0x7b, + 0xd8,0x3c,0x60,0x7c,0x7e,0x67,0x70,0x7d,0xb8,0x1e,0x60,0x7e,0x5e,0x49,0x70,0x7f, + 0x98,0x0,0x60,0x0,0x5,0x1,0x2,0x3,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4, + 0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4, + 0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4, + 0x6,0x7,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4, + 0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4, + 0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4, + 0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4, + 0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x0,0x0,0x0, + 0x0,0x0,0x0,0xff,0xff,0xc7,0xc0,0x1,0x4,0xff,0xff,0xb9,0xb0,0x0,0x8,0xff, + 0xff,0xd5,0xd0,0x1,0xc,0xff,0xff,0xc7,0xc0,0x1,0x11,0xff,0xff,0xc7,0xc0,0x1, + 0x15,0xff,0xff,0xab,0xa0,0x0,0x19,0xff,0xff,0xb9,0xb0,0x1,0x1d,0xff,0xff,0xc7, + 0xc0,0x1,0x11,0xff,0xff,0xb9,0xb0,0x0,0x8,0x2d,0x30,0x30,0x0,0x45,0x50,0x54, + 0x0,0x45,0x53,0x54,0x0,0x45,0x44,0x44,0x54,0x0,0x45,0x44,0x54,0x0,0x45,0x57, + 0x54,0x0,0x43,0x53,0x54,0x0,0x43,0x44,0x54,0x0,0x0,0x1,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a, + 0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x7a,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x21,0xf8,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xff,0xff,0xff,0xff,0xcc,0x6c,0xa1,0x80,0xff,0xff,0xff,0xff,0xd2,0x23, + 0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x60,0xfb,0xe0,0xff,0xff,0xff,0xff,0xf7,0x2f, + 0x3e,0x50,0xff,0xff,0xff,0xff,0xf8,0x28,0x69,0xd0,0x0,0x0,0x0,0x0,0x13,0x69, + 0x47,0xf0,0x0,0x0,0x0,0x0,0x14,0x59,0x2a,0xe0,0x0,0x0,0x0,0x0,0x15,0x49, + 0x29,0xf0,0x0,0x0,0x0,0x0,0x16,0x39,0xc,0xe0,0x0,0x0,0x0,0x0,0x17,0x29, + 0xb,0xf0,0x0,0x0,0x0,0x0,0x18,0x22,0x29,0x60,0x0,0x0,0x0,0x0,0x19,0x8, + 0xed,0xf0,0x0,0x0,0x0,0x0,0x1a,0x2,0xb,0x60,0x0,0x0,0x0,0x0,0x1a,0xf2, + 0xa,0x70,0x0,0x0,0x0,0x0,0x1b,0xe1,0xed,0x60,0x0,0x0,0x0,0x0,0x1c,0xd1, + 0xec,0x70,0x0,0x0,0x0,0x0,0x1d,0xc1,0xcf,0x60,0x0,0x0,0x0,0x0,0x1e,0xb1, + 0xce,0x70,0x0,0x0,0x0,0x0,0x1f,0xa1,0xb1,0x60,0x0,0x0,0x0,0x0,0x20,0x76, + 0x0,0xf0,0x0,0x0,0x0,0x0,0x21,0x81,0x93,0x60,0x0,0x0,0x0,0x0,0x22,0x55, + 0xe2,0xf0,0x0,0x0,0x0,0x0,0x23,0x6a,0xaf,0xe0,0x0,0x0,0x0,0x0,0x24,0x35, + 0xc4,0xf0,0x0,0x0,0x0,0x0,0x25,0x4a,0x91,0xe0,0x0,0x0,0x0,0x0,0x26,0x15, + 0xa6,0xf0,0x0,0x0,0x0,0x0,0x27,0x2a,0x73,0xe0,0x0,0x0,0x0,0x0,0x27,0xfe, + 0xc3,0x70,0x0,0x0,0x0,0x0,0x29,0xa,0x55,0xe0,0x0,0x0,0x0,0x0,0x29,0xde, + 0xa5,0x70,0x0,0x0,0x0,0x0,0x2a,0xea,0x37,0xe0,0x0,0x0,0x0,0x0,0x2b,0xbe, + 0x87,0x70,0x0,0x0,0x0,0x0,0x2c,0xd3,0x54,0x60,0x0,0x0,0x0,0x0,0x2d,0x9e, + 0x69,0x70,0x0,0x0,0x0,0x0,0x2e,0xb3,0x36,0x60,0x0,0x0,0x0,0x0,0x2f,0x7e, + 0x4b,0x70,0x0,0x0,0x0,0x0,0x30,0x93,0x18,0x60,0x0,0x0,0x0,0x0,0x31,0x67, + 0x67,0xf0,0x0,0x0,0x0,0x0,0x32,0x72,0xfa,0x60,0x0,0x0,0x0,0x0,0x33,0x47, + 0x49,0xf0,0x0,0x0,0x0,0x0,0x34,0x52,0xdc,0x60,0x0,0x0,0x0,0x0,0x35,0x27, + 0x2b,0xf0,0x0,0x0,0x0,0x0,0x36,0x32,0xbe,0x60,0x0,0x0,0x0,0x0,0x37,0x7, + 0xd,0xf0,0x0,0x0,0x0,0x0,0x38,0x1b,0xda,0xe0,0x0,0x0,0x0,0x0,0x38,0xe6, + 0xfe,0x0,0x0,0x0,0x0,0x0,0x39,0xfb,0xca,0xf0,0x0,0x0,0x0,0x0,0x3a,0xc6, + 0xd1,0xf0,0x0,0x0,0x0,0x0,0x3b,0xdb,0x9e,0xe0,0x0,0x0,0x0,0x0,0x3c,0xaf, + 0xee,0x70,0x0,0x0,0x0,0x0,0x3d,0xbb,0x80,0xe0,0x0,0x0,0x0,0x0,0x3e,0x8f, + 0xd0,0x70,0x0,0x0,0x0,0x0,0x3f,0x9b,0x62,0xe0,0x0,0x0,0x0,0x0,0x40,0x6f, + 0xb2,0x70,0x0,0x0,0x0,0x0,0x41,0x84,0x7f,0x60,0x0,0x0,0x0,0x0,0x42,0x4f, + 0x94,0x70,0x0,0x0,0x0,0x0,0x43,0x64,0x61,0x60,0x0,0x0,0x0,0x0,0x44,0x2f, + 0x76,0x70,0x0,0x0,0x0,0x0,0x45,0x44,0x43,0x60,0x0,0x0,0x0,0x0,0x45,0xf3, + 0xa8,0xf0,0x0,0x0,0x0,0x0,0x47,0x2d,0x5f,0xe0,0x0,0x0,0x0,0x0,0x47,0xd3, + 0x8a,0xf0,0x0,0x0,0x0,0x0,0x49,0xd,0x41,0xe0,0x0,0x0,0x0,0x0,0x49,0xb3, + 0x6c,0xf0,0x0,0x0,0x0,0x0,0x4a,0xed,0x23,0xe0,0x0,0x0,0x0,0x0,0x4b,0x9c, + 0x89,0x70,0x0,0x0,0x0,0x0,0x4c,0xd6,0x40,0x60,0x0,0x0,0x0,0x0,0x4d,0x7c, + 0x6b,0x70,0x0,0x0,0x0,0x0,0x4e,0xb6,0x22,0x60,0x0,0x0,0x0,0x0,0x4f,0x5c, + 0x4d,0x70,0x0,0x0,0x0,0x0,0x50,0x96,0x4,0x60,0x0,0x0,0x0,0x0,0x51,0x3c, + 0x2f,0x70,0x0,0x0,0x0,0x0,0x52,0x75,0xe6,0x60,0x0,0x0,0x0,0x0,0x53,0x1c, + 0x11,0x70,0x0,0x0,0x0,0x0,0x54,0x55,0xc8,0x60,0x0,0x0,0x0,0x0,0x54,0xfb, + 0xf3,0x70,0x0,0x0,0x0,0x0,0x56,0x35,0xaa,0x60,0x0,0x0,0x0,0x0,0x56,0xe5, + 0xf,0xf0,0x0,0x0,0x0,0x0,0x58,0x1e,0xc6,0xe0,0x0,0x0,0x0,0x0,0x58,0xc4, + 0xf1,0xf0,0x0,0x0,0x0,0x0,0x59,0xfe,0xa8,0xe0,0x0,0x0,0x0,0x0,0x5a,0xa4, + 0xd3,0xf0,0x0,0x0,0x0,0x0,0x5b,0xde,0x8a,0xe0,0x0,0x0,0x0,0x0,0x5c,0x84, + 0xb5,0xf0,0x0,0x0,0x0,0x0,0x5d,0xbe,0x6c,0xe0,0x0,0x0,0x0,0x0,0x5e,0x64, + 0x97,0xf0,0x0,0x0,0x0,0x0,0x5f,0x9e,0x4e,0xe0,0x0,0x0,0x0,0x0,0x60,0x4d, + 0xb4,0x70,0x0,0x0,0x0,0x0,0x61,0x87,0x6b,0x60,0x0,0x0,0x0,0x0,0x62,0x2d, + 0x96,0x70,0x0,0x0,0x0,0x0,0x63,0x67,0x4d,0x60,0x0,0x0,0x0,0x0,0x64,0xd, + 0x78,0x70,0x0,0x0,0x0,0x0,0x65,0x47,0x2f,0x60,0x0,0x0,0x0,0x0,0x65,0xed, + 0x5a,0x70,0x0,0x0,0x0,0x0,0x67,0x27,0x11,0x60,0x0,0x0,0x0,0x0,0x67,0xcd, + 0x3c,0x70,0x0,0x0,0x0,0x0,0x69,0x6,0xf3,0x60,0x0,0x0,0x0,0x0,0x69,0xad, + 0x1e,0x70,0x0,0x0,0x0,0x0,0x6a,0xe6,0xd5,0x60,0x0,0x0,0x0,0x0,0x6b,0x96, + 0x3a,0xf0,0x0,0x0,0x0,0x0,0x6c,0xcf,0xf1,0xe0,0x0,0x0,0x0,0x0,0x6d,0x76, + 0x1c,0xf0,0x0,0x0,0x0,0x0,0x6e,0xaf,0xd3,0xe0,0x0,0x0,0x0,0x0,0x6f,0x55, + 0xfe,0xf0,0x0,0x0,0x0,0x0,0x70,0x8f,0xb5,0xe0,0x0,0x0,0x0,0x0,0x71,0x35, + 0xe0,0xf0,0x0,0x0,0x0,0x0,0x72,0x6f,0x97,0xe0,0x0,0x0,0x0,0x0,0x73,0x15, + 0xc2,0xf0,0x0,0x0,0x0,0x0,0x74,0x4f,0x79,0xe0,0x0,0x0,0x0,0x0,0x74,0xfe, + 0xdf,0x70,0x0,0x0,0x0,0x0,0x76,0x38,0x96,0x60,0x0,0x0,0x0,0x0,0x76,0xde, + 0xc1,0x70,0x0,0x0,0x0,0x0,0x78,0x18,0x78,0x60,0x0,0x0,0x0,0x0,0x78,0xbe, + 0xa3,0x70,0x0,0x0,0x0,0x0,0x79,0xf8,0x5a,0x60,0x0,0x0,0x0,0x0,0x7a,0x9e, + 0x85,0x70,0x0,0x0,0x0,0x0,0x7b,0xd8,0x3c,0x60,0x0,0x0,0x0,0x0,0x7c,0x7e, + 0x67,0x70,0x0,0x0,0x0,0x0,0x7d,0xb8,0x1e,0x60,0x0,0x0,0x0,0x0,0x7e,0x5e, + 0x49,0x70,0x0,0x0,0x0,0x0,0x7f,0x98,0x0,0x60,0x0,0x5,0x1,0x2,0x3,0x2, + 0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2, + 0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2, + 0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x6,0x7,0x2,0x4,0x2,0x4,0x2,0x4,0x2, + 0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2, + 0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2, + 0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2, + 0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2, + 0x4,0x2,0x4,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xc7,0xc0,0x1,0x4, + 0xff,0xff,0xb9,0xb0,0x0,0x8,0xff,0xff,0xd5,0xd0,0x1,0xc,0xff,0xff,0xc7,0xc0, + 0x1,0x11,0xff,0xff,0xc7,0xc0,0x1,0x15,0xff,0xff,0xab,0xa0,0x0,0x19,0xff,0xff, + 0xb9,0xb0,0x1,0x1d,0xff,0xff,0xc7,0xc0,0x1,0x11,0xff,0xff,0xb9,0xb0,0x0,0x8, + 0x2d,0x30,0x30,0x0,0x45,0x50,0x54,0x0,0x45,0x53,0x54,0x0,0x45,0x44,0x44,0x54, + 0x0,0x45,0x44,0x54,0x0,0x45,0x57,0x54,0x0,0x43,0x53,0x54,0x0,0x43,0x44,0x54, + 0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0xa,0x45,0x53,0x54,0x35,0x45,0x44,0x54,0x2c,0x4d,0x33, + 0x2e,0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Jujuy + 0x0,0x0,0x4,0x39, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x18,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x80,0x0,0x0,0x0,0x86, - 0xfd,0x96,0x18,0x9e,0xb8,0xaf,0x90,0x9f,0xbb,0x7,0x80,0xcb,0x89,0xc,0x90,0xd2, - 0x23,0xf4,0x70,0xd2,0x61,0x18,0x0,0xd3,0x76,0x1,0x10,0xd4,0x53,0x6f,0x0,0xd5, - 0x55,0xe3,0x10,0xd6,0x20,0xdc,0x0,0xd7,0x35,0xc5,0x10,0xd8,0x0,0xbe,0x0,0xd9, - 0x15,0xa7,0x10,0xd9,0xe0,0xa0,0x0,0xe8,0x27,0x2c,0x10,0xe9,0x17,0xf,0x0,0xeb, - 0xe6,0xf0,0x10,0xec,0xd6,0xd3,0x0,0xed,0xc6,0xd2,0x10,0xee,0x91,0xcb,0x0,0xef, - 0xaf,0xee,0x90,0xf0,0x71,0xad,0x0,0x4,0x61,0x19,0x90,0x0,0x2,0x1,0x2,0x3, - 0x4,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x5,0xff,0xff,0x9a,0xe8,0x0,0x0,0xff,0xff,0xab,0xa0,0x1,0x4,0xff, - 0xff,0x9d,0x90,0x0,0x8,0xff,0xff,0xab,0xa0,0x1,0xc,0xff,0xff,0xab,0xa0,0x1, - 0x10,0xff,0xff,0xab,0xa0,0x0,0x14,0x4c,0x4d,0x54,0x0,0x4d,0x44,0x54,0x0,0x4d, - 0x53,0x54,0x0,0x4d,0x57,0x54,0x0,0x4d,0x50,0x54,0x0,0x43,0x53,0x54,0x0,0x0, - 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x54,0x5a,0x69,0x66,0x32, + 0x0,0x0,0x3c,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0xa2, + 0x92,0x8f,0x30,0xb6,0x7b,0x52,0x40,0xb7,0x1a,0xc9,0xb0,0xb8,0x1e,0x8f,0x40,0xb8, + 0xd4,0x70,0x30,0xba,0x17,0x7d,0xc0,0xba,0xb5,0xa3,0xb0,0xbb,0xf8,0xb1,0x40,0xbc, + 0x96,0xd7,0x30,0xbd,0xd9,0xe4,0xc0,0xbe,0x78,0xa,0xb0,0xbf,0xbb,0x18,0x40,0xc0, + 0x5a,0x8f,0xb0,0xc1,0x9d,0x9d,0x40,0xc2,0x3b,0xc3,0x30,0xc3,0x7e,0xd0,0xc0,0xc4, + 0x1c,0xf6,0xb0,0xc5,0x60,0x4,0x40,0xc5,0xfe,0x2a,0x30,0xc7,0x41,0x37,0xc0,0xc7, + 0xe0,0xaf,0x30,0xc8,0x81,0x94,0x40,0xca,0x4d,0xa1,0xb0,0xca,0xee,0x86,0xc0,0xce, + 0x4d,0xff,0x30,0xce,0xb0,0xed,0xc0,0xd3,0x29,0x35,0xb0,0xd4,0x43,0x64,0xc0,0xf4, + 0x3d,0x8,0x30,0xf4,0x9f,0xf6,0xc0,0xf5,0x5,0x6c,0x30,0xf6,0x32,0x10,0x40,0xf6, + 0xe6,0x9f,0xb0,0xf8,0x13,0x43,0xc0,0xf8,0xc7,0xd3,0x30,0xf9,0xf4,0x77,0x40,0xfa, + 0xd3,0x36,0xb0,0xfb,0xc3,0x35,0xc0,0xfc,0xbc,0x53,0x30,0xfd,0xac,0x52,0x40,0xfe, + 0x9c,0x35,0x30,0xff,0x8c,0x34,0x40,0x7,0xa3,0x4a,0xb0,0x8,0x24,0x6f,0xa0,0x23, + 0x94,0xb5,0xb0,0x24,0x10,0x94,0xa0,0x25,0x37,0xf2,0xb0,0x25,0xf0,0x76,0xa0,0x27, + 0x2a,0x57,0xc0,0x27,0xe2,0xdb,0xb0,0x28,0xee,0x8a,0x40,0x29,0xb0,0x3a,0xa0,0x2a, + 0xe0,0xd3,0x30,0x2b,0x99,0x57,0x20,0x37,0xf6,0xc6,0xb0,0x38,0xbf,0x2a,0xb0,0x47, + 0x77,0x9,0xb0,0x47,0xdc,0x7f,0x20,0x7f,0xff,0xff,0xff,0x1,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x5,0x4,0x5,0x4,0x5,0x4,0x2,0x3,0x2,0x4,0x5, + 0x4,0x5,0x3,0x5,0x4,0x5,0x5,0xff,0xff,0xc2,0xc8,0x0,0x0,0xff,0xff,0xc3, + 0xd0,0x0,0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0xff,0xff,0xd5,0xd0,0x1,0xc,0xff, + 0xff,0xe3,0xe0,0x1,0x10,0xff,0xff,0xd5,0xd0,0x0,0xc,0x4c,0x4d,0x54,0x0,0x43, + 0x4d,0x54,0x0,0x2d,0x30,0x34,0x0,0x2d,0x30,0x33,0x0,0x2d,0x30,0x32,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x18,0x0, - 0x0,0x0,0x6,0x0,0x0,0x0,0x18,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff, - 0xff,0xff,0xff,0x86,0xfd,0x96,0x18,0xff,0xff,0xff,0xff,0x9e,0xb8,0xaf,0x90,0xff, - 0xff,0xff,0xff,0x9f,0xbb,0x7,0x80,0xff,0xff,0xff,0xff,0xcb,0x89,0xc,0x90,0xff, - 0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x61,0x18,0x0,0xff, - 0xff,0xff,0xff,0xd3,0x76,0x1,0x10,0xff,0xff,0xff,0xff,0xd4,0x53,0x6f,0x0,0xff, - 0xff,0xff,0xff,0xd5,0x55,0xe3,0x10,0xff,0xff,0xff,0xff,0xd6,0x20,0xdc,0x0,0xff, - 0xff,0xff,0xff,0xd7,0x35,0xc5,0x10,0xff,0xff,0xff,0xff,0xd8,0x0,0xbe,0x0,0xff, - 0xff,0xff,0xff,0xd9,0x15,0xa7,0x10,0xff,0xff,0xff,0xff,0xd9,0xe0,0xa0,0x0,0xff, - 0xff,0xff,0xff,0xe8,0x27,0x2c,0x10,0xff,0xff,0xff,0xff,0xe9,0x17,0xf,0x0,0xff, - 0xff,0xff,0xff,0xeb,0xe6,0xf0,0x10,0xff,0xff,0xff,0xff,0xec,0xd6,0xd3,0x0,0xff, - 0xff,0xff,0xff,0xed,0xc6,0xd2,0x10,0xff,0xff,0xff,0xff,0xee,0x91,0xcb,0x0,0xff, - 0xff,0xff,0xff,0xef,0xaf,0xee,0x90,0xff,0xff,0xff,0xff,0xf0,0x71,0xad,0x0,0x0, - 0x0,0x0,0x0,0x4,0x61,0x19,0x90,0x0,0x2,0x1,0x2,0x3,0x4,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x5,0xff, - 0xff,0x9a,0xe8,0x0,0x0,0xff,0xff,0xab,0xa0,0x1,0x4,0xff,0xff,0x9d,0x90,0x0, - 0x8,0xff,0xff,0xab,0xa0,0x1,0xc,0xff,0xff,0xab,0xa0,0x1,0x10,0xff,0xff,0xab, - 0xa0,0x0,0x14,0x4c,0x4d,0x54,0x0,0x4d,0x44,0x54,0x0,0x4d,0x53,0x54,0x0,0x4d, - 0x57,0x54,0x0,0x4d,0x50,0x54,0x0,0x43,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x1, - 0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0x43,0x53,0x54,0x36,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Guyana - 0x0,0x0,0x1,0xe, + 0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3d,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x14,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff, + 0xff,0xff,0xff,0x72,0x9c,0xae,0xb8,0xff,0xff,0xff,0xff,0xa2,0x92,0x8f,0x30,0xff, + 0xff,0xff,0xff,0xb6,0x7b,0x52,0x40,0xff,0xff,0xff,0xff,0xb7,0x1a,0xc9,0xb0,0xff, + 0xff,0xff,0xff,0xb8,0x1e,0x8f,0x40,0xff,0xff,0xff,0xff,0xb8,0xd4,0x70,0x30,0xff, + 0xff,0xff,0xff,0xba,0x17,0x7d,0xc0,0xff,0xff,0xff,0xff,0xba,0xb5,0xa3,0xb0,0xff, + 0xff,0xff,0xff,0xbb,0xf8,0xb1,0x40,0xff,0xff,0xff,0xff,0xbc,0x96,0xd7,0x30,0xff, + 0xff,0xff,0xff,0xbd,0xd9,0xe4,0xc0,0xff,0xff,0xff,0xff,0xbe,0x78,0xa,0xb0,0xff, + 0xff,0xff,0xff,0xbf,0xbb,0x18,0x40,0xff,0xff,0xff,0xff,0xc0,0x5a,0x8f,0xb0,0xff, + 0xff,0xff,0xff,0xc1,0x9d,0x9d,0x40,0xff,0xff,0xff,0xff,0xc2,0x3b,0xc3,0x30,0xff, + 0xff,0xff,0xff,0xc3,0x7e,0xd0,0xc0,0xff,0xff,0xff,0xff,0xc4,0x1c,0xf6,0xb0,0xff, + 0xff,0xff,0xff,0xc5,0x60,0x4,0x40,0xff,0xff,0xff,0xff,0xc5,0xfe,0x2a,0x30,0xff, + 0xff,0xff,0xff,0xc7,0x41,0x37,0xc0,0xff,0xff,0xff,0xff,0xc7,0xe0,0xaf,0x30,0xff, + 0xff,0xff,0xff,0xc8,0x81,0x94,0x40,0xff,0xff,0xff,0xff,0xca,0x4d,0xa1,0xb0,0xff, + 0xff,0xff,0xff,0xca,0xee,0x86,0xc0,0xff,0xff,0xff,0xff,0xce,0x4d,0xff,0x30,0xff, + 0xff,0xff,0xff,0xce,0xb0,0xed,0xc0,0xff,0xff,0xff,0xff,0xd3,0x29,0x35,0xb0,0xff, + 0xff,0xff,0xff,0xd4,0x43,0x64,0xc0,0xff,0xff,0xff,0xff,0xf4,0x3d,0x8,0x30,0xff, + 0xff,0xff,0xff,0xf4,0x9f,0xf6,0xc0,0xff,0xff,0xff,0xff,0xf5,0x5,0x6c,0x30,0xff, + 0xff,0xff,0xff,0xf6,0x32,0x10,0x40,0xff,0xff,0xff,0xff,0xf6,0xe6,0x9f,0xb0,0xff, + 0xff,0xff,0xff,0xf8,0x13,0x43,0xc0,0xff,0xff,0xff,0xff,0xf8,0xc7,0xd3,0x30,0xff, + 0xff,0xff,0xff,0xf9,0xf4,0x77,0x40,0xff,0xff,0xff,0xff,0xfa,0xd3,0x36,0xb0,0xff, + 0xff,0xff,0xff,0xfb,0xc3,0x35,0xc0,0xff,0xff,0xff,0xff,0xfc,0xbc,0x53,0x30,0xff, + 0xff,0xff,0xff,0xfd,0xac,0x52,0x40,0xff,0xff,0xff,0xff,0xfe,0x9c,0x35,0x30,0xff, + 0xff,0xff,0xff,0xff,0x8c,0x34,0x40,0x0,0x0,0x0,0x0,0x7,0xa3,0x4a,0xb0,0x0, + 0x0,0x0,0x0,0x8,0x24,0x6f,0xa0,0x0,0x0,0x0,0x0,0x23,0x94,0xb5,0xb0,0x0, + 0x0,0x0,0x0,0x24,0x10,0x94,0xa0,0x0,0x0,0x0,0x0,0x25,0x37,0xf2,0xb0,0x0, + 0x0,0x0,0x0,0x25,0xf0,0x76,0xa0,0x0,0x0,0x0,0x0,0x27,0x2a,0x57,0xc0,0x0, + 0x0,0x0,0x0,0x27,0xe2,0xdb,0xb0,0x0,0x0,0x0,0x0,0x28,0xee,0x8a,0x40,0x0, + 0x0,0x0,0x0,0x29,0xb0,0x3a,0xa0,0x0,0x0,0x0,0x0,0x2a,0xe0,0xd3,0x30,0x0, + 0x0,0x0,0x0,0x2b,0x99,0x57,0x20,0x0,0x0,0x0,0x0,0x37,0xf6,0xc6,0xb0,0x0, + 0x0,0x0,0x0,0x38,0xbf,0x2a,0xb0,0x0,0x0,0x0,0x0,0x47,0x77,0x9,0xb0,0x0, + 0x0,0x0,0x0,0x47,0xdc,0x7f,0x20,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0, + 0x1,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x5,0x4,0x5,0x4,0x5,0x4, + 0x2,0x3,0x2,0x4,0x5,0x4,0x5,0x3,0x5,0x4,0x5,0x5,0xff,0xff,0xc2,0xc8, + 0x0,0x0,0xff,0xff,0xc3,0xd0,0x0,0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0xff,0xff, + 0xd5,0xd0,0x1,0xc,0xff,0xff,0xe3,0xe0,0x1,0x10,0xff,0xff,0xd5,0xd0,0x0,0xc, + 0x4c,0x4d,0x54,0x0,0x43,0x4d,0x54,0x0,0x2d,0x30,0x34,0x0,0x2d,0x30,0x33,0x0, + 0x2d,0x30,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xa,0x3c,0x2d,0x30,0x33,0x3e,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Lima + 0x0,0x0,0x1,0xaf, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0x98, - 0xd9,0x79,0x88,0xf9,0x39,0x3e,0xbc,0xa,0x7d,0xb4,0x3c,0x27,0x7f,0xfb,0x30,0x0, - 0x1,0x2,0x3,0x4,0xff,0xff,0xc9,0x78,0x0,0x0,0xff,0xff,0xcb,0x44,0x0,0x4, - 0xff,0xff,0xcb,0x44,0x0,0x9,0xff,0xff,0xd5,0xd0,0x0,0x9,0xff,0xff,0xc7,0xc0, - 0x0,0x9,0x4c,0x4d,0x54,0x0,0x47,0x42,0x47,0x54,0x0,0x47,0x59,0x54,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0, - 0x5,0x0,0x0,0x0,0xd,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff, - 0xff,0x98,0xd9,0x79,0x88,0xff,0xff,0xff,0xff,0xf9,0x39,0x3e,0xbc,0x0,0x0,0x0, - 0x0,0xa,0x7d,0xb4,0x3c,0x0,0x0,0x0,0x0,0x27,0x7f,0xfb,0x30,0x0,0x1,0x2, - 0x3,0x4,0xff,0xff,0xc9,0x78,0x0,0x0,0xff,0xff,0xcb,0x44,0x0,0x4,0xff,0xff, - 0xcb,0x44,0x0,0x9,0xff,0xff,0xd5,0xd0,0x0,0x9,0xff,0xff,0xc7,0xc0,0x0,0x9, - 0x4c,0x4d,0x54,0x0,0x47,0x42,0x47,0x54,0x0,0x47,0x59,0x54,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x47,0x59,0x54,0x34,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Santiago - 0x0,0x0,0x9,0xd3, - 0x54, - 0x5a,0x69,0x66,0x33,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x9f,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x11,0x80,0x0,0x0,0x0,0x8f, - 0x30,0x47,0x46,0x9b,0x5c,0xe5,0x50,0x9f,0x7c,0xe2,0xc6,0xa1,0x0,0x71,0xc0,0xb0, - 0x5e,0x77,0xc6,0xb1,0x77,0x3d,0x40,0xb2,0x41,0x0,0xd0,0xb3,0x58,0x70,0xc0,0xb4, - 0x22,0x34,0x50,0xb5,0x39,0xa4,0x40,0xb6,0x3,0x67,0xd0,0xb7,0x1a,0xd7,0xc0,0xb7, - 0xe4,0x9b,0x50,0xb8,0xfd,0x5c,0xc0,0xb9,0xc7,0x20,0x50,0xcc,0x1c,0x6e,0x40,0xcc, - 0x6c,0xe7,0xd0,0xd3,0xdc,0x8f,0xc0,0xd4,0x1b,0xc9,0xb0,0xd5,0x33,0x55,0xc0,0xd5, - 0x76,0x92,0x40,0xfd,0xd1,0x3c,0x40,0xfe,0x92,0xfa,0xb0,0xff,0xcc,0xcd,0xc0,0x0, - 0x72,0xdc,0xb0,0x1,0x75,0x50,0xc0,0x2,0x40,0x49,0xb0,0x3,0x55,0x32,0xc0,0x4, - 0x20,0x2b,0xb0,0x5,0x3e,0x4f,0x40,0x6,0x0,0xd,0xb0,0x7,0xb,0xbc,0x40,0x7, - 0xdf,0xef,0xb0,0x8,0xfe,0x13,0x40,0x9,0xbf,0xd1,0xb0,0xa,0xdd,0xf5,0x40,0xb, - 0xa8,0xee,0x30,0xc,0xbd,0xd7,0x40,0xd,0x88,0xd0,0x30,0xe,0x9d,0xb9,0x40,0xf, - 0x68,0xb2,0x30,0x10,0x86,0xd5,0xc0,0x11,0x48,0x94,0x30,0x12,0x66,0xb7,0xc0,0x13, - 0x28,0x76,0x30,0x14,0x46,0x99,0xc0,0x15,0x11,0x92,0xb0,0x16,0x26,0x7b,0xc0,0x16, - 0xf1,0x74,0xb0,0x18,0x6,0x5d,0xc0,0x18,0xd1,0x56,0xb0,0x19,0xe6,0x3f,0xc0,0x1a, - 0xb1,0x38,0xb0,0x1b,0xcf,0x5c,0x40,0x1c,0x91,0x1a,0xb0,0x1d,0xaf,0x3e,0x40,0x1e, - 0x70,0xfc,0xb0,0x1f,0x8f,0x20,0x40,0x20,0x7f,0x3,0x30,0x21,0x6f,0x2,0x40,0x22, - 0x39,0xfb,0x30,0x23,0x4e,0xe4,0x40,0x24,0x19,0xdd,0x30,0x25,0x38,0x0,0xc0,0x25, - 0xf9,0xbf,0x30,0x26,0xf2,0xf8,0xc0,0x27,0xd9,0xa1,0x30,0x28,0xf7,0xc4,0xc0,0x29, - 0xc2,0xbd,0xb0,0x2a,0xd7,0xa6,0xc0,0x2b,0xa2,0x9f,0xb0,0x2c,0xb7,0x88,0xc0,0x2d, - 0x82,0x81,0xb0,0x2e,0x97,0x6a,0xc0,0x2f,0x62,0x63,0xb0,0x30,0x80,0x87,0x40,0x31, - 0x42,0x45,0xb0,0x32,0x60,0x69,0x40,0x33,0x3d,0xd7,0x30,0x34,0x40,0x4b,0x40,0x35, - 0xb,0x44,0x30,0x36,0xd,0xb8,0x40,0x37,0x6,0xd5,0xb0,0x38,0x0,0xf,0x40,0x38, - 0xcb,0x8,0x30,0x39,0xe9,0x2b,0xc0,0x3a,0xaa,0xea,0x30,0x3b,0xc9,0xd,0xc0,0x3c, - 0x8a,0xcc,0x30,0x3d,0xa8,0xef,0xc0,0x3e,0x6a,0xae,0x30,0x3f,0x88,0xd1,0xc0,0x40, - 0x53,0xca,0xb0,0x41,0x68,0xb3,0xc0,0x42,0x33,0xac,0xb0,0x43,0x48,0x95,0xc0,0x44, - 0x13,0x8e,0xb0,0x45,0x31,0xb2,0x40,0x45,0xf3,0x70,0xb0,0x47,0x11,0x94,0x40,0x47, - 0xef,0x2,0x30,0x48,0xf1,0x76,0x40,0x49,0xbc,0x6f,0x30,0x4a,0xd1,0x58,0x40,0x4b, - 0xb8,0x0,0xb0,0x4c,0xb1,0x3a,0x40,0x4d,0xc6,0x7,0x30,0x4e,0x50,0x82,0xc0,0x4f, - 0x9c,0xae,0xb0,0x50,0x42,0xd9,0xc0,0x51,0x7c,0x90,0xb0,0x52,0x2b,0xf6,0x40,0x53, - 0x5c,0x72,0xb0,0x54,0xb,0xd8,0x40,0x57,0x37,0xe6,0x30,0x57,0xaf,0xec,0xc0,0x59, - 0x17,0xc8,0x30,0x59,0x8f,0xce,0xc0,0x5a,0xf7,0xaa,0x30,0x5b,0x6f,0xb0,0xc0,0x5c, - 0xd7,0x8c,0x30,0x5d,0x4f,0x92,0xc0,0x5e,0xb7,0x6e,0x30,0x5f,0x2f,0x74,0xc0,0x60, - 0x97,0x50,0x30,0x61,0x18,0x91,0x40,0x62,0x80,0x6c,0xb0,0x62,0xf8,0x73,0x40,0x64, - 0x60,0x4e,0xb0,0x64,0xd8,0x55,0x40,0x66,0x40,0x30,0xb0,0x66,0xb8,0x37,0x40,0x68, - 0x20,0x12,0xb0,0x68,0x98,0x19,0x40,0x69,0xff,0xf4,0xb0,0x6a,0x77,0xfb,0x40,0x6b, - 0xdf,0xd6,0xb0,0x6c,0x61,0x17,0xc0,0x6d,0xc8,0xf3,0x30,0x6e,0x40,0xf9,0xc0,0x6f, - 0xa8,0xd5,0x30,0x70,0x20,0xdb,0xc0,0x71,0x88,0xb7,0x30,0x72,0x0,0xbd,0xc0,0x73, - 0x68,0x99,0x30,0x73,0xe0,0x9f,0xc0,0x75,0x48,0x7b,0x30,0x75,0xc9,0xbc,0x40,0x77, - 0x31,0x97,0xb0,0x77,0xa9,0x9e,0x40,0x79,0x11,0x79,0xb0,0x79,0x89,0x80,0x40,0x7a, - 0xf1,0x5b,0xb0,0x7b,0x69,0x62,0x40,0x7c,0xd1,0x3d,0xb0,0x7d,0x49,0x44,0x40,0x7e, - 0xb1,0x1f,0xb0,0x7f,0x29,0x26,0x40,0x1,0x2,0x1,0x3,0x1,0x4,0x2,0x4,0x2, - 0x4,0x2,0x4,0x2,0x4,0x2,0x3,0x2,0x3,0x5,0x3,0x2,0x3,0x6,0x7,0x6, - 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, - 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, - 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, - 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, - 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, - 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, - 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, - 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, - 0x7,0x6,0x7,0x6,0x7,0x6,0xff,0xff,0xbd,0xba,0x0,0x0,0xff,0xff,0xbd,0xba, - 0x0,0x4,0xff,0xff,0xb9,0xb0,0x0,0x8,0xff,0xff,0xc7,0xc0,0x0,0x8,0xff,0xff, - 0xc7,0xc0,0x1,0xc,0xff,0xff,0xd5,0xd0,0x1,0xc,0xff,0xff,0xd5,0xd0,0x1,0xc, - 0xff,0xff,0xc7,0xc0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x53,0x4d,0x54,0x0,0x43,0x4c, - 0x54,0x0,0x43,0x4c,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0, - 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x54,0x5a,0x69,0x66,0x33,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0, - 0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa0,0x0,0x0,0x0,0x8,0x0, - 0x0,0x0,0x11,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x69, - 0x87,0x1d,0xc6,0xff,0xff,0xff,0xff,0x8f,0x30,0x47,0x46,0xff,0xff,0xff,0xff,0x9b, - 0x5c,0xe5,0x50,0xff,0xff,0xff,0xff,0x9f,0x7c,0xe2,0xc6,0xff,0xff,0xff,0xff,0xa1, - 0x0,0x71,0xc0,0xff,0xff,0xff,0xff,0xb0,0x5e,0x77,0xc6,0xff,0xff,0xff,0xff,0xb1, - 0x77,0x3d,0x40,0xff,0xff,0xff,0xff,0xb2,0x41,0x0,0xd0,0xff,0xff,0xff,0xff,0xb3, - 0x58,0x70,0xc0,0xff,0xff,0xff,0xff,0xb4,0x22,0x34,0x50,0xff,0xff,0xff,0xff,0xb5, - 0x39,0xa4,0x40,0xff,0xff,0xff,0xff,0xb6,0x3,0x67,0xd0,0xff,0xff,0xff,0xff,0xb7, - 0x1a,0xd7,0xc0,0xff,0xff,0xff,0xff,0xb7,0xe4,0x9b,0x50,0xff,0xff,0xff,0xff,0xb8, - 0xfd,0x5c,0xc0,0xff,0xff,0xff,0xff,0xb9,0xc7,0x20,0x50,0xff,0xff,0xff,0xff,0xcc, - 0x1c,0x6e,0x40,0xff,0xff,0xff,0xff,0xcc,0x6c,0xe7,0xd0,0xff,0xff,0xff,0xff,0xd3, - 0xdc,0x8f,0xc0,0xff,0xff,0xff,0xff,0xd4,0x1b,0xc9,0xb0,0xff,0xff,0xff,0xff,0xd5, - 0x33,0x55,0xc0,0xff,0xff,0xff,0xff,0xd5,0x76,0x92,0x40,0xff,0xff,0xff,0xff,0xfd, - 0xd1,0x3c,0x40,0xff,0xff,0xff,0xff,0xfe,0x92,0xfa,0xb0,0xff,0xff,0xff,0xff,0xff, - 0xcc,0xcd,0xc0,0x0,0x0,0x0,0x0,0x0,0x72,0xdc,0xb0,0x0,0x0,0x0,0x0,0x1, - 0x75,0x50,0xc0,0x0,0x0,0x0,0x0,0x2,0x40,0x49,0xb0,0x0,0x0,0x0,0x0,0x3, - 0x55,0x32,0xc0,0x0,0x0,0x0,0x0,0x4,0x20,0x2b,0xb0,0x0,0x0,0x0,0x0,0x5, - 0x3e,0x4f,0x40,0x0,0x0,0x0,0x0,0x6,0x0,0xd,0xb0,0x0,0x0,0x0,0x0,0x7, - 0xb,0xbc,0x40,0x0,0x0,0x0,0x0,0x7,0xdf,0xef,0xb0,0x0,0x0,0x0,0x0,0x8, - 0xfe,0x13,0x40,0x0,0x0,0x0,0x0,0x9,0xbf,0xd1,0xb0,0x0,0x0,0x0,0x0,0xa, - 0xdd,0xf5,0x40,0x0,0x0,0x0,0x0,0xb,0xa8,0xee,0x30,0x0,0x0,0x0,0x0,0xc, - 0xbd,0xd7,0x40,0x0,0x0,0x0,0x0,0xd,0x88,0xd0,0x30,0x0,0x0,0x0,0x0,0xe, - 0x9d,0xb9,0x40,0x0,0x0,0x0,0x0,0xf,0x68,0xb2,0x30,0x0,0x0,0x0,0x0,0x10, - 0x86,0xd5,0xc0,0x0,0x0,0x0,0x0,0x11,0x48,0x94,0x30,0x0,0x0,0x0,0x0,0x12, - 0x66,0xb7,0xc0,0x0,0x0,0x0,0x0,0x13,0x28,0x76,0x30,0x0,0x0,0x0,0x0,0x14, - 0x46,0x99,0xc0,0x0,0x0,0x0,0x0,0x15,0x11,0x92,0xb0,0x0,0x0,0x0,0x0,0x16, - 0x26,0x7b,0xc0,0x0,0x0,0x0,0x0,0x16,0xf1,0x74,0xb0,0x0,0x0,0x0,0x0,0x18, - 0x6,0x5d,0xc0,0x0,0x0,0x0,0x0,0x18,0xd1,0x56,0xb0,0x0,0x0,0x0,0x0,0x19, - 0xe6,0x3f,0xc0,0x0,0x0,0x0,0x0,0x1a,0xb1,0x38,0xb0,0x0,0x0,0x0,0x0,0x1b, - 0xcf,0x5c,0x40,0x0,0x0,0x0,0x0,0x1c,0x91,0x1a,0xb0,0x0,0x0,0x0,0x0,0x1d, - 0xaf,0x3e,0x40,0x0,0x0,0x0,0x0,0x1e,0x70,0xfc,0xb0,0x0,0x0,0x0,0x0,0x1f, - 0x8f,0x20,0x40,0x0,0x0,0x0,0x0,0x20,0x7f,0x3,0x30,0x0,0x0,0x0,0x0,0x21, - 0x6f,0x2,0x40,0x0,0x0,0x0,0x0,0x22,0x39,0xfb,0x30,0x0,0x0,0x0,0x0,0x23, - 0x4e,0xe4,0x40,0x0,0x0,0x0,0x0,0x24,0x19,0xdd,0x30,0x0,0x0,0x0,0x0,0x25, - 0x38,0x0,0xc0,0x0,0x0,0x0,0x0,0x25,0xf9,0xbf,0x30,0x0,0x0,0x0,0x0,0x26, - 0xf2,0xf8,0xc0,0x0,0x0,0x0,0x0,0x27,0xd9,0xa1,0x30,0x0,0x0,0x0,0x0,0x28, - 0xf7,0xc4,0xc0,0x0,0x0,0x0,0x0,0x29,0xc2,0xbd,0xb0,0x0,0x0,0x0,0x0,0x2a, - 0xd7,0xa6,0xc0,0x0,0x0,0x0,0x0,0x2b,0xa2,0x9f,0xb0,0x0,0x0,0x0,0x0,0x2c, - 0xb7,0x88,0xc0,0x0,0x0,0x0,0x0,0x2d,0x82,0x81,0xb0,0x0,0x0,0x0,0x0,0x2e, - 0x97,0x6a,0xc0,0x0,0x0,0x0,0x0,0x2f,0x62,0x63,0xb0,0x0,0x0,0x0,0x0,0x30, - 0x80,0x87,0x40,0x0,0x0,0x0,0x0,0x31,0x42,0x45,0xb0,0x0,0x0,0x0,0x0,0x32, - 0x60,0x69,0x40,0x0,0x0,0x0,0x0,0x33,0x3d,0xd7,0x30,0x0,0x0,0x0,0x0,0x34, - 0x40,0x4b,0x40,0x0,0x0,0x0,0x0,0x35,0xb,0x44,0x30,0x0,0x0,0x0,0x0,0x36, - 0xd,0xb8,0x40,0x0,0x0,0x0,0x0,0x37,0x6,0xd5,0xb0,0x0,0x0,0x0,0x0,0x38, - 0x0,0xf,0x40,0x0,0x0,0x0,0x0,0x38,0xcb,0x8,0x30,0x0,0x0,0x0,0x0,0x39, - 0xe9,0x2b,0xc0,0x0,0x0,0x0,0x0,0x3a,0xaa,0xea,0x30,0x0,0x0,0x0,0x0,0x3b, - 0xc9,0xd,0xc0,0x0,0x0,0x0,0x0,0x3c,0x8a,0xcc,0x30,0x0,0x0,0x0,0x0,0x3d, - 0xa8,0xef,0xc0,0x0,0x0,0x0,0x0,0x3e,0x6a,0xae,0x30,0x0,0x0,0x0,0x0,0x3f, - 0x88,0xd1,0xc0,0x0,0x0,0x0,0x0,0x40,0x53,0xca,0xb0,0x0,0x0,0x0,0x0,0x41, - 0x68,0xb3,0xc0,0x0,0x0,0x0,0x0,0x42,0x33,0xac,0xb0,0x0,0x0,0x0,0x0,0x43, - 0x48,0x95,0xc0,0x0,0x0,0x0,0x0,0x44,0x13,0x8e,0xb0,0x0,0x0,0x0,0x0,0x45, - 0x31,0xb2,0x40,0x0,0x0,0x0,0x0,0x45,0xf3,0x70,0xb0,0x0,0x0,0x0,0x0,0x47, - 0x11,0x94,0x40,0x0,0x0,0x0,0x0,0x47,0xef,0x2,0x30,0x0,0x0,0x0,0x0,0x48, - 0xf1,0x76,0x40,0x0,0x0,0x0,0x0,0x49,0xbc,0x6f,0x30,0x0,0x0,0x0,0x0,0x4a, - 0xd1,0x58,0x40,0x0,0x0,0x0,0x0,0x4b,0xb8,0x0,0xb0,0x0,0x0,0x0,0x0,0x4c, - 0xb1,0x3a,0x40,0x0,0x0,0x0,0x0,0x4d,0xc6,0x7,0x30,0x0,0x0,0x0,0x0,0x4e, - 0x50,0x82,0xc0,0x0,0x0,0x0,0x0,0x4f,0x9c,0xae,0xb0,0x0,0x0,0x0,0x0,0x50, - 0x42,0xd9,0xc0,0x0,0x0,0x0,0x0,0x51,0x7c,0x90,0xb0,0x0,0x0,0x0,0x0,0x52, - 0x2b,0xf6,0x40,0x0,0x0,0x0,0x0,0x53,0x5c,0x72,0xb0,0x0,0x0,0x0,0x0,0x54, - 0xb,0xd8,0x40,0x0,0x0,0x0,0x0,0x57,0x37,0xe6,0x30,0x0,0x0,0x0,0x0,0x57, - 0xaf,0xec,0xc0,0x0,0x0,0x0,0x0,0x59,0x17,0xc8,0x30,0x0,0x0,0x0,0x0,0x59, - 0x8f,0xce,0xc0,0x0,0x0,0x0,0x0,0x5a,0xf7,0xaa,0x30,0x0,0x0,0x0,0x0,0x5b, - 0x6f,0xb0,0xc0,0x0,0x0,0x0,0x0,0x5c,0xd7,0x8c,0x30,0x0,0x0,0x0,0x0,0x5d, - 0x4f,0x92,0xc0,0x0,0x0,0x0,0x0,0x5e,0xb7,0x6e,0x30,0x0,0x0,0x0,0x0,0x5f, - 0x2f,0x74,0xc0,0x0,0x0,0x0,0x0,0x60,0x97,0x50,0x30,0x0,0x0,0x0,0x0,0x61, - 0x18,0x91,0x40,0x0,0x0,0x0,0x0,0x62,0x80,0x6c,0xb0,0x0,0x0,0x0,0x0,0x62, - 0xf8,0x73,0x40,0x0,0x0,0x0,0x0,0x64,0x60,0x4e,0xb0,0x0,0x0,0x0,0x0,0x64, - 0xd8,0x55,0x40,0x0,0x0,0x0,0x0,0x66,0x40,0x30,0xb0,0x0,0x0,0x0,0x0,0x66, - 0xb8,0x37,0x40,0x0,0x0,0x0,0x0,0x68,0x20,0x12,0xb0,0x0,0x0,0x0,0x0,0x68, - 0x98,0x19,0x40,0x0,0x0,0x0,0x0,0x69,0xff,0xf4,0xb0,0x0,0x0,0x0,0x0,0x6a, - 0x77,0xfb,0x40,0x0,0x0,0x0,0x0,0x6b,0xdf,0xd6,0xb0,0x0,0x0,0x0,0x0,0x6c, - 0x61,0x17,0xc0,0x0,0x0,0x0,0x0,0x6d,0xc8,0xf3,0x30,0x0,0x0,0x0,0x0,0x6e, - 0x40,0xf9,0xc0,0x0,0x0,0x0,0x0,0x6f,0xa8,0xd5,0x30,0x0,0x0,0x0,0x0,0x70, - 0x20,0xdb,0xc0,0x0,0x0,0x0,0x0,0x71,0x88,0xb7,0x30,0x0,0x0,0x0,0x0,0x72, - 0x0,0xbd,0xc0,0x0,0x0,0x0,0x0,0x73,0x68,0x99,0x30,0x0,0x0,0x0,0x0,0x73, - 0xe0,0x9f,0xc0,0x0,0x0,0x0,0x0,0x75,0x48,0x7b,0x30,0x0,0x0,0x0,0x0,0x75, - 0xc9,0xbc,0x40,0x0,0x0,0x0,0x0,0x77,0x31,0x97,0xb0,0x0,0x0,0x0,0x0,0x77, - 0xa9,0x9e,0x40,0x0,0x0,0x0,0x0,0x79,0x11,0x79,0xb0,0x0,0x0,0x0,0x0,0x79, - 0x89,0x80,0x40,0x0,0x0,0x0,0x0,0x7a,0xf1,0x5b,0xb0,0x0,0x0,0x0,0x0,0x7b, - 0x69,0x62,0x40,0x0,0x0,0x0,0x0,0x7c,0xd1,0x3d,0xb0,0x0,0x0,0x0,0x0,0x7d, - 0x49,0x44,0x40,0x0,0x0,0x0,0x0,0x7e,0xb1,0x1f,0xb0,0x0,0x0,0x0,0x0,0x7f, - 0x29,0x26,0x40,0x0,0x1,0x2,0x1,0x3,0x1,0x4,0x2,0x4,0x2,0x4,0x2,0x4, - 0x2,0x4,0x2,0x3,0x2,0x3,0x5,0x3,0x2,0x3,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0xff,0xff,0xbd,0xba,0x0,0x0,0xff,0xff,0xbd,0xba,0x0,0x4,0xff, - 0xff,0xb9,0xb0,0x0,0x8,0xff,0xff,0xc7,0xc0,0x0,0x8,0xff,0xff,0xc7,0xc0,0x1, - 0xc,0xff,0xff,0xd5,0xd0,0x1,0xc,0xff,0xff,0xd5,0xd0,0x1,0xc,0xff,0xff,0xc7, - 0xc0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x53,0x4d,0x54,0x0,0x43,0x4c,0x54,0x0,0x43, - 0x4c,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0, - 0x0,0x0,0x1,0x1,0xa,0x43,0x4c,0x54,0x34,0x43,0x4c,0x53,0x54,0x2c,0x4d,0x38, - 0x2e,0x32,0x2e,0x36,0x2f,0x32,0x34,0x2c,0x4d,0x35,0x2e,0x32,0x2e,0x36,0x2f,0x32, - 0x34,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Bahia - 0x0,0x0,0x4,0xc, + 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x11,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0x8c, + 0x74,0x40,0xd4,0xc3,0xcf,0x4a,0x50,0xc4,0x45,0xe3,0x40,0xc5,0x2f,0x4a,0xd0,0xc6, + 0x1f,0x2d,0xc0,0xc7,0xf,0x2c,0xd0,0xc7,0xff,0xf,0xc0,0x1e,0x18,0xc4,0x50,0x1e, + 0x8f,0x5d,0x40,0x1f,0xf9,0xf7,0xd0,0x20,0x70,0x90,0xc0,0x25,0x9e,0xe3,0xd0,0x26, + 0x15,0x7c,0xc0,0x2d,0x25,0x3,0x50,0x2d,0x9b,0x9c,0x40,0x7f,0xff,0xff,0xff,0x1, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x3, + 0xff,0xff,0xb7,0xc4,0x0,0x0,0xff,0xff,0xb7,0xac,0x0,0x0,0xff,0xff,0xc7,0xc0, + 0x1,0x4,0xff,0xff,0xb9,0xb0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x2d,0x30,0x34,0x0, + 0x2d,0x30,0x35,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66, + 0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x12, + 0x0,0x0,0x0,0x4,0x0,0x0,0x0,0xc,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0x69,0x87,0x23,0xbc,0xff,0xff,0xff,0xff,0x8c,0x74,0x40,0xd4, + 0xff,0xff,0xff,0xff,0xc3,0xcf,0x4a,0x50,0xff,0xff,0xff,0xff,0xc4,0x45,0xe3,0x40, + 0xff,0xff,0xff,0xff,0xc5,0x2f,0x4a,0xd0,0xff,0xff,0xff,0xff,0xc6,0x1f,0x2d,0xc0, + 0xff,0xff,0xff,0xff,0xc7,0xf,0x2c,0xd0,0xff,0xff,0xff,0xff,0xc7,0xff,0xf,0xc0, + 0x0,0x0,0x0,0x0,0x1e,0x18,0xc4,0x50,0x0,0x0,0x0,0x0,0x1e,0x8f,0x5d,0x40, + 0x0,0x0,0x0,0x0,0x1f,0xf9,0xf7,0xd0,0x0,0x0,0x0,0x0,0x20,0x70,0x90,0xc0, + 0x0,0x0,0x0,0x0,0x25,0x9e,0xe3,0xd0,0x0,0x0,0x0,0x0,0x26,0x15,0x7c,0xc0, + 0x0,0x0,0x0,0x0,0x2d,0x25,0x3,0x50,0x0,0x0,0x0,0x0,0x2d,0x9b,0x9c,0x40, + 0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x3,0xff,0xff,0xb7,0xc4,0x0,0x0, + 0xff,0xff,0xb7,0xac,0x0,0x0,0xff,0xff,0xc7,0xc0,0x1,0x4,0xff,0xff,0xb9,0xb0, + 0x0,0x8,0x4c,0x4d,0x54,0x0,0x2d,0x30,0x34,0x0,0x2d,0x30,0x35,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2d,0x30,0x35,0x3e,0x35,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Regina + 0x0,0x0,0x3,0xe2, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x3e,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0x96, - 0xaa,0x6b,0x1c,0xb8,0xf,0x49,0xe0,0xb8,0xfd,0x40,0xa0,0xb9,0xf1,0x34,0x30,0xba, - 0xde,0x74,0x20,0xda,0x38,0xae,0x30,0xda,0xeb,0xfa,0x30,0xdc,0x19,0xe1,0xb0,0xdc, - 0xb9,0x59,0x20,0xdd,0xfb,0x15,0x30,0xde,0x9b,0xde,0x20,0xdf,0xdd,0x9a,0x30,0xe0, - 0x54,0x33,0x20,0xf4,0x97,0xff,0xb0,0xf5,0x5,0x5e,0x20,0xf6,0xc0,0x64,0x30,0xf7, - 0xe,0x1e,0xa0,0xf8,0x51,0x2c,0x30,0xf8,0xc7,0xc5,0x20,0xfa,0xa,0xd2,0xb0,0xfa, - 0xa8,0xf8,0xa0,0xfb,0xec,0x6,0x30,0xfc,0x8b,0x7d,0xa0,0x1d,0xc9,0x8e,0x30,0x1e, - 0x78,0xd7,0xa0,0x1f,0xa0,0x35,0xb0,0x20,0x33,0xcf,0xa0,0x21,0x81,0x69,0x30,0x22, - 0xb,0xc8,0xa0,0x23,0x58,0x10,0xb0,0x23,0xe2,0x70,0x20,0x25,0x37,0xf2,0xb0,0x25, - 0xd4,0xc7,0x20,0x27,0x21,0xf,0x30,0x27,0xbd,0xe3,0xa0,0x29,0x0,0xf1,0x30,0x29, - 0x94,0x8b,0x20,0x2a,0xea,0xd,0xb0,0x2b,0x6b,0x32,0xa0,0x2c,0xc0,0xb5,0x30,0x2d, - 0x66,0xc4,0x20,0x2e,0xa0,0x97,0x30,0x2f,0x46,0xa6,0x20,0x30,0x80,0x79,0x30,0x31, - 0x1d,0x4d,0xa0,0x32,0x57,0x20,0xb0,0x33,0x6,0x6a,0x20,0x34,0x38,0x54,0x30,0x34, - 0xf8,0xc1,0x20,0x36,0x20,0x1f,0x30,0x36,0xcf,0x68,0xa0,0x37,0xf6,0xc6,0xb0,0x38, - 0xb8,0x85,0x20,0x39,0xdf,0xe3,0x30,0x3a,0x8f,0x2c,0xa0,0x3b,0xc8,0xff,0xb0,0x3c, - 0x6f,0xe,0xa0,0x3d,0xc4,0x91,0x30,0x3e,0x4e,0xf0,0xa0,0x4e,0x9a,0x48,0xb0,0x4f, - 0x49,0x92,0x20,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x36,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x80,0x0,0x0,0x0,0x86, + 0xfd,0x93,0x1c,0x9e,0xb8,0xaf,0x90,0x9f,0xbb,0x7,0x80,0xb5,0x65,0x4f,0xf0,0xb6, + 0x30,0x48,0xe0,0xb7,0x45,0x31,0xf0,0xb8,0x10,0x2a,0xe0,0xb9,0x25,0x13,0xf0,0xb9, + 0xf0,0xc,0xe0,0xbb,0xe,0x30,0x70,0xbb,0xcf,0xee,0xe0,0xbc,0xee,0x12,0x70,0xbd, + 0xb9,0xb,0x60,0xc2,0x72,0x8,0xf0,0xc3,0x61,0xeb,0xe0,0xc4,0x51,0xea,0xf0,0xc5, + 0x38,0x93,0x60,0xc6,0x31,0xcc,0xf0,0xc7,0x21,0xaf,0xe0,0xc8,0x1a,0xe9,0x70,0xc9, + 0xa,0xcc,0x60,0xc9,0xfa,0xcb,0x70,0xca,0xea,0xae,0x60,0xcb,0x89,0xc,0x90,0xd2, + 0x23,0xf4,0x70,0xd2,0x61,0x18,0x0,0xd3,0x63,0x8c,0x10,0xd4,0x53,0x6f,0x0,0xd5, + 0x55,0xe3,0x10,0xd6,0x20,0xdc,0x0,0xd7,0x35,0xc5,0x10,0xd8,0x0,0xbe,0x0,0xd9, + 0x15,0xa7,0x10,0xd9,0xe0,0xa0,0x0,0xda,0xfe,0xc3,0x90,0xdb,0xc0,0x82,0x0,0xdc, + 0xde,0xa5,0x90,0xdd,0xa9,0x9e,0x80,0xde,0xbe,0x87,0x90,0xdf,0x89,0x80,0x80,0xe0, + 0x9e,0x69,0x90,0xe1,0x69,0x62,0x80,0xe2,0x7e,0x4b,0x90,0xe3,0x49,0x44,0x80,0xe4, + 0x5e,0x2d,0x90,0xe5,0x29,0x26,0x80,0xe6,0x47,0x4a,0x10,0xe7,0x12,0x43,0x0,0xe8, + 0x27,0x2c,0x10,0xe8,0xf2,0x25,0x0,0xeb,0xe6,0xf0,0x10,0xec,0xd6,0xd3,0x0,0xed, + 0xc6,0xd2,0x10,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x5,0xff,0xff,0x9d,0xe4,0x0,0x0,0xff, + 0xff,0xab,0xa0,0x1,0x4,0xff,0xff,0x9d,0x90,0x0,0x8,0xff,0xff,0xab,0xa0,0x1, + 0xc,0xff,0xff,0xab,0xa0,0x1,0x10,0xff,0xff,0xab,0xa0,0x0,0x14,0x4c,0x4d,0x54, + 0x0,0x4d,0x44,0x54,0x0,0x4d,0x53,0x54,0x0,0x4d,0x57,0x54,0x0,0x4d,0x50,0x54, + 0x0,0x43,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x1, + 0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x36,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0xf8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x86,0xfd,0x93,0x1c,0xff,0xff,0xff, + 0xff,0x9e,0xb8,0xaf,0x90,0xff,0xff,0xff,0xff,0x9f,0xbb,0x7,0x80,0xff,0xff,0xff, + 0xff,0xb5,0x65,0x4f,0xf0,0xff,0xff,0xff,0xff,0xb6,0x30,0x48,0xe0,0xff,0xff,0xff, + 0xff,0xb7,0x45,0x31,0xf0,0xff,0xff,0xff,0xff,0xb8,0x10,0x2a,0xe0,0xff,0xff,0xff, + 0xff,0xb9,0x25,0x13,0xf0,0xff,0xff,0xff,0xff,0xb9,0xf0,0xc,0xe0,0xff,0xff,0xff, + 0xff,0xbb,0xe,0x30,0x70,0xff,0xff,0xff,0xff,0xbb,0xcf,0xee,0xe0,0xff,0xff,0xff, + 0xff,0xbc,0xee,0x12,0x70,0xff,0xff,0xff,0xff,0xbd,0xb9,0xb,0x60,0xff,0xff,0xff, + 0xff,0xc2,0x72,0x8,0xf0,0xff,0xff,0xff,0xff,0xc3,0x61,0xeb,0xe0,0xff,0xff,0xff, + 0xff,0xc4,0x51,0xea,0xf0,0xff,0xff,0xff,0xff,0xc5,0x38,0x93,0x60,0xff,0xff,0xff, + 0xff,0xc6,0x31,0xcc,0xf0,0xff,0xff,0xff,0xff,0xc7,0x21,0xaf,0xe0,0xff,0xff,0xff, + 0xff,0xc8,0x1a,0xe9,0x70,0xff,0xff,0xff,0xff,0xc9,0xa,0xcc,0x60,0xff,0xff,0xff, + 0xff,0xc9,0xfa,0xcb,0x70,0xff,0xff,0xff,0xff,0xca,0xea,0xae,0x60,0xff,0xff,0xff, + 0xff,0xcb,0x89,0xc,0x90,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff, + 0xff,0xd2,0x61,0x18,0x0,0xff,0xff,0xff,0xff,0xd3,0x63,0x8c,0x10,0xff,0xff,0xff, + 0xff,0xd4,0x53,0x6f,0x0,0xff,0xff,0xff,0xff,0xd5,0x55,0xe3,0x10,0xff,0xff,0xff, + 0xff,0xd6,0x20,0xdc,0x0,0xff,0xff,0xff,0xff,0xd7,0x35,0xc5,0x10,0xff,0xff,0xff, + 0xff,0xd8,0x0,0xbe,0x0,0xff,0xff,0xff,0xff,0xd9,0x15,0xa7,0x10,0xff,0xff,0xff, + 0xff,0xd9,0xe0,0xa0,0x0,0xff,0xff,0xff,0xff,0xda,0xfe,0xc3,0x90,0xff,0xff,0xff, + 0xff,0xdb,0xc0,0x82,0x0,0xff,0xff,0xff,0xff,0xdc,0xde,0xa5,0x90,0xff,0xff,0xff, + 0xff,0xdd,0xa9,0x9e,0x80,0xff,0xff,0xff,0xff,0xde,0xbe,0x87,0x90,0xff,0xff,0xff, + 0xff,0xdf,0x89,0x80,0x80,0xff,0xff,0xff,0xff,0xe0,0x9e,0x69,0x90,0xff,0xff,0xff, + 0xff,0xe1,0x69,0x62,0x80,0xff,0xff,0xff,0xff,0xe2,0x7e,0x4b,0x90,0xff,0xff,0xff, + 0xff,0xe3,0x49,0x44,0x80,0xff,0xff,0xff,0xff,0xe4,0x5e,0x2d,0x90,0xff,0xff,0xff, + 0xff,0xe5,0x29,0x26,0x80,0xff,0xff,0xff,0xff,0xe6,0x47,0x4a,0x10,0xff,0xff,0xff, + 0xff,0xe7,0x12,0x43,0x0,0xff,0xff,0xff,0xff,0xe8,0x27,0x2c,0x10,0xff,0xff,0xff, + 0xff,0xe8,0xf2,0x25,0x0,0xff,0xff,0xff,0xff,0xeb,0xe6,0xf0,0x10,0xff,0xff,0xff, + 0xff,0xec,0xd6,0xd3,0x0,0xff,0xff,0xff,0xff,0xed,0xc6,0xd2,0x10,0x0,0x2,0x1, 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0xff,0xff,0xdb,0xe4,0x0,0x0,0xff,0xff,0xe3,0xe0,0x1,0x4,0xff,0xff,0xd5, - 0xd0,0x0,0x9,0x4c,0x4d,0x54,0x0,0x42,0x52,0x53,0x54,0x0,0x42,0x52,0x54,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0, - 0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3e,0x0,0x0,0x0,0x3,0x0,0x0, - 0x0,0xd,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x96,0xaa, - 0x6b,0x1c,0xff,0xff,0xff,0xff,0xb8,0xf,0x49,0xe0,0xff,0xff,0xff,0xff,0xb8,0xfd, - 0x40,0xa0,0xff,0xff,0xff,0xff,0xb9,0xf1,0x34,0x30,0xff,0xff,0xff,0xff,0xba,0xde, - 0x74,0x20,0xff,0xff,0xff,0xff,0xda,0x38,0xae,0x30,0xff,0xff,0xff,0xff,0xda,0xeb, - 0xfa,0x30,0xff,0xff,0xff,0xff,0xdc,0x19,0xe1,0xb0,0xff,0xff,0xff,0xff,0xdc,0xb9, - 0x59,0x20,0xff,0xff,0xff,0xff,0xdd,0xfb,0x15,0x30,0xff,0xff,0xff,0xff,0xde,0x9b, - 0xde,0x20,0xff,0xff,0xff,0xff,0xdf,0xdd,0x9a,0x30,0xff,0xff,0xff,0xff,0xe0,0x54, - 0x33,0x20,0xff,0xff,0xff,0xff,0xf4,0x97,0xff,0xb0,0xff,0xff,0xff,0xff,0xf5,0x5, - 0x5e,0x20,0xff,0xff,0xff,0xff,0xf6,0xc0,0x64,0x30,0xff,0xff,0xff,0xff,0xf7,0xe, - 0x1e,0xa0,0xff,0xff,0xff,0xff,0xf8,0x51,0x2c,0x30,0xff,0xff,0xff,0xff,0xf8,0xc7, - 0xc5,0x20,0xff,0xff,0xff,0xff,0xfa,0xa,0xd2,0xb0,0xff,0xff,0xff,0xff,0xfa,0xa8, - 0xf8,0xa0,0xff,0xff,0xff,0xff,0xfb,0xec,0x6,0x30,0xff,0xff,0xff,0xff,0xfc,0x8b, - 0x7d,0xa0,0x0,0x0,0x0,0x0,0x1d,0xc9,0x8e,0x30,0x0,0x0,0x0,0x0,0x1e,0x78, - 0xd7,0xa0,0x0,0x0,0x0,0x0,0x1f,0xa0,0x35,0xb0,0x0,0x0,0x0,0x0,0x20,0x33, - 0xcf,0xa0,0x0,0x0,0x0,0x0,0x21,0x81,0x69,0x30,0x0,0x0,0x0,0x0,0x22,0xb, - 0xc8,0xa0,0x0,0x0,0x0,0x0,0x23,0x58,0x10,0xb0,0x0,0x0,0x0,0x0,0x23,0xe2, - 0x70,0x20,0x0,0x0,0x0,0x0,0x25,0x37,0xf2,0xb0,0x0,0x0,0x0,0x0,0x25,0xd4, - 0xc7,0x20,0x0,0x0,0x0,0x0,0x27,0x21,0xf,0x30,0x0,0x0,0x0,0x0,0x27,0xbd, - 0xe3,0xa0,0x0,0x0,0x0,0x0,0x29,0x0,0xf1,0x30,0x0,0x0,0x0,0x0,0x29,0x94, - 0x8b,0x20,0x0,0x0,0x0,0x0,0x2a,0xea,0xd,0xb0,0x0,0x0,0x0,0x0,0x2b,0x6b, - 0x32,0xa0,0x0,0x0,0x0,0x0,0x2c,0xc0,0xb5,0x30,0x0,0x0,0x0,0x0,0x2d,0x66, - 0xc4,0x20,0x0,0x0,0x0,0x0,0x2e,0xa0,0x97,0x30,0x0,0x0,0x0,0x0,0x2f,0x46, - 0xa6,0x20,0x0,0x0,0x0,0x0,0x30,0x80,0x79,0x30,0x0,0x0,0x0,0x0,0x31,0x1d, - 0x4d,0xa0,0x0,0x0,0x0,0x0,0x32,0x57,0x20,0xb0,0x0,0x0,0x0,0x0,0x33,0x6, - 0x6a,0x20,0x0,0x0,0x0,0x0,0x34,0x38,0x54,0x30,0x0,0x0,0x0,0x0,0x34,0xf8, - 0xc1,0x20,0x0,0x0,0x0,0x0,0x36,0x20,0x1f,0x30,0x0,0x0,0x0,0x0,0x36,0xcf, - 0x68,0xa0,0x0,0x0,0x0,0x0,0x37,0xf6,0xc6,0xb0,0x0,0x0,0x0,0x0,0x38,0xb8, - 0x85,0x20,0x0,0x0,0x0,0x0,0x39,0xdf,0xe3,0x30,0x0,0x0,0x0,0x0,0x3a,0x8f, - 0x2c,0xa0,0x0,0x0,0x0,0x0,0x3b,0xc8,0xff,0xb0,0x0,0x0,0x0,0x0,0x3c,0x6f, - 0xe,0xa0,0x0,0x0,0x0,0x0,0x3d,0xc4,0x91,0x30,0x0,0x0,0x0,0x0,0x3e,0x4e, - 0xf0,0xa0,0x0,0x0,0x0,0x0,0x4e,0x9a,0x48,0xb0,0x0,0x0,0x0,0x0,0x4f,0x49, - 0x92,0x20,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0xff,0xff,0xdb,0xe4,0x0,0x0,0xff,0xff,0xe3,0xe0,0x1,0x4,0xff,0xff,0xd5,0xd0, - 0x0,0x9,0x4c,0x4d,0x54,0x0,0x42,0x52,0x53,0x54,0x0,0x42,0x52,0x54,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0xa,0x42,0x52,0x54,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Miquelon - 0x0,0x0,0x6,0x94, + 0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x5,0xff,0xff,0x9d,0xe4,0x0,0x0,0xff,0xff,0xab,0xa0,0x1,0x4,0xff, + 0xff,0x9d,0x90,0x0,0x8,0xff,0xff,0xab,0xa0,0x1,0xc,0xff,0xff,0xab,0xa0,0x1, + 0x10,0xff,0xff,0xab,0xa0,0x0,0x14,0x4c,0x4d,0x54,0x0,0x4d,0x44,0x54,0x0,0x4d, + 0x53,0x54,0x0,0x4d,0x57,0x54,0x0,0x4d,0x50,0x54,0x0,0x43,0x53,0x54,0x0,0x0, + 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0x43,0x53,0x54,0x36, + 0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Atikokan + 0x0,0x0,0x1,0x59, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x7,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x80,0x0,0x0,0x0,0x9e, + 0xb8,0xa1,0x80,0x9f,0xba,0xf9,0x70,0xc8,0xf8,0x57,0x60,0xcb,0x88,0xfe,0x80,0xd2, + 0x23,0xf4,0x70,0xd2,0x61,0x9,0xf0,0x2,0x1,0x2,0x1,0x3,0x4,0x5,0xff,0xff, + 0xaa,0x1c,0x0,0x0,0xff,0xff,0xb9,0xb0,0x1,0x4,0xff,0xff,0xab,0xa0,0x0,0x8, + 0xff,0xff,0xb9,0xb0,0x1,0xc,0xff,0xff,0xb9,0xb0,0x1,0x10,0xff,0xff,0xb9,0xb0, + 0x0,0x14,0x4c,0x4d,0x54,0x0,0x43,0x44,0x54,0x0,0x43,0x53,0x54,0x0,0x43,0x57, + 0x54,0x0,0x43,0x50,0x54,0x0,0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0, + 0x0,0x0,0x0,0x0,0x1,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x6,0x0,0x0, + 0x0,0x18,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x72,0xee, + 0x84,0x64,0xff,0xff,0xff,0xff,0x9e,0xb8,0xa1,0x80,0xff,0xff,0xff,0xff,0x9f,0xba, + 0xf9,0x70,0xff,0xff,0xff,0xff,0xc8,0xf8,0x57,0x60,0xff,0xff,0xff,0xff,0xcb,0x88, + 0xfe,0x80,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x61, + 0x9,0xf0,0x0,0x2,0x1,0x2,0x1,0x3,0x4,0x5,0xff,0xff,0xaa,0x1c,0x0,0x0, + 0xff,0xff,0xb9,0xb0,0x1,0x4,0xff,0xff,0xab,0xa0,0x0,0x8,0xff,0xff,0xb9,0xb0, + 0x1,0xc,0xff,0xff,0xb9,0xb0,0x1,0x10,0xff,0xff,0xb9,0xb0,0x0,0x14,0x4c,0x4d, + 0x54,0x0,0x43,0x44,0x54,0x0,0x43,0x53,0x54,0x0,0x43,0x57,0x54,0x0,0x43,0x50, + 0x54,0x0,0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, + 0x1,0x0,0xa,0x45,0x53,0x54,0x35,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Martinique + 0x0,0x0,0x1,0x1, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x69,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x12,0x80,0x0,0x0,0x0,0x91, - 0xb6,0x38,0xa8,0x13,0x6e,0x63,0xc0,0x20,0x75,0xe4,0xd0,0x21,0x81,0x77,0x40,0x22, - 0x55,0xc6,0xd0,0x23,0x6a,0x93,0xc0,0x24,0x35,0xa8,0xd0,0x25,0x4a,0x75,0xc0,0x26, - 0x15,0x8a,0xd0,0x27,0x2a,0x57,0xc0,0x27,0xfe,0xa7,0x50,0x29,0xa,0x39,0xc0,0x29, - 0xde,0x89,0x50,0x2a,0xea,0x1b,0xc0,0x2b,0xbe,0x6b,0x50,0x2c,0xd3,0x38,0x40,0x2d, - 0x9e,0x4d,0x50,0x2e,0xb3,0x1a,0x40,0x2f,0x7e,0x2f,0x50,0x30,0x92,0xfc,0x40,0x31, - 0x67,0x4b,0xd0,0x32,0x72,0xde,0x40,0x33,0x47,0x2d,0xd0,0x34,0x52,0xc0,0x40,0x35, - 0x27,0xf,0xd0,0x36,0x32,0xa2,0x40,0x37,0x6,0xf1,0xd0,0x38,0x1b,0xbe,0xc0,0x38, - 0xe6,0xd3,0xd0,0x39,0xfb,0xa0,0xc0,0x3a,0xc6,0xb5,0xd0,0x3b,0xdb,0x82,0xc0,0x3c, - 0xaf,0xd2,0x50,0x3d,0xbb,0x64,0xc0,0x3e,0x8f,0xb4,0x50,0x3f,0x9b,0x46,0xc0,0x40, - 0x6f,0x96,0x50,0x41,0x84,0x63,0x40,0x42,0x4f,0x78,0x50,0x43,0x64,0x45,0x40,0x44, - 0x2f,0x5a,0x50,0x45,0x44,0x27,0x40,0x45,0xf3,0x8c,0xd0,0x47,0x2d,0x43,0xc0,0x47, - 0xd3,0x6e,0xd0,0x49,0xd,0x25,0xc0,0x49,0xb3,0x50,0xd0,0x4a,0xed,0x7,0xc0,0x4b, - 0x9c,0x6d,0x50,0x4c,0xd6,0x24,0x40,0x4d,0x7c,0x4f,0x50,0x4e,0xb6,0x6,0x40,0x4f, - 0x5c,0x31,0x50,0x50,0x95,0xe8,0x40,0x51,0x3c,0x13,0x50,0x52,0x75,0xca,0x40,0x53, - 0x1b,0xf5,0x50,0x54,0x55,0xac,0x40,0x54,0xfb,0xd7,0x50,0x56,0x35,0x8e,0x40,0x56, - 0xe4,0xf3,0xd0,0x58,0x1e,0xaa,0xc0,0x58,0xc4,0xd5,0xd0,0x59,0xfe,0x8c,0xc0,0x5a, - 0xa4,0xb7,0xd0,0x5b,0xde,0x6e,0xc0,0x5c,0x84,0x99,0xd0,0x5d,0xbe,0x50,0xc0,0x5e, - 0x64,0x7b,0xd0,0x5f,0x9e,0x32,0xc0,0x60,0x4d,0x98,0x50,0x61,0x87,0x4f,0x40,0x62, - 0x2d,0x7a,0x50,0x63,0x67,0x31,0x40,0x64,0xd,0x5c,0x50,0x65,0x47,0x13,0x40,0x65, - 0xed,0x3e,0x50,0x67,0x26,0xf5,0x40,0x67,0xcd,0x20,0x50,0x69,0x6,0xd7,0x40,0x69, - 0xad,0x2,0x50,0x6a,0xe6,0xb9,0x40,0x6b,0x96,0x1e,0xd0,0x6c,0xcf,0xd5,0xc0,0x6d, - 0x76,0x0,0xd0,0x6e,0xaf,0xb7,0xc0,0x6f,0x55,0xe2,0xd0,0x70,0x8f,0x99,0xc0,0x71, - 0x35,0xc4,0xd0,0x72,0x6f,0x7b,0xc0,0x73,0x15,0xa6,0xd0,0x74,0x4f,0x5d,0xc0,0x74, - 0xfe,0xc3,0x50,0x76,0x38,0x7a,0x40,0x76,0xde,0xa5,0x50,0x78,0x18,0x5c,0x40,0x78, - 0xbe,0x87,0x50,0x79,0xf8,0x3e,0x40,0x7a,0x9e,0x69,0x50,0x7b,0xd8,0x20,0x40,0x7c, - 0x7e,0x4b,0x50,0x7d,0xb8,0x2,0x40,0x7e,0x5e,0x2d,0x50,0x7f,0x97,0xe4,0x40,0x0, - 0x1,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0xff,0xff,0xcb,0x58,0x0,0x0,0xff,0xff, - 0xc7,0xc0,0x0,0x4,0xff,0xff,0xd5,0xd0,0x0,0x8,0xff,0xff,0xe3,0xe0,0x1,0xd, - 0x4c,0x4d,0x54,0x0,0x41,0x53,0x54,0x0,0x50,0x4d,0x53,0x54,0x0,0x50,0x4d,0x44, - 0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x69,0x0,0x0, - 0x0,0x4,0x0,0x0,0x0,0x12,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff, - 0xff,0xff,0x91,0xb6,0x38,0xa8,0x0,0x0,0x0,0x0,0x13,0x6e,0x63,0xc0,0x0,0x0, - 0x0,0x0,0x20,0x75,0xe4,0xd0,0x0,0x0,0x0,0x0,0x21,0x81,0x77,0x40,0x0,0x0, - 0x0,0x0,0x22,0x55,0xc6,0xd0,0x0,0x0,0x0,0x0,0x23,0x6a,0x93,0xc0,0x0,0x0, - 0x0,0x0,0x24,0x35,0xa8,0xd0,0x0,0x0,0x0,0x0,0x25,0x4a,0x75,0xc0,0x0,0x0, - 0x0,0x0,0x26,0x15,0x8a,0xd0,0x0,0x0,0x0,0x0,0x27,0x2a,0x57,0xc0,0x0,0x0, - 0x0,0x0,0x27,0xfe,0xa7,0x50,0x0,0x0,0x0,0x0,0x29,0xa,0x39,0xc0,0x0,0x0, - 0x0,0x0,0x29,0xde,0x89,0x50,0x0,0x0,0x0,0x0,0x2a,0xea,0x1b,0xc0,0x0,0x0, - 0x0,0x0,0x2b,0xbe,0x6b,0x50,0x0,0x0,0x0,0x0,0x2c,0xd3,0x38,0x40,0x0,0x0, - 0x0,0x0,0x2d,0x9e,0x4d,0x50,0x0,0x0,0x0,0x0,0x2e,0xb3,0x1a,0x40,0x0,0x0, - 0x0,0x0,0x2f,0x7e,0x2f,0x50,0x0,0x0,0x0,0x0,0x30,0x92,0xfc,0x40,0x0,0x0, - 0x0,0x0,0x31,0x67,0x4b,0xd0,0x0,0x0,0x0,0x0,0x32,0x72,0xde,0x40,0x0,0x0, - 0x0,0x0,0x33,0x47,0x2d,0xd0,0x0,0x0,0x0,0x0,0x34,0x52,0xc0,0x40,0x0,0x0, - 0x0,0x0,0x35,0x27,0xf,0xd0,0x0,0x0,0x0,0x0,0x36,0x32,0xa2,0x40,0x0,0x0, - 0x0,0x0,0x37,0x6,0xf1,0xd0,0x0,0x0,0x0,0x0,0x38,0x1b,0xbe,0xc0,0x0,0x0, - 0x0,0x0,0x38,0xe6,0xd3,0xd0,0x0,0x0,0x0,0x0,0x39,0xfb,0xa0,0xc0,0x0,0x0, - 0x0,0x0,0x3a,0xc6,0xb5,0xd0,0x0,0x0,0x0,0x0,0x3b,0xdb,0x82,0xc0,0x0,0x0, - 0x0,0x0,0x3c,0xaf,0xd2,0x50,0x0,0x0,0x0,0x0,0x3d,0xbb,0x64,0xc0,0x0,0x0, - 0x0,0x0,0x3e,0x8f,0xb4,0x50,0x0,0x0,0x0,0x0,0x3f,0x9b,0x46,0xc0,0x0,0x0, - 0x0,0x0,0x40,0x6f,0x96,0x50,0x0,0x0,0x0,0x0,0x41,0x84,0x63,0x40,0x0,0x0, - 0x0,0x0,0x42,0x4f,0x78,0x50,0x0,0x0,0x0,0x0,0x43,0x64,0x45,0x40,0x0,0x0, - 0x0,0x0,0x44,0x2f,0x5a,0x50,0x0,0x0,0x0,0x0,0x45,0x44,0x27,0x40,0x0,0x0, - 0x0,0x0,0x45,0xf3,0x8c,0xd0,0x0,0x0,0x0,0x0,0x47,0x2d,0x43,0xc0,0x0,0x0, - 0x0,0x0,0x47,0xd3,0x6e,0xd0,0x0,0x0,0x0,0x0,0x49,0xd,0x25,0xc0,0x0,0x0, - 0x0,0x0,0x49,0xb3,0x50,0xd0,0x0,0x0,0x0,0x0,0x4a,0xed,0x7,0xc0,0x0,0x0, - 0x0,0x0,0x4b,0x9c,0x6d,0x50,0x0,0x0,0x0,0x0,0x4c,0xd6,0x24,0x40,0x0,0x0, - 0x0,0x0,0x4d,0x7c,0x4f,0x50,0x0,0x0,0x0,0x0,0x4e,0xb6,0x6,0x40,0x0,0x0, - 0x0,0x0,0x4f,0x5c,0x31,0x50,0x0,0x0,0x0,0x0,0x50,0x95,0xe8,0x40,0x0,0x0, - 0x0,0x0,0x51,0x3c,0x13,0x50,0x0,0x0,0x0,0x0,0x52,0x75,0xca,0x40,0x0,0x0, - 0x0,0x0,0x53,0x1b,0xf5,0x50,0x0,0x0,0x0,0x0,0x54,0x55,0xac,0x40,0x0,0x0, - 0x0,0x0,0x54,0xfb,0xd7,0x50,0x0,0x0,0x0,0x0,0x56,0x35,0x8e,0x40,0x0,0x0, - 0x0,0x0,0x56,0xe4,0xf3,0xd0,0x0,0x0,0x0,0x0,0x58,0x1e,0xaa,0xc0,0x0,0x0, - 0x0,0x0,0x58,0xc4,0xd5,0xd0,0x0,0x0,0x0,0x0,0x59,0xfe,0x8c,0xc0,0x0,0x0, - 0x0,0x0,0x5a,0xa4,0xb7,0xd0,0x0,0x0,0x0,0x0,0x5b,0xde,0x6e,0xc0,0x0,0x0, - 0x0,0x0,0x5c,0x84,0x99,0xd0,0x0,0x0,0x0,0x0,0x5d,0xbe,0x50,0xc0,0x0,0x0, - 0x0,0x0,0x5e,0x64,0x7b,0xd0,0x0,0x0,0x0,0x0,0x5f,0x9e,0x32,0xc0,0x0,0x0, - 0x0,0x0,0x60,0x4d,0x98,0x50,0x0,0x0,0x0,0x0,0x61,0x87,0x4f,0x40,0x0,0x0, - 0x0,0x0,0x62,0x2d,0x7a,0x50,0x0,0x0,0x0,0x0,0x63,0x67,0x31,0x40,0x0,0x0, - 0x0,0x0,0x64,0xd,0x5c,0x50,0x0,0x0,0x0,0x0,0x65,0x47,0x13,0x40,0x0,0x0, - 0x0,0x0,0x65,0xed,0x3e,0x50,0x0,0x0,0x0,0x0,0x67,0x26,0xf5,0x40,0x0,0x0, - 0x0,0x0,0x67,0xcd,0x20,0x50,0x0,0x0,0x0,0x0,0x69,0x6,0xd7,0x40,0x0,0x0, - 0x0,0x0,0x69,0xad,0x2,0x50,0x0,0x0,0x0,0x0,0x6a,0xe6,0xb9,0x40,0x0,0x0, - 0x0,0x0,0x6b,0x96,0x1e,0xd0,0x0,0x0,0x0,0x0,0x6c,0xcf,0xd5,0xc0,0x0,0x0, - 0x0,0x0,0x6d,0x76,0x0,0xd0,0x0,0x0,0x0,0x0,0x6e,0xaf,0xb7,0xc0,0x0,0x0, - 0x0,0x0,0x6f,0x55,0xe2,0xd0,0x0,0x0,0x0,0x0,0x70,0x8f,0x99,0xc0,0x0,0x0, - 0x0,0x0,0x71,0x35,0xc4,0xd0,0x0,0x0,0x0,0x0,0x72,0x6f,0x7b,0xc0,0x0,0x0, - 0x0,0x0,0x73,0x15,0xa6,0xd0,0x0,0x0,0x0,0x0,0x74,0x4f,0x5d,0xc0,0x0,0x0, - 0x0,0x0,0x74,0xfe,0xc3,0x50,0x0,0x0,0x0,0x0,0x76,0x38,0x7a,0x40,0x0,0x0, - 0x0,0x0,0x76,0xde,0xa5,0x50,0x0,0x0,0x0,0x0,0x78,0x18,0x5c,0x40,0x0,0x0, - 0x0,0x0,0x78,0xbe,0x87,0x50,0x0,0x0,0x0,0x0,0x79,0xf8,0x3e,0x40,0x0,0x0, - 0x0,0x0,0x7a,0x9e,0x69,0x50,0x0,0x0,0x0,0x0,0x7b,0xd8,0x20,0x40,0x0,0x0, - 0x0,0x0,0x7c,0x7e,0x4b,0x50,0x0,0x0,0x0,0x0,0x7d,0xb8,0x2,0x40,0x0,0x0, - 0x0,0x0,0x7e,0x5e,0x2d,0x50,0x0,0x0,0x0,0x0,0x7f,0x97,0xe4,0x40,0x0,0x1, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0xff,0xff,0xcb,0x58,0x0,0x0,0xff,0xff,0xc7, - 0xc0,0x0,0x4,0xff,0xff,0xd5,0xd0,0x0,0x8,0xff,0xff,0xe3,0xe0,0x1,0xd,0x4c, - 0x4d,0x54,0x0,0x41,0x53,0x54,0x0,0x50,0x4d,0x53,0x54,0x0,0x50,0x4d,0x44,0x54, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x50,0x4d,0x53,0x54,0x33,0x50, - 0x4d,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31, - 0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/El_Salvador - 0x0,0x0,0x0,0xfa, + 0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x11,0x80,0x0,0x0,0x0,0x91, + 0xa3,0xc8,0x44,0x13,0x4d,0x6e,0x40,0x14,0x34,0x16,0xb0,0x1,0x2,0x3,0x2,0xff, + 0xff,0xc6,0xbc,0x0,0x0,0xff,0xff,0xc6,0xbc,0x0,0x4,0xff,0xff,0xc7,0xc0,0x0, + 0x9,0xff,0xff,0xd5,0xd0,0x1,0xd,0x4c,0x4d,0x54,0x0,0x46,0x46,0x4d,0x54,0x0, + 0x41,0x53,0x54,0x0,0x41,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x11,0xf8,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x69,0x87,0x14,0xc4,0xff,0xff,0xff,0xff, + 0x91,0xa3,0xc8,0x44,0x0,0x0,0x0,0x0,0x13,0x4d,0x6e,0x40,0x0,0x0,0x0,0x0, + 0x14,0x34,0x16,0xb0,0x0,0x1,0x2,0x3,0x2,0xff,0xff,0xc6,0xbc,0x0,0x0,0xff, + 0xff,0xc6,0xbc,0x0,0x4,0xff,0xff,0xc7,0xc0,0x0,0x9,0xff,0xff,0xd5,0xd0,0x1, + 0xd,0x4c,0x4d,0x54,0x0,0x46,0x46,0x4d,0x54,0x0,0x41,0x53,0x54,0x0,0x41,0x44, + 0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x41,0x53,0x54,0x34,0xa, + + // /home/konrad/src/smoke/tzone/zoneinfo/America/Port_of_Spain + 0x0,0x0,0x0,0xaa, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0xa3, - 0xd5,0xa6,0x20,0x20,0x9a,0xdc,0xe0,0x21,0x5c,0x9b,0x50,0x22,0x7a,0xbe,0xe0,0x23, - 0x3c,0x7d,0x50,0x0,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0xac,0x60,0x0,0x0,0xff, - 0xff,0xb9,0xb0,0x1,0x4,0xff,0xff,0xab,0xa0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x43, - 0x44,0x54,0x0,0x43,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, + 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x93, + 0x37,0x33,0xac,0x0,0x1,0xff,0xff,0xc6,0x54,0x0,0x0,0xff,0xff,0xc7,0xc0,0x0, + 0x4,0x4c,0x4d,0x54,0x0,0x41,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x6,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0xa3,0xd5,0xa6,0x20,0x0,0x0,0x0,0x0,0x20,0x9a,0xdc, - 0xe0,0x0,0x0,0x0,0x0,0x21,0x5c,0x9b,0x50,0x0,0x0,0x0,0x0,0x22,0x7a,0xbe, - 0xe0,0x0,0x0,0x0,0x0,0x23,0x3c,0x7d,0x50,0x0,0x2,0x1,0x2,0x1,0x2,0xff, - 0xff,0xac,0x60,0x0,0x0,0xff,0xff,0xb9,0xb0,0x1,0x4,0xff,0xff,0xab,0xa0,0x0, - 0x8,0x4c,0x4d,0x54,0x0,0x43,0x44,0x54,0x0,0x43,0x53,0x54,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0xa,0x43,0x53,0x54,0x36,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Cancun - 0x0,0x0,0x3,0x30, + 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0x93,0x37,0x33,0xac,0x0,0x1,0xff,0xff,0xc6,0x54,0x0, + 0x0,0xff,0xff,0xc7,0xc0,0x0,0x4,0x4c,0x4d,0x54,0x0,0x41,0x53,0x54,0x0,0x0, + 0x0,0x0,0x0,0xa,0x41,0x53,0x54,0x34,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Halifax + 0x0,0x0,0xd,0x6e, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2b,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0xa5, - 0xb6,0xda,0x60,0x16,0x86,0xd5,0x60,0x31,0x67,0x67,0xf0,0x32,0x72,0xfa,0x60,0x33, - 0x47,0x49,0xf0,0x34,0x52,0xdc,0x60,0x35,0x27,0x2b,0xf0,0x35,0xc4,0x0,0x60,0x36, - 0x32,0xcc,0x70,0x37,0x7,0x1c,0x0,0x38,0x1b,0xe8,0xf0,0x38,0xe6,0xfe,0x0,0x39, - 0xfb,0xca,0xf0,0x3a,0xf5,0x4,0x80,0x3b,0xb6,0xc2,0xf0,0x3c,0xaf,0xfc,0x80,0x3d, - 0xbb,0x8e,0xf0,0x3e,0x8f,0xde,0x80,0x3f,0x9b,0x70,0xf0,0x40,0x6f,0xc0,0x80,0x41, - 0x84,0x8d,0x70,0x42,0x4f,0xa2,0x80,0x43,0x64,0x6f,0x70,0x44,0x2f,0x84,0x80,0x45, - 0x44,0x51,0x70,0x46,0xf,0x66,0x80,0x47,0x24,0x33,0x70,0x47,0xf8,0x83,0x0,0x49, - 0x4,0x15,0x70,0x49,0xd8,0x65,0x0,0x4a,0xe3,0xf7,0x70,0x4b,0xb8,0x47,0x0,0x4c, - 0xcd,0x13,0xf0,0x4d,0x98,0x29,0x0,0x4e,0xac,0xf5,0xf0,0x4f,0x78,0xb,0x0,0x50, - 0x8c,0xd7,0xf0,0x51,0x61,0x27,0x80,0x52,0x6c,0xb9,0xf0,0x53,0x41,0x9,0x80,0x54, - 0x4c,0x9b,0xf0,0x54,0xcd,0xdd,0x0,0x0,0x1,0x3,0x2,0x3,0x2,0x3,0x2,0x4, - 0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4, - 0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4, - 0x1,0x3,0xff,0xff,0xae,0xa8,0x0,0x0,0xff,0xff,0xab,0xa0,0x0,0x4,0xff,0xff, - 0xc7,0xc0,0x1,0x8,0xff,0xff,0xb9,0xb0,0x0,0xc,0xff,0xff,0xb9,0xb0,0x1,0x10, - 0x4c,0x4d,0x54,0x0,0x43,0x53,0x54,0x0,0x45,0x44,0x54,0x0,0x45,0x53,0x54,0x0, - 0x43,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a, - 0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x2b,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0xf8,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xff,0xff,0xff,0xff,0xa5,0xb6,0xda,0x60,0x0,0x0,0x0,0x0,0x16,0x86, - 0xd5,0x60,0x0,0x0,0x0,0x0,0x31,0x67,0x67,0xf0,0x0,0x0,0x0,0x0,0x32,0x72, - 0xfa,0x60,0x0,0x0,0x0,0x0,0x33,0x47,0x49,0xf0,0x0,0x0,0x0,0x0,0x34,0x52, - 0xdc,0x60,0x0,0x0,0x0,0x0,0x35,0x27,0x2b,0xf0,0x0,0x0,0x0,0x0,0x35,0xc4, - 0x0,0x60,0x0,0x0,0x0,0x0,0x36,0x32,0xcc,0x70,0x0,0x0,0x0,0x0,0x37,0x7, - 0x1c,0x0,0x0,0x0,0x0,0x0,0x38,0x1b,0xe8,0xf0,0x0,0x0,0x0,0x0,0x38,0xe6, - 0xfe,0x0,0x0,0x0,0x0,0x0,0x39,0xfb,0xca,0xf0,0x0,0x0,0x0,0x0,0x3a,0xf5, - 0x4,0x80,0x0,0x0,0x0,0x0,0x3b,0xb6,0xc2,0xf0,0x0,0x0,0x0,0x0,0x3c,0xaf, - 0xfc,0x80,0x0,0x0,0x0,0x0,0x3d,0xbb,0x8e,0xf0,0x0,0x0,0x0,0x0,0x3e,0x8f, - 0xde,0x80,0x0,0x0,0x0,0x0,0x3f,0x9b,0x70,0xf0,0x0,0x0,0x0,0x0,0x40,0x6f, - 0xc0,0x80,0x0,0x0,0x0,0x0,0x41,0x84,0x8d,0x70,0x0,0x0,0x0,0x0,0x42,0x4f, - 0xa2,0x80,0x0,0x0,0x0,0x0,0x43,0x64,0x6f,0x70,0x0,0x0,0x0,0x0,0x44,0x2f, - 0x84,0x80,0x0,0x0,0x0,0x0,0x45,0x44,0x51,0x70,0x0,0x0,0x0,0x0,0x46,0xf, - 0x66,0x80,0x0,0x0,0x0,0x0,0x47,0x24,0x33,0x70,0x0,0x0,0x0,0x0,0x47,0xf8, - 0x83,0x0,0x0,0x0,0x0,0x0,0x49,0x4,0x15,0x70,0x0,0x0,0x0,0x0,0x49,0xd8, - 0x65,0x0,0x0,0x0,0x0,0x0,0x4a,0xe3,0xf7,0x70,0x0,0x0,0x0,0x0,0x4b,0xb8, - 0x47,0x0,0x0,0x0,0x0,0x0,0x4c,0xcd,0x13,0xf0,0x0,0x0,0x0,0x0,0x4d,0x98, - 0x29,0x0,0x0,0x0,0x0,0x0,0x4e,0xac,0xf5,0xf0,0x0,0x0,0x0,0x0,0x4f,0x78, - 0xb,0x0,0x0,0x0,0x0,0x0,0x50,0x8c,0xd7,0xf0,0x0,0x0,0x0,0x0,0x51,0x61, - 0x27,0x80,0x0,0x0,0x0,0x0,0x52,0x6c,0xb9,0xf0,0x0,0x0,0x0,0x0,0x53,0x41, - 0x9,0x80,0x0,0x0,0x0,0x0,0x54,0x4c,0x9b,0xf0,0x0,0x0,0x0,0x0,0x54,0xcd, - 0xdd,0x0,0x0,0x1,0x3,0x2,0x3,0x2,0x3,0x2,0x4,0x1,0x4,0x1,0x4,0x1, - 0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1, - 0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x3,0xff,0xff,0xae, - 0xa8,0x0,0x0,0xff,0xff,0xab,0xa0,0x0,0x4,0xff,0xff,0xc7,0xc0,0x1,0x8,0xff, - 0xff,0xb9,0xb0,0x0,0xc,0xff,0xff,0xb9,0xb0,0x1,0x10,0x4c,0x4d,0x54,0x0,0x43, - 0x53,0x54,0x0,0x45,0x44,0x54,0x0,0x45,0x53,0x54,0x0,0x43,0x44,0x54,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x45,0x53,0x54,0x35,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Pangnirtung - 0x0,0x0,0x8,0x3c, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x7b,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x29,0x80,0x0,0x0,0x0,0xa3, - 0xd5,0x52,0x80,0xcb,0x88,0xe2,0x60,0xd2,0x23,0xf4,0x70,0xd2,0x60,0xed,0xd0,0xf7, - 0x2f,0x30,0x40,0xf8,0x28,0x5b,0xc0,0x13,0x69,0x39,0xe0,0x14,0x59,0x1c,0xd0,0x15, - 0x49,0x1b,0xe0,0x16,0x38,0xfe,0xd0,0x17,0x28,0xfd,0xe0,0x18,0x22,0x1b,0x50,0x19, - 0x8,0xdf,0xe0,0x1a,0x1,0xfd,0x50,0x1a,0xf1,0xfc,0x60,0x1b,0xe1,0xdf,0x50,0x1c, - 0xd1,0xde,0x60,0x1d,0xc1,0xc1,0x50,0x1e,0xb1,0xc0,0x60,0x1f,0xa1,0xa3,0x50,0x20, - 0x75,0xf2,0xe0,0x21,0x81,0x85,0x50,0x22,0x55,0xd4,0xe0,0x23,0x6a,0xa1,0xd0,0x24, - 0x35,0xb6,0xe0,0x25,0x4a,0x83,0xd0,0x26,0x15,0x98,0xe0,0x27,0x2a,0x65,0xd0,0x27, - 0xfe,0xb5,0x60,0x29,0xa,0x47,0xd0,0x29,0xde,0x97,0x60,0x2a,0xea,0x29,0xd0,0x2b, - 0xbe,0x79,0x60,0x2c,0xd3,0x46,0x50,0x2d,0x9e,0x5b,0x60,0x2e,0xb3,0x28,0x50,0x2f, - 0x7e,0x3d,0x60,0x30,0x93,0x18,0x60,0x31,0x67,0x67,0xf0,0x32,0x72,0xfa,0x60,0x33, - 0x47,0x49,0xf0,0x34,0x52,0xdc,0x60,0x35,0x27,0x2b,0xf0,0x36,0x32,0xbe,0x60,0x37, - 0x7,0xd,0xf0,0x38,0x1b,0xda,0xe0,0x38,0xe6,0xfe,0x0,0x39,0xfb,0xca,0xf0,0x3a, - 0xc6,0xd1,0xf0,0x3b,0xdb,0x9e,0xe0,0x3c,0xaf,0xee,0x70,0x3d,0xbb,0x80,0xe0,0x3e, - 0x8f,0xd0,0x70,0x3f,0x9b,0x62,0xe0,0x40,0x6f,0xb2,0x70,0x41,0x84,0x7f,0x60,0x42, - 0x4f,0x94,0x70,0x43,0x64,0x61,0x60,0x44,0x2f,0x76,0x70,0x45,0x44,0x43,0x60,0x45, - 0xf3,0xa8,0xf0,0x47,0x2d,0x5f,0xe0,0x47,0xd3,0x8a,0xf0,0x49,0xd,0x41,0xe0,0x49, - 0xb3,0x6c,0xf0,0x4a,0xed,0x23,0xe0,0x4b,0x9c,0x89,0x70,0x4c,0xd6,0x40,0x60,0x4d, - 0x7c,0x6b,0x70,0x4e,0xb6,0x22,0x60,0x4f,0x5c,0x4d,0x70,0x50,0x96,0x4,0x60,0x51, - 0x3c,0x2f,0x70,0x52,0x75,0xe6,0x60,0x53,0x1c,0x11,0x70,0x54,0x55,0xc8,0x60,0x54, - 0xfb,0xf3,0x70,0x56,0x35,0xaa,0x60,0x56,0xe5,0xf,0xf0,0x58,0x1e,0xc6,0xe0,0x58, - 0xc4,0xf1,0xf0,0x59,0xfe,0xa8,0xe0,0x5a,0xa4,0xd3,0xf0,0x5b,0xde,0x8a,0xe0,0x5c, - 0x84,0xb5,0xf0,0x5d,0xbe,0x6c,0xe0,0x5e,0x64,0x97,0xf0,0x5f,0x9e,0x4e,0xe0,0x60, - 0x4d,0xb4,0x70,0x61,0x87,0x6b,0x60,0x62,0x2d,0x96,0x70,0x63,0x67,0x4d,0x60,0x64, - 0xd,0x78,0x70,0x65,0x47,0x2f,0x60,0x65,0xed,0x5a,0x70,0x67,0x27,0x11,0x60,0x67, - 0xcd,0x3c,0x70,0x69,0x6,0xf3,0x60,0x69,0xad,0x1e,0x70,0x6a,0xe6,0xd5,0x60,0x6b, - 0x96,0x3a,0xf0,0x6c,0xcf,0xf1,0xe0,0x6d,0x76,0x1c,0xf0,0x6e,0xaf,0xd3,0xe0,0x6f, - 0x55,0xfe,0xf0,0x70,0x8f,0xb5,0xe0,0x71,0x35,0xe0,0xf0,0x72,0x6f,0x97,0xe0,0x73, - 0x15,0xc2,0xf0,0x74,0x4f,0x79,0xe0,0x74,0xfe,0xdf,0x70,0x76,0x38,0x96,0x60,0x76, - 0xde,0xc1,0x70,0x78,0x18,0x78,0x60,0x78,0xbe,0xa3,0x70,0x79,0xf8,0x5a,0x60,0x7a, - 0x9e,0x85,0x70,0x7b,0xd8,0x3c,0x60,0x7c,0x7e,0x67,0x70,0x7d,0xb8,0x1e,0x60,0x7e, - 0x5e,0x49,0x70,0x7f,0x98,0x0,0x60,0x0,0x3,0x1,0x2,0x3,0x4,0x3,0x5,0x3, - 0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3, - 0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x8,0x9,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xd5,0xd0,0x1,0x4,0xff,0xff, - 0xd5,0xd0,0x1,0x8,0xff,0xff,0xc7,0xc0,0x0,0xc,0xff,0xff,0xe3,0xe0,0x1,0x10, - 0xff,0xff,0xd5,0xd0,0x1,0x15,0xff,0xff,0xc7,0xc0,0x1,0x19,0xff,0xff,0xb9,0xb0, - 0x0,0x1d,0xff,0xff,0xab,0xa0,0x0,0x21,0xff,0xff,0xb9,0xb0,0x1,0x25,0xff,0xff, - 0xc7,0xc0,0x1,0x19,0xff,0xff,0xb9,0xb0,0x0,0x1d,0x2d,0x30,0x30,0x0,0x41,0x57, - 0x54,0x0,0x41,0x50,0x54,0x0,0x41,0x53,0x54,0x0,0x41,0x44,0x44,0x54,0x0,0x41, - 0x44,0x54,0x0,0x45,0x44,0x54,0x0,0x45,0x53,0x54,0x0,0x43,0x53,0x54,0x0,0x43, - 0x44,0x54,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xc,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7b,0x0, - 0x0,0x0,0xc,0x0,0x0,0x0,0x29,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff, - 0xff,0xff,0xff,0xa3,0xd5,0x52,0x80,0xff,0xff,0xff,0xff,0xcb,0x88,0xe2,0x60,0xff, - 0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x60,0xed,0xd0,0xff, - 0xff,0xff,0xff,0xf7,0x2f,0x30,0x40,0xff,0xff,0xff,0xff,0xf8,0x28,0x5b,0xc0,0x0, - 0x0,0x0,0x0,0x13,0x69,0x39,0xe0,0x0,0x0,0x0,0x0,0x14,0x59,0x1c,0xd0,0x0, - 0x0,0x0,0x0,0x15,0x49,0x1b,0xe0,0x0,0x0,0x0,0x0,0x16,0x38,0xfe,0xd0,0x0, - 0x0,0x0,0x0,0x17,0x28,0xfd,0xe0,0x0,0x0,0x0,0x0,0x18,0x22,0x1b,0x50,0x0, - 0x0,0x0,0x0,0x19,0x8,0xdf,0xe0,0x0,0x0,0x0,0x0,0x1a,0x1,0xfd,0x50,0x0, - 0x0,0x0,0x0,0x1a,0xf1,0xfc,0x60,0x0,0x0,0x0,0x0,0x1b,0xe1,0xdf,0x50,0x0, - 0x0,0x0,0x0,0x1c,0xd1,0xde,0x60,0x0,0x0,0x0,0x0,0x1d,0xc1,0xc1,0x50,0x0, - 0x0,0x0,0x0,0x1e,0xb1,0xc0,0x60,0x0,0x0,0x0,0x0,0x1f,0xa1,0xa3,0x50,0x0, - 0x0,0x0,0x0,0x20,0x75,0xf2,0xe0,0x0,0x0,0x0,0x0,0x21,0x81,0x85,0x50,0x0, - 0x0,0x0,0x0,0x22,0x55,0xd4,0xe0,0x0,0x0,0x0,0x0,0x23,0x6a,0xa1,0xd0,0x0, - 0x0,0x0,0x0,0x24,0x35,0xb6,0xe0,0x0,0x0,0x0,0x0,0x25,0x4a,0x83,0xd0,0x0, - 0x0,0x0,0x0,0x26,0x15,0x98,0xe0,0x0,0x0,0x0,0x0,0x27,0x2a,0x65,0xd0,0x0, - 0x0,0x0,0x0,0x27,0xfe,0xb5,0x60,0x0,0x0,0x0,0x0,0x29,0xa,0x47,0xd0,0x0, - 0x0,0x0,0x0,0x29,0xde,0x97,0x60,0x0,0x0,0x0,0x0,0x2a,0xea,0x29,0xd0,0x0, - 0x0,0x0,0x0,0x2b,0xbe,0x79,0x60,0x0,0x0,0x0,0x0,0x2c,0xd3,0x46,0x50,0x0, - 0x0,0x0,0x0,0x2d,0x9e,0x5b,0x60,0x0,0x0,0x0,0x0,0x2e,0xb3,0x28,0x50,0x0, - 0x0,0x0,0x0,0x2f,0x7e,0x3d,0x60,0x0,0x0,0x0,0x0,0x30,0x93,0x18,0x60,0x0, - 0x0,0x0,0x0,0x31,0x67,0x67,0xf0,0x0,0x0,0x0,0x0,0x32,0x72,0xfa,0x60,0x0, - 0x0,0x0,0x0,0x33,0x47,0x49,0xf0,0x0,0x0,0x0,0x0,0x34,0x52,0xdc,0x60,0x0, - 0x0,0x0,0x0,0x35,0x27,0x2b,0xf0,0x0,0x0,0x0,0x0,0x36,0x32,0xbe,0x60,0x0, - 0x0,0x0,0x0,0x37,0x7,0xd,0xf0,0x0,0x0,0x0,0x0,0x38,0x1b,0xda,0xe0,0x0, - 0x0,0x0,0x0,0x38,0xe6,0xfe,0x0,0x0,0x0,0x0,0x0,0x39,0xfb,0xca,0xf0,0x0, - 0x0,0x0,0x0,0x3a,0xc6,0xd1,0xf0,0x0,0x0,0x0,0x0,0x3b,0xdb,0x9e,0xe0,0x0, - 0x0,0x0,0x0,0x3c,0xaf,0xee,0x70,0x0,0x0,0x0,0x0,0x3d,0xbb,0x80,0xe0,0x0, - 0x0,0x0,0x0,0x3e,0x8f,0xd0,0x70,0x0,0x0,0x0,0x0,0x3f,0x9b,0x62,0xe0,0x0, - 0x0,0x0,0x0,0x40,0x6f,0xb2,0x70,0x0,0x0,0x0,0x0,0x41,0x84,0x7f,0x60,0x0, - 0x0,0x0,0x0,0x42,0x4f,0x94,0x70,0x0,0x0,0x0,0x0,0x43,0x64,0x61,0x60,0x0, - 0x0,0x0,0x0,0x44,0x2f,0x76,0x70,0x0,0x0,0x0,0x0,0x45,0x44,0x43,0x60,0x0, - 0x0,0x0,0x0,0x45,0xf3,0xa8,0xf0,0x0,0x0,0x0,0x0,0x47,0x2d,0x5f,0xe0,0x0, - 0x0,0x0,0x0,0x47,0xd3,0x8a,0xf0,0x0,0x0,0x0,0x0,0x49,0xd,0x41,0xe0,0x0, - 0x0,0x0,0x0,0x49,0xb3,0x6c,0xf0,0x0,0x0,0x0,0x0,0x4a,0xed,0x23,0xe0,0x0, - 0x0,0x0,0x0,0x4b,0x9c,0x89,0x70,0x0,0x0,0x0,0x0,0x4c,0xd6,0x40,0x60,0x0, - 0x0,0x0,0x0,0x4d,0x7c,0x6b,0x70,0x0,0x0,0x0,0x0,0x4e,0xb6,0x22,0x60,0x0, - 0x0,0x0,0x0,0x4f,0x5c,0x4d,0x70,0x0,0x0,0x0,0x0,0x50,0x96,0x4,0x60,0x0, - 0x0,0x0,0x0,0x51,0x3c,0x2f,0x70,0x0,0x0,0x0,0x0,0x52,0x75,0xe6,0x60,0x0, - 0x0,0x0,0x0,0x53,0x1c,0x11,0x70,0x0,0x0,0x0,0x0,0x54,0x55,0xc8,0x60,0x0, - 0x0,0x0,0x0,0x54,0xfb,0xf3,0x70,0x0,0x0,0x0,0x0,0x56,0x35,0xaa,0x60,0x0, - 0x0,0x0,0x0,0x56,0xe5,0xf,0xf0,0x0,0x0,0x0,0x0,0x58,0x1e,0xc6,0xe0,0x0, - 0x0,0x0,0x0,0x58,0xc4,0xf1,0xf0,0x0,0x0,0x0,0x0,0x59,0xfe,0xa8,0xe0,0x0, - 0x0,0x0,0x0,0x5a,0xa4,0xd3,0xf0,0x0,0x0,0x0,0x0,0x5b,0xde,0x8a,0xe0,0x0, - 0x0,0x0,0x0,0x5c,0x84,0xb5,0xf0,0x0,0x0,0x0,0x0,0x5d,0xbe,0x6c,0xe0,0x0, - 0x0,0x0,0x0,0x5e,0x64,0x97,0xf0,0x0,0x0,0x0,0x0,0x5f,0x9e,0x4e,0xe0,0x0, - 0x0,0x0,0x0,0x60,0x4d,0xb4,0x70,0x0,0x0,0x0,0x0,0x61,0x87,0x6b,0x60,0x0, - 0x0,0x0,0x0,0x62,0x2d,0x96,0x70,0x0,0x0,0x0,0x0,0x63,0x67,0x4d,0x60,0x0, - 0x0,0x0,0x0,0x64,0xd,0x78,0x70,0x0,0x0,0x0,0x0,0x65,0x47,0x2f,0x60,0x0, - 0x0,0x0,0x0,0x65,0xed,0x5a,0x70,0x0,0x0,0x0,0x0,0x67,0x27,0x11,0x60,0x0, - 0x0,0x0,0x0,0x67,0xcd,0x3c,0x70,0x0,0x0,0x0,0x0,0x69,0x6,0xf3,0x60,0x0, - 0x0,0x0,0x0,0x69,0xad,0x1e,0x70,0x0,0x0,0x0,0x0,0x6a,0xe6,0xd5,0x60,0x0, - 0x0,0x0,0x0,0x6b,0x96,0x3a,0xf0,0x0,0x0,0x0,0x0,0x6c,0xcf,0xf1,0xe0,0x0, - 0x0,0x0,0x0,0x6d,0x76,0x1c,0xf0,0x0,0x0,0x0,0x0,0x6e,0xaf,0xd3,0xe0,0x0, - 0x0,0x0,0x0,0x6f,0x55,0xfe,0xf0,0x0,0x0,0x0,0x0,0x70,0x8f,0xb5,0xe0,0x0, - 0x0,0x0,0x0,0x71,0x35,0xe0,0xf0,0x0,0x0,0x0,0x0,0x72,0x6f,0x97,0xe0,0x0, - 0x0,0x0,0x0,0x73,0x15,0xc2,0xf0,0x0,0x0,0x0,0x0,0x74,0x4f,0x79,0xe0,0x0, - 0x0,0x0,0x0,0x74,0xfe,0xdf,0x70,0x0,0x0,0x0,0x0,0x76,0x38,0x96,0x60,0x0, - 0x0,0x0,0x0,0x76,0xde,0xc1,0x70,0x0,0x0,0x0,0x0,0x78,0x18,0x78,0x60,0x0, - 0x0,0x0,0x0,0x78,0xbe,0xa3,0x70,0x0,0x0,0x0,0x0,0x79,0xf8,0x5a,0x60,0x0, - 0x0,0x0,0x0,0x7a,0x9e,0x85,0x70,0x0,0x0,0x0,0x0,0x7b,0xd8,0x3c,0x60,0x0, - 0x0,0x0,0x0,0x7c,0x7e,0x67,0x70,0x0,0x0,0x0,0x0,0x7d,0xb8,0x1e,0x60,0x0, - 0x0,0x0,0x0,0x7e,0x5e,0x49,0x70,0x0,0x0,0x0,0x0,0x7f,0x98,0x0,0x60,0x0, - 0x3,0x1,0x2,0x3,0x4,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3, - 0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3, - 0x5,0x3,0x5,0x3,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x8,0x9,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x0,0x0,0x0,0x0,0x0,0x0, - 0xff,0xff,0xd5,0xd0,0x1,0x4,0xff,0xff,0xd5,0xd0,0x1,0x8,0xff,0xff,0xc7,0xc0, - 0x0,0xc,0xff,0xff,0xe3,0xe0,0x1,0x10,0xff,0xff,0xd5,0xd0,0x1,0x15,0xff,0xff, - 0xc7,0xc0,0x1,0x19,0xff,0xff,0xb9,0xb0,0x0,0x1d,0xff,0xff,0xab,0xa0,0x0,0x21, - 0xff,0xff,0xb9,0xb0,0x1,0x25,0xff,0xff,0xc7,0xc0,0x1,0x19,0xff,0xff,0xb9,0xb0, - 0x0,0x1d,0x2d,0x30,0x30,0x0,0x41,0x57,0x54,0x0,0x41,0x50,0x54,0x0,0x41,0x53, - 0x54,0x0,0x41,0x44,0x44,0x54,0x0,0x41,0x44,0x54,0x0,0x45,0x44,0x54,0x0,0x45, - 0x53,0x54,0x0,0x43,0x53,0x54,0x0,0x43,0x44,0x54,0x0,0x0,0x0,0x1,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0xa,0x45,0x53,0x54,0x35,0x45,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32, - 0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Noronha - 0x0,0x0,0x2,0xd8, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x28,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0x96, - 0xaa,0x65,0x64,0xb8,0xf,0x3b,0xd0,0xb8,0xfd,0x32,0x90,0xb9,0xf1,0x26,0x20,0xba, - 0xde,0x66,0x10,0xda,0x38,0xa0,0x20,0xda,0xeb,0xec,0x20,0xdc,0x19,0xd3,0xa0,0xdc, - 0xb9,0x4b,0x10,0xdd,0xfb,0x7,0x20,0xde,0x9b,0xd0,0x10,0xdf,0xdd,0x8c,0x20,0xe0, - 0x54,0x25,0x10,0xf4,0x97,0xf1,0xa0,0xf5,0x5,0x50,0x10,0xf6,0xc0,0x56,0x20,0xf7, - 0xe,0x10,0x90,0xf8,0x51,0x1e,0x20,0xf8,0xc7,0xb7,0x10,0xfa,0xa,0xc4,0xa0,0xfa, - 0xa8,0xea,0x90,0xfb,0xeb,0xf8,0x20,0xfc,0x8b,0x6f,0x90,0x1d,0xc9,0x80,0x20,0x1e, - 0x78,0xc9,0x90,0x1f,0xa0,0x27,0xa0,0x20,0x33,0xc1,0x90,0x21,0x81,0x5b,0x20,0x22, - 0xb,0xba,0x90,0x23,0x58,0x2,0xa0,0x23,0xe2,0x62,0x10,0x25,0x37,0xe4,0xa0,0x25, - 0xd4,0xb9,0x10,0x37,0xf6,0xb8,0xa0,0x38,0xb8,0x77,0x10,0x39,0xdf,0xd5,0x20,0x39, - 0xe9,0x1,0x90,0x3b,0xc8,0xf1,0xa0,0x3c,0x6f,0x0,0x90,0x0,0x2,0x1,0x2,0x1, + 0x0,0x0,0xe5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0x80, + 0xf1,0xab,0xa0,0x9a,0xe4,0xde,0xc0,0x9b,0xd6,0x13,0x30,0x9e,0xb8,0x85,0x60,0x9f, + 0xba,0xdd,0x50,0xa2,0x9d,0x17,0x40,0xa3,0x30,0xb1,0x30,0xa4,0x7a,0x56,0x40,0xa5, + 0x1b,0x1f,0x30,0xa6,0x53,0xa0,0xc0,0xa6,0xfc,0x52,0xb0,0xa8,0x3c,0xbd,0x40,0xa8, + 0xdc,0x34,0xb0,0xaa,0x1c,0x9f,0x40,0xaa,0xcd,0x3a,0x30,0xab,0xfc,0x81,0x40,0xac, + 0xbf,0x91,0x30,0xad,0xee,0xd8,0x40,0xae,0x8c,0xfe,0x30,0xaf,0xbc,0x45,0x40,0xb0, + 0x7f,0x55,0x30,0xb1,0xae,0x9c,0x40,0xb2,0x4b,0x70,0xb0,0xb3,0x8e,0x7e,0x40,0xb4, + 0x24,0xbb,0x30,0xb5,0x6e,0x60,0x40,0xb6,0x15,0xc0,0xb0,0xb7,0x4e,0x42,0x40,0xb8, + 0x8,0x17,0xb0,0xb9,0x24,0xe9,0xc0,0xb9,0xe7,0xf9,0xb0,0xbb,0x4,0xcb,0xc0,0xbb, + 0xd1,0x16,0x30,0xbd,0x0,0x5d,0x40,0xbd,0x9d,0x31,0xb0,0xbe,0xf2,0xb4,0x40,0xbf, + 0x90,0xda,0x30,0xc0,0xd3,0xe7,0xc0,0xc1,0x5e,0x47,0x30,0xc2,0x8d,0x8e,0x40,0xc3, + 0x50,0x9e,0x30,0xc4,0x6d,0x70,0x40,0xc5,0x30,0x80,0x30,0xc6,0x72,0x3c,0x40,0xc7, + 0x10,0x62,0x30,0xc8,0x36,0x6e,0xc0,0xc8,0xf9,0x7e,0xb0,0xca,0x16,0x50,0xc0,0xca, + 0xd9,0x60,0xb0,0xcb,0x88,0xe2,0x60,0xd2,0x23,0xf4,0x70,0xd2,0x60,0xed,0xd0,0xd3, + 0x75,0xd6,0xe0,0xd4,0x40,0xcf,0xd0,0xd5,0x55,0xb8,0xe0,0xd6,0x20,0xb1,0xd0,0xd7, + 0x35,0x9a,0xe0,0xd8,0x0,0x93,0xd0,0xd9,0x15,0x7c,0xe0,0xd9,0xe0,0x75,0xd0,0xdc, + 0xde,0x7b,0x60,0xdd,0xa9,0x74,0x50,0xde,0xbe,0x5d,0x60,0xdf,0x89,0x56,0x50,0xe0, + 0x9e,0x3f,0x60,0xe1,0x69,0x38,0x50,0xe2,0x7e,0x21,0x60,0xe3,0x49,0x1a,0x50,0xe6, + 0x47,0x1f,0xe0,0xe7,0x12,0x18,0xd0,0xe8,0x27,0x1,0xe0,0xe8,0xf1,0xfa,0xd0,0xea, + 0x6,0xe3,0xe0,0xea,0xd1,0xdc,0xd0,0xeb,0xe6,0xc5,0xe0,0xec,0xb1,0xbe,0xd0,0xf1, + 0x8f,0xa6,0x60,0xf2,0x7f,0x89,0x50,0xf3,0x6f,0x88,0x60,0xf4,0x5f,0x6b,0x50,0xf5, + 0x4f,0x6a,0x60,0xf6,0x3f,0x4d,0x50,0xf7,0x2f,0x4c,0x60,0xf8,0x28,0x69,0xd0,0xf9, + 0xf,0x2e,0x60,0xfa,0x8,0x4b,0xd0,0xfa,0xf8,0x4a,0xe0,0xfb,0xe8,0x2d,0xd0,0xfc, + 0xd8,0x2c,0xe0,0xfd,0xc8,0xf,0xd0,0xfe,0xb8,0xe,0xe0,0xff,0xa7,0xf1,0xd0,0x0, + 0x97,0xf0,0xe0,0x1,0x87,0xd3,0xd0,0x2,0x77,0xd2,0xe0,0x3,0x70,0xf0,0x50,0x4, + 0x60,0xef,0x60,0x5,0x50,0xd2,0x50,0x6,0x40,0xd1,0x60,0x7,0x30,0xb4,0x50,0x8, + 0x20,0xb3,0x60,0x9,0x10,0x96,0x50,0xa,0x0,0x95,0x60,0xa,0xf0,0x78,0x50,0xb, + 0xe0,0x77,0x60,0xc,0xd9,0x94,0xd0,0xd,0xc0,0x59,0x60,0xe,0xb9,0x76,0xd0,0xf, + 0xa9,0x75,0xe0,0x10,0x99,0x58,0xd0,0x11,0x89,0x57,0xe0,0x12,0x79,0x3a,0xd0,0x13, + 0x69,0x39,0xe0,0x14,0x59,0x1c,0xd0,0x15,0x49,0x1b,0xe0,0x16,0x38,0xfe,0xd0,0x17, + 0x28,0xfd,0xe0,0x18,0x22,0x1b,0x50,0x19,0x8,0xdf,0xe0,0x1a,0x1,0xfd,0x50,0x1a, + 0xf1,0xfc,0x60,0x1b,0xe1,0xdf,0x50,0x1c,0xd1,0xde,0x60,0x1d,0xc1,0xc1,0x50,0x1e, + 0xb1,0xc0,0x60,0x1f,0xa1,0xa3,0x50,0x20,0x75,0xf2,0xe0,0x21,0x81,0x85,0x50,0x22, + 0x55,0xd4,0xe0,0x23,0x6a,0xa1,0xd0,0x24,0x35,0xb6,0xe0,0x25,0x4a,0x83,0xd0,0x26, + 0x15,0x98,0xe0,0x27,0x2a,0x65,0xd0,0x27,0xfe,0xb5,0x60,0x29,0xa,0x47,0xd0,0x29, + 0xde,0x97,0x60,0x2a,0xea,0x29,0xd0,0x2b,0xbe,0x79,0x60,0x2c,0xd3,0x46,0x50,0x2d, + 0x9e,0x5b,0x60,0x2e,0xb3,0x28,0x50,0x2f,0x7e,0x3d,0x60,0x30,0x93,0xa,0x50,0x31, + 0x67,0x59,0xe0,0x32,0x72,0xec,0x50,0x33,0x47,0x3b,0xe0,0x34,0x52,0xce,0x50,0x35, + 0x27,0x1d,0xe0,0x36,0x32,0xb0,0x50,0x37,0x6,0xff,0xe0,0x38,0x1b,0xcc,0xd0,0x38, + 0xe6,0xe1,0xe0,0x39,0xfb,0xae,0xd0,0x3a,0xc6,0xc3,0xe0,0x3b,0xdb,0x90,0xd0,0x3c, + 0xaf,0xe0,0x60,0x3d,0xbb,0x72,0xd0,0x3e,0x8f,0xc2,0x60,0x3f,0x9b,0x54,0xd0,0x40, + 0x6f,0xa4,0x60,0x41,0x84,0x71,0x50,0x42,0x4f,0x86,0x60,0x43,0x64,0x53,0x50,0x44, + 0x2f,0x68,0x60,0x45,0x44,0x35,0x50,0x45,0xf3,0x9a,0xe0,0x47,0x2d,0x51,0xd0,0x47, + 0xd3,0x7c,0xe0,0x49,0xd,0x33,0xd0,0x49,0xb3,0x5e,0xe0,0x4a,0xed,0x15,0xd0,0x4b, + 0x9c,0x7b,0x60,0x4c,0xd6,0x32,0x50,0x4d,0x7c,0x5d,0x60,0x4e,0xb6,0x14,0x50,0x4f, + 0x5c,0x3f,0x60,0x50,0x95,0xf6,0x50,0x51,0x3c,0x21,0x60,0x52,0x75,0xd8,0x50,0x53, + 0x1c,0x3,0x60,0x54,0x55,0xba,0x50,0x54,0xfb,0xe5,0x60,0x56,0x35,0x9c,0x50,0x56, + 0xe5,0x1,0xe0,0x58,0x1e,0xb8,0xd0,0x58,0xc4,0xe3,0xe0,0x59,0xfe,0x9a,0xd0,0x5a, + 0xa4,0xc5,0xe0,0x5b,0xde,0x7c,0xd0,0x5c,0x84,0xa7,0xe0,0x5d,0xbe,0x5e,0xd0,0x5e, + 0x64,0x89,0xe0,0x5f,0x9e,0x40,0xd0,0x60,0x4d,0xa6,0x60,0x61,0x87,0x5d,0x50,0x62, + 0x2d,0x88,0x60,0x63,0x67,0x3f,0x50,0x64,0xd,0x6a,0x60,0x65,0x47,0x21,0x50,0x65, + 0xed,0x4c,0x60,0x67,0x27,0x3,0x50,0x67,0xcd,0x2e,0x60,0x69,0x6,0xe5,0x50,0x69, + 0xad,0x10,0x60,0x6a,0xe6,0xc7,0x50,0x6b,0x96,0x2c,0xe0,0x6c,0xcf,0xe3,0xd0,0x6d, + 0x76,0xe,0xe0,0x6e,0xaf,0xc5,0xd0,0x6f,0x55,0xf0,0xe0,0x70,0x8f,0xa7,0xd0,0x71, + 0x35,0xd2,0xe0,0x72,0x6f,0x89,0xd0,0x73,0x15,0xb4,0xe0,0x74,0x4f,0x6b,0xd0,0x74, + 0xfe,0xd1,0x60,0x76,0x38,0x88,0x50,0x76,0xde,0xb3,0x60,0x78,0x18,0x6a,0x50,0x78, + 0xbe,0x95,0x60,0x79,0xf8,0x4c,0x50,0x7a,0x9e,0x77,0x60,0x7b,0xd8,0x2e,0x50,0x7c, + 0x7e,0x59,0x60,0x7d,0xb8,0x10,0x50,0x7e,0x5e,0x3b,0x60,0x7f,0x97,0xf2,0x50,0x0, 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0xff,0xff,0xe1,0x9c,0x0,0x0,0xff,0xff,0xf1,0xf0,0x1,0x4,0xff, - 0xff,0xe3,0xe0,0x0,0x9,0x4c,0x4d,0x54,0x0,0x46,0x4e,0x53,0x54,0x0,0x46,0x4e, - 0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3, - 0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x28,0x0,0x0,0x0,0x3, - 0x0,0x0,0x0,0xd,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff, - 0x96,0xaa,0x65,0x64,0xff,0xff,0xff,0xff,0xb8,0xf,0x3b,0xd0,0xff,0xff,0xff,0xff, - 0xb8,0xfd,0x32,0x90,0xff,0xff,0xff,0xff,0xb9,0xf1,0x26,0x20,0xff,0xff,0xff,0xff, - 0xba,0xde,0x66,0x10,0xff,0xff,0xff,0xff,0xda,0x38,0xa0,0x20,0xff,0xff,0xff,0xff, - 0xda,0xeb,0xec,0x20,0xff,0xff,0xff,0xff,0xdc,0x19,0xd3,0xa0,0xff,0xff,0xff,0xff, - 0xdc,0xb9,0x4b,0x10,0xff,0xff,0xff,0xff,0xdd,0xfb,0x7,0x20,0xff,0xff,0xff,0xff, - 0xde,0x9b,0xd0,0x10,0xff,0xff,0xff,0xff,0xdf,0xdd,0x8c,0x20,0xff,0xff,0xff,0xff, - 0xe0,0x54,0x25,0x10,0xff,0xff,0xff,0xff,0xf4,0x97,0xf1,0xa0,0xff,0xff,0xff,0xff, - 0xf5,0x5,0x50,0x10,0xff,0xff,0xff,0xff,0xf6,0xc0,0x56,0x20,0xff,0xff,0xff,0xff, - 0xf7,0xe,0x10,0x90,0xff,0xff,0xff,0xff,0xf8,0x51,0x1e,0x20,0xff,0xff,0xff,0xff, - 0xf8,0xc7,0xb7,0x10,0xff,0xff,0xff,0xff,0xfa,0xa,0xc4,0xa0,0xff,0xff,0xff,0xff, - 0xfa,0xa8,0xea,0x90,0xff,0xff,0xff,0xff,0xfb,0xeb,0xf8,0x20,0xff,0xff,0xff,0xff, - 0xfc,0x8b,0x6f,0x90,0x0,0x0,0x0,0x0,0x1d,0xc9,0x80,0x20,0x0,0x0,0x0,0x0, - 0x1e,0x78,0xc9,0x90,0x0,0x0,0x0,0x0,0x1f,0xa0,0x27,0xa0,0x0,0x0,0x0,0x0, - 0x20,0x33,0xc1,0x90,0x0,0x0,0x0,0x0,0x21,0x81,0x5b,0x20,0x0,0x0,0x0,0x0, - 0x22,0xb,0xba,0x90,0x0,0x0,0x0,0x0,0x23,0x58,0x2,0xa0,0x0,0x0,0x0,0x0, - 0x23,0xe2,0x62,0x10,0x0,0x0,0x0,0x0,0x25,0x37,0xe4,0xa0,0x0,0x0,0x0,0x0, - 0x25,0xd4,0xb9,0x10,0x0,0x0,0x0,0x0,0x37,0xf6,0xb8,0xa0,0x0,0x0,0x0,0x0, - 0x38,0xb8,0x77,0x10,0x0,0x0,0x0,0x0,0x39,0xdf,0xd5,0x20,0x0,0x0,0x0,0x0, - 0x39,0xe9,0x1,0x90,0x0,0x0,0x0,0x0,0x3b,0xc8,0xf1,0xa0,0x0,0x0,0x0,0x0, - 0x3c,0x6f,0x0,0x90,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0xe1,0x9c, - 0x0,0x0,0xff,0xff,0xf1,0xf0,0x1,0x4,0xff,0xff,0xe3,0xe0,0x0,0x9,0x4c,0x4d, - 0x54,0x0,0x46,0x4e,0x53,0x54,0x0,0x46,0x4e,0x54,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xa,0x46,0x4e,0x54,0x32,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Jamaica - 0x0,0x0,0x1,0xfb, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x16,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x10,0x80,0x0,0x0,0x0,0x93, - 0xf,0xb4,0xff,0x7,0x8d,0x19,0x70,0x9,0x10,0xa4,0x60,0x9,0xad,0x94,0xf0,0xa, - 0xf0,0x86,0x60,0xb,0xe0,0x85,0x70,0xc,0xd9,0xa2,0xe0,0xd,0xc0,0x67,0x70,0xe, - 0xb9,0x84,0xe0,0xf,0xa9,0x83,0xf0,0x10,0x99,0x66,0xe0,0x11,0x89,0x65,0xf0,0x12, - 0x79,0x48,0xe0,0x13,0x69,0x47,0xf0,0x14,0x59,0x2a,0xe0,0x15,0x49,0x29,0xf0,0x16, - 0x39,0xc,0xe0,0x17,0x29,0xb,0xf0,0x18,0x22,0x29,0x60,0x19,0x8,0xed,0xf0,0x1a, - 0x2,0xb,0x60,0x1,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0xff,0xff,0xb8,0x1,0x0,0x0,0xff, - 0xff,0xb8,0x1,0x0,0x4,0xff,0xff,0xb9,0xb0,0x0,0x8,0xff,0xff,0xc7,0xc0,0x1, - 0xc,0x4c,0x4d,0x54,0x0,0x4b,0x4d,0x54,0x0,0x45,0x53,0x54,0x0,0x45,0x44,0x54, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x17,0x0,0x0,0x0, - 0x4,0x0,0x0,0x0,0x10,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff, - 0xff,0x69,0x87,0x23,0x7f,0xff,0xff,0xff,0xff,0x93,0xf,0xb4,0xff,0x0,0x0,0x0, - 0x0,0x7,0x8d,0x19,0x70,0x0,0x0,0x0,0x0,0x9,0x10,0xa4,0x60,0x0,0x0,0x0, - 0x0,0x9,0xad,0x94,0xf0,0x0,0x0,0x0,0x0,0xa,0xf0,0x86,0x60,0x0,0x0,0x0, - 0x0,0xb,0xe0,0x85,0x70,0x0,0x0,0x0,0x0,0xc,0xd9,0xa2,0xe0,0x0,0x0,0x0, - 0x0,0xd,0xc0,0x67,0x70,0x0,0x0,0x0,0x0,0xe,0xb9,0x84,0xe0,0x0,0x0,0x0, - 0x0,0xf,0xa9,0x83,0xf0,0x0,0x0,0x0,0x0,0x10,0x99,0x66,0xe0,0x0,0x0,0x0, - 0x0,0x11,0x89,0x65,0xf0,0x0,0x0,0x0,0x0,0x12,0x79,0x48,0xe0,0x0,0x0,0x0, - 0x0,0x13,0x69,0x47,0xf0,0x0,0x0,0x0,0x0,0x14,0x59,0x2a,0xe0,0x0,0x0,0x0, - 0x0,0x15,0x49,0x29,0xf0,0x0,0x0,0x0,0x0,0x16,0x39,0xc,0xe0,0x0,0x0,0x0, - 0x0,0x17,0x29,0xb,0xf0,0x0,0x0,0x0,0x0,0x18,0x22,0x29,0x60,0x0,0x0,0x0, - 0x0,0x19,0x8,0xed,0xf0,0x0,0x0,0x0,0x0,0x1a,0x2,0xb,0x60,0x0,0x1,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0xff,0xff,0xb8,0x1,0x0,0x0,0xff,0xff,0xb8,0x1,0x0,0x4, - 0xff,0xff,0xb9,0xb0,0x0,0x8,0xff,0xff,0xc7,0xc0,0x1,0xc,0x4c,0x4d,0x54,0x0, - 0x4b,0x4d,0x54,0x0,0x45,0x53,0x54,0x0,0x45,0x44,0x54,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0xa,0x45,0x53,0x54,0x35,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Thunder_Bay - 0x0,0x0,0x8,0xa3, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x8b,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x80,0x0,0x0,0x0,0x8f, - 0x24,0x7b,0xe0,0xcb,0x88,0xf0,0x70,0xd2,0x23,0xf4,0x70,0xd2,0x60,0xfb,0xe0,0x0, - 0x97,0xfe,0xf0,0x1,0x87,0xe1,0xe0,0x2,0x77,0xe0,0xf0,0x3,0x70,0xfe,0x60,0x4, - 0x60,0xfd,0x70,0x5,0x50,0xe0,0x60,0x8,0x20,0xc1,0x70,0x9,0x10,0xa4,0x60,0xa, - 0x0,0xa3,0x70,0xa,0xf0,0x86,0x60,0xb,0xe0,0x85,0x70,0xc,0xd9,0xa2,0xe0,0xd, - 0xc0,0x67,0x70,0xe,0xb9,0x84,0xe0,0xf,0xa9,0x83,0xf0,0x10,0x99,0x66,0xe0,0x11, - 0x89,0x65,0xf0,0x12,0x79,0x48,0xe0,0x13,0x69,0x47,0xf0,0x14,0x59,0x2a,0xe0,0x15, - 0x49,0x29,0xf0,0x16,0x39,0xc,0xe0,0x17,0x29,0xb,0xf0,0x18,0x22,0x29,0x60,0x19, - 0x8,0xed,0xf0,0x1a,0x2,0xb,0x60,0x1a,0xf2,0xa,0x70,0x1b,0xe1,0xed,0x60,0x1c, - 0xd1,0xec,0x70,0x1d,0xc1,0xcf,0x60,0x1e,0xb1,0xce,0x70,0x1f,0xa1,0xb1,0x60,0x20, - 0x76,0x0,0xf0,0x21,0x81,0x93,0x60,0x22,0x55,0xe2,0xf0,0x23,0x6a,0xaf,0xe0,0x24, - 0x35,0xc4,0xf0,0x25,0x4a,0x91,0xe0,0x26,0x15,0xa6,0xf0,0x27,0x2a,0x73,0xe0,0x27, - 0xfe,0xc3,0x70,0x29,0xa,0x55,0xe0,0x29,0xde,0xa5,0x70,0x2a,0xea,0x37,0xe0,0x2b, - 0xbe,0x87,0x70,0x2c,0xd3,0x54,0x60,0x2d,0x9e,0x69,0x70,0x2e,0xb3,0x36,0x60,0x2f, - 0x7e,0x4b,0x70,0x30,0x93,0x18,0x60,0x31,0x67,0x67,0xf0,0x32,0x72,0xfa,0x60,0x33, - 0x47,0x49,0xf0,0x34,0x52,0xdc,0x60,0x35,0x27,0x2b,0xf0,0x36,0x32,0xbe,0x60,0x37, - 0x7,0xd,0xf0,0x38,0x1b,0xda,0xe0,0x38,0xe6,0xef,0xf0,0x39,0xfb,0xbc,0xe0,0x3a, - 0xc6,0xd1,0xf0,0x3b,0xdb,0x9e,0xe0,0x3c,0xaf,0xee,0x70,0x3d,0xbb,0x80,0xe0,0x3e, - 0x8f,0xd0,0x70,0x3f,0x9b,0x62,0xe0,0x40,0x6f,0xb2,0x70,0x41,0x84,0x7f,0x60,0x42, - 0x4f,0x94,0x70,0x43,0x64,0x61,0x60,0x44,0x2f,0x76,0x70,0x45,0x44,0x43,0x60,0x45, - 0xf3,0xa8,0xf0,0x47,0x2d,0x5f,0xe0,0x47,0xd3,0x8a,0xf0,0x49,0xd,0x41,0xe0,0x49, - 0xb3,0x6c,0xf0,0x4a,0xed,0x23,0xe0,0x4b,0x9c,0x89,0x70,0x4c,0xd6,0x40,0x60,0x4d, - 0x7c,0x6b,0x70,0x4e,0xb6,0x22,0x60,0x4f,0x5c,0x4d,0x70,0x50,0x96,0x4,0x60,0x51, - 0x3c,0x2f,0x70,0x52,0x75,0xe6,0x60,0x53,0x1c,0x11,0x70,0x54,0x55,0xc8,0x60,0x54, - 0xfb,0xf3,0x70,0x56,0x35,0xaa,0x60,0x56,0xe5,0xf,0xf0,0x58,0x1e,0xc6,0xe0,0x58, - 0xc4,0xf1,0xf0,0x59,0xfe,0xa8,0xe0,0x5a,0xa4,0xd3,0xf0,0x5b,0xde,0x8a,0xe0,0x5c, - 0x84,0xb5,0xf0,0x5d,0xbe,0x6c,0xe0,0x5e,0x64,0x97,0xf0,0x5f,0x9e,0x4e,0xe0,0x60, - 0x4d,0xb4,0x70,0x61,0x87,0x6b,0x60,0x62,0x2d,0x96,0x70,0x63,0x67,0x4d,0x60,0x64, - 0xd,0x78,0x70,0x65,0x47,0x2f,0x60,0x65,0xed,0x5a,0x70,0x67,0x27,0x11,0x60,0x67, - 0xcd,0x3c,0x70,0x69,0x6,0xf3,0x60,0x69,0xad,0x1e,0x70,0x6a,0xe6,0xd5,0x60,0x6b, - 0x96,0x3a,0xf0,0x6c,0xcf,0xf1,0xe0,0x6d,0x76,0x1c,0xf0,0x6e,0xaf,0xd3,0xe0,0x6f, - 0x55,0xfe,0xf0,0x70,0x8f,0xb5,0xe0,0x71,0x35,0xe0,0xf0,0x72,0x6f,0x97,0xe0,0x73, - 0x15,0xc2,0xf0,0x74,0x4f,0x79,0xe0,0x74,0xfe,0xdf,0x70,0x76,0x38,0x96,0x60,0x76, - 0xde,0xc1,0x70,0x78,0x18,0x78,0x60,0x78,0xbe,0xa3,0x70,0x79,0xf8,0x5a,0x60,0x7a, - 0x9e,0x85,0x70,0x7b,0xd8,0x3c,0x60,0x7c,0x7e,0x67,0x70,0x7d,0xb8,0x1e,0x60,0x7e, - 0x5e,0x49,0x70,0x7f,0x98,0x0,0x60,0x1,0x2,0x3,0x4,0x2,0x5,0x2,0x5,0x2, - 0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2, - 0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2, - 0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2, - 0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2, - 0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2, - 0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2, - 0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2, - 0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2, - 0x5,0x2,0xff,0xff,0xac,0x54,0x0,0x0,0xff,0xff,0xab,0xa0,0x0,0x4,0xff,0xff, - 0xb9,0xb0,0x0,0x8,0xff,0xff,0xc7,0xc0,0x1,0xc,0xff,0xff,0xc7,0xc0,0x1,0x10, - 0xff,0xff,0xc7,0xc0,0x1,0x14,0x4c,0x4d,0x54,0x0,0x43,0x53,0x54,0x0,0x45,0x53, - 0x54,0x0,0x45,0x57,0x54,0x0,0x45,0x50,0x54,0x0,0x45,0x44,0x54,0x0,0x0,0x0, - 0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x54,0x5a,0x69,0x66,0x32,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8c,0x0,0x0, - 0x0,0x6,0x0,0x0,0x0,0x18,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff, - 0xff,0xff,0x72,0xee,0x82,0x2c,0xff,0xff,0xff,0xff,0x8f,0x24,0x7b,0xe0,0xff,0xff, - 0xff,0xff,0xcb,0x88,0xf0,0x70,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff, - 0xff,0xff,0xd2,0x60,0xfb,0xe0,0x0,0x0,0x0,0x0,0x0,0x97,0xfe,0xf0,0x0,0x0, - 0x0,0x0,0x1,0x87,0xe1,0xe0,0x0,0x0,0x0,0x0,0x2,0x77,0xe0,0xf0,0x0,0x0, - 0x0,0x0,0x3,0x70,0xfe,0x60,0x0,0x0,0x0,0x0,0x4,0x60,0xfd,0x70,0x0,0x0, - 0x0,0x0,0x5,0x50,0xe0,0x60,0x0,0x0,0x0,0x0,0x8,0x20,0xc1,0x70,0x0,0x0, - 0x0,0x0,0x9,0x10,0xa4,0x60,0x0,0x0,0x0,0x0,0xa,0x0,0xa3,0x70,0x0,0x0, - 0x0,0x0,0xa,0xf0,0x86,0x60,0x0,0x0,0x0,0x0,0xb,0xe0,0x85,0x70,0x0,0x0, - 0x0,0x0,0xc,0xd9,0xa2,0xe0,0x0,0x0,0x0,0x0,0xd,0xc0,0x67,0x70,0x0,0x0, - 0x0,0x0,0xe,0xb9,0x84,0xe0,0x0,0x0,0x0,0x0,0xf,0xa9,0x83,0xf0,0x0,0x0, - 0x0,0x0,0x10,0x99,0x66,0xe0,0x0,0x0,0x0,0x0,0x11,0x89,0x65,0xf0,0x0,0x0, - 0x0,0x0,0x12,0x79,0x48,0xe0,0x0,0x0,0x0,0x0,0x13,0x69,0x47,0xf0,0x0,0x0, - 0x0,0x0,0x14,0x59,0x2a,0xe0,0x0,0x0,0x0,0x0,0x15,0x49,0x29,0xf0,0x0,0x0, - 0x0,0x0,0x16,0x39,0xc,0xe0,0x0,0x0,0x0,0x0,0x17,0x29,0xb,0xf0,0x0,0x0, - 0x0,0x0,0x18,0x22,0x29,0x60,0x0,0x0,0x0,0x0,0x19,0x8,0xed,0xf0,0x0,0x0, - 0x0,0x0,0x1a,0x2,0xb,0x60,0x0,0x0,0x0,0x0,0x1a,0xf2,0xa,0x70,0x0,0x0, - 0x0,0x0,0x1b,0xe1,0xed,0x60,0x0,0x0,0x0,0x0,0x1c,0xd1,0xec,0x70,0x0,0x0, - 0x0,0x0,0x1d,0xc1,0xcf,0x60,0x0,0x0,0x0,0x0,0x1e,0xb1,0xce,0x70,0x0,0x0, - 0x0,0x0,0x1f,0xa1,0xb1,0x60,0x0,0x0,0x0,0x0,0x20,0x76,0x0,0xf0,0x0,0x0, - 0x0,0x0,0x21,0x81,0x93,0x60,0x0,0x0,0x0,0x0,0x22,0x55,0xe2,0xf0,0x0,0x0, - 0x0,0x0,0x23,0x6a,0xaf,0xe0,0x0,0x0,0x0,0x0,0x24,0x35,0xc4,0xf0,0x0,0x0, - 0x0,0x0,0x25,0x4a,0x91,0xe0,0x0,0x0,0x0,0x0,0x26,0x15,0xa6,0xf0,0x0,0x0, - 0x0,0x0,0x27,0x2a,0x73,0xe0,0x0,0x0,0x0,0x0,0x27,0xfe,0xc3,0x70,0x0,0x0, - 0x0,0x0,0x29,0xa,0x55,0xe0,0x0,0x0,0x0,0x0,0x29,0xde,0xa5,0x70,0x0,0x0, - 0x0,0x0,0x2a,0xea,0x37,0xe0,0x0,0x0,0x0,0x0,0x2b,0xbe,0x87,0x70,0x0,0x0, - 0x0,0x0,0x2c,0xd3,0x54,0x60,0x0,0x0,0x0,0x0,0x2d,0x9e,0x69,0x70,0x0,0x0, - 0x0,0x0,0x2e,0xb3,0x36,0x60,0x0,0x0,0x0,0x0,0x2f,0x7e,0x4b,0x70,0x0,0x0, - 0x0,0x0,0x30,0x93,0x18,0x60,0x0,0x0,0x0,0x0,0x31,0x67,0x67,0xf0,0x0,0x0, - 0x0,0x0,0x32,0x72,0xfa,0x60,0x0,0x0,0x0,0x0,0x33,0x47,0x49,0xf0,0x0,0x0, - 0x0,0x0,0x34,0x52,0xdc,0x60,0x0,0x0,0x0,0x0,0x35,0x27,0x2b,0xf0,0x0,0x0, - 0x0,0x0,0x36,0x32,0xbe,0x60,0x0,0x0,0x0,0x0,0x37,0x7,0xd,0xf0,0x0,0x0, - 0x0,0x0,0x38,0x1b,0xda,0xe0,0x0,0x0,0x0,0x0,0x38,0xe6,0xef,0xf0,0x0,0x0, - 0x0,0x0,0x39,0xfb,0xbc,0xe0,0x0,0x0,0x0,0x0,0x3a,0xc6,0xd1,0xf0,0x0,0x0, - 0x0,0x0,0x3b,0xdb,0x9e,0xe0,0x0,0x0,0x0,0x0,0x3c,0xaf,0xee,0x70,0x0,0x0, - 0x0,0x0,0x3d,0xbb,0x80,0xe0,0x0,0x0,0x0,0x0,0x3e,0x8f,0xd0,0x70,0x0,0x0, - 0x0,0x0,0x3f,0x9b,0x62,0xe0,0x0,0x0,0x0,0x0,0x40,0x6f,0xb2,0x70,0x0,0x0, - 0x0,0x0,0x41,0x84,0x7f,0x60,0x0,0x0,0x0,0x0,0x42,0x4f,0x94,0x70,0x0,0x0, - 0x0,0x0,0x43,0x64,0x61,0x60,0x0,0x0,0x0,0x0,0x44,0x2f,0x76,0x70,0x0,0x0, - 0x0,0x0,0x45,0x44,0x43,0x60,0x0,0x0,0x0,0x0,0x45,0xf3,0xa8,0xf0,0x0,0x0, - 0x0,0x0,0x47,0x2d,0x5f,0xe0,0x0,0x0,0x0,0x0,0x47,0xd3,0x8a,0xf0,0x0,0x0, - 0x0,0x0,0x49,0xd,0x41,0xe0,0x0,0x0,0x0,0x0,0x49,0xb3,0x6c,0xf0,0x0,0x0, - 0x0,0x0,0x4a,0xed,0x23,0xe0,0x0,0x0,0x0,0x0,0x4b,0x9c,0x89,0x70,0x0,0x0, - 0x0,0x0,0x4c,0xd6,0x40,0x60,0x0,0x0,0x0,0x0,0x4d,0x7c,0x6b,0x70,0x0,0x0, - 0x0,0x0,0x4e,0xb6,0x22,0x60,0x0,0x0,0x0,0x0,0x4f,0x5c,0x4d,0x70,0x0,0x0, - 0x0,0x0,0x50,0x96,0x4,0x60,0x0,0x0,0x0,0x0,0x51,0x3c,0x2f,0x70,0x0,0x0, - 0x0,0x0,0x52,0x75,0xe6,0x60,0x0,0x0,0x0,0x0,0x53,0x1c,0x11,0x70,0x0,0x0, - 0x0,0x0,0x54,0x55,0xc8,0x60,0x0,0x0,0x0,0x0,0x54,0xfb,0xf3,0x70,0x0,0x0, - 0x0,0x0,0x56,0x35,0xaa,0x60,0x0,0x0,0x0,0x0,0x56,0xe5,0xf,0xf0,0x0,0x0, - 0x0,0x0,0x58,0x1e,0xc6,0xe0,0x0,0x0,0x0,0x0,0x58,0xc4,0xf1,0xf0,0x0,0x0, - 0x0,0x0,0x59,0xfe,0xa8,0xe0,0x0,0x0,0x0,0x0,0x5a,0xa4,0xd3,0xf0,0x0,0x0, - 0x0,0x0,0x5b,0xde,0x8a,0xe0,0x0,0x0,0x0,0x0,0x5c,0x84,0xb5,0xf0,0x0,0x0, - 0x0,0x0,0x5d,0xbe,0x6c,0xe0,0x0,0x0,0x0,0x0,0x5e,0x64,0x97,0xf0,0x0,0x0, - 0x0,0x0,0x5f,0x9e,0x4e,0xe0,0x0,0x0,0x0,0x0,0x60,0x4d,0xb4,0x70,0x0,0x0, - 0x0,0x0,0x61,0x87,0x6b,0x60,0x0,0x0,0x0,0x0,0x62,0x2d,0x96,0x70,0x0,0x0, - 0x0,0x0,0x63,0x67,0x4d,0x60,0x0,0x0,0x0,0x0,0x64,0xd,0x78,0x70,0x0,0x0, - 0x0,0x0,0x65,0x47,0x2f,0x60,0x0,0x0,0x0,0x0,0x65,0xed,0x5a,0x70,0x0,0x0, - 0x0,0x0,0x67,0x27,0x11,0x60,0x0,0x0,0x0,0x0,0x67,0xcd,0x3c,0x70,0x0,0x0, - 0x0,0x0,0x69,0x6,0xf3,0x60,0x0,0x0,0x0,0x0,0x69,0xad,0x1e,0x70,0x0,0x0, - 0x0,0x0,0x6a,0xe6,0xd5,0x60,0x0,0x0,0x0,0x0,0x6b,0x96,0x3a,0xf0,0x0,0x0, - 0x0,0x0,0x6c,0xcf,0xf1,0xe0,0x0,0x0,0x0,0x0,0x6d,0x76,0x1c,0xf0,0x0,0x0, - 0x0,0x0,0x6e,0xaf,0xd3,0xe0,0x0,0x0,0x0,0x0,0x6f,0x55,0xfe,0xf0,0x0,0x0, - 0x0,0x0,0x70,0x8f,0xb5,0xe0,0x0,0x0,0x0,0x0,0x71,0x35,0xe0,0xf0,0x0,0x0, - 0x0,0x0,0x72,0x6f,0x97,0xe0,0x0,0x0,0x0,0x0,0x73,0x15,0xc2,0xf0,0x0,0x0, - 0x0,0x0,0x74,0x4f,0x79,0xe0,0x0,0x0,0x0,0x0,0x74,0xfe,0xdf,0x70,0x0,0x0, - 0x0,0x0,0x76,0x38,0x96,0x60,0x0,0x0,0x0,0x0,0x76,0xde,0xc1,0x70,0x0,0x0, - 0x0,0x0,0x78,0x18,0x78,0x60,0x0,0x0,0x0,0x0,0x78,0xbe,0xa3,0x70,0x0,0x0, - 0x0,0x0,0x79,0xf8,0x5a,0x60,0x0,0x0,0x0,0x0,0x7a,0x9e,0x85,0x70,0x0,0x0, - 0x0,0x0,0x7b,0xd8,0x3c,0x60,0x0,0x0,0x0,0x0,0x7c,0x7e,0x67,0x70,0x0,0x0, - 0x0,0x0,0x7d,0xb8,0x1e,0x60,0x0,0x0,0x0,0x0,0x7e,0x5e,0x49,0x70,0x0,0x0, - 0x0,0x0,0x7f,0x98,0x0,0x60,0x0,0x1,0x2,0x3,0x4,0x2,0x5,0x2,0x5,0x2, - 0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2, - 0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2, - 0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2, - 0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2, - 0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2, - 0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2, - 0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2, - 0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2, - 0x5,0x2,0xff,0xff,0xac,0x54,0x0,0x0,0xff,0xff,0xab,0xa0,0x0,0x4,0xff,0xff, - 0xb9,0xb0,0x0,0x8,0xff,0xff,0xc7,0xc0,0x1,0xc,0xff,0xff,0xc7,0xc0,0x1,0x10, - 0xff,0xff,0xc7,0xc0,0x1,0x14,0x4c,0x4d,0x54,0x0,0x43,0x53,0x54,0x0,0x45,0x53, - 0x54,0x0,0x45,0x57,0x54,0x0,0x45,0x50,0x54,0x0,0x45,0x44,0x54,0x0,0x0,0x0, - 0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0x45,0x53,0x54,0x35,0x45, - 0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e, - 0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Anguilla + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x3,0x4,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0xff,0xff,0xc4,0x60,0x0,0x0,0xff,0xff,0xd5,0xd0,0x1,0x4, + 0xff,0xff,0xc7,0xc0,0x0,0x8,0xff,0xff,0xd5,0xd0,0x1,0xc,0xff,0xff,0xd5,0xd0, + 0x1,0x10,0x4c,0x4d,0x54,0x0,0x41,0x44,0x54,0x0,0x41,0x53,0x54,0x0,0x41,0x57, + 0x54,0x0,0x41,0x50,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x1, + 0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0xe5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0xf8,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x80,0xf1,0xab,0xa0,0xff,0xff,0xff,0xff, + 0x9a,0xe4,0xde,0xc0,0xff,0xff,0xff,0xff,0x9b,0xd6,0x13,0x30,0xff,0xff,0xff,0xff, + 0x9e,0xb8,0x85,0x60,0xff,0xff,0xff,0xff,0x9f,0xba,0xdd,0x50,0xff,0xff,0xff,0xff, + 0xa2,0x9d,0x17,0x40,0xff,0xff,0xff,0xff,0xa3,0x30,0xb1,0x30,0xff,0xff,0xff,0xff, + 0xa4,0x7a,0x56,0x40,0xff,0xff,0xff,0xff,0xa5,0x1b,0x1f,0x30,0xff,0xff,0xff,0xff, + 0xa6,0x53,0xa0,0xc0,0xff,0xff,0xff,0xff,0xa6,0xfc,0x52,0xb0,0xff,0xff,0xff,0xff, + 0xa8,0x3c,0xbd,0x40,0xff,0xff,0xff,0xff,0xa8,0xdc,0x34,0xb0,0xff,0xff,0xff,0xff, + 0xaa,0x1c,0x9f,0x40,0xff,0xff,0xff,0xff,0xaa,0xcd,0x3a,0x30,0xff,0xff,0xff,0xff, + 0xab,0xfc,0x81,0x40,0xff,0xff,0xff,0xff,0xac,0xbf,0x91,0x30,0xff,0xff,0xff,0xff, + 0xad,0xee,0xd8,0x40,0xff,0xff,0xff,0xff,0xae,0x8c,0xfe,0x30,0xff,0xff,0xff,0xff, + 0xaf,0xbc,0x45,0x40,0xff,0xff,0xff,0xff,0xb0,0x7f,0x55,0x30,0xff,0xff,0xff,0xff, + 0xb1,0xae,0x9c,0x40,0xff,0xff,0xff,0xff,0xb2,0x4b,0x70,0xb0,0xff,0xff,0xff,0xff, + 0xb3,0x8e,0x7e,0x40,0xff,0xff,0xff,0xff,0xb4,0x24,0xbb,0x30,0xff,0xff,0xff,0xff, + 0xb5,0x6e,0x60,0x40,0xff,0xff,0xff,0xff,0xb6,0x15,0xc0,0xb0,0xff,0xff,0xff,0xff, + 0xb7,0x4e,0x42,0x40,0xff,0xff,0xff,0xff,0xb8,0x8,0x17,0xb0,0xff,0xff,0xff,0xff, + 0xb9,0x24,0xe9,0xc0,0xff,0xff,0xff,0xff,0xb9,0xe7,0xf9,0xb0,0xff,0xff,0xff,0xff, + 0xbb,0x4,0xcb,0xc0,0xff,0xff,0xff,0xff,0xbb,0xd1,0x16,0x30,0xff,0xff,0xff,0xff, + 0xbd,0x0,0x5d,0x40,0xff,0xff,0xff,0xff,0xbd,0x9d,0x31,0xb0,0xff,0xff,0xff,0xff, + 0xbe,0xf2,0xb4,0x40,0xff,0xff,0xff,0xff,0xbf,0x90,0xda,0x30,0xff,0xff,0xff,0xff, + 0xc0,0xd3,0xe7,0xc0,0xff,0xff,0xff,0xff,0xc1,0x5e,0x47,0x30,0xff,0xff,0xff,0xff, + 0xc2,0x8d,0x8e,0x40,0xff,0xff,0xff,0xff,0xc3,0x50,0x9e,0x30,0xff,0xff,0xff,0xff, + 0xc4,0x6d,0x70,0x40,0xff,0xff,0xff,0xff,0xc5,0x30,0x80,0x30,0xff,0xff,0xff,0xff, + 0xc6,0x72,0x3c,0x40,0xff,0xff,0xff,0xff,0xc7,0x10,0x62,0x30,0xff,0xff,0xff,0xff, + 0xc8,0x36,0x6e,0xc0,0xff,0xff,0xff,0xff,0xc8,0xf9,0x7e,0xb0,0xff,0xff,0xff,0xff, + 0xca,0x16,0x50,0xc0,0xff,0xff,0xff,0xff,0xca,0xd9,0x60,0xb0,0xff,0xff,0xff,0xff, + 0xcb,0x88,0xe2,0x60,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff, + 0xd2,0x60,0xed,0xd0,0xff,0xff,0xff,0xff,0xd3,0x75,0xd6,0xe0,0xff,0xff,0xff,0xff, + 0xd4,0x40,0xcf,0xd0,0xff,0xff,0xff,0xff,0xd5,0x55,0xb8,0xe0,0xff,0xff,0xff,0xff, + 0xd6,0x20,0xb1,0xd0,0xff,0xff,0xff,0xff,0xd7,0x35,0x9a,0xe0,0xff,0xff,0xff,0xff, + 0xd8,0x0,0x93,0xd0,0xff,0xff,0xff,0xff,0xd9,0x15,0x7c,0xe0,0xff,0xff,0xff,0xff, + 0xd9,0xe0,0x75,0xd0,0xff,0xff,0xff,0xff,0xdc,0xde,0x7b,0x60,0xff,0xff,0xff,0xff, + 0xdd,0xa9,0x74,0x50,0xff,0xff,0xff,0xff,0xde,0xbe,0x5d,0x60,0xff,0xff,0xff,0xff, + 0xdf,0x89,0x56,0x50,0xff,0xff,0xff,0xff,0xe0,0x9e,0x3f,0x60,0xff,0xff,0xff,0xff, + 0xe1,0x69,0x38,0x50,0xff,0xff,0xff,0xff,0xe2,0x7e,0x21,0x60,0xff,0xff,0xff,0xff, + 0xe3,0x49,0x1a,0x50,0xff,0xff,0xff,0xff,0xe6,0x47,0x1f,0xe0,0xff,0xff,0xff,0xff, + 0xe7,0x12,0x18,0xd0,0xff,0xff,0xff,0xff,0xe8,0x27,0x1,0xe0,0xff,0xff,0xff,0xff, + 0xe8,0xf1,0xfa,0xd0,0xff,0xff,0xff,0xff,0xea,0x6,0xe3,0xe0,0xff,0xff,0xff,0xff, + 0xea,0xd1,0xdc,0xd0,0xff,0xff,0xff,0xff,0xeb,0xe6,0xc5,0xe0,0xff,0xff,0xff,0xff, + 0xec,0xb1,0xbe,0xd0,0xff,0xff,0xff,0xff,0xf1,0x8f,0xa6,0x60,0xff,0xff,0xff,0xff, + 0xf2,0x7f,0x89,0x50,0xff,0xff,0xff,0xff,0xf3,0x6f,0x88,0x60,0xff,0xff,0xff,0xff, + 0xf4,0x5f,0x6b,0x50,0xff,0xff,0xff,0xff,0xf5,0x4f,0x6a,0x60,0xff,0xff,0xff,0xff, + 0xf6,0x3f,0x4d,0x50,0xff,0xff,0xff,0xff,0xf7,0x2f,0x4c,0x60,0xff,0xff,0xff,0xff, + 0xf8,0x28,0x69,0xd0,0xff,0xff,0xff,0xff,0xf9,0xf,0x2e,0x60,0xff,0xff,0xff,0xff, + 0xfa,0x8,0x4b,0xd0,0xff,0xff,0xff,0xff,0xfa,0xf8,0x4a,0xe0,0xff,0xff,0xff,0xff, + 0xfb,0xe8,0x2d,0xd0,0xff,0xff,0xff,0xff,0xfc,0xd8,0x2c,0xe0,0xff,0xff,0xff,0xff, + 0xfd,0xc8,0xf,0xd0,0xff,0xff,0xff,0xff,0xfe,0xb8,0xe,0xe0,0xff,0xff,0xff,0xff, + 0xff,0xa7,0xf1,0xd0,0x0,0x0,0x0,0x0,0x0,0x97,0xf0,0xe0,0x0,0x0,0x0,0x0, + 0x1,0x87,0xd3,0xd0,0x0,0x0,0x0,0x0,0x2,0x77,0xd2,0xe0,0x0,0x0,0x0,0x0, + 0x3,0x70,0xf0,0x50,0x0,0x0,0x0,0x0,0x4,0x60,0xef,0x60,0x0,0x0,0x0,0x0, + 0x5,0x50,0xd2,0x50,0x0,0x0,0x0,0x0,0x6,0x40,0xd1,0x60,0x0,0x0,0x0,0x0, + 0x7,0x30,0xb4,0x50,0x0,0x0,0x0,0x0,0x8,0x20,0xb3,0x60,0x0,0x0,0x0,0x0, + 0x9,0x10,0x96,0x50,0x0,0x0,0x0,0x0,0xa,0x0,0x95,0x60,0x0,0x0,0x0,0x0, + 0xa,0xf0,0x78,0x50,0x0,0x0,0x0,0x0,0xb,0xe0,0x77,0x60,0x0,0x0,0x0,0x0, + 0xc,0xd9,0x94,0xd0,0x0,0x0,0x0,0x0,0xd,0xc0,0x59,0x60,0x0,0x0,0x0,0x0, + 0xe,0xb9,0x76,0xd0,0x0,0x0,0x0,0x0,0xf,0xa9,0x75,0xe0,0x0,0x0,0x0,0x0, + 0x10,0x99,0x58,0xd0,0x0,0x0,0x0,0x0,0x11,0x89,0x57,0xe0,0x0,0x0,0x0,0x0, + 0x12,0x79,0x3a,0xd0,0x0,0x0,0x0,0x0,0x13,0x69,0x39,0xe0,0x0,0x0,0x0,0x0, + 0x14,0x59,0x1c,0xd0,0x0,0x0,0x0,0x0,0x15,0x49,0x1b,0xe0,0x0,0x0,0x0,0x0, + 0x16,0x38,0xfe,0xd0,0x0,0x0,0x0,0x0,0x17,0x28,0xfd,0xe0,0x0,0x0,0x0,0x0, + 0x18,0x22,0x1b,0x50,0x0,0x0,0x0,0x0,0x19,0x8,0xdf,0xe0,0x0,0x0,0x0,0x0, + 0x1a,0x1,0xfd,0x50,0x0,0x0,0x0,0x0,0x1a,0xf1,0xfc,0x60,0x0,0x0,0x0,0x0, + 0x1b,0xe1,0xdf,0x50,0x0,0x0,0x0,0x0,0x1c,0xd1,0xde,0x60,0x0,0x0,0x0,0x0, + 0x1d,0xc1,0xc1,0x50,0x0,0x0,0x0,0x0,0x1e,0xb1,0xc0,0x60,0x0,0x0,0x0,0x0, + 0x1f,0xa1,0xa3,0x50,0x0,0x0,0x0,0x0,0x20,0x75,0xf2,0xe0,0x0,0x0,0x0,0x0, + 0x21,0x81,0x85,0x50,0x0,0x0,0x0,0x0,0x22,0x55,0xd4,0xe0,0x0,0x0,0x0,0x0, + 0x23,0x6a,0xa1,0xd0,0x0,0x0,0x0,0x0,0x24,0x35,0xb6,0xe0,0x0,0x0,0x0,0x0, + 0x25,0x4a,0x83,0xd0,0x0,0x0,0x0,0x0,0x26,0x15,0x98,0xe0,0x0,0x0,0x0,0x0, + 0x27,0x2a,0x65,0xd0,0x0,0x0,0x0,0x0,0x27,0xfe,0xb5,0x60,0x0,0x0,0x0,0x0, + 0x29,0xa,0x47,0xd0,0x0,0x0,0x0,0x0,0x29,0xde,0x97,0x60,0x0,0x0,0x0,0x0, + 0x2a,0xea,0x29,0xd0,0x0,0x0,0x0,0x0,0x2b,0xbe,0x79,0x60,0x0,0x0,0x0,0x0, + 0x2c,0xd3,0x46,0x50,0x0,0x0,0x0,0x0,0x2d,0x9e,0x5b,0x60,0x0,0x0,0x0,0x0, + 0x2e,0xb3,0x28,0x50,0x0,0x0,0x0,0x0,0x2f,0x7e,0x3d,0x60,0x0,0x0,0x0,0x0, + 0x30,0x93,0xa,0x50,0x0,0x0,0x0,0x0,0x31,0x67,0x59,0xe0,0x0,0x0,0x0,0x0, + 0x32,0x72,0xec,0x50,0x0,0x0,0x0,0x0,0x33,0x47,0x3b,0xe0,0x0,0x0,0x0,0x0, + 0x34,0x52,0xce,0x50,0x0,0x0,0x0,0x0,0x35,0x27,0x1d,0xe0,0x0,0x0,0x0,0x0, + 0x36,0x32,0xb0,0x50,0x0,0x0,0x0,0x0,0x37,0x6,0xff,0xe0,0x0,0x0,0x0,0x0, + 0x38,0x1b,0xcc,0xd0,0x0,0x0,0x0,0x0,0x38,0xe6,0xe1,0xe0,0x0,0x0,0x0,0x0, + 0x39,0xfb,0xae,0xd0,0x0,0x0,0x0,0x0,0x3a,0xc6,0xc3,0xe0,0x0,0x0,0x0,0x0, + 0x3b,0xdb,0x90,0xd0,0x0,0x0,0x0,0x0,0x3c,0xaf,0xe0,0x60,0x0,0x0,0x0,0x0, + 0x3d,0xbb,0x72,0xd0,0x0,0x0,0x0,0x0,0x3e,0x8f,0xc2,0x60,0x0,0x0,0x0,0x0, + 0x3f,0x9b,0x54,0xd0,0x0,0x0,0x0,0x0,0x40,0x6f,0xa4,0x60,0x0,0x0,0x0,0x0, + 0x41,0x84,0x71,0x50,0x0,0x0,0x0,0x0,0x42,0x4f,0x86,0x60,0x0,0x0,0x0,0x0, + 0x43,0x64,0x53,0x50,0x0,0x0,0x0,0x0,0x44,0x2f,0x68,0x60,0x0,0x0,0x0,0x0, + 0x45,0x44,0x35,0x50,0x0,0x0,0x0,0x0,0x45,0xf3,0x9a,0xe0,0x0,0x0,0x0,0x0, + 0x47,0x2d,0x51,0xd0,0x0,0x0,0x0,0x0,0x47,0xd3,0x7c,0xe0,0x0,0x0,0x0,0x0, + 0x49,0xd,0x33,0xd0,0x0,0x0,0x0,0x0,0x49,0xb3,0x5e,0xe0,0x0,0x0,0x0,0x0, + 0x4a,0xed,0x15,0xd0,0x0,0x0,0x0,0x0,0x4b,0x9c,0x7b,0x60,0x0,0x0,0x0,0x0, + 0x4c,0xd6,0x32,0x50,0x0,0x0,0x0,0x0,0x4d,0x7c,0x5d,0x60,0x0,0x0,0x0,0x0, + 0x4e,0xb6,0x14,0x50,0x0,0x0,0x0,0x0,0x4f,0x5c,0x3f,0x60,0x0,0x0,0x0,0x0, + 0x50,0x95,0xf6,0x50,0x0,0x0,0x0,0x0,0x51,0x3c,0x21,0x60,0x0,0x0,0x0,0x0, + 0x52,0x75,0xd8,0x50,0x0,0x0,0x0,0x0,0x53,0x1c,0x3,0x60,0x0,0x0,0x0,0x0, + 0x54,0x55,0xba,0x50,0x0,0x0,0x0,0x0,0x54,0xfb,0xe5,0x60,0x0,0x0,0x0,0x0, + 0x56,0x35,0x9c,0x50,0x0,0x0,0x0,0x0,0x56,0xe5,0x1,0xe0,0x0,0x0,0x0,0x0, + 0x58,0x1e,0xb8,0xd0,0x0,0x0,0x0,0x0,0x58,0xc4,0xe3,0xe0,0x0,0x0,0x0,0x0, + 0x59,0xfe,0x9a,0xd0,0x0,0x0,0x0,0x0,0x5a,0xa4,0xc5,0xe0,0x0,0x0,0x0,0x0, + 0x5b,0xde,0x7c,0xd0,0x0,0x0,0x0,0x0,0x5c,0x84,0xa7,0xe0,0x0,0x0,0x0,0x0, + 0x5d,0xbe,0x5e,0xd0,0x0,0x0,0x0,0x0,0x5e,0x64,0x89,0xe0,0x0,0x0,0x0,0x0, + 0x5f,0x9e,0x40,0xd0,0x0,0x0,0x0,0x0,0x60,0x4d,0xa6,0x60,0x0,0x0,0x0,0x0, + 0x61,0x87,0x5d,0x50,0x0,0x0,0x0,0x0,0x62,0x2d,0x88,0x60,0x0,0x0,0x0,0x0, + 0x63,0x67,0x3f,0x50,0x0,0x0,0x0,0x0,0x64,0xd,0x6a,0x60,0x0,0x0,0x0,0x0, + 0x65,0x47,0x21,0x50,0x0,0x0,0x0,0x0,0x65,0xed,0x4c,0x60,0x0,0x0,0x0,0x0, + 0x67,0x27,0x3,0x50,0x0,0x0,0x0,0x0,0x67,0xcd,0x2e,0x60,0x0,0x0,0x0,0x0, + 0x69,0x6,0xe5,0x50,0x0,0x0,0x0,0x0,0x69,0xad,0x10,0x60,0x0,0x0,0x0,0x0, + 0x6a,0xe6,0xc7,0x50,0x0,0x0,0x0,0x0,0x6b,0x96,0x2c,0xe0,0x0,0x0,0x0,0x0, + 0x6c,0xcf,0xe3,0xd0,0x0,0x0,0x0,0x0,0x6d,0x76,0xe,0xe0,0x0,0x0,0x0,0x0, + 0x6e,0xaf,0xc5,0xd0,0x0,0x0,0x0,0x0,0x6f,0x55,0xf0,0xe0,0x0,0x0,0x0,0x0, + 0x70,0x8f,0xa7,0xd0,0x0,0x0,0x0,0x0,0x71,0x35,0xd2,0xe0,0x0,0x0,0x0,0x0, + 0x72,0x6f,0x89,0xd0,0x0,0x0,0x0,0x0,0x73,0x15,0xb4,0xe0,0x0,0x0,0x0,0x0, + 0x74,0x4f,0x6b,0xd0,0x0,0x0,0x0,0x0,0x74,0xfe,0xd1,0x60,0x0,0x0,0x0,0x0, + 0x76,0x38,0x88,0x50,0x0,0x0,0x0,0x0,0x76,0xde,0xb3,0x60,0x0,0x0,0x0,0x0, + 0x78,0x18,0x6a,0x50,0x0,0x0,0x0,0x0,0x78,0xbe,0x95,0x60,0x0,0x0,0x0,0x0, + 0x79,0xf8,0x4c,0x50,0x0,0x0,0x0,0x0,0x7a,0x9e,0x77,0x60,0x0,0x0,0x0,0x0, + 0x7b,0xd8,0x2e,0x50,0x0,0x0,0x0,0x0,0x7c,0x7e,0x59,0x60,0x0,0x0,0x0,0x0, + 0x7d,0xb8,0x10,0x50,0x0,0x0,0x0,0x0,0x7e,0x5e,0x3b,0x60,0x0,0x0,0x0,0x0, + 0x7f,0x97,0xf2,0x50,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0xc4,0x60,0x0,0x0,0xff, + 0xff,0xd5,0xd0,0x1,0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0xff,0xff,0xd5,0xd0,0x1, + 0xc,0xff,0xff,0xd5,0xd0,0x1,0x10,0x4c,0x4d,0x54,0x0,0x41,0x44,0x54,0x0,0x41, + 0x53,0x54,0x0,0x41,0x57,0x54,0x0,0x41,0x50,0x54,0x0,0x0,0x0,0x0,0x0,0x1, + 0x0,0x0,0x0,0x0,0x1,0xa,0x41,0x53,0x54,0x34,0x41,0x44,0x54,0x2c,0x4d,0x33, + 0x2e,0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Tortola 0x0,0x0,0x0,0xaa, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, @@ -30854,402 +26825,158 @@ static const unsigned char qt_resource_data[] = { 0x0,0xff,0xff,0xff,0xff,0x93,0x37,0x33,0xac,0x0,0x1,0xff,0xff,0xc6,0x54,0x0, 0x0,0xff,0xff,0xc7,0xc0,0x0,0x4,0x4c,0x4d,0x54,0x0,0x41,0x53,0x54,0x0,0x0, 0x0,0x0,0x0,0xa,0x41,0x53,0x54,0x34,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Louisville - 0x0,0x0,0xa,0xdd, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Argentina/Rio_Gallegos + 0x0,0x0,0x4,0x55, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3e,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0xa2, + 0x92,0x8f,0x30,0xb6,0x7b,0x52,0x40,0xb7,0x1a,0xc9,0xb0,0xb8,0x1e,0x8f,0x40,0xb8, + 0xd4,0x70,0x30,0xba,0x17,0x7d,0xc0,0xba,0xb5,0xa3,0xb0,0xbb,0xf8,0xb1,0x40,0xbc, + 0x96,0xd7,0x30,0xbd,0xd9,0xe4,0xc0,0xbe,0x78,0xa,0xb0,0xbf,0xbb,0x18,0x40,0xc0, + 0x5a,0x8f,0xb0,0xc1,0x9d,0x9d,0x40,0xc2,0x3b,0xc3,0x30,0xc3,0x7e,0xd0,0xc0,0xc4, + 0x1c,0xf6,0xb0,0xc5,0x60,0x4,0x40,0xc5,0xfe,0x2a,0x30,0xc7,0x41,0x37,0xc0,0xc7, + 0xe0,0xaf,0x30,0xc8,0x81,0x94,0x40,0xca,0x4d,0xa1,0xb0,0xca,0xee,0x86,0xc0,0xce, + 0x4d,0xff,0x30,0xce,0xb0,0xed,0xc0,0xd3,0x29,0x35,0xb0,0xd4,0x43,0x64,0xc0,0xf4, + 0x3d,0x8,0x30,0xf4,0x9f,0xf6,0xc0,0xf5,0x5,0x6c,0x30,0xf6,0x32,0x10,0x40,0xf6, + 0xe6,0x9f,0xb0,0xf8,0x13,0x43,0xc0,0xf8,0xc7,0xd3,0x30,0xf9,0xf4,0x77,0x40,0xfa, + 0xd3,0x36,0xb0,0xfb,0xc3,0x35,0xc0,0xfc,0xbc,0x53,0x30,0xfd,0xac,0x52,0x40,0xfe, + 0x9c,0x35,0x30,0xff,0x8c,0x34,0x40,0x7,0xa3,0x4a,0xb0,0x8,0x24,0x6f,0xa0,0x23, + 0x94,0xb5,0xb0,0x24,0x10,0x94,0xa0,0x25,0x37,0xf2,0xb0,0x25,0xf0,0x76,0xa0,0x27, + 0x21,0xf,0x30,0x27,0xd0,0x58,0xa0,0x29,0x0,0xf1,0x30,0x29,0xb0,0x3a,0xa0,0x2a, + 0xe0,0xd3,0x30,0x2b,0x99,0x57,0x20,0x37,0xf6,0xc6,0xb0,0x38,0xbf,0x2a,0xb0,0x40, + 0xbb,0xf1,0x30,0x40,0xd5,0xb,0xc0,0x47,0x77,0x9,0xb0,0x47,0xdc,0x7f,0x20,0x7f, + 0xff,0xff,0xff,0x1,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x3,0x5,0x2,0x5,0x4,0x5, + 0x5,0xff,0xff,0xbf,0x1c,0x0,0x0,0xff,0xff,0xc3,0xd0,0x0,0x4,0xff,0xff,0xc7, + 0xc0,0x0,0x8,0xff,0xff,0xd5,0xd0,0x1,0xc,0xff,0xff,0xe3,0xe0,0x1,0x10,0xff, + 0xff,0xd5,0xd0,0x0,0xc,0x4c,0x4d,0x54,0x0,0x43,0x4d,0x54,0x0,0x2d,0x30,0x34, + 0x0,0x2d,0x30,0x33,0x0,0x2d,0x30,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x14,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x72,0x9c,0xb2, + 0x64,0xff,0xff,0xff,0xff,0xa2,0x92,0x8f,0x30,0xff,0xff,0xff,0xff,0xb6,0x7b,0x52, + 0x40,0xff,0xff,0xff,0xff,0xb7,0x1a,0xc9,0xb0,0xff,0xff,0xff,0xff,0xb8,0x1e,0x8f, + 0x40,0xff,0xff,0xff,0xff,0xb8,0xd4,0x70,0x30,0xff,0xff,0xff,0xff,0xba,0x17,0x7d, + 0xc0,0xff,0xff,0xff,0xff,0xba,0xb5,0xa3,0xb0,0xff,0xff,0xff,0xff,0xbb,0xf8,0xb1, + 0x40,0xff,0xff,0xff,0xff,0xbc,0x96,0xd7,0x30,0xff,0xff,0xff,0xff,0xbd,0xd9,0xe4, + 0xc0,0xff,0xff,0xff,0xff,0xbe,0x78,0xa,0xb0,0xff,0xff,0xff,0xff,0xbf,0xbb,0x18, + 0x40,0xff,0xff,0xff,0xff,0xc0,0x5a,0x8f,0xb0,0xff,0xff,0xff,0xff,0xc1,0x9d,0x9d, + 0x40,0xff,0xff,0xff,0xff,0xc2,0x3b,0xc3,0x30,0xff,0xff,0xff,0xff,0xc3,0x7e,0xd0, + 0xc0,0xff,0xff,0xff,0xff,0xc4,0x1c,0xf6,0xb0,0xff,0xff,0xff,0xff,0xc5,0x60,0x4, + 0x40,0xff,0xff,0xff,0xff,0xc5,0xfe,0x2a,0x30,0xff,0xff,0xff,0xff,0xc7,0x41,0x37, + 0xc0,0xff,0xff,0xff,0xff,0xc7,0xe0,0xaf,0x30,0xff,0xff,0xff,0xff,0xc8,0x81,0x94, + 0x40,0xff,0xff,0xff,0xff,0xca,0x4d,0xa1,0xb0,0xff,0xff,0xff,0xff,0xca,0xee,0x86, + 0xc0,0xff,0xff,0xff,0xff,0xce,0x4d,0xff,0x30,0xff,0xff,0xff,0xff,0xce,0xb0,0xed, + 0xc0,0xff,0xff,0xff,0xff,0xd3,0x29,0x35,0xb0,0xff,0xff,0xff,0xff,0xd4,0x43,0x64, + 0xc0,0xff,0xff,0xff,0xff,0xf4,0x3d,0x8,0x30,0xff,0xff,0xff,0xff,0xf4,0x9f,0xf6, + 0xc0,0xff,0xff,0xff,0xff,0xf5,0x5,0x6c,0x30,0xff,0xff,0xff,0xff,0xf6,0x32,0x10, + 0x40,0xff,0xff,0xff,0xff,0xf6,0xe6,0x9f,0xb0,0xff,0xff,0xff,0xff,0xf8,0x13,0x43, + 0xc0,0xff,0xff,0xff,0xff,0xf8,0xc7,0xd3,0x30,0xff,0xff,0xff,0xff,0xf9,0xf4,0x77, + 0x40,0xff,0xff,0xff,0xff,0xfa,0xd3,0x36,0xb0,0xff,0xff,0xff,0xff,0xfb,0xc3,0x35, + 0xc0,0xff,0xff,0xff,0xff,0xfc,0xbc,0x53,0x30,0xff,0xff,0xff,0xff,0xfd,0xac,0x52, + 0x40,0xff,0xff,0xff,0xff,0xfe,0x9c,0x35,0x30,0xff,0xff,0xff,0xff,0xff,0x8c,0x34, + 0x40,0x0,0x0,0x0,0x0,0x7,0xa3,0x4a,0xb0,0x0,0x0,0x0,0x0,0x8,0x24,0x6f, + 0xa0,0x0,0x0,0x0,0x0,0x23,0x94,0xb5,0xb0,0x0,0x0,0x0,0x0,0x24,0x10,0x94, + 0xa0,0x0,0x0,0x0,0x0,0x25,0x37,0xf2,0xb0,0x0,0x0,0x0,0x0,0x25,0xf0,0x76, + 0xa0,0x0,0x0,0x0,0x0,0x27,0x21,0xf,0x30,0x0,0x0,0x0,0x0,0x27,0xd0,0x58, + 0xa0,0x0,0x0,0x0,0x0,0x29,0x0,0xf1,0x30,0x0,0x0,0x0,0x0,0x29,0xb0,0x3a, + 0xa0,0x0,0x0,0x0,0x0,0x2a,0xe0,0xd3,0x30,0x0,0x0,0x0,0x0,0x2b,0x99,0x57, + 0x20,0x0,0x0,0x0,0x0,0x37,0xf6,0xc6,0xb0,0x0,0x0,0x0,0x0,0x38,0xbf,0x2a, + 0xb0,0x0,0x0,0x0,0x0,0x40,0xbb,0xf1,0x30,0x0,0x0,0x0,0x0,0x40,0xd5,0xb, + 0xc0,0x0,0x0,0x0,0x0,0x47,0x77,0x9,0xb0,0x0,0x0,0x0,0x0,0x47,0xdc,0x7f, + 0x20,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x3,0x5,0x2,0x5,0x4,0x5,0x5,0xff,0xff,0xbf,0x1c,0x0,0x0,0xff,0xff, + 0xc3,0xd0,0x0,0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0xff,0xff,0xd5,0xd0,0x1,0xc, + 0xff,0xff,0xe3,0xe0,0x1,0x10,0xff,0xff,0xd5,0xd0,0x0,0xc,0x4c,0x4d,0x54,0x0, + 0x43,0x4d,0x54,0x0,0x2d,0x30,0x34,0x0,0x2d,0x30,0x33,0x0,0x2d,0x30,0x32,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2d,0x30, + 0x33,0x3e,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Argentina/Cordoba + 0x0,0x0,0x4,0x55, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3e,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0xa2, + 0x92,0x8f,0x30,0xb6,0x7b,0x52,0x40,0xb7,0x1a,0xc9,0xb0,0xb8,0x1e,0x8f,0x40,0xb8, + 0xd4,0x70,0x30,0xba,0x17,0x7d,0xc0,0xba,0xb5,0xa3,0xb0,0xbb,0xf8,0xb1,0x40,0xbc, + 0x96,0xd7,0x30,0xbd,0xd9,0xe4,0xc0,0xbe,0x78,0xa,0xb0,0xbf,0xbb,0x18,0x40,0xc0, + 0x5a,0x8f,0xb0,0xc1,0x9d,0x9d,0x40,0xc2,0x3b,0xc3,0x30,0xc3,0x7e,0xd0,0xc0,0xc4, + 0x1c,0xf6,0xb0,0xc5,0x60,0x4,0x40,0xc5,0xfe,0x2a,0x30,0xc7,0x41,0x37,0xc0,0xc7, + 0xe0,0xaf,0x30,0xc8,0x81,0x94,0x40,0xca,0x4d,0xa1,0xb0,0xca,0xee,0x86,0xc0,0xce, + 0x4d,0xff,0x30,0xce,0xb0,0xed,0xc0,0xd3,0x29,0x35,0xb0,0xd4,0x43,0x64,0xc0,0xf4, + 0x3d,0x8,0x30,0xf4,0x9f,0xf6,0xc0,0xf5,0x5,0x6c,0x30,0xf6,0x32,0x10,0x40,0xf6, + 0xe6,0x9f,0xb0,0xf8,0x13,0x43,0xc0,0xf8,0xc7,0xd3,0x30,0xf9,0xf4,0x77,0x40,0xfa, + 0xd3,0x36,0xb0,0xfb,0xc3,0x35,0xc0,0xfc,0xbc,0x53,0x30,0xfd,0xac,0x52,0x40,0xfe, + 0x9c,0x35,0x30,0xff,0x8c,0x34,0x40,0x7,0xa3,0x4a,0xb0,0x8,0x24,0x6f,0xa0,0x23, + 0x94,0xb5,0xb0,0x24,0x10,0x94,0xa0,0x25,0x37,0xf2,0xb0,0x25,0xf0,0x76,0xa0,0x27, + 0x21,0xf,0x30,0x27,0xd0,0x58,0xa0,0x29,0x0,0xff,0x40,0x29,0xb0,0x3a,0xa0,0x2a, + 0xe0,0xd3,0x30,0x2b,0x99,0x57,0x20,0x37,0xf6,0xc6,0xb0,0x38,0xbf,0x2a,0xb0,0x47, + 0x77,0x9,0xb0,0x47,0xdc,0x7f,0x20,0x48,0xfa,0xa2,0xb0,0x49,0xbc,0x61,0x20,0x7f, + 0xff,0xff,0xff,0x1,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x2,0x4,0x5,0x4,0x5,0x3,0x5,0x4,0x5,0x4,0x5, + 0x5,0xff,0xff,0xc3,0xd0,0x0,0x0,0xff,0xff,0xc3,0xd0,0x0,0x4,0xff,0xff,0xc7, + 0xc0,0x0,0x8,0xff,0xff,0xd5,0xd0,0x1,0xc,0xff,0xff,0xe3,0xe0,0x1,0x10,0xff, + 0xff,0xd5,0xd0,0x0,0xc,0x4c,0x4d,0x54,0x0,0x43,0x4d,0x54,0x0,0x2d,0x30,0x34, + 0x0,0x2d,0x30,0x33,0x0,0x2d,0x30,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x14,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x72,0x9c,0xad, + 0xb0,0xff,0xff,0xff,0xff,0xa2,0x92,0x8f,0x30,0xff,0xff,0xff,0xff,0xb6,0x7b,0x52, + 0x40,0xff,0xff,0xff,0xff,0xb7,0x1a,0xc9,0xb0,0xff,0xff,0xff,0xff,0xb8,0x1e,0x8f, + 0x40,0xff,0xff,0xff,0xff,0xb8,0xd4,0x70,0x30,0xff,0xff,0xff,0xff,0xba,0x17,0x7d, + 0xc0,0xff,0xff,0xff,0xff,0xba,0xb5,0xa3,0xb0,0xff,0xff,0xff,0xff,0xbb,0xf8,0xb1, + 0x40,0xff,0xff,0xff,0xff,0xbc,0x96,0xd7,0x30,0xff,0xff,0xff,0xff,0xbd,0xd9,0xe4, + 0xc0,0xff,0xff,0xff,0xff,0xbe,0x78,0xa,0xb0,0xff,0xff,0xff,0xff,0xbf,0xbb,0x18, + 0x40,0xff,0xff,0xff,0xff,0xc0,0x5a,0x8f,0xb0,0xff,0xff,0xff,0xff,0xc1,0x9d,0x9d, + 0x40,0xff,0xff,0xff,0xff,0xc2,0x3b,0xc3,0x30,0xff,0xff,0xff,0xff,0xc3,0x7e,0xd0, + 0xc0,0xff,0xff,0xff,0xff,0xc4,0x1c,0xf6,0xb0,0xff,0xff,0xff,0xff,0xc5,0x60,0x4, + 0x40,0xff,0xff,0xff,0xff,0xc5,0xfe,0x2a,0x30,0xff,0xff,0xff,0xff,0xc7,0x41,0x37, + 0xc0,0xff,0xff,0xff,0xff,0xc7,0xe0,0xaf,0x30,0xff,0xff,0xff,0xff,0xc8,0x81,0x94, + 0x40,0xff,0xff,0xff,0xff,0xca,0x4d,0xa1,0xb0,0xff,0xff,0xff,0xff,0xca,0xee,0x86, + 0xc0,0xff,0xff,0xff,0xff,0xce,0x4d,0xff,0x30,0xff,0xff,0xff,0xff,0xce,0xb0,0xed, + 0xc0,0xff,0xff,0xff,0xff,0xd3,0x29,0x35,0xb0,0xff,0xff,0xff,0xff,0xd4,0x43,0x64, + 0xc0,0xff,0xff,0xff,0xff,0xf4,0x3d,0x8,0x30,0xff,0xff,0xff,0xff,0xf4,0x9f,0xf6, + 0xc0,0xff,0xff,0xff,0xff,0xf5,0x5,0x6c,0x30,0xff,0xff,0xff,0xff,0xf6,0x32,0x10, + 0x40,0xff,0xff,0xff,0xff,0xf6,0xe6,0x9f,0xb0,0xff,0xff,0xff,0xff,0xf8,0x13,0x43, + 0xc0,0xff,0xff,0xff,0xff,0xf8,0xc7,0xd3,0x30,0xff,0xff,0xff,0xff,0xf9,0xf4,0x77, + 0x40,0xff,0xff,0xff,0xff,0xfa,0xd3,0x36,0xb0,0xff,0xff,0xff,0xff,0xfb,0xc3,0x35, + 0xc0,0xff,0xff,0xff,0xff,0xfc,0xbc,0x53,0x30,0xff,0xff,0xff,0xff,0xfd,0xac,0x52, + 0x40,0xff,0xff,0xff,0xff,0xfe,0x9c,0x35,0x30,0xff,0xff,0xff,0xff,0xff,0x8c,0x34, + 0x40,0x0,0x0,0x0,0x0,0x7,0xa3,0x4a,0xb0,0x0,0x0,0x0,0x0,0x8,0x24,0x6f, + 0xa0,0x0,0x0,0x0,0x0,0x23,0x94,0xb5,0xb0,0x0,0x0,0x0,0x0,0x24,0x10,0x94, + 0xa0,0x0,0x0,0x0,0x0,0x25,0x37,0xf2,0xb0,0x0,0x0,0x0,0x0,0x25,0xf0,0x76, + 0xa0,0x0,0x0,0x0,0x0,0x27,0x21,0xf,0x30,0x0,0x0,0x0,0x0,0x27,0xd0,0x58, + 0xa0,0x0,0x0,0x0,0x0,0x29,0x0,0xff,0x40,0x0,0x0,0x0,0x0,0x29,0xb0,0x3a, + 0xa0,0x0,0x0,0x0,0x0,0x2a,0xe0,0xd3,0x30,0x0,0x0,0x0,0x0,0x2b,0x99,0x57, + 0x20,0x0,0x0,0x0,0x0,0x37,0xf6,0xc6,0xb0,0x0,0x0,0x0,0x0,0x38,0xbf,0x2a, + 0xb0,0x0,0x0,0x0,0x0,0x47,0x77,0x9,0xb0,0x0,0x0,0x0,0x0,0x47,0xdc,0x7f, + 0x20,0x0,0x0,0x0,0x0,0x48,0xfa,0xa2,0xb0,0x0,0x0,0x0,0x0,0x49,0xbc,0x61, + 0x20,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x2,0x4,0x5,0x4, + 0x5,0x3,0x5,0x4,0x5,0x4,0x5,0x5,0xff,0xff,0xc3,0xd0,0x0,0x0,0xff,0xff, + 0xc3,0xd0,0x0,0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0xff,0xff,0xd5,0xd0,0x1,0xc, + 0xff,0xff,0xe3,0xe0,0x1,0x10,0xff,0xff,0xd5,0xd0,0x0,0xc,0x4c,0x4d,0x54,0x0, + 0x43,0x4d,0x54,0x0,0x2d,0x30,0x34,0x0,0x2d,0x30,0x33,0x0,0x2d,0x30,0x32,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2d,0x30, + 0x33,0x3e,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Argentina/San_Luis + 0x0,0x0,0x4,0x73, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xb2,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x1c,0x80,0x0,0x0,0x0,0x9e, - 0xa6,0x2c,0x80,0x9f,0xba,0xf9,0x70,0xa0,0x86,0xe,0x80,0xa1,0x9a,0xdb,0x70,0xa4, - 0x73,0xf7,0x0,0xa5,0x16,0x11,0x70,0xca,0xd,0x4e,0x80,0xca,0xd8,0x47,0x70,0xcb, - 0x88,0xfe,0x80,0xd2,0x23,0xf4,0x70,0xd2,0x61,0x9,0xf0,0xd2,0xdb,0x97,0x60,0xd3, - 0xa4,0x9,0x70,0xd5,0x55,0xd5,0x0,0xdb,0xc0,0x73,0xf0,0xdc,0xde,0x97,0x80,0xdd, - 0xa9,0x90,0x70,0xde,0xbe,0x79,0x80,0xdf,0x89,0x72,0x70,0xe0,0x9e,0x5b,0x80,0xe1, - 0x69,0x54,0x70,0xe2,0x7e,0x3d,0x80,0xe3,0x49,0x36,0x70,0xe4,0x5e,0x1f,0x80,0xe5, - 0x29,0x18,0x70,0xe6,0x47,0x3c,0x0,0xe7,0x37,0x1e,0xf0,0xe8,0x27,0x1e,0x0,0xe9, - 0x17,0x0,0xf0,0xea,0x7,0x0,0x0,0xea,0xf6,0xe2,0xf0,0xeb,0xe6,0xe2,0x0,0xec, - 0xd6,0xc4,0xf0,0xed,0xc6,0xc4,0x0,0xee,0xbf,0xe1,0x70,0xef,0xaf,0xe0,0x80,0xf0, - 0x1e,0x90,0x70,0xfc,0xd8,0x3a,0xf0,0xfd,0xc8,0x1d,0xe0,0xfe,0xb8,0x1c,0xf0,0xff, - 0xa7,0xff,0xe0,0x0,0x97,0xfe,0xf0,0x1,0x87,0xe1,0xe0,0x2,0x77,0xe0,0xf0,0x3, - 0x70,0xfe,0x60,0x4,0x60,0xfd,0x70,0x5,0x50,0xe0,0x60,0x6,0x40,0xdf,0x70,0x7, - 0x30,0xc2,0x60,0x7,0x8d,0x19,0x70,0x9,0x10,0xb2,0x70,0x9,0xad,0x94,0xf0,0xa, - 0xf0,0x86,0x60,0xb,0xe0,0x85,0x70,0xc,0xd9,0xa2,0xe0,0xd,0xc0,0x67,0x70,0xe, - 0xb9,0x84,0xe0,0xf,0xa9,0x83,0xf0,0x10,0x99,0x66,0xe0,0x11,0x89,0x65,0xf0,0x12, - 0x79,0x48,0xe0,0x13,0x69,0x47,0xf0,0x14,0x59,0x2a,0xe0,0x15,0x49,0x29,0xf0,0x16, - 0x39,0xc,0xe0,0x17,0x29,0xb,0xf0,0x18,0x22,0x29,0x60,0x19,0x8,0xed,0xf0,0x1a, - 0x2,0xb,0x60,0x1a,0xf2,0xa,0x70,0x1b,0xe1,0xed,0x60,0x1c,0xd1,0xec,0x70,0x1d, - 0xc1,0xcf,0x60,0x1e,0xb1,0xce,0x70,0x1f,0xa1,0xb1,0x60,0x20,0x76,0x0,0xf0,0x21, - 0x81,0x93,0x60,0x22,0x55,0xe2,0xf0,0x23,0x6a,0xaf,0xe0,0x24,0x35,0xc4,0xf0,0x25, - 0x4a,0x91,0xe0,0x26,0x15,0xa6,0xf0,0x27,0x2a,0x73,0xe0,0x27,0xfe,0xc3,0x70,0x29, - 0xa,0x55,0xe0,0x29,0xde,0xa5,0x70,0x2a,0xea,0x37,0xe0,0x2b,0xbe,0x87,0x70,0x2c, - 0xd3,0x54,0x60,0x2d,0x9e,0x69,0x70,0x2e,0xb3,0x36,0x60,0x2f,0x7e,0x4b,0x70,0x30, - 0x93,0x18,0x60,0x31,0x67,0x67,0xf0,0x32,0x72,0xfa,0x60,0x33,0x47,0x49,0xf0,0x34, - 0x52,0xdc,0x60,0x35,0x27,0x2b,0xf0,0x36,0x32,0xbe,0x60,0x37,0x7,0xd,0xf0,0x38, - 0x1b,0xda,0xe0,0x38,0xe6,0xef,0xf0,0x39,0xfb,0xbc,0xe0,0x3a,0xc6,0xd1,0xf0,0x3b, - 0xdb,0x9e,0xe0,0x3c,0xaf,0xee,0x70,0x3d,0xbb,0x80,0xe0,0x3e,0x8f,0xd0,0x70,0x3f, - 0x9b,0x62,0xe0,0x40,0x6f,0xb2,0x70,0x41,0x84,0x7f,0x60,0x42,0x4f,0x94,0x70,0x43, - 0x64,0x61,0x60,0x44,0x2f,0x76,0x70,0x45,0x44,0x43,0x60,0x45,0xf3,0xa8,0xf0,0x47, - 0x2d,0x5f,0xe0,0x47,0xd3,0x8a,0xf0,0x49,0xd,0x41,0xe0,0x49,0xb3,0x6c,0xf0,0x4a, - 0xed,0x23,0xe0,0x4b,0x9c,0x89,0x70,0x4c,0xd6,0x40,0x60,0x4d,0x7c,0x6b,0x70,0x4e, - 0xb6,0x22,0x60,0x4f,0x5c,0x4d,0x70,0x50,0x96,0x4,0x60,0x51,0x3c,0x2f,0x70,0x52, - 0x75,0xe6,0x60,0x53,0x1c,0x11,0x70,0x54,0x55,0xc8,0x60,0x54,0xfb,0xf3,0x70,0x56, - 0x35,0xaa,0x60,0x56,0xe5,0xf,0xf0,0x58,0x1e,0xc6,0xe0,0x58,0xc4,0xf1,0xf0,0x59, - 0xfe,0xa8,0xe0,0x5a,0xa4,0xd3,0xf0,0x5b,0xde,0x8a,0xe0,0x5c,0x84,0xb5,0xf0,0x5d, - 0xbe,0x6c,0xe0,0x5e,0x64,0x97,0xf0,0x5f,0x9e,0x4e,0xe0,0x60,0x4d,0xb4,0x70,0x61, - 0x87,0x6b,0x60,0x62,0x2d,0x96,0x70,0x63,0x67,0x4d,0x60,0x64,0xd,0x78,0x70,0x65, - 0x47,0x2f,0x60,0x65,0xed,0x5a,0x70,0x67,0x27,0x11,0x60,0x67,0xcd,0x3c,0x70,0x69, - 0x6,0xf3,0x60,0x69,0xad,0x1e,0x70,0x6a,0xe6,0xd5,0x60,0x6b,0x96,0x3a,0xf0,0x6c, - 0xcf,0xf1,0xe0,0x6d,0x76,0x1c,0xf0,0x6e,0xaf,0xd3,0xe0,0x6f,0x55,0xfe,0xf0,0x70, - 0x8f,0xb5,0xe0,0x71,0x35,0xe0,0xf0,0x72,0x6f,0x97,0xe0,0x73,0x15,0xc2,0xf0,0x74, - 0x4f,0x79,0xe0,0x74,0xfe,0xdf,0x70,0x76,0x38,0x96,0x60,0x76,0xde,0xc1,0x70,0x78, - 0x18,0x78,0x60,0x78,0xbe,0xa3,0x70,0x79,0xf8,0x5a,0x60,0x7a,0x9e,0x85,0x70,0x7b, - 0xd8,0x3c,0x60,0x7c,0x7e,0x67,0x70,0x7d,0xb8,0x1e,0x60,0x7e,0x5e,0x49,0x70,0x7f, - 0x98,0x0,0x60,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x1,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0xff,0xff,0xaf,0x9a,0x0,0x0,0xff,0xff,0xb9,0xb0,0x1, - 0x4,0xff,0xff,0xab,0xa0,0x0,0x8,0xff,0xff,0xb9,0xb0,0x1,0xc,0xff,0xff,0xb9, - 0xb0,0x1,0x10,0xff,0xff,0xb9,0xb0,0x0,0x14,0xff,0xff,0xc7,0xc0,0x1,0x18,0x4c, - 0x4d,0x54,0x0,0x43,0x44,0x54,0x0,0x43,0x53,0x54,0x0,0x43,0x57,0x54,0x0,0x43, - 0x50,0x54,0x0,0x45,0x53,0x54,0x0,0x45,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x1, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb3,0x0,0x0,0x0, - 0x7,0x0,0x0,0x0,0x1c,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff, - 0xff,0x5e,0x3,0xfe,0xa0,0xff,0xff,0xff,0xff,0x9e,0xa6,0x2c,0x80,0xff,0xff,0xff, - 0xff,0x9f,0xba,0xf9,0x70,0xff,0xff,0xff,0xff,0xa0,0x86,0xe,0x80,0xff,0xff,0xff, - 0xff,0xa1,0x9a,0xdb,0x70,0xff,0xff,0xff,0xff,0xa4,0x73,0xf7,0x0,0xff,0xff,0xff, - 0xff,0xa5,0x16,0x11,0x70,0xff,0xff,0xff,0xff,0xca,0xd,0x4e,0x80,0xff,0xff,0xff, - 0xff,0xca,0xd8,0x47,0x70,0xff,0xff,0xff,0xff,0xcb,0x88,0xfe,0x80,0xff,0xff,0xff, - 0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x61,0x9,0xf0,0xff,0xff,0xff, - 0xff,0xd2,0xdb,0x97,0x60,0xff,0xff,0xff,0xff,0xd3,0xa4,0x9,0x70,0xff,0xff,0xff, - 0xff,0xd5,0x55,0xd5,0x0,0xff,0xff,0xff,0xff,0xdb,0xc0,0x73,0xf0,0xff,0xff,0xff, - 0xff,0xdc,0xde,0x97,0x80,0xff,0xff,0xff,0xff,0xdd,0xa9,0x90,0x70,0xff,0xff,0xff, - 0xff,0xde,0xbe,0x79,0x80,0xff,0xff,0xff,0xff,0xdf,0x89,0x72,0x70,0xff,0xff,0xff, - 0xff,0xe0,0x9e,0x5b,0x80,0xff,0xff,0xff,0xff,0xe1,0x69,0x54,0x70,0xff,0xff,0xff, - 0xff,0xe2,0x7e,0x3d,0x80,0xff,0xff,0xff,0xff,0xe3,0x49,0x36,0x70,0xff,0xff,0xff, - 0xff,0xe4,0x5e,0x1f,0x80,0xff,0xff,0xff,0xff,0xe5,0x29,0x18,0x70,0xff,0xff,0xff, - 0xff,0xe6,0x47,0x3c,0x0,0xff,0xff,0xff,0xff,0xe7,0x37,0x1e,0xf0,0xff,0xff,0xff, - 0xff,0xe8,0x27,0x1e,0x0,0xff,0xff,0xff,0xff,0xe9,0x17,0x0,0xf0,0xff,0xff,0xff, - 0xff,0xea,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0xea,0xf6,0xe2,0xf0,0xff,0xff,0xff, - 0xff,0xeb,0xe6,0xe2,0x0,0xff,0xff,0xff,0xff,0xec,0xd6,0xc4,0xf0,0xff,0xff,0xff, - 0xff,0xed,0xc6,0xc4,0x0,0xff,0xff,0xff,0xff,0xee,0xbf,0xe1,0x70,0xff,0xff,0xff, - 0xff,0xef,0xaf,0xe0,0x80,0xff,0xff,0xff,0xff,0xf0,0x1e,0x90,0x70,0xff,0xff,0xff, - 0xff,0xfc,0xd8,0x3a,0xf0,0xff,0xff,0xff,0xff,0xfd,0xc8,0x1d,0xe0,0xff,0xff,0xff, - 0xff,0xfe,0xb8,0x1c,0xf0,0xff,0xff,0xff,0xff,0xff,0xa7,0xff,0xe0,0x0,0x0,0x0, - 0x0,0x0,0x97,0xfe,0xf0,0x0,0x0,0x0,0x0,0x1,0x87,0xe1,0xe0,0x0,0x0,0x0, - 0x0,0x2,0x77,0xe0,0xf0,0x0,0x0,0x0,0x0,0x3,0x70,0xfe,0x60,0x0,0x0,0x0, - 0x0,0x4,0x60,0xfd,0x70,0x0,0x0,0x0,0x0,0x5,0x50,0xe0,0x60,0x0,0x0,0x0, - 0x0,0x6,0x40,0xdf,0x70,0x0,0x0,0x0,0x0,0x7,0x30,0xc2,0x60,0x0,0x0,0x0, - 0x0,0x7,0x8d,0x19,0x70,0x0,0x0,0x0,0x0,0x9,0x10,0xb2,0x70,0x0,0x0,0x0, - 0x0,0x9,0xad,0x94,0xf0,0x0,0x0,0x0,0x0,0xa,0xf0,0x86,0x60,0x0,0x0,0x0, - 0x0,0xb,0xe0,0x85,0x70,0x0,0x0,0x0,0x0,0xc,0xd9,0xa2,0xe0,0x0,0x0,0x0, - 0x0,0xd,0xc0,0x67,0x70,0x0,0x0,0x0,0x0,0xe,0xb9,0x84,0xe0,0x0,0x0,0x0, - 0x0,0xf,0xa9,0x83,0xf0,0x0,0x0,0x0,0x0,0x10,0x99,0x66,0xe0,0x0,0x0,0x0, - 0x0,0x11,0x89,0x65,0xf0,0x0,0x0,0x0,0x0,0x12,0x79,0x48,0xe0,0x0,0x0,0x0, - 0x0,0x13,0x69,0x47,0xf0,0x0,0x0,0x0,0x0,0x14,0x59,0x2a,0xe0,0x0,0x0,0x0, - 0x0,0x15,0x49,0x29,0xf0,0x0,0x0,0x0,0x0,0x16,0x39,0xc,0xe0,0x0,0x0,0x0, - 0x0,0x17,0x29,0xb,0xf0,0x0,0x0,0x0,0x0,0x18,0x22,0x29,0x60,0x0,0x0,0x0, - 0x0,0x19,0x8,0xed,0xf0,0x0,0x0,0x0,0x0,0x1a,0x2,0xb,0x60,0x0,0x0,0x0, - 0x0,0x1a,0xf2,0xa,0x70,0x0,0x0,0x0,0x0,0x1b,0xe1,0xed,0x60,0x0,0x0,0x0, - 0x0,0x1c,0xd1,0xec,0x70,0x0,0x0,0x0,0x0,0x1d,0xc1,0xcf,0x60,0x0,0x0,0x0, - 0x0,0x1e,0xb1,0xce,0x70,0x0,0x0,0x0,0x0,0x1f,0xa1,0xb1,0x60,0x0,0x0,0x0, - 0x0,0x20,0x76,0x0,0xf0,0x0,0x0,0x0,0x0,0x21,0x81,0x93,0x60,0x0,0x0,0x0, - 0x0,0x22,0x55,0xe2,0xf0,0x0,0x0,0x0,0x0,0x23,0x6a,0xaf,0xe0,0x0,0x0,0x0, - 0x0,0x24,0x35,0xc4,0xf0,0x0,0x0,0x0,0x0,0x25,0x4a,0x91,0xe0,0x0,0x0,0x0, - 0x0,0x26,0x15,0xa6,0xf0,0x0,0x0,0x0,0x0,0x27,0x2a,0x73,0xe0,0x0,0x0,0x0, - 0x0,0x27,0xfe,0xc3,0x70,0x0,0x0,0x0,0x0,0x29,0xa,0x55,0xe0,0x0,0x0,0x0, - 0x0,0x29,0xde,0xa5,0x70,0x0,0x0,0x0,0x0,0x2a,0xea,0x37,0xe0,0x0,0x0,0x0, - 0x0,0x2b,0xbe,0x87,0x70,0x0,0x0,0x0,0x0,0x2c,0xd3,0x54,0x60,0x0,0x0,0x0, - 0x0,0x2d,0x9e,0x69,0x70,0x0,0x0,0x0,0x0,0x2e,0xb3,0x36,0x60,0x0,0x0,0x0, - 0x0,0x2f,0x7e,0x4b,0x70,0x0,0x0,0x0,0x0,0x30,0x93,0x18,0x60,0x0,0x0,0x0, - 0x0,0x31,0x67,0x67,0xf0,0x0,0x0,0x0,0x0,0x32,0x72,0xfa,0x60,0x0,0x0,0x0, - 0x0,0x33,0x47,0x49,0xf0,0x0,0x0,0x0,0x0,0x34,0x52,0xdc,0x60,0x0,0x0,0x0, - 0x0,0x35,0x27,0x2b,0xf0,0x0,0x0,0x0,0x0,0x36,0x32,0xbe,0x60,0x0,0x0,0x0, - 0x0,0x37,0x7,0xd,0xf0,0x0,0x0,0x0,0x0,0x38,0x1b,0xda,0xe0,0x0,0x0,0x0, - 0x0,0x38,0xe6,0xef,0xf0,0x0,0x0,0x0,0x0,0x39,0xfb,0xbc,0xe0,0x0,0x0,0x0, - 0x0,0x3a,0xc6,0xd1,0xf0,0x0,0x0,0x0,0x0,0x3b,0xdb,0x9e,0xe0,0x0,0x0,0x0, - 0x0,0x3c,0xaf,0xee,0x70,0x0,0x0,0x0,0x0,0x3d,0xbb,0x80,0xe0,0x0,0x0,0x0, - 0x0,0x3e,0x8f,0xd0,0x70,0x0,0x0,0x0,0x0,0x3f,0x9b,0x62,0xe0,0x0,0x0,0x0, - 0x0,0x40,0x6f,0xb2,0x70,0x0,0x0,0x0,0x0,0x41,0x84,0x7f,0x60,0x0,0x0,0x0, - 0x0,0x42,0x4f,0x94,0x70,0x0,0x0,0x0,0x0,0x43,0x64,0x61,0x60,0x0,0x0,0x0, - 0x0,0x44,0x2f,0x76,0x70,0x0,0x0,0x0,0x0,0x45,0x44,0x43,0x60,0x0,0x0,0x0, - 0x0,0x45,0xf3,0xa8,0xf0,0x0,0x0,0x0,0x0,0x47,0x2d,0x5f,0xe0,0x0,0x0,0x0, - 0x0,0x47,0xd3,0x8a,0xf0,0x0,0x0,0x0,0x0,0x49,0xd,0x41,0xe0,0x0,0x0,0x0, - 0x0,0x49,0xb3,0x6c,0xf0,0x0,0x0,0x0,0x0,0x4a,0xed,0x23,0xe0,0x0,0x0,0x0, - 0x0,0x4b,0x9c,0x89,0x70,0x0,0x0,0x0,0x0,0x4c,0xd6,0x40,0x60,0x0,0x0,0x0, - 0x0,0x4d,0x7c,0x6b,0x70,0x0,0x0,0x0,0x0,0x4e,0xb6,0x22,0x60,0x0,0x0,0x0, - 0x0,0x4f,0x5c,0x4d,0x70,0x0,0x0,0x0,0x0,0x50,0x96,0x4,0x60,0x0,0x0,0x0, - 0x0,0x51,0x3c,0x2f,0x70,0x0,0x0,0x0,0x0,0x52,0x75,0xe6,0x60,0x0,0x0,0x0, - 0x0,0x53,0x1c,0x11,0x70,0x0,0x0,0x0,0x0,0x54,0x55,0xc8,0x60,0x0,0x0,0x0, - 0x0,0x54,0xfb,0xf3,0x70,0x0,0x0,0x0,0x0,0x56,0x35,0xaa,0x60,0x0,0x0,0x0, - 0x0,0x56,0xe5,0xf,0xf0,0x0,0x0,0x0,0x0,0x58,0x1e,0xc6,0xe0,0x0,0x0,0x0, - 0x0,0x58,0xc4,0xf1,0xf0,0x0,0x0,0x0,0x0,0x59,0xfe,0xa8,0xe0,0x0,0x0,0x0, - 0x0,0x5a,0xa4,0xd3,0xf0,0x0,0x0,0x0,0x0,0x5b,0xde,0x8a,0xe0,0x0,0x0,0x0, - 0x0,0x5c,0x84,0xb5,0xf0,0x0,0x0,0x0,0x0,0x5d,0xbe,0x6c,0xe0,0x0,0x0,0x0, - 0x0,0x5e,0x64,0x97,0xf0,0x0,0x0,0x0,0x0,0x5f,0x9e,0x4e,0xe0,0x0,0x0,0x0, - 0x0,0x60,0x4d,0xb4,0x70,0x0,0x0,0x0,0x0,0x61,0x87,0x6b,0x60,0x0,0x0,0x0, - 0x0,0x62,0x2d,0x96,0x70,0x0,0x0,0x0,0x0,0x63,0x67,0x4d,0x60,0x0,0x0,0x0, - 0x0,0x64,0xd,0x78,0x70,0x0,0x0,0x0,0x0,0x65,0x47,0x2f,0x60,0x0,0x0,0x0, - 0x0,0x65,0xed,0x5a,0x70,0x0,0x0,0x0,0x0,0x67,0x27,0x11,0x60,0x0,0x0,0x0, - 0x0,0x67,0xcd,0x3c,0x70,0x0,0x0,0x0,0x0,0x69,0x6,0xf3,0x60,0x0,0x0,0x0, - 0x0,0x69,0xad,0x1e,0x70,0x0,0x0,0x0,0x0,0x6a,0xe6,0xd5,0x60,0x0,0x0,0x0, - 0x0,0x6b,0x96,0x3a,0xf0,0x0,0x0,0x0,0x0,0x6c,0xcf,0xf1,0xe0,0x0,0x0,0x0, - 0x0,0x6d,0x76,0x1c,0xf0,0x0,0x0,0x0,0x0,0x6e,0xaf,0xd3,0xe0,0x0,0x0,0x0, - 0x0,0x6f,0x55,0xfe,0xf0,0x0,0x0,0x0,0x0,0x70,0x8f,0xb5,0xe0,0x0,0x0,0x0, - 0x0,0x71,0x35,0xe0,0xf0,0x0,0x0,0x0,0x0,0x72,0x6f,0x97,0xe0,0x0,0x0,0x0, - 0x0,0x73,0x15,0xc2,0xf0,0x0,0x0,0x0,0x0,0x74,0x4f,0x79,0xe0,0x0,0x0,0x0, - 0x0,0x74,0xfe,0xdf,0x70,0x0,0x0,0x0,0x0,0x76,0x38,0x96,0x60,0x0,0x0,0x0, - 0x0,0x76,0xde,0xc1,0x70,0x0,0x0,0x0,0x0,0x78,0x18,0x78,0x60,0x0,0x0,0x0, - 0x0,0x78,0xbe,0xa3,0x70,0x0,0x0,0x0,0x0,0x79,0xf8,0x5a,0x60,0x0,0x0,0x0, - 0x0,0x7a,0x9e,0x85,0x70,0x0,0x0,0x0,0x0,0x7b,0xd8,0x3c,0x60,0x0,0x0,0x0, - 0x0,0x7c,0x7e,0x67,0x70,0x0,0x0,0x0,0x0,0x7d,0xb8,0x1e,0x60,0x0,0x0,0x0, - 0x0,0x7e,0x5e,0x49,0x70,0x0,0x0,0x0,0x0,0x7f,0x98,0x0,0x60,0x0,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x1,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0xff,0xff,0xaf,0x9a,0x0,0x0,0xff,0xff,0xb9,0xb0,0x1,0x4,0xff,0xff,0xab,0xa0, - 0x0,0x8,0xff,0xff,0xb9,0xb0,0x1,0xc,0xff,0xff,0xb9,0xb0,0x1,0x10,0xff,0xff, - 0xb9,0xb0,0x0,0x14,0xff,0xff,0xc7,0xc0,0x1,0x18,0x4c,0x4d,0x54,0x0,0x43,0x44, - 0x54,0x0,0x43,0x53,0x54,0x0,0x43,0x57,0x54,0x0,0x43,0x50,0x54,0x0,0x45,0x53, - 0x54,0x0,0x45,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, - 0x0,0x1,0x0,0x0,0xa,0x45,0x53,0x54,0x35,0x45,0x44,0x54,0x2c,0x4d,0x33,0x2e, - 0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Danmarkshavn - 0x0,0x0,0x2,0xca, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x23,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x80,0x0,0x0,0x0,0x9b, - 0x80,0x49,0x0,0x13,0x4d,0x7c,0x50,0x14,0x33,0xfa,0x90,0x15,0x23,0xeb,0x90,0x16, - 0x13,0xdc,0x90,0x17,0x3,0xcd,0x90,0x17,0xf3,0xbe,0x90,0x18,0xe3,0xaf,0x90,0x19, - 0xd3,0xa0,0x90,0x1a,0xc3,0x91,0x90,0x1b,0xbc,0xbd,0x10,0x1c,0xac,0xae,0x10,0x1d, - 0x9c,0x9f,0x10,0x1e,0x8c,0x90,0x10,0x1f,0x7c,0x81,0x10,0x20,0x6c,0x72,0x10,0x21, - 0x5c,0x63,0x10,0x22,0x4c,0x54,0x10,0x23,0x3c,0x45,0x10,0x24,0x2c,0x36,0x10,0x25, - 0x1c,0x27,0x10,0x26,0xc,0x18,0x10,0x27,0x5,0x43,0x90,0x27,0xf5,0x34,0x90,0x28, - 0xe5,0x25,0x90,0x29,0xd5,0x16,0x90,0x2a,0xc5,0x7,0x90,0x2b,0xb4,0xf8,0x90,0x2c, - 0xa4,0xe9,0x90,0x2d,0x94,0xda,0x90,0x2e,0x84,0xcb,0x90,0x2f,0x74,0xbc,0x90,0x30, - 0x64,0xad,0x90,0x30,0xe7,0x4e,0x30,0x0,0x1,0x4,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x5,0xff,0xff,0xee,0x80,0x0,0x0, - 0xff,0xff,0xd5,0xd0,0x0,0x4,0xff,0xff,0xd5,0xd0,0x0,0x4,0xff,0xff,0xe3,0xe0, - 0x1,0x8,0xff,0xff,0xe3,0xe0,0x1,0x8,0x0,0x0,0x0,0x0,0x0,0xd,0x4c,0x4d, - 0x54,0x0,0x57,0x47,0x54,0x0,0x57,0x47,0x53,0x54,0x0,0x47,0x4d,0x54,0x0,0x0, - 0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x54,0x5a,0x69,0x66,0x32, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x23,0x0, - 0x0,0x0,0x6,0x0,0x0,0x0,0x11,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff, - 0xff,0xff,0xff,0x9b,0x80,0x49,0x0,0x0,0x0,0x0,0x0,0x13,0x4d,0x7c,0x50,0x0, - 0x0,0x0,0x0,0x14,0x33,0xfa,0x90,0x0,0x0,0x0,0x0,0x15,0x23,0xeb,0x90,0x0, - 0x0,0x0,0x0,0x16,0x13,0xdc,0x90,0x0,0x0,0x0,0x0,0x17,0x3,0xcd,0x90,0x0, - 0x0,0x0,0x0,0x17,0xf3,0xbe,0x90,0x0,0x0,0x0,0x0,0x18,0xe3,0xaf,0x90,0x0, - 0x0,0x0,0x0,0x19,0xd3,0xa0,0x90,0x0,0x0,0x0,0x0,0x1a,0xc3,0x91,0x90,0x0, - 0x0,0x0,0x0,0x1b,0xbc,0xbd,0x10,0x0,0x0,0x0,0x0,0x1c,0xac,0xae,0x10,0x0, - 0x0,0x0,0x0,0x1d,0x9c,0x9f,0x10,0x0,0x0,0x0,0x0,0x1e,0x8c,0x90,0x10,0x0, - 0x0,0x0,0x0,0x1f,0x7c,0x81,0x10,0x0,0x0,0x0,0x0,0x20,0x6c,0x72,0x10,0x0, - 0x0,0x0,0x0,0x21,0x5c,0x63,0x10,0x0,0x0,0x0,0x0,0x22,0x4c,0x54,0x10,0x0, - 0x0,0x0,0x0,0x23,0x3c,0x45,0x10,0x0,0x0,0x0,0x0,0x24,0x2c,0x36,0x10,0x0, - 0x0,0x0,0x0,0x25,0x1c,0x27,0x10,0x0,0x0,0x0,0x0,0x26,0xc,0x18,0x10,0x0, - 0x0,0x0,0x0,0x27,0x5,0x43,0x90,0x0,0x0,0x0,0x0,0x27,0xf5,0x34,0x90,0x0, - 0x0,0x0,0x0,0x28,0xe5,0x25,0x90,0x0,0x0,0x0,0x0,0x29,0xd5,0x16,0x90,0x0, - 0x0,0x0,0x0,0x2a,0xc5,0x7,0x90,0x0,0x0,0x0,0x0,0x2b,0xb4,0xf8,0x90,0x0, - 0x0,0x0,0x0,0x2c,0xa4,0xe9,0x90,0x0,0x0,0x0,0x0,0x2d,0x94,0xda,0x90,0x0, - 0x0,0x0,0x0,0x2e,0x84,0xcb,0x90,0x0,0x0,0x0,0x0,0x2f,0x74,0xbc,0x90,0x0, - 0x0,0x0,0x0,0x30,0x64,0xad,0x90,0x0,0x0,0x0,0x0,0x30,0xe7,0x4e,0x30,0x0, - 0x1,0x4,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x5,0xff,0xff,0xee,0x80,0x0,0x0,0xff,0xff,0xd5,0xd0,0x0,0x4,0xff,0xff, - 0xd5,0xd0,0x0,0x4,0xff,0xff,0xe3,0xe0,0x1,0x8,0xff,0xff,0xe3,0xe0,0x1,0x8, - 0x0,0x0,0x0,0x0,0x0,0xd,0x4c,0x4d,0x54,0x0,0x57,0x47,0x54,0x0,0x57,0x47, - 0x53,0x54,0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x1, - 0x1,0x0,0x0,0xa,0x47,0x4d,0x54,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Cambridge_Bay - 0x0,0x0,0x8,0x32, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x7c,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x25,0x80,0x0,0x0,0x0,0xa1, - 0xf2,0xcd,0x80,0xcb,0x89,0xc,0x90,0xd2,0x23,0xf4,0x70,0xd2,0x61,0x18,0x0,0xf7, - 0x2f,0x5a,0x70,0xf8,0x28,0x85,0xf0,0x13,0x69,0x64,0x10,0x14,0x59,0x47,0x0,0x15, - 0x49,0x46,0x10,0x16,0x39,0x29,0x0,0x17,0x29,0x28,0x10,0x18,0x22,0x45,0x80,0x19, - 0x9,0xa,0x10,0x1a,0x2,0x27,0x80,0x1a,0xf2,0x26,0x90,0x1b,0xe2,0x9,0x80,0x1c, - 0xd2,0x8,0x90,0x1d,0xc1,0xeb,0x80,0x1e,0xb1,0xea,0x90,0x1f,0xa1,0xcd,0x80,0x20, - 0x76,0x1d,0x10,0x21,0x81,0xaf,0x80,0x22,0x55,0xff,0x10,0x23,0x6a,0xcc,0x0,0x24, - 0x35,0xe1,0x10,0x25,0x4a,0xae,0x0,0x26,0x15,0xc3,0x10,0x27,0x2a,0x90,0x0,0x27, - 0xfe,0xdf,0x90,0x29,0xa,0x72,0x0,0x29,0xde,0xc1,0x90,0x2a,0xea,0x54,0x0,0x2b, - 0xbe,0xa3,0x90,0x2c,0xd3,0x70,0x80,0x2d,0x9e,0x85,0x90,0x2e,0xb3,0x52,0x80,0x2f, - 0x7e,0x67,0x90,0x30,0x93,0x34,0x80,0x31,0x67,0x84,0x10,0x32,0x73,0x16,0x80,0x33, - 0x47,0x66,0x10,0x34,0x52,0xf8,0x80,0x35,0x27,0x48,0x10,0x36,0x32,0xda,0x80,0x37, - 0x7,0x2a,0x10,0x38,0x1b,0xf7,0x0,0x38,0xe6,0xfe,0x0,0x39,0xfb,0xca,0xf0,0x3a, - 0x4,0xe9,0x50,0x3a,0xc6,0xee,0x10,0x3b,0xdb,0xbb,0x0,0x3c,0xb0,0xa,0x90,0x3d, - 0xbb,0x9d,0x0,0x3e,0x8f,0xec,0x90,0x3f,0x9b,0x7f,0x0,0x40,0x6f,0xce,0x90,0x41, - 0x84,0x9b,0x80,0x42,0x4f,0xb0,0x90,0x43,0x64,0x7d,0x80,0x44,0x2f,0x92,0x90,0x45, - 0x44,0x5f,0x80,0x45,0xf3,0xc5,0x10,0x47,0x2d,0x7c,0x0,0x47,0xd3,0xa7,0x10,0x49, - 0xd,0x5e,0x0,0x49,0xb3,0x89,0x10,0x4a,0xed,0x40,0x0,0x4b,0x9c,0xa5,0x90,0x4c, - 0xd6,0x5c,0x80,0x4d,0x7c,0x87,0x90,0x4e,0xb6,0x3e,0x80,0x4f,0x5c,0x69,0x90,0x50, - 0x96,0x20,0x80,0x51,0x3c,0x4b,0x90,0x52,0x76,0x2,0x80,0x53,0x1c,0x2d,0x90,0x54, - 0x55,0xe4,0x80,0x54,0xfc,0xf,0x90,0x56,0x35,0xc6,0x80,0x56,0xe5,0x2c,0x10,0x58, - 0x1e,0xe3,0x0,0x58,0xc5,0xe,0x10,0x59,0xfe,0xc5,0x0,0x5a,0xa4,0xf0,0x10,0x5b, - 0xde,0xa7,0x0,0x5c,0x84,0xd2,0x10,0x5d,0xbe,0x89,0x0,0x5e,0x64,0xb4,0x10,0x5f, - 0x9e,0x6b,0x0,0x60,0x4d,0xd0,0x90,0x61,0x87,0x87,0x80,0x62,0x2d,0xb2,0x90,0x63, - 0x67,0x69,0x80,0x64,0xd,0x94,0x90,0x65,0x47,0x4b,0x80,0x65,0xed,0x76,0x90,0x67, - 0x27,0x2d,0x80,0x67,0xcd,0x58,0x90,0x69,0x7,0xf,0x80,0x69,0xad,0x3a,0x90,0x6a, - 0xe6,0xf1,0x80,0x6b,0x96,0x57,0x10,0x6c,0xd0,0xe,0x0,0x6d,0x76,0x39,0x10,0x6e, - 0xaf,0xf0,0x0,0x6f,0x56,0x1b,0x10,0x70,0x8f,0xd2,0x0,0x71,0x35,0xfd,0x10,0x72, - 0x6f,0xb4,0x0,0x73,0x15,0xdf,0x10,0x74,0x4f,0x96,0x0,0x74,0xfe,0xfb,0x90,0x76, - 0x38,0xb2,0x80,0x76,0xde,0xdd,0x90,0x78,0x18,0x94,0x80,0x78,0xbe,0xbf,0x90,0x79, - 0xf8,0x76,0x80,0x7a,0x9e,0xa1,0x90,0x7b,0xd8,0x58,0x80,0x7c,0x7e,0x83,0x90,0x7d, - 0xb8,0x3a,0x80,0x7e,0x5e,0x65,0x90,0x7f,0x98,0x1c,0x80,0x0,0x3,0x1,0x2,0x3, - 0x4,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3, - 0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3, - 0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x7,0x6,0x8,0x7,0x5,0x3,0x5, - 0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5, - 0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5, - 0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5, - 0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5, - 0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xab, - 0xa0,0x1,0x4,0xff,0xff,0xab,0xa0,0x1,0x8,0xff,0xff,0x9d,0x90,0x0,0xc,0xff, - 0xff,0xb9,0xb0,0x1,0x10,0xff,0xff,0xab,0xa0,0x1,0x15,0xff,0xff,0xb9,0xb0,0x1, - 0x19,0xff,0xff,0xab,0xa0,0x0,0x1d,0xff,0xff,0xb9,0xb0,0x0,0x21,0xff,0xff,0xab, - 0xa0,0x1,0x15,0xff,0xff,0x9d,0x90,0x0,0xc,0x2d,0x30,0x30,0x0,0x4d,0x57,0x54, - 0x0,0x4d,0x50,0x54,0x0,0x4d,0x53,0x54,0x0,0x4d,0x44,0x44,0x54,0x0,0x4d,0x44, - 0x54,0x0,0x43,0x44,0x54,0x0,0x43,0x53,0x54,0x0,0x45,0x53,0x54,0x0,0x0,0x0, - 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0xb, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7c,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x25, - 0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xa1,0xf2,0xcd,0x80, - 0xff,0xff,0xff,0xff,0xcb,0x89,0xc,0x90,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70, - 0xff,0xff,0xff,0xff,0xd2,0x61,0x18,0x0,0xff,0xff,0xff,0xff,0xf7,0x2f,0x5a,0x70, - 0xff,0xff,0xff,0xff,0xf8,0x28,0x85,0xf0,0x0,0x0,0x0,0x0,0x13,0x69,0x64,0x10, - 0x0,0x0,0x0,0x0,0x14,0x59,0x47,0x0,0x0,0x0,0x0,0x0,0x15,0x49,0x46,0x10, - 0x0,0x0,0x0,0x0,0x16,0x39,0x29,0x0,0x0,0x0,0x0,0x0,0x17,0x29,0x28,0x10, - 0x0,0x0,0x0,0x0,0x18,0x22,0x45,0x80,0x0,0x0,0x0,0x0,0x19,0x9,0xa,0x10, - 0x0,0x0,0x0,0x0,0x1a,0x2,0x27,0x80,0x0,0x0,0x0,0x0,0x1a,0xf2,0x26,0x90, - 0x0,0x0,0x0,0x0,0x1b,0xe2,0x9,0x80,0x0,0x0,0x0,0x0,0x1c,0xd2,0x8,0x90, - 0x0,0x0,0x0,0x0,0x1d,0xc1,0xeb,0x80,0x0,0x0,0x0,0x0,0x1e,0xb1,0xea,0x90, - 0x0,0x0,0x0,0x0,0x1f,0xa1,0xcd,0x80,0x0,0x0,0x0,0x0,0x20,0x76,0x1d,0x10, - 0x0,0x0,0x0,0x0,0x21,0x81,0xaf,0x80,0x0,0x0,0x0,0x0,0x22,0x55,0xff,0x10, - 0x0,0x0,0x0,0x0,0x23,0x6a,0xcc,0x0,0x0,0x0,0x0,0x0,0x24,0x35,0xe1,0x10, - 0x0,0x0,0x0,0x0,0x25,0x4a,0xae,0x0,0x0,0x0,0x0,0x0,0x26,0x15,0xc3,0x10, - 0x0,0x0,0x0,0x0,0x27,0x2a,0x90,0x0,0x0,0x0,0x0,0x0,0x27,0xfe,0xdf,0x90, - 0x0,0x0,0x0,0x0,0x29,0xa,0x72,0x0,0x0,0x0,0x0,0x0,0x29,0xde,0xc1,0x90, - 0x0,0x0,0x0,0x0,0x2a,0xea,0x54,0x0,0x0,0x0,0x0,0x0,0x2b,0xbe,0xa3,0x90, - 0x0,0x0,0x0,0x0,0x2c,0xd3,0x70,0x80,0x0,0x0,0x0,0x0,0x2d,0x9e,0x85,0x90, - 0x0,0x0,0x0,0x0,0x2e,0xb3,0x52,0x80,0x0,0x0,0x0,0x0,0x2f,0x7e,0x67,0x90, - 0x0,0x0,0x0,0x0,0x30,0x93,0x34,0x80,0x0,0x0,0x0,0x0,0x31,0x67,0x84,0x10, - 0x0,0x0,0x0,0x0,0x32,0x73,0x16,0x80,0x0,0x0,0x0,0x0,0x33,0x47,0x66,0x10, - 0x0,0x0,0x0,0x0,0x34,0x52,0xf8,0x80,0x0,0x0,0x0,0x0,0x35,0x27,0x48,0x10, - 0x0,0x0,0x0,0x0,0x36,0x32,0xda,0x80,0x0,0x0,0x0,0x0,0x37,0x7,0x2a,0x10, - 0x0,0x0,0x0,0x0,0x38,0x1b,0xf7,0x0,0x0,0x0,0x0,0x0,0x38,0xe6,0xfe,0x0, - 0x0,0x0,0x0,0x0,0x39,0xfb,0xca,0xf0,0x0,0x0,0x0,0x0,0x3a,0x4,0xe9,0x50, - 0x0,0x0,0x0,0x0,0x3a,0xc6,0xee,0x10,0x0,0x0,0x0,0x0,0x3b,0xdb,0xbb,0x0, - 0x0,0x0,0x0,0x0,0x3c,0xb0,0xa,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x9d,0x0, - 0x0,0x0,0x0,0x0,0x3e,0x8f,0xec,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x7f,0x0, - 0x0,0x0,0x0,0x0,0x40,0x6f,0xce,0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x9b,0x80, - 0x0,0x0,0x0,0x0,0x42,0x4f,0xb0,0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x7d,0x80, - 0x0,0x0,0x0,0x0,0x44,0x2f,0x92,0x90,0x0,0x0,0x0,0x0,0x45,0x44,0x5f,0x80, - 0x0,0x0,0x0,0x0,0x45,0xf3,0xc5,0x10,0x0,0x0,0x0,0x0,0x47,0x2d,0x7c,0x0, - 0x0,0x0,0x0,0x0,0x47,0xd3,0xa7,0x10,0x0,0x0,0x0,0x0,0x49,0xd,0x5e,0x0, - 0x0,0x0,0x0,0x0,0x49,0xb3,0x89,0x10,0x0,0x0,0x0,0x0,0x4a,0xed,0x40,0x0, - 0x0,0x0,0x0,0x0,0x4b,0x9c,0xa5,0x90,0x0,0x0,0x0,0x0,0x4c,0xd6,0x5c,0x80, - 0x0,0x0,0x0,0x0,0x4d,0x7c,0x87,0x90,0x0,0x0,0x0,0x0,0x4e,0xb6,0x3e,0x80, - 0x0,0x0,0x0,0x0,0x4f,0x5c,0x69,0x90,0x0,0x0,0x0,0x0,0x50,0x96,0x20,0x80, - 0x0,0x0,0x0,0x0,0x51,0x3c,0x4b,0x90,0x0,0x0,0x0,0x0,0x52,0x76,0x2,0x80, - 0x0,0x0,0x0,0x0,0x53,0x1c,0x2d,0x90,0x0,0x0,0x0,0x0,0x54,0x55,0xe4,0x80, - 0x0,0x0,0x0,0x0,0x54,0xfc,0xf,0x90,0x0,0x0,0x0,0x0,0x56,0x35,0xc6,0x80, - 0x0,0x0,0x0,0x0,0x56,0xe5,0x2c,0x10,0x0,0x0,0x0,0x0,0x58,0x1e,0xe3,0x0, - 0x0,0x0,0x0,0x0,0x58,0xc5,0xe,0x10,0x0,0x0,0x0,0x0,0x59,0xfe,0xc5,0x0, - 0x0,0x0,0x0,0x0,0x5a,0xa4,0xf0,0x10,0x0,0x0,0x0,0x0,0x5b,0xde,0xa7,0x0, - 0x0,0x0,0x0,0x0,0x5c,0x84,0xd2,0x10,0x0,0x0,0x0,0x0,0x5d,0xbe,0x89,0x0, - 0x0,0x0,0x0,0x0,0x5e,0x64,0xb4,0x10,0x0,0x0,0x0,0x0,0x5f,0x9e,0x6b,0x0, - 0x0,0x0,0x0,0x0,0x60,0x4d,0xd0,0x90,0x0,0x0,0x0,0x0,0x61,0x87,0x87,0x80, - 0x0,0x0,0x0,0x0,0x62,0x2d,0xb2,0x90,0x0,0x0,0x0,0x0,0x63,0x67,0x69,0x80, - 0x0,0x0,0x0,0x0,0x64,0xd,0x94,0x90,0x0,0x0,0x0,0x0,0x65,0x47,0x4b,0x80, - 0x0,0x0,0x0,0x0,0x65,0xed,0x76,0x90,0x0,0x0,0x0,0x0,0x67,0x27,0x2d,0x80, - 0x0,0x0,0x0,0x0,0x67,0xcd,0x58,0x90,0x0,0x0,0x0,0x0,0x69,0x7,0xf,0x80, - 0x0,0x0,0x0,0x0,0x69,0xad,0x3a,0x90,0x0,0x0,0x0,0x0,0x6a,0xe6,0xf1,0x80, - 0x0,0x0,0x0,0x0,0x6b,0x96,0x57,0x10,0x0,0x0,0x0,0x0,0x6c,0xd0,0xe,0x0, - 0x0,0x0,0x0,0x0,0x6d,0x76,0x39,0x10,0x0,0x0,0x0,0x0,0x6e,0xaf,0xf0,0x0, - 0x0,0x0,0x0,0x0,0x6f,0x56,0x1b,0x10,0x0,0x0,0x0,0x0,0x70,0x8f,0xd2,0x0, - 0x0,0x0,0x0,0x0,0x71,0x35,0xfd,0x10,0x0,0x0,0x0,0x0,0x72,0x6f,0xb4,0x0, - 0x0,0x0,0x0,0x0,0x73,0x15,0xdf,0x10,0x0,0x0,0x0,0x0,0x74,0x4f,0x96,0x0, - 0x0,0x0,0x0,0x0,0x74,0xfe,0xfb,0x90,0x0,0x0,0x0,0x0,0x76,0x38,0xb2,0x80, - 0x0,0x0,0x0,0x0,0x76,0xde,0xdd,0x90,0x0,0x0,0x0,0x0,0x78,0x18,0x94,0x80, - 0x0,0x0,0x0,0x0,0x78,0xbe,0xbf,0x90,0x0,0x0,0x0,0x0,0x79,0xf8,0x76,0x80, - 0x0,0x0,0x0,0x0,0x7a,0x9e,0xa1,0x90,0x0,0x0,0x0,0x0,0x7b,0xd8,0x58,0x80, - 0x0,0x0,0x0,0x0,0x7c,0x7e,0x83,0x90,0x0,0x0,0x0,0x0,0x7d,0xb8,0x3a,0x80, - 0x0,0x0,0x0,0x0,0x7e,0x5e,0x65,0x90,0x0,0x0,0x0,0x0,0x7f,0x98,0x1c,0x80, - 0x0,0x3,0x1,0x2,0x3,0x4,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5, - 0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5, - 0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x7,0x6, - 0x8,0x7,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3, - 0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3, - 0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3, - 0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3, - 0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x5,0x3,0x0,0x0,0x0,0x0, - 0x0,0x0,0xff,0xff,0xab,0xa0,0x1,0x4,0xff,0xff,0xab,0xa0,0x1,0x8,0xff,0xff, - 0x9d,0x90,0x0,0xc,0xff,0xff,0xb9,0xb0,0x1,0x10,0xff,0xff,0xab,0xa0,0x1,0x15, - 0xff,0xff,0xb9,0xb0,0x1,0x19,0xff,0xff,0xab,0xa0,0x0,0x1d,0xff,0xff,0xb9,0xb0, - 0x0,0x21,0xff,0xff,0xab,0xa0,0x1,0x15,0xff,0xff,0x9d,0x90,0x0,0xc,0x2d,0x30, - 0x30,0x0,0x4d,0x57,0x54,0x0,0x4d,0x50,0x54,0x0,0x4d,0x53,0x54,0x0,0x4d,0x44, - 0x44,0x54,0x0,0x4d,0x44,0x54,0x0,0x43,0x44,0x54,0x0,0x43,0x53,0x54,0x0,0x45, - 0x53,0x54,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x4d,0x53,0x54,0x37,0x4d,0x44, - 0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30, - 0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Cayman - 0x0,0x0,0x0,0xcb, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0x8b, - 0xf4,0x61,0xe8,0x1,0x2,0xff,0xff,0xb5,0x70,0x0,0x0,0xff,0xff,0xb5,0x18,0x0, - 0x4,0xff,0xff,0xb9,0xb0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x43,0x4d,0x54,0x0,0x45, - 0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0, - 0x3,0x0,0x0,0x0,0xc,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff, - 0xff,0x69,0x87,0x26,0x10,0xff,0xff,0xff,0xff,0x8b,0xf4,0x61,0xe8,0x0,0x1,0x2, - 0xff,0xff,0xb5,0x70,0x0,0x0,0xff,0xff,0xb5,0x18,0x0,0x4,0xff,0xff,0xb9,0xb0, - 0x0,0x8,0x4c,0x4d,0x54,0x0,0x43,0x4d,0x54,0x0,0x45,0x53,0x54,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0xa,0x45,0x53,0x54,0x35,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Antigua - 0x0,0x0,0x0,0xaa, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x93, - 0x37,0x33,0xac,0x0,0x1,0xff,0xff,0xc6,0x54,0x0,0x0,0xff,0xff,0xc7,0xc0,0x0, - 0x4,0x4c,0x4d,0x54,0x0,0x41,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, - 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0x93,0x37,0x33,0xac,0x0,0x1,0xff,0xff,0xc6,0x54,0x0, - 0x0,0xff,0xff,0xc7,0xc0,0x0,0x4,0x4c,0x4d,0x54,0x0,0x41,0x53,0x54,0x0,0x0, - 0x0,0x0,0x0,0xa,0x41,0x53,0x54,0x34,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Cordoba - 0x0,0x0,0x4,0x69, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x3d,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x16,0x80,0x0,0x0,0x0,0xa2, + 0x0,0x0,0x3f,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0xa2, 0x92,0x8f,0x30,0xb6,0x7b,0x52,0x40,0xb7,0x1a,0xc9,0xb0,0xb8,0x1e,0x8f,0x40,0xb8, 0xd4,0x70,0x30,0xba,0x17,0x7d,0xc0,0xba,0xb5,0xa3,0xb0,0xbb,0xf8,0xb1,0x40,0xbc, 0x96,0xd7,0x30,0xbd,0xd9,0xe4,0xc0,0xbe,0x78,0xa,0xb0,0xbf,0xbb,0x18,0x40,0xc0, @@ -31261,23 +26988,23 @@ static const unsigned char qt_resource_data[] = { 0xe6,0x9f,0xb0,0xf8,0x13,0x43,0xc0,0xf8,0xc7,0xd3,0x30,0xf9,0xf4,0x77,0x40,0xfa, 0xd3,0x36,0xb0,0xfb,0xc3,0x35,0xc0,0xfc,0xbc,0x53,0x30,0xfd,0xac,0x52,0x40,0xfe, 0x9c,0x35,0x30,0xff,0x8c,0x34,0x40,0x7,0xa3,0x4a,0xb0,0x8,0x24,0x6f,0xa0,0x23, - 0x94,0xb5,0xb0,0x24,0x10,0x94,0xa0,0x25,0x37,0xf2,0xb0,0x25,0xf0,0x76,0xa0,0x27, - 0x21,0xf,0x30,0x27,0xd0,0x58,0xa0,0x29,0x0,0xff,0x40,0x29,0xb0,0x3a,0xa0,0x2a, - 0xe0,0xd3,0x30,0x2b,0x99,0x57,0x20,0x37,0xf6,0xc6,0xb0,0x38,0xbf,0x2a,0xb0,0x47, - 0x77,0x9,0xb0,0x47,0xdc,0x7f,0x20,0x48,0xfa,0xa2,0xb0,0x49,0xbc,0x61,0x20,0x1, + 0x94,0xb5,0xb0,0x24,0x10,0x94,0xa0,0x25,0x37,0xf2,0xb0,0x25,0xfd,0xa5,0xa0,0x27, + 0x19,0x34,0x40,0x27,0xcd,0xc3,0xb0,0x28,0x47,0x1b,0xc0,0x37,0xf6,0xc6,0xb0,0x38, + 0xbf,0x2a,0xb0,0x40,0xba,0x9f,0xb0,0x41,0x3,0x30,0x40,0x47,0x77,0x9,0xb0,0x47, + 0x93,0xfc,0xa0,0x47,0xd3,0x52,0xb0,0x48,0xf1,0x76,0x40,0x49,0xb3,0x34,0xb0,0x4a, + 0xd1,0x58,0x40,0x7f,0xff,0xff,0xff,0x1,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x6,0x4,0x5,0x4,0x5,0x3,0x5,0x4,0x5,0x4,0x5,0xff,0xff,0xc3,0xd0, - 0x0,0x0,0xff,0xff,0xc3,0xd0,0x0,0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0xff,0xff, - 0xd5,0xd0,0x1,0xc,0xff,0xff,0xe3,0xe0,0x1,0xc,0xff,0xff,0xd5,0xd0,0x0,0x8, - 0xff,0xff,0xc7,0xc0,0x0,0x11,0xff,0xff,0xd5,0xd0,0x0,0x8,0x4c,0x4d,0x54,0x0, - 0x43,0x4d,0x54,0x0,0x41,0x52,0x54,0x0,0x41,0x52,0x53,0x54,0x0,0x57,0x41,0x52, - 0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x2,0x5,0x4,0x5,0x4,0x5,0x4,0x2,0x3,0x2,0x5,0x3,0x5,0x2,0x5,0x4, + 0x3,0x2,0x3,0x2,0x5,0x5,0xff,0xff,0xc1,0xcc,0x0,0x0,0xff,0xff,0xc3,0xd0, + 0x0,0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0xff,0xff,0xd5,0xd0,0x1,0xc,0xff,0xff, + 0xe3,0xe0,0x1,0x10,0xff,0xff,0xd5,0xd0,0x0,0xc,0xff,0xff,0xd5,0xd0,0x1,0xc, + 0x4c,0x4d,0x54,0x0,0x43,0x4d,0x54,0x0,0x2d,0x30,0x34,0x0,0x2d,0x30,0x33,0x0, + 0x2d,0x30,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x3e,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x16,0xf8,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x72,0x9c,0xad,0xb0,0xff,0xff, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x40,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x14,0xf8,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x72,0x9c,0xaf,0xb4,0xff,0xff, 0xff,0xff,0xa2,0x92,0x8f,0x30,0xff,0xff,0xff,0xff,0xb6,0x7b,0x52,0x40,0xff,0xff, 0xff,0xff,0xb7,0x1a,0xc9,0xb0,0xff,0xff,0xff,0xff,0xb8,0x1e,0x8f,0x40,0xff,0xff, 0xff,0xff,0xb8,0xd4,0x70,0x30,0xff,0xff,0xff,0xff,0xba,0x17,0x7d,0xc0,0xff,0xff, @@ -31301,179 +27028,30 @@ static const unsigned char qt_resource_data[] = { 0xff,0xff,0xfe,0x9c,0x35,0x30,0xff,0xff,0xff,0xff,0xff,0x8c,0x34,0x40,0x0,0x0, 0x0,0x0,0x7,0xa3,0x4a,0xb0,0x0,0x0,0x0,0x0,0x8,0x24,0x6f,0xa0,0x0,0x0, 0x0,0x0,0x23,0x94,0xb5,0xb0,0x0,0x0,0x0,0x0,0x24,0x10,0x94,0xa0,0x0,0x0, - 0x0,0x0,0x25,0x37,0xf2,0xb0,0x0,0x0,0x0,0x0,0x25,0xf0,0x76,0xa0,0x0,0x0, - 0x0,0x0,0x27,0x21,0xf,0x30,0x0,0x0,0x0,0x0,0x27,0xd0,0x58,0xa0,0x0,0x0, - 0x0,0x0,0x29,0x0,0xff,0x40,0x0,0x0,0x0,0x0,0x29,0xb0,0x3a,0xa0,0x0,0x0, - 0x0,0x0,0x2a,0xe0,0xd3,0x30,0x0,0x0,0x0,0x0,0x2b,0x99,0x57,0x20,0x0,0x0, - 0x0,0x0,0x37,0xf6,0xc6,0xb0,0x0,0x0,0x0,0x0,0x38,0xbf,0x2a,0xb0,0x0,0x0, - 0x0,0x0,0x47,0x77,0x9,0xb0,0x0,0x0,0x0,0x0,0x47,0xdc,0x7f,0x20,0x0,0x0, - 0x0,0x0,0x48,0xfa,0xa2,0xb0,0x0,0x0,0x0,0x0,0x49,0xbc,0x61,0x20,0x0,0x1, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x6,0x4,0x5,0x4,0x5,0x3,0x5,0x4,0x5,0x4,0x5,0xff,0xff,0xc3,0xd0, - 0x0,0x0,0xff,0xff,0xc3,0xd0,0x0,0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0xff,0xff, - 0xd5,0xd0,0x1,0xc,0xff,0xff,0xe3,0xe0,0x1,0xc,0xff,0xff,0xd5,0xd0,0x0,0x8, - 0xff,0xff,0xc7,0xc0,0x0,0x11,0xff,0xff,0xd5,0xd0,0x0,0x8,0x4c,0x4d,0x54,0x0, - 0x43,0x4d,0x54,0x0,0x41,0x52,0x54,0x0,0x41,0x52,0x53,0x54,0x0,0x57,0x41,0x52, - 0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xa,0x41,0x52,0x54,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/La_Paz - 0x0,0x0,0x0,0xf3, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x3,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x11,0x80,0x0,0x0,0x0,0xb8, - 0x1e,0x96,0xe4,0xb8,0xee,0xd5,0xd4,0x1,0x2,0x3,0xff,0xff,0xc0,0x1c,0x0,0x0, - 0xff,0xff,0xc0,0x1c,0x0,0x4,0xff,0xff,0xce,0x2c,0x1,0x8,0xff,0xff,0xc7,0xc0, - 0x0,0xd,0x4c,0x4d,0x54,0x0,0x43,0x4d,0x54,0x0,0x42,0x4f,0x53,0x54,0x0,0x42, - 0x4f,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0, - 0x0,0x0,0x4,0x0,0x0,0x0,0x11,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff, - 0xff,0xff,0xff,0x69,0x87,0x1b,0x64,0xff,0xff,0xff,0xff,0xb8,0x1e,0x96,0xe4,0xff, - 0xff,0xff,0xff,0xb8,0xee,0xd5,0xd4,0x0,0x1,0x2,0x3,0xff,0xff,0xc0,0x1c,0x0, - 0x0,0xff,0xff,0xc0,0x1c,0x0,0x4,0xff,0xff,0xce,0x2c,0x1,0x8,0xff,0xff,0xc7, - 0xc0,0x0,0xd,0x4c,0x4d,0x54,0x0,0x43,0x4d,0x54,0x0,0x42,0x4f,0x53,0x54,0x0, - 0x42,0x4f,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x42,0x4f,0x54, - 0x34,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Iqaluit - 0x0,0x0,0x7,0xfe, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x7a,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x21,0x80,0x0,0x0,0x0,0xcc, - 0x6c,0xa1,0x80,0xd2,0x23,0xf4,0x70,0xd2,0x60,0xfb,0xe0,0xf7,0x2f,0x3e,0x50,0xf8, - 0x28,0x69,0xd0,0x13,0x69,0x47,0xf0,0x14,0x59,0x2a,0xe0,0x15,0x49,0x29,0xf0,0x16, - 0x39,0xc,0xe0,0x17,0x29,0xb,0xf0,0x18,0x22,0x29,0x60,0x19,0x8,0xed,0xf0,0x1a, - 0x2,0xb,0x60,0x1a,0xf2,0xa,0x70,0x1b,0xe1,0xed,0x60,0x1c,0xd1,0xec,0x70,0x1d, - 0xc1,0xcf,0x60,0x1e,0xb1,0xce,0x70,0x1f,0xa1,0xb1,0x60,0x20,0x76,0x0,0xf0,0x21, - 0x81,0x93,0x60,0x22,0x55,0xe2,0xf0,0x23,0x6a,0xaf,0xe0,0x24,0x35,0xc4,0xf0,0x25, - 0x4a,0x91,0xe0,0x26,0x15,0xa6,0xf0,0x27,0x2a,0x73,0xe0,0x27,0xfe,0xc3,0x70,0x29, - 0xa,0x55,0xe0,0x29,0xde,0xa5,0x70,0x2a,0xea,0x37,0xe0,0x2b,0xbe,0x87,0x70,0x2c, - 0xd3,0x54,0x60,0x2d,0x9e,0x69,0x70,0x2e,0xb3,0x36,0x60,0x2f,0x7e,0x4b,0x70,0x30, - 0x93,0x18,0x60,0x31,0x67,0x67,0xf0,0x32,0x72,0xfa,0x60,0x33,0x47,0x49,0xf0,0x34, - 0x52,0xdc,0x60,0x35,0x27,0x2b,0xf0,0x36,0x32,0xbe,0x60,0x37,0x7,0xd,0xf0,0x38, - 0x1b,0xda,0xe0,0x38,0xe6,0xfe,0x0,0x39,0xfb,0xca,0xf0,0x3a,0xc6,0xd1,0xf0,0x3b, - 0xdb,0x9e,0xe0,0x3c,0xaf,0xee,0x70,0x3d,0xbb,0x80,0xe0,0x3e,0x8f,0xd0,0x70,0x3f, - 0x9b,0x62,0xe0,0x40,0x6f,0xb2,0x70,0x41,0x84,0x7f,0x60,0x42,0x4f,0x94,0x70,0x43, - 0x64,0x61,0x60,0x44,0x2f,0x76,0x70,0x45,0x44,0x43,0x60,0x45,0xf3,0xa8,0xf0,0x47, - 0x2d,0x5f,0xe0,0x47,0xd3,0x8a,0xf0,0x49,0xd,0x41,0xe0,0x49,0xb3,0x6c,0xf0,0x4a, - 0xed,0x23,0xe0,0x4b,0x9c,0x89,0x70,0x4c,0xd6,0x40,0x60,0x4d,0x7c,0x6b,0x70,0x4e, - 0xb6,0x22,0x60,0x4f,0x5c,0x4d,0x70,0x50,0x96,0x4,0x60,0x51,0x3c,0x2f,0x70,0x52, - 0x75,0xe6,0x60,0x53,0x1c,0x11,0x70,0x54,0x55,0xc8,0x60,0x54,0xfb,0xf3,0x70,0x56, - 0x35,0xaa,0x60,0x56,0xe5,0xf,0xf0,0x58,0x1e,0xc6,0xe0,0x58,0xc4,0xf1,0xf0,0x59, - 0xfe,0xa8,0xe0,0x5a,0xa4,0xd3,0xf0,0x5b,0xde,0x8a,0xe0,0x5c,0x84,0xb5,0xf0,0x5d, - 0xbe,0x6c,0xe0,0x5e,0x64,0x97,0xf0,0x5f,0x9e,0x4e,0xe0,0x60,0x4d,0xb4,0x70,0x61, - 0x87,0x6b,0x60,0x62,0x2d,0x96,0x70,0x63,0x67,0x4d,0x60,0x64,0xd,0x78,0x70,0x65, - 0x47,0x2f,0x60,0x65,0xed,0x5a,0x70,0x67,0x27,0x11,0x60,0x67,0xcd,0x3c,0x70,0x69, - 0x6,0xf3,0x60,0x69,0xad,0x1e,0x70,0x6a,0xe6,0xd5,0x60,0x6b,0x96,0x3a,0xf0,0x6c, - 0xcf,0xf1,0xe0,0x6d,0x76,0x1c,0xf0,0x6e,0xaf,0xd3,0xe0,0x6f,0x55,0xfe,0xf0,0x70, - 0x8f,0xb5,0xe0,0x71,0x35,0xe0,0xf0,0x72,0x6f,0x97,0xe0,0x73,0x15,0xc2,0xf0,0x74, - 0x4f,0x79,0xe0,0x74,0xfe,0xdf,0x70,0x76,0x38,0x96,0x60,0x76,0xde,0xc1,0x70,0x78, - 0x18,0x78,0x60,0x78,0xbe,0xa3,0x70,0x79,0xf8,0x5a,0x60,0x7a,0x9e,0x85,0x70,0x7b, - 0xd8,0x3c,0x60,0x7c,0x7e,0x67,0x70,0x7d,0xb8,0x1e,0x60,0x7e,0x5e,0x49,0x70,0x7f, - 0x98,0x0,0x60,0x0,0x5,0x1,0x2,0x3,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4, - 0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4, - 0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4, - 0x6,0x7,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4, - 0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4, - 0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4, - 0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4, - 0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x0,0x0,0x0, - 0x0,0x0,0x0,0xff,0xff,0xc7,0xc0,0x1,0x4,0xff,0xff,0xb9,0xb0,0x0,0x8,0xff, - 0xff,0xd5,0xd0,0x1,0xc,0xff,0xff,0xc7,0xc0,0x1,0x11,0xff,0xff,0xc7,0xc0,0x1, - 0x15,0xff,0xff,0xab,0xa0,0x0,0x19,0xff,0xff,0xb9,0xb0,0x1,0x1d,0xff,0xff,0xc7, - 0xc0,0x1,0x11,0xff,0xff,0xb9,0xb0,0x0,0x8,0x2d,0x30,0x30,0x0,0x45,0x50,0x54, - 0x0,0x45,0x53,0x54,0x0,0x45,0x44,0x44,0x54,0x0,0x45,0x44,0x54,0x0,0x45,0x57, - 0x54,0x0,0x43,0x53,0x54,0x0,0x43,0x44,0x54,0x0,0x0,0x1,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a, - 0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x7a,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x21,0xf8,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xff,0xff,0xff,0xff,0xcc,0x6c,0xa1,0x80,0xff,0xff,0xff,0xff,0xd2,0x23, - 0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x60,0xfb,0xe0,0xff,0xff,0xff,0xff,0xf7,0x2f, - 0x3e,0x50,0xff,0xff,0xff,0xff,0xf8,0x28,0x69,0xd0,0x0,0x0,0x0,0x0,0x13,0x69, - 0x47,0xf0,0x0,0x0,0x0,0x0,0x14,0x59,0x2a,0xe0,0x0,0x0,0x0,0x0,0x15,0x49, - 0x29,0xf0,0x0,0x0,0x0,0x0,0x16,0x39,0xc,0xe0,0x0,0x0,0x0,0x0,0x17,0x29, - 0xb,0xf0,0x0,0x0,0x0,0x0,0x18,0x22,0x29,0x60,0x0,0x0,0x0,0x0,0x19,0x8, - 0xed,0xf0,0x0,0x0,0x0,0x0,0x1a,0x2,0xb,0x60,0x0,0x0,0x0,0x0,0x1a,0xf2, - 0xa,0x70,0x0,0x0,0x0,0x0,0x1b,0xe1,0xed,0x60,0x0,0x0,0x0,0x0,0x1c,0xd1, - 0xec,0x70,0x0,0x0,0x0,0x0,0x1d,0xc1,0xcf,0x60,0x0,0x0,0x0,0x0,0x1e,0xb1, - 0xce,0x70,0x0,0x0,0x0,0x0,0x1f,0xa1,0xb1,0x60,0x0,0x0,0x0,0x0,0x20,0x76, - 0x0,0xf0,0x0,0x0,0x0,0x0,0x21,0x81,0x93,0x60,0x0,0x0,0x0,0x0,0x22,0x55, - 0xe2,0xf0,0x0,0x0,0x0,0x0,0x23,0x6a,0xaf,0xe0,0x0,0x0,0x0,0x0,0x24,0x35, - 0xc4,0xf0,0x0,0x0,0x0,0x0,0x25,0x4a,0x91,0xe0,0x0,0x0,0x0,0x0,0x26,0x15, - 0xa6,0xf0,0x0,0x0,0x0,0x0,0x27,0x2a,0x73,0xe0,0x0,0x0,0x0,0x0,0x27,0xfe, - 0xc3,0x70,0x0,0x0,0x0,0x0,0x29,0xa,0x55,0xe0,0x0,0x0,0x0,0x0,0x29,0xde, - 0xa5,0x70,0x0,0x0,0x0,0x0,0x2a,0xea,0x37,0xe0,0x0,0x0,0x0,0x0,0x2b,0xbe, - 0x87,0x70,0x0,0x0,0x0,0x0,0x2c,0xd3,0x54,0x60,0x0,0x0,0x0,0x0,0x2d,0x9e, - 0x69,0x70,0x0,0x0,0x0,0x0,0x2e,0xb3,0x36,0x60,0x0,0x0,0x0,0x0,0x2f,0x7e, - 0x4b,0x70,0x0,0x0,0x0,0x0,0x30,0x93,0x18,0x60,0x0,0x0,0x0,0x0,0x31,0x67, - 0x67,0xf0,0x0,0x0,0x0,0x0,0x32,0x72,0xfa,0x60,0x0,0x0,0x0,0x0,0x33,0x47, - 0x49,0xf0,0x0,0x0,0x0,0x0,0x34,0x52,0xdc,0x60,0x0,0x0,0x0,0x0,0x35,0x27, - 0x2b,0xf0,0x0,0x0,0x0,0x0,0x36,0x32,0xbe,0x60,0x0,0x0,0x0,0x0,0x37,0x7, - 0xd,0xf0,0x0,0x0,0x0,0x0,0x38,0x1b,0xda,0xe0,0x0,0x0,0x0,0x0,0x38,0xe6, - 0xfe,0x0,0x0,0x0,0x0,0x0,0x39,0xfb,0xca,0xf0,0x0,0x0,0x0,0x0,0x3a,0xc6, - 0xd1,0xf0,0x0,0x0,0x0,0x0,0x3b,0xdb,0x9e,0xe0,0x0,0x0,0x0,0x0,0x3c,0xaf, - 0xee,0x70,0x0,0x0,0x0,0x0,0x3d,0xbb,0x80,0xe0,0x0,0x0,0x0,0x0,0x3e,0x8f, - 0xd0,0x70,0x0,0x0,0x0,0x0,0x3f,0x9b,0x62,0xe0,0x0,0x0,0x0,0x0,0x40,0x6f, - 0xb2,0x70,0x0,0x0,0x0,0x0,0x41,0x84,0x7f,0x60,0x0,0x0,0x0,0x0,0x42,0x4f, - 0x94,0x70,0x0,0x0,0x0,0x0,0x43,0x64,0x61,0x60,0x0,0x0,0x0,0x0,0x44,0x2f, - 0x76,0x70,0x0,0x0,0x0,0x0,0x45,0x44,0x43,0x60,0x0,0x0,0x0,0x0,0x45,0xf3, - 0xa8,0xf0,0x0,0x0,0x0,0x0,0x47,0x2d,0x5f,0xe0,0x0,0x0,0x0,0x0,0x47,0xd3, - 0x8a,0xf0,0x0,0x0,0x0,0x0,0x49,0xd,0x41,0xe0,0x0,0x0,0x0,0x0,0x49,0xb3, - 0x6c,0xf0,0x0,0x0,0x0,0x0,0x4a,0xed,0x23,0xe0,0x0,0x0,0x0,0x0,0x4b,0x9c, - 0x89,0x70,0x0,0x0,0x0,0x0,0x4c,0xd6,0x40,0x60,0x0,0x0,0x0,0x0,0x4d,0x7c, - 0x6b,0x70,0x0,0x0,0x0,0x0,0x4e,0xb6,0x22,0x60,0x0,0x0,0x0,0x0,0x4f,0x5c, - 0x4d,0x70,0x0,0x0,0x0,0x0,0x50,0x96,0x4,0x60,0x0,0x0,0x0,0x0,0x51,0x3c, - 0x2f,0x70,0x0,0x0,0x0,0x0,0x52,0x75,0xe6,0x60,0x0,0x0,0x0,0x0,0x53,0x1c, - 0x11,0x70,0x0,0x0,0x0,0x0,0x54,0x55,0xc8,0x60,0x0,0x0,0x0,0x0,0x54,0xfb, - 0xf3,0x70,0x0,0x0,0x0,0x0,0x56,0x35,0xaa,0x60,0x0,0x0,0x0,0x0,0x56,0xe5, - 0xf,0xf0,0x0,0x0,0x0,0x0,0x58,0x1e,0xc6,0xe0,0x0,0x0,0x0,0x0,0x58,0xc4, - 0xf1,0xf0,0x0,0x0,0x0,0x0,0x59,0xfe,0xa8,0xe0,0x0,0x0,0x0,0x0,0x5a,0xa4, - 0xd3,0xf0,0x0,0x0,0x0,0x0,0x5b,0xde,0x8a,0xe0,0x0,0x0,0x0,0x0,0x5c,0x84, - 0xb5,0xf0,0x0,0x0,0x0,0x0,0x5d,0xbe,0x6c,0xe0,0x0,0x0,0x0,0x0,0x5e,0x64, - 0x97,0xf0,0x0,0x0,0x0,0x0,0x5f,0x9e,0x4e,0xe0,0x0,0x0,0x0,0x0,0x60,0x4d, - 0xb4,0x70,0x0,0x0,0x0,0x0,0x61,0x87,0x6b,0x60,0x0,0x0,0x0,0x0,0x62,0x2d, - 0x96,0x70,0x0,0x0,0x0,0x0,0x63,0x67,0x4d,0x60,0x0,0x0,0x0,0x0,0x64,0xd, - 0x78,0x70,0x0,0x0,0x0,0x0,0x65,0x47,0x2f,0x60,0x0,0x0,0x0,0x0,0x65,0xed, - 0x5a,0x70,0x0,0x0,0x0,0x0,0x67,0x27,0x11,0x60,0x0,0x0,0x0,0x0,0x67,0xcd, - 0x3c,0x70,0x0,0x0,0x0,0x0,0x69,0x6,0xf3,0x60,0x0,0x0,0x0,0x0,0x69,0xad, - 0x1e,0x70,0x0,0x0,0x0,0x0,0x6a,0xe6,0xd5,0x60,0x0,0x0,0x0,0x0,0x6b,0x96, - 0x3a,0xf0,0x0,0x0,0x0,0x0,0x6c,0xcf,0xf1,0xe0,0x0,0x0,0x0,0x0,0x6d,0x76, - 0x1c,0xf0,0x0,0x0,0x0,0x0,0x6e,0xaf,0xd3,0xe0,0x0,0x0,0x0,0x0,0x6f,0x55, - 0xfe,0xf0,0x0,0x0,0x0,0x0,0x70,0x8f,0xb5,0xe0,0x0,0x0,0x0,0x0,0x71,0x35, - 0xe0,0xf0,0x0,0x0,0x0,0x0,0x72,0x6f,0x97,0xe0,0x0,0x0,0x0,0x0,0x73,0x15, - 0xc2,0xf0,0x0,0x0,0x0,0x0,0x74,0x4f,0x79,0xe0,0x0,0x0,0x0,0x0,0x74,0xfe, - 0xdf,0x70,0x0,0x0,0x0,0x0,0x76,0x38,0x96,0x60,0x0,0x0,0x0,0x0,0x76,0xde, - 0xc1,0x70,0x0,0x0,0x0,0x0,0x78,0x18,0x78,0x60,0x0,0x0,0x0,0x0,0x78,0xbe, - 0xa3,0x70,0x0,0x0,0x0,0x0,0x79,0xf8,0x5a,0x60,0x0,0x0,0x0,0x0,0x7a,0x9e, - 0x85,0x70,0x0,0x0,0x0,0x0,0x7b,0xd8,0x3c,0x60,0x0,0x0,0x0,0x0,0x7c,0x7e, - 0x67,0x70,0x0,0x0,0x0,0x0,0x7d,0xb8,0x1e,0x60,0x0,0x0,0x0,0x0,0x7e,0x5e, - 0x49,0x70,0x0,0x0,0x0,0x0,0x7f,0x98,0x0,0x60,0x0,0x5,0x1,0x2,0x3,0x2, - 0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2, - 0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2, - 0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x6,0x7,0x2,0x4,0x2,0x4,0x2,0x4,0x2, - 0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2, - 0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2, - 0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2, - 0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2,0x4,0x2, - 0x4,0x2,0x4,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xc7,0xc0,0x1,0x4, - 0xff,0xff,0xb9,0xb0,0x0,0x8,0xff,0xff,0xd5,0xd0,0x1,0xc,0xff,0xff,0xc7,0xc0, - 0x1,0x11,0xff,0xff,0xc7,0xc0,0x1,0x15,0xff,0xff,0xab,0xa0,0x0,0x19,0xff,0xff, - 0xb9,0xb0,0x1,0x1d,0xff,0xff,0xc7,0xc0,0x1,0x11,0xff,0xff,0xb9,0xb0,0x0,0x8, - 0x2d,0x30,0x30,0x0,0x45,0x50,0x54,0x0,0x45,0x53,0x54,0x0,0x45,0x44,0x44,0x54, - 0x0,0x45,0x44,0x54,0x0,0x45,0x57,0x54,0x0,0x43,0x53,0x54,0x0,0x43,0x44,0x54, - 0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0xa,0x45,0x53,0x54,0x35,0x45,0x44,0x54,0x2c,0x4d,0x33, - 0x2e,0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Jujuy - 0x0,0x0,0x4,0x79, + 0x0,0x0,0x25,0x37,0xf2,0xb0,0x0,0x0,0x0,0x0,0x25,0xfd,0xa5,0xa0,0x0,0x0, + 0x0,0x0,0x27,0x19,0x34,0x40,0x0,0x0,0x0,0x0,0x27,0xcd,0xc3,0xb0,0x0,0x0, + 0x0,0x0,0x28,0x47,0x1b,0xc0,0x0,0x0,0x0,0x0,0x37,0xf6,0xc6,0xb0,0x0,0x0, + 0x0,0x0,0x38,0xbf,0x2a,0xb0,0x0,0x0,0x0,0x0,0x40,0xba,0x9f,0xb0,0x0,0x0, + 0x0,0x0,0x41,0x3,0x30,0x40,0x0,0x0,0x0,0x0,0x47,0x77,0x9,0xb0,0x0,0x0, + 0x0,0x0,0x47,0x93,0xfc,0xa0,0x0,0x0,0x0,0x0,0x47,0xd3,0x52,0xb0,0x0,0x0, + 0x0,0x0,0x48,0xf1,0x76,0x40,0x0,0x0,0x0,0x0,0x49,0xb3,0x34,0xb0,0x0,0x0, + 0x0,0x0,0x4a,0xd1,0x58,0x40,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x5,0x4,0x5,0x4,0x5,0x4,0x2, + 0x3,0x2,0x5,0x3,0x5,0x2,0x5,0x4,0x3,0x2,0x3,0x2,0x5,0x5,0xff,0xff, + 0xc1,0xcc,0x0,0x0,0xff,0xff,0xc3,0xd0,0x0,0x4,0xff,0xff,0xc7,0xc0,0x0,0x8, + 0xff,0xff,0xd5,0xd0,0x1,0xc,0xff,0xff,0xe3,0xe0,0x1,0x10,0xff,0xff,0xd5,0xd0, + 0x0,0xc,0xff,0xff,0xd5,0xd0,0x1,0xc,0x4c,0x4d,0x54,0x0,0x43,0x4d,0x54,0x0, + 0x2d,0x30,0x34,0x0,0x2d,0x30,0x33,0x0,0x2d,0x30,0x32,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2d,0x30,0x33,0x3e, + 0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Argentina/Buenos_Aires + 0x0,0x0,0x4,0x55, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x3b,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x1c,0x80,0x0,0x0,0x0,0xa2, + 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3e,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0xa2, 0x92,0x8f,0x30,0xb6,0x7b,0x52,0x40,0xb7,0x1a,0xc9,0xb0,0xb8,0x1e,0x8f,0x40,0xb8, 0xd4,0x70,0x30,0xba,0x17,0x7d,0xc0,0xba,0xb5,0xa3,0xb0,0xbb,0xf8,0xb1,0x40,0xbc, 0x96,0xd7,0x30,0xbd,0xd9,0xe4,0xc0,0xbe,0x78,0xa,0xb0,0xbf,0xbb,0x18,0x40,0xc0, @@ -31486,456 +27064,140 @@ static const unsigned char qt_resource_data[] = { 0xd3,0x36,0xb0,0xfb,0xc3,0x35,0xc0,0xfc,0xbc,0x53,0x30,0xfd,0xac,0x52,0x40,0xfe, 0x9c,0x35,0x30,0xff,0x8c,0x34,0x40,0x7,0xa3,0x4a,0xb0,0x8,0x24,0x6f,0xa0,0x23, 0x94,0xb5,0xb0,0x24,0x10,0x94,0xa0,0x25,0x37,0xf2,0xb0,0x25,0xf0,0x76,0xa0,0x27, - 0x2a,0x57,0xc0,0x27,0xe2,0xdb,0xb0,0x28,0xee,0x8a,0x40,0x29,0xb0,0x3a,0xa0,0x2a, + 0x21,0xf,0x30,0x27,0xd0,0x58,0xa0,0x29,0x0,0xf1,0x30,0x29,0xb0,0x3a,0xa0,0x2a, 0xe0,0xd3,0x30,0x2b,0x99,0x57,0x20,0x37,0xf6,0xc6,0xb0,0x38,0xbf,0x2a,0xb0,0x47, - 0x77,0x9,0xb0,0x47,0xdc,0x7f,0x20,0x1,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x5,0x4,0x5,0x4,0x5,0x4,0x6,0x7,0x6,0x4,0x5,0x4,0x5,0x3,0x5, - 0x4,0x5,0xff,0xff,0xc2,0xc8,0x0,0x0,0xff,0xff,0xc3,0xd0,0x0,0x4,0xff,0xff, - 0xc7,0xc0,0x0,0x8,0xff,0xff,0xd5,0xd0,0x1,0xc,0xff,0xff,0xe3,0xe0,0x1,0xc, - 0xff,0xff,0xd5,0xd0,0x0,0x8,0xff,0xff,0xc7,0xc0,0x0,0x11,0xff,0xff,0xd5,0xd0, - 0x1,0x16,0xff,0xff,0xe3,0xe0,0x1,0xc,0xff,0xff,0xd5,0xd0,0x0,0x8,0x4c,0x4d, - 0x54,0x0,0x43,0x4d,0x54,0x0,0x41,0x52,0x54,0x0,0x41,0x52,0x53,0x54,0x0,0x57, - 0x41,0x52,0x54,0x0,0x57,0x41,0x52,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a, - 0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x3c,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x1c,0xf8,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xff,0xff,0xff,0xff,0x72,0x9c,0xae,0xb8,0xff,0xff,0xff,0xff,0xa2,0x92, - 0x8f,0x30,0xff,0xff,0xff,0xff,0xb6,0x7b,0x52,0x40,0xff,0xff,0xff,0xff,0xb7,0x1a, - 0xc9,0xb0,0xff,0xff,0xff,0xff,0xb8,0x1e,0x8f,0x40,0xff,0xff,0xff,0xff,0xb8,0xd4, - 0x70,0x30,0xff,0xff,0xff,0xff,0xba,0x17,0x7d,0xc0,0xff,0xff,0xff,0xff,0xba,0xb5, - 0xa3,0xb0,0xff,0xff,0xff,0xff,0xbb,0xf8,0xb1,0x40,0xff,0xff,0xff,0xff,0xbc,0x96, - 0xd7,0x30,0xff,0xff,0xff,0xff,0xbd,0xd9,0xe4,0xc0,0xff,0xff,0xff,0xff,0xbe,0x78, - 0xa,0xb0,0xff,0xff,0xff,0xff,0xbf,0xbb,0x18,0x40,0xff,0xff,0xff,0xff,0xc0,0x5a, - 0x8f,0xb0,0xff,0xff,0xff,0xff,0xc1,0x9d,0x9d,0x40,0xff,0xff,0xff,0xff,0xc2,0x3b, - 0xc3,0x30,0xff,0xff,0xff,0xff,0xc3,0x7e,0xd0,0xc0,0xff,0xff,0xff,0xff,0xc4,0x1c, - 0xf6,0xb0,0xff,0xff,0xff,0xff,0xc5,0x60,0x4,0x40,0xff,0xff,0xff,0xff,0xc5,0xfe, - 0x2a,0x30,0xff,0xff,0xff,0xff,0xc7,0x41,0x37,0xc0,0xff,0xff,0xff,0xff,0xc7,0xe0, - 0xaf,0x30,0xff,0xff,0xff,0xff,0xc8,0x81,0x94,0x40,0xff,0xff,0xff,0xff,0xca,0x4d, - 0xa1,0xb0,0xff,0xff,0xff,0xff,0xca,0xee,0x86,0xc0,0xff,0xff,0xff,0xff,0xce,0x4d, - 0xff,0x30,0xff,0xff,0xff,0xff,0xce,0xb0,0xed,0xc0,0xff,0xff,0xff,0xff,0xd3,0x29, - 0x35,0xb0,0xff,0xff,0xff,0xff,0xd4,0x43,0x64,0xc0,0xff,0xff,0xff,0xff,0xf4,0x3d, - 0x8,0x30,0xff,0xff,0xff,0xff,0xf4,0x9f,0xf6,0xc0,0xff,0xff,0xff,0xff,0xf5,0x5, - 0x6c,0x30,0xff,0xff,0xff,0xff,0xf6,0x32,0x10,0x40,0xff,0xff,0xff,0xff,0xf6,0xe6, - 0x9f,0xb0,0xff,0xff,0xff,0xff,0xf8,0x13,0x43,0xc0,0xff,0xff,0xff,0xff,0xf8,0xc7, - 0xd3,0x30,0xff,0xff,0xff,0xff,0xf9,0xf4,0x77,0x40,0xff,0xff,0xff,0xff,0xfa,0xd3, - 0x36,0xb0,0xff,0xff,0xff,0xff,0xfb,0xc3,0x35,0xc0,0xff,0xff,0xff,0xff,0xfc,0xbc, - 0x53,0x30,0xff,0xff,0xff,0xff,0xfd,0xac,0x52,0x40,0xff,0xff,0xff,0xff,0xfe,0x9c, - 0x35,0x30,0xff,0xff,0xff,0xff,0xff,0x8c,0x34,0x40,0x0,0x0,0x0,0x0,0x7,0xa3, - 0x4a,0xb0,0x0,0x0,0x0,0x0,0x8,0x24,0x6f,0xa0,0x0,0x0,0x0,0x0,0x23,0x94, - 0xb5,0xb0,0x0,0x0,0x0,0x0,0x24,0x10,0x94,0xa0,0x0,0x0,0x0,0x0,0x25,0x37, - 0xf2,0xb0,0x0,0x0,0x0,0x0,0x25,0xf0,0x76,0xa0,0x0,0x0,0x0,0x0,0x27,0x2a, - 0x57,0xc0,0x0,0x0,0x0,0x0,0x27,0xe2,0xdb,0xb0,0x0,0x0,0x0,0x0,0x28,0xee, - 0x8a,0x40,0x0,0x0,0x0,0x0,0x29,0xb0,0x3a,0xa0,0x0,0x0,0x0,0x0,0x2a,0xe0, - 0xd3,0x30,0x0,0x0,0x0,0x0,0x2b,0x99,0x57,0x20,0x0,0x0,0x0,0x0,0x37,0xf6, - 0xc6,0xb0,0x0,0x0,0x0,0x0,0x38,0xbf,0x2a,0xb0,0x0,0x0,0x0,0x0,0x47,0x77, - 0x9,0xb0,0x0,0x0,0x0,0x0,0x47,0xdc,0x7f,0x20,0x0,0x1,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x77,0x9,0xb0,0x47,0xdc,0x7f,0x20,0x48,0xfa,0xa2,0xb0,0x49,0xbc,0x61,0x20,0x7f, + 0xff,0xff,0xff,0x1,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x5,0x4,0x5,0x4,0x5,0x4,0x6,0x7,0x6,0x4,0x5, - 0x4,0x5,0x3,0x5,0x4,0x5,0xff,0xff,0xc2,0xc8,0x0,0x0,0xff,0xff,0xc3,0xd0, - 0x0,0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0xff,0xff,0xd5,0xd0,0x1,0xc,0xff,0xff, - 0xe3,0xe0,0x1,0xc,0xff,0xff,0xd5,0xd0,0x0,0x8,0xff,0xff,0xc7,0xc0,0x0,0x11, - 0xff,0xff,0xd5,0xd0,0x1,0x16,0xff,0xff,0xe3,0xe0,0x1,0xc,0xff,0xff,0xd5,0xd0, - 0x0,0x8,0x4c,0x4d,0x54,0x0,0x43,0x4d,0x54,0x0,0x41,0x52,0x54,0x0,0x41,0x52, - 0x53,0x54,0x0,0x57,0x41,0x52,0x54,0x0,0x57,0x41,0x52,0x53,0x54,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xa,0x41,0x52,0x54,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Lima - 0x0,0x0,0x1,0xa1, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x10,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0x8c, - 0x74,0x40,0xd4,0xc3,0xcf,0x4a,0x50,0xc4,0x45,0xe3,0x40,0xc5,0x2f,0x4a,0xd0,0xc6, - 0x1f,0x2d,0xc0,0xc7,0xf,0x2c,0xd0,0xc7,0xff,0xf,0xc0,0x1e,0x18,0xc4,0x50,0x1e, - 0x8f,0x5d,0x40,0x1f,0xf9,0xf7,0xd0,0x20,0x70,0x90,0xc0,0x25,0x9e,0xe3,0xd0,0x26, - 0x15,0x7c,0xc0,0x2d,0x25,0x3,0x50,0x2d,0x9b,0x9c,0x40,0x1,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0xff,0xff,0xb7,0xc4,0x0, - 0x0,0xff,0xff,0xb7,0xac,0x0,0x0,0xff,0xff,0xc7,0xc0,0x1,0x4,0xff,0xff,0xb9, - 0xb0,0x0,0x9,0x4c,0x4d,0x54,0x0,0x50,0x45,0x53,0x54,0x0,0x50,0x45,0x54,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4, - 0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x4, - 0x0,0x0,0x0,0xd,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff, - 0x69,0x87,0x23,0xbc,0xff,0xff,0xff,0xff,0x8c,0x74,0x40,0xd4,0xff,0xff,0xff,0xff, - 0xc3,0xcf,0x4a,0x50,0xff,0xff,0xff,0xff,0xc4,0x45,0xe3,0x40,0xff,0xff,0xff,0xff, - 0xc5,0x2f,0x4a,0xd0,0xff,0xff,0xff,0xff,0xc6,0x1f,0x2d,0xc0,0xff,0xff,0xff,0xff, - 0xc7,0xf,0x2c,0xd0,0xff,0xff,0xff,0xff,0xc7,0xff,0xf,0xc0,0x0,0x0,0x0,0x0, - 0x1e,0x18,0xc4,0x50,0x0,0x0,0x0,0x0,0x1e,0x8f,0x5d,0x40,0x0,0x0,0x0,0x0, - 0x1f,0xf9,0xf7,0xd0,0x0,0x0,0x0,0x0,0x20,0x70,0x90,0xc0,0x0,0x0,0x0,0x0, - 0x25,0x9e,0xe3,0xd0,0x0,0x0,0x0,0x0,0x26,0x15,0x7c,0xc0,0x0,0x0,0x0,0x0, - 0x2d,0x25,0x3,0x50,0x0,0x0,0x0,0x0,0x2d,0x9b,0x9c,0x40,0x0,0x1,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0xff,0xff,0xb7, - 0xc4,0x0,0x0,0xff,0xff,0xb7,0xac,0x0,0x0,0xff,0xff,0xc7,0xc0,0x1,0x4,0xff, - 0xff,0xb9,0xb0,0x0,0x9,0x4c,0x4d,0x54,0x0,0x50,0x45,0x53,0x54,0x0,0x50,0x45, - 0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x50,0x45,0x54,0x35,0xa, - - // /home/konrad/src/smoke/tzone/zoneinfo/America/Regina - 0x0,0x0,0x3,0xe2, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x3,0x5,0x4,0x5,0x4,0x5, + 0x5,0xff,0xff,0xc9,0x34,0x0,0x0,0xff,0xff,0xc3,0xd0,0x0,0x4,0xff,0xff,0xc7, + 0xc0,0x0,0x8,0xff,0xff,0xd5,0xd0,0x1,0xc,0xff,0xff,0xe3,0xe0,0x1,0x10,0xff, + 0xff,0xd5,0xd0,0x0,0xc,0x4c,0x4d,0x54,0x0,0x43,0x4d,0x54,0x0,0x2d,0x30,0x34, + 0x0,0x2d,0x30,0x33,0x0,0x2d,0x30,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x14,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x72,0x9c,0xa8, + 0x4c,0xff,0xff,0xff,0xff,0xa2,0x92,0x8f,0x30,0xff,0xff,0xff,0xff,0xb6,0x7b,0x52, + 0x40,0xff,0xff,0xff,0xff,0xb7,0x1a,0xc9,0xb0,0xff,0xff,0xff,0xff,0xb8,0x1e,0x8f, + 0x40,0xff,0xff,0xff,0xff,0xb8,0xd4,0x70,0x30,0xff,0xff,0xff,0xff,0xba,0x17,0x7d, + 0xc0,0xff,0xff,0xff,0xff,0xba,0xb5,0xa3,0xb0,0xff,0xff,0xff,0xff,0xbb,0xf8,0xb1, + 0x40,0xff,0xff,0xff,0xff,0xbc,0x96,0xd7,0x30,0xff,0xff,0xff,0xff,0xbd,0xd9,0xe4, + 0xc0,0xff,0xff,0xff,0xff,0xbe,0x78,0xa,0xb0,0xff,0xff,0xff,0xff,0xbf,0xbb,0x18, + 0x40,0xff,0xff,0xff,0xff,0xc0,0x5a,0x8f,0xb0,0xff,0xff,0xff,0xff,0xc1,0x9d,0x9d, + 0x40,0xff,0xff,0xff,0xff,0xc2,0x3b,0xc3,0x30,0xff,0xff,0xff,0xff,0xc3,0x7e,0xd0, + 0xc0,0xff,0xff,0xff,0xff,0xc4,0x1c,0xf6,0xb0,0xff,0xff,0xff,0xff,0xc5,0x60,0x4, + 0x40,0xff,0xff,0xff,0xff,0xc5,0xfe,0x2a,0x30,0xff,0xff,0xff,0xff,0xc7,0x41,0x37, + 0xc0,0xff,0xff,0xff,0xff,0xc7,0xe0,0xaf,0x30,0xff,0xff,0xff,0xff,0xc8,0x81,0x94, + 0x40,0xff,0xff,0xff,0xff,0xca,0x4d,0xa1,0xb0,0xff,0xff,0xff,0xff,0xca,0xee,0x86, + 0xc0,0xff,0xff,0xff,0xff,0xce,0x4d,0xff,0x30,0xff,0xff,0xff,0xff,0xce,0xb0,0xed, + 0xc0,0xff,0xff,0xff,0xff,0xd3,0x29,0x35,0xb0,0xff,0xff,0xff,0xff,0xd4,0x43,0x64, + 0xc0,0xff,0xff,0xff,0xff,0xf4,0x3d,0x8,0x30,0xff,0xff,0xff,0xff,0xf4,0x9f,0xf6, + 0xc0,0xff,0xff,0xff,0xff,0xf5,0x5,0x6c,0x30,0xff,0xff,0xff,0xff,0xf6,0x32,0x10, + 0x40,0xff,0xff,0xff,0xff,0xf6,0xe6,0x9f,0xb0,0xff,0xff,0xff,0xff,0xf8,0x13,0x43, + 0xc0,0xff,0xff,0xff,0xff,0xf8,0xc7,0xd3,0x30,0xff,0xff,0xff,0xff,0xf9,0xf4,0x77, + 0x40,0xff,0xff,0xff,0xff,0xfa,0xd3,0x36,0xb0,0xff,0xff,0xff,0xff,0xfb,0xc3,0x35, + 0xc0,0xff,0xff,0xff,0xff,0xfc,0xbc,0x53,0x30,0xff,0xff,0xff,0xff,0xfd,0xac,0x52, + 0x40,0xff,0xff,0xff,0xff,0xfe,0x9c,0x35,0x30,0xff,0xff,0xff,0xff,0xff,0x8c,0x34, + 0x40,0x0,0x0,0x0,0x0,0x7,0xa3,0x4a,0xb0,0x0,0x0,0x0,0x0,0x8,0x24,0x6f, + 0xa0,0x0,0x0,0x0,0x0,0x23,0x94,0xb5,0xb0,0x0,0x0,0x0,0x0,0x24,0x10,0x94, + 0xa0,0x0,0x0,0x0,0x0,0x25,0x37,0xf2,0xb0,0x0,0x0,0x0,0x0,0x25,0xf0,0x76, + 0xa0,0x0,0x0,0x0,0x0,0x27,0x21,0xf,0x30,0x0,0x0,0x0,0x0,0x27,0xd0,0x58, + 0xa0,0x0,0x0,0x0,0x0,0x29,0x0,0xf1,0x30,0x0,0x0,0x0,0x0,0x29,0xb0,0x3a, + 0xa0,0x0,0x0,0x0,0x0,0x2a,0xe0,0xd3,0x30,0x0,0x0,0x0,0x0,0x2b,0x99,0x57, + 0x20,0x0,0x0,0x0,0x0,0x37,0xf6,0xc6,0xb0,0x0,0x0,0x0,0x0,0x38,0xbf,0x2a, + 0xb0,0x0,0x0,0x0,0x0,0x47,0x77,0x9,0xb0,0x0,0x0,0x0,0x0,0x47,0xdc,0x7f, + 0x20,0x0,0x0,0x0,0x0,0x48,0xfa,0xa2,0xb0,0x0,0x0,0x0,0x0,0x49,0xbc,0x61, + 0x20,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x3,0x5,0x4,0x5,0x4,0x5,0x5,0xff,0xff,0xc9,0x34,0x0,0x0,0xff,0xff, + 0xc3,0xd0,0x0,0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0xff,0xff,0xd5,0xd0,0x1,0xc, + 0xff,0xff,0xe3,0xe0,0x1,0x10,0xff,0xff,0xd5,0xd0,0x0,0xc,0x4c,0x4d,0x54,0x0, + 0x43,0x4d,0x54,0x0,0x2d,0x30,0x34,0x0,0x2d,0x30,0x33,0x0,0x2d,0x30,0x32,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2d,0x30, + 0x33,0x3e,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Argentina/ComodRivadavia + 0x0,0x0,0x4,0x55, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x36,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x80,0x0,0x0,0x0,0x86, - 0xfd,0x93,0x1c,0x9e,0xb8,0xaf,0x90,0x9f,0xbb,0x7,0x80,0xb5,0x65,0x4f,0xf0,0xb6, - 0x30,0x48,0xe0,0xb7,0x45,0x31,0xf0,0xb8,0x10,0x2a,0xe0,0xb9,0x25,0x13,0xf0,0xb9, - 0xf0,0xc,0xe0,0xbb,0xe,0x30,0x70,0xbb,0xcf,0xee,0xe0,0xbc,0xee,0x12,0x70,0xbd, - 0xb9,0xb,0x60,0xc2,0x72,0x8,0xf0,0xc3,0x61,0xeb,0xe0,0xc4,0x51,0xea,0xf0,0xc5, - 0x38,0x93,0x60,0xc6,0x31,0xcc,0xf0,0xc7,0x21,0xaf,0xe0,0xc8,0x1a,0xe9,0x70,0xc9, - 0xa,0xcc,0x60,0xc9,0xfa,0xcb,0x70,0xca,0xea,0xae,0x60,0xcb,0x89,0xc,0x90,0xd2, - 0x23,0xf4,0x70,0xd2,0x61,0x18,0x0,0xd3,0x63,0x8c,0x10,0xd4,0x53,0x6f,0x0,0xd5, - 0x55,0xe3,0x10,0xd6,0x20,0xdc,0x0,0xd7,0x35,0xc5,0x10,0xd8,0x0,0xbe,0x0,0xd9, - 0x15,0xa7,0x10,0xd9,0xe0,0xa0,0x0,0xda,0xfe,0xc3,0x90,0xdb,0xc0,0x82,0x0,0xdc, - 0xde,0xa5,0x90,0xdd,0xa9,0x9e,0x80,0xde,0xbe,0x87,0x90,0xdf,0x89,0x80,0x80,0xe0, - 0x9e,0x69,0x90,0xe1,0x69,0x62,0x80,0xe2,0x7e,0x4b,0x90,0xe3,0x49,0x44,0x80,0xe4, - 0x5e,0x2d,0x90,0xe5,0x29,0x26,0x80,0xe6,0x47,0x4a,0x10,0xe7,0x12,0x43,0x0,0xe8, - 0x27,0x2c,0x10,0xe8,0xf2,0x25,0x0,0xeb,0xe6,0xf0,0x10,0xec,0xd6,0xd3,0x0,0xed, - 0xc6,0xd2,0x10,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x5,0xff,0xff,0x9d,0xe4,0x0,0x0,0xff, - 0xff,0xab,0xa0,0x1,0x4,0xff,0xff,0x9d,0x90,0x0,0x8,0xff,0xff,0xab,0xa0,0x1, - 0xc,0xff,0xff,0xab,0xa0,0x1,0x10,0xff,0xff,0xab,0xa0,0x0,0x14,0x4c,0x4d,0x54, - 0x0,0x4d,0x44,0x54,0x0,0x4d,0x53,0x54,0x0,0x4d,0x57,0x54,0x0,0x4d,0x50,0x54, - 0x0,0x43,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x1, - 0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x36,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0xf8,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x86,0xfd,0x93,0x1c,0xff,0xff,0xff, - 0xff,0x9e,0xb8,0xaf,0x90,0xff,0xff,0xff,0xff,0x9f,0xbb,0x7,0x80,0xff,0xff,0xff, - 0xff,0xb5,0x65,0x4f,0xf0,0xff,0xff,0xff,0xff,0xb6,0x30,0x48,0xe0,0xff,0xff,0xff, - 0xff,0xb7,0x45,0x31,0xf0,0xff,0xff,0xff,0xff,0xb8,0x10,0x2a,0xe0,0xff,0xff,0xff, - 0xff,0xb9,0x25,0x13,0xf0,0xff,0xff,0xff,0xff,0xb9,0xf0,0xc,0xe0,0xff,0xff,0xff, - 0xff,0xbb,0xe,0x30,0x70,0xff,0xff,0xff,0xff,0xbb,0xcf,0xee,0xe0,0xff,0xff,0xff, - 0xff,0xbc,0xee,0x12,0x70,0xff,0xff,0xff,0xff,0xbd,0xb9,0xb,0x60,0xff,0xff,0xff, - 0xff,0xc2,0x72,0x8,0xf0,0xff,0xff,0xff,0xff,0xc3,0x61,0xeb,0xe0,0xff,0xff,0xff, - 0xff,0xc4,0x51,0xea,0xf0,0xff,0xff,0xff,0xff,0xc5,0x38,0x93,0x60,0xff,0xff,0xff, - 0xff,0xc6,0x31,0xcc,0xf0,0xff,0xff,0xff,0xff,0xc7,0x21,0xaf,0xe0,0xff,0xff,0xff, - 0xff,0xc8,0x1a,0xe9,0x70,0xff,0xff,0xff,0xff,0xc9,0xa,0xcc,0x60,0xff,0xff,0xff, - 0xff,0xc9,0xfa,0xcb,0x70,0xff,0xff,0xff,0xff,0xca,0xea,0xae,0x60,0xff,0xff,0xff, - 0xff,0xcb,0x89,0xc,0x90,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff, - 0xff,0xd2,0x61,0x18,0x0,0xff,0xff,0xff,0xff,0xd3,0x63,0x8c,0x10,0xff,0xff,0xff, - 0xff,0xd4,0x53,0x6f,0x0,0xff,0xff,0xff,0xff,0xd5,0x55,0xe3,0x10,0xff,0xff,0xff, - 0xff,0xd6,0x20,0xdc,0x0,0xff,0xff,0xff,0xff,0xd7,0x35,0xc5,0x10,0xff,0xff,0xff, - 0xff,0xd8,0x0,0xbe,0x0,0xff,0xff,0xff,0xff,0xd9,0x15,0xa7,0x10,0xff,0xff,0xff, - 0xff,0xd9,0xe0,0xa0,0x0,0xff,0xff,0xff,0xff,0xda,0xfe,0xc3,0x90,0xff,0xff,0xff, - 0xff,0xdb,0xc0,0x82,0x0,0xff,0xff,0xff,0xff,0xdc,0xde,0xa5,0x90,0xff,0xff,0xff, - 0xff,0xdd,0xa9,0x9e,0x80,0xff,0xff,0xff,0xff,0xde,0xbe,0x87,0x90,0xff,0xff,0xff, - 0xff,0xdf,0x89,0x80,0x80,0xff,0xff,0xff,0xff,0xe0,0x9e,0x69,0x90,0xff,0xff,0xff, - 0xff,0xe1,0x69,0x62,0x80,0xff,0xff,0xff,0xff,0xe2,0x7e,0x4b,0x90,0xff,0xff,0xff, - 0xff,0xe3,0x49,0x44,0x80,0xff,0xff,0xff,0xff,0xe4,0x5e,0x2d,0x90,0xff,0xff,0xff, - 0xff,0xe5,0x29,0x26,0x80,0xff,0xff,0xff,0xff,0xe6,0x47,0x4a,0x10,0xff,0xff,0xff, - 0xff,0xe7,0x12,0x43,0x0,0xff,0xff,0xff,0xff,0xe8,0x27,0x2c,0x10,0xff,0xff,0xff, - 0xff,0xe8,0xf2,0x25,0x0,0xff,0xff,0xff,0xff,0xeb,0xe6,0xf0,0x10,0xff,0xff,0xff, - 0xff,0xec,0xd6,0xd3,0x0,0xff,0xff,0xff,0xff,0xed,0xc6,0xd2,0x10,0x0,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x5,0xff,0xff,0x9d,0xe4,0x0,0x0,0xff,0xff,0xab,0xa0,0x1,0x4,0xff, - 0xff,0x9d,0x90,0x0,0x8,0xff,0xff,0xab,0xa0,0x1,0xc,0xff,0xff,0xab,0xa0,0x1, - 0x10,0xff,0xff,0xab,0xa0,0x0,0x14,0x4c,0x4d,0x54,0x0,0x4d,0x44,0x54,0x0,0x4d, - 0x53,0x54,0x0,0x4d,0x57,0x54,0x0,0x4d,0x50,0x54,0x0,0x43,0x53,0x54,0x0,0x0, - 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0x43,0x53,0x54,0x36, - 0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Atikokan - 0x0,0x0,0x1,0x59, + 0x0,0x0,0x3e,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0xa2, + 0x92,0x8f,0x30,0xb6,0x7b,0x52,0x40,0xb7,0x1a,0xc9,0xb0,0xb8,0x1e,0x8f,0x40,0xb8, + 0xd4,0x70,0x30,0xba,0x17,0x7d,0xc0,0xba,0xb5,0xa3,0xb0,0xbb,0xf8,0xb1,0x40,0xbc, + 0x96,0xd7,0x30,0xbd,0xd9,0xe4,0xc0,0xbe,0x78,0xa,0xb0,0xbf,0xbb,0x18,0x40,0xc0, + 0x5a,0x8f,0xb0,0xc1,0x9d,0x9d,0x40,0xc2,0x3b,0xc3,0x30,0xc3,0x7e,0xd0,0xc0,0xc4, + 0x1c,0xf6,0xb0,0xc5,0x60,0x4,0x40,0xc5,0xfe,0x2a,0x30,0xc7,0x41,0x37,0xc0,0xc7, + 0xe0,0xaf,0x30,0xc8,0x81,0x94,0x40,0xca,0x4d,0xa1,0xb0,0xca,0xee,0x86,0xc0,0xce, + 0x4d,0xff,0x30,0xce,0xb0,0xed,0xc0,0xd3,0x29,0x35,0xb0,0xd4,0x43,0x64,0xc0,0xf4, + 0x3d,0x8,0x30,0xf4,0x9f,0xf6,0xc0,0xf5,0x5,0x6c,0x30,0xf6,0x32,0x10,0x40,0xf6, + 0xe6,0x9f,0xb0,0xf8,0x13,0x43,0xc0,0xf8,0xc7,0xd3,0x30,0xf9,0xf4,0x77,0x40,0xfa, + 0xd3,0x36,0xb0,0xfb,0xc3,0x35,0xc0,0xfc,0xbc,0x53,0x30,0xfd,0xac,0x52,0x40,0xfe, + 0x9c,0x35,0x30,0xff,0x8c,0x34,0x40,0x7,0xa3,0x4a,0xb0,0x8,0x24,0x6f,0xa0,0x23, + 0x94,0xb5,0xb0,0x24,0x10,0x94,0xa0,0x25,0x37,0xf2,0xb0,0x25,0xf0,0x76,0xa0,0x27, + 0x21,0xf,0x30,0x27,0xd0,0x58,0xa0,0x29,0x0,0xff,0x40,0x29,0xb0,0x3a,0xa0,0x2a, + 0xe0,0xd3,0x30,0x2b,0x99,0x57,0x20,0x37,0xf6,0xc6,0xb0,0x38,0xbf,0x2a,0xb0,0x40, + 0xbb,0xf1,0x30,0x40,0xd5,0xb,0xc0,0x47,0x77,0x9,0xb0,0x47,0xdc,0x7f,0x20,0x7f, + 0xff,0xff,0xff,0x1,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x2,0x4,0x5,0x4,0x5,0x3,0x5,0x2,0x5,0x4,0x5, + 0x5,0xff,0xff,0xc2,0x54,0x0,0x0,0xff,0xff,0xc3,0xd0,0x0,0x4,0xff,0xff,0xc7, + 0xc0,0x0,0x8,0xff,0xff,0xd5,0xd0,0x1,0xc,0xff,0xff,0xe3,0xe0,0x1,0x10,0xff, + 0xff,0xd5,0xd0,0x0,0xc,0x4c,0x4d,0x54,0x0,0x43,0x4d,0x54,0x0,0x2d,0x30,0x34, + 0x0,0x2d,0x30,0x33,0x0,0x2d,0x30,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x14,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x72,0x9c,0xaf, + 0x2c,0xff,0xff,0xff,0xff,0xa2,0x92,0x8f,0x30,0xff,0xff,0xff,0xff,0xb6,0x7b,0x52, + 0x40,0xff,0xff,0xff,0xff,0xb7,0x1a,0xc9,0xb0,0xff,0xff,0xff,0xff,0xb8,0x1e,0x8f, + 0x40,0xff,0xff,0xff,0xff,0xb8,0xd4,0x70,0x30,0xff,0xff,0xff,0xff,0xba,0x17,0x7d, + 0xc0,0xff,0xff,0xff,0xff,0xba,0xb5,0xa3,0xb0,0xff,0xff,0xff,0xff,0xbb,0xf8,0xb1, + 0x40,0xff,0xff,0xff,0xff,0xbc,0x96,0xd7,0x30,0xff,0xff,0xff,0xff,0xbd,0xd9,0xe4, + 0xc0,0xff,0xff,0xff,0xff,0xbe,0x78,0xa,0xb0,0xff,0xff,0xff,0xff,0xbf,0xbb,0x18, + 0x40,0xff,0xff,0xff,0xff,0xc0,0x5a,0x8f,0xb0,0xff,0xff,0xff,0xff,0xc1,0x9d,0x9d, + 0x40,0xff,0xff,0xff,0xff,0xc2,0x3b,0xc3,0x30,0xff,0xff,0xff,0xff,0xc3,0x7e,0xd0, + 0xc0,0xff,0xff,0xff,0xff,0xc4,0x1c,0xf6,0xb0,0xff,0xff,0xff,0xff,0xc5,0x60,0x4, + 0x40,0xff,0xff,0xff,0xff,0xc5,0xfe,0x2a,0x30,0xff,0xff,0xff,0xff,0xc7,0x41,0x37, + 0xc0,0xff,0xff,0xff,0xff,0xc7,0xe0,0xaf,0x30,0xff,0xff,0xff,0xff,0xc8,0x81,0x94, + 0x40,0xff,0xff,0xff,0xff,0xca,0x4d,0xa1,0xb0,0xff,0xff,0xff,0xff,0xca,0xee,0x86, + 0xc0,0xff,0xff,0xff,0xff,0xce,0x4d,0xff,0x30,0xff,0xff,0xff,0xff,0xce,0xb0,0xed, + 0xc0,0xff,0xff,0xff,0xff,0xd3,0x29,0x35,0xb0,0xff,0xff,0xff,0xff,0xd4,0x43,0x64, + 0xc0,0xff,0xff,0xff,0xff,0xf4,0x3d,0x8,0x30,0xff,0xff,0xff,0xff,0xf4,0x9f,0xf6, + 0xc0,0xff,0xff,0xff,0xff,0xf5,0x5,0x6c,0x30,0xff,0xff,0xff,0xff,0xf6,0x32,0x10, + 0x40,0xff,0xff,0xff,0xff,0xf6,0xe6,0x9f,0xb0,0xff,0xff,0xff,0xff,0xf8,0x13,0x43, + 0xc0,0xff,0xff,0xff,0xff,0xf8,0xc7,0xd3,0x30,0xff,0xff,0xff,0xff,0xf9,0xf4,0x77, + 0x40,0xff,0xff,0xff,0xff,0xfa,0xd3,0x36,0xb0,0xff,0xff,0xff,0xff,0xfb,0xc3,0x35, + 0xc0,0xff,0xff,0xff,0xff,0xfc,0xbc,0x53,0x30,0xff,0xff,0xff,0xff,0xfd,0xac,0x52, + 0x40,0xff,0xff,0xff,0xff,0xfe,0x9c,0x35,0x30,0xff,0xff,0xff,0xff,0xff,0x8c,0x34, + 0x40,0x0,0x0,0x0,0x0,0x7,0xa3,0x4a,0xb0,0x0,0x0,0x0,0x0,0x8,0x24,0x6f, + 0xa0,0x0,0x0,0x0,0x0,0x23,0x94,0xb5,0xb0,0x0,0x0,0x0,0x0,0x24,0x10,0x94, + 0xa0,0x0,0x0,0x0,0x0,0x25,0x37,0xf2,0xb0,0x0,0x0,0x0,0x0,0x25,0xf0,0x76, + 0xa0,0x0,0x0,0x0,0x0,0x27,0x21,0xf,0x30,0x0,0x0,0x0,0x0,0x27,0xd0,0x58, + 0xa0,0x0,0x0,0x0,0x0,0x29,0x0,0xff,0x40,0x0,0x0,0x0,0x0,0x29,0xb0,0x3a, + 0xa0,0x0,0x0,0x0,0x0,0x2a,0xe0,0xd3,0x30,0x0,0x0,0x0,0x0,0x2b,0x99,0x57, + 0x20,0x0,0x0,0x0,0x0,0x37,0xf6,0xc6,0xb0,0x0,0x0,0x0,0x0,0x38,0xbf,0x2a, + 0xb0,0x0,0x0,0x0,0x0,0x40,0xbb,0xf1,0x30,0x0,0x0,0x0,0x0,0x40,0xd5,0xb, + 0xc0,0x0,0x0,0x0,0x0,0x47,0x77,0x9,0xb0,0x0,0x0,0x0,0x0,0x47,0xdc,0x7f, + 0x20,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x2,0x4,0x5,0x4, + 0x5,0x3,0x5,0x2,0x5,0x4,0x5,0x5,0xff,0xff,0xc2,0x54,0x0,0x0,0xff,0xff, + 0xc3,0xd0,0x0,0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0xff,0xff,0xd5,0xd0,0x1,0xc, + 0xff,0xff,0xe3,0xe0,0x1,0x10,0xff,0xff,0xd5,0xd0,0x0,0xc,0x4c,0x4d,0x54,0x0, + 0x43,0x4d,0x54,0x0,0x2d,0x30,0x34,0x0,0x2d,0x30,0x33,0x0,0x2d,0x30,0x32,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2d,0x30, + 0x33,0x3e,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Argentina/Jujuy + 0x0,0x0,0x4,0x39, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x7,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x80,0x0,0x0,0x0,0x9e, - 0xb8,0xa1,0x80,0x9f,0xba,0xf9,0x70,0xc8,0xf8,0x57,0x60,0xcb,0x88,0xfe,0x80,0xd2, - 0x23,0xf4,0x70,0xd2,0x61,0x9,0xf0,0x2,0x1,0x2,0x1,0x3,0x4,0x5,0xff,0xff, - 0xaa,0x1c,0x0,0x0,0xff,0xff,0xb9,0xb0,0x1,0x4,0xff,0xff,0xab,0xa0,0x0,0x8, - 0xff,0xff,0xb9,0xb0,0x1,0xc,0xff,0xff,0xb9,0xb0,0x1,0x10,0xff,0xff,0xb9,0xb0, - 0x0,0x14,0x4c,0x4d,0x54,0x0,0x43,0x44,0x54,0x0,0x43,0x53,0x54,0x0,0x43,0x57, - 0x54,0x0,0x43,0x50,0x54,0x0,0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0, - 0x0,0x0,0x0,0x0,0x1,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0, - 0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x6,0x0,0x0, - 0x0,0x18,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x72,0xee, - 0x84,0x64,0xff,0xff,0xff,0xff,0x9e,0xb8,0xa1,0x80,0xff,0xff,0xff,0xff,0x9f,0xba, - 0xf9,0x70,0xff,0xff,0xff,0xff,0xc8,0xf8,0x57,0x60,0xff,0xff,0xff,0xff,0xcb,0x88, - 0xfe,0x80,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x61, - 0x9,0xf0,0x0,0x2,0x1,0x2,0x1,0x3,0x4,0x5,0xff,0xff,0xaa,0x1c,0x0,0x0, - 0xff,0xff,0xb9,0xb0,0x1,0x4,0xff,0xff,0xab,0xa0,0x0,0x8,0xff,0xff,0xb9,0xb0, - 0x1,0xc,0xff,0xff,0xb9,0xb0,0x1,0x10,0xff,0xff,0xb9,0xb0,0x0,0x14,0x4c,0x4d, - 0x54,0x0,0x43,0x44,0x54,0x0,0x43,0x53,0x54,0x0,0x43,0x57,0x54,0x0,0x43,0x50, - 0x54,0x0,0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, - 0x1,0x0,0xa,0x45,0x53,0x54,0x35,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Martinique - 0x0,0x0,0x1,0x1, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x11,0x80,0x0,0x0,0x0,0x91, - 0xa3,0xc8,0x44,0x13,0x4d,0x6e,0x40,0x14,0x34,0x16,0xb0,0x1,0x2,0x3,0x2,0xff, - 0xff,0xc6,0xbc,0x0,0x0,0xff,0xff,0xc6,0xbc,0x0,0x4,0xff,0xff,0xc7,0xc0,0x0, - 0x9,0xff,0xff,0xd5,0xd0,0x1,0xd,0x4c,0x4d,0x54,0x0,0x46,0x46,0x4d,0x54,0x0, - 0x41,0x53,0x54,0x0,0x41,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x11,0xf8,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x69,0x87,0x14,0xc4,0xff,0xff,0xff,0xff, - 0x91,0xa3,0xc8,0x44,0x0,0x0,0x0,0x0,0x13,0x4d,0x6e,0x40,0x0,0x0,0x0,0x0, - 0x14,0x34,0x16,0xb0,0x0,0x1,0x2,0x3,0x2,0xff,0xff,0xc6,0xbc,0x0,0x0,0xff, - 0xff,0xc6,0xbc,0x0,0x4,0xff,0xff,0xc7,0xc0,0x0,0x9,0xff,0xff,0xd5,0xd0,0x1, - 0xd,0x4c,0x4d,0x54,0x0,0x46,0x46,0x4d,0x54,0x0,0x41,0x53,0x54,0x0,0x41,0x44, - 0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x41,0x53,0x54,0x34,0xa, - - // /home/konrad/src/smoke/tzone/zoneinfo/America/Port_of_Spain - 0x0,0x0,0x0,0xaa, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x93, - 0x37,0x33,0xac,0x0,0x1,0xff,0xff,0xc6,0x54,0x0,0x0,0xff,0xff,0xc7,0xc0,0x0, - 0x4,0x4c,0x4d,0x54,0x0,0x41,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, - 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0x93,0x37,0x33,0xac,0x0,0x1,0xff,0xff,0xc6,0x54,0x0, - 0x0,0xff,0xff,0xc7,0xc0,0x0,0x4,0x4c,0x4d,0x54,0x0,0x41,0x53,0x54,0x0,0x0, - 0x0,0x0,0x0,0xa,0x41,0x53,0x54,0x34,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Halifax - 0x0,0x0,0xd,0x6e, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xe5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0x80, - 0xf1,0xab,0xa0,0x9a,0xe4,0xde,0xc0,0x9b,0xd6,0x13,0x30,0x9e,0xb8,0x85,0x60,0x9f, - 0xba,0xdd,0x50,0xa2,0x9d,0x17,0x40,0xa3,0x30,0xb1,0x30,0xa4,0x7a,0x56,0x40,0xa5, - 0x1b,0x1f,0x30,0xa6,0x53,0xa0,0xc0,0xa6,0xfc,0x52,0xb0,0xa8,0x3c,0xbd,0x40,0xa8, - 0xdc,0x34,0xb0,0xaa,0x1c,0x9f,0x40,0xaa,0xcd,0x3a,0x30,0xab,0xfc,0x81,0x40,0xac, - 0xbf,0x91,0x30,0xad,0xee,0xd8,0x40,0xae,0x8c,0xfe,0x30,0xaf,0xbc,0x45,0x40,0xb0, - 0x7f,0x55,0x30,0xb1,0xae,0x9c,0x40,0xb2,0x4b,0x70,0xb0,0xb3,0x8e,0x7e,0x40,0xb4, - 0x24,0xbb,0x30,0xb5,0x6e,0x60,0x40,0xb6,0x15,0xc0,0xb0,0xb7,0x4e,0x42,0x40,0xb8, - 0x8,0x17,0xb0,0xb9,0x24,0xe9,0xc0,0xb9,0xe7,0xf9,0xb0,0xbb,0x4,0xcb,0xc0,0xbb, - 0xd1,0x16,0x30,0xbd,0x0,0x5d,0x40,0xbd,0x9d,0x31,0xb0,0xbe,0xf2,0xb4,0x40,0xbf, - 0x90,0xda,0x30,0xc0,0xd3,0xe7,0xc0,0xc1,0x5e,0x47,0x30,0xc2,0x8d,0x8e,0x40,0xc3, - 0x50,0x9e,0x30,0xc4,0x6d,0x70,0x40,0xc5,0x30,0x80,0x30,0xc6,0x72,0x3c,0x40,0xc7, - 0x10,0x62,0x30,0xc8,0x36,0x6e,0xc0,0xc8,0xf9,0x7e,0xb0,0xca,0x16,0x50,0xc0,0xca, - 0xd9,0x60,0xb0,0xcb,0x88,0xe2,0x60,0xd2,0x23,0xf4,0x70,0xd2,0x60,0xed,0xd0,0xd3, - 0x75,0xd6,0xe0,0xd4,0x40,0xcf,0xd0,0xd5,0x55,0xb8,0xe0,0xd6,0x20,0xb1,0xd0,0xd7, - 0x35,0x9a,0xe0,0xd8,0x0,0x93,0xd0,0xd9,0x15,0x7c,0xe0,0xd9,0xe0,0x75,0xd0,0xdc, - 0xde,0x7b,0x60,0xdd,0xa9,0x74,0x50,0xde,0xbe,0x5d,0x60,0xdf,0x89,0x56,0x50,0xe0, - 0x9e,0x3f,0x60,0xe1,0x69,0x38,0x50,0xe2,0x7e,0x21,0x60,0xe3,0x49,0x1a,0x50,0xe6, - 0x47,0x1f,0xe0,0xe7,0x12,0x18,0xd0,0xe8,0x27,0x1,0xe0,0xe8,0xf1,0xfa,0xd0,0xea, - 0x6,0xe3,0xe0,0xea,0xd1,0xdc,0xd0,0xeb,0xe6,0xc5,0xe0,0xec,0xb1,0xbe,0xd0,0xf1, - 0x8f,0xa6,0x60,0xf2,0x7f,0x89,0x50,0xf3,0x6f,0x88,0x60,0xf4,0x5f,0x6b,0x50,0xf5, - 0x4f,0x6a,0x60,0xf6,0x3f,0x4d,0x50,0xf7,0x2f,0x4c,0x60,0xf8,0x28,0x69,0xd0,0xf9, - 0xf,0x2e,0x60,0xfa,0x8,0x4b,0xd0,0xfa,0xf8,0x4a,0xe0,0xfb,0xe8,0x2d,0xd0,0xfc, - 0xd8,0x2c,0xe0,0xfd,0xc8,0xf,0xd0,0xfe,0xb8,0xe,0xe0,0xff,0xa7,0xf1,0xd0,0x0, - 0x97,0xf0,0xe0,0x1,0x87,0xd3,0xd0,0x2,0x77,0xd2,0xe0,0x3,0x70,0xf0,0x50,0x4, - 0x60,0xef,0x60,0x5,0x50,0xd2,0x50,0x6,0x40,0xd1,0x60,0x7,0x30,0xb4,0x50,0x8, - 0x20,0xb3,0x60,0x9,0x10,0x96,0x50,0xa,0x0,0x95,0x60,0xa,0xf0,0x78,0x50,0xb, - 0xe0,0x77,0x60,0xc,0xd9,0x94,0xd0,0xd,0xc0,0x59,0x60,0xe,0xb9,0x76,0xd0,0xf, - 0xa9,0x75,0xe0,0x10,0x99,0x58,0xd0,0x11,0x89,0x57,0xe0,0x12,0x79,0x3a,0xd0,0x13, - 0x69,0x39,0xe0,0x14,0x59,0x1c,0xd0,0x15,0x49,0x1b,0xe0,0x16,0x38,0xfe,0xd0,0x17, - 0x28,0xfd,0xe0,0x18,0x22,0x1b,0x50,0x19,0x8,0xdf,0xe0,0x1a,0x1,0xfd,0x50,0x1a, - 0xf1,0xfc,0x60,0x1b,0xe1,0xdf,0x50,0x1c,0xd1,0xde,0x60,0x1d,0xc1,0xc1,0x50,0x1e, - 0xb1,0xc0,0x60,0x1f,0xa1,0xa3,0x50,0x20,0x75,0xf2,0xe0,0x21,0x81,0x85,0x50,0x22, - 0x55,0xd4,0xe0,0x23,0x6a,0xa1,0xd0,0x24,0x35,0xb6,0xe0,0x25,0x4a,0x83,0xd0,0x26, - 0x15,0x98,0xe0,0x27,0x2a,0x65,0xd0,0x27,0xfe,0xb5,0x60,0x29,0xa,0x47,0xd0,0x29, - 0xde,0x97,0x60,0x2a,0xea,0x29,0xd0,0x2b,0xbe,0x79,0x60,0x2c,0xd3,0x46,0x50,0x2d, - 0x9e,0x5b,0x60,0x2e,0xb3,0x28,0x50,0x2f,0x7e,0x3d,0x60,0x30,0x93,0xa,0x50,0x31, - 0x67,0x59,0xe0,0x32,0x72,0xec,0x50,0x33,0x47,0x3b,0xe0,0x34,0x52,0xce,0x50,0x35, - 0x27,0x1d,0xe0,0x36,0x32,0xb0,0x50,0x37,0x6,0xff,0xe0,0x38,0x1b,0xcc,0xd0,0x38, - 0xe6,0xe1,0xe0,0x39,0xfb,0xae,0xd0,0x3a,0xc6,0xc3,0xe0,0x3b,0xdb,0x90,0xd0,0x3c, - 0xaf,0xe0,0x60,0x3d,0xbb,0x72,0xd0,0x3e,0x8f,0xc2,0x60,0x3f,0x9b,0x54,0xd0,0x40, - 0x6f,0xa4,0x60,0x41,0x84,0x71,0x50,0x42,0x4f,0x86,0x60,0x43,0x64,0x53,0x50,0x44, - 0x2f,0x68,0x60,0x45,0x44,0x35,0x50,0x45,0xf3,0x9a,0xe0,0x47,0x2d,0x51,0xd0,0x47, - 0xd3,0x7c,0xe0,0x49,0xd,0x33,0xd0,0x49,0xb3,0x5e,0xe0,0x4a,0xed,0x15,0xd0,0x4b, - 0x9c,0x7b,0x60,0x4c,0xd6,0x32,0x50,0x4d,0x7c,0x5d,0x60,0x4e,0xb6,0x14,0x50,0x4f, - 0x5c,0x3f,0x60,0x50,0x95,0xf6,0x50,0x51,0x3c,0x21,0x60,0x52,0x75,0xd8,0x50,0x53, - 0x1c,0x3,0x60,0x54,0x55,0xba,0x50,0x54,0xfb,0xe5,0x60,0x56,0x35,0x9c,0x50,0x56, - 0xe5,0x1,0xe0,0x58,0x1e,0xb8,0xd0,0x58,0xc4,0xe3,0xe0,0x59,0xfe,0x9a,0xd0,0x5a, - 0xa4,0xc5,0xe0,0x5b,0xde,0x7c,0xd0,0x5c,0x84,0xa7,0xe0,0x5d,0xbe,0x5e,0xd0,0x5e, - 0x64,0x89,0xe0,0x5f,0x9e,0x40,0xd0,0x60,0x4d,0xa6,0x60,0x61,0x87,0x5d,0x50,0x62, - 0x2d,0x88,0x60,0x63,0x67,0x3f,0x50,0x64,0xd,0x6a,0x60,0x65,0x47,0x21,0x50,0x65, - 0xed,0x4c,0x60,0x67,0x27,0x3,0x50,0x67,0xcd,0x2e,0x60,0x69,0x6,0xe5,0x50,0x69, - 0xad,0x10,0x60,0x6a,0xe6,0xc7,0x50,0x6b,0x96,0x2c,0xe0,0x6c,0xcf,0xe3,0xd0,0x6d, - 0x76,0xe,0xe0,0x6e,0xaf,0xc5,0xd0,0x6f,0x55,0xf0,0xe0,0x70,0x8f,0xa7,0xd0,0x71, - 0x35,0xd2,0xe0,0x72,0x6f,0x89,0xd0,0x73,0x15,0xb4,0xe0,0x74,0x4f,0x6b,0xd0,0x74, - 0xfe,0xd1,0x60,0x76,0x38,0x88,0x50,0x76,0xde,0xb3,0x60,0x78,0x18,0x6a,0x50,0x78, - 0xbe,0x95,0x60,0x79,0xf8,0x4c,0x50,0x7a,0x9e,0x77,0x60,0x7b,0xd8,0x2e,0x50,0x7c, - 0x7e,0x59,0x60,0x7d,0xb8,0x10,0x50,0x7e,0x5e,0x3b,0x60,0x7f,0x97,0xf2,0x50,0x0, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x3,0x4,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0xff,0xff,0xc4,0x60,0x0,0x0,0xff,0xff,0xd5,0xd0,0x1,0x4, - 0xff,0xff,0xc7,0xc0,0x0,0x8,0xff,0xff,0xd5,0xd0,0x1,0xc,0xff,0xff,0xd5,0xd0, - 0x1,0x10,0x4c,0x4d,0x54,0x0,0x41,0x44,0x54,0x0,0x41,0x53,0x54,0x0,0x41,0x57, - 0x54,0x0,0x41,0x50,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x1, - 0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0xe5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0xf8,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x80,0xf1,0xab,0xa0,0xff,0xff,0xff,0xff, - 0x9a,0xe4,0xde,0xc0,0xff,0xff,0xff,0xff,0x9b,0xd6,0x13,0x30,0xff,0xff,0xff,0xff, - 0x9e,0xb8,0x85,0x60,0xff,0xff,0xff,0xff,0x9f,0xba,0xdd,0x50,0xff,0xff,0xff,0xff, - 0xa2,0x9d,0x17,0x40,0xff,0xff,0xff,0xff,0xa3,0x30,0xb1,0x30,0xff,0xff,0xff,0xff, - 0xa4,0x7a,0x56,0x40,0xff,0xff,0xff,0xff,0xa5,0x1b,0x1f,0x30,0xff,0xff,0xff,0xff, - 0xa6,0x53,0xa0,0xc0,0xff,0xff,0xff,0xff,0xa6,0xfc,0x52,0xb0,0xff,0xff,0xff,0xff, - 0xa8,0x3c,0xbd,0x40,0xff,0xff,0xff,0xff,0xa8,0xdc,0x34,0xb0,0xff,0xff,0xff,0xff, - 0xaa,0x1c,0x9f,0x40,0xff,0xff,0xff,0xff,0xaa,0xcd,0x3a,0x30,0xff,0xff,0xff,0xff, - 0xab,0xfc,0x81,0x40,0xff,0xff,0xff,0xff,0xac,0xbf,0x91,0x30,0xff,0xff,0xff,0xff, - 0xad,0xee,0xd8,0x40,0xff,0xff,0xff,0xff,0xae,0x8c,0xfe,0x30,0xff,0xff,0xff,0xff, - 0xaf,0xbc,0x45,0x40,0xff,0xff,0xff,0xff,0xb0,0x7f,0x55,0x30,0xff,0xff,0xff,0xff, - 0xb1,0xae,0x9c,0x40,0xff,0xff,0xff,0xff,0xb2,0x4b,0x70,0xb0,0xff,0xff,0xff,0xff, - 0xb3,0x8e,0x7e,0x40,0xff,0xff,0xff,0xff,0xb4,0x24,0xbb,0x30,0xff,0xff,0xff,0xff, - 0xb5,0x6e,0x60,0x40,0xff,0xff,0xff,0xff,0xb6,0x15,0xc0,0xb0,0xff,0xff,0xff,0xff, - 0xb7,0x4e,0x42,0x40,0xff,0xff,0xff,0xff,0xb8,0x8,0x17,0xb0,0xff,0xff,0xff,0xff, - 0xb9,0x24,0xe9,0xc0,0xff,0xff,0xff,0xff,0xb9,0xe7,0xf9,0xb0,0xff,0xff,0xff,0xff, - 0xbb,0x4,0xcb,0xc0,0xff,0xff,0xff,0xff,0xbb,0xd1,0x16,0x30,0xff,0xff,0xff,0xff, - 0xbd,0x0,0x5d,0x40,0xff,0xff,0xff,0xff,0xbd,0x9d,0x31,0xb0,0xff,0xff,0xff,0xff, - 0xbe,0xf2,0xb4,0x40,0xff,0xff,0xff,0xff,0xbf,0x90,0xda,0x30,0xff,0xff,0xff,0xff, - 0xc0,0xd3,0xe7,0xc0,0xff,0xff,0xff,0xff,0xc1,0x5e,0x47,0x30,0xff,0xff,0xff,0xff, - 0xc2,0x8d,0x8e,0x40,0xff,0xff,0xff,0xff,0xc3,0x50,0x9e,0x30,0xff,0xff,0xff,0xff, - 0xc4,0x6d,0x70,0x40,0xff,0xff,0xff,0xff,0xc5,0x30,0x80,0x30,0xff,0xff,0xff,0xff, - 0xc6,0x72,0x3c,0x40,0xff,0xff,0xff,0xff,0xc7,0x10,0x62,0x30,0xff,0xff,0xff,0xff, - 0xc8,0x36,0x6e,0xc0,0xff,0xff,0xff,0xff,0xc8,0xf9,0x7e,0xb0,0xff,0xff,0xff,0xff, - 0xca,0x16,0x50,0xc0,0xff,0xff,0xff,0xff,0xca,0xd9,0x60,0xb0,0xff,0xff,0xff,0xff, - 0xcb,0x88,0xe2,0x60,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff, - 0xd2,0x60,0xed,0xd0,0xff,0xff,0xff,0xff,0xd3,0x75,0xd6,0xe0,0xff,0xff,0xff,0xff, - 0xd4,0x40,0xcf,0xd0,0xff,0xff,0xff,0xff,0xd5,0x55,0xb8,0xe0,0xff,0xff,0xff,0xff, - 0xd6,0x20,0xb1,0xd0,0xff,0xff,0xff,0xff,0xd7,0x35,0x9a,0xe0,0xff,0xff,0xff,0xff, - 0xd8,0x0,0x93,0xd0,0xff,0xff,0xff,0xff,0xd9,0x15,0x7c,0xe0,0xff,0xff,0xff,0xff, - 0xd9,0xe0,0x75,0xd0,0xff,0xff,0xff,0xff,0xdc,0xde,0x7b,0x60,0xff,0xff,0xff,0xff, - 0xdd,0xa9,0x74,0x50,0xff,0xff,0xff,0xff,0xde,0xbe,0x5d,0x60,0xff,0xff,0xff,0xff, - 0xdf,0x89,0x56,0x50,0xff,0xff,0xff,0xff,0xe0,0x9e,0x3f,0x60,0xff,0xff,0xff,0xff, - 0xe1,0x69,0x38,0x50,0xff,0xff,0xff,0xff,0xe2,0x7e,0x21,0x60,0xff,0xff,0xff,0xff, - 0xe3,0x49,0x1a,0x50,0xff,0xff,0xff,0xff,0xe6,0x47,0x1f,0xe0,0xff,0xff,0xff,0xff, - 0xe7,0x12,0x18,0xd0,0xff,0xff,0xff,0xff,0xe8,0x27,0x1,0xe0,0xff,0xff,0xff,0xff, - 0xe8,0xf1,0xfa,0xd0,0xff,0xff,0xff,0xff,0xea,0x6,0xe3,0xe0,0xff,0xff,0xff,0xff, - 0xea,0xd1,0xdc,0xd0,0xff,0xff,0xff,0xff,0xeb,0xe6,0xc5,0xe0,0xff,0xff,0xff,0xff, - 0xec,0xb1,0xbe,0xd0,0xff,0xff,0xff,0xff,0xf1,0x8f,0xa6,0x60,0xff,0xff,0xff,0xff, - 0xf2,0x7f,0x89,0x50,0xff,0xff,0xff,0xff,0xf3,0x6f,0x88,0x60,0xff,0xff,0xff,0xff, - 0xf4,0x5f,0x6b,0x50,0xff,0xff,0xff,0xff,0xf5,0x4f,0x6a,0x60,0xff,0xff,0xff,0xff, - 0xf6,0x3f,0x4d,0x50,0xff,0xff,0xff,0xff,0xf7,0x2f,0x4c,0x60,0xff,0xff,0xff,0xff, - 0xf8,0x28,0x69,0xd0,0xff,0xff,0xff,0xff,0xf9,0xf,0x2e,0x60,0xff,0xff,0xff,0xff, - 0xfa,0x8,0x4b,0xd0,0xff,0xff,0xff,0xff,0xfa,0xf8,0x4a,0xe0,0xff,0xff,0xff,0xff, - 0xfb,0xe8,0x2d,0xd0,0xff,0xff,0xff,0xff,0xfc,0xd8,0x2c,0xe0,0xff,0xff,0xff,0xff, - 0xfd,0xc8,0xf,0xd0,0xff,0xff,0xff,0xff,0xfe,0xb8,0xe,0xe0,0xff,0xff,0xff,0xff, - 0xff,0xa7,0xf1,0xd0,0x0,0x0,0x0,0x0,0x0,0x97,0xf0,0xe0,0x0,0x0,0x0,0x0, - 0x1,0x87,0xd3,0xd0,0x0,0x0,0x0,0x0,0x2,0x77,0xd2,0xe0,0x0,0x0,0x0,0x0, - 0x3,0x70,0xf0,0x50,0x0,0x0,0x0,0x0,0x4,0x60,0xef,0x60,0x0,0x0,0x0,0x0, - 0x5,0x50,0xd2,0x50,0x0,0x0,0x0,0x0,0x6,0x40,0xd1,0x60,0x0,0x0,0x0,0x0, - 0x7,0x30,0xb4,0x50,0x0,0x0,0x0,0x0,0x8,0x20,0xb3,0x60,0x0,0x0,0x0,0x0, - 0x9,0x10,0x96,0x50,0x0,0x0,0x0,0x0,0xa,0x0,0x95,0x60,0x0,0x0,0x0,0x0, - 0xa,0xf0,0x78,0x50,0x0,0x0,0x0,0x0,0xb,0xe0,0x77,0x60,0x0,0x0,0x0,0x0, - 0xc,0xd9,0x94,0xd0,0x0,0x0,0x0,0x0,0xd,0xc0,0x59,0x60,0x0,0x0,0x0,0x0, - 0xe,0xb9,0x76,0xd0,0x0,0x0,0x0,0x0,0xf,0xa9,0x75,0xe0,0x0,0x0,0x0,0x0, - 0x10,0x99,0x58,0xd0,0x0,0x0,0x0,0x0,0x11,0x89,0x57,0xe0,0x0,0x0,0x0,0x0, - 0x12,0x79,0x3a,0xd0,0x0,0x0,0x0,0x0,0x13,0x69,0x39,0xe0,0x0,0x0,0x0,0x0, - 0x14,0x59,0x1c,0xd0,0x0,0x0,0x0,0x0,0x15,0x49,0x1b,0xe0,0x0,0x0,0x0,0x0, - 0x16,0x38,0xfe,0xd0,0x0,0x0,0x0,0x0,0x17,0x28,0xfd,0xe0,0x0,0x0,0x0,0x0, - 0x18,0x22,0x1b,0x50,0x0,0x0,0x0,0x0,0x19,0x8,0xdf,0xe0,0x0,0x0,0x0,0x0, - 0x1a,0x1,0xfd,0x50,0x0,0x0,0x0,0x0,0x1a,0xf1,0xfc,0x60,0x0,0x0,0x0,0x0, - 0x1b,0xe1,0xdf,0x50,0x0,0x0,0x0,0x0,0x1c,0xd1,0xde,0x60,0x0,0x0,0x0,0x0, - 0x1d,0xc1,0xc1,0x50,0x0,0x0,0x0,0x0,0x1e,0xb1,0xc0,0x60,0x0,0x0,0x0,0x0, - 0x1f,0xa1,0xa3,0x50,0x0,0x0,0x0,0x0,0x20,0x75,0xf2,0xe0,0x0,0x0,0x0,0x0, - 0x21,0x81,0x85,0x50,0x0,0x0,0x0,0x0,0x22,0x55,0xd4,0xe0,0x0,0x0,0x0,0x0, - 0x23,0x6a,0xa1,0xd0,0x0,0x0,0x0,0x0,0x24,0x35,0xb6,0xe0,0x0,0x0,0x0,0x0, - 0x25,0x4a,0x83,0xd0,0x0,0x0,0x0,0x0,0x26,0x15,0x98,0xe0,0x0,0x0,0x0,0x0, - 0x27,0x2a,0x65,0xd0,0x0,0x0,0x0,0x0,0x27,0xfe,0xb5,0x60,0x0,0x0,0x0,0x0, - 0x29,0xa,0x47,0xd0,0x0,0x0,0x0,0x0,0x29,0xde,0x97,0x60,0x0,0x0,0x0,0x0, - 0x2a,0xea,0x29,0xd0,0x0,0x0,0x0,0x0,0x2b,0xbe,0x79,0x60,0x0,0x0,0x0,0x0, - 0x2c,0xd3,0x46,0x50,0x0,0x0,0x0,0x0,0x2d,0x9e,0x5b,0x60,0x0,0x0,0x0,0x0, - 0x2e,0xb3,0x28,0x50,0x0,0x0,0x0,0x0,0x2f,0x7e,0x3d,0x60,0x0,0x0,0x0,0x0, - 0x30,0x93,0xa,0x50,0x0,0x0,0x0,0x0,0x31,0x67,0x59,0xe0,0x0,0x0,0x0,0x0, - 0x32,0x72,0xec,0x50,0x0,0x0,0x0,0x0,0x33,0x47,0x3b,0xe0,0x0,0x0,0x0,0x0, - 0x34,0x52,0xce,0x50,0x0,0x0,0x0,0x0,0x35,0x27,0x1d,0xe0,0x0,0x0,0x0,0x0, - 0x36,0x32,0xb0,0x50,0x0,0x0,0x0,0x0,0x37,0x6,0xff,0xe0,0x0,0x0,0x0,0x0, - 0x38,0x1b,0xcc,0xd0,0x0,0x0,0x0,0x0,0x38,0xe6,0xe1,0xe0,0x0,0x0,0x0,0x0, - 0x39,0xfb,0xae,0xd0,0x0,0x0,0x0,0x0,0x3a,0xc6,0xc3,0xe0,0x0,0x0,0x0,0x0, - 0x3b,0xdb,0x90,0xd0,0x0,0x0,0x0,0x0,0x3c,0xaf,0xe0,0x60,0x0,0x0,0x0,0x0, - 0x3d,0xbb,0x72,0xd0,0x0,0x0,0x0,0x0,0x3e,0x8f,0xc2,0x60,0x0,0x0,0x0,0x0, - 0x3f,0x9b,0x54,0xd0,0x0,0x0,0x0,0x0,0x40,0x6f,0xa4,0x60,0x0,0x0,0x0,0x0, - 0x41,0x84,0x71,0x50,0x0,0x0,0x0,0x0,0x42,0x4f,0x86,0x60,0x0,0x0,0x0,0x0, - 0x43,0x64,0x53,0x50,0x0,0x0,0x0,0x0,0x44,0x2f,0x68,0x60,0x0,0x0,0x0,0x0, - 0x45,0x44,0x35,0x50,0x0,0x0,0x0,0x0,0x45,0xf3,0x9a,0xe0,0x0,0x0,0x0,0x0, - 0x47,0x2d,0x51,0xd0,0x0,0x0,0x0,0x0,0x47,0xd3,0x7c,0xe0,0x0,0x0,0x0,0x0, - 0x49,0xd,0x33,0xd0,0x0,0x0,0x0,0x0,0x49,0xb3,0x5e,0xe0,0x0,0x0,0x0,0x0, - 0x4a,0xed,0x15,0xd0,0x0,0x0,0x0,0x0,0x4b,0x9c,0x7b,0x60,0x0,0x0,0x0,0x0, - 0x4c,0xd6,0x32,0x50,0x0,0x0,0x0,0x0,0x4d,0x7c,0x5d,0x60,0x0,0x0,0x0,0x0, - 0x4e,0xb6,0x14,0x50,0x0,0x0,0x0,0x0,0x4f,0x5c,0x3f,0x60,0x0,0x0,0x0,0x0, - 0x50,0x95,0xf6,0x50,0x0,0x0,0x0,0x0,0x51,0x3c,0x21,0x60,0x0,0x0,0x0,0x0, - 0x52,0x75,0xd8,0x50,0x0,0x0,0x0,0x0,0x53,0x1c,0x3,0x60,0x0,0x0,0x0,0x0, - 0x54,0x55,0xba,0x50,0x0,0x0,0x0,0x0,0x54,0xfb,0xe5,0x60,0x0,0x0,0x0,0x0, - 0x56,0x35,0x9c,0x50,0x0,0x0,0x0,0x0,0x56,0xe5,0x1,0xe0,0x0,0x0,0x0,0x0, - 0x58,0x1e,0xb8,0xd0,0x0,0x0,0x0,0x0,0x58,0xc4,0xe3,0xe0,0x0,0x0,0x0,0x0, - 0x59,0xfe,0x9a,0xd0,0x0,0x0,0x0,0x0,0x5a,0xa4,0xc5,0xe0,0x0,0x0,0x0,0x0, - 0x5b,0xde,0x7c,0xd0,0x0,0x0,0x0,0x0,0x5c,0x84,0xa7,0xe0,0x0,0x0,0x0,0x0, - 0x5d,0xbe,0x5e,0xd0,0x0,0x0,0x0,0x0,0x5e,0x64,0x89,0xe0,0x0,0x0,0x0,0x0, - 0x5f,0x9e,0x40,0xd0,0x0,0x0,0x0,0x0,0x60,0x4d,0xa6,0x60,0x0,0x0,0x0,0x0, - 0x61,0x87,0x5d,0x50,0x0,0x0,0x0,0x0,0x62,0x2d,0x88,0x60,0x0,0x0,0x0,0x0, - 0x63,0x67,0x3f,0x50,0x0,0x0,0x0,0x0,0x64,0xd,0x6a,0x60,0x0,0x0,0x0,0x0, - 0x65,0x47,0x21,0x50,0x0,0x0,0x0,0x0,0x65,0xed,0x4c,0x60,0x0,0x0,0x0,0x0, - 0x67,0x27,0x3,0x50,0x0,0x0,0x0,0x0,0x67,0xcd,0x2e,0x60,0x0,0x0,0x0,0x0, - 0x69,0x6,0xe5,0x50,0x0,0x0,0x0,0x0,0x69,0xad,0x10,0x60,0x0,0x0,0x0,0x0, - 0x6a,0xe6,0xc7,0x50,0x0,0x0,0x0,0x0,0x6b,0x96,0x2c,0xe0,0x0,0x0,0x0,0x0, - 0x6c,0xcf,0xe3,0xd0,0x0,0x0,0x0,0x0,0x6d,0x76,0xe,0xe0,0x0,0x0,0x0,0x0, - 0x6e,0xaf,0xc5,0xd0,0x0,0x0,0x0,0x0,0x6f,0x55,0xf0,0xe0,0x0,0x0,0x0,0x0, - 0x70,0x8f,0xa7,0xd0,0x0,0x0,0x0,0x0,0x71,0x35,0xd2,0xe0,0x0,0x0,0x0,0x0, - 0x72,0x6f,0x89,0xd0,0x0,0x0,0x0,0x0,0x73,0x15,0xb4,0xe0,0x0,0x0,0x0,0x0, - 0x74,0x4f,0x6b,0xd0,0x0,0x0,0x0,0x0,0x74,0xfe,0xd1,0x60,0x0,0x0,0x0,0x0, - 0x76,0x38,0x88,0x50,0x0,0x0,0x0,0x0,0x76,0xde,0xb3,0x60,0x0,0x0,0x0,0x0, - 0x78,0x18,0x6a,0x50,0x0,0x0,0x0,0x0,0x78,0xbe,0x95,0x60,0x0,0x0,0x0,0x0, - 0x79,0xf8,0x4c,0x50,0x0,0x0,0x0,0x0,0x7a,0x9e,0x77,0x60,0x0,0x0,0x0,0x0, - 0x7b,0xd8,0x2e,0x50,0x0,0x0,0x0,0x0,0x7c,0x7e,0x59,0x60,0x0,0x0,0x0,0x0, - 0x7d,0xb8,0x10,0x50,0x0,0x0,0x0,0x0,0x7e,0x5e,0x3b,0x60,0x0,0x0,0x0,0x0, - 0x7f,0x97,0xf2,0x50,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0xc4,0x60,0x0,0x0,0xff, - 0xff,0xd5,0xd0,0x1,0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0xff,0xff,0xd5,0xd0,0x1, - 0xc,0xff,0xff,0xd5,0xd0,0x1,0x10,0x4c,0x4d,0x54,0x0,0x41,0x44,0x54,0x0,0x41, - 0x53,0x54,0x0,0x41,0x57,0x54,0x0,0x41,0x50,0x54,0x0,0x0,0x0,0x0,0x0,0x1, - 0x0,0x0,0x0,0x0,0x1,0xa,0x41,0x53,0x54,0x34,0x41,0x44,0x54,0x2c,0x4d,0x33, - 0x2e,0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Tortola - 0x0,0x0,0x0,0xaa, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x93, - 0x37,0x33,0xac,0x0,0x1,0xff,0xff,0xc6,0x54,0x0,0x0,0xff,0xff,0xc7,0xc0,0x0, - 0x4,0x4c,0x4d,0x54,0x0,0x41,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, - 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0x93,0x37,0x33,0xac,0x0,0x1,0xff,0xff,0xc6,0x54,0x0, - 0x0,0xff,0xff,0xc7,0xc0,0x0,0x4,0x4c,0x4d,0x54,0x0,0x41,0x53,0x54,0x0,0x0, - 0x0,0x0,0x0,0xa,0x41,0x53,0x54,0x34,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Argentina/Rio_Gallegos - 0x0,0x0,0x4,0x69, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x3d,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x16,0x80,0x0,0x0,0x0,0xa2, + 0x0,0x0,0x3c,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0xa2, 0x92,0x8f,0x30,0xb6,0x7b,0x52,0x40,0xb7,0x1a,0xc9,0xb0,0xb8,0x1e,0x8f,0x40,0xb8, 0xd4,0x70,0x30,0xba,0x17,0x7d,0xc0,0xba,0xb5,0xa3,0xb0,0xbb,0xf8,0xb1,0x40,0xbc, 0x96,0xd7,0x30,0xbd,0xd9,0xe4,0xc0,0xbe,0x78,0xa,0xb0,0xbf,0xbb,0x18,0x40,0xc0, @@ -31948,68 +27210,65 @@ static const unsigned char qt_resource_data[] = { 0xd3,0x36,0xb0,0xfb,0xc3,0x35,0xc0,0xfc,0xbc,0x53,0x30,0xfd,0xac,0x52,0x40,0xfe, 0x9c,0x35,0x30,0xff,0x8c,0x34,0x40,0x7,0xa3,0x4a,0xb0,0x8,0x24,0x6f,0xa0,0x23, 0x94,0xb5,0xb0,0x24,0x10,0x94,0xa0,0x25,0x37,0xf2,0xb0,0x25,0xf0,0x76,0xa0,0x27, - 0x21,0xf,0x30,0x27,0xd0,0x58,0xa0,0x29,0x0,0xf1,0x30,0x29,0xb0,0x3a,0xa0,0x2a, - 0xe0,0xd3,0x30,0x2b,0x99,0x57,0x20,0x37,0xf6,0xc6,0xb0,0x38,0xbf,0x2a,0xb0,0x40, - 0xbb,0xf1,0x30,0x40,0xd5,0xb,0xc0,0x47,0x77,0x9,0xb0,0x47,0xdc,0x7f,0x20,0x1, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x3,0x5,0x6,0x5,0x4,0x5,0xff,0xff,0xbf,0x1c, - 0x0,0x0,0xff,0xff,0xc3,0xd0,0x0,0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0xff,0xff, - 0xd5,0xd0,0x1,0xc,0xff,0xff,0xe3,0xe0,0x1,0xc,0xff,0xff,0xd5,0xd0,0x0,0x8, - 0xff,0xff,0xc7,0xc0,0x0,0x11,0xff,0xff,0xd5,0xd0,0x0,0x8,0x4c,0x4d,0x54,0x0, - 0x43,0x4d,0x54,0x0,0x41,0x52,0x54,0x0,0x41,0x52,0x53,0x54,0x0,0x57,0x41,0x52, - 0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x3e,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x16,0xf8,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x72,0x9c,0xb2,0x64,0xff,0xff, - 0xff,0xff,0xa2,0x92,0x8f,0x30,0xff,0xff,0xff,0xff,0xb6,0x7b,0x52,0x40,0xff,0xff, - 0xff,0xff,0xb7,0x1a,0xc9,0xb0,0xff,0xff,0xff,0xff,0xb8,0x1e,0x8f,0x40,0xff,0xff, - 0xff,0xff,0xb8,0xd4,0x70,0x30,0xff,0xff,0xff,0xff,0xba,0x17,0x7d,0xc0,0xff,0xff, - 0xff,0xff,0xba,0xb5,0xa3,0xb0,0xff,0xff,0xff,0xff,0xbb,0xf8,0xb1,0x40,0xff,0xff, - 0xff,0xff,0xbc,0x96,0xd7,0x30,0xff,0xff,0xff,0xff,0xbd,0xd9,0xe4,0xc0,0xff,0xff, - 0xff,0xff,0xbe,0x78,0xa,0xb0,0xff,0xff,0xff,0xff,0xbf,0xbb,0x18,0x40,0xff,0xff, - 0xff,0xff,0xc0,0x5a,0x8f,0xb0,0xff,0xff,0xff,0xff,0xc1,0x9d,0x9d,0x40,0xff,0xff, - 0xff,0xff,0xc2,0x3b,0xc3,0x30,0xff,0xff,0xff,0xff,0xc3,0x7e,0xd0,0xc0,0xff,0xff, - 0xff,0xff,0xc4,0x1c,0xf6,0xb0,0xff,0xff,0xff,0xff,0xc5,0x60,0x4,0x40,0xff,0xff, - 0xff,0xff,0xc5,0xfe,0x2a,0x30,0xff,0xff,0xff,0xff,0xc7,0x41,0x37,0xc0,0xff,0xff, - 0xff,0xff,0xc7,0xe0,0xaf,0x30,0xff,0xff,0xff,0xff,0xc8,0x81,0x94,0x40,0xff,0xff, - 0xff,0xff,0xca,0x4d,0xa1,0xb0,0xff,0xff,0xff,0xff,0xca,0xee,0x86,0xc0,0xff,0xff, - 0xff,0xff,0xce,0x4d,0xff,0x30,0xff,0xff,0xff,0xff,0xce,0xb0,0xed,0xc0,0xff,0xff, - 0xff,0xff,0xd3,0x29,0x35,0xb0,0xff,0xff,0xff,0xff,0xd4,0x43,0x64,0xc0,0xff,0xff, - 0xff,0xff,0xf4,0x3d,0x8,0x30,0xff,0xff,0xff,0xff,0xf4,0x9f,0xf6,0xc0,0xff,0xff, - 0xff,0xff,0xf5,0x5,0x6c,0x30,0xff,0xff,0xff,0xff,0xf6,0x32,0x10,0x40,0xff,0xff, - 0xff,0xff,0xf6,0xe6,0x9f,0xb0,0xff,0xff,0xff,0xff,0xf8,0x13,0x43,0xc0,0xff,0xff, - 0xff,0xff,0xf8,0xc7,0xd3,0x30,0xff,0xff,0xff,0xff,0xf9,0xf4,0x77,0x40,0xff,0xff, - 0xff,0xff,0xfa,0xd3,0x36,0xb0,0xff,0xff,0xff,0xff,0xfb,0xc3,0x35,0xc0,0xff,0xff, - 0xff,0xff,0xfc,0xbc,0x53,0x30,0xff,0xff,0xff,0xff,0xfd,0xac,0x52,0x40,0xff,0xff, - 0xff,0xff,0xfe,0x9c,0x35,0x30,0xff,0xff,0xff,0xff,0xff,0x8c,0x34,0x40,0x0,0x0, - 0x0,0x0,0x7,0xa3,0x4a,0xb0,0x0,0x0,0x0,0x0,0x8,0x24,0x6f,0xa0,0x0,0x0, - 0x0,0x0,0x23,0x94,0xb5,0xb0,0x0,0x0,0x0,0x0,0x24,0x10,0x94,0xa0,0x0,0x0, - 0x0,0x0,0x25,0x37,0xf2,0xb0,0x0,0x0,0x0,0x0,0x25,0xf0,0x76,0xa0,0x0,0x0, - 0x0,0x0,0x27,0x21,0xf,0x30,0x0,0x0,0x0,0x0,0x27,0xd0,0x58,0xa0,0x0,0x0, - 0x0,0x0,0x29,0x0,0xf1,0x30,0x0,0x0,0x0,0x0,0x29,0xb0,0x3a,0xa0,0x0,0x0, - 0x0,0x0,0x2a,0xe0,0xd3,0x30,0x0,0x0,0x0,0x0,0x2b,0x99,0x57,0x20,0x0,0x0, - 0x0,0x0,0x37,0xf6,0xc6,0xb0,0x0,0x0,0x0,0x0,0x38,0xbf,0x2a,0xb0,0x0,0x0, - 0x0,0x0,0x40,0xbb,0xf1,0x30,0x0,0x0,0x0,0x0,0x40,0xd5,0xb,0xc0,0x0,0x0, - 0x0,0x0,0x47,0x77,0x9,0xb0,0x0,0x0,0x0,0x0,0x47,0xdc,0x7f,0x20,0x0,0x1, + 0x2a,0x57,0xc0,0x27,0xe2,0xdb,0xb0,0x28,0xee,0x8a,0x40,0x29,0xb0,0x3a,0xa0,0x2a, + 0xe0,0xd3,0x30,0x2b,0x99,0x57,0x20,0x37,0xf6,0xc6,0xb0,0x38,0xbf,0x2a,0xb0,0x47, + 0x77,0x9,0xb0,0x47,0xdc,0x7f,0x20,0x7f,0xff,0xff,0xff,0x1,0x2,0x3,0x2,0x3, 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x3,0x5,0x6,0x5,0x4,0x5,0xff,0xff,0xbf,0x1c, + 0x2,0x3,0x2,0x3,0x2,0x5,0x4,0x5,0x4,0x5,0x4,0x2,0x3,0x2,0x4,0x5, + 0x4,0x5,0x3,0x5,0x4,0x5,0x5,0xff,0xff,0xc2,0xc8,0x0,0x0,0xff,0xff,0xc3, + 0xd0,0x0,0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0xff,0xff,0xd5,0xd0,0x1,0xc,0xff, + 0xff,0xe3,0xe0,0x1,0x10,0xff,0xff,0xd5,0xd0,0x0,0xc,0x4c,0x4d,0x54,0x0,0x43, + 0x4d,0x54,0x0,0x2d,0x30,0x34,0x0,0x2d,0x30,0x33,0x0,0x2d,0x30,0x32,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3d,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x14,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff, + 0xff,0xff,0xff,0x72,0x9c,0xae,0xb8,0xff,0xff,0xff,0xff,0xa2,0x92,0x8f,0x30,0xff, + 0xff,0xff,0xff,0xb6,0x7b,0x52,0x40,0xff,0xff,0xff,0xff,0xb7,0x1a,0xc9,0xb0,0xff, + 0xff,0xff,0xff,0xb8,0x1e,0x8f,0x40,0xff,0xff,0xff,0xff,0xb8,0xd4,0x70,0x30,0xff, + 0xff,0xff,0xff,0xba,0x17,0x7d,0xc0,0xff,0xff,0xff,0xff,0xba,0xb5,0xa3,0xb0,0xff, + 0xff,0xff,0xff,0xbb,0xf8,0xb1,0x40,0xff,0xff,0xff,0xff,0xbc,0x96,0xd7,0x30,0xff, + 0xff,0xff,0xff,0xbd,0xd9,0xe4,0xc0,0xff,0xff,0xff,0xff,0xbe,0x78,0xa,0xb0,0xff, + 0xff,0xff,0xff,0xbf,0xbb,0x18,0x40,0xff,0xff,0xff,0xff,0xc0,0x5a,0x8f,0xb0,0xff, + 0xff,0xff,0xff,0xc1,0x9d,0x9d,0x40,0xff,0xff,0xff,0xff,0xc2,0x3b,0xc3,0x30,0xff, + 0xff,0xff,0xff,0xc3,0x7e,0xd0,0xc0,0xff,0xff,0xff,0xff,0xc4,0x1c,0xf6,0xb0,0xff, + 0xff,0xff,0xff,0xc5,0x60,0x4,0x40,0xff,0xff,0xff,0xff,0xc5,0xfe,0x2a,0x30,0xff, + 0xff,0xff,0xff,0xc7,0x41,0x37,0xc0,0xff,0xff,0xff,0xff,0xc7,0xe0,0xaf,0x30,0xff, + 0xff,0xff,0xff,0xc8,0x81,0x94,0x40,0xff,0xff,0xff,0xff,0xca,0x4d,0xa1,0xb0,0xff, + 0xff,0xff,0xff,0xca,0xee,0x86,0xc0,0xff,0xff,0xff,0xff,0xce,0x4d,0xff,0x30,0xff, + 0xff,0xff,0xff,0xce,0xb0,0xed,0xc0,0xff,0xff,0xff,0xff,0xd3,0x29,0x35,0xb0,0xff, + 0xff,0xff,0xff,0xd4,0x43,0x64,0xc0,0xff,0xff,0xff,0xff,0xf4,0x3d,0x8,0x30,0xff, + 0xff,0xff,0xff,0xf4,0x9f,0xf6,0xc0,0xff,0xff,0xff,0xff,0xf5,0x5,0x6c,0x30,0xff, + 0xff,0xff,0xff,0xf6,0x32,0x10,0x40,0xff,0xff,0xff,0xff,0xf6,0xe6,0x9f,0xb0,0xff, + 0xff,0xff,0xff,0xf8,0x13,0x43,0xc0,0xff,0xff,0xff,0xff,0xf8,0xc7,0xd3,0x30,0xff, + 0xff,0xff,0xff,0xf9,0xf4,0x77,0x40,0xff,0xff,0xff,0xff,0xfa,0xd3,0x36,0xb0,0xff, + 0xff,0xff,0xff,0xfb,0xc3,0x35,0xc0,0xff,0xff,0xff,0xff,0xfc,0xbc,0x53,0x30,0xff, + 0xff,0xff,0xff,0xfd,0xac,0x52,0x40,0xff,0xff,0xff,0xff,0xfe,0x9c,0x35,0x30,0xff, + 0xff,0xff,0xff,0xff,0x8c,0x34,0x40,0x0,0x0,0x0,0x0,0x7,0xa3,0x4a,0xb0,0x0, + 0x0,0x0,0x0,0x8,0x24,0x6f,0xa0,0x0,0x0,0x0,0x0,0x23,0x94,0xb5,0xb0,0x0, + 0x0,0x0,0x0,0x24,0x10,0x94,0xa0,0x0,0x0,0x0,0x0,0x25,0x37,0xf2,0xb0,0x0, + 0x0,0x0,0x0,0x25,0xf0,0x76,0xa0,0x0,0x0,0x0,0x0,0x27,0x2a,0x57,0xc0,0x0, + 0x0,0x0,0x0,0x27,0xe2,0xdb,0xb0,0x0,0x0,0x0,0x0,0x28,0xee,0x8a,0x40,0x0, + 0x0,0x0,0x0,0x29,0xb0,0x3a,0xa0,0x0,0x0,0x0,0x0,0x2a,0xe0,0xd3,0x30,0x0, + 0x0,0x0,0x0,0x2b,0x99,0x57,0x20,0x0,0x0,0x0,0x0,0x37,0xf6,0xc6,0xb0,0x0, + 0x0,0x0,0x0,0x38,0xbf,0x2a,0xb0,0x0,0x0,0x0,0x0,0x47,0x77,0x9,0xb0,0x0, + 0x0,0x0,0x0,0x47,0xdc,0x7f,0x20,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0, + 0x1,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x5,0x4,0x5,0x4,0x5,0x4, + 0x2,0x3,0x2,0x4,0x5,0x4,0x5,0x3,0x5,0x4,0x5,0x5,0xff,0xff,0xc2,0xc8, 0x0,0x0,0xff,0xff,0xc3,0xd0,0x0,0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0xff,0xff, - 0xd5,0xd0,0x1,0xc,0xff,0xff,0xe3,0xe0,0x1,0xc,0xff,0xff,0xd5,0xd0,0x0,0x8, - 0xff,0xff,0xc7,0xc0,0x0,0x11,0xff,0xff,0xd5,0xd0,0x0,0x8,0x4c,0x4d,0x54,0x0, - 0x43,0x4d,0x54,0x0,0x41,0x52,0x54,0x0,0x41,0x52,0x53,0x54,0x0,0x57,0x41,0x52, - 0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xa,0x41,0x52,0x54,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Argentina/Cordoba - 0x0,0x0,0x4,0x69, + 0xd5,0xd0,0x1,0xc,0xff,0xff,0xe3,0xe0,0x1,0x10,0xff,0xff,0xd5,0xd0,0x0,0xc, + 0x4c,0x4d,0x54,0x0,0x43,0x4d,0x54,0x0,0x2d,0x30,0x34,0x0,0x2d,0x30,0x33,0x0, + 0x2d,0x30,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xa,0x3c,0x2d,0x30,0x33,0x3e,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Argentina/La_Rioja + 0x0,0x0,0x4,0x63, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x3d,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x16,0x80,0x0,0x0,0x0,0xa2, + 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3f,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0xa2, 0x92,0x8f,0x30,0xb6,0x7b,0x52,0x40,0xb7,0x1a,0xc9,0xb0,0xb8,0x1e,0x8f,0x40,0xb8, 0xd4,0x70,0x30,0xba,0x17,0x7d,0xc0,0xba,0xb5,0xa3,0xb0,0xbb,0xf8,0xb1,0x40,0xbc, 0x96,0xd7,0x30,0xbd,0xd9,0xe4,0xc0,0xbe,0x78,0xa,0xb0,0xbf,0xbb,0x18,0x40,0xc0, @@ -32022,68 +27281,68 @@ static const unsigned char qt_resource_data[] = { 0xd3,0x36,0xb0,0xfb,0xc3,0x35,0xc0,0xfc,0xbc,0x53,0x30,0xfd,0xac,0x52,0x40,0xfe, 0x9c,0x35,0x30,0xff,0x8c,0x34,0x40,0x7,0xa3,0x4a,0xb0,0x8,0x24,0x6f,0xa0,0x23, 0x94,0xb5,0xb0,0x24,0x10,0x94,0xa0,0x25,0x37,0xf2,0xb0,0x25,0xf0,0x76,0xa0,0x27, - 0x21,0xf,0x30,0x27,0xd0,0x58,0xa0,0x29,0x0,0xff,0x40,0x29,0xb0,0x3a,0xa0,0x2a, - 0xe0,0xd3,0x30,0x2b,0x99,0x57,0x20,0x37,0xf6,0xc6,0xb0,0x38,0xbf,0x2a,0xb0,0x47, - 0x77,0x9,0xb0,0x47,0xdc,0x7f,0x20,0x48,0xfa,0xa2,0xb0,0x49,0xbc,0x61,0x20,0x1, + 0x21,0xf,0x30,0x27,0xcd,0xb5,0xa0,0x28,0x26,0x26,0x40,0x29,0x0,0xf1,0x30,0x29, + 0xb0,0x3a,0xa0,0x2a,0xe0,0xd3,0x30,0x2b,0x99,0x57,0x20,0x37,0xf6,0xc6,0xb0,0x38, + 0xbf,0x2a,0xb0,0x40,0xbb,0xf1,0x30,0x40,0xd5,0xb,0xc0,0x47,0x77,0x9,0xb0,0x47, + 0xdc,0x7f,0x20,0x7f,0xff,0xff,0xff,0x1,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x6,0x4,0x5,0x4,0x5,0x3,0x5,0x4,0x5,0x4,0x5,0xff,0xff,0xc3,0xd0, - 0x0,0x0,0xff,0xff,0xc3,0xd0,0x0,0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0xff,0xff, - 0xd5,0xd0,0x1,0xc,0xff,0xff,0xe3,0xe0,0x1,0xc,0xff,0xff,0xd5,0xd0,0x0,0x8, - 0xff,0xff,0xc7,0xc0,0x0,0x11,0xff,0xff,0xd5,0xd0,0x0,0x8,0x4c,0x4d,0x54,0x0, - 0x43,0x4d,0x54,0x0,0x41,0x52,0x54,0x0,0x41,0x52,0x53,0x54,0x0,0x57,0x41,0x52, - 0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x3e,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x16,0xf8,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x72,0x9c,0xad,0xb0,0xff,0xff, - 0xff,0xff,0xa2,0x92,0x8f,0x30,0xff,0xff,0xff,0xff,0xb6,0x7b,0x52,0x40,0xff,0xff, - 0xff,0xff,0xb7,0x1a,0xc9,0xb0,0xff,0xff,0xff,0xff,0xb8,0x1e,0x8f,0x40,0xff,0xff, - 0xff,0xff,0xb8,0xd4,0x70,0x30,0xff,0xff,0xff,0xff,0xba,0x17,0x7d,0xc0,0xff,0xff, - 0xff,0xff,0xba,0xb5,0xa3,0xb0,0xff,0xff,0xff,0xff,0xbb,0xf8,0xb1,0x40,0xff,0xff, - 0xff,0xff,0xbc,0x96,0xd7,0x30,0xff,0xff,0xff,0xff,0xbd,0xd9,0xe4,0xc0,0xff,0xff, - 0xff,0xff,0xbe,0x78,0xa,0xb0,0xff,0xff,0xff,0xff,0xbf,0xbb,0x18,0x40,0xff,0xff, - 0xff,0xff,0xc0,0x5a,0x8f,0xb0,0xff,0xff,0xff,0xff,0xc1,0x9d,0x9d,0x40,0xff,0xff, - 0xff,0xff,0xc2,0x3b,0xc3,0x30,0xff,0xff,0xff,0xff,0xc3,0x7e,0xd0,0xc0,0xff,0xff, - 0xff,0xff,0xc4,0x1c,0xf6,0xb0,0xff,0xff,0xff,0xff,0xc5,0x60,0x4,0x40,0xff,0xff, - 0xff,0xff,0xc5,0xfe,0x2a,0x30,0xff,0xff,0xff,0xff,0xc7,0x41,0x37,0xc0,0xff,0xff, - 0xff,0xff,0xc7,0xe0,0xaf,0x30,0xff,0xff,0xff,0xff,0xc8,0x81,0x94,0x40,0xff,0xff, - 0xff,0xff,0xca,0x4d,0xa1,0xb0,0xff,0xff,0xff,0xff,0xca,0xee,0x86,0xc0,0xff,0xff, - 0xff,0xff,0xce,0x4d,0xff,0x30,0xff,0xff,0xff,0xff,0xce,0xb0,0xed,0xc0,0xff,0xff, - 0xff,0xff,0xd3,0x29,0x35,0xb0,0xff,0xff,0xff,0xff,0xd4,0x43,0x64,0xc0,0xff,0xff, - 0xff,0xff,0xf4,0x3d,0x8,0x30,0xff,0xff,0xff,0xff,0xf4,0x9f,0xf6,0xc0,0xff,0xff, - 0xff,0xff,0xf5,0x5,0x6c,0x30,0xff,0xff,0xff,0xff,0xf6,0x32,0x10,0x40,0xff,0xff, - 0xff,0xff,0xf6,0xe6,0x9f,0xb0,0xff,0xff,0xff,0xff,0xf8,0x13,0x43,0xc0,0xff,0xff, - 0xff,0xff,0xf8,0xc7,0xd3,0x30,0xff,0xff,0xff,0xff,0xf9,0xf4,0x77,0x40,0xff,0xff, - 0xff,0xff,0xfa,0xd3,0x36,0xb0,0xff,0xff,0xff,0xff,0xfb,0xc3,0x35,0xc0,0xff,0xff, - 0xff,0xff,0xfc,0xbc,0x53,0x30,0xff,0xff,0xff,0xff,0xfd,0xac,0x52,0x40,0xff,0xff, - 0xff,0xff,0xfe,0x9c,0x35,0x30,0xff,0xff,0xff,0xff,0xff,0x8c,0x34,0x40,0x0,0x0, - 0x0,0x0,0x7,0xa3,0x4a,0xb0,0x0,0x0,0x0,0x0,0x8,0x24,0x6f,0xa0,0x0,0x0, - 0x0,0x0,0x23,0x94,0xb5,0xb0,0x0,0x0,0x0,0x0,0x24,0x10,0x94,0xa0,0x0,0x0, - 0x0,0x0,0x25,0x37,0xf2,0xb0,0x0,0x0,0x0,0x0,0x25,0xf0,0x76,0xa0,0x0,0x0, - 0x0,0x0,0x27,0x21,0xf,0x30,0x0,0x0,0x0,0x0,0x27,0xd0,0x58,0xa0,0x0,0x0, - 0x0,0x0,0x29,0x0,0xff,0x40,0x0,0x0,0x0,0x0,0x29,0xb0,0x3a,0xa0,0x0,0x0, + 0x2,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x2,0x5,0x4,0x5,0x4,0x5,0x3, + 0x5,0x2,0x5,0x4,0x5,0x5,0xff,0xff,0xc1,0x54,0x0,0x0,0xff,0xff,0xc3,0xd0, + 0x0,0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0xff,0xff,0xd5,0xd0,0x1,0xc,0xff,0xff, + 0xe3,0xe0,0x1,0x10,0xff,0xff,0xd5,0xd0,0x0,0xc,0x4c,0x4d,0x54,0x0,0x43,0x4d, + 0x54,0x0,0x2d,0x30,0x34,0x0,0x2d,0x30,0x33,0x0,0x2d,0x30,0x32,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x40,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x14,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff, + 0xff,0xff,0x72,0x9c,0xb0,0x2c,0xff,0xff,0xff,0xff,0xa2,0x92,0x8f,0x30,0xff,0xff, + 0xff,0xff,0xb6,0x7b,0x52,0x40,0xff,0xff,0xff,0xff,0xb7,0x1a,0xc9,0xb0,0xff,0xff, + 0xff,0xff,0xb8,0x1e,0x8f,0x40,0xff,0xff,0xff,0xff,0xb8,0xd4,0x70,0x30,0xff,0xff, + 0xff,0xff,0xba,0x17,0x7d,0xc0,0xff,0xff,0xff,0xff,0xba,0xb5,0xa3,0xb0,0xff,0xff, + 0xff,0xff,0xbb,0xf8,0xb1,0x40,0xff,0xff,0xff,0xff,0xbc,0x96,0xd7,0x30,0xff,0xff, + 0xff,0xff,0xbd,0xd9,0xe4,0xc0,0xff,0xff,0xff,0xff,0xbe,0x78,0xa,0xb0,0xff,0xff, + 0xff,0xff,0xbf,0xbb,0x18,0x40,0xff,0xff,0xff,0xff,0xc0,0x5a,0x8f,0xb0,0xff,0xff, + 0xff,0xff,0xc1,0x9d,0x9d,0x40,0xff,0xff,0xff,0xff,0xc2,0x3b,0xc3,0x30,0xff,0xff, + 0xff,0xff,0xc3,0x7e,0xd0,0xc0,0xff,0xff,0xff,0xff,0xc4,0x1c,0xf6,0xb0,0xff,0xff, + 0xff,0xff,0xc5,0x60,0x4,0x40,0xff,0xff,0xff,0xff,0xc5,0xfe,0x2a,0x30,0xff,0xff, + 0xff,0xff,0xc7,0x41,0x37,0xc0,0xff,0xff,0xff,0xff,0xc7,0xe0,0xaf,0x30,0xff,0xff, + 0xff,0xff,0xc8,0x81,0x94,0x40,0xff,0xff,0xff,0xff,0xca,0x4d,0xa1,0xb0,0xff,0xff, + 0xff,0xff,0xca,0xee,0x86,0xc0,0xff,0xff,0xff,0xff,0xce,0x4d,0xff,0x30,0xff,0xff, + 0xff,0xff,0xce,0xb0,0xed,0xc0,0xff,0xff,0xff,0xff,0xd3,0x29,0x35,0xb0,0xff,0xff, + 0xff,0xff,0xd4,0x43,0x64,0xc0,0xff,0xff,0xff,0xff,0xf4,0x3d,0x8,0x30,0xff,0xff, + 0xff,0xff,0xf4,0x9f,0xf6,0xc0,0xff,0xff,0xff,0xff,0xf5,0x5,0x6c,0x30,0xff,0xff, + 0xff,0xff,0xf6,0x32,0x10,0x40,0xff,0xff,0xff,0xff,0xf6,0xe6,0x9f,0xb0,0xff,0xff, + 0xff,0xff,0xf8,0x13,0x43,0xc0,0xff,0xff,0xff,0xff,0xf8,0xc7,0xd3,0x30,0xff,0xff, + 0xff,0xff,0xf9,0xf4,0x77,0x40,0xff,0xff,0xff,0xff,0xfa,0xd3,0x36,0xb0,0xff,0xff, + 0xff,0xff,0xfb,0xc3,0x35,0xc0,0xff,0xff,0xff,0xff,0xfc,0xbc,0x53,0x30,0xff,0xff, + 0xff,0xff,0xfd,0xac,0x52,0x40,0xff,0xff,0xff,0xff,0xfe,0x9c,0x35,0x30,0xff,0xff, + 0xff,0xff,0xff,0x8c,0x34,0x40,0x0,0x0,0x0,0x0,0x7,0xa3,0x4a,0xb0,0x0,0x0, + 0x0,0x0,0x8,0x24,0x6f,0xa0,0x0,0x0,0x0,0x0,0x23,0x94,0xb5,0xb0,0x0,0x0, + 0x0,0x0,0x24,0x10,0x94,0xa0,0x0,0x0,0x0,0x0,0x25,0x37,0xf2,0xb0,0x0,0x0, + 0x0,0x0,0x25,0xf0,0x76,0xa0,0x0,0x0,0x0,0x0,0x27,0x21,0xf,0x30,0x0,0x0, + 0x0,0x0,0x27,0xcd,0xb5,0xa0,0x0,0x0,0x0,0x0,0x28,0x26,0x26,0x40,0x0,0x0, + 0x0,0x0,0x29,0x0,0xf1,0x30,0x0,0x0,0x0,0x0,0x29,0xb0,0x3a,0xa0,0x0,0x0, 0x0,0x0,0x2a,0xe0,0xd3,0x30,0x0,0x0,0x0,0x0,0x2b,0x99,0x57,0x20,0x0,0x0, 0x0,0x0,0x37,0xf6,0xc6,0xb0,0x0,0x0,0x0,0x0,0x38,0xbf,0x2a,0xb0,0x0,0x0, + 0x0,0x0,0x40,0xbb,0xf1,0x30,0x0,0x0,0x0,0x0,0x40,0xd5,0xb,0xc0,0x0,0x0, 0x0,0x0,0x47,0x77,0x9,0xb0,0x0,0x0,0x0,0x0,0x47,0xdc,0x7f,0x20,0x0,0x0, - 0x0,0x0,0x48,0xfa,0xa2,0xb0,0x0,0x0,0x0,0x0,0x49,0xbc,0x61,0x20,0x0,0x1, + 0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x6,0x4,0x5,0x4,0x5,0x3,0x5,0x4,0x5,0x4,0x5,0xff,0xff,0xc3,0xd0, - 0x0,0x0,0xff,0xff,0xc3,0xd0,0x0,0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0xff,0xff, - 0xd5,0xd0,0x1,0xc,0xff,0xff,0xe3,0xe0,0x1,0xc,0xff,0xff,0xd5,0xd0,0x0,0x8, - 0xff,0xff,0xc7,0xc0,0x0,0x11,0xff,0xff,0xd5,0xd0,0x0,0x8,0x4c,0x4d,0x54,0x0, - 0x43,0x4d,0x54,0x0,0x41,0x52,0x54,0x0,0x41,0x52,0x53,0x54,0x0,0x57,0x41,0x52, - 0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xa,0x41,0x52,0x54,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Argentina/San_Luis - 0x0,0x0,0x4,0x93, + 0x2,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x2,0x5,0x4,0x5,0x4,0x5,0x3, + 0x5,0x2,0x5,0x4,0x5,0x5,0xff,0xff,0xc1,0x54,0x0,0x0,0xff,0xff,0xc3,0xd0, + 0x0,0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0xff,0xff,0xd5,0xd0,0x1,0xc,0xff,0xff, + 0xe3,0xe0,0x1,0x10,0xff,0xff,0xd5,0xd0,0x0,0xc,0x4c,0x4d,0x54,0x0,0x43,0x4d, + 0x54,0x0,0x2d,0x30,0x34,0x0,0x2d,0x30,0x33,0x0,0x2d,0x30,0x32,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2d,0x30,0x33,0x3e, + 0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Argentina/Ushuaia + 0x0,0x0,0x4,0x55, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x3e,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x1c,0x80,0x0,0x0,0x0,0xa2, + 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3e,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0xa2, 0x92,0x8f,0x30,0xb6,0x7b,0x52,0x40,0xb7,0x1a,0xc9,0xb0,0xb8,0x1e,0x8f,0x40,0xb8, 0xd4,0x70,0x30,0xba,0x17,0x7d,0xc0,0xba,0xb5,0xa3,0xb0,0xbb,0xf8,0xb1,0x40,0xbc, 0x96,0xd7,0x30,0xbd,0xd9,0xe4,0xc0,0xbe,0x78,0xa,0xb0,0xbf,0xbb,0x18,0x40,0xc0, @@ -32095,25 +27354,23 @@ static const unsigned char qt_resource_data[] = { 0xe6,0x9f,0xb0,0xf8,0x13,0x43,0xc0,0xf8,0xc7,0xd3,0x30,0xf9,0xf4,0x77,0x40,0xfa, 0xd3,0x36,0xb0,0xfb,0xc3,0x35,0xc0,0xfc,0xbc,0x53,0x30,0xfd,0xac,0x52,0x40,0xfe, 0x9c,0x35,0x30,0xff,0x8c,0x34,0x40,0x7,0xa3,0x4a,0xb0,0x8,0x24,0x6f,0xa0,0x23, - 0x94,0xb5,0xb0,0x24,0x10,0x94,0xa0,0x25,0x37,0xf2,0xb0,0x25,0xfd,0xa5,0xa0,0x27, - 0x19,0x34,0x40,0x27,0xcd,0xc3,0xb0,0x28,0x47,0x1b,0xc0,0x37,0xf6,0xc6,0xb0,0x38, - 0xbf,0x2a,0xb0,0x40,0xba,0x9f,0xb0,0x41,0x3,0x30,0x40,0x47,0x77,0x9,0xb0,0x47, - 0x93,0xfc,0xa0,0x47,0xd3,0x52,0xb0,0x48,0xf1,0x76,0x40,0x49,0xb3,0x34,0xb0,0x4a, - 0xd1,0x58,0x40,0x1,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x94,0xb5,0xb0,0x24,0x10,0x94,0xa0,0x25,0x37,0xf2,0xb0,0x25,0xf0,0x76,0xa0,0x27, + 0x21,0xf,0x30,0x27,0xd0,0x58,0xa0,0x29,0x0,0xf1,0x30,0x29,0xb0,0x3a,0xa0,0x2a, + 0xe0,0xd3,0x30,0x2b,0x99,0x57,0x20,0x37,0xf6,0xc6,0xb0,0x38,0xbf,0x2a,0xb0,0x40, + 0xb9,0x4e,0x30,0x40,0xd5,0xb,0xc0,0x47,0x77,0x9,0xb0,0x47,0xdc,0x7f,0x20,0x7f, + 0xff,0xff,0xff,0x1,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x5,0x4,0x5, - 0x4,0x5,0x4,0x6,0x7,0x6,0x5,0x7,0x5,0x6,0x5,0x4,0x7,0x6,0x7,0x6, - 0x5,0xff,0xff,0xc1,0xcc,0x0,0x0,0xff,0xff,0xc3,0xd0,0x0,0x4,0xff,0xff,0xc7, - 0xc0,0x0,0x8,0xff,0xff,0xd5,0xd0,0x1,0xc,0xff,0xff,0xe3,0xe0,0x1,0xc,0xff, - 0xff,0xd5,0xd0,0x0,0x8,0xff,0xff,0xc7,0xc0,0x0,0x11,0xff,0xff,0xd5,0xd0,0x1, - 0x16,0xff,0xff,0xd5,0xd0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x43,0x4d,0x54,0x0,0x41, - 0x52,0x54,0x0,0x41,0x52,0x53,0x54,0x0,0x57,0x41,0x52,0x54,0x0,0x57,0x41,0x52, - 0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x3,0x5,0x2,0x5,0x4,0x5, + 0x5,0xff,0xff,0xbf,0xf8,0x0,0x0,0xff,0xff,0xc3,0xd0,0x0,0x4,0xff,0xff,0xc7, + 0xc0,0x0,0x8,0xff,0xff,0xd5,0xd0,0x1,0xc,0xff,0xff,0xe3,0xe0,0x1,0x10,0xff, + 0xff,0xd5,0xd0,0x0,0xc,0x4c,0x4d,0x54,0x0,0x43,0x4d,0x54,0x0,0x2d,0x30,0x34, + 0x0,0x2d,0x30,0x33,0x0,0x2d,0x30,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0, - 0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x9,0x0,0x0,0x0, - 0x1c,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x72,0x9c,0xaf, - 0xb4,0xff,0xff,0xff,0xff,0xa2,0x92,0x8f,0x30,0xff,0xff,0xff,0xff,0xb6,0x7b,0x52, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x14,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x72,0x9c,0xb1, + 0x88,0xff,0xff,0xff,0xff,0xa2,0x92,0x8f,0x30,0xff,0xff,0xff,0xff,0xb6,0x7b,0x52, 0x40,0xff,0xff,0xff,0xff,0xb7,0x1a,0xc9,0xb0,0xff,0xff,0xff,0xff,0xb8,0x1e,0x8f, 0x40,0xff,0xff,0xff,0xff,0xb8,0xd4,0x70,0x30,0xff,0xff,0xff,0xff,0xba,0x17,0x7d, 0xc0,0xff,0xff,0xff,0xff,0xba,0xb5,0xa3,0xb0,0xff,0xff,0xff,0xff,0xbb,0xf8,0xb1, @@ -32136,31 +27393,29 @@ static const unsigned char qt_resource_data[] = { 0x40,0xff,0xff,0xff,0xff,0xfe,0x9c,0x35,0x30,0xff,0xff,0xff,0xff,0xff,0x8c,0x34, 0x40,0x0,0x0,0x0,0x0,0x7,0xa3,0x4a,0xb0,0x0,0x0,0x0,0x0,0x8,0x24,0x6f, 0xa0,0x0,0x0,0x0,0x0,0x23,0x94,0xb5,0xb0,0x0,0x0,0x0,0x0,0x24,0x10,0x94, - 0xa0,0x0,0x0,0x0,0x0,0x25,0x37,0xf2,0xb0,0x0,0x0,0x0,0x0,0x25,0xfd,0xa5, - 0xa0,0x0,0x0,0x0,0x0,0x27,0x19,0x34,0x40,0x0,0x0,0x0,0x0,0x27,0xcd,0xc3, - 0xb0,0x0,0x0,0x0,0x0,0x28,0x47,0x1b,0xc0,0x0,0x0,0x0,0x0,0x37,0xf6,0xc6, - 0xb0,0x0,0x0,0x0,0x0,0x38,0xbf,0x2a,0xb0,0x0,0x0,0x0,0x0,0x40,0xba,0x9f, - 0xb0,0x0,0x0,0x0,0x0,0x41,0x3,0x30,0x40,0x0,0x0,0x0,0x0,0x47,0x77,0x9, - 0xb0,0x0,0x0,0x0,0x0,0x47,0x93,0xfc,0xa0,0x0,0x0,0x0,0x0,0x47,0xd3,0x52, - 0xb0,0x0,0x0,0x0,0x0,0x48,0xf1,0x76,0x40,0x0,0x0,0x0,0x0,0x49,0xb3,0x34, - 0xb0,0x0,0x0,0x0,0x0,0x4a,0xd1,0x58,0x40,0x0,0x1,0x2,0x3,0x2,0x3,0x2, + 0xa0,0x0,0x0,0x0,0x0,0x25,0x37,0xf2,0xb0,0x0,0x0,0x0,0x0,0x25,0xf0,0x76, + 0xa0,0x0,0x0,0x0,0x0,0x27,0x21,0xf,0x30,0x0,0x0,0x0,0x0,0x27,0xd0,0x58, + 0xa0,0x0,0x0,0x0,0x0,0x29,0x0,0xf1,0x30,0x0,0x0,0x0,0x0,0x29,0xb0,0x3a, + 0xa0,0x0,0x0,0x0,0x0,0x2a,0xe0,0xd3,0x30,0x0,0x0,0x0,0x0,0x2b,0x99,0x57, + 0x20,0x0,0x0,0x0,0x0,0x37,0xf6,0xc6,0xb0,0x0,0x0,0x0,0x0,0x38,0xbf,0x2a, + 0xb0,0x0,0x0,0x0,0x0,0x40,0xb9,0x4e,0x30,0x0,0x0,0x0,0x0,0x40,0xd5,0xb, + 0xc0,0x0,0x0,0x0,0x0,0x47,0x77,0x9,0xb0,0x0,0x0,0x0,0x0,0x47,0xdc,0x7f, + 0x20,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x2,0x3,0x2,0x3,0x2, 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x5,0x4,0x5,0x4,0x5,0x4,0x6,0x7,0x6,0x5,0x7,0x5, - 0x6,0x5,0x4,0x7,0x6,0x7,0x6,0x5,0xff,0xff,0xc1,0xcc,0x0,0x0,0xff,0xff, + 0x3,0x2,0x3,0x2,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x3,0x5,0x2,0x5,0x4,0x5,0x5,0xff,0xff,0xbf,0xf8,0x0,0x0,0xff,0xff, 0xc3,0xd0,0x0,0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0xff,0xff,0xd5,0xd0,0x1,0xc, - 0xff,0xff,0xe3,0xe0,0x1,0xc,0xff,0xff,0xd5,0xd0,0x0,0x8,0xff,0xff,0xc7,0xc0, - 0x0,0x11,0xff,0xff,0xd5,0xd0,0x1,0x16,0xff,0xff,0xd5,0xd0,0x0,0x8,0x4c,0x4d, - 0x54,0x0,0x43,0x4d,0x54,0x0,0x41,0x52,0x54,0x0,0x41,0x52,0x53,0x54,0x0,0x57, - 0x41,0x52,0x54,0x0,0x57,0x41,0x52,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x41,0x52,0x54, - 0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Argentina/Buenos_Aires - 0x0,0x0,0x4,0x3f, + 0xff,0xff,0xe3,0xe0,0x1,0x10,0xff,0xff,0xd5,0xd0,0x0,0xc,0x4c,0x4d,0x54,0x0, + 0x43,0x4d,0x54,0x0,0x2d,0x30,0x34,0x0,0x2d,0x30,0x33,0x0,0x2d,0x30,0x32,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2d,0x30, + 0x33,0x3e,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Argentina/Catamarca + 0x0,0x0,0x4,0x55, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x3d,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x80,0x0,0x0,0x0,0xa2, + 0x0,0x0,0x3e,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0xa2, 0x92,0x8f,0x30,0xb6,0x7b,0x52,0x40,0xb7,0x1a,0xc9,0xb0,0xb8,0x1e,0x8f,0x40,0xb8, 0xd4,0x70,0x30,0xba,0x17,0x7d,0xc0,0xba,0xb5,0xa3,0xb0,0xbb,0xf8,0xb1,0x40,0xbc, 0x96,0xd7,0x30,0xbd,0xd9,0xe4,0xc0,0xbe,0x78,0xa,0xb0,0xbf,0xbb,0x18,0x40,0xc0, @@ -32173,289 +27428,67 @@ static const unsigned char qt_resource_data[] = { 0xd3,0x36,0xb0,0xfb,0xc3,0x35,0xc0,0xfc,0xbc,0x53,0x30,0xfd,0xac,0x52,0x40,0xfe, 0x9c,0x35,0x30,0xff,0x8c,0x34,0x40,0x7,0xa3,0x4a,0xb0,0x8,0x24,0x6f,0xa0,0x23, 0x94,0xb5,0xb0,0x24,0x10,0x94,0xa0,0x25,0x37,0xf2,0xb0,0x25,0xf0,0x76,0xa0,0x27, - 0x21,0xf,0x30,0x27,0xd0,0x58,0xa0,0x29,0x0,0xf1,0x30,0x29,0xb0,0x3a,0xa0,0x2a, - 0xe0,0xd3,0x30,0x2b,0x99,0x57,0x20,0x37,0xf6,0xc6,0xb0,0x38,0xbf,0x2a,0xb0,0x47, - 0x77,0x9,0xb0,0x47,0xdc,0x7f,0x20,0x48,0xfa,0xa2,0xb0,0x49,0xbc,0x61,0x20,0x1, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x3,0x5,0x4,0x5,0x4,0x5,0xff,0xff,0xc9,0x34, - 0x0,0x0,0xff,0xff,0xc3,0xd0,0x0,0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0xff,0xff, - 0xd5,0xd0,0x1,0xc,0xff,0xff,0xe3,0xe0,0x1,0xc,0xff,0xff,0xd5,0xd0,0x0,0x8, - 0x4c,0x4d,0x54,0x0,0x43,0x4d,0x54,0x0,0x41,0x52,0x54,0x0,0x41,0x52,0x53,0x54, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, - 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x3e,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0x72,0x9c,0xa8,0x4c,0xff,0xff,0xff,0xff,0xa2,0x92,0x8f, - 0x30,0xff,0xff,0xff,0xff,0xb6,0x7b,0x52,0x40,0xff,0xff,0xff,0xff,0xb7,0x1a,0xc9, - 0xb0,0xff,0xff,0xff,0xff,0xb8,0x1e,0x8f,0x40,0xff,0xff,0xff,0xff,0xb8,0xd4,0x70, - 0x30,0xff,0xff,0xff,0xff,0xba,0x17,0x7d,0xc0,0xff,0xff,0xff,0xff,0xba,0xb5,0xa3, - 0xb0,0xff,0xff,0xff,0xff,0xbb,0xf8,0xb1,0x40,0xff,0xff,0xff,0xff,0xbc,0x96,0xd7, - 0x30,0xff,0xff,0xff,0xff,0xbd,0xd9,0xe4,0xc0,0xff,0xff,0xff,0xff,0xbe,0x78,0xa, - 0xb0,0xff,0xff,0xff,0xff,0xbf,0xbb,0x18,0x40,0xff,0xff,0xff,0xff,0xc0,0x5a,0x8f, - 0xb0,0xff,0xff,0xff,0xff,0xc1,0x9d,0x9d,0x40,0xff,0xff,0xff,0xff,0xc2,0x3b,0xc3, - 0x30,0xff,0xff,0xff,0xff,0xc3,0x7e,0xd0,0xc0,0xff,0xff,0xff,0xff,0xc4,0x1c,0xf6, - 0xb0,0xff,0xff,0xff,0xff,0xc5,0x60,0x4,0x40,0xff,0xff,0xff,0xff,0xc5,0xfe,0x2a, - 0x30,0xff,0xff,0xff,0xff,0xc7,0x41,0x37,0xc0,0xff,0xff,0xff,0xff,0xc7,0xe0,0xaf, - 0x30,0xff,0xff,0xff,0xff,0xc8,0x81,0x94,0x40,0xff,0xff,0xff,0xff,0xca,0x4d,0xa1, - 0xb0,0xff,0xff,0xff,0xff,0xca,0xee,0x86,0xc0,0xff,0xff,0xff,0xff,0xce,0x4d,0xff, - 0x30,0xff,0xff,0xff,0xff,0xce,0xb0,0xed,0xc0,0xff,0xff,0xff,0xff,0xd3,0x29,0x35, - 0xb0,0xff,0xff,0xff,0xff,0xd4,0x43,0x64,0xc0,0xff,0xff,0xff,0xff,0xf4,0x3d,0x8, - 0x30,0xff,0xff,0xff,0xff,0xf4,0x9f,0xf6,0xc0,0xff,0xff,0xff,0xff,0xf5,0x5,0x6c, - 0x30,0xff,0xff,0xff,0xff,0xf6,0x32,0x10,0x40,0xff,0xff,0xff,0xff,0xf6,0xe6,0x9f, - 0xb0,0xff,0xff,0xff,0xff,0xf8,0x13,0x43,0xc0,0xff,0xff,0xff,0xff,0xf8,0xc7,0xd3, - 0x30,0xff,0xff,0xff,0xff,0xf9,0xf4,0x77,0x40,0xff,0xff,0xff,0xff,0xfa,0xd3,0x36, - 0xb0,0xff,0xff,0xff,0xff,0xfb,0xc3,0x35,0xc0,0xff,0xff,0xff,0xff,0xfc,0xbc,0x53, - 0x30,0xff,0xff,0xff,0xff,0xfd,0xac,0x52,0x40,0xff,0xff,0xff,0xff,0xfe,0x9c,0x35, - 0x30,0xff,0xff,0xff,0xff,0xff,0x8c,0x34,0x40,0x0,0x0,0x0,0x0,0x7,0xa3,0x4a, - 0xb0,0x0,0x0,0x0,0x0,0x8,0x24,0x6f,0xa0,0x0,0x0,0x0,0x0,0x23,0x94,0xb5, - 0xb0,0x0,0x0,0x0,0x0,0x24,0x10,0x94,0xa0,0x0,0x0,0x0,0x0,0x25,0x37,0xf2, - 0xb0,0x0,0x0,0x0,0x0,0x25,0xf0,0x76,0xa0,0x0,0x0,0x0,0x0,0x27,0x21,0xf, - 0x30,0x0,0x0,0x0,0x0,0x27,0xd0,0x58,0xa0,0x0,0x0,0x0,0x0,0x29,0x0,0xf1, - 0x30,0x0,0x0,0x0,0x0,0x29,0xb0,0x3a,0xa0,0x0,0x0,0x0,0x0,0x2a,0xe0,0xd3, - 0x30,0x0,0x0,0x0,0x0,0x2b,0x99,0x57,0x20,0x0,0x0,0x0,0x0,0x37,0xf6,0xc6, - 0xb0,0x0,0x0,0x0,0x0,0x38,0xbf,0x2a,0xb0,0x0,0x0,0x0,0x0,0x47,0x77,0x9, - 0xb0,0x0,0x0,0x0,0x0,0x47,0xdc,0x7f,0x20,0x0,0x0,0x0,0x0,0x48,0xfa,0xa2, - 0xb0,0x0,0x0,0x0,0x0,0x49,0xbc,0x61,0x20,0x0,0x1,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x3,0x5,0x4,0x5,0x4,0x5,0xff,0xff,0xc9,0x34,0x0,0x0,0xff,0xff,0xc3, - 0xd0,0x0,0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0xff,0xff,0xd5,0xd0,0x1,0xc,0xff, - 0xff,0xe3,0xe0,0x1,0xc,0xff,0xff,0xd5,0xd0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x43, - 0x4d,0x54,0x0,0x41,0x52,0x54,0x0,0x41,0x52,0x53,0x54,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x41,0x52,0x54,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Argentina/ComodRivadavia - 0x0,0x0,0x4,0x69, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x3d,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x16,0x80,0x0,0x0,0x0,0xa2, - 0x92,0x8f,0x30,0xb6,0x7b,0x52,0x40,0xb7,0x1a,0xc9,0xb0,0xb8,0x1e,0x8f,0x40,0xb8, - 0xd4,0x70,0x30,0xba,0x17,0x7d,0xc0,0xba,0xb5,0xa3,0xb0,0xbb,0xf8,0xb1,0x40,0xbc, - 0x96,0xd7,0x30,0xbd,0xd9,0xe4,0xc0,0xbe,0x78,0xa,0xb0,0xbf,0xbb,0x18,0x40,0xc0, - 0x5a,0x8f,0xb0,0xc1,0x9d,0x9d,0x40,0xc2,0x3b,0xc3,0x30,0xc3,0x7e,0xd0,0xc0,0xc4, - 0x1c,0xf6,0xb0,0xc5,0x60,0x4,0x40,0xc5,0xfe,0x2a,0x30,0xc7,0x41,0x37,0xc0,0xc7, - 0xe0,0xaf,0x30,0xc8,0x81,0x94,0x40,0xca,0x4d,0xa1,0xb0,0xca,0xee,0x86,0xc0,0xce, - 0x4d,0xff,0x30,0xce,0xb0,0xed,0xc0,0xd3,0x29,0x35,0xb0,0xd4,0x43,0x64,0xc0,0xf4, - 0x3d,0x8,0x30,0xf4,0x9f,0xf6,0xc0,0xf5,0x5,0x6c,0x30,0xf6,0x32,0x10,0x40,0xf6, - 0xe6,0x9f,0xb0,0xf8,0x13,0x43,0xc0,0xf8,0xc7,0xd3,0x30,0xf9,0xf4,0x77,0x40,0xfa, - 0xd3,0x36,0xb0,0xfb,0xc3,0x35,0xc0,0xfc,0xbc,0x53,0x30,0xfd,0xac,0x52,0x40,0xfe, - 0x9c,0x35,0x30,0xff,0x8c,0x34,0x40,0x7,0xa3,0x4a,0xb0,0x8,0x24,0x6f,0xa0,0x23, - 0x94,0xb5,0xb0,0x24,0x10,0x94,0xa0,0x25,0x37,0xf2,0xb0,0x25,0xf0,0x76,0xa0,0x27, - 0x21,0xf,0x30,0x27,0xd0,0x58,0xa0,0x29,0x0,0xff,0x40,0x29,0xb0,0x3a,0xa0,0x2a, - 0xe0,0xd3,0x30,0x2b,0x99,0x57,0x20,0x37,0xf6,0xc6,0xb0,0x38,0xbf,0x2a,0xb0,0x40, - 0xbb,0xf1,0x30,0x40,0xd5,0xb,0xc0,0x47,0x77,0x9,0xb0,0x47,0xdc,0x7f,0x20,0x1, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x6,0x4,0x5,0x4,0x5,0x3,0x5,0x6,0x5,0x4,0x5,0xff,0xff,0xc2,0x54, - 0x0,0x0,0xff,0xff,0xc3,0xd0,0x0,0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0xff,0xff, - 0xd5,0xd0,0x1,0xc,0xff,0xff,0xe3,0xe0,0x1,0xc,0xff,0xff,0xd5,0xd0,0x0,0x8, - 0xff,0xff,0xc7,0xc0,0x0,0x11,0xff,0xff,0xd5,0xd0,0x0,0x8,0x4c,0x4d,0x54,0x0, - 0x43,0x4d,0x54,0x0,0x41,0x52,0x54,0x0,0x41,0x52,0x53,0x54,0x0,0x57,0x41,0x52, - 0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x3e,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x16,0xf8,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x72,0x9c,0xaf,0x2c,0xff,0xff, - 0xff,0xff,0xa2,0x92,0x8f,0x30,0xff,0xff,0xff,0xff,0xb6,0x7b,0x52,0x40,0xff,0xff, - 0xff,0xff,0xb7,0x1a,0xc9,0xb0,0xff,0xff,0xff,0xff,0xb8,0x1e,0x8f,0x40,0xff,0xff, - 0xff,0xff,0xb8,0xd4,0x70,0x30,0xff,0xff,0xff,0xff,0xba,0x17,0x7d,0xc0,0xff,0xff, - 0xff,0xff,0xba,0xb5,0xa3,0xb0,0xff,0xff,0xff,0xff,0xbb,0xf8,0xb1,0x40,0xff,0xff, - 0xff,0xff,0xbc,0x96,0xd7,0x30,0xff,0xff,0xff,0xff,0xbd,0xd9,0xe4,0xc0,0xff,0xff, - 0xff,0xff,0xbe,0x78,0xa,0xb0,0xff,0xff,0xff,0xff,0xbf,0xbb,0x18,0x40,0xff,0xff, - 0xff,0xff,0xc0,0x5a,0x8f,0xb0,0xff,0xff,0xff,0xff,0xc1,0x9d,0x9d,0x40,0xff,0xff, - 0xff,0xff,0xc2,0x3b,0xc3,0x30,0xff,0xff,0xff,0xff,0xc3,0x7e,0xd0,0xc0,0xff,0xff, - 0xff,0xff,0xc4,0x1c,0xf6,0xb0,0xff,0xff,0xff,0xff,0xc5,0x60,0x4,0x40,0xff,0xff, - 0xff,0xff,0xc5,0xfe,0x2a,0x30,0xff,0xff,0xff,0xff,0xc7,0x41,0x37,0xc0,0xff,0xff, - 0xff,0xff,0xc7,0xe0,0xaf,0x30,0xff,0xff,0xff,0xff,0xc8,0x81,0x94,0x40,0xff,0xff, - 0xff,0xff,0xca,0x4d,0xa1,0xb0,0xff,0xff,0xff,0xff,0xca,0xee,0x86,0xc0,0xff,0xff, - 0xff,0xff,0xce,0x4d,0xff,0x30,0xff,0xff,0xff,0xff,0xce,0xb0,0xed,0xc0,0xff,0xff, - 0xff,0xff,0xd3,0x29,0x35,0xb0,0xff,0xff,0xff,0xff,0xd4,0x43,0x64,0xc0,0xff,0xff, - 0xff,0xff,0xf4,0x3d,0x8,0x30,0xff,0xff,0xff,0xff,0xf4,0x9f,0xf6,0xc0,0xff,0xff, - 0xff,0xff,0xf5,0x5,0x6c,0x30,0xff,0xff,0xff,0xff,0xf6,0x32,0x10,0x40,0xff,0xff, - 0xff,0xff,0xf6,0xe6,0x9f,0xb0,0xff,0xff,0xff,0xff,0xf8,0x13,0x43,0xc0,0xff,0xff, - 0xff,0xff,0xf8,0xc7,0xd3,0x30,0xff,0xff,0xff,0xff,0xf9,0xf4,0x77,0x40,0xff,0xff, - 0xff,0xff,0xfa,0xd3,0x36,0xb0,0xff,0xff,0xff,0xff,0xfb,0xc3,0x35,0xc0,0xff,0xff, - 0xff,0xff,0xfc,0xbc,0x53,0x30,0xff,0xff,0xff,0xff,0xfd,0xac,0x52,0x40,0xff,0xff, - 0xff,0xff,0xfe,0x9c,0x35,0x30,0xff,0xff,0xff,0xff,0xff,0x8c,0x34,0x40,0x0,0x0, - 0x0,0x0,0x7,0xa3,0x4a,0xb0,0x0,0x0,0x0,0x0,0x8,0x24,0x6f,0xa0,0x0,0x0, - 0x0,0x0,0x23,0x94,0xb5,0xb0,0x0,0x0,0x0,0x0,0x24,0x10,0x94,0xa0,0x0,0x0, - 0x0,0x0,0x25,0x37,0xf2,0xb0,0x0,0x0,0x0,0x0,0x25,0xf0,0x76,0xa0,0x0,0x0, - 0x0,0x0,0x27,0x21,0xf,0x30,0x0,0x0,0x0,0x0,0x27,0xd0,0x58,0xa0,0x0,0x0, - 0x0,0x0,0x29,0x0,0xff,0x40,0x0,0x0,0x0,0x0,0x29,0xb0,0x3a,0xa0,0x0,0x0, - 0x0,0x0,0x2a,0xe0,0xd3,0x30,0x0,0x0,0x0,0x0,0x2b,0x99,0x57,0x20,0x0,0x0, - 0x0,0x0,0x37,0xf6,0xc6,0xb0,0x0,0x0,0x0,0x0,0x38,0xbf,0x2a,0xb0,0x0,0x0, - 0x0,0x0,0x40,0xbb,0xf1,0x30,0x0,0x0,0x0,0x0,0x40,0xd5,0xb,0xc0,0x0,0x0, - 0x0,0x0,0x47,0x77,0x9,0xb0,0x0,0x0,0x0,0x0,0x47,0xdc,0x7f,0x20,0x0,0x1, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x6,0x4,0x5,0x4,0x5,0x3,0x5,0x6,0x5,0x4,0x5,0xff,0xff,0xc2,0x54, - 0x0,0x0,0xff,0xff,0xc3,0xd0,0x0,0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0xff,0xff, - 0xd5,0xd0,0x1,0xc,0xff,0xff,0xe3,0xe0,0x1,0xc,0xff,0xff,0xd5,0xd0,0x0,0x8, - 0xff,0xff,0xc7,0xc0,0x0,0x11,0xff,0xff,0xd5,0xd0,0x0,0x8,0x4c,0x4d,0x54,0x0, - 0x43,0x4d,0x54,0x0,0x41,0x52,0x54,0x0,0x41,0x52,0x53,0x54,0x0,0x57,0x41,0x52, - 0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xa,0x41,0x52,0x54,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Argentina/Jujuy - 0x0,0x0,0x4,0x79, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x3b,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x1c,0x80,0x0,0x0,0x0,0xa2, - 0x92,0x8f,0x30,0xb6,0x7b,0x52,0x40,0xb7,0x1a,0xc9,0xb0,0xb8,0x1e,0x8f,0x40,0xb8, - 0xd4,0x70,0x30,0xba,0x17,0x7d,0xc0,0xba,0xb5,0xa3,0xb0,0xbb,0xf8,0xb1,0x40,0xbc, - 0x96,0xd7,0x30,0xbd,0xd9,0xe4,0xc0,0xbe,0x78,0xa,0xb0,0xbf,0xbb,0x18,0x40,0xc0, - 0x5a,0x8f,0xb0,0xc1,0x9d,0x9d,0x40,0xc2,0x3b,0xc3,0x30,0xc3,0x7e,0xd0,0xc0,0xc4, - 0x1c,0xf6,0xb0,0xc5,0x60,0x4,0x40,0xc5,0xfe,0x2a,0x30,0xc7,0x41,0x37,0xc0,0xc7, - 0xe0,0xaf,0x30,0xc8,0x81,0x94,0x40,0xca,0x4d,0xa1,0xb0,0xca,0xee,0x86,0xc0,0xce, - 0x4d,0xff,0x30,0xce,0xb0,0xed,0xc0,0xd3,0x29,0x35,0xb0,0xd4,0x43,0x64,0xc0,0xf4, - 0x3d,0x8,0x30,0xf4,0x9f,0xf6,0xc0,0xf5,0x5,0x6c,0x30,0xf6,0x32,0x10,0x40,0xf6, - 0xe6,0x9f,0xb0,0xf8,0x13,0x43,0xc0,0xf8,0xc7,0xd3,0x30,0xf9,0xf4,0x77,0x40,0xfa, - 0xd3,0x36,0xb0,0xfb,0xc3,0x35,0xc0,0xfc,0xbc,0x53,0x30,0xfd,0xac,0x52,0x40,0xfe, - 0x9c,0x35,0x30,0xff,0x8c,0x34,0x40,0x7,0xa3,0x4a,0xb0,0x8,0x24,0x6f,0xa0,0x23, - 0x94,0xb5,0xb0,0x24,0x10,0x94,0xa0,0x25,0x37,0xf2,0xb0,0x25,0xf0,0x76,0xa0,0x27, - 0x2a,0x57,0xc0,0x27,0xe2,0xdb,0xb0,0x28,0xee,0x8a,0x40,0x29,0xb0,0x3a,0xa0,0x2a, - 0xe0,0xd3,0x30,0x2b,0x99,0x57,0x20,0x37,0xf6,0xc6,0xb0,0x38,0xbf,0x2a,0xb0,0x47, - 0x77,0x9,0xb0,0x47,0xdc,0x7f,0x20,0x1,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x5,0x4,0x5,0x4,0x5,0x4,0x6,0x7,0x6,0x4,0x5,0x4,0x5,0x3,0x5, - 0x4,0x5,0xff,0xff,0xc2,0xc8,0x0,0x0,0xff,0xff,0xc3,0xd0,0x0,0x4,0xff,0xff, - 0xc7,0xc0,0x0,0x8,0xff,0xff,0xd5,0xd0,0x1,0xc,0xff,0xff,0xe3,0xe0,0x1,0xc, - 0xff,0xff,0xd5,0xd0,0x0,0x8,0xff,0xff,0xc7,0xc0,0x0,0x11,0xff,0xff,0xd5,0xd0, - 0x1,0x16,0xff,0xff,0xe3,0xe0,0x1,0xc,0xff,0xff,0xd5,0xd0,0x0,0x8,0x4c,0x4d, - 0x54,0x0,0x43,0x4d,0x54,0x0,0x41,0x52,0x54,0x0,0x41,0x52,0x53,0x54,0x0,0x57, - 0x41,0x52,0x54,0x0,0x57,0x41,0x52,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a, - 0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x3c,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x1c,0xf8,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xff,0xff,0xff,0xff,0x72,0x9c,0xae,0xb8,0xff,0xff,0xff,0xff,0xa2,0x92, - 0x8f,0x30,0xff,0xff,0xff,0xff,0xb6,0x7b,0x52,0x40,0xff,0xff,0xff,0xff,0xb7,0x1a, - 0xc9,0xb0,0xff,0xff,0xff,0xff,0xb8,0x1e,0x8f,0x40,0xff,0xff,0xff,0xff,0xb8,0xd4, - 0x70,0x30,0xff,0xff,0xff,0xff,0xba,0x17,0x7d,0xc0,0xff,0xff,0xff,0xff,0xba,0xb5, - 0xa3,0xb0,0xff,0xff,0xff,0xff,0xbb,0xf8,0xb1,0x40,0xff,0xff,0xff,0xff,0xbc,0x96, - 0xd7,0x30,0xff,0xff,0xff,0xff,0xbd,0xd9,0xe4,0xc0,0xff,0xff,0xff,0xff,0xbe,0x78, - 0xa,0xb0,0xff,0xff,0xff,0xff,0xbf,0xbb,0x18,0x40,0xff,0xff,0xff,0xff,0xc0,0x5a, - 0x8f,0xb0,0xff,0xff,0xff,0xff,0xc1,0x9d,0x9d,0x40,0xff,0xff,0xff,0xff,0xc2,0x3b, - 0xc3,0x30,0xff,0xff,0xff,0xff,0xc3,0x7e,0xd0,0xc0,0xff,0xff,0xff,0xff,0xc4,0x1c, - 0xf6,0xb0,0xff,0xff,0xff,0xff,0xc5,0x60,0x4,0x40,0xff,0xff,0xff,0xff,0xc5,0xfe, - 0x2a,0x30,0xff,0xff,0xff,0xff,0xc7,0x41,0x37,0xc0,0xff,0xff,0xff,0xff,0xc7,0xe0, - 0xaf,0x30,0xff,0xff,0xff,0xff,0xc8,0x81,0x94,0x40,0xff,0xff,0xff,0xff,0xca,0x4d, - 0xa1,0xb0,0xff,0xff,0xff,0xff,0xca,0xee,0x86,0xc0,0xff,0xff,0xff,0xff,0xce,0x4d, - 0xff,0x30,0xff,0xff,0xff,0xff,0xce,0xb0,0xed,0xc0,0xff,0xff,0xff,0xff,0xd3,0x29, - 0x35,0xb0,0xff,0xff,0xff,0xff,0xd4,0x43,0x64,0xc0,0xff,0xff,0xff,0xff,0xf4,0x3d, - 0x8,0x30,0xff,0xff,0xff,0xff,0xf4,0x9f,0xf6,0xc0,0xff,0xff,0xff,0xff,0xf5,0x5, - 0x6c,0x30,0xff,0xff,0xff,0xff,0xf6,0x32,0x10,0x40,0xff,0xff,0xff,0xff,0xf6,0xe6, - 0x9f,0xb0,0xff,0xff,0xff,0xff,0xf8,0x13,0x43,0xc0,0xff,0xff,0xff,0xff,0xf8,0xc7, - 0xd3,0x30,0xff,0xff,0xff,0xff,0xf9,0xf4,0x77,0x40,0xff,0xff,0xff,0xff,0xfa,0xd3, - 0x36,0xb0,0xff,0xff,0xff,0xff,0xfb,0xc3,0x35,0xc0,0xff,0xff,0xff,0xff,0xfc,0xbc, - 0x53,0x30,0xff,0xff,0xff,0xff,0xfd,0xac,0x52,0x40,0xff,0xff,0xff,0xff,0xfe,0x9c, - 0x35,0x30,0xff,0xff,0xff,0xff,0xff,0x8c,0x34,0x40,0x0,0x0,0x0,0x0,0x7,0xa3, - 0x4a,0xb0,0x0,0x0,0x0,0x0,0x8,0x24,0x6f,0xa0,0x0,0x0,0x0,0x0,0x23,0x94, - 0xb5,0xb0,0x0,0x0,0x0,0x0,0x24,0x10,0x94,0xa0,0x0,0x0,0x0,0x0,0x25,0x37, - 0xf2,0xb0,0x0,0x0,0x0,0x0,0x25,0xf0,0x76,0xa0,0x0,0x0,0x0,0x0,0x27,0x2a, - 0x57,0xc0,0x0,0x0,0x0,0x0,0x27,0xe2,0xdb,0xb0,0x0,0x0,0x0,0x0,0x28,0xee, - 0x8a,0x40,0x0,0x0,0x0,0x0,0x29,0xb0,0x3a,0xa0,0x0,0x0,0x0,0x0,0x2a,0xe0, - 0xd3,0x30,0x0,0x0,0x0,0x0,0x2b,0x99,0x57,0x20,0x0,0x0,0x0,0x0,0x37,0xf6, - 0xc6,0xb0,0x0,0x0,0x0,0x0,0x38,0xbf,0x2a,0xb0,0x0,0x0,0x0,0x0,0x47,0x77, - 0x9,0xb0,0x0,0x0,0x0,0x0,0x47,0xdc,0x7f,0x20,0x0,0x1,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x5,0x4,0x5,0x4,0x5,0x4,0x6,0x7,0x6,0x4,0x5, - 0x4,0x5,0x3,0x5,0x4,0x5,0xff,0xff,0xc2,0xc8,0x0,0x0,0xff,0xff,0xc3,0xd0, - 0x0,0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0xff,0xff,0xd5,0xd0,0x1,0xc,0xff,0xff, - 0xe3,0xe0,0x1,0xc,0xff,0xff,0xd5,0xd0,0x0,0x8,0xff,0xff,0xc7,0xc0,0x0,0x11, - 0xff,0xff,0xd5,0xd0,0x1,0x16,0xff,0xff,0xe3,0xe0,0x1,0xc,0xff,0xff,0xd5,0xd0, - 0x0,0x8,0x4c,0x4d,0x54,0x0,0x43,0x4d,0x54,0x0,0x41,0x52,0x54,0x0,0x41,0x52, - 0x53,0x54,0x0,0x57,0x41,0x52,0x54,0x0,0x57,0x41,0x52,0x53,0x54,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xa,0x41,0x52,0x54,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Argentina/La_Rioja - 0x0,0x0,0x4,0x77, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x3e,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x16,0x80,0x0,0x0,0x0,0xa2, - 0x92,0x8f,0x30,0xb6,0x7b,0x52,0x40,0xb7,0x1a,0xc9,0xb0,0xb8,0x1e,0x8f,0x40,0xb8, - 0xd4,0x70,0x30,0xba,0x17,0x7d,0xc0,0xba,0xb5,0xa3,0xb0,0xbb,0xf8,0xb1,0x40,0xbc, - 0x96,0xd7,0x30,0xbd,0xd9,0xe4,0xc0,0xbe,0x78,0xa,0xb0,0xbf,0xbb,0x18,0x40,0xc0, - 0x5a,0x8f,0xb0,0xc1,0x9d,0x9d,0x40,0xc2,0x3b,0xc3,0x30,0xc3,0x7e,0xd0,0xc0,0xc4, - 0x1c,0xf6,0xb0,0xc5,0x60,0x4,0x40,0xc5,0xfe,0x2a,0x30,0xc7,0x41,0x37,0xc0,0xc7, - 0xe0,0xaf,0x30,0xc8,0x81,0x94,0x40,0xca,0x4d,0xa1,0xb0,0xca,0xee,0x86,0xc0,0xce, - 0x4d,0xff,0x30,0xce,0xb0,0xed,0xc0,0xd3,0x29,0x35,0xb0,0xd4,0x43,0x64,0xc0,0xf4, - 0x3d,0x8,0x30,0xf4,0x9f,0xf6,0xc0,0xf5,0x5,0x6c,0x30,0xf6,0x32,0x10,0x40,0xf6, - 0xe6,0x9f,0xb0,0xf8,0x13,0x43,0xc0,0xf8,0xc7,0xd3,0x30,0xf9,0xf4,0x77,0x40,0xfa, - 0xd3,0x36,0xb0,0xfb,0xc3,0x35,0xc0,0xfc,0xbc,0x53,0x30,0xfd,0xac,0x52,0x40,0xfe, - 0x9c,0x35,0x30,0xff,0x8c,0x34,0x40,0x7,0xa3,0x4a,0xb0,0x8,0x24,0x6f,0xa0,0x23, - 0x94,0xb5,0xb0,0x24,0x10,0x94,0xa0,0x25,0x37,0xf2,0xb0,0x25,0xf0,0x76,0xa0,0x27, - 0x21,0xf,0x30,0x27,0xcd,0xb5,0xa0,0x28,0x26,0x26,0x40,0x29,0x0,0xf1,0x30,0x29, - 0xb0,0x3a,0xa0,0x2a,0xe0,0xd3,0x30,0x2b,0x99,0x57,0x20,0x37,0xf6,0xc6,0xb0,0x38, - 0xbf,0x2a,0xb0,0x40,0xbb,0xf1,0x30,0x40,0xd5,0xb,0xc0,0x47,0x77,0x9,0xb0,0x47, - 0xdc,0x7f,0x20,0x1,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x21,0xf,0x30,0x27,0xd0,0x58,0xa0,0x29,0x0,0xff,0x40,0x29,0xb0,0x3a,0xa0,0x2a, + 0xe0,0xd3,0x30,0x2b,0x99,0x57,0x20,0x37,0xf6,0xc6,0xb0,0x38,0xbf,0x2a,0xb0,0x40, + 0xbb,0xf1,0x30,0x40,0xd5,0xb,0xc0,0x47,0x77,0x9,0xb0,0x47,0xdc,0x7f,0x20,0x7f, + 0xff,0xff,0xff,0x1,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x6,0x5,0x4,0x5,0x4,0x5,0x3,0x5,0x6,0x5,0x4, - 0x5,0xff,0xff,0xc1,0x54,0x0,0x0,0xff,0xff,0xc3,0xd0,0x0,0x4,0xff,0xff,0xc7, - 0xc0,0x0,0x8,0xff,0xff,0xd5,0xd0,0x1,0xc,0xff,0xff,0xe3,0xe0,0x1,0xc,0xff, - 0xff,0xd5,0xd0,0x0,0x8,0xff,0xff,0xc7,0xc0,0x0,0x11,0xff,0xff,0xd5,0xd0,0x0, - 0x8,0x4c,0x4d,0x54,0x0,0x43,0x4d,0x54,0x0,0x41,0x52,0x54,0x0,0x41,0x52,0x53, - 0x54,0x0,0x57,0x41,0x52,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0, - 0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x8,0x0, - 0x0,0x0,0x16,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x72, - 0x9c,0xb0,0x2c,0xff,0xff,0xff,0xff,0xa2,0x92,0x8f,0x30,0xff,0xff,0xff,0xff,0xb6, - 0x7b,0x52,0x40,0xff,0xff,0xff,0xff,0xb7,0x1a,0xc9,0xb0,0xff,0xff,0xff,0xff,0xb8, - 0x1e,0x8f,0x40,0xff,0xff,0xff,0xff,0xb8,0xd4,0x70,0x30,0xff,0xff,0xff,0xff,0xba, - 0x17,0x7d,0xc0,0xff,0xff,0xff,0xff,0xba,0xb5,0xa3,0xb0,0xff,0xff,0xff,0xff,0xbb, - 0xf8,0xb1,0x40,0xff,0xff,0xff,0xff,0xbc,0x96,0xd7,0x30,0xff,0xff,0xff,0xff,0xbd, - 0xd9,0xe4,0xc0,0xff,0xff,0xff,0xff,0xbe,0x78,0xa,0xb0,0xff,0xff,0xff,0xff,0xbf, - 0xbb,0x18,0x40,0xff,0xff,0xff,0xff,0xc0,0x5a,0x8f,0xb0,0xff,0xff,0xff,0xff,0xc1, - 0x9d,0x9d,0x40,0xff,0xff,0xff,0xff,0xc2,0x3b,0xc3,0x30,0xff,0xff,0xff,0xff,0xc3, - 0x7e,0xd0,0xc0,0xff,0xff,0xff,0xff,0xc4,0x1c,0xf6,0xb0,0xff,0xff,0xff,0xff,0xc5, - 0x60,0x4,0x40,0xff,0xff,0xff,0xff,0xc5,0xfe,0x2a,0x30,0xff,0xff,0xff,0xff,0xc7, - 0x41,0x37,0xc0,0xff,0xff,0xff,0xff,0xc7,0xe0,0xaf,0x30,0xff,0xff,0xff,0xff,0xc8, - 0x81,0x94,0x40,0xff,0xff,0xff,0xff,0xca,0x4d,0xa1,0xb0,0xff,0xff,0xff,0xff,0xca, - 0xee,0x86,0xc0,0xff,0xff,0xff,0xff,0xce,0x4d,0xff,0x30,0xff,0xff,0xff,0xff,0xce, - 0xb0,0xed,0xc0,0xff,0xff,0xff,0xff,0xd3,0x29,0x35,0xb0,0xff,0xff,0xff,0xff,0xd4, - 0x43,0x64,0xc0,0xff,0xff,0xff,0xff,0xf4,0x3d,0x8,0x30,0xff,0xff,0xff,0xff,0xf4, - 0x9f,0xf6,0xc0,0xff,0xff,0xff,0xff,0xf5,0x5,0x6c,0x30,0xff,0xff,0xff,0xff,0xf6, - 0x32,0x10,0x40,0xff,0xff,0xff,0xff,0xf6,0xe6,0x9f,0xb0,0xff,0xff,0xff,0xff,0xf8, - 0x13,0x43,0xc0,0xff,0xff,0xff,0xff,0xf8,0xc7,0xd3,0x30,0xff,0xff,0xff,0xff,0xf9, - 0xf4,0x77,0x40,0xff,0xff,0xff,0xff,0xfa,0xd3,0x36,0xb0,0xff,0xff,0xff,0xff,0xfb, - 0xc3,0x35,0xc0,0xff,0xff,0xff,0xff,0xfc,0xbc,0x53,0x30,0xff,0xff,0xff,0xff,0xfd, - 0xac,0x52,0x40,0xff,0xff,0xff,0xff,0xfe,0x9c,0x35,0x30,0xff,0xff,0xff,0xff,0xff, - 0x8c,0x34,0x40,0x0,0x0,0x0,0x0,0x7,0xa3,0x4a,0xb0,0x0,0x0,0x0,0x0,0x8, - 0x24,0x6f,0xa0,0x0,0x0,0x0,0x0,0x23,0x94,0xb5,0xb0,0x0,0x0,0x0,0x0,0x24, - 0x10,0x94,0xa0,0x0,0x0,0x0,0x0,0x25,0x37,0xf2,0xb0,0x0,0x0,0x0,0x0,0x25, - 0xf0,0x76,0xa0,0x0,0x0,0x0,0x0,0x27,0x21,0xf,0x30,0x0,0x0,0x0,0x0,0x27, - 0xcd,0xb5,0xa0,0x0,0x0,0x0,0x0,0x28,0x26,0x26,0x40,0x0,0x0,0x0,0x0,0x29, - 0x0,0xf1,0x30,0x0,0x0,0x0,0x0,0x29,0xb0,0x3a,0xa0,0x0,0x0,0x0,0x0,0x2a, - 0xe0,0xd3,0x30,0x0,0x0,0x0,0x0,0x2b,0x99,0x57,0x20,0x0,0x0,0x0,0x0,0x37, - 0xf6,0xc6,0xb0,0x0,0x0,0x0,0x0,0x38,0xbf,0x2a,0xb0,0x0,0x0,0x0,0x0,0x40, - 0xbb,0xf1,0x30,0x0,0x0,0x0,0x0,0x40,0xd5,0xb,0xc0,0x0,0x0,0x0,0x0,0x47, - 0x77,0x9,0xb0,0x0,0x0,0x0,0x0,0x47,0xdc,0x7f,0x20,0x0,0x1,0x2,0x3,0x2, + 0x4,0x5,0x4,0x5,0x4,0x2,0x4,0x5,0x4,0x5,0x3,0x5,0x2,0x5,0x4,0x5, + 0x5,0xff,0xff,0xc2,0x54,0x0,0x0,0xff,0xff,0xc3,0xd0,0x0,0x4,0xff,0xff,0xc7, + 0xc0,0x0,0x8,0xff,0xff,0xd5,0xd0,0x1,0xc,0xff,0xff,0xe3,0xe0,0x1,0x10,0xff, + 0xff,0xd5,0xd0,0x0,0xc,0x4c,0x4d,0x54,0x0,0x43,0x4d,0x54,0x0,0x2d,0x30,0x34, + 0x0,0x2d,0x30,0x33,0x0,0x2d,0x30,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x14,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x72,0x9c,0xaf, + 0x2c,0xff,0xff,0xff,0xff,0xa2,0x92,0x8f,0x30,0xff,0xff,0xff,0xff,0xb6,0x7b,0x52, + 0x40,0xff,0xff,0xff,0xff,0xb7,0x1a,0xc9,0xb0,0xff,0xff,0xff,0xff,0xb8,0x1e,0x8f, + 0x40,0xff,0xff,0xff,0xff,0xb8,0xd4,0x70,0x30,0xff,0xff,0xff,0xff,0xba,0x17,0x7d, + 0xc0,0xff,0xff,0xff,0xff,0xba,0xb5,0xa3,0xb0,0xff,0xff,0xff,0xff,0xbb,0xf8,0xb1, + 0x40,0xff,0xff,0xff,0xff,0xbc,0x96,0xd7,0x30,0xff,0xff,0xff,0xff,0xbd,0xd9,0xe4, + 0xc0,0xff,0xff,0xff,0xff,0xbe,0x78,0xa,0xb0,0xff,0xff,0xff,0xff,0xbf,0xbb,0x18, + 0x40,0xff,0xff,0xff,0xff,0xc0,0x5a,0x8f,0xb0,0xff,0xff,0xff,0xff,0xc1,0x9d,0x9d, + 0x40,0xff,0xff,0xff,0xff,0xc2,0x3b,0xc3,0x30,0xff,0xff,0xff,0xff,0xc3,0x7e,0xd0, + 0xc0,0xff,0xff,0xff,0xff,0xc4,0x1c,0xf6,0xb0,0xff,0xff,0xff,0xff,0xc5,0x60,0x4, + 0x40,0xff,0xff,0xff,0xff,0xc5,0xfe,0x2a,0x30,0xff,0xff,0xff,0xff,0xc7,0x41,0x37, + 0xc0,0xff,0xff,0xff,0xff,0xc7,0xe0,0xaf,0x30,0xff,0xff,0xff,0xff,0xc8,0x81,0x94, + 0x40,0xff,0xff,0xff,0xff,0xca,0x4d,0xa1,0xb0,0xff,0xff,0xff,0xff,0xca,0xee,0x86, + 0xc0,0xff,0xff,0xff,0xff,0xce,0x4d,0xff,0x30,0xff,0xff,0xff,0xff,0xce,0xb0,0xed, + 0xc0,0xff,0xff,0xff,0xff,0xd3,0x29,0x35,0xb0,0xff,0xff,0xff,0xff,0xd4,0x43,0x64, + 0xc0,0xff,0xff,0xff,0xff,0xf4,0x3d,0x8,0x30,0xff,0xff,0xff,0xff,0xf4,0x9f,0xf6, + 0xc0,0xff,0xff,0xff,0xff,0xf5,0x5,0x6c,0x30,0xff,0xff,0xff,0xff,0xf6,0x32,0x10, + 0x40,0xff,0xff,0xff,0xff,0xf6,0xe6,0x9f,0xb0,0xff,0xff,0xff,0xff,0xf8,0x13,0x43, + 0xc0,0xff,0xff,0xff,0xff,0xf8,0xc7,0xd3,0x30,0xff,0xff,0xff,0xff,0xf9,0xf4,0x77, + 0x40,0xff,0xff,0xff,0xff,0xfa,0xd3,0x36,0xb0,0xff,0xff,0xff,0xff,0xfb,0xc3,0x35, + 0xc0,0xff,0xff,0xff,0xff,0xfc,0xbc,0x53,0x30,0xff,0xff,0xff,0xff,0xfd,0xac,0x52, + 0x40,0xff,0xff,0xff,0xff,0xfe,0x9c,0x35,0x30,0xff,0xff,0xff,0xff,0xff,0x8c,0x34, + 0x40,0x0,0x0,0x0,0x0,0x7,0xa3,0x4a,0xb0,0x0,0x0,0x0,0x0,0x8,0x24,0x6f, + 0xa0,0x0,0x0,0x0,0x0,0x23,0x94,0xb5,0xb0,0x0,0x0,0x0,0x0,0x24,0x10,0x94, + 0xa0,0x0,0x0,0x0,0x0,0x25,0x37,0xf2,0xb0,0x0,0x0,0x0,0x0,0x25,0xf0,0x76, + 0xa0,0x0,0x0,0x0,0x0,0x27,0x21,0xf,0x30,0x0,0x0,0x0,0x0,0x27,0xd0,0x58, + 0xa0,0x0,0x0,0x0,0x0,0x29,0x0,0xff,0x40,0x0,0x0,0x0,0x0,0x29,0xb0,0x3a, + 0xa0,0x0,0x0,0x0,0x0,0x2a,0xe0,0xd3,0x30,0x0,0x0,0x0,0x0,0x2b,0x99,0x57, + 0x20,0x0,0x0,0x0,0x0,0x37,0xf6,0xc6,0xb0,0x0,0x0,0x0,0x0,0x38,0xbf,0x2a, + 0xb0,0x0,0x0,0x0,0x0,0x40,0xbb,0xf1,0x30,0x0,0x0,0x0,0x0,0x40,0xd5,0xb, + 0xc0,0x0,0x0,0x0,0x0,0x47,0x77,0x9,0xb0,0x0,0x0,0x0,0x0,0x47,0xdc,0x7f, + 0x20,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x2,0x3,0x2,0x3,0x2, 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x6,0x5, - 0x4,0x5,0x4,0x5,0x3,0x5,0x6,0x5,0x4,0x5,0xff,0xff,0xc1,0x54,0x0,0x0, - 0xff,0xff,0xc3,0xd0,0x0,0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0xff,0xff,0xd5,0xd0, - 0x1,0xc,0xff,0xff,0xe3,0xe0,0x1,0xc,0xff,0xff,0xd5,0xd0,0x0,0x8,0xff,0xff, - 0xc7,0xc0,0x0,0x11,0xff,0xff,0xd5,0xd0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x43,0x4d, - 0x54,0x0,0x41,0x52,0x54,0x0,0x41,0x52,0x53,0x54,0x0,0x57,0x41,0x52,0x54,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0xa,0x41,0x52,0x54,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Argentina/Ushuaia - 0x0,0x0,0x4,0x69, + 0x3,0x2,0x3,0x2,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x2,0x4,0x5,0x4, + 0x5,0x3,0x5,0x2,0x5,0x4,0x5,0x5,0xff,0xff,0xc2,0x54,0x0,0x0,0xff,0xff, + 0xc3,0xd0,0x0,0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0xff,0xff,0xd5,0xd0,0x1,0xc, + 0xff,0xff,0xe3,0xe0,0x1,0x10,0xff,0xff,0xd5,0xd0,0x0,0xc,0x4c,0x4d,0x54,0x0, + 0x43,0x4d,0x54,0x0,0x2d,0x30,0x34,0x0,0x2d,0x30,0x33,0x0,0x2d,0x30,0x32,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2d,0x30, + 0x33,0x3e,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Argentina/San_Juan + 0x0,0x0,0x4,0x63, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x3d,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x16,0x80,0x0,0x0,0x0,0xa2, + 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3f,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0xa2, 0x92,0x8f,0x30,0xb6,0x7b,0x52,0x40,0xb7,0x1a,0xc9,0xb0,0xb8,0x1e,0x8f,0x40,0xb8, 0xd4,0x70,0x30,0xba,0x17,0x7d,0xc0,0xba,0xb5,0xa3,0xb0,0xbb,0xf8,0xb1,0x40,0xbc, 0x96,0xd7,0x30,0xbd,0xd9,0xe4,0xc0,0xbe,0x78,0xa,0xb0,0xbf,0xbb,0x18,0x40,0xc0, @@ -32468,217 +27501,68 @@ static const unsigned char qt_resource_data[] = { 0xd3,0x36,0xb0,0xfb,0xc3,0x35,0xc0,0xfc,0xbc,0x53,0x30,0xfd,0xac,0x52,0x40,0xfe, 0x9c,0x35,0x30,0xff,0x8c,0x34,0x40,0x7,0xa3,0x4a,0xb0,0x8,0x24,0x6f,0xa0,0x23, 0x94,0xb5,0xb0,0x24,0x10,0x94,0xa0,0x25,0x37,0xf2,0xb0,0x25,0xf0,0x76,0xa0,0x27, - 0x21,0xf,0x30,0x27,0xd0,0x58,0xa0,0x29,0x0,0xf1,0x30,0x29,0xb0,0x3a,0xa0,0x2a, - 0xe0,0xd3,0x30,0x2b,0x99,0x57,0x20,0x37,0xf6,0xc6,0xb0,0x38,0xbf,0x2a,0xb0,0x40, - 0xb9,0x4e,0x30,0x40,0xd5,0xb,0xc0,0x47,0x77,0x9,0xb0,0x47,0xdc,0x7f,0x20,0x1, + 0x21,0xf,0x30,0x27,0xcd,0xb5,0xa0,0x28,0x26,0x26,0x40,0x29,0x0,0xf1,0x30,0x29, + 0xb0,0x3a,0xa0,0x2a,0xe0,0xd3,0x30,0x2b,0x99,0x57,0x20,0x37,0xf6,0xc6,0xb0,0x38, + 0xbf,0x2a,0xb0,0x40,0xba,0x9f,0xb0,0x41,0x3,0x30,0x40,0x47,0x77,0x9,0xb0,0x47, + 0xdc,0x7f,0x20,0x7f,0xff,0xff,0xff,0x1,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x3,0x5,0x6,0x5,0x4,0x5,0xff,0xff,0xbf,0xf8, - 0x0,0x0,0xff,0xff,0xc3,0xd0,0x0,0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0xff,0xff, - 0xd5,0xd0,0x1,0xc,0xff,0xff,0xe3,0xe0,0x1,0xc,0xff,0xff,0xd5,0xd0,0x0,0x8, - 0xff,0xff,0xc7,0xc0,0x0,0x11,0xff,0xff,0xd5,0xd0,0x0,0x8,0x4c,0x4d,0x54,0x0, - 0x43,0x4d,0x54,0x0,0x41,0x52,0x54,0x0,0x41,0x52,0x53,0x54,0x0,0x57,0x41,0x52, - 0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x3e,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x16,0xf8,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x72,0x9c,0xb1,0x88,0xff,0xff, - 0xff,0xff,0xa2,0x92,0x8f,0x30,0xff,0xff,0xff,0xff,0xb6,0x7b,0x52,0x40,0xff,0xff, - 0xff,0xff,0xb7,0x1a,0xc9,0xb0,0xff,0xff,0xff,0xff,0xb8,0x1e,0x8f,0x40,0xff,0xff, - 0xff,0xff,0xb8,0xd4,0x70,0x30,0xff,0xff,0xff,0xff,0xba,0x17,0x7d,0xc0,0xff,0xff, - 0xff,0xff,0xba,0xb5,0xa3,0xb0,0xff,0xff,0xff,0xff,0xbb,0xf8,0xb1,0x40,0xff,0xff, - 0xff,0xff,0xbc,0x96,0xd7,0x30,0xff,0xff,0xff,0xff,0xbd,0xd9,0xe4,0xc0,0xff,0xff, - 0xff,0xff,0xbe,0x78,0xa,0xb0,0xff,0xff,0xff,0xff,0xbf,0xbb,0x18,0x40,0xff,0xff, - 0xff,0xff,0xc0,0x5a,0x8f,0xb0,0xff,0xff,0xff,0xff,0xc1,0x9d,0x9d,0x40,0xff,0xff, - 0xff,0xff,0xc2,0x3b,0xc3,0x30,0xff,0xff,0xff,0xff,0xc3,0x7e,0xd0,0xc0,0xff,0xff, - 0xff,0xff,0xc4,0x1c,0xf6,0xb0,0xff,0xff,0xff,0xff,0xc5,0x60,0x4,0x40,0xff,0xff, - 0xff,0xff,0xc5,0xfe,0x2a,0x30,0xff,0xff,0xff,0xff,0xc7,0x41,0x37,0xc0,0xff,0xff, - 0xff,0xff,0xc7,0xe0,0xaf,0x30,0xff,0xff,0xff,0xff,0xc8,0x81,0x94,0x40,0xff,0xff, - 0xff,0xff,0xca,0x4d,0xa1,0xb0,0xff,0xff,0xff,0xff,0xca,0xee,0x86,0xc0,0xff,0xff, - 0xff,0xff,0xce,0x4d,0xff,0x30,0xff,0xff,0xff,0xff,0xce,0xb0,0xed,0xc0,0xff,0xff, - 0xff,0xff,0xd3,0x29,0x35,0xb0,0xff,0xff,0xff,0xff,0xd4,0x43,0x64,0xc0,0xff,0xff, - 0xff,0xff,0xf4,0x3d,0x8,0x30,0xff,0xff,0xff,0xff,0xf4,0x9f,0xf6,0xc0,0xff,0xff, - 0xff,0xff,0xf5,0x5,0x6c,0x30,0xff,0xff,0xff,0xff,0xf6,0x32,0x10,0x40,0xff,0xff, - 0xff,0xff,0xf6,0xe6,0x9f,0xb0,0xff,0xff,0xff,0xff,0xf8,0x13,0x43,0xc0,0xff,0xff, - 0xff,0xff,0xf8,0xc7,0xd3,0x30,0xff,0xff,0xff,0xff,0xf9,0xf4,0x77,0x40,0xff,0xff, - 0xff,0xff,0xfa,0xd3,0x36,0xb0,0xff,0xff,0xff,0xff,0xfb,0xc3,0x35,0xc0,0xff,0xff, - 0xff,0xff,0xfc,0xbc,0x53,0x30,0xff,0xff,0xff,0xff,0xfd,0xac,0x52,0x40,0xff,0xff, - 0xff,0xff,0xfe,0x9c,0x35,0x30,0xff,0xff,0xff,0xff,0xff,0x8c,0x34,0x40,0x0,0x0, - 0x0,0x0,0x7,0xa3,0x4a,0xb0,0x0,0x0,0x0,0x0,0x8,0x24,0x6f,0xa0,0x0,0x0, - 0x0,0x0,0x23,0x94,0xb5,0xb0,0x0,0x0,0x0,0x0,0x24,0x10,0x94,0xa0,0x0,0x0, - 0x0,0x0,0x25,0x37,0xf2,0xb0,0x0,0x0,0x0,0x0,0x25,0xf0,0x76,0xa0,0x0,0x0, - 0x0,0x0,0x27,0x21,0xf,0x30,0x0,0x0,0x0,0x0,0x27,0xd0,0x58,0xa0,0x0,0x0, + 0x2,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x2,0x5,0x4,0x5,0x4,0x5,0x3, + 0x5,0x2,0x5,0x4,0x5,0x5,0xff,0xff,0xbf,0xc4,0x0,0x0,0xff,0xff,0xc3,0xd0, + 0x0,0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0xff,0xff,0xd5,0xd0,0x1,0xc,0xff,0xff, + 0xe3,0xe0,0x1,0x10,0xff,0xff,0xd5,0xd0,0x0,0xc,0x4c,0x4d,0x54,0x0,0x43,0x4d, + 0x54,0x0,0x2d,0x30,0x34,0x0,0x2d,0x30,0x33,0x0,0x2d,0x30,0x32,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x40,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x14,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff, + 0xff,0xff,0x72,0x9c,0xb1,0xbc,0xff,0xff,0xff,0xff,0xa2,0x92,0x8f,0x30,0xff,0xff, + 0xff,0xff,0xb6,0x7b,0x52,0x40,0xff,0xff,0xff,0xff,0xb7,0x1a,0xc9,0xb0,0xff,0xff, + 0xff,0xff,0xb8,0x1e,0x8f,0x40,0xff,0xff,0xff,0xff,0xb8,0xd4,0x70,0x30,0xff,0xff, + 0xff,0xff,0xba,0x17,0x7d,0xc0,0xff,0xff,0xff,0xff,0xba,0xb5,0xa3,0xb0,0xff,0xff, + 0xff,0xff,0xbb,0xf8,0xb1,0x40,0xff,0xff,0xff,0xff,0xbc,0x96,0xd7,0x30,0xff,0xff, + 0xff,0xff,0xbd,0xd9,0xe4,0xc0,0xff,0xff,0xff,0xff,0xbe,0x78,0xa,0xb0,0xff,0xff, + 0xff,0xff,0xbf,0xbb,0x18,0x40,0xff,0xff,0xff,0xff,0xc0,0x5a,0x8f,0xb0,0xff,0xff, + 0xff,0xff,0xc1,0x9d,0x9d,0x40,0xff,0xff,0xff,0xff,0xc2,0x3b,0xc3,0x30,0xff,0xff, + 0xff,0xff,0xc3,0x7e,0xd0,0xc0,0xff,0xff,0xff,0xff,0xc4,0x1c,0xf6,0xb0,0xff,0xff, + 0xff,0xff,0xc5,0x60,0x4,0x40,0xff,0xff,0xff,0xff,0xc5,0xfe,0x2a,0x30,0xff,0xff, + 0xff,0xff,0xc7,0x41,0x37,0xc0,0xff,0xff,0xff,0xff,0xc7,0xe0,0xaf,0x30,0xff,0xff, + 0xff,0xff,0xc8,0x81,0x94,0x40,0xff,0xff,0xff,0xff,0xca,0x4d,0xa1,0xb0,0xff,0xff, + 0xff,0xff,0xca,0xee,0x86,0xc0,0xff,0xff,0xff,0xff,0xce,0x4d,0xff,0x30,0xff,0xff, + 0xff,0xff,0xce,0xb0,0xed,0xc0,0xff,0xff,0xff,0xff,0xd3,0x29,0x35,0xb0,0xff,0xff, + 0xff,0xff,0xd4,0x43,0x64,0xc0,0xff,0xff,0xff,0xff,0xf4,0x3d,0x8,0x30,0xff,0xff, + 0xff,0xff,0xf4,0x9f,0xf6,0xc0,0xff,0xff,0xff,0xff,0xf5,0x5,0x6c,0x30,0xff,0xff, + 0xff,0xff,0xf6,0x32,0x10,0x40,0xff,0xff,0xff,0xff,0xf6,0xe6,0x9f,0xb0,0xff,0xff, + 0xff,0xff,0xf8,0x13,0x43,0xc0,0xff,0xff,0xff,0xff,0xf8,0xc7,0xd3,0x30,0xff,0xff, + 0xff,0xff,0xf9,0xf4,0x77,0x40,0xff,0xff,0xff,0xff,0xfa,0xd3,0x36,0xb0,0xff,0xff, + 0xff,0xff,0xfb,0xc3,0x35,0xc0,0xff,0xff,0xff,0xff,0xfc,0xbc,0x53,0x30,0xff,0xff, + 0xff,0xff,0xfd,0xac,0x52,0x40,0xff,0xff,0xff,0xff,0xfe,0x9c,0x35,0x30,0xff,0xff, + 0xff,0xff,0xff,0x8c,0x34,0x40,0x0,0x0,0x0,0x0,0x7,0xa3,0x4a,0xb0,0x0,0x0, + 0x0,0x0,0x8,0x24,0x6f,0xa0,0x0,0x0,0x0,0x0,0x23,0x94,0xb5,0xb0,0x0,0x0, + 0x0,0x0,0x24,0x10,0x94,0xa0,0x0,0x0,0x0,0x0,0x25,0x37,0xf2,0xb0,0x0,0x0, + 0x0,0x0,0x25,0xf0,0x76,0xa0,0x0,0x0,0x0,0x0,0x27,0x21,0xf,0x30,0x0,0x0, + 0x0,0x0,0x27,0xcd,0xb5,0xa0,0x0,0x0,0x0,0x0,0x28,0x26,0x26,0x40,0x0,0x0, 0x0,0x0,0x29,0x0,0xf1,0x30,0x0,0x0,0x0,0x0,0x29,0xb0,0x3a,0xa0,0x0,0x0, 0x0,0x0,0x2a,0xe0,0xd3,0x30,0x0,0x0,0x0,0x0,0x2b,0x99,0x57,0x20,0x0,0x0, 0x0,0x0,0x37,0xf6,0xc6,0xb0,0x0,0x0,0x0,0x0,0x38,0xbf,0x2a,0xb0,0x0,0x0, - 0x0,0x0,0x40,0xb9,0x4e,0x30,0x0,0x0,0x0,0x0,0x40,0xd5,0xb,0xc0,0x0,0x0, - 0x0,0x0,0x47,0x77,0x9,0xb0,0x0,0x0,0x0,0x0,0x47,0xdc,0x7f,0x20,0x0,0x1, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x3,0x5,0x6,0x5,0x4,0x5,0xff,0xff,0xbf,0xf8, - 0x0,0x0,0xff,0xff,0xc3,0xd0,0x0,0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0xff,0xff, - 0xd5,0xd0,0x1,0xc,0xff,0xff,0xe3,0xe0,0x1,0xc,0xff,0xff,0xd5,0xd0,0x0,0x8, - 0xff,0xff,0xc7,0xc0,0x0,0x11,0xff,0xff,0xd5,0xd0,0x0,0x8,0x4c,0x4d,0x54,0x0, - 0x43,0x4d,0x54,0x0,0x41,0x52,0x54,0x0,0x41,0x52,0x53,0x54,0x0,0x57,0x41,0x52, - 0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xa,0x41,0x52,0x54,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Argentina/Catamarca - 0x0,0x0,0x4,0x69, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x3d,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x16,0x80,0x0,0x0,0x0,0xa2, - 0x92,0x8f,0x30,0xb6,0x7b,0x52,0x40,0xb7,0x1a,0xc9,0xb0,0xb8,0x1e,0x8f,0x40,0xb8, - 0xd4,0x70,0x30,0xba,0x17,0x7d,0xc0,0xba,0xb5,0xa3,0xb0,0xbb,0xf8,0xb1,0x40,0xbc, - 0x96,0xd7,0x30,0xbd,0xd9,0xe4,0xc0,0xbe,0x78,0xa,0xb0,0xbf,0xbb,0x18,0x40,0xc0, - 0x5a,0x8f,0xb0,0xc1,0x9d,0x9d,0x40,0xc2,0x3b,0xc3,0x30,0xc3,0x7e,0xd0,0xc0,0xc4, - 0x1c,0xf6,0xb0,0xc5,0x60,0x4,0x40,0xc5,0xfe,0x2a,0x30,0xc7,0x41,0x37,0xc0,0xc7, - 0xe0,0xaf,0x30,0xc8,0x81,0x94,0x40,0xca,0x4d,0xa1,0xb0,0xca,0xee,0x86,0xc0,0xce, - 0x4d,0xff,0x30,0xce,0xb0,0xed,0xc0,0xd3,0x29,0x35,0xb0,0xd4,0x43,0x64,0xc0,0xf4, - 0x3d,0x8,0x30,0xf4,0x9f,0xf6,0xc0,0xf5,0x5,0x6c,0x30,0xf6,0x32,0x10,0x40,0xf6, - 0xe6,0x9f,0xb0,0xf8,0x13,0x43,0xc0,0xf8,0xc7,0xd3,0x30,0xf9,0xf4,0x77,0x40,0xfa, - 0xd3,0x36,0xb0,0xfb,0xc3,0x35,0xc0,0xfc,0xbc,0x53,0x30,0xfd,0xac,0x52,0x40,0xfe, - 0x9c,0x35,0x30,0xff,0x8c,0x34,0x40,0x7,0xa3,0x4a,0xb0,0x8,0x24,0x6f,0xa0,0x23, - 0x94,0xb5,0xb0,0x24,0x10,0x94,0xa0,0x25,0x37,0xf2,0xb0,0x25,0xf0,0x76,0xa0,0x27, - 0x21,0xf,0x30,0x27,0xd0,0x58,0xa0,0x29,0x0,0xff,0x40,0x29,0xb0,0x3a,0xa0,0x2a, - 0xe0,0xd3,0x30,0x2b,0x99,0x57,0x20,0x37,0xf6,0xc6,0xb0,0x38,0xbf,0x2a,0xb0,0x40, - 0xbb,0xf1,0x30,0x40,0xd5,0xb,0xc0,0x47,0x77,0x9,0xb0,0x47,0xdc,0x7f,0x20,0x1, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x6,0x4,0x5,0x4,0x5,0x3,0x5,0x6,0x5,0x4,0x5,0xff,0xff,0xc2,0x54, - 0x0,0x0,0xff,0xff,0xc3,0xd0,0x0,0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0xff,0xff, - 0xd5,0xd0,0x1,0xc,0xff,0xff,0xe3,0xe0,0x1,0xc,0xff,0xff,0xd5,0xd0,0x0,0x8, - 0xff,0xff,0xc7,0xc0,0x0,0x11,0xff,0xff,0xd5,0xd0,0x0,0x8,0x4c,0x4d,0x54,0x0, - 0x43,0x4d,0x54,0x0,0x41,0x52,0x54,0x0,0x41,0x52,0x53,0x54,0x0,0x57,0x41,0x52, - 0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x3e,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x16,0xf8,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x72,0x9c,0xaf,0x2c,0xff,0xff, - 0xff,0xff,0xa2,0x92,0x8f,0x30,0xff,0xff,0xff,0xff,0xb6,0x7b,0x52,0x40,0xff,0xff, - 0xff,0xff,0xb7,0x1a,0xc9,0xb0,0xff,0xff,0xff,0xff,0xb8,0x1e,0x8f,0x40,0xff,0xff, - 0xff,0xff,0xb8,0xd4,0x70,0x30,0xff,0xff,0xff,0xff,0xba,0x17,0x7d,0xc0,0xff,0xff, - 0xff,0xff,0xba,0xb5,0xa3,0xb0,0xff,0xff,0xff,0xff,0xbb,0xf8,0xb1,0x40,0xff,0xff, - 0xff,0xff,0xbc,0x96,0xd7,0x30,0xff,0xff,0xff,0xff,0xbd,0xd9,0xe4,0xc0,0xff,0xff, - 0xff,0xff,0xbe,0x78,0xa,0xb0,0xff,0xff,0xff,0xff,0xbf,0xbb,0x18,0x40,0xff,0xff, - 0xff,0xff,0xc0,0x5a,0x8f,0xb0,0xff,0xff,0xff,0xff,0xc1,0x9d,0x9d,0x40,0xff,0xff, - 0xff,0xff,0xc2,0x3b,0xc3,0x30,0xff,0xff,0xff,0xff,0xc3,0x7e,0xd0,0xc0,0xff,0xff, - 0xff,0xff,0xc4,0x1c,0xf6,0xb0,0xff,0xff,0xff,0xff,0xc5,0x60,0x4,0x40,0xff,0xff, - 0xff,0xff,0xc5,0xfe,0x2a,0x30,0xff,0xff,0xff,0xff,0xc7,0x41,0x37,0xc0,0xff,0xff, - 0xff,0xff,0xc7,0xe0,0xaf,0x30,0xff,0xff,0xff,0xff,0xc8,0x81,0x94,0x40,0xff,0xff, - 0xff,0xff,0xca,0x4d,0xa1,0xb0,0xff,0xff,0xff,0xff,0xca,0xee,0x86,0xc0,0xff,0xff, - 0xff,0xff,0xce,0x4d,0xff,0x30,0xff,0xff,0xff,0xff,0xce,0xb0,0xed,0xc0,0xff,0xff, - 0xff,0xff,0xd3,0x29,0x35,0xb0,0xff,0xff,0xff,0xff,0xd4,0x43,0x64,0xc0,0xff,0xff, - 0xff,0xff,0xf4,0x3d,0x8,0x30,0xff,0xff,0xff,0xff,0xf4,0x9f,0xf6,0xc0,0xff,0xff, - 0xff,0xff,0xf5,0x5,0x6c,0x30,0xff,0xff,0xff,0xff,0xf6,0x32,0x10,0x40,0xff,0xff, - 0xff,0xff,0xf6,0xe6,0x9f,0xb0,0xff,0xff,0xff,0xff,0xf8,0x13,0x43,0xc0,0xff,0xff, - 0xff,0xff,0xf8,0xc7,0xd3,0x30,0xff,0xff,0xff,0xff,0xf9,0xf4,0x77,0x40,0xff,0xff, - 0xff,0xff,0xfa,0xd3,0x36,0xb0,0xff,0xff,0xff,0xff,0xfb,0xc3,0x35,0xc0,0xff,0xff, - 0xff,0xff,0xfc,0xbc,0x53,0x30,0xff,0xff,0xff,0xff,0xfd,0xac,0x52,0x40,0xff,0xff, - 0xff,0xff,0xfe,0x9c,0x35,0x30,0xff,0xff,0xff,0xff,0xff,0x8c,0x34,0x40,0x0,0x0, - 0x0,0x0,0x7,0xa3,0x4a,0xb0,0x0,0x0,0x0,0x0,0x8,0x24,0x6f,0xa0,0x0,0x0, - 0x0,0x0,0x23,0x94,0xb5,0xb0,0x0,0x0,0x0,0x0,0x24,0x10,0x94,0xa0,0x0,0x0, - 0x0,0x0,0x25,0x37,0xf2,0xb0,0x0,0x0,0x0,0x0,0x25,0xf0,0x76,0xa0,0x0,0x0, - 0x0,0x0,0x27,0x21,0xf,0x30,0x0,0x0,0x0,0x0,0x27,0xd0,0x58,0xa0,0x0,0x0, - 0x0,0x0,0x29,0x0,0xff,0x40,0x0,0x0,0x0,0x0,0x29,0xb0,0x3a,0xa0,0x0,0x0, - 0x0,0x0,0x2a,0xe0,0xd3,0x30,0x0,0x0,0x0,0x0,0x2b,0x99,0x57,0x20,0x0,0x0, - 0x0,0x0,0x37,0xf6,0xc6,0xb0,0x0,0x0,0x0,0x0,0x38,0xbf,0x2a,0xb0,0x0,0x0, - 0x0,0x0,0x40,0xbb,0xf1,0x30,0x0,0x0,0x0,0x0,0x40,0xd5,0xb,0xc0,0x0,0x0, - 0x0,0x0,0x47,0x77,0x9,0xb0,0x0,0x0,0x0,0x0,0x47,0xdc,0x7f,0x20,0x0,0x1, + 0x0,0x0,0x40,0xba,0x9f,0xb0,0x0,0x0,0x0,0x0,0x41,0x3,0x30,0x40,0x0,0x0, + 0x0,0x0,0x47,0x77,0x9,0xb0,0x0,0x0,0x0,0x0,0x47,0xdc,0x7f,0x20,0x0,0x0, + 0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x6,0x4,0x5,0x4,0x5,0x3,0x5,0x6,0x5,0x4,0x5,0xff,0xff,0xc2,0x54, - 0x0,0x0,0xff,0xff,0xc3,0xd0,0x0,0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0xff,0xff, - 0xd5,0xd0,0x1,0xc,0xff,0xff,0xe3,0xe0,0x1,0xc,0xff,0xff,0xd5,0xd0,0x0,0x8, - 0xff,0xff,0xc7,0xc0,0x0,0x11,0xff,0xff,0xd5,0xd0,0x0,0x8,0x4c,0x4d,0x54,0x0, - 0x43,0x4d,0x54,0x0,0x41,0x52,0x54,0x0,0x41,0x52,0x53,0x54,0x0,0x57,0x41,0x52, - 0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xa,0x41,0x52,0x54,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/America/Argentina/San_Juan - 0x0,0x0,0x4,0x77, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x3e,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x16,0x80,0x0,0x0,0x0,0xa2, - 0x92,0x8f,0x30,0xb6,0x7b,0x52,0x40,0xb7,0x1a,0xc9,0xb0,0xb8,0x1e,0x8f,0x40,0xb8, - 0xd4,0x70,0x30,0xba,0x17,0x7d,0xc0,0xba,0xb5,0xa3,0xb0,0xbb,0xf8,0xb1,0x40,0xbc, - 0x96,0xd7,0x30,0xbd,0xd9,0xe4,0xc0,0xbe,0x78,0xa,0xb0,0xbf,0xbb,0x18,0x40,0xc0, - 0x5a,0x8f,0xb0,0xc1,0x9d,0x9d,0x40,0xc2,0x3b,0xc3,0x30,0xc3,0x7e,0xd0,0xc0,0xc4, - 0x1c,0xf6,0xb0,0xc5,0x60,0x4,0x40,0xc5,0xfe,0x2a,0x30,0xc7,0x41,0x37,0xc0,0xc7, - 0xe0,0xaf,0x30,0xc8,0x81,0x94,0x40,0xca,0x4d,0xa1,0xb0,0xca,0xee,0x86,0xc0,0xce, - 0x4d,0xff,0x30,0xce,0xb0,0xed,0xc0,0xd3,0x29,0x35,0xb0,0xd4,0x43,0x64,0xc0,0xf4, - 0x3d,0x8,0x30,0xf4,0x9f,0xf6,0xc0,0xf5,0x5,0x6c,0x30,0xf6,0x32,0x10,0x40,0xf6, - 0xe6,0x9f,0xb0,0xf8,0x13,0x43,0xc0,0xf8,0xc7,0xd3,0x30,0xf9,0xf4,0x77,0x40,0xfa, - 0xd3,0x36,0xb0,0xfb,0xc3,0x35,0xc0,0xfc,0xbc,0x53,0x30,0xfd,0xac,0x52,0x40,0xfe, - 0x9c,0x35,0x30,0xff,0x8c,0x34,0x40,0x7,0xa3,0x4a,0xb0,0x8,0x24,0x6f,0xa0,0x23, - 0x94,0xb5,0xb0,0x24,0x10,0x94,0xa0,0x25,0x37,0xf2,0xb0,0x25,0xf0,0x76,0xa0,0x27, - 0x21,0xf,0x30,0x27,0xcd,0xb5,0xa0,0x28,0x26,0x26,0x40,0x29,0x0,0xf1,0x30,0x29, - 0xb0,0x3a,0xa0,0x2a,0xe0,0xd3,0x30,0x2b,0x99,0x57,0x20,0x37,0xf6,0xc6,0xb0,0x38, - 0xbf,0x2a,0xb0,0x40,0xba,0x9f,0xb0,0x41,0x3,0x30,0x40,0x47,0x77,0x9,0xb0,0x47, - 0xdc,0x7f,0x20,0x1,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x6,0x5,0x4,0x5,0x4,0x5,0x3,0x5,0x6,0x5,0x4, - 0x5,0xff,0xff,0xbf,0xc4,0x0,0x0,0xff,0xff,0xc3,0xd0,0x0,0x4,0xff,0xff,0xc7, - 0xc0,0x0,0x8,0xff,0xff,0xd5,0xd0,0x1,0xc,0xff,0xff,0xe3,0xe0,0x1,0xc,0xff, - 0xff,0xd5,0xd0,0x0,0x8,0xff,0xff,0xc7,0xc0,0x0,0x11,0xff,0xff,0xd5,0xd0,0x0, - 0x8,0x4c,0x4d,0x54,0x0,0x43,0x4d,0x54,0x0,0x41,0x52,0x54,0x0,0x41,0x52,0x53, - 0x54,0x0,0x57,0x41,0x52,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0, - 0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x8,0x0, - 0x0,0x0,0x16,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x72, - 0x9c,0xb1,0xbc,0xff,0xff,0xff,0xff,0xa2,0x92,0x8f,0x30,0xff,0xff,0xff,0xff,0xb6, - 0x7b,0x52,0x40,0xff,0xff,0xff,0xff,0xb7,0x1a,0xc9,0xb0,0xff,0xff,0xff,0xff,0xb8, - 0x1e,0x8f,0x40,0xff,0xff,0xff,0xff,0xb8,0xd4,0x70,0x30,0xff,0xff,0xff,0xff,0xba, - 0x17,0x7d,0xc0,0xff,0xff,0xff,0xff,0xba,0xb5,0xa3,0xb0,0xff,0xff,0xff,0xff,0xbb, - 0xf8,0xb1,0x40,0xff,0xff,0xff,0xff,0xbc,0x96,0xd7,0x30,0xff,0xff,0xff,0xff,0xbd, - 0xd9,0xe4,0xc0,0xff,0xff,0xff,0xff,0xbe,0x78,0xa,0xb0,0xff,0xff,0xff,0xff,0xbf, - 0xbb,0x18,0x40,0xff,0xff,0xff,0xff,0xc0,0x5a,0x8f,0xb0,0xff,0xff,0xff,0xff,0xc1, - 0x9d,0x9d,0x40,0xff,0xff,0xff,0xff,0xc2,0x3b,0xc3,0x30,0xff,0xff,0xff,0xff,0xc3, - 0x7e,0xd0,0xc0,0xff,0xff,0xff,0xff,0xc4,0x1c,0xf6,0xb0,0xff,0xff,0xff,0xff,0xc5, - 0x60,0x4,0x40,0xff,0xff,0xff,0xff,0xc5,0xfe,0x2a,0x30,0xff,0xff,0xff,0xff,0xc7, - 0x41,0x37,0xc0,0xff,0xff,0xff,0xff,0xc7,0xe0,0xaf,0x30,0xff,0xff,0xff,0xff,0xc8, - 0x81,0x94,0x40,0xff,0xff,0xff,0xff,0xca,0x4d,0xa1,0xb0,0xff,0xff,0xff,0xff,0xca, - 0xee,0x86,0xc0,0xff,0xff,0xff,0xff,0xce,0x4d,0xff,0x30,0xff,0xff,0xff,0xff,0xce, - 0xb0,0xed,0xc0,0xff,0xff,0xff,0xff,0xd3,0x29,0x35,0xb0,0xff,0xff,0xff,0xff,0xd4, - 0x43,0x64,0xc0,0xff,0xff,0xff,0xff,0xf4,0x3d,0x8,0x30,0xff,0xff,0xff,0xff,0xf4, - 0x9f,0xf6,0xc0,0xff,0xff,0xff,0xff,0xf5,0x5,0x6c,0x30,0xff,0xff,0xff,0xff,0xf6, - 0x32,0x10,0x40,0xff,0xff,0xff,0xff,0xf6,0xe6,0x9f,0xb0,0xff,0xff,0xff,0xff,0xf8, - 0x13,0x43,0xc0,0xff,0xff,0xff,0xff,0xf8,0xc7,0xd3,0x30,0xff,0xff,0xff,0xff,0xf9, - 0xf4,0x77,0x40,0xff,0xff,0xff,0xff,0xfa,0xd3,0x36,0xb0,0xff,0xff,0xff,0xff,0xfb, - 0xc3,0x35,0xc0,0xff,0xff,0xff,0xff,0xfc,0xbc,0x53,0x30,0xff,0xff,0xff,0xff,0xfd, - 0xac,0x52,0x40,0xff,0xff,0xff,0xff,0xfe,0x9c,0x35,0x30,0xff,0xff,0xff,0xff,0xff, - 0x8c,0x34,0x40,0x0,0x0,0x0,0x0,0x7,0xa3,0x4a,0xb0,0x0,0x0,0x0,0x0,0x8, - 0x24,0x6f,0xa0,0x0,0x0,0x0,0x0,0x23,0x94,0xb5,0xb0,0x0,0x0,0x0,0x0,0x24, - 0x10,0x94,0xa0,0x0,0x0,0x0,0x0,0x25,0x37,0xf2,0xb0,0x0,0x0,0x0,0x0,0x25, - 0xf0,0x76,0xa0,0x0,0x0,0x0,0x0,0x27,0x21,0xf,0x30,0x0,0x0,0x0,0x0,0x27, - 0xcd,0xb5,0xa0,0x0,0x0,0x0,0x0,0x28,0x26,0x26,0x40,0x0,0x0,0x0,0x0,0x29, - 0x0,0xf1,0x30,0x0,0x0,0x0,0x0,0x29,0xb0,0x3a,0xa0,0x0,0x0,0x0,0x0,0x2a, - 0xe0,0xd3,0x30,0x0,0x0,0x0,0x0,0x2b,0x99,0x57,0x20,0x0,0x0,0x0,0x0,0x37, - 0xf6,0xc6,0xb0,0x0,0x0,0x0,0x0,0x38,0xbf,0x2a,0xb0,0x0,0x0,0x0,0x0,0x40, - 0xba,0x9f,0xb0,0x0,0x0,0x0,0x0,0x41,0x3,0x30,0x40,0x0,0x0,0x0,0x0,0x47, - 0x77,0x9,0xb0,0x0,0x0,0x0,0x0,0x47,0xdc,0x7f,0x20,0x0,0x1,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x6,0x5, - 0x4,0x5,0x4,0x5,0x3,0x5,0x6,0x5,0x4,0x5,0xff,0xff,0xbf,0xc4,0x0,0x0, - 0xff,0xff,0xc3,0xd0,0x0,0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0xff,0xff,0xd5,0xd0, - 0x1,0xc,0xff,0xff,0xe3,0xe0,0x1,0xc,0xff,0xff,0xd5,0xd0,0x0,0x8,0xff,0xff, - 0xc7,0xc0,0x0,0x11,0xff,0xff,0xd5,0xd0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x43,0x4d, - 0x54,0x0,0x41,0x52,0x54,0x0,0x41,0x52,0x53,0x54,0x0,0x57,0x41,0x52,0x54,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0xa,0x41,0x52,0x54,0x33,0xa, + 0x2,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x2,0x5,0x4,0x5,0x4,0x5,0x3, + 0x5,0x2,0x5,0x4,0x5,0x5,0xff,0xff,0xbf,0xc4,0x0,0x0,0xff,0xff,0xc3,0xd0, + 0x0,0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0xff,0xff,0xd5,0xd0,0x1,0xc,0xff,0xff, + 0xe3,0xe0,0x1,0x10,0xff,0xff,0xd5,0xd0,0x0,0xc,0x4c,0x4d,0x54,0x0,0x43,0x4d, + 0x54,0x0,0x2d,0x30,0x34,0x0,0x2d,0x30,0x33,0x0,0x2d,0x30,0x32,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2d,0x30,0x33,0x3e, + 0x33,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/America/Argentina/Mendoza - 0x0,0x0,0x4,0x95, + 0x0,0x0,0x4,0x55, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x3d,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x1c,0x80,0x0,0x0,0x0,0xa2, + 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3e,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0xa2, 0x92,0x8f,0x30,0xb6,0x7b,0x52,0x40,0xb7,0x1a,0xc9,0xb0,0xb8,0x1e,0x8f,0x40,0xb8, 0xd4,0x70,0x30,0xba,0x17,0x7d,0xc0,0xba,0xb5,0xa3,0xb0,0xbb,0xf8,0xb1,0x40,0xbc, 0x96,0xd7,0x30,0xbd,0xd9,0xe4,0xc0,0xbe,0x78,0xa,0xb0,0xbf,0xbb,0x18,0x40,0xc0, @@ -32693,69 +27577,65 @@ static const unsigned char qt_resource_data[] = { 0x94,0xb5,0xb0,0x24,0x10,0x94,0xa0,0x25,0x37,0xf2,0xb0,0x25,0xf0,0x76,0xa0,0x27, 0x19,0x34,0x40,0x27,0xcd,0xc3,0xb0,0x28,0xfa,0x67,0xc0,0x29,0xb0,0x48,0xb0,0x2a, 0xe0,0xe1,0x40,0x2b,0x99,0x57,0x20,0x37,0xf6,0xc6,0xb0,0x38,0xbf,0x2a,0xb0,0x40, - 0xb0,0x13,0xb0,0x41,0x56,0x3e,0xc0,0x47,0x77,0x9,0xb0,0x47,0xdc,0x7f,0x20,0x1, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x5,0x4,0x5,0x4,0x5,0x4,0x6, - 0x7,0x6,0x7,0x6,0x4,0x5,0x3,0x5,0x6,0x5,0x4,0x5,0xff,0xff,0xbf,0x7c, - 0x0,0x0,0xff,0xff,0xc3,0xd0,0x0,0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0xff,0xff, - 0xd5,0xd0,0x1,0xc,0xff,0xff,0xe3,0xe0,0x1,0xc,0xff,0xff,0xd5,0xd0,0x0,0x8, - 0xff,0xff,0xc7,0xc0,0x0,0x11,0xff,0xff,0xd5,0xd0,0x1,0x16,0xff,0xff,0xe3,0xe0, - 0x1,0xc,0xff,0xff,0xd5,0xd0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x43,0x4d,0x54,0x0, - 0x41,0x52,0x54,0x0,0x41,0x52,0x53,0x54,0x0,0x57,0x41,0x52,0x54,0x0,0x57,0x41, - 0x52,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa, - 0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3e,0x0,0x0,0x0,0xa, - 0x0,0x0,0x0,0x1c,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff, - 0x72,0x9c,0xb2,0x4,0xff,0xff,0xff,0xff,0xa2,0x92,0x8f,0x30,0xff,0xff,0xff,0xff, - 0xb6,0x7b,0x52,0x40,0xff,0xff,0xff,0xff,0xb7,0x1a,0xc9,0xb0,0xff,0xff,0xff,0xff, - 0xb8,0x1e,0x8f,0x40,0xff,0xff,0xff,0xff,0xb8,0xd4,0x70,0x30,0xff,0xff,0xff,0xff, - 0xba,0x17,0x7d,0xc0,0xff,0xff,0xff,0xff,0xba,0xb5,0xa3,0xb0,0xff,0xff,0xff,0xff, - 0xbb,0xf8,0xb1,0x40,0xff,0xff,0xff,0xff,0xbc,0x96,0xd7,0x30,0xff,0xff,0xff,0xff, - 0xbd,0xd9,0xe4,0xc0,0xff,0xff,0xff,0xff,0xbe,0x78,0xa,0xb0,0xff,0xff,0xff,0xff, - 0xbf,0xbb,0x18,0x40,0xff,0xff,0xff,0xff,0xc0,0x5a,0x8f,0xb0,0xff,0xff,0xff,0xff, - 0xc1,0x9d,0x9d,0x40,0xff,0xff,0xff,0xff,0xc2,0x3b,0xc3,0x30,0xff,0xff,0xff,0xff, - 0xc3,0x7e,0xd0,0xc0,0xff,0xff,0xff,0xff,0xc4,0x1c,0xf6,0xb0,0xff,0xff,0xff,0xff, - 0xc5,0x60,0x4,0x40,0xff,0xff,0xff,0xff,0xc5,0xfe,0x2a,0x30,0xff,0xff,0xff,0xff, - 0xc7,0x41,0x37,0xc0,0xff,0xff,0xff,0xff,0xc7,0xe0,0xaf,0x30,0xff,0xff,0xff,0xff, - 0xc8,0x81,0x94,0x40,0xff,0xff,0xff,0xff,0xca,0x4d,0xa1,0xb0,0xff,0xff,0xff,0xff, - 0xca,0xee,0x86,0xc0,0xff,0xff,0xff,0xff,0xce,0x4d,0xff,0x30,0xff,0xff,0xff,0xff, - 0xce,0xb0,0xed,0xc0,0xff,0xff,0xff,0xff,0xd3,0x29,0x35,0xb0,0xff,0xff,0xff,0xff, - 0xd4,0x43,0x64,0xc0,0xff,0xff,0xff,0xff,0xf4,0x3d,0x8,0x30,0xff,0xff,0xff,0xff, - 0xf4,0x9f,0xf6,0xc0,0xff,0xff,0xff,0xff,0xf5,0x5,0x6c,0x30,0xff,0xff,0xff,0xff, - 0xf6,0x32,0x10,0x40,0xff,0xff,0xff,0xff,0xf6,0xe6,0x9f,0xb0,0xff,0xff,0xff,0xff, - 0xf8,0x13,0x43,0xc0,0xff,0xff,0xff,0xff,0xf8,0xc7,0xd3,0x30,0xff,0xff,0xff,0xff, - 0xf9,0xf4,0x77,0x40,0xff,0xff,0xff,0xff,0xfa,0xd3,0x36,0xb0,0xff,0xff,0xff,0xff, - 0xfb,0xc3,0x35,0xc0,0xff,0xff,0xff,0xff,0xfc,0xbc,0x53,0x30,0xff,0xff,0xff,0xff, - 0xfd,0xac,0x52,0x40,0xff,0xff,0xff,0xff,0xfe,0x9c,0x35,0x30,0xff,0xff,0xff,0xff, - 0xff,0x8c,0x34,0x40,0x0,0x0,0x0,0x0,0x7,0xa3,0x4a,0xb0,0x0,0x0,0x0,0x0, - 0x8,0x24,0x6f,0xa0,0x0,0x0,0x0,0x0,0x23,0x94,0xb5,0xb0,0x0,0x0,0x0,0x0, - 0x24,0x10,0x94,0xa0,0x0,0x0,0x0,0x0,0x25,0x37,0xf2,0xb0,0x0,0x0,0x0,0x0, - 0x25,0xf0,0x76,0xa0,0x0,0x0,0x0,0x0,0x27,0x19,0x34,0x40,0x0,0x0,0x0,0x0, - 0x27,0xcd,0xc3,0xb0,0x0,0x0,0x0,0x0,0x28,0xfa,0x67,0xc0,0x0,0x0,0x0,0x0, - 0x29,0xb0,0x48,0xb0,0x0,0x0,0x0,0x0,0x2a,0xe0,0xe1,0x40,0x0,0x0,0x0,0x0, - 0x2b,0x99,0x57,0x20,0x0,0x0,0x0,0x0,0x37,0xf6,0xc6,0xb0,0x0,0x0,0x0,0x0, - 0x38,0xbf,0x2a,0xb0,0x0,0x0,0x0,0x0,0x40,0xb0,0x13,0xb0,0x0,0x0,0x0,0x0, - 0x41,0x56,0x3e,0xc0,0x0,0x0,0x0,0x0,0x47,0x77,0x9,0xb0,0x0,0x0,0x0,0x0, - 0x47,0xdc,0x7f,0x20,0x0,0x1,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0xb0,0x13,0xb0,0x41,0x56,0x3e,0xc0,0x47,0x77,0x9,0xb0,0x47,0xdc,0x7f,0x20,0x7f, + 0xff,0xff,0xff,0x1,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x5, - 0x4,0x5,0x4,0x5,0x4,0x6,0x7,0x6,0x7,0x6,0x4,0x5,0x3,0x5,0x6,0x5, - 0x4,0x5,0xff,0xff,0xbf,0x7c,0x0,0x0,0xff,0xff,0xc3,0xd0,0x0,0x4,0xff,0xff, - 0xc7,0xc0,0x0,0x8,0xff,0xff,0xd5,0xd0,0x1,0xc,0xff,0xff,0xe3,0xe0,0x1,0xc, - 0xff,0xff,0xd5,0xd0,0x0,0x8,0xff,0xff,0xc7,0xc0,0x0,0x11,0xff,0xff,0xd5,0xd0, - 0x1,0x16,0xff,0xff,0xe3,0xe0,0x1,0xc,0xff,0xff,0xd5,0xd0,0x0,0x8,0x4c,0x4d, - 0x54,0x0,0x43,0x4d,0x54,0x0,0x41,0x52,0x54,0x0,0x41,0x52,0x53,0x54,0x0,0x57, - 0x41,0x52,0x54,0x0,0x57,0x41,0x52,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x41, - 0x52,0x54,0x33,0xa, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x5,0x4,0x5, + 0x4,0x5,0x4,0x2,0x3,0x2,0x3,0x2,0x4,0x5,0x3,0x5,0x2,0x5,0x4,0x5, + 0x5,0xff,0xff,0xbf,0x7c,0x0,0x0,0xff,0xff,0xc3,0xd0,0x0,0x4,0xff,0xff,0xc7, + 0xc0,0x0,0x8,0xff,0xff,0xd5,0xd0,0x1,0xc,0xff,0xff,0xe3,0xe0,0x1,0x10,0xff, + 0xff,0xd5,0xd0,0x0,0xc,0x4c,0x4d,0x54,0x0,0x43,0x4d,0x54,0x0,0x2d,0x30,0x34, + 0x0,0x2d,0x30,0x33,0x0,0x2d,0x30,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x14,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x72,0x9c,0xb2, + 0x4,0xff,0xff,0xff,0xff,0xa2,0x92,0x8f,0x30,0xff,0xff,0xff,0xff,0xb6,0x7b,0x52, + 0x40,0xff,0xff,0xff,0xff,0xb7,0x1a,0xc9,0xb0,0xff,0xff,0xff,0xff,0xb8,0x1e,0x8f, + 0x40,0xff,0xff,0xff,0xff,0xb8,0xd4,0x70,0x30,0xff,0xff,0xff,0xff,0xba,0x17,0x7d, + 0xc0,0xff,0xff,0xff,0xff,0xba,0xb5,0xa3,0xb0,0xff,0xff,0xff,0xff,0xbb,0xf8,0xb1, + 0x40,0xff,0xff,0xff,0xff,0xbc,0x96,0xd7,0x30,0xff,0xff,0xff,0xff,0xbd,0xd9,0xe4, + 0xc0,0xff,0xff,0xff,0xff,0xbe,0x78,0xa,0xb0,0xff,0xff,0xff,0xff,0xbf,0xbb,0x18, + 0x40,0xff,0xff,0xff,0xff,0xc0,0x5a,0x8f,0xb0,0xff,0xff,0xff,0xff,0xc1,0x9d,0x9d, + 0x40,0xff,0xff,0xff,0xff,0xc2,0x3b,0xc3,0x30,0xff,0xff,0xff,0xff,0xc3,0x7e,0xd0, + 0xc0,0xff,0xff,0xff,0xff,0xc4,0x1c,0xf6,0xb0,0xff,0xff,0xff,0xff,0xc5,0x60,0x4, + 0x40,0xff,0xff,0xff,0xff,0xc5,0xfe,0x2a,0x30,0xff,0xff,0xff,0xff,0xc7,0x41,0x37, + 0xc0,0xff,0xff,0xff,0xff,0xc7,0xe0,0xaf,0x30,0xff,0xff,0xff,0xff,0xc8,0x81,0x94, + 0x40,0xff,0xff,0xff,0xff,0xca,0x4d,0xa1,0xb0,0xff,0xff,0xff,0xff,0xca,0xee,0x86, + 0xc0,0xff,0xff,0xff,0xff,0xce,0x4d,0xff,0x30,0xff,0xff,0xff,0xff,0xce,0xb0,0xed, + 0xc0,0xff,0xff,0xff,0xff,0xd3,0x29,0x35,0xb0,0xff,0xff,0xff,0xff,0xd4,0x43,0x64, + 0xc0,0xff,0xff,0xff,0xff,0xf4,0x3d,0x8,0x30,0xff,0xff,0xff,0xff,0xf4,0x9f,0xf6, + 0xc0,0xff,0xff,0xff,0xff,0xf5,0x5,0x6c,0x30,0xff,0xff,0xff,0xff,0xf6,0x32,0x10, + 0x40,0xff,0xff,0xff,0xff,0xf6,0xe6,0x9f,0xb0,0xff,0xff,0xff,0xff,0xf8,0x13,0x43, + 0xc0,0xff,0xff,0xff,0xff,0xf8,0xc7,0xd3,0x30,0xff,0xff,0xff,0xff,0xf9,0xf4,0x77, + 0x40,0xff,0xff,0xff,0xff,0xfa,0xd3,0x36,0xb0,0xff,0xff,0xff,0xff,0xfb,0xc3,0x35, + 0xc0,0xff,0xff,0xff,0xff,0xfc,0xbc,0x53,0x30,0xff,0xff,0xff,0xff,0xfd,0xac,0x52, + 0x40,0xff,0xff,0xff,0xff,0xfe,0x9c,0x35,0x30,0xff,0xff,0xff,0xff,0xff,0x8c,0x34, + 0x40,0x0,0x0,0x0,0x0,0x7,0xa3,0x4a,0xb0,0x0,0x0,0x0,0x0,0x8,0x24,0x6f, + 0xa0,0x0,0x0,0x0,0x0,0x23,0x94,0xb5,0xb0,0x0,0x0,0x0,0x0,0x24,0x10,0x94, + 0xa0,0x0,0x0,0x0,0x0,0x25,0x37,0xf2,0xb0,0x0,0x0,0x0,0x0,0x25,0xf0,0x76, + 0xa0,0x0,0x0,0x0,0x0,0x27,0x19,0x34,0x40,0x0,0x0,0x0,0x0,0x27,0xcd,0xc3, + 0xb0,0x0,0x0,0x0,0x0,0x28,0xfa,0x67,0xc0,0x0,0x0,0x0,0x0,0x29,0xb0,0x48, + 0xb0,0x0,0x0,0x0,0x0,0x2a,0xe0,0xe1,0x40,0x0,0x0,0x0,0x0,0x2b,0x99,0x57, + 0x20,0x0,0x0,0x0,0x0,0x37,0xf6,0xc6,0xb0,0x0,0x0,0x0,0x0,0x38,0xbf,0x2a, + 0xb0,0x0,0x0,0x0,0x0,0x40,0xb0,0x13,0xb0,0x0,0x0,0x0,0x0,0x41,0x56,0x3e, + 0xc0,0x0,0x0,0x0,0x0,0x47,0x77,0x9,0xb0,0x0,0x0,0x0,0x0,0x47,0xdc,0x7f, + 0x20,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x5,0x4,0x5,0x4,0x5,0x4,0x2,0x3,0x2,0x3,0x2,0x4, + 0x5,0x3,0x5,0x2,0x5,0x4,0x5,0x5,0xff,0xff,0xbf,0x7c,0x0,0x0,0xff,0xff, + 0xc3,0xd0,0x0,0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0xff,0xff,0xd5,0xd0,0x1,0xc, + 0xff,0xff,0xe3,0xe0,0x1,0x10,0xff,0xff,0xd5,0xd0,0x0,0xc,0x4c,0x4d,0x54,0x0, + 0x43,0x4d,0x54,0x0,0x2d,0x30,0x34,0x0,0x2d,0x30,0x33,0x0,0x2d,0x30,0x32,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2d,0x30, + 0x33,0x3e,0x33,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/America/Argentina/Tucuman - 0x0,0x0,0x4,0x85, + 0x0,0x0,0x4,0x71, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x3f,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x16,0x80,0x0,0x0,0x0,0xa2, + 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x40,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0xa2, 0x92,0x8f,0x30,0xb6,0x7b,0x52,0x40,0xb7,0x1a,0xc9,0xb0,0xb8,0x1e,0x8f,0x40,0xb8, 0xd4,0x70,0x30,0xba,0x17,0x7d,0xc0,0xba,0xb5,0xa3,0xb0,0xbb,0xf8,0xb1,0x40,0xbc, 0x96,0xd7,0x30,0xbd,0xd9,0xe4,0xc0,0xbe,0x78,0xa,0xb0,0xbf,0xbb,0x18,0x40,0xc0, @@ -32771,67 +27651,66 @@ static const unsigned char qt_resource_data[] = { 0x21,0xf,0x30,0x27,0xd0,0x58,0xa0,0x29,0x0,0xff,0x40,0x29,0xb0,0x3a,0xa0,0x2a, 0xe0,0xd3,0x30,0x2b,0x99,0x57,0x20,0x37,0xf6,0xc6,0xb0,0x38,0xbf,0x2a,0xb0,0x40, 0xbb,0xf1,0x30,0x40,0xcb,0xd1,0x40,0x47,0x77,0x9,0xb0,0x47,0xdc,0x7f,0x20,0x48, - 0xfa,0xa2,0xb0,0x49,0xbc,0x61,0x20,0x1,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x6,0x4,0x5,0x4,0x5,0x3,0x5, - 0x6,0x5,0x4,0x5,0x4,0x5,0xff,0xff,0xc2,0xdc,0x0,0x0,0xff,0xff,0xc3,0xd0, - 0x0,0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0xff,0xff,0xd5,0xd0,0x1,0xc,0xff,0xff, - 0xe3,0xe0,0x1,0xc,0xff,0xff,0xd5,0xd0,0x0,0x8,0xff,0xff,0xc7,0xc0,0x0,0x11, - 0xff,0xff,0xd5,0xd0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x43,0x4d,0x54,0x0,0x41,0x52, - 0x54,0x0,0x41,0x52,0x53,0x54,0x0,0x57,0x41,0x52,0x54,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66, - 0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x40, - 0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x16,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0xff,0xff,0xff,0xff,0x72,0x9c,0xae,0xa4,0xff,0xff,0xff,0xff,0xa2,0x92,0x8f,0x30, - 0xff,0xff,0xff,0xff,0xb6,0x7b,0x52,0x40,0xff,0xff,0xff,0xff,0xb7,0x1a,0xc9,0xb0, - 0xff,0xff,0xff,0xff,0xb8,0x1e,0x8f,0x40,0xff,0xff,0xff,0xff,0xb8,0xd4,0x70,0x30, - 0xff,0xff,0xff,0xff,0xba,0x17,0x7d,0xc0,0xff,0xff,0xff,0xff,0xba,0xb5,0xa3,0xb0, - 0xff,0xff,0xff,0xff,0xbb,0xf8,0xb1,0x40,0xff,0xff,0xff,0xff,0xbc,0x96,0xd7,0x30, - 0xff,0xff,0xff,0xff,0xbd,0xd9,0xe4,0xc0,0xff,0xff,0xff,0xff,0xbe,0x78,0xa,0xb0, - 0xff,0xff,0xff,0xff,0xbf,0xbb,0x18,0x40,0xff,0xff,0xff,0xff,0xc0,0x5a,0x8f,0xb0, - 0xff,0xff,0xff,0xff,0xc1,0x9d,0x9d,0x40,0xff,0xff,0xff,0xff,0xc2,0x3b,0xc3,0x30, - 0xff,0xff,0xff,0xff,0xc3,0x7e,0xd0,0xc0,0xff,0xff,0xff,0xff,0xc4,0x1c,0xf6,0xb0, - 0xff,0xff,0xff,0xff,0xc5,0x60,0x4,0x40,0xff,0xff,0xff,0xff,0xc5,0xfe,0x2a,0x30, - 0xff,0xff,0xff,0xff,0xc7,0x41,0x37,0xc0,0xff,0xff,0xff,0xff,0xc7,0xe0,0xaf,0x30, - 0xff,0xff,0xff,0xff,0xc8,0x81,0x94,0x40,0xff,0xff,0xff,0xff,0xca,0x4d,0xa1,0xb0, - 0xff,0xff,0xff,0xff,0xca,0xee,0x86,0xc0,0xff,0xff,0xff,0xff,0xce,0x4d,0xff,0x30, - 0xff,0xff,0xff,0xff,0xce,0xb0,0xed,0xc0,0xff,0xff,0xff,0xff,0xd3,0x29,0x35,0xb0, - 0xff,0xff,0xff,0xff,0xd4,0x43,0x64,0xc0,0xff,0xff,0xff,0xff,0xf4,0x3d,0x8,0x30, - 0xff,0xff,0xff,0xff,0xf4,0x9f,0xf6,0xc0,0xff,0xff,0xff,0xff,0xf5,0x5,0x6c,0x30, - 0xff,0xff,0xff,0xff,0xf6,0x32,0x10,0x40,0xff,0xff,0xff,0xff,0xf6,0xe6,0x9f,0xb0, - 0xff,0xff,0xff,0xff,0xf8,0x13,0x43,0xc0,0xff,0xff,0xff,0xff,0xf8,0xc7,0xd3,0x30, - 0xff,0xff,0xff,0xff,0xf9,0xf4,0x77,0x40,0xff,0xff,0xff,0xff,0xfa,0xd3,0x36,0xb0, - 0xff,0xff,0xff,0xff,0xfb,0xc3,0x35,0xc0,0xff,0xff,0xff,0xff,0xfc,0xbc,0x53,0x30, - 0xff,0xff,0xff,0xff,0xfd,0xac,0x52,0x40,0xff,0xff,0xff,0xff,0xfe,0x9c,0x35,0x30, - 0xff,0xff,0xff,0xff,0xff,0x8c,0x34,0x40,0x0,0x0,0x0,0x0,0x7,0xa3,0x4a,0xb0, - 0x0,0x0,0x0,0x0,0x8,0x24,0x6f,0xa0,0x0,0x0,0x0,0x0,0x23,0x94,0xb5,0xb0, - 0x0,0x0,0x0,0x0,0x24,0x10,0x94,0xa0,0x0,0x0,0x0,0x0,0x25,0x37,0xf2,0xb0, - 0x0,0x0,0x0,0x0,0x25,0xf0,0x76,0xa0,0x0,0x0,0x0,0x0,0x27,0x21,0xf,0x30, - 0x0,0x0,0x0,0x0,0x27,0xd0,0x58,0xa0,0x0,0x0,0x0,0x0,0x29,0x0,0xff,0x40, - 0x0,0x0,0x0,0x0,0x29,0xb0,0x3a,0xa0,0x0,0x0,0x0,0x0,0x2a,0xe0,0xd3,0x30, - 0x0,0x0,0x0,0x0,0x2b,0x99,0x57,0x20,0x0,0x0,0x0,0x0,0x37,0xf6,0xc6,0xb0, - 0x0,0x0,0x0,0x0,0x38,0xbf,0x2a,0xb0,0x0,0x0,0x0,0x0,0x40,0xbb,0xf1,0x30, - 0x0,0x0,0x0,0x0,0x40,0xcb,0xd1,0x40,0x0,0x0,0x0,0x0,0x47,0x77,0x9,0xb0, - 0x0,0x0,0x0,0x0,0x47,0xdc,0x7f,0x20,0x0,0x0,0x0,0x0,0x48,0xfa,0xa2,0xb0, - 0x0,0x0,0x0,0x0,0x49,0xbc,0x61,0x20,0x0,0x1,0x2,0x3,0x2,0x3,0x2,0x3, + 0xfa,0xa2,0xb0,0x49,0xbc,0x61,0x20,0x7f,0xff,0xff,0xff,0x1,0x2,0x3,0x2,0x3, 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x6,0x4,0x5,0x4,0x5, - 0x3,0x5,0x6,0x5,0x4,0x5,0x4,0x5,0xff,0xff,0xc2,0xdc,0x0,0x0,0xff,0xff, - 0xc3,0xd0,0x0,0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0xff,0xff,0xd5,0xd0,0x1,0xc, - 0xff,0xff,0xe3,0xe0,0x1,0xc,0xff,0xff,0xd5,0xd0,0x0,0x8,0xff,0xff,0xc7,0xc0, - 0x0,0x11,0xff,0xff,0xd5,0xd0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x43,0x4d,0x54,0x0, - 0x41,0x52,0x54,0x0,0x41,0x52,0x53,0x54,0x0,0x57,0x41,0x52,0x54,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x41, - 0x52,0x54,0x33,0xa, + 0x2,0x3,0x2,0x3,0x2,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x2,0x4,0x5, + 0x4,0x5,0x3,0x5,0x2,0x5,0x4,0x5,0x4,0x5,0x5,0xff,0xff,0xc2,0xdc,0x0, + 0x0,0xff,0xff,0xc3,0xd0,0x0,0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0xff,0xff,0xd5, + 0xd0,0x1,0xc,0xff,0xff,0xe3,0xe0,0x1,0x10,0xff,0xff,0xd5,0xd0,0x0,0xc,0x4c, + 0x4d,0x54,0x0,0x43,0x4d,0x54,0x0,0x2d,0x30,0x34,0x0,0x2d,0x30,0x33,0x0,0x2d, + 0x30,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x41,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0xf8,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x72,0x9c,0xae,0xa4,0xff,0xff,0xff,0xff,0xa2, + 0x92,0x8f,0x30,0xff,0xff,0xff,0xff,0xb6,0x7b,0x52,0x40,0xff,0xff,0xff,0xff,0xb7, + 0x1a,0xc9,0xb0,0xff,0xff,0xff,0xff,0xb8,0x1e,0x8f,0x40,0xff,0xff,0xff,0xff,0xb8, + 0xd4,0x70,0x30,0xff,0xff,0xff,0xff,0xba,0x17,0x7d,0xc0,0xff,0xff,0xff,0xff,0xba, + 0xb5,0xa3,0xb0,0xff,0xff,0xff,0xff,0xbb,0xf8,0xb1,0x40,0xff,0xff,0xff,0xff,0xbc, + 0x96,0xd7,0x30,0xff,0xff,0xff,0xff,0xbd,0xd9,0xe4,0xc0,0xff,0xff,0xff,0xff,0xbe, + 0x78,0xa,0xb0,0xff,0xff,0xff,0xff,0xbf,0xbb,0x18,0x40,0xff,0xff,0xff,0xff,0xc0, + 0x5a,0x8f,0xb0,0xff,0xff,0xff,0xff,0xc1,0x9d,0x9d,0x40,0xff,0xff,0xff,0xff,0xc2, + 0x3b,0xc3,0x30,0xff,0xff,0xff,0xff,0xc3,0x7e,0xd0,0xc0,0xff,0xff,0xff,0xff,0xc4, + 0x1c,0xf6,0xb0,0xff,0xff,0xff,0xff,0xc5,0x60,0x4,0x40,0xff,0xff,0xff,0xff,0xc5, + 0xfe,0x2a,0x30,0xff,0xff,0xff,0xff,0xc7,0x41,0x37,0xc0,0xff,0xff,0xff,0xff,0xc7, + 0xe0,0xaf,0x30,0xff,0xff,0xff,0xff,0xc8,0x81,0x94,0x40,0xff,0xff,0xff,0xff,0xca, + 0x4d,0xa1,0xb0,0xff,0xff,0xff,0xff,0xca,0xee,0x86,0xc0,0xff,0xff,0xff,0xff,0xce, + 0x4d,0xff,0x30,0xff,0xff,0xff,0xff,0xce,0xb0,0xed,0xc0,0xff,0xff,0xff,0xff,0xd3, + 0x29,0x35,0xb0,0xff,0xff,0xff,0xff,0xd4,0x43,0x64,0xc0,0xff,0xff,0xff,0xff,0xf4, + 0x3d,0x8,0x30,0xff,0xff,0xff,0xff,0xf4,0x9f,0xf6,0xc0,0xff,0xff,0xff,0xff,0xf5, + 0x5,0x6c,0x30,0xff,0xff,0xff,0xff,0xf6,0x32,0x10,0x40,0xff,0xff,0xff,0xff,0xf6, + 0xe6,0x9f,0xb0,0xff,0xff,0xff,0xff,0xf8,0x13,0x43,0xc0,0xff,0xff,0xff,0xff,0xf8, + 0xc7,0xd3,0x30,0xff,0xff,0xff,0xff,0xf9,0xf4,0x77,0x40,0xff,0xff,0xff,0xff,0xfa, + 0xd3,0x36,0xb0,0xff,0xff,0xff,0xff,0xfb,0xc3,0x35,0xc0,0xff,0xff,0xff,0xff,0xfc, + 0xbc,0x53,0x30,0xff,0xff,0xff,0xff,0xfd,0xac,0x52,0x40,0xff,0xff,0xff,0xff,0xfe, + 0x9c,0x35,0x30,0xff,0xff,0xff,0xff,0xff,0x8c,0x34,0x40,0x0,0x0,0x0,0x0,0x7, + 0xa3,0x4a,0xb0,0x0,0x0,0x0,0x0,0x8,0x24,0x6f,0xa0,0x0,0x0,0x0,0x0,0x23, + 0x94,0xb5,0xb0,0x0,0x0,0x0,0x0,0x24,0x10,0x94,0xa0,0x0,0x0,0x0,0x0,0x25, + 0x37,0xf2,0xb0,0x0,0x0,0x0,0x0,0x25,0xf0,0x76,0xa0,0x0,0x0,0x0,0x0,0x27, + 0x21,0xf,0x30,0x0,0x0,0x0,0x0,0x27,0xd0,0x58,0xa0,0x0,0x0,0x0,0x0,0x29, + 0x0,0xff,0x40,0x0,0x0,0x0,0x0,0x29,0xb0,0x3a,0xa0,0x0,0x0,0x0,0x0,0x2a, + 0xe0,0xd3,0x30,0x0,0x0,0x0,0x0,0x2b,0x99,0x57,0x20,0x0,0x0,0x0,0x0,0x37, + 0xf6,0xc6,0xb0,0x0,0x0,0x0,0x0,0x38,0xbf,0x2a,0xb0,0x0,0x0,0x0,0x0,0x40, + 0xbb,0xf1,0x30,0x0,0x0,0x0,0x0,0x40,0xcb,0xd1,0x40,0x0,0x0,0x0,0x0,0x47, + 0x77,0x9,0xb0,0x0,0x0,0x0,0x0,0x47,0xdc,0x7f,0x20,0x0,0x0,0x0,0x0,0x48, + 0xfa,0xa2,0xb0,0x0,0x0,0x0,0x0,0x49,0xbc,0x61,0x20,0x0,0x0,0x0,0x0,0x7f, + 0xff,0xff,0xff,0x0,0x1,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x2,0x4,0x5,0x4,0x5,0x3,0x5,0x2,0x5,0x4, + 0x5,0x4,0x5,0x5,0xff,0xff,0xc2,0xdc,0x0,0x0,0xff,0xff,0xc3,0xd0,0x0,0x4, + 0xff,0xff,0xc7,0xc0,0x0,0x8,0xff,0xff,0xd5,0xd0,0x1,0xc,0xff,0xff,0xe3,0xe0, + 0x1,0x10,0xff,0xff,0xd5,0xd0,0x0,0xc,0x4c,0x4d,0x54,0x0,0x43,0x4d,0x54,0x0, + 0x2d,0x30,0x34,0x0,0x2d,0x30,0x33,0x0,0x2d,0x30,0x32,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2d,0x30,0x33,0x3e,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/America/Argentina/Salta - 0x0,0x0,0x4,0x4d, + 0x0,0x0,0x4,0x39, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x3b,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x16,0x80,0x0,0x0,0x0,0xa2, + 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3c,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0xa2, 0x92,0x8f,0x30,0xb6,0x7b,0x52,0x40,0xb7,0x1a,0xc9,0xb0,0xb8,0x1e,0x8f,0x40,0xb8, 0xd4,0x70,0x30,0xba,0x17,0x7d,0xc0,0xba,0xb5,0xa3,0xb0,0xbb,0xf8,0xb1,0x40,0xbc, 0x96,0xd7,0x30,0xbd,0xd9,0xe4,0xc0,0xbe,0x78,0xa,0xb0,0xbf,0xbb,0x18,0x40,0xc0, @@ -32846,58 +27725,57 @@ static const unsigned char qt_resource_data[] = { 0x94,0xb5,0xb0,0x24,0x10,0x94,0xa0,0x25,0x37,0xf2,0xb0,0x25,0xf0,0x76,0xa0,0x27, 0x21,0xf,0x30,0x27,0xd0,0x58,0xa0,0x29,0x0,0xff,0x40,0x29,0xb0,0x3a,0xa0,0x2a, 0xe0,0xd3,0x30,0x2b,0x99,0x57,0x20,0x37,0xf6,0xc6,0xb0,0x38,0xbf,0x2a,0xb0,0x47, - 0x77,0x9,0xb0,0x47,0xdc,0x7f,0x20,0x1,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x77,0x9,0xb0,0x47,0xdc,0x7f,0x20,0x7f,0xff,0xff,0xff,0x1,0x2,0x3,0x2,0x3, 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x6,0x4,0x5,0x4,0x5,0x3,0x5, - 0x4,0x5,0xff,0xff,0xc2,0xac,0x0,0x0,0xff,0xff,0xc3,0xd0,0x0,0x4,0xff,0xff, - 0xc7,0xc0,0x0,0x8,0xff,0xff,0xd5,0xd0,0x1,0xc,0xff,0xff,0xe3,0xe0,0x1,0xc, - 0xff,0xff,0xd5,0xd0,0x0,0x8,0xff,0xff,0xc7,0xc0,0x0,0x11,0xff,0xff,0xd5,0xd0, - 0x0,0x8,0x4c,0x4d,0x54,0x0,0x43,0x4d,0x54,0x0,0x41,0x52,0x54,0x0,0x41,0x52, - 0x53,0x54,0x0,0x57,0x41,0x52,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8, - 0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3c,0x0,0x0,0x0,0x8, - 0x0,0x0,0x0,0x16,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff, - 0x72,0x9c,0xae,0xd4,0xff,0xff,0xff,0xff,0xa2,0x92,0x8f,0x30,0xff,0xff,0xff,0xff, - 0xb6,0x7b,0x52,0x40,0xff,0xff,0xff,0xff,0xb7,0x1a,0xc9,0xb0,0xff,0xff,0xff,0xff, - 0xb8,0x1e,0x8f,0x40,0xff,0xff,0xff,0xff,0xb8,0xd4,0x70,0x30,0xff,0xff,0xff,0xff, - 0xba,0x17,0x7d,0xc0,0xff,0xff,0xff,0xff,0xba,0xb5,0xa3,0xb0,0xff,0xff,0xff,0xff, - 0xbb,0xf8,0xb1,0x40,0xff,0xff,0xff,0xff,0xbc,0x96,0xd7,0x30,0xff,0xff,0xff,0xff, - 0xbd,0xd9,0xe4,0xc0,0xff,0xff,0xff,0xff,0xbe,0x78,0xa,0xb0,0xff,0xff,0xff,0xff, - 0xbf,0xbb,0x18,0x40,0xff,0xff,0xff,0xff,0xc0,0x5a,0x8f,0xb0,0xff,0xff,0xff,0xff, - 0xc1,0x9d,0x9d,0x40,0xff,0xff,0xff,0xff,0xc2,0x3b,0xc3,0x30,0xff,0xff,0xff,0xff, - 0xc3,0x7e,0xd0,0xc0,0xff,0xff,0xff,0xff,0xc4,0x1c,0xf6,0xb0,0xff,0xff,0xff,0xff, - 0xc5,0x60,0x4,0x40,0xff,0xff,0xff,0xff,0xc5,0xfe,0x2a,0x30,0xff,0xff,0xff,0xff, - 0xc7,0x41,0x37,0xc0,0xff,0xff,0xff,0xff,0xc7,0xe0,0xaf,0x30,0xff,0xff,0xff,0xff, - 0xc8,0x81,0x94,0x40,0xff,0xff,0xff,0xff,0xca,0x4d,0xa1,0xb0,0xff,0xff,0xff,0xff, - 0xca,0xee,0x86,0xc0,0xff,0xff,0xff,0xff,0xce,0x4d,0xff,0x30,0xff,0xff,0xff,0xff, - 0xce,0xb0,0xed,0xc0,0xff,0xff,0xff,0xff,0xd3,0x29,0x35,0xb0,0xff,0xff,0xff,0xff, - 0xd4,0x43,0x64,0xc0,0xff,0xff,0xff,0xff,0xf4,0x3d,0x8,0x30,0xff,0xff,0xff,0xff, - 0xf4,0x9f,0xf6,0xc0,0xff,0xff,0xff,0xff,0xf5,0x5,0x6c,0x30,0xff,0xff,0xff,0xff, - 0xf6,0x32,0x10,0x40,0xff,0xff,0xff,0xff,0xf6,0xe6,0x9f,0xb0,0xff,0xff,0xff,0xff, - 0xf8,0x13,0x43,0xc0,0xff,0xff,0xff,0xff,0xf8,0xc7,0xd3,0x30,0xff,0xff,0xff,0xff, - 0xf9,0xf4,0x77,0x40,0xff,0xff,0xff,0xff,0xfa,0xd3,0x36,0xb0,0xff,0xff,0xff,0xff, - 0xfb,0xc3,0x35,0xc0,0xff,0xff,0xff,0xff,0xfc,0xbc,0x53,0x30,0xff,0xff,0xff,0xff, - 0xfd,0xac,0x52,0x40,0xff,0xff,0xff,0xff,0xfe,0x9c,0x35,0x30,0xff,0xff,0xff,0xff, - 0xff,0x8c,0x34,0x40,0x0,0x0,0x0,0x0,0x7,0xa3,0x4a,0xb0,0x0,0x0,0x0,0x0, - 0x8,0x24,0x6f,0xa0,0x0,0x0,0x0,0x0,0x23,0x94,0xb5,0xb0,0x0,0x0,0x0,0x0, - 0x24,0x10,0x94,0xa0,0x0,0x0,0x0,0x0,0x25,0x37,0xf2,0xb0,0x0,0x0,0x0,0x0, - 0x25,0xf0,0x76,0xa0,0x0,0x0,0x0,0x0,0x27,0x21,0xf,0x30,0x0,0x0,0x0,0x0, - 0x27,0xd0,0x58,0xa0,0x0,0x0,0x0,0x0,0x29,0x0,0xff,0x40,0x0,0x0,0x0,0x0, - 0x29,0xb0,0x3a,0xa0,0x0,0x0,0x0,0x0,0x2a,0xe0,0xd3,0x30,0x0,0x0,0x0,0x0, - 0x2b,0x99,0x57,0x20,0x0,0x0,0x0,0x0,0x37,0xf6,0xc6,0xb0,0x0,0x0,0x0,0x0, - 0x38,0xbf,0x2a,0xb0,0x0,0x0,0x0,0x0,0x47,0x77,0x9,0xb0,0x0,0x0,0x0,0x0, - 0x47,0xdc,0x7f,0x20,0x0,0x1,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x6,0x4,0x5,0x4,0x5,0x3,0x5,0x4,0x5, - 0xff,0xff,0xc2,0xac,0x0,0x0,0xff,0xff,0xc3,0xd0,0x0,0x4,0xff,0xff,0xc7,0xc0, - 0x0,0x8,0xff,0xff,0xd5,0xd0,0x1,0xc,0xff,0xff,0xe3,0xe0,0x1,0xc,0xff,0xff, - 0xd5,0xd0,0x0,0x8,0xff,0xff,0xc7,0xc0,0x0,0x11,0xff,0xff,0xd5,0xd0,0x0,0x8, - 0x4c,0x4d,0x54,0x0,0x43,0x4d,0x54,0x0,0x41,0x52,0x54,0x0,0x41,0x52,0x53,0x54, - 0x0,0x57,0x41,0x52,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x41,0x52,0x54,0x33,0xa, + 0x2,0x3,0x2,0x3,0x2,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x2,0x4,0x5, + 0x4,0x5,0x3,0x5,0x4,0x5,0x5,0xff,0xff,0xc2,0xac,0x0,0x0,0xff,0xff,0xc3, + 0xd0,0x0,0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0xff,0xff,0xd5,0xd0,0x1,0xc,0xff, + 0xff,0xe3,0xe0,0x1,0x10,0xff,0xff,0xd5,0xd0,0x0,0xc,0x4c,0x4d,0x54,0x0,0x43, + 0x4d,0x54,0x0,0x2d,0x30,0x34,0x0,0x2d,0x30,0x33,0x0,0x2d,0x30,0x32,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3d,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x14,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff, + 0xff,0xff,0xff,0x72,0x9c,0xae,0xd4,0xff,0xff,0xff,0xff,0xa2,0x92,0x8f,0x30,0xff, + 0xff,0xff,0xff,0xb6,0x7b,0x52,0x40,0xff,0xff,0xff,0xff,0xb7,0x1a,0xc9,0xb0,0xff, + 0xff,0xff,0xff,0xb8,0x1e,0x8f,0x40,0xff,0xff,0xff,0xff,0xb8,0xd4,0x70,0x30,0xff, + 0xff,0xff,0xff,0xba,0x17,0x7d,0xc0,0xff,0xff,0xff,0xff,0xba,0xb5,0xa3,0xb0,0xff, + 0xff,0xff,0xff,0xbb,0xf8,0xb1,0x40,0xff,0xff,0xff,0xff,0xbc,0x96,0xd7,0x30,0xff, + 0xff,0xff,0xff,0xbd,0xd9,0xe4,0xc0,0xff,0xff,0xff,0xff,0xbe,0x78,0xa,0xb0,0xff, + 0xff,0xff,0xff,0xbf,0xbb,0x18,0x40,0xff,0xff,0xff,0xff,0xc0,0x5a,0x8f,0xb0,0xff, + 0xff,0xff,0xff,0xc1,0x9d,0x9d,0x40,0xff,0xff,0xff,0xff,0xc2,0x3b,0xc3,0x30,0xff, + 0xff,0xff,0xff,0xc3,0x7e,0xd0,0xc0,0xff,0xff,0xff,0xff,0xc4,0x1c,0xf6,0xb0,0xff, + 0xff,0xff,0xff,0xc5,0x60,0x4,0x40,0xff,0xff,0xff,0xff,0xc5,0xfe,0x2a,0x30,0xff, + 0xff,0xff,0xff,0xc7,0x41,0x37,0xc0,0xff,0xff,0xff,0xff,0xc7,0xe0,0xaf,0x30,0xff, + 0xff,0xff,0xff,0xc8,0x81,0x94,0x40,0xff,0xff,0xff,0xff,0xca,0x4d,0xa1,0xb0,0xff, + 0xff,0xff,0xff,0xca,0xee,0x86,0xc0,0xff,0xff,0xff,0xff,0xce,0x4d,0xff,0x30,0xff, + 0xff,0xff,0xff,0xce,0xb0,0xed,0xc0,0xff,0xff,0xff,0xff,0xd3,0x29,0x35,0xb0,0xff, + 0xff,0xff,0xff,0xd4,0x43,0x64,0xc0,0xff,0xff,0xff,0xff,0xf4,0x3d,0x8,0x30,0xff, + 0xff,0xff,0xff,0xf4,0x9f,0xf6,0xc0,0xff,0xff,0xff,0xff,0xf5,0x5,0x6c,0x30,0xff, + 0xff,0xff,0xff,0xf6,0x32,0x10,0x40,0xff,0xff,0xff,0xff,0xf6,0xe6,0x9f,0xb0,0xff, + 0xff,0xff,0xff,0xf8,0x13,0x43,0xc0,0xff,0xff,0xff,0xff,0xf8,0xc7,0xd3,0x30,0xff, + 0xff,0xff,0xff,0xf9,0xf4,0x77,0x40,0xff,0xff,0xff,0xff,0xfa,0xd3,0x36,0xb0,0xff, + 0xff,0xff,0xff,0xfb,0xc3,0x35,0xc0,0xff,0xff,0xff,0xff,0xfc,0xbc,0x53,0x30,0xff, + 0xff,0xff,0xff,0xfd,0xac,0x52,0x40,0xff,0xff,0xff,0xff,0xfe,0x9c,0x35,0x30,0xff, + 0xff,0xff,0xff,0xff,0x8c,0x34,0x40,0x0,0x0,0x0,0x0,0x7,0xa3,0x4a,0xb0,0x0, + 0x0,0x0,0x0,0x8,0x24,0x6f,0xa0,0x0,0x0,0x0,0x0,0x23,0x94,0xb5,0xb0,0x0, + 0x0,0x0,0x0,0x24,0x10,0x94,0xa0,0x0,0x0,0x0,0x0,0x25,0x37,0xf2,0xb0,0x0, + 0x0,0x0,0x0,0x25,0xf0,0x76,0xa0,0x0,0x0,0x0,0x0,0x27,0x21,0xf,0x30,0x0, + 0x0,0x0,0x0,0x27,0xd0,0x58,0xa0,0x0,0x0,0x0,0x0,0x29,0x0,0xff,0x40,0x0, + 0x0,0x0,0x0,0x29,0xb0,0x3a,0xa0,0x0,0x0,0x0,0x0,0x2a,0xe0,0xd3,0x30,0x0, + 0x0,0x0,0x0,0x2b,0x99,0x57,0x20,0x0,0x0,0x0,0x0,0x37,0xf6,0xc6,0xb0,0x0, + 0x0,0x0,0x0,0x38,0xbf,0x2a,0xb0,0x0,0x0,0x0,0x0,0x47,0x77,0x9,0xb0,0x0, + 0x0,0x0,0x0,0x47,0xdc,0x7f,0x20,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0, + 0x1,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x2,0x4,0x5,0x4,0x5,0x3,0x5,0x4,0x5,0x5,0xff,0xff,0xc2,0xac, + 0x0,0x0,0xff,0xff,0xc3,0xd0,0x0,0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0xff,0xff, + 0xd5,0xd0,0x1,0xc,0xff,0xff,0xe3,0xe0,0x1,0x10,0xff,0xff,0xd5,0xd0,0x0,0xc, + 0x4c,0x4d,0x54,0x0,0x43,0x4d,0x54,0x0,0x2d,0x30,0x34,0x0,0x2d,0x30,0x33,0x0, + 0x2d,0x30,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xa,0x3c,0x2d,0x30,0x33,0x3e,0x33,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/America/Indiana/Tell_City 0x0,0x0,0x6,0xc7, 0x54, @@ -34613,6478 +29491,11669 @@ static const unsigned char qt_resource_data[] = { 0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0xa,0x43,0x53,0x54, 0x36,0x43,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e, 0x31,0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Brazil/Acre - 0x0,0x0,0x2,0x90, + // /home/konrad/src/smoke/tzone/zoneinfo/Etc/Greenwich + 0x0,0x0,0x0,0x7f, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x20,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x11,0x80,0x0,0x0,0x0,0x96, - 0xaa,0x86,0x90,0xb8,0xf,0x66,0x0,0xb8,0xfd,0x5c,0xc0,0xb9,0xf1,0x50,0x50,0xba, - 0xde,0x90,0x40,0xda,0x38,0xca,0x50,0xda,0xec,0x16,0x50,0xdc,0x19,0xfd,0xd0,0xdc, - 0xb9,0x75,0x40,0xdd,0xfb,0x31,0x50,0xde,0x9b,0xfa,0x40,0xdf,0xdd,0xb6,0x50,0xe0, - 0x54,0x4f,0x40,0xf4,0x98,0x1b,0xd0,0xf5,0x5,0x7a,0x40,0xf6,0xc0,0x80,0x50,0xf7, - 0xe,0x3a,0xc0,0xf8,0x51,0x48,0x50,0xf8,0xc7,0xe1,0x40,0xfa,0xa,0xee,0xd0,0xfa, - 0xa9,0x14,0xc0,0xfb,0xec,0x22,0x50,0xfc,0x8b,0x99,0xc0,0x1d,0xc9,0xaa,0x50,0x1e, - 0x78,0xf3,0xc0,0x1f,0xa0,0x51,0xd0,0x20,0x33,0xeb,0xc0,0x21,0x81,0x85,0x50,0x22, - 0xb,0xe4,0xc0,0x48,0x60,0x7f,0x50,0x52,0x7f,0x4,0xc0,0x0,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x2,0xff,0xff,0xc0,0x70,0x0, - 0x0,0xff,0xff,0xc7,0xc0,0x1,0x4,0xff,0xff,0xb9,0xb0,0x0,0x9,0xff,0xff,0xc7, - 0xc0,0x0,0xd,0xff,0xff,0xb9,0xb0,0x0,0x9,0x4c,0x4d,0x54,0x0,0x41,0x43,0x53, - 0x54,0x0,0x41,0x43,0x54,0x0,0x41,0x4d,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x11, - 0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x96,0xaa,0x86,0x90, - 0xff,0xff,0xff,0xff,0xb8,0xf,0x66,0x0,0xff,0xff,0xff,0xff,0xb8,0xfd,0x5c,0xc0, - 0xff,0xff,0xff,0xff,0xb9,0xf1,0x50,0x50,0xff,0xff,0xff,0xff,0xba,0xde,0x90,0x40, - 0xff,0xff,0xff,0xff,0xda,0x38,0xca,0x50,0xff,0xff,0xff,0xff,0xda,0xec,0x16,0x50, - 0xff,0xff,0xff,0xff,0xdc,0x19,0xfd,0xd0,0xff,0xff,0xff,0xff,0xdc,0xb9,0x75,0x40, - 0xff,0xff,0xff,0xff,0xdd,0xfb,0x31,0x50,0xff,0xff,0xff,0xff,0xde,0x9b,0xfa,0x40, - 0xff,0xff,0xff,0xff,0xdf,0xdd,0xb6,0x50,0xff,0xff,0xff,0xff,0xe0,0x54,0x4f,0x40, - 0xff,0xff,0xff,0xff,0xf4,0x98,0x1b,0xd0,0xff,0xff,0xff,0xff,0xf5,0x5,0x7a,0x40, - 0xff,0xff,0xff,0xff,0xf6,0xc0,0x80,0x50,0xff,0xff,0xff,0xff,0xf7,0xe,0x3a,0xc0, - 0xff,0xff,0xff,0xff,0xf8,0x51,0x48,0x50,0xff,0xff,0xff,0xff,0xf8,0xc7,0xe1,0x40, - 0xff,0xff,0xff,0xff,0xfa,0xa,0xee,0xd0,0xff,0xff,0xff,0xff,0xfa,0xa9,0x14,0xc0, - 0xff,0xff,0xff,0xff,0xfb,0xec,0x22,0x50,0xff,0xff,0xff,0xff,0xfc,0x8b,0x99,0xc0, - 0x0,0x0,0x0,0x0,0x1d,0xc9,0xaa,0x50,0x0,0x0,0x0,0x0,0x1e,0x78,0xf3,0xc0, - 0x0,0x0,0x0,0x0,0x1f,0xa0,0x51,0xd0,0x0,0x0,0x0,0x0,0x20,0x33,0xeb,0xc0, - 0x0,0x0,0x0,0x0,0x21,0x81,0x85,0x50,0x0,0x0,0x0,0x0,0x22,0xb,0xe4,0xc0, - 0x0,0x0,0x0,0x0,0x48,0x60,0x7f,0x50,0x0,0x0,0x0,0x0,0x52,0x7f,0x4,0xc0, - 0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x2, - 0xff,0xff,0xc0,0x70,0x0,0x0,0xff,0xff,0xc7,0xc0,0x1,0x4,0xff,0xff,0xb9,0xb0, - 0x0,0x9,0xff,0xff,0xc7,0xc0,0x0,0xd,0xff,0xff,0xb9,0xb0,0x0,0x9,0x4c,0x4d, - 0x54,0x0,0x41,0x43,0x53,0x54,0x0,0x41,0x43,0x54,0x0,0x41,0x4d,0x54,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x41,0x43,0x54,0x35,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Brazil/East - 0x0,0x0,0x7,0xdf, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, + 0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0, + 0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0, + 0x0,0x0,0x4,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0xa,0x47,0x4d,0x54,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Etc/Zulu + 0x0,0x0,0x0,0x7f, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x81,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0x96, - 0xaa,0x72,0xb4,0xb8,0xf,0x49,0xe0,0xb8,0xfd,0x40,0xa0,0xb9,0xf1,0x34,0x30,0xba, - 0xde,0x74,0x20,0xda,0x38,0xae,0x30,0xda,0xeb,0xfa,0x30,0xdc,0x19,0xe1,0xb0,0xdc, - 0xb9,0x59,0x20,0xdd,0xfb,0x15,0x30,0xde,0x9b,0xde,0x20,0xdf,0xdd,0x9a,0x30,0xe0, - 0x54,0x33,0x20,0xf4,0x5a,0x9,0x30,0xf5,0x5,0x5e,0x20,0xf6,0xc0,0x64,0x30,0xf7, - 0xe,0x1e,0xa0,0xf8,0x51,0x2c,0x30,0xf8,0xc7,0xc5,0x20,0xfa,0xa,0xd2,0xb0,0xfa, - 0xa8,0xf8,0xa0,0xfb,0xec,0x6,0x30,0xfc,0x8b,0x7d,0xa0,0x1d,0xc9,0x8e,0x30,0x1e, - 0x78,0xd7,0xa0,0x1f,0xa0,0x35,0xb0,0x20,0x33,0xcf,0xa0,0x21,0x81,0x69,0x30,0x22, - 0xb,0xc8,0xa0,0x23,0x58,0x10,0xb0,0x23,0xe2,0x70,0x20,0x25,0x37,0xf2,0xb0,0x25, - 0xd4,0xc7,0x20,0x27,0x21,0xf,0x30,0x27,0xbd,0xe3,0xa0,0x29,0x0,0xf1,0x30,0x29, - 0x94,0x8b,0x20,0x2a,0xea,0xd,0xb0,0x2b,0x6b,0x32,0xa0,0x2c,0xc0,0xb5,0x30,0x2d, - 0x66,0xc4,0x20,0x2e,0xa0,0x97,0x30,0x2f,0x46,0xa6,0x20,0x30,0x80,0x79,0x30,0x31, - 0x1d,0x4d,0xa0,0x32,0x57,0x20,0xb0,0x33,0x6,0x6a,0x20,0x34,0x38,0x54,0x30,0x34, - 0xf8,0xc1,0x20,0x36,0x20,0x1f,0x30,0x36,0xcf,0x68,0xa0,0x37,0xf6,0xc6,0xb0,0x38, - 0xb8,0x85,0x20,0x39,0xdf,0xe3,0x30,0x3a,0x8f,0x2c,0xa0,0x3b,0xc8,0xff,0xb0,0x3c, - 0x6f,0xe,0xa0,0x3d,0xc4,0x91,0x30,0x3e,0x4e,0xf0,0xa0,0x3f,0x91,0xfe,0x30,0x40, - 0x2e,0xd2,0xa0,0x41,0x86,0xf8,0x30,0x42,0x17,0xef,0x20,0x43,0x51,0xc2,0x30,0x43, - 0xf7,0xd1,0x20,0x45,0x4d,0x53,0xb0,0x45,0xe0,0xed,0xa0,0x47,0x11,0x86,0x30,0x47, - 0xb7,0x95,0x20,0x48,0xfa,0xa2,0xb0,0x49,0x97,0x77,0x20,0x4a,0xda,0x84,0xb0,0x4b, - 0x80,0x93,0xa0,0x4c,0xba,0x66,0xb0,0x4d,0x60,0x75,0xa0,0x4e,0x9a,0x48,0xb0,0x4f, - 0x49,0x92,0x20,0x50,0x83,0x65,0x30,0x51,0x20,0x39,0xa0,0x52,0x63,0x47,0x30,0x53, - 0x0,0x1b,0xa0,0x54,0x43,0x29,0x30,0x54,0xe9,0x38,0x20,0x56,0x23,0xb,0x30,0x56, - 0xc9,0x1a,0x20,0x58,0x2,0xed,0x30,0x58,0xa8,0xfc,0x20,0x59,0xe2,0xcf,0x30,0x5a, - 0x88,0xde,0x20,0x5b,0xcb,0xeb,0xb0,0x5c,0x68,0xc0,0x20,0x5d,0xab,0xcd,0xb0,0x5e, - 0x48,0xa2,0x20,0x5f,0x8b,0xaf,0xb0,0x60,0x31,0xbe,0xa0,0x61,0x6b,0x91,0xb0,0x62, - 0x11,0xa0,0xa0,0x63,0x4b,0x73,0xb0,0x63,0xfa,0xbd,0x20,0x65,0x2b,0x55,0xb0,0x65, - 0xd1,0x64,0xa0,0x67,0x14,0x72,0x30,0x67,0xb1,0x46,0xa0,0x68,0xf4,0x54,0x30,0x69, - 0x9a,0x63,0x20,0x6a,0xd4,0x36,0x30,0x6b,0x7a,0x45,0x20,0x6c,0xb4,0x18,0x30,0x6d, - 0x5a,0x27,0x20,0x6e,0x93,0xfa,0x30,0x6f,0x3a,0x9,0x20,0x70,0x7d,0x16,0xb0,0x71, - 0x19,0xeb,0x20,0x72,0x5c,0xf8,0xb0,0x72,0xf9,0xcd,0x20,0x74,0x3c,0xda,0xb0,0x74, - 0xd9,0xaf,0x20,0x76,0x1c,0xbc,0xb0,0x76,0xc2,0xcb,0xa0,0x77,0xfc,0x9e,0xb0,0x78, - 0xab,0xe8,0x20,0x79,0xdc,0x80,0xb0,0x7a,0x82,0x8f,0xa0,0x7b,0xc5,0x9d,0x30,0x7c, - 0x62,0x71,0xa0,0x7d,0xa5,0x7f,0x30,0x7e,0x4b,0x8e,0x20,0x7f,0x85,0x61,0x30,0x0, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0xff,0xff,0xd4,0x4c,0x0,0x0,0xff,0xff,0xe3,0xe0,0x1,0x4,0xff,0xff,0xd5,0xd0, - 0x0,0x9,0x4c,0x4d,0x54,0x0,0x42,0x52,0x53,0x54,0x0,0x42,0x52,0x54,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0, - 0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x83,0x0,0x0,0x0,0x3,0x0,0x0,0x0, - 0xd,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x96,0xaa,0x72, - 0xb4,0xff,0xff,0xff,0xff,0xb8,0xf,0x49,0xe0,0xff,0xff,0xff,0xff,0xb8,0xfd,0x40, - 0xa0,0xff,0xff,0xff,0xff,0xb9,0xf1,0x34,0x30,0xff,0xff,0xff,0xff,0xba,0xde,0x74, - 0x20,0xff,0xff,0xff,0xff,0xda,0x38,0xae,0x30,0xff,0xff,0xff,0xff,0xda,0xeb,0xfa, - 0x30,0xff,0xff,0xff,0xff,0xdc,0x19,0xe1,0xb0,0xff,0xff,0xff,0xff,0xdc,0xb9,0x59, - 0x20,0xff,0xff,0xff,0xff,0xdd,0xfb,0x15,0x30,0xff,0xff,0xff,0xff,0xde,0x9b,0xde, - 0x20,0xff,0xff,0xff,0xff,0xdf,0xdd,0x9a,0x30,0xff,0xff,0xff,0xff,0xe0,0x54,0x33, - 0x20,0xff,0xff,0xff,0xff,0xf4,0x5a,0x9,0x30,0xff,0xff,0xff,0xff,0xf5,0x5,0x5e, - 0x20,0xff,0xff,0xff,0xff,0xf6,0xc0,0x64,0x30,0xff,0xff,0xff,0xff,0xf7,0xe,0x1e, - 0xa0,0xff,0xff,0xff,0xff,0xf8,0x51,0x2c,0x30,0xff,0xff,0xff,0xff,0xf8,0xc7,0xc5, - 0x20,0xff,0xff,0xff,0xff,0xfa,0xa,0xd2,0xb0,0xff,0xff,0xff,0xff,0xfa,0xa8,0xf8, - 0xa0,0xff,0xff,0xff,0xff,0xfb,0xec,0x6,0x30,0xff,0xff,0xff,0xff,0xfc,0x8b,0x7d, - 0xa0,0x0,0x0,0x0,0x0,0x1d,0xc9,0x8e,0x30,0x0,0x0,0x0,0x0,0x1e,0x78,0xd7, - 0xa0,0x0,0x0,0x0,0x0,0x1f,0xa0,0x35,0xb0,0x0,0x0,0x0,0x0,0x20,0x33,0xcf, - 0xa0,0x0,0x0,0x0,0x0,0x21,0x81,0x69,0x30,0x0,0x0,0x0,0x0,0x22,0xb,0xc8, - 0xa0,0x0,0x0,0x0,0x0,0x23,0x58,0x10,0xb0,0x0,0x0,0x0,0x0,0x23,0xe2,0x70, - 0x20,0x0,0x0,0x0,0x0,0x25,0x37,0xf2,0xb0,0x0,0x0,0x0,0x0,0x25,0xd4,0xc7, - 0x20,0x0,0x0,0x0,0x0,0x27,0x21,0xf,0x30,0x0,0x0,0x0,0x0,0x27,0xbd,0xe3, - 0xa0,0x0,0x0,0x0,0x0,0x29,0x0,0xf1,0x30,0x0,0x0,0x0,0x0,0x29,0x94,0x8b, - 0x20,0x0,0x0,0x0,0x0,0x2a,0xea,0xd,0xb0,0x0,0x0,0x0,0x0,0x2b,0x6b,0x32, - 0xa0,0x0,0x0,0x0,0x0,0x2c,0xc0,0xb5,0x30,0x0,0x0,0x0,0x0,0x2d,0x66,0xc4, - 0x20,0x0,0x0,0x0,0x0,0x2e,0xa0,0x97,0x30,0x0,0x0,0x0,0x0,0x2f,0x46,0xa6, - 0x20,0x0,0x0,0x0,0x0,0x30,0x80,0x79,0x30,0x0,0x0,0x0,0x0,0x31,0x1d,0x4d, - 0xa0,0x0,0x0,0x0,0x0,0x32,0x57,0x20,0xb0,0x0,0x0,0x0,0x0,0x33,0x6,0x6a, - 0x20,0x0,0x0,0x0,0x0,0x34,0x38,0x54,0x30,0x0,0x0,0x0,0x0,0x34,0xf8,0xc1, - 0x20,0x0,0x0,0x0,0x0,0x36,0x20,0x1f,0x30,0x0,0x0,0x0,0x0,0x36,0xcf,0x68, - 0xa0,0x0,0x0,0x0,0x0,0x37,0xf6,0xc6,0xb0,0x0,0x0,0x0,0x0,0x38,0xb8,0x85, - 0x20,0x0,0x0,0x0,0x0,0x39,0xdf,0xe3,0x30,0x0,0x0,0x0,0x0,0x3a,0x8f,0x2c, - 0xa0,0x0,0x0,0x0,0x0,0x3b,0xc8,0xff,0xb0,0x0,0x0,0x0,0x0,0x3c,0x6f,0xe, - 0xa0,0x0,0x0,0x0,0x0,0x3d,0xc4,0x91,0x30,0x0,0x0,0x0,0x0,0x3e,0x4e,0xf0, - 0xa0,0x0,0x0,0x0,0x0,0x3f,0x91,0xfe,0x30,0x0,0x0,0x0,0x0,0x40,0x2e,0xd2, - 0xa0,0x0,0x0,0x0,0x0,0x41,0x86,0xf8,0x30,0x0,0x0,0x0,0x0,0x42,0x17,0xef, - 0x20,0x0,0x0,0x0,0x0,0x43,0x51,0xc2,0x30,0x0,0x0,0x0,0x0,0x43,0xf7,0xd1, - 0x20,0x0,0x0,0x0,0x0,0x45,0x4d,0x53,0xb0,0x0,0x0,0x0,0x0,0x45,0xe0,0xed, - 0xa0,0x0,0x0,0x0,0x0,0x47,0x11,0x86,0x30,0x0,0x0,0x0,0x0,0x47,0xb7,0x95, - 0x20,0x0,0x0,0x0,0x0,0x48,0xfa,0xa2,0xb0,0x0,0x0,0x0,0x0,0x49,0x97,0x77, - 0x20,0x0,0x0,0x0,0x0,0x4a,0xda,0x84,0xb0,0x0,0x0,0x0,0x0,0x4b,0x80,0x93, - 0xa0,0x0,0x0,0x0,0x0,0x4c,0xba,0x66,0xb0,0x0,0x0,0x0,0x0,0x4d,0x60,0x75, - 0xa0,0x0,0x0,0x0,0x0,0x4e,0x9a,0x48,0xb0,0x0,0x0,0x0,0x0,0x4f,0x49,0x92, - 0x20,0x0,0x0,0x0,0x0,0x50,0x83,0x65,0x30,0x0,0x0,0x0,0x0,0x51,0x20,0x39, - 0xa0,0x0,0x0,0x0,0x0,0x52,0x63,0x47,0x30,0x0,0x0,0x0,0x0,0x53,0x0,0x1b, - 0xa0,0x0,0x0,0x0,0x0,0x54,0x43,0x29,0x30,0x0,0x0,0x0,0x0,0x54,0xe9,0x38, - 0x20,0x0,0x0,0x0,0x0,0x56,0x23,0xb,0x30,0x0,0x0,0x0,0x0,0x56,0xc9,0x1a, - 0x20,0x0,0x0,0x0,0x0,0x58,0x2,0xed,0x30,0x0,0x0,0x0,0x0,0x58,0xa8,0xfc, - 0x20,0x0,0x0,0x0,0x0,0x59,0xe2,0xcf,0x30,0x0,0x0,0x0,0x0,0x5a,0x88,0xde, - 0x20,0x0,0x0,0x0,0x0,0x5b,0xcb,0xeb,0xb0,0x0,0x0,0x0,0x0,0x5c,0x68,0xc0, - 0x20,0x0,0x0,0x0,0x0,0x5d,0xab,0xcd,0xb0,0x0,0x0,0x0,0x0,0x5e,0x48,0xa2, - 0x20,0x0,0x0,0x0,0x0,0x5f,0x8b,0xaf,0xb0,0x0,0x0,0x0,0x0,0x60,0x31,0xbe, - 0xa0,0x0,0x0,0x0,0x0,0x61,0x6b,0x91,0xb0,0x0,0x0,0x0,0x0,0x62,0x11,0xa0, - 0xa0,0x0,0x0,0x0,0x0,0x63,0x4b,0x73,0xb0,0x0,0x0,0x0,0x0,0x63,0xfa,0xbd, - 0x20,0x0,0x0,0x0,0x0,0x65,0x2b,0x55,0xb0,0x0,0x0,0x0,0x0,0x65,0xd1,0x64, - 0xa0,0x0,0x0,0x0,0x0,0x67,0x14,0x72,0x30,0x0,0x0,0x0,0x0,0x67,0xb1,0x46, - 0xa0,0x0,0x0,0x0,0x0,0x68,0xf4,0x54,0x30,0x0,0x0,0x0,0x0,0x69,0x9a,0x63, - 0x20,0x0,0x0,0x0,0x0,0x6a,0xd4,0x36,0x30,0x0,0x0,0x0,0x0,0x6b,0x7a,0x45, - 0x20,0x0,0x0,0x0,0x0,0x6c,0xb4,0x18,0x30,0x0,0x0,0x0,0x0,0x6d,0x5a,0x27, - 0x20,0x0,0x0,0x0,0x0,0x6e,0x93,0xfa,0x30,0x0,0x0,0x0,0x0,0x6f,0x3a,0x9, - 0x20,0x0,0x0,0x0,0x0,0x70,0x7d,0x16,0xb0,0x0,0x0,0x0,0x0,0x71,0x19,0xeb, - 0x20,0x0,0x0,0x0,0x0,0x72,0x5c,0xf8,0xb0,0x0,0x0,0x0,0x0,0x72,0xf9,0xcd, - 0x20,0x0,0x0,0x0,0x0,0x74,0x3c,0xda,0xb0,0x0,0x0,0x0,0x0,0x74,0xd9,0xaf, - 0x20,0x0,0x0,0x0,0x0,0x76,0x1c,0xbc,0xb0,0x0,0x0,0x0,0x0,0x76,0xc2,0xcb, - 0xa0,0x0,0x0,0x0,0x0,0x77,0xfc,0x9e,0xb0,0x0,0x0,0x0,0x0,0x78,0xab,0xe8, - 0x20,0x0,0x0,0x0,0x0,0x79,0xdc,0x80,0xb0,0x0,0x0,0x0,0x0,0x7a,0x82,0x8f, - 0xa0,0x0,0x0,0x0,0x0,0x7b,0xc5,0x9d,0x30,0x0,0x0,0x0,0x0,0x7c,0x62,0x71, - 0xa0,0x0,0x0,0x0,0x0,0x7d,0xa5,0x7f,0x30,0x0,0x0,0x0,0x0,0x7e,0x4b,0x8e, - 0x20,0x0,0x0,0x0,0x0,0x7f,0x85,0x61,0x30,0x0,0x0,0x0,0x0,0x80,0x2b,0x70, - 0x20,0x0,0x0,0x0,0x0,0x81,0x65,0x43,0x30,0x0,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0xff,0xff,0xd4,0x4c, - 0x0,0x0,0xff,0xff,0xe3,0xe0,0x1,0x4,0xff,0xff,0xd5,0xd0,0x0,0x9,0x4c,0x4d, - 0x54,0x0,0x42,0x52,0x53,0x54,0x0,0x42,0x52,0x54,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xa,0x42,0x52,0x54,0x33,0x42,0x52,0x53,0x54,0x2c,0x4d,0x31,0x30,0x2e,0x33, - 0x2e,0x30,0x2f,0x30,0x2c,0x4d,0x32,0x2e,0x33,0x2e,0x30,0x2f,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Brazil/West - 0x0,0x0,0x2,0x68, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, + 0x0,0x55,0x54,0x43,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0, + 0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0, + 0x0,0x0,0x4,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x55,0x54,0x43,0x0,0x0,0x0,0xa,0x55,0x54,0x43,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Etc/GMT0 + 0x0,0x0,0x0,0x7f, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x20,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0x96, - 0xaa,0x7f,0x44,0xb8,0xf,0x57,0xf0,0xb8,0xfd,0x4e,0xb0,0xb9,0xf1,0x42,0x40,0xba, - 0xde,0x82,0x30,0xda,0x38,0xbc,0x40,0xda,0xec,0x8,0x40,0xdc,0x19,0xef,0xc0,0xdc, - 0xb9,0x67,0x30,0xdd,0xfb,0x23,0x40,0xde,0x9b,0xec,0x30,0xdf,0xdd,0xa8,0x40,0xe0, - 0x54,0x41,0x30,0xf4,0x98,0xd,0xc0,0xf5,0x5,0x6c,0x30,0xf6,0xc0,0x72,0x40,0xf7, - 0xe,0x2c,0xb0,0xf8,0x51,0x3a,0x40,0xf8,0xc7,0xd3,0x30,0xfa,0xa,0xe0,0xc0,0xfa, - 0xa9,0x6,0xb0,0xfb,0xec,0x14,0x40,0xfc,0x8b,0x8b,0xb0,0x1d,0xc9,0x9c,0x40,0x1e, - 0x78,0xe5,0xb0,0x1f,0xa0,0x43,0xc0,0x20,0x33,0xdd,0xb0,0x21,0x81,0x77,0x40,0x22, - 0xb,0xd6,0xb0,0x2c,0xc0,0xc3,0x40,0x2d,0x66,0xd2,0x30,0x0,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0xc7,0xbc,0x0, - 0x0,0xff,0xff,0xd5,0xd0,0x1,0x4,0xff,0xff,0xc7,0xc0,0x0,0x9,0x4c,0x4d,0x54, - 0x0,0x41,0x4d,0x53,0x54,0x0,0x41,0x4d,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x20,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xd,0xf8,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x96,0xaa,0x7f,0x44,0xff,0xff,0xff,0xff, - 0xb8,0xf,0x57,0xf0,0xff,0xff,0xff,0xff,0xb8,0xfd,0x4e,0xb0,0xff,0xff,0xff,0xff, - 0xb9,0xf1,0x42,0x40,0xff,0xff,0xff,0xff,0xba,0xde,0x82,0x30,0xff,0xff,0xff,0xff, - 0xda,0x38,0xbc,0x40,0xff,0xff,0xff,0xff,0xda,0xec,0x8,0x40,0xff,0xff,0xff,0xff, - 0xdc,0x19,0xef,0xc0,0xff,0xff,0xff,0xff,0xdc,0xb9,0x67,0x30,0xff,0xff,0xff,0xff, - 0xdd,0xfb,0x23,0x40,0xff,0xff,0xff,0xff,0xde,0x9b,0xec,0x30,0xff,0xff,0xff,0xff, - 0xdf,0xdd,0xa8,0x40,0xff,0xff,0xff,0xff,0xe0,0x54,0x41,0x30,0xff,0xff,0xff,0xff, - 0xf4,0x98,0xd,0xc0,0xff,0xff,0xff,0xff,0xf5,0x5,0x6c,0x30,0xff,0xff,0xff,0xff, - 0xf6,0xc0,0x72,0x40,0xff,0xff,0xff,0xff,0xf7,0xe,0x2c,0xb0,0xff,0xff,0xff,0xff, - 0xf8,0x51,0x3a,0x40,0xff,0xff,0xff,0xff,0xf8,0xc7,0xd3,0x30,0xff,0xff,0xff,0xff, - 0xfa,0xa,0xe0,0xc0,0xff,0xff,0xff,0xff,0xfa,0xa9,0x6,0xb0,0xff,0xff,0xff,0xff, - 0xfb,0xec,0x14,0x40,0xff,0xff,0xff,0xff,0xfc,0x8b,0x8b,0xb0,0x0,0x0,0x0,0x0, - 0x1d,0xc9,0x9c,0x40,0x0,0x0,0x0,0x0,0x1e,0x78,0xe5,0xb0,0x0,0x0,0x0,0x0, - 0x1f,0xa0,0x43,0xc0,0x0,0x0,0x0,0x0,0x20,0x33,0xdd,0xb0,0x0,0x0,0x0,0x0, - 0x21,0x81,0x77,0x40,0x0,0x0,0x0,0x0,0x22,0xb,0xd6,0xb0,0x0,0x0,0x0,0x0, - 0x2c,0xc0,0xc3,0x40,0x0,0x0,0x0,0x0,0x2d,0x66,0xd2,0x30,0x0,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0xc7,0xbc, - 0x0,0x0,0xff,0xff,0xd5,0xd0,0x1,0x4,0xff,0xff,0xc7,0xc0,0x0,0x9,0x4c,0x4d, - 0x54,0x0,0x41,0x4d,0x53,0x54,0x0,0x41,0x4d,0x54,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xa,0x41,0x4d,0x54,0x34,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Brazil/DeNoronha - 0x0,0x0,0x2,0xd8, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, + 0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0, + 0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0, + 0x0,0x0,0x4,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0xa,0x47,0x4d,0x54,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Etc/UCT + 0x0,0x0,0x0,0x7f, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x28,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0x96, - 0xaa,0x65,0x64,0xb8,0xf,0x3b,0xd0,0xb8,0xfd,0x32,0x90,0xb9,0xf1,0x26,0x20,0xba, - 0xde,0x66,0x10,0xda,0x38,0xa0,0x20,0xda,0xeb,0xec,0x20,0xdc,0x19,0xd3,0xa0,0xdc, - 0xb9,0x4b,0x10,0xdd,0xfb,0x7,0x20,0xde,0x9b,0xd0,0x10,0xdf,0xdd,0x8c,0x20,0xe0, - 0x54,0x25,0x10,0xf4,0x97,0xf1,0xa0,0xf5,0x5,0x50,0x10,0xf6,0xc0,0x56,0x20,0xf7, - 0xe,0x10,0x90,0xf8,0x51,0x1e,0x20,0xf8,0xc7,0xb7,0x10,0xfa,0xa,0xc4,0xa0,0xfa, - 0xa8,0xea,0x90,0xfb,0xeb,0xf8,0x20,0xfc,0x8b,0x6f,0x90,0x1d,0xc9,0x80,0x20,0x1e, - 0x78,0xc9,0x90,0x1f,0xa0,0x27,0xa0,0x20,0x33,0xc1,0x90,0x21,0x81,0x5b,0x20,0x22, - 0xb,0xba,0x90,0x23,0x58,0x2,0xa0,0x23,0xe2,0x62,0x10,0x25,0x37,0xe4,0xa0,0x25, - 0xd4,0xb9,0x10,0x37,0xf6,0xb8,0xa0,0x38,0xb8,0x77,0x10,0x39,0xdf,0xd5,0x20,0x39, - 0xe9,0x1,0x90,0x3b,0xc8,0xf1,0xa0,0x3c,0x6f,0x0,0x90,0x0,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0xff,0xff,0xe1,0x9c,0x0,0x0,0xff,0xff,0xf1,0xf0,0x1,0x4,0xff, - 0xff,0xe3,0xe0,0x0,0x9,0x4c,0x4d,0x54,0x0,0x46,0x4e,0x53,0x54,0x0,0x46,0x4e, - 0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3, - 0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x28,0x0,0x0,0x0,0x3, - 0x0,0x0,0x0,0xd,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff, - 0x96,0xaa,0x65,0x64,0xff,0xff,0xff,0xff,0xb8,0xf,0x3b,0xd0,0xff,0xff,0xff,0xff, - 0xb8,0xfd,0x32,0x90,0xff,0xff,0xff,0xff,0xb9,0xf1,0x26,0x20,0xff,0xff,0xff,0xff, - 0xba,0xde,0x66,0x10,0xff,0xff,0xff,0xff,0xda,0x38,0xa0,0x20,0xff,0xff,0xff,0xff, - 0xda,0xeb,0xec,0x20,0xff,0xff,0xff,0xff,0xdc,0x19,0xd3,0xa0,0xff,0xff,0xff,0xff, - 0xdc,0xb9,0x4b,0x10,0xff,0xff,0xff,0xff,0xdd,0xfb,0x7,0x20,0xff,0xff,0xff,0xff, - 0xde,0x9b,0xd0,0x10,0xff,0xff,0xff,0xff,0xdf,0xdd,0x8c,0x20,0xff,0xff,0xff,0xff, - 0xe0,0x54,0x25,0x10,0xff,0xff,0xff,0xff,0xf4,0x97,0xf1,0xa0,0xff,0xff,0xff,0xff, - 0xf5,0x5,0x50,0x10,0xff,0xff,0xff,0xff,0xf6,0xc0,0x56,0x20,0xff,0xff,0xff,0xff, - 0xf7,0xe,0x10,0x90,0xff,0xff,0xff,0xff,0xf8,0x51,0x1e,0x20,0xff,0xff,0xff,0xff, - 0xf8,0xc7,0xb7,0x10,0xff,0xff,0xff,0xff,0xfa,0xa,0xc4,0xa0,0xff,0xff,0xff,0xff, - 0xfa,0xa8,0xea,0x90,0xff,0xff,0xff,0xff,0xfb,0xeb,0xf8,0x20,0xff,0xff,0xff,0xff, - 0xfc,0x8b,0x6f,0x90,0x0,0x0,0x0,0x0,0x1d,0xc9,0x80,0x20,0x0,0x0,0x0,0x0, - 0x1e,0x78,0xc9,0x90,0x0,0x0,0x0,0x0,0x1f,0xa0,0x27,0xa0,0x0,0x0,0x0,0x0, - 0x20,0x33,0xc1,0x90,0x0,0x0,0x0,0x0,0x21,0x81,0x5b,0x20,0x0,0x0,0x0,0x0, - 0x22,0xb,0xba,0x90,0x0,0x0,0x0,0x0,0x23,0x58,0x2,0xa0,0x0,0x0,0x0,0x0, - 0x23,0xe2,0x62,0x10,0x0,0x0,0x0,0x0,0x25,0x37,0xe4,0xa0,0x0,0x0,0x0,0x0, - 0x25,0xd4,0xb9,0x10,0x0,0x0,0x0,0x0,0x37,0xf6,0xb8,0xa0,0x0,0x0,0x0,0x0, - 0x38,0xb8,0x77,0x10,0x0,0x0,0x0,0x0,0x39,0xdf,0xd5,0x20,0x0,0x0,0x0,0x0, - 0x39,0xe9,0x1,0x90,0x0,0x0,0x0,0x0,0x3b,0xc8,0xf1,0xa0,0x0,0x0,0x0,0x0, - 0x3c,0x6f,0x0,0x90,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0xe1,0x9c, - 0x0,0x0,0xff,0xff,0xf1,0xf0,0x1,0x4,0xff,0xff,0xe3,0xe0,0x0,0x9,0x4c,0x4d, - 0x54,0x0,0x46,0x4e,0x53,0x54,0x0,0x46,0x4e,0x54,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xa,0x46,0x4e,0x54,0x32,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Mexico/General - 0x0,0x0,0x6,0x52, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, + 0x0,0x55,0x43,0x54,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0, + 0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0, + 0x0,0x0,0x4,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x55,0x43,0x54,0x0,0x0,0x0,0xa,0x55,0x43,0x54,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Etc/GMT-0 + 0x0,0x0,0x0,0x7f, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x63,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0xa5, - 0xb6,0xe8,0x70,0xaf,0xf2,0x6e,0xe0,0xb6,0x66,0x56,0x60,0xb7,0x43,0xd2,0x60,0xb8, - 0xc,0x36,0x60,0xb8,0xfd,0x86,0xf0,0xc5,0xde,0xb0,0x60,0xc6,0x97,0x34,0x50,0xc9, - 0x55,0xf1,0xe0,0xc9,0xea,0xdd,0x50,0xcf,0x2,0xc6,0xe0,0xcf,0xb7,0x56,0x50,0xda, - 0x99,0x15,0xe0,0xdb,0x76,0x83,0xd0,0x31,0x67,0x76,0x0,0x32,0x73,0x8,0x70,0x33, - 0x47,0x58,0x0,0x34,0x52,0xea,0x70,0x35,0x27,0x3a,0x0,0x36,0x32,0xcc,0x70,0x37, - 0x7,0x1c,0x0,0x38,0x1b,0xe8,0xf0,0x38,0xe6,0xfe,0x0,0x39,0xfb,0xca,0xf0,0x3a, - 0xf5,0x4,0x80,0x3b,0xb6,0xc2,0xf0,0x3c,0xaf,0xfc,0x80,0x3d,0xbb,0x8e,0xf0,0x3e, - 0x8f,0xde,0x80,0x3f,0x9b,0x70,0xf0,0x40,0x6f,0xc0,0x80,0x41,0x84,0x8d,0x70,0x42, - 0x4f,0xa2,0x80,0x43,0x64,0x6f,0x70,0x44,0x2f,0x84,0x80,0x45,0x44,0x51,0x70,0x46, - 0xf,0x66,0x80,0x47,0x24,0x33,0x70,0x47,0xf8,0x83,0x0,0x49,0x4,0x15,0x70,0x49, - 0xd8,0x65,0x0,0x4a,0xe3,0xf7,0x70,0x4b,0xb8,0x47,0x0,0x4c,0xcd,0x13,0xf0,0x4d, - 0x98,0x29,0x0,0x4e,0xac,0xf5,0xf0,0x4f,0x78,0xb,0x0,0x50,0x8c,0xd7,0xf0,0x51, - 0x61,0x27,0x80,0x52,0x6c,0xb9,0xf0,0x53,0x41,0x9,0x80,0x54,0x4c,0x9b,0xf0,0x55, - 0x20,0xeb,0x80,0x56,0x2c,0x7d,0xf0,0x57,0x0,0xcd,0x80,0x58,0x15,0x9a,0x70,0x58, - 0xe0,0xaf,0x80,0x59,0xf5,0x7c,0x70,0x5a,0xc0,0x91,0x80,0x5b,0xd5,0x5e,0x70,0x5c, - 0xa9,0xae,0x0,0x5d,0xb5,0x40,0x70,0x5e,0x89,0x90,0x0,0x5f,0x95,0x22,0x70,0x60, - 0x69,0x72,0x0,0x61,0x7e,0x3e,0xf0,0x62,0x49,0x54,0x0,0x63,0x5e,0x20,0xf0,0x64, - 0x29,0x36,0x0,0x65,0x3e,0x2,0xf0,0x66,0x12,0x52,0x80,0x67,0x1d,0xe4,0xf0,0x67, - 0xf2,0x34,0x80,0x68,0xfd,0xc6,0xf0,0x69,0xd2,0x16,0x80,0x6a,0xdd,0xa8,0xf0,0x6b, - 0xb1,0xf8,0x80,0x6c,0xc6,0xc5,0x70,0x6d,0x91,0xda,0x80,0x6e,0xa6,0xa7,0x70,0x6f, - 0x71,0xbc,0x80,0x70,0x86,0x89,0x70,0x71,0x5a,0xd9,0x0,0x72,0x66,0x6b,0x70,0x73, - 0x3a,0xbb,0x0,0x74,0x46,0x4d,0x70,0x75,0x1a,0x9d,0x0,0x76,0x2f,0x69,0xf0,0x76, - 0xfa,0x7f,0x0,0x78,0xf,0x4b,0xf0,0x78,0xda,0x61,0x0,0x79,0xef,0x2d,0xf0,0x7a, - 0xba,0x43,0x0,0x7b,0xcf,0xf,0xf0,0x7c,0xa3,0x5f,0x80,0x7d,0xae,0xf1,0xf0,0x7e, - 0x83,0x41,0x80,0x7f,0x8e,0xd3,0xf0,0x0,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x2, - 0x3,0x2,0x4,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0xff,0xff,0xa3,0xc,0x0,0x0, - 0xff,0xff,0x9d,0x90,0x0,0x4,0xff,0xff,0xab,0xa0,0x0,0x8,0xff,0xff,0xb9,0xb0, - 0x1,0xc,0xff,0xff,0xb9,0xb0,0x1,0x10,0x4c,0x4d,0x54,0x0,0x4d,0x53,0x54,0x0, - 0x43,0x53,0x54,0x0,0x43,0x44,0x54,0x0,0x43,0x57,0x54,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0, - 0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x63,0x0,0x0,0x0,0x5,0x0,0x0, - 0x0,0x14,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xa5,0xb6, - 0xe8,0x70,0xff,0xff,0xff,0xff,0xaf,0xf2,0x6e,0xe0,0xff,0xff,0xff,0xff,0xb6,0x66, - 0x56,0x60,0xff,0xff,0xff,0xff,0xb7,0x43,0xd2,0x60,0xff,0xff,0xff,0xff,0xb8,0xc, - 0x36,0x60,0xff,0xff,0xff,0xff,0xb8,0xfd,0x86,0xf0,0xff,0xff,0xff,0xff,0xc5,0xde, - 0xb0,0x60,0xff,0xff,0xff,0xff,0xc6,0x97,0x34,0x50,0xff,0xff,0xff,0xff,0xc9,0x55, - 0xf1,0xe0,0xff,0xff,0xff,0xff,0xc9,0xea,0xdd,0x50,0xff,0xff,0xff,0xff,0xcf,0x2, - 0xc6,0xe0,0xff,0xff,0xff,0xff,0xcf,0xb7,0x56,0x50,0xff,0xff,0xff,0xff,0xda,0x99, - 0x15,0xe0,0xff,0xff,0xff,0xff,0xdb,0x76,0x83,0xd0,0x0,0x0,0x0,0x0,0x31,0x67, - 0x76,0x0,0x0,0x0,0x0,0x0,0x32,0x73,0x8,0x70,0x0,0x0,0x0,0x0,0x33,0x47, - 0x58,0x0,0x0,0x0,0x0,0x0,0x34,0x52,0xea,0x70,0x0,0x0,0x0,0x0,0x35,0x27, - 0x3a,0x0,0x0,0x0,0x0,0x0,0x36,0x32,0xcc,0x70,0x0,0x0,0x0,0x0,0x37,0x7, - 0x1c,0x0,0x0,0x0,0x0,0x0,0x38,0x1b,0xe8,0xf0,0x0,0x0,0x0,0x0,0x38,0xe6, - 0xfe,0x0,0x0,0x0,0x0,0x0,0x39,0xfb,0xca,0xf0,0x0,0x0,0x0,0x0,0x3a,0xf5, - 0x4,0x80,0x0,0x0,0x0,0x0,0x3b,0xb6,0xc2,0xf0,0x0,0x0,0x0,0x0,0x3c,0xaf, - 0xfc,0x80,0x0,0x0,0x0,0x0,0x3d,0xbb,0x8e,0xf0,0x0,0x0,0x0,0x0,0x3e,0x8f, - 0xde,0x80,0x0,0x0,0x0,0x0,0x3f,0x9b,0x70,0xf0,0x0,0x0,0x0,0x0,0x40,0x6f, - 0xc0,0x80,0x0,0x0,0x0,0x0,0x41,0x84,0x8d,0x70,0x0,0x0,0x0,0x0,0x42,0x4f, - 0xa2,0x80,0x0,0x0,0x0,0x0,0x43,0x64,0x6f,0x70,0x0,0x0,0x0,0x0,0x44,0x2f, - 0x84,0x80,0x0,0x0,0x0,0x0,0x45,0x44,0x51,0x70,0x0,0x0,0x0,0x0,0x46,0xf, - 0x66,0x80,0x0,0x0,0x0,0x0,0x47,0x24,0x33,0x70,0x0,0x0,0x0,0x0,0x47,0xf8, - 0x83,0x0,0x0,0x0,0x0,0x0,0x49,0x4,0x15,0x70,0x0,0x0,0x0,0x0,0x49,0xd8, - 0x65,0x0,0x0,0x0,0x0,0x0,0x4a,0xe3,0xf7,0x70,0x0,0x0,0x0,0x0,0x4b,0xb8, - 0x47,0x0,0x0,0x0,0x0,0x0,0x4c,0xcd,0x13,0xf0,0x0,0x0,0x0,0x0,0x4d,0x98, - 0x29,0x0,0x0,0x0,0x0,0x0,0x4e,0xac,0xf5,0xf0,0x0,0x0,0x0,0x0,0x4f,0x78, - 0xb,0x0,0x0,0x0,0x0,0x0,0x50,0x8c,0xd7,0xf0,0x0,0x0,0x0,0x0,0x51,0x61, - 0x27,0x80,0x0,0x0,0x0,0x0,0x52,0x6c,0xb9,0xf0,0x0,0x0,0x0,0x0,0x53,0x41, - 0x9,0x80,0x0,0x0,0x0,0x0,0x54,0x4c,0x9b,0xf0,0x0,0x0,0x0,0x0,0x55,0x20, - 0xeb,0x80,0x0,0x0,0x0,0x0,0x56,0x2c,0x7d,0xf0,0x0,0x0,0x0,0x0,0x57,0x0, - 0xcd,0x80,0x0,0x0,0x0,0x0,0x58,0x15,0x9a,0x70,0x0,0x0,0x0,0x0,0x58,0xe0, - 0xaf,0x80,0x0,0x0,0x0,0x0,0x59,0xf5,0x7c,0x70,0x0,0x0,0x0,0x0,0x5a,0xc0, - 0x91,0x80,0x0,0x0,0x0,0x0,0x5b,0xd5,0x5e,0x70,0x0,0x0,0x0,0x0,0x5c,0xa9, - 0xae,0x0,0x0,0x0,0x0,0x0,0x5d,0xb5,0x40,0x70,0x0,0x0,0x0,0x0,0x5e,0x89, - 0x90,0x0,0x0,0x0,0x0,0x0,0x5f,0x95,0x22,0x70,0x0,0x0,0x0,0x0,0x60,0x69, - 0x72,0x0,0x0,0x0,0x0,0x0,0x61,0x7e,0x3e,0xf0,0x0,0x0,0x0,0x0,0x62,0x49, - 0x54,0x0,0x0,0x0,0x0,0x0,0x63,0x5e,0x20,0xf0,0x0,0x0,0x0,0x0,0x64,0x29, - 0x36,0x0,0x0,0x0,0x0,0x0,0x65,0x3e,0x2,0xf0,0x0,0x0,0x0,0x0,0x66,0x12, - 0x52,0x80,0x0,0x0,0x0,0x0,0x67,0x1d,0xe4,0xf0,0x0,0x0,0x0,0x0,0x67,0xf2, - 0x34,0x80,0x0,0x0,0x0,0x0,0x68,0xfd,0xc6,0xf0,0x0,0x0,0x0,0x0,0x69,0xd2, - 0x16,0x80,0x0,0x0,0x0,0x0,0x6a,0xdd,0xa8,0xf0,0x0,0x0,0x0,0x0,0x6b,0xb1, - 0xf8,0x80,0x0,0x0,0x0,0x0,0x6c,0xc6,0xc5,0x70,0x0,0x0,0x0,0x0,0x6d,0x91, - 0xda,0x80,0x0,0x0,0x0,0x0,0x6e,0xa6,0xa7,0x70,0x0,0x0,0x0,0x0,0x6f,0x71, - 0xbc,0x80,0x0,0x0,0x0,0x0,0x70,0x86,0x89,0x70,0x0,0x0,0x0,0x0,0x71,0x5a, - 0xd9,0x0,0x0,0x0,0x0,0x0,0x72,0x66,0x6b,0x70,0x0,0x0,0x0,0x0,0x73,0x3a, - 0xbb,0x0,0x0,0x0,0x0,0x0,0x74,0x46,0x4d,0x70,0x0,0x0,0x0,0x0,0x75,0x1a, - 0x9d,0x0,0x0,0x0,0x0,0x0,0x76,0x2f,0x69,0xf0,0x0,0x0,0x0,0x0,0x76,0xfa, - 0x7f,0x0,0x0,0x0,0x0,0x0,0x78,0xf,0x4b,0xf0,0x0,0x0,0x0,0x0,0x78,0xda, - 0x61,0x0,0x0,0x0,0x0,0x0,0x79,0xef,0x2d,0xf0,0x0,0x0,0x0,0x0,0x7a,0xba, - 0x43,0x0,0x0,0x0,0x0,0x0,0x7b,0xcf,0xf,0xf0,0x0,0x0,0x0,0x0,0x7c,0xa3, - 0x5f,0x80,0x0,0x0,0x0,0x0,0x7d,0xae,0xf1,0xf0,0x0,0x0,0x0,0x0,0x7e,0x83, - 0x41,0x80,0x0,0x0,0x0,0x0,0x7f,0x8e,0xd3,0xf0,0x0,0x1,0x2,0x1,0x2,0x1, - 0x2,0x3,0x2,0x3,0x2,0x4,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0xff,0xff,0xa3, - 0xc,0x0,0x0,0xff,0xff,0x9d,0x90,0x0,0x4,0xff,0xff,0xab,0xa0,0x0,0x8,0xff, - 0xff,0xb9,0xb0,0x1,0xc,0xff,0xff,0xb9,0xb0,0x1,0x10,0x4c,0x4d,0x54,0x0,0x4d, - 0x53,0x54,0x0,0x43,0x53,0x54,0x0,0x43,0x44,0x54,0x0,0x43,0x57,0x54,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x43,0x53,0x54,0x36,0x43,0x44, - 0x54,0x2c,0x4d,0x34,0x2e,0x31,0x2e,0x30,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30, - 0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Mexico/BajaNorte - 0x0,0x0,0x9,0x34, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, + 0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0, + 0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0, + 0x0,0x0,0x4,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0xa,0x47,0x4d,0x54,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Etc/GMT-1 + 0x0,0x0,0x0,0x95, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x96,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x80,0x0,0x0,0x0,0xa5, - 0xb6,0xf6,0x80,0xa9,0x79,0x4f,0x70,0xaf,0xf2,0x7c,0xf0,0xb6,0x66,0x64,0x70,0xb7, - 0x1b,0x10,0x0,0xb8,0xa,0xf2,0xf0,0xcb,0xea,0x8d,0x80,0xd2,0x23,0xf4,0x70,0xd2, - 0x99,0xba,0x70,0xd7,0x1b,0x59,0x0,0xd8,0x91,0xb4,0xf0,0xe2,0x7e,0x4b,0x90,0xe3, - 0x49,0x52,0x90,0xe4,0x5e,0x2d,0x90,0xe5,0x29,0x34,0x90,0xe6,0x47,0x4a,0x10,0xe7, - 0x12,0x51,0x10,0xe8,0x27,0x2c,0x10,0xe8,0xf2,0x33,0x10,0xea,0x7,0xe,0x10,0xea, - 0xd2,0x15,0x10,0xeb,0xe6,0xf0,0x10,0xec,0xb1,0xf7,0x10,0xed,0xc6,0xd2,0x10,0xee, - 0x91,0xd9,0x10,0xb,0xe0,0xaf,0xa0,0xc,0xd9,0xcd,0x10,0xd,0xc0,0x91,0xa0,0xe, - 0xb9,0xaf,0x10,0xf,0xa9,0xae,0x20,0x10,0x99,0x91,0x10,0x11,0x89,0x90,0x20,0x12, - 0x79,0x73,0x10,0x13,0x69,0x72,0x20,0x14,0x59,0x55,0x10,0x15,0x49,0x54,0x20,0x16, - 0x39,0x37,0x10,0x17,0x29,0x36,0x20,0x18,0x22,0x53,0x90,0x19,0x9,0x18,0x20,0x1a, - 0x2,0x35,0x90,0x1a,0xf2,0x34,0xa0,0x1b,0xe2,0x17,0x90,0x1c,0xd2,0x16,0xa0,0x1d, - 0xc1,0xf9,0x90,0x1e,0xb1,0xf8,0xa0,0x1f,0xa1,0xdb,0x90,0x20,0x76,0x2b,0x20,0x21, - 0x81,0xbd,0x90,0x22,0x56,0xd,0x20,0x23,0x6a,0xda,0x10,0x24,0x35,0xef,0x20,0x25, - 0x4a,0xbc,0x10,0x26,0x15,0xd1,0x20,0x27,0x2a,0x9e,0x10,0x27,0xfe,0xed,0xa0,0x29, - 0xa,0x80,0x10,0x29,0xde,0xcf,0xa0,0x2a,0xea,0x62,0x10,0x2b,0xbe,0xb1,0xa0,0x2c, - 0xd3,0x7e,0x90,0x2d,0x9e,0x93,0xa0,0x2e,0xb3,0x60,0x90,0x2f,0x7e,0x75,0xa0,0x30, - 0x93,0x42,0x90,0x31,0x67,0x92,0x20,0x32,0x73,0x24,0x90,0x33,0x47,0x74,0x20,0x34, - 0x53,0x6,0x90,0x35,0x27,0x56,0x20,0x36,0x32,0xe8,0x90,0x37,0x7,0x38,0x20,0x38, - 0x1c,0x5,0x10,0x38,0xe7,0x1a,0x20,0x39,0xfb,0xe7,0x10,0x3a,0xc6,0xfc,0x20,0x3b, - 0xdb,0xc9,0x10,0x3c,0xb0,0x18,0xa0,0x3d,0xbb,0xab,0x10,0x3e,0x8f,0xfa,0xa0,0x3f, - 0x9b,0x8d,0x10,0x40,0x6f,0xdc,0xa0,0x41,0x84,0xa9,0x90,0x42,0x4f,0xbe,0xa0,0x43, - 0x64,0x8b,0x90,0x44,0x2f,0xa0,0xa0,0x45,0x44,0x6d,0x90,0x46,0xf,0x82,0xa0,0x47, - 0x24,0x4f,0x90,0x47,0xf8,0x9f,0x20,0x49,0x4,0x31,0x90,0x49,0xd8,0x81,0x20,0x4a, - 0xe4,0x13,0x90,0x4b,0x9c,0xb3,0xa0,0x4c,0xd6,0x6a,0x90,0x4d,0x7c,0x95,0xa0,0x4e, - 0xb6,0x4c,0x90,0x4f,0x5c,0x77,0xa0,0x50,0x96,0x2e,0x90,0x51,0x3c,0x59,0xa0,0x52, - 0x76,0x10,0x90,0x53,0x1c,0x3b,0xa0,0x54,0x55,0xf2,0x90,0x54,0xfc,0x1d,0xa0,0x56, - 0x35,0xd4,0x90,0x56,0xe5,0x3a,0x20,0x58,0x1e,0xf1,0x10,0x58,0xc5,0x1c,0x20,0x59, - 0xfe,0xd3,0x10,0x5a,0xa4,0xfe,0x20,0x5b,0xde,0xb5,0x10,0x5c,0x84,0xe0,0x20,0x5d, - 0xbe,0x97,0x10,0x5e,0x64,0xc2,0x20,0x5f,0x9e,0x79,0x10,0x60,0x4d,0xde,0xa0,0x61, - 0x87,0x95,0x90,0x62,0x2d,0xc0,0xa0,0x63,0x67,0x77,0x90,0x64,0xd,0xa2,0xa0,0x65, - 0x47,0x59,0x90,0x65,0xed,0x84,0xa0,0x67,0x27,0x3b,0x90,0x67,0xcd,0x66,0xa0,0x69, - 0x7,0x1d,0x90,0x69,0xad,0x48,0xa0,0x6a,0xe6,0xff,0x90,0x6b,0x96,0x65,0x20,0x6c, - 0xd0,0x1c,0x10,0x6d,0x76,0x47,0x20,0x6e,0xaf,0xfe,0x10,0x6f,0x56,0x29,0x20,0x70, - 0x8f,0xe0,0x10,0x71,0x36,0xb,0x20,0x72,0x6f,0xc2,0x10,0x73,0x15,0xed,0x20,0x74, - 0x4f,0xa4,0x10,0x74,0xff,0x9,0xa0,0x76,0x38,0xc0,0x90,0x76,0xde,0xeb,0xa0,0x78, - 0x18,0xa2,0x90,0x78,0xbe,0xcd,0xa0,0x79,0xf8,0x84,0x90,0x7a,0x9e,0xaf,0xa0,0x7b, - 0xd8,0x66,0x90,0x7c,0x7e,0x91,0xa0,0x7d,0xb8,0x48,0x90,0x7e,0x5e,0x73,0xa0,0x7f, - 0x98,0x2a,0x90,0x0,0x1,0x2,0x1,0x2,0x3,0x2,0x4,0x5,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0xff,0xff,0x92,0x4c,0x0,0x0,0xff, - 0xff,0x9d,0x90,0x0,0x4,0xff,0xff,0x8f,0x80,0x0,0x8,0xff,0xff,0x9d,0x90,0x1, - 0xc,0xff,0xff,0x9d,0x90,0x1,0x10,0xff,0xff,0x9d,0x90,0x1,0x14,0x4c,0x4d,0x54, - 0x0,0x4d,0x53,0x54,0x0,0x50,0x53,0x54,0x0,0x50,0x44,0x54,0x0,0x50,0x57,0x54, - 0x0,0x50,0x50,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, - 0x1,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x96,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0xf8,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xa5,0xb6,0xf6,0x80,0xff,0xff,0xff, - 0xff,0xa9,0x79,0x4f,0x70,0xff,0xff,0xff,0xff,0xaf,0xf2,0x7c,0xf0,0xff,0xff,0xff, - 0xff,0xb6,0x66,0x64,0x70,0xff,0xff,0xff,0xff,0xb7,0x1b,0x10,0x0,0xff,0xff,0xff, - 0xff,0xb8,0xa,0xf2,0xf0,0xff,0xff,0xff,0xff,0xcb,0xea,0x8d,0x80,0xff,0xff,0xff, - 0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x99,0xba,0x70,0xff,0xff,0xff, - 0xff,0xd7,0x1b,0x59,0x0,0xff,0xff,0xff,0xff,0xd8,0x91,0xb4,0xf0,0xff,0xff,0xff, - 0xff,0xe2,0x7e,0x4b,0x90,0xff,0xff,0xff,0xff,0xe3,0x49,0x52,0x90,0xff,0xff,0xff, - 0xff,0xe4,0x5e,0x2d,0x90,0xff,0xff,0xff,0xff,0xe5,0x29,0x34,0x90,0xff,0xff,0xff, - 0xff,0xe6,0x47,0x4a,0x10,0xff,0xff,0xff,0xff,0xe7,0x12,0x51,0x10,0xff,0xff,0xff, - 0xff,0xe8,0x27,0x2c,0x10,0xff,0xff,0xff,0xff,0xe8,0xf2,0x33,0x10,0xff,0xff,0xff, - 0xff,0xea,0x7,0xe,0x10,0xff,0xff,0xff,0xff,0xea,0xd2,0x15,0x10,0xff,0xff,0xff, - 0xff,0xeb,0xe6,0xf0,0x10,0xff,0xff,0xff,0xff,0xec,0xb1,0xf7,0x10,0xff,0xff,0xff, - 0xff,0xed,0xc6,0xd2,0x10,0xff,0xff,0xff,0xff,0xee,0x91,0xd9,0x10,0x0,0x0,0x0, - 0x0,0xb,0xe0,0xaf,0xa0,0x0,0x0,0x0,0x0,0xc,0xd9,0xcd,0x10,0x0,0x0,0x0, - 0x0,0xd,0xc0,0x91,0xa0,0x0,0x0,0x0,0x0,0xe,0xb9,0xaf,0x10,0x0,0x0,0x0, - 0x0,0xf,0xa9,0xae,0x20,0x0,0x0,0x0,0x0,0x10,0x99,0x91,0x10,0x0,0x0,0x0, - 0x0,0x11,0x89,0x90,0x20,0x0,0x0,0x0,0x0,0x12,0x79,0x73,0x10,0x0,0x0,0x0, - 0x0,0x13,0x69,0x72,0x20,0x0,0x0,0x0,0x0,0x14,0x59,0x55,0x10,0x0,0x0,0x0, - 0x0,0x15,0x49,0x54,0x20,0x0,0x0,0x0,0x0,0x16,0x39,0x37,0x10,0x0,0x0,0x0, - 0x0,0x17,0x29,0x36,0x20,0x0,0x0,0x0,0x0,0x18,0x22,0x53,0x90,0x0,0x0,0x0, - 0x0,0x19,0x9,0x18,0x20,0x0,0x0,0x0,0x0,0x1a,0x2,0x35,0x90,0x0,0x0,0x0, - 0x0,0x1a,0xf2,0x34,0xa0,0x0,0x0,0x0,0x0,0x1b,0xe2,0x17,0x90,0x0,0x0,0x0, - 0x0,0x1c,0xd2,0x16,0xa0,0x0,0x0,0x0,0x0,0x1d,0xc1,0xf9,0x90,0x0,0x0,0x0, - 0x0,0x1e,0xb1,0xf8,0xa0,0x0,0x0,0x0,0x0,0x1f,0xa1,0xdb,0x90,0x0,0x0,0x0, - 0x0,0x20,0x76,0x2b,0x20,0x0,0x0,0x0,0x0,0x21,0x81,0xbd,0x90,0x0,0x0,0x0, - 0x0,0x22,0x56,0xd,0x20,0x0,0x0,0x0,0x0,0x23,0x6a,0xda,0x10,0x0,0x0,0x0, - 0x0,0x24,0x35,0xef,0x20,0x0,0x0,0x0,0x0,0x25,0x4a,0xbc,0x10,0x0,0x0,0x0, - 0x0,0x26,0x15,0xd1,0x20,0x0,0x0,0x0,0x0,0x27,0x2a,0x9e,0x10,0x0,0x0,0x0, - 0x0,0x27,0xfe,0xed,0xa0,0x0,0x0,0x0,0x0,0x29,0xa,0x80,0x10,0x0,0x0,0x0, - 0x0,0x29,0xde,0xcf,0xa0,0x0,0x0,0x0,0x0,0x2a,0xea,0x62,0x10,0x0,0x0,0x0, - 0x0,0x2b,0xbe,0xb1,0xa0,0x0,0x0,0x0,0x0,0x2c,0xd3,0x7e,0x90,0x0,0x0,0x0, - 0x0,0x2d,0x9e,0x93,0xa0,0x0,0x0,0x0,0x0,0x2e,0xb3,0x60,0x90,0x0,0x0,0x0, - 0x0,0x2f,0x7e,0x75,0xa0,0x0,0x0,0x0,0x0,0x30,0x93,0x42,0x90,0x0,0x0,0x0, - 0x0,0x31,0x67,0x92,0x20,0x0,0x0,0x0,0x0,0x32,0x73,0x24,0x90,0x0,0x0,0x0, - 0x0,0x33,0x47,0x74,0x20,0x0,0x0,0x0,0x0,0x34,0x53,0x6,0x90,0x0,0x0,0x0, - 0x0,0x35,0x27,0x56,0x20,0x0,0x0,0x0,0x0,0x36,0x32,0xe8,0x90,0x0,0x0,0x0, - 0x0,0x37,0x7,0x38,0x20,0x0,0x0,0x0,0x0,0x38,0x1c,0x5,0x10,0x0,0x0,0x0, - 0x0,0x38,0xe7,0x1a,0x20,0x0,0x0,0x0,0x0,0x39,0xfb,0xe7,0x10,0x0,0x0,0x0, - 0x0,0x3a,0xc6,0xfc,0x20,0x0,0x0,0x0,0x0,0x3b,0xdb,0xc9,0x10,0x0,0x0,0x0, - 0x0,0x3c,0xb0,0x18,0xa0,0x0,0x0,0x0,0x0,0x3d,0xbb,0xab,0x10,0x0,0x0,0x0, - 0x0,0x3e,0x8f,0xfa,0xa0,0x0,0x0,0x0,0x0,0x3f,0x9b,0x8d,0x10,0x0,0x0,0x0, - 0x0,0x40,0x6f,0xdc,0xa0,0x0,0x0,0x0,0x0,0x41,0x84,0xa9,0x90,0x0,0x0,0x0, - 0x0,0x42,0x4f,0xbe,0xa0,0x0,0x0,0x0,0x0,0x43,0x64,0x8b,0x90,0x0,0x0,0x0, - 0x0,0x44,0x2f,0xa0,0xa0,0x0,0x0,0x0,0x0,0x45,0x44,0x6d,0x90,0x0,0x0,0x0, - 0x0,0x46,0xf,0x82,0xa0,0x0,0x0,0x0,0x0,0x47,0x24,0x4f,0x90,0x0,0x0,0x0, - 0x0,0x47,0xf8,0x9f,0x20,0x0,0x0,0x0,0x0,0x49,0x4,0x31,0x90,0x0,0x0,0x0, - 0x0,0x49,0xd8,0x81,0x20,0x0,0x0,0x0,0x0,0x4a,0xe4,0x13,0x90,0x0,0x0,0x0, - 0x0,0x4b,0x9c,0xb3,0xa0,0x0,0x0,0x0,0x0,0x4c,0xd6,0x6a,0x90,0x0,0x0,0x0, - 0x0,0x4d,0x7c,0x95,0xa0,0x0,0x0,0x0,0x0,0x4e,0xb6,0x4c,0x90,0x0,0x0,0x0, - 0x0,0x4f,0x5c,0x77,0xa0,0x0,0x0,0x0,0x0,0x50,0x96,0x2e,0x90,0x0,0x0,0x0, - 0x0,0x51,0x3c,0x59,0xa0,0x0,0x0,0x0,0x0,0x52,0x76,0x10,0x90,0x0,0x0,0x0, - 0x0,0x53,0x1c,0x3b,0xa0,0x0,0x0,0x0,0x0,0x54,0x55,0xf2,0x90,0x0,0x0,0x0, - 0x0,0x54,0xfc,0x1d,0xa0,0x0,0x0,0x0,0x0,0x56,0x35,0xd4,0x90,0x0,0x0,0x0, - 0x0,0x56,0xe5,0x3a,0x20,0x0,0x0,0x0,0x0,0x58,0x1e,0xf1,0x10,0x0,0x0,0x0, - 0x0,0x58,0xc5,0x1c,0x20,0x0,0x0,0x0,0x0,0x59,0xfe,0xd3,0x10,0x0,0x0,0x0, - 0x0,0x5a,0xa4,0xfe,0x20,0x0,0x0,0x0,0x0,0x5b,0xde,0xb5,0x10,0x0,0x0,0x0, - 0x0,0x5c,0x84,0xe0,0x20,0x0,0x0,0x0,0x0,0x5d,0xbe,0x97,0x10,0x0,0x0,0x0, - 0x0,0x5e,0x64,0xc2,0x20,0x0,0x0,0x0,0x0,0x5f,0x9e,0x79,0x10,0x0,0x0,0x0, - 0x0,0x60,0x4d,0xde,0xa0,0x0,0x0,0x0,0x0,0x61,0x87,0x95,0x90,0x0,0x0,0x0, - 0x0,0x62,0x2d,0xc0,0xa0,0x0,0x0,0x0,0x0,0x63,0x67,0x77,0x90,0x0,0x0,0x0, - 0x0,0x64,0xd,0xa2,0xa0,0x0,0x0,0x0,0x0,0x65,0x47,0x59,0x90,0x0,0x0,0x0, - 0x0,0x65,0xed,0x84,0xa0,0x0,0x0,0x0,0x0,0x67,0x27,0x3b,0x90,0x0,0x0,0x0, - 0x0,0x67,0xcd,0x66,0xa0,0x0,0x0,0x0,0x0,0x69,0x7,0x1d,0x90,0x0,0x0,0x0, - 0x0,0x69,0xad,0x48,0xa0,0x0,0x0,0x0,0x0,0x6a,0xe6,0xff,0x90,0x0,0x0,0x0, - 0x0,0x6b,0x96,0x65,0x20,0x0,0x0,0x0,0x0,0x6c,0xd0,0x1c,0x10,0x0,0x0,0x0, - 0x0,0x6d,0x76,0x47,0x20,0x0,0x0,0x0,0x0,0x6e,0xaf,0xfe,0x10,0x0,0x0,0x0, - 0x0,0x6f,0x56,0x29,0x20,0x0,0x0,0x0,0x0,0x70,0x8f,0xe0,0x10,0x0,0x0,0x0, - 0x0,0x71,0x36,0xb,0x20,0x0,0x0,0x0,0x0,0x72,0x6f,0xc2,0x10,0x0,0x0,0x0, - 0x0,0x73,0x15,0xed,0x20,0x0,0x0,0x0,0x0,0x74,0x4f,0xa4,0x10,0x0,0x0,0x0, - 0x0,0x74,0xff,0x9,0xa0,0x0,0x0,0x0,0x0,0x76,0x38,0xc0,0x90,0x0,0x0,0x0, - 0x0,0x76,0xde,0xeb,0xa0,0x0,0x0,0x0,0x0,0x78,0x18,0xa2,0x90,0x0,0x0,0x0, - 0x0,0x78,0xbe,0xcd,0xa0,0x0,0x0,0x0,0x0,0x79,0xf8,0x84,0x90,0x0,0x0,0x0, - 0x0,0x7a,0x9e,0xaf,0xa0,0x0,0x0,0x0,0x0,0x7b,0xd8,0x66,0x90,0x0,0x0,0x0, - 0x0,0x7c,0x7e,0x91,0xa0,0x0,0x0,0x0,0x0,0x7d,0xb8,0x48,0x90,0x0,0x0,0x0, - 0x0,0x7e,0x5e,0x73,0xa0,0x0,0x0,0x0,0x0,0x7f,0x98,0x2a,0x90,0x0,0x1,0x2, - 0x1,0x2,0x3,0x2,0x4,0x5,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0xff,0xff,0x92,0x4c,0x0,0x0,0xff,0xff,0x9d,0x90,0x0,0x4,0xff, - 0xff,0x8f,0x80,0x0,0x8,0xff,0xff,0x9d,0x90,0x1,0xc,0xff,0xff,0x9d,0x90,0x1, - 0x10,0xff,0xff,0x9d,0x90,0x1,0x14,0x4c,0x4d,0x54,0x0,0x4d,0x53,0x54,0x0,0x50, - 0x53,0x54,0x0,0x50,0x44,0x54,0x0,0x50,0x57,0x54,0x0,0x50,0x50,0x54,0x0,0x0, - 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0xa,0x50,0x53,0x54,0x38, - 0x50,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31, - 0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Mexico/BajaSur - 0x0,0x0,0x6,0x1c, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x80,0x0,0x0,0x0,0x7f, + 0xff,0xff,0xff,0x0,0x0,0x0,0x0,0xe,0x10,0x0,0x0,0x2b,0x30,0x31,0x0,0x0, + 0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0xf8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x0,0x0, + 0x0,0xe,0x10,0x0,0x0,0x2b,0x30,0x31,0x0,0x0,0x0,0xa,0x3c,0x2b,0x30,0x31, + 0x3e,0x2d,0x31,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Etc/GMT-2 + 0x0,0x0,0x0,0x95, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x5e,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0xa5, - 0xb6,0xe8,0x70,0xaf,0xf2,0x6e,0xe0,0xb6,0x66,0x56,0x60,0xb7,0x43,0xd2,0x60,0xb8, - 0xc,0x36,0x60,0xb8,0xfd,0x86,0xf0,0xcb,0xea,0x71,0x60,0xd8,0x91,0xb4,0xf0,0x0, - 0x0,0x70,0x80,0x31,0x67,0x84,0x10,0x32,0x73,0x16,0x80,0x33,0x47,0x66,0x10,0x34, - 0x52,0xf8,0x80,0x35,0x27,0x48,0x10,0x36,0x32,0xda,0x80,0x37,0x7,0x2a,0x10,0x38, - 0x1b,0xf7,0x0,0x38,0xe7,0xc,0x10,0x39,0xfb,0xd9,0x0,0x3a,0xf5,0x12,0x90,0x3b, - 0xb6,0xd1,0x0,0x3c,0xb0,0xa,0x90,0x3d,0xbb,0x9d,0x0,0x3e,0x8f,0xec,0x90,0x3f, - 0x9b,0x7f,0x0,0x40,0x6f,0xce,0x90,0x41,0x84,0x9b,0x80,0x42,0x4f,0xb0,0x90,0x43, - 0x64,0x7d,0x80,0x44,0x2f,0x92,0x90,0x45,0x44,0x5f,0x80,0x46,0xf,0x74,0x90,0x47, - 0x24,0x41,0x80,0x47,0xf8,0x91,0x10,0x49,0x4,0x23,0x80,0x49,0xd8,0x73,0x10,0x4a, - 0xe4,0x5,0x80,0x4b,0xb8,0x55,0x10,0x4c,0xcd,0x22,0x0,0x4d,0x98,0x37,0x10,0x4e, - 0xad,0x4,0x0,0x4f,0x78,0x19,0x10,0x50,0x8c,0xe6,0x0,0x51,0x61,0x35,0x90,0x52, - 0x6c,0xc8,0x0,0x53,0x41,0x17,0x90,0x54,0x4c,0xaa,0x0,0x55,0x20,0xf9,0x90,0x56, - 0x2c,0x8c,0x0,0x57,0x0,0xdb,0x90,0x58,0x15,0xa8,0x80,0x58,0xe0,0xbd,0x90,0x59, - 0xf5,0x8a,0x80,0x5a,0xc0,0x9f,0x90,0x5b,0xd5,0x6c,0x80,0x5c,0xa9,0xbc,0x10,0x5d, - 0xb5,0x4e,0x80,0x5e,0x89,0x9e,0x10,0x5f,0x95,0x30,0x80,0x60,0x69,0x80,0x10,0x61, - 0x7e,0x4d,0x0,0x62,0x49,0x62,0x10,0x63,0x5e,0x2f,0x0,0x64,0x29,0x44,0x10,0x65, - 0x3e,0x11,0x0,0x66,0x12,0x60,0x90,0x67,0x1d,0xf3,0x0,0x67,0xf2,0x42,0x90,0x68, - 0xfd,0xd5,0x0,0x69,0xd2,0x24,0x90,0x6a,0xdd,0xb7,0x0,0x6b,0xb2,0x6,0x90,0x6c, - 0xc6,0xd3,0x80,0x6d,0x91,0xe8,0x90,0x6e,0xa6,0xb5,0x80,0x6f,0x71,0xca,0x90,0x70, - 0x86,0x97,0x80,0x71,0x5a,0xe7,0x10,0x72,0x66,0x79,0x80,0x73,0x3a,0xc9,0x10,0x74, - 0x46,0x5b,0x80,0x75,0x1a,0xab,0x10,0x76,0x2f,0x78,0x0,0x76,0xfa,0x8d,0x10,0x78, - 0xf,0x5a,0x0,0x78,0xda,0x6f,0x10,0x79,0xef,0x3c,0x0,0x7a,0xba,0x51,0x10,0x7b, - 0xcf,0x1e,0x0,0x7c,0xa3,0x6d,0x90,0x7d,0xaf,0x0,0x0,0x7e,0x83,0x4f,0x90,0x7f, - 0x8e,0xe2,0x0,0x0,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x3,0x1,0x4,0x1,0x4, - 0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4, - 0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4, - 0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4, - 0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4, - 0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4, - 0x1,0xff,0xff,0x9c,0x3c,0x0,0x0,0xff,0xff,0x9d,0x90,0x0,0x4,0xff,0xff,0xab, - 0xa0,0x0,0x8,0xff,0xff,0x8f,0x80,0x0,0xc,0xff,0xff,0xab,0xa0,0x1,0x10,0xff, - 0xff,0x9d,0x90,0x0,0x4,0x4c,0x4d,0x54,0x0,0x4d,0x53,0x54,0x0,0x43,0x53,0x54, - 0x0,0x50,0x53,0x54,0x0,0x4d,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, - 0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5e,0x0,0x0,0x0,0x6,0x0,0x0,0x0, - 0x14,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xa5,0xb6,0xe8, - 0x70,0xff,0xff,0xff,0xff,0xaf,0xf2,0x6e,0xe0,0xff,0xff,0xff,0xff,0xb6,0x66,0x56, - 0x60,0xff,0xff,0xff,0xff,0xb7,0x43,0xd2,0x60,0xff,0xff,0xff,0xff,0xb8,0xc,0x36, - 0x60,0xff,0xff,0xff,0xff,0xb8,0xfd,0x86,0xf0,0xff,0xff,0xff,0xff,0xcb,0xea,0x71, - 0x60,0xff,0xff,0xff,0xff,0xd8,0x91,0xb4,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x70, - 0x80,0x0,0x0,0x0,0x0,0x31,0x67,0x84,0x10,0x0,0x0,0x0,0x0,0x32,0x73,0x16, - 0x80,0x0,0x0,0x0,0x0,0x33,0x47,0x66,0x10,0x0,0x0,0x0,0x0,0x34,0x52,0xf8, - 0x80,0x0,0x0,0x0,0x0,0x35,0x27,0x48,0x10,0x0,0x0,0x0,0x0,0x36,0x32,0xda, - 0x80,0x0,0x0,0x0,0x0,0x37,0x7,0x2a,0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0xf7, - 0x0,0x0,0x0,0x0,0x0,0x38,0xe7,0xc,0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0xd9, - 0x0,0x0,0x0,0x0,0x0,0x3a,0xf5,0x12,0x90,0x0,0x0,0x0,0x0,0x3b,0xb6,0xd1, - 0x0,0x0,0x0,0x0,0x0,0x3c,0xb0,0xa,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x9d, - 0x0,0x0,0x0,0x0,0x0,0x3e,0x8f,0xec,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x7f, - 0x0,0x0,0x0,0x0,0x0,0x40,0x6f,0xce,0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x9b, - 0x80,0x0,0x0,0x0,0x0,0x42,0x4f,0xb0,0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x7d, - 0x80,0x0,0x0,0x0,0x0,0x44,0x2f,0x92,0x90,0x0,0x0,0x0,0x0,0x45,0x44,0x5f, - 0x80,0x0,0x0,0x0,0x0,0x46,0xf,0x74,0x90,0x0,0x0,0x0,0x0,0x47,0x24,0x41, - 0x80,0x0,0x0,0x0,0x0,0x47,0xf8,0x91,0x10,0x0,0x0,0x0,0x0,0x49,0x4,0x23, - 0x80,0x0,0x0,0x0,0x0,0x49,0xd8,0x73,0x10,0x0,0x0,0x0,0x0,0x4a,0xe4,0x5, - 0x80,0x0,0x0,0x0,0x0,0x4b,0xb8,0x55,0x10,0x0,0x0,0x0,0x0,0x4c,0xcd,0x22, - 0x0,0x0,0x0,0x0,0x0,0x4d,0x98,0x37,0x10,0x0,0x0,0x0,0x0,0x4e,0xad,0x4, - 0x0,0x0,0x0,0x0,0x0,0x4f,0x78,0x19,0x10,0x0,0x0,0x0,0x0,0x50,0x8c,0xe6, - 0x0,0x0,0x0,0x0,0x0,0x51,0x61,0x35,0x90,0x0,0x0,0x0,0x0,0x52,0x6c,0xc8, - 0x0,0x0,0x0,0x0,0x0,0x53,0x41,0x17,0x90,0x0,0x0,0x0,0x0,0x54,0x4c,0xaa, - 0x0,0x0,0x0,0x0,0x0,0x55,0x20,0xf9,0x90,0x0,0x0,0x0,0x0,0x56,0x2c,0x8c, - 0x0,0x0,0x0,0x0,0x0,0x57,0x0,0xdb,0x90,0x0,0x0,0x0,0x0,0x58,0x15,0xa8, - 0x80,0x0,0x0,0x0,0x0,0x58,0xe0,0xbd,0x90,0x0,0x0,0x0,0x0,0x59,0xf5,0x8a, - 0x80,0x0,0x0,0x0,0x0,0x5a,0xc0,0x9f,0x90,0x0,0x0,0x0,0x0,0x5b,0xd5,0x6c, - 0x80,0x0,0x0,0x0,0x0,0x5c,0xa9,0xbc,0x10,0x0,0x0,0x0,0x0,0x5d,0xb5,0x4e, - 0x80,0x0,0x0,0x0,0x0,0x5e,0x89,0x9e,0x10,0x0,0x0,0x0,0x0,0x5f,0x95,0x30, - 0x80,0x0,0x0,0x0,0x0,0x60,0x69,0x80,0x10,0x0,0x0,0x0,0x0,0x61,0x7e,0x4d, - 0x0,0x0,0x0,0x0,0x0,0x62,0x49,0x62,0x10,0x0,0x0,0x0,0x0,0x63,0x5e,0x2f, - 0x0,0x0,0x0,0x0,0x0,0x64,0x29,0x44,0x10,0x0,0x0,0x0,0x0,0x65,0x3e,0x11, - 0x0,0x0,0x0,0x0,0x0,0x66,0x12,0x60,0x90,0x0,0x0,0x0,0x0,0x67,0x1d,0xf3, - 0x0,0x0,0x0,0x0,0x0,0x67,0xf2,0x42,0x90,0x0,0x0,0x0,0x0,0x68,0xfd,0xd5, - 0x0,0x0,0x0,0x0,0x0,0x69,0xd2,0x24,0x90,0x0,0x0,0x0,0x0,0x6a,0xdd,0xb7, - 0x0,0x0,0x0,0x0,0x0,0x6b,0xb2,0x6,0x90,0x0,0x0,0x0,0x0,0x6c,0xc6,0xd3, - 0x80,0x0,0x0,0x0,0x0,0x6d,0x91,0xe8,0x90,0x0,0x0,0x0,0x0,0x6e,0xa6,0xb5, - 0x80,0x0,0x0,0x0,0x0,0x6f,0x71,0xca,0x90,0x0,0x0,0x0,0x0,0x70,0x86,0x97, - 0x80,0x0,0x0,0x0,0x0,0x71,0x5a,0xe7,0x10,0x0,0x0,0x0,0x0,0x72,0x66,0x79, - 0x80,0x0,0x0,0x0,0x0,0x73,0x3a,0xc9,0x10,0x0,0x0,0x0,0x0,0x74,0x46,0x5b, - 0x80,0x0,0x0,0x0,0x0,0x75,0x1a,0xab,0x10,0x0,0x0,0x0,0x0,0x76,0x2f,0x78, - 0x0,0x0,0x0,0x0,0x0,0x76,0xfa,0x8d,0x10,0x0,0x0,0x0,0x0,0x78,0xf,0x5a, - 0x0,0x0,0x0,0x0,0x0,0x78,0xda,0x6f,0x10,0x0,0x0,0x0,0x0,0x79,0xef,0x3c, - 0x0,0x0,0x0,0x0,0x0,0x7a,0xba,0x51,0x10,0x0,0x0,0x0,0x0,0x7b,0xcf,0x1e, - 0x0,0x0,0x0,0x0,0x0,0x7c,0xa3,0x6d,0x90,0x0,0x0,0x0,0x0,0x7d,0xaf,0x0, - 0x0,0x0,0x0,0x0,0x0,0x7e,0x83,0x4f,0x90,0x0,0x0,0x0,0x0,0x7f,0x8e,0xe2, - 0x0,0x0,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x3,0x1,0x4,0x1,0x4,0x1,0x4, - 0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4, - 0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4, - 0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4, - 0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4, - 0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0xff, - 0xff,0x9c,0x3c,0x0,0x0,0xff,0xff,0x9d,0x90,0x0,0x4,0xff,0xff,0xab,0xa0,0x0, - 0x8,0xff,0xff,0x8f,0x80,0x0,0xc,0xff,0xff,0xab,0xa0,0x1,0x10,0xff,0xff,0x9d, - 0x90,0x0,0x4,0x4c,0x4d,0x54,0x0,0x4d,0x53,0x54,0x0,0x43,0x53,0x54,0x0,0x50, - 0x53,0x54,0x0,0x4d,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0xa,0x4d,0x53,0x54,0x37,0x4d,0x44,0x54,0x2c,0x4d,0x34,0x2e,0x31, - 0x2e,0x30,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Atlantic/Stanley - 0x0,0x0,0x4,0xde, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x80,0x0,0x0,0x0,0x7f, + 0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x1c,0x20,0x0,0x0,0x2b,0x30,0x32,0x0,0x0, + 0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0xf8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x0,0x0, + 0x0,0x1c,0x20,0x0,0x0,0x2b,0x30,0x32,0x0,0x0,0x0,0xa,0x3c,0x2b,0x30,0x32, + 0x3e,0x2d,0x32,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Etc/GMT-3 + 0x0,0x0,0x0,0x95, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x46,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x11,0x80,0x0,0x0,0x0,0x93, - 0x44,0x5f,0x3c,0xc3,0x4f,0x5a,0xc0,0xc4,0x36,0x3,0x30,0xc5,0x2f,0x3c,0xc0,0xc6, - 0x15,0xe5,0x30,0xc7,0x18,0x59,0x40,0xc7,0xff,0x1,0xb0,0xc8,0xf8,0x3b,0x40,0xc9, - 0xde,0xe3,0xb0,0xca,0xd8,0x1d,0x40,0xcb,0xbe,0xc5,0xb0,0xcc,0xb7,0xff,0x40,0xcd, - 0x36,0x81,0x30,0x19,0x11,0xfe,0x40,0x19,0xd3,0xbc,0xb0,0x1a,0xf1,0xc4,0x20,0x1b, - 0xaa,0x64,0x30,0x1c,0xd1,0xa6,0x20,0x1d,0x8a,0x46,0x30,0x1e,0xa8,0x5b,0xb0,0x1f, - 0x6a,0x36,0x40,0x20,0x88,0x3d,0xb0,0x21,0x4a,0x18,0x40,0x22,0x68,0x1f,0xb0,0x23, - 0x29,0xfa,0x40,0x24,0x48,0x1,0xb0,0x25,0x9,0xdc,0x40,0x26,0x31,0x1e,0x30,0x26, - 0xe9,0xbe,0x40,0x28,0x11,0x0,0x30,0x28,0xd2,0xda,0xc0,0x29,0xf0,0xe2,0x30,0x2a, - 0xb2,0xbc,0xc0,0x2b,0xd0,0xc4,0x30,0x2c,0x92,0x9e,0xc0,0x2d,0xb0,0xa6,0x30,0x2e, - 0x72,0x80,0xc0,0x2f,0x90,0x88,0x30,0x30,0x52,0x62,0xc0,0x31,0x79,0xa4,0xb0,0x32, - 0x3b,0x7f,0x40,0x33,0x59,0x86,0xb0,0x34,0x1b,0x61,0x40,0x35,0x39,0x68,0xb0,0x35, - 0xfb,0x43,0x40,0x37,0x19,0x4a,0xb0,0x37,0xdb,0x25,0x40,0x38,0xf9,0x2c,0xb0,0x39, - 0xbb,0x7,0x40,0x3a,0xd9,0x2a,0xd0,0x3b,0x91,0xca,0xe0,0x3c,0xc2,0x47,0x50,0x3d, - 0x71,0xac,0xe0,0x3e,0xa2,0x29,0x50,0x3f,0x5a,0xc9,0x60,0x40,0x82,0xb,0x50,0x41, - 0x3a,0xab,0x60,0x42,0x61,0xed,0x50,0x43,0x1a,0x8d,0x60,0x44,0x41,0xcf,0x50,0x44, - 0xfa,0x6f,0x60,0x46,0x21,0xb1,0x50,0x46,0xda,0x51,0x60,0x48,0xa,0xcd,0xd0,0x48, - 0xc3,0x6d,0xe0,0x49,0xea,0xaf,0xd0,0x4a,0xa3,0x4f,0xe0,0x4b,0xca,0x91,0xd0,0x4c, - 0x83,0x31,0xe0,0x1,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x5,0x4,0x5,0x4,0x5,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x6,0xff,0xff,0xc9,0xc4,0x0,0x0,0xff, - 0xff,0xc9,0xc4,0x0,0x4,0xff,0xff,0xd5,0xd0,0x1,0x8,0xff,0xff,0xc7,0xc0,0x0, - 0xd,0xff,0xff,0xe3,0xe0,0x1,0x8,0xff,0xff,0xd5,0xd0,0x0,0xd,0xff,0xff,0xd5, - 0xd0,0x0,0x8,0xff,0xff,0xd5,0xd0,0x1,0x8,0x4c,0x4d,0x54,0x0,0x53,0x4d,0x54, - 0x0,0x46,0x4b,0x53,0x54,0x0,0x46,0x4b,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0x0,0x0, - 0x0,0x8,0x0,0x0,0x0,0x11,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff, - 0xff,0xff,0x69,0x87,0x11,0xbc,0xff,0xff,0xff,0xff,0x93,0x44,0x5f,0x3c,0xff,0xff, - 0xff,0xff,0xc3,0x4f,0x5a,0xc0,0xff,0xff,0xff,0xff,0xc4,0x36,0x3,0x30,0xff,0xff, - 0xff,0xff,0xc5,0x2f,0x3c,0xc0,0xff,0xff,0xff,0xff,0xc6,0x15,0xe5,0x30,0xff,0xff, - 0xff,0xff,0xc7,0x18,0x59,0x40,0xff,0xff,0xff,0xff,0xc7,0xff,0x1,0xb0,0xff,0xff, - 0xff,0xff,0xc8,0xf8,0x3b,0x40,0xff,0xff,0xff,0xff,0xc9,0xde,0xe3,0xb0,0xff,0xff, - 0xff,0xff,0xca,0xd8,0x1d,0x40,0xff,0xff,0xff,0xff,0xcb,0xbe,0xc5,0xb0,0xff,0xff, - 0xff,0xff,0xcc,0xb7,0xff,0x40,0xff,0xff,0xff,0xff,0xcd,0x36,0x81,0x30,0x0,0x0, - 0x0,0x0,0x19,0x11,0xfe,0x40,0x0,0x0,0x0,0x0,0x19,0xd3,0xbc,0xb0,0x0,0x0, - 0x0,0x0,0x1a,0xf1,0xc4,0x20,0x0,0x0,0x0,0x0,0x1b,0xaa,0x64,0x30,0x0,0x0, - 0x0,0x0,0x1c,0xd1,0xa6,0x20,0x0,0x0,0x0,0x0,0x1d,0x8a,0x46,0x30,0x0,0x0, - 0x0,0x0,0x1e,0xa8,0x5b,0xb0,0x0,0x0,0x0,0x0,0x1f,0x6a,0x36,0x40,0x0,0x0, - 0x0,0x0,0x20,0x88,0x3d,0xb0,0x0,0x0,0x0,0x0,0x21,0x4a,0x18,0x40,0x0,0x0, - 0x0,0x0,0x22,0x68,0x1f,0xb0,0x0,0x0,0x0,0x0,0x23,0x29,0xfa,0x40,0x0,0x0, - 0x0,0x0,0x24,0x48,0x1,0xb0,0x0,0x0,0x0,0x0,0x25,0x9,0xdc,0x40,0x0,0x0, - 0x0,0x0,0x26,0x31,0x1e,0x30,0x0,0x0,0x0,0x0,0x26,0xe9,0xbe,0x40,0x0,0x0, - 0x0,0x0,0x28,0x11,0x0,0x30,0x0,0x0,0x0,0x0,0x28,0xd2,0xda,0xc0,0x0,0x0, - 0x0,0x0,0x29,0xf0,0xe2,0x30,0x0,0x0,0x0,0x0,0x2a,0xb2,0xbc,0xc0,0x0,0x0, - 0x0,0x0,0x2b,0xd0,0xc4,0x30,0x0,0x0,0x0,0x0,0x2c,0x92,0x9e,0xc0,0x0,0x0, - 0x0,0x0,0x2d,0xb0,0xa6,0x30,0x0,0x0,0x0,0x0,0x2e,0x72,0x80,0xc0,0x0,0x0, - 0x0,0x0,0x2f,0x90,0x88,0x30,0x0,0x0,0x0,0x0,0x30,0x52,0x62,0xc0,0x0,0x0, - 0x0,0x0,0x31,0x79,0xa4,0xb0,0x0,0x0,0x0,0x0,0x32,0x3b,0x7f,0x40,0x0,0x0, - 0x0,0x0,0x33,0x59,0x86,0xb0,0x0,0x0,0x0,0x0,0x34,0x1b,0x61,0x40,0x0,0x0, - 0x0,0x0,0x35,0x39,0x68,0xb0,0x0,0x0,0x0,0x0,0x35,0xfb,0x43,0x40,0x0,0x0, - 0x0,0x0,0x37,0x19,0x4a,0xb0,0x0,0x0,0x0,0x0,0x37,0xdb,0x25,0x40,0x0,0x0, - 0x0,0x0,0x38,0xf9,0x2c,0xb0,0x0,0x0,0x0,0x0,0x39,0xbb,0x7,0x40,0x0,0x0, - 0x0,0x0,0x3a,0xd9,0x2a,0xd0,0x0,0x0,0x0,0x0,0x3b,0x91,0xca,0xe0,0x0,0x0, - 0x0,0x0,0x3c,0xc2,0x47,0x50,0x0,0x0,0x0,0x0,0x3d,0x71,0xac,0xe0,0x0,0x0, - 0x0,0x0,0x3e,0xa2,0x29,0x50,0x0,0x0,0x0,0x0,0x3f,0x5a,0xc9,0x60,0x0,0x0, - 0x0,0x0,0x40,0x82,0xb,0x50,0x0,0x0,0x0,0x0,0x41,0x3a,0xab,0x60,0x0,0x0, - 0x0,0x0,0x42,0x61,0xed,0x50,0x0,0x0,0x0,0x0,0x43,0x1a,0x8d,0x60,0x0,0x0, - 0x0,0x0,0x44,0x41,0xcf,0x50,0x0,0x0,0x0,0x0,0x44,0xfa,0x6f,0x60,0x0,0x0, - 0x0,0x0,0x46,0x21,0xb1,0x50,0x0,0x0,0x0,0x0,0x46,0xda,0x51,0x60,0x0,0x0, - 0x0,0x0,0x48,0xa,0xcd,0xd0,0x0,0x0,0x0,0x0,0x48,0xc3,0x6d,0xe0,0x0,0x0, - 0x0,0x0,0x49,0xea,0xaf,0xd0,0x0,0x0,0x0,0x0,0x4a,0xa3,0x4f,0xe0,0x0,0x0, - 0x0,0x0,0x4b,0xca,0x91,0xd0,0x0,0x0,0x0,0x0,0x4c,0x83,0x31,0xe0,0x0,0x1, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x5,0x4,0x5, - 0x4,0x5,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x6,0xff,0xff,0xc9,0xc4,0x0,0x0,0xff,0xff,0xc9,0xc4,0x0, - 0x4,0xff,0xff,0xd5,0xd0,0x1,0x8,0xff,0xff,0xc7,0xc0,0x0,0xd,0xff,0xff,0xe3, - 0xe0,0x1,0x8,0xff,0xff,0xd5,0xd0,0x0,0xd,0xff,0xff,0xd5,0xd0,0x0,0x8,0xff, - 0xff,0xd5,0xd0,0x1,0x8,0x4c,0x4d,0x54,0x0,0x53,0x4d,0x54,0x0,0x46,0x4b,0x53, - 0x54,0x0,0x46,0x4b,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x46,0x4b,0x53,0x54,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Atlantic/Canary - 0x0,0x0,0x7,0x79, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x80,0x0,0x0,0x0,0x7f, + 0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x2a,0x30,0x0,0x0,0x2b,0x30,0x33,0x0,0x0, + 0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0xf8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x0,0x0, + 0x0,0x2a,0x30,0x0,0x0,0x2b,0x30,0x33,0x0,0x0,0x0,0xa,0x3c,0x2b,0x30,0x33, + 0x3e,0x2d,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Etc/GMT-4 + 0x0,0x0,0x0,0x95, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x77,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x80,0x0,0x0,0x0,0xa6, - 0x4,0x5c,0xf0,0xd4,0x41,0xf7,0x20,0x13,0x4d,0x36,0x0,0x14,0x33,0xfa,0x90,0x15, - 0x23,0xeb,0x90,0x16,0x13,0xdc,0x90,0x17,0x3,0xcd,0x90,0x17,0xf3,0xbe,0x90,0x18, - 0xe3,0xaf,0x90,0x19,0xd3,0xa0,0x90,0x1a,0xc3,0x91,0x90,0x1b,0xbc,0xbd,0x10,0x1c, - 0xac,0xae,0x10,0x1d,0x9c,0x9f,0x10,0x1e,0x8c,0x90,0x10,0x1f,0x7c,0x81,0x10,0x20, - 0x6c,0x72,0x10,0x21,0x5c,0x63,0x10,0x22,0x4c,0x54,0x10,0x23,0x3c,0x45,0x10,0x24, - 0x2c,0x36,0x10,0x25,0x1c,0x27,0x10,0x26,0xc,0x18,0x10,0x27,0x5,0x43,0x90,0x27, - 0xf5,0x34,0x90,0x28,0xe5,0x25,0x90,0x29,0xd5,0x16,0x90,0x2a,0xc5,0x7,0x90,0x2b, - 0xb4,0xf8,0x90,0x2c,0xa4,0xe9,0x90,0x2d,0x94,0xda,0x90,0x2e,0x84,0xcb,0x90,0x2f, - 0x74,0xbc,0x90,0x30,0x64,0xad,0x90,0x31,0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33, - 0x3d,0xbb,0x10,0x34,0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36, - 0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a, - 0xbd,0x43,0x10,0x3b,0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e, - 0x86,0x41,0x90,0x3f,0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42, - 0x46,0x5,0x90,0x43,0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46, - 0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49, - 0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d, - 0x8e,0x8c,0x10,0x4e,0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51, - 0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55, - 0x17,0x4e,0x90,0x56,0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58, - 0xd7,0x12,0x90,0x59,0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c, - 0xa0,0x11,0x10,0x5d,0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60, - 0x5f,0xd5,0x10,0x61,0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64, - 0x1f,0x99,0x10,0x65,0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67, - 0xe8,0x97,0x90,0x68,0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b, - 0xa8,0x5b,0x90,0x6c,0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f, - 0x68,0x1f,0x90,0x70,0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73, - 0x31,0x1e,0x10,0x74,0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76, - 0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a, - 0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e, - 0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x0,0x1,0x2,0x3,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0xff,0xff, - 0xf1,0x90,0x0,0x0,0xff,0xff,0xf1,0xf0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x9, - 0x0,0x0,0xe,0x10,0x1,0xd,0x0,0x0,0x0,0x0,0x0,0x9,0x0,0x0,0xe,0x10, - 0x1,0xd,0x4c,0x4d,0x54,0x0,0x43,0x41,0x4e,0x54,0x0,0x57,0x45,0x54,0x0,0x57, - 0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x1,0x1, - 0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x77,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0xf8,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xa6,0x4,0x5c,0xf0,0xff,0xff,0xff,0xff, - 0xd4,0x41,0xf7,0x20,0x0,0x0,0x0,0x0,0x13,0x4d,0x36,0x0,0x0,0x0,0x0,0x0, - 0x14,0x33,0xfa,0x90,0x0,0x0,0x0,0x0,0x15,0x23,0xeb,0x90,0x0,0x0,0x0,0x0, - 0x16,0x13,0xdc,0x90,0x0,0x0,0x0,0x0,0x17,0x3,0xcd,0x90,0x0,0x0,0x0,0x0, - 0x17,0xf3,0xbe,0x90,0x0,0x0,0x0,0x0,0x18,0xe3,0xaf,0x90,0x0,0x0,0x0,0x0, - 0x19,0xd3,0xa0,0x90,0x0,0x0,0x0,0x0,0x1a,0xc3,0x91,0x90,0x0,0x0,0x0,0x0, - 0x1b,0xbc,0xbd,0x10,0x0,0x0,0x0,0x0,0x1c,0xac,0xae,0x10,0x0,0x0,0x0,0x0, - 0x1d,0x9c,0x9f,0x10,0x0,0x0,0x0,0x0,0x1e,0x8c,0x90,0x10,0x0,0x0,0x0,0x0, - 0x1f,0x7c,0x81,0x10,0x0,0x0,0x0,0x0,0x20,0x6c,0x72,0x10,0x0,0x0,0x0,0x0, - 0x21,0x5c,0x63,0x10,0x0,0x0,0x0,0x0,0x22,0x4c,0x54,0x10,0x0,0x0,0x0,0x0, - 0x23,0x3c,0x45,0x10,0x0,0x0,0x0,0x0,0x24,0x2c,0x36,0x10,0x0,0x0,0x0,0x0, - 0x25,0x1c,0x27,0x10,0x0,0x0,0x0,0x0,0x26,0xc,0x18,0x10,0x0,0x0,0x0,0x0, - 0x27,0x5,0x43,0x90,0x0,0x0,0x0,0x0,0x27,0xf5,0x34,0x90,0x0,0x0,0x0,0x0, - 0x28,0xe5,0x25,0x90,0x0,0x0,0x0,0x0,0x29,0xd5,0x16,0x90,0x0,0x0,0x0,0x0, - 0x2a,0xc5,0x7,0x90,0x0,0x0,0x0,0x0,0x2b,0xb4,0xf8,0x90,0x0,0x0,0x0,0x0, - 0x2c,0xa4,0xe9,0x90,0x0,0x0,0x0,0x0,0x2d,0x94,0xda,0x90,0x0,0x0,0x0,0x0, - 0x2e,0x84,0xcb,0x90,0x0,0x0,0x0,0x0,0x2f,0x74,0xbc,0x90,0x0,0x0,0x0,0x0, - 0x30,0x64,0xad,0x90,0x0,0x0,0x0,0x0,0x31,0x5d,0xd9,0x10,0x0,0x0,0x0,0x0, - 0x32,0x72,0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d,0xbb,0x10,0x0,0x0,0x0,0x0, - 0x34,0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d,0x9d,0x10,0x0,0x0,0x0,0x0, - 0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd,0x7f,0x10,0x0,0x0,0x0,0x0, - 0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd,0x61,0x10,0x0,0x0,0x0,0x0, - 0x39,0xfb,0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd,0x43,0x10,0x0,0x0,0x0,0x0, - 0x3b,0xdb,0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f,0x90,0x0,0x0,0x0,0x0, - 0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86,0x41,0x90,0x0,0x0,0x0,0x0, - 0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66,0x23,0x90,0x0,0x0,0x0,0x0, - 0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46,0x5,0x90,0x0,0x0,0x0,0x0, - 0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25,0xe7,0x90,0x0,0x0,0x0,0x0, - 0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5,0xc9,0x90,0x0,0x0,0x0,0x0, - 0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee,0xe6,0x10,0x0,0x0,0x0,0x0, - 0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce,0xc8,0x10,0x0,0x0,0x0,0x0, - 0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae,0xaa,0x10,0x0,0x0,0x0,0x0, - 0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c,0x10,0x0,0x0,0x0,0x0, - 0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e,0x10,0x0,0x0,0x0,0x0, - 0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57,0x8a,0x90,0x0,0x0,0x0,0x0, - 0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37,0x6c,0x90,0x0,0x0,0x0,0x0, - 0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17,0x4e,0x90,0x0,0x0,0x0,0x0, - 0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7,0x30,0x90,0x0,0x0,0x0,0x0, - 0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7,0x12,0x90,0x0,0x0,0x0,0x0, - 0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4,0x90,0x0,0x0,0x0,0x0, - 0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0,0x11,0x10,0x0,0x0,0x0,0x0, - 0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3,0x10,0x0,0x0,0x0,0x0, - 0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f,0xd5,0x10,0x0,0x0,0x0,0x0, - 0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f,0xb7,0x10,0x0,0x0,0x0,0x0, - 0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f,0x99,0x10,0x0,0x0,0x0,0x0, - 0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8,0xb5,0x90,0x0,0x0,0x0,0x0, - 0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8,0x97,0x90,0x0,0x0,0x0,0x0, - 0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8,0x79,0x90,0x0,0x0,0x0,0x0, - 0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b,0x90,0x0,0x0,0x0,0x0, - 0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88,0x3d,0x90,0x0,0x0,0x0,0x0, - 0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68,0x1f,0x90,0x0,0x0,0x0,0x0, - 0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51,0x3c,0x10,0x0,0x0,0x0,0x0, - 0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31,0x1e,0x10,0x0,0x0,0x0,0x0, - 0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11,0x0,0x10,0x0,0x0,0x0,0x0, - 0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0,0xe2,0x10,0x0,0x0,0x0,0x0, - 0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0,0xc4,0x10,0x0,0x0,0x0,0x0, - 0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6,0x10,0x0,0x0,0x0,0x0, - 0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99,0xc2,0x90,0x0,0x0,0x0,0x0, - 0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79,0xa4,0x90,0x0,0x0,0x0,0x0, - 0x7f,0x8e,0x7f,0x90,0x0,0x1,0x2,0x3,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0xff,0xff,0xf1,0x90,0x0, - 0x0,0xff,0xff,0xf1,0xf0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x9,0x0,0x0,0xe, - 0x10,0x1,0xd,0x0,0x0,0x0,0x0,0x0,0x9,0x0,0x0,0xe,0x10,0x1,0xd,0x4c, - 0x4d,0x54,0x0,0x43,0x41,0x4e,0x54,0x0,0x57,0x45,0x54,0x0,0x57,0x45,0x53,0x54, - 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x1,0x1,0xa,0x57,0x45, - 0x54,0x30,0x57,0x45,0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2f,0x31,0x2c, - 0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Atlantic/Azores - 0x0,0x0,0xd,0xa0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x80,0x0,0x0,0x0,0x7f, + 0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x38,0x40,0x0,0x0,0x2b,0x30,0x34,0x0,0x0, + 0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0xf8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x0,0x0, + 0x0,0x38,0x40,0x0,0x0,0x2b,0x30,0x34,0x0,0x0,0x0,0xa,0x3c,0x2b,0x30,0x34, + 0x3e,0x2d,0x34,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Etc/GMT-5 + 0x0,0x0,0x0,0x95, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xdd,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x1d,0x80,0x0,0x0,0x0,0x92, - 0xe6,0xa9,0x58,0x9b,0x4b,0x89,0x90,0x9b,0xfe,0xe3,0xa0,0x9c,0x9d,0x9,0x90,0x9d, - 0xc9,0x9f,0x90,0x9e,0x7f,0x8e,0x90,0x9f,0xaa,0xd3,0x10,0xa0,0x5f,0x70,0x90,0xa1, - 0x8c,0x6,0x90,0xa2,0x41,0xf5,0x90,0xa3,0x6e,0x8b,0x90,0xa4,0x23,0x29,0x10,0xa5, - 0x4f,0xbf,0x10,0xaa,0x6,0xb,0x90,0xaa,0xf4,0xab,0x10,0xad,0xc9,0xc4,0x10,0xae, - 0xa7,0x40,0x10,0xaf,0xa0,0x6b,0x90,0xb0,0x87,0x22,0x10,0xb1,0x89,0x88,0x10,0xb2, - 0x70,0x3e,0x90,0xb3,0x72,0xa4,0x90,0xb4,0x50,0x20,0x90,0xb7,0x32,0x68,0x90,0xb8, - 0xf,0xe4,0x90,0xb8,0xff,0xd5,0x90,0xb9,0xef,0xc6,0x90,0xbc,0xc8,0xd4,0x10,0xbd, - 0xb8,0xc5,0x10,0xbe,0x9f,0x7b,0x90,0xbf,0x98,0xa7,0x10,0xc0,0x9b,0xd,0x10,0xc1, - 0x78,0x89,0x10,0xc2,0x68,0x7a,0x10,0xc3,0x58,0x6b,0x10,0xc4,0x3f,0x21,0x90,0xc5, - 0x38,0x4d,0x10,0xc6,0x3a,0xb3,0x10,0xc7,0x58,0xc8,0x90,0xc7,0xd9,0xfb,0x90,0xc9, - 0x1,0x4b,0x90,0xc9,0xf1,0x3c,0x90,0xca,0xe2,0x7f,0x10,0xcb,0xb5,0x6f,0x10,0xcb, - 0xec,0xc0,0x0,0xcc,0x80,0x68,0x0,0xcc,0xdc,0xbf,0x10,0xcd,0x95,0x51,0x10,0xcd, - 0xc3,0x67,0x80,0xce,0x72,0xbf,0x0,0xce,0xc5,0xdb,0x90,0xcf,0x75,0x33,0x10,0xcf, - 0xac,0x84,0x0,0xd0,0x52,0xa1,0x0,0xd0,0xa5,0xbd,0x90,0xd1,0x55,0x15,0x10,0xd1, - 0x8c,0x66,0x0,0xd2,0x32,0x83,0x0,0xd2,0x85,0x9f,0x90,0xd3,0x59,0xe1,0x10,0xd4, - 0x49,0xd2,0x10,0xd5,0x39,0xed,0x40,0xd6,0x29,0xde,0x40,0xd7,0x19,0xcf,0x40,0xd8, - 0x9,0xc0,0x40,0xd8,0xf9,0xb1,0x40,0xd9,0xe9,0xa2,0x40,0xdc,0xb9,0x75,0x40,0xdd, - 0xb2,0xa0,0xc0,0xde,0xa2,0x91,0xc0,0xdf,0x92,0x82,0xc0,0xe0,0x82,0x73,0xc0,0xe1, - 0x72,0x64,0xc0,0xe2,0x62,0x55,0xc0,0xe3,0x52,0x46,0xc0,0xe4,0x42,0x37,0xc0,0xe5, - 0x32,0x28,0xc0,0xe6,0x22,0x19,0xc0,0xe7,0x1b,0x45,0x40,0xe8,0xb,0x36,0x40,0xe8, - 0xfb,0x27,0x40,0xe9,0xeb,0x18,0x40,0xea,0xdb,0x9,0x40,0xeb,0xca,0xfa,0x40,0xec, - 0xba,0xeb,0x40,0xed,0xaa,0xdc,0x40,0xee,0x9a,0xcd,0x40,0xef,0x8a,0xbe,0x40,0xf0, - 0x7a,0xaf,0x40,0xf1,0x6a,0xa0,0x40,0xf2,0x63,0xcb,0xc0,0xf3,0x53,0xbc,0xc0,0xf4, - 0x43,0xad,0xc0,0xf5,0x33,0x9e,0xc0,0xf6,0x23,0x8f,0xc0,0xf7,0x13,0x80,0xc0,0xf8, - 0x3,0x71,0xc0,0xf8,0xf3,0x62,0xc0,0xd,0x9b,0x29,0x10,0xe,0x8b,0x1a,0x10,0xf, - 0x84,0x45,0x90,0x10,0x74,0x36,0x90,0x11,0x64,0x27,0x90,0x12,0x54,0x26,0xa0,0x13, - 0x44,0x9,0x90,0x14,0x34,0x8,0xa0,0x15,0x23,0xf9,0xa0,0x16,0x13,0xea,0xa0,0x17, - 0x3,0xdb,0xa0,0x17,0xf3,0xcc,0xa0,0x18,0xe3,0xcb,0xb0,0x19,0xd3,0xae,0xa0,0x1a, - 0xc3,0x9f,0xa0,0x1b,0xbc,0xcb,0x20,0x1c,0xac,0xbc,0x20,0x1d,0x9c,0xad,0x20,0x1e, - 0x8c,0x9e,0x20,0x1f,0x7c,0x8f,0x20,0x20,0x6c,0x80,0x20,0x21,0x5c,0x71,0x20,0x22, - 0x4c,0x62,0x20,0x23,0x3c,0x53,0x20,0x24,0x2c,0x44,0x20,0x25,0x1c,0x35,0x20,0x26, - 0xc,0x26,0x20,0x27,0x5,0x51,0xa0,0x27,0xf5,0x42,0xa0,0x28,0xe5,0x33,0xa0,0x29, - 0xd5,0x24,0xa0,0x2a,0xc5,0x15,0xa0,0x2b,0xb4,0xf8,0x90,0x2c,0xa4,0xe9,0x90,0x2d, - 0x94,0xda,0x90,0x2e,0x84,0xcb,0x90,0x2f,0x74,0xbc,0x90,0x30,0x64,0xad,0x90,0x31, - 0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34,0x52,0x96,0x10,0x35, - 0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x38, - 0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b,0xdb,0x58,0x90,0x3c, - 0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f,0x9b,0x1c,0x90,0x40, - 0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43,0x64,0x1b,0x10,0x44, - 0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47, - 0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b, - 0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e,0xac,0xa1,0x90,0x4f, - 0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53, - 0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56,0x2c,0x29,0x90,0x56, - 0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59,0xf5,0x28,0x10,0x5a, - 0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d,0xb4,0xec,0x10,0x5e, - 0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61,0x7d,0xea,0x90,0x62, - 0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65,0x3d,0xae,0x90,0x66, - 0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68,0xfd,0x72,0x90,0x69, - 0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c,0xc6,0x71,0x10,0x6d, - 0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70,0x86,0x35,0x10,0x71, - 0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74,0x45,0xf9,0x10,0x75, - 0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78, - 0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c, - 0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x1, - 0x3,0x2,0x3,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x6,0x4,0x5,0x4, - 0x6,0x4,0x5,0x4,0x6,0x4,0x5,0x4,0x6,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x9,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8, - 0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8, - 0x7,0xa,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, - 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, - 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, - 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, - 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, - 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xff,0xff,0xe7,0xf0, - 0x0,0x0,0xff,0xff,0xe5,0x28,0x0,0x4,0xff,0xff,0xf1,0xf0,0x1,0x8,0xff,0xff, - 0xe3,0xe0,0x0,0xe,0xff,0xff,0xf1,0xf0,0x1,0x8,0xff,0xff,0xe3,0xe0,0x0,0xe, - 0x0,0x0,0x0,0x0,0x1,0x13,0x0,0x0,0x0,0x0,0x1,0x8,0xff,0xff,0xf1,0xf0, - 0x0,0xe,0xff,0xff,0xf1,0xf0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x19,0x0,0x0, - 0x0,0x0,0x1,0x8,0xff,0xff,0xf1,0xf0,0x0,0xe,0x4c,0x4d,0x54,0x0,0x48,0x4d, - 0x54,0x0,0x41,0x5a,0x4f,0x53,0x54,0x0,0x41,0x5a,0x4f,0x54,0x0,0x41,0x5a,0x4f, - 0x4d,0x54,0x0,0x57,0x45,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x1, - 0x0,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, - 0x1,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0xd,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0xde,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x1d,0xf8,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x5e,0x3d,0x1b,0x90,0xff,0xff,0xff, - 0xff,0x92,0xe6,0xa9,0x58,0xff,0xff,0xff,0xff,0x9b,0x4b,0x89,0x90,0xff,0xff,0xff, - 0xff,0x9b,0xfe,0xe3,0xa0,0xff,0xff,0xff,0xff,0x9c,0x9d,0x9,0x90,0xff,0xff,0xff, - 0xff,0x9d,0xc9,0x9f,0x90,0xff,0xff,0xff,0xff,0x9e,0x7f,0x8e,0x90,0xff,0xff,0xff, - 0xff,0x9f,0xaa,0xd3,0x10,0xff,0xff,0xff,0xff,0xa0,0x5f,0x70,0x90,0xff,0xff,0xff, - 0xff,0xa1,0x8c,0x6,0x90,0xff,0xff,0xff,0xff,0xa2,0x41,0xf5,0x90,0xff,0xff,0xff, - 0xff,0xa3,0x6e,0x8b,0x90,0xff,0xff,0xff,0xff,0xa4,0x23,0x29,0x10,0xff,0xff,0xff, - 0xff,0xa5,0x4f,0xbf,0x10,0xff,0xff,0xff,0xff,0xaa,0x6,0xb,0x90,0xff,0xff,0xff, - 0xff,0xaa,0xf4,0xab,0x10,0xff,0xff,0xff,0xff,0xad,0xc9,0xc4,0x10,0xff,0xff,0xff, - 0xff,0xae,0xa7,0x40,0x10,0xff,0xff,0xff,0xff,0xaf,0xa0,0x6b,0x90,0xff,0xff,0xff, - 0xff,0xb0,0x87,0x22,0x10,0xff,0xff,0xff,0xff,0xb1,0x89,0x88,0x10,0xff,0xff,0xff, - 0xff,0xb2,0x70,0x3e,0x90,0xff,0xff,0xff,0xff,0xb3,0x72,0xa4,0x90,0xff,0xff,0xff, - 0xff,0xb4,0x50,0x20,0x90,0xff,0xff,0xff,0xff,0xb7,0x32,0x68,0x90,0xff,0xff,0xff, - 0xff,0xb8,0xf,0xe4,0x90,0xff,0xff,0xff,0xff,0xb8,0xff,0xd5,0x90,0xff,0xff,0xff, - 0xff,0xb9,0xef,0xc6,0x90,0xff,0xff,0xff,0xff,0xbc,0xc8,0xd4,0x10,0xff,0xff,0xff, - 0xff,0xbd,0xb8,0xc5,0x10,0xff,0xff,0xff,0xff,0xbe,0x9f,0x7b,0x90,0xff,0xff,0xff, - 0xff,0xbf,0x98,0xa7,0x10,0xff,0xff,0xff,0xff,0xc0,0x9b,0xd,0x10,0xff,0xff,0xff, - 0xff,0xc1,0x78,0x89,0x10,0xff,0xff,0xff,0xff,0xc2,0x68,0x7a,0x10,0xff,0xff,0xff, - 0xff,0xc3,0x58,0x6b,0x10,0xff,0xff,0xff,0xff,0xc4,0x3f,0x21,0x90,0xff,0xff,0xff, - 0xff,0xc5,0x38,0x4d,0x10,0xff,0xff,0xff,0xff,0xc6,0x3a,0xb3,0x10,0xff,0xff,0xff, - 0xff,0xc7,0x58,0xc8,0x90,0xff,0xff,0xff,0xff,0xc7,0xd9,0xfb,0x90,0xff,0xff,0xff, - 0xff,0xc9,0x1,0x4b,0x90,0xff,0xff,0xff,0xff,0xc9,0xf1,0x3c,0x90,0xff,0xff,0xff, - 0xff,0xca,0xe2,0x7f,0x10,0xff,0xff,0xff,0xff,0xcb,0xb5,0x6f,0x10,0xff,0xff,0xff, - 0xff,0xcb,0xec,0xc0,0x0,0xff,0xff,0xff,0xff,0xcc,0x80,0x68,0x0,0xff,0xff,0xff, - 0xff,0xcc,0xdc,0xbf,0x10,0xff,0xff,0xff,0xff,0xcd,0x95,0x51,0x10,0xff,0xff,0xff, - 0xff,0xcd,0xc3,0x67,0x80,0xff,0xff,0xff,0xff,0xce,0x72,0xbf,0x0,0xff,0xff,0xff, - 0xff,0xce,0xc5,0xdb,0x90,0xff,0xff,0xff,0xff,0xcf,0x75,0x33,0x10,0xff,0xff,0xff, - 0xff,0xcf,0xac,0x84,0x0,0xff,0xff,0xff,0xff,0xd0,0x52,0xa1,0x0,0xff,0xff,0xff, - 0xff,0xd0,0xa5,0xbd,0x90,0xff,0xff,0xff,0xff,0xd1,0x55,0x15,0x10,0xff,0xff,0xff, - 0xff,0xd1,0x8c,0x66,0x0,0xff,0xff,0xff,0xff,0xd2,0x32,0x83,0x0,0xff,0xff,0xff, - 0xff,0xd2,0x85,0x9f,0x90,0xff,0xff,0xff,0xff,0xd3,0x59,0xe1,0x10,0xff,0xff,0xff, - 0xff,0xd4,0x49,0xd2,0x10,0xff,0xff,0xff,0xff,0xd5,0x39,0xed,0x40,0xff,0xff,0xff, - 0xff,0xd6,0x29,0xde,0x40,0xff,0xff,0xff,0xff,0xd7,0x19,0xcf,0x40,0xff,0xff,0xff, - 0xff,0xd8,0x9,0xc0,0x40,0xff,0xff,0xff,0xff,0xd8,0xf9,0xb1,0x40,0xff,0xff,0xff, - 0xff,0xd9,0xe9,0xa2,0x40,0xff,0xff,0xff,0xff,0xdc,0xb9,0x75,0x40,0xff,0xff,0xff, - 0xff,0xdd,0xb2,0xa0,0xc0,0xff,0xff,0xff,0xff,0xde,0xa2,0x91,0xc0,0xff,0xff,0xff, - 0xff,0xdf,0x92,0x82,0xc0,0xff,0xff,0xff,0xff,0xe0,0x82,0x73,0xc0,0xff,0xff,0xff, - 0xff,0xe1,0x72,0x64,0xc0,0xff,0xff,0xff,0xff,0xe2,0x62,0x55,0xc0,0xff,0xff,0xff, - 0xff,0xe3,0x52,0x46,0xc0,0xff,0xff,0xff,0xff,0xe4,0x42,0x37,0xc0,0xff,0xff,0xff, - 0xff,0xe5,0x32,0x28,0xc0,0xff,0xff,0xff,0xff,0xe6,0x22,0x19,0xc0,0xff,0xff,0xff, - 0xff,0xe7,0x1b,0x45,0x40,0xff,0xff,0xff,0xff,0xe8,0xb,0x36,0x40,0xff,0xff,0xff, - 0xff,0xe8,0xfb,0x27,0x40,0xff,0xff,0xff,0xff,0xe9,0xeb,0x18,0x40,0xff,0xff,0xff, - 0xff,0xea,0xdb,0x9,0x40,0xff,0xff,0xff,0xff,0xeb,0xca,0xfa,0x40,0xff,0xff,0xff, - 0xff,0xec,0xba,0xeb,0x40,0xff,0xff,0xff,0xff,0xed,0xaa,0xdc,0x40,0xff,0xff,0xff, - 0xff,0xee,0x9a,0xcd,0x40,0xff,0xff,0xff,0xff,0xef,0x8a,0xbe,0x40,0xff,0xff,0xff, - 0xff,0xf0,0x7a,0xaf,0x40,0xff,0xff,0xff,0xff,0xf1,0x6a,0xa0,0x40,0xff,0xff,0xff, - 0xff,0xf2,0x63,0xcb,0xc0,0xff,0xff,0xff,0xff,0xf3,0x53,0xbc,0xc0,0xff,0xff,0xff, - 0xff,0xf4,0x43,0xad,0xc0,0xff,0xff,0xff,0xff,0xf5,0x33,0x9e,0xc0,0xff,0xff,0xff, - 0xff,0xf6,0x23,0x8f,0xc0,0xff,0xff,0xff,0xff,0xf7,0x13,0x80,0xc0,0xff,0xff,0xff, - 0xff,0xf8,0x3,0x71,0xc0,0xff,0xff,0xff,0xff,0xf8,0xf3,0x62,0xc0,0x0,0x0,0x0, - 0x0,0xd,0x9b,0x29,0x10,0x0,0x0,0x0,0x0,0xe,0x8b,0x1a,0x10,0x0,0x0,0x0, - 0x0,0xf,0x84,0x45,0x90,0x0,0x0,0x0,0x0,0x10,0x74,0x36,0x90,0x0,0x0,0x0, - 0x0,0x11,0x64,0x27,0x90,0x0,0x0,0x0,0x0,0x12,0x54,0x26,0xa0,0x0,0x0,0x0, - 0x0,0x13,0x44,0x9,0x90,0x0,0x0,0x0,0x0,0x14,0x34,0x8,0xa0,0x0,0x0,0x0, - 0x0,0x15,0x23,0xf9,0xa0,0x0,0x0,0x0,0x0,0x16,0x13,0xea,0xa0,0x0,0x0,0x0, - 0x0,0x17,0x3,0xdb,0xa0,0x0,0x0,0x0,0x0,0x17,0xf3,0xcc,0xa0,0x0,0x0,0x0, - 0x0,0x18,0xe3,0xcb,0xb0,0x0,0x0,0x0,0x0,0x19,0xd3,0xae,0xa0,0x0,0x0,0x0, - 0x0,0x1a,0xc3,0x9f,0xa0,0x0,0x0,0x0,0x0,0x1b,0xbc,0xcb,0x20,0x0,0x0,0x0, - 0x0,0x1c,0xac,0xbc,0x20,0x0,0x0,0x0,0x0,0x1d,0x9c,0xad,0x20,0x0,0x0,0x0, - 0x0,0x1e,0x8c,0x9e,0x20,0x0,0x0,0x0,0x0,0x1f,0x7c,0x8f,0x20,0x0,0x0,0x0, - 0x0,0x20,0x6c,0x80,0x20,0x0,0x0,0x0,0x0,0x21,0x5c,0x71,0x20,0x0,0x0,0x0, - 0x0,0x22,0x4c,0x62,0x20,0x0,0x0,0x0,0x0,0x23,0x3c,0x53,0x20,0x0,0x0,0x0, - 0x0,0x24,0x2c,0x44,0x20,0x0,0x0,0x0,0x0,0x25,0x1c,0x35,0x20,0x0,0x0,0x0, - 0x0,0x26,0xc,0x26,0x20,0x0,0x0,0x0,0x0,0x27,0x5,0x51,0xa0,0x0,0x0,0x0, - 0x0,0x27,0xf5,0x42,0xa0,0x0,0x0,0x0,0x0,0x28,0xe5,0x33,0xa0,0x0,0x0,0x0, - 0x0,0x29,0xd5,0x24,0xa0,0x0,0x0,0x0,0x0,0x2a,0xc5,0x15,0xa0,0x0,0x0,0x0, - 0x0,0x2b,0xb4,0xf8,0x90,0x0,0x0,0x0,0x0,0x2c,0xa4,0xe9,0x90,0x0,0x0,0x0, - 0x0,0x2d,0x94,0xda,0x90,0x0,0x0,0x0,0x0,0x2e,0x84,0xcb,0x90,0x0,0x0,0x0, - 0x0,0x2f,0x74,0xbc,0x90,0x0,0x0,0x0,0x0,0x30,0x64,0xad,0x90,0x0,0x0,0x0, - 0x0,0x31,0x5d,0xd9,0x10,0x0,0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0,0x0, - 0x0,0x33,0x3d,0xbb,0x10,0x0,0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0,0x0, - 0x0,0x35,0x1d,0x9d,0x10,0x0,0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0, - 0x0,0x36,0xfd,0x7f,0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0, - 0x0,0x38,0xdd,0x61,0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0,0x0, - 0x0,0x3a,0xbd,0x43,0x10,0x0,0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0, - 0x0,0x3c,0xa6,0x5f,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0, - 0x0,0x3e,0x86,0x41,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0, - 0x0,0x40,0x66,0x23,0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0, - 0x0,0x42,0x46,0x5,0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0, - 0x0,0x44,0x25,0xe7,0x90,0x0,0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0, - 0x0,0x46,0x5,0xc9,0x90,0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0, - 0x0,0x47,0xee,0xe6,0x10,0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0, - 0x0,0x49,0xce,0xc8,0x10,0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0, - 0x0,0x4b,0xae,0xaa,0x10,0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0, - 0x0,0x4d,0x8e,0x8c,0x10,0x0,0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0, - 0x0,0x4f,0x6e,0x6e,0x10,0x0,0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0, - 0x0,0x51,0x57,0x8a,0x90,0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0, - 0x0,0x53,0x37,0x6c,0x90,0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0, - 0x0,0x55,0x17,0x4e,0x90,0x0,0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0, - 0x0,0x56,0xf7,0x30,0x90,0x0,0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0, - 0x0,0x58,0xd7,0x12,0x90,0x0,0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0, - 0x0,0x5a,0xb6,0xf4,0x90,0x0,0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0, - 0x0,0x5c,0xa0,0x11,0x10,0x0,0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0, - 0x0,0x5e,0x7f,0xf3,0x10,0x0,0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0, - 0x0,0x60,0x5f,0xd5,0x10,0x0,0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0, - 0x0,0x62,0x3f,0xb7,0x10,0x0,0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0, - 0x0,0x64,0x1f,0x99,0x10,0x0,0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0, - 0x0,0x66,0x8,0xb5,0x90,0x0,0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0, - 0x0,0x67,0xe8,0x97,0x90,0x0,0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0, - 0x0,0x69,0xc8,0x79,0x90,0x0,0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0, - 0x0,0x6b,0xa8,0x5b,0x90,0x0,0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0, - 0x0,0x6d,0x88,0x3d,0x90,0x0,0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0, - 0x0,0x6f,0x68,0x1f,0x90,0x0,0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0, - 0x0,0x71,0x51,0x3c,0x10,0x0,0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0, - 0x0,0x73,0x31,0x1e,0x10,0x0,0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0, - 0x0,0x75,0x11,0x0,0x10,0x0,0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0, - 0x0,0x76,0xf0,0xe2,0x10,0x0,0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0, - 0x0,0x78,0xd0,0xc4,0x10,0x0,0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0, - 0x0,0x7a,0xb0,0xa6,0x10,0x0,0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0, - 0x0,0x7c,0x99,0xc2,0x90,0x0,0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0, - 0x0,0x7e,0x79,0xa4,0x90,0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x1,0x3, - 0x2,0x3,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x6,0x4,0x5,0x4,0x6, - 0x4,0x5,0x4,0x6,0x4,0x5,0x4,0x6,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x9,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, - 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, - 0xa,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb, - 0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb, - 0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb, - 0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb, - 0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb, - 0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xff,0xff,0xe7,0xf0,0x0, - 0x0,0xff,0xff,0xe5,0x28,0x0,0x4,0xff,0xff,0xf1,0xf0,0x1,0x8,0xff,0xff,0xe3, - 0xe0,0x0,0xe,0xff,0xff,0xf1,0xf0,0x1,0x8,0xff,0xff,0xe3,0xe0,0x0,0xe,0x0, - 0x0,0x0,0x0,0x1,0x13,0x0,0x0,0x0,0x0,0x1,0x8,0xff,0xff,0xf1,0xf0,0x0, - 0xe,0xff,0xff,0xf1,0xf0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x19,0x0,0x0,0x0, - 0x0,0x1,0x8,0xff,0xff,0xf1,0xf0,0x0,0xe,0x4c,0x4d,0x54,0x0,0x48,0x4d,0x54, - 0x0,0x41,0x5a,0x4f,0x53,0x54,0x0,0x41,0x5a,0x4f,0x54,0x0,0x41,0x5a,0x4f,0x4d, - 0x54,0x0,0x57,0x45,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x1,0x0, - 0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, - 0xa,0x41,0x5a,0x4f,0x54,0x31,0x41,0x5a,0x4f,0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35, - 0x2e,0x30,0x2f,0x30,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30,0x2f,0x31,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Atlantic/Faroe - 0x0,0x0,0x7,0x25, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x80,0x0,0x0,0x0,0x7f, + 0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x46,0x50,0x0,0x0,0x2b,0x30,0x35,0x0,0x0, + 0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0xf8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x0,0x0, + 0x0,0x46,0x50,0x0,0x0,0x2b,0x30,0x35,0x0,0x0,0x0,0xa,0x3c,0x2b,0x30,0x35, + 0x3e,0x2d,0x35,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Etc/GMT-6 + 0x0,0x0,0x0,0x95, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x74,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0x8b, - 0x6d,0xa4,0x58,0x15,0x23,0xeb,0x90,0x16,0x13,0xdc,0x90,0x17,0x3,0xcd,0x90,0x17, - 0xf3,0xbe,0x90,0x18,0xe3,0xaf,0x90,0x19,0xd3,0xa0,0x90,0x1a,0xc3,0x91,0x90,0x1b, - 0xbc,0xbd,0x10,0x1c,0xac,0xae,0x10,0x1d,0x9c,0x9f,0x10,0x1e,0x8c,0x90,0x10,0x1f, - 0x7c,0x81,0x10,0x20,0x6c,0x72,0x10,0x21,0x5c,0x63,0x10,0x22,0x4c,0x54,0x10,0x23, - 0x3c,0x45,0x10,0x24,0x2c,0x36,0x10,0x25,0x1c,0x27,0x10,0x26,0xc,0x18,0x10,0x27, - 0x5,0x43,0x90,0x27,0xf5,0x34,0x90,0x28,0xe5,0x25,0x90,0x29,0xd5,0x16,0x90,0x2a, - 0xc5,0x7,0x90,0x2b,0xb4,0xf8,0x90,0x2c,0xa4,0xe9,0x90,0x2d,0x94,0xda,0x90,0x2e, - 0x84,0xcb,0x90,0x2f,0x74,0xbc,0x90,0x30,0x64,0xad,0x90,0x31,0x5d,0xd9,0x10,0x32, - 0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34,0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36, - 0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39, - 0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b,0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d, - 0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f,0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41, - 0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43,0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45, - 0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49, - 0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c, - 0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e,0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50, - 0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54, - 0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56,0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58, - 0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59,0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b, - 0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d,0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f, - 0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61,0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63, - 0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65,0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67, - 0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68,0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a, - 0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c,0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e, - 0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70,0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72, - 0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74,0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76, - 0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79, - 0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d, - 0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x0,0x1,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0xff, - 0xff,0xf9,0xa8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0xe,0x10,0x1, - 0x8,0x0,0x0,0x0,0x0,0x0,0x4,0x4c,0x4d,0x54,0x0,0x57,0x45,0x54,0x0,0x57, - 0x45,0x53,0x54,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x1,0x1,0x54,0x5a,0x69,0x66, - 0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x74, - 0x0,0x0,0x0,0x4,0x0,0x0,0x0,0xd,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0xff,0xff,0xff,0xff,0x8b,0x6d,0xa4,0x58,0x0,0x0,0x0,0x0,0x15,0x23,0xeb,0x90, - 0x0,0x0,0x0,0x0,0x16,0x13,0xdc,0x90,0x0,0x0,0x0,0x0,0x17,0x3,0xcd,0x90, - 0x0,0x0,0x0,0x0,0x17,0xf3,0xbe,0x90,0x0,0x0,0x0,0x0,0x18,0xe3,0xaf,0x90, - 0x0,0x0,0x0,0x0,0x19,0xd3,0xa0,0x90,0x0,0x0,0x0,0x0,0x1a,0xc3,0x91,0x90, - 0x0,0x0,0x0,0x0,0x1b,0xbc,0xbd,0x10,0x0,0x0,0x0,0x0,0x1c,0xac,0xae,0x10, - 0x0,0x0,0x0,0x0,0x1d,0x9c,0x9f,0x10,0x0,0x0,0x0,0x0,0x1e,0x8c,0x90,0x10, - 0x0,0x0,0x0,0x0,0x1f,0x7c,0x81,0x10,0x0,0x0,0x0,0x0,0x20,0x6c,0x72,0x10, - 0x0,0x0,0x0,0x0,0x21,0x5c,0x63,0x10,0x0,0x0,0x0,0x0,0x22,0x4c,0x54,0x10, - 0x0,0x0,0x0,0x0,0x23,0x3c,0x45,0x10,0x0,0x0,0x0,0x0,0x24,0x2c,0x36,0x10, - 0x0,0x0,0x0,0x0,0x25,0x1c,0x27,0x10,0x0,0x0,0x0,0x0,0x26,0xc,0x18,0x10, - 0x0,0x0,0x0,0x0,0x27,0x5,0x43,0x90,0x0,0x0,0x0,0x0,0x27,0xf5,0x34,0x90, - 0x0,0x0,0x0,0x0,0x28,0xe5,0x25,0x90,0x0,0x0,0x0,0x0,0x29,0xd5,0x16,0x90, - 0x0,0x0,0x0,0x0,0x2a,0xc5,0x7,0x90,0x0,0x0,0x0,0x0,0x2b,0xb4,0xf8,0x90, - 0x0,0x0,0x0,0x0,0x2c,0xa4,0xe9,0x90,0x0,0x0,0x0,0x0,0x2d,0x94,0xda,0x90, - 0x0,0x0,0x0,0x0,0x2e,0x84,0xcb,0x90,0x0,0x0,0x0,0x0,0x2f,0x74,0xbc,0x90, - 0x0,0x0,0x0,0x0,0x30,0x64,0xad,0x90,0x0,0x0,0x0,0x0,0x31,0x5d,0xd9,0x10, - 0x0,0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d,0xbb,0x10, - 0x0,0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d,0x9d,0x10, - 0x0,0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd,0x7f,0x10, - 0x0,0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd,0x61,0x10, - 0x0,0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd,0x43,0x10, - 0x0,0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f,0x90, - 0x0,0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86,0x41,0x90, - 0x0,0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66,0x23,0x90, - 0x0,0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46,0x5,0x90, - 0x0,0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25,0xe7,0x90, - 0x0,0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5,0xc9,0x90, - 0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee,0xe6,0x10, - 0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce,0xc8,0x10, - 0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae,0xaa,0x10, - 0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c,0x10, - 0x0,0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e,0x10, - 0x0,0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57,0x8a,0x90, - 0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37,0x6c,0x90, - 0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17,0x4e,0x90, - 0x0,0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7,0x30,0x90, - 0x0,0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7,0x12,0x90, - 0x0,0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4,0x90, - 0x0,0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0,0x11,0x10, - 0x0,0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3,0x10, - 0x0,0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f,0xd5,0x10, - 0x0,0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f,0xb7,0x10, - 0x0,0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f,0x99,0x10, - 0x0,0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8,0xb5,0x90, - 0x0,0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8,0x97,0x90, - 0x0,0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8,0x79,0x90, - 0x0,0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b,0x90, - 0x0,0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88,0x3d,0x90, - 0x0,0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68,0x1f,0x90, - 0x0,0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51,0x3c,0x10, - 0x0,0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31,0x1e,0x10, - 0x0,0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11,0x0,0x10, - 0x0,0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0,0xe2,0x10, - 0x0,0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0,0xc4,0x10, - 0x0,0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6,0x10, - 0x0,0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99,0xc2,0x90, - 0x0,0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79,0xa4,0x90, - 0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x1,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0xff,0xff,0xf9,0xa8, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0xe,0x10,0x1,0x8,0x0,0x0, - 0x0,0x0,0x0,0x4,0x4c,0x4d,0x54,0x0,0x57,0x45,0x54,0x0,0x57,0x45,0x53,0x54, - 0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x1,0x1,0xa,0x57,0x45,0x54,0x30,0x57,0x45, - 0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2f,0x31,0x2c,0x4d,0x31,0x30,0x2e, - 0x35,0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Atlantic/Jan_Mayen - 0x0,0x0,0x8,0xcb, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x80,0x0,0x0,0x0,0x7f, + 0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x54,0x60,0x0,0x0,0x2b,0x30,0x36,0x0,0x0, + 0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0xf8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x0,0x0, + 0x0,0x54,0x60,0x0,0x0,0x2b,0x30,0x36,0x0,0x0,0x0,0xa,0x3c,0x2b,0x30,0x36, + 0x3e,0x2d,0x36,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Etc/GMT-10 + 0x0,0x0,0x0,0x96, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x8e,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0x9b, - 0x27,0xe3,0x0,0x9b,0xd4,0x7b,0x60,0xc8,0xb7,0x4d,0x60,0xcc,0xe7,0x4b,0x10,0xcd, - 0xa9,0x17,0x90,0xce,0xa2,0x43,0x10,0xcf,0x92,0x34,0x10,0xd0,0x82,0x25,0x10,0xd1, - 0x72,0x16,0x10,0xd2,0x62,0x7,0x10,0xeb,0xaf,0x20,0x90,0xec,0xa8,0x4c,0x10,0xed, - 0x98,0x3d,0x10,0xee,0x88,0x2e,0x10,0xef,0x78,0x1f,0x10,0xf0,0x68,0x10,0x10,0xf1, - 0x58,0x1,0x10,0xf2,0x47,0xf2,0x10,0xf3,0x37,0xe3,0x10,0xf4,0x27,0xd4,0x10,0xf5, - 0x17,0xc5,0x10,0xf6,0x10,0xf0,0x90,0xf7,0x2f,0x6,0x10,0xf7,0xf0,0xd2,0x90,0x12, - 0xce,0x97,0xf0,0x13,0x4d,0x44,0x10,0x14,0x33,0xfa,0x90,0x15,0x23,0xeb,0x90,0x16, - 0x13,0xdc,0x90,0x17,0x3,0xcd,0x90,0x17,0xf3,0xbe,0x90,0x18,0xe3,0xaf,0x90,0x19, - 0xd3,0xa0,0x90,0x1a,0xc3,0x91,0x90,0x1b,0xbc,0xbd,0x10,0x1c,0xac,0xae,0x10,0x1d, - 0x9c,0x9f,0x10,0x1e,0x8c,0x90,0x10,0x1f,0x7c,0x81,0x10,0x20,0x6c,0x72,0x10,0x21, - 0x5c,0x63,0x10,0x22,0x4c,0x54,0x10,0x23,0x3c,0x45,0x10,0x24,0x2c,0x36,0x10,0x25, - 0x1c,0x27,0x10,0x26,0xc,0x18,0x10,0x27,0x5,0x43,0x90,0x27,0xf5,0x34,0x90,0x28, - 0xe5,0x25,0x90,0x29,0xd5,0x16,0x90,0x2a,0xc5,0x7,0x90,0x2b,0xb4,0xf8,0x90,0x2c, - 0xa4,0xe9,0x90,0x2d,0x94,0xda,0x90,0x2e,0x84,0xcb,0x90,0x2f,0x74,0xbc,0x90,0x30, - 0x64,0xad,0x90,0x31,0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34, - 0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38, - 0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b, - 0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f, - 0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43, - 0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47, - 0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a, - 0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e, - 0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52, - 0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56, - 0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59, - 0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d, - 0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61, - 0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65, - 0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68, - 0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c, - 0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70, - 0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74, - 0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78, - 0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b, - 0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f, - 0x8e,0x7f,0x90,0x2,0x1,0x2,0x1,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x2,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x0,0x0,0xa,0x14,0x0,0x0,0x0,0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe, - 0x10,0x0,0x9,0x0,0x0,0xe,0x10,0x0,0x9,0x0,0x0,0x1c,0x20,0x1,0x4,0x0, - 0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe,0x10,0x0,0x9,0x4c,0x4d,0x54,0x0,0x43, - 0x45,0x53,0x54,0x0,0x43,0x45,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x0, - 0x0,0x0,0x0,0x0,0x1,0x1,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0, - 0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0x0,0x0,0x0,0x7,0x0,0x0, - 0x0,0xd,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x72,0xee, - 0x24,0x6c,0xff,0xff,0xff,0xff,0x9b,0x27,0xe3,0x0,0xff,0xff,0xff,0xff,0x9b,0xd4, - 0x7b,0x60,0xff,0xff,0xff,0xff,0xc8,0xb7,0x4d,0x60,0xff,0xff,0xff,0xff,0xcc,0xe7, - 0x4b,0x10,0xff,0xff,0xff,0xff,0xcd,0xa9,0x17,0x90,0xff,0xff,0xff,0xff,0xce,0xa2, - 0x43,0x10,0xff,0xff,0xff,0xff,0xcf,0x92,0x34,0x10,0xff,0xff,0xff,0xff,0xd0,0x82, - 0x25,0x10,0xff,0xff,0xff,0xff,0xd1,0x72,0x16,0x10,0xff,0xff,0xff,0xff,0xd2,0x62, - 0x7,0x10,0xff,0xff,0xff,0xff,0xeb,0xaf,0x20,0x90,0xff,0xff,0xff,0xff,0xec,0xa8, - 0x4c,0x10,0xff,0xff,0xff,0xff,0xed,0x98,0x3d,0x10,0xff,0xff,0xff,0xff,0xee,0x88, - 0x2e,0x10,0xff,0xff,0xff,0xff,0xef,0x78,0x1f,0x10,0xff,0xff,0xff,0xff,0xf0,0x68, - 0x10,0x10,0xff,0xff,0xff,0xff,0xf1,0x58,0x1,0x10,0xff,0xff,0xff,0xff,0xf2,0x47, - 0xf2,0x10,0xff,0xff,0xff,0xff,0xf3,0x37,0xe3,0x10,0xff,0xff,0xff,0xff,0xf4,0x27, - 0xd4,0x10,0xff,0xff,0xff,0xff,0xf5,0x17,0xc5,0x10,0xff,0xff,0xff,0xff,0xf6,0x10, - 0xf0,0x90,0xff,0xff,0xff,0xff,0xf7,0x2f,0x6,0x10,0xff,0xff,0xff,0xff,0xf7,0xf0, - 0xd2,0x90,0x0,0x0,0x0,0x0,0x12,0xce,0x97,0xf0,0x0,0x0,0x0,0x0,0x13,0x4d, - 0x44,0x10,0x0,0x0,0x0,0x0,0x14,0x33,0xfa,0x90,0x0,0x0,0x0,0x0,0x15,0x23, - 0xeb,0x90,0x0,0x0,0x0,0x0,0x16,0x13,0xdc,0x90,0x0,0x0,0x0,0x0,0x17,0x3, - 0xcd,0x90,0x0,0x0,0x0,0x0,0x17,0xf3,0xbe,0x90,0x0,0x0,0x0,0x0,0x18,0xe3, - 0xaf,0x90,0x0,0x0,0x0,0x0,0x19,0xd3,0xa0,0x90,0x0,0x0,0x0,0x0,0x1a,0xc3, - 0x91,0x90,0x0,0x0,0x0,0x0,0x1b,0xbc,0xbd,0x10,0x0,0x0,0x0,0x0,0x1c,0xac, - 0xae,0x10,0x0,0x0,0x0,0x0,0x1d,0x9c,0x9f,0x10,0x0,0x0,0x0,0x0,0x1e,0x8c, - 0x90,0x10,0x0,0x0,0x0,0x0,0x1f,0x7c,0x81,0x10,0x0,0x0,0x0,0x0,0x20,0x6c, - 0x72,0x10,0x0,0x0,0x0,0x0,0x21,0x5c,0x63,0x10,0x0,0x0,0x0,0x0,0x22,0x4c, - 0x54,0x10,0x0,0x0,0x0,0x0,0x23,0x3c,0x45,0x10,0x0,0x0,0x0,0x0,0x24,0x2c, - 0x36,0x10,0x0,0x0,0x0,0x0,0x25,0x1c,0x27,0x10,0x0,0x0,0x0,0x0,0x26,0xc, - 0x18,0x10,0x0,0x0,0x0,0x0,0x27,0x5,0x43,0x90,0x0,0x0,0x0,0x0,0x27,0xf5, - 0x34,0x90,0x0,0x0,0x0,0x0,0x28,0xe5,0x25,0x90,0x0,0x0,0x0,0x0,0x29,0xd5, - 0x16,0x90,0x0,0x0,0x0,0x0,0x2a,0xc5,0x7,0x90,0x0,0x0,0x0,0x0,0x2b,0xb4, - 0xf8,0x90,0x0,0x0,0x0,0x0,0x2c,0xa4,0xe9,0x90,0x0,0x0,0x0,0x0,0x2d,0x94, - 0xda,0x90,0x0,0x0,0x0,0x0,0x2e,0x84,0xcb,0x90,0x0,0x0,0x0,0x0,0x2f,0x74, - 0xbc,0x90,0x0,0x0,0x0,0x0,0x30,0x64,0xad,0x90,0x0,0x0,0x0,0x0,0x31,0x5d, - 0xd9,0x10,0x0,0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d, - 0xbb,0x10,0x0,0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d, - 0x9d,0x10,0x0,0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd, - 0x7f,0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd, - 0x61,0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd, - 0x43,0x10,0x0,0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6, - 0x5f,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86, - 0x41,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66, - 0x23,0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46, - 0x5,0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25, - 0xe7,0x90,0x0,0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5, - 0xc9,0x90,0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee, - 0xe6,0x10,0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce, - 0xc8,0x10,0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae, - 0xaa,0x10,0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e, - 0x8c,0x10,0x0,0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e, - 0x6e,0x10,0x0,0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57, - 0x8a,0x90,0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37, - 0x6c,0x90,0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17, - 0x4e,0x90,0x0,0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7, - 0x30,0x90,0x0,0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7, - 0x12,0x90,0x0,0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6, - 0xf4,0x90,0x0,0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0, - 0x11,0x10,0x0,0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f, - 0xf3,0x10,0x0,0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f, - 0xd5,0x10,0x0,0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f, - 0xb7,0x10,0x0,0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f, - 0x99,0x10,0x0,0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8, - 0xb5,0x90,0x0,0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8, - 0x97,0x90,0x0,0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8, - 0x79,0x90,0x0,0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8, - 0x5b,0x90,0x0,0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88, - 0x3d,0x90,0x0,0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68, - 0x1f,0x90,0x0,0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51, - 0x3c,0x10,0x0,0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31, - 0x1e,0x10,0x0,0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11, - 0x0,0x10,0x0,0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0, - 0xe2,0x10,0x0,0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0, - 0xc4,0x10,0x0,0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0, - 0xa6,0x10,0x0,0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99, - 0xc2,0x90,0x0,0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79, - 0xa4,0x90,0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x2,0x1,0x2,0x1,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x2,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x0,0x0,0xa,0x14,0x0,0x0,0x0, - 0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe,0x10,0x0,0x9,0x0,0x0,0xe,0x10,0x0, - 0x9,0x0,0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe, - 0x10,0x0,0x9,0x4c,0x4d,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x43,0x45,0x54,0x0, - 0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0xa,0x43, - 0x45,0x54,0x2d,0x31,0x43,0x45,0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2c, - 0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30,0x2f,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Atlantic/Cape_Verde - 0x0,0x0,0x0,0xfe, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x80,0x0,0x0,0x0,0x7f, + 0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x8c,0xa0,0x0,0x0,0x2b,0x31,0x30,0x0,0x0, + 0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0xf8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x0,0x0, + 0x0,0x8c,0xa0,0x0,0x0,0x2b,0x31,0x30,0x0,0x0,0x0,0xa,0x3c,0x2b,0x31,0x30, + 0x3e,0x2d,0x31,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Etc/GMT-7 + 0x0,0x0,0x0,0x95, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x5,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0x89, - 0x7f,0x51,0x8c,0xcc,0x95,0x9c,0x20,0xd2,0x74,0x7c,0x10,0xb,0x17,0xf7,0x40,0x0, - 0x1,0x2,0x1,0x3,0xff,0xff,0xe9,0xf4,0x0,0x0,0xff,0xff,0xe3,0xe0,0x0,0x4, - 0xff,0xff,0xf1,0xf0,0x1,0x8,0xff,0xff,0xf1,0xf0,0x0,0x4,0x4c,0x4d,0x54,0x0, - 0x43,0x56,0x54,0x0,0x43,0x56,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x80,0x0,0x0,0x0,0x7f, + 0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x62,0x70,0x0,0x0,0x2b,0x30,0x37,0x0,0x0, 0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0xd,0xf8,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x89,0x7f,0x51,0x8c,0xff,0xff,0xff, - 0xff,0xcc,0x95,0x9c,0x20,0xff,0xff,0xff,0xff,0xd2,0x74,0x7c,0x10,0x0,0x0,0x0, - 0x0,0xb,0x17,0xf7,0x40,0x0,0x1,0x2,0x1,0x3,0xff,0xff,0xe9,0xf4,0x0,0x0, - 0xff,0xff,0xe3,0xe0,0x0,0x4,0xff,0xff,0xf1,0xf0,0x1,0x8,0xff,0xff,0xf1,0xf0, - 0x0,0x4,0x4c,0x4d,0x54,0x0,0x43,0x56,0x54,0x0,0x43,0x56,0x53,0x54,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x43,0x56,0x54,0x31,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Atlantic/South_Georgia - 0x0,0x0,0x0,0x94, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0xf8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x0,0x0, + 0x0,0x62,0x70,0x0,0x0,0x2b,0x30,0x37,0x0,0x0,0x0,0xa,0x3c,0x2b,0x30,0x37, + 0x3e,0x2d,0x37,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Etc/GMT-11 + 0x0,0x0,0x0,0x96, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0xff,0xff,0xe3,0xe0,0x0, - 0x0,0x47,0x53,0x54,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0, - 0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x69, - 0x86,0xfd,0xc0,0x0,0x1,0xff,0xff,0xdd,0xc0,0x0,0x0,0xff,0xff,0xe3,0xe0,0x0, - 0x4,0x4c,0x4d,0x54,0x0,0x47,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0xa,0x47,0x53, - 0x54,0x32,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Atlantic/Madeira - 0x0,0x0,0xd,0x96, + 0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x80,0x0,0x0,0x0,0x7f, + 0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x9a,0xb0,0x0,0x0,0x2b,0x31,0x31,0x0,0x0, + 0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0xf8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x0,0x0, + 0x0,0x9a,0xb0,0x0,0x0,0x2b,0x31,0x31,0x0,0x0,0x0,0xa,0x3c,0x2b,0x31,0x31, + 0x3e,0x2d,0x31,0x31,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Etc/GMT-8 + 0x0,0x0,0x0,0x95, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xdd,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x22,0x80,0x0,0x0,0x0,0x92, - 0xe6,0x9e,0x58,0x9b,0x4b,0x7b,0x80,0x9b,0xfe,0xd5,0x90,0x9c,0x9c,0xfb,0x80,0x9d, - 0xc9,0x91,0x80,0x9e,0x7f,0x80,0x80,0x9f,0xaa,0xc5,0x0,0xa0,0x5f,0x62,0x80,0xa1, - 0x8b,0xf8,0x80,0xa2,0x41,0xe7,0x80,0xa3,0x6e,0x7d,0x80,0xa4,0x23,0x1b,0x0,0xa5, - 0x4f,0xb1,0x0,0xaa,0x5,0xfd,0x80,0xaa,0xf4,0x9d,0x0,0xad,0xc9,0xb6,0x0,0xae, - 0xa7,0x32,0x0,0xaf,0xa0,0x5d,0x80,0xb0,0x87,0x14,0x0,0xb1,0x89,0x7a,0x0,0xb2, - 0x70,0x30,0x80,0xb3,0x72,0x96,0x80,0xb4,0x50,0x12,0x80,0xb7,0x32,0x5a,0x80,0xb8, - 0xf,0xd6,0x80,0xb8,0xff,0xc7,0x80,0xb9,0xef,0xb8,0x80,0xbc,0xc8,0xc6,0x0,0xbd, - 0xb8,0xb7,0x0,0xbe,0x9f,0x6d,0x80,0xbf,0x98,0x99,0x0,0xc0,0x9a,0xff,0x0,0xc1, - 0x78,0x7b,0x0,0xc2,0x68,0x6c,0x0,0xc3,0x58,0x5d,0x0,0xc4,0x3f,0x13,0x80,0xc5, - 0x38,0x3f,0x0,0xc6,0x3a,0xa5,0x0,0xc7,0x58,0xba,0x80,0xc7,0xd9,0xed,0x80,0xc9, - 0x1,0x3d,0x80,0xc9,0xf1,0x2e,0x80,0xca,0xe2,0x71,0x0,0xcb,0xb5,0x61,0x0,0xcb, - 0xec,0xb1,0xf0,0xcc,0x80,0x59,0xf0,0xcc,0xdc,0xb1,0x0,0xcd,0x95,0x43,0x0,0xcd, - 0xc3,0x59,0x70,0xce,0x72,0xb0,0xf0,0xce,0xc5,0xcd,0x80,0xcf,0x75,0x25,0x0,0xcf, - 0xac,0x75,0xf0,0xd0,0x52,0x92,0xf0,0xd0,0xa5,0xaf,0x80,0xd1,0x55,0x7,0x0,0xd1, - 0x8c,0x57,0xf0,0xd2,0x32,0x74,0xf0,0xd2,0x85,0x91,0x80,0xd3,0x59,0xd3,0x0,0xd4, - 0x49,0xc4,0x0,0xd5,0x39,0xdf,0x30,0xd6,0x29,0xd0,0x30,0xd7,0x19,0xc1,0x30,0xd8, - 0x9,0xb2,0x30,0xd8,0xf9,0xa3,0x30,0xd9,0xe9,0x94,0x30,0xdc,0xb9,0x67,0x30,0xdd, - 0xb2,0x92,0xb0,0xde,0xa2,0x83,0xb0,0xdf,0x92,0x74,0xb0,0xe0,0x82,0x65,0xb0,0xe1, - 0x72,0x56,0xb0,0xe2,0x62,0x47,0xb0,0xe3,0x52,0x38,0xb0,0xe4,0x42,0x29,0xb0,0xe5, - 0x32,0x1a,0xb0,0xe6,0x22,0xb,0xb0,0xe7,0x1b,0x37,0x30,0xe8,0xb,0x28,0x30,0xe8, - 0xfb,0x19,0x30,0xe9,0xeb,0xa,0x30,0xea,0xda,0xfb,0x30,0xeb,0xca,0xec,0x30,0xec, - 0xba,0xdd,0x30,0xed,0xaa,0xce,0x30,0xee,0x9a,0xbf,0x30,0xef,0x8a,0xb0,0x30,0xf0, - 0x7a,0xa1,0x30,0xf1,0x6a,0x92,0x30,0xf2,0x63,0xbd,0xb0,0xf3,0x53,0xae,0xb0,0xf4, - 0x43,0x9f,0xb0,0xf5,0x33,0x90,0xb0,0xf6,0x23,0x81,0xb0,0xf7,0x13,0x72,0xb0,0xf8, - 0x3,0x63,0xb0,0xf8,0xf3,0x54,0xb0,0xd,0x9b,0x1b,0x0,0xe,0x8b,0xc,0x0,0xf, - 0x84,0x37,0x80,0x10,0x74,0x28,0x80,0x11,0x64,0x19,0x80,0x12,0x54,0x18,0x90,0x13, - 0x43,0xfb,0x80,0x14,0x33,0xfa,0x90,0x15,0x23,0xeb,0x90,0x16,0x13,0xdc,0x90,0x17, - 0x3,0xcd,0x90,0x17,0xf3,0xbe,0x90,0x18,0xe3,0xbd,0xa0,0x19,0xd3,0xa0,0x90,0x1a, - 0xc3,0x91,0x90,0x1b,0xbc,0xbd,0x10,0x1c,0xac,0xae,0x10,0x1d,0x9c,0x9f,0x10,0x1e, - 0x8c,0x90,0x10,0x1f,0x7c,0x81,0x10,0x20,0x6c,0x72,0x10,0x21,0x5c,0x63,0x10,0x22, - 0x4c,0x54,0x10,0x23,0x3c,0x45,0x10,0x24,0x2c,0x36,0x10,0x25,0x1c,0x27,0x10,0x26, - 0xc,0x18,0x10,0x27,0x5,0x43,0x90,0x27,0xf5,0x34,0x90,0x28,0xe5,0x25,0x90,0x29, - 0xd5,0x16,0x90,0x2a,0xc5,0x7,0x90,0x2b,0xb4,0xf8,0x90,0x2c,0xa4,0xe9,0x90,0x2d, - 0x94,0xda,0x90,0x2e,0x84,0xcb,0x90,0x2f,0x74,0xbc,0x90,0x30,0x64,0xad,0x90,0x31, - 0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34,0x52,0x96,0x10,0x35, - 0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x38, - 0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b,0xdb,0x58,0x90,0x3c, - 0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f,0x9b,0x1c,0x90,0x40, - 0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43,0x64,0x1b,0x10,0x44, - 0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47, - 0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b, - 0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e,0xac,0xa1,0x90,0x4f, - 0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53, - 0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56,0x2c,0x29,0x90,0x56, - 0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59,0xf5,0x28,0x10,0x5a, - 0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d,0xb4,0xec,0x10,0x5e, - 0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61,0x7d,0xea,0x90,0x62, - 0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65,0x3d,0xae,0x90,0x66, - 0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68,0xfd,0x72,0x90,0x69, - 0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c,0xc6,0x71,0x10,0x6d, - 0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70,0x86,0x35,0x10,0x71, - 0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74,0x45,0xf9,0x10,0x75, - 0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78, - 0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c, - 0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x1, - 0x3,0x2,0x3,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x6,0x4,0x5,0x4, - 0x6,0x4,0x5,0x4,0x6,0x4,0x5,0x4,0x6,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x9,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0xa, - 0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa, - 0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa, - 0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa, - 0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa, - 0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa, - 0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa, - 0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xff,0xff,0xf0,0x28, - 0x0,0x0,0xff,0xff,0xf0,0x28,0x0,0x4,0x0,0x0,0x0,0x0,0x1,0x8,0xff,0xff, - 0xf1,0xf0,0x0,0xe,0x0,0x0,0x0,0x0,0x1,0x8,0xff,0xff,0xf1,0xf0,0x0,0xe, - 0x0,0x0,0xe,0x10,0x1,0x13,0x0,0x0,0xe,0x10,0x1,0x19,0x0,0x0,0x0,0x0, - 0x0,0x1e,0x0,0x0,0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0x0,0x0,0x1e,0x0,0x0, - 0xe,0x10,0x1,0x19,0x4c,0x4d,0x54,0x0,0x46,0x4d,0x54,0x0,0x4d,0x41,0x44,0x53, - 0x54,0x0,0x4d,0x41,0x44,0x54,0x0,0x4d,0x41,0x44,0x4d,0x54,0x0,0x57,0x45,0x53, - 0x54,0x0,0x57,0x45,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x1,0x0, - 0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x54,0x5a, - 0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xde,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x22,0xf8,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xff,0xff,0xff,0xff,0x5e,0x3d,0x13,0x58,0xff,0xff,0xff,0xff,0x92,0xe6, - 0x9e,0x58,0xff,0xff,0xff,0xff,0x9b,0x4b,0x7b,0x80,0xff,0xff,0xff,0xff,0x9b,0xfe, - 0xd5,0x90,0xff,0xff,0xff,0xff,0x9c,0x9c,0xfb,0x80,0xff,0xff,0xff,0xff,0x9d,0xc9, - 0x91,0x80,0xff,0xff,0xff,0xff,0x9e,0x7f,0x80,0x80,0xff,0xff,0xff,0xff,0x9f,0xaa, - 0xc5,0x0,0xff,0xff,0xff,0xff,0xa0,0x5f,0x62,0x80,0xff,0xff,0xff,0xff,0xa1,0x8b, - 0xf8,0x80,0xff,0xff,0xff,0xff,0xa2,0x41,0xe7,0x80,0xff,0xff,0xff,0xff,0xa3,0x6e, - 0x7d,0x80,0xff,0xff,0xff,0xff,0xa4,0x23,0x1b,0x0,0xff,0xff,0xff,0xff,0xa5,0x4f, - 0xb1,0x0,0xff,0xff,0xff,0xff,0xaa,0x5,0xfd,0x80,0xff,0xff,0xff,0xff,0xaa,0xf4, - 0x9d,0x0,0xff,0xff,0xff,0xff,0xad,0xc9,0xb6,0x0,0xff,0xff,0xff,0xff,0xae,0xa7, - 0x32,0x0,0xff,0xff,0xff,0xff,0xaf,0xa0,0x5d,0x80,0xff,0xff,0xff,0xff,0xb0,0x87, - 0x14,0x0,0xff,0xff,0xff,0xff,0xb1,0x89,0x7a,0x0,0xff,0xff,0xff,0xff,0xb2,0x70, - 0x30,0x80,0xff,0xff,0xff,0xff,0xb3,0x72,0x96,0x80,0xff,0xff,0xff,0xff,0xb4,0x50, - 0x12,0x80,0xff,0xff,0xff,0xff,0xb7,0x32,0x5a,0x80,0xff,0xff,0xff,0xff,0xb8,0xf, - 0xd6,0x80,0xff,0xff,0xff,0xff,0xb8,0xff,0xc7,0x80,0xff,0xff,0xff,0xff,0xb9,0xef, - 0xb8,0x80,0xff,0xff,0xff,0xff,0xbc,0xc8,0xc6,0x0,0xff,0xff,0xff,0xff,0xbd,0xb8, - 0xb7,0x0,0xff,0xff,0xff,0xff,0xbe,0x9f,0x6d,0x80,0xff,0xff,0xff,0xff,0xbf,0x98, - 0x99,0x0,0xff,0xff,0xff,0xff,0xc0,0x9a,0xff,0x0,0xff,0xff,0xff,0xff,0xc1,0x78, - 0x7b,0x0,0xff,0xff,0xff,0xff,0xc2,0x68,0x6c,0x0,0xff,0xff,0xff,0xff,0xc3,0x58, - 0x5d,0x0,0xff,0xff,0xff,0xff,0xc4,0x3f,0x13,0x80,0xff,0xff,0xff,0xff,0xc5,0x38, - 0x3f,0x0,0xff,0xff,0xff,0xff,0xc6,0x3a,0xa5,0x0,0xff,0xff,0xff,0xff,0xc7,0x58, - 0xba,0x80,0xff,0xff,0xff,0xff,0xc7,0xd9,0xed,0x80,0xff,0xff,0xff,0xff,0xc9,0x1, - 0x3d,0x80,0xff,0xff,0xff,0xff,0xc9,0xf1,0x2e,0x80,0xff,0xff,0xff,0xff,0xca,0xe2, - 0x71,0x0,0xff,0xff,0xff,0xff,0xcb,0xb5,0x61,0x0,0xff,0xff,0xff,0xff,0xcb,0xec, - 0xb1,0xf0,0xff,0xff,0xff,0xff,0xcc,0x80,0x59,0xf0,0xff,0xff,0xff,0xff,0xcc,0xdc, - 0xb1,0x0,0xff,0xff,0xff,0xff,0xcd,0x95,0x43,0x0,0xff,0xff,0xff,0xff,0xcd,0xc3, - 0x59,0x70,0xff,0xff,0xff,0xff,0xce,0x72,0xb0,0xf0,0xff,0xff,0xff,0xff,0xce,0xc5, - 0xcd,0x80,0xff,0xff,0xff,0xff,0xcf,0x75,0x25,0x0,0xff,0xff,0xff,0xff,0xcf,0xac, - 0x75,0xf0,0xff,0xff,0xff,0xff,0xd0,0x52,0x92,0xf0,0xff,0xff,0xff,0xff,0xd0,0xa5, - 0xaf,0x80,0xff,0xff,0xff,0xff,0xd1,0x55,0x7,0x0,0xff,0xff,0xff,0xff,0xd1,0x8c, - 0x57,0xf0,0xff,0xff,0xff,0xff,0xd2,0x32,0x74,0xf0,0xff,0xff,0xff,0xff,0xd2,0x85, - 0x91,0x80,0xff,0xff,0xff,0xff,0xd3,0x59,0xd3,0x0,0xff,0xff,0xff,0xff,0xd4,0x49, - 0xc4,0x0,0xff,0xff,0xff,0xff,0xd5,0x39,0xdf,0x30,0xff,0xff,0xff,0xff,0xd6,0x29, - 0xd0,0x30,0xff,0xff,0xff,0xff,0xd7,0x19,0xc1,0x30,0xff,0xff,0xff,0xff,0xd8,0x9, - 0xb2,0x30,0xff,0xff,0xff,0xff,0xd8,0xf9,0xa3,0x30,0xff,0xff,0xff,0xff,0xd9,0xe9, - 0x94,0x30,0xff,0xff,0xff,0xff,0xdc,0xb9,0x67,0x30,0xff,0xff,0xff,0xff,0xdd,0xb2, - 0x92,0xb0,0xff,0xff,0xff,0xff,0xde,0xa2,0x83,0xb0,0xff,0xff,0xff,0xff,0xdf,0x92, - 0x74,0xb0,0xff,0xff,0xff,0xff,0xe0,0x82,0x65,0xb0,0xff,0xff,0xff,0xff,0xe1,0x72, - 0x56,0xb0,0xff,0xff,0xff,0xff,0xe2,0x62,0x47,0xb0,0xff,0xff,0xff,0xff,0xe3,0x52, - 0x38,0xb0,0xff,0xff,0xff,0xff,0xe4,0x42,0x29,0xb0,0xff,0xff,0xff,0xff,0xe5,0x32, - 0x1a,0xb0,0xff,0xff,0xff,0xff,0xe6,0x22,0xb,0xb0,0xff,0xff,0xff,0xff,0xe7,0x1b, - 0x37,0x30,0xff,0xff,0xff,0xff,0xe8,0xb,0x28,0x30,0xff,0xff,0xff,0xff,0xe8,0xfb, - 0x19,0x30,0xff,0xff,0xff,0xff,0xe9,0xeb,0xa,0x30,0xff,0xff,0xff,0xff,0xea,0xda, - 0xfb,0x30,0xff,0xff,0xff,0xff,0xeb,0xca,0xec,0x30,0xff,0xff,0xff,0xff,0xec,0xba, - 0xdd,0x30,0xff,0xff,0xff,0xff,0xed,0xaa,0xce,0x30,0xff,0xff,0xff,0xff,0xee,0x9a, - 0xbf,0x30,0xff,0xff,0xff,0xff,0xef,0x8a,0xb0,0x30,0xff,0xff,0xff,0xff,0xf0,0x7a, - 0xa1,0x30,0xff,0xff,0xff,0xff,0xf1,0x6a,0x92,0x30,0xff,0xff,0xff,0xff,0xf2,0x63, - 0xbd,0xb0,0xff,0xff,0xff,0xff,0xf3,0x53,0xae,0xb0,0xff,0xff,0xff,0xff,0xf4,0x43, - 0x9f,0xb0,0xff,0xff,0xff,0xff,0xf5,0x33,0x90,0xb0,0xff,0xff,0xff,0xff,0xf6,0x23, - 0x81,0xb0,0xff,0xff,0xff,0xff,0xf7,0x13,0x72,0xb0,0xff,0xff,0xff,0xff,0xf8,0x3, - 0x63,0xb0,0xff,0xff,0xff,0xff,0xf8,0xf3,0x54,0xb0,0x0,0x0,0x0,0x0,0xd,0x9b, - 0x1b,0x0,0x0,0x0,0x0,0x0,0xe,0x8b,0xc,0x0,0x0,0x0,0x0,0x0,0xf,0x84, - 0x37,0x80,0x0,0x0,0x0,0x0,0x10,0x74,0x28,0x80,0x0,0x0,0x0,0x0,0x11,0x64, - 0x19,0x80,0x0,0x0,0x0,0x0,0x12,0x54,0x18,0x90,0x0,0x0,0x0,0x0,0x13,0x43, - 0xfb,0x80,0x0,0x0,0x0,0x0,0x14,0x33,0xfa,0x90,0x0,0x0,0x0,0x0,0x15,0x23, - 0xeb,0x90,0x0,0x0,0x0,0x0,0x16,0x13,0xdc,0x90,0x0,0x0,0x0,0x0,0x17,0x3, - 0xcd,0x90,0x0,0x0,0x0,0x0,0x17,0xf3,0xbe,0x90,0x0,0x0,0x0,0x0,0x18,0xe3, - 0xbd,0xa0,0x0,0x0,0x0,0x0,0x19,0xd3,0xa0,0x90,0x0,0x0,0x0,0x0,0x1a,0xc3, - 0x91,0x90,0x0,0x0,0x0,0x0,0x1b,0xbc,0xbd,0x10,0x0,0x0,0x0,0x0,0x1c,0xac, - 0xae,0x10,0x0,0x0,0x0,0x0,0x1d,0x9c,0x9f,0x10,0x0,0x0,0x0,0x0,0x1e,0x8c, - 0x90,0x10,0x0,0x0,0x0,0x0,0x1f,0x7c,0x81,0x10,0x0,0x0,0x0,0x0,0x20,0x6c, - 0x72,0x10,0x0,0x0,0x0,0x0,0x21,0x5c,0x63,0x10,0x0,0x0,0x0,0x0,0x22,0x4c, - 0x54,0x10,0x0,0x0,0x0,0x0,0x23,0x3c,0x45,0x10,0x0,0x0,0x0,0x0,0x24,0x2c, - 0x36,0x10,0x0,0x0,0x0,0x0,0x25,0x1c,0x27,0x10,0x0,0x0,0x0,0x0,0x26,0xc, - 0x18,0x10,0x0,0x0,0x0,0x0,0x27,0x5,0x43,0x90,0x0,0x0,0x0,0x0,0x27,0xf5, - 0x34,0x90,0x0,0x0,0x0,0x0,0x28,0xe5,0x25,0x90,0x0,0x0,0x0,0x0,0x29,0xd5, - 0x16,0x90,0x0,0x0,0x0,0x0,0x2a,0xc5,0x7,0x90,0x0,0x0,0x0,0x0,0x2b,0xb4, - 0xf8,0x90,0x0,0x0,0x0,0x0,0x2c,0xa4,0xe9,0x90,0x0,0x0,0x0,0x0,0x2d,0x94, - 0xda,0x90,0x0,0x0,0x0,0x0,0x2e,0x84,0xcb,0x90,0x0,0x0,0x0,0x0,0x2f,0x74, - 0xbc,0x90,0x0,0x0,0x0,0x0,0x30,0x64,0xad,0x90,0x0,0x0,0x0,0x0,0x31,0x5d, - 0xd9,0x10,0x0,0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d, - 0xbb,0x10,0x0,0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d, - 0x9d,0x10,0x0,0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd, - 0x7f,0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd, - 0x61,0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd, - 0x43,0x10,0x0,0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6, - 0x5f,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86, - 0x41,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66, - 0x23,0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46, - 0x5,0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25, - 0xe7,0x90,0x0,0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5, - 0xc9,0x90,0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee, - 0xe6,0x10,0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce, - 0xc8,0x10,0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae, - 0xaa,0x10,0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e, - 0x8c,0x10,0x0,0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e, - 0x6e,0x10,0x0,0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57, - 0x8a,0x90,0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37, - 0x6c,0x90,0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17, - 0x4e,0x90,0x0,0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7, - 0x30,0x90,0x0,0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7, - 0x12,0x90,0x0,0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6, - 0xf4,0x90,0x0,0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0, - 0x11,0x10,0x0,0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f, - 0xf3,0x10,0x0,0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f, - 0xd5,0x10,0x0,0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f, - 0xb7,0x10,0x0,0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f, - 0x99,0x10,0x0,0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8, - 0xb5,0x90,0x0,0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8, - 0x97,0x90,0x0,0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8, - 0x79,0x90,0x0,0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8, - 0x5b,0x90,0x0,0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88, - 0x3d,0x90,0x0,0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68, - 0x1f,0x90,0x0,0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51, - 0x3c,0x10,0x0,0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31, - 0x1e,0x10,0x0,0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11, - 0x0,0x10,0x0,0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0, - 0xe2,0x10,0x0,0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0, - 0xc4,0x10,0x0,0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0, - 0xa6,0x10,0x0,0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99, - 0xc2,0x90,0x0,0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79, - 0xa4,0x90,0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x1,0x3,0x2,0x3,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x6,0x4,0x5,0x4,0x6,0x4,0x5,0x4, - 0x6,0x4,0x5,0x4,0x6,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x9,0x7,0x8, - 0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0xa,0xb,0xa,0xb,0xa, - 0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa, - 0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa, - 0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa, - 0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa, - 0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa, - 0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa, - 0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xff,0xff,0xf0,0x28,0x0,0x0,0xff,0xff, - 0xf0,0x28,0x0,0x4,0x0,0x0,0x0,0x0,0x1,0x8,0xff,0xff,0xf1,0xf0,0x0,0xe, - 0x0,0x0,0x0,0x0,0x1,0x8,0xff,0xff,0xf1,0xf0,0x0,0xe,0x0,0x0,0xe,0x10, - 0x1,0x13,0x0,0x0,0xe,0x10,0x1,0x19,0x0,0x0,0x0,0x0,0x0,0x1e,0x0,0x0, - 0x0,0x0,0x0,0x1e,0x0,0x0,0x0,0x0,0x0,0x1e,0x0,0x0,0xe,0x10,0x1,0x19, - 0x4c,0x4d,0x54,0x0,0x46,0x4d,0x54,0x0,0x4d,0x41,0x44,0x53,0x54,0x0,0x4d,0x41, - 0x44,0x54,0x0,0x4d,0x41,0x44,0x4d,0x54,0x0,0x57,0x45,0x53,0x54,0x0,0x57,0x45, - 0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x1,0x0,0x1,0x1,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0xa,0x57,0x45,0x54,0x30,0x57, - 0x45,0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2f,0x31,0x2c,0x4d,0x31,0x30, - 0x2e,0x35,0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Atlantic/Bermuda - 0x0,0x0,0x7,0xd4, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x80,0x0,0x0,0x0,0x7f, + 0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x70,0x80,0x0,0x0,0x2b,0x30,0x38,0x0,0x0, + 0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0xf8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x0,0x0, + 0x0,0x70,0x80,0x0,0x0,0x2b,0x30,0x38,0x0,0x0,0x0,0xa,0x3c,0x2b,0x30,0x38, + 0x3e,0x2d,0x38,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Etc/GMT+10 + 0x0,0x0,0x0,0x95, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x82,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0xb4, - 0xc3,0x1d,0xe6,0x8,0x20,0xb3,0x60,0x9,0x10,0x96,0x50,0xa,0x0,0x95,0x60,0xa, - 0xf0,0x78,0x50,0xb,0xe0,0x77,0x60,0xc,0xd9,0x94,0xd0,0xd,0xc0,0x59,0x60,0xe, - 0xb9,0x76,0xd0,0xf,0xa9,0x75,0xe0,0x10,0x99,0x58,0xd0,0x11,0x89,0x57,0xe0,0x12, - 0x79,0x3a,0xd0,0x13,0x69,0x39,0xe0,0x14,0x59,0x1c,0xd0,0x15,0x49,0x1b,0xe0,0x16, - 0x38,0xfe,0xd0,0x17,0x28,0xfd,0xe0,0x18,0x22,0x1b,0x50,0x19,0x8,0xdf,0xe0,0x1a, - 0x1,0xfd,0x50,0x1a,0xf1,0xfc,0x60,0x1b,0xe1,0xdf,0x50,0x1c,0xd1,0xde,0x60,0x1d, - 0xc1,0xc1,0x50,0x1e,0xb1,0xc0,0x60,0x1f,0xa1,0xa3,0x50,0x20,0x75,0xf2,0xe0,0x21, - 0x81,0x85,0x50,0x22,0x55,0xd4,0xe0,0x23,0x6a,0xa1,0xd0,0x24,0x35,0xb6,0xe0,0x25, - 0x4a,0x83,0xd0,0x26,0x15,0x98,0xe0,0x27,0x2a,0x65,0xd0,0x27,0xfe,0xb5,0x60,0x29, - 0xa,0x47,0xd0,0x29,0xde,0x97,0x60,0x2a,0xea,0x29,0xd0,0x2b,0xbe,0x79,0x60,0x2c, - 0xd3,0x46,0x50,0x2d,0x9e,0x5b,0x60,0x2e,0xb3,0x28,0x50,0x2f,0x7e,0x3d,0x60,0x30, - 0x93,0xa,0x50,0x31,0x67,0x59,0xe0,0x32,0x72,0xec,0x50,0x33,0x47,0x3b,0xe0,0x34, - 0x52,0xce,0x50,0x35,0x27,0x1d,0xe0,0x36,0x32,0xb0,0x50,0x37,0x6,0xff,0xe0,0x38, - 0x1b,0xcc,0xd0,0x38,0xe6,0xe1,0xe0,0x39,0xfb,0xae,0xd0,0x3a,0xc6,0xc3,0xe0,0x3b, - 0xdb,0x90,0xd0,0x3c,0xaf,0xe0,0x60,0x3d,0xbb,0x72,0xd0,0x3e,0x8f,0xc2,0x60,0x3f, - 0x9b,0x54,0xd0,0x40,0x6f,0xa4,0x60,0x41,0x84,0x71,0x50,0x42,0x4f,0x86,0x60,0x43, - 0x64,0x53,0x50,0x44,0x2f,0x68,0x60,0x45,0x44,0x35,0x50,0x45,0xf3,0x9a,0xe0,0x47, - 0x2d,0x51,0xd0,0x47,0xd3,0x7c,0xe0,0x49,0xd,0x33,0xd0,0x49,0xb3,0x5e,0xe0,0x4a, - 0xed,0x15,0xd0,0x4b,0x9c,0x7b,0x60,0x4c,0xd6,0x32,0x50,0x4d,0x7c,0x5d,0x60,0x4e, - 0xb6,0x14,0x50,0x4f,0x5c,0x3f,0x60,0x50,0x95,0xf6,0x50,0x51,0x3c,0x21,0x60,0x52, - 0x75,0xd8,0x50,0x53,0x1c,0x3,0x60,0x54,0x55,0xba,0x50,0x54,0xfb,0xe5,0x60,0x56, - 0x35,0x9c,0x50,0x56,0xe5,0x1,0xe0,0x58,0x1e,0xb8,0xd0,0x58,0xc4,0xe3,0xe0,0x59, - 0xfe,0x9a,0xd0,0x5a,0xa4,0xc5,0xe0,0x5b,0xde,0x7c,0xd0,0x5c,0x84,0xa7,0xe0,0x5d, - 0xbe,0x5e,0xd0,0x5e,0x64,0x89,0xe0,0x5f,0x9e,0x40,0xd0,0x60,0x4d,0xa6,0x60,0x61, - 0x87,0x5d,0x50,0x62,0x2d,0x88,0x60,0x63,0x67,0x3f,0x50,0x64,0xd,0x6a,0x60,0x65, - 0x47,0x21,0x50,0x65,0xed,0x4c,0x60,0x67,0x27,0x3,0x50,0x67,0xcd,0x2e,0x60,0x69, - 0x6,0xe5,0x50,0x69,0xad,0x10,0x60,0x6a,0xe6,0xc7,0x50,0x6b,0x96,0x2c,0xe0,0x6c, - 0xcf,0xe3,0xd0,0x6d,0x76,0xe,0xe0,0x6e,0xaf,0xc5,0xd0,0x6f,0x55,0xf0,0xe0,0x70, - 0x8f,0xa7,0xd0,0x71,0x35,0xd2,0xe0,0x72,0x6f,0x89,0xd0,0x73,0x15,0xb4,0xe0,0x74, - 0x4f,0x6b,0xd0,0x74,0xfe,0xd1,0x60,0x76,0x38,0x88,0x50,0x76,0xde,0xb3,0x60,0x78, - 0x18,0x6a,0x50,0x78,0xbe,0x95,0x60,0x79,0xf8,0x4c,0x50,0x7a,0x9e,0x77,0x60,0x7b, - 0xd8,0x2e,0x50,0x7c,0x7e,0x59,0x60,0x7d,0xb8,0x10,0x50,0x7e,0x5e,0x3b,0x60,0x7f, - 0x97,0xf2,0x50,0x0,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0xff,0xff,0xc3,0x3a,0x0,0x0,0xff,0xff,0xc7,0xc0,0x0, - 0x4,0xff,0xff,0xd5,0xd0,0x1,0x8,0x4c,0x4d,0x54,0x0,0x41,0x53,0x54,0x0,0x41, - 0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x82,0x0,0x0,0x0, - 0x3,0x0,0x0,0x0,0xc,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff, - 0xff,0xb4,0xc3,0x1d,0xe6,0x0,0x0,0x0,0x0,0x8,0x20,0xb3,0x60,0x0,0x0,0x0, - 0x0,0x9,0x10,0x96,0x50,0x0,0x0,0x0,0x0,0xa,0x0,0x95,0x60,0x0,0x0,0x0, - 0x0,0xa,0xf0,0x78,0x50,0x0,0x0,0x0,0x0,0xb,0xe0,0x77,0x60,0x0,0x0,0x0, - 0x0,0xc,0xd9,0x94,0xd0,0x0,0x0,0x0,0x0,0xd,0xc0,0x59,0x60,0x0,0x0,0x0, - 0x0,0xe,0xb9,0x76,0xd0,0x0,0x0,0x0,0x0,0xf,0xa9,0x75,0xe0,0x0,0x0,0x0, - 0x0,0x10,0x99,0x58,0xd0,0x0,0x0,0x0,0x0,0x11,0x89,0x57,0xe0,0x0,0x0,0x0, - 0x0,0x12,0x79,0x3a,0xd0,0x0,0x0,0x0,0x0,0x13,0x69,0x39,0xe0,0x0,0x0,0x0, - 0x0,0x14,0x59,0x1c,0xd0,0x0,0x0,0x0,0x0,0x15,0x49,0x1b,0xe0,0x0,0x0,0x0, - 0x0,0x16,0x38,0xfe,0xd0,0x0,0x0,0x0,0x0,0x17,0x28,0xfd,0xe0,0x0,0x0,0x0, - 0x0,0x18,0x22,0x1b,0x50,0x0,0x0,0x0,0x0,0x19,0x8,0xdf,0xe0,0x0,0x0,0x0, - 0x0,0x1a,0x1,0xfd,0x50,0x0,0x0,0x0,0x0,0x1a,0xf1,0xfc,0x60,0x0,0x0,0x0, - 0x0,0x1b,0xe1,0xdf,0x50,0x0,0x0,0x0,0x0,0x1c,0xd1,0xde,0x60,0x0,0x0,0x0, - 0x0,0x1d,0xc1,0xc1,0x50,0x0,0x0,0x0,0x0,0x1e,0xb1,0xc0,0x60,0x0,0x0,0x0, - 0x0,0x1f,0xa1,0xa3,0x50,0x0,0x0,0x0,0x0,0x20,0x75,0xf2,0xe0,0x0,0x0,0x0, - 0x0,0x21,0x81,0x85,0x50,0x0,0x0,0x0,0x0,0x22,0x55,0xd4,0xe0,0x0,0x0,0x0, - 0x0,0x23,0x6a,0xa1,0xd0,0x0,0x0,0x0,0x0,0x24,0x35,0xb6,0xe0,0x0,0x0,0x0, - 0x0,0x25,0x4a,0x83,0xd0,0x0,0x0,0x0,0x0,0x26,0x15,0x98,0xe0,0x0,0x0,0x0, - 0x0,0x27,0x2a,0x65,0xd0,0x0,0x0,0x0,0x0,0x27,0xfe,0xb5,0x60,0x0,0x0,0x0, - 0x0,0x29,0xa,0x47,0xd0,0x0,0x0,0x0,0x0,0x29,0xde,0x97,0x60,0x0,0x0,0x0, - 0x0,0x2a,0xea,0x29,0xd0,0x0,0x0,0x0,0x0,0x2b,0xbe,0x79,0x60,0x0,0x0,0x0, - 0x0,0x2c,0xd3,0x46,0x50,0x0,0x0,0x0,0x0,0x2d,0x9e,0x5b,0x60,0x0,0x0,0x0, - 0x0,0x2e,0xb3,0x28,0x50,0x0,0x0,0x0,0x0,0x2f,0x7e,0x3d,0x60,0x0,0x0,0x0, - 0x0,0x30,0x93,0xa,0x50,0x0,0x0,0x0,0x0,0x31,0x67,0x59,0xe0,0x0,0x0,0x0, - 0x0,0x32,0x72,0xec,0x50,0x0,0x0,0x0,0x0,0x33,0x47,0x3b,0xe0,0x0,0x0,0x0, - 0x0,0x34,0x52,0xce,0x50,0x0,0x0,0x0,0x0,0x35,0x27,0x1d,0xe0,0x0,0x0,0x0, - 0x0,0x36,0x32,0xb0,0x50,0x0,0x0,0x0,0x0,0x37,0x6,0xff,0xe0,0x0,0x0,0x0, - 0x0,0x38,0x1b,0xcc,0xd0,0x0,0x0,0x0,0x0,0x38,0xe6,0xe1,0xe0,0x0,0x0,0x0, - 0x0,0x39,0xfb,0xae,0xd0,0x0,0x0,0x0,0x0,0x3a,0xc6,0xc3,0xe0,0x0,0x0,0x0, - 0x0,0x3b,0xdb,0x90,0xd0,0x0,0x0,0x0,0x0,0x3c,0xaf,0xe0,0x60,0x0,0x0,0x0, - 0x0,0x3d,0xbb,0x72,0xd0,0x0,0x0,0x0,0x0,0x3e,0x8f,0xc2,0x60,0x0,0x0,0x0, - 0x0,0x3f,0x9b,0x54,0xd0,0x0,0x0,0x0,0x0,0x40,0x6f,0xa4,0x60,0x0,0x0,0x0, - 0x0,0x41,0x84,0x71,0x50,0x0,0x0,0x0,0x0,0x42,0x4f,0x86,0x60,0x0,0x0,0x0, - 0x0,0x43,0x64,0x53,0x50,0x0,0x0,0x0,0x0,0x44,0x2f,0x68,0x60,0x0,0x0,0x0, - 0x0,0x45,0x44,0x35,0x50,0x0,0x0,0x0,0x0,0x45,0xf3,0x9a,0xe0,0x0,0x0,0x0, - 0x0,0x47,0x2d,0x51,0xd0,0x0,0x0,0x0,0x0,0x47,0xd3,0x7c,0xe0,0x0,0x0,0x0, - 0x0,0x49,0xd,0x33,0xd0,0x0,0x0,0x0,0x0,0x49,0xb3,0x5e,0xe0,0x0,0x0,0x0, - 0x0,0x4a,0xed,0x15,0xd0,0x0,0x0,0x0,0x0,0x4b,0x9c,0x7b,0x60,0x0,0x0,0x0, - 0x0,0x4c,0xd6,0x32,0x50,0x0,0x0,0x0,0x0,0x4d,0x7c,0x5d,0x60,0x0,0x0,0x0, - 0x0,0x4e,0xb6,0x14,0x50,0x0,0x0,0x0,0x0,0x4f,0x5c,0x3f,0x60,0x0,0x0,0x0, - 0x0,0x50,0x95,0xf6,0x50,0x0,0x0,0x0,0x0,0x51,0x3c,0x21,0x60,0x0,0x0,0x0, - 0x0,0x52,0x75,0xd8,0x50,0x0,0x0,0x0,0x0,0x53,0x1c,0x3,0x60,0x0,0x0,0x0, - 0x0,0x54,0x55,0xba,0x50,0x0,0x0,0x0,0x0,0x54,0xfb,0xe5,0x60,0x0,0x0,0x0, - 0x0,0x56,0x35,0x9c,0x50,0x0,0x0,0x0,0x0,0x56,0xe5,0x1,0xe0,0x0,0x0,0x0, - 0x0,0x58,0x1e,0xb8,0xd0,0x0,0x0,0x0,0x0,0x58,0xc4,0xe3,0xe0,0x0,0x0,0x0, - 0x0,0x59,0xfe,0x9a,0xd0,0x0,0x0,0x0,0x0,0x5a,0xa4,0xc5,0xe0,0x0,0x0,0x0, - 0x0,0x5b,0xde,0x7c,0xd0,0x0,0x0,0x0,0x0,0x5c,0x84,0xa7,0xe0,0x0,0x0,0x0, - 0x0,0x5d,0xbe,0x5e,0xd0,0x0,0x0,0x0,0x0,0x5e,0x64,0x89,0xe0,0x0,0x0,0x0, - 0x0,0x5f,0x9e,0x40,0xd0,0x0,0x0,0x0,0x0,0x60,0x4d,0xa6,0x60,0x0,0x0,0x0, - 0x0,0x61,0x87,0x5d,0x50,0x0,0x0,0x0,0x0,0x62,0x2d,0x88,0x60,0x0,0x0,0x0, - 0x0,0x63,0x67,0x3f,0x50,0x0,0x0,0x0,0x0,0x64,0xd,0x6a,0x60,0x0,0x0,0x0, - 0x0,0x65,0x47,0x21,0x50,0x0,0x0,0x0,0x0,0x65,0xed,0x4c,0x60,0x0,0x0,0x0, - 0x0,0x67,0x27,0x3,0x50,0x0,0x0,0x0,0x0,0x67,0xcd,0x2e,0x60,0x0,0x0,0x0, - 0x0,0x69,0x6,0xe5,0x50,0x0,0x0,0x0,0x0,0x69,0xad,0x10,0x60,0x0,0x0,0x0, - 0x0,0x6a,0xe6,0xc7,0x50,0x0,0x0,0x0,0x0,0x6b,0x96,0x2c,0xe0,0x0,0x0,0x0, - 0x0,0x6c,0xcf,0xe3,0xd0,0x0,0x0,0x0,0x0,0x6d,0x76,0xe,0xe0,0x0,0x0,0x0, - 0x0,0x6e,0xaf,0xc5,0xd0,0x0,0x0,0x0,0x0,0x6f,0x55,0xf0,0xe0,0x0,0x0,0x0, - 0x0,0x70,0x8f,0xa7,0xd0,0x0,0x0,0x0,0x0,0x71,0x35,0xd2,0xe0,0x0,0x0,0x0, - 0x0,0x72,0x6f,0x89,0xd0,0x0,0x0,0x0,0x0,0x73,0x15,0xb4,0xe0,0x0,0x0,0x0, - 0x0,0x74,0x4f,0x6b,0xd0,0x0,0x0,0x0,0x0,0x74,0xfe,0xd1,0x60,0x0,0x0,0x0, - 0x0,0x76,0x38,0x88,0x50,0x0,0x0,0x0,0x0,0x76,0xde,0xb3,0x60,0x0,0x0,0x0, - 0x0,0x78,0x18,0x6a,0x50,0x0,0x0,0x0,0x0,0x78,0xbe,0x95,0x60,0x0,0x0,0x0, - 0x0,0x79,0xf8,0x4c,0x50,0x0,0x0,0x0,0x0,0x7a,0x9e,0x77,0x60,0x0,0x0,0x0, - 0x0,0x7b,0xd8,0x2e,0x50,0x0,0x0,0x0,0x0,0x7c,0x7e,0x59,0x60,0x0,0x0,0x0, - 0x0,0x7d,0xb8,0x10,0x50,0x0,0x0,0x0,0x0,0x7e,0x5e,0x3b,0x60,0x0,0x0,0x0, - 0x0,0x7f,0x97,0xf2,0x50,0x0,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0xff,0xff,0xc3,0x3a,0x0,0x0,0xff,0xff,0xc7, - 0xc0,0x0,0x4,0xff,0xff,0xd5,0xd0,0x1,0x8,0x4c,0x4d,0x54,0x0,0x41,0x53,0x54, - 0x0,0x41,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x41,0x53,0x54,0x34, - 0x41,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31, - 0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Atlantic/St_Helena - 0x0,0x0,0x0,0xaa, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x80,0x0,0x0,0x0,0x7f, + 0xff,0xff,0xff,0x0,0x0,0xff,0xff,0x73,0x60,0x0,0x0,0x2d,0x31,0x30,0x0,0x0, + 0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0xf8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x0,0xff, + 0xff,0x73,0x60,0x0,0x0,0x2d,0x31,0x30,0x0,0x0,0x0,0xa,0x3c,0x2d,0x31,0x30, + 0x3e,0x31,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Etc/GMT-12 + 0x0,0x0,0x0,0x96, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x92, - 0xe6,0x92,0x48,0x0,0x1,0xff,0xff,0xfc,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x4,0x4c,0x4d,0x54,0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, - 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0x92,0xe6,0x92,0x48,0x0,0x1,0xff,0xff,0xfc,0x38,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x4c,0x4d,0x54,0x0,0x47,0x4d,0x54,0x0,0x0, - 0x0,0x0,0x0,0xa,0x47,0x4d,0x54,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Atlantic/Faeroe - 0x0,0x0,0x7,0x25, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x80,0x0,0x0,0x0,0x7f, + 0xff,0xff,0xff,0x0,0x0,0x0,0x0,0xa8,0xc0,0x0,0x0,0x2b,0x31,0x32,0x0,0x0, + 0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0xf8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x0,0x0, + 0x0,0xa8,0xc0,0x0,0x0,0x2b,0x31,0x32,0x0,0x0,0x0,0xa,0x3c,0x2b,0x31,0x32, + 0x3e,0x2d,0x31,0x32,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Etc/GMT-9 + 0x0,0x0,0x0,0x95, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x74,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0x8b, - 0x6d,0xa4,0x58,0x15,0x23,0xeb,0x90,0x16,0x13,0xdc,0x90,0x17,0x3,0xcd,0x90,0x17, - 0xf3,0xbe,0x90,0x18,0xe3,0xaf,0x90,0x19,0xd3,0xa0,0x90,0x1a,0xc3,0x91,0x90,0x1b, - 0xbc,0xbd,0x10,0x1c,0xac,0xae,0x10,0x1d,0x9c,0x9f,0x10,0x1e,0x8c,0x90,0x10,0x1f, - 0x7c,0x81,0x10,0x20,0x6c,0x72,0x10,0x21,0x5c,0x63,0x10,0x22,0x4c,0x54,0x10,0x23, - 0x3c,0x45,0x10,0x24,0x2c,0x36,0x10,0x25,0x1c,0x27,0x10,0x26,0xc,0x18,0x10,0x27, - 0x5,0x43,0x90,0x27,0xf5,0x34,0x90,0x28,0xe5,0x25,0x90,0x29,0xd5,0x16,0x90,0x2a, - 0xc5,0x7,0x90,0x2b,0xb4,0xf8,0x90,0x2c,0xa4,0xe9,0x90,0x2d,0x94,0xda,0x90,0x2e, - 0x84,0xcb,0x90,0x2f,0x74,0xbc,0x90,0x30,0x64,0xad,0x90,0x31,0x5d,0xd9,0x10,0x32, - 0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34,0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36, - 0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39, - 0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b,0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d, - 0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f,0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41, - 0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43,0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45, - 0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49, - 0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c, - 0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e,0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50, - 0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54, - 0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56,0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58, - 0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59,0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b, - 0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d,0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f, - 0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61,0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63, - 0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65,0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67, - 0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68,0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a, - 0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c,0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e, - 0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70,0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72, - 0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74,0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76, - 0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79, - 0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d, - 0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x0,0x1,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0xff, - 0xff,0xf9,0xa8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0xe,0x10,0x1, - 0x8,0x0,0x0,0x0,0x0,0x0,0x4,0x4c,0x4d,0x54,0x0,0x57,0x45,0x54,0x0,0x57, - 0x45,0x53,0x54,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x1,0x1,0x54,0x5a,0x69,0x66, - 0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x74, - 0x0,0x0,0x0,0x4,0x0,0x0,0x0,0xd,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0xff,0xff,0xff,0xff,0x8b,0x6d,0xa4,0x58,0x0,0x0,0x0,0x0,0x15,0x23,0xeb,0x90, - 0x0,0x0,0x0,0x0,0x16,0x13,0xdc,0x90,0x0,0x0,0x0,0x0,0x17,0x3,0xcd,0x90, - 0x0,0x0,0x0,0x0,0x17,0xf3,0xbe,0x90,0x0,0x0,0x0,0x0,0x18,0xe3,0xaf,0x90, - 0x0,0x0,0x0,0x0,0x19,0xd3,0xa0,0x90,0x0,0x0,0x0,0x0,0x1a,0xc3,0x91,0x90, - 0x0,0x0,0x0,0x0,0x1b,0xbc,0xbd,0x10,0x0,0x0,0x0,0x0,0x1c,0xac,0xae,0x10, - 0x0,0x0,0x0,0x0,0x1d,0x9c,0x9f,0x10,0x0,0x0,0x0,0x0,0x1e,0x8c,0x90,0x10, - 0x0,0x0,0x0,0x0,0x1f,0x7c,0x81,0x10,0x0,0x0,0x0,0x0,0x20,0x6c,0x72,0x10, - 0x0,0x0,0x0,0x0,0x21,0x5c,0x63,0x10,0x0,0x0,0x0,0x0,0x22,0x4c,0x54,0x10, - 0x0,0x0,0x0,0x0,0x23,0x3c,0x45,0x10,0x0,0x0,0x0,0x0,0x24,0x2c,0x36,0x10, - 0x0,0x0,0x0,0x0,0x25,0x1c,0x27,0x10,0x0,0x0,0x0,0x0,0x26,0xc,0x18,0x10, - 0x0,0x0,0x0,0x0,0x27,0x5,0x43,0x90,0x0,0x0,0x0,0x0,0x27,0xf5,0x34,0x90, - 0x0,0x0,0x0,0x0,0x28,0xe5,0x25,0x90,0x0,0x0,0x0,0x0,0x29,0xd5,0x16,0x90, - 0x0,0x0,0x0,0x0,0x2a,0xc5,0x7,0x90,0x0,0x0,0x0,0x0,0x2b,0xb4,0xf8,0x90, - 0x0,0x0,0x0,0x0,0x2c,0xa4,0xe9,0x90,0x0,0x0,0x0,0x0,0x2d,0x94,0xda,0x90, - 0x0,0x0,0x0,0x0,0x2e,0x84,0xcb,0x90,0x0,0x0,0x0,0x0,0x2f,0x74,0xbc,0x90, - 0x0,0x0,0x0,0x0,0x30,0x64,0xad,0x90,0x0,0x0,0x0,0x0,0x31,0x5d,0xd9,0x10, - 0x0,0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d,0xbb,0x10, - 0x0,0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d,0x9d,0x10, - 0x0,0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd,0x7f,0x10, - 0x0,0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd,0x61,0x10, - 0x0,0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd,0x43,0x10, - 0x0,0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f,0x90, - 0x0,0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86,0x41,0x90, - 0x0,0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66,0x23,0x90, - 0x0,0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46,0x5,0x90, - 0x0,0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25,0xe7,0x90, - 0x0,0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5,0xc9,0x90, - 0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee,0xe6,0x10, - 0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce,0xc8,0x10, - 0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae,0xaa,0x10, - 0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c,0x10, - 0x0,0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e,0x10, - 0x0,0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57,0x8a,0x90, - 0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37,0x6c,0x90, - 0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17,0x4e,0x90, - 0x0,0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7,0x30,0x90, - 0x0,0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7,0x12,0x90, - 0x0,0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4,0x90, - 0x0,0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0,0x11,0x10, - 0x0,0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3,0x10, - 0x0,0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f,0xd5,0x10, - 0x0,0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f,0xb7,0x10, - 0x0,0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f,0x99,0x10, - 0x0,0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8,0xb5,0x90, - 0x0,0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8,0x97,0x90, - 0x0,0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8,0x79,0x90, - 0x0,0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b,0x90, - 0x0,0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88,0x3d,0x90, - 0x0,0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68,0x1f,0x90, - 0x0,0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51,0x3c,0x10, - 0x0,0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31,0x1e,0x10, - 0x0,0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11,0x0,0x10, - 0x0,0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0,0xe2,0x10, - 0x0,0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0,0xc4,0x10, - 0x0,0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6,0x10, - 0x0,0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99,0xc2,0x90, - 0x0,0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79,0xa4,0x90, - 0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x1,0x2,0x3,0x2,0x3,0x2,0x3, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x80,0x0,0x0,0x0,0x7f, + 0xff,0xff,0xff,0x0,0x0,0x0,0x0,0x7e,0x90,0x0,0x0,0x2b,0x30,0x39,0x0,0x0, + 0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0xf8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x0,0x0, + 0x0,0x7e,0x90,0x0,0x0,0x2b,0x30,0x39,0x0,0x0,0x0,0xa,0x3c,0x2b,0x30,0x39, + 0x3e,0x2d,0x39,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Etc/GMT+11 + 0x0,0x0,0x0,0x95, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x80,0x0,0x0,0x0,0x7f, + 0xff,0xff,0xff,0x0,0x0,0xff,0xff,0x65,0x50,0x0,0x0,0x2d,0x31,0x31,0x0,0x0, + 0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0xf8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x0,0xff, + 0xff,0x65,0x50,0x0,0x0,0x2d,0x31,0x31,0x0,0x0,0x0,0xa,0x3c,0x2d,0x31,0x31, + 0x3e,0x31,0x31,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Etc/GMT-13 + 0x0,0x0,0x0,0x96, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x80,0x0,0x0,0x0,0x7f, + 0xff,0xff,0xff,0x0,0x0,0x0,0x0,0xb6,0xd0,0x0,0x0,0x2b,0x31,0x33,0x0,0x0, + 0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0xf8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x0,0x0, + 0x0,0xb6,0xd0,0x0,0x0,0x2b,0x31,0x33,0x0,0x0,0x0,0xa,0x3c,0x2b,0x31,0x33, + 0x3e,0x2d,0x31,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Etc/GMT+12 + 0x0,0x0,0x0,0x95, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x80,0x0,0x0,0x0,0x7f, + 0xff,0xff,0xff,0x0,0x0,0xff,0xff,0x57,0x40,0x0,0x0,0x2d,0x31,0x32,0x0,0x0, + 0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0xf8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x0,0xff, + 0xff,0x57,0x40,0x0,0x0,0x2d,0x31,0x32,0x0,0x0,0x0,0xa,0x3c,0x2d,0x31,0x32, + 0x3e,0x31,0x32,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Etc/GMT-14 + 0x0,0x0,0x0,0x96, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x80,0x0,0x0,0x0,0x7f, + 0xff,0xff,0xff,0x0,0x0,0x0,0x0,0xc4,0xe0,0x0,0x0,0x2b,0x31,0x34,0x0,0x0, + 0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0xf8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x0,0x0, + 0x0,0xc4,0xe0,0x0,0x0,0x2b,0x31,0x34,0x0,0x0,0x0,0xa,0x3c,0x2b,0x31,0x34, + 0x3e,0x2d,0x31,0x34,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Etc/GMT+0 + 0x0,0x0,0x0,0x7f, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, + 0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0, + 0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0, + 0x0,0x0,0x4,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0xa,0x47,0x4d,0x54,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Etc/GMT+1 + 0x0,0x0,0x0,0x94, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x80,0x0,0x0,0x0,0x7f, + 0xff,0xff,0xff,0x0,0x0,0xff,0xff,0xf1,0xf0,0x0,0x0,0x2d,0x30,0x31,0x0,0x0, + 0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0xf8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x0,0xff, + 0xff,0xf1,0xf0,0x0,0x0,0x2d,0x30,0x31,0x0,0x0,0x0,0xa,0x3c,0x2d,0x30,0x31, + 0x3e,0x31,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Etc/GMT+2 + 0x0,0x0,0x0,0x94, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x80,0x0,0x0,0x0,0x7f, + 0xff,0xff,0xff,0x0,0x0,0xff,0xff,0xe3,0xe0,0x0,0x0,0x2d,0x30,0x32,0x0,0x0, + 0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0xf8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x0,0xff, + 0xff,0xe3,0xe0,0x0,0x0,0x2d,0x30,0x32,0x0,0x0,0x0,0xa,0x3c,0x2d,0x30,0x32, + 0x3e,0x32,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Etc/GMT+3 + 0x0,0x0,0x0,0x94, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x80,0x0,0x0,0x0,0x7f, + 0xff,0xff,0xff,0x0,0x0,0xff,0xff,0xd5,0xd0,0x0,0x0,0x2d,0x30,0x33,0x0,0x0, + 0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0xf8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x0,0xff, + 0xff,0xd5,0xd0,0x0,0x0,0x2d,0x30,0x33,0x0,0x0,0x0,0xa,0x3c,0x2d,0x30,0x33, + 0x3e,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Etc/GMT+4 + 0x0,0x0,0x0,0x94, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x80,0x0,0x0,0x0,0x7f, + 0xff,0xff,0xff,0x0,0x0,0xff,0xff,0xc7,0xc0,0x0,0x0,0x2d,0x30,0x34,0x0,0x0, + 0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0xf8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x0,0xff, + 0xff,0xc7,0xc0,0x0,0x0,0x2d,0x30,0x34,0x0,0x0,0x0,0xa,0x3c,0x2d,0x30,0x34, + 0x3e,0x34,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Etc/GMT+5 + 0x0,0x0,0x0,0x94, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x80,0x0,0x0,0x0,0x7f, + 0xff,0xff,0xff,0x0,0x0,0xff,0xff,0xb9,0xb0,0x0,0x0,0x2d,0x30,0x35,0x0,0x0, + 0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0xf8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x0,0xff, + 0xff,0xb9,0xb0,0x0,0x0,0x2d,0x30,0x35,0x0,0x0,0x0,0xa,0x3c,0x2d,0x30,0x35, + 0x3e,0x35,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Etc/Universal + 0x0,0x0,0x0,0x7f, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, + 0x0,0x55,0x54,0x43,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0, + 0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0, + 0x0,0x0,0x4,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x55,0x54,0x43,0x0,0x0,0x0,0xa,0x55,0x54,0x43,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Etc/GMT+6 + 0x0,0x0,0x0,0x94, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x80,0x0,0x0,0x0,0x7f, + 0xff,0xff,0xff,0x0,0x0,0xff,0xff,0xab,0xa0,0x0,0x0,0x2d,0x30,0x36,0x0,0x0, + 0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0xf8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x0,0xff, + 0xff,0xab,0xa0,0x0,0x0,0x2d,0x30,0x36,0x0,0x0,0x0,0xa,0x3c,0x2d,0x30,0x36, + 0x3e,0x36,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Etc/GMT+7 + 0x0,0x0,0x0,0x94, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x80,0x0,0x0,0x0,0x7f, + 0xff,0xff,0xff,0x0,0x0,0xff,0xff,0x9d,0x90,0x0,0x0,0x2d,0x30,0x37,0x0,0x0, + 0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0xf8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x0,0xff, + 0xff,0x9d,0x90,0x0,0x0,0x2d,0x30,0x37,0x0,0x0,0x0,0xa,0x3c,0x2d,0x30,0x37, + 0x3e,0x37,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Etc/GMT+8 + 0x0,0x0,0x0,0x94, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x80,0x0,0x0,0x0,0x7f, + 0xff,0xff,0xff,0x0,0x0,0xff,0xff,0x8f,0x80,0x0,0x0,0x2d,0x30,0x38,0x0,0x0, + 0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0xf8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x0,0xff, + 0xff,0x8f,0x80,0x0,0x0,0x2d,0x30,0x38,0x0,0x0,0x0,0xa,0x3c,0x2d,0x30,0x38, + 0x3e,0x38,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Etc/GMT+9 + 0x0,0x0,0x0,0x94, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x80,0x0,0x0,0x0,0x7f, + 0xff,0xff,0xff,0x0,0x0,0xff,0xff,0x81,0x70,0x0,0x0,0x2d,0x30,0x39,0x0,0x0, + 0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0xf8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x0,0xff, + 0xff,0x81,0x70,0x0,0x0,0x2d,0x30,0x39,0x0,0x0,0x0,0xa,0x3c,0x2d,0x30,0x39, + 0x3e,0x39,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Etc/GMT + 0x0,0x0,0x0,0x7f, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, + 0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0, + 0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0, + 0x0,0x0,0x4,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0xa,0x47,0x4d,0x54,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Etc/UTC + 0x0,0x0,0x0,0x7f, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, + 0x0,0x55,0x54,0x43,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0, + 0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0, + 0x0,0x0,0x4,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x55,0x54,0x43,0x0,0x0,0x0,0xa,0x55,0x54,0x43,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Mexico/General + 0x0,0x0,0x6,0x52, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x63,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0xa5, + 0xb6,0xe8,0x70,0xaf,0xf2,0x6e,0xe0,0xb6,0x66,0x56,0x60,0xb7,0x43,0xd2,0x60,0xb8, + 0xc,0x36,0x60,0xb8,0xfd,0x86,0xf0,0xc5,0xde,0xb0,0x60,0xc6,0x97,0x34,0x50,0xc9, + 0x55,0xf1,0xe0,0xc9,0xea,0xdd,0x50,0xcf,0x2,0xc6,0xe0,0xcf,0xb7,0x56,0x50,0xda, + 0x99,0x15,0xe0,0xdb,0x76,0x83,0xd0,0x31,0x67,0x76,0x0,0x32,0x73,0x8,0x70,0x33, + 0x47,0x58,0x0,0x34,0x52,0xea,0x70,0x35,0x27,0x3a,0x0,0x36,0x32,0xcc,0x70,0x37, + 0x7,0x1c,0x0,0x38,0x1b,0xe8,0xf0,0x38,0xe6,0xfe,0x0,0x39,0xfb,0xca,0xf0,0x3a, + 0xf5,0x4,0x80,0x3b,0xb6,0xc2,0xf0,0x3c,0xaf,0xfc,0x80,0x3d,0xbb,0x8e,0xf0,0x3e, + 0x8f,0xde,0x80,0x3f,0x9b,0x70,0xf0,0x40,0x6f,0xc0,0x80,0x41,0x84,0x8d,0x70,0x42, + 0x4f,0xa2,0x80,0x43,0x64,0x6f,0x70,0x44,0x2f,0x84,0x80,0x45,0x44,0x51,0x70,0x46, + 0xf,0x66,0x80,0x47,0x24,0x33,0x70,0x47,0xf8,0x83,0x0,0x49,0x4,0x15,0x70,0x49, + 0xd8,0x65,0x0,0x4a,0xe3,0xf7,0x70,0x4b,0xb8,0x47,0x0,0x4c,0xcd,0x13,0xf0,0x4d, + 0x98,0x29,0x0,0x4e,0xac,0xf5,0xf0,0x4f,0x78,0xb,0x0,0x50,0x8c,0xd7,0xf0,0x51, + 0x61,0x27,0x80,0x52,0x6c,0xb9,0xf0,0x53,0x41,0x9,0x80,0x54,0x4c,0x9b,0xf0,0x55, + 0x20,0xeb,0x80,0x56,0x2c,0x7d,0xf0,0x57,0x0,0xcd,0x80,0x58,0x15,0x9a,0x70,0x58, + 0xe0,0xaf,0x80,0x59,0xf5,0x7c,0x70,0x5a,0xc0,0x91,0x80,0x5b,0xd5,0x5e,0x70,0x5c, + 0xa9,0xae,0x0,0x5d,0xb5,0x40,0x70,0x5e,0x89,0x90,0x0,0x5f,0x95,0x22,0x70,0x60, + 0x69,0x72,0x0,0x61,0x7e,0x3e,0xf0,0x62,0x49,0x54,0x0,0x63,0x5e,0x20,0xf0,0x64, + 0x29,0x36,0x0,0x65,0x3e,0x2,0xf0,0x66,0x12,0x52,0x80,0x67,0x1d,0xe4,0xf0,0x67, + 0xf2,0x34,0x80,0x68,0xfd,0xc6,0xf0,0x69,0xd2,0x16,0x80,0x6a,0xdd,0xa8,0xf0,0x6b, + 0xb1,0xf8,0x80,0x6c,0xc6,0xc5,0x70,0x6d,0x91,0xda,0x80,0x6e,0xa6,0xa7,0x70,0x6f, + 0x71,0xbc,0x80,0x70,0x86,0x89,0x70,0x71,0x5a,0xd9,0x0,0x72,0x66,0x6b,0x70,0x73, + 0x3a,0xbb,0x0,0x74,0x46,0x4d,0x70,0x75,0x1a,0x9d,0x0,0x76,0x2f,0x69,0xf0,0x76, + 0xfa,0x7f,0x0,0x78,0xf,0x4b,0xf0,0x78,0xda,0x61,0x0,0x79,0xef,0x2d,0xf0,0x7a, + 0xba,0x43,0x0,0x7b,0xcf,0xf,0xf0,0x7c,0xa3,0x5f,0x80,0x7d,0xae,0xf1,0xf0,0x7e, + 0x83,0x41,0x80,0x7f,0x8e,0xd3,0xf0,0x0,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x2, + 0x3,0x2,0x4,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0xff,0xff,0xa3,0xc,0x0,0x0, + 0xff,0xff,0x9d,0x90,0x0,0x4,0xff,0xff,0xab,0xa0,0x0,0x8,0xff,0xff,0xb9,0xb0, + 0x1,0xc,0xff,0xff,0xb9,0xb0,0x1,0x10,0x4c,0x4d,0x54,0x0,0x4d,0x53,0x54,0x0, + 0x43,0x53,0x54,0x0,0x43,0x44,0x54,0x0,0x43,0x57,0x54,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0, + 0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x63,0x0,0x0,0x0,0x5,0x0,0x0, + 0x0,0x14,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xa5,0xb6, + 0xe8,0x70,0xff,0xff,0xff,0xff,0xaf,0xf2,0x6e,0xe0,0xff,0xff,0xff,0xff,0xb6,0x66, + 0x56,0x60,0xff,0xff,0xff,0xff,0xb7,0x43,0xd2,0x60,0xff,0xff,0xff,0xff,0xb8,0xc, + 0x36,0x60,0xff,0xff,0xff,0xff,0xb8,0xfd,0x86,0xf0,0xff,0xff,0xff,0xff,0xc5,0xde, + 0xb0,0x60,0xff,0xff,0xff,0xff,0xc6,0x97,0x34,0x50,0xff,0xff,0xff,0xff,0xc9,0x55, + 0xf1,0xe0,0xff,0xff,0xff,0xff,0xc9,0xea,0xdd,0x50,0xff,0xff,0xff,0xff,0xcf,0x2, + 0xc6,0xe0,0xff,0xff,0xff,0xff,0xcf,0xb7,0x56,0x50,0xff,0xff,0xff,0xff,0xda,0x99, + 0x15,0xe0,0xff,0xff,0xff,0xff,0xdb,0x76,0x83,0xd0,0x0,0x0,0x0,0x0,0x31,0x67, + 0x76,0x0,0x0,0x0,0x0,0x0,0x32,0x73,0x8,0x70,0x0,0x0,0x0,0x0,0x33,0x47, + 0x58,0x0,0x0,0x0,0x0,0x0,0x34,0x52,0xea,0x70,0x0,0x0,0x0,0x0,0x35,0x27, + 0x3a,0x0,0x0,0x0,0x0,0x0,0x36,0x32,0xcc,0x70,0x0,0x0,0x0,0x0,0x37,0x7, + 0x1c,0x0,0x0,0x0,0x0,0x0,0x38,0x1b,0xe8,0xf0,0x0,0x0,0x0,0x0,0x38,0xe6, + 0xfe,0x0,0x0,0x0,0x0,0x0,0x39,0xfb,0xca,0xf0,0x0,0x0,0x0,0x0,0x3a,0xf5, + 0x4,0x80,0x0,0x0,0x0,0x0,0x3b,0xb6,0xc2,0xf0,0x0,0x0,0x0,0x0,0x3c,0xaf, + 0xfc,0x80,0x0,0x0,0x0,0x0,0x3d,0xbb,0x8e,0xf0,0x0,0x0,0x0,0x0,0x3e,0x8f, + 0xde,0x80,0x0,0x0,0x0,0x0,0x3f,0x9b,0x70,0xf0,0x0,0x0,0x0,0x0,0x40,0x6f, + 0xc0,0x80,0x0,0x0,0x0,0x0,0x41,0x84,0x8d,0x70,0x0,0x0,0x0,0x0,0x42,0x4f, + 0xa2,0x80,0x0,0x0,0x0,0x0,0x43,0x64,0x6f,0x70,0x0,0x0,0x0,0x0,0x44,0x2f, + 0x84,0x80,0x0,0x0,0x0,0x0,0x45,0x44,0x51,0x70,0x0,0x0,0x0,0x0,0x46,0xf, + 0x66,0x80,0x0,0x0,0x0,0x0,0x47,0x24,0x33,0x70,0x0,0x0,0x0,0x0,0x47,0xf8, + 0x83,0x0,0x0,0x0,0x0,0x0,0x49,0x4,0x15,0x70,0x0,0x0,0x0,0x0,0x49,0xd8, + 0x65,0x0,0x0,0x0,0x0,0x0,0x4a,0xe3,0xf7,0x70,0x0,0x0,0x0,0x0,0x4b,0xb8, + 0x47,0x0,0x0,0x0,0x0,0x0,0x4c,0xcd,0x13,0xf0,0x0,0x0,0x0,0x0,0x4d,0x98, + 0x29,0x0,0x0,0x0,0x0,0x0,0x4e,0xac,0xf5,0xf0,0x0,0x0,0x0,0x0,0x4f,0x78, + 0xb,0x0,0x0,0x0,0x0,0x0,0x50,0x8c,0xd7,0xf0,0x0,0x0,0x0,0x0,0x51,0x61, + 0x27,0x80,0x0,0x0,0x0,0x0,0x52,0x6c,0xb9,0xf0,0x0,0x0,0x0,0x0,0x53,0x41, + 0x9,0x80,0x0,0x0,0x0,0x0,0x54,0x4c,0x9b,0xf0,0x0,0x0,0x0,0x0,0x55,0x20, + 0xeb,0x80,0x0,0x0,0x0,0x0,0x56,0x2c,0x7d,0xf0,0x0,0x0,0x0,0x0,0x57,0x0, + 0xcd,0x80,0x0,0x0,0x0,0x0,0x58,0x15,0x9a,0x70,0x0,0x0,0x0,0x0,0x58,0xe0, + 0xaf,0x80,0x0,0x0,0x0,0x0,0x59,0xf5,0x7c,0x70,0x0,0x0,0x0,0x0,0x5a,0xc0, + 0x91,0x80,0x0,0x0,0x0,0x0,0x5b,0xd5,0x5e,0x70,0x0,0x0,0x0,0x0,0x5c,0xa9, + 0xae,0x0,0x0,0x0,0x0,0x0,0x5d,0xb5,0x40,0x70,0x0,0x0,0x0,0x0,0x5e,0x89, + 0x90,0x0,0x0,0x0,0x0,0x0,0x5f,0x95,0x22,0x70,0x0,0x0,0x0,0x0,0x60,0x69, + 0x72,0x0,0x0,0x0,0x0,0x0,0x61,0x7e,0x3e,0xf0,0x0,0x0,0x0,0x0,0x62,0x49, + 0x54,0x0,0x0,0x0,0x0,0x0,0x63,0x5e,0x20,0xf0,0x0,0x0,0x0,0x0,0x64,0x29, + 0x36,0x0,0x0,0x0,0x0,0x0,0x65,0x3e,0x2,0xf0,0x0,0x0,0x0,0x0,0x66,0x12, + 0x52,0x80,0x0,0x0,0x0,0x0,0x67,0x1d,0xe4,0xf0,0x0,0x0,0x0,0x0,0x67,0xf2, + 0x34,0x80,0x0,0x0,0x0,0x0,0x68,0xfd,0xc6,0xf0,0x0,0x0,0x0,0x0,0x69,0xd2, + 0x16,0x80,0x0,0x0,0x0,0x0,0x6a,0xdd,0xa8,0xf0,0x0,0x0,0x0,0x0,0x6b,0xb1, + 0xf8,0x80,0x0,0x0,0x0,0x0,0x6c,0xc6,0xc5,0x70,0x0,0x0,0x0,0x0,0x6d,0x91, + 0xda,0x80,0x0,0x0,0x0,0x0,0x6e,0xa6,0xa7,0x70,0x0,0x0,0x0,0x0,0x6f,0x71, + 0xbc,0x80,0x0,0x0,0x0,0x0,0x70,0x86,0x89,0x70,0x0,0x0,0x0,0x0,0x71,0x5a, + 0xd9,0x0,0x0,0x0,0x0,0x0,0x72,0x66,0x6b,0x70,0x0,0x0,0x0,0x0,0x73,0x3a, + 0xbb,0x0,0x0,0x0,0x0,0x0,0x74,0x46,0x4d,0x70,0x0,0x0,0x0,0x0,0x75,0x1a, + 0x9d,0x0,0x0,0x0,0x0,0x0,0x76,0x2f,0x69,0xf0,0x0,0x0,0x0,0x0,0x76,0xfa, + 0x7f,0x0,0x0,0x0,0x0,0x0,0x78,0xf,0x4b,0xf0,0x0,0x0,0x0,0x0,0x78,0xda, + 0x61,0x0,0x0,0x0,0x0,0x0,0x79,0xef,0x2d,0xf0,0x0,0x0,0x0,0x0,0x7a,0xba, + 0x43,0x0,0x0,0x0,0x0,0x0,0x7b,0xcf,0xf,0xf0,0x0,0x0,0x0,0x0,0x7c,0xa3, + 0x5f,0x80,0x0,0x0,0x0,0x0,0x7d,0xae,0xf1,0xf0,0x0,0x0,0x0,0x0,0x7e,0x83, + 0x41,0x80,0x0,0x0,0x0,0x0,0x7f,0x8e,0xd3,0xf0,0x0,0x1,0x2,0x1,0x2,0x1, + 0x2,0x3,0x2,0x3,0x2,0x4,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0xff,0xff,0xa3, + 0xc,0x0,0x0,0xff,0xff,0x9d,0x90,0x0,0x4,0xff,0xff,0xab,0xa0,0x0,0x8,0xff, + 0xff,0xb9,0xb0,0x1,0xc,0xff,0xff,0xb9,0xb0,0x1,0x10,0x4c,0x4d,0x54,0x0,0x4d, + 0x53,0x54,0x0,0x43,0x53,0x54,0x0,0x43,0x44,0x54,0x0,0x43,0x57,0x54,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x43,0x53,0x54,0x36,0x43,0x44, + 0x54,0x2c,0x4d,0x34,0x2e,0x31,0x2e,0x30,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30, + 0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Mexico/BajaNorte + 0x0,0x0,0x9,0x34, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x96,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x80,0x0,0x0,0x0,0xa5, + 0xb6,0xf6,0x80,0xa9,0x79,0x4f,0x70,0xaf,0xf2,0x7c,0xf0,0xb6,0x66,0x64,0x70,0xb7, + 0x1b,0x10,0x0,0xb8,0xa,0xf2,0xf0,0xcb,0xea,0x8d,0x80,0xd2,0x23,0xf4,0x70,0xd2, + 0x99,0xba,0x70,0xd7,0x1b,0x59,0x0,0xd8,0x91,0xb4,0xf0,0xe2,0x7e,0x4b,0x90,0xe3, + 0x49,0x52,0x90,0xe4,0x5e,0x2d,0x90,0xe5,0x29,0x34,0x90,0xe6,0x47,0x4a,0x10,0xe7, + 0x12,0x51,0x10,0xe8,0x27,0x2c,0x10,0xe8,0xf2,0x33,0x10,0xea,0x7,0xe,0x10,0xea, + 0xd2,0x15,0x10,0xeb,0xe6,0xf0,0x10,0xec,0xb1,0xf7,0x10,0xed,0xc6,0xd2,0x10,0xee, + 0x91,0xd9,0x10,0xb,0xe0,0xaf,0xa0,0xc,0xd9,0xcd,0x10,0xd,0xc0,0x91,0xa0,0xe, + 0xb9,0xaf,0x10,0xf,0xa9,0xae,0x20,0x10,0x99,0x91,0x10,0x11,0x89,0x90,0x20,0x12, + 0x79,0x73,0x10,0x13,0x69,0x72,0x20,0x14,0x59,0x55,0x10,0x15,0x49,0x54,0x20,0x16, + 0x39,0x37,0x10,0x17,0x29,0x36,0x20,0x18,0x22,0x53,0x90,0x19,0x9,0x18,0x20,0x1a, + 0x2,0x35,0x90,0x1a,0xf2,0x34,0xa0,0x1b,0xe2,0x17,0x90,0x1c,0xd2,0x16,0xa0,0x1d, + 0xc1,0xf9,0x90,0x1e,0xb1,0xf8,0xa0,0x1f,0xa1,0xdb,0x90,0x20,0x76,0x2b,0x20,0x21, + 0x81,0xbd,0x90,0x22,0x56,0xd,0x20,0x23,0x6a,0xda,0x10,0x24,0x35,0xef,0x20,0x25, + 0x4a,0xbc,0x10,0x26,0x15,0xd1,0x20,0x27,0x2a,0x9e,0x10,0x27,0xfe,0xed,0xa0,0x29, + 0xa,0x80,0x10,0x29,0xde,0xcf,0xa0,0x2a,0xea,0x62,0x10,0x2b,0xbe,0xb1,0xa0,0x2c, + 0xd3,0x7e,0x90,0x2d,0x9e,0x93,0xa0,0x2e,0xb3,0x60,0x90,0x2f,0x7e,0x75,0xa0,0x30, + 0x93,0x42,0x90,0x31,0x67,0x92,0x20,0x32,0x73,0x24,0x90,0x33,0x47,0x74,0x20,0x34, + 0x53,0x6,0x90,0x35,0x27,0x56,0x20,0x36,0x32,0xe8,0x90,0x37,0x7,0x38,0x20,0x38, + 0x1c,0x5,0x10,0x38,0xe7,0x1a,0x20,0x39,0xfb,0xe7,0x10,0x3a,0xc6,0xfc,0x20,0x3b, + 0xdb,0xc9,0x10,0x3c,0xb0,0x18,0xa0,0x3d,0xbb,0xab,0x10,0x3e,0x8f,0xfa,0xa0,0x3f, + 0x9b,0x8d,0x10,0x40,0x6f,0xdc,0xa0,0x41,0x84,0xa9,0x90,0x42,0x4f,0xbe,0xa0,0x43, + 0x64,0x8b,0x90,0x44,0x2f,0xa0,0xa0,0x45,0x44,0x6d,0x90,0x46,0xf,0x82,0xa0,0x47, + 0x24,0x4f,0x90,0x47,0xf8,0x9f,0x20,0x49,0x4,0x31,0x90,0x49,0xd8,0x81,0x20,0x4a, + 0xe4,0x13,0x90,0x4b,0x9c,0xb3,0xa0,0x4c,0xd6,0x6a,0x90,0x4d,0x7c,0x95,0xa0,0x4e, + 0xb6,0x4c,0x90,0x4f,0x5c,0x77,0xa0,0x50,0x96,0x2e,0x90,0x51,0x3c,0x59,0xa0,0x52, + 0x76,0x10,0x90,0x53,0x1c,0x3b,0xa0,0x54,0x55,0xf2,0x90,0x54,0xfc,0x1d,0xa0,0x56, + 0x35,0xd4,0x90,0x56,0xe5,0x3a,0x20,0x58,0x1e,0xf1,0x10,0x58,0xc5,0x1c,0x20,0x59, + 0xfe,0xd3,0x10,0x5a,0xa4,0xfe,0x20,0x5b,0xde,0xb5,0x10,0x5c,0x84,0xe0,0x20,0x5d, + 0xbe,0x97,0x10,0x5e,0x64,0xc2,0x20,0x5f,0x9e,0x79,0x10,0x60,0x4d,0xde,0xa0,0x61, + 0x87,0x95,0x90,0x62,0x2d,0xc0,0xa0,0x63,0x67,0x77,0x90,0x64,0xd,0xa2,0xa0,0x65, + 0x47,0x59,0x90,0x65,0xed,0x84,0xa0,0x67,0x27,0x3b,0x90,0x67,0xcd,0x66,0xa0,0x69, + 0x7,0x1d,0x90,0x69,0xad,0x48,0xa0,0x6a,0xe6,0xff,0x90,0x6b,0x96,0x65,0x20,0x6c, + 0xd0,0x1c,0x10,0x6d,0x76,0x47,0x20,0x6e,0xaf,0xfe,0x10,0x6f,0x56,0x29,0x20,0x70, + 0x8f,0xe0,0x10,0x71,0x36,0xb,0x20,0x72,0x6f,0xc2,0x10,0x73,0x15,0xed,0x20,0x74, + 0x4f,0xa4,0x10,0x74,0xff,0x9,0xa0,0x76,0x38,0xc0,0x90,0x76,0xde,0xeb,0xa0,0x78, + 0x18,0xa2,0x90,0x78,0xbe,0xcd,0xa0,0x79,0xf8,0x84,0x90,0x7a,0x9e,0xaf,0xa0,0x7b, + 0xd8,0x66,0x90,0x7c,0x7e,0x91,0xa0,0x7d,0xb8,0x48,0x90,0x7e,0x5e,0x73,0xa0,0x7f, + 0x98,0x2a,0x90,0x0,0x1,0x2,0x1,0x2,0x3,0x2,0x4,0x5,0x2,0x3,0x2,0x3, 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0xff,0xff,0xf9,0xa8, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0xe,0x10,0x1,0x8,0x0,0x0, - 0x0,0x0,0x0,0x4,0x4c,0x4d,0x54,0x0,0x57,0x45,0x54,0x0,0x57,0x45,0x53,0x54, - 0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x1,0x1,0xa,0x57,0x45,0x54,0x30,0x57,0x45, - 0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2f,0x31,0x2c,0x4d,0x31,0x30,0x2e, - 0x35,0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Atlantic/Reykjavik - 0x0,0x0,0x4,0xa6, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0xff,0xff,0x92,0x4c,0x0,0x0,0xff, + 0xff,0x9d,0x90,0x0,0x4,0xff,0xff,0x8f,0x80,0x0,0x8,0xff,0xff,0x9d,0x90,0x1, + 0xc,0xff,0xff,0x9d,0x90,0x1,0x10,0xff,0xff,0x9d,0x90,0x1,0x14,0x4c,0x4d,0x54, + 0x0,0x4d,0x53,0x54,0x0,0x50,0x53,0x54,0x0,0x50,0x44,0x54,0x0,0x50,0x57,0x54, + 0x0,0x50,0x50,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, + 0x1,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x96,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0xf8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xa5,0xb6,0xf6,0x80,0xff,0xff,0xff, + 0xff,0xa9,0x79,0x4f,0x70,0xff,0xff,0xff,0xff,0xaf,0xf2,0x7c,0xf0,0xff,0xff,0xff, + 0xff,0xb6,0x66,0x64,0x70,0xff,0xff,0xff,0xff,0xb7,0x1b,0x10,0x0,0xff,0xff,0xff, + 0xff,0xb8,0xa,0xf2,0xf0,0xff,0xff,0xff,0xff,0xcb,0xea,0x8d,0x80,0xff,0xff,0xff, + 0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x99,0xba,0x70,0xff,0xff,0xff, + 0xff,0xd7,0x1b,0x59,0x0,0xff,0xff,0xff,0xff,0xd8,0x91,0xb4,0xf0,0xff,0xff,0xff, + 0xff,0xe2,0x7e,0x4b,0x90,0xff,0xff,0xff,0xff,0xe3,0x49,0x52,0x90,0xff,0xff,0xff, + 0xff,0xe4,0x5e,0x2d,0x90,0xff,0xff,0xff,0xff,0xe5,0x29,0x34,0x90,0xff,0xff,0xff, + 0xff,0xe6,0x47,0x4a,0x10,0xff,0xff,0xff,0xff,0xe7,0x12,0x51,0x10,0xff,0xff,0xff, + 0xff,0xe8,0x27,0x2c,0x10,0xff,0xff,0xff,0xff,0xe8,0xf2,0x33,0x10,0xff,0xff,0xff, + 0xff,0xea,0x7,0xe,0x10,0xff,0xff,0xff,0xff,0xea,0xd2,0x15,0x10,0xff,0xff,0xff, + 0xff,0xeb,0xe6,0xf0,0x10,0xff,0xff,0xff,0xff,0xec,0xb1,0xf7,0x10,0xff,0xff,0xff, + 0xff,0xed,0xc6,0xd2,0x10,0xff,0xff,0xff,0xff,0xee,0x91,0xd9,0x10,0x0,0x0,0x0, + 0x0,0xb,0xe0,0xaf,0xa0,0x0,0x0,0x0,0x0,0xc,0xd9,0xcd,0x10,0x0,0x0,0x0, + 0x0,0xd,0xc0,0x91,0xa0,0x0,0x0,0x0,0x0,0xe,0xb9,0xaf,0x10,0x0,0x0,0x0, + 0x0,0xf,0xa9,0xae,0x20,0x0,0x0,0x0,0x0,0x10,0x99,0x91,0x10,0x0,0x0,0x0, + 0x0,0x11,0x89,0x90,0x20,0x0,0x0,0x0,0x0,0x12,0x79,0x73,0x10,0x0,0x0,0x0, + 0x0,0x13,0x69,0x72,0x20,0x0,0x0,0x0,0x0,0x14,0x59,0x55,0x10,0x0,0x0,0x0, + 0x0,0x15,0x49,0x54,0x20,0x0,0x0,0x0,0x0,0x16,0x39,0x37,0x10,0x0,0x0,0x0, + 0x0,0x17,0x29,0x36,0x20,0x0,0x0,0x0,0x0,0x18,0x22,0x53,0x90,0x0,0x0,0x0, + 0x0,0x19,0x9,0x18,0x20,0x0,0x0,0x0,0x0,0x1a,0x2,0x35,0x90,0x0,0x0,0x0, + 0x0,0x1a,0xf2,0x34,0xa0,0x0,0x0,0x0,0x0,0x1b,0xe2,0x17,0x90,0x0,0x0,0x0, + 0x0,0x1c,0xd2,0x16,0xa0,0x0,0x0,0x0,0x0,0x1d,0xc1,0xf9,0x90,0x0,0x0,0x0, + 0x0,0x1e,0xb1,0xf8,0xa0,0x0,0x0,0x0,0x0,0x1f,0xa1,0xdb,0x90,0x0,0x0,0x0, + 0x0,0x20,0x76,0x2b,0x20,0x0,0x0,0x0,0x0,0x21,0x81,0xbd,0x90,0x0,0x0,0x0, + 0x0,0x22,0x56,0xd,0x20,0x0,0x0,0x0,0x0,0x23,0x6a,0xda,0x10,0x0,0x0,0x0, + 0x0,0x24,0x35,0xef,0x20,0x0,0x0,0x0,0x0,0x25,0x4a,0xbc,0x10,0x0,0x0,0x0, + 0x0,0x26,0x15,0xd1,0x20,0x0,0x0,0x0,0x0,0x27,0x2a,0x9e,0x10,0x0,0x0,0x0, + 0x0,0x27,0xfe,0xed,0xa0,0x0,0x0,0x0,0x0,0x29,0xa,0x80,0x10,0x0,0x0,0x0, + 0x0,0x29,0xde,0xcf,0xa0,0x0,0x0,0x0,0x0,0x2a,0xea,0x62,0x10,0x0,0x0,0x0, + 0x0,0x2b,0xbe,0xb1,0xa0,0x0,0x0,0x0,0x0,0x2c,0xd3,0x7e,0x90,0x0,0x0,0x0, + 0x0,0x2d,0x9e,0x93,0xa0,0x0,0x0,0x0,0x0,0x2e,0xb3,0x60,0x90,0x0,0x0,0x0, + 0x0,0x2f,0x7e,0x75,0xa0,0x0,0x0,0x0,0x0,0x30,0x93,0x42,0x90,0x0,0x0,0x0, + 0x0,0x31,0x67,0x92,0x20,0x0,0x0,0x0,0x0,0x32,0x73,0x24,0x90,0x0,0x0,0x0, + 0x0,0x33,0x47,0x74,0x20,0x0,0x0,0x0,0x0,0x34,0x53,0x6,0x90,0x0,0x0,0x0, + 0x0,0x35,0x27,0x56,0x20,0x0,0x0,0x0,0x0,0x36,0x32,0xe8,0x90,0x0,0x0,0x0, + 0x0,0x37,0x7,0x38,0x20,0x0,0x0,0x0,0x0,0x38,0x1c,0x5,0x10,0x0,0x0,0x0, + 0x0,0x38,0xe7,0x1a,0x20,0x0,0x0,0x0,0x0,0x39,0xfb,0xe7,0x10,0x0,0x0,0x0, + 0x0,0x3a,0xc6,0xfc,0x20,0x0,0x0,0x0,0x0,0x3b,0xdb,0xc9,0x10,0x0,0x0,0x0, + 0x0,0x3c,0xb0,0x18,0xa0,0x0,0x0,0x0,0x0,0x3d,0xbb,0xab,0x10,0x0,0x0,0x0, + 0x0,0x3e,0x8f,0xfa,0xa0,0x0,0x0,0x0,0x0,0x3f,0x9b,0x8d,0x10,0x0,0x0,0x0, + 0x0,0x40,0x6f,0xdc,0xa0,0x0,0x0,0x0,0x0,0x41,0x84,0xa9,0x90,0x0,0x0,0x0, + 0x0,0x42,0x4f,0xbe,0xa0,0x0,0x0,0x0,0x0,0x43,0x64,0x8b,0x90,0x0,0x0,0x0, + 0x0,0x44,0x2f,0xa0,0xa0,0x0,0x0,0x0,0x0,0x45,0x44,0x6d,0x90,0x0,0x0,0x0, + 0x0,0x46,0xf,0x82,0xa0,0x0,0x0,0x0,0x0,0x47,0x24,0x4f,0x90,0x0,0x0,0x0, + 0x0,0x47,0xf8,0x9f,0x20,0x0,0x0,0x0,0x0,0x49,0x4,0x31,0x90,0x0,0x0,0x0, + 0x0,0x49,0xd8,0x81,0x20,0x0,0x0,0x0,0x0,0x4a,0xe4,0x13,0x90,0x0,0x0,0x0, + 0x0,0x4b,0x9c,0xb3,0xa0,0x0,0x0,0x0,0x0,0x4c,0xd6,0x6a,0x90,0x0,0x0,0x0, + 0x0,0x4d,0x7c,0x95,0xa0,0x0,0x0,0x0,0x0,0x4e,0xb6,0x4c,0x90,0x0,0x0,0x0, + 0x0,0x4f,0x5c,0x77,0xa0,0x0,0x0,0x0,0x0,0x50,0x96,0x2e,0x90,0x0,0x0,0x0, + 0x0,0x51,0x3c,0x59,0xa0,0x0,0x0,0x0,0x0,0x52,0x76,0x10,0x90,0x0,0x0,0x0, + 0x0,0x53,0x1c,0x3b,0xa0,0x0,0x0,0x0,0x0,0x54,0x55,0xf2,0x90,0x0,0x0,0x0, + 0x0,0x54,0xfc,0x1d,0xa0,0x0,0x0,0x0,0x0,0x56,0x35,0xd4,0x90,0x0,0x0,0x0, + 0x0,0x56,0xe5,0x3a,0x20,0x0,0x0,0x0,0x0,0x58,0x1e,0xf1,0x10,0x0,0x0,0x0, + 0x0,0x58,0xc5,0x1c,0x20,0x0,0x0,0x0,0x0,0x59,0xfe,0xd3,0x10,0x0,0x0,0x0, + 0x0,0x5a,0xa4,0xfe,0x20,0x0,0x0,0x0,0x0,0x5b,0xde,0xb5,0x10,0x0,0x0,0x0, + 0x0,0x5c,0x84,0xe0,0x20,0x0,0x0,0x0,0x0,0x5d,0xbe,0x97,0x10,0x0,0x0,0x0, + 0x0,0x5e,0x64,0xc2,0x20,0x0,0x0,0x0,0x0,0x5f,0x9e,0x79,0x10,0x0,0x0,0x0, + 0x0,0x60,0x4d,0xde,0xa0,0x0,0x0,0x0,0x0,0x61,0x87,0x95,0x90,0x0,0x0,0x0, + 0x0,0x62,0x2d,0xc0,0xa0,0x0,0x0,0x0,0x0,0x63,0x67,0x77,0x90,0x0,0x0,0x0, + 0x0,0x64,0xd,0xa2,0xa0,0x0,0x0,0x0,0x0,0x65,0x47,0x59,0x90,0x0,0x0,0x0, + 0x0,0x65,0xed,0x84,0xa0,0x0,0x0,0x0,0x0,0x67,0x27,0x3b,0x90,0x0,0x0,0x0, + 0x0,0x67,0xcd,0x66,0xa0,0x0,0x0,0x0,0x0,0x69,0x7,0x1d,0x90,0x0,0x0,0x0, + 0x0,0x69,0xad,0x48,0xa0,0x0,0x0,0x0,0x0,0x6a,0xe6,0xff,0x90,0x0,0x0,0x0, + 0x0,0x6b,0x96,0x65,0x20,0x0,0x0,0x0,0x0,0x6c,0xd0,0x1c,0x10,0x0,0x0,0x0, + 0x0,0x6d,0x76,0x47,0x20,0x0,0x0,0x0,0x0,0x6e,0xaf,0xfe,0x10,0x0,0x0,0x0, + 0x0,0x6f,0x56,0x29,0x20,0x0,0x0,0x0,0x0,0x70,0x8f,0xe0,0x10,0x0,0x0,0x0, + 0x0,0x71,0x36,0xb,0x20,0x0,0x0,0x0,0x0,0x72,0x6f,0xc2,0x10,0x0,0x0,0x0, + 0x0,0x73,0x15,0xed,0x20,0x0,0x0,0x0,0x0,0x74,0x4f,0xa4,0x10,0x0,0x0,0x0, + 0x0,0x74,0xff,0x9,0xa0,0x0,0x0,0x0,0x0,0x76,0x38,0xc0,0x90,0x0,0x0,0x0, + 0x0,0x76,0xde,0xeb,0xa0,0x0,0x0,0x0,0x0,0x78,0x18,0xa2,0x90,0x0,0x0,0x0, + 0x0,0x78,0xbe,0xcd,0xa0,0x0,0x0,0x0,0x0,0x79,0xf8,0x84,0x90,0x0,0x0,0x0, + 0x0,0x7a,0x9e,0xaf,0xa0,0x0,0x0,0x0,0x0,0x7b,0xd8,0x66,0x90,0x0,0x0,0x0, + 0x0,0x7c,0x7e,0x91,0xa0,0x0,0x0,0x0,0x0,0x7d,0xb8,0x48,0x90,0x0,0x0,0x0, + 0x0,0x7e,0x5e,0x73,0xa0,0x0,0x0,0x0,0x0,0x7f,0x98,0x2a,0x90,0x0,0x1,0x2, + 0x1,0x2,0x3,0x2,0x4,0x5,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0xff,0xff,0x92,0x4c,0x0,0x0,0xff,0xff,0x9d,0x90,0x0,0x4,0xff, + 0xff,0x8f,0x80,0x0,0x8,0xff,0xff,0x9d,0x90,0x1,0xc,0xff,0xff,0x9d,0x90,0x1, + 0x10,0xff,0xff,0x9d,0x90,0x1,0x14,0x4c,0x4d,0x54,0x0,0x4d,0x53,0x54,0x0,0x50, + 0x53,0x54,0x0,0x50,0x44,0x54,0x0,0x50,0x57,0x54,0x0,0x50,0x50,0x54,0x0,0x0, + 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0xa,0x50,0x53,0x54,0x38, + 0x50,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31, + 0x2e,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Mexico/BajaSur + 0x0,0x0,0x6,0x1c, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x45,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x80,0x0,0x0,0x0,0x8b, - 0x60,0x83,0xa0,0x9c,0x91,0x1e,0x0,0x9d,0xd1,0x88,0x90,0x9e,0x72,0x51,0x80,0x9f, - 0xd5,0x3,0x10,0xa0,0x53,0x85,0x0,0xa1,0xb6,0x36,0x90,0xa4,0x3c,0x27,0x80,0xa4, - 0xb9,0x74,0x10,0xc6,0x4d,0x1a,0x0,0xc7,0x3d,0x27,0x20,0xc7,0xda,0x17,0xb0,0xc9, - 0x26,0x43,0xa0,0xc9,0xc3,0x26,0x20,0xcb,0x6,0x25,0xa0,0xcb,0xac,0x42,0xa0,0xcc, - 0xdc,0xcd,0x20,0xcd,0x8c,0x24,0xa0,0xce,0xbc,0xaf,0x20,0xcf,0x6c,0x6,0xa0,0xd0, - 0x9c,0x91,0x20,0xd1,0x4b,0xe8,0xa0,0xd2,0x85,0xad,0xa0,0xd3,0x2b,0xca,0xa0,0xd4, - 0x65,0x8f,0xa0,0xd5,0x39,0xd1,0x20,0xd6,0x45,0x71,0xa0,0xd7,0x19,0xb3,0x20,0xd8, - 0x25,0x53,0xa0,0xd8,0xf9,0x95,0x20,0xda,0xe,0x70,0x20,0xda,0xd9,0x77,0x20,0xdb, - 0xe5,0x17,0xa0,0xdc,0xb9,0x59,0x20,0xdd,0xce,0x34,0x20,0xde,0xa2,0x75,0xa0,0xdf, - 0xae,0x16,0x20,0xe0,0x82,0x57,0xa0,0xe1,0x8d,0xf8,0x20,0xe2,0x62,0x39,0xa0,0xe3, - 0x6d,0xda,0x20,0xe4,0x42,0x1b,0xa0,0xe5,0x4d,0xbc,0x20,0xe6,0x21,0xfd,0xa0,0xe7, - 0x36,0xd8,0xa0,0xe8,0xb,0x1a,0x20,0xe9,0x16,0xba,0xa0,0xe9,0xea,0xfc,0x20,0xea, - 0xf6,0x9c,0xa0,0xeb,0xca,0xde,0x20,0xec,0xd6,0x7e,0xa0,0xed,0xaa,0xc0,0x20,0xee, - 0xb6,0x60,0xa0,0xef,0x8a,0xa2,0x20,0xf0,0x96,0x42,0xa0,0xf1,0x6a,0x84,0x20,0xf2, - 0x7f,0x5f,0x20,0xf3,0x53,0xa0,0xa0,0xf4,0x5f,0x41,0x20,0xf5,0x33,0x82,0xa0,0xf6, - 0x3f,0x23,0x20,0xf7,0x13,0x64,0xa0,0xf8,0x1f,0x5,0x20,0xf8,0xf3,0x46,0xa0,0xf9, - 0xfe,0xe7,0x20,0xfa,0xd3,0x28,0xa0,0xfb,0xe8,0x3,0xa0,0xfc,0xbc,0x45,0x20,0x0, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x3,0x4,0x3,0x4, + 0x0,0x0,0x5e,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0xa5, + 0xb6,0xe8,0x70,0xaf,0xf2,0x6e,0xe0,0xb6,0x66,0x56,0x60,0xb7,0x43,0xd2,0x60,0xb8, + 0xc,0x36,0x60,0xb8,0xfd,0x86,0xf0,0xcb,0xea,0x71,0x60,0xd8,0x91,0xb4,0xf0,0x0, + 0x0,0x70,0x80,0x31,0x67,0x84,0x10,0x32,0x73,0x16,0x80,0x33,0x47,0x66,0x10,0x34, + 0x52,0xf8,0x80,0x35,0x27,0x48,0x10,0x36,0x32,0xda,0x80,0x37,0x7,0x2a,0x10,0x38, + 0x1b,0xf7,0x0,0x38,0xe7,0xc,0x10,0x39,0xfb,0xd9,0x0,0x3a,0xf5,0x12,0x90,0x3b, + 0xb6,0xd1,0x0,0x3c,0xb0,0xa,0x90,0x3d,0xbb,0x9d,0x0,0x3e,0x8f,0xec,0x90,0x3f, + 0x9b,0x7f,0x0,0x40,0x6f,0xce,0x90,0x41,0x84,0x9b,0x80,0x42,0x4f,0xb0,0x90,0x43, + 0x64,0x7d,0x80,0x44,0x2f,0x92,0x90,0x45,0x44,0x5f,0x80,0x46,0xf,0x74,0x90,0x47, + 0x24,0x41,0x80,0x47,0xf8,0x91,0x10,0x49,0x4,0x23,0x80,0x49,0xd8,0x73,0x10,0x4a, + 0xe4,0x5,0x80,0x4b,0xb8,0x55,0x10,0x4c,0xcd,0x22,0x0,0x4d,0x98,0x37,0x10,0x4e, + 0xad,0x4,0x0,0x4f,0x78,0x19,0x10,0x50,0x8c,0xe6,0x0,0x51,0x61,0x35,0x90,0x52, + 0x6c,0xc8,0x0,0x53,0x41,0x17,0x90,0x54,0x4c,0xaa,0x0,0x55,0x20,0xf9,0x90,0x56, + 0x2c,0x8c,0x0,0x57,0x0,0xdb,0x90,0x58,0x15,0xa8,0x80,0x58,0xe0,0xbd,0x90,0x59, + 0xf5,0x8a,0x80,0x5a,0xc0,0x9f,0x90,0x5b,0xd5,0x6c,0x80,0x5c,0xa9,0xbc,0x10,0x5d, + 0xb5,0x4e,0x80,0x5e,0x89,0x9e,0x10,0x5f,0x95,0x30,0x80,0x60,0x69,0x80,0x10,0x61, + 0x7e,0x4d,0x0,0x62,0x49,0x62,0x10,0x63,0x5e,0x2f,0x0,0x64,0x29,0x44,0x10,0x65, + 0x3e,0x11,0x0,0x66,0x12,0x60,0x90,0x67,0x1d,0xf3,0x0,0x67,0xf2,0x42,0x90,0x68, + 0xfd,0xd5,0x0,0x69,0xd2,0x24,0x90,0x6a,0xdd,0xb7,0x0,0x6b,0xb2,0x6,0x90,0x6c, + 0xc6,0xd3,0x80,0x6d,0x91,0xe8,0x90,0x6e,0xa6,0xb5,0x80,0x6f,0x71,0xca,0x90,0x70, + 0x86,0x97,0x80,0x71,0x5a,0xe7,0x10,0x72,0x66,0x79,0x80,0x73,0x3a,0xc9,0x10,0x74, + 0x46,0x5b,0x80,0x75,0x1a,0xab,0x10,0x76,0x2f,0x78,0x0,0x76,0xfa,0x8d,0x10,0x78, + 0xf,0x5a,0x0,0x78,0xda,0x6f,0x10,0x79,0xef,0x3c,0x0,0x7a,0xba,0x51,0x10,0x7b, + 0xcf,0x1e,0x0,0x7c,0xa3,0x6d,0x90,0x7d,0xaf,0x0,0x0,0x7e,0x83,0x4f,0x90,0x7f, + 0x8e,0xe2,0x0,0x0,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x3,0x1,0x4,0x1,0x4, + 0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4, + 0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4, + 0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4, + 0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4, + 0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4, + 0x1,0xff,0xff,0x9c,0x3c,0x0,0x0,0xff,0xff,0x9d,0x90,0x0,0x4,0xff,0xff,0xab, + 0xa0,0x0,0x8,0xff,0xff,0x8f,0x80,0x0,0xc,0xff,0xff,0xab,0xa0,0x1,0x10,0xff, + 0xff,0x9d,0x90,0x0,0x4,0x4c,0x4d,0x54,0x0,0x4d,0x53,0x54,0x0,0x43,0x53,0x54, + 0x0,0x50,0x53,0x54,0x0,0x4d,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5e,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x14,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xa5,0xb6,0xe8, + 0x70,0xff,0xff,0xff,0xff,0xaf,0xf2,0x6e,0xe0,0xff,0xff,0xff,0xff,0xb6,0x66,0x56, + 0x60,0xff,0xff,0xff,0xff,0xb7,0x43,0xd2,0x60,0xff,0xff,0xff,0xff,0xb8,0xc,0x36, + 0x60,0xff,0xff,0xff,0xff,0xb8,0xfd,0x86,0xf0,0xff,0xff,0xff,0xff,0xcb,0xea,0x71, + 0x60,0xff,0xff,0xff,0xff,0xd8,0x91,0xb4,0xf0,0x0,0x0,0x0,0x0,0x0,0x0,0x70, + 0x80,0x0,0x0,0x0,0x0,0x31,0x67,0x84,0x10,0x0,0x0,0x0,0x0,0x32,0x73,0x16, + 0x80,0x0,0x0,0x0,0x0,0x33,0x47,0x66,0x10,0x0,0x0,0x0,0x0,0x34,0x52,0xf8, + 0x80,0x0,0x0,0x0,0x0,0x35,0x27,0x48,0x10,0x0,0x0,0x0,0x0,0x36,0x32,0xda, + 0x80,0x0,0x0,0x0,0x0,0x37,0x7,0x2a,0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0xf7, + 0x0,0x0,0x0,0x0,0x0,0x38,0xe7,0xc,0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0xd9, + 0x0,0x0,0x0,0x0,0x0,0x3a,0xf5,0x12,0x90,0x0,0x0,0x0,0x0,0x3b,0xb6,0xd1, + 0x0,0x0,0x0,0x0,0x0,0x3c,0xb0,0xa,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x9d, + 0x0,0x0,0x0,0x0,0x0,0x3e,0x8f,0xec,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x7f, + 0x0,0x0,0x0,0x0,0x0,0x40,0x6f,0xce,0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x9b, + 0x80,0x0,0x0,0x0,0x0,0x42,0x4f,0xb0,0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x7d, + 0x80,0x0,0x0,0x0,0x0,0x44,0x2f,0x92,0x90,0x0,0x0,0x0,0x0,0x45,0x44,0x5f, + 0x80,0x0,0x0,0x0,0x0,0x46,0xf,0x74,0x90,0x0,0x0,0x0,0x0,0x47,0x24,0x41, + 0x80,0x0,0x0,0x0,0x0,0x47,0xf8,0x91,0x10,0x0,0x0,0x0,0x0,0x49,0x4,0x23, + 0x80,0x0,0x0,0x0,0x0,0x49,0xd8,0x73,0x10,0x0,0x0,0x0,0x0,0x4a,0xe4,0x5, + 0x80,0x0,0x0,0x0,0x0,0x4b,0xb8,0x55,0x10,0x0,0x0,0x0,0x0,0x4c,0xcd,0x22, + 0x0,0x0,0x0,0x0,0x0,0x4d,0x98,0x37,0x10,0x0,0x0,0x0,0x0,0x4e,0xad,0x4, + 0x0,0x0,0x0,0x0,0x0,0x4f,0x78,0x19,0x10,0x0,0x0,0x0,0x0,0x50,0x8c,0xe6, + 0x0,0x0,0x0,0x0,0x0,0x51,0x61,0x35,0x90,0x0,0x0,0x0,0x0,0x52,0x6c,0xc8, + 0x0,0x0,0x0,0x0,0x0,0x53,0x41,0x17,0x90,0x0,0x0,0x0,0x0,0x54,0x4c,0xaa, + 0x0,0x0,0x0,0x0,0x0,0x55,0x20,0xf9,0x90,0x0,0x0,0x0,0x0,0x56,0x2c,0x8c, + 0x0,0x0,0x0,0x0,0x0,0x57,0x0,0xdb,0x90,0x0,0x0,0x0,0x0,0x58,0x15,0xa8, + 0x80,0x0,0x0,0x0,0x0,0x58,0xe0,0xbd,0x90,0x0,0x0,0x0,0x0,0x59,0xf5,0x8a, + 0x80,0x0,0x0,0x0,0x0,0x5a,0xc0,0x9f,0x90,0x0,0x0,0x0,0x0,0x5b,0xd5,0x6c, + 0x80,0x0,0x0,0x0,0x0,0x5c,0xa9,0xbc,0x10,0x0,0x0,0x0,0x0,0x5d,0xb5,0x4e, + 0x80,0x0,0x0,0x0,0x0,0x5e,0x89,0x9e,0x10,0x0,0x0,0x0,0x0,0x5f,0x95,0x30, + 0x80,0x0,0x0,0x0,0x0,0x60,0x69,0x80,0x10,0x0,0x0,0x0,0x0,0x61,0x7e,0x4d, + 0x0,0x0,0x0,0x0,0x0,0x62,0x49,0x62,0x10,0x0,0x0,0x0,0x0,0x63,0x5e,0x2f, + 0x0,0x0,0x0,0x0,0x0,0x64,0x29,0x44,0x10,0x0,0x0,0x0,0x0,0x65,0x3e,0x11, + 0x0,0x0,0x0,0x0,0x0,0x66,0x12,0x60,0x90,0x0,0x0,0x0,0x0,0x67,0x1d,0xf3, + 0x0,0x0,0x0,0x0,0x0,0x67,0xf2,0x42,0x90,0x0,0x0,0x0,0x0,0x68,0xfd,0xd5, + 0x0,0x0,0x0,0x0,0x0,0x69,0xd2,0x24,0x90,0x0,0x0,0x0,0x0,0x6a,0xdd,0xb7, + 0x0,0x0,0x0,0x0,0x0,0x6b,0xb2,0x6,0x90,0x0,0x0,0x0,0x0,0x6c,0xc6,0xd3, + 0x80,0x0,0x0,0x0,0x0,0x6d,0x91,0xe8,0x90,0x0,0x0,0x0,0x0,0x6e,0xa6,0xb5, + 0x80,0x0,0x0,0x0,0x0,0x6f,0x71,0xca,0x90,0x0,0x0,0x0,0x0,0x70,0x86,0x97, + 0x80,0x0,0x0,0x0,0x0,0x71,0x5a,0xe7,0x10,0x0,0x0,0x0,0x0,0x72,0x66,0x79, + 0x80,0x0,0x0,0x0,0x0,0x73,0x3a,0xc9,0x10,0x0,0x0,0x0,0x0,0x74,0x46,0x5b, + 0x80,0x0,0x0,0x0,0x0,0x75,0x1a,0xab,0x10,0x0,0x0,0x0,0x0,0x76,0x2f,0x78, + 0x0,0x0,0x0,0x0,0x0,0x76,0xfa,0x8d,0x10,0x0,0x0,0x0,0x0,0x78,0xf,0x5a, + 0x0,0x0,0x0,0x0,0x0,0x78,0xda,0x6f,0x10,0x0,0x0,0x0,0x0,0x79,0xef,0x3c, + 0x0,0x0,0x0,0x0,0x0,0x7a,0xba,0x51,0x10,0x0,0x0,0x0,0x0,0x7b,0xcf,0x1e, + 0x0,0x0,0x0,0x0,0x0,0x7c,0xa3,0x6d,0x90,0x0,0x0,0x0,0x0,0x7d,0xaf,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7e,0x83,0x4f,0x90,0x0,0x0,0x0,0x0,0x7f,0x8e,0xe2, + 0x0,0x0,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x3,0x1,0x4,0x1,0x4,0x1,0x4, + 0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4, + 0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4, + 0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4, + 0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4, + 0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0xff, + 0xff,0x9c,0x3c,0x0,0x0,0xff,0xff,0x9d,0x90,0x0,0x4,0xff,0xff,0xab,0xa0,0x0, + 0x8,0xff,0xff,0x8f,0x80,0x0,0xc,0xff,0xff,0xab,0xa0,0x1,0x10,0xff,0xff,0x9d, + 0x90,0x0,0x4,0x4c,0x4d,0x54,0x0,0x4d,0x53,0x54,0x0,0x43,0x53,0x54,0x0,0x50, + 0x53,0x54,0x0,0x4d,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0xa,0x4d,0x53,0x54,0x37,0x4d,0x44,0x54,0x2c,0x4d,0x34,0x2e,0x31, + 0x2e,0x30,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Australia/North + 0x0,0x0,0x1,0x43, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x9,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xa,0x80,0x0,0x0,0x0,0x9c, + 0x4e,0xad,0xa4,0x9c,0xbc,0x27,0xf8,0xcb,0x54,0xba,0x8,0xcb,0xc7,0x5e,0x78,0xcc, + 0xb7,0x5d,0x88,0xcd,0xa7,0x40,0x78,0xce,0xa0,0x7a,0x8,0xcf,0x87,0x22,0x78,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x0,0x0,0x7e,0x90,0x0,0x0,0x0,0x0, + 0x93,0xa8,0x1,0x5,0x0,0x0,0x85,0x98,0x0,0x0,0x41,0x43,0x53,0x54,0x0,0x41, + 0x43,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb,0x0,0x0, + 0x0,0x4,0x0,0x0,0x0,0xe,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff, + 0xff,0xff,0x73,0x16,0x92,0x58,0xff,0xff,0xff,0xff,0x7b,0x12,0x3,0x70,0xff,0xff, + 0xff,0xff,0x9c,0x4e,0xad,0xa4,0xff,0xff,0xff,0xff,0x9c,0xbc,0x27,0xf8,0xff,0xff, + 0xff,0xff,0xcb,0x54,0xba,0x8,0xff,0xff,0xff,0xff,0xcb,0xc7,0x5e,0x78,0xff,0xff, + 0xff,0xff,0xcc,0xb7,0x5d,0x88,0xff,0xff,0xff,0xff,0xcd,0xa7,0x40,0x78,0xff,0xff, + 0xff,0xff,0xce,0xa0,0x7a,0x8,0xff,0xff,0xff,0xff,0xcf,0x87,0x22,0x78,0x0,0x1, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x0,0x0,0x7a,0xa8,0x0,0x0,0x0, + 0x0,0x7e,0x90,0x0,0x4,0x0,0x0,0x93,0xa8,0x1,0x9,0x0,0x0,0x85,0x98,0x0, + 0x4,0x4c,0x4d,0x54,0x0,0x41,0x43,0x53,0x54,0x0,0x41,0x43,0x44,0x54,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x41,0x43,0x53,0x54,0x2d,0x39,0x3a,0x33, + 0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Australia/South + 0x0,0x0,0x8,0xbe, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x8e,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xa,0x80,0x0,0x0,0x0,0x9c, + 0x4e,0xad,0xa4,0x9c,0xbc,0x27,0xf8,0xcb,0x54,0xba,0x8,0xcb,0xc7,0x5e,0x78,0xcc, + 0xb7,0x5d,0x88,0xcd,0xa7,0x40,0x78,0xce,0xa0,0x7a,0x8,0xcf,0x87,0x22,0x78,0x3, + 0x70,0x40,0x88,0x4,0xd,0x23,0x8,0x5,0x50,0x22,0x88,0x5,0xf6,0x3f,0x88,0x7, + 0x30,0x4,0x88,0x7,0xd6,0x21,0x88,0x9,0xf,0xe6,0x88,0x9,0xb6,0x3,0x88,0xa, + 0xef,0xc8,0x88,0xb,0x9f,0x20,0x8,0xc,0xd8,0xe5,0x8,0xd,0x7f,0x2,0x8,0xe, + 0xb8,0xc7,0x8,0xf,0x5e,0xe4,0x8,0x10,0x98,0xa9,0x8,0x11,0x3e,0xc6,0x8,0x12, + 0x78,0x8b,0x8,0x13,0x1e,0xa8,0x8,0x14,0x58,0x6d,0x8,0x14,0xfe,0x8a,0x8,0x16, + 0x38,0x4f,0x8,0x16,0xe7,0xa6,0x88,0x18,0x21,0x6b,0x88,0x18,0xc7,0x88,0x88,0x1a, + 0x1,0x4d,0x88,0x1a,0xa7,0x6a,0x88,0x1b,0xe1,0x2f,0x88,0x1c,0x87,0x4c,0x88,0x1d, + 0xc1,0x11,0x88,0x1e,0x79,0xa3,0x88,0x1f,0x97,0xb9,0x8,0x20,0x59,0x85,0x88,0x21, + 0x80,0xd5,0x88,0x22,0x42,0xa2,0x8,0x23,0x69,0xf2,0x8,0x24,0x22,0x84,0x8,0x25, + 0x49,0xd4,0x8,0x26,0x2,0x66,0x8,0x27,0x29,0xb6,0x8,0x27,0xcf,0xd3,0x8,0x29, + 0x9,0x98,0x8,0x29,0xcb,0x64,0x88,0x2a,0xe9,0x7a,0x8,0x2b,0x98,0xd1,0x88,0x2c, + 0xd2,0x96,0x88,0x2d,0x8b,0x28,0x88,0x2e,0xb2,0x78,0x88,0x2f,0x74,0x45,0x8,0x30, + 0x92,0x5a,0x88,0x31,0x5d,0x61,0x88,0x32,0x72,0x3c,0x88,0x33,0x3d,0x43,0x88,0x34, + 0x52,0x1e,0x88,0x35,0x1d,0x25,0x88,0x36,0x32,0x0,0x88,0x36,0xfd,0x7,0x88,0x38, + 0x1b,0x1d,0x8,0x38,0xdc,0xe9,0x88,0x39,0xfa,0xff,0x8,0x3a,0xbc,0xcb,0x88,0x3b, + 0xda,0xe1,0x8,0x3c,0xa5,0xe8,0x8,0x3d,0xba,0xc3,0x8,0x3e,0x85,0xca,0x8,0x3f, + 0x9a,0xa5,0x8,0x40,0x65,0xac,0x8,0x41,0x83,0xc1,0x88,0x42,0x45,0x8e,0x8,0x43, + 0x63,0xa3,0x88,0x44,0x2e,0xaa,0x88,0x45,0x43,0x85,0x88,0x46,0x5,0x52,0x8,0x47, + 0x23,0x67,0x88,0x47,0xf7,0xa9,0x8,0x48,0xe7,0x9a,0x8,0x49,0xd7,0x8b,0x8,0x4a, + 0xc7,0x7c,0x8,0x4b,0xb7,0x6d,0x8,0x4c,0xa7,0x5e,0x8,0x4d,0x97,0x4f,0x8,0x4e, + 0x87,0x40,0x8,0x4f,0x77,0x31,0x8,0x50,0x70,0x5c,0x88,0x51,0x60,0x4d,0x88,0x52, + 0x50,0x3e,0x88,0x53,0x40,0x2f,0x88,0x54,0x30,0x20,0x88,0x55,0x20,0x11,0x88,0x56, + 0x10,0x2,0x88,0x56,0xff,0xf3,0x88,0x57,0xef,0xe4,0x88,0x58,0xdf,0xd5,0x88,0x59, + 0xcf,0xc6,0x88,0x5a,0xbf,0xb7,0x88,0x5b,0xb8,0xe3,0x8,0x5c,0xa8,0xd4,0x8,0x5d, + 0x98,0xc5,0x8,0x5e,0x88,0xb6,0x8,0x5f,0x78,0xa7,0x8,0x60,0x68,0x98,0x8,0x61, + 0x58,0x89,0x8,0x62,0x48,0x7a,0x8,0x63,0x38,0x6b,0x8,0x64,0x28,0x5c,0x8,0x65, + 0x18,0x4d,0x8,0x66,0x11,0x78,0x88,0x67,0x1,0x69,0x88,0x67,0xf1,0x5a,0x88,0x68, + 0xe1,0x4b,0x88,0x69,0xd1,0x3c,0x88,0x6a,0xc1,0x2d,0x88,0x6b,0xb1,0x1e,0x88,0x6c, + 0xa1,0xf,0x88,0x6d,0x91,0x0,0x88,0x6e,0x80,0xf1,0x88,0x6f,0x70,0xe2,0x88,0x70, + 0x6a,0xe,0x8,0x71,0x59,0xff,0x8,0x72,0x49,0xf0,0x8,0x73,0x39,0xe1,0x8,0x74, + 0x29,0xd2,0x8,0x75,0x19,0xc3,0x8,0x76,0x9,0xb4,0x8,0x76,0xf9,0xa5,0x8,0x77, + 0xe9,0x96,0x8,0x78,0xd9,0x87,0x8,0x79,0xc9,0x78,0x8,0x7a,0xb9,0x69,0x8,0x7b, + 0xb2,0x94,0x88,0x7c,0xa2,0x85,0x88,0x7d,0x92,0x76,0x88,0x7e,0x82,0x67,0x88,0x7f, + 0x72,0x58,0x88,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x3,0x4, 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x5,0xff,0xff,0xeb,0x60,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x4, - 0xff,0xff,0xf1,0xf0,0x0,0x9,0xff,0xff,0xf1,0xf0,0x0,0x9,0x0,0x0,0x0,0x0, - 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0xd,0x4c,0x4d,0x54,0x0,0x49,0x53,0x53,0x54, - 0x0,0x49,0x53,0x54,0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x0, - 0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0, - 0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x45,0x0,0x0,0x0,0x6,0x0,0x0,0x0, - 0x11,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x8b,0x60,0x83, - 0xa0,0xff,0xff,0xff,0xff,0x9c,0x91,0x1e,0x0,0xff,0xff,0xff,0xff,0x9d,0xd1,0x88, - 0x90,0xff,0xff,0xff,0xff,0x9e,0x72,0x51,0x80,0xff,0xff,0xff,0xff,0x9f,0xd5,0x3, - 0x10,0xff,0xff,0xff,0xff,0xa0,0x53,0x85,0x0,0xff,0xff,0xff,0xff,0xa1,0xb6,0x36, - 0x90,0xff,0xff,0xff,0xff,0xa4,0x3c,0x27,0x80,0xff,0xff,0xff,0xff,0xa4,0xb9,0x74, - 0x10,0xff,0xff,0xff,0xff,0xc6,0x4d,0x1a,0x0,0xff,0xff,0xff,0xff,0xc7,0x3d,0x27, - 0x20,0xff,0xff,0xff,0xff,0xc7,0xda,0x17,0xb0,0xff,0xff,0xff,0xff,0xc9,0x26,0x43, - 0xa0,0xff,0xff,0xff,0xff,0xc9,0xc3,0x26,0x20,0xff,0xff,0xff,0xff,0xcb,0x6,0x25, - 0xa0,0xff,0xff,0xff,0xff,0xcb,0xac,0x42,0xa0,0xff,0xff,0xff,0xff,0xcc,0xdc,0xcd, - 0x20,0xff,0xff,0xff,0xff,0xcd,0x8c,0x24,0xa0,0xff,0xff,0xff,0xff,0xce,0xbc,0xaf, - 0x20,0xff,0xff,0xff,0xff,0xcf,0x6c,0x6,0xa0,0xff,0xff,0xff,0xff,0xd0,0x9c,0x91, - 0x20,0xff,0xff,0xff,0xff,0xd1,0x4b,0xe8,0xa0,0xff,0xff,0xff,0xff,0xd2,0x85,0xad, - 0xa0,0xff,0xff,0xff,0xff,0xd3,0x2b,0xca,0xa0,0xff,0xff,0xff,0xff,0xd4,0x65,0x8f, - 0xa0,0xff,0xff,0xff,0xff,0xd5,0x39,0xd1,0x20,0xff,0xff,0xff,0xff,0xd6,0x45,0x71, - 0xa0,0xff,0xff,0xff,0xff,0xd7,0x19,0xb3,0x20,0xff,0xff,0xff,0xff,0xd8,0x25,0x53, - 0xa0,0xff,0xff,0xff,0xff,0xd8,0xf9,0x95,0x20,0xff,0xff,0xff,0xff,0xda,0xe,0x70, - 0x20,0xff,0xff,0xff,0xff,0xda,0xd9,0x77,0x20,0xff,0xff,0xff,0xff,0xdb,0xe5,0x17, - 0xa0,0xff,0xff,0xff,0xff,0xdc,0xb9,0x59,0x20,0xff,0xff,0xff,0xff,0xdd,0xce,0x34, - 0x20,0xff,0xff,0xff,0xff,0xde,0xa2,0x75,0xa0,0xff,0xff,0xff,0xff,0xdf,0xae,0x16, - 0x20,0xff,0xff,0xff,0xff,0xe0,0x82,0x57,0xa0,0xff,0xff,0xff,0xff,0xe1,0x8d,0xf8, - 0x20,0xff,0xff,0xff,0xff,0xe2,0x62,0x39,0xa0,0xff,0xff,0xff,0xff,0xe3,0x6d,0xda, - 0x20,0xff,0xff,0xff,0xff,0xe4,0x42,0x1b,0xa0,0xff,0xff,0xff,0xff,0xe5,0x4d,0xbc, - 0x20,0xff,0xff,0xff,0xff,0xe6,0x21,0xfd,0xa0,0xff,0xff,0xff,0xff,0xe7,0x36,0xd8, - 0xa0,0xff,0xff,0xff,0xff,0xe8,0xb,0x1a,0x20,0xff,0xff,0xff,0xff,0xe9,0x16,0xba, - 0xa0,0xff,0xff,0xff,0xff,0xe9,0xea,0xfc,0x20,0xff,0xff,0xff,0xff,0xea,0xf6,0x9c, - 0xa0,0xff,0xff,0xff,0xff,0xeb,0xca,0xde,0x20,0xff,0xff,0xff,0xff,0xec,0xd6,0x7e, - 0xa0,0xff,0xff,0xff,0xff,0xed,0xaa,0xc0,0x20,0xff,0xff,0xff,0xff,0xee,0xb6,0x60, - 0xa0,0xff,0xff,0xff,0xff,0xef,0x8a,0xa2,0x20,0xff,0xff,0xff,0xff,0xf0,0x96,0x42, - 0xa0,0xff,0xff,0xff,0xff,0xf1,0x6a,0x84,0x20,0xff,0xff,0xff,0xff,0xf2,0x7f,0x5f, - 0x20,0xff,0xff,0xff,0xff,0xf3,0x53,0xa0,0xa0,0xff,0xff,0xff,0xff,0xf4,0x5f,0x41, - 0x20,0xff,0xff,0xff,0xff,0xf5,0x33,0x82,0xa0,0xff,0xff,0xff,0xff,0xf6,0x3f,0x23, - 0x20,0xff,0xff,0xff,0xff,0xf7,0x13,0x64,0xa0,0xff,0xff,0xff,0xff,0xf8,0x1f,0x5, - 0x20,0xff,0xff,0xff,0xff,0xf8,0xf3,0x46,0xa0,0xff,0xff,0xff,0xff,0xf9,0xfe,0xe7, - 0x20,0xff,0xff,0xff,0xff,0xfa,0xd3,0x28,0xa0,0xff,0xff,0xff,0xff,0xfb,0xe8,0x3, - 0xa0,0xff,0xff,0xff,0xff,0xfc,0xbc,0x45,0x20,0x0,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x5,0xff,0xff, - 0xeb,0x60,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x4,0xff,0xff,0xf1,0xf0,0x0,0x9, - 0xff,0xff,0xf1,0xf0,0x0,0x9,0x0,0x0,0x0,0x0,0x1,0x4,0x0,0x0,0x0,0x0, - 0x0,0xd,0x4c,0x4d,0x54,0x0,0x49,0x53,0x53,0x54,0x0,0x49,0x53,0x54,0x0,0x47, - 0x4d,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xa, - 0x47,0x4d,0x54,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/US/Hawaii - 0x0,0x0,0x1,0x14, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x0,0x0,0x7e,0x90,0x0,0x0,0x0,0x0,0x93,0xa8,0x1,0x5,0x0,0x0,0x85, + 0x98,0x0,0x0,0x0,0x0,0x93,0xa8,0x1,0x5,0x0,0x0,0x85,0x98,0x0,0x0,0x41, + 0x43,0x53,0x54,0x0,0x41,0x43,0x44,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0, + 0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x90,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0xf8, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x73,0x16,0x8b,0x14,0xff, + 0xff,0xff,0xff,0x7b,0x12,0x3,0x70,0xff,0xff,0xff,0xff,0x9c,0x4e,0xad,0xa4,0xff, + 0xff,0xff,0xff,0x9c,0xbc,0x27,0xf8,0xff,0xff,0xff,0xff,0xcb,0x54,0xba,0x8,0xff, + 0xff,0xff,0xff,0xcb,0xc7,0x5e,0x78,0xff,0xff,0xff,0xff,0xcc,0xb7,0x5d,0x88,0xff, + 0xff,0xff,0xff,0xcd,0xa7,0x40,0x78,0xff,0xff,0xff,0xff,0xce,0xa0,0x7a,0x8,0xff, + 0xff,0xff,0xff,0xcf,0x87,0x22,0x78,0x0,0x0,0x0,0x0,0x3,0x70,0x40,0x88,0x0, + 0x0,0x0,0x0,0x4,0xd,0x23,0x8,0x0,0x0,0x0,0x0,0x5,0x50,0x22,0x88,0x0, + 0x0,0x0,0x0,0x5,0xf6,0x3f,0x88,0x0,0x0,0x0,0x0,0x7,0x30,0x4,0x88,0x0, + 0x0,0x0,0x0,0x7,0xd6,0x21,0x88,0x0,0x0,0x0,0x0,0x9,0xf,0xe6,0x88,0x0, + 0x0,0x0,0x0,0x9,0xb6,0x3,0x88,0x0,0x0,0x0,0x0,0xa,0xef,0xc8,0x88,0x0, + 0x0,0x0,0x0,0xb,0x9f,0x20,0x8,0x0,0x0,0x0,0x0,0xc,0xd8,0xe5,0x8,0x0, + 0x0,0x0,0x0,0xd,0x7f,0x2,0x8,0x0,0x0,0x0,0x0,0xe,0xb8,0xc7,0x8,0x0, + 0x0,0x0,0x0,0xf,0x5e,0xe4,0x8,0x0,0x0,0x0,0x0,0x10,0x98,0xa9,0x8,0x0, + 0x0,0x0,0x0,0x11,0x3e,0xc6,0x8,0x0,0x0,0x0,0x0,0x12,0x78,0x8b,0x8,0x0, + 0x0,0x0,0x0,0x13,0x1e,0xa8,0x8,0x0,0x0,0x0,0x0,0x14,0x58,0x6d,0x8,0x0, + 0x0,0x0,0x0,0x14,0xfe,0x8a,0x8,0x0,0x0,0x0,0x0,0x16,0x38,0x4f,0x8,0x0, + 0x0,0x0,0x0,0x16,0xe7,0xa6,0x88,0x0,0x0,0x0,0x0,0x18,0x21,0x6b,0x88,0x0, + 0x0,0x0,0x0,0x18,0xc7,0x88,0x88,0x0,0x0,0x0,0x0,0x1a,0x1,0x4d,0x88,0x0, + 0x0,0x0,0x0,0x1a,0xa7,0x6a,0x88,0x0,0x0,0x0,0x0,0x1b,0xe1,0x2f,0x88,0x0, + 0x0,0x0,0x0,0x1c,0x87,0x4c,0x88,0x0,0x0,0x0,0x0,0x1d,0xc1,0x11,0x88,0x0, + 0x0,0x0,0x0,0x1e,0x79,0xa3,0x88,0x0,0x0,0x0,0x0,0x1f,0x97,0xb9,0x8,0x0, + 0x0,0x0,0x0,0x20,0x59,0x85,0x88,0x0,0x0,0x0,0x0,0x21,0x80,0xd5,0x88,0x0, + 0x0,0x0,0x0,0x22,0x42,0xa2,0x8,0x0,0x0,0x0,0x0,0x23,0x69,0xf2,0x8,0x0, + 0x0,0x0,0x0,0x24,0x22,0x84,0x8,0x0,0x0,0x0,0x0,0x25,0x49,0xd4,0x8,0x0, + 0x0,0x0,0x0,0x26,0x2,0x66,0x8,0x0,0x0,0x0,0x0,0x27,0x29,0xb6,0x8,0x0, + 0x0,0x0,0x0,0x27,0xcf,0xd3,0x8,0x0,0x0,0x0,0x0,0x29,0x9,0x98,0x8,0x0, + 0x0,0x0,0x0,0x29,0xcb,0x64,0x88,0x0,0x0,0x0,0x0,0x2a,0xe9,0x7a,0x8,0x0, + 0x0,0x0,0x0,0x2b,0x98,0xd1,0x88,0x0,0x0,0x0,0x0,0x2c,0xd2,0x96,0x88,0x0, + 0x0,0x0,0x0,0x2d,0x8b,0x28,0x88,0x0,0x0,0x0,0x0,0x2e,0xb2,0x78,0x88,0x0, + 0x0,0x0,0x0,0x2f,0x74,0x45,0x8,0x0,0x0,0x0,0x0,0x30,0x92,0x5a,0x88,0x0, + 0x0,0x0,0x0,0x31,0x5d,0x61,0x88,0x0,0x0,0x0,0x0,0x32,0x72,0x3c,0x88,0x0, + 0x0,0x0,0x0,0x33,0x3d,0x43,0x88,0x0,0x0,0x0,0x0,0x34,0x52,0x1e,0x88,0x0, + 0x0,0x0,0x0,0x35,0x1d,0x25,0x88,0x0,0x0,0x0,0x0,0x36,0x32,0x0,0x88,0x0, + 0x0,0x0,0x0,0x36,0xfd,0x7,0x88,0x0,0x0,0x0,0x0,0x38,0x1b,0x1d,0x8,0x0, + 0x0,0x0,0x0,0x38,0xdc,0xe9,0x88,0x0,0x0,0x0,0x0,0x39,0xfa,0xff,0x8,0x0, + 0x0,0x0,0x0,0x3a,0xbc,0xcb,0x88,0x0,0x0,0x0,0x0,0x3b,0xda,0xe1,0x8,0x0, + 0x0,0x0,0x0,0x3c,0xa5,0xe8,0x8,0x0,0x0,0x0,0x0,0x3d,0xba,0xc3,0x8,0x0, + 0x0,0x0,0x0,0x3e,0x85,0xca,0x8,0x0,0x0,0x0,0x0,0x3f,0x9a,0xa5,0x8,0x0, + 0x0,0x0,0x0,0x40,0x65,0xac,0x8,0x0,0x0,0x0,0x0,0x41,0x83,0xc1,0x88,0x0, + 0x0,0x0,0x0,0x42,0x45,0x8e,0x8,0x0,0x0,0x0,0x0,0x43,0x63,0xa3,0x88,0x0, + 0x0,0x0,0x0,0x44,0x2e,0xaa,0x88,0x0,0x0,0x0,0x0,0x45,0x43,0x85,0x88,0x0, + 0x0,0x0,0x0,0x46,0x5,0x52,0x8,0x0,0x0,0x0,0x0,0x47,0x23,0x67,0x88,0x0, + 0x0,0x0,0x0,0x47,0xf7,0xa9,0x8,0x0,0x0,0x0,0x0,0x48,0xe7,0x9a,0x8,0x0, + 0x0,0x0,0x0,0x49,0xd7,0x8b,0x8,0x0,0x0,0x0,0x0,0x4a,0xc7,0x7c,0x8,0x0, + 0x0,0x0,0x0,0x4b,0xb7,0x6d,0x8,0x0,0x0,0x0,0x0,0x4c,0xa7,0x5e,0x8,0x0, + 0x0,0x0,0x0,0x4d,0x97,0x4f,0x8,0x0,0x0,0x0,0x0,0x4e,0x87,0x40,0x8,0x0, + 0x0,0x0,0x0,0x4f,0x77,0x31,0x8,0x0,0x0,0x0,0x0,0x50,0x70,0x5c,0x88,0x0, + 0x0,0x0,0x0,0x51,0x60,0x4d,0x88,0x0,0x0,0x0,0x0,0x52,0x50,0x3e,0x88,0x0, + 0x0,0x0,0x0,0x53,0x40,0x2f,0x88,0x0,0x0,0x0,0x0,0x54,0x30,0x20,0x88,0x0, + 0x0,0x0,0x0,0x55,0x20,0x11,0x88,0x0,0x0,0x0,0x0,0x56,0x10,0x2,0x88,0x0, + 0x0,0x0,0x0,0x56,0xff,0xf3,0x88,0x0,0x0,0x0,0x0,0x57,0xef,0xe4,0x88,0x0, + 0x0,0x0,0x0,0x58,0xdf,0xd5,0x88,0x0,0x0,0x0,0x0,0x59,0xcf,0xc6,0x88,0x0, + 0x0,0x0,0x0,0x5a,0xbf,0xb7,0x88,0x0,0x0,0x0,0x0,0x5b,0xb8,0xe3,0x8,0x0, + 0x0,0x0,0x0,0x5c,0xa8,0xd4,0x8,0x0,0x0,0x0,0x0,0x5d,0x98,0xc5,0x8,0x0, + 0x0,0x0,0x0,0x5e,0x88,0xb6,0x8,0x0,0x0,0x0,0x0,0x5f,0x78,0xa7,0x8,0x0, + 0x0,0x0,0x0,0x60,0x68,0x98,0x8,0x0,0x0,0x0,0x0,0x61,0x58,0x89,0x8,0x0, + 0x0,0x0,0x0,0x62,0x48,0x7a,0x8,0x0,0x0,0x0,0x0,0x63,0x38,0x6b,0x8,0x0, + 0x0,0x0,0x0,0x64,0x28,0x5c,0x8,0x0,0x0,0x0,0x0,0x65,0x18,0x4d,0x8,0x0, + 0x0,0x0,0x0,0x66,0x11,0x78,0x88,0x0,0x0,0x0,0x0,0x67,0x1,0x69,0x88,0x0, + 0x0,0x0,0x0,0x67,0xf1,0x5a,0x88,0x0,0x0,0x0,0x0,0x68,0xe1,0x4b,0x88,0x0, + 0x0,0x0,0x0,0x69,0xd1,0x3c,0x88,0x0,0x0,0x0,0x0,0x6a,0xc1,0x2d,0x88,0x0, + 0x0,0x0,0x0,0x6b,0xb1,0x1e,0x88,0x0,0x0,0x0,0x0,0x6c,0xa1,0xf,0x88,0x0, + 0x0,0x0,0x0,0x6d,0x91,0x0,0x88,0x0,0x0,0x0,0x0,0x6e,0x80,0xf1,0x88,0x0, + 0x0,0x0,0x0,0x6f,0x70,0xe2,0x88,0x0,0x0,0x0,0x0,0x70,0x6a,0xe,0x8,0x0, + 0x0,0x0,0x0,0x71,0x59,0xff,0x8,0x0,0x0,0x0,0x0,0x72,0x49,0xf0,0x8,0x0, + 0x0,0x0,0x0,0x73,0x39,0xe1,0x8,0x0,0x0,0x0,0x0,0x74,0x29,0xd2,0x8,0x0, + 0x0,0x0,0x0,0x75,0x19,0xc3,0x8,0x0,0x0,0x0,0x0,0x76,0x9,0xb4,0x8,0x0, + 0x0,0x0,0x0,0x76,0xf9,0xa5,0x8,0x0,0x0,0x0,0x0,0x77,0xe9,0x96,0x8,0x0, + 0x0,0x0,0x0,0x78,0xd9,0x87,0x8,0x0,0x0,0x0,0x0,0x79,0xc9,0x78,0x8,0x0, + 0x0,0x0,0x0,0x7a,0xb9,0x69,0x8,0x0,0x0,0x0,0x0,0x7b,0xb2,0x94,0x88,0x0, + 0x0,0x0,0x0,0x7c,0xa2,0x85,0x88,0x0,0x0,0x0,0x0,0x7d,0x92,0x76,0x88,0x0, + 0x0,0x0,0x0,0x7e,0x82,0x67,0x88,0x0,0x0,0x0,0x0,0x7f,0x72,0x58,0x88,0x0, + 0x1,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x0, + 0x0,0x81,0xec,0x0,0x0,0x0,0x0,0x7e,0x90,0x0,0x4,0x0,0x0,0x93,0xa8,0x1, + 0x9,0x0,0x0,0x85,0x98,0x0,0x4,0x0,0x0,0x93,0xa8,0x1,0x9,0x0,0x0,0x85, + 0x98,0x0,0x4,0x4c,0x4d,0x54,0x0,0x41,0x43,0x53,0x54,0x0,0x41,0x43,0x44,0x54, + 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x41,0x43, + 0x53,0x54,0x2d,0x39,0x3a,0x33,0x30,0x41,0x43,0x44,0x54,0x2c,0x4d,0x31,0x30,0x2e, + 0x31,0x2e,0x30,0x2c,0x4d,0x34,0x2e,0x31,0x2e,0x30,0x2f,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Australia/Tasmania + 0x0,0x0,0x9,0x1f, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0xbb, - 0x5,0x43,0x48,0xbb,0x21,0x71,0x58,0xcb,0x89,0x3d,0xc8,0xd2,0x61,0x49,0x38,0xd5, - 0x8d,0x73,0x48,0x1,0x2,0x1,0x2,0x1,0x3,0xff,0xff,0x6c,0x2,0x0,0x0,0xff, - 0xff,0x6c,0x58,0x0,0x4,0xff,0xff,0x7a,0x68,0x1,0x8,0xff,0xff,0x73,0x60,0x0, - 0x4,0x4c,0x4d,0x54,0x0,0x48,0x53,0x54,0x0,0x48,0x44,0x54,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0, - 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x4,0x0,0x0,0x0, - 0xc,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x74,0xe0,0x70, - 0xbe,0xff,0xff,0xff,0xff,0xbb,0x5,0x43,0x48,0xff,0xff,0xff,0xff,0xbb,0x21,0x71, - 0x58,0xff,0xff,0xff,0xff,0xcb,0x89,0x3d,0xc8,0xff,0xff,0xff,0xff,0xd2,0x61,0x49, - 0x38,0xff,0xff,0xff,0xff,0xd5,0x8d,0x73,0x48,0x0,0x1,0x2,0x1,0x2,0x1,0x3, - 0xff,0xff,0x6c,0x2,0x0,0x0,0xff,0xff,0x6c,0x58,0x0,0x4,0xff,0xff,0x7a,0x68, - 0x1,0x8,0xff,0xff,0x73,0x60,0x0,0x4,0x4c,0x4d,0x54,0x0,0x48,0x53,0x54,0x0, - 0x48,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x48,0x53,0x54, - 0x31,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/US/Central - 0x0,0x0,0xe,0x1, + 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x96,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xe,0x80,0x0,0x0,0x0,0x9b, + 0xd5,0x78,0x80,0x9c,0xbc,0x20,0xf0,0xcb,0x54,0xb3,0x0,0xcb,0xc7,0x57,0x70,0xcc, + 0xb7,0x56,0x80,0xcd,0xa7,0x39,0x70,0xce,0xa0,0x73,0x0,0xcf,0x87,0x1b,0x70,0xfb, + 0xc2,0x8d,0x0,0xfc,0xb2,0x7e,0x0,0xfd,0xc7,0x59,0x0,0xfe,0x76,0xb0,0x80,0xff, + 0xa7,0x3b,0x0,0x0,0x56,0x92,0x80,0x1,0x87,0x1d,0x0,0x2,0x3f,0xaf,0x0,0x3, + 0x70,0x39,0x80,0x4,0xd,0x1c,0x0,0x5,0x50,0x1b,0x80,0x5,0xf6,0x38,0x80,0x7, + 0x2f,0xfd,0x80,0x7,0xd6,0x1a,0x80,0x9,0xf,0xdf,0x80,0x9,0xb5,0xfc,0x80,0xa, + 0xef,0xc1,0x80,0xb,0x9f,0x19,0x0,0xc,0xd8,0xde,0x0,0xd,0x7e,0xfb,0x0,0xe, + 0xb8,0xc0,0x0,0xf,0x5e,0xdd,0x0,0x10,0x98,0xa2,0x0,0x11,0x3e,0xbf,0x0,0x12, + 0x78,0x84,0x0,0x13,0x1e,0xa1,0x0,0x14,0x58,0x66,0x0,0x14,0xfe,0x83,0x0,0x16, + 0x38,0x48,0x0,0x17,0x3,0x4f,0x0,0x18,0x21,0x64,0x80,0x18,0xe3,0x31,0x0,0x1a, + 0x1,0x46,0x80,0x1a,0xa7,0x63,0x80,0x1b,0xe1,0x28,0x80,0x1c,0x87,0x45,0x80,0x1d, + 0xc1,0xa,0x80,0x1e,0x67,0x27,0x80,0x1f,0x97,0xb2,0x0,0x20,0x59,0x7e,0x80,0x21, + 0x80,0xce,0x80,0x22,0x42,0x9b,0x0,0x23,0x69,0xeb,0x0,0x24,0x22,0x7d,0x0,0x25, + 0x49,0xcd,0x0,0x26,0x2,0x5f,0x0,0x27,0x29,0xaf,0x0,0x27,0xf4,0xb6,0x0,0x28, + 0xed,0xe1,0x80,0x29,0xd4,0x98,0x0,0x2a,0xcd,0xc3,0x80,0x2b,0xb4,0x7a,0x0,0x2c, + 0xad,0xa5,0x80,0x2d,0x94,0x5c,0x0,0x2e,0x8d,0x87,0x80,0x2f,0x74,0x3e,0x0,0x30, + 0x6d,0x69,0x80,0x31,0x5d,0x5a,0x80,0x32,0x56,0x86,0x0,0x33,0x3d,0x3c,0x80,0x34, + 0x36,0x68,0x0,0x35,0x1d,0x1e,0x80,0x36,0x16,0x4a,0x0,0x36,0xfd,0x0,0x80,0x37, + 0xf6,0x2c,0x0,0x38,0xdc,0xe2,0x80,0x39,0xa7,0xe9,0x80,0x3a,0xbc,0xc4,0x80,0x3b, + 0xbf,0x2a,0x80,0x3c,0xa5,0xe1,0x0,0x3d,0x9f,0xc,0x80,0x3e,0x85,0xc3,0x0,0x3f, + 0x7e,0xee,0x80,0x40,0x65,0xa5,0x0,0x41,0x5e,0xd0,0x80,0x42,0x45,0x87,0x0,0x43, + 0x3e,0xb2,0x80,0x44,0x2e,0xa3,0x80,0x45,0x1e,0x94,0x80,0x46,0x5,0x4b,0x0,0x47, + 0x7,0xb1,0x0,0x47,0xf7,0xa2,0x0,0x48,0xe7,0x93,0x0,0x49,0xd7,0x84,0x0,0x4a, + 0xc7,0x75,0x0,0x4b,0xb7,0x66,0x0,0x4c,0xa7,0x57,0x0,0x4d,0x97,0x48,0x0,0x4e, + 0x87,0x39,0x0,0x4f,0x77,0x2a,0x0,0x50,0x70,0x55,0x80,0x51,0x60,0x46,0x80,0x52, + 0x50,0x37,0x80,0x53,0x40,0x28,0x80,0x54,0x30,0x19,0x80,0x55,0x20,0xa,0x80,0x56, + 0xf,0xfb,0x80,0x56,0xff,0xec,0x80,0x57,0xef,0xdd,0x80,0x58,0xdf,0xce,0x80,0x59, + 0xcf,0xbf,0x80,0x5a,0xbf,0xb0,0x80,0x5b,0xb8,0xdc,0x0,0x5c,0xa8,0xcd,0x0,0x5d, + 0x98,0xbe,0x0,0x5e,0x88,0xaf,0x0,0x5f,0x78,0xa0,0x0,0x60,0x68,0x91,0x0,0x61, + 0x58,0x82,0x0,0x62,0x48,0x73,0x0,0x63,0x38,0x64,0x0,0x64,0x28,0x55,0x0,0x65, + 0x18,0x46,0x0,0x66,0x11,0x71,0x80,0x67,0x1,0x62,0x80,0x67,0xf1,0x53,0x80,0x68, + 0xe1,0x44,0x80,0x69,0xd1,0x35,0x80,0x6a,0xc1,0x26,0x80,0x6b,0xb1,0x17,0x80,0x6c, + 0xa1,0x8,0x80,0x6d,0x90,0xf9,0x80,0x6e,0x80,0xea,0x80,0x6f,0x70,0xdb,0x80,0x70, + 0x6a,0x7,0x0,0x71,0x59,0xf8,0x0,0x72,0x49,0xe9,0x0,0x73,0x39,0xda,0x0,0x74, + 0x29,0xcb,0x0,0x75,0x19,0xbc,0x0,0x76,0x9,0xad,0x0,0x76,0xf9,0x9e,0x0,0x77, + 0xe9,0x8f,0x0,0x78,0xd9,0x80,0x0,0x79,0xc9,0x71,0x0,0x7a,0xb9,0x62,0x0,0x7b, + 0xb2,0x8d,0x80,0x7c,0xa2,0x7e,0x80,0x7d,0x92,0x6f,0x80,0x7e,0x82,0x60,0x80,0x7f, + 0x72,0x51,0x80,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x0,0x0,0x8a,0x1c,0x0,0x0,0x0, + 0x0,0x8c,0xa0,0x0,0x4,0x0,0x0,0x9a,0xb0,0x1,0x9,0x0,0x0,0x9a,0xb0,0x1, + 0x9,0x0,0x0,0x8c,0xa0,0x0,0x4,0x4c,0x4d,0x54,0x0,0x41,0x45,0x53,0x54,0x0, + 0x41,0x45,0x44,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x97,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xe,0xf8,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x74,0x2e,0x0,0xe4,0xff,0xff,0xff,0xff,0x9b, + 0xd5,0x78,0x80,0xff,0xff,0xff,0xff,0x9c,0xbc,0x20,0xf0,0xff,0xff,0xff,0xff,0xcb, + 0x54,0xb3,0x0,0xff,0xff,0xff,0xff,0xcb,0xc7,0x57,0x70,0xff,0xff,0xff,0xff,0xcc, + 0xb7,0x56,0x80,0xff,0xff,0xff,0xff,0xcd,0xa7,0x39,0x70,0xff,0xff,0xff,0xff,0xce, + 0xa0,0x73,0x0,0xff,0xff,0xff,0xff,0xcf,0x87,0x1b,0x70,0xff,0xff,0xff,0xff,0xfb, + 0xc2,0x8d,0x0,0xff,0xff,0xff,0xff,0xfc,0xb2,0x7e,0x0,0xff,0xff,0xff,0xff,0xfd, + 0xc7,0x59,0x0,0xff,0xff,0xff,0xff,0xfe,0x76,0xb0,0x80,0xff,0xff,0xff,0xff,0xff, + 0xa7,0x3b,0x0,0x0,0x0,0x0,0x0,0x0,0x56,0x92,0x80,0x0,0x0,0x0,0x0,0x1, + 0x87,0x1d,0x0,0x0,0x0,0x0,0x0,0x2,0x3f,0xaf,0x0,0x0,0x0,0x0,0x0,0x3, + 0x70,0x39,0x80,0x0,0x0,0x0,0x0,0x4,0xd,0x1c,0x0,0x0,0x0,0x0,0x0,0x5, + 0x50,0x1b,0x80,0x0,0x0,0x0,0x0,0x5,0xf6,0x38,0x80,0x0,0x0,0x0,0x0,0x7, + 0x2f,0xfd,0x80,0x0,0x0,0x0,0x0,0x7,0xd6,0x1a,0x80,0x0,0x0,0x0,0x0,0x9, + 0xf,0xdf,0x80,0x0,0x0,0x0,0x0,0x9,0xb5,0xfc,0x80,0x0,0x0,0x0,0x0,0xa, + 0xef,0xc1,0x80,0x0,0x0,0x0,0x0,0xb,0x9f,0x19,0x0,0x0,0x0,0x0,0x0,0xc, + 0xd8,0xde,0x0,0x0,0x0,0x0,0x0,0xd,0x7e,0xfb,0x0,0x0,0x0,0x0,0x0,0xe, + 0xb8,0xc0,0x0,0x0,0x0,0x0,0x0,0xf,0x5e,0xdd,0x0,0x0,0x0,0x0,0x0,0x10, + 0x98,0xa2,0x0,0x0,0x0,0x0,0x0,0x11,0x3e,0xbf,0x0,0x0,0x0,0x0,0x0,0x12, + 0x78,0x84,0x0,0x0,0x0,0x0,0x0,0x13,0x1e,0xa1,0x0,0x0,0x0,0x0,0x0,0x14, + 0x58,0x66,0x0,0x0,0x0,0x0,0x0,0x14,0xfe,0x83,0x0,0x0,0x0,0x0,0x0,0x16, + 0x38,0x48,0x0,0x0,0x0,0x0,0x0,0x17,0x3,0x4f,0x0,0x0,0x0,0x0,0x0,0x18, + 0x21,0x64,0x80,0x0,0x0,0x0,0x0,0x18,0xe3,0x31,0x0,0x0,0x0,0x0,0x0,0x1a, + 0x1,0x46,0x80,0x0,0x0,0x0,0x0,0x1a,0xa7,0x63,0x80,0x0,0x0,0x0,0x0,0x1b, + 0xe1,0x28,0x80,0x0,0x0,0x0,0x0,0x1c,0x87,0x45,0x80,0x0,0x0,0x0,0x0,0x1d, + 0xc1,0xa,0x80,0x0,0x0,0x0,0x0,0x1e,0x67,0x27,0x80,0x0,0x0,0x0,0x0,0x1f, + 0x97,0xb2,0x0,0x0,0x0,0x0,0x0,0x20,0x59,0x7e,0x80,0x0,0x0,0x0,0x0,0x21, + 0x80,0xce,0x80,0x0,0x0,0x0,0x0,0x22,0x42,0x9b,0x0,0x0,0x0,0x0,0x0,0x23, + 0x69,0xeb,0x0,0x0,0x0,0x0,0x0,0x24,0x22,0x7d,0x0,0x0,0x0,0x0,0x0,0x25, + 0x49,0xcd,0x0,0x0,0x0,0x0,0x0,0x26,0x2,0x5f,0x0,0x0,0x0,0x0,0x0,0x27, + 0x29,0xaf,0x0,0x0,0x0,0x0,0x0,0x27,0xf4,0xb6,0x0,0x0,0x0,0x0,0x0,0x28, + 0xed,0xe1,0x80,0x0,0x0,0x0,0x0,0x29,0xd4,0x98,0x0,0x0,0x0,0x0,0x0,0x2a, + 0xcd,0xc3,0x80,0x0,0x0,0x0,0x0,0x2b,0xb4,0x7a,0x0,0x0,0x0,0x0,0x0,0x2c, + 0xad,0xa5,0x80,0x0,0x0,0x0,0x0,0x2d,0x94,0x5c,0x0,0x0,0x0,0x0,0x0,0x2e, + 0x8d,0x87,0x80,0x0,0x0,0x0,0x0,0x2f,0x74,0x3e,0x0,0x0,0x0,0x0,0x0,0x30, + 0x6d,0x69,0x80,0x0,0x0,0x0,0x0,0x31,0x5d,0x5a,0x80,0x0,0x0,0x0,0x0,0x32, + 0x56,0x86,0x0,0x0,0x0,0x0,0x0,0x33,0x3d,0x3c,0x80,0x0,0x0,0x0,0x0,0x34, + 0x36,0x68,0x0,0x0,0x0,0x0,0x0,0x35,0x1d,0x1e,0x80,0x0,0x0,0x0,0x0,0x36, + 0x16,0x4a,0x0,0x0,0x0,0x0,0x0,0x36,0xfd,0x0,0x80,0x0,0x0,0x0,0x0,0x37, + 0xf6,0x2c,0x0,0x0,0x0,0x0,0x0,0x38,0xdc,0xe2,0x80,0x0,0x0,0x0,0x0,0x39, + 0xa7,0xe9,0x80,0x0,0x0,0x0,0x0,0x3a,0xbc,0xc4,0x80,0x0,0x0,0x0,0x0,0x3b, + 0xbf,0x2a,0x80,0x0,0x0,0x0,0x0,0x3c,0xa5,0xe1,0x0,0x0,0x0,0x0,0x0,0x3d, + 0x9f,0xc,0x80,0x0,0x0,0x0,0x0,0x3e,0x85,0xc3,0x0,0x0,0x0,0x0,0x0,0x3f, + 0x7e,0xee,0x80,0x0,0x0,0x0,0x0,0x40,0x65,0xa5,0x0,0x0,0x0,0x0,0x0,0x41, + 0x5e,0xd0,0x80,0x0,0x0,0x0,0x0,0x42,0x45,0x87,0x0,0x0,0x0,0x0,0x0,0x43, + 0x3e,0xb2,0x80,0x0,0x0,0x0,0x0,0x44,0x2e,0xa3,0x80,0x0,0x0,0x0,0x0,0x45, + 0x1e,0x94,0x80,0x0,0x0,0x0,0x0,0x46,0x5,0x4b,0x0,0x0,0x0,0x0,0x0,0x47, + 0x7,0xb1,0x0,0x0,0x0,0x0,0x0,0x47,0xf7,0xa2,0x0,0x0,0x0,0x0,0x0,0x48, + 0xe7,0x93,0x0,0x0,0x0,0x0,0x0,0x49,0xd7,0x84,0x0,0x0,0x0,0x0,0x0,0x4a, + 0xc7,0x75,0x0,0x0,0x0,0x0,0x0,0x4b,0xb7,0x66,0x0,0x0,0x0,0x0,0x0,0x4c, + 0xa7,0x57,0x0,0x0,0x0,0x0,0x0,0x4d,0x97,0x48,0x0,0x0,0x0,0x0,0x0,0x4e, + 0x87,0x39,0x0,0x0,0x0,0x0,0x0,0x4f,0x77,0x2a,0x0,0x0,0x0,0x0,0x0,0x50, + 0x70,0x55,0x80,0x0,0x0,0x0,0x0,0x51,0x60,0x46,0x80,0x0,0x0,0x0,0x0,0x52, + 0x50,0x37,0x80,0x0,0x0,0x0,0x0,0x53,0x40,0x28,0x80,0x0,0x0,0x0,0x0,0x54, + 0x30,0x19,0x80,0x0,0x0,0x0,0x0,0x55,0x20,0xa,0x80,0x0,0x0,0x0,0x0,0x56, + 0xf,0xfb,0x80,0x0,0x0,0x0,0x0,0x56,0xff,0xec,0x80,0x0,0x0,0x0,0x0,0x57, + 0xef,0xdd,0x80,0x0,0x0,0x0,0x0,0x58,0xdf,0xce,0x80,0x0,0x0,0x0,0x0,0x59, + 0xcf,0xbf,0x80,0x0,0x0,0x0,0x0,0x5a,0xbf,0xb0,0x80,0x0,0x0,0x0,0x0,0x5b, + 0xb8,0xdc,0x0,0x0,0x0,0x0,0x0,0x5c,0xa8,0xcd,0x0,0x0,0x0,0x0,0x0,0x5d, + 0x98,0xbe,0x0,0x0,0x0,0x0,0x0,0x5e,0x88,0xaf,0x0,0x0,0x0,0x0,0x0,0x5f, + 0x78,0xa0,0x0,0x0,0x0,0x0,0x0,0x60,0x68,0x91,0x0,0x0,0x0,0x0,0x0,0x61, + 0x58,0x82,0x0,0x0,0x0,0x0,0x0,0x62,0x48,0x73,0x0,0x0,0x0,0x0,0x0,0x63, + 0x38,0x64,0x0,0x0,0x0,0x0,0x0,0x64,0x28,0x55,0x0,0x0,0x0,0x0,0x0,0x65, + 0x18,0x46,0x0,0x0,0x0,0x0,0x0,0x66,0x11,0x71,0x80,0x0,0x0,0x0,0x0,0x67, + 0x1,0x62,0x80,0x0,0x0,0x0,0x0,0x67,0xf1,0x53,0x80,0x0,0x0,0x0,0x0,0x68, + 0xe1,0x44,0x80,0x0,0x0,0x0,0x0,0x69,0xd1,0x35,0x80,0x0,0x0,0x0,0x0,0x6a, + 0xc1,0x26,0x80,0x0,0x0,0x0,0x0,0x6b,0xb1,0x17,0x80,0x0,0x0,0x0,0x0,0x6c, + 0xa1,0x8,0x80,0x0,0x0,0x0,0x0,0x6d,0x90,0xf9,0x80,0x0,0x0,0x0,0x0,0x6e, + 0x80,0xea,0x80,0x0,0x0,0x0,0x0,0x6f,0x70,0xdb,0x80,0x0,0x0,0x0,0x0,0x70, + 0x6a,0x7,0x0,0x0,0x0,0x0,0x0,0x71,0x59,0xf8,0x0,0x0,0x0,0x0,0x0,0x72, + 0x49,0xe9,0x0,0x0,0x0,0x0,0x0,0x73,0x39,0xda,0x0,0x0,0x0,0x0,0x0,0x74, + 0x29,0xcb,0x0,0x0,0x0,0x0,0x0,0x75,0x19,0xbc,0x0,0x0,0x0,0x0,0x0,0x76, + 0x9,0xad,0x0,0x0,0x0,0x0,0x0,0x76,0xf9,0x9e,0x0,0x0,0x0,0x0,0x0,0x77, + 0xe9,0x8f,0x0,0x0,0x0,0x0,0x0,0x78,0xd9,0x80,0x0,0x0,0x0,0x0,0x0,0x79, + 0xc9,0x71,0x0,0x0,0x0,0x0,0x0,0x7a,0xb9,0x62,0x0,0x0,0x0,0x0,0x0,0x7b, + 0xb2,0x8d,0x80,0x0,0x0,0x0,0x0,0x7c,0xa2,0x7e,0x80,0x0,0x0,0x0,0x0,0x7d, + 0x92,0x6f,0x80,0x0,0x0,0x0,0x0,0x7e,0x82,0x60,0x80,0x0,0x0,0x0,0x0,0x7f, + 0x72,0x51,0x80,0x0,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x0,0x0,0x8a,0x1c,0x0,0x0, + 0x0,0x0,0x8c,0xa0,0x0,0x4,0x0,0x0,0x9a,0xb0,0x1,0x9,0x0,0x0,0x9a,0xb0, + 0x1,0x9,0x0,0x0,0x8c,0xa0,0x0,0x4,0x4c,0x4d,0x54,0x0,0x41,0x45,0x53,0x54, + 0x0,0x41,0x45,0x44,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0, + 0xa,0x41,0x45,0x53,0x54,0x2d,0x31,0x30,0x41,0x45,0x44,0x54,0x2c,0x4d,0x31,0x30, + 0x2e,0x31,0x2e,0x30,0x2c,0x4d,0x34,0x2e,0x31,0x2e,0x30,0x2f,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Australia/Adelaide + 0x0,0x0,0x8,0xbe, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xec,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x18,0x80,0x0,0x0,0x0,0x9e, - 0xa6,0x2c,0x80,0x9f,0xba,0xf9,0x70,0xa0,0x86,0xe,0x80,0xa1,0x9a,0xdb,0x70,0xa2, - 0xcb,0x74,0x0,0xa3,0x83,0xf7,0xf0,0xa4,0x45,0xd2,0x80,0xa5,0x63,0xd9,0xf0,0xa6, - 0x53,0xd9,0x0,0xa7,0x15,0x97,0x70,0xa8,0x33,0xbb,0x0,0xa8,0xfe,0xb3,0xf0,0xaa, - 0x13,0x9d,0x0,0xaa,0xde,0x95,0xf0,0xab,0xf3,0x7f,0x0,0xac,0xbe,0x77,0xf0,0xad, - 0xd3,0x61,0x0,0xae,0x9e,0x59,0xf0,0xaf,0xb3,0x43,0x0,0xb0,0x7e,0x3b,0xf0,0xb1, - 0x9c,0x5f,0x80,0xb2,0x67,0x58,0x70,0xb3,0x7c,0x41,0x80,0xb4,0x47,0x3a,0x70,0xb5, - 0x5c,0x23,0x80,0xb6,0x27,0x1c,0x70,0xb7,0x3c,0x5,0x80,0xb8,0x6,0xfe,0x70,0xb9, - 0x1b,0xe7,0x80,0xb9,0xe6,0xe0,0x70,0xbb,0x5,0x4,0x0,0xbb,0xc6,0xc2,0x70,0xbc, - 0xe4,0xe6,0x0,0xbd,0xaf,0xde,0xf0,0xbe,0xc4,0xc8,0x0,0xbf,0x8f,0xc0,0xf0,0xc0, - 0x5a,0xd6,0x0,0xc1,0xb0,0x3c,0x70,0xc2,0x84,0x8c,0x0,0xc3,0x4f,0x84,0xf0,0xc4, - 0x64,0x6e,0x0,0xc5,0x2f,0x66,0xf0,0xc6,0x4d,0x8a,0x80,0xc7,0xf,0x48,0xf0,0xc8, - 0x2d,0x6c,0x80,0xc8,0xf8,0x65,0x70,0xca,0xd,0x4e,0x80,0xca,0xd8,0x47,0x70,0xcb, - 0x88,0xfe,0x80,0xd2,0x23,0xf4,0x70,0xd2,0x61,0x9,0xf0,0xd3,0x75,0xf3,0x0,0xd4, - 0x40,0xeb,0xf0,0xd5,0x55,0xd5,0x0,0xd6,0x20,0xcd,0xf0,0xd7,0x35,0xb7,0x0,0xd8, - 0x0,0xaf,0xf0,0xd9,0x15,0x99,0x0,0xd9,0xe0,0x91,0xf0,0xda,0xfe,0xb5,0x80,0xdb, - 0xc0,0x73,0xf0,0xdc,0xde,0x97,0x80,0xdd,0xa9,0x90,0x70,0xde,0xbe,0x79,0x80,0xdf, - 0x89,0x72,0x70,0xe0,0x9e,0x5b,0x80,0xe1,0x69,0x54,0x70,0xe2,0x7e,0x3d,0x80,0xe3, - 0x49,0x36,0x70,0xe4,0x5e,0x1f,0x80,0xe5,0x57,0x3c,0xf0,0xe6,0x47,0x3c,0x0,0xe7, - 0x37,0x1e,0xf0,0xe8,0x27,0x1e,0x0,0xe9,0x17,0x0,0xf0,0xea,0x7,0x0,0x0,0xea, - 0xf6,0xe2,0xf0,0xeb,0xe6,0xe2,0x0,0xec,0xd6,0xc4,0xf0,0xed,0xc6,0xc4,0x0,0xee, - 0xbf,0xe1,0x70,0xef,0xaf,0xe0,0x80,0xf0,0x9f,0xc3,0x70,0xf1,0x8f,0xc2,0x80,0xf2, - 0x7f,0xa5,0x70,0xf3,0x6f,0xa4,0x80,0xf4,0x5f,0x87,0x70,0xf5,0x4f,0x86,0x80,0xf6, - 0x3f,0x69,0x70,0xf7,0x2f,0x68,0x80,0xf8,0x28,0x85,0xf0,0xf9,0xf,0x4a,0x80,0xfa, - 0x8,0x67,0xf0,0xfa,0xf8,0x67,0x0,0xfb,0xe8,0x49,0xf0,0xfc,0xd8,0x49,0x0,0xfd, - 0xc8,0x2b,0xf0,0xfe,0xb8,0x2b,0x0,0xff,0xa8,0xd,0xf0,0x0,0x98,0xd,0x0,0x1, - 0x87,0xef,0xf0,0x2,0x77,0xef,0x0,0x3,0x71,0xc,0x70,0x4,0x61,0xb,0x80,0x5, - 0x50,0xee,0x70,0x6,0x40,0xed,0x80,0x7,0x30,0xd0,0x70,0x7,0x8d,0x27,0x80,0x9, - 0x10,0xb2,0x70,0x9,0xad,0xa3,0x0,0xa,0xf0,0x94,0x70,0xb,0xe0,0x93,0x80,0xc, - 0xd9,0xb0,0xf0,0xd,0xc0,0x75,0x80,0xe,0xb9,0x92,0xf0,0xf,0xa9,0x92,0x0,0x10, - 0x99,0x74,0xf0,0x11,0x89,0x74,0x0,0x12,0x79,0x56,0xf0,0x13,0x69,0x56,0x0,0x14, - 0x59,0x38,0xf0,0x15,0x49,0x38,0x0,0x16,0x39,0x1a,0xf0,0x17,0x29,0x1a,0x0,0x18, - 0x22,0x37,0x70,0x19,0x8,0xfc,0x0,0x1a,0x2,0x19,0x70,0x1a,0xf2,0x18,0x80,0x1b, - 0xe1,0xfb,0x70,0x1c,0xd1,0xfa,0x80,0x1d,0xc1,0xdd,0x70,0x1e,0xb1,0xdc,0x80,0x1f, - 0xa1,0xbf,0x70,0x20,0x76,0xf,0x0,0x21,0x81,0xa1,0x70,0x22,0x55,0xf1,0x0,0x23, - 0x6a,0xbd,0xf0,0x24,0x35,0xd3,0x0,0x25,0x4a,0x9f,0xf0,0x26,0x15,0xb5,0x0,0x27, - 0x2a,0x81,0xf0,0x27,0xfe,0xd1,0x80,0x29,0xa,0x63,0xf0,0x29,0xde,0xb3,0x80,0x2a, - 0xea,0x45,0xf0,0x2b,0xbe,0x95,0x80,0x2c,0xd3,0x62,0x70,0x2d,0x9e,0x77,0x80,0x2e, - 0xb3,0x44,0x70,0x2f,0x7e,0x59,0x80,0x30,0x93,0x26,0x70,0x31,0x67,0x76,0x0,0x32, - 0x73,0x8,0x70,0x33,0x47,0x58,0x0,0x34,0x52,0xea,0x70,0x35,0x27,0x3a,0x0,0x36, - 0x32,0xcc,0x70,0x37,0x7,0x1c,0x0,0x38,0x1b,0xe8,0xf0,0x38,0xe6,0xfe,0x0,0x39, - 0xfb,0xca,0xf0,0x3a,0xc6,0xe0,0x0,0x3b,0xdb,0xac,0xf0,0x3c,0xaf,0xfc,0x80,0x3d, - 0xbb,0x8e,0xf0,0x3e,0x8f,0xde,0x80,0x3f,0x9b,0x70,0xf0,0x40,0x6f,0xc0,0x80,0x41, - 0x84,0x8d,0x70,0x42,0x4f,0xa2,0x80,0x43,0x64,0x6f,0x70,0x44,0x2f,0x84,0x80,0x45, - 0x44,0x51,0x70,0x45,0xf3,0xb7,0x0,0x47,0x2d,0x6d,0xf0,0x47,0xd3,0x99,0x0,0x49, - 0xd,0x4f,0xf0,0x49,0xb3,0x7b,0x0,0x4a,0xed,0x31,0xf0,0x4b,0x9c,0x97,0x80,0x4c, - 0xd6,0x4e,0x70,0x4d,0x7c,0x79,0x80,0x4e,0xb6,0x30,0x70,0x4f,0x5c,0x5b,0x80,0x50, - 0x96,0x12,0x70,0x51,0x3c,0x3d,0x80,0x52,0x75,0xf4,0x70,0x53,0x1c,0x1f,0x80,0x54, - 0x55,0xd6,0x70,0x54,0xfc,0x1,0x80,0x56,0x35,0xb8,0x70,0x56,0xe5,0x1e,0x0,0x58, - 0x1e,0xd4,0xf0,0x58,0xc5,0x0,0x0,0x59,0xfe,0xb6,0xf0,0x5a,0xa4,0xe2,0x0,0x5b, - 0xde,0x98,0xf0,0x5c,0x84,0xc4,0x0,0x5d,0xbe,0x7a,0xf0,0x5e,0x64,0xa6,0x0,0x5f, - 0x9e,0x5c,0xf0,0x60,0x4d,0xc2,0x80,0x61,0x87,0x79,0x70,0x62,0x2d,0xa4,0x80,0x63, - 0x67,0x5b,0x70,0x64,0xd,0x86,0x80,0x65,0x47,0x3d,0x70,0x65,0xed,0x68,0x80,0x67, - 0x27,0x1f,0x70,0x67,0xcd,0x4a,0x80,0x69,0x7,0x1,0x70,0x69,0xad,0x2c,0x80,0x6a, - 0xe6,0xe3,0x70,0x6b,0x96,0x49,0x0,0x6c,0xcf,0xff,0xf0,0x6d,0x76,0x2b,0x0,0x6e, - 0xaf,0xe1,0xf0,0x6f,0x56,0xd,0x0,0x70,0x8f,0xc3,0xf0,0x71,0x35,0xef,0x0,0x72, - 0x6f,0xa5,0xf0,0x73,0x15,0xd1,0x0,0x74,0x4f,0x87,0xf0,0x74,0xfe,0xed,0x80,0x76, - 0x38,0xa4,0x70,0x76,0xde,0xcf,0x80,0x78,0x18,0x86,0x70,0x78,0xbe,0xb1,0x80,0x79, - 0xf8,0x68,0x70,0x7a,0x9e,0x93,0x80,0x7b,0xd8,0x4a,0x70,0x7c,0x7e,0x75,0x80,0x7d, - 0xb8,0x2c,0x70,0x7e,0x5e,0x57,0x80,0x7f,0x98,0xe,0x70,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x3,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x4,0x5,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0xad,0xd4,0x0,0x0,0xff,0xff,0xb9, - 0xb0,0x1,0x4,0xff,0xff,0xab,0xa0,0x0,0x8,0xff,0xff,0xb9,0xb0,0x0,0xc,0xff, - 0xff,0xb9,0xb0,0x1,0x10,0xff,0xff,0xb9,0xb0,0x1,0x14,0xff,0xff,0xab,0xa0,0x0, - 0x8,0x4c,0x4d,0x54,0x0,0x43,0x44,0x54,0x0,0x43,0x53,0x54,0x0,0x45,0x53,0x54, - 0x0,0x43,0x57,0x54,0x0,0x43,0x50,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0, - 0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0, - 0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xed,0x0,0x0,0x0,0x7,0x0, - 0x0,0x0,0x18,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x5e, - 0x3,0xfe,0xa0,0xff,0xff,0xff,0xff,0x9e,0xa6,0x2c,0x80,0xff,0xff,0xff,0xff,0x9f, - 0xba,0xf9,0x70,0xff,0xff,0xff,0xff,0xa0,0x86,0xe,0x80,0xff,0xff,0xff,0xff,0xa1, - 0x9a,0xdb,0x70,0xff,0xff,0xff,0xff,0xa2,0xcb,0x74,0x0,0xff,0xff,0xff,0xff,0xa3, - 0x83,0xf7,0xf0,0xff,0xff,0xff,0xff,0xa4,0x45,0xd2,0x80,0xff,0xff,0xff,0xff,0xa5, - 0x63,0xd9,0xf0,0xff,0xff,0xff,0xff,0xa6,0x53,0xd9,0x0,0xff,0xff,0xff,0xff,0xa7, - 0x15,0x97,0x70,0xff,0xff,0xff,0xff,0xa8,0x33,0xbb,0x0,0xff,0xff,0xff,0xff,0xa8, - 0xfe,0xb3,0xf0,0xff,0xff,0xff,0xff,0xaa,0x13,0x9d,0x0,0xff,0xff,0xff,0xff,0xaa, - 0xde,0x95,0xf0,0xff,0xff,0xff,0xff,0xab,0xf3,0x7f,0x0,0xff,0xff,0xff,0xff,0xac, - 0xbe,0x77,0xf0,0xff,0xff,0xff,0xff,0xad,0xd3,0x61,0x0,0xff,0xff,0xff,0xff,0xae, - 0x9e,0x59,0xf0,0xff,0xff,0xff,0xff,0xaf,0xb3,0x43,0x0,0xff,0xff,0xff,0xff,0xb0, - 0x7e,0x3b,0xf0,0xff,0xff,0xff,0xff,0xb1,0x9c,0x5f,0x80,0xff,0xff,0xff,0xff,0xb2, - 0x67,0x58,0x70,0xff,0xff,0xff,0xff,0xb3,0x7c,0x41,0x80,0xff,0xff,0xff,0xff,0xb4, - 0x47,0x3a,0x70,0xff,0xff,0xff,0xff,0xb5,0x5c,0x23,0x80,0xff,0xff,0xff,0xff,0xb6, - 0x27,0x1c,0x70,0xff,0xff,0xff,0xff,0xb7,0x3c,0x5,0x80,0xff,0xff,0xff,0xff,0xb8, - 0x6,0xfe,0x70,0xff,0xff,0xff,0xff,0xb9,0x1b,0xe7,0x80,0xff,0xff,0xff,0xff,0xb9, - 0xe6,0xe0,0x70,0xff,0xff,0xff,0xff,0xbb,0x5,0x4,0x0,0xff,0xff,0xff,0xff,0xbb, - 0xc6,0xc2,0x70,0xff,0xff,0xff,0xff,0xbc,0xe4,0xe6,0x0,0xff,0xff,0xff,0xff,0xbd, - 0xaf,0xde,0xf0,0xff,0xff,0xff,0xff,0xbe,0xc4,0xc8,0x0,0xff,0xff,0xff,0xff,0xbf, - 0x8f,0xc0,0xf0,0xff,0xff,0xff,0xff,0xc0,0x5a,0xd6,0x0,0xff,0xff,0xff,0xff,0xc1, - 0xb0,0x3c,0x70,0xff,0xff,0xff,0xff,0xc2,0x84,0x8c,0x0,0xff,0xff,0xff,0xff,0xc3, - 0x4f,0x84,0xf0,0xff,0xff,0xff,0xff,0xc4,0x64,0x6e,0x0,0xff,0xff,0xff,0xff,0xc5, - 0x2f,0x66,0xf0,0xff,0xff,0xff,0xff,0xc6,0x4d,0x8a,0x80,0xff,0xff,0xff,0xff,0xc7, - 0xf,0x48,0xf0,0xff,0xff,0xff,0xff,0xc8,0x2d,0x6c,0x80,0xff,0xff,0xff,0xff,0xc8, - 0xf8,0x65,0x70,0xff,0xff,0xff,0xff,0xca,0xd,0x4e,0x80,0xff,0xff,0xff,0xff,0xca, - 0xd8,0x47,0x70,0xff,0xff,0xff,0xff,0xcb,0x88,0xfe,0x80,0xff,0xff,0xff,0xff,0xd2, - 0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x61,0x9,0xf0,0xff,0xff,0xff,0xff,0xd3, - 0x75,0xf3,0x0,0xff,0xff,0xff,0xff,0xd4,0x40,0xeb,0xf0,0xff,0xff,0xff,0xff,0xd5, - 0x55,0xd5,0x0,0xff,0xff,0xff,0xff,0xd6,0x20,0xcd,0xf0,0xff,0xff,0xff,0xff,0xd7, - 0x35,0xb7,0x0,0xff,0xff,0xff,0xff,0xd8,0x0,0xaf,0xf0,0xff,0xff,0xff,0xff,0xd9, - 0x15,0x99,0x0,0xff,0xff,0xff,0xff,0xd9,0xe0,0x91,0xf0,0xff,0xff,0xff,0xff,0xda, - 0xfe,0xb5,0x80,0xff,0xff,0xff,0xff,0xdb,0xc0,0x73,0xf0,0xff,0xff,0xff,0xff,0xdc, - 0xde,0x97,0x80,0xff,0xff,0xff,0xff,0xdd,0xa9,0x90,0x70,0xff,0xff,0xff,0xff,0xde, - 0xbe,0x79,0x80,0xff,0xff,0xff,0xff,0xdf,0x89,0x72,0x70,0xff,0xff,0xff,0xff,0xe0, - 0x9e,0x5b,0x80,0xff,0xff,0xff,0xff,0xe1,0x69,0x54,0x70,0xff,0xff,0xff,0xff,0xe2, - 0x7e,0x3d,0x80,0xff,0xff,0xff,0xff,0xe3,0x49,0x36,0x70,0xff,0xff,0xff,0xff,0xe4, - 0x5e,0x1f,0x80,0xff,0xff,0xff,0xff,0xe5,0x57,0x3c,0xf0,0xff,0xff,0xff,0xff,0xe6, - 0x47,0x3c,0x0,0xff,0xff,0xff,0xff,0xe7,0x37,0x1e,0xf0,0xff,0xff,0xff,0xff,0xe8, - 0x27,0x1e,0x0,0xff,0xff,0xff,0xff,0xe9,0x17,0x0,0xf0,0xff,0xff,0xff,0xff,0xea, - 0x7,0x0,0x0,0xff,0xff,0xff,0xff,0xea,0xf6,0xe2,0xf0,0xff,0xff,0xff,0xff,0xeb, - 0xe6,0xe2,0x0,0xff,0xff,0xff,0xff,0xec,0xd6,0xc4,0xf0,0xff,0xff,0xff,0xff,0xed, - 0xc6,0xc4,0x0,0xff,0xff,0xff,0xff,0xee,0xbf,0xe1,0x70,0xff,0xff,0xff,0xff,0xef, - 0xaf,0xe0,0x80,0xff,0xff,0xff,0xff,0xf0,0x9f,0xc3,0x70,0xff,0xff,0xff,0xff,0xf1, - 0x8f,0xc2,0x80,0xff,0xff,0xff,0xff,0xf2,0x7f,0xa5,0x70,0xff,0xff,0xff,0xff,0xf3, - 0x6f,0xa4,0x80,0xff,0xff,0xff,0xff,0xf4,0x5f,0x87,0x70,0xff,0xff,0xff,0xff,0xf5, - 0x4f,0x86,0x80,0xff,0xff,0xff,0xff,0xf6,0x3f,0x69,0x70,0xff,0xff,0xff,0xff,0xf7, - 0x2f,0x68,0x80,0xff,0xff,0xff,0xff,0xf8,0x28,0x85,0xf0,0xff,0xff,0xff,0xff,0xf9, - 0xf,0x4a,0x80,0xff,0xff,0xff,0xff,0xfa,0x8,0x67,0xf0,0xff,0xff,0xff,0xff,0xfa, - 0xf8,0x67,0x0,0xff,0xff,0xff,0xff,0xfb,0xe8,0x49,0xf0,0xff,0xff,0xff,0xff,0xfc, - 0xd8,0x49,0x0,0xff,0xff,0xff,0xff,0xfd,0xc8,0x2b,0xf0,0xff,0xff,0xff,0xff,0xfe, - 0xb8,0x2b,0x0,0xff,0xff,0xff,0xff,0xff,0xa8,0xd,0xf0,0x0,0x0,0x0,0x0,0x0, - 0x98,0xd,0x0,0x0,0x0,0x0,0x0,0x1,0x87,0xef,0xf0,0x0,0x0,0x0,0x0,0x2, - 0x77,0xef,0x0,0x0,0x0,0x0,0x0,0x3,0x71,0xc,0x70,0x0,0x0,0x0,0x0,0x4, - 0x61,0xb,0x80,0x0,0x0,0x0,0x0,0x5,0x50,0xee,0x70,0x0,0x0,0x0,0x0,0x6, - 0x40,0xed,0x80,0x0,0x0,0x0,0x0,0x7,0x30,0xd0,0x70,0x0,0x0,0x0,0x0,0x7, - 0x8d,0x27,0x80,0x0,0x0,0x0,0x0,0x9,0x10,0xb2,0x70,0x0,0x0,0x0,0x0,0x9, - 0xad,0xa3,0x0,0x0,0x0,0x0,0x0,0xa,0xf0,0x94,0x70,0x0,0x0,0x0,0x0,0xb, - 0xe0,0x93,0x80,0x0,0x0,0x0,0x0,0xc,0xd9,0xb0,0xf0,0x0,0x0,0x0,0x0,0xd, - 0xc0,0x75,0x80,0x0,0x0,0x0,0x0,0xe,0xb9,0x92,0xf0,0x0,0x0,0x0,0x0,0xf, - 0xa9,0x92,0x0,0x0,0x0,0x0,0x0,0x10,0x99,0x74,0xf0,0x0,0x0,0x0,0x0,0x11, - 0x89,0x74,0x0,0x0,0x0,0x0,0x0,0x12,0x79,0x56,0xf0,0x0,0x0,0x0,0x0,0x13, - 0x69,0x56,0x0,0x0,0x0,0x0,0x0,0x14,0x59,0x38,0xf0,0x0,0x0,0x0,0x0,0x15, - 0x49,0x38,0x0,0x0,0x0,0x0,0x0,0x16,0x39,0x1a,0xf0,0x0,0x0,0x0,0x0,0x17, - 0x29,0x1a,0x0,0x0,0x0,0x0,0x0,0x18,0x22,0x37,0x70,0x0,0x0,0x0,0x0,0x19, - 0x8,0xfc,0x0,0x0,0x0,0x0,0x0,0x1a,0x2,0x19,0x70,0x0,0x0,0x0,0x0,0x1a, - 0xf2,0x18,0x80,0x0,0x0,0x0,0x0,0x1b,0xe1,0xfb,0x70,0x0,0x0,0x0,0x0,0x1c, - 0xd1,0xfa,0x80,0x0,0x0,0x0,0x0,0x1d,0xc1,0xdd,0x70,0x0,0x0,0x0,0x0,0x1e, - 0xb1,0xdc,0x80,0x0,0x0,0x0,0x0,0x1f,0xa1,0xbf,0x70,0x0,0x0,0x0,0x0,0x20, - 0x76,0xf,0x0,0x0,0x0,0x0,0x0,0x21,0x81,0xa1,0x70,0x0,0x0,0x0,0x0,0x22, - 0x55,0xf1,0x0,0x0,0x0,0x0,0x0,0x23,0x6a,0xbd,0xf0,0x0,0x0,0x0,0x0,0x24, - 0x35,0xd3,0x0,0x0,0x0,0x0,0x0,0x25,0x4a,0x9f,0xf0,0x0,0x0,0x0,0x0,0x26, - 0x15,0xb5,0x0,0x0,0x0,0x0,0x0,0x27,0x2a,0x81,0xf0,0x0,0x0,0x0,0x0,0x27, - 0xfe,0xd1,0x80,0x0,0x0,0x0,0x0,0x29,0xa,0x63,0xf0,0x0,0x0,0x0,0x0,0x29, - 0xde,0xb3,0x80,0x0,0x0,0x0,0x0,0x2a,0xea,0x45,0xf0,0x0,0x0,0x0,0x0,0x2b, - 0xbe,0x95,0x80,0x0,0x0,0x0,0x0,0x2c,0xd3,0x62,0x70,0x0,0x0,0x0,0x0,0x2d, - 0x9e,0x77,0x80,0x0,0x0,0x0,0x0,0x2e,0xb3,0x44,0x70,0x0,0x0,0x0,0x0,0x2f, - 0x7e,0x59,0x80,0x0,0x0,0x0,0x0,0x30,0x93,0x26,0x70,0x0,0x0,0x0,0x0,0x31, - 0x67,0x76,0x0,0x0,0x0,0x0,0x0,0x32,0x73,0x8,0x70,0x0,0x0,0x0,0x0,0x33, - 0x47,0x58,0x0,0x0,0x0,0x0,0x0,0x34,0x52,0xea,0x70,0x0,0x0,0x0,0x0,0x35, - 0x27,0x3a,0x0,0x0,0x0,0x0,0x0,0x36,0x32,0xcc,0x70,0x0,0x0,0x0,0x0,0x37, - 0x7,0x1c,0x0,0x0,0x0,0x0,0x0,0x38,0x1b,0xe8,0xf0,0x0,0x0,0x0,0x0,0x38, - 0xe6,0xfe,0x0,0x0,0x0,0x0,0x0,0x39,0xfb,0xca,0xf0,0x0,0x0,0x0,0x0,0x3a, - 0xc6,0xe0,0x0,0x0,0x0,0x0,0x0,0x3b,0xdb,0xac,0xf0,0x0,0x0,0x0,0x0,0x3c, - 0xaf,0xfc,0x80,0x0,0x0,0x0,0x0,0x3d,0xbb,0x8e,0xf0,0x0,0x0,0x0,0x0,0x3e, - 0x8f,0xde,0x80,0x0,0x0,0x0,0x0,0x3f,0x9b,0x70,0xf0,0x0,0x0,0x0,0x0,0x40, - 0x6f,0xc0,0x80,0x0,0x0,0x0,0x0,0x41,0x84,0x8d,0x70,0x0,0x0,0x0,0x0,0x42, - 0x4f,0xa2,0x80,0x0,0x0,0x0,0x0,0x43,0x64,0x6f,0x70,0x0,0x0,0x0,0x0,0x44, - 0x2f,0x84,0x80,0x0,0x0,0x0,0x0,0x45,0x44,0x51,0x70,0x0,0x0,0x0,0x0,0x45, - 0xf3,0xb7,0x0,0x0,0x0,0x0,0x0,0x47,0x2d,0x6d,0xf0,0x0,0x0,0x0,0x0,0x47, - 0xd3,0x99,0x0,0x0,0x0,0x0,0x0,0x49,0xd,0x4f,0xf0,0x0,0x0,0x0,0x0,0x49, - 0xb3,0x7b,0x0,0x0,0x0,0x0,0x0,0x4a,0xed,0x31,0xf0,0x0,0x0,0x0,0x0,0x4b, - 0x9c,0x97,0x80,0x0,0x0,0x0,0x0,0x4c,0xd6,0x4e,0x70,0x0,0x0,0x0,0x0,0x4d, - 0x7c,0x79,0x80,0x0,0x0,0x0,0x0,0x4e,0xb6,0x30,0x70,0x0,0x0,0x0,0x0,0x4f, - 0x5c,0x5b,0x80,0x0,0x0,0x0,0x0,0x50,0x96,0x12,0x70,0x0,0x0,0x0,0x0,0x51, - 0x3c,0x3d,0x80,0x0,0x0,0x0,0x0,0x52,0x75,0xf4,0x70,0x0,0x0,0x0,0x0,0x53, - 0x1c,0x1f,0x80,0x0,0x0,0x0,0x0,0x54,0x55,0xd6,0x70,0x0,0x0,0x0,0x0,0x54, - 0xfc,0x1,0x80,0x0,0x0,0x0,0x0,0x56,0x35,0xb8,0x70,0x0,0x0,0x0,0x0,0x56, - 0xe5,0x1e,0x0,0x0,0x0,0x0,0x0,0x58,0x1e,0xd4,0xf0,0x0,0x0,0x0,0x0,0x58, - 0xc5,0x0,0x0,0x0,0x0,0x0,0x0,0x59,0xfe,0xb6,0xf0,0x0,0x0,0x0,0x0,0x5a, - 0xa4,0xe2,0x0,0x0,0x0,0x0,0x0,0x5b,0xde,0x98,0xf0,0x0,0x0,0x0,0x0,0x5c, - 0x84,0xc4,0x0,0x0,0x0,0x0,0x0,0x5d,0xbe,0x7a,0xf0,0x0,0x0,0x0,0x0,0x5e, - 0x64,0xa6,0x0,0x0,0x0,0x0,0x0,0x5f,0x9e,0x5c,0xf0,0x0,0x0,0x0,0x0,0x60, - 0x4d,0xc2,0x80,0x0,0x0,0x0,0x0,0x61,0x87,0x79,0x70,0x0,0x0,0x0,0x0,0x62, - 0x2d,0xa4,0x80,0x0,0x0,0x0,0x0,0x63,0x67,0x5b,0x70,0x0,0x0,0x0,0x0,0x64, - 0xd,0x86,0x80,0x0,0x0,0x0,0x0,0x65,0x47,0x3d,0x70,0x0,0x0,0x0,0x0,0x65, - 0xed,0x68,0x80,0x0,0x0,0x0,0x0,0x67,0x27,0x1f,0x70,0x0,0x0,0x0,0x0,0x67, - 0xcd,0x4a,0x80,0x0,0x0,0x0,0x0,0x69,0x7,0x1,0x70,0x0,0x0,0x0,0x0,0x69, - 0xad,0x2c,0x80,0x0,0x0,0x0,0x0,0x6a,0xe6,0xe3,0x70,0x0,0x0,0x0,0x0,0x6b, - 0x96,0x49,0x0,0x0,0x0,0x0,0x0,0x6c,0xcf,0xff,0xf0,0x0,0x0,0x0,0x0,0x6d, - 0x76,0x2b,0x0,0x0,0x0,0x0,0x0,0x6e,0xaf,0xe1,0xf0,0x0,0x0,0x0,0x0,0x6f, - 0x56,0xd,0x0,0x0,0x0,0x0,0x0,0x70,0x8f,0xc3,0xf0,0x0,0x0,0x0,0x0,0x71, - 0x35,0xef,0x0,0x0,0x0,0x0,0x0,0x72,0x6f,0xa5,0xf0,0x0,0x0,0x0,0x0,0x73, - 0x15,0xd1,0x0,0x0,0x0,0x0,0x0,0x74,0x4f,0x87,0xf0,0x0,0x0,0x0,0x0,0x74, - 0xfe,0xed,0x80,0x0,0x0,0x0,0x0,0x76,0x38,0xa4,0x70,0x0,0x0,0x0,0x0,0x76, - 0xde,0xcf,0x80,0x0,0x0,0x0,0x0,0x78,0x18,0x86,0x70,0x0,0x0,0x0,0x0,0x78, - 0xbe,0xb1,0x80,0x0,0x0,0x0,0x0,0x79,0xf8,0x68,0x70,0x0,0x0,0x0,0x0,0x7a, - 0x9e,0x93,0x80,0x0,0x0,0x0,0x0,0x7b,0xd8,0x4a,0x70,0x0,0x0,0x0,0x0,0x7c, - 0x7e,0x75,0x80,0x0,0x0,0x0,0x0,0x7d,0xb8,0x2c,0x70,0x0,0x0,0x0,0x0,0x7e, - 0x5e,0x57,0x80,0x0,0x0,0x0,0x0,0x7f,0x98,0xe,0x70,0x0,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x3,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x4,0x5,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0xad,0xd4,0x0,0x0,0xff,0xff, - 0xb9,0xb0,0x1,0x4,0xff,0xff,0xab,0xa0,0x0,0x8,0xff,0xff,0xb9,0xb0,0x0,0xc, - 0xff,0xff,0xb9,0xb0,0x1,0x10,0xff,0xff,0xb9,0xb0,0x1,0x14,0xff,0xff,0xab,0xa0, - 0x0,0x8,0x4c,0x4d,0x54,0x0,0x43,0x44,0x54,0x0,0x43,0x53,0x54,0x0,0x45,0x53, - 0x54,0x0,0x43,0x57,0x54,0x0,0x43,0x50,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x1, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0x43,0x53,0x54,0x36,0x43,0x44,0x54, - 0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, - - // /home/konrad/src/smoke/tzone/zoneinfo/US/Eastern - 0x0,0x0,0xd,0xd9, + 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x8e,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xa,0x80,0x0,0x0,0x0,0x9c, + 0x4e,0xad,0xa4,0x9c,0xbc,0x27,0xf8,0xcb,0x54,0xba,0x8,0xcb,0xc7,0x5e,0x78,0xcc, + 0xb7,0x5d,0x88,0xcd,0xa7,0x40,0x78,0xce,0xa0,0x7a,0x8,0xcf,0x87,0x22,0x78,0x3, + 0x70,0x40,0x88,0x4,0xd,0x23,0x8,0x5,0x50,0x22,0x88,0x5,0xf6,0x3f,0x88,0x7, + 0x30,0x4,0x88,0x7,0xd6,0x21,0x88,0x9,0xf,0xe6,0x88,0x9,0xb6,0x3,0x88,0xa, + 0xef,0xc8,0x88,0xb,0x9f,0x20,0x8,0xc,0xd8,0xe5,0x8,0xd,0x7f,0x2,0x8,0xe, + 0xb8,0xc7,0x8,0xf,0x5e,0xe4,0x8,0x10,0x98,0xa9,0x8,0x11,0x3e,0xc6,0x8,0x12, + 0x78,0x8b,0x8,0x13,0x1e,0xa8,0x8,0x14,0x58,0x6d,0x8,0x14,0xfe,0x8a,0x8,0x16, + 0x38,0x4f,0x8,0x16,0xe7,0xa6,0x88,0x18,0x21,0x6b,0x88,0x18,0xc7,0x88,0x88,0x1a, + 0x1,0x4d,0x88,0x1a,0xa7,0x6a,0x88,0x1b,0xe1,0x2f,0x88,0x1c,0x87,0x4c,0x88,0x1d, + 0xc1,0x11,0x88,0x1e,0x79,0xa3,0x88,0x1f,0x97,0xb9,0x8,0x20,0x59,0x85,0x88,0x21, + 0x80,0xd5,0x88,0x22,0x42,0xa2,0x8,0x23,0x69,0xf2,0x8,0x24,0x22,0x84,0x8,0x25, + 0x49,0xd4,0x8,0x26,0x2,0x66,0x8,0x27,0x29,0xb6,0x8,0x27,0xcf,0xd3,0x8,0x29, + 0x9,0x98,0x8,0x29,0xcb,0x64,0x88,0x2a,0xe9,0x7a,0x8,0x2b,0x98,0xd1,0x88,0x2c, + 0xd2,0x96,0x88,0x2d,0x8b,0x28,0x88,0x2e,0xb2,0x78,0x88,0x2f,0x74,0x45,0x8,0x30, + 0x92,0x5a,0x88,0x31,0x5d,0x61,0x88,0x32,0x72,0x3c,0x88,0x33,0x3d,0x43,0x88,0x34, + 0x52,0x1e,0x88,0x35,0x1d,0x25,0x88,0x36,0x32,0x0,0x88,0x36,0xfd,0x7,0x88,0x38, + 0x1b,0x1d,0x8,0x38,0xdc,0xe9,0x88,0x39,0xfa,0xff,0x8,0x3a,0xbc,0xcb,0x88,0x3b, + 0xda,0xe1,0x8,0x3c,0xa5,0xe8,0x8,0x3d,0xba,0xc3,0x8,0x3e,0x85,0xca,0x8,0x3f, + 0x9a,0xa5,0x8,0x40,0x65,0xac,0x8,0x41,0x83,0xc1,0x88,0x42,0x45,0x8e,0x8,0x43, + 0x63,0xa3,0x88,0x44,0x2e,0xaa,0x88,0x45,0x43,0x85,0x88,0x46,0x5,0x52,0x8,0x47, + 0x23,0x67,0x88,0x47,0xf7,0xa9,0x8,0x48,0xe7,0x9a,0x8,0x49,0xd7,0x8b,0x8,0x4a, + 0xc7,0x7c,0x8,0x4b,0xb7,0x6d,0x8,0x4c,0xa7,0x5e,0x8,0x4d,0x97,0x4f,0x8,0x4e, + 0x87,0x40,0x8,0x4f,0x77,0x31,0x8,0x50,0x70,0x5c,0x88,0x51,0x60,0x4d,0x88,0x52, + 0x50,0x3e,0x88,0x53,0x40,0x2f,0x88,0x54,0x30,0x20,0x88,0x55,0x20,0x11,0x88,0x56, + 0x10,0x2,0x88,0x56,0xff,0xf3,0x88,0x57,0xef,0xe4,0x88,0x58,0xdf,0xd5,0x88,0x59, + 0xcf,0xc6,0x88,0x5a,0xbf,0xb7,0x88,0x5b,0xb8,0xe3,0x8,0x5c,0xa8,0xd4,0x8,0x5d, + 0x98,0xc5,0x8,0x5e,0x88,0xb6,0x8,0x5f,0x78,0xa7,0x8,0x60,0x68,0x98,0x8,0x61, + 0x58,0x89,0x8,0x62,0x48,0x7a,0x8,0x63,0x38,0x6b,0x8,0x64,0x28,0x5c,0x8,0x65, + 0x18,0x4d,0x8,0x66,0x11,0x78,0x88,0x67,0x1,0x69,0x88,0x67,0xf1,0x5a,0x88,0x68, + 0xe1,0x4b,0x88,0x69,0xd1,0x3c,0x88,0x6a,0xc1,0x2d,0x88,0x6b,0xb1,0x1e,0x88,0x6c, + 0xa1,0xf,0x88,0x6d,0x91,0x0,0x88,0x6e,0x80,0xf1,0x88,0x6f,0x70,0xe2,0x88,0x70, + 0x6a,0xe,0x8,0x71,0x59,0xff,0x8,0x72,0x49,0xf0,0x8,0x73,0x39,0xe1,0x8,0x74, + 0x29,0xd2,0x8,0x75,0x19,0xc3,0x8,0x76,0x9,0xb4,0x8,0x76,0xf9,0xa5,0x8,0x77, + 0xe9,0x96,0x8,0x78,0xd9,0x87,0x8,0x79,0xc9,0x78,0x8,0x7a,0xb9,0x69,0x8,0x7b, + 0xb2,0x94,0x88,0x7c,0xa2,0x85,0x88,0x7d,0x92,0x76,0x88,0x7e,0x82,0x67,0x88,0x7f, + 0x72,0x58,0x88,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x0,0x0,0x7e,0x90,0x0,0x0,0x0,0x0,0x93,0xa8,0x1,0x5,0x0,0x0,0x85, + 0x98,0x0,0x0,0x0,0x0,0x93,0xa8,0x1,0x5,0x0,0x0,0x85,0x98,0x0,0x0,0x41, + 0x43,0x53,0x54,0x0,0x41,0x43,0x44,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0, + 0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x90,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xe,0xf8, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x73,0x16,0x8b,0x14,0xff, + 0xff,0xff,0xff,0x7b,0x12,0x3,0x70,0xff,0xff,0xff,0xff,0x9c,0x4e,0xad,0xa4,0xff, + 0xff,0xff,0xff,0x9c,0xbc,0x27,0xf8,0xff,0xff,0xff,0xff,0xcb,0x54,0xba,0x8,0xff, + 0xff,0xff,0xff,0xcb,0xc7,0x5e,0x78,0xff,0xff,0xff,0xff,0xcc,0xb7,0x5d,0x88,0xff, + 0xff,0xff,0xff,0xcd,0xa7,0x40,0x78,0xff,0xff,0xff,0xff,0xce,0xa0,0x7a,0x8,0xff, + 0xff,0xff,0xff,0xcf,0x87,0x22,0x78,0x0,0x0,0x0,0x0,0x3,0x70,0x40,0x88,0x0, + 0x0,0x0,0x0,0x4,0xd,0x23,0x8,0x0,0x0,0x0,0x0,0x5,0x50,0x22,0x88,0x0, + 0x0,0x0,0x0,0x5,0xf6,0x3f,0x88,0x0,0x0,0x0,0x0,0x7,0x30,0x4,0x88,0x0, + 0x0,0x0,0x0,0x7,0xd6,0x21,0x88,0x0,0x0,0x0,0x0,0x9,0xf,0xe6,0x88,0x0, + 0x0,0x0,0x0,0x9,0xb6,0x3,0x88,0x0,0x0,0x0,0x0,0xa,0xef,0xc8,0x88,0x0, + 0x0,0x0,0x0,0xb,0x9f,0x20,0x8,0x0,0x0,0x0,0x0,0xc,0xd8,0xe5,0x8,0x0, + 0x0,0x0,0x0,0xd,0x7f,0x2,0x8,0x0,0x0,0x0,0x0,0xe,0xb8,0xc7,0x8,0x0, + 0x0,0x0,0x0,0xf,0x5e,0xe4,0x8,0x0,0x0,0x0,0x0,0x10,0x98,0xa9,0x8,0x0, + 0x0,0x0,0x0,0x11,0x3e,0xc6,0x8,0x0,0x0,0x0,0x0,0x12,0x78,0x8b,0x8,0x0, + 0x0,0x0,0x0,0x13,0x1e,0xa8,0x8,0x0,0x0,0x0,0x0,0x14,0x58,0x6d,0x8,0x0, + 0x0,0x0,0x0,0x14,0xfe,0x8a,0x8,0x0,0x0,0x0,0x0,0x16,0x38,0x4f,0x8,0x0, + 0x0,0x0,0x0,0x16,0xe7,0xa6,0x88,0x0,0x0,0x0,0x0,0x18,0x21,0x6b,0x88,0x0, + 0x0,0x0,0x0,0x18,0xc7,0x88,0x88,0x0,0x0,0x0,0x0,0x1a,0x1,0x4d,0x88,0x0, + 0x0,0x0,0x0,0x1a,0xa7,0x6a,0x88,0x0,0x0,0x0,0x0,0x1b,0xe1,0x2f,0x88,0x0, + 0x0,0x0,0x0,0x1c,0x87,0x4c,0x88,0x0,0x0,0x0,0x0,0x1d,0xc1,0x11,0x88,0x0, + 0x0,0x0,0x0,0x1e,0x79,0xa3,0x88,0x0,0x0,0x0,0x0,0x1f,0x97,0xb9,0x8,0x0, + 0x0,0x0,0x0,0x20,0x59,0x85,0x88,0x0,0x0,0x0,0x0,0x21,0x80,0xd5,0x88,0x0, + 0x0,0x0,0x0,0x22,0x42,0xa2,0x8,0x0,0x0,0x0,0x0,0x23,0x69,0xf2,0x8,0x0, + 0x0,0x0,0x0,0x24,0x22,0x84,0x8,0x0,0x0,0x0,0x0,0x25,0x49,0xd4,0x8,0x0, + 0x0,0x0,0x0,0x26,0x2,0x66,0x8,0x0,0x0,0x0,0x0,0x27,0x29,0xb6,0x8,0x0, + 0x0,0x0,0x0,0x27,0xcf,0xd3,0x8,0x0,0x0,0x0,0x0,0x29,0x9,0x98,0x8,0x0, + 0x0,0x0,0x0,0x29,0xcb,0x64,0x88,0x0,0x0,0x0,0x0,0x2a,0xe9,0x7a,0x8,0x0, + 0x0,0x0,0x0,0x2b,0x98,0xd1,0x88,0x0,0x0,0x0,0x0,0x2c,0xd2,0x96,0x88,0x0, + 0x0,0x0,0x0,0x2d,0x8b,0x28,0x88,0x0,0x0,0x0,0x0,0x2e,0xb2,0x78,0x88,0x0, + 0x0,0x0,0x0,0x2f,0x74,0x45,0x8,0x0,0x0,0x0,0x0,0x30,0x92,0x5a,0x88,0x0, + 0x0,0x0,0x0,0x31,0x5d,0x61,0x88,0x0,0x0,0x0,0x0,0x32,0x72,0x3c,0x88,0x0, + 0x0,0x0,0x0,0x33,0x3d,0x43,0x88,0x0,0x0,0x0,0x0,0x34,0x52,0x1e,0x88,0x0, + 0x0,0x0,0x0,0x35,0x1d,0x25,0x88,0x0,0x0,0x0,0x0,0x36,0x32,0x0,0x88,0x0, + 0x0,0x0,0x0,0x36,0xfd,0x7,0x88,0x0,0x0,0x0,0x0,0x38,0x1b,0x1d,0x8,0x0, + 0x0,0x0,0x0,0x38,0xdc,0xe9,0x88,0x0,0x0,0x0,0x0,0x39,0xfa,0xff,0x8,0x0, + 0x0,0x0,0x0,0x3a,0xbc,0xcb,0x88,0x0,0x0,0x0,0x0,0x3b,0xda,0xe1,0x8,0x0, + 0x0,0x0,0x0,0x3c,0xa5,0xe8,0x8,0x0,0x0,0x0,0x0,0x3d,0xba,0xc3,0x8,0x0, + 0x0,0x0,0x0,0x3e,0x85,0xca,0x8,0x0,0x0,0x0,0x0,0x3f,0x9a,0xa5,0x8,0x0, + 0x0,0x0,0x0,0x40,0x65,0xac,0x8,0x0,0x0,0x0,0x0,0x41,0x83,0xc1,0x88,0x0, + 0x0,0x0,0x0,0x42,0x45,0x8e,0x8,0x0,0x0,0x0,0x0,0x43,0x63,0xa3,0x88,0x0, + 0x0,0x0,0x0,0x44,0x2e,0xaa,0x88,0x0,0x0,0x0,0x0,0x45,0x43,0x85,0x88,0x0, + 0x0,0x0,0x0,0x46,0x5,0x52,0x8,0x0,0x0,0x0,0x0,0x47,0x23,0x67,0x88,0x0, + 0x0,0x0,0x0,0x47,0xf7,0xa9,0x8,0x0,0x0,0x0,0x0,0x48,0xe7,0x9a,0x8,0x0, + 0x0,0x0,0x0,0x49,0xd7,0x8b,0x8,0x0,0x0,0x0,0x0,0x4a,0xc7,0x7c,0x8,0x0, + 0x0,0x0,0x0,0x4b,0xb7,0x6d,0x8,0x0,0x0,0x0,0x0,0x4c,0xa7,0x5e,0x8,0x0, + 0x0,0x0,0x0,0x4d,0x97,0x4f,0x8,0x0,0x0,0x0,0x0,0x4e,0x87,0x40,0x8,0x0, + 0x0,0x0,0x0,0x4f,0x77,0x31,0x8,0x0,0x0,0x0,0x0,0x50,0x70,0x5c,0x88,0x0, + 0x0,0x0,0x0,0x51,0x60,0x4d,0x88,0x0,0x0,0x0,0x0,0x52,0x50,0x3e,0x88,0x0, + 0x0,0x0,0x0,0x53,0x40,0x2f,0x88,0x0,0x0,0x0,0x0,0x54,0x30,0x20,0x88,0x0, + 0x0,0x0,0x0,0x55,0x20,0x11,0x88,0x0,0x0,0x0,0x0,0x56,0x10,0x2,0x88,0x0, + 0x0,0x0,0x0,0x56,0xff,0xf3,0x88,0x0,0x0,0x0,0x0,0x57,0xef,0xe4,0x88,0x0, + 0x0,0x0,0x0,0x58,0xdf,0xd5,0x88,0x0,0x0,0x0,0x0,0x59,0xcf,0xc6,0x88,0x0, + 0x0,0x0,0x0,0x5a,0xbf,0xb7,0x88,0x0,0x0,0x0,0x0,0x5b,0xb8,0xe3,0x8,0x0, + 0x0,0x0,0x0,0x5c,0xa8,0xd4,0x8,0x0,0x0,0x0,0x0,0x5d,0x98,0xc5,0x8,0x0, + 0x0,0x0,0x0,0x5e,0x88,0xb6,0x8,0x0,0x0,0x0,0x0,0x5f,0x78,0xa7,0x8,0x0, + 0x0,0x0,0x0,0x60,0x68,0x98,0x8,0x0,0x0,0x0,0x0,0x61,0x58,0x89,0x8,0x0, + 0x0,0x0,0x0,0x62,0x48,0x7a,0x8,0x0,0x0,0x0,0x0,0x63,0x38,0x6b,0x8,0x0, + 0x0,0x0,0x0,0x64,0x28,0x5c,0x8,0x0,0x0,0x0,0x0,0x65,0x18,0x4d,0x8,0x0, + 0x0,0x0,0x0,0x66,0x11,0x78,0x88,0x0,0x0,0x0,0x0,0x67,0x1,0x69,0x88,0x0, + 0x0,0x0,0x0,0x67,0xf1,0x5a,0x88,0x0,0x0,0x0,0x0,0x68,0xe1,0x4b,0x88,0x0, + 0x0,0x0,0x0,0x69,0xd1,0x3c,0x88,0x0,0x0,0x0,0x0,0x6a,0xc1,0x2d,0x88,0x0, + 0x0,0x0,0x0,0x6b,0xb1,0x1e,0x88,0x0,0x0,0x0,0x0,0x6c,0xa1,0xf,0x88,0x0, + 0x0,0x0,0x0,0x6d,0x91,0x0,0x88,0x0,0x0,0x0,0x0,0x6e,0x80,0xf1,0x88,0x0, + 0x0,0x0,0x0,0x6f,0x70,0xe2,0x88,0x0,0x0,0x0,0x0,0x70,0x6a,0xe,0x8,0x0, + 0x0,0x0,0x0,0x71,0x59,0xff,0x8,0x0,0x0,0x0,0x0,0x72,0x49,0xf0,0x8,0x0, + 0x0,0x0,0x0,0x73,0x39,0xe1,0x8,0x0,0x0,0x0,0x0,0x74,0x29,0xd2,0x8,0x0, + 0x0,0x0,0x0,0x75,0x19,0xc3,0x8,0x0,0x0,0x0,0x0,0x76,0x9,0xb4,0x8,0x0, + 0x0,0x0,0x0,0x76,0xf9,0xa5,0x8,0x0,0x0,0x0,0x0,0x77,0xe9,0x96,0x8,0x0, + 0x0,0x0,0x0,0x78,0xd9,0x87,0x8,0x0,0x0,0x0,0x0,0x79,0xc9,0x78,0x8,0x0, + 0x0,0x0,0x0,0x7a,0xb9,0x69,0x8,0x0,0x0,0x0,0x0,0x7b,0xb2,0x94,0x88,0x0, + 0x0,0x0,0x0,0x7c,0xa2,0x85,0x88,0x0,0x0,0x0,0x0,0x7d,0x92,0x76,0x88,0x0, + 0x0,0x0,0x0,0x7e,0x82,0x67,0x88,0x0,0x0,0x0,0x0,0x7f,0x72,0x58,0x88,0x0, + 0x1,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x0, + 0x0,0x81,0xec,0x0,0x0,0x0,0x0,0x7e,0x90,0x0,0x4,0x0,0x0,0x93,0xa8,0x1, + 0x9,0x0,0x0,0x85,0x98,0x0,0x4,0x0,0x0,0x93,0xa8,0x1,0x9,0x0,0x0,0x85, + 0x98,0x0,0x4,0x4c,0x4d,0x54,0x0,0x41,0x43,0x53,0x54,0x0,0x41,0x43,0x44,0x54, + 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x41,0x43, + 0x53,0x54,0x2d,0x39,0x3a,0x33,0x30,0x41,0x43,0x44,0x54,0x2c,0x4d,0x31,0x30,0x2e, + 0x31,0x2e,0x30,0x2c,0x4d,0x34,0x2e,0x31,0x2e,0x30,0x2f,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Australia/Broken_Hill + 0x0,0x0,0x8,0xe2, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xec,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0x9e, - 0xa6,0x1e,0x70,0x9f,0xba,0xeb,0x60,0xa0,0x86,0x0,0x70,0xa1,0x9a,0xcd,0x60,0xa2, - 0x65,0xe2,0x70,0xa3,0x83,0xe9,0xe0,0xa4,0x6a,0xae,0x70,0xa5,0x35,0xa7,0x60,0xa6, - 0x53,0xca,0xf0,0xa7,0x15,0x89,0x60,0xa8,0x33,0xac,0xf0,0xa8,0xfe,0xa5,0xe0,0xaa, - 0x13,0x8e,0xf0,0xaa,0xde,0x87,0xe0,0xab,0xf3,0x70,0xf0,0xac,0xbe,0x69,0xe0,0xad, - 0xd3,0x52,0xf0,0xae,0x9e,0x4b,0xe0,0xaf,0xb3,0x34,0xf0,0xb0,0x7e,0x2d,0xe0,0xb1, - 0x9c,0x51,0x70,0xb2,0x67,0x4a,0x60,0xb3,0x7c,0x33,0x70,0xb4,0x47,0x2c,0x60,0xb5, - 0x5c,0x15,0x70,0xb6,0x27,0xe,0x60,0xb7,0x3b,0xf7,0x70,0xb8,0x6,0xf0,0x60,0xb9, - 0x1b,0xd9,0x70,0xb9,0xe6,0xd2,0x60,0xbb,0x4,0xf5,0xf0,0xbb,0xc6,0xb4,0x60,0xbc, - 0xe4,0xd7,0xf0,0xbd,0xaf,0xd0,0xe0,0xbe,0xc4,0xb9,0xf0,0xbf,0x8f,0xb2,0xe0,0xc0, - 0xa4,0x9b,0xf0,0xc1,0x6f,0x94,0xe0,0xc2,0x84,0x7d,0xf0,0xc3,0x4f,0x76,0xe0,0xc4, - 0x64,0x5f,0xf0,0xc5,0x2f,0x58,0xe0,0xc6,0x4d,0x7c,0x70,0xc7,0xf,0x3a,0xe0,0xc8, - 0x2d,0x5e,0x70,0xc8,0xf8,0x57,0x60,0xca,0xd,0x40,0x70,0xca,0xd8,0x39,0x60,0xcb, - 0x88,0xf0,0x70,0xd2,0x23,0xf4,0x70,0xd2,0x60,0xfb,0xe0,0xd3,0x75,0xe4,0xf0,0xd4, - 0x40,0xdd,0xe0,0xd5,0x55,0xc6,0xf0,0xd6,0x20,0xbf,0xe0,0xd7,0x35,0xa8,0xf0,0xd8, - 0x0,0xa1,0xe0,0xd9,0x15,0x8a,0xf0,0xd9,0xe0,0x83,0xe0,0xda,0xfe,0xa7,0x70,0xdb, - 0xc0,0x65,0xe0,0xdc,0xde,0x89,0x70,0xdd,0xa9,0x82,0x60,0xde,0xbe,0x6b,0x70,0xdf, - 0x89,0x64,0x60,0xe0,0x9e,0x4d,0x70,0xe1,0x69,0x46,0x60,0xe2,0x7e,0x2f,0x70,0xe3, - 0x49,0x28,0x60,0xe4,0x5e,0x11,0x70,0xe5,0x57,0x2e,0xe0,0xe6,0x47,0x2d,0xf0,0xe7, - 0x37,0x10,0xe0,0xe8,0x27,0xf,0xf0,0xe9,0x16,0xf2,0xe0,0xea,0x6,0xf1,0xf0,0xea, - 0xf6,0xd4,0xe0,0xeb,0xe6,0xd3,0xf0,0xec,0xd6,0xb6,0xe0,0xed,0xc6,0xb5,0xf0,0xee, - 0xbf,0xd3,0x60,0xef,0xaf,0xd2,0x70,0xf0,0x9f,0xb5,0x60,0xf1,0x8f,0xb4,0x70,0xf2, - 0x7f,0x97,0x60,0xf3,0x6f,0x96,0x70,0xf4,0x5f,0x79,0x60,0xf5,0x4f,0x78,0x70,0xf6, - 0x3f,0x5b,0x60,0xf7,0x2f,0x5a,0x70,0xf8,0x28,0x77,0xe0,0xf9,0xf,0x3c,0x70,0xfa, - 0x8,0x59,0xe0,0xfa,0xf8,0x58,0xf0,0xfb,0xe8,0x3b,0xe0,0xfc,0xd8,0x3a,0xf0,0xfd, - 0xc8,0x1d,0xe0,0xfe,0xb8,0x1c,0xf0,0xff,0xa7,0xff,0xe0,0x0,0x97,0xfe,0xf0,0x1, - 0x87,0xe1,0xe0,0x2,0x77,0xe0,0xf0,0x3,0x70,0xfe,0x60,0x4,0x60,0xfd,0x70,0x5, - 0x50,0xe0,0x60,0x6,0x40,0xdf,0x70,0x7,0x30,0xc2,0x60,0x7,0x8d,0x19,0x70,0x9, - 0x10,0xa4,0x60,0x9,0xad,0x94,0xf0,0xa,0xf0,0x86,0x60,0xb,0xe0,0x85,0x70,0xc, - 0xd9,0xa2,0xe0,0xd,0xc0,0x67,0x70,0xe,0xb9,0x84,0xe0,0xf,0xa9,0x83,0xf0,0x10, - 0x99,0x66,0xe0,0x11,0x89,0x65,0xf0,0x12,0x79,0x48,0xe0,0x13,0x69,0x47,0xf0,0x14, - 0x59,0x2a,0xe0,0x15,0x49,0x29,0xf0,0x16,0x39,0xc,0xe0,0x17,0x29,0xb,0xf0,0x18, - 0x22,0x29,0x60,0x19,0x8,0xed,0xf0,0x1a,0x2,0xb,0x60,0x1a,0xf2,0xa,0x70,0x1b, - 0xe1,0xed,0x60,0x1c,0xd1,0xec,0x70,0x1d,0xc1,0xcf,0x60,0x1e,0xb1,0xce,0x70,0x1f, - 0xa1,0xb1,0x60,0x20,0x76,0x0,0xf0,0x21,0x81,0x93,0x60,0x22,0x55,0xe2,0xf0,0x23, - 0x6a,0xaf,0xe0,0x24,0x35,0xc4,0xf0,0x25,0x4a,0x91,0xe0,0x26,0x15,0xa6,0xf0,0x27, - 0x2a,0x73,0xe0,0x27,0xfe,0xc3,0x70,0x29,0xa,0x55,0xe0,0x29,0xde,0xa5,0x70,0x2a, - 0xea,0x37,0xe0,0x2b,0xbe,0x87,0x70,0x2c,0xd3,0x54,0x60,0x2d,0x9e,0x69,0x70,0x2e, - 0xb3,0x36,0x60,0x2f,0x7e,0x4b,0x70,0x30,0x93,0x18,0x60,0x31,0x67,0x67,0xf0,0x32, - 0x72,0xfa,0x60,0x33,0x47,0x49,0xf0,0x34,0x52,0xdc,0x60,0x35,0x27,0x2b,0xf0,0x36, - 0x32,0xbe,0x60,0x37,0x7,0xd,0xf0,0x38,0x1b,0xda,0xe0,0x38,0xe6,0xef,0xf0,0x39, - 0xfb,0xbc,0xe0,0x3a,0xc6,0xd1,0xf0,0x3b,0xdb,0x9e,0xe0,0x3c,0xaf,0xee,0x70,0x3d, - 0xbb,0x80,0xe0,0x3e,0x8f,0xd0,0x70,0x3f,0x9b,0x62,0xe0,0x40,0x6f,0xb2,0x70,0x41, - 0x84,0x7f,0x60,0x42,0x4f,0x94,0x70,0x43,0x64,0x61,0x60,0x44,0x2f,0x76,0x70,0x45, - 0x44,0x43,0x60,0x45,0xf3,0xa8,0xf0,0x47,0x2d,0x5f,0xe0,0x47,0xd3,0x8a,0xf0,0x49, - 0xd,0x41,0xe0,0x49,0xb3,0x6c,0xf0,0x4a,0xed,0x23,0xe0,0x4b,0x9c,0x89,0x70,0x4c, - 0xd6,0x40,0x60,0x4d,0x7c,0x6b,0x70,0x4e,0xb6,0x22,0x60,0x4f,0x5c,0x4d,0x70,0x50, - 0x96,0x4,0x60,0x51,0x3c,0x2f,0x70,0x52,0x75,0xe6,0x60,0x53,0x1c,0x11,0x70,0x54, - 0x55,0xc8,0x60,0x54,0xfb,0xf3,0x70,0x56,0x35,0xaa,0x60,0x56,0xe5,0xf,0xf0,0x58, - 0x1e,0xc6,0xe0,0x58,0xc4,0xf1,0xf0,0x59,0xfe,0xa8,0xe0,0x5a,0xa4,0xd3,0xf0,0x5b, - 0xde,0x8a,0xe0,0x5c,0x84,0xb5,0xf0,0x5d,0xbe,0x6c,0xe0,0x5e,0x64,0x97,0xf0,0x5f, - 0x9e,0x4e,0xe0,0x60,0x4d,0xb4,0x70,0x61,0x87,0x6b,0x60,0x62,0x2d,0x96,0x70,0x63, - 0x67,0x4d,0x60,0x64,0xd,0x78,0x70,0x65,0x47,0x2f,0x60,0x65,0xed,0x5a,0x70,0x67, - 0x27,0x11,0x60,0x67,0xcd,0x3c,0x70,0x69,0x6,0xf3,0x60,0x69,0xad,0x1e,0x70,0x6a, - 0xe6,0xd5,0x60,0x6b,0x96,0x3a,0xf0,0x6c,0xcf,0xf1,0xe0,0x6d,0x76,0x1c,0xf0,0x6e, - 0xaf,0xd3,0xe0,0x6f,0x55,0xfe,0xf0,0x70,0x8f,0xb5,0xe0,0x71,0x35,0xe0,0xf0,0x72, - 0x6f,0x97,0xe0,0x73,0x15,0xc2,0xf0,0x74,0x4f,0x79,0xe0,0x74,0xfe,0xdf,0x70,0x76, - 0x38,0x96,0x60,0x76,0xde,0xc1,0x70,0x78,0x18,0x78,0x60,0x78,0xbe,0xa3,0x70,0x79, - 0xf8,0x5a,0x60,0x7a,0x9e,0x85,0x70,0x7b,0xd8,0x3c,0x60,0x7c,0x7e,0x67,0x70,0x7d, - 0xb8,0x1e,0x60,0x7e,0x5e,0x49,0x70,0x7f,0x98,0x0,0x60,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0xba,0x9e,0x0,0x0,0xff,0xff,0xc7, - 0xc0,0x1,0x4,0xff,0xff,0xb9,0xb0,0x0,0x8,0xff,0xff,0xc7,0xc0,0x1,0xc,0xff, - 0xff,0xc7,0xc0,0x1,0x10,0x4c,0x4d,0x54,0x0,0x45,0x44,0x54,0x0,0x45,0x53,0x54, - 0x0,0x45,0x57,0x54,0x0,0x45,0x50,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0, - 0x0,0x0,0x1,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0xed,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0xf8, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x5e,0x3,0xf0,0x90,0xff, - 0xff,0xff,0xff,0x9e,0xa6,0x1e,0x70,0xff,0xff,0xff,0xff,0x9f,0xba,0xeb,0x60,0xff, - 0xff,0xff,0xff,0xa0,0x86,0x0,0x70,0xff,0xff,0xff,0xff,0xa1,0x9a,0xcd,0x60,0xff, - 0xff,0xff,0xff,0xa2,0x65,0xe2,0x70,0xff,0xff,0xff,0xff,0xa3,0x83,0xe9,0xe0,0xff, - 0xff,0xff,0xff,0xa4,0x6a,0xae,0x70,0xff,0xff,0xff,0xff,0xa5,0x35,0xa7,0x60,0xff, - 0xff,0xff,0xff,0xa6,0x53,0xca,0xf0,0xff,0xff,0xff,0xff,0xa7,0x15,0x89,0x60,0xff, - 0xff,0xff,0xff,0xa8,0x33,0xac,0xf0,0xff,0xff,0xff,0xff,0xa8,0xfe,0xa5,0xe0,0xff, - 0xff,0xff,0xff,0xaa,0x13,0x8e,0xf0,0xff,0xff,0xff,0xff,0xaa,0xde,0x87,0xe0,0xff, - 0xff,0xff,0xff,0xab,0xf3,0x70,0xf0,0xff,0xff,0xff,0xff,0xac,0xbe,0x69,0xe0,0xff, - 0xff,0xff,0xff,0xad,0xd3,0x52,0xf0,0xff,0xff,0xff,0xff,0xae,0x9e,0x4b,0xe0,0xff, - 0xff,0xff,0xff,0xaf,0xb3,0x34,0xf0,0xff,0xff,0xff,0xff,0xb0,0x7e,0x2d,0xe0,0xff, - 0xff,0xff,0xff,0xb1,0x9c,0x51,0x70,0xff,0xff,0xff,0xff,0xb2,0x67,0x4a,0x60,0xff, - 0xff,0xff,0xff,0xb3,0x7c,0x33,0x70,0xff,0xff,0xff,0xff,0xb4,0x47,0x2c,0x60,0xff, - 0xff,0xff,0xff,0xb5,0x5c,0x15,0x70,0xff,0xff,0xff,0xff,0xb6,0x27,0xe,0x60,0xff, - 0xff,0xff,0xff,0xb7,0x3b,0xf7,0x70,0xff,0xff,0xff,0xff,0xb8,0x6,0xf0,0x60,0xff, - 0xff,0xff,0xff,0xb9,0x1b,0xd9,0x70,0xff,0xff,0xff,0xff,0xb9,0xe6,0xd2,0x60,0xff, - 0xff,0xff,0xff,0xbb,0x4,0xf5,0xf0,0xff,0xff,0xff,0xff,0xbb,0xc6,0xb4,0x60,0xff, - 0xff,0xff,0xff,0xbc,0xe4,0xd7,0xf0,0xff,0xff,0xff,0xff,0xbd,0xaf,0xd0,0xe0,0xff, - 0xff,0xff,0xff,0xbe,0xc4,0xb9,0xf0,0xff,0xff,0xff,0xff,0xbf,0x8f,0xb2,0xe0,0xff, - 0xff,0xff,0xff,0xc0,0xa4,0x9b,0xf0,0xff,0xff,0xff,0xff,0xc1,0x6f,0x94,0xe0,0xff, - 0xff,0xff,0xff,0xc2,0x84,0x7d,0xf0,0xff,0xff,0xff,0xff,0xc3,0x4f,0x76,0xe0,0xff, - 0xff,0xff,0xff,0xc4,0x64,0x5f,0xf0,0xff,0xff,0xff,0xff,0xc5,0x2f,0x58,0xe0,0xff, - 0xff,0xff,0xff,0xc6,0x4d,0x7c,0x70,0xff,0xff,0xff,0xff,0xc7,0xf,0x3a,0xe0,0xff, - 0xff,0xff,0xff,0xc8,0x2d,0x5e,0x70,0xff,0xff,0xff,0xff,0xc8,0xf8,0x57,0x60,0xff, - 0xff,0xff,0xff,0xca,0xd,0x40,0x70,0xff,0xff,0xff,0xff,0xca,0xd8,0x39,0x60,0xff, - 0xff,0xff,0xff,0xcb,0x88,0xf0,0x70,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff, - 0xff,0xff,0xff,0xd2,0x60,0xfb,0xe0,0xff,0xff,0xff,0xff,0xd3,0x75,0xe4,0xf0,0xff, - 0xff,0xff,0xff,0xd4,0x40,0xdd,0xe0,0xff,0xff,0xff,0xff,0xd5,0x55,0xc6,0xf0,0xff, - 0xff,0xff,0xff,0xd6,0x20,0xbf,0xe0,0xff,0xff,0xff,0xff,0xd7,0x35,0xa8,0xf0,0xff, - 0xff,0xff,0xff,0xd8,0x0,0xa1,0xe0,0xff,0xff,0xff,0xff,0xd9,0x15,0x8a,0xf0,0xff, - 0xff,0xff,0xff,0xd9,0xe0,0x83,0xe0,0xff,0xff,0xff,0xff,0xda,0xfe,0xa7,0x70,0xff, - 0xff,0xff,0xff,0xdb,0xc0,0x65,0xe0,0xff,0xff,0xff,0xff,0xdc,0xde,0x89,0x70,0xff, - 0xff,0xff,0xff,0xdd,0xa9,0x82,0x60,0xff,0xff,0xff,0xff,0xde,0xbe,0x6b,0x70,0xff, - 0xff,0xff,0xff,0xdf,0x89,0x64,0x60,0xff,0xff,0xff,0xff,0xe0,0x9e,0x4d,0x70,0xff, - 0xff,0xff,0xff,0xe1,0x69,0x46,0x60,0xff,0xff,0xff,0xff,0xe2,0x7e,0x2f,0x70,0xff, - 0xff,0xff,0xff,0xe3,0x49,0x28,0x60,0xff,0xff,0xff,0xff,0xe4,0x5e,0x11,0x70,0xff, - 0xff,0xff,0xff,0xe5,0x57,0x2e,0xe0,0xff,0xff,0xff,0xff,0xe6,0x47,0x2d,0xf0,0xff, - 0xff,0xff,0xff,0xe7,0x37,0x10,0xe0,0xff,0xff,0xff,0xff,0xe8,0x27,0xf,0xf0,0xff, - 0xff,0xff,0xff,0xe9,0x16,0xf2,0xe0,0xff,0xff,0xff,0xff,0xea,0x6,0xf1,0xf0,0xff, - 0xff,0xff,0xff,0xea,0xf6,0xd4,0xe0,0xff,0xff,0xff,0xff,0xeb,0xe6,0xd3,0xf0,0xff, - 0xff,0xff,0xff,0xec,0xd6,0xb6,0xe0,0xff,0xff,0xff,0xff,0xed,0xc6,0xb5,0xf0,0xff, - 0xff,0xff,0xff,0xee,0xbf,0xd3,0x60,0xff,0xff,0xff,0xff,0xef,0xaf,0xd2,0x70,0xff, - 0xff,0xff,0xff,0xf0,0x9f,0xb5,0x60,0xff,0xff,0xff,0xff,0xf1,0x8f,0xb4,0x70,0xff, - 0xff,0xff,0xff,0xf2,0x7f,0x97,0x60,0xff,0xff,0xff,0xff,0xf3,0x6f,0x96,0x70,0xff, - 0xff,0xff,0xff,0xf4,0x5f,0x79,0x60,0xff,0xff,0xff,0xff,0xf5,0x4f,0x78,0x70,0xff, - 0xff,0xff,0xff,0xf6,0x3f,0x5b,0x60,0xff,0xff,0xff,0xff,0xf7,0x2f,0x5a,0x70,0xff, - 0xff,0xff,0xff,0xf8,0x28,0x77,0xe0,0xff,0xff,0xff,0xff,0xf9,0xf,0x3c,0x70,0xff, - 0xff,0xff,0xff,0xfa,0x8,0x59,0xe0,0xff,0xff,0xff,0xff,0xfa,0xf8,0x58,0xf0,0xff, - 0xff,0xff,0xff,0xfb,0xe8,0x3b,0xe0,0xff,0xff,0xff,0xff,0xfc,0xd8,0x3a,0xf0,0xff, - 0xff,0xff,0xff,0xfd,0xc8,0x1d,0xe0,0xff,0xff,0xff,0xff,0xfe,0xb8,0x1c,0xf0,0xff, - 0xff,0xff,0xff,0xff,0xa7,0xff,0xe0,0x0,0x0,0x0,0x0,0x0,0x97,0xfe,0xf0,0x0, - 0x0,0x0,0x0,0x1,0x87,0xe1,0xe0,0x0,0x0,0x0,0x0,0x2,0x77,0xe0,0xf0,0x0, - 0x0,0x0,0x0,0x3,0x70,0xfe,0x60,0x0,0x0,0x0,0x0,0x4,0x60,0xfd,0x70,0x0, - 0x0,0x0,0x0,0x5,0x50,0xe0,0x60,0x0,0x0,0x0,0x0,0x6,0x40,0xdf,0x70,0x0, - 0x0,0x0,0x0,0x7,0x30,0xc2,0x60,0x0,0x0,0x0,0x0,0x7,0x8d,0x19,0x70,0x0, - 0x0,0x0,0x0,0x9,0x10,0xa4,0x60,0x0,0x0,0x0,0x0,0x9,0xad,0x94,0xf0,0x0, - 0x0,0x0,0x0,0xa,0xf0,0x86,0x60,0x0,0x0,0x0,0x0,0xb,0xe0,0x85,0x70,0x0, - 0x0,0x0,0x0,0xc,0xd9,0xa2,0xe0,0x0,0x0,0x0,0x0,0xd,0xc0,0x67,0x70,0x0, - 0x0,0x0,0x0,0xe,0xb9,0x84,0xe0,0x0,0x0,0x0,0x0,0xf,0xa9,0x83,0xf0,0x0, - 0x0,0x0,0x0,0x10,0x99,0x66,0xe0,0x0,0x0,0x0,0x0,0x11,0x89,0x65,0xf0,0x0, - 0x0,0x0,0x0,0x12,0x79,0x48,0xe0,0x0,0x0,0x0,0x0,0x13,0x69,0x47,0xf0,0x0, - 0x0,0x0,0x0,0x14,0x59,0x2a,0xe0,0x0,0x0,0x0,0x0,0x15,0x49,0x29,0xf0,0x0, - 0x0,0x0,0x0,0x16,0x39,0xc,0xe0,0x0,0x0,0x0,0x0,0x17,0x29,0xb,0xf0,0x0, - 0x0,0x0,0x0,0x18,0x22,0x29,0x60,0x0,0x0,0x0,0x0,0x19,0x8,0xed,0xf0,0x0, - 0x0,0x0,0x0,0x1a,0x2,0xb,0x60,0x0,0x0,0x0,0x0,0x1a,0xf2,0xa,0x70,0x0, - 0x0,0x0,0x0,0x1b,0xe1,0xed,0x60,0x0,0x0,0x0,0x0,0x1c,0xd1,0xec,0x70,0x0, - 0x0,0x0,0x0,0x1d,0xc1,0xcf,0x60,0x0,0x0,0x0,0x0,0x1e,0xb1,0xce,0x70,0x0, - 0x0,0x0,0x0,0x1f,0xa1,0xb1,0x60,0x0,0x0,0x0,0x0,0x20,0x76,0x0,0xf0,0x0, - 0x0,0x0,0x0,0x21,0x81,0x93,0x60,0x0,0x0,0x0,0x0,0x22,0x55,0xe2,0xf0,0x0, - 0x0,0x0,0x0,0x23,0x6a,0xaf,0xe0,0x0,0x0,0x0,0x0,0x24,0x35,0xc4,0xf0,0x0, - 0x0,0x0,0x0,0x25,0x4a,0x91,0xe0,0x0,0x0,0x0,0x0,0x26,0x15,0xa6,0xf0,0x0, - 0x0,0x0,0x0,0x27,0x2a,0x73,0xe0,0x0,0x0,0x0,0x0,0x27,0xfe,0xc3,0x70,0x0, - 0x0,0x0,0x0,0x29,0xa,0x55,0xe0,0x0,0x0,0x0,0x0,0x29,0xde,0xa5,0x70,0x0, - 0x0,0x0,0x0,0x2a,0xea,0x37,0xe0,0x0,0x0,0x0,0x0,0x2b,0xbe,0x87,0x70,0x0, - 0x0,0x0,0x0,0x2c,0xd3,0x54,0x60,0x0,0x0,0x0,0x0,0x2d,0x9e,0x69,0x70,0x0, - 0x0,0x0,0x0,0x2e,0xb3,0x36,0x60,0x0,0x0,0x0,0x0,0x2f,0x7e,0x4b,0x70,0x0, - 0x0,0x0,0x0,0x30,0x93,0x18,0x60,0x0,0x0,0x0,0x0,0x31,0x67,0x67,0xf0,0x0, - 0x0,0x0,0x0,0x32,0x72,0xfa,0x60,0x0,0x0,0x0,0x0,0x33,0x47,0x49,0xf0,0x0, - 0x0,0x0,0x0,0x34,0x52,0xdc,0x60,0x0,0x0,0x0,0x0,0x35,0x27,0x2b,0xf0,0x0, - 0x0,0x0,0x0,0x36,0x32,0xbe,0x60,0x0,0x0,0x0,0x0,0x37,0x7,0xd,0xf0,0x0, - 0x0,0x0,0x0,0x38,0x1b,0xda,0xe0,0x0,0x0,0x0,0x0,0x38,0xe6,0xef,0xf0,0x0, - 0x0,0x0,0x0,0x39,0xfb,0xbc,0xe0,0x0,0x0,0x0,0x0,0x3a,0xc6,0xd1,0xf0,0x0, - 0x0,0x0,0x0,0x3b,0xdb,0x9e,0xe0,0x0,0x0,0x0,0x0,0x3c,0xaf,0xee,0x70,0x0, - 0x0,0x0,0x0,0x3d,0xbb,0x80,0xe0,0x0,0x0,0x0,0x0,0x3e,0x8f,0xd0,0x70,0x0, - 0x0,0x0,0x0,0x3f,0x9b,0x62,0xe0,0x0,0x0,0x0,0x0,0x40,0x6f,0xb2,0x70,0x0, - 0x0,0x0,0x0,0x41,0x84,0x7f,0x60,0x0,0x0,0x0,0x0,0x42,0x4f,0x94,0x70,0x0, - 0x0,0x0,0x0,0x43,0x64,0x61,0x60,0x0,0x0,0x0,0x0,0x44,0x2f,0x76,0x70,0x0, - 0x0,0x0,0x0,0x45,0x44,0x43,0x60,0x0,0x0,0x0,0x0,0x45,0xf3,0xa8,0xf0,0x0, - 0x0,0x0,0x0,0x47,0x2d,0x5f,0xe0,0x0,0x0,0x0,0x0,0x47,0xd3,0x8a,0xf0,0x0, - 0x0,0x0,0x0,0x49,0xd,0x41,0xe0,0x0,0x0,0x0,0x0,0x49,0xb3,0x6c,0xf0,0x0, - 0x0,0x0,0x0,0x4a,0xed,0x23,0xe0,0x0,0x0,0x0,0x0,0x4b,0x9c,0x89,0x70,0x0, - 0x0,0x0,0x0,0x4c,0xd6,0x40,0x60,0x0,0x0,0x0,0x0,0x4d,0x7c,0x6b,0x70,0x0, - 0x0,0x0,0x0,0x4e,0xb6,0x22,0x60,0x0,0x0,0x0,0x0,0x4f,0x5c,0x4d,0x70,0x0, - 0x0,0x0,0x0,0x50,0x96,0x4,0x60,0x0,0x0,0x0,0x0,0x51,0x3c,0x2f,0x70,0x0, - 0x0,0x0,0x0,0x52,0x75,0xe6,0x60,0x0,0x0,0x0,0x0,0x53,0x1c,0x11,0x70,0x0, - 0x0,0x0,0x0,0x54,0x55,0xc8,0x60,0x0,0x0,0x0,0x0,0x54,0xfb,0xf3,0x70,0x0, - 0x0,0x0,0x0,0x56,0x35,0xaa,0x60,0x0,0x0,0x0,0x0,0x56,0xe5,0xf,0xf0,0x0, - 0x0,0x0,0x0,0x58,0x1e,0xc6,0xe0,0x0,0x0,0x0,0x0,0x58,0xc4,0xf1,0xf0,0x0, - 0x0,0x0,0x0,0x59,0xfe,0xa8,0xe0,0x0,0x0,0x0,0x0,0x5a,0xa4,0xd3,0xf0,0x0, - 0x0,0x0,0x0,0x5b,0xde,0x8a,0xe0,0x0,0x0,0x0,0x0,0x5c,0x84,0xb5,0xf0,0x0, - 0x0,0x0,0x0,0x5d,0xbe,0x6c,0xe0,0x0,0x0,0x0,0x0,0x5e,0x64,0x97,0xf0,0x0, - 0x0,0x0,0x0,0x5f,0x9e,0x4e,0xe0,0x0,0x0,0x0,0x0,0x60,0x4d,0xb4,0x70,0x0, - 0x0,0x0,0x0,0x61,0x87,0x6b,0x60,0x0,0x0,0x0,0x0,0x62,0x2d,0x96,0x70,0x0, - 0x0,0x0,0x0,0x63,0x67,0x4d,0x60,0x0,0x0,0x0,0x0,0x64,0xd,0x78,0x70,0x0, - 0x0,0x0,0x0,0x65,0x47,0x2f,0x60,0x0,0x0,0x0,0x0,0x65,0xed,0x5a,0x70,0x0, - 0x0,0x0,0x0,0x67,0x27,0x11,0x60,0x0,0x0,0x0,0x0,0x67,0xcd,0x3c,0x70,0x0, - 0x0,0x0,0x0,0x69,0x6,0xf3,0x60,0x0,0x0,0x0,0x0,0x69,0xad,0x1e,0x70,0x0, - 0x0,0x0,0x0,0x6a,0xe6,0xd5,0x60,0x0,0x0,0x0,0x0,0x6b,0x96,0x3a,0xf0,0x0, - 0x0,0x0,0x0,0x6c,0xcf,0xf1,0xe0,0x0,0x0,0x0,0x0,0x6d,0x76,0x1c,0xf0,0x0, - 0x0,0x0,0x0,0x6e,0xaf,0xd3,0xe0,0x0,0x0,0x0,0x0,0x6f,0x55,0xfe,0xf0,0x0, - 0x0,0x0,0x0,0x70,0x8f,0xb5,0xe0,0x0,0x0,0x0,0x0,0x71,0x35,0xe0,0xf0,0x0, - 0x0,0x0,0x0,0x72,0x6f,0x97,0xe0,0x0,0x0,0x0,0x0,0x73,0x15,0xc2,0xf0,0x0, - 0x0,0x0,0x0,0x74,0x4f,0x79,0xe0,0x0,0x0,0x0,0x0,0x74,0xfe,0xdf,0x70,0x0, - 0x0,0x0,0x0,0x76,0x38,0x96,0x60,0x0,0x0,0x0,0x0,0x76,0xde,0xc1,0x70,0x0, - 0x0,0x0,0x0,0x78,0x18,0x78,0x60,0x0,0x0,0x0,0x0,0x78,0xbe,0xa3,0x70,0x0, - 0x0,0x0,0x0,0x79,0xf8,0x5a,0x60,0x0,0x0,0x0,0x0,0x7a,0x9e,0x85,0x70,0x0, - 0x0,0x0,0x0,0x7b,0xd8,0x3c,0x60,0x0,0x0,0x0,0x0,0x7c,0x7e,0x67,0x70,0x0, - 0x0,0x0,0x0,0x7d,0xb8,0x1e,0x60,0x0,0x0,0x0,0x0,0x7e,0x5e,0x49,0x70,0x0, - 0x0,0x0,0x0,0x7f,0x98,0x0,0x60,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0xff,0xff,0xba,0x9e,0x0,0x0,0xff,0xff,0xc7,0xc0,0x1,0x4, - 0xff,0xff,0xb9,0xb0,0x0,0x8,0xff,0xff,0xc7,0xc0,0x1,0xc,0xff,0xff,0xc7,0xc0, - 0x1,0x10,0x4c,0x4d,0x54,0x0,0x45,0x44,0x54,0x0,0x45,0x53,0x54,0x0,0x45,0x57, - 0x54,0x0,0x45,0x50,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x1, - 0xa,0x45,0x53,0x54,0x35,0x45,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30,0x2c, - 0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/US/Michigan - 0x0,0x0,0x8,0xa8, + 0x0,0x0,0x8f,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xa,0x80,0x0,0x0,0x0,0x9c, + 0x4e,0xad,0xa4,0x9c,0xbc,0x27,0xf8,0xcb,0x54,0xba,0x8,0xcb,0xc7,0x5e,0x78,0xcc, + 0xb7,0x5d,0x88,0xcd,0xa7,0x40,0x78,0xce,0xa0,0x7a,0x8,0xcf,0x87,0x22,0x78,0x3, + 0x70,0x40,0x88,0x4,0xd,0x23,0x8,0x5,0x50,0x22,0x88,0x5,0xf6,0x3f,0x88,0x7, + 0x30,0x4,0x88,0x7,0xd6,0x21,0x88,0x9,0xf,0xe6,0x88,0x9,0xb6,0x3,0x88,0xa, + 0xef,0xc8,0x88,0xb,0x9f,0x20,0x8,0xc,0xd8,0xe5,0x8,0xd,0x7f,0x2,0x8,0xe, + 0xb8,0xc7,0x8,0xf,0x5e,0xe4,0x8,0x10,0x98,0xa9,0x8,0x11,0x3e,0xc6,0x8,0x12, + 0x78,0x8b,0x8,0x13,0x1e,0xa8,0x8,0x14,0x58,0x6d,0x8,0x14,0xfe,0x8a,0x8,0x16, + 0x38,0x4f,0x8,0x17,0xc,0x90,0x88,0x18,0x21,0x6b,0x88,0x18,0xc7,0x88,0x88,0x1a, + 0x1,0x4d,0x88,0x1a,0xa7,0x6a,0x88,0x1b,0xe1,0x2f,0x88,0x1c,0x87,0x4c,0x88,0x1d, + 0xc1,0x11,0x88,0x1e,0x79,0xa3,0x88,0x1f,0x97,0xb9,0x8,0x20,0x59,0x85,0x88,0x21, + 0x80,0xd5,0x88,0x22,0x42,0xa2,0x8,0x23,0x69,0xf2,0x8,0x24,0x22,0x84,0x8,0x25, + 0x49,0xd4,0x8,0x25,0xef,0xf1,0x8,0x27,0x29,0xb6,0x8,0x27,0xcf,0xd3,0x8,0x29, + 0x9,0x98,0x8,0x29,0xaf,0xb5,0x8,0x2a,0xe9,0x7a,0x8,0x2b,0x98,0xd1,0x88,0x2c, + 0xd2,0x96,0x88,0x2d,0x78,0xb3,0x88,0x2e,0xb2,0x78,0x88,0x2f,0x58,0x95,0x88,0x30, + 0x92,0x5a,0x88,0x31,0x5d,0x61,0x88,0x32,0x72,0x3c,0x88,0x33,0x3d,0x43,0x88,0x34, + 0x52,0x1e,0x88,0x35,0x1d,0x25,0x88,0x36,0x32,0x0,0x88,0x36,0xfd,0x7,0x88,0x38, + 0x1b,0x1d,0x8,0x38,0x6c,0xaf,0xd8,0x38,0xdc,0xe9,0x88,0x39,0xfa,0xff,0x8,0x3a, + 0xbc,0xcb,0x88,0x3b,0xda,0xe1,0x8,0x3c,0xa5,0xe8,0x8,0x3d,0xba,0xc3,0x8,0x3e, + 0x85,0xca,0x8,0x3f,0x9a,0xa5,0x8,0x40,0x65,0xac,0x8,0x41,0x83,0xc1,0x88,0x42, + 0x45,0x8e,0x8,0x43,0x63,0xa3,0x88,0x44,0x2e,0xaa,0x88,0x45,0x43,0x85,0x88,0x46, + 0x5,0x52,0x8,0x47,0x23,0x67,0x88,0x47,0xf7,0xa9,0x8,0x48,0xe7,0x9a,0x8,0x49, + 0xd7,0x8b,0x8,0x4a,0xc7,0x7c,0x8,0x4b,0xb7,0x6d,0x8,0x4c,0xa7,0x5e,0x8,0x4d, + 0x97,0x4f,0x8,0x4e,0x87,0x40,0x8,0x4f,0x77,0x31,0x8,0x50,0x70,0x5c,0x88,0x51, + 0x60,0x4d,0x88,0x52,0x50,0x3e,0x88,0x53,0x40,0x2f,0x88,0x54,0x30,0x20,0x88,0x55, + 0x20,0x11,0x88,0x56,0x10,0x2,0x88,0x56,0xff,0xf3,0x88,0x57,0xef,0xe4,0x88,0x58, + 0xdf,0xd5,0x88,0x59,0xcf,0xc6,0x88,0x5a,0xbf,0xb7,0x88,0x5b,0xb8,0xe3,0x8,0x5c, + 0xa8,0xd4,0x8,0x5d,0x98,0xc5,0x8,0x5e,0x88,0xb6,0x8,0x5f,0x78,0xa7,0x8,0x60, + 0x68,0x98,0x8,0x61,0x58,0x89,0x8,0x62,0x48,0x7a,0x8,0x63,0x38,0x6b,0x8,0x64, + 0x28,0x5c,0x8,0x65,0x18,0x4d,0x8,0x66,0x11,0x78,0x88,0x67,0x1,0x69,0x88,0x67, + 0xf1,0x5a,0x88,0x68,0xe1,0x4b,0x88,0x69,0xd1,0x3c,0x88,0x6a,0xc1,0x2d,0x88,0x6b, + 0xb1,0x1e,0x88,0x6c,0xa1,0xf,0x88,0x6d,0x91,0x0,0x88,0x6e,0x80,0xf1,0x88,0x6f, + 0x70,0xe2,0x88,0x70,0x6a,0xe,0x8,0x71,0x59,0xff,0x8,0x72,0x49,0xf0,0x8,0x73, + 0x39,0xe1,0x8,0x74,0x29,0xd2,0x8,0x75,0x19,0xc3,0x8,0x76,0x9,0xb4,0x8,0x76, + 0xf9,0xa5,0x8,0x77,0xe9,0x96,0x8,0x78,0xd9,0x87,0x8,0x79,0xc9,0x78,0x8,0x7a, + 0xb9,0x69,0x8,0x7b,0xb2,0x94,0x88,0x7c,0xa2,0x85,0x88,0x7d,0x92,0x76,0x88,0x7e, + 0x82,0x67,0x88,0x7f,0x72,0x58,0x88,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x1,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x0,0x0,0x7e,0x90,0x0,0x0,0x0,0x0,0x93,0xa8, + 0x1,0x5,0x0,0x0,0x85,0x98,0x0,0x0,0x0,0x0,0x93,0xa8,0x1,0x5,0x0,0x0, + 0x85,0x98,0x0,0x0,0x41,0x43,0x53,0x54,0x0,0x41,0x43,0x44,0x54,0x0,0x0,0x0, + 0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7, + 0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0x0,0x0,0x0,0x7, + 0x0,0x0,0x0,0x13,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0x73,0x16,0x88,0x64,0xff,0xff,0xff,0xff,0x76,0x4,0xa5,0xe0,0xff,0xff,0xff,0xff, + 0x7b,0x12,0x3,0x70,0xff,0xff,0xff,0xff,0x9c,0x4e,0xad,0xa4,0xff,0xff,0xff,0xff, + 0x9c,0xbc,0x27,0xf8,0xff,0xff,0xff,0xff,0xcb,0x54,0xba,0x8,0xff,0xff,0xff,0xff, + 0xcb,0xc7,0x5e,0x78,0xff,0xff,0xff,0xff,0xcc,0xb7,0x5d,0x88,0xff,0xff,0xff,0xff, + 0xcd,0xa7,0x40,0x78,0xff,0xff,0xff,0xff,0xce,0xa0,0x7a,0x8,0xff,0xff,0xff,0xff, + 0xcf,0x87,0x22,0x78,0x0,0x0,0x0,0x0,0x3,0x70,0x40,0x88,0x0,0x0,0x0,0x0, + 0x4,0xd,0x23,0x8,0x0,0x0,0x0,0x0,0x5,0x50,0x22,0x88,0x0,0x0,0x0,0x0, + 0x5,0xf6,0x3f,0x88,0x0,0x0,0x0,0x0,0x7,0x30,0x4,0x88,0x0,0x0,0x0,0x0, + 0x7,0xd6,0x21,0x88,0x0,0x0,0x0,0x0,0x9,0xf,0xe6,0x88,0x0,0x0,0x0,0x0, + 0x9,0xb6,0x3,0x88,0x0,0x0,0x0,0x0,0xa,0xef,0xc8,0x88,0x0,0x0,0x0,0x0, + 0xb,0x9f,0x20,0x8,0x0,0x0,0x0,0x0,0xc,0xd8,0xe5,0x8,0x0,0x0,0x0,0x0, + 0xd,0x7f,0x2,0x8,0x0,0x0,0x0,0x0,0xe,0xb8,0xc7,0x8,0x0,0x0,0x0,0x0, + 0xf,0x5e,0xe4,0x8,0x0,0x0,0x0,0x0,0x10,0x98,0xa9,0x8,0x0,0x0,0x0,0x0, + 0x11,0x3e,0xc6,0x8,0x0,0x0,0x0,0x0,0x12,0x78,0x8b,0x8,0x0,0x0,0x0,0x0, + 0x13,0x1e,0xa8,0x8,0x0,0x0,0x0,0x0,0x14,0x58,0x6d,0x8,0x0,0x0,0x0,0x0, + 0x14,0xfe,0x8a,0x8,0x0,0x0,0x0,0x0,0x16,0x38,0x4f,0x8,0x0,0x0,0x0,0x0, + 0x17,0xc,0x90,0x88,0x0,0x0,0x0,0x0,0x18,0x21,0x6b,0x88,0x0,0x0,0x0,0x0, + 0x18,0xc7,0x88,0x88,0x0,0x0,0x0,0x0,0x1a,0x1,0x4d,0x88,0x0,0x0,0x0,0x0, + 0x1a,0xa7,0x6a,0x88,0x0,0x0,0x0,0x0,0x1b,0xe1,0x2f,0x88,0x0,0x0,0x0,0x0, + 0x1c,0x87,0x4c,0x88,0x0,0x0,0x0,0x0,0x1d,0xc1,0x11,0x88,0x0,0x0,0x0,0x0, + 0x1e,0x79,0xa3,0x88,0x0,0x0,0x0,0x0,0x1f,0x97,0xb9,0x8,0x0,0x0,0x0,0x0, + 0x20,0x59,0x85,0x88,0x0,0x0,0x0,0x0,0x21,0x80,0xd5,0x88,0x0,0x0,0x0,0x0, + 0x22,0x42,0xa2,0x8,0x0,0x0,0x0,0x0,0x23,0x69,0xf2,0x8,0x0,0x0,0x0,0x0, + 0x24,0x22,0x84,0x8,0x0,0x0,0x0,0x0,0x25,0x49,0xd4,0x8,0x0,0x0,0x0,0x0, + 0x25,0xef,0xf1,0x8,0x0,0x0,0x0,0x0,0x27,0x29,0xb6,0x8,0x0,0x0,0x0,0x0, + 0x27,0xcf,0xd3,0x8,0x0,0x0,0x0,0x0,0x29,0x9,0x98,0x8,0x0,0x0,0x0,0x0, + 0x29,0xaf,0xb5,0x8,0x0,0x0,0x0,0x0,0x2a,0xe9,0x7a,0x8,0x0,0x0,0x0,0x0, + 0x2b,0x98,0xd1,0x88,0x0,0x0,0x0,0x0,0x2c,0xd2,0x96,0x88,0x0,0x0,0x0,0x0, + 0x2d,0x78,0xb3,0x88,0x0,0x0,0x0,0x0,0x2e,0xb2,0x78,0x88,0x0,0x0,0x0,0x0, + 0x2f,0x58,0x95,0x88,0x0,0x0,0x0,0x0,0x30,0x92,0x5a,0x88,0x0,0x0,0x0,0x0, + 0x31,0x5d,0x61,0x88,0x0,0x0,0x0,0x0,0x32,0x72,0x3c,0x88,0x0,0x0,0x0,0x0, + 0x33,0x3d,0x43,0x88,0x0,0x0,0x0,0x0,0x34,0x52,0x1e,0x88,0x0,0x0,0x0,0x0, + 0x35,0x1d,0x25,0x88,0x0,0x0,0x0,0x0,0x36,0x32,0x0,0x88,0x0,0x0,0x0,0x0, + 0x36,0xfd,0x7,0x88,0x0,0x0,0x0,0x0,0x38,0x1b,0x1d,0x8,0x0,0x0,0x0,0x0, + 0x38,0x6c,0xaf,0xd8,0x0,0x0,0x0,0x0,0x38,0xdc,0xe9,0x88,0x0,0x0,0x0,0x0, + 0x39,0xfa,0xff,0x8,0x0,0x0,0x0,0x0,0x3a,0xbc,0xcb,0x88,0x0,0x0,0x0,0x0, + 0x3b,0xda,0xe1,0x8,0x0,0x0,0x0,0x0,0x3c,0xa5,0xe8,0x8,0x0,0x0,0x0,0x0, + 0x3d,0xba,0xc3,0x8,0x0,0x0,0x0,0x0,0x3e,0x85,0xca,0x8,0x0,0x0,0x0,0x0, + 0x3f,0x9a,0xa5,0x8,0x0,0x0,0x0,0x0,0x40,0x65,0xac,0x8,0x0,0x0,0x0,0x0, + 0x41,0x83,0xc1,0x88,0x0,0x0,0x0,0x0,0x42,0x45,0x8e,0x8,0x0,0x0,0x0,0x0, + 0x43,0x63,0xa3,0x88,0x0,0x0,0x0,0x0,0x44,0x2e,0xaa,0x88,0x0,0x0,0x0,0x0, + 0x45,0x43,0x85,0x88,0x0,0x0,0x0,0x0,0x46,0x5,0x52,0x8,0x0,0x0,0x0,0x0, + 0x47,0x23,0x67,0x88,0x0,0x0,0x0,0x0,0x47,0xf7,0xa9,0x8,0x0,0x0,0x0,0x0, + 0x48,0xe7,0x9a,0x8,0x0,0x0,0x0,0x0,0x49,0xd7,0x8b,0x8,0x0,0x0,0x0,0x0, + 0x4a,0xc7,0x7c,0x8,0x0,0x0,0x0,0x0,0x4b,0xb7,0x6d,0x8,0x0,0x0,0x0,0x0, + 0x4c,0xa7,0x5e,0x8,0x0,0x0,0x0,0x0,0x4d,0x97,0x4f,0x8,0x0,0x0,0x0,0x0, + 0x4e,0x87,0x40,0x8,0x0,0x0,0x0,0x0,0x4f,0x77,0x31,0x8,0x0,0x0,0x0,0x0, + 0x50,0x70,0x5c,0x88,0x0,0x0,0x0,0x0,0x51,0x60,0x4d,0x88,0x0,0x0,0x0,0x0, + 0x52,0x50,0x3e,0x88,0x0,0x0,0x0,0x0,0x53,0x40,0x2f,0x88,0x0,0x0,0x0,0x0, + 0x54,0x30,0x20,0x88,0x0,0x0,0x0,0x0,0x55,0x20,0x11,0x88,0x0,0x0,0x0,0x0, + 0x56,0x10,0x2,0x88,0x0,0x0,0x0,0x0,0x56,0xff,0xf3,0x88,0x0,0x0,0x0,0x0, + 0x57,0xef,0xe4,0x88,0x0,0x0,0x0,0x0,0x58,0xdf,0xd5,0x88,0x0,0x0,0x0,0x0, + 0x59,0xcf,0xc6,0x88,0x0,0x0,0x0,0x0,0x5a,0xbf,0xb7,0x88,0x0,0x0,0x0,0x0, + 0x5b,0xb8,0xe3,0x8,0x0,0x0,0x0,0x0,0x5c,0xa8,0xd4,0x8,0x0,0x0,0x0,0x0, + 0x5d,0x98,0xc5,0x8,0x0,0x0,0x0,0x0,0x5e,0x88,0xb6,0x8,0x0,0x0,0x0,0x0, + 0x5f,0x78,0xa7,0x8,0x0,0x0,0x0,0x0,0x60,0x68,0x98,0x8,0x0,0x0,0x0,0x0, + 0x61,0x58,0x89,0x8,0x0,0x0,0x0,0x0,0x62,0x48,0x7a,0x8,0x0,0x0,0x0,0x0, + 0x63,0x38,0x6b,0x8,0x0,0x0,0x0,0x0,0x64,0x28,0x5c,0x8,0x0,0x0,0x0,0x0, + 0x65,0x18,0x4d,0x8,0x0,0x0,0x0,0x0,0x66,0x11,0x78,0x88,0x0,0x0,0x0,0x0, + 0x67,0x1,0x69,0x88,0x0,0x0,0x0,0x0,0x67,0xf1,0x5a,0x88,0x0,0x0,0x0,0x0, + 0x68,0xe1,0x4b,0x88,0x0,0x0,0x0,0x0,0x69,0xd1,0x3c,0x88,0x0,0x0,0x0,0x0, + 0x6a,0xc1,0x2d,0x88,0x0,0x0,0x0,0x0,0x6b,0xb1,0x1e,0x88,0x0,0x0,0x0,0x0, + 0x6c,0xa1,0xf,0x88,0x0,0x0,0x0,0x0,0x6d,0x91,0x0,0x88,0x0,0x0,0x0,0x0, + 0x6e,0x80,0xf1,0x88,0x0,0x0,0x0,0x0,0x6f,0x70,0xe2,0x88,0x0,0x0,0x0,0x0, + 0x70,0x6a,0xe,0x8,0x0,0x0,0x0,0x0,0x71,0x59,0xff,0x8,0x0,0x0,0x0,0x0, + 0x72,0x49,0xf0,0x8,0x0,0x0,0x0,0x0,0x73,0x39,0xe1,0x8,0x0,0x0,0x0,0x0, + 0x74,0x29,0xd2,0x8,0x0,0x0,0x0,0x0,0x75,0x19,0xc3,0x8,0x0,0x0,0x0,0x0, + 0x76,0x9,0xb4,0x8,0x0,0x0,0x0,0x0,0x76,0xf9,0xa5,0x8,0x0,0x0,0x0,0x0, + 0x77,0xe9,0x96,0x8,0x0,0x0,0x0,0x0,0x78,0xd9,0x87,0x8,0x0,0x0,0x0,0x0, + 0x79,0xc9,0x78,0x8,0x0,0x0,0x0,0x0,0x7a,0xb9,0x69,0x8,0x0,0x0,0x0,0x0, + 0x7b,0xb2,0x94,0x88,0x0,0x0,0x0,0x0,0x7c,0xa2,0x85,0x88,0x0,0x0,0x0,0x0, + 0x7d,0x92,0x76,0x88,0x0,0x0,0x0,0x0,0x7e,0x82,0x67,0x88,0x0,0x0,0x0,0x0, + 0x7f,0x72,0x58,0x88,0x0,0x1,0x2,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x3,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x0,0x0,0x84,0x9c,0x0,0x0,0x0,0x0,0x8c,0xa0, + 0x0,0x4,0x0,0x0,0x7e,0x90,0x0,0x9,0x0,0x0,0x93,0xa8,0x1,0xe,0x0,0x0, + 0x85,0x98,0x0,0x9,0x0,0x0,0x93,0xa8,0x1,0xe,0x0,0x0,0x85,0x98,0x0,0x9, + 0x4c,0x4d,0x54,0x0,0x41,0x45,0x53,0x54,0x0,0x41,0x43,0x53,0x54,0x0,0x41,0x43, + 0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xa,0x41,0x43,0x53,0x54,0x2d,0x39,0x3a,0x33,0x30,0x41,0x43,0x44,0x54,0x2c, + 0x4d,0x31,0x30,0x2e,0x31,0x2e,0x30,0x2c,0x4d,0x34,0x2e,0x31,0x2e,0x30,0x2f,0x33, + 0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Australia/Yancowinna + 0x0,0x0,0x8,0xe2, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x8c,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x80,0x0,0x0,0x0,0x85, - 0xbd,0x22,0x5b,0x99,0x3c,0x94,0x0,0xcb,0x88,0xf0,0x70,0xd2,0x23,0xf4,0x70,0xd2, - 0x60,0xfb,0xe0,0xd7,0x35,0xa8,0xf0,0xd8,0x0,0xa1,0xe0,0xfb,0x33,0xac,0x70,0xfb, - 0xe8,0x3b,0xe0,0x6,0x40,0xdf,0x70,0x7,0x30,0xc2,0x60,0x7,0x8d,0x19,0x70,0x9, - 0x10,0xa4,0x60,0xa,0x0,0xa3,0x70,0xa,0xf0,0x86,0x60,0xb,0xe0,0x85,0x70,0xc, - 0xd9,0xa2,0xe0,0xd,0xc0,0x67,0x70,0xe,0xb9,0x84,0xe0,0xf,0xa9,0x83,0xf0,0x10, - 0x99,0x66,0xe0,0x11,0x89,0x65,0xf0,0x12,0x79,0x48,0xe0,0x13,0x69,0x47,0xf0,0x14, - 0x59,0x2a,0xe0,0x15,0x49,0x29,0xf0,0x16,0x39,0xc,0xe0,0x17,0x29,0xb,0xf0,0x18, - 0x22,0x29,0x60,0x19,0x8,0xed,0xf0,0x1a,0x2,0xb,0x60,0x1a,0xf2,0xa,0x70,0x1b, - 0xe1,0xed,0x60,0x1c,0xd1,0xec,0x70,0x1d,0xc1,0xcf,0x60,0x1e,0xb1,0xce,0x70,0x1f, - 0xa1,0xb1,0x60,0x20,0x76,0x0,0xf0,0x21,0x81,0x93,0x60,0x22,0x55,0xe2,0xf0,0x23, - 0x6a,0xaf,0xe0,0x24,0x35,0xc4,0xf0,0x25,0x4a,0x91,0xe0,0x26,0x15,0xa6,0xf0,0x27, - 0x2a,0x73,0xe0,0x27,0xfe,0xc3,0x70,0x29,0xa,0x55,0xe0,0x29,0xde,0xa5,0x70,0x2a, - 0xea,0x37,0xe0,0x2b,0xbe,0x87,0x70,0x2c,0xd3,0x54,0x60,0x2d,0x9e,0x69,0x70,0x2e, - 0xb3,0x36,0x60,0x2f,0x7e,0x4b,0x70,0x30,0x93,0x18,0x60,0x31,0x67,0x67,0xf0,0x32, - 0x72,0xfa,0x60,0x33,0x47,0x49,0xf0,0x34,0x52,0xdc,0x60,0x35,0x27,0x2b,0xf0,0x36, - 0x32,0xbe,0x60,0x37,0x7,0xd,0xf0,0x38,0x1b,0xda,0xe0,0x38,0xe6,0xef,0xf0,0x39, - 0xfb,0xbc,0xe0,0x3a,0xc6,0xd1,0xf0,0x3b,0xdb,0x9e,0xe0,0x3c,0xaf,0xee,0x70,0x3d, - 0xbb,0x80,0xe0,0x3e,0x8f,0xd0,0x70,0x3f,0x9b,0x62,0xe0,0x40,0x6f,0xb2,0x70,0x41, - 0x84,0x7f,0x60,0x42,0x4f,0x94,0x70,0x43,0x64,0x61,0x60,0x44,0x2f,0x76,0x70,0x45, - 0x44,0x43,0x60,0x45,0xf3,0xa8,0xf0,0x47,0x2d,0x5f,0xe0,0x47,0xd3,0x8a,0xf0,0x49, - 0xd,0x41,0xe0,0x49,0xb3,0x6c,0xf0,0x4a,0xed,0x23,0xe0,0x4b,0x9c,0x89,0x70,0x4c, - 0xd6,0x40,0x60,0x4d,0x7c,0x6b,0x70,0x4e,0xb6,0x22,0x60,0x4f,0x5c,0x4d,0x70,0x50, - 0x96,0x4,0x60,0x51,0x3c,0x2f,0x70,0x52,0x75,0xe6,0x60,0x53,0x1c,0x11,0x70,0x54, - 0x55,0xc8,0x60,0x54,0xfb,0xf3,0x70,0x56,0x35,0xaa,0x60,0x56,0xe5,0xf,0xf0,0x58, - 0x1e,0xc6,0xe0,0x58,0xc4,0xf1,0xf0,0x59,0xfe,0xa8,0xe0,0x5a,0xa4,0xd3,0xf0,0x5b, - 0xde,0x8a,0xe0,0x5c,0x84,0xb5,0xf0,0x5d,0xbe,0x6c,0xe0,0x5e,0x64,0x97,0xf0,0x5f, - 0x9e,0x4e,0xe0,0x60,0x4d,0xb4,0x70,0x61,0x87,0x6b,0x60,0x62,0x2d,0x96,0x70,0x63, - 0x67,0x4d,0x60,0x64,0xd,0x78,0x70,0x65,0x47,0x2f,0x60,0x65,0xed,0x5a,0x70,0x67, - 0x27,0x11,0x60,0x67,0xcd,0x3c,0x70,0x69,0x6,0xf3,0x60,0x69,0xad,0x1e,0x70,0x6a, - 0xe6,0xd5,0x60,0x6b,0x96,0x3a,0xf0,0x6c,0xcf,0xf1,0xe0,0x6d,0x76,0x1c,0xf0,0x6e, - 0xaf,0xd3,0xe0,0x6f,0x55,0xfe,0xf0,0x70,0x8f,0xb5,0xe0,0x71,0x35,0xe0,0xf0,0x72, - 0x6f,0x97,0xe0,0x73,0x15,0xc2,0xf0,0x74,0x4f,0x79,0xe0,0x74,0xfe,0xdf,0x70,0x76, - 0x38,0x96,0x60,0x76,0xde,0xc1,0x70,0x78,0x18,0x78,0x60,0x78,0xbe,0xa3,0x70,0x79, - 0xf8,0x5a,0x60,0x7a,0x9e,0x85,0x70,0x7b,0xd8,0x3c,0x60,0x7c,0x7e,0x67,0x70,0x7d, - 0xb8,0x1e,0x60,0x7e,0x5e,0x49,0x70,0x7f,0x98,0x0,0x60,0x0,0x1,0x2,0x3,0x4, - 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, - 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, - 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, - 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, - 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, - 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, - 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, - 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, - 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0xff,0xff,0xb2,0x25,0x0,0x0,0xff,0xff,0xab, - 0xa0,0x0,0x4,0xff,0xff,0xb9,0xb0,0x0,0x8,0xff,0xff,0xc7,0xc0,0x1,0xc,0xff, - 0xff,0xc7,0xc0,0x1,0x10,0xff,0xff,0xc7,0xc0,0x1,0x14,0x4c,0x4d,0x54,0x0,0x43, - 0x53,0x54,0x0,0x45,0x53,0x54,0x0,0x45,0x57,0x54,0x0,0x45,0x50,0x54,0x0,0x45, - 0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x8c,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0xf8,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x85,0xbd,0x22,0x5b,0xff,0xff,0xff,0xff,0x99, - 0x3c,0x94,0x0,0xff,0xff,0xff,0xff,0xcb,0x88,0xf0,0x70,0xff,0xff,0xff,0xff,0xd2, - 0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x60,0xfb,0xe0,0xff,0xff,0xff,0xff,0xd7, - 0x35,0xa8,0xf0,0xff,0xff,0xff,0xff,0xd8,0x0,0xa1,0xe0,0xff,0xff,0xff,0xff,0xfb, - 0x33,0xac,0x70,0xff,0xff,0xff,0xff,0xfb,0xe8,0x3b,0xe0,0x0,0x0,0x0,0x0,0x6, - 0x40,0xdf,0x70,0x0,0x0,0x0,0x0,0x7,0x30,0xc2,0x60,0x0,0x0,0x0,0x0,0x7, - 0x8d,0x19,0x70,0x0,0x0,0x0,0x0,0x9,0x10,0xa4,0x60,0x0,0x0,0x0,0x0,0xa, - 0x0,0xa3,0x70,0x0,0x0,0x0,0x0,0xa,0xf0,0x86,0x60,0x0,0x0,0x0,0x0,0xb, - 0xe0,0x85,0x70,0x0,0x0,0x0,0x0,0xc,0xd9,0xa2,0xe0,0x0,0x0,0x0,0x0,0xd, - 0xc0,0x67,0x70,0x0,0x0,0x0,0x0,0xe,0xb9,0x84,0xe0,0x0,0x0,0x0,0x0,0xf, - 0xa9,0x83,0xf0,0x0,0x0,0x0,0x0,0x10,0x99,0x66,0xe0,0x0,0x0,0x0,0x0,0x11, - 0x89,0x65,0xf0,0x0,0x0,0x0,0x0,0x12,0x79,0x48,0xe0,0x0,0x0,0x0,0x0,0x13, - 0x69,0x47,0xf0,0x0,0x0,0x0,0x0,0x14,0x59,0x2a,0xe0,0x0,0x0,0x0,0x0,0x15, - 0x49,0x29,0xf0,0x0,0x0,0x0,0x0,0x16,0x39,0xc,0xe0,0x0,0x0,0x0,0x0,0x17, - 0x29,0xb,0xf0,0x0,0x0,0x0,0x0,0x18,0x22,0x29,0x60,0x0,0x0,0x0,0x0,0x19, - 0x8,0xed,0xf0,0x0,0x0,0x0,0x0,0x1a,0x2,0xb,0x60,0x0,0x0,0x0,0x0,0x1a, - 0xf2,0xa,0x70,0x0,0x0,0x0,0x0,0x1b,0xe1,0xed,0x60,0x0,0x0,0x0,0x0,0x1c, - 0xd1,0xec,0x70,0x0,0x0,0x0,0x0,0x1d,0xc1,0xcf,0x60,0x0,0x0,0x0,0x0,0x1e, - 0xb1,0xce,0x70,0x0,0x0,0x0,0x0,0x1f,0xa1,0xb1,0x60,0x0,0x0,0x0,0x0,0x20, - 0x76,0x0,0xf0,0x0,0x0,0x0,0x0,0x21,0x81,0x93,0x60,0x0,0x0,0x0,0x0,0x22, - 0x55,0xe2,0xf0,0x0,0x0,0x0,0x0,0x23,0x6a,0xaf,0xe0,0x0,0x0,0x0,0x0,0x24, - 0x35,0xc4,0xf0,0x0,0x0,0x0,0x0,0x25,0x4a,0x91,0xe0,0x0,0x0,0x0,0x0,0x26, - 0x15,0xa6,0xf0,0x0,0x0,0x0,0x0,0x27,0x2a,0x73,0xe0,0x0,0x0,0x0,0x0,0x27, - 0xfe,0xc3,0x70,0x0,0x0,0x0,0x0,0x29,0xa,0x55,0xe0,0x0,0x0,0x0,0x0,0x29, - 0xde,0xa5,0x70,0x0,0x0,0x0,0x0,0x2a,0xea,0x37,0xe0,0x0,0x0,0x0,0x0,0x2b, - 0xbe,0x87,0x70,0x0,0x0,0x0,0x0,0x2c,0xd3,0x54,0x60,0x0,0x0,0x0,0x0,0x2d, - 0x9e,0x69,0x70,0x0,0x0,0x0,0x0,0x2e,0xb3,0x36,0x60,0x0,0x0,0x0,0x0,0x2f, - 0x7e,0x4b,0x70,0x0,0x0,0x0,0x0,0x30,0x93,0x18,0x60,0x0,0x0,0x0,0x0,0x31, - 0x67,0x67,0xf0,0x0,0x0,0x0,0x0,0x32,0x72,0xfa,0x60,0x0,0x0,0x0,0x0,0x33, - 0x47,0x49,0xf0,0x0,0x0,0x0,0x0,0x34,0x52,0xdc,0x60,0x0,0x0,0x0,0x0,0x35, - 0x27,0x2b,0xf0,0x0,0x0,0x0,0x0,0x36,0x32,0xbe,0x60,0x0,0x0,0x0,0x0,0x37, - 0x7,0xd,0xf0,0x0,0x0,0x0,0x0,0x38,0x1b,0xda,0xe0,0x0,0x0,0x0,0x0,0x38, - 0xe6,0xef,0xf0,0x0,0x0,0x0,0x0,0x39,0xfb,0xbc,0xe0,0x0,0x0,0x0,0x0,0x3a, - 0xc6,0xd1,0xf0,0x0,0x0,0x0,0x0,0x3b,0xdb,0x9e,0xe0,0x0,0x0,0x0,0x0,0x3c, - 0xaf,0xee,0x70,0x0,0x0,0x0,0x0,0x3d,0xbb,0x80,0xe0,0x0,0x0,0x0,0x0,0x3e, - 0x8f,0xd0,0x70,0x0,0x0,0x0,0x0,0x3f,0x9b,0x62,0xe0,0x0,0x0,0x0,0x0,0x40, - 0x6f,0xb2,0x70,0x0,0x0,0x0,0x0,0x41,0x84,0x7f,0x60,0x0,0x0,0x0,0x0,0x42, - 0x4f,0x94,0x70,0x0,0x0,0x0,0x0,0x43,0x64,0x61,0x60,0x0,0x0,0x0,0x0,0x44, - 0x2f,0x76,0x70,0x0,0x0,0x0,0x0,0x45,0x44,0x43,0x60,0x0,0x0,0x0,0x0,0x45, - 0xf3,0xa8,0xf0,0x0,0x0,0x0,0x0,0x47,0x2d,0x5f,0xe0,0x0,0x0,0x0,0x0,0x47, - 0xd3,0x8a,0xf0,0x0,0x0,0x0,0x0,0x49,0xd,0x41,0xe0,0x0,0x0,0x0,0x0,0x49, - 0xb3,0x6c,0xf0,0x0,0x0,0x0,0x0,0x4a,0xed,0x23,0xe0,0x0,0x0,0x0,0x0,0x4b, - 0x9c,0x89,0x70,0x0,0x0,0x0,0x0,0x4c,0xd6,0x40,0x60,0x0,0x0,0x0,0x0,0x4d, - 0x7c,0x6b,0x70,0x0,0x0,0x0,0x0,0x4e,0xb6,0x22,0x60,0x0,0x0,0x0,0x0,0x4f, - 0x5c,0x4d,0x70,0x0,0x0,0x0,0x0,0x50,0x96,0x4,0x60,0x0,0x0,0x0,0x0,0x51, - 0x3c,0x2f,0x70,0x0,0x0,0x0,0x0,0x52,0x75,0xe6,0x60,0x0,0x0,0x0,0x0,0x53, - 0x1c,0x11,0x70,0x0,0x0,0x0,0x0,0x54,0x55,0xc8,0x60,0x0,0x0,0x0,0x0,0x54, - 0xfb,0xf3,0x70,0x0,0x0,0x0,0x0,0x56,0x35,0xaa,0x60,0x0,0x0,0x0,0x0,0x56, - 0xe5,0xf,0xf0,0x0,0x0,0x0,0x0,0x58,0x1e,0xc6,0xe0,0x0,0x0,0x0,0x0,0x58, - 0xc4,0xf1,0xf0,0x0,0x0,0x0,0x0,0x59,0xfe,0xa8,0xe0,0x0,0x0,0x0,0x0,0x5a, - 0xa4,0xd3,0xf0,0x0,0x0,0x0,0x0,0x5b,0xde,0x8a,0xe0,0x0,0x0,0x0,0x0,0x5c, - 0x84,0xb5,0xf0,0x0,0x0,0x0,0x0,0x5d,0xbe,0x6c,0xe0,0x0,0x0,0x0,0x0,0x5e, - 0x64,0x97,0xf0,0x0,0x0,0x0,0x0,0x5f,0x9e,0x4e,0xe0,0x0,0x0,0x0,0x0,0x60, - 0x4d,0xb4,0x70,0x0,0x0,0x0,0x0,0x61,0x87,0x6b,0x60,0x0,0x0,0x0,0x0,0x62, - 0x2d,0x96,0x70,0x0,0x0,0x0,0x0,0x63,0x67,0x4d,0x60,0x0,0x0,0x0,0x0,0x64, - 0xd,0x78,0x70,0x0,0x0,0x0,0x0,0x65,0x47,0x2f,0x60,0x0,0x0,0x0,0x0,0x65, - 0xed,0x5a,0x70,0x0,0x0,0x0,0x0,0x67,0x27,0x11,0x60,0x0,0x0,0x0,0x0,0x67, - 0xcd,0x3c,0x70,0x0,0x0,0x0,0x0,0x69,0x6,0xf3,0x60,0x0,0x0,0x0,0x0,0x69, - 0xad,0x1e,0x70,0x0,0x0,0x0,0x0,0x6a,0xe6,0xd5,0x60,0x0,0x0,0x0,0x0,0x6b, - 0x96,0x3a,0xf0,0x0,0x0,0x0,0x0,0x6c,0xcf,0xf1,0xe0,0x0,0x0,0x0,0x0,0x6d, - 0x76,0x1c,0xf0,0x0,0x0,0x0,0x0,0x6e,0xaf,0xd3,0xe0,0x0,0x0,0x0,0x0,0x6f, - 0x55,0xfe,0xf0,0x0,0x0,0x0,0x0,0x70,0x8f,0xb5,0xe0,0x0,0x0,0x0,0x0,0x71, - 0x35,0xe0,0xf0,0x0,0x0,0x0,0x0,0x72,0x6f,0x97,0xe0,0x0,0x0,0x0,0x0,0x73, - 0x15,0xc2,0xf0,0x0,0x0,0x0,0x0,0x74,0x4f,0x79,0xe0,0x0,0x0,0x0,0x0,0x74, - 0xfe,0xdf,0x70,0x0,0x0,0x0,0x0,0x76,0x38,0x96,0x60,0x0,0x0,0x0,0x0,0x76, - 0xde,0xc1,0x70,0x0,0x0,0x0,0x0,0x78,0x18,0x78,0x60,0x0,0x0,0x0,0x0,0x78, - 0xbe,0xa3,0x70,0x0,0x0,0x0,0x0,0x79,0xf8,0x5a,0x60,0x0,0x0,0x0,0x0,0x7a, - 0x9e,0x85,0x70,0x0,0x0,0x0,0x0,0x7b,0xd8,0x3c,0x60,0x0,0x0,0x0,0x0,0x7c, - 0x7e,0x67,0x70,0x0,0x0,0x0,0x0,0x7d,0xb8,0x1e,0x60,0x0,0x0,0x0,0x0,0x7e, - 0x5e,0x49,0x70,0x0,0x0,0x0,0x0,0x7f,0x98,0x0,0x60,0x0,0x1,0x2,0x3,0x4, - 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, - 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, - 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, - 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, - 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, - 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, - 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, - 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, - 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0xff,0xff,0xb2,0x25,0x0,0x0,0xff,0xff,0xab, - 0xa0,0x0,0x4,0xff,0xff,0xb9,0xb0,0x0,0x8,0xff,0xff,0xc7,0xc0,0x1,0xc,0xff, - 0xff,0xc7,0xc0,0x1,0x10,0xff,0xff,0xc7,0xc0,0x1,0x14,0x4c,0x4d,0x54,0x0,0x43, - 0x53,0x54,0x0,0x45,0x53,0x54,0x0,0x45,0x57,0x54,0x0,0x45,0x50,0x54,0x0,0x45, - 0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa, - 0x45,0x53,0x54,0x35,0x45,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30,0x2c,0x4d, - 0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/US/Alaska - 0x0,0x0,0x9,0x50, + 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x8f,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xa,0x80,0x0,0x0,0x0,0x9c, + 0x4e,0xad,0xa4,0x9c,0xbc,0x27,0xf8,0xcb,0x54,0xba,0x8,0xcb,0xc7,0x5e,0x78,0xcc, + 0xb7,0x5d,0x88,0xcd,0xa7,0x40,0x78,0xce,0xa0,0x7a,0x8,0xcf,0x87,0x22,0x78,0x3, + 0x70,0x40,0x88,0x4,0xd,0x23,0x8,0x5,0x50,0x22,0x88,0x5,0xf6,0x3f,0x88,0x7, + 0x30,0x4,0x88,0x7,0xd6,0x21,0x88,0x9,0xf,0xe6,0x88,0x9,0xb6,0x3,0x88,0xa, + 0xef,0xc8,0x88,0xb,0x9f,0x20,0x8,0xc,0xd8,0xe5,0x8,0xd,0x7f,0x2,0x8,0xe, + 0xb8,0xc7,0x8,0xf,0x5e,0xe4,0x8,0x10,0x98,0xa9,0x8,0x11,0x3e,0xc6,0x8,0x12, + 0x78,0x8b,0x8,0x13,0x1e,0xa8,0x8,0x14,0x58,0x6d,0x8,0x14,0xfe,0x8a,0x8,0x16, + 0x38,0x4f,0x8,0x17,0xc,0x90,0x88,0x18,0x21,0x6b,0x88,0x18,0xc7,0x88,0x88,0x1a, + 0x1,0x4d,0x88,0x1a,0xa7,0x6a,0x88,0x1b,0xe1,0x2f,0x88,0x1c,0x87,0x4c,0x88,0x1d, + 0xc1,0x11,0x88,0x1e,0x79,0xa3,0x88,0x1f,0x97,0xb9,0x8,0x20,0x59,0x85,0x88,0x21, + 0x80,0xd5,0x88,0x22,0x42,0xa2,0x8,0x23,0x69,0xf2,0x8,0x24,0x22,0x84,0x8,0x25, + 0x49,0xd4,0x8,0x25,0xef,0xf1,0x8,0x27,0x29,0xb6,0x8,0x27,0xcf,0xd3,0x8,0x29, + 0x9,0x98,0x8,0x29,0xaf,0xb5,0x8,0x2a,0xe9,0x7a,0x8,0x2b,0x98,0xd1,0x88,0x2c, + 0xd2,0x96,0x88,0x2d,0x78,0xb3,0x88,0x2e,0xb2,0x78,0x88,0x2f,0x58,0x95,0x88,0x30, + 0x92,0x5a,0x88,0x31,0x5d,0x61,0x88,0x32,0x72,0x3c,0x88,0x33,0x3d,0x43,0x88,0x34, + 0x52,0x1e,0x88,0x35,0x1d,0x25,0x88,0x36,0x32,0x0,0x88,0x36,0xfd,0x7,0x88,0x38, + 0x1b,0x1d,0x8,0x38,0x6c,0xaf,0xd8,0x38,0xdc,0xe9,0x88,0x39,0xfa,0xff,0x8,0x3a, + 0xbc,0xcb,0x88,0x3b,0xda,0xe1,0x8,0x3c,0xa5,0xe8,0x8,0x3d,0xba,0xc3,0x8,0x3e, + 0x85,0xca,0x8,0x3f,0x9a,0xa5,0x8,0x40,0x65,0xac,0x8,0x41,0x83,0xc1,0x88,0x42, + 0x45,0x8e,0x8,0x43,0x63,0xa3,0x88,0x44,0x2e,0xaa,0x88,0x45,0x43,0x85,0x88,0x46, + 0x5,0x52,0x8,0x47,0x23,0x67,0x88,0x47,0xf7,0xa9,0x8,0x48,0xe7,0x9a,0x8,0x49, + 0xd7,0x8b,0x8,0x4a,0xc7,0x7c,0x8,0x4b,0xb7,0x6d,0x8,0x4c,0xa7,0x5e,0x8,0x4d, + 0x97,0x4f,0x8,0x4e,0x87,0x40,0x8,0x4f,0x77,0x31,0x8,0x50,0x70,0x5c,0x88,0x51, + 0x60,0x4d,0x88,0x52,0x50,0x3e,0x88,0x53,0x40,0x2f,0x88,0x54,0x30,0x20,0x88,0x55, + 0x20,0x11,0x88,0x56,0x10,0x2,0x88,0x56,0xff,0xf3,0x88,0x57,0xef,0xe4,0x88,0x58, + 0xdf,0xd5,0x88,0x59,0xcf,0xc6,0x88,0x5a,0xbf,0xb7,0x88,0x5b,0xb8,0xe3,0x8,0x5c, + 0xa8,0xd4,0x8,0x5d,0x98,0xc5,0x8,0x5e,0x88,0xb6,0x8,0x5f,0x78,0xa7,0x8,0x60, + 0x68,0x98,0x8,0x61,0x58,0x89,0x8,0x62,0x48,0x7a,0x8,0x63,0x38,0x6b,0x8,0x64, + 0x28,0x5c,0x8,0x65,0x18,0x4d,0x8,0x66,0x11,0x78,0x88,0x67,0x1,0x69,0x88,0x67, + 0xf1,0x5a,0x88,0x68,0xe1,0x4b,0x88,0x69,0xd1,0x3c,0x88,0x6a,0xc1,0x2d,0x88,0x6b, + 0xb1,0x1e,0x88,0x6c,0xa1,0xf,0x88,0x6d,0x91,0x0,0x88,0x6e,0x80,0xf1,0x88,0x6f, + 0x70,0xe2,0x88,0x70,0x6a,0xe,0x8,0x71,0x59,0xff,0x8,0x72,0x49,0xf0,0x8,0x73, + 0x39,0xe1,0x8,0x74,0x29,0xd2,0x8,0x75,0x19,0xc3,0x8,0x76,0x9,0xb4,0x8,0x76, + 0xf9,0xa5,0x8,0x77,0xe9,0x96,0x8,0x78,0xd9,0x87,0x8,0x79,0xc9,0x78,0x8,0x7a, + 0xb9,0x69,0x8,0x7b,0xb2,0x94,0x88,0x7c,0xa2,0x85,0x88,0x7d,0x92,0x76,0x88,0x7e, + 0x82,0x67,0x88,0x7f,0x72,0x58,0x88,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x1,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x0,0x0,0x7e,0x90,0x0,0x0,0x0,0x0,0x93,0xa8, + 0x1,0x5,0x0,0x0,0x85,0x98,0x0,0x0,0x0,0x0,0x93,0xa8,0x1,0x5,0x0,0x0, + 0x85,0x98,0x0,0x0,0x41,0x43,0x53,0x54,0x0,0x41,0x43,0x44,0x54,0x0,0x0,0x0, + 0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7, + 0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0x0,0x0,0x0,0x7, + 0x0,0x0,0x0,0x13,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0x73,0x16,0x88,0x64,0xff,0xff,0xff,0xff,0x76,0x4,0xa5,0xe0,0xff,0xff,0xff,0xff, + 0x7b,0x12,0x3,0x70,0xff,0xff,0xff,0xff,0x9c,0x4e,0xad,0xa4,0xff,0xff,0xff,0xff, + 0x9c,0xbc,0x27,0xf8,0xff,0xff,0xff,0xff,0xcb,0x54,0xba,0x8,0xff,0xff,0xff,0xff, + 0xcb,0xc7,0x5e,0x78,0xff,0xff,0xff,0xff,0xcc,0xb7,0x5d,0x88,0xff,0xff,0xff,0xff, + 0xcd,0xa7,0x40,0x78,0xff,0xff,0xff,0xff,0xce,0xa0,0x7a,0x8,0xff,0xff,0xff,0xff, + 0xcf,0x87,0x22,0x78,0x0,0x0,0x0,0x0,0x3,0x70,0x40,0x88,0x0,0x0,0x0,0x0, + 0x4,0xd,0x23,0x8,0x0,0x0,0x0,0x0,0x5,0x50,0x22,0x88,0x0,0x0,0x0,0x0, + 0x5,0xf6,0x3f,0x88,0x0,0x0,0x0,0x0,0x7,0x30,0x4,0x88,0x0,0x0,0x0,0x0, + 0x7,0xd6,0x21,0x88,0x0,0x0,0x0,0x0,0x9,0xf,0xe6,0x88,0x0,0x0,0x0,0x0, + 0x9,0xb6,0x3,0x88,0x0,0x0,0x0,0x0,0xa,0xef,0xc8,0x88,0x0,0x0,0x0,0x0, + 0xb,0x9f,0x20,0x8,0x0,0x0,0x0,0x0,0xc,0xd8,0xe5,0x8,0x0,0x0,0x0,0x0, + 0xd,0x7f,0x2,0x8,0x0,0x0,0x0,0x0,0xe,0xb8,0xc7,0x8,0x0,0x0,0x0,0x0, + 0xf,0x5e,0xe4,0x8,0x0,0x0,0x0,0x0,0x10,0x98,0xa9,0x8,0x0,0x0,0x0,0x0, + 0x11,0x3e,0xc6,0x8,0x0,0x0,0x0,0x0,0x12,0x78,0x8b,0x8,0x0,0x0,0x0,0x0, + 0x13,0x1e,0xa8,0x8,0x0,0x0,0x0,0x0,0x14,0x58,0x6d,0x8,0x0,0x0,0x0,0x0, + 0x14,0xfe,0x8a,0x8,0x0,0x0,0x0,0x0,0x16,0x38,0x4f,0x8,0x0,0x0,0x0,0x0, + 0x17,0xc,0x90,0x88,0x0,0x0,0x0,0x0,0x18,0x21,0x6b,0x88,0x0,0x0,0x0,0x0, + 0x18,0xc7,0x88,0x88,0x0,0x0,0x0,0x0,0x1a,0x1,0x4d,0x88,0x0,0x0,0x0,0x0, + 0x1a,0xa7,0x6a,0x88,0x0,0x0,0x0,0x0,0x1b,0xe1,0x2f,0x88,0x0,0x0,0x0,0x0, + 0x1c,0x87,0x4c,0x88,0x0,0x0,0x0,0x0,0x1d,0xc1,0x11,0x88,0x0,0x0,0x0,0x0, + 0x1e,0x79,0xa3,0x88,0x0,0x0,0x0,0x0,0x1f,0x97,0xb9,0x8,0x0,0x0,0x0,0x0, + 0x20,0x59,0x85,0x88,0x0,0x0,0x0,0x0,0x21,0x80,0xd5,0x88,0x0,0x0,0x0,0x0, + 0x22,0x42,0xa2,0x8,0x0,0x0,0x0,0x0,0x23,0x69,0xf2,0x8,0x0,0x0,0x0,0x0, + 0x24,0x22,0x84,0x8,0x0,0x0,0x0,0x0,0x25,0x49,0xd4,0x8,0x0,0x0,0x0,0x0, + 0x25,0xef,0xf1,0x8,0x0,0x0,0x0,0x0,0x27,0x29,0xb6,0x8,0x0,0x0,0x0,0x0, + 0x27,0xcf,0xd3,0x8,0x0,0x0,0x0,0x0,0x29,0x9,0x98,0x8,0x0,0x0,0x0,0x0, + 0x29,0xaf,0xb5,0x8,0x0,0x0,0x0,0x0,0x2a,0xe9,0x7a,0x8,0x0,0x0,0x0,0x0, + 0x2b,0x98,0xd1,0x88,0x0,0x0,0x0,0x0,0x2c,0xd2,0x96,0x88,0x0,0x0,0x0,0x0, + 0x2d,0x78,0xb3,0x88,0x0,0x0,0x0,0x0,0x2e,0xb2,0x78,0x88,0x0,0x0,0x0,0x0, + 0x2f,0x58,0x95,0x88,0x0,0x0,0x0,0x0,0x30,0x92,0x5a,0x88,0x0,0x0,0x0,0x0, + 0x31,0x5d,0x61,0x88,0x0,0x0,0x0,0x0,0x32,0x72,0x3c,0x88,0x0,0x0,0x0,0x0, + 0x33,0x3d,0x43,0x88,0x0,0x0,0x0,0x0,0x34,0x52,0x1e,0x88,0x0,0x0,0x0,0x0, + 0x35,0x1d,0x25,0x88,0x0,0x0,0x0,0x0,0x36,0x32,0x0,0x88,0x0,0x0,0x0,0x0, + 0x36,0xfd,0x7,0x88,0x0,0x0,0x0,0x0,0x38,0x1b,0x1d,0x8,0x0,0x0,0x0,0x0, + 0x38,0x6c,0xaf,0xd8,0x0,0x0,0x0,0x0,0x38,0xdc,0xe9,0x88,0x0,0x0,0x0,0x0, + 0x39,0xfa,0xff,0x8,0x0,0x0,0x0,0x0,0x3a,0xbc,0xcb,0x88,0x0,0x0,0x0,0x0, + 0x3b,0xda,0xe1,0x8,0x0,0x0,0x0,0x0,0x3c,0xa5,0xe8,0x8,0x0,0x0,0x0,0x0, + 0x3d,0xba,0xc3,0x8,0x0,0x0,0x0,0x0,0x3e,0x85,0xca,0x8,0x0,0x0,0x0,0x0, + 0x3f,0x9a,0xa5,0x8,0x0,0x0,0x0,0x0,0x40,0x65,0xac,0x8,0x0,0x0,0x0,0x0, + 0x41,0x83,0xc1,0x88,0x0,0x0,0x0,0x0,0x42,0x45,0x8e,0x8,0x0,0x0,0x0,0x0, + 0x43,0x63,0xa3,0x88,0x0,0x0,0x0,0x0,0x44,0x2e,0xaa,0x88,0x0,0x0,0x0,0x0, + 0x45,0x43,0x85,0x88,0x0,0x0,0x0,0x0,0x46,0x5,0x52,0x8,0x0,0x0,0x0,0x0, + 0x47,0x23,0x67,0x88,0x0,0x0,0x0,0x0,0x47,0xf7,0xa9,0x8,0x0,0x0,0x0,0x0, + 0x48,0xe7,0x9a,0x8,0x0,0x0,0x0,0x0,0x49,0xd7,0x8b,0x8,0x0,0x0,0x0,0x0, + 0x4a,0xc7,0x7c,0x8,0x0,0x0,0x0,0x0,0x4b,0xb7,0x6d,0x8,0x0,0x0,0x0,0x0, + 0x4c,0xa7,0x5e,0x8,0x0,0x0,0x0,0x0,0x4d,0x97,0x4f,0x8,0x0,0x0,0x0,0x0, + 0x4e,0x87,0x40,0x8,0x0,0x0,0x0,0x0,0x4f,0x77,0x31,0x8,0x0,0x0,0x0,0x0, + 0x50,0x70,0x5c,0x88,0x0,0x0,0x0,0x0,0x51,0x60,0x4d,0x88,0x0,0x0,0x0,0x0, + 0x52,0x50,0x3e,0x88,0x0,0x0,0x0,0x0,0x53,0x40,0x2f,0x88,0x0,0x0,0x0,0x0, + 0x54,0x30,0x20,0x88,0x0,0x0,0x0,0x0,0x55,0x20,0x11,0x88,0x0,0x0,0x0,0x0, + 0x56,0x10,0x2,0x88,0x0,0x0,0x0,0x0,0x56,0xff,0xf3,0x88,0x0,0x0,0x0,0x0, + 0x57,0xef,0xe4,0x88,0x0,0x0,0x0,0x0,0x58,0xdf,0xd5,0x88,0x0,0x0,0x0,0x0, + 0x59,0xcf,0xc6,0x88,0x0,0x0,0x0,0x0,0x5a,0xbf,0xb7,0x88,0x0,0x0,0x0,0x0, + 0x5b,0xb8,0xe3,0x8,0x0,0x0,0x0,0x0,0x5c,0xa8,0xd4,0x8,0x0,0x0,0x0,0x0, + 0x5d,0x98,0xc5,0x8,0x0,0x0,0x0,0x0,0x5e,0x88,0xb6,0x8,0x0,0x0,0x0,0x0, + 0x5f,0x78,0xa7,0x8,0x0,0x0,0x0,0x0,0x60,0x68,0x98,0x8,0x0,0x0,0x0,0x0, + 0x61,0x58,0x89,0x8,0x0,0x0,0x0,0x0,0x62,0x48,0x7a,0x8,0x0,0x0,0x0,0x0, + 0x63,0x38,0x6b,0x8,0x0,0x0,0x0,0x0,0x64,0x28,0x5c,0x8,0x0,0x0,0x0,0x0, + 0x65,0x18,0x4d,0x8,0x0,0x0,0x0,0x0,0x66,0x11,0x78,0x88,0x0,0x0,0x0,0x0, + 0x67,0x1,0x69,0x88,0x0,0x0,0x0,0x0,0x67,0xf1,0x5a,0x88,0x0,0x0,0x0,0x0, + 0x68,0xe1,0x4b,0x88,0x0,0x0,0x0,0x0,0x69,0xd1,0x3c,0x88,0x0,0x0,0x0,0x0, + 0x6a,0xc1,0x2d,0x88,0x0,0x0,0x0,0x0,0x6b,0xb1,0x1e,0x88,0x0,0x0,0x0,0x0, + 0x6c,0xa1,0xf,0x88,0x0,0x0,0x0,0x0,0x6d,0x91,0x0,0x88,0x0,0x0,0x0,0x0, + 0x6e,0x80,0xf1,0x88,0x0,0x0,0x0,0x0,0x6f,0x70,0xe2,0x88,0x0,0x0,0x0,0x0, + 0x70,0x6a,0xe,0x8,0x0,0x0,0x0,0x0,0x71,0x59,0xff,0x8,0x0,0x0,0x0,0x0, + 0x72,0x49,0xf0,0x8,0x0,0x0,0x0,0x0,0x73,0x39,0xe1,0x8,0x0,0x0,0x0,0x0, + 0x74,0x29,0xd2,0x8,0x0,0x0,0x0,0x0,0x75,0x19,0xc3,0x8,0x0,0x0,0x0,0x0, + 0x76,0x9,0xb4,0x8,0x0,0x0,0x0,0x0,0x76,0xf9,0xa5,0x8,0x0,0x0,0x0,0x0, + 0x77,0xe9,0x96,0x8,0x0,0x0,0x0,0x0,0x78,0xd9,0x87,0x8,0x0,0x0,0x0,0x0, + 0x79,0xc9,0x78,0x8,0x0,0x0,0x0,0x0,0x7a,0xb9,0x69,0x8,0x0,0x0,0x0,0x0, + 0x7b,0xb2,0x94,0x88,0x0,0x0,0x0,0x0,0x7c,0xa2,0x85,0x88,0x0,0x0,0x0,0x0, + 0x7d,0x92,0x76,0x88,0x0,0x0,0x0,0x0,0x7e,0x82,0x67,0x88,0x0,0x0,0x0,0x0, + 0x7f,0x72,0x58,0x88,0x0,0x1,0x2,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x3,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x0,0x0,0x84,0x9c,0x0,0x0,0x0,0x0,0x8c,0xa0, + 0x0,0x4,0x0,0x0,0x7e,0x90,0x0,0x9,0x0,0x0,0x93,0xa8,0x1,0xe,0x0,0x0, + 0x85,0x98,0x0,0x9,0x0,0x0,0x93,0xa8,0x1,0xe,0x0,0x0,0x85,0x98,0x0,0x9, + 0x4c,0x4d,0x54,0x0,0x41,0x45,0x53,0x54,0x0,0x41,0x43,0x53,0x54,0x0,0x41,0x43, + 0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xa,0x41,0x43,0x53,0x54,0x2d,0x39,0x3a,0x33,0x30,0x41,0x43,0x44,0x54,0x2c, + 0x4d,0x31,0x30,0x2e,0x31,0x2e,0x30,0x2c,0x4d,0x34,0x2e,0x31,0x2e,0x30,0x2f,0x33, + 0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Australia/Lord_Howe + 0x0,0x0,0x7,0x61, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x90,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x2a,0x80,0x0,0x0,0x0,0xcb, - 0x89,0x36,0xc0,0xd2,0x23,0xf4,0x70,0xd2,0x61,0x42,0x30,0xfa,0xd2,0x47,0xa0,0xfe, - 0xb8,0x63,0x40,0xff,0xa8,0x46,0x30,0x0,0x98,0x45,0x40,0x1,0x88,0x28,0x30,0x2, - 0x78,0x27,0x40,0x3,0x71,0x44,0xb0,0x4,0x61,0x43,0xc0,0x5,0x51,0x26,0xb0,0x6, - 0x41,0x25,0xc0,0x7,0x31,0x8,0xb0,0x7,0x8d,0x5f,0xc0,0x9,0x10,0xea,0xb0,0x9, - 0xad,0xdb,0x40,0xa,0xf0,0xcc,0xb0,0xb,0xe0,0xcb,0xc0,0xc,0xd9,0xe9,0x30,0xd, - 0xc0,0xad,0xc0,0xe,0xb9,0xcb,0x30,0xf,0xa9,0xca,0x40,0x10,0x99,0xad,0x30,0x11, - 0x89,0xac,0x40,0x12,0x79,0x8f,0x30,0x13,0x69,0x8e,0x40,0x14,0x59,0x71,0x30,0x15, - 0x49,0x70,0x40,0x16,0x39,0x53,0x30,0x17,0x29,0x52,0x40,0x18,0x22,0x6f,0xb0,0x19, - 0x9,0x34,0x40,0x1a,0x2,0x51,0xb0,0x1a,0x2b,0x14,0x10,0x1a,0xf2,0x42,0xb0,0x1b, - 0xe2,0x25,0xa0,0x1c,0xd2,0x24,0xb0,0x1d,0xc2,0x7,0xa0,0x1e,0xb2,0x6,0xb0,0x1f, - 0xa1,0xe9,0xa0,0x20,0x76,0x39,0x30,0x21,0x81,0xcb,0xa0,0x22,0x56,0x1b,0x30,0x23, - 0x6a,0xe8,0x20,0x24,0x35,0xfd,0x30,0x25,0x4a,0xca,0x20,0x26,0x15,0xdf,0x30,0x27, - 0x2a,0xac,0x20,0x27,0xfe,0xfb,0xb0,0x29,0xa,0x8e,0x20,0x29,0xde,0xdd,0xb0,0x2a, - 0xea,0x70,0x20,0x2b,0xbe,0xbf,0xb0,0x2c,0xd3,0x8c,0xa0,0x2d,0x9e,0xa1,0xb0,0x2e, - 0xb3,0x6e,0xa0,0x2f,0x7e,0x83,0xb0,0x30,0x93,0x50,0xa0,0x31,0x67,0xa0,0x30,0x32, - 0x73,0x32,0xa0,0x33,0x47,0x82,0x30,0x34,0x53,0x14,0xa0,0x35,0x27,0x64,0x30,0x36, - 0x32,0xf6,0xa0,0x37,0x7,0x46,0x30,0x38,0x1c,0x13,0x20,0x38,0xe7,0x28,0x30,0x39, - 0xfb,0xf5,0x20,0x3a,0xc7,0xa,0x30,0x3b,0xdb,0xd7,0x20,0x3c,0xb0,0x26,0xb0,0x3d, - 0xbb,0xb9,0x20,0x3e,0x90,0x8,0xb0,0x3f,0x9b,0x9b,0x20,0x40,0x6f,0xea,0xb0,0x41, - 0x84,0xb7,0xa0,0x42,0x4f,0xcc,0xb0,0x43,0x64,0x99,0xa0,0x44,0x2f,0xae,0xb0,0x45, - 0x44,0x7b,0xa0,0x45,0xf3,0xe1,0x30,0x47,0x2d,0x98,0x20,0x47,0xd3,0xc3,0x30,0x49, - 0xd,0x7a,0x20,0x49,0xb3,0xa5,0x30,0x4a,0xed,0x5c,0x20,0x4b,0x9c,0xc1,0xb0,0x4c, - 0xd6,0x78,0xa0,0x4d,0x7c,0xa3,0xb0,0x4e,0xb6,0x5a,0xa0,0x4f,0x5c,0x85,0xb0,0x50, - 0x96,0x3c,0xa0,0x51,0x3c,0x67,0xb0,0x52,0x76,0x1e,0xa0,0x53,0x1c,0x49,0xb0,0x54, - 0x56,0x0,0xa0,0x54,0xfc,0x2b,0xb0,0x56,0x35,0xe2,0xa0,0x56,0xe5,0x48,0x30,0x58, - 0x1e,0xff,0x20,0x58,0xc5,0x2a,0x30,0x59,0xfe,0xe1,0x20,0x5a,0xa5,0xc,0x30,0x5b, - 0xde,0xc3,0x20,0x5c,0x84,0xee,0x30,0x5d,0xbe,0xa5,0x20,0x5e,0x64,0xd0,0x30,0x5f, - 0x9e,0x87,0x20,0x60,0x4d,0xec,0xb0,0x61,0x87,0xa3,0xa0,0x62,0x2d,0xce,0xb0,0x63, - 0x67,0x85,0xa0,0x64,0xd,0xb0,0xb0,0x65,0x47,0x67,0xa0,0x65,0xed,0x92,0xb0,0x67, - 0x27,0x49,0xa0,0x67,0xcd,0x74,0xb0,0x69,0x7,0x2b,0xa0,0x69,0xad,0x56,0xb0,0x6a, - 0xe7,0xd,0xa0,0x6b,0x96,0x73,0x30,0x6c,0xd0,0x2a,0x20,0x6d,0x76,0x55,0x30,0x6e, - 0xb0,0xc,0x20,0x6f,0x56,0x37,0x30,0x70,0x8f,0xee,0x20,0x71,0x36,0x19,0x30,0x72, - 0x6f,0xd0,0x20,0x73,0x15,0xfb,0x30,0x74,0x4f,0xb2,0x20,0x74,0xff,0x17,0xb0,0x76, - 0x38,0xce,0xa0,0x76,0xde,0xf9,0xb0,0x78,0x18,0xb0,0xa0,0x78,0xbe,0xdb,0xb0,0x79, - 0xf8,0x92,0xa0,0x7a,0x9e,0xbd,0xb0,0x7b,0xd8,0x74,0xa0,0x7c,0x7e,0x9f,0xb0,0x7d, - 0xb8,0x56,0xa0,0x7e,0x5e,0x81,0xb0,0x7f,0x98,0x38,0xa0,0x1,0x2,0x3,0x1,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x6,0x8,0x7, - 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, - 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, - 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, - 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, - 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, - 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, - 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0xff,0xff,0x73,0x78,0x0, - 0x0,0xff,0xff,0x73,0x60,0x0,0x4,0xff,0xff,0x81,0x70,0x1,0x8,0xff,0xff,0x81, - 0x70,0x1,0xd,0xff,0xff,0x73,0x60,0x0,0x12,0xff,0xff,0x81,0x70,0x1,0x17,0xff, - 0xff,0x81,0x70,0x0,0x1c,0xff,0xff,0x8f,0x80,0x1,0x20,0xff,0xff,0x81,0x70,0x0, - 0x25,0x4c,0x4d,0x54,0x0,0x43,0x41,0x54,0x0,0x43,0x41,0x57,0x54,0x0,0x43,0x41, - 0x50,0x54,0x0,0x41,0x48,0x53,0x54,0x0,0x41,0x48,0x44,0x54,0x0,0x59,0x53,0x54, - 0x0,0x41,0x4b,0x44,0x54,0x0,0x41,0x4b,0x53,0x54,0x0,0x0,0x0,0x0,0x1,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, - 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x92,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x2a,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0x3f,0xc0,0xe0,0x8,0xff,0xff,0xff,0xff,0x7d,0x87,0x41, - 0x48,0xff,0xff,0xff,0xff,0xcb,0x89,0x36,0xc0,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4, - 0x70,0xff,0xff,0xff,0xff,0xd2,0x61,0x42,0x30,0xff,0xff,0xff,0xff,0xfa,0xd2,0x47, - 0xa0,0xff,0xff,0xff,0xff,0xfe,0xb8,0x63,0x40,0xff,0xff,0xff,0xff,0xff,0xa8,0x46, - 0x30,0x0,0x0,0x0,0x0,0x0,0x98,0x45,0x40,0x0,0x0,0x0,0x0,0x1,0x88,0x28, - 0x30,0x0,0x0,0x0,0x0,0x2,0x78,0x27,0x40,0x0,0x0,0x0,0x0,0x3,0x71,0x44, - 0xb0,0x0,0x0,0x0,0x0,0x4,0x61,0x43,0xc0,0x0,0x0,0x0,0x0,0x5,0x51,0x26, - 0xb0,0x0,0x0,0x0,0x0,0x6,0x41,0x25,0xc0,0x0,0x0,0x0,0x0,0x7,0x31,0x8, - 0xb0,0x0,0x0,0x0,0x0,0x7,0x8d,0x5f,0xc0,0x0,0x0,0x0,0x0,0x9,0x10,0xea, - 0xb0,0x0,0x0,0x0,0x0,0x9,0xad,0xdb,0x40,0x0,0x0,0x0,0x0,0xa,0xf0,0xcc, - 0xb0,0x0,0x0,0x0,0x0,0xb,0xe0,0xcb,0xc0,0x0,0x0,0x0,0x0,0xc,0xd9,0xe9, - 0x30,0x0,0x0,0x0,0x0,0xd,0xc0,0xad,0xc0,0x0,0x0,0x0,0x0,0xe,0xb9,0xcb, - 0x30,0x0,0x0,0x0,0x0,0xf,0xa9,0xca,0x40,0x0,0x0,0x0,0x0,0x10,0x99,0xad, - 0x30,0x0,0x0,0x0,0x0,0x11,0x89,0xac,0x40,0x0,0x0,0x0,0x0,0x12,0x79,0x8f, - 0x30,0x0,0x0,0x0,0x0,0x13,0x69,0x8e,0x40,0x0,0x0,0x0,0x0,0x14,0x59,0x71, - 0x30,0x0,0x0,0x0,0x0,0x15,0x49,0x70,0x40,0x0,0x0,0x0,0x0,0x16,0x39,0x53, - 0x30,0x0,0x0,0x0,0x0,0x17,0x29,0x52,0x40,0x0,0x0,0x0,0x0,0x18,0x22,0x6f, - 0xb0,0x0,0x0,0x0,0x0,0x19,0x9,0x34,0x40,0x0,0x0,0x0,0x0,0x1a,0x2,0x51, - 0xb0,0x0,0x0,0x0,0x0,0x1a,0x2b,0x14,0x10,0x0,0x0,0x0,0x0,0x1a,0xf2,0x42, - 0xb0,0x0,0x0,0x0,0x0,0x1b,0xe2,0x25,0xa0,0x0,0x0,0x0,0x0,0x1c,0xd2,0x24, - 0xb0,0x0,0x0,0x0,0x0,0x1d,0xc2,0x7,0xa0,0x0,0x0,0x0,0x0,0x1e,0xb2,0x6, - 0xb0,0x0,0x0,0x0,0x0,0x1f,0xa1,0xe9,0xa0,0x0,0x0,0x0,0x0,0x20,0x76,0x39, - 0x30,0x0,0x0,0x0,0x0,0x21,0x81,0xcb,0xa0,0x0,0x0,0x0,0x0,0x22,0x56,0x1b, - 0x30,0x0,0x0,0x0,0x0,0x23,0x6a,0xe8,0x20,0x0,0x0,0x0,0x0,0x24,0x35,0xfd, - 0x30,0x0,0x0,0x0,0x0,0x25,0x4a,0xca,0x20,0x0,0x0,0x0,0x0,0x26,0x15,0xdf, - 0x30,0x0,0x0,0x0,0x0,0x27,0x2a,0xac,0x20,0x0,0x0,0x0,0x0,0x27,0xfe,0xfb, - 0xb0,0x0,0x0,0x0,0x0,0x29,0xa,0x8e,0x20,0x0,0x0,0x0,0x0,0x29,0xde,0xdd, - 0xb0,0x0,0x0,0x0,0x0,0x2a,0xea,0x70,0x20,0x0,0x0,0x0,0x0,0x2b,0xbe,0xbf, - 0xb0,0x0,0x0,0x0,0x0,0x2c,0xd3,0x8c,0xa0,0x0,0x0,0x0,0x0,0x2d,0x9e,0xa1, - 0xb0,0x0,0x0,0x0,0x0,0x2e,0xb3,0x6e,0xa0,0x0,0x0,0x0,0x0,0x2f,0x7e,0x83, - 0xb0,0x0,0x0,0x0,0x0,0x30,0x93,0x50,0xa0,0x0,0x0,0x0,0x0,0x31,0x67,0xa0, - 0x30,0x0,0x0,0x0,0x0,0x32,0x73,0x32,0xa0,0x0,0x0,0x0,0x0,0x33,0x47,0x82, - 0x30,0x0,0x0,0x0,0x0,0x34,0x53,0x14,0xa0,0x0,0x0,0x0,0x0,0x35,0x27,0x64, - 0x30,0x0,0x0,0x0,0x0,0x36,0x32,0xf6,0xa0,0x0,0x0,0x0,0x0,0x37,0x7,0x46, - 0x30,0x0,0x0,0x0,0x0,0x38,0x1c,0x13,0x20,0x0,0x0,0x0,0x0,0x38,0xe7,0x28, - 0x30,0x0,0x0,0x0,0x0,0x39,0xfb,0xf5,0x20,0x0,0x0,0x0,0x0,0x3a,0xc7,0xa, - 0x30,0x0,0x0,0x0,0x0,0x3b,0xdb,0xd7,0x20,0x0,0x0,0x0,0x0,0x3c,0xb0,0x26, - 0xb0,0x0,0x0,0x0,0x0,0x3d,0xbb,0xb9,0x20,0x0,0x0,0x0,0x0,0x3e,0x90,0x8, - 0xb0,0x0,0x0,0x0,0x0,0x3f,0x9b,0x9b,0x20,0x0,0x0,0x0,0x0,0x40,0x6f,0xea, - 0xb0,0x0,0x0,0x0,0x0,0x41,0x84,0xb7,0xa0,0x0,0x0,0x0,0x0,0x42,0x4f,0xcc, - 0xb0,0x0,0x0,0x0,0x0,0x43,0x64,0x99,0xa0,0x0,0x0,0x0,0x0,0x44,0x2f,0xae, - 0xb0,0x0,0x0,0x0,0x0,0x45,0x44,0x7b,0xa0,0x0,0x0,0x0,0x0,0x45,0xf3,0xe1, - 0x30,0x0,0x0,0x0,0x0,0x47,0x2d,0x98,0x20,0x0,0x0,0x0,0x0,0x47,0xd3,0xc3, - 0x30,0x0,0x0,0x0,0x0,0x49,0xd,0x7a,0x20,0x0,0x0,0x0,0x0,0x49,0xb3,0xa5, - 0x30,0x0,0x0,0x0,0x0,0x4a,0xed,0x5c,0x20,0x0,0x0,0x0,0x0,0x4b,0x9c,0xc1, - 0xb0,0x0,0x0,0x0,0x0,0x4c,0xd6,0x78,0xa0,0x0,0x0,0x0,0x0,0x4d,0x7c,0xa3, - 0xb0,0x0,0x0,0x0,0x0,0x4e,0xb6,0x5a,0xa0,0x0,0x0,0x0,0x0,0x4f,0x5c,0x85, - 0xb0,0x0,0x0,0x0,0x0,0x50,0x96,0x3c,0xa0,0x0,0x0,0x0,0x0,0x51,0x3c,0x67, - 0xb0,0x0,0x0,0x0,0x0,0x52,0x76,0x1e,0xa0,0x0,0x0,0x0,0x0,0x53,0x1c,0x49, - 0xb0,0x0,0x0,0x0,0x0,0x54,0x56,0x0,0xa0,0x0,0x0,0x0,0x0,0x54,0xfc,0x2b, - 0xb0,0x0,0x0,0x0,0x0,0x56,0x35,0xe2,0xa0,0x0,0x0,0x0,0x0,0x56,0xe5,0x48, - 0x30,0x0,0x0,0x0,0x0,0x58,0x1e,0xff,0x20,0x0,0x0,0x0,0x0,0x58,0xc5,0x2a, - 0x30,0x0,0x0,0x0,0x0,0x59,0xfe,0xe1,0x20,0x0,0x0,0x0,0x0,0x5a,0xa5,0xc, - 0x30,0x0,0x0,0x0,0x0,0x5b,0xde,0xc3,0x20,0x0,0x0,0x0,0x0,0x5c,0x84,0xee, - 0x30,0x0,0x0,0x0,0x0,0x5d,0xbe,0xa5,0x20,0x0,0x0,0x0,0x0,0x5e,0x64,0xd0, - 0x30,0x0,0x0,0x0,0x0,0x5f,0x9e,0x87,0x20,0x0,0x0,0x0,0x0,0x60,0x4d,0xec, - 0xb0,0x0,0x0,0x0,0x0,0x61,0x87,0xa3,0xa0,0x0,0x0,0x0,0x0,0x62,0x2d,0xce, - 0xb0,0x0,0x0,0x0,0x0,0x63,0x67,0x85,0xa0,0x0,0x0,0x0,0x0,0x64,0xd,0xb0, - 0xb0,0x0,0x0,0x0,0x0,0x65,0x47,0x67,0xa0,0x0,0x0,0x0,0x0,0x65,0xed,0x92, - 0xb0,0x0,0x0,0x0,0x0,0x67,0x27,0x49,0xa0,0x0,0x0,0x0,0x0,0x67,0xcd,0x74, - 0xb0,0x0,0x0,0x0,0x0,0x69,0x7,0x2b,0xa0,0x0,0x0,0x0,0x0,0x69,0xad,0x56, - 0xb0,0x0,0x0,0x0,0x0,0x6a,0xe7,0xd,0xa0,0x0,0x0,0x0,0x0,0x6b,0x96,0x73, - 0x30,0x0,0x0,0x0,0x0,0x6c,0xd0,0x2a,0x20,0x0,0x0,0x0,0x0,0x6d,0x76,0x55, - 0x30,0x0,0x0,0x0,0x0,0x6e,0xb0,0xc,0x20,0x0,0x0,0x0,0x0,0x6f,0x56,0x37, - 0x30,0x0,0x0,0x0,0x0,0x70,0x8f,0xee,0x20,0x0,0x0,0x0,0x0,0x71,0x36,0x19, - 0x30,0x0,0x0,0x0,0x0,0x72,0x6f,0xd0,0x20,0x0,0x0,0x0,0x0,0x73,0x15,0xfb, - 0x30,0x0,0x0,0x0,0x0,0x74,0x4f,0xb2,0x20,0x0,0x0,0x0,0x0,0x74,0xff,0x17, - 0xb0,0x0,0x0,0x0,0x0,0x76,0x38,0xce,0xa0,0x0,0x0,0x0,0x0,0x76,0xde,0xf9, - 0xb0,0x0,0x0,0x0,0x0,0x78,0x18,0xb0,0xa0,0x0,0x0,0x0,0x0,0x78,0xbe,0xdb, - 0xb0,0x0,0x0,0x0,0x0,0x79,0xf8,0x92,0xa0,0x0,0x0,0x0,0x0,0x7a,0x9e,0xbd, - 0xb0,0x0,0x0,0x0,0x0,0x7b,0xd8,0x74,0xa0,0x0,0x0,0x0,0x0,0x7c,0x7e,0x9f, - 0xb0,0x0,0x0,0x0,0x0,0x7d,0xb8,0x56,0xa0,0x0,0x0,0x0,0x0,0x7e,0x5e,0x81, - 0xb0,0x0,0x0,0x0,0x0,0x7f,0x98,0x38,0xa0,0x0,0x1,0x2,0x3,0x4,0x2,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x7,0x9,0x8, - 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, - 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, - 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, - 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, - 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, - 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, - 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x0,0x0,0xc4,0xf8,0x0, - 0x0,0xff,0xff,0x73,0x78,0x0,0x0,0xff,0xff,0x73,0x60,0x0,0x4,0xff,0xff,0x81, - 0x70,0x1,0x8,0xff,0xff,0x81,0x70,0x1,0xd,0xff,0xff,0x73,0x60,0x0,0x12,0xff, - 0xff,0x81,0x70,0x1,0x17,0xff,0xff,0x81,0x70,0x0,0x1c,0xff,0xff,0x8f,0x80,0x1, - 0x20,0xff,0xff,0x81,0x70,0x0,0x25,0x4c,0x4d,0x54,0x0,0x43,0x41,0x54,0x0,0x43, - 0x41,0x57,0x54,0x0,0x43,0x41,0x50,0x54,0x0,0x41,0x48,0x53,0x54,0x0,0x41,0x48, - 0x44,0x54,0x0,0x59,0x53,0x54,0x0,0x41,0x4b,0x44,0x54,0x0,0x41,0x4b,0x53,0x54, - 0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, - 0x0,0x0,0x0,0x0,0x0,0xa,0x41,0x4b,0x53,0x54,0x39,0x41,0x4b,0x44,0x54,0x2c, - 0x4d,0x33,0x2e,0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/US/Samoa - 0x0,0x0,0x1,0x10, + 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x74,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x19,0x80,0x0,0x0,0x0,0x14, + 0xfe,0x66,0xe0,0x16,0x38,0x40,0xf8,0x16,0xe7,0x8a,0x68,0x18,0x21,0x5d,0x78,0x18, + 0xc7,0x6c,0x68,0x1a,0x1,0x3f,0x78,0x1a,0xa7,0x4e,0x68,0x1b,0xe1,0x21,0x78,0x1c, + 0x87,0x30,0x68,0x1d,0xc1,0x3,0x78,0x1e,0x79,0x8e,0x70,0x1f,0x97,0xaa,0xf8,0x20, + 0x59,0x70,0x70,0x21,0x80,0xc7,0x78,0x22,0x42,0x8c,0xf0,0x23,0x69,0xe3,0xf8,0x24, + 0x22,0x6e,0xf0,0x25,0x49,0xc5,0xf8,0x25,0xef,0xdb,0xf0,0x27,0x29,0xa7,0xf8,0x27, + 0xcf,0xbd,0xf0,0x29,0x9,0x89,0xf8,0x29,0xaf,0x9f,0xf0,0x2a,0xe9,0x6b,0xf8,0x2b, + 0x98,0xbc,0x70,0x2c,0xd2,0x88,0x78,0x2d,0x78,0x9e,0x70,0x2e,0xb2,0x6a,0x78,0x2f, + 0x58,0x80,0x70,0x30,0x92,0x4c,0x78,0x31,0x5d,0x4c,0x70,0x32,0x72,0x2e,0x78,0x33, + 0x3d,0x2e,0x70,0x34,0x52,0x10,0x78,0x35,0x1d,0x10,0x70,0x36,0x31,0xf2,0x78,0x36, + 0xfc,0xf2,0x70,0x38,0x1b,0xe,0xf8,0x38,0xdc,0xd4,0x70,0x39,0xa7,0xe2,0x78,0x3a, + 0xbc,0xb6,0x70,0x3b,0xda,0xd2,0xf8,0x3c,0xa5,0xd2,0xf0,0x3d,0xba,0xb4,0xf8,0x3e, + 0x85,0xb4,0xf0,0x3f,0x9a,0x96,0xf8,0x40,0x65,0x96,0xf0,0x41,0x83,0xb3,0x78,0x42, + 0x45,0x78,0xf0,0x43,0x63,0x95,0x78,0x44,0x2e,0x95,0x70,0x45,0x43,0x77,0x78,0x46, + 0x5,0x3c,0xf0,0x47,0x23,0x59,0x78,0x47,0xf7,0x93,0xf0,0x48,0xe7,0x8b,0xf8,0x49, + 0xd7,0x75,0xf0,0x4a,0xc7,0x6d,0xf8,0x4b,0xb7,0x57,0xf0,0x4c,0xa7,0x4f,0xf8,0x4d, + 0x97,0x39,0xf0,0x4e,0x87,0x31,0xf8,0x4f,0x77,0x1b,0xf0,0x50,0x70,0x4e,0x78,0x51, + 0x60,0x38,0x70,0x52,0x50,0x30,0x78,0x53,0x40,0x1a,0x70,0x54,0x30,0x12,0x78,0x55, + 0x1f,0xfc,0x70,0x56,0xf,0xf4,0x78,0x56,0xff,0xde,0x70,0x57,0xef,0xd6,0x78,0x58, + 0xdf,0xc0,0x70,0x59,0xcf,0xb8,0x78,0x5a,0xbf,0xa2,0x70,0x5b,0xb8,0xd4,0xf8,0x5c, + 0xa8,0xbe,0xf0,0x5d,0x98,0xb6,0xf8,0x5e,0x88,0xa0,0xf0,0x5f,0x78,0x98,0xf8,0x60, + 0x68,0x82,0xf0,0x61,0x58,0x7a,0xf8,0x62,0x48,0x64,0xf0,0x63,0x38,0x5c,0xf8,0x64, + 0x28,0x46,0xf0,0x65,0x18,0x3e,0xf8,0x66,0x11,0x63,0x70,0x67,0x1,0x5b,0x78,0x67, + 0xf1,0x45,0x70,0x68,0xe1,0x3d,0x78,0x69,0xd1,0x27,0x70,0x6a,0xc1,0x1f,0x78,0x6b, + 0xb1,0x9,0x70,0x6c,0xa1,0x1,0x78,0x6d,0x90,0xeb,0x70,0x6e,0x80,0xe3,0x78,0x6f, + 0x70,0xcd,0x70,0x70,0x69,0xff,0xf8,0x71,0x59,0xe9,0xf0,0x72,0x49,0xe1,0xf8,0x73, + 0x39,0xcb,0xf0,0x74,0x29,0xc3,0xf8,0x75,0x19,0xad,0xf0,0x76,0x9,0xa5,0xf8,0x76, + 0xf9,0x8f,0xf0,0x77,0xe9,0x87,0xf8,0x78,0xd9,0x71,0xf0,0x79,0xc9,0x69,0xf8,0x7a, + 0xb9,0x53,0xf0,0x7b,0xb2,0x86,0x78,0x7c,0xa2,0x70,0x70,0x7d,0x92,0x68,0x78,0x7e, + 0x82,0x52,0x70,0x7f,0x72,0x4a,0x78,0x7f,0xff,0xff,0xff,0x1,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x4,0x0, + 0x0,0x95,0x24,0x0,0x0,0x0,0x0,0x8c,0xa0,0x0,0x4,0x0,0x0,0xa1,0xb8,0x1, + 0x9,0x0,0x0,0x93,0xa8,0x0,0xf,0x0,0x0,0x9a,0xb0,0x1,0x15,0x4c,0x4d,0x54, + 0x0,0x41,0x45,0x53,0x54,0x0,0x2b,0x31,0x31,0x33,0x30,0x0,0x2b,0x31,0x30,0x33, + 0x30,0x0,0x2b,0x31,0x31,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x75,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x19,0xf8,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x73,0x16,0x77,0xdc,0x0,0x0,0x0,0x0, + 0x14,0xfe,0x66,0xe0,0x0,0x0,0x0,0x0,0x16,0x38,0x40,0xf8,0x0,0x0,0x0,0x0, + 0x16,0xe7,0x8a,0x68,0x0,0x0,0x0,0x0,0x18,0x21,0x5d,0x78,0x0,0x0,0x0,0x0, + 0x18,0xc7,0x6c,0x68,0x0,0x0,0x0,0x0,0x1a,0x1,0x3f,0x78,0x0,0x0,0x0,0x0, + 0x1a,0xa7,0x4e,0x68,0x0,0x0,0x0,0x0,0x1b,0xe1,0x21,0x78,0x0,0x0,0x0,0x0, + 0x1c,0x87,0x30,0x68,0x0,0x0,0x0,0x0,0x1d,0xc1,0x3,0x78,0x0,0x0,0x0,0x0, + 0x1e,0x79,0x8e,0x70,0x0,0x0,0x0,0x0,0x1f,0x97,0xaa,0xf8,0x0,0x0,0x0,0x0, + 0x20,0x59,0x70,0x70,0x0,0x0,0x0,0x0,0x21,0x80,0xc7,0x78,0x0,0x0,0x0,0x0, + 0x22,0x42,0x8c,0xf0,0x0,0x0,0x0,0x0,0x23,0x69,0xe3,0xf8,0x0,0x0,0x0,0x0, + 0x24,0x22,0x6e,0xf0,0x0,0x0,0x0,0x0,0x25,0x49,0xc5,0xf8,0x0,0x0,0x0,0x0, + 0x25,0xef,0xdb,0xf0,0x0,0x0,0x0,0x0,0x27,0x29,0xa7,0xf8,0x0,0x0,0x0,0x0, + 0x27,0xcf,0xbd,0xf0,0x0,0x0,0x0,0x0,0x29,0x9,0x89,0xf8,0x0,0x0,0x0,0x0, + 0x29,0xaf,0x9f,0xf0,0x0,0x0,0x0,0x0,0x2a,0xe9,0x6b,0xf8,0x0,0x0,0x0,0x0, + 0x2b,0x98,0xbc,0x70,0x0,0x0,0x0,0x0,0x2c,0xd2,0x88,0x78,0x0,0x0,0x0,0x0, + 0x2d,0x78,0x9e,0x70,0x0,0x0,0x0,0x0,0x2e,0xb2,0x6a,0x78,0x0,0x0,0x0,0x0, + 0x2f,0x58,0x80,0x70,0x0,0x0,0x0,0x0,0x30,0x92,0x4c,0x78,0x0,0x0,0x0,0x0, + 0x31,0x5d,0x4c,0x70,0x0,0x0,0x0,0x0,0x32,0x72,0x2e,0x78,0x0,0x0,0x0,0x0, + 0x33,0x3d,0x2e,0x70,0x0,0x0,0x0,0x0,0x34,0x52,0x10,0x78,0x0,0x0,0x0,0x0, + 0x35,0x1d,0x10,0x70,0x0,0x0,0x0,0x0,0x36,0x31,0xf2,0x78,0x0,0x0,0x0,0x0, + 0x36,0xfc,0xf2,0x70,0x0,0x0,0x0,0x0,0x38,0x1b,0xe,0xf8,0x0,0x0,0x0,0x0, + 0x38,0xdc,0xd4,0x70,0x0,0x0,0x0,0x0,0x39,0xa7,0xe2,0x78,0x0,0x0,0x0,0x0, + 0x3a,0xbc,0xb6,0x70,0x0,0x0,0x0,0x0,0x3b,0xda,0xd2,0xf8,0x0,0x0,0x0,0x0, + 0x3c,0xa5,0xd2,0xf0,0x0,0x0,0x0,0x0,0x3d,0xba,0xb4,0xf8,0x0,0x0,0x0,0x0, + 0x3e,0x85,0xb4,0xf0,0x0,0x0,0x0,0x0,0x3f,0x9a,0x96,0xf8,0x0,0x0,0x0,0x0, + 0x40,0x65,0x96,0xf0,0x0,0x0,0x0,0x0,0x41,0x83,0xb3,0x78,0x0,0x0,0x0,0x0, + 0x42,0x45,0x78,0xf0,0x0,0x0,0x0,0x0,0x43,0x63,0x95,0x78,0x0,0x0,0x0,0x0, + 0x44,0x2e,0x95,0x70,0x0,0x0,0x0,0x0,0x45,0x43,0x77,0x78,0x0,0x0,0x0,0x0, + 0x46,0x5,0x3c,0xf0,0x0,0x0,0x0,0x0,0x47,0x23,0x59,0x78,0x0,0x0,0x0,0x0, + 0x47,0xf7,0x93,0xf0,0x0,0x0,0x0,0x0,0x48,0xe7,0x8b,0xf8,0x0,0x0,0x0,0x0, + 0x49,0xd7,0x75,0xf0,0x0,0x0,0x0,0x0,0x4a,0xc7,0x6d,0xf8,0x0,0x0,0x0,0x0, + 0x4b,0xb7,0x57,0xf0,0x0,0x0,0x0,0x0,0x4c,0xa7,0x4f,0xf8,0x0,0x0,0x0,0x0, + 0x4d,0x97,0x39,0xf0,0x0,0x0,0x0,0x0,0x4e,0x87,0x31,0xf8,0x0,0x0,0x0,0x0, + 0x4f,0x77,0x1b,0xf0,0x0,0x0,0x0,0x0,0x50,0x70,0x4e,0x78,0x0,0x0,0x0,0x0, + 0x51,0x60,0x38,0x70,0x0,0x0,0x0,0x0,0x52,0x50,0x30,0x78,0x0,0x0,0x0,0x0, + 0x53,0x40,0x1a,0x70,0x0,0x0,0x0,0x0,0x54,0x30,0x12,0x78,0x0,0x0,0x0,0x0, + 0x55,0x1f,0xfc,0x70,0x0,0x0,0x0,0x0,0x56,0xf,0xf4,0x78,0x0,0x0,0x0,0x0, + 0x56,0xff,0xde,0x70,0x0,0x0,0x0,0x0,0x57,0xef,0xd6,0x78,0x0,0x0,0x0,0x0, + 0x58,0xdf,0xc0,0x70,0x0,0x0,0x0,0x0,0x59,0xcf,0xb8,0x78,0x0,0x0,0x0,0x0, + 0x5a,0xbf,0xa2,0x70,0x0,0x0,0x0,0x0,0x5b,0xb8,0xd4,0xf8,0x0,0x0,0x0,0x0, + 0x5c,0xa8,0xbe,0xf0,0x0,0x0,0x0,0x0,0x5d,0x98,0xb6,0xf8,0x0,0x0,0x0,0x0, + 0x5e,0x88,0xa0,0xf0,0x0,0x0,0x0,0x0,0x5f,0x78,0x98,0xf8,0x0,0x0,0x0,0x0, + 0x60,0x68,0x82,0xf0,0x0,0x0,0x0,0x0,0x61,0x58,0x7a,0xf8,0x0,0x0,0x0,0x0, + 0x62,0x48,0x64,0xf0,0x0,0x0,0x0,0x0,0x63,0x38,0x5c,0xf8,0x0,0x0,0x0,0x0, + 0x64,0x28,0x46,0xf0,0x0,0x0,0x0,0x0,0x65,0x18,0x3e,0xf8,0x0,0x0,0x0,0x0, + 0x66,0x11,0x63,0x70,0x0,0x0,0x0,0x0,0x67,0x1,0x5b,0x78,0x0,0x0,0x0,0x0, + 0x67,0xf1,0x45,0x70,0x0,0x0,0x0,0x0,0x68,0xe1,0x3d,0x78,0x0,0x0,0x0,0x0, + 0x69,0xd1,0x27,0x70,0x0,0x0,0x0,0x0,0x6a,0xc1,0x1f,0x78,0x0,0x0,0x0,0x0, + 0x6b,0xb1,0x9,0x70,0x0,0x0,0x0,0x0,0x6c,0xa1,0x1,0x78,0x0,0x0,0x0,0x0, + 0x6d,0x90,0xeb,0x70,0x0,0x0,0x0,0x0,0x6e,0x80,0xe3,0x78,0x0,0x0,0x0,0x0, + 0x6f,0x70,0xcd,0x70,0x0,0x0,0x0,0x0,0x70,0x69,0xff,0xf8,0x0,0x0,0x0,0x0, + 0x71,0x59,0xe9,0xf0,0x0,0x0,0x0,0x0,0x72,0x49,0xe1,0xf8,0x0,0x0,0x0,0x0, + 0x73,0x39,0xcb,0xf0,0x0,0x0,0x0,0x0,0x74,0x29,0xc3,0xf8,0x0,0x0,0x0,0x0, + 0x75,0x19,0xad,0xf0,0x0,0x0,0x0,0x0,0x76,0x9,0xa5,0xf8,0x0,0x0,0x0,0x0, + 0x76,0xf9,0x8f,0xf0,0x0,0x0,0x0,0x0,0x77,0xe9,0x87,0xf8,0x0,0x0,0x0,0x0, + 0x78,0xd9,0x71,0xf0,0x0,0x0,0x0,0x0,0x79,0xc9,0x69,0xf8,0x0,0x0,0x0,0x0, + 0x7a,0xb9,0x53,0xf0,0x0,0x0,0x0,0x0,0x7b,0xb2,0x86,0x78,0x0,0x0,0x0,0x0, + 0x7c,0xa2,0x70,0x70,0x0,0x0,0x0,0x0,0x7d,0x92,0x68,0x78,0x0,0x0,0x0,0x0, + 0x7e,0x82,0x52,0x70,0x0,0x0,0x0,0x0,0x7f,0x72,0x4a,0x78,0x0,0x0,0x0,0x0, + 0x7f,0xff,0xff,0xff,0x0,0x1,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x4,0x0,0x0,0x95,0x24,0x0,0x0,0x0, + 0x0,0x8c,0xa0,0x0,0x4,0x0,0x0,0xa1,0xb8,0x1,0x9,0x0,0x0,0x93,0xa8,0x0, + 0xf,0x0,0x0,0x9a,0xb0,0x1,0x15,0x4c,0x4d,0x54,0x0,0x41,0x45,0x53,0x54,0x0, + 0x2b,0x31,0x31,0x33,0x30,0x0,0x2b,0x31,0x30,0x33,0x30,0x0,0x2b,0x31,0x31,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2b,0x31,0x30,0x33, + 0x30,0x3e,0x2d,0x31,0x30,0x3a,0x33,0x30,0x3c,0x2b,0x31,0x31,0x3e,0x2d,0x31,0x31, + 0x2c,0x4d,0x31,0x30,0x2e,0x31,0x2e,0x30,0x2c,0x4d,0x34,0x2e,0x31,0x2e,0x30,0xa, + + // /home/konrad/src/smoke/tzone/zoneinfo/Australia/Hobart + 0x0,0x0,0x9,0x1f, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x4,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x10,0x80,0x0,0x0,0x0,0x91, - 0x5,0xfb,0x8,0xfa,0xd2,0x55,0xb0,0x1a,0x2b,0x30,0x30,0x1,0x2,0x3,0x4,0x0, - 0x0,0xb1,0x78,0x0,0x0,0xff,0xff,0x5f,0xf8,0x0,0x0,0xff,0xff,0x65,0x50,0x0, - 0x4,0xff,0xff,0x65,0x50,0x0,0x8,0xff,0xff,0x65,0x50,0x0,0xc,0x4c,0x4d,0x54, - 0x0,0x4e,0x53,0x54,0x0,0x42,0x53,0x54,0x0,0x53,0x53,0x54,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0, - 0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0, - 0x0,0x0,0x10,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x55, - 0xc8,0xe4,0x88,0xff,0xff,0xff,0xff,0x91,0x5,0xfb,0x8,0xff,0xff,0xff,0xff,0xfa, - 0xd2,0x55,0xb0,0x0,0x0,0x0,0x0,0x1a,0x2b,0x30,0x30,0x0,0x1,0x2,0x3,0x4, - 0x0,0x0,0xb1,0x78,0x0,0x0,0xff,0xff,0x5f,0xf8,0x0,0x0,0xff,0xff,0x65,0x50, - 0x0,0x4,0xff,0xff,0x65,0x50,0x0,0x8,0xff,0xff,0x65,0x50,0x0,0xc,0x4c,0x4d, - 0x54,0x0,0x4e,0x53,0x54,0x0,0x42,0x53,0x54,0x0,0x53,0x53,0x54,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x53,0x53,0x54,0x31,0x31,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/US/Indiana-Starke - 0x0,0x0,0x9,0x85, - 0x54, + 0x0,0x0,0x96,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xe,0x80,0x0,0x0,0x0,0x9b, + 0xd5,0x78,0x80,0x9c,0xbc,0x20,0xf0,0xcb,0x54,0xb3,0x0,0xcb,0xc7,0x57,0x70,0xcc, + 0xb7,0x56,0x80,0xcd,0xa7,0x39,0x70,0xce,0xa0,0x73,0x0,0xcf,0x87,0x1b,0x70,0xfb, + 0xc2,0x8d,0x0,0xfc,0xb2,0x7e,0x0,0xfd,0xc7,0x59,0x0,0xfe,0x76,0xb0,0x80,0xff, + 0xa7,0x3b,0x0,0x0,0x56,0x92,0x80,0x1,0x87,0x1d,0x0,0x2,0x3f,0xaf,0x0,0x3, + 0x70,0x39,0x80,0x4,0xd,0x1c,0x0,0x5,0x50,0x1b,0x80,0x5,0xf6,0x38,0x80,0x7, + 0x2f,0xfd,0x80,0x7,0xd6,0x1a,0x80,0x9,0xf,0xdf,0x80,0x9,0xb5,0xfc,0x80,0xa, + 0xef,0xc1,0x80,0xb,0x9f,0x19,0x0,0xc,0xd8,0xde,0x0,0xd,0x7e,0xfb,0x0,0xe, + 0xb8,0xc0,0x0,0xf,0x5e,0xdd,0x0,0x10,0x98,0xa2,0x0,0x11,0x3e,0xbf,0x0,0x12, + 0x78,0x84,0x0,0x13,0x1e,0xa1,0x0,0x14,0x58,0x66,0x0,0x14,0xfe,0x83,0x0,0x16, + 0x38,0x48,0x0,0x17,0x3,0x4f,0x0,0x18,0x21,0x64,0x80,0x18,0xe3,0x31,0x0,0x1a, + 0x1,0x46,0x80,0x1a,0xa7,0x63,0x80,0x1b,0xe1,0x28,0x80,0x1c,0x87,0x45,0x80,0x1d, + 0xc1,0xa,0x80,0x1e,0x67,0x27,0x80,0x1f,0x97,0xb2,0x0,0x20,0x59,0x7e,0x80,0x21, + 0x80,0xce,0x80,0x22,0x42,0x9b,0x0,0x23,0x69,0xeb,0x0,0x24,0x22,0x7d,0x0,0x25, + 0x49,0xcd,0x0,0x26,0x2,0x5f,0x0,0x27,0x29,0xaf,0x0,0x27,0xf4,0xb6,0x0,0x28, + 0xed,0xe1,0x80,0x29,0xd4,0x98,0x0,0x2a,0xcd,0xc3,0x80,0x2b,0xb4,0x7a,0x0,0x2c, + 0xad,0xa5,0x80,0x2d,0x94,0x5c,0x0,0x2e,0x8d,0x87,0x80,0x2f,0x74,0x3e,0x0,0x30, + 0x6d,0x69,0x80,0x31,0x5d,0x5a,0x80,0x32,0x56,0x86,0x0,0x33,0x3d,0x3c,0x80,0x34, + 0x36,0x68,0x0,0x35,0x1d,0x1e,0x80,0x36,0x16,0x4a,0x0,0x36,0xfd,0x0,0x80,0x37, + 0xf6,0x2c,0x0,0x38,0xdc,0xe2,0x80,0x39,0xa7,0xe9,0x80,0x3a,0xbc,0xc4,0x80,0x3b, + 0xbf,0x2a,0x80,0x3c,0xa5,0xe1,0x0,0x3d,0x9f,0xc,0x80,0x3e,0x85,0xc3,0x0,0x3f, + 0x7e,0xee,0x80,0x40,0x65,0xa5,0x0,0x41,0x5e,0xd0,0x80,0x42,0x45,0x87,0x0,0x43, + 0x3e,0xb2,0x80,0x44,0x2e,0xa3,0x80,0x45,0x1e,0x94,0x80,0x46,0x5,0x4b,0x0,0x47, + 0x7,0xb1,0x0,0x47,0xf7,0xa2,0x0,0x48,0xe7,0x93,0x0,0x49,0xd7,0x84,0x0,0x4a, + 0xc7,0x75,0x0,0x4b,0xb7,0x66,0x0,0x4c,0xa7,0x57,0x0,0x4d,0x97,0x48,0x0,0x4e, + 0x87,0x39,0x0,0x4f,0x77,0x2a,0x0,0x50,0x70,0x55,0x80,0x51,0x60,0x46,0x80,0x52, + 0x50,0x37,0x80,0x53,0x40,0x28,0x80,0x54,0x30,0x19,0x80,0x55,0x20,0xa,0x80,0x56, + 0xf,0xfb,0x80,0x56,0xff,0xec,0x80,0x57,0xef,0xdd,0x80,0x58,0xdf,0xce,0x80,0x59, + 0xcf,0xbf,0x80,0x5a,0xbf,0xb0,0x80,0x5b,0xb8,0xdc,0x0,0x5c,0xa8,0xcd,0x0,0x5d, + 0x98,0xbe,0x0,0x5e,0x88,0xaf,0x0,0x5f,0x78,0xa0,0x0,0x60,0x68,0x91,0x0,0x61, + 0x58,0x82,0x0,0x62,0x48,0x73,0x0,0x63,0x38,0x64,0x0,0x64,0x28,0x55,0x0,0x65, + 0x18,0x46,0x0,0x66,0x11,0x71,0x80,0x67,0x1,0x62,0x80,0x67,0xf1,0x53,0x80,0x68, + 0xe1,0x44,0x80,0x69,0xd1,0x35,0x80,0x6a,0xc1,0x26,0x80,0x6b,0xb1,0x17,0x80,0x6c, + 0xa1,0x8,0x80,0x6d,0x90,0xf9,0x80,0x6e,0x80,0xea,0x80,0x6f,0x70,0xdb,0x80,0x70, + 0x6a,0x7,0x0,0x71,0x59,0xf8,0x0,0x72,0x49,0xe9,0x0,0x73,0x39,0xda,0x0,0x74, + 0x29,0xcb,0x0,0x75,0x19,0xbc,0x0,0x76,0x9,0xad,0x0,0x76,0xf9,0x9e,0x0,0x77, + 0xe9,0x8f,0x0,0x78,0xd9,0x80,0x0,0x79,0xc9,0x71,0x0,0x7a,0xb9,0x62,0x0,0x7b, + 0xb2,0x8d,0x80,0x7c,0xa2,0x7e,0x80,0x7d,0x92,0x6f,0x80,0x7e,0x82,0x60,0x80,0x7f, + 0x72,0x51,0x80,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x0,0x0,0x8a,0x1c,0x0,0x0,0x0, + 0x0,0x8c,0xa0,0x0,0x4,0x0,0x0,0x9a,0xb0,0x1,0x9,0x0,0x0,0x9a,0xb0,0x1, + 0x9,0x0,0x0,0x8c,0xa0,0x0,0x4,0x4c,0x4d,0x54,0x0,0x41,0x45,0x53,0x54,0x0, + 0x41,0x45,0x44,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x9a,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x18,0x80,0x0,0x0,0x0,0x9e, - 0xa6,0x2c,0x80,0x9f,0xba,0xf9,0x70,0xa0,0x86,0xe,0x80,0xa1,0x9a,0xdb,0x70,0xcb, - 0x88,0xfe,0x80,0xd2,0x23,0xf4,0x70,0xd2,0x61,0x9,0xf0,0xd5,0x55,0xd5,0x0,0xd6, - 0x20,0xcd,0xf0,0xd7,0x35,0xb7,0x0,0xd8,0x0,0xaf,0xf0,0xd9,0x15,0x99,0x0,0xd9, - 0xe0,0x91,0xf0,0xda,0xfe,0xb5,0x80,0xdb,0xc0,0x73,0xf0,0xdc,0xde,0x97,0x80,0xdd, - 0xa9,0x90,0x70,0xde,0xbe,0x79,0x80,0xdf,0x89,0x72,0x70,0xe0,0x9e,0x5b,0x80,0xe1, - 0x69,0x54,0x70,0xe2,0x7e,0x3d,0x80,0xe3,0x49,0x36,0x70,0xe4,0x5e,0x1f,0x80,0xe5, - 0x57,0x3c,0xf0,0xe6,0x47,0x3c,0x0,0xe7,0x37,0x1e,0xf0,0xe8,0x27,0x1e,0x0,0xe8, - 0xf2,0x16,0xf0,0xea,0x7,0x0,0x0,0xea,0xd1,0xf8,0xf0,0xeb,0xe6,0xe2,0x0,0xec, - 0xd6,0xc4,0xf0,0xed,0xc6,0xc4,0x0,0xee,0xbf,0xe1,0x70,0xef,0xaf,0xe0,0x80,0xf0, - 0x9f,0xc3,0x70,0xf1,0x8f,0xc2,0x80,0xf4,0x5f,0x87,0x70,0xfa,0xf8,0x67,0x0,0xfb, - 0xe8,0x49,0xf0,0xfc,0xd8,0x49,0x0,0xfd,0xc8,0x2b,0xf0,0xfe,0xb8,0x2b,0x0,0xff, - 0xa8,0xd,0xf0,0x0,0x98,0xd,0x0,0x1,0x87,0xef,0xf0,0x2,0x77,0xef,0x0,0x3, - 0x71,0xc,0x70,0x4,0x61,0xb,0x80,0x5,0x50,0xee,0x70,0x6,0x40,0xed,0x80,0x7, - 0x30,0xd0,0x70,0x7,0x8d,0x27,0x80,0x9,0x10,0xb2,0x70,0x9,0xad,0xa3,0x0,0xa, - 0xf0,0x94,0x70,0xb,0xe0,0x93,0x80,0xc,0xd9,0xb0,0xf0,0xd,0xc0,0x75,0x80,0xe, - 0xb9,0x92,0xf0,0xf,0xa9,0x92,0x0,0x10,0x99,0x74,0xf0,0x11,0x89,0x74,0x0,0x12, - 0x79,0x56,0xf0,0x13,0x69,0x56,0x0,0x14,0x59,0x38,0xf0,0x15,0x49,0x38,0x0,0x16, - 0x39,0x1a,0xf0,0x17,0x29,0x1a,0x0,0x18,0x22,0x37,0x70,0x19,0x8,0xfc,0x0,0x1a, - 0x2,0x19,0x70,0x1a,0xf2,0x18,0x80,0x1b,0xe1,0xfb,0x70,0x1c,0xd1,0xfa,0x80,0x1d, - 0xc1,0xdd,0x70,0x1e,0xb1,0xdc,0x80,0x1f,0xa1,0xbf,0x70,0x20,0x76,0xf,0x0,0x21, - 0x81,0xa1,0x70,0x22,0x55,0xf1,0x0,0x23,0x6a,0xbd,0xf0,0x24,0x35,0xd3,0x0,0x25, - 0x4a,0x9f,0xf0,0x26,0x15,0xb5,0x0,0x27,0x2a,0x81,0xf0,0x27,0xfe,0xd1,0x80,0x29, - 0xa,0x63,0xf0,0x44,0x2f,0x76,0x70,0x45,0x44,0x51,0x70,0x45,0xf3,0xb7,0x0,0x47, - 0x2d,0x6d,0xf0,0x47,0xd3,0x99,0x0,0x49,0xd,0x4f,0xf0,0x49,0xb3,0x7b,0x0,0x4a, - 0xed,0x31,0xf0,0x4b,0x9c,0x97,0x80,0x4c,0xd6,0x4e,0x70,0x4d,0x7c,0x79,0x80,0x4e, - 0xb6,0x30,0x70,0x4f,0x5c,0x5b,0x80,0x50,0x96,0x12,0x70,0x51,0x3c,0x3d,0x80,0x52, - 0x75,0xf4,0x70,0x53,0x1c,0x1f,0x80,0x54,0x55,0xd6,0x70,0x54,0xfc,0x1,0x80,0x56, - 0x35,0xb8,0x70,0x56,0xe5,0x1e,0x0,0x58,0x1e,0xd4,0xf0,0x58,0xc5,0x0,0x0,0x59, - 0xfe,0xb6,0xf0,0x5a,0xa4,0xe2,0x0,0x5b,0xde,0x98,0xf0,0x5c,0x84,0xc4,0x0,0x5d, - 0xbe,0x7a,0xf0,0x5e,0x64,0xa6,0x0,0x5f,0x9e,0x5c,0xf0,0x60,0x4d,0xc2,0x80,0x61, - 0x87,0x79,0x70,0x62,0x2d,0xa4,0x80,0x63,0x67,0x5b,0x70,0x64,0xd,0x86,0x80,0x65, - 0x47,0x3d,0x70,0x65,0xed,0x68,0x80,0x67,0x27,0x1f,0x70,0x67,0xcd,0x4a,0x80,0x69, - 0x7,0x1,0x70,0x69,0xad,0x2c,0x80,0x6a,0xe6,0xe3,0x70,0x6b,0x96,0x49,0x0,0x6c, - 0xcf,0xff,0xf0,0x6d,0x76,0x2b,0x0,0x6e,0xaf,0xe1,0xf0,0x6f,0x56,0xd,0x0,0x70, - 0x8f,0xc3,0xf0,0x71,0x35,0xef,0x0,0x72,0x6f,0xa5,0xf0,0x73,0x15,0xd1,0x0,0x74, - 0x4f,0x87,0xf0,0x74,0xfe,0xed,0x80,0x76,0x38,0xa4,0x70,0x76,0xde,0xcf,0x80,0x78, - 0x18,0x86,0x70,0x78,0xbe,0xb1,0x80,0x79,0xf8,0x68,0x70,0x7a,0x9e,0x93,0x80,0x7b, - 0xd8,0x4a,0x70,0x7c,0x7e,0x75,0x80,0x7d,0xb8,0x2c,0x70,0x7e,0x5e,0x57,0x80,0x7f, - 0x98,0xe,0x70,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x5,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x5,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0xae, - 0xca,0x0,0x0,0xff,0xff,0xb9,0xb0,0x1,0x4,0xff,0xff,0xab,0xa0,0x0,0x8,0xff, - 0xff,0xb9,0xb0,0x1,0xc,0xff,0xff,0xb9,0xb0,0x1,0x10,0xff,0xff,0xb9,0xb0,0x0, - 0x14,0xff,0xff,0xab,0xa0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x43,0x44,0x54,0x0,0x43, - 0x53,0x54,0x0,0x43,0x57,0x54,0x0,0x43,0x50,0x54,0x0,0x45,0x53,0x54,0x0,0x0, - 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x54,0x5a,0x69, - 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x9b,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x18,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0x5e,0x3,0xfe,0xa0,0xff,0xff,0xff,0xff,0x9e,0xa6,0x2c, - 0x80,0xff,0xff,0xff,0xff,0x9f,0xba,0xf9,0x70,0xff,0xff,0xff,0xff,0xa0,0x86,0xe, - 0x80,0xff,0xff,0xff,0xff,0xa1,0x9a,0xdb,0x70,0xff,0xff,0xff,0xff,0xcb,0x88,0xfe, - 0x80,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x61,0x9, - 0xf0,0xff,0xff,0xff,0xff,0xd5,0x55,0xd5,0x0,0xff,0xff,0xff,0xff,0xd6,0x20,0xcd, - 0xf0,0xff,0xff,0xff,0xff,0xd7,0x35,0xb7,0x0,0xff,0xff,0xff,0xff,0xd8,0x0,0xaf, - 0xf0,0xff,0xff,0xff,0xff,0xd9,0x15,0x99,0x0,0xff,0xff,0xff,0xff,0xd9,0xe0,0x91, - 0xf0,0xff,0xff,0xff,0xff,0xda,0xfe,0xb5,0x80,0xff,0xff,0xff,0xff,0xdb,0xc0,0x73, - 0xf0,0xff,0xff,0xff,0xff,0xdc,0xde,0x97,0x80,0xff,0xff,0xff,0xff,0xdd,0xa9,0x90, - 0x70,0xff,0xff,0xff,0xff,0xde,0xbe,0x79,0x80,0xff,0xff,0xff,0xff,0xdf,0x89,0x72, - 0x70,0xff,0xff,0xff,0xff,0xe0,0x9e,0x5b,0x80,0xff,0xff,0xff,0xff,0xe1,0x69,0x54, - 0x70,0xff,0xff,0xff,0xff,0xe2,0x7e,0x3d,0x80,0xff,0xff,0xff,0xff,0xe3,0x49,0x36, - 0x70,0xff,0xff,0xff,0xff,0xe4,0x5e,0x1f,0x80,0xff,0xff,0xff,0xff,0xe5,0x57,0x3c, - 0xf0,0xff,0xff,0xff,0xff,0xe6,0x47,0x3c,0x0,0xff,0xff,0xff,0xff,0xe7,0x37,0x1e, - 0xf0,0xff,0xff,0xff,0xff,0xe8,0x27,0x1e,0x0,0xff,0xff,0xff,0xff,0xe8,0xf2,0x16, - 0xf0,0xff,0xff,0xff,0xff,0xea,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0xea,0xd1,0xf8, - 0xf0,0xff,0xff,0xff,0xff,0xeb,0xe6,0xe2,0x0,0xff,0xff,0xff,0xff,0xec,0xd6,0xc4, - 0xf0,0xff,0xff,0xff,0xff,0xed,0xc6,0xc4,0x0,0xff,0xff,0xff,0xff,0xee,0xbf,0xe1, - 0x70,0xff,0xff,0xff,0xff,0xef,0xaf,0xe0,0x80,0xff,0xff,0xff,0xff,0xf0,0x9f,0xc3, - 0x70,0xff,0xff,0xff,0xff,0xf1,0x8f,0xc2,0x80,0xff,0xff,0xff,0xff,0xf4,0x5f,0x87, - 0x70,0xff,0xff,0xff,0xff,0xfa,0xf8,0x67,0x0,0xff,0xff,0xff,0xff,0xfb,0xe8,0x49, - 0xf0,0xff,0xff,0xff,0xff,0xfc,0xd8,0x49,0x0,0xff,0xff,0xff,0xff,0xfd,0xc8,0x2b, - 0xf0,0xff,0xff,0xff,0xff,0xfe,0xb8,0x2b,0x0,0xff,0xff,0xff,0xff,0xff,0xa8,0xd, - 0xf0,0x0,0x0,0x0,0x0,0x0,0x98,0xd,0x0,0x0,0x0,0x0,0x0,0x1,0x87,0xef, - 0xf0,0x0,0x0,0x0,0x0,0x2,0x77,0xef,0x0,0x0,0x0,0x0,0x0,0x3,0x71,0xc, - 0x70,0x0,0x0,0x0,0x0,0x4,0x61,0xb,0x80,0x0,0x0,0x0,0x0,0x5,0x50,0xee, - 0x70,0x0,0x0,0x0,0x0,0x6,0x40,0xed,0x80,0x0,0x0,0x0,0x0,0x7,0x30,0xd0, - 0x70,0x0,0x0,0x0,0x0,0x7,0x8d,0x27,0x80,0x0,0x0,0x0,0x0,0x9,0x10,0xb2, - 0x70,0x0,0x0,0x0,0x0,0x9,0xad,0xa3,0x0,0x0,0x0,0x0,0x0,0xa,0xf0,0x94, - 0x70,0x0,0x0,0x0,0x0,0xb,0xe0,0x93,0x80,0x0,0x0,0x0,0x0,0xc,0xd9,0xb0, - 0xf0,0x0,0x0,0x0,0x0,0xd,0xc0,0x75,0x80,0x0,0x0,0x0,0x0,0xe,0xb9,0x92, - 0xf0,0x0,0x0,0x0,0x0,0xf,0xa9,0x92,0x0,0x0,0x0,0x0,0x0,0x10,0x99,0x74, - 0xf0,0x0,0x0,0x0,0x0,0x11,0x89,0x74,0x0,0x0,0x0,0x0,0x0,0x12,0x79,0x56, - 0xf0,0x0,0x0,0x0,0x0,0x13,0x69,0x56,0x0,0x0,0x0,0x0,0x0,0x14,0x59,0x38, - 0xf0,0x0,0x0,0x0,0x0,0x15,0x49,0x38,0x0,0x0,0x0,0x0,0x0,0x16,0x39,0x1a, - 0xf0,0x0,0x0,0x0,0x0,0x17,0x29,0x1a,0x0,0x0,0x0,0x0,0x0,0x18,0x22,0x37, - 0x70,0x0,0x0,0x0,0x0,0x19,0x8,0xfc,0x0,0x0,0x0,0x0,0x0,0x1a,0x2,0x19, - 0x70,0x0,0x0,0x0,0x0,0x1a,0xf2,0x18,0x80,0x0,0x0,0x0,0x0,0x1b,0xe1,0xfb, - 0x70,0x0,0x0,0x0,0x0,0x1c,0xd1,0xfa,0x80,0x0,0x0,0x0,0x0,0x1d,0xc1,0xdd, - 0x70,0x0,0x0,0x0,0x0,0x1e,0xb1,0xdc,0x80,0x0,0x0,0x0,0x0,0x1f,0xa1,0xbf, - 0x70,0x0,0x0,0x0,0x0,0x20,0x76,0xf,0x0,0x0,0x0,0x0,0x0,0x21,0x81,0xa1, - 0x70,0x0,0x0,0x0,0x0,0x22,0x55,0xf1,0x0,0x0,0x0,0x0,0x0,0x23,0x6a,0xbd, - 0xf0,0x0,0x0,0x0,0x0,0x24,0x35,0xd3,0x0,0x0,0x0,0x0,0x0,0x25,0x4a,0x9f, - 0xf0,0x0,0x0,0x0,0x0,0x26,0x15,0xb5,0x0,0x0,0x0,0x0,0x0,0x27,0x2a,0x81, - 0xf0,0x0,0x0,0x0,0x0,0x27,0xfe,0xd1,0x80,0x0,0x0,0x0,0x0,0x29,0xa,0x63, - 0xf0,0x0,0x0,0x0,0x0,0x44,0x2f,0x76,0x70,0x0,0x0,0x0,0x0,0x45,0x44,0x51, - 0x70,0x0,0x0,0x0,0x0,0x45,0xf3,0xb7,0x0,0x0,0x0,0x0,0x0,0x47,0x2d,0x6d, - 0xf0,0x0,0x0,0x0,0x0,0x47,0xd3,0x99,0x0,0x0,0x0,0x0,0x0,0x49,0xd,0x4f, - 0xf0,0x0,0x0,0x0,0x0,0x49,0xb3,0x7b,0x0,0x0,0x0,0x0,0x0,0x4a,0xed,0x31, - 0xf0,0x0,0x0,0x0,0x0,0x4b,0x9c,0x97,0x80,0x0,0x0,0x0,0x0,0x4c,0xd6,0x4e, - 0x70,0x0,0x0,0x0,0x0,0x4d,0x7c,0x79,0x80,0x0,0x0,0x0,0x0,0x4e,0xb6,0x30, - 0x70,0x0,0x0,0x0,0x0,0x4f,0x5c,0x5b,0x80,0x0,0x0,0x0,0x0,0x50,0x96,0x12, - 0x70,0x0,0x0,0x0,0x0,0x51,0x3c,0x3d,0x80,0x0,0x0,0x0,0x0,0x52,0x75,0xf4, - 0x70,0x0,0x0,0x0,0x0,0x53,0x1c,0x1f,0x80,0x0,0x0,0x0,0x0,0x54,0x55,0xd6, - 0x70,0x0,0x0,0x0,0x0,0x54,0xfc,0x1,0x80,0x0,0x0,0x0,0x0,0x56,0x35,0xb8, - 0x70,0x0,0x0,0x0,0x0,0x56,0xe5,0x1e,0x0,0x0,0x0,0x0,0x0,0x58,0x1e,0xd4, - 0xf0,0x0,0x0,0x0,0x0,0x58,0xc5,0x0,0x0,0x0,0x0,0x0,0x0,0x59,0xfe,0xb6, - 0xf0,0x0,0x0,0x0,0x0,0x5a,0xa4,0xe2,0x0,0x0,0x0,0x0,0x0,0x5b,0xde,0x98, - 0xf0,0x0,0x0,0x0,0x0,0x5c,0x84,0xc4,0x0,0x0,0x0,0x0,0x0,0x5d,0xbe,0x7a, - 0xf0,0x0,0x0,0x0,0x0,0x5e,0x64,0xa6,0x0,0x0,0x0,0x0,0x0,0x5f,0x9e,0x5c, - 0xf0,0x0,0x0,0x0,0x0,0x60,0x4d,0xc2,0x80,0x0,0x0,0x0,0x0,0x61,0x87,0x79, - 0x70,0x0,0x0,0x0,0x0,0x62,0x2d,0xa4,0x80,0x0,0x0,0x0,0x0,0x63,0x67,0x5b, - 0x70,0x0,0x0,0x0,0x0,0x64,0xd,0x86,0x80,0x0,0x0,0x0,0x0,0x65,0x47,0x3d, - 0x70,0x0,0x0,0x0,0x0,0x65,0xed,0x68,0x80,0x0,0x0,0x0,0x0,0x67,0x27,0x1f, - 0x70,0x0,0x0,0x0,0x0,0x67,0xcd,0x4a,0x80,0x0,0x0,0x0,0x0,0x69,0x7,0x1, - 0x70,0x0,0x0,0x0,0x0,0x69,0xad,0x2c,0x80,0x0,0x0,0x0,0x0,0x6a,0xe6,0xe3, - 0x70,0x0,0x0,0x0,0x0,0x6b,0x96,0x49,0x0,0x0,0x0,0x0,0x0,0x6c,0xcf,0xff, - 0xf0,0x0,0x0,0x0,0x0,0x6d,0x76,0x2b,0x0,0x0,0x0,0x0,0x0,0x6e,0xaf,0xe1, - 0xf0,0x0,0x0,0x0,0x0,0x6f,0x56,0xd,0x0,0x0,0x0,0x0,0x0,0x70,0x8f,0xc3, - 0xf0,0x0,0x0,0x0,0x0,0x71,0x35,0xef,0x0,0x0,0x0,0x0,0x0,0x72,0x6f,0xa5, - 0xf0,0x0,0x0,0x0,0x0,0x73,0x15,0xd1,0x0,0x0,0x0,0x0,0x0,0x74,0x4f,0x87, - 0xf0,0x0,0x0,0x0,0x0,0x74,0xfe,0xed,0x80,0x0,0x0,0x0,0x0,0x76,0x38,0xa4, - 0x70,0x0,0x0,0x0,0x0,0x76,0xde,0xcf,0x80,0x0,0x0,0x0,0x0,0x78,0x18,0x86, - 0x70,0x0,0x0,0x0,0x0,0x78,0xbe,0xb1,0x80,0x0,0x0,0x0,0x0,0x79,0xf8,0x68, - 0x70,0x0,0x0,0x0,0x0,0x7a,0x9e,0x93,0x80,0x0,0x0,0x0,0x0,0x7b,0xd8,0x4a, - 0x70,0x0,0x0,0x0,0x0,0x7c,0x7e,0x75,0x80,0x0,0x0,0x0,0x0,0x7d,0xb8,0x2c, - 0x70,0x0,0x0,0x0,0x0,0x7e,0x5e,0x57,0x80,0x0,0x0,0x0,0x0,0x7f,0x98,0xe, - 0x70,0x0,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x5,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x5,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0xae,0xca, - 0x0,0x0,0xff,0xff,0xb9,0xb0,0x1,0x4,0xff,0xff,0xab,0xa0,0x0,0x8,0xff,0xff, - 0xb9,0xb0,0x1,0xc,0xff,0xff,0xb9,0xb0,0x1,0x10,0xff,0xff,0xb9,0xb0,0x0,0x14, - 0xff,0xff,0xab,0xa0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x43,0x44,0x54,0x0,0x43,0x53, - 0x54,0x0,0x43,0x57,0x54,0x0,0x43,0x50,0x54,0x0,0x45,0x53,0x54,0x0,0x0,0x0, - 0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0xa,0x43,0x53,0x54, - 0x36,0x43,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e, - 0x31,0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/US/Pacific - 0x0,0x0,0xb,0x1d, + 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x97,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xe,0xf8,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x74,0x2e,0x0,0xe4,0xff,0xff,0xff,0xff,0x9b, + 0xd5,0x78,0x80,0xff,0xff,0xff,0xff,0x9c,0xbc,0x20,0xf0,0xff,0xff,0xff,0xff,0xcb, + 0x54,0xb3,0x0,0xff,0xff,0xff,0xff,0xcb,0xc7,0x57,0x70,0xff,0xff,0xff,0xff,0xcc, + 0xb7,0x56,0x80,0xff,0xff,0xff,0xff,0xcd,0xa7,0x39,0x70,0xff,0xff,0xff,0xff,0xce, + 0xa0,0x73,0x0,0xff,0xff,0xff,0xff,0xcf,0x87,0x1b,0x70,0xff,0xff,0xff,0xff,0xfb, + 0xc2,0x8d,0x0,0xff,0xff,0xff,0xff,0xfc,0xb2,0x7e,0x0,0xff,0xff,0xff,0xff,0xfd, + 0xc7,0x59,0x0,0xff,0xff,0xff,0xff,0xfe,0x76,0xb0,0x80,0xff,0xff,0xff,0xff,0xff, + 0xa7,0x3b,0x0,0x0,0x0,0x0,0x0,0x0,0x56,0x92,0x80,0x0,0x0,0x0,0x0,0x1, + 0x87,0x1d,0x0,0x0,0x0,0x0,0x0,0x2,0x3f,0xaf,0x0,0x0,0x0,0x0,0x0,0x3, + 0x70,0x39,0x80,0x0,0x0,0x0,0x0,0x4,0xd,0x1c,0x0,0x0,0x0,0x0,0x0,0x5, + 0x50,0x1b,0x80,0x0,0x0,0x0,0x0,0x5,0xf6,0x38,0x80,0x0,0x0,0x0,0x0,0x7, + 0x2f,0xfd,0x80,0x0,0x0,0x0,0x0,0x7,0xd6,0x1a,0x80,0x0,0x0,0x0,0x0,0x9, + 0xf,0xdf,0x80,0x0,0x0,0x0,0x0,0x9,0xb5,0xfc,0x80,0x0,0x0,0x0,0x0,0xa, + 0xef,0xc1,0x80,0x0,0x0,0x0,0x0,0xb,0x9f,0x19,0x0,0x0,0x0,0x0,0x0,0xc, + 0xd8,0xde,0x0,0x0,0x0,0x0,0x0,0xd,0x7e,0xfb,0x0,0x0,0x0,0x0,0x0,0xe, + 0xb8,0xc0,0x0,0x0,0x0,0x0,0x0,0xf,0x5e,0xdd,0x0,0x0,0x0,0x0,0x0,0x10, + 0x98,0xa2,0x0,0x0,0x0,0x0,0x0,0x11,0x3e,0xbf,0x0,0x0,0x0,0x0,0x0,0x12, + 0x78,0x84,0x0,0x0,0x0,0x0,0x0,0x13,0x1e,0xa1,0x0,0x0,0x0,0x0,0x0,0x14, + 0x58,0x66,0x0,0x0,0x0,0x0,0x0,0x14,0xfe,0x83,0x0,0x0,0x0,0x0,0x0,0x16, + 0x38,0x48,0x0,0x0,0x0,0x0,0x0,0x17,0x3,0x4f,0x0,0x0,0x0,0x0,0x0,0x18, + 0x21,0x64,0x80,0x0,0x0,0x0,0x0,0x18,0xe3,0x31,0x0,0x0,0x0,0x0,0x0,0x1a, + 0x1,0x46,0x80,0x0,0x0,0x0,0x0,0x1a,0xa7,0x63,0x80,0x0,0x0,0x0,0x0,0x1b, + 0xe1,0x28,0x80,0x0,0x0,0x0,0x0,0x1c,0x87,0x45,0x80,0x0,0x0,0x0,0x0,0x1d, + 0xc1,0xa,0x80,0x0,0x0,0x0,0x0,0x1e,0x67,0x27,0x80,0x0,0x0,0x0,0x0,0x1f, + 0x97,0xb2,0x0,0x0,0x0,0x0,0x0,0x20,0x59,0x7e,0x80,0x0,0x0,0x0,0x0,0x21, + 0x80,0xce,0x80,0x0,0x0,0x0,0x0,0x22,0x42,0x9b,0x0,0x0,0x0,0x0,0x0,0x23, + 0x69,0xeb,0x0,0x0,0x0,0x0,0x0,0x24,0x22,0x7d,0x0,0x0,0x0,0x0,0x0,0x25, + 0x49,0xcd,0x0,0x0,0x0,0x0,0x0,0x26,0x2,0x5f,0x0,0x0,0x0,0x0,0x0,0x27, + 0x29,0xaf,0x0,0x0,0x0,0x0,0x0,0x27,0xf4,0xb6,0x0,0x0,0x0,0x0,0x0,0x28, + 0xed,0xe1,0x80,0x0,0x0,0x0,0x0,0x29,0xd4,0x98,0x0,0x0,0x0,0x0,0x0,0x2a, + 0xcd,0xc3,0x80,0x0,0x0,0x0,0x0,0x2b,0xb4,0x7a,0x0,0x0,0x0,0x0,0x0,0x2c, + 0xad,0xa5,0x80,0x0,0x0,0x0,0x0,0x2d,0x94,0x5c,0x0,0x0,0x0,0x0,0x0,0x2e, + 0x8d,0x87,0x80,0x0,0x0,0x0,0x0,0x2f,0x74,0x3e,0x0,0x0,0x0,0x0,0x0,0x30, + 0x6d,0x69,0x80,0x0,0x0,0x0,0x0,0x31,0x5d,0x5a,0x80,0x0,0x0,0x0,0x0,0x32, + 0x56,0x86,0x0,0x0,0x0,0x0,0x0,0x33,0x3d,0x3c,0x80,0x0,0x0,0x0,0x0,0x34, + 0x36,0x68,0x0,0x0,0x0,0x0,0x0,0x35,0x1d,0x1e,0x80,0x0,0x0,0x0,0x0,0x36, + 0x16,0x4a,0x0,0x0,0x0,0x0,0x0,0x36,0xfd,0x0,0x80,0x0,0x0,0x0,0x0,0x37, + 0xf6,0x2c,0x0,0x0,0x0,0x0,0x0,0x38,0xdc,0xe2,0x80,0x0,0x0,0x0,0x0,0x39, + 0xa7,0xe9,0x80,0x0,0x0,0x0,0x0,0x3a,0xbc,0xc4,0x80,0x0,0x0,0x0,0x0,0x3b, + 0xbf,0x2a,0x80,0x0,0x0,0x0,0x0,0x3c,0xa5,0xe1,0x0,0x0,0x0,0x0,0x0,0x3d, + 0x9f,0xc,0x80,0x0,0x0,0x0,0x0,0x3e,0x85,0xc3,0x0,0x0,0x0,0x0,0x0,0x3f, + 0x7e,0xee,0x80,0x0,0x0,0x0,0x0,0x40,0x65,0xa5,0x0,0x0,0x0,0x0,0x0,0x41, + 0x5e,0xd0,0x80,0x0,0x0,0x0,0x0,0x42,0x45,0x87,0x0,0x0,0x0,0x0,0x0,0x43, + 0x3e,0xb2,0x80,0x0,0x0,0x0,0x0,0x44,0x2e,0xa3,0x80,0x0,0x0,0x0,0x0,0x45, + 0x1e,0x94,0x80,0x0,0x0,0x0,0x0,0x46,0x5,0x4b,0x0,0x0,0x0,0x0,0x0,0x47, + 0x7,0xb1,0x0,0x0,0x0,0x0,0x0,0x47,0xf7,0xa2,0x0,0x0,0x0,0x0,0x0,0x48, + 0xe7,0x93,0x0,0x0,0x0,0x0,0x0,0x49,0xd7,0x84,0x0,0x0,0x0,0x0,0x0,0x4a, + 0xc7,0x75,0x0,0x0,0x0,0x0,0x0,0x4b,0xb7,0x66,0x0,0x0,0x0,0x0,0x0,0x4c, + 0xa7,0x57,0x0,0x0,0x0,0x0,0x0,0x4d,0x97,0x48,0x0,0x0,0x0,0x0,0x0,0x4e, + 0x87,0x39,0x0,0x0,0x0,0x0,0x0,0x4f,0x77,0x2a,0x0,0x0,0x0,0x0,0x0,0x50, + 0x70,0x55,0x80,0x0,0x0,0x0,0x0,0x51,0x60,0x46,0x80,0x0,0x0,0x0,0x0,0x52, + 0x50,0x37,0x80,0x0,0x0,0x0,0x0,0x53,0x40,0x28,0x80,0x0,0x0,0x0,0x0,0x54, + 0x30,0x19,0x80,0x0,0x0,0x0,0x0,0x55,0x20,0xa,0x80,0x0,0x0,0x0,0x0,0x56, + 0xf,0xfb,0x80,0x0,0x0,0x0,0x0,0x56,0xff,0xec,0x80,0x0,0x0,0x0,0x0,0x57, + 0xef,0xdd,0x80,0x0,0x0,0x0,0x0,0x58,0xdf,0xce,0x80,0x0,0x0,0x0,0x0,0x59, + 0xcf,0xbf,0x80,0x0,0x0,0x0,0x0,0x5a,0xbf,0xb0,0x80,0x0,0x0,0x0,0x0,0x5b, + 0xb8,0xdc,0x0,0x0,0x0,0x0,0x0,0x5c,0xa8,0xcd,0x0,0x0,0x0,0x0,0x0,0x5d, + 0x98,0xbe,0x0,0x0,0x0,0x0,0x0,0x5e,0x88,0xaf,0x0,0x0,0x0,0x0,0x0,0x5f, + 0x78,0xa0,0x0,0x0,0x0,0x0,0x0,0x60,0x68,0x91,0x0,0x0,0x0,0x0,0x0,0x61, + 0x58,0x82,0x0,0x0,0x0,0x0,0x0,0x62,0x48,0x73,0x0,0x0,0x0,0x0,0x0,0x63, + 0x38,0x64,0x0,0x0,0x0,0x0,0x0,0x64,0x28,0x55,0x0,0x0,0x0,0x0,0x0,0x65, + 0x18,0x46,0x0,0x0,0x0,0x0,0x0,0x66,0x11,0x71,0x80,0x0,0x0,0x0,0x0,0x67, + 0x1,0x62,0x80,0x0,0x0,0x0,0x0,0x67,0xf1,0x53,0x80,0x0,0x0,0x0,0x0,0x68, + 0xe1,0x44,0x80,0x0,0x0,0x0,0x0,0x69,0xd1,0x35,0x80,0x0,0x0,0x0,0x0,0x6a, + 0xc1,0x26,0x80,0x0,0x0,0x0,0x0,0x6b,0xb1,0x17,0x80,0x0,0x0,0x0,0x0,0x6c, + 0xa1,0x8,0x80,0x0,0x0,0x0,0x0,0x6d,0x90,0xf9,0x80,0x0,0x0,0x0,0x0,0x6e, + 0x80,0xea,0x80,0x0,0x0,0x0,0x0,0x6f,0x70,0xdb,0x80,0x0,0x0,0x0,0x0,0x70, + 0x6a,0x7,0x0,0x0,0x0,0x0,0x0,0x71,0x59,0xf8,0x0,0x0,0x0,0x0,0x0,0x72, + 0x49,0xe9,0x0,0x0,0x0,0x0,0x0,0x73,0x39,0xda,0x0,0x0,0x0,0x0,0x0,0x74, + 0x29,0xcb,0x0,0x0,0x0,0x0,0x0,0x75,0x19,0xbc,0x0,0x0,0x0,0x0,0x0,0x76, + 0x9,0xad,0x0,0x0,0x0,0x0,0x0,0x76,0xf9,0x9e,0x0,0x0,0x0,0x0,0x0,0x77, + 0xe9,0x8f,0x0,0x0,0x0,0x0,0x0,0x78,0xd9,0x80,0x0,0x0,0x0,0x0,0x0,0x79, + 0xc9,0x71,0x0,0x0,0x0,0x0,0x0,0x7a,0xb9,0x62,0x0,0x0,0x0,0x0,0x0,0x7b, + 0xb2,0x8d,0x80,0x0,0x0,0x0,0x0,0x7c,0xa2,0x7e,0x80,0x0,0x0,0x0,0x0,0x7d, + 0x92,0x6f,0x80,0x0,0x0,0x0,0x0,0x7e,0x82,0x60,0x80,0x0,0x0,0x0,0x0,0x7f, + 0x72,0x51,0x80,0x0,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x0,0x0,0x8a,0x1c,0x0,0x0, + 0x0,0x0,0x8c,0xa0,0x0,0x4,0x0,0x0,0x9a,0xb0,0x1,0x9,0x0,0x0,0x9a,0xb0, + 0x1,0x9,0x0,0x0,0x8c,0xa0,0x0,0x4,0x4c,0x4d,0x54,0x0,0x41,0x45,0x53,0x54, + 0x0,0x41,0x45,0x44,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0, + 0xa,0x41,0x45,0x53,0x54,0x2d,0x31,0x30,0x41,0x45,0x44,0x54,0x2c,0x4d,0x31,0x30, + 0x2e,0x31,0x2e,0x30,0x2c,0x4d,0x34,0x2e,0x31,0x2e,0x30,0x2f,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Australia/LHI + 0x0,0x0,0x7,0x61, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xba,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0x9e, - 0xa6,0x48,0xa0,0x9f,0xbb,0x15,0x90,0xa0,0x86,0x2a,0xa0,0xa1,0x9a,0xf7,0x90,0xcb, - 0x89,0x1a,0xa0,0xd2,0x23,0xf4,0x70,0xd2,0x61,0x26,0x10,0xd6,0xfe,0x74,0x5c,0xd8, - 0x80,0xad,0x90,0xda,0xfe,0xc3,0x90,0xdb,0xc0,0x90,0x10,0xdc,0xde,0xa5,0x90,0xdd, - 0xa9,0xac,0x90,0xde,0xbe,0x87,0x90,0xdf,0x89,0x8e,0x90,0xe0,0x9e,0x69,0x90,0xe1, - 0x69,0x70,0x90,0xe2,0x7e,0x4b,0x90,0xe3,0x49,0x52,0x90,0xe4,0x5e,0x2d,0x90,0xe5, - 0x29,0x34,0x90,0xe6,0x47,0x4a,0x10,0xe7,0x12,0x51,0x10,0xe8,0x27,0x2c,0x10,0xe8, - 0xf2,0x33,0x10,0xea,0x7,0xe,0x10,0xea,0xd2,0x15,0x10,0xeb,0xe6,0xf0,0x10,0xec, - 0xb1,0xf7,0x10,0xed,0xc6,0xd2,0x10,0xee,0x91,0xd9,0x10,0xef,0xaf,0xee,0x90,0xf0, - 0x71,0xbb,0x10,0xf1,0x8f,0xd0,0x90,0xf2,0x7f,0xc1,0x90,0xf3,0x6f,0xb2,0x90,0xf4, - 0x5f,0xa3,0x90,0xf5,0x4f,0x94,0x90,0xf6,0x3f,0x85,0x90,0xf7,0x2f,0x76,0x90,0xf8, - 0x28,0xa2,0x10,0xf9,0xf,0x58,0x90,0xfa,0x8,0x84,0x10,0xfa,0xf8,0x83,0x20,0xfb, - 0xe8,0x66,0x10,0xfc,0xd8,0x65,0x20,0xfd,0xc8,0x48,0x10,0xfe,0xb8,0x47,0x20,0xff, - 0xa8,0x2a,0x10,0x0,0x98,0x29,0x20,0x1,0x88,0xc,0x10,0x2,0x78,0xb,0x20,0x3, - 0x71,0x28,0x90,0x4,0x61,0x27,0xa0,0x5,0x51,0xa,0x90,0x6,0x41,0x9,0xa0,0x7, - 0x30,0xec,0x90,0x7,0x8d,0x43,0xa0,0x9,0x10,0xce,0x90,0x9,0xad,0xbf,0x20,0xa, - 0xf0,0xb0,0x90,0xb,0xe0,0xaf,0xa0,0xc,0xd9,0xcd,0x10,0xd,0xc0,0x91,0xa0,0xe, - 0xb9,0xaf,0x10,0xf,0xa9,0xae,0x20,0x10,0x99,0x91,0x10,0x11,0x89,0x90,0x20,0x12, - 0x79,0x73,0x10,0x13,0x69,0x72,0x20,0x14,0x59,0x55,0x10,0x15,0x49,0x54,0x20,0x16, - 0x39,0x37,0x10,0x17,0x29,0x36,0x20,0x18,0x22,0x53,0x90,0x19,0x9,0x18,0x20,0x1a, - 0x2,0x35,0x90,0x1a,0xf2,0x34,0xa0,0x1b,0xe2,0x17,0x90,0x1c,0xd2,0x16,0xa0,0x1d, - 0xc1,0xf9,0x90,0x1e,0xb1,0xf8,0xa0,0x1f,0xa1,0xdb,0x90,0x20,0x76,0x2b,0x20,0x21, - 0x81,0xbd,0x90,0x22,0x56,0xd,0x20,0x23,0x6a,0xda,0x10,0x24,0x35,0xef,0x20,0x25, - 0x4a,0xbc,0x10,0x26,0x15,0xd1,0x20,0x27,0x2a,0x9e,0x10,0x27,0xfe,0xed,0xa0,0x29, - 0xa,0x80,0x10,0x29,0xde,0xcf,0xa0,0x2a,0xea,0x62,0x10,0x2b,0xbe,0xb1,0xa0,0x2c, - 0xd3,0x7e,0x90,0x2d,0x9e,0x93,0xa0,0x2e,0xb3,0x60,0x90,0x2f,0x7e,0x75,0xa0,0x30, - 0x93,0x42,0x90,0x31,0x67,0x92,0x20,0x32,0x73,0x24,0x90,0x33,0x47,0x74,0x20,0x34, - 0x53,0x6,0x90,0x35,0x27,0x56,0x20,0x36,0x32,0xe8,0x90,0x37,0x7,0x38,0x20,0x38, - 0x1c,0x5,0x10,0x38,0xe7,0x1a,0x20,0x39,0xfb,0xe7,0x10,0x3a,0xc6,0xfc,0x20,0x3b, - 0xdb,0xc9,0x10,0x3c,0xb0,0x18,0xa0,0x3d,0xbb,0xab,0x10,0x3e,0x8f,0xfa,0xa0,0x3f, - 0x9b,0x8d,0x10,0x40,0x6f,0xdc,0xa0,0x41,0x84,0xa9,0x90,0x42,0x4f,0xbe,0xa0,0x43, - 0x64,0x8b,0x90,0x44,0x2f,0xa0,0xa0,0x45,0x44,0x6d,0x90,0x45,0xf3,0xd3,0x20,0x47, - 0x2d,0x8a,0x10,0x47,0xd3,0xb5,0x20,0x49,0xd,0x6c,0x10,0x49,0xb3,0x97,0x20,0x4a, - 0xed,0x4e,0x10,0x4b,0x9c,0xb3,0xa0,0x4c,0xd6,0x6a,0x90,0x4d,0x7c,0x95,0xa0,0x4e, - 0xb6,0x4c,0x90,0x4f,0x5c,0x77,0xa0,0x50,0x96,0x2e,0x90,0x51,0x3c,0x59,0xa0,0x52, - 0x76,0x10,0x90,0x53,0x1c,0x3b,0xa0,0x54,0x55,0xf2,0x90,0x54,0xfc,0x1d,0xa0,0x56, - 0x35,0xd4,0x90,0x56,0xe5,0x3a,0x20,0x58,0x1e,0xf1,0x10,0x58,0xc5,0x1c,0x20,0x59, - 0xfe,0xd3,0x10,0x5a,0xa4,0xfe,0x20,0x5b,0xde,0xb5,0x10,0x5c,0x84,0xe0,0x20,0x5d, - 0xbe,0x97,0x10,0x5e,0x64,0xc2,0x20,0x5f,0x9e,0x79,0x10,0x60,0x4d,0xde,0xa0,0x61, - 0x87,0x95,0x90,0x62,0x2d,0xc0,0xa0,0x63,0x67,0x77,0x90,0x64,0xd,0xa2,0xa0,0x65, - 0x47,0x59,0x90,0x65,0xed,0x84,0xa0,0x67,0x27,0x3b,0x90,0x67,0xcd,0x66,0xa0,0x69, - 0x7,0x1d,0x90,0x69,0xad,0x48,0xa0,0x6a,0xe6,0xff,0x90,0x6b,0x96,0x65,0x20,0x6c, - 0xd0,0x1c,0x10,0x6d,0x76,0x47,0x20,0x6e,0xaf,0xfe,0x10,0x6f,0x56,0x29,0x20,0x70, - 0x8f,0xe0,0x10,0x71,0x36,0xb,0x20,0x72,0x6f,0xc2,0x10,0x73,0x15,0xed,0x20,0x74, - 0x4f,0xa4,0x10,0x74,0xff,0x9,0xa0,0x76,0x38,0xc0,0x90,0x76,0xde,0xeb,0xa0,0x78, - 0x18,0xa2,0x90,0x78,0xbe,0xcd,0xa0,0x79,0xf8,0x84,0x90,0x7a,0x9e,0xaf,0xa0,0x7b, - 0xd8,0x66,0x90,0x7c,0x7e,0x91,0xa0,0x7d,0xb8,0x48,0x90,0x7e,0x5e,0x73,0xa0,0x7f, - 0x98,0x2a,0x90,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0x91, - 0x26,0x0,0x0,0xff,0xff,0x9d,0x90,0x1,0x4,0xff,0xff,0x8f,0x80,0x0,0x8,0xff, - 0xff,0x9d,0x90,0x1,0xc,0xff,0xff,0x9d,0x90,0x1,0x10,0x4c,0x4d,0x54,0x0,0x50, - 0x44,0x54,0x0,0x50,0x53,0x54,0x0,0x50,0x57,0x54,0x0,0x50,0x50,0x54,0x0,0x0, - 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x1,0x54,0x5a,0x69,0x66,0x32,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbb,0x0,0x0,0x0, - 0x5,0x0,0x0,0x0,0x14,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff, - 0xff,0x5e,0x4,0x1a,0xc0,0xff,0xff,0xff,0xff,0x9e,0xa6,0x48,0xa0,0xff,0xff,0xff, - 0xff,0x9f,0xbb,0x15,0x90,0xff,0xff,0xff,0xff,0xa0,0x86,0x2a,0xa0,0xff,0xff,0xff, - 0xff,0xa1,0x9a,0xf7,0x90,0xff,0xff,0xff,0xff,0xcb,0x89,0x1a,0xa0,0xff,0xff,0xff, - 0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x61,0x26,0x10,0xff,0xff,0xff, - 0xff,0xd6,0xfe,0x74,0x5c,0xff,0xff,0xff,0xff,0xd8,0x80,0xad,0x90,0xff,0xff,0xff, - 0xff,0xda,0xfe,0xc3,0x90,0xff,0xff,0xff,0xff,0xdb,0xc0,0x90,0x10,0xff,0xff,0xff, - 0xff,0xdc,0xde,0xa5,0x90,0xff,0xff,0xff,0xff,0xdd,0xa9,0xac,0x90,0xff,0xff,0xff, - 0xff,0xde,0xbe,0x87,0x90,0xff,0xff,0xff,0xff,0xdf,0x89,0x8e,0x90,0xff,0xff,0xff, - 0xff,0xe0,0x9e,0x69,0x90,0xff,0xff,0xff,0xff,0xe1,0x69,0x70,0x90,0xff,0xff,0xff, - 0xff,0xe2,0x7e,0x4b,0x90,0xff,0xff,0xff,0xff,0xe3,0x49,0x52,0x90,0xff,0xff,0xff, - 0xff,0xe4,0x5e,0x2d,0x90,0xff,0xff,0xff,0xff,0xe5,0x29,0x34,0x90,0xff,0xff,0xff, - 0xff,0xe6,0x47,0x4a,0x10,0xff,0xff,0xff,0xff,0xe7,0x12,0x51,0x10,0xff,0xff,0xff, - 0xff,0xe8,0x27,0x2c,0x10,0xff,0xff,0xff,0xff,0xe8,0xf2,0x33,0x10,0xff,0xff,0xff, - 0xff,0xea,0x7,0xe,0x10,0xff,0xff,0xff,0xff,0xea,0xd2,0x15,0x10,0xff,0xff,0xff, - 0xff,0xeb,0xe6,0xf0,0x10,0xff,0xff,0xff,0xff,0xec,0xb1,0xf7,0x10,0xff,0xff,0xff, - 0xff,0xed,0xc6,0xd2,0x10,0xff,0xff,0xff,0xff,0xee,0x91,0xd9,0x10,0xff,0xff,0xff, - 0xff,0xef,0xaf,0xee,0x90,0xff,0xff,0xff,0xff,0xf0,0x71,0xbb,0x10,0xff,0xff,0xff, - 0xff,0xf1,0x8f,0xd0,0x90,0xff,0xff,0xff,0xff,0xf2,0x7f,0xc1,0x90,0xff,0xff,0xff, - 0xff,0xf3,0x6f,0xb2,0x90,0xff,0xff,0xff,0xff,0xf4,0x5f,0xa3,0x90,0xff,0xff,0xff, - 0xff,0xf5,0x4f,0x94,0x90,0xff,0xff,0xff,0xff,0xf6,0x3f,0x85,0x90,0xff,0xff,0xff, - 0xff,0xf7,0x2f,0x76,0x90,0xff,0xff,0xff,0xff,0xf8,0x28,0xa2,0x10,0xff,0xff,0xff, - 0xff,0xf9,0xf,0x58,0x90,0xff,0xff,0xff,0xff,0xfa,0x8,0x84,0x10,0xff,0xff,0xff, - 0xff,0xfa,0xf8,0x83,0x20,0xff,0xff,0xff,0xff,0xfb,0xe8,0x66,0x10,0xff,0xff,0xff, - 0xff,0xfc,0xd8,0x65,0x20,0xff,0xff,0xff,0xff,0xfd,0xc8,0x48,0x10,0xff,0xff,0xff, - 0xff,0xfe,0xb8,0x47,0x20,0xff,0xff,0xff,0xff,0xff,0xa8,0x2a,0x10,0x0,0x0,0x0, - 0x0,0x0,0x98,0x29,0x20,0x0,0x0,0x0,0x0,0x1,0x88,0xc,0x10,0x0,0x0,0x0, - 0x0,0x2,0x78,0xb,0x20,0x0,0x0,0x0,0x0,0x3,0x71,0x28,0x90,0x0,0x0,0x0, - 0x0,0x4,0x61,0x27,0xa0,0x0,0x0,0x0,0x0,0x5,0x51,0xa,0x90,0x0,0x0,0x0, - 0x0,0x6,0x41,0x9,0xa0,0x0,0x0,0x0,0x0,0x7,0x30,0xec,0x90,0x0,0x0,0x0, - 0x0,0x7,0x8d,0x43,0xa0,0x0,0x0,0x0,0x0,0x9,0x10,0xce,0x90,0x0,0x0,0x0, - 0x0,0x9,0xad,0xbf,0x20,0x0,0x0,0x0,0x0,0xa,0xf0,0xb0,0x90,0x0,0x0,0x0, - 0x0,0xb,0xe0,0xaf,0xa0,0x0,0x0,0x0,0x0,0xc,0xd9,0xcd,0x10,0x0,0x0,0x0, - 0x0,0xd,0xc0,0x91,0xa0,0x0,0x0,0x0,0x0,0xe,0xb9,0xaf,0x10,0x0,0x0,0x0, - 0x0,0xf,0xa9,0xae,0x20,0x0,0x0,0x0,0x0,0x10,0x99,0x91,0x10,0x0,0x0,0x0, - 0x0,0x11,0x89,0x90,0x20,0x0,0x0,0x0,0x0,0x12,0x79,0x73,0x10,0x0,0x0,0x0, - 0x0,0x13,0x69,0x72,0x20,0x0,0x0,0x0,0x0,0x14,0x59,0x55,0x10,0x0,0x0,0x0, - 0x0,0x15,0x49,0x54,0x20,0x0,0x0,0x0,0x0,0x16,0x39,0x37,0x10,0x0,0x0,0x0, - 0x0,0x17,0x29,0x36,0x20,0x0,0x0,0x0,0x0,0x18,0x22,0x53,0x90,0x0,0x0,0x0, - 0x0,0x19,0x9,0x18,0x20,0x0,0x0,0x0,0x0,0x1a,0x2,0x35,0x90,0x0,0x0,0x0, - 0x0,0x1a,0xf2,0x34,0xa0,0x0,0x0,0x0,0x0,0x1b,0xe2,0x17,0x90,0x0,0x0,0x0, - 0x0,0x1c,0xd2,0x16,0xa0,0x0,0x0,0x0,0x0,0x1d,0xc1,0xf9,0x90,0x0,0x0,0x0, - 0x0,0x1e,0xb1,0xf8,0xa0,0x0,0x0,0x0,0x0,0x1f,0xa1,0xdb,0x90,0x0,0x0,0x0, - 0x0,0x20,0x76,0x2b,0x20,0x0,0x0,0x0,0x0,0x21,0x81,0xbd,0x90,0x0,0x0,0x0, - 0x0,0x22,0x56,0xd,0x20,0x0,0x0,0x0,0x0,0x23,0x6a,0xda,0x10,0x0,0x0,0x0, - 0x0,0x24,0x35,0xef,0x20,0x0,0x0,0x0,0x0,0x25,0x4a,0xbc,0x10,0x0,0x0,0x0, - 0x0,0x26,0x15,0xd1,0x20,0x0,0x0,0x0,0x0,0x27,0x2a,0x9e,0x10,0x0,0x0,0x0, - 0x0,0x27,0xfe,0xed,0xa0,0x0,0x0,0x0,0x0,0x29,0xa,0x80,0x10,0x0,0x0,0x0, - 0x0,0x29,0xde,0xcf,0xa0,0x0,0x0,0x0,0x0,0x2a,0xea,0x62,0x10,0x0,0x0,0x0, - 0x0,0x2b,0xbe,0xb1,0xa0,0x0,0x0,0x0,0x0,0x2c,0xd3,0x7e,0x90,0x0,0x0,0x0, - 0x0,0x2d,0x9e,0x93,0xa0,0x0,0x0,0x0,0x0,0x2e,0xb3,0x60,0x90,0x0,0x0,0x0, - 0x0,0x2f,0x7e,0x75,0xa0,0x0,0x0,0x0,0x0,0x30,0x93,0x42,0x90,0x0,0x0,0x0, - 0x0,0x31,0x67,0x92,0x20,0x0,0x0,0x0,0x0,0x32,0x73,0x24,0x90,0x0,0x0,0x0, - 0x0,0x33,0x47,0x74,0x20,0x0,0x0,0x0,0x0,0x34,0x53,0x6,0x90,0x0,0x0,0x0, - 0x0,0x35,0x27,0x56,0x20,0x0,0x0,0x0,0x0,0x36,0x32,0xe8,0x90,0x0,0x0,0x0, - 0x0,0x37,0x7,0x38,0x20,0x0,0x0,0x0,0x0,0x38,0x1c,0x5,0x10,0x0,0x0,0x0, - 0x0,0x38,0xe7,0x1a,0x20,0x0,0x0,0x0,0x0,0x39,0xfb,0xe7,0x10,0x0,0x0,0x0, - 0x0,0x3a,0xc6,0xfc,0x20,0x0,0x0,0x0,0x0,0x3b,0xdb,0xc9,0x10,0x0,0x0,0x0, - 0x0,0x3c,0xb0,0x18,0xa0,0x0,0x0,0x0,0x0,0x3d,0xbb,0xab,0x10,0x0,0x0,0x0, - 0x0,0x3e,0x8f,0xfa,0xa0,0x0,0x0,0x0,0x0,0x3f,0x9b,0x8d,0x10,0x0,0x0,0x0, - 0x0,0x40,0x6f,0xdc,0xa0,0x0,0x0,0x0,0x0,0x41,0x84,0xa9,0x90,0x0,0x0,0x0, - 0x0,0x42,0x4f,0xbe,0xa0,0x0,0x0,0x0,0x0,0x43,0x64,0x8b,0x90,0x0,0x0,0x0, - 0x0,0x44,0x2f,0xa0,0xa0,0x0,0x0,0x0,0x0,0x45,0x44,0x6d,0x90,0x0,0x0,0x0, - 0x0,0x45,0xf3,0xd3,0x20,0x0,0x0,0x0,0x0,0x47,0x2d,0x8a,0x10,0x0,0x0,0x0, - 0x0,0x47,0xd3,0xb5,0x20,0x0,0x0,0x0,0x0,0x49,0xd,0x6c,0x10,0x0,0x0,0x0, - 0x0,0x49,0xb3,0x97,0x20,0x0,0x0,0x0,0x0,0x4a,0xed,0x4e,0x10,0x0,0x0,0x0, - 0x0,0x4b,0x9c,0xb3,0xa0,0x0,0x0,0x0,0x0,0x4c,0xd6,0x6a,0x90,0x0,0x0,0x0, - 0x0,0x4d,0x7c,0x95,0xa0,0x0,0x0,0x0,0x0,0x4e,0xb6,0x4c,0x90,0x0,0x0,0x0, - 0x0,0x4f,0x5c,0x77,0xa0,0x0,0x0,0x0,0x0,0x50,0x96,0x2e,0x90,0x0,0x0,0x0, - 0x0,0x51,0x3c,0x59,0xa0,0x0,0x0,0x0,0x0,0x52,0x76,0x10,0x90,0x0,0x0,0x0, - 0x0,0x53,0x1c,0x3b,0xa0,0x0,0x0,0x0,0x0,0x54,0x55,0xf2,0x90,0x0,0x0,0x0, - 0x0,0x54,0xfc,0x1d,0xa0,0x0,0x0,0x0,0x0,0x56,0x35,0xd4,0x90,0x0,0x0,0x0, - 0x0,0x56,0xe5,0x3a,0x20,0x0,0x0,0x0,0x0,0x58,0x1e,0xf1,0x10,0x0,0x0,0x0, - 0x0,0x58,0xc5,0x1c,0x20,0x0,0x0,0x0,0x0,0x59,0xfe,0xd3,0x10,0x0,0x0,0x0, - 0x0,0x5a,0xa4,0xfe,0x20,0x0,0x0,0x0,0x0,0x5b,0xde,0xb5,0x10,0x0,0x0,0x0, - 0x0,0x5c,0x84,0xe0,0x20,0x0,0x0,0x0,0x0,0x5d,0xbe,0x97,0x10,0x0,0x0,0x0, - 0x0,0x5e,0x64,0xc2,0x20,0x0,0x0,0x0,0x0,0x5f,0x9e,0x79,0x10,0x0,0x0,0x0, - 0x0,0x60,0x4d,0xde,0xa0,0x0,0x0,0x0,0x0,0x61,0x87,0x95,0x90,0x0,0x0,0x0, - 0x0,0x62,0x2d,0xc0,0xa0,0x0,0x0,0x0,0x0,0x63,0x67,0x77,0x90,0x0,0x0,0x0, - 0x0,0x64,0xd,0xa2,0xa0,0x0,0x0,0x0,0x0,0x65,0x47,0x59,0x90,0x0,0x0,0x0, - 0x0,0x65,0xed,0x84,0xa0,0x0,0x0,0x0,0x0,0x67,0x27,0x3b,0x90,0x0,0x0,0x0, - 0x0,0x67,0xcd,0x66,0xa0,0x0,0x0,0x0,0x0,0x69,0x7,0x1d,0x90,0x0,0x0,0x0, - 0x0,0x69,0xad,0x48,0xa0,0x0,0x0,0x0,0x0,0x6a,0xe6,0xff,0x90,0x0,0x0,0x0, - 0x0,0x6b,0x96,0x65,0x20,0x0,0x0,0x0,0x0,0x6c,0xd0,0x1c,0x10,0x0,0x0,0x0, - 0x0,0x6d,0x76,0x47,0x20,0x0,0x0,0x0,0x0,0x6e,0xaf,0xfe,0x10,0x0,0x0,0x0, - 0x0,0x6f,0x56,0x29,0x20,0x0,0x0,0x0,0x0,0x70,0x8f,0xe0,0x10,0x0,0x0,0x0, - 0x0,0x71,0x36,0xb,0x20,0x0,0x0,0x0,0x0,0x72,0x6f,0xc2,0x10,0x0,0x0,0x0, - 0x0,0x73,0x15,0xed,0x20,0x0,0x0,0x0,0x0,0x74,0x4f,0xa4,0x10,0x0,0x0,0x0, - 0x0,0x74,0xff,0x9,0xa0,0x0,0x0,0x0,0x0,0x76,0x38,0xc0,0x90,0x0,0x0,0x0, - 0x0,0x76,0xde,0xeb,0xa0,0x0,0x0,0x0,0x0,0x78,0x18,0xa2,0x90,0x0,0x0,0x0, - 0x0,0x78,0xbe,0xcd,0xa0,0x0,0x0,0x0,0x0,0x79,0xf8,0x84,0x90,0x0,0x0,0x0, - 0x0,0x7a,0x9e,0xaf,0xa0,0x0,0x0,0x0,0x0,0x7b,0xd8,0x66,0x90,0x0,0x0,0x0, - 0x0,0x7c,0x7e,0x91,0xa0,0x0,0x0,0x0,0x0,0x7d,0xb8,0x48,0x90,0x0,0x0,0x0, - 0x0,0x7e,0x5e,0x73,0xa0,0x0,0x0,0x0,0x0,0x7f,0x98,0x2a,0x90,0x0,0x2,0x1, - 0x2,0x1,0x2,0x3,0x4,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0x91,0x26,0x0,0x0,0xff,0xff, - 0x9d,0x90,0x1,0x4,0xff,0xff,0x8f,0x80,0x0,0x8,0xff,0xff,0x9d,0x90,0x1,0xc, - 0xff,0xff,0x9d,0x90,0x1,0x10,0x4c,0x4d,0x54,0x0,0x50,0x44,0x54,0x0,0x50,0x53, - 0x54,0x0,0x50,0x57,0x54,0x0,0x50,0x50,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0, - 0x0,0x0,0x0,0x1,0xa,0x50,0x53,0x54,0x38,0x50,0x44,0x54,0x2c,0x4d,0x33,0x2e, - 0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/US/Pacific-New - 0x0,0x0,0xb,0x1d, + 0x0,0x0,0x74,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x19,0x80,0x0,0x0,0x0,0x14, + 0xfe,0x66,0xe0,0x16,0x38,0x40,0xf8,0x16,0xe7,0x8a,0x68,0x18,0x21,0x5d,0x78,0x18, + 0xc7,0x6c,0x68,0x1a,0x1,0x3f,0x78,0x1a,0xa7,0x4e,0x68,0x1b,0xe1,0x21,0x78,0x1c, + 0x87,0x30,0x68,0x1d,0xc1,0x3,0x78,0x1e,0x79,0x8e,0x70,0x1f,0x97,0xaa,0xf8,0x20, + 0x59,0x70,0x70,0x21,0x80,0xc7,0x78,0x22,0x42,0x8c,0xf0,0x23,0x69,0xe3,0xf8,0x24, + 0x22,0x6e,0xf0,0x25,0x49,0xc5,0xf8,0x25,0xef,0xdb,0xf0,0x27,0x29,0xa7,0xf8,0x27, + 0xcf,0xbd,0xf0,0x29,0x9,0x89,0xf8,0x29,0xaf,0x9f,0xf0,0x2a,0xe9,0x6b,0xf8,0x2b, + 0x98,0xbc,0x70,0x2c,0xd2,0x88,0x78,0x2d,0x78,0x9e,0x70,0x2e,0xb2,0x6a,0x78,0x2f, + 0x58,0x80,0x70,0x30,0x92,0x4c,0x78,0x31,0x5d,0x4c,0x70,0x32,0x72,0x2e,0x78,0x33, + 0x3d,0x2e,0x70,0x34,0x52,0x10,0x78,0x35,0x1d,0x10,0x70,0x36,0x31,0xf2,0x78,0x36, + 0xfc,0xf2,0x70,0x38,0x1b,0xe,0xf8,0x38,0xdc,0xd4,0x70,0x39,0xa7,0xe2,0x78,0x3a, + 0xbc,0xb6,0x70,0x3b,0xda,0xd2,0xf8,0x3c,0xa5,0xd2,0xf0,0x3d,0xba,0xb4,0xf8,0x3e, + 0x85,0xb4,0xf0,0x3f,0x9a,0x96,0xf8,0x40,0x65,0x96,0xf0,0x41,0x83,0xb3,0x78,0x42, + 0x45,0x78,0xf0,0x43,0x63,0x95,0x78,0x44,0x2e,0x95,0x70,0x45,0x43,0x77,0x78,0x46, + 0x5,0x3c,0xf0,0x47,0x23,0x59,0x78,0x47,0xf7,0x93,0xf0,0x48,0xe7,0x8b,0xf8,0x49, + 0xd7,0x75,0xf0,0x4a,0xc7,0x6d,0xf8,0x4b,0xb7,0x57,0xf0,0x4c,0xa7,0x4f,0xf8,0x4d, + 0x97,0x39,0xf0,0x4e,0x87,0x31,0xf8,0x4f,0x77,0x1b,0xf0,0x50,0x70,0x4e,0x78,0x51, + 0x60,0x38,0x70,0x52,0x50,0x30,0x78,0x53,0x40,0x1a,0x70,0x54,0x30,0x12,0x78,0x55, + 0x1f,0xfc,0x70,0x56,0xf,0xf4,0x78,0x56,0xff,0xde,0x70,0x57,0xef,0xd6,0x78,0x58, + 0xdf,0xc0,0x70,0x59,0xcf,0xb8,0x78,0x5a,0xbf,0xa2,0x70,0x5b,0xb8,0xd4,0xf8,0x5c, + 0xa8,0xbe,0xf0,0x5d,0x98,0xb6,0xf8,0x5e,0x88,0xa0,0xf0,0x5f,0x78,0x98,0xf8,0x60, + 0x68,0x82,0xf0,0x61,0x58,0x7a,0xf8,0x62,0x48,0x64,0xf0,0x63,0x38,0x5c,0xf8,0x64, + 0x28,0x46,0xf0,0x65,0x18,0x3e,0xf8,0x66,0x11,0x63,0x70,0x67,0x1,0x5b,0x78,0x67, + 0xf1,0x45,0x70,0x68,0xe1,0x3d,0x78,0x69,0xd1,0x27,0x70,0x6a,0xc1,0x1f,0x78,0x6b, + 0xb1,0x9,0x70,0x6c,0xa1,0x1,0x78,0x6d,0x90,0xeb,0x70,0x6e,0x80,0xe3,0x78,0x6f, + 0x70,0xcd,0x70,0x70,0x69,0xff,0xf8,0x71,0x59,0xe9,0xf0,0x72,0x49,0xe1,0xf8,0x73, + 0x39,0xcb,0xf0,0x74,0x29,0xc3,0xf8,0x75,0x19,0xad,0xf0,0x76,0x9,0xa5,0xf8,0x76, + 0xf9,0x8f,0xf0,0x77,0xe9,0x87,0xf8,0x78,0xd9,0x71,0xf0,0x79,0xc9,0x69,0xf8,0x7a, + 0xb9,0x53,0xf0,0x7b,0xb2,0x86,0x78,0x7c,0xa2,0x70,0x70,0x7d,0x92,0x68,0x78,0x7e, + 0x82,0x52,0x70,0x7f,0x72,0x4a,0x78,0x7f,0xff,0xff,0xff,0x1,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x4,0x0, + 0x0,0x95,0x24,0x0,0x0,0x0,0x0,0x8c,0xa0,0x0,0x4,0x0,0x0,0xa1,0xb8,0x1, + 0x9,0x0,0x0,0x93,0xa8,0x0,0xf,0x0,0x0,0x9a,0xb0,0x1,0x15,0x4c,0x4d,0x54, + 0x0,0x41,0x45,0x53,0x54,0x0,0x2b,0x31,0x31,0x33,0x30,0x0,0x2b,0x31,0x30,0x33, + 0x30,0x0,0x2b,0x31,0x31,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x75,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x19,0xf8,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x73,0x16,0x77,0xdc,0x0,0x0,0x0,0x0, + 0x14,0xfe,0x66,0xe0,0x0,0x0,0x0,0x0,0x16,0x38,0x40,0xf8,0x0,0x0,0x0,0x0, + 0x16,0xe7,0x8a,0x68,0x0,0x0,0x0,0x0,0x18,0x21,0x5d,0x78,0x0,0x0,0x0,0x0, + 0x18,0xc7,0x6c,0x68,0x0,0x0,0x0,0x0,0x1a,0x1,0x3f,0x78,0x0,0x0,0x0,0x0, + 0x1a,0xa7,0x4e,0x68,0x0,0x0,0x0,0x0,0x1b,0xe1,0x21,0x78,0x0,0x0,0x0,0x0, + 0x1c,0x87,0x30,0x68,0x0,0x0,0x0,0x0,0x1d,0xc1,0x3,0x78,0x0,0x0,0x0,0x0, + 0x1e,0x79,0x8e,0x70,0x0,0x0,0x0,0x0,0x1f,0x97,0xaa,0xf8,0x0,0x0,0x0,0x0, + 0x20,0x59,0x70,0x70,0x0,0x0,0x0,0x0,0x21,0x80,0xc7,0x78,0x0,0x0,0x0,0x0, + 0x22,0x42,0x8c,0xf0,0x0,0x0,0x0,0x0,0x23,0x69,0xe3,0xf8,0x0,0x0,0x0,0x0, + 0x24,0x22,0x6e,0xf0,0x0,0x0,0x0,0x0,0x25,0x49,0xc5,0xf8,0x0,0x0,0x0,0x0, + 0x25,0xef,0xdb,0xf0,0x0,0x0,0x0,0x0,0x27,0x29,0xa7,0xf8,0x0,0x0,0x0,0x0, + 0x27,0xcf,0xbd,0xf0,0x0,0x0,0x0,0x0,0x29,0x9,0x89,0xf8,0x0,0x0,0x0,0x0, + 0x29,0xaf,0x9f,0xf0,0x0,0x0,0x0,0x0,0x2a,0xe9,0x6b,0xf8,0x0,0x0,0x0,0x0, + 0x2b,0x98,0xbc,0x70,0x0,0x0,0x0,0x0,0x2c,0xd2,0x88,0x78,0x0,0x0,0x0,0x0, + 0x2d,0x78,0x9e,0x70,0x0,0x0,0x0,0x0,0x2e,0xb2,0x6a,0x78,0x0,0x0,0x0,0x0, + 0x2f,0x58,0x80,0x70,0x0,0x0,0x0,0x0,0x30,0x92,0x4c,0x78,0x0,0x0,0x0,0x0, + 0x31,0x5d,0x4c,0x70,0x0,0x0,0x0,0x0,0x32,0x72,0x2e,0x78,0x0,0x0,0x0,0x0, + 0x33,0x3d,0x2e,0x70,0x0,0x0,0x0,0x0,0x34,0x52,0x10,0x78,0x0,0x0,0x0,0x0, + 0x35,0x1d,0x10,0x70,0x0,0x0,0x0,0x0,0x36,0x31,0xf2,0x78,0x0,0x0,0x0,0x0, + 0x36,0xfc,0xf2,0x70,0x0,0x0,0x0,0x0,0x38,0x1b,0xe,0xf8,0x0,0x0,0x0,0x0, + 0x38,0xdc,0xd4,0x70,0x0,0x0,0x0,0x0,0x39,0xa7,0xe2,0x78,0x0,0x0,0x0,0x0, + 0x3a,0xbc,0xb6,0x70,0x0,0x0,0x0,0x0,0x3b,0xda,0xd2,0xf8,0x0,0x0,0x0,0x0, + 0x3c,0xa5,0xd2,0xf0,0x0,0x0,0x0,0x0,0x3d,0xba,0xb4,0xf8,0x0,0x0,0x0,0x0, + 0x3e,0x85,0xb4,0xf0,0x0,0x0,0x0,0x0,0x3f,0x9a,0x96,0xf8,0x0,0x0,0x0,0x0, + 0x40,0x65,0x96,0xf0,0x0,0x0,0x0,0x0,0x41,0x83,0xb3,0x78,0x0,0x0,0x0,0x0, + 0x42,0x45,0x78,0xf0,0x0,0x0,0x0,0x0,0x43,0x63,0x95,0x78,0x0,0x0,0x0,0x0, + 0x44,0x2e,0x95,0x70,0x0,0x0,0x0,0x0,0x45,0x43,0x77,0x78,0x0,0x0,0x0,0x0, + 0x46,0x5,0x3c,0xf0,0x0,0x0,0x0,0x0,0x47,0x23,0x59,0x78,0x0,0x0,0x0,0x0, + 0x47,0xf7,0x93,0xf0,0x0,0x0,0x0,0x0,0x48,0xe7,0x8b,0xf8,0x0,0x0,0x0,0x0, + 0x49,0xd7,0x75,0xf0,0x0,0x0,0x0,0x0,0x4a,0xc7,0x6d,0xf8,0x0,0x0,0x0,0x0, + 0x4b,0xb7,0x57,0xf0,0x0,0x0,0x0,0x0,0x4c,0xa7,0x4f,0xf8,0x0,0x0,0x0,0x0, + 0x4d,0x97,0x39,0xf0,0x0,0x0,0x0,0x0,0x4e,0x87,0x31,0xf8,0x0,0x0,0x0,0x0, + 0x4f,0x77,0x1b,0xf0,0x0,0x0,0x0,0x0,0x50,0x70,0x4e,0x78,0x0,0x0,0x0,0x0, + 0x51,0x60,0x38,0x70,0x0,0x0,0x0,0x0,0x52,0x50,0x30,0x78,0x0,0x0,0x0,0x0, + 0x53,0x40,0x1a,0x70,0x0,0x0,0x0,0x0,0x54,0x30,0x12,0x78,0x0,0x0,0x0,0x0, + 0x55,0x1f,0xfc,0x70,0x0,0x0,0x0,0x0,0x56,0xf,0xf4,0x78,0x0,0x0,0x0,0x0, + 0x56,0xff,0xde,0x70,0x0,0x0,0x0,0x0,0x57,0xef,0xd6,0x78,0x0,0x0,0x0,0x0, + 0x58,0xdf,0xc0,0x70,0x0,0x0,0x0,0x0,0x59,0xcf,0xb8,0x78,0x0,0x0,0x0,0x0, + 0x5a,0xbf,0xa2,0x70,0x0,0x0,0x0,0x0,0x5b,0xb8,0xd4,0xf8,0x0,0x0,0x0,0x0, + 0x5c,0xa8,0xbe,0xf0,0x0,0x0,0x0,0x0,0x5d,0x98,0xb6,0xf8,0x0,0x0,0x0,0x0, + 0x5e,0x88,0xa0,0xf0,0x0,0x0,0x0,0x0,0x5f,0x78,0x98,0xf8,0x0,0x0,0x0,0x0, + 0x60,0x68,0x82,0xf0,0x0,0x0,0x0,0x0,0x61,0x58,0x7a,0xf8,0x0,0x0,0x0,0x0, + 0x62,0x48,0x64,0xf0,0x0,0x0,0x0,0x0,0x63,0x38,0x5c,0xf8,0x0,0x0,0x0,0x0, + 0x64,0x28,0x46,0xf0,0x0,0x0,0x0,0x0,0x65,0x18,0x3e,0xf8,0x0,0x0,0x0,0x0, + 0x66,0x11,0x63,0x70,0x0,0x0,0x0,0x0,0x67,0x1,0x5b,0x78,0x0,0x0,0x0,0x0, + 0x67,0xf1,0x45,0x70,0x0,0x0,0x0,0x0,0x68,0xe1,0x3d,0x78,0x0,0x0,0x0,0x0, + 0x69,0xd1,0x27,0x70,0x0,0x0,0x0,0x0,0x6a,0xc1,0x1f,0x78,0x0,0x0,0x0,0x0, + 0x6b,0xb1,0x9,0x70,0x0,0x0,0x0,0x0,0x6c,0xa1,0x1,0x78,0x0,0x0,0x0,0x0, + 0x6d,0x90,0xeb,0x70,0x0,0x0,0x0,0x0,0x6e,0x80,0xe3,0x78,0x0,0x0,0x0,0x0, + 0x6f,0x70,0xcd,0x70,0x0,0x0,0x0,0x0,0x70,0x69,0xff,0xf8,0x0,0x0,0x0,0x0, + 0x71,0x59,0xe9,0xf0,0x0,0x0,0x0,0x0,0x72,0x49,0xe1,0xf8,0x0,0x0,0x0,0x0, + 0x73,0x39,0xcb,0xf0,0x0,0x0,0x0,0x0,0x74,0x29,0xc3,0xf8,0x0,0x0,0x0,0x0, + 0x75,0x19,0xad,0xf0,0x0,0x0,0x0,0x0,0x76,0x9,0xa5,0xf8,0x0,0x0,0x0,0x0, + 0x76,0xf9,0x8f,0xf0,0x0,0x0,0x0,0x0,0x77,0xe9,0x87,0xf8,0x0,0x0,0x0,0x0, + 0x78,0xd9,0x71,0xf0,0x0,0x0,0x0,0x0,0x79,0xc9,0x69,0xf8,0x0,0x0,0x0,0x0, + 0x7a,0xb9,0x53,0xf0,0x0,0x0,0x0,0x0,0x7b,0xb2,0x86,0x78,0x0,0x0,0x0,0x0, + 0x7c,0xa2,0x70,0x70,0x0,0x0,0x0,0x0,0x7d,0x92,0x68,0x78,0x0,0x0,0x0,0x0, + 0x7e,0x82,0x52,0x70,0x0,0x0,0x0,0x0,0x7f,0x72,0x4a,0x78,0x0,0x0,0x0,0x0, + 0x7f,0xff,0xff,0xff,0x0,0x1,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x4,0x0,0x0,0x95,0x24,0x0,0x0,0x0, + 0x0,0x8c,0xa0,0x0,0x4,0x0,0x0,0xa1,0xb8,0x1,0x9,0x0,0x0,0x93,0xa8,0x0, + 0xf,0x0,0x0,0x9a,0xb0,0x1,0x15,0x4c,0x4d,0x54,0x0,0x41,0x45,0x53,0x54,0x0, + 0x2b,0x31,0x31,0x33,0x30,0x0,0x2b,0x31,0x30,0x33,0x30,0x0,0x2b,0x31,0x31,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2b,0x31,0x30,0x33, + 0x30,0x3e,0x2d,0x31,0x30,0x3a,0x33,0x30,0x3c,0x2b,0x31,0x31,0x3e,0x2d,0x31,0x31, + 0x2c,0x4d,0x31,0x30,0x2e,0x31,0x2e,0x30,0x2c,0x4d,0x34,0x2e,0x31,0x2e,0x30,0xa, + + // /home/konrad/src/smoke/tzone/zoneinfo/Australia/Eucla + 0x0,0x0,0x1,0xf7, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xba,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0x9e, - 0xa6,0x48,0xa0,0x9f,0xbb,0x15,0x90,0xa0,0x86,0x2a,0xa0,0xa1,0x9a,0xf7,0x90,0xcb, - 0x89,0x1a,0xa0,0xd2,0x23,0xf4,0x70,0xd2,0x61,0x26,0x10,0xd6,0xfe,0x74,0x5c,0xd8, - 0x80,0xad,0x90,0xda,0xfe,0xc3,0x90,0xdb,0xc0,0x90,0x10,0xdc,0xde,0xa5,0x90,0xdd, - 0xa9,0xac,0x90,0xde,0xbe,0x87,0x90,0xdf,0x89,0x8e,0x90,0xe0,0x9e,0x69,0x90,0xe1, - 0x69,0x70,0x90,0xe2,0x7e,0x4b,0x90,0xe3,0x49,0x52,0x90,0xe4,0x5e,0x2d,0x90,0xe5, - 0x29,0x34,0x90,0xe6,0x47,0x4a,0x10,0xe7,0x12,0x51,0x10,0xe8,0x27,0x2c,0x10,0xe8, - 0xf2,0x33,0x10,0xea,0x7,0xe,0x10,0xea,0xd2,0x15,0x10,0xeb,0xe6,0xf0,0x10,0xec, - 0xb1,0xf7,0x10,0xed,0xc6,0xd2,0x10,0xee,0x91,0xd9,0x10,0xef,0xaf,0xee,0x90,0xf0, - 0x71,0xbb,0x10,0xf1,0x8f,0xd0,0x90,0xf2,0x7f,0xc1,0x90,0xf3,0x6f,0xb2,0x90,0xf4, - 0x5f,0xa3,0x90,0xf5,0x4f,0x94,0x90,0xf6,0x3f,0x85,0x90,0xf7,0x2f,0x76,0x90,0xf8, - 0x28,0xa2,0x10,0xf9,0xf,0x58,0x90,0xfa,0x8,0x84,0x10,0xfa,0xf8,0x83,0x20,0xfb, - 0xe8,0x66,0x10,0xfc,0xd8,0x65,0x20,0xfd,0xc8,0x48,0x10,0xfe,0xb8,0x47,0x20,0xff, - 0xa8,0x2a,0x10,0x0,0x98,0x29,0x20,0x1,0x88,0xc,0x10,0x2,0x78,0xb,0x20,0x3, - 0x71,0x28,0x90,0x4,0x61,0x27,0xa0,0x5,0x51,0xa,0x90,0x6,0x41,0x9,0xa0,0x7, - 0x30,0xec,0x90,0x7,0x8d,0x43,0xa0,0x9,0x10,0xce,0x90,0x9,0xad,0xbf,0x20,0xa, - 0xf0,0xb0,0x90,0xb,0xe0,0xaf,0xa0,0xc,0xd9,0xcd,0x10,0xd,0xc0,0x91,0xa0,0xe, - 0xb9,0xaf,0x10,0xf,0xa9,0xae,0x20,0x10,0x99,0x91,0x10,0x11,0x89,0x90,0x20,0x12, - 0x79,0x73,0x10,0x13,0x69,0x72,0x20,0x14,0x59,0x55,0x10,0x15,0x49,0x54,0x20,0x16, - 0x39,0x37,0x10,0x17,0x29,0x36,0x20,0x18,0x22,0x53,0x90,0x19,0x9,0x18,0x20,0x1a, - 0x2,0x35,0x90,0x1a,0xf2,0x34,0xa0,0x1b,0xe2,0x17,0x90,0x1c,0xd2,0x16,0xa0,0x1d, - 0xc1,0xf9,0x90,0x1e,0xb1,0xf8,0xa0,0x1f,0xa1,0xdb,0x90,0x20,0x76,0x2b,0x20,0x21, - 0x81,0xbd,0x90,0x22,0x56,0xd,0x20,0x23,0x6a,0xda,0x10,0x24,0x35,0xef,0x20,0x25, - 0x4a,0xbc,0x10,0x26,0x15,0xd1,0x20,0x27,0x2a,0x9e,0x10,0x27,0xfe,0xed,0xa0,0x29, - 0xa,0x80,0x10,0x29,0xde,0xcf,0xa0,0x2a,0xea,0x62,0x10,0x2b,0xbe,0xb1,0xa0,0x2c, - 0xd3,0x7e,0x90,0x2d,0x9e,0x93,0xa0,0x2e,0xb3,0x60,0x90,0x2f,0x7e,0x75,0xa0,0x30, - 0x93,0x42,0x90,0x31,0x67,0x92,0x20,0x32,0x73,0x24,0x90,0x33,0x47,0x74,0x20,0x34, - 0x53,0x6,0x90,0x35,0x27,0x56,0x20,0x36,0x32,0xe8,0x90,0x37,0x7,0x38,0x20,0x38, - 0x1c,0x5,0x10,0x38,0xe7,0x1a,0x20,0x39,0xfb,0xe7,0x10,0x3a,0xc6,0xfc,0x20,0x3b, - 0xdb,0xc9,0x10,0x3c,0xb0,0x18,0xa0,0x3d,0xbb,0xab,0x10,0x3e,0x8f,0xfa,0xa0,0x3f, - 0x9b,0x8d,0x10,0x40,0x6f,0xdc,0xa0,0x41,0x84,0xa9,0x90,0x42,0x4f,0xbe,0xa0,0x43, - 0x64,0x8b,0x90,0x44,0x2f,0xa0,0xa0,0x45,0x44,0x6d,0x90,0x45,0xf3,0xd3,0x20,0x47, - 0x2d,0x8a,0x10,0x47,0xd3,0xb5,0x20,0x49,0xd,0x6c,0x10,0x49,0xb3,0x97,0x20,0x4a, - 0xed,0x4e,0x10,0x4b,0x9c,0xb3,0xa0,0x4c,0xd6,0x6a,0x90,0x4d,0x7c,0x95,0xa0,0x4e, - 0xb6,0x4c,0x90,0x4f,0x5c,0x77,0xa0,0x50,0x96,0x2e,0x90,0x51,0x3c,0x59,0xa0,0x52, - 0x76,0x10,0x90,0x53,0x1c,0x3b,0xa0,0x54,0x55,0xf2,0x90,0x54,0xfc,0x1d,0xa0,0x56, - 0x35,0xd4,0x90,0x56,0xe5,0x3a,0x20,0x58,0x1e,0xf1,0x10,0x58,0xc5,0x1c,0x20,0x59, - 0xfe,0xd3,0x10,0x5a,0xa4,0xfe,0x20,0x5b,0xde,0xb5,0x10,0x5c,0x84,0xe0,0x20,0x5d, - 0xbe,0x97,0x10,0x5e,0x64,0xc2,0x20,0x5f,0x9e,0x79,0x10,0x60,0x4d,0xde,0xa0,0x61, - 0x87,0x95,0x90,0x62,0x2d,0xc0,0xa0,0x63,0x67,0x77,0x90,0x64,0xd,0xa2,0xa0,0x65, - 0x47,0x59,0x90,0x65,0xed,0x84,0xa0,0x67,0x27,0x3b,0x90,0x67,0xcd,0x66,0xa0,0x69, - 0x7,0x1d,0x90,0x69,0xad,0x48,0xa0,0x6a,0xe6,0xff,0x90,0x6b,0x96,0x65,0x20,0x6c, - 0xd0,0x1c,0x10,0x6d,0x76,0x47,0x20,0x6e,0xaf,0xfe,0x10,0x6f,0x56,0x29,0x20,0x70, - 0x8f,0xe0,0x10,0x71,0x36,0xb,0x20,0x72,0x6f,0xc2,0x10,0x73,0x15,0xed,0x20,0x74, - 0x4f,0xa4,0x10,0x74,0xff,0x9,0xa0,0x76,0x38,0xc0,0x90,0x76,0xde,0xeb,0xa0,0x78, - 0x18,0xa2,0x90,0x78,0xbe,0xcd,0xa0,0x79,0xf8,0x84,0x90,0x7a,0x9e,0xaf,0xa0,0x7b, - 0xd8,0x66,0x90,0x7c,0x7e,0x91,0xa0,0x7d,0xb8,0x48,0x90,0x7e,0x5e,0x73,0xa0,0x7f, - 0x98,0x2a,0x90,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0x91, - 0x26,0x0,0x0,0xff,0xff,0x9d,0x90,0x1,0x4,0xff,0xff,0x8f,0x80,0x0,0x8,0xff, - 0xff,0x9d,0x90,0x1,0xc,0xff,0xff,0x9d,0x90,0x1,0x10,0x4c,0x4d,0x54,0x0,0x50, - 0x44,0x54,0x0,0x50,0x53,0x54,0x0,0x50,0x57,0x54,0x0,0x50,0x50,0x54,0x0,0x0, - 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x1,0x54,0x5a,0x69,0x66,0x32,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbb,0x0,0x0,0x0, - 0x5,0x0,0x0,0x0,0x14,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff, - 0xff,0x5e,0x4,0x1a,0xc0,0xff,0xff,0xff,0xff,0x9e,0xa6,0x48,0xa0,0xff,0xff,0xff, - 0xff,0x9f,0xbb,0x15,0x90,0xff,0xff,0xff,0xff,0xa0,0x86,0x2a,0xa0,0xff,0xff,0xff, - 0xff,0xa1,0x9a,0xf7,0x90,0xff,0xff,0xff,0xff,0xcb,0x89,0x1a,0xa0,0xff,0xff,0xff, - 0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x61,0x26,0x10,0xff,0xff,0xff, - 0xff,0xd6,0xfe,0x74,0x5c,0xff,0xff,0xff,0xff,0xd8,0x80,0xad,0x90,0xff,0xff,0xff, - 0xff,0xda,0xfe,0xc3,0x90,0xff,0xff,0xff,0xff,0xdb,0xc0,0x90,0x10,0xff,0xff,0xff, - 0xff,0xdc,0xde,0xa5,0x90,0xff,0xff,0xff,0xff,0xdd,0xa9,0xac,0x90,0xff,0xff,0xff, - 0xff,0xde,0xbe,0x87,0x90,0xff,0xff,0xff,0xff,0xdf,0x89,0x8e,0x90,0xff,0xff,0xff, - 0xff,0xe0,0x9e,0x69,0x90,0xff,0xff,0xff,0xff,0xe1,0x69,0x70,0x90,0xff,0xff,0xff, - 0xff,0xe2,0x7e,0x4b,0x90,0xff,0xff,0xff,0xff,0xe3,0x49,0x52,0x90,0xff,0xff,0xff, - 0xff,0xe4,0x5e,0x2d,0x90,0xff,0xff,0xff,0xff,0xe5,0x29,0x34,0x90,0xff,0xff,0xff, - 0xff,0xe6,0x47,0x4a,0x10,0xff,0xff,0xff,0xff,0xe7,0x12,0x51,0x10,0xff,0xff,0xff, - 0xff,0xe8,0x27,0x2c,0x10,0xff,0xff,0xff,0xff,0xe8,0xf2,0x33,0x10,0xff,0xff,0xff, - 0xff,0xea,0x7,0xe,0x10,0xff,0xff,0xff,0xff,0xea,0xd2,0x15,0x10,0xff,0xff,0xff, - 0xff,0xeb,0xe6,0xf0,0x10,0xff,0xff,0xff,0xff,0xec,0xb1,0xf7,0x10,0xff,0xff,0xff, - 0xff,0xed,0xc6,0xd2,0x10,0xff,0xff,0xff,0xff,0xee,0x91,0xd9,0x10,0xff,0xff,0xff, - 0xff,0xef,0xaf,0xee,0x90,0xff,0xff,0xff,0xff,0xf0,0x71,0xbb,0x10,0xff,0xff,0xff, - 0xff,0xf1,0x8f,0xd0,0x90,0xff,0xff,0xff,0xff,0xf2,0x7f,0xc1,0x90,0xff,0xff,0xff, - 0xff,0xf3,0x6f,0xb2,0x90,0xff,0xff,0xff,0xff,0xf4,0x5f,0xa3,0x90,0xff,0xff,0xff, - 0xff,0xf5,0x4f,0x94,0x90,0xff,0xff,0xff,0xff,0xf6,0x3f,0x85,0x90,0xff,0xff,0xff, - 0xff,0xf7,0x2f,0x76,0x90,0xff,0xff,0xff,0xff,0xf8,0x28,0xa2,0x10,0xff,0xff,0xff, - 0xff,0xf9,0xf,0x58,0x90,0xff,0xff,0xff,0xff,0xfa,0x8,0x84,0x10,0xff,0xff,0xff, - 0xff,0xfa,0xf8,0x83,0x20,0xff,0xff,0xff,0xff,0xfb,0xe8,0x66,0x10,0xff,0xff,0xff, - 0xff,0xfc,0xd8,0x65,0x20,0xff,0xff,0xff,0xff,0xfd,0xc8,0x48,0x10,0xff,0xff,0xff, - 0xff,0xfe,0xb8,0x47,0x20,0xff,0xff,0xff,0xff,0xff,0xa8,0x2a,0x10,0x0,0x0,0x0, - 0x0,0x0,0x98,0x29,0x20,0x0,0x0,0x0,0x0,0x1,0x88,0xc,0x10,0x0,0x0,0x0, - 0x0,0x2,0x78,0xb,0x20,0x0,0x0,0x0,0x0,0x3,0x71,0x28,0x90,0x0,0x0,0x0, - 0x0,0x4,0x61,0x27,0xa0,0x0,0x0,0x0,0x0,0x5,0x51,0xa,0x90,0x0,0x0,0x0, - 0x0,0x6,0x41,0x9,0xa0,0x0,0x0,0x0,0x0,0x7,0x30,0xec,0x90,0x0,0x0,0x0, - 0x0,0x7,0x8d,0x43,0xa0,0x0,0x0,0x0,0x0,0x9,0x10,0xce,0x90,0x0,0x0,0x0, - 0x0,0x9,0xad,0xbf,0x20,0x0,0x0,0x0,0x0,0xa,0xf0,0xb0,0x90,0x0,0x0,0x0, - 0x0,0xb,0xe0,0xaf,0xa0,0x0,0x0,0x0,0x0,0xc,0xd9,0xcd,0x10,0x0,0x0,0x0, - 0x0,0xd,0xc0,0x91,0xa0,0x0,0x0,0x0,0x0,0xe,0xb9,0xaf,0x10,0x0,0x0,0x0, - 0x0,0xf,0xa9,0xae,0x20,0x0,0x0,0x0,0x0,0x10,0x99,0x91,0x10,0x0,0x0,0x0, - 0x0,0x11,0x89,0x90,0x20,0x0,0x0,0x0,0x0,0x12,0x79,0x73,0x10,0x0,0x0,0x0, - 0x0,0x13,0x69,0x72,0x20,0x0,0x0,0x0,0x0,0x14,0x59,0x55,0x10,0x0,0x0,0x0, - 0x0,0x15,0x49,0x54,0x20,0x0,0x0,0x0,0x0,0x16,0x39,0x37,0x10,0x0,0x0,0x0, - 0x0,0x17,0x29,0x36,0x20,0x0,0x0,0x0,0x0,0x18,0x22,0x53,0x90,0x0,0x0,0x0, - 0x0,0x19,0x9,0x18,0x20,0x0,0x0,0x0,0x0,0x1a,0x2,0x35,0x90,0x0,0x0,0x0, - 0x0,0x1a,0xf2,0x34,0xa0,0x0,0x0,0x0,0x0,0x1b,0xe2,0x17,0x90,0x0,0x0,0x0, - 0x0,0x1c,0xd2,0x16,0xa0,0x0,0x0,0x0,0x0,0x1d,0xc1,0xf9,0x90,0x0,0x0,0x0, - 0x0,0x1e,0xb1,0xf8,0xa0,0x0,0x0,0x0,0x0,0x1f,0xa1,0xdb,0x90,0x0,0x0,0x0, - 0x0,0x20,0x76,0x2b,0x20,0x0,0x0,0x0,0x0,0x21,0x81,0xbd,0x90,0x0,0x0,0x0, - 0x0,0x22,0x56,0xd,0x20,0x0,0x0,0x0,0x0,0x23,0x6a,0xda,0x10,0x0,0x0,0x0, - 0x0,0x24,0x35,0xef,0x20,0x0,0x0,0x0,0x0,0x25,0x4a,0xbc,0x10,0x0,0x0,0x0, - 0x0,0x26,0x15,0xd1,0x20,0x0,0x0,0x0,0x0,0x27,0x2a,0x9e,0x10,0x0,0x0,0x0, - 0x0,0x27,0xfe,0xed,0xa0,0x0,0x0,0x0,0x0,0x29,0xa,0x80,0x10,0x0,0x0,0x0, - 0x0,0x29,0xde,0xcf,0xa0,0x0,0x0,0x0,0x0,0x2a,0xea,0x62,0x10,0x0,0x0,0x0, - 0x0,0x2b,0xbe,0xb1,0xa0,0x0,0x0,0x0,0x0,0x2c,0xd3,0x7e,0x90,0x0,0x0,0x0, - 0x0,0x2d,0x9e,0x93,0xa0,0x0,0x0,0x0,0x0,0x2e,0xb3,0x60,0x90,0x0,0x0,0x0, - 0x0,0x2f,0x7e,0x75,0xa0,0x0,0x0,0x0,0x0,0x30,0x93,0x42,0x90,0x0,0x0,0x0, - 0x0,0x31,0x67,0x92,0x20,0x0,0x0,0x0,0x0,0x32,0x73,0x24,0x90,0x0,0x0,0x0, - 0x0,0x33,0x47,0x74,0x20,0x0,0x0,0x0,0x0,0x34,0x53,0x6,0x90,0x0,0x0,0x0, - 0x0,0x35,0x27,0x56,0x20,0x0,0x0,0x0,0x0,0x36,0x32,0xe8,0x90,0x0,0x0,0x0, - 0x0,0x37,0x7,0x38,0x20,0x0,0x0,0x0,0x0,0x38,0x1c,0x5,0x10,0x0,0x0,0x0, - 0x0,0x38,0xe7,0x1a,0x20,0x0,0x0,0x0,0x0,0x39,0xfb,0xe7,0x10,0x0,0x0,0x0, - 0x0,0x3a,0xc6,0xfc,0x20,0x0,0x0,0x0,0x0,0x3b,0xdb,0xc9,0x10,0x0,0x0,0x0, - 0x0,0x3c,0xb0,0x18,0xa0,0x0,0x0,0x0,0x0,0x3d,0xbb,0xab,0x10,0x0,0x0,0x0, - 0x0,0x3e,0x8f,0xfa,0xa0,0x0,0x0,0x0,0x0,0x3f,0x9b,0x8d,0x10,0x0,0x0,0x0, - 0x0,0x40,0x6f,0xdc,0xa0,0x0,0x0,0x0,0x0,0x41,0x84,0xa9,0x90,0x0,0x0,0x0, - 0x0,0x42,0x4f,0xbe,0xa0,0x0,0x0,0x0,0x0,0x43,0x64,0x8b,0x90,0x0,0x0,0x0, - 0x0,0x44,0x2f,0xa0,0xa0,0x0,0x0,0x0,0x0,0x45,0x44,0x6d,0x90,0x0,0x0,0x0, - 0x0,0x45,0xf3,0xd3,0x20,0x0,0x0,0x0,0x0,0x47,0x2d,0x8a,0x10,0x0,0x0,0x0, - 0x0,0x47,0xd3,0xb5,0x20,0x0,0x0,0x0,0x0,0x49,0xd,0x6c,0x10,0x0,0x0,0x0, - 0x0,0x49,0xb3,0x97,0x20,0x0,0x0,0x0,0x0,0x4a,0xed,0x4e,0x10,0x0,0x0,0x0, - 0x0,0x4b,0x9c,0xb3,0xa0,0x0,0x0,0x0,0x0,0x4c,0xd6,0x6a,0x90,0x0,0x0,0x0, - 0x0,0x4d,0x7c,0x95,0xa0,0x0,0x0,0x0,0x0,0x4e,0xb6,0x4c,0x90,0x0,0x0,0x0, - 0x0,0x4f,0x5c,0x77,0xa0,0x0,0x0,0x0,0x0,0x50,0x96,0x2e,0x90,0x0,0x0,0x0, - 0x0,0x51,0x3c,0x59,0xa0,0x0,0x0,0x0,0x0,0x52,0x76,0x10,0x90,0x0,0x0,0x0, - 0x0,0x53,0x1c,0x3b,0xa0,0x0,0x0,0x0,0x0,0x54,0x55,0xf2,0x90,0x0,0x0,0x0, - 0x0,0x54,0xfc,0x1d,0xa0,0x0,0x0,0x0,0x0,0x56,0x35,0xd4,0x90,0x0,0x0,0x0, - 0x0,0x56,0xe5,0x3a,0x20,0x0,0x0,0x0,0x0,0x58,0x1e,0xf1,0x10,0x0,0x0,0x0, - 0x0,0x58,0xc5,0x1c,0x20,0x0,0x0,0x0,0x0,0x59,0xfe,0xd3,0x10,0x0,0x0,0x0, - 0x0,0x5a,0xa4,0xfe,0x20,0x0,0x0,0x0,0x0,0x5b,0xde,0xb5,0x10,0x0,0x0,0x0, - 0x0,0x5c,0x84,0xe0,0x20,0x0,0x0,0x0,0x0,0x5d,0xbe,0x97,0x10,0x0,0x0,0x0, - 0x0,0x5e,0x64,0xc2,0x20,0x0,0x0,0x0,0x0,0x5f,0x9e,0x79,0x10,0x0,0x0,0x0, - 0x0,0x60,0x4d,0xde,0xa0,0x0,0x0,0x0,0x0,0x61,0x87,0x95,0x90,0x0,0x0,0x0, - 0x0,0x62,0x2d,0xc0,0xa0,0x0,0x0,0x0,0x0,0x63,0x67,0x77,0x90,0x0,0x0,0x0, - 0x0,0x64,0xd,0xa2,0xa0,0x0,0x0,0x0,0x0,0x65,0x47,0x59,0x90,0x0,0x0,0x0, - 0x0,0x65,0xed,0x84,0xa0,0x0,0x0,0x0,0x0,0x67,0x27,0x3b,0x90,0x0,0x0,0x0, - 0x0,0x67,0xcd,0x66,0xa0,0x0,0x0,0x0,0x0,0x69,0x7,0x1d,0x90,0x0,0x0,0x0, - 0x0,0x69,0xad,0x48,0xa0,0x0,0x0,0x0,0x0,0x6a,0xe6,0xff,0x90,0x0,0x0,0x0, - 0x0,0x6b,0x96,0x65,0x20,0x0,0x0,0x0,0x0,0x6c,0xd0,0x1c,0x10,0x0,0x0,0x0, - 0x0,0x6d,0x76,0x47,0x20,0x0,0x0,0x0,0x0,0x6e,0xaf,0xfe,0x10,0x0,0x0,0x0, - 0x0,0x6f,0x56,0x29,0x20,0x0,0x0,0x0,0x0,0x70,0x8f,0xe0,0x10,0x0,0x0,0x0, - 0x0,0x71,0x36,0xb,0x20,0x0,0x0,0x0,0x0,0x72,0x6f,0xc2,0x10,0x0,0x0,0x0, - 0x0,0x73,0x15,0xed,0x20,0x0,0x0,0x0,0x0,0x74,0x4f,0xa4,0x10,0x0,0x0,0x0, - 0x0,0x74,0xff,0x9,0xa0,0x0,0x0,0x0,0x0,0x76,0x38,0xc0,0x90,0x0,0x0,0x0, - 0x0,0x76,0xde,0xeb,0xa0,0x0,0x0,0x0,0x0,0x78,0x18,0xa2,0x90,0x0,0x0,0x0, - 0x0,0x78,0xbe,0xcd,0xa0,0x0,0x0,0x0,0x0,0x79,0xf8,0x84,0x90,0x0,0x0,0x0, - 0x0,0x7a,0x9e,0xaf,0xa0,0x0,0x0,0x0,0x0,0x7b,0xd8,0x66,0x90,0x0,0x0,0x0, - 0x0,0x7c,0x7e,0x91,0xa0,0x0,0x0,0x0,0x0,0x7d,0xb8,0x48,0x90,0x0,0x0,0x0, - 0x0,0x7e,0x5e,0x73,0xa0,0x0,0x0,0x0,0x0,0x7f,0x98,0x2a,0x90,0x0,0x2,0x1, - 0x2,0x1,0x2,0x3,0x4,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0x91,0x26,0x0,0x0,0xff,0xff, - 0x9d,0x90,0x1,0x4,0xff,0xff,0x8f,0x80,0x0,0x8,0xff,0xff,0x9d,0x90,0x1,0xc, - 0xff,0xff,0x9d,0x90,0x1,0x10,0x4c,0x4d,0x54,0x0,0x50,0x44,0x54,0x0,0x50,0x53, - 0x54,0x0,0x50,0x57,0x54,0x0,0x50,0x50,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0, - 0x0,0x0,0x0,0x1,0xa,0x50,0x53,0x54,0x38,0x50,0x44,0x54,0x2c,0x4d,0x33,0x2e, - 0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/US/Mountain - 0x0,0x0,0x9,0x95, + 0x0,0x0,0x14,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x10,0x80,0x0,0x0,0x0,0x9c, + 0x4e,0xb8,0x30,0x9c,0xbc,0x32,0x84,0xcb,0x54,0xc4,0x94,0xcb,0xc7,0x69,0x4,0xcc, + 0xb7,0x68,0x14,0xcd,0xa7,0x4b,0x4,0x9,0xf,0xf1,0x14,0x9,0xb6,0xe,0x14,0x1a, + 0x1,0x58,0x14,0x1a,0xa7,0x75,0x14,0x29,0x25,0x52,0x14,0x29,0xaf,0xbf,0x94,0x45, + 0x71,0xb4,0x94,0x46,0x5,0x5c,0x94,0x47,0x23,0x72,0x14,0x47,0xee,0x79,0x14,0x49, + 0x3,0x54,0x14,0x49,0xce,0x5b,0x14,0x7f,0xff,0xff,0xff,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x4,0x0, + 0x0,0x78,0xd0,0x0,0x0,0x0,0x0,0x89,0x1c,0x1,0x4,0x0,0x0,0x7b,0xc,0x0, + 0xa,0x0,0x0,0x89,0x1c,0x1,0x4,0x0,0x0,0x7b,0xc,0x0,0xa,0x4c,0x4d,0x54, + 0x0,0x2b,0x30,0x39,0x34,0x35,0x0,0x2b,0x30,0x38,0x34,0x35,0x0,0x0,0x0,0x0, + 0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0, + 0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x15,0x0,0x0,0x0,0x5,0x0, + 0x0,0x0,0x10,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x74, + 0xa6,0xa,0xb0,0xff,0xff,0xff,0xff,0x9c,0x4e,0xb8,0x30,0xff,0xff,0xff,0xff,0x9c, + 0xbc,0x32,0x84,0xff,0xff,0xff,0xff,0xcb,0x54,0xc4,0x94,0xff,0xff,0xff,0xff,0xcb, + 0xc7,0x69,0x4,0xff,0xff,0xff,0xff,0xcc,0xb7,0x68,0x14,0xff,0xff,0xff,0xff,0xcd, + 0xa7,0x4b,0x4,0x0,0x0,0x0,0x0,0x9,0xf,0xf1,0x14,0x0,0x0,0x0,0x0,0x9, + 0xb6,0xe,0x14,0x0,0x0,0x0,0x0,0x1a,0x1,0x58,0x14,0x0,0x0,0x0,0x0,0x1a, + 0xa7,0x75,0x14,0x0,0x0,0x0,0x0,0x29,0x25,0x52,0x14,0x0,0x0,0x0,0x0,0x29, + 0xaf,0xbf,0x94,0x0,0x0,0x0,0x0,0x45,0x71,0xb4,0x94,0x0,0x0,0x0,0x0,0x46, + 0x5,0x5c,0x94,0x0,0x0,0x0,0x0,0x47,0x23,0x72,0x14,0x0,0x0,0x0,0x0,0x47, + 0xee,0x79,0x14,0x0,0x0,0x0,0x0,0x49,0x3,0x54,0x14,0x0,0x0,0x0,0x0,0x49, + 0xce,0x5b,0x14,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x4, + 0x0,0x0,0x78,0xd0,0x0,0x0,0x0,0x0,0x89,0x1c,0x1,0x4,0x0,0x0,0x7b,0xc, + 0x0,0xa,0x0,0x0,0x89,0x1c,0x1,0x4,0x0,0x0,0x7b,0xc,0x0,0xa,0x4c,0x4d, + 0x54,0x0,0x2b,0x30,0x39,0x34,0x35,0x0,0x2b,0x30,0x38,0x34,0x35,0x0,0x0,0x0, + 0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2b,0x30,0x38,0x34,0x35,0x3e, + 0x2d,0x38,0x3a,0x34,0x35,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Australia/Brisbane + 0x0,0x0,0x1,0xc4, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x9e,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0x9e, - 0xa6,0x3a,0x90,0x9f,0xbb,0x7,0x80,0xa0,0x86,0x1c,0x90,0xa1,0x9a,0xe9,0x80,0xa2, - 0x65,0xfe,0x90,0xa3,0x84,0x6,0x0,0xa4,0x45,0xe0,0x90,0xa4,0x8f,0xa6,0x80,0xcb, - 0x89,0xc,0x90,0xd2,0x23,0xf4,0x70,0xd2,0x61,0x18,0x0,0xf7,0x2f,0x76,0x90,0xf8, - 0x28,0x94,0x0,0xf9,0xf,0x58,0x90,0xfa,0x8,0x76,0x0,0xfa,0xf8,0x75,0x10,0xfb, - 0xe8,0x58,0x0,0xfc,0xd8,0x57,0x10,0xfd,0xc8,0x3a,0x0,0xfe,0xb8,0x39,0x10,0xff, - 0xa8,0x1c,0x0,0x0,0x98,0x1b,0x10,0x1,0x87,0xfe,0x0,0x2,0x77,0xfd,0x10,0x3, - 0x71,0x1a,0x80,0x4,0x61,0x19,0x90,0x5,0x50,0xfc,0x80,0x6,0x40,0xfb,0x90,0x7, - 0x30,0xde,0x80,0x7,0x8d,0x35,0x90,0x9,0x10,0xc0,0x80,0x9,0xad,0xb1,0x10,0xa, - 0xf0,0xa2,0x80,0xb,0xe0,0xa1,0x90,0xc,0xd9,0xbf,0x0,0xd,0xc0,0x83,0x90,0xe, - 0xb9,0xa1,0x0,0xf,0xa9,0xa0,0x10,0x10,0x99,0x83,0x0,0x11,0x89,0x82,0x10,0x12, - 0x79,0x65,0x0,0x13,0x69,0x64,0x10,0x14,0x59,0x47,0x0,0x15,0x49,0x46,0x10,0x16, - 0x39,0x29,0x0,0x17,0x29,0x28,0x10,0x18,0x22,0x45,0x80,0x19,0x9,0xa,0x10,0x1a, - 0x2,0x27,0x80,0x1a,0xf2,0x26,0x90,0x1b,0xe2,0x9,0x80,0x1c,0xd2,0x8,0x90,0x1d, - 0xc1,0xeb,0x80,0x1e,0xb1,0xea,0x90,0x1f,0xa1,0xcd,0x80,0x20,0x76,0x1d,0x10,0x21, - 0x81,0xaf,0x80,0x22,0x55,0xff,0x10,0x23,0x6a,0xcc,0x0,0x24,0x35,0xe1,0x10,0x25, - 0x4a,0xae,0x0,0x26,0x15,0xc3,0x10,0x27,0x2a,0x90,0x0,0x27,0xfe,0xdf,0x90,0x29, - 0xa,0x72,0x0,0x29,0xde,0xc1,0x90,0x2a,0xea,0x54,0x0,0x2b,0xbe,0xa3,0x90,0x2c, - 0xd3,0x70,0x80,0x2d,0x9e,0x85,0x90,0x2e,0xb3,0x52,0x80,0x2f,0x7e,0x67,0x90,0x30, - 0x93,0x34,0x80,0x31,0x67,0x84,0x10,0x32,0x73,0x16,0x80,0x33,0x47,0x66,0x10,0x34, - 0x52,0xf8,0x80,0x35,0x27,0x48,0x10,0x36,0x32,0xda,0x80,0x37,0x7,0x2a,0x10,0x38, - 0x1b,0xf7,0x0,0x38,0xe7,0xc,0x10,0x39,0xfb,0xd9,0x0,0x3a,0xc6,0xee,0x10,0x3b, - 0xdb,0xbb,0x0,0x3c,0xb0,0xa,0x90,0x3d,0xbb,0x9d,0x0,0x3e,0x8f,0xec,0x90,0x3f, - 0x9b,0x7f,0x0,0x40,0x6f,0xce,0x90,0x41,0x84,0x9b,0x80,0x42,0x4f,0xb0,0x90,0x43, - 0x64,0x7d,0x80,0x44,0x2f,0x92,0x90,0x45,0x44,0x5f,0x80,0x45,0xf3,0xc5,0x10,0x47, - 0x2d,0x7c,0x0,0x47,0xd3,0xa7,0x10,0x49,0xd,0x5e,0x0,0x49,0xb3,0x89,0x10,0x4a, - 0xed,0x40,0x0,0x4b,0x9c,0xa5,0x90,0x4c,0xd6,0x5c,0x80,0x4d,0x7c,0x87,0x90,0x4e, - 0xb6,0x3e,0x80,0x4f,0x5c,0x69,0x90,0x50,0x96,0x20,0x80,0x51,0x3c,0x4b,0x90,0x52, - 0x76,0x2,0x80,0x53,0x1c,0x2d,0x90,0x54,0x55,0xe4,0x80,0x54,0xfc,0xf,0x90,0x56, - 0x35,0xc6,0x80,0x56,0xe5,0x2c,0x10,0x58,0x1e,0xe3,0x0,0x58,0xc5,0xe,0x10,0x59, - 0xfe,0xc5,0x0,0x5a,0xa4,0xf0,0x10,0x5b,0xde,0xa7,0x0,0x5c,0x84,0xd2,0x10,0x5d, - 0xbe,0x89,0x0,0x5e,0x64,0xb4,0x10,0x5f,0x9e,0x6b,0x0,0x60,0x4d,0xd0,0x90,0x61, - 0x87,0x87,0x80,0x62,0x2d,0xb2,0x90,0x63,0x67,0x69,0x80,0x64,0xd,0x94,0x90,0x65, - 0x47,0x4b,0x80,0x65,0xed,0x76,0x90,0x67,0x27,0x2d,0x80,0x67,0xcd,0x58,0x90,0x69, - 0x7,0xf,0x80,0x69,0xad,0x3a,0x90,0x6a,0xe6,0xf1,0x80,0x6b,0x96,0x57,0x10,0x6c, - 0xd0,0xe,0x0,0x6d,0x76,0x39,0x10,0x6e,0xaf,0xf0,0x0,0x6f,0x56,0x1b,0x10,0x70, - 0x8f,0xd2,0x0,0x71,0x35,0xfd,0x10,0x72,0x6f,0xb4,0x0,0x73,0x15,0xdf,0x10,0x74, - 0x4f,0x96,0x0,0x74,0xfe,0xfb,0x90,0x76,0x38,0xb2,0x80,0x76,0xde,0xdd,0x90,0x78, - 0x18,0x94,0x80,0x78,0xbe,0xbf,0x90,0x79,0xf8,0x76,0x80,0x7a,0x9e,0xa1,0x90,0x7b, - 0xd8,0x58,0x80,0x7c,0x7e,0x83,0x90,0x7d,0xb8,0x3a,0x80,0x7e,0x5e,0x65,0x90,0x7f, - 0x98,0x1c,0x80,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0xff,0xff,0x9d,0x94,0x0,0x0,0xff,0xff,0xab,0xa0,0x1,0x4,0xff,0xff,0x9d, - 0x90,0x0,0x8,0xff,0xff,0xab,0xa0,0x1,0xc,0xff,0xff,0xab,0xa0,0x1,0x10,0x4c, - 0x4d,0x54,0x0,0x4d,0x44,0x54,0x0,0x4d,0x53,0x54,0x0,0x4d,0x57,0x54,0x0,0x4d, - 0x50,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x1,0x54,0x5a,0x69, - 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x9f,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0x5e,0x4,0xc,0xb0,0xff,0xff,0xff,0xff,0x9e,0xa6,0x3a, - 0x90,0xff,0xff,0xff,0xff,0x9f,0xbb,0x7,0x80,0xff,0xff,0xff,0xff,0xa0,0x86,0x1c, - 0x90,0xff,0xff,0xff,0xff,0xa1,0x9a,0xe9,0x80,0xff,0xff,0xff,0xff,0xa2,0x65,0xfe, - 0x90,0xff,0xff,0xff,0xff,0xa3,0x84,0x6,0x0,0xff,0xff,0xff,0xff,0xa4,0x45,0xe0, - 0x90,0xff,0xff,0xff,0xff,0xa4,0x8f,0xa6,0x80,0xff,0xff,0xff,0xff,0xcb,0x89,0xc, - 0x90,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x61,0x18, - 0x0,0xff,0xff,0xff,0xff,0xf7,0x2f,0x76,0x90,0xff,0xff,0xff,0xff,0xf8,0x28,0x94, - 0x0,0xff,0xff,0xff,0xff,0xf9,0xf,0x58,0x90,0xff,0xff,0xff,0xff,0xfa,0x8,0x76, - 0x0,0xff,0xff,0xff,0xff,0xfa,0xf8,0x75,0x10,0xff,0xff,0xff,0xff,0xfb,0xe8,0x58, - 0x0,0xff,0xff,0xff,0xff,0xfc,0xd8,0x57,0x10,0xff,0xff,0xff,0xff,0xfd,0xc8,0x3a, - 0x0,0xff,0xff,0xff,0xff,0xfe,0xb8,0x39,0x10,0xff,0xff,0xff,0xff,0xff,0xa8,0x1c, - 0x0,0x0,0x0,0x0,0x0,0x0,0x98,0x1b,0x10,0x0,0x0,0x0,0x0,0x1,0x87,0xfe, - 0x0,0x0,0x0,0x0,0x0,0x2,0x77,0xfd,0x10,0x0,0x0,0x0,0x0,0x3,0x71,0x1a, - 0x80,0x0,0x0,0x0,0x0,0x4,0x61,0x19,0x90,0x0,0x0,0x0,0x0,0x5,0x50,0xfc, - 0x80,0x0,0x0,0x0,0x0,0x6,0x40,0xfb,0x90,0x0,0x0,0x0,0x0,0x7,0x30,0xde, - 0x80,0x0,0x0,0x0,0x0,0x7,0x8d,0x35,0x90,0x0,0x0,0x0,0x0,0x9,0x10,0xc0, - 0x80,0x0,0x0,0x0,0x0,0x9,0xad,0xb1,0x10,0x0,0x0,0x0,0x0,0xa,0xf0,0xa2, - 0x80,0x0,0x0,0x0,0x0,0xb,0xe0,0xa1,0x90,0x0,0x0,0x0,0x0,0xc,0xd9,0xbf, - 0x0,0x0,0x0,0x0,0x0,0xd,0xc0,0x83,0x90,0x0,0x0,0x0,0x0,0xe,0xb9,0xa1, - 0x0,0x0,0x0,0x0,0x0,0xf,0xa9,0xa0,0x10,0x0,0x0,0x0,0x0,0x10,0x99,0x83, - 0x0,0x0,0x0,0x0,0x0,0x11,0x89,0x82,0x10,0x0,0x0,0x0,0x0,0x12,0x79,0x65, - 0x0,0x0,0x0,0x0,0x0,0x13,0x69,0x64,0x10,0x0,0x0,0x0,0x0,0x14,0x59,0x47, - 0x0,0x0,0x0,0x0,0x0,0x15,0x49,0x46,0x10,0x0,0x0,0x0,0x0,0x16,0x39,0x29, - 0x0,0x0,0x0,0x0,0x0,0x17,0x29,0x28,0x10,0x0,0x0,0x0,0x0,0x18,0x22,0x45, - 0x80,0x0,0x0,0x0,0x0,0x19,0x9,0xa,0x10,0x0,0x0,0x0,0x0,0x1a,0x2,0x27, - 0x80,0x0,0x0,0x0,0x0,0x1a,0xf2,0x26,0x90,0x0,0x0,0x0,0x0,0x1b,0xe2,0x9, - 0x80,0x0,0x0,0x0,0x0,0x1c,0xd2,0x8,0x90,0x0,0x0,0x0,0x0,0x1d,0xc1,0xeb, - 0x80,0x0,0x0,0x0,0x0,0x1e,0xb1,0xea,0x90,0x0,0x0,0x0,0x0,0x1f,0xa1,0xcd, - 0x80,0x0,0x0,0x0,0x0,0x20,0x76,0x1d,0x10,0x0,0x0,0x0,0x0,0x21,0x81,0xaf, - 0x80,0x0,0x0,0x0,0x0,0x22,0x55,0xff,0x10,0x0,0x0,0x0,0x0,0x23,0x6a,0xcc, - 0x0,0x0,0x0,0x0,0x0,0x24,0x35,0xe1,0x10,0x0,0x0,0x0,0x0,0x25,0x4a,0xae, - 0x0,0x0,0x0,0x0,0x0,0x26,0x15,0xc3,0x10,0x0,0x0,0x0,0x0,0x27,0x2a,0x90, - 0x0,0x0,0x0,0x0,0x0,0x27,0xfe,0xdf,0x90,0x0,0x0,0x0,0x0,0x29,0xa,0x72, - 0x0,0x0,0x0,0x0,0x0,0x29,0xde,0xc1,0x90,0x0,0x0,0x0,0x0,0x2a,0xea,0x54, - 0x0,0x0,0x0,0x0,0x0,0x2b,0xbe,0xa3,0x90,0x0,0x0,0x0,0x0,0x2c,0xd3,0x70, - 0x80,0x0,0x0,0x0,0x0,0x2d,0x9e,0x85,0x90,0x0,0x0,0x0,0x0,0x2e,0xb3,0x52, - 0x80,0x0,0x0,0x0,0x0,0x2f,0x7e,0x67,0x90,0x0,0x0,0x0,0x0,0x30,0x93,0x34, - 0x80,0x0,0x0,0x0,0x0,0x31,0x67,0x84,0x10,0x0,0x0,0x0,0x0,0x32,0x73,0x16, - 0x80,0x0,0x0,0x0,0x0,0x33,0x47,0x66,0x10,0x0,0x0,0x0,0x0,0x34,0x52,0xf8, - 0x80,0x0,0x0,0x0,0x0,0x35,0x27,0x48,0x10,0x0,0x0,0x0,0x0,0x36,0x32,0xda, - 0x80,0x0,0x0,0x0,0x0,0x37,0x7,0x2a,0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0xf7, - 0x0,0x0,0x0,0x0,0x0,0x38,0xe7,0xc,0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0xd9, - 0x0,0x0,0x0,0x0,0x0,0x3a,0xc6,0xee,0x10,0x0,0x0,0x0,0x0,0x3b,0xdb,0xbb, - 0x0,0x0,0x0,0x0,0x0,0x3c,0xb0,0xa,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x9d, - 0x0,0x0,0x0,0x0,0x0,0x3e,0x8f,0xec,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x7f, - 0x0,0x0,0x0,0x0,0x0,0x40,0x6f,0xce,0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x9b, - 0x80,0x0,0x0,0x0,0x0,0x42,0x4f,0xb0,0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x7d, - 0x80,0x0,0x0,0x0,0x0,0x44,0x2f,0x92,0x90,0x0,0x0,0x0,0x0,0x45,0x44,0x5f, - 0x80,0x0,0x0,0x0,0x0,0x45,0xf3,0xc5,0x10,0x0,0x0,0x0,0x0,0x47,0x2d,0x7c, - 0x0,0x0,0x0,0x0,0x0,0x47,0xd3,0xa7,0x10,0x0,0x0,0x0,0x0,0x49,0xd,0x5e, - 0x0,0x0,0x0,0x0,0x0,0x49,0xb3,0x89,0x10,0x0,0x0,0x0,0x0,0x4a,0xed,0x40, - 0x0,0x0,0x0,0x0,0x0,0x4b,0x9c,0xa5,0x90,0x0,0x0,0x0,0x0,0x4c,0xd6,0x5c, - 0x80,0x0,0x0,0x0,0x0,0x4d,0x7c,0x87,0x90,0x0,0x0,0x0,0x0,0x4e,0xb6,0x3e, - 0x80,0x0,0x0,0x0,0x0,0x4f,0x5c,0x69,0x90,0x0,0x0,0x0,0x0,0x50,0x96,0x20, - 0x80,0x0,0x0,0x0,0x0,0x51,0x3c,0x4b,0x90,0x0,0x0,0x0,0x0,0x52,0x76,0x2, - 0x80,0x0,0x0,0x0,0x0,0x53,0x1c,0x2d,0x90,0x0,0x0,0x0,0x0,0x54,0x55,0xe4, - 0x80,0x0,0x0,0x0,0x0,0x54,0xfc,0xf,0x90,0x0,0x0,0x0,0x0,0x56,0x35,0xc6, - 0x80,0x0,0x0,0x0,0x0,0x56,0xe5,0x2c,0x10,0x0,0x0,0x0,0x0,0x58,0x1e,0xe3, - 0x0,0x0,0x0,0x0,0x0,0x58,0xc5,0xe,0x10,0x0,0x0,0x0,0x0,0x59,0xfe,0xc5, - 0x0,0x0,0x0,0x0,0x0,0x5a,0xa4,0xf0,0x10,0x0,0x0,0x0,0x0,0x5b,0xde,0xa7, - 0x0,0x0,0x0,0x0,0x0,0x5c,0x84,0xd2,0x10,0x0,0x0,0x0,0x0,0x5d,0xbe,0x89, - 0x0,0x0,0x0,0x0,0x0,0x5e,0x64,0xb4,0x10,0x0,0x0,0x0,0x0,0x5f,0x9e,0x6b, - 0x0,0x0,0x0,0x0,0x0,0x60,0x4d,0xd0,0x90,0x0,0x0,0x0,0x0,0x61,0x87,0x87, - 0x80,0x0,0x0,0x0,0x0,0x62,0x2d,0xb2,0x90,0x0,0x0,0x0,0x0,0x63,0x67,0x69, - 0x80,0x0,0x0,0x0,0x0,0x64,0xd,0x94,0x90,0x0,0x0,0x0,0x0,0x65,0x47,0x4b, - 0x80,0x0,0x0,0x0,0x0,0x65,0xed,0x76,0x90,0x0,0x0,0x0,0x0,0x67,0x27,0x2d, - 0x80,0x0,0x0,0x0,0x0,0x67,0xcd,0x58,0x90,0x0,0x0,0x0,0x0,0x69,0x7,0xf, - 0x80,0x0,0x0,0x0,0x0,0x69,0xad,0x3a,0x90,0x0,0x0,0x0,0x0,0x6a,0xe6,0xf1, - 0x80,0x0,0x0,0x0,0x0,0x6b,0x96,0x57,0x10,0x0,0x0,0x0,0x0,0x6c,0xd0,0xe, - 0x0,0x0,0x0,0x0,0x0,0x6d,0x76,0x39,0x10,0x0,0x0,0x0,0x0,0x6e,0xaf,0xf0, - 0x0,0x0,0x0,0x0,0x0,0x6f,0x56,0x1b,0x10,0x0,0x0,0x0,0x0,0x70,0x8f,0xd2, - 0x0,0x0,0x0,0x0,0x0,0x71,0x35,0xfd,0x10,0x0,0x0,0x0,0x0,0x72,0x6f,0xb4, - 0x0,0x0,0x0,0x0,0x0,0x73,0x15,0xdf,0x10,0x0,0x0,0x0,0x0,0x74,0x4f,0x96, - 0x0,0x0,0x0,0x0,0x0,0x74,0xfe,0xfb,0x90,0x0,0x0,0x0,0x0,0x76,0x38,0xb2, - 0x80,0x0,0x0,0x0,0x0,0x76,0xde,0xdd,0x90,0x0,0x0,0x0,0x0,0x78,0x18,0x94, - 0x80,0x0,0x0,0x0,0x0,0x78,0xbe,0xbf,0x90,0x0,0x0,0x0,0x0,0x79,0xf8,0x76, - 0x80,0x0,0x0,0x0,0x0,0x7a,0x9e,0xa1,0x90,0x0,0x0,0x0,0x0,0x7b,0xd8,0x58, - 0x80,0x0,0x0,0x0,0x0,0x7c,0x7e,0x83,0x90,0x0,0x0,0x0,0x0,0x7d,0xb8,0x3a, - 0x80,0x0,0x0,0x0,0x0,0x7e,0x5e,0x65,0x90,0x0,0x0,0x0,0x0,0x7f,0x98,0x1c, - 0x80,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0xff,0xff,0x9d,0x94,0x0,0x0,0xff,0xff,0xab,0xa0,0x1,0x4,0xff,0xff,0x9d,0x90, - 0x0,0x8,0xff,0xff,0xab,0xa0,0x1,0xc,0xff,0xff,0xab,0xa0,0x1,0x10,0x4c,0x4d, - 0x54,0x0,0x4d,0x44,0x54,0x0,0x4d,0x53,0x54,0x0,0x4d,0x57,0x54,0x0,0x4d,0x50, - 0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x1,0xa,0x4d,0x53,0x54, - 0x37,0x4d,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e, - 0x31,0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/US/Arizona - 0x0,0x0,0x1,0x61, + 0x0,0x0,0x11,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xe,0x80,0x0,0x0,0x0,0x9c, + 0x4e,0xa6,0x9c,0x9c,0xbc,0x20,0xf0,0xcb,0x54,0xb3,0x0,0xcb,0xc7,0x57,0x70,0xcc, + 0xb7,0x56,0x80,0xcd,0xa7,0x39,0x70,0xce,0xa0,0x73,0x0,0xcf,0x87,0x1b,0x70,0x3, + 0x70,0x39,0x80,0x4,0xd,0x1c,0x0,0x25,0x49,0xcd,0x0,0x25,0xef,0xea,0x0,0x27, + 0x29,0xaf,0x0,0x27,0xcf,0xcc,0x0,0x29,0x9,0x91,0x0,0x29,0xaf,0xae,0x0,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x0,0x0,0x8f,0x78,0x0,0x0,0x0,0x0,0x9a,0xb0,0x1,0x4,0x0,0x0,0x8c,0xa0, + 0x0,0x9,0x0,0x0,0x9a,0xb0,0x1,0x4,0x0,0x0,0x8c,0xa0,0x0,0x9,0x4c,0x4d, + 0x54,0x0,0x41,0x45,0x44,0x54,0x0,0x41,0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x1, + 0x1,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0, + 0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x5,0x0,0x0, + 0x0,0xe,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x72,0xed, + 0x9f,0x8,0xff,0xff,0xff,0xff,0x9c,0x4e,0xa6,0x9c,0xff,0xff,0xff,0xff,0x9c,0xbc, + 0x20,0xf0,0xff,0xff,0xff,0xff,0xcb,0x54,0xb3,0x0,0xff,0xff,0xff,0xff,0xcb,0xc7, + 0x57,0x70,0xff,0xff,0xff,0xff,0xcc,0xb7,0x56,0x80,0xff,0xff,0xff,0xff,0xcd,0xa7, + 0x39,0x70,0xff,0xff,0xff,0xff,0xce,0xa0,0x73,0x0,0xff,0xff,0xff,0xff,0xcf,0x87, + 0x1b,0x70,0x0,0x0,0x0,0x0,0x3,0x70,0x39,0x80,0x0,0x0,0x0,0x0,0x4,0xd, + 0x1c,0x0,0x0,0x0,0x0,0x0,0x25,0x49,0xcd,0x0,0x0,0x0,0x0,0x0,0x25,0xef, + 0xea,0x0,0x0,0x0,0x0,0x0,0x27,0x29,0xaf,0x0,0x0,0x0,0x0,0x0,0x27,0xcf, + 0xcc,0x0,0x0,0x0,0x0,0x0,0x29,0x9,0x91,0x0,0x0,0x0,0x0,0x0,0x29,0xaf, + 0xae,0x0,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x0,0x0,0x8f,0x78,0x0,0x0,0x0,0x0,0x9a,0xb0,0x1,0x4, + 0x0,0x0,0x8c,0xa0,0x0,0x9,0x0,0x0,0x9a,0xb0,0x1,0x4,0x0,0x0,0x8c,0xa0, + 0x0,0x9,0x4c,0x4d,0x54,0x0,0x41,0x45,0x44,0x54,0x0,0x41,0x45,0x53,0x54,0x0, + 0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0xa,0x41,0x45,0x53,0x54,0x2d, + 0x31,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Australia/Victoria + 0x0,0x0,0x8,0xaf, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xb,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x10,0x80,0x0,0x0,0x0,0x9e, - 0xa6,0x3a,0x90,0x9f,0xbb,0x7,0x80,0xa0,0x86,0x1c,0x90,0xa1,0x9a,0xe9,0x80,0xcb, - 0x89,0xc,0x90,0xcf,0x17,0xdf,0x1c,0xcf,0x8f,0xe5,0xac,0xd0,0x81,0x1a,0x1c,0xfa, - 0xf8,0x75,0x10,0xfb,0xe8,0x58,0x0,0x2,0x1,0x2,0x1,0x2,0x3,0x2,0x3,0x2, - 0x1,0x2,0xff,0xff,0x96,0xee,0x0,0x0,0xff,0xff,0xab,0xa0,0x1,0x4,0xff,0xff, - 0x9d,0x90,0x0,0x8,0xff,0xff,0xab,0xa0,0x1,0xc,0x4c,0x4d,0x54,0x0,0x4d,0x44, - 0x54,0x0,0x4d,0x53,0x54,0x0,0x4d,0x57,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x10,0xf8,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x5e,0x4,0xc,0xb0,0xff,0xff, - 0xff,0xff,0x9e,0xa6,0x3a,0x90,0xff,0xff,0xff,0xff,0x9f,0xbb,0x7,0x80,0xff,0xff, - 0xff,0xff,0xa0,0x86,0x1c,0x90,0xff,0xff,0xff,0xff,0xa1,0x9a,0xe9,0x80,0xff,0xff, - 0xff,0xff,0xcb,0x89,0xc,0x90,0xff,0xff,0xff,0xff,0xcf,0x17,0xdf,0x1c,0xff,0xff, - 0xff,0xff,0xcf,0x8f,0xe5,0xac,0xff,0xff,0xff,0xff,0xd0,0x81,0x1a,0x1c,0xff,0xff, - 0xff,0xff,0xfa,0xf8,0x75,0x10,0xff,0xff,0xff,0xff,0xfb,0xe8,0x58,0x0,0x0,0x2, - 0x1,0x2,0x1,0x2,0x3,0x2,0x3,0x2,0x1,0x2,0xff,0xff,0x96,0xee,0x0,0x0, - 0xff,0xff,0xab,0xa0,0x1,0x4,0xff,0xff,0x9d,0x90,0x0,0x8,0xff,0xff,0xab,0xa0, - 0x1,0xc,0x4c,0x4d,0x54,0x0,0x4d,0x44,0x54,0x0,0x4d,0x53,0x54,0x0,0x4d,0x57, - 0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x4d,0x53,0x54,0x37,0xa, - - // /home/konrad/src/smoke/tzone/zoneinfo/US/East-Indiana - 0x0,0x0,0x6,0x8b, + 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x8e,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xe,0x80,0x0,0x0,0x0,0x9c, + 0x4e,0xa6,0x9c,0x9c,0xbc,0x20,0xf0,0xcb,0x54,0xb3,0x0,0xcb,0xc7,0x57,0x70,0xcc, + 0xb7,0x56,0x80,0xcd,0xa7,0x39,0x70,0xce,0xa0,0x73,0x0,0xcf,0x87,0x1b,0x70,0x3, + 0x70,0x39,0x80,0x4,0xd,0x1c,0x0,0x5,0x50,0x1b,0x80,0x5,0xf6,0x38,0x80,0x7, + 0x2f,0xfd,0x80,0x7,0xd6,0x1a,0x80,0x9,0xf,0xdf,0x80,0x9,0xb5,0xfc,0x80,0xa, + 0xef,0xc1,0x80,0xb,0x9f,0x19,0x0,0xc,0xd8,0xde,0x0,0xd,0x7e,0xfb,0x0,0xe, + 0xb8,0xc0,0x0,0xf,0x5e,0xdd,0x0,0x10,0x98,0xa2,0x0,0x11,0x3e,0xbf,0x0,0x12, + 0x78,0x84,0x0,0x13,0x1e,0xa1,0x0,0x14,0x58,0x66,0x0,0x14,0xfe,0x83,0x0,0x16, + 0x38,0x48,0x0,0x16,0xe7,0x9f,0x80,0x18,0x21,0x64,0x80,0x18,0xc7,0x81,0x80,0x1a, + 0x1,0x46,0x80,0x1a,0xa7,0x63,0x80,0x1b,0xe1,0x28,0x80,0x1c,0x87,0x45,0x80,0x1d, + 0xc1,0xa,0x80,0x1e,0x79,0x9c,0x80,0x1f,0x97,0xb2,0x0,0x20,0x59,0x7e,0x80,0x21, + 0x77,0x94,0x0,0x22,0x42,0x9b,0x0,0x23,0x69,0xeb,0x0,0x24,0x22,0x7d,0x0,0x25, + 0x49,0xcd,0x0,0x26,0x2,0x5f,0x0,0x27,0x29,0xaf,0x0,0x27,0xcf,0xcc,0x0,0x29, + 0x9,0x91,0x0,0x29,0xaf,0xae,0x0,0x2a,0xe9,0x73,0x0,0x2b,0x98,0xca,0x80,0x2c, + 0xd2,0x8f,0x80,0x2d,0x78,0xac,0x80,0x2e,0xb2,0x71,0x80,0x2f,0x74,0x3e,0x0,0x30, + 0x92,0x53,0x80,0x31,0x5d,0x5a,0x80,0x32,0x72,0x35,0x80,0x33,0x3d,0x3c,0x80,0x34, + 0x52,0x17,0x80,0x35,0x1d,0x1e,0x80,0x36,0x31,0xf9,0x80,0x36,0xfd,0x0,0x80,0x38, + 0x1b,0x16,0x0,0x38,0xdc,0xe2,0x80,0x39,0xa7,0xe9,0x80,0x3a,0xbc,0xc4,0x80,0x3b, + 0xda,0xda,0x0,0x3c,0xa5,0xe1,0x0,0x3d,0xba,0xbc,0x0,0x3e,0x85,0xc3,0x0,0x3f, + 0x9a,0x9e,0x0,0x40,0x65,0xa5,0x0,0x41,0x83,0xba,0x80,0x42,0x45,0x87,0x0,0x43, + 0x63,0x9c,0x80,0x44,0x2e,0xa3,0x80,0x45,0x43,0x7e,0x80,0x46,0x5,0x4b,0x0,0x47, + 0x23,0x60,0x80,0x47,0xf7,0xa2,0x0,0x48,0xe7,0x93,0x0,0x49,0xd7,0x84,0x0,0x4a, + 0xc7,0x75,0x0,0x4b,0xb7,0x66,0x0,0x4c,0xa7,0x57,0x0,0x4d,0x97,0x48,0x0,0x4e, + 0x87,0x39,0x0,0x4f,0x77,0x2a,0x0,0x50,0x70,0x55,0x80,0x51,0x60,0x46,0x80,0x52, + 0x50,0x37,0x80,0x53,0x40,0x28,0x80,0x54,0x30,0x19,0x80,0x55,0x20,0xa,0x80,0x56, + 0xf,0xfb,0x80,0x56,0xff,0xec,0x80,0x57,0xef,0xdd,0x80,0x58,0xdf,0xce,0x80,0x59, + 0xcf,0xbf,0x80,0x5a,0xbf,0xb0,0x80,0x5b,0xb8,0xdc,0x0,0x5c,0xa8,0xcd,0x0,0x5d, + 0x98,0xbe,0x0,0x5e,0x88,0xaf,0x0,0x5f,0x78,0xa0,0x0,0x60,0x68,0x91,0x0,0x61, + 0x58,0x82,0x0,0x62,0x48,0x73,0x0,0x63,0x38,0x64,0x0,0x64,0x28,0x55,0x0,0x65, + 0x18,0x46,0x0,0x66,0x11,0x71,0x80,0x67,0x1,0x62,0x80,0x67,0xf1,0x53,0x80,0x68, + 0xe1,0x44,0x80,0x69,0xd1,0x35,0x80,0x6a,0xc1,0x26,0x80,0x6b,0xb1,0x17,0x80,0x6c, + 0xa1,0x8,0x80,0x6d,0x90,0xf9,0x80,0x6e,0x80,0xea,0x80,0x6f,0x70,0xdb,0x80,0x70, + 0x6a,0x7,0x0,0x71,0x59,0xf8,0x0,0x72,0x49,0xe9,0x0,0x73,0x39,0xda,0x0,0x74, + 0x29,0xcb,0x0,0x75,0x19,0xbc,0x0,0x76,0x9,0xad,0x0,0x76,0xf9,0x9e,0x0,0x77, + 0xe9,0x8f,0x0,0x78,0xd9,0x80,0x0,0x79,0xc9,0x71,0x0,0x7a,0xb9,0x62,0x0,0x7b, + 0xb2,0x8d,0x80,0x7c,0xa2,0x7e,0x80,0x7d,0x92,0x6f,0x80,0x7e,0x82,0x60,0x80,0x7f, + 0x72,0x51,0x80,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x0,0x0,0x87,0xe8,0x0,0x0,0x0,0x0,0x9a,0xb0,0x1,0x4,0x0,0x0,0x8c, + 0xa0,0x0,0x9,0x0,0x0,0x9a,0xb0,0x1,0x4,0x0,0x0,0x8c,0xa0,0x0,0x9,0x4c, + 0x4d,0x54,0x0,0x41,0x45,0x44,0x54,0x0,0x41,0x45,0x53,0x54,0x0,0x0,0x0,0x0, + 0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0, + 0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0x0,0x0,0x0,0x5,0x0, + 0x0,0x0,0xe,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x73, + 0x16,0x85,0x18,0xff,0xff,0xff,0xff,0x9c,0x4e,0xa6,0x9c,0xff,0xff,0xff,0xff,0x9c, + 0xbc,0x20,0xf0,0xff,0xff,0xff,0xff,0xcb,0x54,0xb3,0x0,0xff,0xff,0xff,0xff,0xcb, + 0xc7,0x57,0x70,0xff,0xff,0xff,0xff,0xcc,0xb7,0x56,0x80,0xff,0xff,0xff,0xff,0xcd, + 0xa7,0x39,0x70,0xff,0xff,0xff,0xff,0xce,0xa0,0x73,0x0,0xff,0xff,0xff,0xff,0xcf, + 0x87,0x1b,0x70,0x0,0x0,0x0,0x0,0x3,0x70,0x39,0x80,0x0,0x0,0x0,0x0,0x4, + 0xd,0x1c,0x0,0x0,0x0,0x0,0x0,0x5,0x50,0x1b,0x80,0x0,0x0,0x0,0x0,0x5, + 0xf6,0x38,0x80,0x0,0x0,0x0,0x0,0x7,0x2f,0xfd,0x80,0x0,0x0,0x0,0x0,0x7, + 0xd6,0x1a,0x80,0x0,0x0,0x0,0x0,0x9,0xf,0xdf,0x80,0x0,0x0,0x0,0x0,0x9, + 0xb5,0xfc,0x80,0x0,0x0,0x0,0x0,0xa,0xef,0xc1,0x80,0x0,0x0,0x0,0x0,0xb, + 0x9f,0x19,0x0,0x0,0x0,0x0,0x0,0xc,0xd8,0xde,0x0,0x0,0x0,0x0,0x0,0xd, + 0x7e,0xfb,0x0,0x0,0x0,0x0,0x0,0xe,0xb8,0xc0,0x0,0x0,0x0,0x0,0x0,0xf, + 0x5e,0xdd,0x0,0x0,0x0,0x0,0x0,0x10,0x98,0xa2,0x0,0x0,0x0,0x0,0x0,0x11, + 0x3e,0xbf,0x0,0x0,0x0,0x0,0x0,0x12,0x78,0x84,0x0,0x0,0x0,0x0,0x0,0x13, + 0x1e,0xa1,0x0,0x0,0x0,0x0,0x0,0x14,0x58,0x66,0x0,0x0,0x0,0x0,0x0,0x14, + 0xfe,0x83,0x0,0x0,0x0,0x0,0x0,0x16,0x38,0x48,0x0,0x0,0x0,0x0,0x0,0x16, + 0xe7,0x9f,0x80,0x0,0x0,0x0,0x0,0x18,0x21,0x64,0x80,0x0,0x0,0x0,0x0,0x18, + 0xc7,0x81,0x80,0x0,0x0,0x0,0x0,0x1a,0x1,0x46,0x80,0x0,0x0,0x0,0x0,0x1a, + 0xa7,0x63,0x80,0x0,0x0,0x0,0x0,0x1b,0xe1,0x28,0x80,0x0,0x0,0x0,0x0,0x1c, + 0x87,0x45,0x80,0x0,0x0,0x0,0x0,0x1d,0xc1,0xa,0x80,0x0,0x0,0x0,0x0,0x1e, + 0x79,0x9c,0x80,0x0,0x0,0x0,0x0,0x1f,0x97,0xb2,0x0,0x0,0x0,0x0,0x0,0x20, + 0x59,0x7e,0x80,0x0,0x0,0x0,0x0,0x21,0x77,0x94,0x0,0x0,0x0,0x0,0x0,0x22, + 0x42,0x9b,0x0,0x0,0x0,0x0,0x0,0x23,0x69,0xeb,0x0,0x0,0x0,0x0,0x0,0x24, + 0x22,0x7d,0x0,0x0,0x0,0x0,0x0,0x25,0x49,0xcd,0x0,0x0,0x0,0x0,0x0,0x26, + 0x2,0x5f,0x0,0x0,0x0,0x0,0x0,0x27,0x29,0xaf,0x0,0x0,0x0,0x0,0x0,0x27, + 0xcf,0xcc,0x0,0x0,0x0,0x0,0x0,0x29,0x9,0x91,0x0,0x0,0x0,0x0,0x0,0x29, + 0xaf,0xae,0x0,0x0,0x0,0x0,0x0,0x2a,0xe9,0x73,0x0,0x0,0x0,0x0,0x0,0x2b, + 0x98,0xca,0x80,0x0,0x0,0x0,0x0,0x2c,0xd2,0x8f,0x80,0x0,0x0,0x0,0x0,0x2d, + 0x78,0xac,0x80,0x0,0x0,0x0,0x0,0x2e,0xb2,0x71,0x80,0x0,0x0,0x0,0x0,0x2f, + 0x74,0x3e,0x0,0x0,0x0,0x0,0x0,0x30,0x92,0x53,0x80,0x0,0x0,0x0,0x0,0x31, + 0x5d,0x5a,0x80,0x0,0x0,0x0,0x0,0x32,0x72,0x35,0x80,0x0,0x0,0x0,0x0,0x33, + 0x3d,0x3c,0x80,0x0,0x0,0x0,0x0,0x34,0x52,0x17,0x80,0x0,0x0,0x0,0x0,0x35, + 0x1d,0x1e,0x80,0x0,0x0,0x0,0x0,0x36,0x31,0xf9,0x80,0x0,0x0,0x0,0x0,0x36, + 0xfd,0x0,0x80,0x0,0x0,0x0,0x0,0x38,0x1b,0x16,0x0,0x0,0x0,0x0,0x0,0x38, + 0xdc,0xe2,0x80,0x0,0x0,0x0,0x0,0x39,0xa7,0xe9,0x80,0x0,0x0,0x0,0x0,0x3a, + 0xbc,0xc4,0x80,0x0,0x0,0x0,0x0,0x3b,0xda,0xda,0x0,0x0,0x0,0x0,0x0,0x3c, + 0xa5,0xe1,0x0,0x0,0x0,0x0,0x0,0x3d,0xba,0xbc,0x0,0x0,0x0,0x0,0x0,0x3e, + 0x85,0xc3,0x0,0x0,0x0,0x0,0x0,0x3f,0x9a,0x9e,0x0,0x0,0x0,0x0,0x0,0x40, + 0x65,0xa5,0x0,0x0,0x0,0x0,0x0,0x41,0x83,0xba,0x80,0x0,0x0,0x0,0x0,0x42, + 0x45,0x87,0x0,0x0,0x0,0x0,0x0,0x43,0x63,0x9c,0x80,0x0,0x0,0x0,0x0,0x44, + 0x2e,0xa3,0x80,0x0,0x0,0x0,0x0,0x45,0x43,0x7e,0x80,0x0,0x0,0x0,0x0,0x46, + 0x5,0x4b,0x0,0x0,0x0,0x0,0x0,0x47,0x23,0x60,0x80,0x0,0x0,0x0,0x0,0x47, + 0xf7,0xa2,0x0,0x0,0x0,0x0,0x0,0x48,0xe7,0x93,0x0,0x0,0x0,0x0,0x0,0x49, + 0xd7,0x84,0x0,0x0,0x0,0x0,0x0,0x4a,0xc7,0x75,0x0,0x0,0x0,0x0,0x0,0x4b, + 0xb7,0x66,0x0,0x0,0x0,0x0,0x0,0x4c,0xa7,0x57,0x0,0x0,0x0,0x0,0x0,0x4d, + 0x97,0x48,0x0,0x0,0x0,0x0,0x0,0x4e,0x87,0x39,0x0,0x0,0x0,0x0,0x0,0x4f, + 0x77,0x2a,0x0,0x0,0x0,0x0,0x0,0x50,0x70,0x55,0x80,0x0,0x0,0x0,0x0,0x51, + 0x60,0x46,0x80,0x0,0x0,0x0,0x0,0x52,0x50,0x37,0x80,0x0,0x0,0x0,0x0,0x53, + 0x40,0x28,0x80,0x0,0x0,0x0,0x0,0x54,0x30,0x19,0x80,0x0,0x0,0x0,0x0,0x55, + 0x20,0xa,0x80,0x0,0x0,0x0,0x0,0x56,0xf,0xfb,0x80,0x0,0x0,0x0,0x0,0x56, + 0xff,0xec,0x80,0x0,0x0,0x0,0x0,0x57,0xef,0xdd,0x80,0x0,0x0,0x0,0x0,0x58, + 0xdf,0xce,0x80,0x0,0x0,0x0,0x0,0x59,0xcf,0xbf,0x80,0x0,0x0,0x0,0x0,0x5a, + 0xbf,0xb0,0x80,0x0,0x0,0x0,0x0,0x5b,0xb8,0xdc,0x0,0x0,0x0,0x0,0x0,0x5c, + 0xa8,0xcd,0x0,0x0,0x0,0x0,0x0,0x5d,0x98,0xbe,0x0,0x0,0x0,0x0,0x0,0x5e, + 0x88,0xaf,0x0,0x0,0x0,0x0,0x0,0x5f,0x78,0xa0,0x0,0x0,0x0,0x0,0x0,0x60, + 0x68,0x91,0x0,0x0,0x0,0x0,0x0,0x61,0x58,0x82,0x0,0x0,0x0,0x0,0x0,0x62, + 0x48,0x73,0x0,0x0,0x0,0x0,0x0,0x63,0x38,0x64,0x0,0x0,0x0,0x0,0x0,0x64, + 0x28,0x55,0x0,0x0,0x0,0x0,0x0,0x65,0x18,0x46,0x0,0x0,0x0,0x0,0x0,0x66, + 0x11,0x71,0x80,0x0,0x0,0x0,0x0,0x67,0x1,0x62,0x80,0x0,0x0,0x0,0x0,0x67, + 0xf1,0x53,0x80,0x0,0x0,0x0,0x0,0x68,0xe1,0x44,0x80,0x0,0x0,0x0,0x0,0x69, + 0xd1,0x35,0x80,0x0,0x0,0x0,0x0,0x6a,0xc1,0x26,0x80,0x0,0x0,0x0,0x0,0x6b, + 0xb1,0x17,0x80,0x0,0x0,0x0,0x0,0x6c,0xa1,0x8,0x80,0x0,0x0,0x0,0x0,0x6d, + 0x90,0xf9,0x80,0x0,0x0,0x0,0x0,0x6e,0x80,0xea,0x80,0x0,0x0,0x0,0x0,0x6f, + 0x70,0xdb,0x80,0x0,0x0,0x0,0x0,0x70,0x6a,0x7,0x0,0x0,0x0,0x0,0x0,0x71, + 0x59,0xf8,0x0,0x0,0x0,0x0,0x0,0x72,0x49,0xe9,0x0,0x0,0x0,0x0,0x0,0x73, + 0x39,0xda,0x0,0x0,0x0,0x0,0x0,0x74,0x29,0xcb,0x0,0x0,0x0,0x0,0x0,0x75, + 0x19,0xbc,0x0,0x0,0x0,0x0,0x0,0x76,0x9,0xad,0x0,0x0,0x0,0x0,0x0,0x76, + 0xf9,0x9e,0x0,0x0,0x0,0x0,0x0,0x77,0xe9,0x8f,0x0,0x0,0x0,0x0,0x0,0x78, + 0xd9,0x80,0x0,0x0,0x0,0x0,0x0,0x79,0xc9,0x71,0x0,0x0,0x0,0x0,0x0,0x7a, + 0xb9,0x62,0x0,0x0,0x0,0x0,0x0,0x7b,0xb2,0x8d,0x80,0x0,0x0,0x0,0x0,0x7c, + 0xa2,0x7e,0x80,0x0,0x0,0x0,0x0,0x7d,0x92,0x6f,0x80,0x0,0x0,0x0,0x0,0x7e, + 0x82,0x60,0x80,0x0,0x0,0x0,0x0,0x7f,0x72,0x51,0x80,0x0,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x0,0x0,0x87,0xe8,0x0,0x0, + 0x0,0x0,0x9a,0xb0,0x1,0x4,0x0,0x0,0x8c,0xa0,0x0,0x9,0x0,0x0,0x9a,0xb0, + 0x1,0x4,0x0,0x0,0x8c,0xa0,0x0,0x9,0x4c,0x4d,0x54,0x0,0x41,0x45,0x44,0x54, + 0x0,0x41,0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0, + 0xa,0x41,0x45,0x53,0x54,0x2d,0x31,0x30,0x41,0x45,0x44,0x54,0x2c,0x4d,0x31,0x30, + 0x2e,0x31,0x2e,0x30,0x2c,0x4d,0x34,0x2e,0x31,0x2e,0x30,0x2f,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Australia/Currie + 0x0,0x0,0x8,0xaf, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x63,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x1c,0x80,0x0,0x0,0x0,0x9e, - 0xa6,0x2c,0x80,0x9f,0xba,0xf9,0x70,0xa0,0x86,0xe,0x80,0xa1,0x9a,0xdb,0x70,0xca, - 0x57,0x22,0x80,0xca,0xd8,0x47,0x70,0xcb,0x88,0xfe,0x80,0xd2,0x23,0xf4,0x70,0xd2, - 0x61,0x9,0xf0,0xd3,0x75,0xf3,0x0,0xd4,0x40,0xeb,0xf0,0xd5,0x55,0xd5,0x0,0xd6, - 0x20,0xcd,0xf0,0xd7,0x35,0xb7,0x0,0xd8,0x0,0xaf,0xf0,0xd9,0x15,0x99,0x0,0xd9, - 0xe0,0x91,0xf0,0xda,0xfe,0xb5,0x80,0xdb,0xc0,0x73,0xf0,0xdc,0xde,0x97,0x80,0xdd, - 0xa9,0x90,0x70,0xde,0xbe,0x79,0x80,0xdf,0x89,0x72,0x70,0xe0,0x9e,0x5b,0x80,0xe1, - 0x69,0x54,0x70,0xe2,0x7e,0x3d,0x80,0xe3,0x49,0x36,0x70,0xe4,0x5e,0x1f,0x80,0xe8, - 0xf2,0x16,0xf0,0xea,0x7,0x0,0x0,0xfe,0xb8,0x1c,0xf0,0xff,0xa7,0xff,0xe0,0x0, - 0x97,0xfe,0xf0,0x1,0x87,0xe1,0xe0,0x44,0x2f,0x76,0x70,0x45,0x44,0x43,0x60,0x45, - 0xf3,0xa8,0xf0,0x47,0x2d,0x5f,0xe0,0x47,0xd3,0x8a,0xf0,0x49,0xd,0x41,0xe0,0x49, - 0xb3,0x6c,0xf0,0x4a,0xed,0x23,0xe0,0x4b,0x9c,0x89,0x70,0x4c,0xd6,0x40,0x60,0x4d, - 0x7c,0x6b,0x70,0x4e,0xb6,0x22,0x60,0x4f,0x5c,0x4d,0x70,0x50,0x96,0x4,0x60,0x51, - 0x3c,0x2f,0x70,0x52,0x75,0xe6,0x60,0x53,0x1c,0x11,0x70,0x54,0x55,0xc8,0x60,0x54, - 0xfb,0xf3,0x70,0x56,0x35,0xaa,0x60,0x56,0xe5,0xf,0xf0,0x58,0x1e,0xc6,0xe0,0x58, - 0xc4,0xf1,0xf0,0x59,0xfe,0xa8,0xe0,0x5a,0xa4,0xd3,0xf0,0x5b,0xde,0x8a,0xe0,0x5c, - 0x84,0xb5,0xf0,0x5d,0xbe,0x6c,0xe0,0x5e,0x64,0x97,0xf0,0x5f,0x9e,0x4e,0xe0,0x60, - 0x4d,0xb4,0x70,0x61,0x87,0x6b,0x60,0x62,0x2d,0x96,0x70,0x63,0x67,0x4d,0x60,0x64, - 0xd,0x78,0x70,0x65,0x47,0x2f,0x60,0x65,0xed,0x5a,0x70,0x67,0x27,0x11,0x60,0x67, - 0xcd,0x3c,0x70,0x69,0x6,0xf3,0x60,0x69,0xad,0x1e,0x70,0x6a,0xe6,0xd5,0x60,0x6b, - 0x96,0x3a,0xf0,0x6c,0xcf,0xf1,0xe0,0x6d,0x76,0x1c,0xf0,0x6e,0xaf,0xd3,0xe0,0x6f, - 0x55,0xfe,0xf0,0x70,0x8f,0xb5,0xe0,0x71,0x35,0xe0,0xf0,0x72,0x6f,0x97,0xe0,0x73, - 0x15,0xc2,0xf0,0x74,0x4f,0x79,0xe0,0x74,0xfe,0xdf,0x70,0x76,0x38,0x96,0x60,0x76, - 0xde,0xc1,0x70,0x78,0x18,0x78,0x60,0x78,0xbe,0xa3,0x70,0x79,0xf8,0x5a,0x60,0x7a, - 0x9e,0x85,0x70,0x7b,0xd8,0x3c,0x60,0x7c,0x7e,0x67,0x70,0x7d,0xb8,0x1e,0x60,0x7e, - 0x5e,0x49,0x70,0x7f,0x98,0x0,0x60,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x5,0x2,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0xff,0xff,0xaf,0x3a,0x0,0x0, - 0xff,0xff,0xb9,0xb0,0x1,0x4,0xff,0xff,0xab,0xa0,0x0,0x8,0xff,0xff,0xb9,0xb0, - 0x1,0xc,0xff,0xff,0xb9,0xb0,0x1,0x10,0xff,0xff,0xb9,0xb0,0x0,0x14,0xff,0xff, - 0xc7,0xc0,0x1,0x18,0x4c,0x4d,0x54,0x0,0x43,0x44,0x54,0x0,0x43,0x53,0x54,0x0, - 0x43,0x57,0x54,0x0,0x43,0x50,0x54,0x0,0x45,0x53,0x54,0x0,0x45,0x44,0x54,0x0, - 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x54,0x5a, - 0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x64,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x1c,0xf8,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xff,0xff,0xff,0xff,0x5e,0x3,0xfe,0xa0,0xff,0xff,0xff,0xff,0x9e,0xa6, - 0x2c,0x80,0xff,0xff,0xff,0xff,0x9f,0xba,0xf9,0x70,0xff,0xff,0xff,0xff,0xa0,0x86, - 0xe,0x80,0xff,0xff,0xff,0xff,0xa1,0x9a,0xdb,0x70,0xff,0xff,0xff,0xff,0xca,0x57, - 0x22,0x80,0xff,0xff,0xff,0xff,0xca,0xd8,0x47,0x70,0xff,0xff,0xff,0xff,0xcb,0x88, - 0xfe,0x80,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x61, - 0x9,0xf0,0xff,0xff,0xff,0xff,0xd3,0x75,0xf3,0x0,0xff,0xff,0xff,0xff,0xd4,0x40, - 0xeb,0xf0,0xff,0xff,0xff,0xff,0xd5,0x55,0xd5,0x0,0xff,0xff,0xff,0xff,0xd6,0x20, - 0xcd,0xf0,0xff,0xff,0xff,0xff,0xd7,0x35,0xb7,0x0,0xff,0xff,0xff,0xff,0xd8,0x0, - 0xaf,0xf0,0xff,0xff,0xff,0xff,0xd9,0x15,0x99,0x0,0xff,0xff,0xff,0xff,0xd9,0xe0, - 0x91,0xf0,0xff,0xff,0xff,0xff,0xda,0xfe,0xb5,0x80,0xff,0xff,0xff,0xff,0xdb,0xc0, - 0x73,0xf0,0xff,0xff,0xff,0xff,0xdc,0xde,0x97,0x80,0xff,0xff,0xff,0xff,0xdd,0xa9, - 0x90,0x70,0xff,0xff,0xff,0xff,0xde,0xbe,0x79,0x80,0xff,0xff,0xff,0xff,0xdf,0x89, - 0x72,0x70,0xff,0xff,0xff,0xff,0xe0,0x9e,0x5b,0x80,0xff,0xff,0xff,0xff,0xe1,0x69, - 0x54,0x70,0xff,0xff,0xff,0xff,0xe2,0x7e,0x3d,0x80,0xff,0xff,0xff,0xff,0xe3,0x49, - 0x36,0x70,0xff,0xff,0xff,0xff,0xe4,0x5e,0x1f,0x80,0xff,0xff,0xff,0xff,0xe8,0xf2, - 0x16,0xf0,0xff,0xff,0xff,0xff,0xea,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0xfe,0xb8, - 0x1c,0xf0,0xff,0xff,0xff,0xff,0xff,0xa7,0xff,0xe0,0x0,0x0,0x0,0x0,0x0,0x97, - 0xfe,0xf0,0x0,0x0,0x0,0x0,0x1,0x87,0xe1,0xe0,0x0,0x0,0x0,0x0,0x44,0x2f, - 0x76,0x70,0x0,0x0,0x0,0x0,0x45,0x44,0x43,0x60,0x0,0x0,0x0,0x0,0x45,0xf3, - 0xa8,0xf0,0x0,0x0,0x0,0x0,0x47,0x2d,0x5f,0xe0,0x0,0x0,0x0,0x0,0x47,0xd3, - 0x8a,0xf0,0x0,0x0,0x0,0x0,0x49,0xd,0x41,0xe0,0x0,0x0,0x0,0x0,0x49,0xb3, - 0x6c,0xf0,0x0,0x0,0x0,0x0,0x4a,0xed,0x23,0xe0,0x0,0x0,0x0,0x0,0x4b,0x9c, - 0x89,0x70,0x0,0x0,0x0,0x0,0x4c,0xd6,0x40,0x60,0x0,0x0,0x0,0x0,0x4d,0x7c, - 0x6b,0x70,0x0,0x0,0x0,0x0,0x4e,0xb6,0x22,0x60,0x0,0x0,0x0,0x0,0x4f,0x5c, - 0x4d,0x70,0x0,0x0,0x0,0x0,0x50,0x96,0x4,0x60,0x0,0x0,0x0,0x0,0x51,0x3c, - 0x2f,0x70,0x0,0x0,0x0,0x0,0x52,0x75,0xe6,0x60,0x0,0x0,0x0,0x0,0x53,0x1c, - 0x11,0x70,0x0,0x0,0x0,0x0,0x54,0x55,0xc8,0x60,0x0,0x0,0x0,0x0,0x54,0xfb, - 0xf3,0x70,0x0,0x0,0x0,0x0,0x56,0x35,0xaa,0x60,0x0,0x0,0x0,0x0,0x56,0xe5, - 0xf,0xf0,0x0,0x0,0x0,0x0,0x58,0x1e,0xc6,0xe0,0x0,0x0,0x0,0x0,0x58,0xc4, - 0xf1,0xf0,0x0,0x0,0x0,0x0,0x59,0xfe,0xa8,0xe0,0x0,0x0,0x0,0x0,0x5a,0xa4, - 0xd3,0xf0,0x0,0x0,0x0,0x0,0x5b,0xde,0x8a,0xe0,0x0,0x0,0x0,0x0,0x5c,0x84, - 0xb5,0xf0,0x0,0x0,0x0,0x0,0x5d,0xbe,0x6c,0xe0,0x0,0x0,0x0,0x0,0x5e,0x64, - 0x97,0xf0,0x0,0x0,0x0,0x0,0x5f,0x9e,0x4e,0xe0,0x0,0x0,0x0,0x0,0x60,0x4d, - 0xb4,0x70,0x0,0x0,0x0,0x0,0x61,0x87,0x6b,0x60,0x0,0x0,0x0,0x0,0x62,0x2d, - 0x96,0x70,0x0,0x0,0x0,0x0,0x63,0x67,0x4d,0x60,0x0,0x0,0x0,0x0,0x64,0xd, - 0x78,0x70,0x0,0x0,0x0,0x0,0x65,0x47,0x2f,0x60,0x0,0x0,0x0,0x0,0x65,0xed, - 0x5a,0x70,0x0,0x0,0x0,0x0,0x67,0x27,0x11,0x60,0x0,0x0,0x0,0x0,0x67,0xcd, - 0x3c,0x70,0x0,0x0,0x0,0x0,0x69,0x6,0xf3,0x60,0x0,0x0,0x0,0x0,0x69,0xad, - 0x1e,0x70,0x0,0x0,0x0,0x0,0x6a,0xe6,0xd5,0x60,0x0,0x0,0x0,0x0,0x6b,0x96, - 0x3a,0xf0,0x0,0x0,0x0,0x0,0x6c,0xcf,0xf1,0xe0,0x0,0x0,0x0,0x0,0x6d,0x76, - 0x1c,0xf0,0x0,0x0,0x0,0x0,0x6e,0xaf,0xd3,0xe0,0x0,0x0,0x0,0x0,0x6f,0x55, - 0xfe,0xf0,0x0,0x0,0x0,0x0,0x70,0x8f,0xb5,0xe0,0x0,0x0,0x0,0x0,0x71,0x35, - 0xe0,0xf0,0x0,0x0,0x0,0x0,0x72,0x6f,0x97,0xe0,0x0,0x0,0x0,0x0,0x73,0x15, - 0xc2,0xf0,0x0,0x0,0x0,0x0,0x74,0x4f,0x79,0xe0,0x0,0x0,0x0,0x0,0x74,0xfe, - 0xdf,0x70,0x0,0x0,0x0,0x0,0x76,0x38,0x96,0x60,0x0,0x0,0x0,0x0,0x76,0xde, - 0xc1,0x70,0x0,0x0,0x0,0x0,0x78,0x18,0x78,0x60,0x0,0x0,0x0,0x0,0x78,0xbe, - 0xa3,0x70,0x0,0x0,0x0,0x0,0x79,0xf8,0x5a,0x60,0x0,0x0,0x0,0x0,0x7a,0x9e, - 0x85,0x70,0x0,0x0,0x0,0x0,0x7b,0xd8,0x3c,0x60,0x0,0x0,0x0,0x0,0x7c,0x7e, - 0x67,0x70,0x0,0x0,0x0,0x0,0x7d,0xb8,0x1e,0x60,0x0,0x0,0x0,0x0,0x7e,0x5e, - 0x49,0x70,0x0,0x0,0x0,0x0,0x7f,0x98,0x0,0x60,0x0,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x3,0x4,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x5,0x2,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0xff,0xff, - 0xaf,0x3a,0x0,0x0,0xff,0xff,0xb9,0xb0,0x1,0x4,0xff,0xff,0xab,0xa0,0x0,0x8, - 0xff,0xff,0xb9,0xb0,0x1,0xc,0xff,0xff,0xb9,0xb0,0x1,0x10,0xff,0xff,0xb9,0xb0, - 0x0,0x14,0xff,0xff,0xc7,0xc0,0x1,0x18,0x4c,0x4d,0x54,0x0,0x43,0x44,0x54,0x0, - 0x43,0x53,0x54,0x0,0x43,0x57,0x54,0x0,0x43,0x50,0x54,0x0,0x45,0x53,0x54,0x0, - 0x45,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1, - 0x0,0x0,0xa,0x45,0x53,0x54,0x35,0x45,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e, - 0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/US/Aleutian - 0x0,0x0,0x9,0x3d, + 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x8e,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xe,0x80,0x0,0x0,0x0,0x9b, + 0xd5,0x78,0x80,0x9c,0xbc,0x20,0xf0,0xcb,0x54,0xb3,0x0,0xcb,0xc7,0x57,0x70,0xcc, + 0xb7,0x56,0x80,0xcd,0xa7,0x39,0x70,0xce,0xa0,0x73,0x0,0xcf,0x87,0x1b,0x70,0x3, + 0x70,0x39,0x80,0x4,0xd,0x1c,0x0,0x5,0x50,0x1b,0x80,0x5,0xf6,0x38,0x80,0x7, + 0x2f,0xfd,0x80,0x7,0xd6,0x1a,0x80,0x9,0xf,0xdf,0x80,0x9,0xb5,0xfc,0x80,0xa, + 0xef,0xc1,0x80,0xb,0x9f,0x19,0x0,0xc,0xd8,0xde,0x0,0xd,0x7e,0xfb,0x0,0xe, + 0xb8,0xc0,0x0,0xf,0x5e,0xdd,0x0,0x10,0x98,0xa2,0x0,0x11,0x3e,0xbf,0x0,0x12, + 0x78,0x84,0x0,0x13,0x1e,0xa1,0x0,0x14,0x58,0x66,0x0,0x14,0xfe,0x83,0x0,0x16, + 0x38,0x48,0x0,0x17,0x3,0x4f,0x0,0x18,0x21,0x64,0x80,0x18,0xe3,0x31,0x0,0x1a, + 0x1,0x46,0x80,0x1a,0xa7,0x63,0x80,0x1b,0xe1,0x28,0x80,0x1c,0x87,0x45,0x80,0x1d, + 0xc1,0xa,0x80,0x1e,0x67,0x27,0x80,0x1f,0x97,0xb2,0x0,0x20,0x59,0x7e,0x80,0x21, + 0x80,0xce,0x80,0x22,0x42,0x9b,0x0,0x23,0x69,0xeb,0x0,0x24,0x22,0x7d,0x0,0x25, + 0x49,0xcd,0x0,0x26,0x2,0x5f,0x0,0x27,0x29,0xaf,0x0,0x27,0xf4,0xb6,0x0,0x28, + 0xed,0xe1,0x80,0x29,0xd4,0x98,0x0,0x2a,0xcd,0xc3,0x80,0x2b,0xb4,0x7a,0x0,0x2c, + 0xad,0xa5,0x80,0x2d,0x94,0x5c,0x0,0x2e,0x8d,0x87,0x80,0x2f,0x74,0x3e,0x0,0x30, + 0x6d,0x69,0x80,0x31,0x5d,0x5a,0x80,0x32,0x56,0x86,0x0,0x33,0x3d,0x3c,0x80,0x34, + 0x36,0x68,0x0,0x35,0x1d,0x1e,0x80,0x36,0x16,0x4a,0x0,0x36,0xfd,0x0,0x80,0x37, + 0xf6,0x2c,0x0,0x38,0xdc,0xe2,0x80,0x39,0xa7,0xe9,0x80,0x3a,0xbc,0xc4,0x80,0x3b, + 0xbf,0x2a,0x80,0x3c,0xa5,0xe1,0x0,0x3d,0x9f,0xc,0x80,0x3e,0x85,0xc3,0x0,0x3f, + 0x7e,0xee,0x80,0x40,0x65,0xa5,0x0,0x41,0x5e,0xd0,0x80,0x42,0x45,0x87,0x0,0x43, + 0x3e,0xb2,0x80,0x44,0x2e,0xa3,0x80,0x45,0x1e,0x94,0x80,0x46,0x5,0x4b,0x0,0x47, + 0x7,0xb1,0x0,0x47,0xf7,0xa2,0x0,0x48,0xe7,0x93,0x0,0x49,0xd7,0x84,0x0,0x4a, + 0xc7,0x75,0x0,0x4b,0xb7,0x66,0x0,0x4c,0xa7,0x57,0x0,0x4d,0x97,0x48,0x0,0x4e, + 0x87,0x39,0x0,0x4f,0x77,0x2a,0x0,0x50,0x70,0x55,0x80,0x51,0x60,0x46,0x80,0x52, + 0x50,0x37,0x80,0x53,0x40,0x28,0x80,0x54,0x30,0x19,0x80,0x55,0x20,0xa,0x80,0x56, + 0xf,0xfb,0x80,0x56,0xff,0xec,0x80,0x57,0xef,0xdd,0x80,0x58,0xdf,0xce,0x80,0x59, + 0xcf,0xbf,0x80,0x5a,0xbf,0xb0,0x80,0x5b,0xb8,0xdc,0x0,0x5c,0xa8,0xcd,0x0,0x5d, + 0x98,0xbe,0x0,0x5e,0x88,0xaf,0x0,0x5f,0x78,0xa0,0x0,0x60,0x68,0x91,0x0,0x61, + 0x58,0x82,0x0,0x62,0x48,0x73,0x0,0x63,0x38,0x64,0x0,0x64,0x28,0x55,0x0,0x65, + 0x18,0x46,0x0,0x66,0x11,0x71,0x80,0x67,0x1,0x62,0x80,0x67,0xf1,0x53,0x80,0x68, + 0xe1,0x44,0x80,0x69,0xd1,0x35,0x80,0x6a,0xc1,0x26,0x80,0x6b,0xb1,0x17,0x80,0x6c, + 0xa1,0x8,0x80,0x6d,0x90,0xf9,0x80,0x6e,0x80,0xea,0x80,0x6f,0x70,0xdb,0x80,0x70, + 0x6a,0x7,0x0,0x71,0x59,0xf8,0x0,0x72,0x49,0xe9,0x0,0x73,0x39,0xda,0x0,0x74, + 0x29,0xcb,0x0,0x75,0x19,0xbc,0x0,0x76,0x9,0xad,0x0,0x76,0xf9,0x9e,0x0,0x77, + 0xe9,0x8f,0x0,0x78,0xd9,0x80,0x0,0x79,0xc9,0x71,0x0,0x7a,0xb9,0x62,0x0,0x7b, + 0xb2,0x8d,0x80,0x7c,0xa2,0x7e,0x80,0x7d,0x92,0x6f,0x80,0x7e,0x82,0x60,0x80,0x7f, + 0x72,0x51,0x80,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x0,0x0,0x86,0xe0,0x0,0x0,0x0,0x0,0x8c,0xa0,0x0,0x4,0x0,0x0,0x9a, + 0xb0,0x1,0x9,0x0,0x0,0x9a,0xb0,0x1,0x9,0x0,0x0,0x8c,0xa0,0x0,0x4,0x4c, + 0x4d,0x54,0x0,0x41,0x45,0x53,0x54,0x0,0x41,0x45,0x44,0x54,0x0,0x0,0x0,0x0, + 0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0, + 0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0x0,0x0,0x0,0x5,0x0, + 0x0,0x0,0xe,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x74, + 0x2e,0x4,0x20,0xff,0xff,0xff,0xff,0x9b,0xd5,0x78,0x80,0xff,0xff,0xff,0xff,0x9c, + 0xbc,0x20,0xf0,0xff,0xff,0xff,0xff,0xcb,0x54,0xb3,0x0,0xff,0xff,0xff,0xff,0xcb, + 0xc7,0x57,0x70,0xff,0xff,0xff,0xff,0xcc,0xb7,0x56,0x80,0xff,0xff,0xff,0xff,0xcd, + 0xa7,0x39,0x70,0xff,0xff,0xff,0xff,0xce,0xa0,0x73,0x0,0xff,0xff,0xff,0xff,0xcf, + 0x87,0x1b,0x70,0x0,0x0,0x0,0x0,0x3,0x70,0x39,0x80,0x0,0x0,0x0,0x0,0x4, + 0xd,0x1c,0x0,0x0,0x0,0x0,0x0,0x5,0x50,0x1b,0x80,0x0,0x0,0x0,0x0,0x5, + 0xf6,0x38,0x80,0x0,0x0,0x0,0x0,0x7,0x2f,0xfd,0x80,0x0,0x0,0x0,0x0,0x7, + 0xd6,0x1a,0x80,0x0,0x0,0x0,0x0,0x9,0xf,0xdf,0x80,0x0,0x0,0x0,0x0,0x9, + 0xb5,0xfc,0x80,0x0,0x0,0x0,0x0,0xa,0xef,0xc1,0x80,0x0,0x0,0x0,0x0,0xb, + 0x9f,0x19,0x0,0x0,0x0,0x0,0x0,0xc,0xd8,0xde,0x0,0x0,0x0,0x0,0x0,0xd, + 0x7e,0xfb,0x0,0x0,0x0,0x0,0x0,0xe,0xb8,0xc0,0x0,0x0,0x0,0x0,0x0,0xf, + 0x5e,0xdd,0x0,0x0,0x0,0x0,0x0,0x10,0x98,0xa2,0x0,0x0,0x0,0x0,0x0,0x11, + 0x3e,0xbf,0x0,0x0,0x0,0x0,0x0,0x12,0x78,0x84,0x0,0x0,0x0,0x0,0x0,0x13, + 0x1e,0xa1,0x0,0x0,0x0,0x0,0x0,0x14,0x58,0x66,0x0,0x0,0x0,0x0,0x0,0x14, + 0xfe,0x83,0x0,0x0,0x0,0x0,0x0,0x16,0x38,0x48,0x0,0x0,0x0,0x0,0x0,0x17, + 0x3,0x4f,0x0,0x0,0x0,0x0,0x0,0x18,0x21,0x64,0x80,0x0,0x0,0x0,0x0,0x18, + 0xe3,0x31,0x0,0x0,0x0,0x0,0x0,0x1a,0x1,0x46,0x80,0x0,0x0,0x0,0x0,0x1a, + 0xa7,0x63,0x80,0x0,0x0,0x0,0x0,0x1b,0xe1,0x28,0x80,0x0,0x0,0x0,0x0,0x1c, + 0x87,0x45,0x80,0x0,0x0,0x0,0x0,0x1d,0xc1,0xa,0x80,0x0,0x0,0x0,0x0,0x1e, + 0x67,0x27,0x80,0x0,0x0,0x0,0x0,0x1f,0x97,0xb2,0x0,0x0,0x0,0x0,0x0,0x20, + 0x59,0x7e,0x80,0x0,0x0,0x0,0x0,0x21,0x80,0xce,0x80,0x0,0x0,0x0,0x0,0x22, + 0x42,0x9b,0x0,0x0,0x0,0x0,0x0,0x23,0x69,0xeb,0x0,0x0,0x0,0x0,0x0,0x24, + 0x22,0x7d,0x0,0x0,0x0,0x0,0x0,0x25,0x49,0xcd,0x0,0x0,0x0,0x0,0x0,0x26, + 0x2,0x5f,0x0,0x0,0x0,0x0,0x0,0x27,0x29,0xaf,0x0,0x0,0x0,0x0,0x0,0x27, + 0xf4,0xb6,0x0,0x0,0x0,0x0,0x0,0x28,0xed,0xe1,0x80,0x0,0x0,0x0,0x0,0x29, + 0xd4,0x98,0x0,0x0,0x0,0x0,0x0,0x2a,0xcd,0xc3,0x80,0x0,0x0,0x0,0x0,0x2b, + 0xb4,0x7a,0x0,0x0,0x0,0x0,0x0,0x2c,0xad,0xa5,0x80,0x0,0x0,0x0,0x0,0x2d, + 0x94,0x5c,0x0,0x0,0x0,0x0,0x0,0x2e,0x8d,0x87,0x80,0x0,0x0,0x0,0x0,0x2f, + 0x74,0x3e,0x0,0x0,0x0,0x0,0x0,0x30,0x6d,0x69,0x80,0x0,0x0,0x0,0x0,0x31, + 0x5d,0x5a,0x80,0x0,0x0,0x0,0x0,0x32,0x56,0x86,0x0,0x0,0x0,0x0,0x0,0x33, + 0x3d,0x3c,0x80,0x0,0x0,0x0,0x0,0x34,0x36,0x68,0x0,0x0,0x0,0x0,0x0,0x35, + 0x1d,0x1e,0x80,0x0,0x0,0x0,0x0,0x36,0x16,0x4a,0x0,0x0,0x0,0x0,0x0,0x36, + 0xfd,0x0,0x80,0x0,0x0,0x0,0x0,0x37,0xf6,0x2c,0x0,0x0,0x0,0x0,0x0,0x38, + 0xdc,0xe2,0x80,0x0,0x0,0x0,0x0,0x39,0xa7,0xe9,0x80,0x0,0x0,0x0,0x0,0x3a, + 0xbc,0xc4,0x80,0x0,0x0,0x0,0x0,0x3b,0xbf,0x2a,0x80,0x0,0x0,0x0,0x0,0x3c, + 0xa5,0xe1,0x0,0x0,0x0,0x0,0x0,0x3d,0x9f,0xc,0x80,0x0,0x0,0x0,0x0,0x3e, + 0x85,0xc3,0x0,0x0,0x0,0x0,0x0,0x3f,0x7e,0xee,0x80,0x0,0x0,0x0,0x0,0x40, + 0x65,0xa5,0x0,0x0,0x0,0x0,0x0,0x41,0x5e,0xd0,0x80,0x0,0x0,0x0,0x0,0x42, + 0x45,0x87,0x0,0x0,0x0,0x0,0x0,0x43,0x3e,0xb2,0x80,0x0,0x0,0x0,0x0,0x44, + 0x2e,0xa3,0x80,0x0,0x0,0x0,0x0,0x45,0x1e,0x94,0x80,0x0,0x0,0x0,0x0,0x46, + 0x5,0x4b,0x0,0x0,0x0,0x0,0x0,0x47,0x7,0xb1,0x0,0x0,0x0,0x0,0x0,0x47, + 0xf7,0xa2,0x0,0x0,0x0,0x0,0x0,0x48,0xe7,0x93,0x0,0x0,0x0,0x0,0x0,0x49, + 0xd7,0x84,0x0,0x0,0x0,0x0,0x0,0x4a,0xc7,0x75,0x0,0x0,0x0,0x0,0x0,0x4b, + 0xb7,0x66,0x0,0x0,0x0,0x0,0x0,0x4c,0xa7,0x57,0x0,0x0,0x0,0x0,0x0,0x4d, + 0x97,0x48,0x0,0x0,0x0,0x0,0x0,0x4e,0x87,0x39,0x0,0x0,0x0,0x0,0x0,0x4f, + 0x77,0x2a,0x0,0x0,0x0,0x0,0x0,0x50,0x70,0x55,0x80,0x0,0x0,0x0,0x0,0x51, + 0x60,0x46,0x80,0x0,0x0,0x0,0x0,0x52,0x50,0x37,0x80,0x0,0x0,0x0,0x0,0x53, + 0x40,0x28,0x80,0x0,0x0,0x0,0x0,0x54,0x30,0x19,0x80,0x0,0x0,0x0,0x0,0x55, + 0x20,0xa,0x80,0x0,0x0,0x0,0x0,0x56,0xf,0xfb,0x80,0x0,0x0,0x0,0x0,0x56, + 0xff,0xec,0x80,0x0,0x0,0x0,0x0,0x57,0xef,0xdd,0x80,0x0,0x0,0x0,0x0,0x58, + 0xdf,0xce,0x80,0x0,0x0,0x0,0x0,0x59,0xcf,0xbf,0x80,0x0,0x0,0x0,0x0,0x5a, + 0xbf,0xb0,0x80,0x0,0x0,0x0,0x0,0x5b,0xb8,0xdc,0x0,0x0,0x0,0x0,0x0,0x5c, + 0xa8,0xcd,0x0,0x0,0x0,0x0,0x0,0x5d,0x98,0xbe,0x0,0x0,0x0,0x0,0x0,0x5e, + 0x88,0xaf,0x0,0x0,0x0,0x0,0x0,0x5f,0x78,0xa0,0x0,0x0,0x0,0x0,0x0,0x60, + 0x68,0x91,0x0,0x0,0x0,0x0,0x0,0x61,0x58,0x82,0x0,0x0,0x0,0x0,0x0,0x62, + 0x48,0x73,0x0,0x0,0x0,0x0,0x0,0x63,0x38,0x64,0x0,0x0,0x0,0x0,0x0,0x64, + 0x28,0x55,0x0,0x0,0x0,0x0,0x0,0x65,0x18,0x46,0x0,0x0,0x0,0x0,0x0,0x66, + 0x11,0x71,0x80,0x0,0x0,0x0,0x0,0x67,0x1,0x62,0x80,0x0,0x0,0x0,0x0,0x67, + 0xf1,0x53,0x80,0x0,0x0,0x0,0x0,0x68,0xe1,0x44,0x80,0x0,0x0,0x0,0x0,0x69, + 0xd1,0x35,0x80,0x0,0x0,0x0,0x0,0x6a,0xc1,0x26,0x80,0x0,0x0,0x0,0x0,0x6b, + 0xb1,0x17,0x80,0x0,0x0,0x0,0x0,0x6c,0xa1,0x8,0x80,0x0,0x0,0x0,0x0,0x6d, + 0x90,0xf9,0x80,0x0,0x0,0x0,0x0,0x6e,0x80,0xea,0x80,0x0,0x0,0x0,0x0,0x6f, + 0x70,0xdb,0x80,0x0,0x0,0x0,0x0,0x70,0x6a,0x7,0x0,0x0,0x0,0x0,0x0,0x71, + 0x59,0xf8,0x0,0x0,0x0,0x0,0x0,0x72,0x49,0xe9,0x0,0x0,0x0,0x0,0x0,0x73, + 0x39,0xda,0x0,0x0,0x0,0x0,0x0,0x74,0x29,0xcb,0x0,0x0,0x0,0x0,0x0,0x75, + 0x19,0xbc,0x0,0x0,0x0,0x0,0x0,0x76,0x9,0xad,0x0,0x0,0x0,0x0,0x0,0x76, + 0xf9,0x9e,0x0,0x0,0x0,0x0,0x0,0x77,0xe9,0x8f,0x0,0x0,0x0,0x0,0x0,0x78, + 0xd9,0x80,0x0,0x0,0x0,0x0,0x0,0x79,0xc9,0x71,0x0,0x0,0x0,0x0,0x0,0x7a, + 0xb9,0x62,0x0,0x0,0x0,0x0,0x0,0x7b,0xb2,0x8d,0x80,0x0,0x0,0x0,0x0,0x7c, + 0xa2,0x7e,0x80,0x0,0x0,0x0,0x0,0x7d,0x92,0x6f,0x80,0x0,0x0,0x0,0x0,0x7e, + 0x82,0x60,0x80,0x0,0x0,0x0,0x0,0x7f,0x72,0x51,0x80,0x0,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x0,0x0,0x86,0xe0,0x0,0x0, + 0x0,0x0,0x8c,0xa0,0x0,0x4,0x0,0x0,0x9a,0xb0,0x1,0x9,0x0,0x0,0x9a,0xb0, + 0x1,0x9,0x0,0x0,0x8c,0xa0,0x0,0x4,0x4c,0x4d,0x54,0x0,0x41,0x45,0x53,0x54, + 0x0,0x41,0x45,0x44,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0, + 0xa,0x41,0x45,0x53,0x54,0x2d,0x31,0x30,0x41,0x45,0x44,0x54,0x2c,0x4d,0x31,0x30, + 0x2e,0x31,0x2e,0x30,0x2c,0x4d,0x34,0x2e,0x31,0x2e,0x30,0x2f,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Australia/Perth + 0x0,0x0,0x1,0xdf, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x90,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x21,0x80,0x0,0x0,0x0,0xcb, - 0x89,0x44,0xd0,0xd2,0x23,0xf4,0x70,0xd2,0x61,0x50,0x40,0xfa,0xd2,0x55,0xb0,0xfe, - 0xb8,0x71,0x50,0xff,0xa8,0x54,0x40,0x0,0x98,0x53,0x50,0x1,0x88,0x36,0x40,0x2, - 0x78,0x35,0x50,0x3,0x71,0x52,0xc0,0x4,0x61,0x51,0xd0,0x5,0x51,0x34,0xc0,0x6, - 0x41,0x33,0xd0,0x7,0x31,0x16,0xc0,0x7,0x8d,0x6d,0xd0,0x9,0x10,0xf8,0xc0,0x9, - 0xad,0xe9,0x50,0xa,0xf0,0xda,0xc0,0xb,0xe0,0xd9,0xd0,0xc,0xd9,0xf7,0x40,0xd, - 0xc0,0xbb,0xd0,0xe,0xb9,0xd9,0x40,0xf,0xa9,0xd8,0x50,0x10,0x99,0xbb,0x40,0x11, - 0x89,0xba,0x50,0x12,0x79,0x9d,0x40,0x13,0x69,0x9c,0x50,0x14,0x59,0x7f,0x40,0x15, - 0x49,0x7e,0x50,0x16,0x39,0x61,0x40,0x17,0x29,0x60,0x50,0x18,0x22,0x7d,0xc0,0x19, - 0x9,0x42,0x50,0x1a,0x2,0x5f,0xc0,0x1a,0x2b,0x22,0x20,0x1a,0xf2,0x50,0xc0,0x1b, - 0xe2,0x33,0xb0,0x1c,0xd2,0x32,0xc0,0x1d,0xc2,0x15,0xb0,0x1e,0xb2,0x14,0xc0,0x1f, - 0xa1,0xf7,0xb0,0x20,0x76,0x47,0x40,0x21,0x81,0xd9,0xb0,0x22,0x56,0x29,0x40,0x23, - 0x6a,0xf6,0x30,0x24,0x36,0xb,0x40,0x25,0x4a,0xd8,0x30,0x26,0x15,0xed,0x40,0x27, - 0x2a,0xba,0x30,0x27,0xff,0x9,0xc0,0x29,0xa,0x9c,0x30,0x29,0xde,0xeb,0xc0,0x2a, - 0xea,0x7e,0x30,0x2b,0xbe,0xcd,0xc0,0x2c,0xd3,0x9a,0xb0,0x2d,0x9e,0xaf,0xc0,0x2e, - 0xb3,0x7c,0xb0,0x2f,0x7e,0x91,0xc0,0x30,0x93,0x5e,0xb0,0x31,0x67,0xae,0x40,0x32, - 0x73,0x40,0xb0,0x33,0x47,0x90,0x40,0x34,0x53,0x22,0xb0,0x35,0x27,0x72,0x40,0x36, - 0x33,0x4,0xb0,0x37,0x7,0x54,0x40,0x38,0x1c,0x21,0x30,0x38,0xe7,0x36,0x40,0x39, - 0xfc,0x3,0x30,0x3a,0xc7,0x18,0x40,0x3b,0xdb,0xe5,0x30,0x3c,0xb0,0x34,0xc0,0x3d, - 0xbb,0xc7,0x30,0x3e,0x90,0x16,0xc0,0x3f,0x9b,0xa9,0x30,0x40,0x6f,0xf8,0xc0,0x41, - 0x84,0xc5,0xb0,0x42,0x4f,0xda,0xc0,0x43,0x64,0xa7,0xb0,0x44,0x2f,0xbc,0xc0,0x45, - 0x44,0x89,0xb0,0x45,0xf3,0xef,0x40,0x47,0x2d,0xa6,0x30,0x47,0xd3,0xd1,0x40,0x49, - 0xd,0x88,0x30,0x49,0xb3,0xb3,0x40,0x4a,0xed,0x6a,0x30,0x4b,0x9c,0xcf,0xc0,0x4c, - 0xd6,0x86,0xb0,0x4d,0x7c,0xb1,0xc0,0x4e,0xb6,0x68,0xb0,0x4f,0x5c,0x93,0xc0,0x50, - 0x96,0x4a,0xb0,0x51,0x3c,0x75,0xc0,0x52,0x76,0x2c,0xb0,0x53,0x1c,0x57,0xc0,0x54, - 0x56,0xe,0xb0,0x54,0xfc,0x39,0xc0,0x56,0x35,0xf0,0xb0,0x56,0xe5,0x56,0x40,0x58, - 0x1f,0xd,0x30,0x58,0xc5,0x38,0x40,0x59,0xfe,0xef,0x30,0x5a,0xa5,0x1a,0x40,0x5b, - 0xde,0xd1,0x30,0x5c,0x84,0xfc,0x40,0x5d,0xbe,0xb3,0x30,0x5e,0x64,0xde,0x40,0x5f, - 0x9e,0x95,0x30,0x60,0x4d,0xfa,0xc0,0x61,0x87,0xb1,0xb0,0x62,0x2d,0xdc,0xc0,0x63, - 0x67,0x93,0xb0,0x64,0xd,0xbe,0xc0,0x65,0x47,0x75,0xb0,0x65,0xed,0xa0,0xc0,0x67, - 0x27,0x57,0xb0,0x67,0xcd,0x82,0xc0,0x69,0x7,0x39,0xb0,0x69,0xad,0x64,0xc0,0x6a, - 0xe7,0x1b,0xb0,0x6b,0x96,0x81,0x40,0x6c,0xd0,0x38,0x30,0x6d,0x76,0x63,0x40,0x6e, - 0xb0,0x1a,0x30,0x6f,0x56,0x45,0x40,0x70,0x8f,0xfc,0x30,0x71,0x36,0x27,0x40,0x72, - 0x6f,0xde,0x30,0x73,0x16,0x9,0x40,0x74,0x4f,0xc0,0x30,0x74,0xff,0x25,0xc0,0x76, - 0x38,0xdc,0xb0,0x76,0xdf,0x7,0xc0,0x78,0x18,0xbe,0xb0,0x78,0xbe,0xe9,0xc0,0x79, - 0xf8,0xa0,0xb0,0x7a,0x9e,0xcb,0xc0,0x7b,0xd8,0x82,0xb0,0x7c,0x7e,0xad,0xc0,0x7d, - 0xb8,0x64,0xb0,0x7e,0x5e,0x8f,0xc0,0x7f,0x98,0x46,0xb0,0x1,0x2,0x3,0x1,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x6,0x8,0x7, - 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, - 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, - 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, - 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, - 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, - 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, - 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0xff,0xff,0x5a,0x62,0x0, - 0x0,0xff,0xff,0x65,0x50,0x0,0x4,0xff,0xff,0x73,0x60,0x1,0x8,0xff,0xff,0x73, - 0x60,0x1,0xc,0xff,0xff,0x65,0x50,0x0,0x10,0xff,0xff,0x73,0x60,0x1,0x14,0xff, - 0xff,0x73,0x60,0x0,0x18,0xff,0xff,0x81,0x70,0x1,0x1d,0xff,0xff,0x73,0x60,0x0, - 0x19,0x4c,0x4d,0x54,0x0,0x4e,0x53,0x54,0x0,0x4e,0x57,0x54,0x0,0x4e,0x50,0x54, - 0x0,0x42,0x53,0x54,0x0,0x42,0x44,0x54,0x0,0x41,0x48,0x53,0x54,0x0,0x48,0x44, - 0x54,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0, - 0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0xa, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x21, - 0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x3f,0xc0,0xf9,0x1f, - 0xff,0xff,0xff,0xff,0x7d,0x87,0x5a,0x5e,0xff,0xff,0xff,0xff,0xcb,0x89,0x44,0xd0, - 0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x61,0x50,0x40, - 0xff,0xff,0xff,0xff,0xfa,0xd2,0x55,0xb0,0xff,0xff,0xff,0xff,0xfe,0xb8,0x71,0x50, - 0xff,0xff,0xff,0xff,0xff,0xa8,0x54,0x40,0x0,0x0,0x0,0x0,0x0,0x98,0x53,0x50, - 0x0,0x0,0x0,0x0,0x1,0x88,0x36,0x40,0x0,0x0,0x0,0x0,0x2,0x78,0x35,0x50, - 0x0,0x0,0x0,0x0,0x3,0x71,0x52,0xc0,0x0,0x0,0x0,0x0,0x4,0x61,0x51,0xd0, - 0x0,0x0,0x0,0x0,0x5,0x51,0x34,0xc0,0x0,0x0,0x0,0x0,0x6,0x41,0x33,0xd0, - 0x0,0x0,0x0,0x0,0x7,0x31,0x16,0xc0,0x0,0x0,0x0,0x0,0x7,0x8d,0x6d,0xd0, - 0x0,0x0,0x0,0x0,0x9,0x10,0xf8,0xc0,0x0,0x0,0x0,0x0,0x9,0xad,0xe9,0x50, - 0x0,0x0,0x0,0x0,0xa,0xf0,0xda,0xc0,0x0,0x0,0x0,0x0,0xb,0xe0,0xd9,0xd0, - 0x0,0x0,0x0,0x0,0xc,0xd9,0xf7,0x40,0x0,0x0,0x0,0x0,0xd,0xc0,0xbb,0xd0, - 0x0,0x0,0x0,0x0,0xe,0xb9,0xd9,0x40,0x0,0x0,0x0,0x0,0xf,0xa9,0xd8,0x50, - 0x0,0x0,0x0,0x0,0x10,0x99,0xbb,0x40,0x0,0x0,0x0,0x0,0x11,0x89,0xba,0x50, - 0x0,0x0,0x0,0x0,0x12,0x79,0x9d,0x40,0x0,0x0,0x0,0x0,0x13,0x69,0x9c,0x50, - 0x0,0x0,0x0,0x0,0x14,0x59,0x7f,0x40,0x0,0x0,0x0,0x0,0x15,0x49,0x7e,0x50, - 0x0,0x0,0x0,0x0,0x16,0x39,0x61,0x40,0x0,0x0,0x0,0x0,0x17,0x29,0x60,0x50, - 0x0,0x0,0x0,0x0,0x18,0x22,0x7d,0xc0,0x0,0x0,0x0,0x0,0x19,0x9,0x42,0x50, - 0x0,0x0,0x0,0x0,0x1a,0x2,0x5f,0xc0,0x0,0x0,0x0,0x0,0x1a,0x2b,0x22,0x20, - 0x0,0x0,0x0,0x0,0x1a,0xf2,0x50,0xc0,0x0,0x0,0x0,0x0,0x1b,0xe2,0x33,0xb0, - 0x0,0x0,0x0,0x0,0x1c,0xd2,0x32,0xc0,0x0,0x0,0x0,0x0,0x1d,0xc2,0x15,0xb0, - 0x0,0x0,0x0,0x0,0x1e,0xb2,0x14,0xc0,0x0,0x0,0x0,0x0,0x1f,0xa1,0xf7,0xb0, - 0x0,0x0,0x0,0x0,0x20,0x76,0x47,0x40,0x0,0x0,0x0,0x0,0x21,0x81,0xd9,0xb0, - 0x0,0x0,0x0,0x0,0x22,0x56,0x29,0x40,0x0,0x0,0x0,0x0,0x23,0x6a,0xf6,0x30, - 0x0,0x0,0x0,0x0,0x24,0x36,0xb,0x40,0x0,0x0,0x0,0x0,0x25,0x4a,0xd8,0x30, - 0x0,0x0,0x0,0x0,0x26,0x15,0xed,0x40,0x0,0x0,0x0,0x0,0x27,0x2a,0xba,0x30, - 0x0,0x0,0x0,0x0,0x27,0xff,0x9,0xc0,0x0,0x0,0x0,0x0,0x29,0xa,0x9c,0x30, - 0x0,0x0,0x0,0x0,0x29,0xde,0xeb,0xc0,0x0,0x0,0x0,0x0,0x2a,0xea,0x7e,0x30, - 0x0,0x0,0x0,0x0,0x2b,0xbe,0xcd,0xc0,0x0,0x0,0x0,0x0,0x2c,0xd3,0x9a,0xb0, - 0x0,0x0,0x0,0x0,0x2d,0x9e,0xaf,0xc0,0x0,0x0,0x0,0x0,0x2e,0xb3,0x7c,0xb0, - 0x0,0x0,0x0,0x0,0x2f,0x7e,0x91,0xc0,0x0,0x0,0x0,0x0,0x30,0x93,0x5e,0xb0, - 0x0,0x0,0x0,0x0,0x31,0x67,0xae,0x40,0x0,0x0,0x0,0x0,0x32,0x73,0x40,0xb0, - 0x0,0x0,0x0,0x0,0x33,0x47,0x90,0x40,0x0,0x0,0x0,0x0,0x34,0x53,0x22,0xb0, - 0x0,0x0,0x0,0x0,0x35,0x27,0x72,0x40,0x0,0x0,0x0,0x0,0x36,0x33,0x4,0xb0, - 0x0,0x0,0x0,0x0,0x37,0x7,0x54,0x40,0x0,0x0,0x0,0x0,0x38,0x1c,0x21,0x30, - 0x0,0x0,0x0,0x0,0x38,0xe7,0x36,0x40,0x0,0x0,0x0,0x0,0x39,0xfc,0x3,0x30, - 0x0,0x0,0x0,0x0,0x3a,0xc7,0x18,0x40,0x0,0x0,0x0,0x0,0x3b,0xdb,0xe5,0x30, - 0x0,0x0,0x0,0x0,0x3c,0xb0,0x34,0xc0,0x0,0x0,0x0,0x0,0x3d,0xbb,0xc7,0x30, - 0x0,0x0,0x0,0x0,0x3e,0x90,0x16,0xc0,0x0,0x0,0x0,0x0,0x3f,0x9b,0xa9,0x30, - 0x0,0x0,0x0,0x0,0x40,0x6f,0xf8,0xc0,0x0,0x0,0x0,0x0,0x41,0x84,0xc5,0xb0, - 0x0,0x0,0x0,0x0,0x42,0x4f,0xda,0xc0,0x0,0x0,0x0,0x0,0x43,0x64,0xa7,0xb0, - 0x0,0x0,0x0,0x0,0x44,0x2f,0xbc,0xc0,0x0,0x0,0x0,0x0,0x45,0x44,0x89,0xb0, - 0x0,0x0,0x0,0x0,0x45,0xf3,0xef,0x40,0x0,0x0,0x0,0x0,0x47,0x2d,0xa6,0x30, - 0x0,0x0,0x0,0x0,0x47,0xd3,0xd1,0x40,0x0,0x0,0x0,0x0,0x49,0xd,0x88,0x30, - 0x0,0x0,0x0,0x0,0x49,0xb3,0xb3,0x40,0x0,0x0,0x0,0x0,0x4a,0xed,0x6a,0x30, - 0x0,0x0,0x0,0x0,0x4b,0x9c,0xcf,0xc0,0x0,0x0,0x0,0x0,0x4c,0xd6,0x86,0xb0, - 0x0,0x0,0x0,0x0,0x4d,0x7c,0xb1,0xc0,0x0,0x0,0x0,0x0,0x4e,0xb6,0x68,0xb0, - 0x0,0x0,0x0,0x0,0x4f,0x5c,0x93,0xc0,0x0,0x0,0x0,0x0,0x50,0x96,0x4a,0xb0, - 0x0,0x0,0x0,0x0,0x51,0x3c,0x75,0xc0,0x0,0x0,0x0,0x0,0x52,0x76,0x2c,0xb0, - 0x0,0x0,0x0,0x0,0x53,0x1c,0x57,0xc0,0x0,0x0,0x0,0x0,0x54,0x56,0xe,0xb0, - 0x0,0x0,0x0,0x0,0x54,0xfc,0x39,0xc0,0x0,0x0,0x0,0x0,0x56,0x35,0xf0,0xb0, - 0x0,0x0,0x0,0x0,0x56,0xe5,0x56,0x40,0x0,0x0,0x0,0x0,0x58,0x1f,0xd,0x30, - 0x0,0x0,0x0,0x0,0x58,0xc5,0x38,0x40,0x0,0x0,0x0,0x0,0x59,0xfe,0xef,0x30, - 0x0,0x0,0x0,0x0,0x5a,0xa5,0x1a,0x40,0x0,0x0,0x0,0x0,0x5b,0xde,0xd1,0x30, - 0x0,0x0,0x0,0x0,0x5c,0x84,0xfc,0x40,0x0,0x0,0x0,0x0,0x5d,0xbe,0xb3,0x30, - 0x0,0x0,0x0,0x0,0x5e,0x64,0xde,0x40,0x0,0x0,0x0,0x0,0x5f,0x9e,0x95,0x30, - 0x0,0x0,0x0,0x0,0x60,0x4d,0xfa,0xc0,0x0,0x0,0x0,0x0,0x61,0x87,0xb1,0xb0, - 0x0,0x0,0x0,0x0,0x62,0x2d,0xdc,0xc0,0x0,0x0,0x0,0x0,0x63,0x67,0x93,0xb0, - 0x0,0x0,0x0,0x0,0x64,0xd,0xbe,0xc0,0x0,0x0,0x0,0x0,0x65,0x47,0x75,0xb0, - 0x0,0x0,0x0,0x0,0x65,0xed,0xa0,0xc0,0x0,0x0,0x0,0x0,0x67,0x27,0x57,0xb0, - 0x0,0x0,0x0,0x0,0x67,0xcd,0x82,0xc0,0x0,0x0,0x0,0x0,0x69,0x7,0x39,0xb0, - 0x0,0x0,0x0,0x0,0x69,0xad,0x64,0xc0,0x0,0x0,0x0,0x0,0x6a,0xe7,0x1b,0xb0, - 0x0,0x0,0x0,0x0,0x6b,0x96,0x81,0x40,0x0,0x0,0x0,0x0,0x6c,0xd0,0x38,0x30, - 0x0,0x0,0x0,0x0,0x6d,0x76,0x63,0x40,0x0,0x0,0x0,0x0,0x6e,0xb0,0x1a,0x30, - 0x0,0x0,0x0,0x0,0x6f,0x56,0x45,0x40,0x0,0x0,0x0,0x0,0x70,0x8f,0xfc,0x30, - 0x0,0x0,0x0,0x0,0x71,0x36,0x27,0x40,0x0,0x0,0x0,0x0,0x72,0x6f,0xde,0x30, - 0x0,0x0,0x0,0x0,0x73,0x16,0x9,0x40,0x0,0x0,0x0,0x0,0x74,0x4f,0xc0,0x30, - 0x0,0x0,0x0,0x0,0x74,0xff,0x25,0xc0,0x0,0x0,0x0,0x0,0x76,0x38,0xdc,0xb0, - 0x0,0x0,0x0,0x0,0x76,0xdf,0x7,0xc0,0x0,0x0,0x0,0x0,0x78,0x18,0xbe,0xb0, - 0x0,0x0,0x0,0x0,0x78,0xbe,0xe9,0xc0,0x0,0x0,0x0,0x0,0x79,0xf8,0xa0,0xb0, - 0x0,0x0,0x0,0x0,0x7a,0x9e,0xcb,0xc0,0x0,0x0,0x0,0x0,0x7b,0xd8,0x82,0xb0, - 0x0,0x0,0x0,0x0,0x7c,0x7e,0xad,0xc0,0x0,0x0,0x0,0x0,0x7d,0xb8,0x64,0xb0, - 0x0,0x0,0x0,0x0,0x7e,0x5e,0x8f,0xc0,0x0,0x0,0x0,0x0,0x7f,0x98,0x46,0xb0, - 0x0,0x1,0x2,0x3,0x4,0x2,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x7,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, - 0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, - 0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, - 0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, - 0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, - 0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, - 0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, - 0x8,0x9,0x0,0x0,0xab,0xe1,0x0,0x0,0xff,0xff,0x5a,0x62,0x0,0x0,0xff,0xff, - 0x65,0x50,0x0,0x4,0xff,0xff,0x73,0x60,0x1,0x8,0xff,0xff,0x73,0x60,0x1,0xc, - 0xff,0xff,0x65,0x50,0x0,0x10,0xff,0xff,0x73,0x60,0x1,0x14,0xff,0xff,0x73,0x60, - 0x0,0x18,0xff,0xff,0x81,0x70,0x1,0x1d,0xff,0xff,0x73,0x60,0x0,0x19,0x4c,0x4d, - 0x54,0x0,0x4e,0x53,0x54,0x0,0x4e,0x57,0x54,0x0,0x4e,0x50,0x54,0x0,0x42,0x53, - 0x54,0x0,0x42,0x44,0x54,0x0,0x41,0x48,0x53,0x54,0x0,0x48,0x44,0x54,0x0,0x0, - 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0, - 0x0,0x0,0x0,0xa,0x48,0x53,0x54,0x31,0x30,0x48,0x44,0x54,0x2c,0x4d,0x33,0x2e, - 0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Canada/Central - 0x0,0x0,0xb,0x4b, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xbb,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0x9b, - 0x1,0xfb,0xe0,0x9b,0xc3,0xba,0x50,0x9e,0xb8,0xa1,0x80,0x9f,0xba,0xf9,0x70,0xc2, - 0xa0,0x3b,0x80,0xc3,0x4f,0x84,0xf0,0xcb,0x88,0xfe,0x80,0xd2,0x23,0xf4,0x70,0xd2, - 0x61,0x9,0xf0,0xd3,0x88,0x68,0x0,0xd4,0x53,0x60,0xf0,0xd5,0x55,0xd5,0x0,0xd6, - 0x20,0xcd,0xf0,0xd7,0x35,0xb7,0x0,0xd8,0x0,0xaf,0xf0,0xd9,0x15,0x99,0x0,0xd9, - 0xe0,0x91,0xf0,0xdb,0x0,0x7,0x0,0xdb,0xc8,0x5c,0xf0,0xdc,0xde,0x97,0x80,0xdd, - 0xa9,0x90,0x70,0xde,0xbe,0x79,0x80,0xdf,0x89,0x72,0x70,0xe0,0x9e,0x5b,0x80,0xe1, - 0x69,0x54,0x70,0xe2,0x7e,0x3d,0x80,0xe3,0x49,0x36,0x70,0xe4,0x5e,0x1f,0x80,0xe5, - 0x29,0x18,0x70,0xe6,0x47,0x3c,0x0,0xe7,0x12,0x34,0xf0,0xe8,0x27,0x1e,0x0,0xe8, - 0xf2,0x16,0xf0,0xea,0x7,0x0,0x0,0xea,0xd1,0xf8,0xf0,0xeb,0xe6,0xe2,0x0,0xec, - 0xd6,0xc4,0xf0,0xed,0xc6,0xc4,0x0,0xee,0x91,0xbc,0xf0,0xf3,0x6f,0xa4,0x80,0xf4, - 0x31,0x62,0xf0,0xf9,0xf,0x4a,0x80,0xfa,0x8,0x76,0x0,0xfa,0xf8,0x67,0x0,0xfb, - 0xe8,0x58,0x0,0xfc,0xd8,0x49,0x0,0xfd,0xc8,0x3a,0x0,0xfe,0xb8,0x2b,0x0,0xff, - 0xa8,0x1c,0x0,0x0,0x98,0xd,0x0,0x1,0x87,0xfe,0x0,0x2,0x77,0xef,0x0,0x3, - 0x71,0x1a,0x80,0x4,0x61,0xb,0x80,0x5,0x50,0xfc,0x80,0x6,0x40,0xed,0x80,0x7, - 0x30,0xde,0x80,0x8,0x20,0xcf,0x80,0x9,0x10,0xc0,0x80,0xa,0x0,0xb1,0x80,0xa, - 0xf0,0xa2,0x80,0xb,0xe0,0x93,0x80,0xc,0xd9,0xbf,0x0,0xd,0xc0,0x75,0x80,0xe, - 0xb9,0xa1,0x0,0xf,0xa9,0x92,0x0,0x10,0x99,0x83,0x0,0x11,0x89,0x74,0x0,0x12, - 0x79,0x65,0x0,0x13,0x69,0x56,0x0,0x14,0x59,0x47,0x0,0x15,0x49,0x38,0x0,0x16, - 0x39,0x29,0x0,0x17,0x29,0x1a,0x0,0x18,0x22,0x45,0x80,0x19,0x8,0xfc,0x0,0x1a, - 0x2,0x27,0x80,0x1a,0xf2,0x18,0x80,0x1b,0xe2,0x9,0x80,0x1c,0xd1,0xfa,0x80,0x1d, - 0xc1,0xeb,0x80,0x1e,0xb1,0xdc,0x80,0x1f,0xa1,0xcd,0x80,0x20,0x76,0xf,0x0,0x21, - 0x81,0xaf,0x80,0x22,0x55,0xf1,0x0,0x23,0x6a,0xcc,0x0,0x24,0x35,0xd3,0x0,0x25, - 0x4a,0xae,0x0,0x26,0x15,0xb5,0x0,0x27,0x2a,0x90,0x0,0x27,0xfe,0xd1,0x80,0x29, - 0xa,0x72,0x0,0x29,0xde,0xb3,0x80,0x2a,0xea,0x54,0x0,0x2b,0xbe,0x95,0x80,0x2c, - 0xd3,0x70,0x80,0x2d,0x9e,0x77,0x80,0x2e,0xb3,0x52,0x80,0x2f,0x7e,0x59,0x80,0x30, - 0x93,0x34,0x80,0x31,0x67,0x76,0x0,0x32,0x73,0x16,0x80,0x33,0x47,0x58,0x0,0x34, - 0x52,0xf8,0x80,0x35,0x27,0x3a,0x0,0x36,0x32,0xda,0x80,0x37,0x7,0x1c,0x0,0x38, - 0x1b,0xf7,0x0,0x38,0xe6,0xfe,0x0,0x39,0xfb,0xd9,0x0,0x3a,0xc6,0xe0,0x0,0x3b, - 0xdb,0xbb,0x0,0x3c,0xaf,0xfc,0x80,0x3d,0xbb,0x9d,0x0,0x3e,0x8f,0xde,0x80,0x3f, - 0x9b,0x7f,0x0,0x40,0x6f,0xc0,0x80,0x41,0x84,0x9b,0x80,0x42,0x4f,0xa2,0x80,0x43, - 0x64,0x7d,0x80,0x43,0xb7,0x6f,0xe0,0x44,0x2f,0x84,0x80,0x45,0x44,0x51,0x70,0x45, - 0xf3,0xb7,0x0,0x47,0x2d,0x6d,0xf0,0x47,0xd3,0x99,0x0,0x49,0xd,0x4f,0xf0,0x49, - 0xb3,0x7b,0x0,0x4a,0xed,0x31,0xf0,0x4b,0x9c,0x97,0x80,0x4c,0xd6,0x4e,0x70,0x4d, - 0x7c,0x79,0x80,0x4e,0xb6,0x30,0x70,0x4f,0x5c,0x5b,0x80,0x50,0x96,0x12,0x70,0x51, - 0x3c,0x3d,0x80,0x52,0x75,0xf4,0x70,0x53,0x1c,0x1f,0x80,0x54,0x55,0xd6,0x70,0x54, - 0xfc,0x1,0x80,0x56,0x35,0xb8,0x70,0x56,0xe5,0x1e,0x0,0x58,0x1e,0xd4,0xf0,0x58, - 0xc5,0x0,0x0,0x59,0xfe,0xb6,0xf0,0x5a,0xa4,0xe2,0x0,0x5b,0xde,0x98,0xf0,0x5c, - 0x84,0xc4,0x0,0x5d,0xbe,0x7a,0xf0,0x5e,0x64,0xa6,0x0,0x5f,0x9e,0x5c,0xf0,0x60, - 0x4d,0xc2,0x80,0x61,0x87,0x79,0x70,0x62,0x2d,0xa4,0x80,0x63,0x67,0x5b,0x70,0x64, - 0xd,0x86,0x80,0x65,0x47,0x3d,0x70,0x65,0xed,0x68,0x80,0x67,0x27,0x1f,0x70,0x67, - 0xcd,0x4a,0x80,0x69,0x7,0x1,0x70,0x69,0xad,0x2c,0x80,0x6a,0xe6,0xe3,0x70,0x6b, - 0x96,0x49,0x0,0x6c,0xcf,0xff,0xf0,0x6d,0x76,0x2b,0x0,0x6e,0xaf,0xe1,0xf0,0x6f, - 0x56,0xd,0x0,0x70,0x8f,0xc3,0xf0,0x71,0x35,0xef,0x0,0x72,0x6f,0xa5,0xf0,0x73, - 0x15,0xd1,0x0,0x74,0x4f,0x87,0xf0,0x74,0xfe,0xed,0x80,0x76,0x38,0xa4,0x70,0x76, - 0xde,0xcf,0x80,0x78,0x18,0x86,0x70,0x78,0xbe,0xb1,0x80,0x79,0xf8,0x68,0x70,0x7a, - 0x9e,0x93,0x80,0x7b,0xd8,0x4a,0x70,0x7c,0x7e,0x75,0x80,0x7d,0xb8,0x2c,0x70,0x7e, - 0x5e,0x57,0x80,0x7f,0x98,0xe,0x70,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0xff,0xff,0xa4,0xec,0x0,0x0,0xff,0xff,0xb9,0xb0,0x1,0x4,0xff,0xff, - 0xab,0xa0,0x0,0x8,0xff,0xff,0xb9,0xb0,0x1,0xc,0xff,0xff,0xb9,0xb0,0x1,0x10, - 0xff,0xff,0xb9,0xb0,0x1,0x4,0xff,0xff,0xab,0xa0,0x0,0x8,0x4c,0x4d,0x54,0x0, - 0x43,0x44,0x54,0x0,0x43,0x53,0x54,0x0,0x43,0x57,0x54,0x0,0x43,0x50,0x54,0x0, - 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x54,0x5a, - 0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xbc,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x14,0xf8,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xff,0xff,0xff,0xff,0x64,0xe4,0xb0,0x94,0xff,0xff,0xff,0xff,0x9b,0x1, - 0xfb,0xe0,0xff,0xff,0xff,0xff,0x9b,0xc3,0xba,0x50,0xff,0xff,0xff,0xff,0x9e,0xb8, - 0xa1,0x80,0xff,0xff,0xff,0xff,0x9f,0xba,0xf9,0x70,0xff,0xff,0xff,0xff,0xc2,0xa0, - 0x3b,0x80,0xff,0xff,0xff,0xff,0xc3,0x4f,0x84,0xf0,0xff,0xff,0xff,0xff,0xcb,0x88, - 0xfe,0x80,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x61, - 0x9,0xf0,0xff,0xff,0xff,0xff,0xd3,0x88,0x68,0x0,0xff,0xff,0xff,0xff,0xd4,0x53, - 0x60,0xf0,0xff,0xff,0xff,0xff,0xd5,0x55,0xd5,0x0,0xff,0xff,0xff,0xff,0xd6,0x20, - 0xcd,0xf0,0xff,0xff,0xff,0xff,0xd7,0x35,0xb7,0x0,0xff,0xff,0xff,0xff,0xd8,0x0, - 0xaf,0xf0,0xff,0xff,0xff,0xff,0xd9,0x15,0x99,0x0,0xff,0xff,0xff,0xff,0xd9,0xe0, - 0x91,0xf0,0xff,0xff,0xff,0xff,0xdb,0x0,0x7,0x0,0xff,0xff,0xff,0xff,0xdb,0xc8, - 0x5c,0xf0,0xff,0xff,0xff,0xff,0xdc,0xde,0x97,0x80,0xff,0xff,0xff,0xff,0xdd,0xa9, - 0x90,0x70,0xff,0xff,0xff,0xff,0xde,0xbe,0x79,0x80,0xff,0xff,0xff,0xff,0xdf,0x89, - 0x72,0x70,0xff,0xff,0xff,0xff,0xe0,0x9e,0x5b,0x80,0xff,0xff,0xff,0xff,0xe1,0x69, - 0x54,0x70,0xff,0xff,0xff,0xff,0xe2,0x7e,0x3d,0x80,0xff,0xff,0xff,0xff,0xe3,0x49, - 0x36,0x70,0xff,0xff,0xff,0xff,0xe4,0x5e,0x1f,0x80,0xff,0xff,0xff,0xff,0xe5,0x29, - 0x18,0x70,0xff,0xff,0xff,0xff,0xe6,0x47,0x3c,0x0,0xff,0xff,0xff,0xff,0xe7,0x12, - 0x34,0xf0,0xff,0xff,0xff,0xff,0xe8,0x27,0x1e,0x0,0xff,0xff,0xff,0xff,0xe8,0xf2, - 0x16,0xf0,0xff,0xff,0xff,0xff,0xea,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0xea,0xd1, - 0xf8,0xf0,0xff,0xff,0xff,0xff,0xeb,0xe6,0xe2,0x0,0xff,0xff,0xff,0xff,0xec,0xd6, - 0xc4,0xf0,0xff,0xff,0xff,0xff,0xed,0xc6,0xc4,0x0,0xff,0xff,0xff,0xff,0xee,0x91, - 0xbc,0xf0,0xff,0xff,0xff,0xff,0xf3,0x6f,0xa4,0x80,0xff,0xff,0xff,0xff,0xf4,0x31, - 0x62,0xf0,0xff,0xff,0xff,0xff,0xf9,0xf,0x4a,0x80,0xff,0xff,0xff,0xff,0xfa,0x8, - 0x76,0x0,0xff,0xff,0xff,0xff,0xfa,0xf8,0x67,0x0,0xff,0xff,0xff,0xff,0xfb,0xe8, - 0x58,0x0,0xff,0xff,0xff,0xff,0xfc,0xd8,0x49,0x0,0xff,0xff,0xff,0xff,0xfd,0xc8, - 0x3a,0x0,0xff,0xff,0xff,0xff,0xfe,0xb8,0x2b,0x0,0xff,0xff,0xff,0xff,0xff,0xa8, - 0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x98,0xd,0x0,0x0,0x0,0x0,0x0,0x1,0x87, - 0xfe,0x0,0x0,0x0,0x0,0x0,0x2,0x77,0xef,0x0,0x0,0x0,0x0,0x0,0x3,0x71, - 0x1a,0x80,0x0,0x0,0x0,0x0,0x4,0x61,0xb,0x80,0x0,0x0,0x0,0x0,0x5,0x50, - 0xfc,0x80,0x0,0x0,0x0,0x0,0x6,0x40,0xed,0x80,0x0,0x0,0x0,0x0,0x7,0x30, - 0xde,0x80,0x0,0x0,0x0,0x0,0x8,0x20,0xcf,0x80,0x0,0x0,0x0,0x0,0x9,0x10, - 0xc0,0x80,0x0,0x0,0x0,0x0,0xa,0x0,0xb1,0x80,0x0,0x0,0x0,0x0,0xa,0xf0, - 0xa2,0x80,0x0,0x0,0x0,0x0,0xb,0xe0,0x93,0x80,0x0,0x0,0x0,0x0,0xc,0xd9, - 0xbf,0x0,0x0,0x0,0x0,0x0,0xd,0xc0,0x75,0x80,0x0,0x0,0x0,0x0,0xe,0xb9, - 0xa1,0x0,0x0,0x0,0x0,0x0,0xf,0xa9,0x92,0x0,0x0,0x0,0x0,0x0,0x10,0x99, - 0x83,0x0,0x0,0x0,0x0,0x0,0x11,0x89,0x74,0x0,0x0,0x0,0x0,0x0,0x12,0x79, - 0x65,0x0,0x0,0x0,0x0,0x0,0x13,0x69,0x56,0x0,0x0,0x0,0x0,0x0,0x14,0x59, - 0x47,0x0,0x0,0x0,0x0,0x0,0x15,0x49,0x38,0x0,0x0,0x0,0x0,0x0,0x16,0x39, - 0x29,0x0,0x0,0x0,0x0,0x0,0x17,0x29,0x1a,0x0,0x0,0x0,0x0,0x0,0x18,0x22, - 0x45,0x80,0x0,0x0,0x0,0x0,0x19,0x8,0xfc,0x0,0x0,0x0,0x0,0x0,0x1a,0x2, - 0x27,0x80,0x0,0x0,0x0,0x0,0x1a,0xf2,0x18,0x80,0x0,0x0,0x0,0x0,0x1b,0xe2, - 0x9,0x80,0x0,0x0,0x0,0x0,0x1c,0xd1,0xfa,0x80,0x0,0x0,0x0,0x0,0x1d,0xc1, - 0xeb,0x80,0x0,0x0,0x0,0x0,0x1e,0xb1,0xdc,0x80,0x0,0x0,0x0,0x0,0x1f,0xa1, - 0xcd,0x80,0x0,0x0,0x0,0x0,0x20,0x76,0xf,0x0,0x0,0x0,0x0,0x0,0x21,0x81, - 0xaf,0x80,0x0,0x0,0x0,0x0,0x22,0x55,0xf1,0x0,0x0,0x0,0x0,0x0,0x23,0x6a, - 0xcc,0x0,0x0,0x0,0x0,0x0,0x24,0x35,0xd3,0x0,0x0,0x0,0x0,0x0,0x25,0x4a, - 0xae,0x0,0x0,0x0,0x0,0x0,0x26,0x15,0xb5,0x0,0x0,0x0,0x0,0x0,0x27,0x2a, - 0x90,0x0,0x0,0x0,0x0,0x0,0x27,0xfe,0xd1,0x80,0x0,0x0,0x0,0x0,0x29,0xa, - 0x72,0x0,0x0,0x0,0x0,0x0,0x29,0xde,0xb3,0x80,0x0,0x0,0x0,0x0,0x2a,0xea, - 0x54,0x0,0x0,0x0,0x0,0x0,0x2b,0xbe,0x95,0x80,0x0,0x0,0x0,0x0,0x2c,0xd3, - 0x70,0x80,0x0,0x0,0x0,0x0,0x2d,0x9e,0x77,0x80,0x0,0x0,0x0,0x0,0x2e,0xb3, - 0x52,0x80,0x0,0x0,0x0,0x0,0x2f,0x7e,0x59,0x80,0x0,0x0,0x0,0x0,0x30,0x93, - 0x34,0x80,0x0,0x0,0x0,0x0,0x31,0x67,0x76,0x0,0x0,0x0,0x0,0x0,0x32,0x73, - 0x16,0x80,0x0,0x0,0x0,0x0,0x33,0x47,0x58,0x0,0x0,0x0,0x0,0x0,0x34,0x52, - 0xf8,0x80,0x0,0x0,0x0,0x0,0x35,0x27,0x3a,0x0,0x0,0x0,0x0,0x0,0x36,0x32, - 0xda,0x80,0x0,0x0,0x0,0x0,0x37,0x7,0x1c,0x0,0x0,0x0,0x0,0x0,0x38,0x1b, - 0xf7,0x0,0x0,0x0,0x0,0x0,0x38,0xe6,0xfe,0x0,0x0,0x0,0x0,0x0,0x39,0xfb, - 0xd9,0x0,0x0,0x0,0x0,0x0,0x3a,0xc6,0xe0,0x0,0x0,0x0,0x0,0x0,0x3b,0xdb, - 0xbb,0x0,0x0,0x0,0x0,0x0,0x3c,0xaf,0xfc,0x80,0x0,0x0,0x0,0x0,0x3d,0xbb, - 0x9d,0x0,0x0,0x0,0x0,0x0,0x3e,0x8f,0xde,0x80,0x0,0x0,0x0,0x0,0x3f,0x9b, - 0x7f,0x0,0x0,0x0,0x0,0x0,0x40,0x6f,0xc0,0x80,0x0,0x0,0x0,0x0,0x41,0x84, - 0x9b,0x80,0x0,0x0,0x0,0x0,0x42,0x4f,0xa2,0x80,0x0,0x0,0x0,0x0,0x43,0x64, - 0x7d,0x80,0x0,0x0,0x0,0x0,0x43,0xb7,0x6f,0xe0,0x0,0x0,0x0,0x0,0x44,0x2f, - 0x84,0x80,0x0,0x0,0x0,0x0,0x45,0x44,0x51,0x70,0x0,0x0,0x0,0x0,0x45,0xf3, - 0xb7,0x0,0x0,0x0,0x0,0x0,0x47,0x2d,0x6d,0xf0,0x0,0x0,0x0,0x0,0x47,0xd3, - 0x99,0x0,0x0,0x0,0x0,0x0,0x49,0xd,0x4f,0xf0,0x0,0x0,0x0,0x0,0x49,0xb3, - 0x7b,0x0,0x0,0x0,0x0,0x0,0x4a,0xed,0x31,0xf0,0x0,0x0,0x0,0x0,0x4b,0x9c, - 0x97,0x80,0x0,0x0,0x0,0x0,0x4c,0xd6,0x4e,0x70,0x0,0x0,0x0,0x0,0x4d,0x7c, - 0x79,0x80,0x0,0x0,0x0,0x0,0x4e,0xb6,0x30,0x70,0x0,0x0,0x0,0x0,0x4f,0x5c, - 0x5b,0x80,0x0,0x0,0x0,0x0,0x50,0x96,0x12,0x70,0x0,0x0,0x0,0x0,0x51,0x3c, - 0x3d,0x80,0x0,0x0,0x0,0x0,0x52,0x75,0xf4,0x70,0x0,0x0,0x0,0x0,0x53,0x1c, - 0x1f,0x80,0x0,0x0,0x0,0x0,0x54,0x55,0xd6,0x70,0x0,0x0,0x0,0x0,0x54,0xfc, - 0x1,0x80,0x0,0x0,0x0,0x0,0x56,0x35,0xb8,0x70,0x0,0x0,0x0,0x0,0x56,0xe5, - 0x1e,0x0,0x0,0x0,0x0,0x0,0x58,0x1e,0xd4,0xf0,0x0,0x0,0x0,0x0,0x58,0xc5, - 0x0,0x0,0x0,0x0,0x0,0x0,0x59,0xfe,0xb6,0xf0,0x0,0x0,0x0,0x0,0x5a,0xa4, - 0xe2,0x0,0x0,0x0,0x0,0x0,0x5b,0xde,0x98,0xf0,0x0,0x0,0x0,0x0,0x5c,0x84, - 0xc4,0x0,0x0,0x0,0x0,0x0,0x5d,0xbe,0x7a,0xf0,0x0,0x0,0x0,0x0,0x5e,0x64, - 0xa6,0x0,0x0,0x0,0x0,0x0,0x5f,0x9e,0x5c,0xf0,0x0,0x0,0x0,0x0,0x60,0x4d, - 0xc2,0x80,0x0,0x0,0x0,0x0,0x61,0x87,0x79,0x70,0x0,0x0,0x0,0x0,0x62,0x2d, - 0xa4,0x80,0x0,0x0,0x0,0x0,0x63,0x67,0x5b,0x70,0x0,0x0,0x0,0x0,0x64,0xd, - 0x86,0x80,0x0,0x0,0x0,0x0,0x65,0x47,0x3d,0x70,0x0,0x0,0x0,0x0,0x65,0xed, - 0x68,0x80,0x0,0x0,0x0,0x0,0x67,0x27,0x1f,0x70,0x0,0x0,0x0,0x0,0x67,0xcd, - 0x4a,0x80,0x0,0x0,0x0,0x0,0x69,0x7,0x1,0x70,0x0,0x0,0x0,0x0,0x69,0xad, - 0x2c,0x80,0x0,0x0,0x0,0x0,0x6a,0xe6,0xe3,0x70,0x0,0x0,0x0,0x0,0x6b,0x96, - 0x49,0x0,0x0,0x0,0x0,0x0,0x6c,0xcf,0xff,0xf0,0x0,0x0,0x0,0x0,0x6d,0x76, - 0x2b,0x0,0x0,0x0,0x0,0x0,0x6e,0xaf,0xe1,0xf0,0x0,0x0,0x0,0x0,0x6f,0x56, - 0xd,0x0,0x0,0x0,0x0,0x0,0x70,0x8f,0xc3,0xf0,0x0,0x0,0x0,0x0,0x71,0x35, - 0xef,0x0,0x0,0x0,0x0,0x0,0x72,0x6f,0xa5,0xf0,0x0,0x0,0x0,0x0,0x73,0x15, - 0xd1,0x0,0x0,0x0,0x0,0x0,0x74,0x4f,0x87,0xf0,0x0,0x0,0x0,0x0,0x74,0xfe, - 0xed,0x80,0x0,0x0,0x0,0x0,0x76,0x38,0xa4,0x70,0x0,0x0,0x0,0x0,0x76,0xde, - 0xcf,0x80,0x0,0x0,0x0,0x0,0x78,0x18,0x86,0x70,0x0,0x0,0x0,0x0,0x78,0xbe, - 0xb1,0x80,0x0,0x0,0x0,0x0,0x79,0xf8,0x68,0x70,0x0,0x0,0x0,0x0,0x7a,0x9e, - 0x93,0x80,0x0,0x0,0x0,0x0,0x7b,0xd8,0x4a,0x70,0x0,0x0,0x0,0x0,0x7c,0x7e, - 0x75,0x80,0x0,0x0,0x0,0x0,0x7d,0xb8,0x2c,0x70,0x0,0x0,0x0,0x0,0x7e,0x5e, - 0x57,0x80,0x0,0x0,0x0,0x0,0x7f,0x98,0xe,0x70,0x0,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x3,0x4,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0xa4,0xec,0x0,0x0,0xff,0xff,0xb9,0xb0, - 0x1,0x4,0xff,0xff,0xab,0xa0,0x0,0x8,0xff,0xff,0xb9,0xb0,0x1,0xc,0xff,0xff, - 0xb9,0xb0,0x1,0x10,0xff,0xff,0xb9,0xb0,0x1,0x4,0xff,0xff,0xab,0xa0,0x0,0x8, - 0x4c,0x4d,0x54,0x0,0x43,0x44,0x54,0x0,0x43,0x53,0x54,0x0,0x43,0x57,0x54,0x0, - 0x43,0x50,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x1, - 0x0,0x0,0xa,0x43,0x53,0x54,0x36,0x43,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e, - 0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Canada/Eastern - 0x0,0x0,0xd,0xaf, + 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x13,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xe,0x80,0x0,0x0,0x0,0x9c, + 0x4e,0xc2,0xbc,0x9c,0xbc,0x3d,0x10,0xcb,0x54,0xcf,0x20,0xcb,0xc7,0x73,0x90,0xcc, + 0xb7,0x72,0xa0,0xcd,0xa7,0x55,0x90,0x9,0xf,0xfb,0xa0,0x9,0xb6,0x18,0xa0,0x1a, + 0x1,0x62,0xa0,0x1a,0xa7,0x7f,0xa0,0x29,0x25,0x5c,0xa0,0x29,0xaf,0xca,0x20,0x45, + 0x71,0xbf,0x20,0x46,0x5,0x67,0x20,0x47,0x23,0x7c,0xa0,0x47,0xee,0x83,0xa0,0x49, + 0x3,0x5e,0xa0,0x49,0xce,0x65,0xa0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x0,0x0,0x6c,0x9c,0x0,0x0, + 0x0,0x0,0x7e,0x90,0x1,0x4,0x0,0x0,0x70,0x80,0x0,0x9,0x0,0x0,0x7e,0x90, + 0x1,0x4,0x0,0x0,0x70,0x80,0x0,0x9,0x4c,0x4d,0x54,0x0,0x41,0x57,0x44,0x54, + 0x0,0x41,0x57,0x53,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0, + 0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xe,0xf8,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x74,0xa6,0x16,0xe4,0xff,0xff,0xff,0xff, + 0x9c,0x4e,0xc2,0xbc,0xff,0xff,0xff,0xff,0x9c,0xbc,0x3d,0x10,0xff,0xff,0xff,0xff, + 0xcb,0x54,0xcf,0x20,0xff,0xff,0xff,0xff,0xcb,0xc7,0x73,0x90,0xff,0xff,0xff,0xff, + 0xcc,0xb7,0x72,0xa0,0xff,0xff,0xff,0xff,0xcd,0xa7,0x55,0x90,0x0,0x0,0x0,0x0, + 0x9,0xf,0xfb,0xa0,0x0,0x0,0x0,0x0,0x9,0xb6,0x18,0xa0,0x0,0x0,0x0,0x0, + 0x1a,0x1,0x62,0xa0,0x0,0x0,0x0,0x0,0x1a,0xa7,0x7f,0xa0,0x0,0x0,0x0,0x0, + 0x29,0x25,0x5c,0xa0,0x0,0x0,0x0,0x0,0x29,0xaf,0xca,0x20,0x0,0x0,0x0,0x0, + 0x45,0x71,0xbf,0x20,0x0,0x0,0x0,0x0,0x46,0x5,0x67,0x20,0x0,0x0,0x0,0x0, + 0x47,0x23,0x7c,0xa0,0x0,0x0,0x0,0x0,0x47,0xee,0x83,0xa0,0x0,0x0,0x0,0x0, + 0x49,0x3,0x5e,0xa0,0x0,0x0,0x0,0x0,0x49,0xce,0x65,0xa0,0x0,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x0,0x0,0x6c,0x9c,0x0,0x0,0x0,0x0,0x7e,0x90,0x1,0x4,0x0,0x0,0x70,0x80, + 0x0,0x9,0x0,0x0,0x7e,0x90,0x1,0x4,0x0,0x0,0x70,0x80,0x0,0x9,0x4c,0x4d, + 0x54,0x0,0x41,0x57,0x44,0x54,0x0,0x41,0x57,0x53,0x54,0x0,0x0,0x0,0x0,0x1, + 0x1,0x0,0x0,0x0,0x0,0x0,0xa,0x41,0x57,0x53,0x54,0x2d,0x38,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Australia/Canberra + 0x0,0x0,0x8,0xaf, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xe9,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0x9e, - 0xb8,0x93,0x70,0x9f,0xba,0xeb,0x60,0xa0,0x87,0x2e,0xc8,0xa1,0x9a,0xb1,0x40,0xa2, - 0x94,0x6,0xf0,0xa3,0x55,0xa9,0x40,0xa4,0x86,0x5d,0xf0,0xa5,0x28,0x78,0x60,0xa6, - 0x66,0x3f,0xf0,0xa7,0xc,0x4e,0xe0,0xa8,0x46,0x21,0xf0,0xa8,0xec,0x30,0xe0,0xaa, - 0x1c,0xc9,0x70,0xaa,0xd5,0x4d,0x60,0xab,0xfc,0xab,0x70,0xac,0xb5,0x2f,0x60,0xad, - 0xdc,0x8d,0x70,0xae,0x95,0x11,0x60,0xaf,0xbc,0x6f,0x70,0xb0,0x7e,0x2d,0xe0,0xb1, - 0x9c,0x51,0x70,0xb2,0x67,0x4a,0x60,0xb3,0x7c,0x33,0x70,0xb4,0x47,0x2c,0x60,0xb5, - 0x5c,0x15,0x70,0xb6,0x27,0xe,0x60,0xb7,0x3b,0xf7,0x70,0xb8,0x6,0xf0,0x60,0xb9, - 0x25,0x13,0xf0,0xb9,0xe6,0xd2,0x60,0xbb,0x4,0xf5,0xf0,0xbb,0xcf,0xee,0xe0,0xbc, - 0xe4,0xd7,0xf0,0xbd,0xaf,0xd0,0xe0,0xbe,0xc4,0xb9,0xf0,0xbf,0x8f,0xb2,0xe0,0xc0, - 0xa4,0x9b,0xf0,0xc1,0x6f,0x94,0xe0,0xc2,0x84,0x7d,0xf0,0xc3,0x4f,0x76,0xe0,0xc4, - 0x64,0x5f,0xf0,0xc5,0x2f,0x58,0xe0,0xc6,0x4d,0x7c,0x70,0xc7,0xf,0x3a,0xe0,0xc8, - 0x2d,0x5e,0x70,0xcb,0x88,0xf0,0x70,0xd2,0x23,0xf4,0x70,0xd2,0x60,0xfb,0xe0,0xd3, - 0x75,0xe4,0xf0,0xd4,0x40,0xdd,0xe0,0xd5,0x55,0xaa,0xd0,0xd6,0x20,0xa3,0xc0,0xd7, - 0x35,0x8c,0xd0,0xd8,0x0,0x85,0xc0,0xd9,0x15,0x6e,0xd0,0xda,0x33,0x76,0x40,0xda, - 0xfe,0xa7,0x70,0xdc,0x13,0x74,0x60,0xdc,0xde,0x89,0x70,0xdd,0xa9,0x82,0x60,0xde, - 0xbe,0x6b,0x70,0xdf,0x89,0x64,0x60,0xe0,0x9e,0x4d,0x70,0xe1,0x69,0x46,0x60,0xe2, - 0x7e,0x2f,0x70,0xe3,0x49,0x28,0x60,0xe4,0x5e,0x11,0x70,0xe5,0x29,0xa,0x60,0xe6, - 0x47,0x2d,0xf0,0xe7,0x12,0x26,0xe0,0xe8,0x27,0xf,0xf0,0xe9,0x16,0xf2,0xe0,0xea, - 0x6,0xf1,0xf0,0xea,0xf6,0xd4,0xe0,0xeb,0xe6,0xd3,0xf0,0xec,0xd6,0xb6,0xe0,0xed, - 0xc6,0xb5,0xf0,0xee,0xbf,0xd3,0x60,0xef,0xaf,0xd2,0x70,0xf0,0x9f,0xb5,0x60,0xf1, - 0x8f,0xb4,0x70,0xf2,0x7f,0x97,0x60,0xf3,0x6f,0x96,0x70,0xf4,0x5f,0x79,0x60,0xf5, - 0x4f,0x78,0x70,0xf6,0x3f,0x5b,0x60,0xf7,0x2f,0x5a,0x70,0xf8,0x28,0x77,0xe0,0xf9, - 0xf,0x3c,0x70,0xfa,0x8,0x59,0xe0,0xfa,0xf8,0x58,0xf0,0xfb,0xe8,0x3b,0xe0,0xfc, - 0xd8,0x3a,0xf0,0xfd,0xc8,0x1d,0xe0,0xfe,0xb8,0x1c,0xf0,0xff,0xa7,0xff,0xe0,0x0, - 0x97,0xfe,0xf0,0x1,0x87,0xe1,0xe0,0x2,0x77,0xe0,0xf0,0x3,0x70,0xfe,0x60,0x4, - 0x60,0xfd,0x70,0x5,0x50,0xe0,0x60,0x6,0x40,0xdf,0x70,0x7,0x30,0xc2,0x60,0x8, - 0x20,0xc1,0x70,0x9,0x10,0xa4,0x60,0xa,0x0,0xa3,0x70,0xa,0xf0,0x86,0x60,0xb, - 0xe0,0x85,0x70,0xc,0xd9,0xa2,0xe0,0xd,0xc0,0x67,0x70,0xe,0xb9,0x84,0xe0,0xf, - 0xa9,0x83,0xf0,0x10,0x99,0x66,0xe0,0x11,0x89,0x65,0xf0,0x12,0x79,0x48,0xe0,0x13, - 0x69,0x47,0xf0,0x14,0x59,0x2a,0xe0,0x15,0x49,0x29,0xf0,0x16,0x39,0xc,0xe0,0x17, - 0x29,0xb,0xf0,0x18,0x22,0x29,0x60,0x19,0x8,0xed,0xf0,0x1a,0x2,0xb,0x60,0x1a, - 0xf2,0xa,0x70,0x1b,0xe1,0xed,0x60,0x1c,0xd1,0xec,0x70,0x1d,0xc1,0xcf,0x60,0x1e, - 0xb1,0xce,0x70,0x1f,0xa1,0xb1,0x60,0x20,0x76,0x0,0xf0,0x21,0x81,0x93,0x60,0x22, - 0x55,0xe2,0xf0,0x23,0x6a,0xaf,0xe0,0x24,0x35,0xc4,0xf0,0x25,0x4a,0x91,0xe0,0x26, - 0x15,0xa6,0xf0,0x27,0x2a,0x73,0xe0,0x27,0xfe,0xc3,0x70,0x29,0xa,0x55,0xe0,0x29, - 0xde,0xa5,0x70,0x2a,0xea,0x37,0xe0,0x2b,0xbe,0x87,0x70,0x2c,0xd3,0x54,0x60,0x2d, - 0x9e,0x69,0x70,0x2e,0xb3,0x36,0x60,0x2f,0x7e,0x4b,0x70,0x30,0x93,0x18,0x60,0x31, - 0x67,0x67,0xf0,0x32,0x72,0xfa,0x60,0x33,0x47,0x49,0xf0,0x34,0x52,0xdc,0x60,0x35, - 0x27,0x2b,0xf0,0x36,0x32,0xbe,0x60,0x37,0x7,0xd,0xf0,0x38,0x1b,0xda,0xe0,0x38, - 0xe6,0xef,0xf0,0x39,0xfb,0xbc,0xe0,0x3a,0xc6,0xd1,0xf0,0x3b,0xdb,0x9e,0xe0,0x3c, - 0xaf,0xee,0x70,0x3d,0xbb,0x80,0xe0,0x3e,0x8f,0xd0,0x70,0x3f,0x9b,0x62,0xe0,0x40, - 0x6f,0xb2,0x70,0x41,0x84,0x7f,0x60,0x42,0x4f,0x94,0x70,0x43,0x64,0x61,0x60,0x44, - 0x2f,0x76,0x70,0x45,0x44,0x43,0x60,0x45,0xf3,0xa8,0xf0,0x47,0x2d,0x5f,0xe0,0x47, - 0xd3,0x8a,0xf0,0x49,0xd,0x41,0xe0,0x49,0xb3,0x6c,0xf0,0x4a,0xed,0x23,0xe0,0x4b, - 0x9c,0x89,0x70,0x4c,0xd6,0x40,0x60,0x4d,0x7c,0x6b,0x70,0x4e,0xb6,0x22,0x60,0x4f, - 0x5c,0x4d,0x70,0x50,0x96,0x4,0x60,0x51,0x3c,0x2f,0x70,0x52,0x75,0xe6,0x60,0x53, - 0x1c,0x11,0x70,0x54,0x55,0xc8,0x60,0x54,0xfb,0xf3,0x70,0x56,0x35,0xaa,0x60,0x56, - 0xe5,0xf,0xf0,0x58,0x1e,0xc6,0xe0,0x58,0xc4,0xf1,0xf0,0x59,0xfe,0xa8,0xe0,0x5a, - 0xa4,0xd3,0xf0,0x5b,0xde,0x8a,0xe0,0x5c,0x84,0xb5,0xf0,0x5d,0xbe,0x6c,0xe0,0x5e, - 0x64,0x97,0xf0,0x5f,0x9e,0x4e,0xe0,0x60,0x4d,0xb4,0x70,0x61,0x87,0x6b,0x60,0x62, - 0x2d,0x96,0x70,0x63,0x67,0x4d,0x60,0x64,0xd,0x78,0x70,0x65,0x47,0x2f,0x60,0x65, - 0xed,0x5a,0x70,0x67,0x27,0x11,0x60,0x67,0xcd,0x3c,0x70,0x69,0x6,0xf3,0x60,0x69, - 0xad,0x1e,0x70,0x6a,0xe6,0xd5,0x60,0x6b,0x96,0x3a,0xf0,0x6c,0xcf,0xf1,0xe0,0x6d, - 0x76,0x1c,0xf0,0x6e,0xaf,0xd3,0xe0,0x6f,0x55,0xfe,0xf0,0x70,0x8f,0xb5,0xe0,0x71, - 0x35,0xe0,0xf0,0x72,0x6f,0x97,0xe0,0x73,0x15,0xc2,0xf0,0x74,0x4f,0x79,0xe0,0x74, - 0xfe,0xdf,0x70,0x76,0x38,0x96,0x60,0x76,0xde,0xc1,0x70,0x78,0x18,0x78,0x60,0x78, - 0xbe,0xa3,0x70,0x79,0xf8,0x5a,0x60,0x7a,0x9e,0x85,0x70,0x7b,0xd8,0x3c,0x60,0x7c, - 0x7e,0x67,0x70,0x7d,0xb8,0x1e,0x60,0x7e,0x5e,0x49,0x70,0x7f,0x98,0x0,0x60,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x3,0x4,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0xb5,0x94,0x0,0x0,0xff,0xff, - 0xc7,0xc0,0x1,0x4,0xff,0xff,0xb9,0xb0,0x0,0x8,0xff,0xff,0xc7,0xc0,0x1,0xc, - 0xff,0xff,0xc7,0xc0,0x1,0x10,0x4c,0x4d,0x54,0x0,0x45,0x44,0x54,0x0,0x45,0x53, - 0x54,0x0,0x45,0x57,0x54,0x0,0x45,0x50,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0, - 0x0,0x0,0x0,0x1,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14, - 0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x72,0xee,0x78,0xec, - 0xff,0xff,0xff,0xff,0x9e,0xb8,0x93,0x70,0xff,0xff,0xff,0xff,0x9f,0xba,0xeb,0x60, - 0xff,0xff,0xff,0xff,0xa0,0x87,0x2e,0xc8,0xff,0xff,0xff,0xff,0xa1,0x9a,0xb1,0x40, - 0xff,0xff,0xff,0xff,0xa2,0x94,0x6,0xf0,0xff,0xff,0xff,0xff,0xa3,0x55,0xa9,0x40, - 0xff,0xff,0xff,0xff,0xa4,0x86,0x5d,0xf0,0xff,0xff,0xff,0xff,0xa5,0x28,0x78,0x60, - 0xff,0xff,0xff,0xff,0xa6,0x66,0x3f,0xf0,0xff,0xff,0xff,0xff,0xa7,0xc,0x4e,0xe0, - 0xff,0xff,0xff,0xff,0xa8,0x46,0x21,0xf0,0xff,0xff,0xff,0xff,0xa8,0xec,0x30,0xe0, - 0xff,0xff,0xff,0xff,0xaa,0x1c,0xc9,0x70,0xff,0xff,0xff,0xff,0xaa,0xd5,0x4d,0x60, - 0xff,0xff,0xff,0xff,0xab,0xfc,0xab,0x70,0xff,0xff,0xff,0xff,0xac,0xb5,0x2f,0x60, - 0xff,0xff,0xff,0xff,0xad,0xdc,0x8d,0x70,0xff,0xff,0xff,0xff,0xae,0x95,0x11,0x60, - 0xff,0xff,0xff,0xff,0xaf,0xbc,0x6f,0x70,0xff,0xff,0xff,0xff,0xb0,0x7e,0x2d,0xe0, - 0xff,0xff,0xff,0xff,0xb1,0x9c,0x51,0x70,0xff,0xff,0xff,0xff,0xb2,0x67,0x4a,0x60, - 0xff,0xff,0xff,0xff,0xb3,0x7c,0x33,0x70,0xff,0xff,0xff,0xff,0xb4,0x47,0x2c,0x60, - 0xff,0xff,0xff,0xff,0xb5,0x5c,0x15,0x70,0xff,0xff,0xff,0xff,0xb6,0x27,0xe,0x60, - 0xff,0xff,0xff,0xff,0xb7,0x3b,0xf7,0x70,0xff,0xff,0xff,0xff,0xb8,0x6,0xf0,0x60, - 0xff,0xff,0xff,0xff,0xb9,0x25,0x13,0xf0,0xff,0xff,0xff,0xff,0xb9,0xe6,0xd2,0x60, - 0xff,0xff,0xff,0xff,0xbb,0x4,0xf5,0xf0,0xff,0xff,0xff,0xff,0xbb,0xcf,0xee,0xe0, - 0xff,0xff,0xff,0xff,0xbc,0xe4,0xd7,0xf0,0xff,0xff,0xff,0xff,0xbd,0xaf,0xd0,0xe0, - 0xff,0xff,0xff,0xff,0xbe,0xc4,0xb9,0xf0,0xff,0xff,0xff,0xff,0xbf,0x8f,0xb2,0xe0, - 0xff,0xff,0xff,0xff,0xc0,0xa4,0x9b,0xf0,0xff,0xff,0xff,0xff,0xc1,0x6f,0x94,0xe0, - 0xff,0xff,0xff,0xff,0xc2,0x84,0x7d,0xf0,0xff,0xff,0xff,0xff,0xc3,0x4f,0x76,0xe0, - 0xff,0xff,0xff,0xff,0xc4,0x64,0x5f,0xf0,0xff,0xff,0xff,0xff,0xc5,0x2f,0x58,0xe0, - 0xff,0xff,0xff,0xff,0xc6,0x4d,0x7c,0x70,0xff,0xff,0xff,0xff,0xc7,0xf,0x3a,0xe0, - 0xff,0xff,0xff,0xff,0xc8,0x2d,0x5e,0x70,0xff,0xff,0xff,0xff,0xcb,0x88,0xf0,0x70, - 0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x60,0xfb,0xe0, - 0xff,0xff,0xff,0xff,0xd3,0x75,0xe4,0xf0,0xff,0xff,0xff,0xff,0xd4,0x40,0xdd,0xe0, - 0xff,0xff,0xff,0xff,0xd5,0x55,0xaa,0xd0,0xff,0xff,0xff,0xff,0xd6,0x20,0xa3,0xc0, - 0xff,0xff,0xff,0xff,0xd7,0x35,0x8c,0xd0,0xff,0xff,0xff,0xff,0xd8,0x0,0x85,0xc0, - 0xff,0xff,0xff,0xff,0xd9,0x15,0x6e,0xd0,0xff,0xff,0xff,0xff,0xda,0x33,0x76,0x40, - 0xff,0xff,0xff,0xff,0xda,0xfe,0xa7,0x70,0xff,0xff,0xff,0xff,0xdc,0x13,0x74,0x60, - 0xff,0xff,0xff,0xff,0xdc,0xde,0x89,0x70,0xff,0xff,0xff,0xff,0xdd,0xa9,0x82,0x60, - 0xff,0xff,0xff,0xff,0xde,0xbe,0x6b,0x70,0xff,0xff,0xff,0xff,0xdf,0x89,0x64,0x60, - 0xff,0xff,0xff,0xff,0xe0,0x9e,0x4d,0x70,0xff,0xff,0xff,0xff,0xe1,0x69,0x46,0x60, - 0xff,0xff,0xff,0xff,0xe2,0x7e,0x2f,0x70,0xff,0xff,0xff,0xff,0xe3,0x49,0x28,0x60, - 0xff,0xff,0xff,0xff,0xe4,0x5e,0x11,0x70,0xff,0xff,0xff,0xff,0xe5,0x29,0xa,0x60, - 0xff,0xff,0xff,0xff,0xe6,0x47,0x2d,0xf0,0xff,0xff,0xff,0xff,0xe7,0x12,0x26,0xe0, - 0xff,0xff,0xff,0xff,0xe8,0x27,0xf,0xf0,0xff,0xff,0xff,0xff,0xe9,0x16,0xf2,0xe0, - 0xff,0xff,0xff,0xff,0xea,0x6,0xf1,0xf0,0xff,0xff,0xff,0xff,0xea,0xf6,0xd4,0xe0, - 0xff,0xff,0xff,0xff,0xeb,0xe6,0xd3,0xf0,0xff,0xff,0xff,0xff,0xec,0xd6,0xb6,0xe0, - 0xff,0xff,0xff,0xff,0xed,0xc6,0xb5,0xf0,0xff,0xff,0xff,0xff,0xee,0xbf,0xd3,0x60, - 0xff,0xff,0xff,0xff,0xef,0xaf,0xd2,0x70,0xff,0xff,0xff,0xff,0xf0,0x9f,0xb5,0x60, - 0xff,0xff,0xff,0xff,0xf1,0x8f,0xb4,0x70,0xff,0xff,0xff,0xff,0xf2,0x7f,0x97,0x60, - 0xff,0xff,0xff,0xff,0xf3,0x6f,0x96,0x70,0xff,0xff,0xff,0xff,0xf4,0x5f,0x79,0x60, - 0xff,0xff,0xff,0xff,0xf5,0x4f,0x78,0x70,0xff,0xff,0xff,0xff,0xf6,0x3f,0x5b,0x60, - 0xff,0xff,0xff,0xff,0xf7,0x2f,0x5a,0x70,0xff,0xff,0xff,0xff,0xf8,0x28,0x77,0xe0, - 0xff,0xff,0xff,0xff,0xf9,0xf,0x3c,0x70,0xff,0xff,0xff,0xff,0xfa,0x8,0x59,0xe0, - 0xff,0xff,0xff,0xff,0xfa,0xf8,0x58,0xf0,0xff,0xff,0xff,0xff,0xfb,0xe8,0x3b,0xe0, - 0xff,0xff,0xff,0xff,0xfc,0xd8,0x3a,0xf0,0xff,0xff,0xff,0xff,0xfd,0xc8,0x1d,0xe0, - 0xff,0xff,0xff,0xff,0xfe,0xb8,0x1c,0xf0,0xff,0xff,0xff,0xff,0xff,0xa7,0xff,0xe0, - 0x0,0x0,0x0,0x0,0x0,0x97,0xfe,0xf0,0x0,0x0,0x0,0x0,0x1,0x87,0xe1,0xe0, - 0x0,0x0,0x0,0x0,0x2,0x77,0xe0,0xf0,0x0,0x0,0x0,0x0,0x3,0x70,0xfe,0x60, - 0x0,0x0,0x0,0x0,0x4,0x60,0xfd,0x70,0x0,0x0,0x0,0x0,0x5,0x50,0xe0,0x60, - 0x0,0x0,0x0,0x0,0x6,0x40,0xdf,0x70,0x0,0x0,0x0,0x0,0x7,0x30,0xc2,0x60, - 0x0,0x0,0x0,0x0,0x8,0x20,0xc1,0x70,0x0,0x0,0x0,0x0,0x9,0x10,0xa4,0x60, - 0x0,0x0,0x0,0x0,0xa,0x0,0xa3,0x70,0x0,0x0,0x0,0x0,0xa,0xf0,0x86,0x60, - 0x0,0x0,0x0,0x0,0xb,0xe0,0x85,0x70,0x0,0x0,0x0,0x0,0xc,0xd9,0xa2,0xe0, - 0x0,0x0,0x0,0x0,0xd,0xc0,0x67,0x70,0x0,0x0,0x0,0x0,0xe,0xb9,0x84,0xe0, - 0x0,0x0,0x0,0x0,0xf,0xa9,0x83,0xf0,0x0,0x0,0x0,0x0,0x10,0x99,0x66,0xe0, - 0x0,0x0,0x0,0x0,0x11,0x89,0x65,0xf0,0x0,0x0,0x0,0x0,0x12,0x79,0x48,0xe0, - 0x0,0x0,0x0,0x0,0x13,0x69,0x47,0xf0,0x0,0x0,0x0,0x0,0x14,0x59,0x2a,0xe0, - 0x0,0x0,0x0,0x0,0x15,0x49,0x29,0xf0,0x0,0x0,0x0,0x0,0x16,0x39,0xc,0xe0, - 0x0,0x0,0x0,0x0,0x17,0x29,0xb,0xf0,0x0,0x0,0x0,0x0,0x18,0x22,0x29,0x60, - 0x0,0x0,0x0,0x0,0x19,0x8,0xed,0xf0,0x0,0x0,0x0,0x0,0x1a,0x2,0xb,0x60, - 0x0,0x0,0x0,0x0,0x1a,0xf2,0xa,0x70,0x0,0x0,0x0,0x0,0x1b,0xe1,0xed,0x60, - 0x0,0x0,0x0,0x0,0x1c,0xd1,0xec,0x70,0x0,0x0,0x0,0x0,0x1d,0xc1,0xcf,0x60, - 0x0,0x0,0x0,0x0,0x1e,0xb1,0xce,0x70,0x0,0x0,0x0,0x0,0x1f,0xa1,0xb1,0x60, - 0x0,0x0,0x0,0x0,0x20,0x76,0x0,0xf0,0x0,0x0,0x0,0x0,0x21,0x81,0x93,0x60, - 0x0,0x0,0x0,0x0,0x22,0x55,0xe2,0xf0,0x0,0x0,0x0,0x0,0x23,0x6a,0xaf,0xe0, - 0x0,0x0,0x0,0x0,0x24,0x35,0xc4,0xf0,0x0,0x0,0x0,0x0,0x25,0x4a,0x91,0xe0, - 0x0,0x0,0x0,0x0,0x26,0x15,0xa6,0xf0,0x0,0x0,0x0,0x0,0x27,0x2a,0x73,0xe0, - 0x0,0x0,0x0,0x0,0x27,0xfe,0xc3,0x70,0x0,0x0,0x0,0x0,0x29,0xa,0x55,0xe0, - 0x0,0x0,0x0,0x0,0x29,0xde,0xa5,0x70,0x0,0x0,0x0,0x0,0x2a,0xea,0x37,0xe0, - 0x0,0x0,0x0,0x0,0x2b,0xbe,0x87,0x70,0x0,0x0,0x0,0x0,0x2c,0xd3,0x54,0x60, - 0x0,0x0,0x0,0x0,0x2d,0x9e,0x69,0x70,0x0,0x0,0x0,0x0,0x2e,0xb3,0x36,0x60, - 0x0,0x0,0x0,0x0,0x2f,0x7e,0x4b,0x70,0x0,0x0,0x0,0x0,0x30,0x93,0x18,0x60, - 0x0,0x0,0x0,0x0,0x31,0x67,0x67,0xf0,0x0,0x0,0x0,0x0,0x32,0x72,0xfa,0x60, - 0x0,0x0,0x0,0x0,0x33,0x47,0x49,0xf0,0x0,0x0,0x0,0x0,0x34,0x52,0xdc,0x60, - 0x0,0x0,0x0,0x0,0x35,0x27,0x2b,0xf0,0x0,0x0,0x0,0x0,0x36,0x32,0xbe,0x60, - 0x0,0x0,0x0,0x0,0x37,0x7,0xd,0xf0,0x0,0x0,0x0,0x0,0x38,0x1b,0xda,0xe0, - 0x0,0x0,0x0,0x0,0x38,0xe6,0xef,0xf0,0x0,0x0,0x0,0x0,0x39,0xfb,0xbc,0xe0, - 0x0,0x0,0x0,0x0,0x3a,0xc6,0xd1,0xf0,0x0,0x0,0x0,0x0,0x3b,0xdb,0x9e,0xe0, - 0x0,0x0,0x0,0x0,0x3c,0xaf,0xee,0x70,0x0,0x0,0x0,0x0,0x3d,0xbb,0x80,0xe0, - 0x0,0x0,0x0,0x0,0x3e,0x8f,0xd0,0x70,0x0,0x0,0x0,0x0,0x3f,0x9b,0x62,0xe0, - 0x0,0x0,0x0,0x0,0x40,0x6f,0xb2,0x70,0x0,0x0,0x0,0x0,0x41,0x84,0x7f,0x60, - 0x0,0x0,0x0,0x0,0x42,0x4f,0x94,0x70,0x0,0x0,0x0,0x0,0x43,0x64,0x61,0x60, - 0x0,0x0,0x0,0x0,0x44,0x2f,0x76,0x70,0x0,0x0,0x0,0x0,0x45,0x44,0x43,0x60, - 0x0,0x0,0x0,0x0,0x45,0xf3,0xa8,0xf0,0x0,0x0,0x0,0x0,0x47,0x2d,0x5f,0xe0, - 0x0,0x0,0x0,0x0,0x47,0xd3,0x8a,0xf0,0x0,0x0,0x0,0x0,0x49,0xd,0x41,0xe0, - 0x0,0x0,0x0,0x0,0x49,0xb3,0x6c,0xf0,0x0,0x0,0x0,0x0,0x4a,0xed,0x23,0xe0, - 0x0,0x0,0x0,0x0,0x4b,0x9c,0x89,0x70,0x0,0x0,0x0,0x0,0x4c,0xd6,0x40,0x60, - 0x0,0x0,0x0,0x0,0x4d,0x7c,0x6b,0x70,0x0,0x0,0x0,0x0,0x4e,0xb6,0x22,0x60, - 0x0,0x0,0x0,0x0,0x4f,0x5c,0x4d,0x70,0x0,0x0,0x0,0x0,0x50,0x96,0x4,0x60, - 0x0,0x0,0x0,0x0,0x51,0x3c,0x2f,0x70,0x0,0x0,0x0,0x0,0x52,0x75,0xe6,0x60, - 0x0,0x0,0x0,0x0,0x53,0x1c,0x11,0x70,0x0,0x0,0x0,0x0,0x54,0x55,0xc8,0x60, - 0x0,0x0,0x0,0x0,0x54,0xfb,0xf3,0x70,0x0,0x0,0x0,0x0,0x56,0x35,0xaa,0x60, - 0x0,0x0,0x0,0x0,0x56,0xe5,0xf,0xf0,0x0,0x0,0x0,0x0,0x58,0x1e,0xc6,0xe0, - 0x0,0x0,0x0,0x0,0x58,0xc4,0xf1,0xf0,0x0,0x0,0x0,0x0,0x59,0xfe,0xa8,0xe0, - 0x0,0x0,0x0,0x0,0x5a,0xa4,0xd3,0xf0,0x0,0x0,0x0,0x0,0x5b,0xde,0x8a,0xe0, - 0x0,0x0,0x0,0x0,0x5c,0x84,0xb5,0xf0,0x0,0x0,0x0,0x0,0x5d,0xbe,0x6c,0xe0, - 0x0,0x0,0x0,0x0,0x5e,0x64,0x97,0xf0,0x0,0x0,0x0,0x0,0x5f,0x9e,0x4e,0xe0, - 0x0,0x0,0x0,0x0,0x60,0x4d,0xb4,0x70,0x0,0x0,0x0,0x0,0x61,0x87,0x6b,0x60, - 0x0,0x0,0x0,0x0,0x62,0x2d,0x96,0x70,0x0,0x0,0x0,0x0,0x63,0x67,0x4d,0x60, - 0x0,0x0,0x0,0x0,0x64,0xd,0x78,0x70,0x0,0x0,0x0,0x0,0x65,0x47,0x2f,0x60, - 0x0,0x0,0x0,0x0,0x65,0xed,0x5a,0x70,0x0,0x0,0x0,0x0,0x67,0x27,0x11,0x60, - 0x0,0x0,0x0,0x0,0x67,0xcd,0x3c,0x70,0x0,0x0,0x0,0x0,0x69,0x6,0xf3,0x60, - 0x0,0x0,0x0,0x0,0x69,0xad,0x1e,0x70,0x0,0x0,0x0,0x0,0x6a,0xe6,0xd5,0x60, - 0x0,0x0,0x0,0x0,0x6b,0x96,0x3a,0xf0,0x0,0x0,0x0,0x0,0x6c,0xcf,0xf1,0xe0, - 0x0,0x0,0x0,0x0,0x6d,0x76,0x1c,0xf0,0x0,0x0,0x0,0x0,0x6e,0xaf,0xd3,0xe0, - 0x0,0x0,0x0,0x0,0x6f,0x55,0xfe,0xf0,0x0,0x0,0x0,0x0,0x70,0x8f,0xb5,0xe0, - 0x0,0x0,0x0,0x0,0x71,0x35,0xe0,0xf0,0x0,0x0,0x0,0x0,0x72,0x6f,0x97,0xe0, - 0x0,0x0,0x0,0x0,0x73,0x15,0xc2,0xf0,0x0,0x0,0x0,0x0,0x74,0x4f,0x79,0xe0, - 0x0,0x0,0x0,0x0,0x74,0xfe,0xdf,0x70,0x0,0x0,0x0,0x0,0x76,0x38,0x96,0x60, - 0x0,0x0,0x0,0x0,0x76,0xde,0xc1,0x70,0x0,0x0,0x0,0x0,0x78,0x18,0x78,0x60, - 0x0,0x0,0x0,0x0,0x78,0xbe,0xa3,0x70,0x0,0x0,0x0,0x0,0x79,0xf8,0x5a,0x60, - 0x0,0x0,0x0,0x0,0x7a,0x9e,0x85,0x70,0x0,0x0,0x0,0x0,0x7b,0xd8,0x3c,0x60, - 0x0,0x0,0x0,0x0,0x7c,0x7e,0x67,0x70,0x0,0x0,0x0,0x0,0x7d,0xb8,0x1e,0x60, - 0x0,0x0,0x0,0x0,0x7e,0x5e,0x49,0x70,0x0,0x0,0x0,0x0,0x7f,0x98,0x0,0x60, - 0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x3, - 0x4,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0xb5,0x94,0x0,0x0, - 0xff,0xff,0xc7,0xc0,0x1,0x4,0xff,0xff,0xb9,0xb0,0x0,0x8,0xff,0xff,0xc7,0xc0, - 0x1,0xc,0xff,0xff,0xc7,0xc0,0x1,0x10,0x4c,0x4d,0x54,0x0,0x45,0x44,0x54,0x0, - 0x45,0x53,0x54,0x0,0x45,0x57,0x54,0x0,0x45,0x50,0x54,0x0,0x0,0x0,0x0,0x0, - 0x1,0x0,0x0,0x0,0x0,0x1,0xa,0x45,0x53,0x54,0x35,0x45,0x44,0x54,0x2c,0x4d, - 0x33,0x2e,0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Canada/Newfoundland - 0x0,0x0,0xe,0x50, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xef,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x19,0x80,0x0,0x0,0x0,0x9c, - 0xcf,0x62,0xc,0x9d,0xa4,0xe6,0xfc,0x9e,0xb8,0x7e,0x8c,0x9f,0xba,0xd6,0x7c,0xa0, - 0xb6,0x88,0xdc,0xa1,0x38,0xff,0x4c,0xa2,0x95,0x19,0x5c,0xa3,0x84,0xfc,0x4c,0xa4, - 0x74,0xfb,0x5c,0xa5,0x64,0xde,0x4c,0xa6,0x5e,0x17,0xdc,0xa7,0x44,0xc0,0x4c,0xa8, - 0x3d,0xf9,0xdc,0xa9,0x24,0xa2,0x4c,0xaa,0x1d,0xdb,0xdc,0xab,0x4,0x84,0x4c,0xab, - 0xfd,0xbd,0xdc,0xac,0xe4,0x66,0x4c,0xad,0xdd,0x9f,0xdc,0xae,0xcd,0x82,0xcc,0xaf, - 0xbd,0x81,0xdc,0xb0,0xad,0x64,0xcc,0xb1,0xa6,0x9e,0x5c,0xb2,0x8d,0x46,0xcc,0xb3, - 0x86,0x80,0x5c,0xb4,0x6d,0x28,0xcc,0xb5,0x66,0x62,0x5c,0xb6,0x4d,0xa,0xcc,0xb7, - 0x46,0x44,0x5c,0xb8,0x2c,0xec,0xcc,0xb9,0x26,0x26,0x5c,0xba,0x16,0x9,0x4c,0xbb, - 0xf,0x42,0xdc,0xbb,0xf5,0xeb,0x4c,0xbc,0xef,0x24,0xdc,0xbd,0xd5,0xcd,0x4c,0xbe, - 0x9e,0x4d,0x6c,0xbe,0xcf,0x6,0xa8,0xbf,0xb5,0xaf,0x18,0xc0,0xb8,0x31,0x38,0xc1, - 0x79,0xef,0xa8,0xc2,0x98,0x13,0x38,0xc3,0x59,0xd1,0xa8,0xc4,0x77,0xf5,0x38,0xc5, - 0x39,0xb3,0xa8,0xc6,0x61,0x11,0xb8,0xc7,0x19,0x95,0xa8,0xc8,0x40,0xf3,0xb8,0xc9, - 0x2,0xb2,0x28,0xca,0x20,0xd5,0xb8,0xca,0xe2,0x94,0x28,0xcc,0x0,0xb7,0xb8,0xd2, - 0x23,0xf4,0x70,0xd2,0x60,0xe6,0xc8,0xd3,0x88,0x44,0xd8,0xd4,0x4a,0x3,0x48,0xd5, - 0x68,0x26,0xd8,0xd6,0x29,0xe5,0x48,0xd7,0x48,0x8,0xd8,0xd8,0x9,0xc7,0x48,0xd9, - 0x27,0xea,0xd8,0xd9,0xe9,0xa9,0x48,0xdb,0x11,0x7,0x58,0xdb,0xd2,0xc5,0xc8,0xdc, - 0xde,0x74,0x58,0xdd,0xa9,0x6d,0x48,0xde,0xbe,0x56,0x58,0xdf,0x89,0x4f,0x48,0xe0, - 0x9e,0x38,0x58,0xe1,0x69,0x31,0x48,0xe2,0x7e,0x1a,0x58,0xe3,0x49,0x13,0x48,0xe4, - 0x5d,0xfc,0x58,0xe5,0x28,0xf5,0x48,0xe6,0x47,0x18,0xd8,0xe7,0x12,0x11,0xc8,0xe8, - 0x26,0xfa,0xd8,0xe8,0xf1,0xf3,0xc8,0xea,0x6,0xdc,0xd8,0xea,0xd1,0xd5,0xc8,0xeb, - 0xe6,0xbe,0xd8,0xec,0xb1,0xb7,0xc8,0xed,0xc6,0xa0,0xd8,0xee,0xbf,0xbe,0x48,0xef, - 0xaf,0xbd,0x58,0xf0,0x9f,0xa0,0x48,0xf1,0x8f,0x9f,0x58,0xf2,0x7f,0x82,0x48,0xf3, - 0x6f,0x81,0x58,0xf4,0x5f,0x64,0x48,0xf5,0x4f,0x63,0x58,0xf6,0x3f,0x46,0x48,0xf7, - 0x2f,0x45,0x58,0xf8,0x28,0x62,0xc8,0xf9,0xf,0x27,0x58,0xfa,0x8,0x44,0xc8,0xfa, - 0xf8,0x43,0xd8,0xfb,0xe8,0x26,0xc8,0xfc,0xd8,0x25,0xd8,0xfd,0xc8,0x8,0xc8,0xfe, - 0xb8,0x7,0xd8,0xff,0xa7,0xea,0xc8,0x0,0x97,0xe9,0xd8,0x1,0x87,0xcc,0xc8,0x2, - 0x77,0xcb,0xd8,0x3,0x70,0xe9,0x48,0x4,0x60,0xe8,0x58,0x5,0x50,0xcb,0x48,0x6, - 0x40,0xca,0x58,0x7,0x30,0xad,0x48,0x8,0x20,0xac,0x58,0x9,0x10,0x8f,0x48,0xa, - 0x0,0x8e,0x58,0xa,0xf0,0x71,0x48,0xb,0xe0,0x70,0x58,0xc,0xd9,0x8d,0xc8,0xd, - 0xc0,0x52,0x58,0xe,0xb9,0x6f,0xc8,0xf,0xa9,0x6e,0xd8,0x10,0x99,0x51,0xc8,0x11, - 0x89,0x50,0xd8,0x12,0x79,0x33,0xc8,0x13,0x69,0x32,0xd8,0x14,0x59,0x15,0xc8,0x15, - 0x49,0x14,0xd8,0x16,0x38,0xf7,0xc8,0x17,0x28,0xf6,0xd8,0x18,0x22,0x14,0x48,0x19, - 0x8,0xd8,0xd8,0x1a,0x1,0xf6,0x48,0x1a,0xf1,0xf5,0x58,0x1b,0xe1,0xd8,0x48,0x1c, - 0xd1,0xd7,0x58,0x1d,0xc1,0xba,0x48,0x1e,0xb1,0xb9,0x58,0x1f,0xa1,0x9c,0x48,0x20, - 0x75,0xcf,0xf4,0x21,0x81,0x62,0x64,0x22,0x55,0xb1,0xf4,0x23,0x6a,0x70,0xd4,0x24, - 0x35,0x93,0xf4,0x25,0x4a,0x60,0xe4,0x26,0x15,0x75,0xf4,0x27,0x2a,0x42,0xe4,0x27, - 0xfe,0x92,0x74,0x29,0xa,0x24,0xe4,0x29,0xde,0x74,0x74,0x2a,0xea,0x6,0xe4,0x2b, - 0xbe,0x56,0x74,0x2c,0xd3,0x23,0x64,0x2d,0x9e,0x38,0x74,0x2e,0xb3,0x5,0x64,0x2f, - 0x7e,0x1a,0x74,0x30,0x92,0xe7,0x64,0x31,0x67,0x36,0xf4,0x32,0x72,0xc9,0x64,0x33, - 0x47,0x18,0xf4,0x34,0x52,0xab,0x64,0x35,0x26,0xfa,0xf4,0x36,0x32,0x8d,0x64,0x37, - 0x6,0xdc,0xf4,0x38,0x1b,0xa9,0xe4,0x38,0xe6,0xbe,0xf4,0x39,0xfb,0x8b,0xe4,0x3a, - 0xc6,0xa0,0xf4,0x3b,0xdb,0x6d,0xe4,0x3c,0xaf,0xbd,0x74,0x3d,0xbb,0x4f,0xe4,0x3e, - 0x8f,0x9f,0x74,0x3f,0x9b,0x31,0xe4,0x40,0x6f,0x81,0x74,0x41,0x84,0x4e,0x64,0x42, - 0x4f,0x63,0x74,0x43,0x64,0x30,0x64,0x44,0x2f,0x45,0x74,0x45,0x44,0x12,0x64,0x45, - 0xf3,0x77,0xf4,0x47,0x2d,0x2e,0xe4,0x47,0xd3,0x59,0xf4,0x49,0xd,0x10,0xe4,0x49, - 0xb3,0x3b,0xf4,0x4a,0xec,0xf2,0xe4,0x4b,0x9c,0x58,0x74,0x4c,0xd6,0xf,0x64,0x4d, - 0x7c,0x3a,0x74,0x4e,0xb6,0xd,0x48,0x4f,0x5c,0x38,0x58,0x50,0x95,0xef,0x48,0x51, - 0x3c,0x1a,0x58,0x52,0x75,0xd1,0x48,0x53,0x1b,0xfc,0x58,0x54,0x55,0xb3,0x48,0x54, - 0xfb,0xde,0x58,0x56,0x35,0x95,0x48,0x56,0xe4,0xfa,0xd8,0x58,0x1e,0xb1,0xc8,0x58, - 0xc4,0xdc,0xd8,0x59,0xfe,0x93,0xc8,0x5a,0xa4,0xbe,0xd8,0x5b,0xde,0x75,0xc8,0x5c, - 0x84,0xa0,0xd8,0x5d,0xbe,0x57,0xc8,0x5e,0x64,0x82,0xd8,0x5f,0x9e,0x39,0xc8,0x60, - 0x4d,0x9f,0x58,0x61,0x87,0x56,0x48,0x62,0x2d,0x81,0x58,0x63,0x67,0x38,0x48,0x64, - 0xd,0x63,0x58,0x65,0x47,0x1a,0x48,0x65,0xed,0x45,0x58,0x67,0x26,0xfc,0x48,0x67, - 0xcd,0x27,0x58,0x69,0x6,0xde,0x48,0x69,0xad,0x9,0x58,0x6a,0xe6,0xc0,0x48,0x6b, - 0x96,0x25,0xd8,0x6c,0xcf,0xdc,0xc8,0x6d,0x76,0x7,0xd8,0x6e,0xaf,0xbe,0xc8,0x6f, - 0x55,0xe9,0xd8,0x70,0x8f,0xa0,0xc8,0x71,0x35,0xcb,0xd8,0x72,0x6f,0x82,0xc8,0x73, - 0x15,0xad,0xd8,0x74,0x4f,0x64,0xc8,0x74,0xfe,0xca,0x58,0x76,0x38,0x81,0x48,0x76, - 0xde,0xac,0x58,0x78,0x18,0x63,0x48,0x78,0xbe,0x8e,0x58,0x79,0xf8,0x45,0x48,0x7a, - 0x9e,0x70,0x58,0x7b,0xd8,0x27,0x48,0x7c,0x7e,0x52,0x58,0x7d,0xb8,0x9,0x48,0x7e, - 0x5e,0x34,0x58,0x7f,0x97,0xeb,0x48,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x6,0x5,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x0,0x0,0x8e,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xe,0x80,0x0,0x0,0x0,0x9c, + 0x4e,0xa6,0x9c,0x9c,0xbc,0x20,0xf0,0xcb,0x54,0xb3,0x0,0xcb,0xc7,0x57,0x70,0xcc, + 0xb7,0x56,0x80,0xcd,0xa7,0x39,0x70,0xce,0xa0,0x73,0x0,0xcf,0x87,0x1b,0x70,0x3, + 0x70,0x39,0x80,0x4,0xd,0x1c,0x0,0x5,0x50,0x1b,0x80,0x5,0xf6,0x38,0x80,0x7, + 0x2f,0xfd,0x80,0x7,0xd6,0x1a,0x80,0x9,0xf,0xdf,0x80,0x9,0xb5,0xfc,0x80,0xa, + 0xef,0xc1,0x80,0xb,0x9f,0x19,0x0,0xc,0xd8,0xde,0x0,0xd,0x7e,0xfb,0x0,0xe, + 0xb8,0xc0,0x0,0xf,0x5e,0xdd,0x0,0x10,0x98,0xa2,0x0,0x11,0x3e,0xbf,0x0,0x12, + 0x78,0x84,0x0,0x13,0x1e,0xa1,0x0,0x14,0x58,0x66,0x0,0x14,0xfe,0x83,0x0,0x16, + 0x38,0x48,0x0,0x17,0xc,0x89,0x80,0x18,0x21,0x64,0x80,0x18,0xc7,0x81,0x80,0x1a, + 0x1,0x46,0x80,0x1a,0xa7,0x63,0x80,0x1b,0xe1,0x28,0x80,0x1c,0x87,0x45,0x80,0x1d, + 0xc1,0xa,0x80,0x1e,0x79,0x9c,0x80,0x1f,0x97,0xb2,0x0,0x20,0x59,0x7e,0x80,0x21, + 0x80,0xce,0x80,0x22,0x42,0x9b,0x0,0x23,0x69,0xeb,0x0,0x24,0x22,0x7d,0x0,0x25, + 0x49,0xcd,0x0,0x25,0xef,0xea,0x0,0x27,0x29,0xaf,0x0,0x27,0xcf,0xcc,0x0,0x29, + 0x9,0x91,0x0,0x29,0xaf,0xae,0x0,0x2a,0xe9,0x73,0x0,0x2b,0x98,0xca,0x80,0x2c, + 0xd2,0x8f,0x80,0x2d,0x78,0xac,0x80,0x2e,0xb2,0x71,0x80,0x2f,0x58,0x8e,0x80,0x30, + 0x92,0x53,0x80,0x31,0x5d,0x5a,0x80,0x32,0x72,0x35,0x80,0x33,0x3d,0x3c,0x80,0x34, + 0x52,0x17,0x80,0x35,0x1d,0x1e,0x80,0x36,0x31,0xf9,0x80,0x36,0xfd,0x0,0x80,0x38, + 0x1b,0x16,0x0,0x38,0xdc,0xe2,0x80,0x39,0xa7,0xe9,0x80,0x3a,0xbc,0xc4,0x80,0x3b, + 0xda,0xda,0x0,0x3c,0xa5,0xe1,0x0,0x3d,0xba,0xbc,0x0,0x3e,0x85,0xc3,0x0,0x3f, + 0x9a,0x9e,0x0,0x40,0x65,0xa5,0x0,0x41,0x83,0xba,0x80,0x42,0x45,0x87,0x0,0x43, + 0x63,0x9c,0x80,0x44,0x2e,0xa3,0x80,0x45,0x43,0x7e,0x80,0x46,0x5,0x4b,0x0,0x47, + 0x23,0x60,0x80,0x47,0xf7,0xa2,0x0,0x48,0xe7,0x93,0x0,0x49,0xd7,0x84,0x0,0x4a, + 0xc7,0x75,0x0,0x4b,0xb7,0x66,0x0,0x4c,0xa7,0x57,0x0,0x4d,0x97,0x48,0x0,0x4e, + 0x87,0x39,0x0,0x4f,0x77,0x2a,0x0,0x50,0x70,0x55,0x80,0x51,0x60,0x46,0x80,0x52, + 0x50,0x37,0x80,0x53,0x40,0x28,0x80,0x54,0x30,0x19,0x80,0x55,0x20,0xa,0x80,0x56, + 0xf,0xfb,0x80,0x56,0xff,0xec,0x80,0x57,0xef,0xdd,0x80,0x58,0xdf,0xce,0x80,0x59, + 0xcf,0xbf,0x80,0x5a,0xbf,0xb0,0x80,0x5b,0xb8,0xdc,0x0,0x5c,0xa8,0xcd,0x0,0x5d, + 0x98,0xbe,0x0,0x5e,0x88,0xaf,0x0,0x5f,0x78,0xa0,0x0,0x60,0x68,0x91,0x0,0x61, + 0x58,0x82,0x0,0x62,0x48,0x73,0x0,0x63,0x38,0x64,0x0,0x64,0x28,0x55,0x0,0x65, + 0x18,0x46,0x0,0x66,0x11,0x71,0x80,0x67,0x1,0x62,0x80,0x67,0xf1,0x53,0x80,0x68, + 0xe1,0x44,0x80,0x69,0xd1,0x35,0x80,0x6a,0xc1,0x26,0x80,0x6b,0xb1,0x17,0x80,0x6c, + 0xa1,0x8,0x80,0x6d,0x90,0xf9,0x80,0x6e,0x80,0xea,0x80,0x6f,0x70,0xdb,0x80,0x70, + 0x6a,0x7,0x0,0x71,0x59,0xf8,0x0,0x72,0x49,0xe9,0x0,0x73,0x39,0xda,0x0,0x74, + 0x29,0xcb,0x0,0x75,0x19,0xbc,0x0,0x76,0x9,0xad,0x0,0x76,0xf9,0x9e,0x0,0x77, + 0xe9,0x8f,0x0,0x78,0xd9,0x80,0x0,0x79,0xc9,0x71,0x0,0x7a,0xb9,0x62,0x0,0x7b, + 0xb2,0x8d,0x80,0x7c,0xa2,0x7e,0x80,0x7d,0x92,0x6f,0x80,0x7e,0x82,0x60,0x80,0x7f, + 0x72,0x51,0x80,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x3,0x4, 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x7,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0xff,0xff,0xce,0x94,0x0,0x0,0xff,0xff,0xdc,0xa4, - 0x1,0x4,0xff,0xff,0xce,0x94,0x0,0x8,0xff,0xff,0xdc,0xd8,0x1,0x4,0xff,0xff, - 0xce,0xc8,0x0,0x8,0xff,0xff,0xdc,0xd8,0x1,0xc,0xff,0xff,0xdc,0xd8,0x1,0x10, - 0xff,0xff,0xea,0xe8,0x1,0x14,0xff,0xff,0xdc,0xd8,0x1,0x4,0x4c,0x4d,0x54,0x0, - 0x4e,0x44,0x54,0x0,0x4e,0x53,0x54,0x0,0x4e,0x50,0x54,0x0,0x4e,0x57,0x54,0x0, - 0x4e,0x44,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9,0x0, - 0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0x0,0x0,0x0,0x9,0x0, - 0x0,0x0,0x19,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x5e, - 0x3d,0x34,0xec,0xff,0xff,0xff,0xff,0x9c,0xcf,0x62,0xc,0xff,0xff,0xff,0xff,0x9d, - 0xa4,0xe6,0xfc,0xff,0xff,0xff,0xff,0x9e,0xb8,0x7e,0x8c,0xff,0xff,0xff,0xff,0x9f, - 0xba,0xd6,0x7c,0xff,0xff,0xff,0xff,0xa0,0xb6,0x88,0xdc,0xff,0xff,0xff,0xff,0xa1, - 0x38,0xff,0x4c,0xff,0xff,0xff,0xff,0xa2,0x95,0x19,0x5c,0xff,0xff,0xff,0xff,0xa3, - 0x84,0xfc,0x4c,0xff,0xff,0xff,0xff,0xa4,0x74,0xfb,0x5c,0xff,0xff,0xff,0xff,0xa5, - 0x64,0xde,0x4c,0xff,0xff,0xff,0xff,0xa6,0x5e,0x17,0xdc,0xff,0xff,0xff,0xff,0xa7, - 0x44,0xc0,0x4c,0xff,0xff,0xff,0xff,0xa8,0x3d,0xf9,0xdc,0xff,0xff,0xff,0xff,0xa9, - 0x24,0xa2,0x4c,0xff,0xff,0xff,0xff,0xaa,0x1d,0xdb,0xdc,0xff,0xff,0xff,0xff,0xab, - 0x4,0x84,0x4c,0xff,0xff,0xff,0xff,0xab,0xfd,0xbd,0xdc,0xff,0xff,0xff,0xff,0xac, - 0xe4,0x66,0x4c,0xff,0xff,0xff,0xff,0xad,0xdd,0x9f,0xdc,0xff,0xff,0xff,0xff,0xae, - 0xcd,0x82,0xcc,0xff,0xff,0xff,0xff,0xaf,0xbd,0x81,0xdc,0xff,0xff,0xff,0xff,0xb0, - 0xad,0x64,0xcc,0xff,0xff,0xff,0xff,0xb1,0xa6,0x9e,0x5c,0xff,0xff,0xff,0xff,0xb2, - 0x8d,0x46,0xcc,0xff,0xff,0xff,0xff,0xb3,0x86,0x80,0x5c,0xff,0xff,0xff,0xff,0xb4, - 0x6d,0x28,0xcc,0xff,0xff,0xff,0xff,0xb5,0x66,0x62,0x5c,0xff,0xff,0xff,0xff,0xb6, - 0x4d,0xa,0xcc,0xff,0xff,0xff,0xff,0xb7,0x46,0x44,0x5c,0xff,0xff,0xff,0xff,0xb8, - 0x2c,0xec,0xcc,0xff,0xff,0xff,0xff,0xb9,0x26,0x26,0x5c,0xff,0xff,0xff,0xff,0xba, - 0x16,0x9,0x4c,0xff,0xff,0xff,0xff,0xbb,0xf,0x42,0xdc,0xff,0xff,0xff,0xff,0xbb, - 0xf5,0xeb,0x4c,0xff,0xff,0xff,0xff,0xbc,0xef,0x24,0xdc,0xff,0xff,0xff,0xff,0xbd, - 0xd5,0xcd,0x4c,0xff,0xff,0xff,0xff,0xbe,0x9e,0x4d,0x6c,0xff,0xff,0xff,0xff,0xbe, - 0xcf,0x6,0xa8,0xff,0xff,0xff,0xff,0xbf,0xb5,0xaf,0x18,0xff,0xff,0xff,0xff,0xc0, - 0xb8,0x31,0x38,0xff,0xff,0xff,0xff,0xc1,0x79,0xef,0xa8,0xff,0xff,0xff,0xff,0xc2, - 0x98,0x13,0x38,0xff,0xff,0xff,0xff,0xc3,0x59,0xd1,0xa8,0xff,0xff,0xff,0xff,0xc4, - 0x77,0xf5,0x38,0xff,0xff,0xff,0xff,0xc5,0x39,0xb3,0xa8,0xff,0xff,0xff,0xff,0xc6, - 0x61,0x11,0xb8,0xff,0xff,0xff,0xff,0xc7,0x19,0x95,0xa8,0xff,0xff,0xff,0xff,0xc8, - 0x40,0xf3,0xb8,0xff,0xff,0xff,0xff,0xc9,0x2,0xb2,0x28,0xff,0xff,0xff,0xff,0xca, - 0x20,0xd5,0xb8,0xff,0xff,0xff,0xff,0xca,0xe2,0x94,0x28,0xff,0xff,0xff,0xff,0xcc, - 0x0,0xb7,0xb8,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2, - 0x60,0xe6,0xc8,0xff,0xff,0xff,0xff,0xd3,0x88,0x44,0xd8,0xff,0xff,0xff,0xff,0xd4, - 0x4a,0x3,0x48,0xff,0xff,0xff,0xff,0xd5,0x68,0x26,0xd8,0xff,0xff,0xff,0xff,0xd6, - 0x29,0xe5,0x48,0xff,0xff,0xff,0xff,0xd7,0x48,0x8,0xd8,0xff,0xff,0xff,0xff,0xd8, - 0x9,0xc7,0x48,0xff,0xff,0xff,0xff,0xd9,0x27,0xea,0xd8,0xff,0xff,0xff,0xff,0xd9, - 0xe9,0xa9,0x48,0xff,0xff,0xff,0xff,0xdb,0x11,0x7,0x58,0xff,0xff,0xff,0xff,0xdb, - 0xd2,0xc5,0xc8,0xff,0xff,0xff,0xff,0xdc,0xde,0x74,0x58,0xff,0xff,0xff,0xff,0xdd, - 0xa9,0x6d,0x48,0xff,0xff,0xff,0xff,0xde,0xbe,0x56,0x58,0xff,0xff,0xff,0xff,0xdf, - 0x89,0x4f,0x48,0xff,0xff,0xff,0xff,0xe0,0x9e,0x38,0x58,0xff,0xff,0xff,0xff,0xe1, - 0x69,0x31,0x48,0xff,0xff,0xff,0xff,0xe2,0x7e,0x1a,0x58,0xff,0xff,0xff,0xff,0xe3, - 0x49,0x13,0x48,0xff,0xff,0xff,0xff,0xe4,0x5d,0xfc,0x58,0xff,0xff,0xff,0xff,0xe5, - 0x28,0xf5,0x48,0xff,0xff,0xff,0xff,0xe6,0x47,0x18,0xd8,0xff,0xff,0xff,0xff,0xe7, - 0x12,0x11,0xc8,0xff,0xff,0xff,0xff,0xe8,0x26,0xfa,0xd8,0xff,0xff,0xff,0xff,0xe8, - 0xf1,0xf3,0xc8,0xff,0xff,0xff,0xff,0xea,0x6,0xdc,0xd8,0xff,0xff,0xff,0xff,0xea, - 0xd1,0xd5,0xc8,0xff,0xff,0xff,0xff,0xeb,0xe6,0xbe,0xd8,0xff,0xff,0xff,0xff,0xec, - 0xb1,0xb7,0xc8,0xff,0xff,0xff,0xff,0xed,0xc6,0xa0,0xd8,0xff,0xff,0xff,0xff,0xee, - 0xbf,0xbe,0x48,0xff,0xff,0xff,0xff,0xef,0xaf,0xbd,0x58,0xff,0xff,0xff,0xff,0xf0, - 0x9f,0xa0,0x48,0xff,0xff,0xff,0xff,0xf1,0x8f,0x9f,0x58,0xff,0xff,0xff,0xff,0xf2, - 0x7f,0x82,0x48,0xff,0xff,0xff,0xff,0xf3,0x6f,0x81,0x58,0xff,0xff,0xff,0xff,0xf4, - 0x5f,0x64,0x48,0xff,0xff,0xff,0xff,0xf5,0x4f,0x63,0x58,0xff,0xff,0xff,0xff,0xf6, - 0x3f,0x46,0x48,0xff,0xff,0xff,0xff,0xf7,0x2f,0x45,0x58,0xff,0xff,0xff,0xff,0xf8, - 0x28,0x62,0xc8,0xff,0xff,0xff,0xff,0xf9,0xf,0x27,0x58,0xff,0xff,0xff,0xff,0xfa, - 0x8,0x44,0xc8,0xff,0xff,0xff,0xff,0xfa,0xf8,0x43,0xd8,0xff,0xff,0xff,0xff,0xfb, - 0xe8,0x26,0xc8,0xff,0xff,0xff,0xff,0xfc,0xd8,0x25,0xd8,0xff,0xff,0xff,0xff,0xfd, - 0xc8,0x8,0xc8,0xff,0xff,0xff,0xff,0xfe,0xb8,0x7,0xd8,0xff,0xff,0xff,0xff,0xff, - 0xa7,0xea,0xc8,0x0,0x0,0x0,0x0,0x0,0x97,0xe9,0xd8,0x0,0x0,0x0,0x0,0x1, - 0x87,0xcc,0xc8,0x0,0x0,0x0,0x0,0x2,0x77,0xcb,0xd8,0x0,0x0,0x0,0x0,0x3, - 0x70,0xe9,0x48,0x0,0x0,0x0,0x0,0x4,0x60,0xe8,0x58,0x0,0x0,0x0,0x0,0x5, - 0x50,0xcb,0x48,0x0,0x0,0x0,0x0,0x6,0x40,0xca,0x58,0x0,0x0,0x0,0x0,0x7, - 0x30,0xad,0x48,0x0,0x0,0x0,0x0,0x8,0x20,0xac,0x58,0x0,0x0,0x0,0x0,0x9, - 0x10,0x8f,0x48,0x0,0x0,0x0,0x0,0xa,0x0,0x8e,0x58,0x0,0x0,0x0,0x0,0xa, - 0xf0,0x71,0x48,0x0,0x0,0x0,0x0,0xb,0xe0,0x70,0x58,0x0,0x0,0x0,0x0,0xc, - 0xd9,0x8d,0xc8,0x0,0x0,0x0,0x0,0xd,0xc0,0x52,0x58,0x0,0x0,0x0,0x0,0xe, - 0xb9,0x6f,0xc8,0x0,0x0,0x0,0x0,0xf,0xa9,0x6e,0xd8,0x0,0x0,0x0,0x0,0x10, - 0x99,0x51,0xc8,0x0,0x0,0x0,0x0,0x11,0x89,0x50,0xd8,0x0,0x0,0x0,0x0,0x12, - 0x79,0x33,0xc8,0x0,0x0,0x0,0x0,0x13,0x69,0x32,0xd8,0x0,0x0,0x0,0x0,0x14, - 0x59,0x15,0xc8,0x0,0x0,0x0,0x0,0x15,0x49,0x14,0xd8,0x0,0x0,0x0,0x0,0x16, - 0x38,0xf7,0xc8,0x0,0x0,0x0,0x0,0x17,0x28,0xf6,0xd8,0x0,0x0,0x0,0x0,0x18, - 0x22,0x14,0x48,0x0,0x0,0x0,0x0,0x19,0x8,0xd8,0xd8,0x0,0x0,0x0,0x0,0x1a, - 0x1,0xf6,0x48,0x0,0x0,0x0,0x0,0x1a,0xf1,0xf5,0x58,0x0,0x0,0x0,0x0,0x1b, - 0xe1,0xd8,0x48,0x0,0x0,0x0,0x0,0x1c,0xd1,0xd7,0x58,0x0,0x0,0x0,0x0,0x1d, - 0xc1,0xba,0x48,0x0,0x0,0x0,0x0,0x1e,0xb1,0xb9,0x58,0x0,0x0,0x0,0x0,0x1f, - 0xa1,0x9c,0x48,0x0,0x0,0x0,0x0,0x20,0x75,0xcf,0xf4,0x0,0x0,0x0,0x0,0x21, - 0x81,0x62,0x64,0x0,0x0,0x0,0x0,0x22,0x55,0xb1,0xf4,0x0,0x0,0x0,0x0,0x23, - 0x6a,0x70,0xd4,0x0,0x0,0x0,0x0,0x24,0x35,0x93,0xf4,0x0,0x0,0x0,0x0,0x25, - 0x4a,0x60,0xe4,0x0,0x0,0x0,0x0,0x26,0x15,0x75,0xf4,0x0,0x0,0x0,0x0,0x27, - 0x2a,0x42,0xe4,0x0,0x0,0x0,0x0,0x27,0xfe,0x92,0x74,0x0,0x0,0x0,0x0,0x29, - 0xa,0x24,0xe4,0x0,0x0,0x0,0x0,0x29,0xde,0x74,0x74,0x0,0x0,0x0,0x0,0x2a, - 0xea,0x6,0xe4,0x0,0x0,0x0,0x0,0x2b,0xbe,0x56,0x74,0x0,0x0,0x0,0x0,0x2c, - 0xd3,0x23,0x64,0x0,0x0,0x0,0x0,0x2d,0x9e,0x38,0x74,0x0,0x0,0x0,0x0,0x2e, - 0xb3,0x5,0x64,0x0,0x0,0x0,0x0,0x2f,0x7e,0x1a,0x74,0x0,0x0,0x0,0x0,0x30, - 0x92,0xe7,0x64,0x0,0x0,0x0,0x0,0x31,0x67,0x36,0xf4,0x0,0x0,0x0,0x0,0x32, - 0x72,0xc9,0x64,0x0,0x0,0x0,0x0,0x33,0x47,0x18,0xf4,0x0,0x0,0x0,0x0,0x34, - 0x52,0xab,0x64,0x0,0x0,0x0,0x0,0x35,0x26,0xfa,0xf4,0x0,0x0,0x0,0x0,0x36, - 0x32,0x8d,0x64,0x0,0x0,0x0,0x0,0x37,0x6,0xdc,0xf4,0x0,0x0,0x0,0x0,0x38, - 0x1b,0xa9,0xe4,0x0,0x0,0x0,0x0,0x38,0xe6,0xbe,0xf4,0x0,0x0,0x0,0x0,0x39, - 0xfb,0x8b,0xe4,0x0,0x0,0x0,0x0,0x3a,0xc6,0xa0,0xf4,0x0,0x0,0x0,0x0,0x3b, - 0xdb,0x6d,0xe4,0x0,0x0,0x0,0x0,0x3c,0xaf,0xbd,0x74,0x0,0x0,0x0,0x0,0x3d, - 0xbb,0x4f,0xe4,0x0,0x0,0x0,0x0,0x3e,0x8f,0x9f,0x74,0x0,0x0,0x0,0x0,0x3f, - 0x9b,0x31,0xe4,0x0,0x0,0x0,0x0,0x40,0x6f,0x81,0x74,0x0,0x0,0x0,0x0,0x41, - 0x84,0x4e,0x64,0x0,0x0,0x0,0x0,0x42,0x4f,0x63,0x74,0x0,0x0,0x0,0x0,0x43, - 0x64,0x30,0x64,0x0,0x0,0x0,0x0,0x44,0x2f,0x45,0x74,0x0,0x0,0x0,0x0,0x45, - 0x44,0x12,0x64,0x0,0x0,0x0,0x0,0x45,0xf3,0x77,0xf4,0x0,0x0,0x0,0x0,0x47, - 0x2d,0x2e,0xe4,0x0,0x0,0x0,0x0,0x47,0xd3,0x59,0xf4,0x0,0x0,0x0,0x0,0x49, - 0xd,0x10,0xe4,0x0,0x0,0x0,0x0,0x49,0xb3,0x3b,0xf4,0x0,0x0,0x0,0x0,0x4a, - 0xec,0xf2,0xe4,0x0,0x0,0x0,0x0,0x4b,0x9c,0x58,0x74,0x0,0x0,0x0,0x0,0x4c, - 0xd6,0xf,0x64,0x0,0x0,0x0,0x0,0x4d,0x7c,0x3a,0x74,0x0,0x0,0x0,0x0,0x4e, - 0xb6,0xd,0x48,0x0,0x0,0x0,0x0,0x4f,0x5c,0x38,0x58,0x0,0x0,0x0,0x0,0x50, - 0x95,0xef,0x48,0x0,0x0,0x0,0x0,0x51,0x3c,0x1a,0x58,0x0,0x0,0x0,0x0,0x52, - 0x75,0xd1,0x48,0x0,0x0,0x0,0x0,0x53,0x1b,0xfc,0x58,0x0,0x0,0x0,0x0,0x54, - 0x55,0xb3,0x48,0x0,0x0,0x0,0x0,0x54,0xfb,0xde,0x58,0x0,0x0,0x0,0x0,0x56, - 0x35,0x95,0x48,0x0,0x0,0x0,0x0,0x56,0xe4,0xfa,0xd8,0x0,0x0,0x0,0x0,0x58, - 0x1e,0xb1,0xc8,0x0,0x0,0x0,0x0,0x58,0xc4,0xdc,0xd8,0x0,0x0,0x0,0x0,0x59, - 0xfe,0x93,0xc8,0x0,0x0,0x0,0x0,0x5a,0xa4,0xbe,0xd8,0x0,0x0,0x0,0x0,0x5b, - 0xde,0x75,0xc8,0x0,0x0,0x0,0x0,0x5c,0x84,0xa0,0xd8,0x0,0x0,0x0,0x0,0x5d, - 0xbe,0x57,0xc8,0x0,0x0,0x0,0x0,0x5e,0x64,0x82,0xd8,0x0,0x0,0x0,0x0,0x5f, - 0x9e,0x39,0xc8,0x0,0x0,0x0,0x0,0x60,0x4d,0x9f,0x58,0x0,0x0,0x0,0x0,0x61, - 0x87,0x56,0x48,0x0,0x0,0x0,0x0,0x62,0x2d,0x81,0x58,0x0,0x0,0x0,0x0,0x63, - 0x67,0x38,0x48,0x0,0x0,0x0,0x0,0x64,0xd,0x63,0x58,0x0,0x0,0x0,0x0,0x65, - 0x47,0x1a,0x48,0x0,0x0,0x0,0x0,0x65,0xed,0x45,0x58,0x0,0x0,0x0,0x0,0x67, - 0x26,0xfc,0x48,0x0,0x0,0x0,0x0,0x67,0xcd,0x27,0x58,0x0,0x0,0x0,0x0,0x69, - 0x6,0xde,0x48,0x0,0x0,0x0,0x0,0x69,0xad,0x9,0x58,0x0,0x0,0x0,0x0,0x6a, - 0xe6,0xc0,0x48,0x0,0x0,0x0,0x0,0x6b,0x96,0x25,0xd8,0x0,0x0,0x0,0x0,0x6c, - 0xcf,0xdc,0xc8,0x0,0x0,0x0,0x0,0x6d,0x76,0x7,0xd8,0x0,0x0,0x0,0x0,0x6e, - 0xaf,0xbe,0xc8,0x0,0x0,0x0,0x0,0x6f,0x55,0xe9,0xd8,0x0,0x0,0x0,0x0,0x70, - 0x8f,0xa0,0xc8,0x0,0x0,0x0,0x0,0x71,0x35,0xcb,0xd8,0x0,0x0,0x0,0x0,0x72, - 0x6f,0x82,0xc8,0x0,0x0,0x0,0x0,0x73,0x15,0xad,0xd8,0x0,0x0,0x0,0x0,0x74, - 0x4f,0x64,0xc8,0x0,0x0,0x0,0x0,0x74,0xfe,0xca,0x58,0x0,0x0,0x0,0x0,0x76, - 0x38,0x81,0x48,0x0,0x0,0x0,0x0,0x76,0xde,0xac,0x58,0x0,0x0,0x0,0x0,0x78, - 0x18,0x63,0x48,0x0,0x0,0x0,0x0,0x78,0xbe,0x8e,0x58,0x0,0x0,0x0,0x0,0x79, - 0xf8,0x45,0x48,0x0,0x0,0x0,0x0,0x7a,0x9e,0x70,0x58,0x0,0x0,0x0,0x0,0x7b, - 0xd8,0x27,0x48,0x0,0x0,0x0,0x0,0x7c,0x7e,0x52,0x58,0x0,0x0,0x0,0x0,0x7d, - 0xb8,0x9,0x48,0x0,0x0,0x0,0x0,0x7e,0x5e,0x34,0x58,0x0,0x0,0x0,0x0,0x7f, - 0x97,0xeb,0x48,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x6,0x5,0x4,0x3,0x4,0x3,0x4,0x3, + 0x3,0x0,0x0,0x8d,0xc4,0x0,0x0,0x0,0x0,0x9a,0xb0,0x1,0x4,0x0,0x0,0x8c, + 0xa0,0x0,0x9,0x0,0x0,0x9a,0xb0,0x1,0x4,0x0,0x0,0x8c,0xa0,0x0,0x9,0x4c, + 0x4d,0x54,0x0,0x41,0x45,0x44,0x54,0x0,0x41,0x45,0x53,0x54,0x0,0x0,0x0,0x0, + 0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0, + 0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0x0,0x0,0x0,0x5,0x0, + 0x0,0x0,0xe,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x73, + 0x16,0x7f,0x3c,0xff,0xff,0xff,0xff,0x9c,0x4e,0xa6,0x9c,0xff,0xff,0xff,0xff,0x9c, + 0xbc,0x20,0xf0,0xff,0xff,0xff,0xff,0xcb,0x54,0xb3,0x0,0xff,0xff,0xff,0xff,0xcb, + 0xc7,0x57,0x70,0xff,0xff,0xff,0xff,0xcc,0xb7,0x56,0x80,0xff,0xff,0xff,0xff,0xcd, + 0xa7,0x39,0x70,0xff,0xff,0xff,0xff,0xce,0xa0,0x73,0x0,0xff,0xff,0xff,0xff,0xcf, + 0x87,0x1b,0x70,0x0,0x0,0x0,0x0,0x3,0x70,0x39,0x80,0x0,0x0,0x0,0x0,0x4, + 0xd,0x1c,0x0,0x0,0x0,0x0,0x0,0x5,0x50,0x1b,0x80,0x0,0x0,0x0,0x0,0x5, + 0xf6,0x38,0x80,0x0,0x0,0x0,0x0,0x7,0x2f,0xfd,0x80,0x0,0x0,0x0,0x0,0x7, + 0xd6,0x1a,0x80,0x0,0x0,0x0,0x0,0x9,0xf,0xdf,0x80,0x0,0x0,0x0,0x0,0x9, + 0xb5,0xfc,0x80,0x0,0x0,0x0,0x0,0xa,0xef,0xc1,0x80,0x0,0x0,0x0,0x0,0xb, + 0x9f,0x19,0x0,0x0,0x0,0x0,0x0,0xc,0xd8,0xde,0x0,0x0,0x0,0x0,0x0,0xd, + 0x7e,0xfb,0x0,0x0,0x0,0x0,0x0,0xe,0xb8,0xc0,0x0,0x0,0x0,0x0,0x0,0xf, + 0x5e,0xdd,0x0,0x0,0x0,0x0,0x0,0x10,0x98,0xa2,0x0,0x0,0x0,0x0,0x0,0x11, + 0x3e,0xbf,0x0,0x0,0x0,0x0,0x0,0x12,0x78,0x84,0x0,0x0,0x0,0x0,0x0,0x13, + 0x1e,0xa1,0x0,0x0,0x0,0x0,0x0,0x14,0x58,0x66,0x0,0x0,0x0,0x0,0x0,0x14, + 0xfe,0x83,0x0,0x0,0x0,0x0,0x0,0x16,0x38,0x48,0x0,0x0,0x0,0x0,0x0,0x17, + 0xc,0x89,0x80,0x0,0x0,0x0,0x0,0x18,0x21,0x64,0x80,0x0,0x0,0x0,0x0,0x18, + 0xc7,0x81,0x80,0x0,0x0,0x0,0x0,0x1a,0x1,0x46,0x80,0x0,0x0,0x0,0x0,0x1a, + 0xa7,0x63,0x80,0x0,0x0,0x0,0x0,0x1b,0xe1,0x28,0x80,0x0,0x0,0x0,0x0,0x1c, + 0x87,0x45,0x80,0x0,0x0,0x0,0x0,0x1d,0xc1,0xa,0x80,0x0,0x0,0x0,0x0,0x1e, + 0x79,0x9c,0x80,0x0,0x0,0x0,0x0,0x1f,0x97,0xb2,0x0,0x0,0x0,0x0,0x0,0x20, + 0x59,0x7e,0x80,0x0,0x0,0x0,0x0,0x21,0x80,0xce,0x80,0x0,0x0,0x0,0x0,0x22, + 0x42,0x9b,0x0,0x0,0x0,0x0,0x0,0x23,0x69,0xeb,0x0,0x0,0x0,0x0,0x0,0x24, + 0x22,0x7d,0x0,0x0,0x0,0x0,0x0,0x25,0x49,0xcd,0x0,0x0,0x0,0x0,0x0,0x25, + 0xef,0xea,0x0,0x0,0x0,0x0,0x0,0x27,0x29,0xaf,0x0,0x0,0x0,0x0,0x0,0x27, + 0xcf,0xcc,0x0,0x0,0x0,0x0,0x0,0x29,0x9,0x91,0x0,0x0,0x0,0x0,0x0,0x29, + 0xaf,0xae,0x0,0x0,0x0,0x0,0x0,0x2a,0xe9,0x73,0x0,0x0,0x0,0x0,0x0,0x2b, + 0x98,0xca,0x80,0x0,0x0,0x0,0x0,0x2c,0xd2,0x8f,0x80,0x0,0x0,0x0,0x0,0x2d, + 0x78,0xac,0x80,0x0,0x0,0x0,0x0,0x2e,0xb2,0x71,0x80,0x0,0x0,0x0,0x0,0x2f, + 0x58,0x8e,0x80,0x0,0x0,0x0,0x0,0x30,0x92,0x53,0x80,0x0,0x0,0x0,0x0,0x31, + 0x5d,0x5a,0x80,0x0,0x0,0x0,0x0,0x32,0x72,0x35,0x80,0x0,0x0,0x0,0x0,0x33, + 0x3d,0x3c,0x80,0x0,0x0,0x0,0x0,0x34,0x52,0x17,0x80,0x0,0x0,0x0,0x0,0x35, + 0x1d,0x1e,0x80,0x0,0x0,0x0,0x0,0x36,0x31,0xf9,0x80,0x0,0x0,0x0,0x0,0x36, + 0xfd,0x0,0x80,0x0,0x0,0x0,0x0,0x38,0x1b,0x16,0x0,0x0,0x0,0x0,0x0,0x38, + 0xdc,0xe2,0x80,0x0,0x0,0x0,0x0,0x39,0xa7,0xe9,0x80,0x0,0x0,0x0,0x0,0x3a, + 0xbc,0xc4,0x80,0x0,0x0,0x0,0x0,0x3b,0xda,0xda,0x0,0x0,0x0,0x0,0x0,0x3c, + 0xa5,0xe1,0x0,0x0,0x0,0x0,0x0,0x3d,0xba,0xbc,0x0,0x0,0x0,0x0,0x0,0x3e, + 0x85,0xc3,0x0,0x0,0x0,0x0,0x0,0x3f,0x9a,0x9e,0x0,0x0,0x0,0x0,0x0,0x40, + 0x65,0xa5,0x0,0x0,0x0,0x0,0x0,0x41,0x83,0xba,0x80,0x0,0x0,0x0,0x0,0x42, + 0x45,0x87,0x0,0x0,0x0,0x0,0x0,0x43,0x63,0x9c,0x80,0x0,0x0,0x0,0x0,0x44, + 0x2e,0xa3,0x80,0x0,0x0,0x0,0x0,0x45,0x43,0x7e,0x80,0x0,0x0,0x0,0x0,0x46, + 0x5,0x4b,0x0,0x0,0x0,0x0,0x0,0x47,0x23,0x60,0x80,0x0,0x0,0x0,0x0,0x47, + 0xf7,0xa2,0x0,0x0,0x0,0x0,0x0,0x48,0xe7,0x93,0x0,0x0,0x0,0x0,0x0,0x49, + 0xd7,0x84,0x0,0x0,0x0,0x0,0x0,0x4a,0xc7,0x75,0x0,0x0,0x0,0x0,0x0,0x4b, + 0xb7,0x66,0x0,0x0,0x0,0x0,0x0,0x4c,0xa7,0x57,0x0,0x0,0x0,0x0,0x0,0x4d, + 0x97,0x48,0x0,0x0,0x0,0x0,0x0,0x4e,0x87,0x39,0x0,0x0,0x0,0x0,0x0,0x4f, + 0x77,0x2a,0x0,0x0,0x0,0x0,0x0,0x50,0x70,0x55,0x80,0x0,0x0,0x0,0x0,0x51, + 0x60,0x46,0x80,0x0,0x0,0x0,0x0,0x52,0x50,0x37,0x80,0x0,0x0,0x0,0x0,0x53, + 0x40,0x28,0x80,0x0,0x0,0x0,0x0,0x54,0x30,0x19,0x80,0x0,0x0,0x0,0x0,0x55, + 0x20,0xa,0x80,0x0,0x0,0x0,0x0,0x56,0xf,0xfb,0x80,0x0,0x0,0x0,0x0,0x56, + 0xff,0xec,0x80,0x0,0x0,0x0,0x0,0x57,0xef,0xdd,0x80,0x0,0x0,0x0,0x0,0x58, + 0xdf,0xce,0x80,0x0,0x0,0x0,0x0,0x59,0xcf,0xbf,0x80,0x0,0x0,0x0,0x0,0x5a, + 0xbf,0xb0,0x80,0x0,0x0,0x0,0x0,0x5b,0xb8,0xdc,0x0,0x0,0x0,0x0,0x0,0x5c, + 0xa8,0xcd,0x0,0x0,0x0,0x0,0x0,0x5d,0x98,0xbe,0x0,0x0,0x0,0x0,0x0,0x5e, + 0x88,0xaf,0x0,0x0,0x0,0x0,0x0,0x5f,0x78,0xa0,0x0,0x0,0x0,0x0,0x0,0x60, + 0x68,0x91,0x0,0x0,0x0,0x0,0x0,0x61,0x58,0x82,0x0,0x0,0x0,0x0,0x0,0x62, + 0x48,0x73,0x0,0x0,0x0,0x0,0x0,0x63,0x38,0x64,0x0,0x0,0x0,0x0,0x0,0x64, + 0x28,0x55,0x0,0x0,0x0,0x0,0x0,0x65,0x18,0x46,0x0,0x0,0x0,0x0,0x0,0x66, + 0x11,0x71,0x80,0x0,0x0,0x0,0x0,0x67,0x1,0x62,0x80,0x0,0x0,0x0,0x0,0x67, + 0xf1,0x53,0x80,0x0,0x0,0x0,0x0,0x68,0xe1,0x44,0x80,0x0,0x0,0x0,0x0,0x69, + 0xd1,0x35,0x80,0x0,0x0,0x0,0x0,0x6a,0xc1,0x26,0x80,0x0,0x0,0x0,0x0,0x6b, + 0xb1,0x17,0x80,0x0,0x0,0x0,0x0,0x6c,0xa1,0x8,0x80,0x0,0x0,0x0,0x0,0x6d, + 0x90,0xf9,0x80,0x0,0x0,0x0,0x0,0x6e,0x80,0xea,0x80,0x0,0x0,0x0,0x0,0x6f, + 0x70,0xdb,0x80,0x0,0x0,0x0,0x0,0x70,0x6a,0x7,0x0,0x0,0x0,0x0,0x0,0x71, + 0x59,0xf8,0x0,0x0,0x0,0x0,0x0,0x72,0x49,0xe9,0x0,0x0,0x0,0x0,0x0,0x73, + 0x39,0xda,0x0,0x0,0x0,0x0,0x0,0x74,0x29,0xcb,0x0,0x0,0x0,0x0,0x0,0x75, + 0x19,0xbc,0x0,0x0,0x0,0x0,0x0,0x76,0x9,0xad,0x0,0x0,0x0,0x0,0x0,0x76, + 0xf9,0x9e,0x0,0x0,0x0,0x0,0x0,0x77,0xe9,0x8f,0x0,0x0,0x0,0x0,0x0,0x78, + 0xd9,0x80,0x0,0x0,0x0,0x0,0x0,0x79,0xc9,0x71,0x0,0x0,0x0,0x0,0x0,0x7a, + 0xb9,0x62,0x0,0x0,0x0,0x0,0x0,0x7b,0xb2,0x8d,0x80,0x0,0x0,0x0,0x0,0x7c, + 0xa2,0x7e,0x80,0x0,0x0,0x0,0x0,0x7d,0x92,0x6f,0x80,0x0,0x0,0x0,0x0,0x7e, + 0x82,0x60,0x80,0x0,0x0,0x0,0x0,0x7f,0x72,0x51,0x80,0x0,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x7, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x0,0x0,0x8d,0xc4,0x0,0x0, + 0x0,0x0,0x9a,0xb0,0x1,0x4,0x0,0x0,0x8c,0xa0,0x0,0x9,0x0,0x0,0x9a,0xb0, + 0x1,0x4,0x0,0x0,0x8c,0xa0,0x0,0x9,0x4c,0x4d,0x54,0x0,0x41,0x45,0x44,0x54, + 0x0,0x41,0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0, + 0xa,0x41,0x45,0x53,0x54,0x2d,0x31,0x30,0x41,0x45,0x44,0x54,0x2c,0x4d,0x31,0x30, + 0x2e,0x31,0x2e,0x30,0x2c,0x4d,0x34,0x2e,0x31,0x2e,0x30,0x2f,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Australia/ACT + 0x0,0x0,0x8,0xaf, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x8e,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xe,0x80,0x0,0x0,0x0,0x9c, + 0x4e,0xa6,0x9c,0x9c,0xbc,0x20,0xf0,0xcb,0x54,0xb3,0x0,0xcb,0xc7,0x57,0x70,0xcc, + 0xb7,0x56,0x80,0xcd,0xa7,0x39,0x70,0xce,0xa0,0x73,0x0,0xcf,0x87,0x1b,0x70,0x3, + 0x70,0x39,0x80,0x4,0xd,0x1c,0x0,0x5,0x50,0x1b,0x80,0x5,0xf6,0x38,0x80,0x7, + 0x2f,0xfd,0x80,0x7,0xd6,0x1a,0x80,0x9,0xf,0xdf,0x80,0x9,0xb5,0xfc,0x80,0xa, + 0xef,0xc1,0x80,0xb,0x9f,0x19,0x0,0xc,0xd8,0xde,0x0,0xd,0x7e,0xfb,0x0,0xe, + 0xb8,0xc0,0x0,0xf,0x5e,0xdd,0x0,0x10,0x98,0xa2,0x0,0x11,0x3e,0xbf,0x0,0x12, + 0x78,0x84,0x0,0x13,0x1e,0xa1,0x0,0x14,0x58,0x66,0x0,0x14,0xfe,0x83,0x0,0x16, + 0x38,0x48,0x0,0x17,0xc,0x89,0x80,0x18,0x21,0x64,0x80,0x18,0xc7,0x81,0x80,0x1a, + 0x1,0x46,0x80,0x1a,0xa7,0x63,0x80,0x1b,0xe1,0x28,0x80,0x1c,0x87,0x45,0x80,0x1d, + 0xc1,0xa,0x80,0x1e,0x79,0x9c,0x80,0x1f,0x97,0xb2,0x0,0x20,0x59,0x7e,0x80,0x21, + 0x80,0xce,0x80,0x22,0x42,0x9b,0x0,0x23,0x69,0xeb,0x0,0x24,0x22,0x7d,0x0,0x25, + 0x49,0xcd,0x0,0x25,0xef,0xea,0x0,0x27,0x29,0xaf,0x0,0x27,0xcf,0xcc,0x0,0x29, + 0x9,0x91,0x0,0x29,0xaf,0xae,0x0,0x2a,0xe9,0x73,0x0,0x2b,0x98,0xca,0x80,0x2c, + 0xd2,0x8f,0x80,0x2d,0x78,0xac,0x80,0x2e,0xb2,0x71,0x80,0x2f,0x58,0x8e,0x80,0x30, + 0x92,0x53,0x80,0x31,0x5d,0x5a,0x80,0x32,0x72,0x35,0x80,0x33,0x3d,0x3c,0x80,0x34, + 0x52,0x17,0x80,0x35,0x1d,0x1e,0x80,0x36,0x31,0xf9,0x80,0x36,0xfd,0x0,0x80,0x38, + 0x1b,0x16,0x0,0x38,0xdc,0xe2,0x80,0x39,0xa7,0xe9,0x80,0x3a,0xbc,0xc4,0x80,0x3b, + 0xda,0xda,0x0,0x3c,0xa5,0xe1,0x0,0x3d,0xba,0xbc,0x0,0x3e,0x85,0xc3,0x0,0x3f, + 0x9a,0x9e,0x0,0x40,0x65,0xa5,0x0,0x41,0x83,0xba,0x80,0x42,0x45,0x87,0x0,0x43, + 0x63,0x9c,0x80,0x44,0x2e,0xa3,0x80,0x45,0x43,0x7e,0x80,0x46,0x5,0x4b,0x0,0x47, + 0x23,0x60,0x80,0x47,0xf7,0xa2,0x0,0x48,0xe7,0x93,0x0,0x49,0xd7,0x84,0x0,0x4a, + 0xc7,0x75,0x0,0x4b,0xb7,0x66,0x0,0x4c,0xa7,0x57,0x0,0x4d,0x97,0x48,0x0,0x4e, + 0x87,0x39,0x0,0x4f,0x77,0x2a,0x0,0x50,0x70,0x55,0x80,0x51,0x60,0x46,0x80,0x52, + 0x50,0x37,0x80,0x53,0x40,0x28,0x80,0x54,0x30,0x19,0x80,0x55,0x20,0xa,0x80,0x56, + 0xf,0xfb,0x80,0x56,0xff,0xec,0x80,0x57,0xef,0xdd,0x80,0x58,0xdf,0xce,0x80,0x59, + 0xcf,0xbf,0x80,0x5a,0xbf,0xb0,0x80,0x5b,0xb8,0xdc,0x0,0x5c,0xa8,0xcd,0x0,0x5d, + 0x98,0xbe,0x0,0x5e,0x88,0xaf,0x0,0x5f,0x78,0xa0,0x0,0x60,0x68,0x91,0x0,0x61, + 0x58,0x82,0x0,0x62,0x48,0x73,0x0,0x63,0x38,0x64,0x0,0x64,0x28,0x55,0x0,0x65, + 0x18,0x46,0x0,0x66,0x11,0x71,0x80,0x67,0x1,0x62,0x80,0x67,0xf1,0x53,0x80,0x68, + 0xe1,0x44,0x80,0x69,0xd1,0x35,0x80,0x6a,0xc1,0x26,0x80,0x6b,0xb1,0x17,0x80,0x6c, + 0xa1,0x8,0x80,0x6d,0x90,0xf9,0x80,0x6e,0x80,0xea,0x80,0x6f,0x70,0xdb,0x80,0x70, + 0x6a,0x7,0x0,0x71,0x59,0xf8,0x0,0x72,0x49,0xe9,0x0,0x73,0x39,0xda,0x0,0x74, + 0x29,0xcb,0x0,0x75,0x19,0xbc,0x0,0x76,0x9,0xad,0x0,0x76,0xf9,0x9e,0x0,0x77, + 0xe9,0x8f,0x0,0x78,0xd9,0x80,0x0,0x79,0xc9,0x71,0x0,0x7a,0xb9,0x62,0x0,0x7b, + 0xb2,0x8d,0x80,0x7c,0xa2,0x7e,0x80,0x7d,0x92,0x6f,0x80,0x7e,0x82,0x60,0x80,0x7f, + 0x72,0x51,0x80,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x0,0x0,0x8d,0xc4,0x0,0x0,0x0,0x0,0x9a,0xb0,0x1,0x4,0x0,0x0,0x8c, + 0xa0,0x0,0x9,0x0,0x0,0x9a,0xb0,0x1,0x4,0x0,0x0,0x8c,0xa0,0x0,0x9,0x4c, + 0x4d,0x54,0x0,0x41,0x45,0x44,0x54,0x0,0x41,0x45,0x53,0x54,0x0,0x0,0x0,0x0, + 0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0, + 0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0x0,0x0,0x0,0x5,0x0, + 0x0,0x0,0xe,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x73, + 0x16,0x7f,0x3c,0xff,0xff,0xff,0xff,0x9c,0x4e,0xa6,0x9c,0xff,0xff,0xff,0xff,0x9c, + 0xbc,0x20,0xf0,0xff,0xff,0xff,0xff,0xcb,0x54,0xb3,0x0,0xff,0xff,0xff,0xff,0xcb, + 0xc7,0x57,0x70,0xff,0xff,0xff,0xff,0xcc,0xb7,0x56,0x80,0xff,0xff,0xff,0xff,0xcd, + 0xa7,0x39,0x70,0xff,0xff,0xff,0xff,0xce,0xa0,0x73,0x0,0xff,0xff,0xff,0xff,0xcf, + 0x87,0x1b,0x70,0x0,0x0,0x0,0x0,0x3,0x70,0x39,0x80,0x0,0x0,0x0,0x0,0x4, + 0xd,0x1c,0x0,0x0,0x0,0x0,0x0,0x5,0x50,0x1b,0x80,0x0,0x0,0x0,0x0,0x5, + 0xf6,0x38,0x80,0x0,0x0,0x0,0x0,0x7,0x2f,0xfd,0x80,0x0,0x0,0x0,0x0,0x7, + 0xd6,0x1a,0x80,0x0,0x0,0x0,0x0,0x9,0xf,0xdf,0x80,0x0,0x0,0x0,0x0,0x9, + 0xb5,0xfc,0x80,0x0,0x0,0x0,0x0,0xa,0xef,0xc1,0x80,0x0,0x0,0x0,0x0,0xb, + 0x9f,0x19,0x0,0x0,0x0,0x0,0x0,0xc,0xd8,0xde,0x0,0x0,0x0,0x0,0x0,0xd, + 0x7e,0xfb,0x0,0x0,0x0,0x0,0x0,0xe,0xb8,0xc0,0x0,0x0,0x0,0x0,0x0,0xf, + 0x5e,0xdd,0x0,0x0,0x0,0x0,0x0,0x10,0x98,0xa2,0x0,0x0,0x0,0x0,0x0,0x11, + 0x3e,0xbf,0x0,0x0,0x0,0x0,0x0,0x12,0x78,0x84,0x0,0x0,0x0,0x0,0x0,0x13, + 0x1e,0xa1,0x0,0x0,0x0,0x0,0x0,0x14,0x58,0x66,0x0,0x0,0x0,0x0,0x0,0x14, + 0xfe,0x83,0x0,0x0,0x0,0x0,0x0,0x16,0x38,0x48,0x0,0x0,0x0,0x0,0x0,0x17, + 0xc,0x89,0x80,0x0,0x0,0x0,0x0,0x18,0x21,0x64,0x80,0x0,0x0,0x0,0x0,0x18, + 0xc7,0x81,0x80,0x0,0x0,0x0,0x0,0x1a,0x1,0x46,0x80,0x0,0x0,0x0,0x0,0x1a, + 0xa7,0x63,0x80,0x0,0x0,0x0,0x0,0x1b,0xe1,0x28,0x80,0x0,0x0,0x0,0x0,0x1c, + 0x87,0x45,0x80,0x0,0x0,0x0,0x0,0x1d,0xc1,0xa,0x80,0x0,0x0,0x0,0x0,0x1e, + 0x79,0x9c,0x80,0x0,0x0,0x0,0x0,0x1f,0x97,0xb2,0x0,0x0,0x0,0x0,0x0,0x20, + 0x59,0x7e,0x80,0x0,0x0,0x0,0x0,0x21,0x80,0xce,0x80,0x0,0x0,0x0,0x0,0x22, + 0x42,0x9b,0x0,0x0,0x0,0x0,0x0,0x23,0x69,0xeb,0x0,0x0,0x0,0x0,0x0,0x24, + 0x22,0x7d,0x0,0x0,0x0,0x0,0x0,0x25,0x49,0xcd,0x0,0x0,0x0,0x0,0x0,0x25, + 0xef,0xea,0x0,0x0,0x0,0x0,0x0,0x27,0x29,0xaf,0x0,0x0,0x0,0x0,0x0,0x27, + 0xcf,0xcc,0x0,0x0,0x0,0x0,0x0,0x29,0x9,0x91,0x0,0x0,0x0,0x0,0x0,0x29, + 0xaf,0xae,0x0,0x0,0x0,0x0,0x0,0x2a,0xe9,0x73,0x0,0x0,0x0,0x0,0x0,0x2b, + 0x98,0xca,0x80,0x0,0x0,0x0,0x0,0x2c,0xd2,0x8f,0x80,0x0,0x0,0x0,0x0,0x2d, + 0x78,0xac,0x80,0x0,0x0,0x0,0x0,0x2e,0xb2,0x71,0x80,0x0,0x0,0x0,0x0,0x2f, + 0x58,0x8e,0x80,0x0,0x0,0x0,0x0,0x30,0x92,0x53,0x80,0x0,0x0,0x0,0x0,0x31, + 0x5d,0x5a,0x80,0x0,0x0,0x0,0x0,0x32,0x72,0x35,0x80,0x0,0x0,0x0,0x0,0x33, + 0x3d,0x3c,0x80,0x0,0x0,0x0,0x0,0x34,0x52,0x17,0x80,0x0,0x0,0x0,0x0,0x35, + 0x1d,0x1e,0x80,0x0,0x0,0x0,0x0,0x36,0x31,0xf9,0x80,0x0,0x0,0x0,0x0,0x36, + 0xfd,0x0,0x80,0x0,0x0,0x0,0x0,0x38,0x1b,0x16,0x0,0x0,0x0,0x0,0x0,0x38, + 0xdc,0xe2,0x80,0x0,0x0,0x0,0x0,0x39,0xa7,0xe9,0x80,0x0,0x0,0x0,0x0,0x3a, + 0xbc,0xc4,0x80,0x0,0x0,0x0,0x0,0x3b,0xda,0xda,0x0,0x0,0x0,0x0,0x0,0x3c, + 0xa5,0xe1,0x0,0x0,0x0,0x0,0x0,0x3d,0xba,0xbc,0x0,0x0,0x0,0x0,0x0,0x3e, + 0x85,0xc3,0x0,0x0,0x0,0x0,0x0,0x3f,0x9a,0x9e,0x0,0x0,0x0,0x0,0x0,0x40, + 0x65,0xa5,0x0,0x0,0x0,0x0,0x0,0x41,0x83,0xba,0x80,0x0,0x0,0x0,0x0,0x42, + 0x45,0x87,0x0,0x0,0x0,0x0,0x0,0x43,0x63,0x9c,0x80,0x0,0x0,0x0,0x0,0x44, + 0x2e,0xa3,0x80,0x0,0x0,0x0,0x0,0x45,0x43,0x7e,0x80,0x0,0x0,0x0,0x0,0x46, + 0x5,0x4b,0x0,0x0,0x0,0x0,0x0,0x47,0x23,0x60,0x80,0x0,0x0,0x0,0x0,0x47, + 0xf7,0xa2,0x0,0x0,0x0,0x0,0x0,0x48,0xe7,0x93,0x0,0x0,0x0,0x0,0x0,0x49, + 0xd7,0x84,0x0,0x0,0x0,0x0,0x0,0x4a,0xc7,0x75,0x0,0x0,0x0,0x0,0x0,0x4b, + 0xb7,0x66,0x0,0x0,0x0,0x0,0x0,0x4c,0xa7,0x57,0x0,0x0,0x0,0x0,0x0,0x4d, + 0x97,0x48,0x0,0x0,0x0,0x0,0x0,0x4e,0x87,0x39,0x0,0x0,0x0,0x0,0x0,0x4f, + 0x77,0x2a,0x0,0x0,0x0,0x0,0x0,0x50,0x70,0x55,0x80,0x0,0x0,0x0,0x0,0x51, + 0x60,0x46,0x80,0x0,0x0,0x0,0x0,0x52,0x50,0x37,0x80,0x0,0x0,0x0,0x0,0x53, + 0x40,0x28,0x80,0x0,0x0,0x0,0x0,0x54,0x30,0x19,0x80,0x0,0x0,0x0,0x0,0x55, + 0x20,0xa,0x80,0x0,0x0,0x0,0x0,0x56,0xf,0xfb,0x80,0x0,0x0,0x0,0x0,0x56, + 0xff,0xec,0x80,0x0,0x0,0x0,0x0,0x57,0xef,0xdd,0x80,0x0,0x0,0x0,0x0,0x58, + 0xdf,0xce,0x80,0x0,0x0,0x0,0x0,0x59,0xcf,0xbf,0x80,0x0,0x0,0x0,0x0,0x5a, + 0xbf,0xb0,0x80,0x0,0x0,0x0,0x0,0x5b,0xb8,0xdc,0x0,0x0,0x0,0x0,0x0,0x5c, + 0xa8,0xcd,0x0,0x0,0x0,0x0,0x0,0x5d,0x98,0xbe,0x0,0x0,0x0,0x0,0x0,0x5e, + 0x88,0xaf,0x0,0x0,0x0,0x0,0x0,0x5f,0x78,0xa0,0x0,0x0,0x0,0x0,0x0,0x60, + 0x68,0x91,0x0,0x0,0x0,0x0,0x0,0x61,0x58,0x82,0x0,0x0,0x0,0x0,0x0,0x62, + 0x48,0x73,0x0,0x0,0x0,0x0,0x0,0x63,0x38,0x64,0x0,0x0,0x0,0x0,0x0,0x64, + 0x28,0x55,0x0,0x0,0x0,0x0,0x0,0x65,0x18,0x46,0x0,0x0,0x0,0x0,0x0,0x66, + 0x11,0x71,0x80,0x0,0x0,0x0,0x0,0x67,0x1,0x62,0x80,0x0,0x0,0x0,0x0,0x67, + 0xf1,0x53,0x80,0x0,0x0,0x0,0x0,0x68,0xe1,0x44,0x80,0x0,0x0,0x0,0x0,0x69, + 0xd1,0x35,0x80,0x0,0x0,0x0,0x0,0x6a,0xc1,0x26,0x80,0x0,0x0,0x0,0x0,0x6b, + 0xb1,0x17,0x80,0x0,0x0,0x0,0x0,0x6c,0xa1,0x8,0x80,0x0,0x0,0x0,0x0,0x6d, + 0x90,0xf9,0x80,0x0,0x0,0x0,0x0,0x6e,0x80,0xea,0x80,0x0,0x0,0x0,0x0,0x6f, + 0x70,0xdb,0x80,0x0,0x0,0x0,0x0,0x70,0x6a,0x7,0x0,0x0,0x0,0x0,0x0,0x71, + 0x59,0xf8,0x0,0x0,0x0,0x0,0x0,0x72,0x49,0xe9,0x0,0x0,0x0,0x0,0x0,0x73, + 0x39,0xda,0x0,0x0,0x0,0x0,0x0,0x74,0x29,0xcb,0x0,0x0,0x0,0x0,0x0,0x75, + 0x19,0xbc,0x0,0x0,0x0,0x0,0x0,0x76,0x9,0xad,0x0,0x0,0x0,0x0,0x0,0x76, + 0xf9,0x9e,0x0,0x0,0x0,0x0,0x0,0x77,0xe9,0x8f,0x0,0x0,0x0,0x0,0x0,0x78, + 0xd9,0x80,0x0,0x0,0x0,0x0,0x0,0x79,0xc9,0x71,0x0,0x0,0x0,0x0,0x0,0x7a, + 0xb9,0x62,0x0,0x0,0x0,0x0,0x0,0x7b,0xb2,0x8d,0x80,0x0,0x0,0x0,0x0,0x7c, + 0xa2,0x7e,0x80,0x0,0x0,0x0,0x0,0x7d,0x92,0x6f,0x80,0x0,0x0,0x0,0x0,0x7e, + 0x82,0x60,0x80,0x0,0x0,0x0,0x0,0x7f,0x72,0x51,0x80,0x0,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0xff,0xff,0xce,0x94,0x0,0x0,0xff,0xff,0xdc,0xa4,0x1,0x4,0xff, - 0xff,0xce,0x94,0x0,0x8,0xff,0xff,0xdc,0xd8,0x1,0x4,0xff,0xff,0xce,0xc8,0x0, - 0x8,0xff,0xff,0xdc,0xd8,0x1,0xc,0xff,0xff,0xdc,0xd8,0x1,0x10,0xff,0xff,0xea, - 0xe8,0x1,0x14,0xff,0xff,0xdc,0xd8,0x1,0x4,0x4c,0x4d,0x54,0x0,0x4e,0x44,0x54, - 0x0,0x4e,0x53,0x54,0x0,0x4e,0x50,0x54,0x0,0x4e,0x57,0x54,0x0,0x4e,0x44,0x44, - 0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x1,0x0,0x0,0x0,0xa,0x4e,0x53,0x54,0x33,0x3a,0x33,0x30,0x4e,0x44,0x54,0x2c, - 0x4d,0x33,0x2e,0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Canada/Pacific - 0x0,0x0,0xb,0x55, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x0,0x0,0x8d,0xc4,0x0,0x0, + 0x0,0x0,0x9a,0xb0,0x1,0x4,0x0,0x0,0x8c,0xa0,0x0,0x9,0x0,0x0,0x9a,0xb0, + 0x1,0x4,0x0,0x0,0x8c,0xa0,0x0,0x9,0x4c,0x4d,0x54,0x0,0x41,0x45,0x44,0x54, + 0x0,0x41,0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0, + 0xa,0x41,0x45,0x53,0x54,0x2d,0x31,0x30,0x41,0x45,0x44,0x54,0x2c,0x4d,0x31,0x30, + 0x2e,0x31,0x2e,0x30,0x2c,0x4d,0x34,0x2e,0x31,0x2e,0x30,0x2f,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Australia/Lindeman + 0x0,0x0,0x2,0xa, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xbe,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0x9e, - 0xb8,0xbd,0xa0,0x9f,0xbb,0x15,0x90,0xcb,0x89,0x1a,0xa0,0xd2,0x23,0xf4,0x70,0xd2, - 0x61,0x26,0x10,0xd3,0x76,0xf,0x20,0xd4,0x53,0x7d,0x10,0xd5,0x55,0xf1,0x20,0xd6, - 0x20,0xea,0x10,0xd7,0x35,0xd3,0x20,0xd8,0x0,0xcc,0x10,0xd9,0x15,0xb5,0x20,0xd9, - 0xe0,0xae,0x10,0xda,0xfe,0xd1,0xa0,0xdb,0xc0,0x90,0x10,0xdc,0xde,0xb3,0xa0,0xdd, - 0xa9,0xac,0x90,0xde,0xbe,0x95,0xa0,0xdf,0x89,0x8e,0x90,0xe0,0x9e,0x77,0xa0,0xe1, - 0x69,0x70,0x90,0xe2,0x7e,0x59,0xa0,0xe3,0x49,0x52,0x90,0xe4,0x5e,0x3b,0xa0,0xe5, - 0x29,0x34,0x90,0xe6,0x47,0x58,0x20,0xe7,0x12,0x51,0x10,0xe8,0x27,0x3a,0x20,0xe8, - 0xf2,0x33,0x10,0xea,0x7,0x1c,0x20,0xea,0xd2,0x15,0x10,0xeb,0xe6,0xfe,0x20,0xec, - 0xb1,0xf7,0x10,0xed,0xc6,0xe0,0x20,0xee,0x91,0xd9,0x10,0xef,0xaf,0xfc,0xa0,0xf0, - 0x71,0xbb,0x10,0xf1,0x8f,0xde,0xa0,0xf2,0x7f,0xc1,0x90,0xf3,0x6f,0xc0,0xa0,0xf4, - 0x5f,0xa3,0x90,0xf5,0x4f,0xa2,0xa0,0xf6,0x3f,0x85,0x90,0xf7,0x2f,0x84,0xa0,0xf8, - 0x28,0xa2,0x10,0xf9,0xf,0x66,0xa0,0xfa,0x8,0x84,0x10,0xfa,0xf8,0x83,0x20,0xfb, - 0xe8,0x66,0x10,0xfc,0xd8,0x65,0x20,0xfd,0xc8,0x48,0x10,0xfe,0xb8,0x47,0x20,0xff, - 0xa8,0x2a,0x10,0x0,0x98,0x29,0x20,0x1,0x88,0xc,0x10,0x2,0x78,0xb,0x20,0x3, - 0x71,0x28,0x90,0x4,0x61,0x27,0xa0,0x5,0x51,0xa,0x90,0x6,0x41,0x9,0xa0,0x7, - 0x30,0xec,0x90,0x8,0x20,0xeb,0xa0,0x9,0x10,0xce,0x90,0xa,0x0,0xcd,0xa0,0xa, - 0xf0,0xb0,0x90,0xb,0xe0,0xaf,0xa0,0xc,0xd9,0xcd,0x10,0xd,0xc0,0x91,0xa0,0xe, - 0xb9,0xaf,0x10,0xf,0xa9,0xae,0x20,0x10,0x99,0x91,0x10,0x11,0x89,0x90,0x20,0x12, - 0x79,0x73,0x10,0x13,0x69,0x72,0x20,0x14,0x59,0x55,0x10,0x15,0x49,0x54,0x20,0x16, - 0x39,0x37,0x10,0x17,0x29,0x36,0x20,0x18,0x22,0x53,0x90,0x19,0x9,0x18,0x20,0x1a, - 0x2,0x35,0x90,0x1a,0xf2,0x34,0xa0,0x1b,0xe2,0x17,0x90,0x1c,0xd2,0x16,0xa0,0x1d, - 0xc1,0xf9,0x90,0x1e,0xb1,0xf8,0xa0,0x1f,0xa1,0xdb,0x90,0x20,0x76,0x2b,0x20,0x21, - 0x81,0xbd,0x90,0x22,0x56,0xd,0x20,0x23,0x6a,0xda,0x10,0x24,0x35,0xef,0x20,0x25, - 0x4a,0xbc,0x10,0x26,0x15,0xd1,0x20,0x27,0x2a,0x9e,0x10,0x27,0xfe,0xed,0xa0,0x29, - 0xa,0x80,0x10,0x29,0xde,0xcf,0xa0,0x2a,0xea,0x62,0x10,0x2b,0xbe,0xb1,0xa0,0x2c, - 0xd3,0x7e,0x90,0x2d,0x9e,0x93,0xa0,0x2e,0xb3,0x60,0x90,0x2f,0x7e,0x75,0xa0,0x30, - 0x93,0x42,0x90,0x31,0x67,0x92,0x20,0x32,0x73,0x24,0x90,0x33,0x47,0x74,0x20,0x34, - 0x53,0x6,0x90,0x35,0x27,0x56,0x20,0x36,0x32,0xe8,0x90,0x37,0x7,0x38,0x20,0x38, - 0x1c,0x5,0x10,0x38,0xe7,0x1a,0x20,0x39,0xfb,0xe7,0x10,0x3a,0xc6,0xfc,0x20,0x3b, - 0xdb,0xc9,0x10,0x3c,0xb0,0x18,0xa0,0x3d,0xbb,0xab,0x10,0x3e,0x8f,0xfa,0xa0,0x3f, - 0x9b,0x8d,0x10,0x40,0x6f,0xdc,0xa0,0x41,0x84,0xa9,0x90,0x42,0x4f,0xbe,0xa0,0x43, - 0x64,0x8b,0x90,0x44,0x2f,0xa0,0xa0,0x45,0x44,0x6d,0x90,0x45,0xf3,0xd3,0x20,0x47, - 0x2d,0x8a,0x10,0x47,0xd3,0xb5,0x20,0x49,0xd,0x6c,0x10,0x49,0xb3,0x97,0x20,0x4a, - 0xed,0x4e,0x10,0x4b,0x9c,0xb3,0xa0,0x4c,0xd6,0x6a,0x90,0x4d,0x7c,0x95,0xa0,0x4e, - 0xb6,0x4c,0x90,0x4f,0x5c,0x77,0xa0,0x50,0x96,0x2e,0x90,0x51,0x3c,0x59,0xa0,0x52, - 0x76,0x10,0x90,0x53,0x1c,0x3b,0xa0,0x54,0x55,0xf2,0x90,0x54,0xfc,0x1d,0xa0,0x56, - 0x35,0xd4,0x90,0x56,0xe5,0x3a,0x20,0x58,0x1e,0xf1,0x10,0x58,0xc5,0x1c,0x20,0x59, - 0xfe,0xd3,0x10,0x5a,0xa4,0xfe,0x20,0x5b,0xde,0xb5,0x10,0x5c,0x84,0xe0,0x20,0x5d, - 0xbe,0x97,0x10,0x5e,0x64,0xc2,0x20,0x5f,0x9e,0x79,0x10,0x60,0x4d,0xde,0xa0,0x61, - 0x87,0x95,0x90,0x62,0x2d,0xc0,0xa0,0x63,0x67,0x77,0x90,0x64,0xd,0xa2,0xa0,0x65, - 0x47,0x59,0x90,0x65,0xed,0x84,0xa0,0x67,0x27,0x3b,0x90,0x67,0xcd,0x66,0xa0,0x69, - 0x7,0x1d,0x90,0x69,0xad,0x48,0xa0,0x6a,0xe6,0xff,0x90,0x6b,0x96,0x65,0x20,0x6c, - 0xd0,0x1c,0x10,0x6d,0x76,0x47,0x20,0x6e,0xaf,0xfe,0x10,0x6f,0x56,0x29,0x20,0x70, - 0x8f,0xe0,0x10,0x71,0x36,0xb,0x20,0x72,0x6f,0xc2,0x10,0x73,0x15,0xed,0x20,0x74, - 0x4f,0xa4,0x10,0x74,0xff,0x9,0xa0,0x76,0x38,0xc0,0x90,0x76,0xde,0xeb,0xa0,0x78, - 0x18,0xa2,0x90,0x78,0xbe,0xcd,0xa0,0x79,0xf8,0x84,0x90,0x7a,0x9e,0xaf,0xa0,0x7b, - 0xd8,0x66,0x90,0x7c,0x7e,0x91,0xa0,0x7d,0xb8,0x48,0x90,0x7e,0x5e,0x73,0xa0,0x7f, - 0x98,0x2a,0x90,0x2,0x1,0x2,0x3,0x4,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0xff,0xff,0x8c,0x94,0x0,0x0,0xff,0xff,0x9d,0x90,0x1,0x4,0xff,0xff,0x8f, - 0x80,0x0,0x8,0xff,0xff,0x9d,0x90,0x1,0xc,0xff,0xff,0x9d,0x90,0x1,0x10,0x4c, - 0x4d,0x54,0x0,0x50,0x44,0x54,0x0,0x50,0x53,0x54,0x0,0x50,0x57,0x54,0x0,0x50, - 0x50,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x1,0x54,0x5a,0x69, - 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0xbf,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0x5e,0x3d,0x76,0xec,0xff,0xff,0xff,0xff,0x9e,0xb8,0xbd, - 0xa0,0xff,0xff,0xff,0xff,0x9f,0xbb,0x15,0x90,0xff,0xff,0xff,0xff,0xcb,0x89,0x1a, - 0xa0,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x61,0x26, - 0x10,0xff,0xff,0xff,0xff,0xd3,0x76,0xf,0x20,0xff,0xff,0xff,0xff,0xd4,0x53,0x7d, - 0x10,0xff,0xff,0xff,0xff,0xd5,0x55,0xf1,0x20,0xff,0xff,0xff,0xff,0xd6,0x20,0xea, - 0x10,0xff,0xff,0xff,0xff,0xd7,0x35,0xd3,0x20,0xff,0xff,0xff,0xff,0xd8,0x0,0xcc, - 0x10,0xff,0xff,0xff,0xff,0xd9,0x15,0xb5,0x20,0xff,0xff,0xff,0xff,0xd9,0xe0,0xae, - 0x10,0xff,0xff,0xff,0xff,0xda,0xfe,0xd1,0xa0,0xff,0xff,0xff,0xff,0xdb,0xc0,0x90, - 0x10,0xff,0xff,0xff,0xff,0xdc,0xde,0xb3,0xa0,0xff,0xff,0xff,0xff,0xdd,0xa9,0xac, - 0x90,0xff,0xff,0xff,0xff,0xde,0xbe,0x95,0xa0,0xff,0xff,0xff,0xff,0xdf,0x89,0x8e, - 0x90,0xff,0xff,0xff,0xff,0xe0,0x9e,0x77,0xa0,0xff,0xff,0xff,0xff,0xe1,0x69,0x70, - 0x90,0xff,0xff,0xff,0xff,0xe2,0x7e,0x59,0xa0,0xff,0xff,0xff,0xff,0xe3,0x49,0x52, - 0x90,0xff,0xff,0xff,0xff,0xe4,0x5e,0x3b,0xa0,0xff,0xff,0xff,0xff,0xe5,0x29,0x34, - 0x90,0xff,0xff,0xff,0xff,0xe6,0x47,0x58,0x20,0xff,0xff,0xff,0xff,0xe7,0x12,0x51, - 0x10,0xff,0xff,0xff,0xff,0xe8,0x27,0x3a,0x20,0xff,0xff,0xff,0xff,0xe8,0xf2,0x33, - 0x10,0xff,0xff,0xff,0xff,0xea,0x7,0x1c,0x20,0xff,0xff,0xff,0xff,0xea,0xd2,0x15, - 0x10,0xff,0xff,0xff,0xff,0xeb,0xe6,0xfe,0x20,0xff,0xff,0xff,0xff,0xec,0xb1,0xf7, - 0x10,0xff,0xff,0xff,0xff,0xed,0xc6,0xe0,0x20,0xff,0xff,0xff,0xff,0xee,0x91,0xd9, - 0x10,0xff,0xff,0xff,0xff,0xef,0xaf,0xfc,0xa0,0xff,0xff,0xff,0xff,0xf0,0x71,0xbb, - 0x10,0xff,0xff,0xff,0xff,0xf1,0x8f,0xde,0xa0,0xff,0xff,0xff,0xff,0xf2,0x7f,0xc1, - 0x90,0xff,0xff,0xff,0xff,0xf3,0x6f,0xc0,0xa0,0xff,0xff,0xff,0xff,0xf4,0x5f,0xa3, - 0x90,0xff,0xff,0xff,0xff,0xf5,0x4f,0xa2,0xa0,0xff,0xff,0xff,0xff,0xf6,0x3f,0x85, - 0x90,0xff,0xff,0xff,0xff,0xf7,0x2f,0x84,0xa0,0xff,0xff,0xff,0xff,0xf8,0x28,0xa2, - 0x10,0xff,0xff,0xff,0xff,0xf9,0xf,0x66,0xa0,0xff,0xff,0xff,0xff,0xfa,0x8,0x84, - 0x10,0xff,0xff,0xff,0xff,0xfa,0xf8,0x83,0x20,0xff,0xff,0xff,0xff,0xfb,0xe8,0x66, - 0x10,0xff,0xff,0xff,0xff,0xfc,0xd8,0x65,0x20,0xff,0xff,0xff,0xff,0xfd,0xc8,0x48, - 0x10,0xff,0xff,0xff,0xff,0xfe,0xb8,0x47,0x20,0xff,0xff,0xff,0xff,0xff,0xa8,0x2a, - 0x10,0x0,0x0,0x0,0x0,0x0,0x98,0x29,0x20,0x0,0x0,0x0,0x0,0x1,0x88,0xc, - 0x10,0x0,0x0,0x0,0x0,0x2,0x78,0xb,0x20,0x0,0x0,0x0,0x0,0x3,0x71,0x28, - 0x90,0x0,0x0,0x0,0x0,0x4,0x61,0x27,0xa0,0x0,0x0,0x0,0x0,0x5,0x51,0xa, - 0x90,0x0,0x0,0x0,0x0,0x6,0x41,0x9,0xa0,0x0,0x0,0x0,0x0,0x7,0x30,0xec, - 0x90,0x0,0x0,0x0,0x0,0x8,0x20,0xeb,0xa0,0x0,0x0,0x0,0x0,0x9,0x10,0xce, - 0x90,0x0,0x0,0x0,0x0,0xa,0x0,0xcd,0xa0,0x0,0x0,0x0,0x0,0xa,0xf0,0xb0, - 0x90,0x0,0x0,0x0,0x0,0xb,0xe0,0xaf,0xa0,0x0,0x0,0x0,0x0,0xc,0xd9,0xcd, - 0x10,0x0,0x0,0x0,0x0,0xd,0xc0,0x91,0xa0,0x0,0x0,0x0,0x0,0xe,0xb9,0xaf, - 0x10,0x0,0x0,0x0,0x0,0xf,0xa9,0xae,0x20,0x0,0x0,0x0,0x0,0x10,0x99,0x91, - 0x10,0x0,0x0,0x0,0x0,0x11,0x89,0x90,0x20,0x0,0x0,0x0,0x0,0x12,0x79,0x73, - 0x10,0x0,0x0,0x0,0x0,0x13,0x69,0x72,0x20,0x0,0x0,0x0,0x0,0x14,0x59,0x55, - 0x10,0x0,0x0,0x0,0x0,0x15,0x49,0x54,0x20,0x0,0x0,0x0,0x0,0x16,0x39,0x37, - 0x10,0x0,0x0,0x0,0x0,0x17,0x29,0x36,0x20,0x0,0x0,0x0,0x0,0x18,0x22,0x53, - 0x90,0x0,0x0,0x0,0x0,0x19,0x9,0x18,0x20,0x0,0x0,0x0,0x0,0x1a,0x2,0x35, - 0x90,0x0,0x0,0x0,0x0,0x1a,0xf2,0x34,0xa0,0x0,0x0,0x0,0x0,0x1b,0xe2,0x17, - 0x90,0x0,0x0,0x0,0x0,0x1c,0xd2,0x16,0xa0,0x0,0x0,0x0,0x0,0x1d,0xc1,0xf9, - 0x90,0x0,0x0,0x0,0x0,0x1e,0xb1,0xf8,0xa0,0x0,0x0,0x0,0x0,0x1f,0xa1,0xdb, - 0x90,0x0,0x0,0x0,0x0,0x20,0x76,0x2b,0x20,0x0,0x0,0x0,0x0,0x21,0x81,0xbd, - 0x90,0x0,0x0,0x0,0x0,0x22,0x56,0xd,0x20,0x0,0x0,0x0,0x0,0x23,0x6a,0xda, - 0x10,0x0,0x0,0x0,0x0,0x24,0x35,0xef,0x20,0x0,0x0,0x0,0x0,0x25,0x4a,0xbc, - 0x10,0x0,0x0,0x0,0x0,0x26,0x15,0xd1,0x20,0x0,0x0,0x0,0x0,0x27,0x2a,0x9e, - 0x10,0x0,0x0,0x0,0x0,0x27,0xfe,0xed,0xa0,0x0,0x0,0x0,0x0,0x29,0xa,0x80, - 0x10,0x0,0x0,0x0,0x0,0x29,0xde,0xcf,0xa0,0x0,0x0,0x0,0x0,0x2a,0xea,0x62, - 0x10,0x0,0x0,0x0,0x0,0x2b,0xbe,0xb1,0xa0,0x0,0x0,0x0,0x0,0x2c,0xd3,0x7e, - 0x90,0x0,0x0,0x0,0x0,0x2d,0x9e,0x93,0xa0,0x0,0x0,0x0,0x0,0x2e,0xb3,0x60, - 0x90,0x0,0x0,0x0,0x0,0x2f,0x7e,0x75,0xa0,0x0,0x0,0x0,0x0,0x30,0x93,0x42, - 0x90,0x0,0x0,0x0,0x0,0x31,0x67,0x92,0x20,0x0,0x0,0x0,0x0,0x32,0x73,0x24, - 0x90,0x0,0x0,0x0,0x0,0x33,0x47,0x74,0x20,0x0,0x0,0x0,0x0,0x34,0x53,0x6, - 0x90,0x0,0x0,0x0,0x0,0x35,0x27,0x56,0x20,0x0,0x0,0x0,0x0,0x36,0x32,0xe8, - 0x90,0x0,0x0,0x0,0x0,0x37,0x7,0x38,0x20,0x0,0x0,0x0,0x0,0x38,0x1c,0x5, - 0x10,0x0,0x0,0x0,0x0,0x38,0xe7,0x1a,0x20,0x0,0x0,0x0,0x0,0x39,0xfb,0xe7, - 0x10,0x0,0x0,0x0,0x0,0x3a,0xc6,0xfc,0x20,0x0,0x0,0x0,0x0,0x3b,0xdb,0xc9, - 0x10,0x0,0x0,0x0,0x0,0x3c,0xb0,0x18,0xa0,0x0,0x0,0x0,0x0,0x3d,0xbb,0xab, - 0x10,0x0,0x0,0x0,0x0,0x3e,0x8f,0xfa,0xa0,0x0,0x0,0x0,0x0,0x3f,0x9b,0x8d, - 0x10,0x0,0x0,0x0,0x0,0x40,0x6f,0xdc,0xa0,0x0,0x0,0x0,0x0,0x41,0x84,0xa9, - 0x90,0x0,0x0,0x0,0x0,0x42,0x4f,0xbe,0xa0,0x0,0x0,0x0,0x0,0x43,0x64,0x8b, - 0x90,0x0,0x0,0x0,0x0,0x44,0x2f,0xa0,0xa0,0x0,0x0,0x0,0x0,0x45,0x44,0x6d, - 0x90,0x0,0x0,0x0,0x0,0x45,0xf3,0xd3,0x20,0x0,0x0,0x0,0x0,0x47,0x2d,0x8a, - 0x10,0x0,0x0,0x0,0x0,0x47,0xd3,0xb5,0x20,0x0,0x0,0x0,0x0,0x49,0xd,0x6c, - 0x10,0x0,0x0,0x0,0x0,0x49,0xb3,0x97,0x20,0x0,0x0,0x0,0x0,0x4a,0xed,0x4e, - 0x10,0x0,0x0,0x0,0x0,0x4b,0x9c,0xb3,0xa0,0x0,0x0,0x0,0x0,0x4c,0xd6,0x6a, - 0x90,0x0,0x0,0x0,0x0,0x4d,0x7c,0x95,0xa0,0x0,0x0,0x0,0x0,0x4e,0xb6,0x4c, - 0x90,0x0,0x0,0x0,0x0,0x4f,0x5c,0x77,0xa0,0x0,0x0,0x0,0x0,0x50,0x96,0x2e, - 0x90,0x0,0x0,0x0,0x0,0x51,0x3c,0x59,0xa0,0x0,0x0,0x0,0x0,0x52,0x76,0x10, - 0x90,0x0,0x0,0x0,0x0,0x53,0x1c,0x3b,0xa0,0x0,0x0,0x0,0x0,0x54,0x55,0xf2, - 0x90,0x0,0x0,0x0,0x0,0x54,0xfc,0x1d,0xa0,0x0,0x0,0x0,0x0,0x56,0x35,0xd4, - 0x90,0x0,0x0,0x0,0x0,0x56,0xe5,0x3a,0x20,0x0,0x0,0x0,0x0,0x58,0x1e,0xf1, - 0x10,0x0,0x0,0x0,0x0,0x58,0xc5,0x1c,0x20,0x0,0x0,0x0,0x0,0x59,0xfe,0xd3, - 0x10,0x0,0x0,0x0,0x0,0x5a,0xa4,0xfe,0x20,0x0,0x0,0x0,0x0,0x5b,0xde,0xb5, - 0x10,0x0,0x0,0x0,0x0,0x5c,0x84,0xe0,0x20,0x0,0x0,0x0,0x0,0x5d,0xbe,0x97, - 0x10,0x0,0x0,0x0,0x0,0x5e,0x64,0xc2,0x20,0x0,0x0,0x0,0x0,0x5f,0x9e,0x79, - 0x10,0x0,0x0,0x0,0x0,0x60,0x4d,0xde,0xa0,0x0,0x0,0x0,0x0,0x61,0x87,0x95, - 0x90,0x0,0x0,0x0,0x0,0x62,0x2d,0xc0,0xa0,0x0,0x0,0x0,0x0,0x63,0x67,0x77, - 0x90,0x0,0x0,0x0,0x0,0x64,0xd,0xa2,0xa0,0x0,0x0,0x0,0x0,0x65,0x47,0x59, - 0x90,0x0,0x0,0x0,0x0,0x65,0xed,0x84,0xa0,0x0,0x0,0x0,0x0,0x67,0x27,0x3b, - 0x90,0x0,0x0,0x0,0x0,0x67,0xcd,0x66,0xa0,0x0,0x0,0x0,0x0,0x69,0x7,0x1d, - 0x90,0x0,0x0,0x0,0x0,0x69,0xad,0x48,0xa0,0x0,0x0,0x0,0x0,0x6a,0xe6,0xff, - 0x90,0x0,0x0,0x0,0x0,0x6b,0x96,0x65,0x20,0x0,0x0,0x0,0x0,0x6c,0xd0,0x1c, - 0x10,0x0,0x0,0x0,0x0,0x6d,0x76,0x47,0x20,0x0,0x0,0x0,0x0,0x6e,0xaf,0xfe, - 0x10,0x0,0x0,0x0,0x0,0x6f,0x56,0x29,0x20,0x0,0x0,0x0,0x0,0x70,0x8f,0xe0, - 0x10,0x0,0x0,0x0,0x0,0x71,0x36,0xb,0x20,0x0,0x0,0x0,0x0,0x72,0x6f,0xc2, - 0x10,0x0,0x0,0x0,0x0,0x73,0x15,0xed,0x20,0x0,0x0,0x0,0x0,0x74,0x4f,0xa4, - 0x10,0x0,0x0,0x0,0x0,0x74,0xff,0x9,0xa0,0x0,0x0,0x0,0x0,0x76,0x38,0xc0, - 0x90,0x0,0x0,0x0,0x0,0x76,0xde,0xeb,0xa0,0x0,0x0,0x0,0x0,0x78,0x18,0xa2, - 0x90,0x0,0x0,0x0,0x0,0x78,0xbe,0xcd,0xa0,0x0,0x0,0x0,0x0,0x79,0xf8,0x84, - 0x90,0x0,0x0,0x0,0x0,0x7a,0x9e,0xaf,0xa0,0x0,0x0,0x0,0x0,0x7b,0xd8,0x66, - 0x90,0x0,0x0,0x0,0x0,0x7c,0x7e,0x91,0xa0,0x0,0x0,0x0,0x0,0x7d,0xb8,0x48, - 0x90,0x0,0x0,0x0,0x0,0x7e,0x5e,0x73,0xa0,0x0,0x0,0x0,0x0,0x7f,0x98,0x2a, - 0x90,0x0,0x2,0x1,0x2,0x3,0x4,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0xff,0xff,0x8c,0x94,0x0,0x0,0xff,0xff,0x9d,0x90,0x1,0x4,0xff,0xff,0x8f,0x80, - 0x0,0x8,0xff,0xff,0x9d,0x90,0x1,0xc,0xff,0xff,0x9d,0x90,0x1,0x10,0x4c,0x4d, - 0x54,0x0,0x50,0x44,0x54,0x0,0x50,0x53,0x54,0x0,0x50,0x57,0x54,0x0,0x50,0x50, - 0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x1,0xa,0x50,0x53,0x54, - 0x38,0x50,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e, - 0x31,0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Canada/Saskatchewan - 0x0,0x0,0x3,0xe2, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x36,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x80,0x0,0x0,0x0,0x86, - 0xfd,0x93,0x1c,0x9e,0xb8,0xaf,0x90,0x9f,0xbb,0x7,0x80,0xb5,0x65,0x4f,0xf0,0xb6, - 0x30,0x48,0xe0,0xb7,0x45,0x31,0xf0,0xb8,0x10,0x2a,0xe0,0xb9,0x25,0x13,0xf0,0xb9, - 0xf0,0xc,0xe0,0xbb,0xe,0x30,0x70,0xbb,0xcf,0xee,0xe0,0xbc,0xee,0x12,0x70,0xbd, - 0xb9,0xb,0x60,0xc2,0x72,0x8,0xf0,0xc3,0x61,0xeb,0xe0,0xc4,0x51,0xea,0xf0,0xc5, - 0x38,0x93,0x60,0xc6,0x31,0xcc,0xf0,0xc7,0x21,0xaf,0xe0,0xc8,0x1a,0xe9,0x70,0xc9, - 0xa,0xcc,0x60,0xc9,0xfa,0xcb,0x70,0xca,0xea,0xae,0x60,0xcb,0x89,0xc,0x90,0xd2, - 0x23,0xf4,0x70,0xd2,0x61,0x18,0x0,0xd3,0x63,0x8c,0x10,0xd4,0x53,0x6f,0x0,0xd5, - 0x55,0xe3,0x10,0xd6,0x20,0xdc,0x0,0xd7,0x35,0xc5,0x10,0xd8,0x0,0xbe,0x0,0xd9, - 0x15,0xa7,0x10,0xd9,0xe0,0xa0,0x0,0xda,0xfe,0xc3,0x90,0xdb,0xc0,0x82,0x0,0xdc, - 0xde,0xa5,0x90,0xdd,0xa9,0x9e,0x80,0xde,0xbe,0x87,0x90,0xdf,0x89,0x80,0x80,0xe0, - 0x9e,0x69,0x90,0xe1,0x69,0x62,0x80,0xe2,0x7e,0x4b,0x90,0xe3,0x49,0x44,0x80,0xe4, - 0x5e,0x2d,0x90,0xe5,0x29,0x26,0x80,0xe6,0x47,0x4a,0x10,0xe7,0x12,0x43,0x0,0xe8, - 0x27,0x2c,0x10,0xe8,0xf2,0x25,0x0,0xeb,0xe6,0xf0,0x10,0xec,0xd6,0xd3,0x0,0xed, - 0xc6,0xd2,0x10,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x5,0xff,0xff,0x9d,0xe4,0x0,0x0,0xff, - 0xff,0xab,0xa0,0x1,0x4,0xff,0xff,0x9d,0x90,0x0,0x8,0xff,0xff,0xab,0xa0,0x1, - 0xc,0xff,0xff,0xab,0xa0,0x1,0x10,0xff,0xff,0xab,0xa0,0x0,0x14,0x4c,0x4d,0x54, - 0x0,0x4d,0x44,0x54,0x0,0x4d,0x53,0x54,0x0,0x4d,0x57,0x54,0x0,0x4d,0x50,0x54, - 0x0,0x43,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x1, - 0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x36,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0xf8,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x86,0xfd,0x93,0x1c,0xff,0xff,0xff, - 0xff,0x9e,0xb8,0xaf,0x90,0xff,0xff,0xff,0xff,0x9f,0xbb,0x7,0x80,0xff,0xff,0xff, - 0xff,0xb5,0x65,0x4f,0xf0,0xff,0xff,0xff,0xff,0xb6,0x30,0x48,0xe0,0xff,0xff,0xff, - 0xff,0xb7,0x45,0x31,0xf0,0xff,0xff,0xff,0xff,0xb8,0x10,0x2a,0xe0,0xff,0xff,0xff, - 0xff,0xb9,0x25,0x13,0xf0,0xff,0xff,0xff,0xff,0xb9,0xf0,0xc,0xe0,0xff,0xff,0xff, - 0xff,0xbb,0xe,0x30,0x70,0xff,0xff,0xff,0xff,0xbb,0xcf,0xee,0xe0,0xff,0xff,0xff, - 0xff,0xbc,0xee,0x12,0x70,0xff,0xff,0xff,0xff,0xbd,0xb9,0xb,0x60,0xff,0xff,0xff, - 0xff,0xc2,0x72,0x8,0xf0,0xff,0xff,0xff,0xff,0xc3,0x61,0xeb,0xe0,0xff,0xff,0xff, - 0xff,0xc4,0x51,0xea,0xf0,0xff,0xff,0xff,0xff,0xc5,0x38,0x93,0x60,0xff,0xff,0xff, - 0xff,0xc6,0x31,0xcc,0xf0,0xff,0xff,0xff,0xff,0xc7,0x21,0xaf,0xe0,0xff,0xff,0xff, - 0xff,0xc8,0x1a,0xe9,0x70,0xff,0xff,0xff,0xff,0xc9,0xa,0xcc,0x60,0xff,0xff,0xff, - 0xff,0xc9,0xfa,0xcb,0x70,0xff,0xff,0xff,0xff,0xca,0xea,0xae,0x60,0xff,0xff,0xff, - 0xff,0xcb,0x89,0xc,0x90,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff, - 0xff,0xd2,0x61,0x18,0x0,0xff,0xff,0xff,0xff,0xd3,0x63,0x8c,0x10,0xff,0xff,0xff, - 0xff,0xd4,0x53,0x6f,0x0,0xff,0xff,0xff,0xff,0xd5,0x55,0xe3,0x10,0xff,0xff,0xff, - 0xff,0xd6,0x20,0xdc,0x0,0xff,0xff,0xff,0xff,0xd7,0x35,0xc5,0x10,0xff,0xff,0xff, - 0xff,0xd8,0x0,0xbe,0x0,0xff,0xff,0xff,0xff,0xd9,0x15,0xa7,0x10,0xff,0xff,0xff, - 0xff,0xd9,0xe0,0xa0,0x0,0xff,0xff,0xff,0xff,0xda,0xfe,0xc3,0x90,0xff,0xff,0xff, - 0xff,0xdb,0xc0,0x82,0x0,0xff,0xff,0xff,0xff,0xdc,0xde,0xa5,0x90,0xff,0xff,0xff, - 0xff,0xdd,0xa9,0x9e,0x80,0xff,0xff,0xff,0xff,0xde,0xbe,0x87,0x90,0xff,0xff,0xff, - 0xff,0xdf,0x89,0x80,0x80,0xff,0xff,0xff,0xff,0xe0,0x9e,0x69,0x90,0xff,0xff,0xff, - 0xff,0xe1,0x69,0x62,0x80,0xff,0xff,0xff,0xff,0xe2,0x7e,0x4b,0x90,0xff,0xff,0xff, - 0xff,0xe3,0x49,0x44,0x80,0xff,0xff,0xff,0xff,0xe4,0x5e,0x2d,0x90,0xff,0xff,0xff, - 0xff,0xe5,0x29,0x26,0x80,0xff,0xff,0xff,0xff,0xe6,0x47,0x4a,0x10,0xff,0xff,0xff, - 0xff,0xe7,0x12,0x43,0x0,0xff,0xff,0xff,0xff,0xe8,0x27,0x2c,0x10,0xff,0xff,0xff, - 0xff,0xe8,0xf2,0x25,0x0,0xff,0xff,0xff,0xff,0xeb,0xe6,0xf0,0x10,0xff,0xff,0xff, - 0xff,0xec,0xd6,0xd3,0x0,0xff,0xff,0xff,0xff,0xed,0xc6,0xd2,0x10,0x0,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x5,0xff,0xff,0x9d,0xe4,0x0,0x0,0xff,0xff,0xab,0xa0,0x1,0x4,0xff, - 0xff,0x9d,0x90,0x0,0x8,0xff,0xff,0xab,0xa0,0x1,0xc,0xff,0xff,0xab,0xa0,0x1, - 0x10,0xff,0xff,0xab,0xa0,0x0,0x14,0x4c,0x4d,0x54,0x0,0x4d,0x44,0x54,0x0,0x4d, - 0x53,0x54,0x0,0x4d,0x57,0x54,0x0,0x4d,0x50,0x54,0x0,0x43,0x53,0x54,0x0,0x0, - 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0x43,0x53,0x54,0x36, - 0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Canada/Mountain - 0x0,0x0,0x9,0x62, - 0x54, + 0x0,0x0,0x16,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xe,0x80,0x0,0x0,0x0,0x9c, + 0x4e,0xa6,0x9c,0x9c,0xbc,0x20,0xf0,0xcb,0x54,0xb3,0x0,0xcb,0xc7,0x57,0x70,0xcc, + 0xb7,0x56,0x80,0xcd,0xa7,0x39,0x70,0xce,0xa0,0x73,0x0,0xcf,0x87,0x1b,0x70,0x3, + 0x70,0x39,0x80,0x4,0xd,0x1c,0x0,0x25,0x49,0xcd,0x0,0x25,0xef,0xea,0x0,0x27, + 0x29,0xaf,0x0,0x27,0xcf,0xcc,0x0,0x29,0x9,0x91,0x0,0x29,0xaf,0xae,0x0,0x2a, + 0x50,0x68,0xe0,0x2a,0xe9,0x73,0x0,0x2b,0x98,0xca,0x80,0x2c,0xd2,0x8f,0x80,0x2d, + 0x78,0xac,0x80,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x2,0x3,0x4,0x3,0x4,0x0,0x0,0x8b,0xac,0x0,0x0,0x0, + 0x0,0x9a,0xb0,0x1,0x4,0x0,0x0,0x8c,0xa0,0x0,0x9,0x0,0x0,0x9a,0xb0,0x1, + 0x4,0x0,0x0,0x8c,0xa0,0x0,0x9,0x4c,0x4d,0x54,0x0,0x41,0x45,0x44,0x54,0x0, + 0x41,0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x9b,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0x88, - 0xde,0xce,0xe0,0x9e,0xb8,0xaf,0x90,0x9f,0xbb,0x7,0x80,0xa0,0x98,0x91,0x90,0xa0, - 0xd2,0x85,0x80,0xa2,0x8a,0xe8,0x90,0xa3,0x84,0x6,0x0,0xa4,0x6a,0xca,0x90,0xa5, - 0x35,0xc3,0x80,0xa6,0x53,0xe7,0x10,0xa7,0x15,0xa5,0x80,0xa8,0x33,0xc9,0x10,0xa8, - 0xfe,0xc2,0x0,0xcb,0x89,0xc,0x90,0xd2,0x23,0xf4,0x70,0xd2,0x61,0x18,0x0,0xd5, - 0x55,0xe3,0x10,0xd6,0x20,0xdc,0x0,0xfa,0xf8,0x75,0x10,0xfb,0xe8,0x58,0x0,0xfe, - 0xb8,0x39,0x10,0xff,0xa8,0x1c,0x0,0x4,0x61,0x19,0x90,0x5,0x50,0xfc,0x80,0x6, - 0x40,0xfb,0x90,0x7,0x30,0xde,0x80,0x8,0x20,0xdd,0x90,0x9,0x10,0xc0,0x80,0xa, - 0x0,0xbf,0x90,0xa,0xf0,0xa2,0x80,0xb,0xe0,0xa1,0x90,0xc,0xd9,0xbf,0x0,0xd, - 0xc0,0x83,0x90,0xe,0xb9,0xa1,0x0,0xf,0xa9,0xa0,0x10,0x10,0x99,0x83,0x0,0x11, - 0x89,0x82,0x10,0x12,0x79,0x65,0x0,0x13,0x69,0x64,0x10,0x14,0x59,0x47,0x0,0x15, - 0x49,0x46,0x10,0x16,0x39,0x29,0x0,0x17,0x29,0x28,0x10,0x18,0x22,0x45,0x80,0x19, - 0x9,0xa,0x10,0x1a,0x2,0x27,0x80,0x1a,0xf2,0x26,0x90,0x1b,0xe2,0x9,0x80,0x1c, - 0xd2,0x8,0x90,0x1d,0xc1,0xeb,0x80,0x1e,0xb1,0xea,0x90,0x1f,0xa1,0xcd,0x80,0x20, - 0x76,0x1d,0x10,0x21,0x81,0xaf,0x80,0x22,0x55,0xff,0x10,0x23,0x6a,0xcc,0x0,0x24, - 0x35,0xe1,0x10,0x25,0x4a,0xae,0x0,0x26,0x15,0xc3,0x10,0x27,0x2a,0x90,0x0,0x27, - 0xfe,0xdf,0x90,0x29,0xa,0x72,0x0,0x29,0xde,0xc1,0x90,0x2a,0xea,0x54,0x0,0x2b, - 0xbe,0xa3,0x90,0x2c,0xd3,0x70,0x80,0x2d,0x9e,0x85,0x90,0x2e,0xb3,0x52,0x80,0x2f, - 0x7e,0x67,0x90,0x30,0x93,0x34,0x80,0x31,0x67,0x84,0x10,0x32,0x73,0x16,0x80,0x33, - 0x47,0x66,0x10,0x34,0x52,0xf8,0x80,0x35,0x27,0x48,0x10,0x36,0x32,0xda,0x80,0x37, - 0x7,0x2a,0x10,0x38,0x1b,0xf7,0x0,0x38,0xe7,0xc,0x10,0x39,0xfb,0xd9,0x0,0x3a, - 0xc6,0xee,0x10,0x3b,0xdb,0xbb,0x0,0x3c,0xb0,0xa,0x90,0x3d,0xbb,0x9d,0x0,0x3e, - 0x8f,0xec,0x90,0x3f,0x9b,0x7f,0x0,0x40,0x6f,0xce,0x90,0x41,0x84,0x9b,0x80,0x42, - 0x4f,0xb0,0x90,0x43,0x64,0x7d,0x80,0x44,0x2f,0x92,0x90,0x45,0x44,0x5f,0x80,0x45, - 0xf3,0xc5,0x10,0x47,0x2d,0x7c,0x0,0x47,0xd3,0xa7,0x10,0x49,0xd,0x5e,0x0,0x49, - 0xb3,0x89,0x10,0x4a,0xed,0x40,0x0,0x4b,0x9c,0xa5,0x90,0x4c,0xd6,0x5c,0x80,0x4d, - 0x7c,0x87,0x90,0x4e,0xb6,0x3e,0x80,0x4f,0x5c,0x69,0x90,0x50,0x96,0x20,0x80,0x51, - 0x3c,0x4b,0x90,0x52,0x76,0x2,0x80,0x53,0x1c,0x2d,0x90,0x54,0x55,0xe4,0x80,0x54, - 0xfc,0xf,0x90,0x56,0x35,0xc6,0x80,0x56,0xe5,0x2c,0x10,0x58,0x1e,0xe3,0x0,0x58, - 0xc5,0xe,0x10,0x59,0xfe,0xc5,0x0,0x5a,0xa4,0xf0,0x10,0x5b,0xde,0xa7,0x0,0x5c, - 0x84,0xd2,0x10,0x5d,0xbe,0x89,0x0,0x5e,0x64,0xb4,0x10,0x5f,0x9e,0x6b,0x0,0x60, - 0x4d,0xd0,0x90,0x61,0x87,0x87,0x80,0x62,0x2d,0xb2,0x90,0x63,0x67,0x69,0x80,0x64, - 0xd,0x94,0x90,0x65,0x47,0x4b,0x80,0x65,0xed,0x76,0x90,0x67,0x27,0x2d,0x80,0x67, - 0xcd,0x58,0x90,0x69,0x7,0xf,0x80,0x69,0xad,0x3a,0x90,0x6a,0xe6,0xf1,0x80,0x6b, - 0x96,0x57,0x10,0x6c,0xd0,0xe,0x0,0x6d,0x76,0x39,0x10,0x6e,0xaf,0xf0,0x0,0x6f, - 0x56,0x1b,0x10,0x70,0x8f,0xd2,0x0,0x71,0x35,0xfd,0x10,0x72,0x6f,0xb4,0x0,0x73, - 0x15,0xdf,0x10,0x74,0x4f,0x96,0x0,0x74,0xfe,0xfb,0x90,0x76,0x38,0xb2,0x80,0x76, - 0xde,0xdd,0x90,0x78,0x18,0x94,0x80,0x78,0xbe,0xbf,0x90,0x79,0xf8,0x76,0x80,0x7a, - 0x9e,0xa1,0x90,0x7b,0xd8,0x58,0x80,0x7c,0x7e,0x83,0x90,0x7d,0xb8,0x3a,0x80,0x7e, - 0x5e,0x65,0x90,0x7f,0x98,0x1c,0x80,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x0,0x0,0x17,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xe,0xf8,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x72,0xed,0xa2,0xd4,0xff,0xff,0xff,0xff,0x9c, + 0x4e,0xa6,0x9c,0xff,0xff,0xff,0xff,0x9c,0xbc,0x20,0xf0,0xff,0xff,0xff,0xff,0xcb, + 0x54,0xb3,0x0,0xff,0xff,0xff,0xff,0xcb,0xc7,0x57,0x70,0xff,0xff,0xff,0xff,0xcc, + 0xb7,0x56,0x80,0xff,0xff,0xff,0xff,0xcd,0xa7,0x39,0x70,0xff,0xff,0xff,0xff,0xce, + 0xa0,0x73,0x0,0xff,0xff,0xff,0xff,0xcf,0x87,0x1b,0x70,0x0,0x0,0x0,0x0,0x3, + 0x70,0x39,0x80,0x0,0x0,0x0,0x0,0x4,0xd,0x1c,0x0,0x0,0x0,0x0,0x0,0x25, + 0x49,0xcd,0x0,0x0,0x0,0x0,0x0,0x25,0xef,0xea,0x0,0x0,0x0,0x0,0x0,0x27, + 0x29,0xaf,0x0,0x0,0x0,0x0,0x0,0x27,0xcf,0xcc,0x0,0x0,0x0,0x0,0x0,0x29, + 0x9,0x91,0x0,0x0,0x0,0x0,0x0,0x29,0xaf,0xae,0x0,0x0,0x0,0x0,0x0,0x2a, + 0x50,0x68,0xe0,0x0,0x0,0x0,0x0,0x2a,0xe9,0x73,0x0,0x0,0x0,0x0,0x0,0x2b, + 0x98,0xca,0x80,0x0,0x0,0x0,0x0,0x2c,0xd2,0x8f,0x80,0x0,0x0,0x0,0x0,0x2d, + 0x78,0xac,0x80,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x2,0x3,0x4,0x3,0x4,0x0,0x0,0x8b,0xac,0x0,0x0, + 0x0,0x0,0x9a,0xb0,0x1,0x4,0x0,0x0,0x8c,0xa0,0x0,0x9,0x0,0x0,0x9a,0xb0, + 0x1,0x4,0x0,0x0,0x8c,0xa0,0x0,0x9,0x4c,0x4d,0x54,0x0,0x41,0x45,0x44,0x54, + 0x0,0x41,0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0, + 0xa,0x41,0x45,0x53,0x54,0x2d,0x31,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Australia/NSW + 0x0,0x0,0x8,0xaf, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x8e,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xe,0x80,0x0,0x0,0x0,0x9c, + 0x4e,0xa6,0x9c,0x9c,0xbc,0x20,0xf0,0xcb,0x54,0xb3,0x0,0xcb,0xc7,0x57,0x70,0xcc, + 0xb7,0x56,0x80,0xcd,0xa7,0x39,0x70,0xce,0xa0,0x73,0x0,0xcf,0x87,0x1b,0x70,0x3, + 0x70,0x39,0x80,0x4,0xd,0x1c,0x0,0x5,0x50,0x1b,0x80,0x5,0xf6,0x38,0x80,0x7, + 0x2f,0xfd,0x80,0x7,0xd6,0x1a,0x80,0x9,0xf,0xdf,0x80,0x9,0xb5,0xfc,0x80,0xa, + 0xef,0xc1,0x80,0xb,0x9f,0x19,0x0,0xc,0xd8,0xde,0x0,0xd,0x7e,0xfb,0x0,0xe, + 0xb8,0xc0,0x0,0xf,0x5e,0xdd,0x0,0x10,0x98,0xa2,0x0,0x11,0x3e,0xbf,0x0,0x12, + 0x78,0x84,0x0,0x13,0x1e,0xa1,0x0,0x14,0x58,0x66,0x0,0x14,0xfe,0x83,0x0,0x16, + 0x38,0x48,0x0,0x17,0xc,0x89,0x80,0x18,0x21,0x64,0x80,0x18,0xc7,0x81,0x80,0x1a, + 0x1,0x46,0x80,0x1a,0xa7,0x63,0x80,0x1b,0xe1,0x28,0x80,0x1c,0x87,0x45,0x80,0x1d, + 0xc1,0xa,0x80,0x1e,0x79,0x9c,0x80,0x1f,0x97,0xb2,0x0,0x20,0x59,0x7e,0x80,0x21, + 0x80,0xce,0x80,0x22,0x42,0x9b,0x0,0x23,0x69,0xeb,0x0,0x24,0x22,0x7d,0x0,0x25, + 0x49,0xcd,0x0,0x25,0xef,0xea,0x0,0x27,0x29,0xaf,0x0,0x27,0xcf,0xcc,0x0,0x29, + 0x9,0x91,0x0,0x29,0xaf,0xae,0x0,0x2a,0xe9,0x73,0x0,0x2b,0x98,0xca,0x80,0x2c, + 0xd2,0x8f,0x80,0x2d,0x78,0xac,0x80,0x2e,0xb2,0x71,0x80,0x2f,0x58,0x8e,0x80,0x30, + 0x92,0x53,0x80,0x31,0x5d,0x5a,0x80,0x32,0x72,0x35,0x80,0x33,0x3d,0x3c,0x80,0x34, + 0x52,0x17,0x80,0x35,0x1d,0x1e,0x80,0x36,0x31,0xf9,0x80,0x36,0xfd,0x0,0x80,0x38, + 0x1b,0x16,0x0,0x38,0xdc,0xe2,0x80,0x39,0xa7,0xe9,0x80,0x3a,0xbc,0xc4,0x80,0x3b, + 0xda,0xda,0x0,0x3c,0xa5,0xe1,0x0,0x3d,0xba,0xbc,0x0,0x3e,0x85,0xc3,0x0,0x3f, + 0x9a,0x9e,0x0,0x40,0x65,0xa5,0x0,0x41,0x83,0xba,0x80,0x42,0x45,0x87,0x0,0x43, + 0x63,0x9c,0x80,0x44,0x2e,0xa3,0x80,0x45,0x43,0x7e,0x80,0x46,0x5,0x4b,0x0,0x47, + 0x23,0x60,0x80,0x47,0xf7,0xa2,0x0,0x48,0xe7,0x93,0x0,0x49,0xd7,0x84,0x0,0x4a, + 0xc7,0x75,0x0,0x4b,0xb7,0x66,0x0,0x4c,0xa7,0x57,0x0,0x4d,0x97,0x48,0x0,0x4e, + 0x87,0x39,0x0,0x4f,0x77,0x2a,0x0,0x50,0x70,0x55,0x80,0x51,0x60,0x46,0x80,0x52, + 0x50,0x37,0x80,0x53,0x40,0x28,0x80,0x54,0x30,0x19,0x80,0x55,0x20,0xa,0x80,0x56, + 0xf,0xfb,0x80,0x56,0xff,0xec,0x80,0x57,0xef,0xdd,0x80,0x58,0xdf,0xce,0x80,0x59, + 0xcf,0xbf,0x80,0x5a,0xbf,0xb0,0x80,0x5b,0xb8,0xdc,0x0,0x5c,0xa8,0xcd,0x0,0x5d, + 0x98,0xbe,0x0,0x5e,0x88,0xaf,0x0,0x5f,0x78,0xa0,0x0,0x60,0x68,0x91,0x0,0x61, + 0x58,0x82,0x0,0x62,0x48,0x73,0x0,0x63,0x38,0x64,0x0,0x64,0x28,0x55,0x0,0x65, + 0x18,0x46,0x0,0x66,0x11,0x71,0x80,0x67,0x1,0x62,0x80,0x67,0xf1,0x53,0x80,0x68, + 0xe1,0x44,0x80,0x69,0xd1,0x35,0x80,0x6a,0xc1,0x26,0x80,0x6b,0xb1,0x17,0x80,0x6c, + 0xa1,0x8,0x80,0x6d,0x90,0xf9,0x80,0x6e,0x80,0xea,0x80,0x6f,0x70,0xdb,0x80,0x70, + 0x6a,0x7,0x0,0x71,0x59,0xf8,0x0,0x72,0x49,0xe9,0x0,0x73,0x39,0xda,0x0,0x74, + 0x29,0xcb,0x0,0x75,0x19,0xbc,0x0,0x76,0x9,0xad,0x0,0x76,0xf9,0x9e,0x0,0x77, + 0xe9,0x8f,0x0,0x78,0xd9,0x80,0x0,0x79,0xc9,0x71,0x0,0x7a,0xb9,0x62,0x0,0x7b, + 0xb2,0x8d,0x80,0x7c,0xa2,0x7e,0x80,0x7d,0x92,0x6f,0x80,0x7e,0x82,0x60,0x80,0x7f, + 0x72,0x51,0x80,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x0,0x0,0x8d,0xc4,0x0,0x0,0x0,0x0,0x9a,0xb0,0x1,0x4,0x0,0x0,0x8c, + 0xa0,0x0,0x9,0x0,0x0,0x9a,0xb0,0x1,0x4,0x0,0x0,0x8c,0xa0,0x0,0x9,0x4c, + 0x4d,0x54,0x0,0x41,0x45,0x44,0x54,0x0,0x41,0x45,0x53,0x54,0x0,0x0,0x0,0x0, + 0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0, + 0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0x0,0x0,0x0,0x5,0x0, + 0x0,0x0,0xe,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x73, + 0x16,0x7f,0x3c,0xff,0xff,0xff,0xff,0x9c,0x4e,0xa6,0x9c,0xff,0xff,0xff,0xff,0x9c, + 0xbc,0x20,0xf0,0xff,0xff,0xff,0xff,0xcb,0x54,0xb3,0x0,0xff,0xff,0xff,0xff,0xcb, + 0xc7,0x57,0x70,0xff,0xff,0xff,0xff,0xcc,0xb7,0x56,0x80,0xff,0xff,0xff,0xff,0xcd, + 0xa7,0x39,0x70,0xff,0xff,0xff,0xff,0xce,0xa0,0x73,0x0,0xff,0xff,0xff,0xff,0xcf, + 0x87,0x1b,0x70,0x0,0x0,0x0,0x0,0x3,0x70,0x39,0x80,0x0,0x0,0x0,0x0,0x4, + 0xd,0x1c,0x0,0x0,0x0,0x0,0x0,0x5,0x50,0x1b,0x80,0x0,0x0,0x0,0x0,0x5, + 0xf6,0x38,0x80,0x0,0x0,0x0,0x0,0x7,0x2f,0xfd,0x80,0x0,0x0,0x0,0x0,0x7, + 0xd6,0x1a,0x80,0x0,0x0,0x0,0x0,0x9,0xf,0xdf,0x80,0x0,0x0,0x0,0x0,0x9, + 0xb5,0xfc,0x80,0x0,0x0,0x0,0x0,0xa,0xef,0xc1,0x80,0x0,0x0,0x0,0x0,0xb, + 0x9f,0x19,0x0,0x0,0x0,0x0,0x0,0xc,0xd8,0xde,0x0,0x0,0x0,0x0,0x0,0xd, + 0x7e,0xfb,0x0,0x0,0x0,0x0,0x0,0xe,0xb8,0xc0,0x0,0x0,0x0,0x0,0x0,0xf, + 0x5e,0xdd,0x0,0x0,0x0,0x0,0x0,0x10,0x98,0xa2,0x0,0x0,0x0,0x0,0x0,0x11, + 0x3e,0xbf,0x0,0x0,0x0,0x0,0x0,0x12,0x78,0x84,0x0,0x0,0x0,0x0,0x0,0x13, + 0x1e,0xa1,0x0,0x0,0x0,0x0,0x0,0x14,0x58,0x66,0x0,0x0,0x0,0x0,0x0,0x14, + 0xfe,0x83,0x0,0x0,0x0,0x0,0x0,0x16,0x38,0x48,0x0,0x0,0x0,0x0,0x0,0x17, + 0xc,0x89,0x80,0x0,0x0,0x0,0x0,0x18,0x21,0x64,0x80,0x0,0x0,0x0,0x0,0x18, + 0xc7,0x81,0x80,0x0,0x0,0x0,0x0,0x1a,0x1,0x46,0x80,0x0,0x0,0x0,0x0,0x1a, + 0xa7,0x63,0x80,0x0,0x0,0x0,0x0,0x1b,0xe1,0x28,0x80,0x0,0x0,0x0,0x0,0x1c, + 0x87,0x45,0x80,0x0,0x0,0x0,0x0,0x1d,0xc1,0xa,0x80,0x0,0x0,0x0,0x0,0x1e, + 0x79,0x9c,0x80,0x0,0x0,0x0,0x0,0x1f,0x97,0xb2,0x0,0x0,0x0,0x0,0x0,0x20, + 0x59,0x7e,0x80,0x0,0x0,0x0,0x0,0x21,0x80,0xce,0x80,0x0,0x0,0x0,0x0,0x22, + 0x42,0x9b,0x0,0x0,0x0,0x0,0x0,0x23,0x69,0xeb,0x0,0x0,0x0,0x0,0x0,0x24, + 0x22,0x7d,0x0,0x0,0x0,0x0,0x0,0x25,0x49,0xcd,0x0,0x0,0x0,0x0,0x0,0x25, + 0xef,0xea,0x0,0x0,0x0,0x0,0x0,0x27,0x29,0xaf,0x0,0x0,0x0,0x0,0x0,0x27, + 0xcf,0xcc,0x0,0x0,0x0,0x0,0x0,0x29,0x9,0x91,0x0,0x0,0x0,0x0,0x0,0x29, + 0xaf,0xae,0x0,0x0,0x0,0x0,0x0,0x2a,0xe9,0x73,0x0,0x0,0x0,0x0,0x0,0x2b, + 0x98,0xca,0x80,0x0,0x0,0x0,0x0,0x2c,0xd2,0x8f,0x80,0x0,0x0,0x0,0x0,0x2d, + 0x78,0xac,0x80,0x0,0x0,0x0,0x0,0x2e,0xb2,0x71,0x80,0x0,0x0,0x0,0x0,0x2f, + 0x58,0x8e,0x80,0x0,0x0,0x0,0x0,0x30,0x92,0x53,0x80,0x0,0x0,0x0,0x0,0x31, + 0x5d,0x5a,0x80,0x0,0x0,0x0,0x0,0x32,0x72,0x35,0x80,0x0,0x0,0x0,0x0,0x33, + 0x3d,0x3c,0x80,0x0,0x0,0x0,0x0,0x34,0x52,0x17,0x80,0x0,0x0,0x0,0x0,0x35, + 0x1d,0x1e,0x80,0x0,0x0,0x0,0x0,0x36,0x31,0xf9,0x80,0x0,0x0,0x0,0x0,0x36, + 0xfd,0x0,0x80,0x0,0x0,0x0,0x0,0x38,0x1b,0x16,0x0,0x0,0x0,0x0,0x0,0x38, + 0xdc,0xe2,0x80,0x0,0x0,0x0,0x0,0x39,0xa7,0xe9,0x80,0x0,0x0,0x0,0x0,0x3a, + 0xbc,0xc4,0x80,0x0,0x0,0x0,0x0,0x3b,0xda,0xda,0x0,0x0,0x0,0x0,0x0,0x3c, + 0xa5,0xe1,0x0,0x0,0x0,0x0,0x0,0x3d,0xba,0xbc,0x0,0x0,0x0,0x0,0x0,0x3e, + 0x85,0xc3,0x0,0x0,0x0,0x0,0x0,0x3f,0x9a,0x9e,0x0,0x0,0x0,0x0,0x0,0x40, + 0x65,0xa5,0x0,0x0,0x0,0x0,0x0,0x41,0x83,0xba,0x80,0x0,0x0,0x0,0x0,0x42, + 0x45,0x87,0x0,0x0,0x0,0x0,0x0,0x43,0x63,0x9c,0x80,0x0,0x0,0x0,0x0,0x44, + 0x2e,0xa3,0x80,0x0,0x0,0x0,0x0,0x45,0x43,0x7e,0x80,0x0,0x0,0x0,0x0,0x46, + 0x5,0x4b,0x0,0x0,0x0,0x0,0x0,0x47,0x23,0x60,0x80,0x0,0x0,0x0,0x0,0x47, + 0xf7,0xa2,0x0,0x0,0x0,0x0,0x0,0x48,0xe7,0x93,0x0,0x0,0x0,0x0,0x0,0x49, + 0xd7,0x84,0x0,0x0,0x0,0x0,0x0,0x4a,0xc7,0x75,0x0,0x0,0x0,0x0,0x0,0x4b, + 0xb7,0x66,0x0,0x0,0x0,0x0,0x0,0x4c,0xa7,0x57,0x0,0x0,0x0,0x0,0x0,0x4d, + 0x97,0x48,0x0,0x0,0x0,0x0,0x0,0x4e,0x87,0x39,0x0,0x0,0x0,0x0,0x0,0x4f, + 0x77,0x2a,0x0,0x0,0x0,0x0,0x0,0x50,0x70,0x55,0x80,0x0,0x0,0x0,0x0,0x51, + 0x60,0x46,0x80,0x0,0x0,0x0,0x0,0x52,0x50,0x37,0x80,0x0,0x0,0x0,0x0,0x53, + 0x40,0x28,0x80,0x0,0x0,0x0,0x0,0x54,0x30,0x19,0x80,0x0,0x0,0x0,0x0,0x55, + 0x20,0xa,0x80,0x0,0x0,0x0,0x0,0x56,0xf,0xfb,0x80,0x0,0x0,0x0,0x0,0x56, + 0xff,0xec,0x80,0x0,0x0,0x0,0x0,0x57,0xef,0xdd,0x80,0x0,0x0,0x0,0x0,0x58, + 0xdf,0xce,0x80,0x0,0x0,0x0,0x0,0x59,0xcf,0xbf,0x80,0x0,0x0,0x0,0x0,0x5a, + 0xbf,0xb0,0x80,0x0,0x0,0x0,0x0,0x5b,0xb8,0xdc,0x0,0x0,0x0,0x0,0x0,0x5c, + 0xa8,0xcd,0x0,0x0,0x0,0x0,0x0,0x5d,0x98,0xbe,0x0,0x0,0x0,0x0,0x0,0x5e, + 0x88,0xaf,0x0,0x0,0x0,0x0,0x0,0x5f,0x78,0xa0,0x0,0x0,0x0,0x0,0x0,0x60, + 0x68,0x91,0x0,0x0,0x0,0x0,0x0,0x61,0x58,0x82,0x0,0x0,0x0,0x0,0x0,0x62, + 0x48,0x73,0x0,0x0,0x0,0x0,0x0,0x63,0x38,0x64,0x0,0x0,0x0,0x0,0x0,0x64, + 0x28,0x55,0x0,0x0,0x0,0x0,0x0,0x65,0x18,0x46,0x0,0x0,0x0,0x0,0x0,0x66, + 0x11,0x71,0x80,0x0,0x0,0x0,0x0,0x67,0x1,0x62,0x80,0x0,0x0,0x0,0x0,0x67, + 0xf1,0x53,0x80,0x0,0x0,0x0,0x0,0x68,0xe1,0x44,0x80,0x0,0x0,0x0,0x0,0x69, + 0xd1,0x35,0x80,0x0,0x0,0x0,0x0,0x6a,0xc1,0x26,0x80,0x0,0x0,0x0,0x0,0x6b, + 0xb1,0x17,0x80,0x0,0x0,0x0,0x0,0x6c,0xa1,0x8,0x80,0x0,0x0,0x0,0x0,0x6d, + 0x90,0xf9,0x80,0x0,0x0,0x0,0x0,0x6e,0x80,0xea,0x80,0x0,0x0,0x0,0x0,0x6f, + 0x70,0xdb,0x80,0x0,0x0,0x0,0x0,0x70,0x6a,0x7,0x0,0x0,0x0,0x0,0x0,0x71, + 0x59,0xf8,0x0,0x0,0x0,0x0,0x0,0x72,0x49,0xe9,0x0,0x0,0x0,0x0,0x0,0x73, + 0x39,0xda,0x0,0x0,0x0,0x0,0x0,0x74,0x29,0xcb,0x0,0x0,0x0,0x0,0x0,0x75, + 0x19,0xbc,0x0,0x0,0x0,0x0,0x0,0x76,0x9,0xad,0x0,0x0,0x0,0x0,0x0,0x76, + 0xf9,0x9e,0x0,0x0,0x0,0x0,0x0,0x77,0xe9,0x8f,0x0,0x0,0x0,0x0,0x0,0x78, + 0xd9,0x80,0x0,0x0,0x0,0x0,0x0,0x79,0xc9,0x71,0x0,0x0,0x0,0x0,0x0,0x7a, + 0xb9,0x62,0x0,0x0,0x0,0x0,0x0,0x7b,0xb2,0x8d,0x80,0x0,0x0,0x0,0x0,0x7c, + 0xa2,0x7e,0x80,0x0,0x0,0x0,0x0,0x7d,0x92,0x6f,0x80,0x0,0x0,0x0,0x0,0x7e, + 0x82,0x60,0x80,0x0,0x0,0x0,0x0,0x7f,0x72,0x51,0x80,0x0,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x0,0x0,0x8d,0xc4,0x0,0x0, + 0x0,0x0,0x9a,0xb0,0x1,0x4,0x0,0x0,0x8c,0xa0,0x0,0x9,0x0,0x0,0x9a,0xb0, + 0x1,0x4,0x0,0x0,0x8c,0xa0,0x0,0x9,0x4c,0x4d,0x54,0x0,0x41,0x45,0x44,0x54, + 0x0,0x41,0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0, + 0xa,0x41,0x45,0x53,0x54,0x2d,0x31,0x30,0x41,0x45,0x44,0x54,0x2c,0x4d,0x31,0x30, + 0x2e,0x31,0x2e,0x30,0x2c,0x4d,0x34,0x2e,0x31,0x2e,0x30,0x2f,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Australia/Darwin + 0x0,0x0,0x1,0x43, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x9,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xa,0x80,0x0,0x0,0x0,0x9c, + 0x4e,0xad,0xa4,0x9c,0xbc,0x27,0xf8,0xcb,0x54,0xba,0x8,0xcb,0xc7,0x5e,0x78,0xcc, + 0xb7,0x5d,0x88,0xcd,0xa7,0x40,0x78,0xce,0xa0,0x7a,0x8,0xcf,0x87,0x22,0x78,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x0,0x0,0x7e,0x90,0x0,0x0,0x0,0x0, + 0x93,0xa8,0x1,0x5,0x0,0x0,0x85,0x98,0x0,0x0,0x41,0x43,0x53,0x54,0x0,0x41, + 0x43,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb,0x0,0x0, + 0x0,0x4,0x0,0x0,0x0,0xe,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff, + 0xff,0xff,0x73,0x16,0x92,0x58,0xff,0xff,0xff,0xff,0x7b,0x12,0x3,0x70,0xff,0xff, + 0xff,0xff,0x9c,0x4e,0xad,0xa4,0xff,0xff,0xff,0xff,0x9c,0xbc,0x27,0xf8,0xff,0xff, + 0xff,0xff,0xcb,0x54,0xba,0x8,0xff,0xff,0xff,0xff,0xcb,0xc7,0x5e,0x78,0xff,0xff, + 0xff,0xff,0xcc,0xb7,0x5d,0x88,0xff,0xff,0xff,0xff,0xcd,0xa7,0x40,0x78,0xff,0xff, + 0xff,0xff,0xce,0xa0,0x7a,0x8,0xff,0xff,0xff,0xff,0xcf,0x87,0x22,0x78,0x0,0x1, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x0,0x0,0x7a,0xa8,0x0,0x0,0x0, + 0x0,0x7e,0x90,0x0,0x4,0x0,0x0,0x93,0xa8,0x1,0x9,0x0,0x0,0x85,0x98,0x0, + 0x4,0x4c,0x4d,0x54,0x0,0x41,0x43,0x53,0x54,0x0,0x41,0x43,0x44,0x54,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x41,0x43,0x53,0x54,0x2d,0x39,0x3a,0x33, + 0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Australia/West + 0x0,0x0,0x1,0xdf, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x13,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xe,0x80,0x0,0x0,0x0,0x9c, + 0x4e,0xc2,0xbc,0x9c,0xbc,0x3d,0x10,0xcb,0x54,0xcf,0x20,0xcb,0xc7,0x73,0x90,0xcc, + 0xb7,0x72,0xa0,0xcd,0xa7,0x55,0x90,0x9,0xf,0xfb,0xa0,0x9,0xb6,0x18,0xa0,0x1a, + 0x1,0x62,0xa0,0x1a,0xa7,0x7f,0xa0,0x29,0x25,0x5c,0xa0,0x29,0xaf,0xca,0x20,0x45, + 0x71,0xbf,0x20,0x46,0x5,0x67,0x20,0x47,0x23,0x7c,0xa0,0x47,0xee,0x83,0xa0,0x49, + 0x3,0x5e,0xa0,0x49,0xce,0x65,0xa0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x0,0x0,0x6c,0x9c,0x0,0x0, + 0x0,0x0,0x7e,0x90,0x1,0x4,0x0,0x0,0x70,0x80,0x0,0x9,0x0,0x0,0x7e,0x90, + 0x1,0x4,0x0,0x0,0x70,0x80,0x0,0x9,0x4c,0x4d,0x54,0x0,0x41,0x57,0x44,0x54, + 0x0,0x41,0x57,0x53,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0, + 0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xe,0xf8,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x74,0xa6,0x16,0xe4,0xff,0xff,0xff,0xff, + 0x9c,0x4e,0xc2,0xbc,0xff,0xff,0xff,0xff,0x9c,0xbc,0x3d,0x10,0xff,0xff,0xff,0xff, + 0xcb,0x54,0xcf,0x20,0xff,0xff,0xff,0xff,0xcb,0xc7,0x73,0x90,0xff,0xff,0xff,0xff, + 0xcc,0xb7,0x72,0xa0,0xff,0xff,0xff,0xff,0xcd,0xa7,0x55,0x90,0x0,0x0,0x0,0x0, + 0x9,0xf,0xfb,0xa0,0x0,0x0,0x0,0x0,0x9,0xb6,0x18,0xa0,0x0,0x0,0x0,0x0, + 0x1a,0x1,0x62,0xa0,0x0,0x0,0x0,0x0,0x1a,0xa7,0x7f,0xa0,0x0,0x0,0x0,0x0, + 0x29,0x25,0x5c,0xa0,0x0,0x0,0x0,0x0,0x29,0xaf,0xca,0x20,0x0,0x0,0x0,0x0, + 0x45,0x71,0xbf,0x20,0x0,0x0,0x0,0x0,0x46,0x5,0x67,0x20,0x0,0x0,0x0,0x0, + 0x47,0x23,0x7c,0xa0,0x0,0x0,0x0,0x0,0x47,0xee,0x83,0xa0,0x0,0x0,0x0,0x0, + 0x49,0x3,0x5e,0xa0,0x0,0x0,0x0,0x0,0x49,0xce,0x65,0xa0,0x0,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x0,0x0,0x6c,0x9c,0x0,0x0,0x0,0x0,0x7e,0x90,0x1,0x4,0x0,0x0,0x70,0x80, + 0x0,0x9,0x0,0x0,0x7e,0x90,0x1,0x4,0x0,0x0,0x70,0x80,0x0,0x9,0x4c,0x4d, + 0x54,0x0,0x41,0x57,0x44,0x54,0x0,0x41,0x57,0x53,0x54,0x0,0x0,0x0,0x0,0x1, + 0x1,0x0,0x0,0x0,0x0,0x0,0xa,0x41,0x57,0x53,0x54,0x2d,0x38,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Australia/Queensland + 0x0,0x0,0x1,0xc4, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x11,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xe,0x80,0x0,0x0,0x0,0x9c, + 0x4e,0xa6,0x9c,0x9c,0xbc,0x20,0xf0,0xcb,0x54,0xb3,0x0,0xcb,0xc7,0x57,0x70,0xcc, + 0xb7,0x56,0x80,0xcd,0xa7,0x39,0x70,0xce,0xa0,0x73,0x0,0xcf,0x87,0x1b,0x70,0x3, + 0x70,0x39,0x80,0x4,0xd,0x1c,0x0,0x25,0x49,0xcd,0x0,0x25,0xef,0xea,0x0,0x27, + 0x29,0xaf,0x0,0x27,0xcf,0xcc,0x0,0x29,0x9,0x91,0x0,0x29,0xaf,0xae,0x0,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x0,0x0,0x8f,0x78,0x0,0x0,0x0,0x0,0x9a,0xb0,0x1,0x4,0x0,0x0,0x8c,0xa0, + 0x0,0x9,0x0,0x0,0x9a,0xb0,0x1,0x4,0x0,0x0,0x8c,0xa0,0x0,0x9,0x4c,0x4d, + 0x54,0x0,0x41,0x45,0x44,0x54,0x0,0x41,0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x1, + 0x1,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0, + 0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x5,0x0,0x0, + 0x0,0xe,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x72,0xed, + 0x9f,0x8,0xff,0xff,0xff,0xff,0x9c,0x4e,0xa6,0x9c,0xff,0xff,0xff,0xff,0x9c,0xbc, + 0x20,0xf0,0xff,0xff,0xff,0xff,0xcb,0x54,0xb3,0x0,0xff,0xff,0xff,0xff,0xcb,0xc7, + 0x57,0x70,0xff,0xff,0xff,0xff,0xcc,0xb7,0x56,0x80,0xff,0xff,0xff,0xff,0xcd,0xa7, + 0x39,0x70,0xff,0xff,0xff,0xff,0xce,0xa0,0x73,0x0,0xff,0xff,0xff,0xff,0xcf,0x87, + 0x1b,0x70,0x0,0x0,0x0,0x0,0x3,0x70,0x39,0x80,0x0,0x0,0x0,0x0,0x4,0xd, + 0x1c,0x0,0x0,0x0,0x0,0x0,0x25,0x49,0xcd,0x0,0x0,0x0,0x0,0x0,0x25,0xef, + 0xea,0x0,0x0,0x0,0x0,0x0,0x27,0x29,0xaf,0x0,0x0,0x0,0x0,0x0,0x27,0xcf, + 0xcc,0x0,0x0,0x0,0x0,0x0,0x29,0x9,0x91,0x0,0x0,0x0,0x0,0x0,0x29,0xaf, + 0xae,0x0,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x0,0x0,0x8f,0x78,0x0,0x0,0x0,0x0,0x9a,0xb0,0x1,0x4, + 0x0,0x0,0x8c,0xa0,0x0,0x9,0x0,0x0,0x9a,0xb0,0x1,0x4,0x0,0x0,0x8c,0xa0, + 0x0,0x9,0x4c,0x4d,0x54,0x0,0x41,0x45,0x44,0x54,0x0,0x41,0x45,0x53,0x54,0x0, + 0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0xa,0x41,0x45,0x53,0x54,0x2d, + 0x31,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Australia/Sydney + 0x0,0x0,0x8,0xaf, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x8e,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xe,0x80,0x0,0x0,0x0,0x9c, + 0x4e,0xa6,0x9c,0x9c,0xbc,0x20,0xf0,0xcb,0x54,0xb3,0x0,0xcb,0xc7,0x57,0x70,0xcc, + 0xb7,0x56,0x80,0xcd,0xa7,0x39,0x70,0xce,0xa0,0x73,0x0,0xcf,0x87,0x1b,0x70,0x3, + 0x70,0x39,0x80,0x4,0xd,0x1c,0x0,0x5,0x50,0x1b,0x80,0x5,0xf6,0x38,0x80,0x7, + 0x2f,0xfd,0x80,0x7,0xd6,0x1a,0x80,0x9,0xf,0xdf,0x80,0x9,0xb5,0xfc,0x80,0xa, + 0xef,0xc1,0x80,0xb,0x9f,0x19,0x0,0xc,0xd8,0xde,0x0,0xd,0x7e,0xfb,0x0,0xe, + 0xb8,0xc0,0x0,0xf,0x5e,0xdd,0x0,0x10,0x98,0xa2,0x0,0x11,0x3e,0xbf,0x0,0x12, + 0x78,0x84,0x0,0x13,0x1e,0xa1,0x0,0x14,0x58,0x66,0x0,0x14,0xfe,0x83,0x0,0x16, + 0x38,0x48,0x0,0x17,0xc,0x89,0x80,0x18,0x21,0x64,0x80,0x18,0xc7,0x81,0x80,0x1a, + 0x1,0x46,0x80,0x1a,0xa7,0x63,0x80,0x1b,0xe1,0x28,0x80,0x1c,0x87,0x45,0x80,0x1d, + 0xc1,0xa,0x80,0x1e,0x79,0x9c,0x80,0x1f,0x97,0xb2,0x0,0x20,0x59,0x7e,0x80,0x21, + 0x80,0xce,0x80,0x22,0x42,0x9b,0x0,0x23,0x69,0xeb,0x0,0x24,0x22,0x7d,0x0,0x25, + 0x49,0xcd,0x0,0x25,0xef,0xea,0x0,0x27,0x29,0xaf,0x0,0x27,0xcf,0xcc,0x0,0x29, + 0x9,0x91,0x0,0x29,0xaf,0xae,0x0,0x2a,0xe9,0x73,0x0,0x2b,0x98,0xca,0x80,0x2c, + 0xd2,0x8f,0x80,0x2d,0x78,0xac,0x80,0x2e,0xb2,0x71,0x80,0x2f,0x58,0x8e,0x80,0x30, + 0x92,0x53,0x80,0x31,0x5d,0x5a,0x80,0x32,0x72,0x35,0x80,0x33,0x3d,0x3c,0x80,0x34, + 0x52,0x17,0x80,0x35,0x1d,0x1e,0x80,0x36,0x31,0xf9,0x80,0x36,0xfd,0x0,0x80,0x38, + 0x1b,0x16,0x0,0x38,0xdc,0xe2,0x80,0x39,0xa7,0xe9,0x80,0x3a,0xbc,0xc4,0x80,0x3b, + 0xda,0xda,0x0,0x3c,0xa5,0xe1,0x0,0x3d,0xba,0xbc,0x0,0x3e,0x85,0xc3,0x0,0x3f, + 0x9a,0x9e,0x0,0x40,0x65,0xa5,0x0,0x41,0x83,0xba,0x80,0x42,0x45,0x87,0x0,0x43, + 0x63,0x9c,0x80,0x44,0x2e,0xa3,0x80,0x45,0x43,0x7e,0x80,0x46,0x5,0x4b,0x0,0x47, + 0x23,0x60,0x80,0x47,0xf7,0xa2,0x0,0x48,0xe7,0x93,0x0,0x49,0xd7,0x84,0x0,0x4a, + 0xc7,0x75,0x0,0x4b,0xb7,0x66,0x0,0x4c,0xa7,0x57,0x0,0x4d,0x97,0x48,0x0,0x4e, + 0x87,0x39,0x0,0x4f,0x77,0x2a,0x0,0x50,0x70,0x55,0x80,0x51,0x60,0x46,0x80,0x52, + 0x50,0x37,0x80,0x53,0x40,0x28,0x80,0x54,0x30,0x19,0x80,0x55,0x20,0xa,0x80,0x56, + 0xf,0xfb,0x80,0x56,0xff,0xec,0x80,0x57,0xef,0xdd,0x80,0x58,0xdf,0xce,0x80,0x59, + 0xcf,0xbf,0x80,0x5a,0xbf,0xb0,0x80,0x5b,0xb8,0xdc,0x0,0x5c,0xa8,0xcd,0x0,0x5d, + 0x98,0xbe,0x0,0x5e,0x88,0xaf,0x0,0x5f,0x78,0xa0,0x0,0x60,0x68,0x91,0x0,0x61, + 0x58,0x82,0x0,0x62,0x48,0x73,0x0,0x63,0x38,0x64,0x0,0x64,0x28,0x55,0x0,0x65, + 0x18,0x46,0x0,0x66,0x11,0x71,0x80,0x67,0x1,0x62,0x80,0x67,0xf1,0x53,0x80,0x68, + 0xe1,0x44,0x80,0x69,0xd1,0x35,0x80,0x6a,0xc1,0x26,0x80,0x6b,0xb1,0x17,0x80,0x6c, + 0xa1,0x8,0x80,0x6d,0x90,0xf9,0x80,0x6e,0x80,0xea,0x80,0x6f,0x70,0xdb,0x80,0x70, + 0x6a,0x7,0x0,0x71,0x59,0xf8,0x0,0x72,0x49,0xe9,0x0,0x73,0x39,0xda,0x0,0x74, + 0x29,0xcb,0x0,0x75,0x19,0xbc,0x0,0x76,0x9,0xad,0x0,0x76,0xf9,0x9e,0x0,0x77, + 0xe9,0x8f,0x0,0x78,0xd9,0x80,0x0,0x79,0xc9,0x71,0x0,0x7a,0xb9,0x62,0x0,0x7b, + 0xb2,0x8d,0x80,0x7c,0xa2,0x7e,0x80,0x7d,0x92,0x6f,0x80,0x7e,0x82,0x60,0x80,0x7f, + 0x72,0x51,0x80,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x0,0x0,0x8d,0xc4,0x0,0x0,0x0,0x0,0x9a,0xb0,0x1,0x4,0x0,0x0,0x8c, + 0xa0,0x0,0x9,0x0,0x0,0x9a,0xb0,0x1,0x4,0x0,0x0,0x8c,0xa0,0x0,0x9,0x4c, + 0x4d,0x54,0x0,0x41,0x45,0x44,0x54,0x0,0x41,0x45,0x53,0x54,0x0,0x0,0x0,0x0, + 0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0, + 0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0x0,0x0,0x0,0x5,0x0, + 0x0,0x0,0xe,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x73, + 0x16,0x7f,0x3c,0xff,0xff,0xff,0xff,0x9c,0x4e,0xa6,0x9c,0xff,0xff,0xff,0xff,0x9c, + 0xbc,0x20,0xf0,0xff,0xff,0xff,0xff,0xcb,0x54,0xb3,0x0,0xff,0xff,0xff,0xff,0xcb, + 0xc7,0x57,0x70,0xff,0xff,0xff,0xff,0xcc,0xb7,0x56,0x80,0xff,0xff,0xff,0xff,0xcd, + 0xa7,0x39,0x70,0xff,0xff,0xff,0xff,0xce,0xa0,0x73,0x0,0xff,0xff,0xff,0xff,0xcf, + 0x87,0x1b,0x70,0x0,0x0,0x0,0x0,0x3,0x70,0x39,0x80,0x0,0x0,0x0,0x0,0x4, + 0xd,0x1c,0x0,0x0,0x0,0x0,0x0,0x5,0x50,0x1b,0x80,0x0,0x0,0x0,0x0,0x5, + 0xf6,0x38,0x80,0x0,0x0,0x0,0x0,0x7,0x2f,0xfd,0x80,0x0,0x0,0x0,0x0,0x7, + 0xd6,0x1a,0x80,0x0,0x0,0x0,0x0,0x9,0xf,0xdf,0x80,0x0,0x0,0x0,0x0,0x9, + 0xb5,0xfc,0x80,0x0,0x0,0x0,0x0,0xa,0xef,0xc1,0x80,0x0,0x0,0x0,0x0,0xb, + 0x9f,0x19,0x0,0x0,0x0,0x0,0x0,0xc,0xd8,0xde,0x0,0x0,0x0,0x0,0x0,0xd, + 0x7e,0xfb,0x0,0x0,0x0,0x0,0x0,0xe,0xb8,0xc0,0x0,0x0,0x0,0x0,0x0,0xf, + 0x5e,0xdd,0x0,0x0,0x0,0x0,0x0,0x10,0x98,0xa2,0x0,0x0,0x0,0x0,0x0,0x11, + 0x3e,0xbf,0x0,0x0,0x0,0x0,0x0,0x12,0x78,0x84,0x0,0x0,0x0,0x0,0x0,0x13, + 0x1e,0xa1,0x0,0x0,0x0,0x0,0x0,0x14,0x58,0x66,0x0,0x0,0x0,0x0,0x0,0x14, + 0xfe,0x83,0x0,0x0,0x0,0x0,0x0,0x16,0x38,0x48,0x0,0x0,0x0,0x0,0x0,0x17, + 0xc,0x89,0x80,0x0,0x0,0x0,0x0,0x18,0x21,0x64,0x80,0x0,0x0,0x0,0x0,0x18, + 0xc7,0x81,0x80,0x0,0x0,0x0,0x0,0x1a,0x1,0x46,0x80,0x0,0x0,0x0,0x0,0x1a, + 0xa7,0x63,0x80,0x0,0x0,0x0,0x0,0x1b,0xe1,0x28,0x80,0x0,0x0,0x0,0x0,0x1c, + 0x87,0x45,0x80,0x0,0x0,0x0,0x0,0x1d,0xc1,0xa,0x80,0x0,0x0,0x0,0x0,0x1e, + 0x79,0x9c,0x80,0x0,0x0,0x0,0x0,0x1f,0x97,0xb2,0x0,0x0,0x0,0x0,0x0,0x20, + 0x59,0x7e,0x80,0x0,0x0,0x0,0x0,0x21,0x80,0xce,0x80,0x0,0x0,0x0,0x0,0x22, + 0x42,0x9b,0x0,0x0,0x0,0x0,0x0,0x23,0x69,0xeb,0x0,0x0,0x0,0x0,0x0,0x24, + 0x22,0x7d,0x0,0x0,0x0,0x0,0x0,0x25,0x49,0xcd,0x0,0x0,0x0,0x0,0x0,0x25, + 0xef,0xea,0x0,0x0,0x0,0x0,0x0,0x27,0x29,0xaf,0x0,0x0,0x0,0x0,0x0,0x27, + 0xcf,0xcc,0x0,0x0,0x0,0x0,0x0,0x29,0x9,0x91,0x0,0x0,0x0,0x0,0x0,0x29, + 0xaf,0xae,0x0,0x0,0x0,0x0,0x0,0x2a,0xe9,0x73,0x0,0x0,0x0,0x0,0x0,0x2b, + 0x98,0xca,0x80,0x0,0x0,0x0,0x0,0x2c,0xd2,0x8f,0x80,0x0,0x0,0x0,0x0,0x2d, + 0x78,0xac,0x80,0x0,0x0,0x0,0x0,0x2e,0xb2,0x71,0x80,0x0,0x0,0x0,0x0,0x2f, + 0x58,0x8e,0x80,0x0,0x0,0x0,0x0,0x30,0x92,0x53,0x80,0x0,0x0,0x0,0x0,0x31, + 0x5d,0x5a,0x80,0x0,0x0,0x0,0x0,0x32,0x72,0x35,0x80,0x0,0x0,0x0,0x0,0x33, + 0x3d,0x3c,0x80,0x0,0x0,0x0,0x0,0x34,0x52,0x17,0x80,0x0,0x0,0x0,0x0,0x35, + 0x1d,0x1e,0x80,0x0,0x0,0x0,0x0,0x36,0x31,0xf9,0x80,0x0,0x0,0x0,0x0,0x36, + 0xfd,0x0,0x80,0x0,0x0,0x0,0x0,0x38,0x1b,0x16,0x0,0x0,0x0,0x0,0x0,0x38, + 0xdc,0xe2,0x80,0x0,0x0,0x0,0x0,0x39,0xa7,0xe9,0x80,0x0,0x0,0x0,0x0,0x3a, + 0xbc,0xc4,0x80,0x0,0x0,0x0,0x0,0x3b,0xda,0xda,0x0,0x0,0x0,0x0,0x0,0x3c, + 0xa5,0xe1,0x0,0x0,0x0,0x0,0x0,0x3d,0xba,0xbc,0x0,0x0,0x0,0x0,0x0,0x3e, + 0x85,0xc3,0x0,0x0,0x0,0x0,0x0,0x3f,0x9a,0x9e,0x0,0x0,0x0,0x0,0x0,0x40, + 0x65,0xa5,0x0,0x0,0x0,0x0,0x0,0x41,0x83,0xba,0x80,0x0,0x0,0x0,0x0,0x42, + 0x45,0x87,0x0,0x0,0x0,0x0,0x0,0x43,0x63,0x9c,0x80,0x0,0x0,0x0,0x0,0x44, + 0x2e,0xa3,0x80,0x0,0x0,0x0,0x0,0x45,0x43,0x7e,0x80,0x0,0x0,0x0,0x0,0x46, + 0x5,0x4b,0x0,0x0,0x0,0x0,0x0,0x47,0x23,0x60,0x80,0x0,0x0,0x0,0x0,0x47, + 0xf7,0xa2,0x0,0x0,0x0,0x0,0x0,0x48,0xe7,0x93,0x0,0x0,0x0,0x0,0x0,0x49, + 0xd7,0x84,0x0,0x0,0x0,0x0,0x0,0x4a,0xc7,0x75,0x0,0x0,0x0,0x0,0x0,0x4b, + 0xb7,0x66,0x0,0x0,0x0,0x0,0x0,0x4c,0xa7,0x57,0x0,0x0,0x0,0x0,0x0,0x4d, + 0x97,0x48,0x0,0x0,0x0,0x0,0x0,0x4e,0x87,0x39,0x0,0x0,0x0,0x0,0x0,0x4f, + 0x77,0x2a,0x0,0x0,0x0,0x0,0x0,0x50,0x70,0x55,0x80,0x0,0x0,0x0,0x0,0x51, + 0x60,0x46,0x80,0x0,0x0,0x0,0x0,0x52,0x50,0x37,0x80,0x0,0x0,0x0,0x0,0x53, + 0x40,0x28,0x80,0x0,0x0,0x0,0x0,0x54,0x30,0x19,0x80,0x0,0x0,0x0,0x0,0x55, + 0x20,0xa,0x80,0x0,0x0,0x0,0x0,0x56,0xf,0xfb,0x80,0x0,0x0,0x0,0x0,0x56, + 0xff,0xec,0x80,0x0,0x0,0x0,0x0,0x57,0xef,0xdd,0x80,0x0,0x0,0x0,0x0,0x58, + 0xdf,0xce,0x80,0x0,0x0,0x0,0x0,0x59,0xcf,0xbf,0x80,0x0,0x0,0x0,0x0,0x5a, + 0xbf,0xb0,0x80,0x0,0x0,0x0,0x0,0x5b,0xb8,0xdc,0x0,0x0,0x0,0x0,0x0,0x5c, + 0xa8,0xcd,0x0,0x0,0x0,0x0,0x0,0x5d,0x98,0xbe,0x0,0x0,0x0,0x0,0x0,0x5e, + 0x88,0xaf,0x0,0x0,0x0,0x0,0x0,0x5f,0x78,0xa0,0x0,0x0,0x0,0x0,0x0,0x60, + 0x68,0x91,0x0,0x0,0x0,0x0,0x0,0x61,0x58,0x82,0x0,0x0,0x0,0x0,0x0,0x62, + 0x48,0x73,0x0,0x0,0x0,0x0,0x0,0x63,0x38,0x64,0x0,0x0,0x0,0x0,0x0,0x64, + 0x28,0x55,0x0,0x0,0x0,0x0,0x0,0x65,0x18,0x46,0x0,0x0,0x0,0x0,0x0,0x66, + 0x11,0x71,0x80,0x0,0x0,0x0,0x0,0x67,0x1,0x62,0x80,0x0,0x0,0x0,0x0,0x67, + 0xf1,0x53,0x80,0x0,0x0,0x0,0x0,0x68,0xe1,0x44,0x80,0x0,0x0,0x0,0x0,0x69, + 0xd1,0x35,0x80,0x0,0x0,0x0,0x0,0x6a,0xc1,0x26,0x80,0x0,0x0,0x0,0x0,0x6b, + 0xb1,0x17,0x80,0x0,0x0,0x0,0x0,0x6c,0xa1,0x8,0x80,0x0,0x0,0x0,0x0,0x6d, + 0x90,0xf9,0x80,0x0,0x0,0x0,0x0,0x6e,0x80,0xea,0x80,0x0,0x0,0x0,0x0,0x6f, + 0x70,0xdb,0x80,0x0,0x0,0x0,0x0,0x70,0x6a,0x7,0x0,0x0,0x0,0x0,0x0,0x71, + 0x59,0xf8,0x0,0x0,0x0,0x0,0x0,0x72,0x49,0xe9,0x0,0x0,0x0,0x0,0x0,0x73, + 0x39,0xda,0x0,0x0,0x0,0x0,0x0,0x74,0x29,0xcb,0x0,0x0,0x0,0x0,0x0,0x75, + 0x19,0xbc,0x0,0x0,0x0,0x0,0x0,0x76,0x9,0xad,0x0,0x0,0x0,0x0,0x0,0x76, + 0xf9,0x9e,0x0,0x0,0x0,0x0,0x0,0x77,0xe9,0x8f,0x0,0x0,0x0,0x0,0x0,0x78, + 0xd9,0x80,0x0,0x0,0x0,0x0,0x0,0x79,0xc9,0x71,0x0,0x0,0x0,0x0,0x0,0x7a, + 0xb9,0x62,0x0,0x0,0x0,0x0,0x0,0x7b,0xb2,0x8d,0x80,0x0,0x0,0x0,0x0,0x7c, + 0xa2,0x7e,0x80,0x0,0x0,0x0,0x0,0x7d,0x92,0x6f,0x80,0x0,0x0,0x0,0x0,0x7e, + 0x82,0x60,0x80,0x0,0x0,0x0,0x0,0x7f,0x72,0x51,0x80,0x0,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x0,0x0,0x8d,0xc4,0x0,0x0, + 0x0,0x0,0x9a,0xb0,0x1,0x4,0x0,0x0,0x8c,0xa0,0x0,0x9,0x0,0x0,0x9a,0xb0, + 0x1,0x4,0x0,0x0,0x8c,0xa0,0x0,0x9,0x4c,0x4d,0x54,0x0,0x41,0x45,0x44,0x54, + 0x0,0x41,0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0, + 0xa,0x41,0x45,0x53,0x54,0x2d,0x31,0x30,0x41,0x45,0x44,0x54,0x2c,0x4d,0x31,0x30, + 0x2e,0x31,0x2e,0x30,0x2c,0x4d,0x34,0x2e,0x31,0x2e,0x30,0x2f,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Australia/Melbourne + 0x0,0x0,0x8,0xaf, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x8e,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xe,0x80,0x0,0x0,0x0,0x9c, + 0x4e,0xa6,0x9c,0x9c,0xbc,0x20,0xf0,0xcb,0x54,0xb3,0x0,0xcb,0xc7,0x57,0x70,0xcc, + 0xb7,0x56,0x80,0xcd,0xa7,0x39,0x70,0xce,0xa0,0x73,0x0,0xcf,0x87,0x1b,0x70,0x3, + 0x70,0x39,0x80,0x4,0xd,0x1c,0x0,0x5,0x50,0x1b,0x80,0x5,0xf6,0x38,0x80,0x7, + 0x2f,0xfd,0x80,0x7,0xd6,0x1a,0x80,0x9,0xf,0xdf,0x80,0x9,0xb5,0xfc,0x80,0xa, + 0xef,0xc1,0x80,0xb,0x9f,0x19,0x0,0xc,0xd8,0xde,0x0,0xd,0x7e,0xfb,0x0,0xe, + 0xb8,0xc0,0x0,0xf,0x5e,0xdd,0x0,0x10,0x98,0xa2,0x0,0x11,0x3e,0xbf,0x0,0x12, + 0x78,0x84,0x0,0x13,0x1e,0xa1,0x0,0x14,0x58,0x66,0x0,0x14,0xfe,0x83,0x0,0x16, + 0x38,0x48,0x0,0x16,0xe7,0x9f,0x80,0x18,0x21,0x64,0x80,0x18,0xc7,0x81,0x80,0x1a, + 0x1,0x46,0x80,0x1a,0xa7,0x63,0x80,0x1b,0xe1,0x28,0x80,0x1c,0x87,0x45,0x80,0x1d, + 0xc1,0xa,0x80,0x1e,0x79,0x9c,0x80,0x1f,0x97,0xb2,0x0,0x20,0x59,0x7e,0x80,0x21, + 0x77,0x94,0x0,0x22,0x42,0x9b,0x0,0x23,0x69,0xeb,0x0,0x24,0x22,0x7d,0x0,0x25, + 0x49,0xcd,0x0,0x26,0x2,0x5f,0x0,0x27,0x29,0xaf,0x0,0x27,0xcf,0xcc,0x0,0x29, + 0x9,0x91,0x0,0x29,0xaf,0xae,0x0,0x2a,0xe9,0x73,0x0,0x2b,0x98,0xca,0x80,0x2c, + 0xd2,0x8f,0x80,0x2d,0x78,0xac,0x80,0x2e,0xb2,0x71,0x80,0x2f,0x74,0x3e,0x0,0x30, + 0x92,0x53,0x80,0x31,0x5d,0x5a,0x80,0x32,0x72,0x35,0x80,0x33,0x3d,0x3c,0x80,0x34, + 0x52,0x17,0x80,0x35,0x1d,0x1e,0x80,0x36,0x31,0xf9,0x80,0x36,0xfd,0x0,0x80,0x38, + 0x1b,0x16,0x0,0x38,0xdc,0xe2,0x80,0x39,0xa7,0xe9,0x80,0x3a,0xbc,0xc4,0x80,0x3b, + 0xda,0xda,0x0,0x3c,0xa5,0xe1,0x0,0x3d,0xba,0xbc,0x0,0x3e,0x85,0xc3,0x0,0x3f, + 0x9a,0x9e,0x0,0x40,0x65,0xa5,0x0,0x41,0x83,0xba,0x80,0x42,0x45,0x87,0x0,0x43, + 0x63,0x9c,0x80,0x44,0x2e,0xa3,0x80,0x45,0x43,0x7e,0x80,0x46,0x5,0x4b,0x0,0x47, + 0x23,0x60,0x80,0x47,0xf7,0xa2,0x0,0x48,0xe7,0x93,0x0,0x49,0xd7,0x84,0x0,0x4a, + 0xc7,0x75,0x0,0x4b,0xb7,0x66,0x0,0x4c,0xa7,0x57,0x0,0x4d,0x97,0x48,0x0,0x4e, + 0x87,0x39,0x0,0x4f,0x77,0x2a,0x0,0x50,0x70,0x55,0x80,0x51,0x60,0x46,0x80,0x52, + 0x50,0x37,0x80,0x53,0x40,0x28,0x80,0x54,0x30,0x19,0x80,0x55,0x20,0xa,0x80,0x56, + 0xf,0xfb,0x80,0x56,0xff,0xec,0x80,0x57,0xef,0xdd,0x80,0x58,0xdf,0xce,0x80,0x59, + 0xcf,0xbf,0x80,0x5a,0xbf,0xb0,0x80,0x5b,0xb8,0xdc,0x0,0x5c,0xa8,0xcd,0x0,0x5d, + 0x98,0xbe,0x0,0x5e,0x88,0xaf,0x0,0x5f,0x78,0xa0,0x0,0x60,0x68,0x91,0x0,0x61, + 0x58,0x82,0x0,0x62,0x48,0x73,0x0,0x63,0x38,0x64,0x0,0x64,0x28,0x55,0x0,0x65, + 0x18,0x46,0x0,0x66,0x11,0x71,0x80,0x67,0x1,0x62,0x80,0x67,0xf1,0x53,0x80,0x68, + 0xe1,0x44,0x80,0x69,0xd1,0x35,0x80,0x6a,0xc1,0x26,0x80,0x6b,0xb1,0x17,0x80,0x6c, + 0xa1,0x8,0x80,0x6d,0x90,0xf9,0x80,0x6e,0x80,0xea,0x80,0x6f,0x70,0xdb,0x80,0x70, + 0x6a,0x7,0x0,0x71,0x59,0xf8,0x0,0x72,0x49,0xe9,0x0,0x73,0x39,0xda,0x0,0x74, + 0x29,0xcb,0x0,0x75,0x19,0xbc,0x0,0x76,0x9,0xad,0x0,0x76,0xf9,0x9e,0x0,0x77, + 0xe9,0x8f,0x0,0x78,0xd9,0x80,0x0,0x79,0xc9,0x71,0x0,0x7a,0xb9,0x62,0x0,0x7b, + 0xb2,0x8d,0x80,0x7c,0xa2,0x7e,0x80,0x7d,0x92,0x6f,0x80,0x7e,0x82,0x60,0x80,0x7f, + 0x72,0x51,0x80,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x0,0x0,0x87,0xe8,0x0,0x0,0x0,0x0,0x9a,0xb0,0x1,0x4,0x0,0x0,0x8c, + 0xa0,0x0,0x9,0x0,0x0,0x9a,0xb0,0x1,0x4,0x0,0x0,0x8c,0xa0,0x0,0x9,0x4c, + 0x4d,0x54,0x0,0x41,0x45,0x44,0x54,0x0,0x41,0x45,0x53,0x54,0x0,0x0,0x0,0x0, + 0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0, + 0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0x0,0x0,0x0,0x5,0x0, + 0x0,0x0,0xe,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x73, + 0x16,0x85,0x18,0xff,0xff,0xff,0xff,0x9c,0x4e,0xa6,0x9c,0xff,0xff,0xff,0xff,0x9c, + 0xbc,0x20,0xf0,0xff,0xff,0xff,0xff,0xcb,0x54,0xb3,0x0,0xff,0xff,0xff,0xff,0xcb, + 0xc7,0x57,0x70,0xff,0xff,0xff,0xff,0xcc,0xb7,0x56,0x80,0xff,0xff,0xff,0xff,0xcd, + 0xa7,0x39,0x70,0xff,0xff,0xff,0xff,0xce,0xa0,0x73,0x0,0xff,0xff,0xff,0xff,0xcf, + 0x87,0x1b,0x70,0x0,0x0,0x0,0x0,0x3,0x70,0x39,0x80,0x0,0x0,0x0,0x0,0x4, + 0xd,0x1c,0x0,0x0,0x0,0x0,0x0,0x5,0x50,0x1b,0x80,0x0,0x0,0x0,0x0,0x5, + 0xf6,0x38,0x80,0x0,0x0,0x0,0x0,0x7,0x2f,0xfd,0x80,0x0,0x0,0x0,0x0,0x7, + 0xd6,0x1a,0x80,0x0,0x0,0x0,0x0,0x9,0xf,0xdf,0x80,0x0,0x0,0x0,0x0,0x9, + 0xb5,0xfc,0x80,0x0,0x0,0x0,0x0,0xa,0xef,0xc1,0x80,0x0,0x0,0x0,0x0,0xb, + 0x9f,0x19,0x0,0x0,0x0,0x0,0x0,0xc,0xd8,0xde,0x0,0x0,0x0,0x0,0x0,0xd, + 0x7e,0xfb,0x0,0x0,0x0,0x0,0x0,0xe,0xb8,0xc0,0x0,0x0,0x0,0x0,0x0,0xf, + 0x5e,0xdd,0x0,0x0,0x0,0x0,0x0,0x10,0x98,0xa2,0x0,0x0,0x0,0x0,0x0,0x11, + 0x3e,0xbf,0x0,0x0,0x0,0x0,0x0,0x12,0x78,0x84,0x0,0x0,0x0,0x0,0x0,0x13, + 0x1e,0xa1,0x0,0x0,0x0,0x0,0x0,0x14,0x58,0x66,0x0,0x0,0x0,0x0,0x0,0x14, + 0xfe,0x83,0x0,0x0,0x0,0x0,0x0,0x16,0x38,0x48,0x0,0x0,0x0,0x0,0x0,0x16, + 0xe7,0x9f,0x80,0x0,0x0,0x0,0x0,0x18,0x21,0x64,0x80,0x0,0x0,0x0,0x0,0x18, + 0xc7,0x81,0x80,0x0,0x0,0x0,0x0,0x1a,0x1,0x46,0x80,0x0,0x0,0x0,0x0,0x1a, + 0xa7,0x63,0x80,0x0,0x0,0x0,0x0,0x1b,0xe1,0x28,0x80,0x0,0x0,0x0,0x0,0x1c, + 0x87,0x45,0x80,0x0,0x0,0x0,0x0,0x1d,0xc1,0xa,0x80,0x0,0x0,0x0,0x0,0x1e, + 0x79,0x9c,0x80,0x0,0x0,0x0,0x0,0x1f,0x97,0xb2,0x0,0x0,0x0,0x0,0x0,0x20, + 0x59,0x7e,0x80,0x0,0x0,0x0,0x0,0x21,0x77,0x94,0x0,0x0,0x0,0x0,0x0,0x22, + 0x42,0x9b,0x0,0x0,0x0,0x0,0x0,0x23,0x69,0xeb,0x0,0x0,0x0,0x0,0x0,0x24, + 0x22,0x7d,0x0,0x0,0x0,0x0,0x0,0x25,0x49,0xcd,0x0,0x0,0x0,0x0,0x0,0x26, + 0x2,0x5f,0x0,0x0,0x0,0x0,0x0,0x27,0x29,0xaf,0x0,0x0,0x0,0x0,0x0,0x27, + 0xcf,0xcc,0x0,0x0,0x0,0x0,0x0,0x29,0x9,0x91,0x0,0x0,0x0,0x0,0x0,0x29, + 0xaf,0xae,0x0,0x0,0x0,0x0,0x0,0x2a,0xe9,0x73,0x0,0x0,0x0,0x0,0x0,0x2b, + 0x98,0xca,0x80,0x0,0x0,0x0,0x0,0x2c,0xd2,0x8f,0x80,0x0,0x0,0x0,0x0,0x2d, + 0x78,0xac,0x80,0x0,0x0,0x0,0x0,0x2e,0xb2,0x71,0x80,0x0,0x0,0x0,0x0,0x2f, + 0x74,0x3e,0x0,0x0,0x0,0x0,0x0,0x30,0x92,0x53,0x80,0x0,0x0,0x0,0x0,0x31, + 0x5d,0x5a,0x80,0x0,0x0,0x0,0x0,0x32,0x72,0x35,0x80,0x0,0x0,0x0,0x0,0x33, + 0x3d,0x3c,0x80,0x0,0x0,0x0,0x0,0x34,0x52,0x17,0x80,0x0,0x0,0x0,0x0,0x35, + 0x1d,0x1e,0x80,0x0,0x0,0x0,0x0,0x36,0x31,0xf9,0x80,0x0,0x0,0x0,0x0,0x36, + 0xfd,0x0,0x80,0x0,0x0,0x0,0x0,0x38,0x1b,0x16,0x0,0x0,0x0,0x0,0x0,0x38, + 0xdc,0xe2,0x80,0x0,0x0,0x0,0x0,0x39,0xa7,0xe9,0x80,0x0,0x0,0x0,0x0,0x3a, + 0xbc,0xc4,0x80,0x0,0x0,0x0,0x0,0x3b,0xda,0xda,0x0,0x0,0x0,0x0,0x0,0x3c, + 0xa5,0xe1,0x0,0x0,0x0,0x0,0x0,0x3d,0xba,0xbc,0x0,0x0,0x0,0x0,0x0,0x3e, + 0x85,0xc3,0x0,0x0,0x0,0x0,0x0,0x3f,0x9a,0x9e,0x0,0x0,0x0,0x0,0x0,0x40, + 0x65,0xa5,0x0,0x0,0x0,0x0,0x0,0x41,0x83,0xba,0x80,0x0,0x0,0x0,0x0,0x42, + 0x45,0x87,0x0,0x0,0x0,0x0,0x0,0x43,0x63,0x9c,0x80,0x0,0x0,0x0,0x0,0x44, + 0x2e,0xa3,0x80,0x0,0x0,0x0,0x0,0x45,0x43,0x7e,0x80,0x0,0x0,0x0,0x0,0x46, + 0x5,0x4b,0x0,0x0,0x0,0x0,0x0,0x47,0x23,0x60,0x80,0x0,0x0,0x0,0x0,0x47, + 0xf7,0xa2,0x0,0x0,0x0,0x0,0x0,0x48,0xe7,0x93,0x0,0x0,0x0,0x0,0x0,0x49, + 0xd7,0x84,0x0,0x0,0x0,0x0,0x0,0x4a,0xc7,0x75,0x0,0x0,0x0,0x0,0x0,0x4b, + 0xb7,0x66,0x0,0x0,0x0,0x0,0x0,0x4c,0xa7,0x57,0x0,0x0,0x0,0x0,0x0,0x4d, + 0x97,0x48,0x0,0x0,0x0,0x0,0x0,0x4e,0x87,0x39,0x0,0x0,0x0,0x0,0x0,0x4f, + 0x77,0x2a,0x0,0x0,0x0,0x0,0x0,0x50,0x70,0x55,0x80,0x0,0x0,0x0,0x0,0x51, + 0x60,0x46,0x80,0x0,0x0,0x0,0x0,0x52,0x50,0x37,0x80,0x0,0x0,0x0,0x0,0x53, + 0x40,0x28,0x80,0x0,0x0,0x0,0x0,0x54,0x30,0x19,0x80,0x0,0x0,0x0,0x0,0x55, + 0x20,0xa,0x80,0x0,0x0,0x0,0x0,0x56,0xf,0xfb,0x80,0x0,0x0,0x0,0x0,0x56, + 0xff,0xec,0x80,0x0,0x0,0x0,0x0,0x57,0xef,0xdd,0x80,0x0,0x0,0x0,0x0,0x58, + 0xdf,0xce,0x80,0x0,0x0,0x0,0x0,0x59,0xcf,0xbf,0x80,0x0,0x0,0x0,0x0,0x5a, + 0xbf,0xb0,0x80,0x0,0x0,0x0,0x0,0x5b,0xb8,0xdc,0x0,0x0,0x0,0x0,0x0,0x5c, + 0xa8,0xcd,0x0,0x0,0x0,0x0,0x0,0x5d,0x98,0xbe,0x0,0x0,0x0,0x0,0x0,0x5e, + 0x88,0xaf,0x0,0x0,0x0,0x0,0x0,0x5f,0x78,0xa0,0x0,0x0,0x0,0x0,0x0,0x60, + 0x68,0x91,0x0,0x0,0x0,0x0,0x0,0x61,0x58,0x82,0x0,0x0,0x0,0x0,0x0,0x62, + 0x48,0x73,0x0,0x0,0x0,0x0,0x0,0x63,0x38,0x64,0x0,0x0,0x0,0x0,0x0,0x64, + 0x28,0x55,0x0,0x0,0x0,0x0,0x0,0x65,0x18,0x46,0x0,0x0,0x0,0x0,0x0,0x66, + 0x11,0x71,0x80,0x0,0x0,0x0,0x0,0x67,0x1,0x62,0x80,0x0,0x0,0x0,0x0,0x67, + 0xf1,0x53,0x80,0x0,0x0,0x0,0x0,0x68,0xe1,0x44,0x80,0x0,0x0,0x0,0x0,0x69, + 0xd1,0x35,0x80,0x0,0x0,0x0,0x0,0x6a,0xc1,0x26,0x80,0x0,0x0,0x0,0x0,0x6b, + 0xb1,0x17,0x80,0x0,0x0,0x0,0x0,0x6c,0xa1,0x8,0x80,0x0,0x0,0x0,0x0,0x6d, + 0x90,0xf9,0x80,0x0,0x0,0x0,0x0,0x6e,0x80,0xea,0x80,0x0,0x0,0x0,0x0,0x6f, + 0x70,0xdb,0x80,0x0,0x0,0x0,0x0,0x70,0x6a,0x7,0x0,0x0,0x0,0x0,0x0,0x71, + 0x59,0xf8,0x0,0x0,0x0,0x0,0x0,0x72,0x49,0xe9,0x0,0x0,0x0,0x0,0x0,0x73, + 0x39,0xda,0x0,0x0,0x0,0x0,0x0,0x74,0x29,0xcb,0x0,0x0,0x0,0x0,0x0,0x75, + 0x19,0xbc,0x0,0x0,0x0,0x0,0x0,0x76,0x9,0xad,0x0,0x0,0x0,0x0,0x0,0x76, + 0xf9,0x9e,0x0,0x0,0x0,0x0,0x0,0x77,0xe9,0x8f,0x0,0x0,0x0,0x0,0x0,0x78, + 0xd9,0x80,0x0,0x0,0x0,0x0,0x0,0x79,0xc9,0x71,0x0,0x0,0x0,0x0,0x0,0x7a, + 0xb9,0x62,0x0,0x0,0x0,0x0,0x0,0x7b,0xb2,0x8d,0x80,0x0,0x0,0x0,0x0,0x7c, + 0xa2,0x7e,0x80,0x0,0x0,0x0,0x0,0x7d,0x92,0x6f,0x80,0x0,0x0,0x0,0x0,0x7e, + 0x82,0x60,0x80,0x0,0x0,0x0,0x0,0x7f,0x72,0x51,0x80,0x0,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x0,0x0,0x87,0xe8,0x0,0x0, + 0x0,0x0,0x9a,0xb0,0x1,0x4,0x0,0x0,0x8c,0xa0,0x0,0x9,0x0,0x0,0x9a,0xb0, + 0x1,0x4,0x0,0x0,0x8c,0xa0,0x0,0x9,0x4c,0x4d,0x54,0x0,0x41,0x45,0x44,0x54, + 0x0,0x41,0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0, + 0xa,0x41,0x45,0x53,0x54,0x2d,0x31,0x30,0x41,0x45,0x44,0x54,0x2c,0x4d,0x31,0x30, + 0x2e,0x31,0x2e,0x30,0x2c,0x4d,0x34,0x2e,0x31,0x2e,0x30,0x2f,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Majuro + 0x0,0x0,0x0,0xdd, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0xff, + 0x86,0x1b,0x50,0x7f,0xff,0xff,0xff,0x1,0x2,0x2,0x0,0x0,0xa0,0x80,0x0,0x0, + 0x0,0x0,0x9a,0xb0,0x0,0x4,0x0,0x0,0xa8,0xc0,0x0,0x8,0x4c,0x4d,0x54,0x0, + 0x2b,0x31,0x31,0x0,0x2b,0x31,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a, + 0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x4,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0xf8,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xff,0xff,0xff,0xff,0x7e,0x36,0x14,0x80,0xff,0xff,0xff,0xff,0xff,0x86, + 0x1b,0x50,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x2,0x2,0x0,0x0, + 0xa0,0x80,0x0,0x0,0x0,0x0,0x9a,0xb0,0x0,0x4,0x0,0x0,0xa8,0xc0,0x0,0x8, + 0x4c,0x4d,0x54,0x0,0x2b,0x31,0x31,0x0,0x2b,0x31,0x32,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xa,0x3c,0x2b,0x31,0x32,0x3e,0x2d,0x31,0x32,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Yap + 0x0,0x0,0x0,0xb7, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x7f, + 0xff,0xff,0xff,0x1,0x1,0x0,0x0,0x8e,0x4c,0x0,0x0,0x0,0x0,0x8c,0xa0,0x0, + 0x4,0x4c,0x4d,0x54,0x0,0x2b,0x31,0x30,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, + 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x3,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0x7e,0x36,0x26,0xb4,0x0,0x0,0x0,0x0,0x7f,0xff,0xff, + 0xff,0x0,0x1,0x1,0x0,0x0,0x8e,0x4c,0x0,0x0,0x0,0x0,0x8c,0xa0,0x0,0x4, + 0x4c,0x4d,0x54,0x0,0x2b,0x31,0x30,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2b,0x31, + 0x30,0x3e,0x2d,0x31,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Wake + 0x0,0x0,0x0,0xb7, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x7f, + 0xff,0xff,0xff,0x1,0x1,0x0,0x0,0x9c,0x34,0x0,0x0,0x0,0x0,0xa8,0xc0,0x0, + 0x4,0x4c,0x4d,0x54,0x0,0x2b,0x31,0x32,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, + 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x3,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0x7e,0x36,0x18,0xcc,0x0,0x0,0x0,0x0,0x7f,0xff,0xff, + 0xff,0x0,0x1,0x1,0x0,0x0,0x9c,0x34,0x0,0x0,0x0,0x0,0xa8,0xc0,0x0,0x4, + 0x4c,0x4d,0x54,0x0,0x2b,0x31,0x32,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2b,0x31, + 0x32,0x3e,0x2d,0x31,0x32,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Apia + 0x0,0x0,0x4,0x6e, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3c,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x1a,0x80,0x0,0x0,0x0,0x91, + 0x5,0xfc,0x0,0xda,0x62,0x4,0x38,0x4c,0x9f,0x27,0xb0,0x4d,0x97,0x2b,0xe0,0x4e, + 0x7d,0xe2,0x60,0x4e,0xfd,0x8b,0xa0,0x4f,0x77,0xd,0xe0,0x50,0x66,0xfe,0xe0,0x51, + 0x60,0x2a,0x60,0x52,0x46,0xe0,0xe0,0x53,0x40,0xc,0x60,0x54,0x26,0xc2,0xe0,0x55, + 0x1f,0xee,0x60,0x56,0x6,0xa4,0xe0,0x56,0xff,0xd0,0x60,0x57,0xe6,0x86,0xe0,0x58, + 0xdf,0xb2,0x60,0x59,0xc6,0x68,0xe0,0x5a,0xbf,0x94,0x60,0x5b,0xaf,0x85,0x60,0x5c, + 0xa8,0xb0,0xe0,0x5d,0x8f,0x67,0x60,0x5e,0x88,0x92,0xe0,0x5f,0x6f,0x49,0x60,0x60, + 0x68,0x74,0xe0,0x61,0x4f,0x2b,0x60,0x62,0x48,0x56,0xe0,0x63,0x2f,0xd,0x60,0x64, + 0x28,0x38,0xe0,0x65,0xe,0xef,0x60,0x66,0x11,0x55,0x60,0x66,0xf8,0xb,0xe0,0x67, + 0xf1,0x37,0x60,0x68,0xd7,0xed,0xe0,0x69,0xd1,0x19,0x60,0x6a,0xb7,0xcf,0xe0,0x6b, + 0xb0,0xfb,0x60,0x6c,0x97,0xb1,0xe0,0x6d,0x90,0xdd,0x60,0x6e,0x77,0x93,0xe0,0x6f, + 0x70,0xbf,0x60,0x70,0x60,0xb0,0x60,0x71,0x59,0xdb,0xe0,0x72,0x40,0x92,0x60,0x73, + 0x39,0xbd,0xe0,0x74,0x20,0x74,0x60,0x75,0x19,0x9f,0xe0,0x76,0x0,0x56,0x60,0x76, + 0xf9,0x81,0xe0,0x77,0xe0,0x38,0x60,0x78,0xd9,0x63,0xe0,0x79,0xc0,0x1a,0x60,0x7a, + 0xb9,0x45,0xe0,0x7b,0xa9,0x36,0xe0,0x7c,0xa2,0x62,0x60,0x7d,0x89,0x18,0xe0,0x7e, + 0x82,0x44,0x60,0x7f,0x68,0xfa,0xe0,0x7f,0xff,0xff,0xff,0x1,0x2,0x4,0x3,0x4, + 0x3,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x6,0x0,0x0,0xb0,0x80,0x0,0x0,0xff,0xff,0x5f, + 0x0,0x0,0x0,0xff,0xff,0x5e,0x48,0x0,0x4,0xff,0xff,0x73,0x60,0x1,0xa,0xff, + 0xff,0x65,0x50,0x0,0xe,0x0,0x0,0xb6,0xd0,0x0,0x12,0x0,0x0,0xc4,0xe0,0x1, + 0x16,0x4c,0x4d,0x54,0x0,0x2d,0x31,0x31,0x33,0x30,0x0,0x2d,0x31,0x30,0x0,0x2d, + 0x31,0x31,0x0,0x2b,0x31,0x33,0x0,0x2b,0x31,0x34,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3d,0x0,0x0,0x0, + 0x7,0x0,0x0,0x0,0x1a,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff, + 0xff,0x6e,0x3d,0xc9,0x0,0xff,0xff,0xff,0xff,0x91,0x5,0xfc,0x0,0xff,0xff,0xff, + 0xff,0xda,0x62,0x4,0x38,0x0,0x0,0x0,0x0,0x4c,0x9f,0x27,0xb0,0x0,0x0,0x0, + 0x0,0x4d,0x97,0x2b,0xe0,0x0,0x0,0x0,0x0,0x4e,0x7d,0xe2,0x60,0x0,0x0,0x0, + 0x0,0x4e,0xfd,0x8b,0xa0,0x0,0x0,0x0,0x0,0x4f,0x77,0xd,0xe0,0x0,0x0,0x0, + 0x0,0x50,0x66,0xfe,0xe0,0x0,0x0,0x0,0x0,0x51,0x60,0x2a,0x60,0x0,0x0,0x0, + 0x0,0x52,0x46,0xe0,0xe0,0x0,0x0,0x0,0x0,0x53,0x40,0xc,0x60,0x0,0x0,0x0, + 0x0,0x54,0x26,0xc2,0xe0,0x0,0x0,0x0,0x0,0x55,0x1f,0xee,0x60,0x0,0x0,0x0, + 0x0,0x56,0x6,0xa4,0xe0,0x0,0x0,0x0,0x0,0x56,0xff,0xd0,0x60,0x0,0x0,0x0, + 0x0,0x57,0xe6,0x86,0xe0,0x0,0x0,0x0,0x0,0x58,0xdf,0xb2,0x60,0x0,0x0,0x0, + 0x0,0x59,0xc6,0x68,0xe0,0x0,0x0,0x0,0x0,0x5a,0xbf,0x94,0x60,0x0,0x0,0x0, + 0x0,0x5b,0xaf,0x85,0x60,0x0,0x0,0x0,0x0,0x5c,0xa8,0xb0,0xe0,0x0,0x0,0x0, + 0x0,0x5d,0x8f,0x67,0x60,0x0,0x0,0x0,0x0,0x5e,0x88,0x92,0xe0,0x0,0x0,0x0, + 0x0,0x5f,0x6f,0x49,0x60,0x0,0x0,0x0,0x0,0x60,0x68,0x74,0xe0,0x0,0x0,0x0, + 0x0,0x61,0x4f,0x2b,0x60,0x0,0x0,0x0,0x0,0x62,0x48,0x56,0xe0,0x0,0x0,0x0, + 0x0,0x63,0x2f,0xd,0x60,0x0,0x0,0x0,0x0,0x64,0x28,0x38,0xe0,0x0,0x0,0x0, + 0x0,0x65,0xe,0xef,0x60,0x0,0x0,0x0,0x0,0x66,0x11,0x55,0x60,0x0,0x0,0x0, + 0x0,0x66,0xf8,0xb,0xe0,0x0,0x0,0x0,0x0,0x67,0xf1,0x37,0x60,0x0,0x0,0x0, + 0x0,0x68,0xd7,0xed,0xe0,0x0,0x0,0x0,0x0,0x69,0xd1,0x19,0x60,0x0,0x0,0x0, + 0x0,0x6a,0xb7,0xcf,0xe0,0x0,0x0,0x0,0x0,0x6b,0xb0,0xfb,0x60,0x0,0x0,0x0, + 0x0,0x6c,0x97,0xb1,0xe0,0x0,0x0,0x0,0x0,0x6d,0x90,0xdd,0x60,0x0,0x0,0x0, + 0x0,0x6e,0x77,0x93,0xe0,0x0,0x0,0x0,0x0,0x6f,0x70,0xbf,0x60,0x0,0x0,0x0, + 0x0,0x70,0x60,0xb0,0x60,0x0,0x0,0x0,0x0,0x71,0x59,0xdb,0xe0,0x0,0x0,0x0, + 0x0,0x72,0x40,0x92,0x60,0x0,0x0,0x0,0x0,0x73,0x39,0xbd,0xe0,0x0,0x0,0x0, + 0x0,0x74,0x20,0x74,0x60,0x0,0x0,0x0,0x0,0x75,0x19,0x9f,0xe0,0x0,0x0,0x0, + 0x0,0x76,0x0,0x56,0x60,0x0,0x0,0x0,0x0,0x76,0xf9,0x81,0xe0,0x0,0x0,0x0, + 0x0,0x77,0xe0,0x38,0x60,0x0,0x0,0x0,0x0,0x78,0xd9,0x63,0xe0,0x0,0x0,0x0, + 0x0,0x79,0xc0,0x1a,0x60,0x0,0x0,0x0,0x0,0x7a,0xb9,0x45,0xe0,0x0,0x0,0x0, + 0x0,0x7b,0xa9,0x36,0xe0,0x0,0x0,0x0,0x0,0x7c,0xa2,0x62,0x60,0x0,0x0,0x0, + 0x0,0x7d,0x89,0x18,0xe0,0x0,0x0,0x0,0x0,0x7e,0x82,0x44,0x60,0x0,0x0,0x0, + 0x0,0x7f,0x68,0xfa,0xe0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x2, + 0x4,0x3,0x4,0x3,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x6,0x0,0x0,0xb0,0x80,0x0,0x0, + 0xff,0xff,0x5f,0x0,0x0,0x0,0xff,0xff,0x5e,0x48,0x0,0x4,0xff,0xff,0x73,0x60, + 0x1,0xa,0xff,0xff,0x65,0x50,0x0,0xe,0x0,0x0,0xb6,0xd0,0x0,0x12,0x0,0x0, + 0xc4,0xe0,0x1,0x16,0x4c,0x4d,0x54,0x0,0x2d,0x31,0x31,0x33,0x30,0x0,0x2d,0x31, + 0x30,0x0,0x2d,0x31,0x31,0x0,0x2b,0x31,0x33,0x0,0x2b,0x31,0x34,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2b,0x31, + 0x33,0x3e,0x2d,0x31,0x33,0x3c,0x2b,0x31,0x34,0x3e,0x2c,0x4d,0x39,0x2e,0x35,0x2e, + 0x30,0x2f,0x33,0x2c,0x4d,0x34,0x2e,0x31,0x2e,0x30,0x2f,0x34,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Marquesas + 0x0,0x0,0x0,0xc3, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0xa,0x80,0x0,0x0,0x0,0x94, + 0x50,0x4c,0x48,0x7f,0xff,0xff,0xff,0x0,0x1,0x1,0xff,0xff,0x7d,0x38,0x0,0x0, + 0xff,0xff,0x7a,0x68,0x0,0x4,0x4c,0x4d,0x54,0x0,0x2d,0x30,0x39,0x33,0x30,0x0, + 0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0xa, + 0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x94,0x50,0x4c,0x48, + 0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x1,0xff,0xff,0x7d,0x38,0x0, + 0x0,0xff,0xff,0x7a,0x68,0x0,0x4,0x4c,0x4d,0x54,0x0,0x2d,0x30,0x39,0x33,0x30, + 0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2d,0x30,0x39,0x33,0x30,0x3e,0x39,0x3a,0x33, + 0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Kiritimati + 0x0,0x0,0x1,0x7, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x12,0x80,0x0,0x0,0x0,0x12, + 0x55,0xf2,0x0,0x2f,0x6,0x7d,0x20,0x7f,0xff,0xff,0xff,0x1,0x2,0x3,0x3,0xff, + 0xff,0x6c,0x80,0x0,0x0,0xff,0xff,0x6a,0x0,0x0,0x4,0xff,0xff,0x73,0x60,0x0, + 0xa,0x0,0x0,0xc4,0xe0,0x0,0xe,0x4c,0x4d,0x54,0x0,0x2d,0x31,0x30,0x34,0x30, + 0x0,0x2d,0x31,0x30,0x0,0x2b,0x31,0x34,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x12,0xf8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x7e,0x37,0x48,0x80,0x0,0x0,0x0, + 0x0,0x12,0x55,0xf2,0x0,0x0,0x0,0x0,0x0,0x2f,0x6,0x7d,0x20,0x0,0x0,0x0, + 0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x2,0x3,0x3,0xff,0xff,0x6c,0x80,0x0,0x0, + 0xff,0xff,0x6a,0x0,0x0,0x4,0xff,0xff,0x73,0x60,0x0,0xa,0x0,0x0,0xc4,0xe0, + 0x0,0xe,0x4c,0x4d,0x54,0x0,0x2d,0x31,0x30,0x34,0x30,0x0,0x2d,0x31,0x30,0x0, + 0x2b,0x31,0x34,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2b,0x31, + 0x34,0x3e,0x2d,0x31,0x34,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Guam + 0x0,0x0,0x0,0xe1, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0x3a, + 0x43,0x5e,0x60,0x1,0x2,0x0,0x0,0x87,0xb4,0x0,0x0,0x0,0x0,0x8c,0xa0,0x0, + 0x4,0x0,0x0,0x8c,0xa0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x47,0x53,0x54,0x0,0x43, + 0x68,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0, + 0x0,0x4,0x0,0x0,0x0,0xd,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff, + 0xff,0xff,0x14,0xe1,0xc5,0xcc,0xff,0xff,0xff,0xff,0x7e,0x36,0x2d,0x4c,0x0,0x0, + 0x0,0x0,0x3a,0x43,0x5e,0x60,0x0,0x1,0x2,0x3,0xff,0xff,0x36,0x34,0x0,0x0, + 0x0,0x0,0x87,0xb4,0x0,0x0,0x0,0x0,0x8c,0xa0,0x0,0x4,0x0,0x0,0x8c,0xa0, + 0x0,0x8,0x4c,0x4d,0x54,0x0,0x47,0x53,0x54,0x0,0x43,0x68,0x53,0x54,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x43,0x68,0x53,0x54,0x2d,0x31,0x30,0xa, + + // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Fakaofo + 0x0,0x0,0x0,0xdd, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0x4e, + 0xfd,0x99,0xb0,0x7f,0xff,0xff,0xff,0x1,0x2,0x2,0xff,0xff,0x5f,0x78,0x0,0x0, + 0xff,0xff,0x65,0x50,0x0,0x4,0x0,0x0,0xb6,0xd0,0x0,0x8,0x4c,0x4d,0x54,0x0, + 0x2d,0x31,0x31,0x0,0x2b,0x31,0x33,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a, + 0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x4,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0xf8,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xff,0xff,0xff,0xff,0x7e,0x37,0x55,0x88,0x0,0x0,0x0,0x0,0x4e,0xfd, + 0x99,0xb0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x2,0x2,0xff,0xff, + 0x5f,0x78,0x0,0x0,0xff,0xff,0x65,0x50,0x0,0x4,0x0,0x0,0xb6,0xd0,0x0,0x8, + 0x4c,0x4d,0x54,0x0,0x2d,0x31,0x31,0x0,0x2b,0x31,0x33,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xa,0x3c,0x2b,0x31,0x33,0x3e,0x2d,0x31,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Johnston + 0x0,0x0,0x1,0x14, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0xbb, + 0x5,0x43,0x48,0xbb,0x21,0x71,0x58,0xcb,0x89,0x3d,0xc8,0xd2,0x61,0x49,0x38,0xd5, + 0x8d,0x73,0x48,0x1,0x2,0x1,0x2,0x1,0x3,0xff,0xff,0x6c,0x2,0x0,0x0,0xff, + 0xff,0x6c,0x58,0x0,0x4,0xff,0xff,0x7a,0x68,0x1,0x8,0xff,0xff,0x73,0x60,0x0, + 0x4,0x4c,0x4d,0x54,0x0,0x48,0x53,0x54,0x0,0x48,0x44,0x54,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0, + 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x4,0x0,0x0,0x0, + 0xc,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x74,0xe0,0x70, + 0xbe,0xff,0xff,0xff,0xff,0xbb,0x5,0x43,0x48,0xff,0xff,0xff,0xff,0xbb,0x21,0x71, + 0x58,0xff,0xff,0xff,0xff,0xcb,0x89,0x3d,0xc8,0xff,0xff,0xff,0xff,0xd2,0x61,0x49, + 0x38,0xff,0xff,0xff,0xff,0xd5,0x8d,0x73,0x48,0x0,0x1,0x2,0x1,0x2,0x1,0x3, + 0xff,0xff,0x6c,0x2,0x0,0x0,0xff,0xff,0x6c,0x58,0x0,0x4,0xff,0xff,0x7a,0x68, + 0x1,0x8,0xff,0xff,0x73,0x60,0x0,0x4,0x4c,0x4d,0x54,0x0,0x48,0x53,0x54,0x0, + 0x48,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x48,0x53,0x54, + 0x31,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Bougainville + 0x0,0x0,0x1,0x28, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x5,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x11,0x80,0x0,0x0,0x0,0xcc, + 0x43,0x36,0x60,0xd2,0x2b,0x6c,0xf0,0x54,0x9e,0xd7,0x80,0x7f,0xff,0xff,0xff,0x1, + 0x2,0x1,0x3,0x3,0x0,0x0,0x89,0xf0,0x0,0x0,0x0,0x0,0x8c,0xa0,0x0,0x5, + 0x0,0x0,0x7e,0x90,0x0,0x9,0x0,0x0,0x9a,0xb0,0x0,0xd,0x50,0x4d,0x4d,0x54, + 0x0,0x2b,0x31,0x30,0x0,0x2b,0x30,0x39,0x0,0x2b,0x31,0x31,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0, + 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x5,0x0,0x0,0x0, + 0x15,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x56,0xb6,0x52, + 0x28,0xff,0xff,0xff,0xff,0x72,0xed,0xa4,0x90,0xff,0xff,0xff,0xff,0xcc,0x43,0x36, + 0x60,0xff,0xff,0xff,0xff,0xd2,0x2b,0x6c,0xf0,0x0,0x0,0x0,0x0,0x54,0x9e,0xd7, + 0x80,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x2,0x3,0x2,0x4,0x4, + 0x0,0x0,0x91,0xd8,0x0,0x0,0x0,0x0,0x89,0xf0,0x0,0x4,0x0,0x0,0x8c,0xa0, + 0x0,0x9,0x0,0x0,0x7e,0x90,0x0,0xd,0x0,0x0,0x9a,0xb0,0x0,0x11,0x4c,0x4d, + 0x54,0x0,0x50,0x4d,0x4d,0x54,0x0,0x2b,0x31,0x30,0x0,0x2b,0x30,0x39,0x0,0x2b, + 0x31,0x31,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2b, + 0x31,0x31,0x3e,0x2d,0x31,0x31,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Pohnpei + 0x0,0x0,0x0,0xb7, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x7f, + 0xff,0xff,0xff,0x1,0x1,0x0,0x0,0x94,0x54,0x0,0x0,0x0,0x0,0x9a,0xb0,0x0, + 0x4,0x4c,0x4d,0x54,0x0,0x2b,0x31,0x31,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, + 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x3,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0x7e,0x36,0x20,0xac,0x0,0x0,0x0,0x0,0x7f,0xff,0xff, + 0xff,0x0,0x1,0x1,0x0,0x0,0x94,0x54,0x0,0x0,0x0,0x0,0x9a,0xb0,0x0,0x4, + 0x4c,0x4d,0x54,0x0,0x2b,0x31,0x31,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2b,0x31, + 0x31,0x3e,0x2d,0x31,0x31,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Midway + 0x0,0x0,0x0,0xc4, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x91, + 0x5,0xfb,0x8,0x1,0x2,0x0,0x0,0xb1,0x78,0x0,0x0,0xff,0xff,0x5f,0xf8,0x0, + 0x0,0xff,0xff,0x65,0x50,0x0,0x4,0x4c,0x4d,0x54,0x0,0x53,0x53,0x54,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0, + 0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0, + 0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x6e,0x3d,0xc8, + 0x8,0xff,0xff,0xff,0xff,0x91,0x5,0xfb,0x8,0x0,0x1,0x2,0x0,0x0,0xb1,0x78, + 0x0,0x0,0xff,0xff,0x5f,0xf8,0x0,0x0,0xff,0xff,0x65,0x50,0x0,0x4,0x4c,0x4d, + 0x54,0x0,0x53,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x53,0x53,0x54, + 0x31,0x31,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Saipan + 0x0,0x0,0x0,0xe1, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0x3a, + 0x43,0x5e,0x60,0x1,0x2,0x0,0x0,0x87,0xb4,0x0,0x0,0x0,0x0,0x8c,0xa0,0x0, + 0x4,0x0,0x0,0x8c,0xa0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x47,0x53,0x54,0x0,0x43, + 0x68,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0, + 0x0,0x4,0x0,0x0,0x0,0xd,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff, + 0xff,0xff,0x14,0xe1,0xc5,0xcc,0xff,0xff,0xff,0xff,0x7e,0x36,0x2d,0x4c,0x0,0x0, + 0x0,0x0,0x3a,0x43,0x5e,0x60,0x0,0x1,0x2,0x3,0xff,0xff,0x36,0x34,0x0,0x0, + 0x0,0x0,0x87,0xb4,0x0,0x0,0x0,0x0,0x8c,0xa0,0x0,0x4,0x0,0x0,0x8c,0xa0, + 0x0,0x8,0x4c,0x4d,0x54,0x0,0x47,0x53,0x54,0x0,0x43,0x68,0x53,0x54,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x43,0x68,0x53,0x54,0x2d,0x31,0x30,0xa, + + // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Norfolk + 0x0,0x0,0x1,0x43, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x1a,0x80,0x0,0x0,0x0,0xdc, + 0x41,0xf8,0x80,0x9,0xf,0xca,0x68,0x9,0xb5,0xd9,0x58,0x56,0xf,0xe6,0x68,0x7f, + 0xff,0xff,0xff,0x1,0x2,0x3,0x2,0x4,0x4,0x0,0x0,0x9d,0x78,0x0,0x0,0x0, + 0x0,0x9d,0x80,0x0,0x4,0x0,0x0,0xa1,0xb8,0x0,0xa,0x0,0x0,0xaf,0xc8,0x1, + 0x10,0x0,0x0,0x9a,0xb0,0x0,0x16,0x4c,0x4d,0x54,0x0,0x2b,0x31,0x31,0x31,0x32, + 0x0,0x2b,0x31,0x31,0x33,0x30,0x0,0x2b,0x31,0x32,0x33,0x30,0x0,0x2b,0x31,0x31, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0, + 0x0,0x0,0x5,0x0,0x0,0x0,0x1a,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff, + 0xff,0xff,0xff,0x7e,0x36,0x17,0x88,0xff,0xff,0xff,0xff,0xdc,0x41,0xf8,0x80,0x0, + 0x0,0x0,0x0,0x9,0xf,0xca,0x68,0x0,0x0,0x0,0x0,0x9,0xb5,0xd9,0x58,0x0, + 0x0,0x0,0x0,0x56,0xf,0xe6,0x68,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0, + 0x1,0x2,0x3,0x2,0x4,0x4,0x0,0x0,0x9d,0x78,0x0,0x0,0x0,0x0,0x9d,0x80, + 0x0,0x4,0x0,0x0,0xa1,0xb8,0x0,0xa,0x0,0x0,0xaf,0xc8,0x1,0x10,0x0,0x0, + 0x9a,0xb0,0x0,0x16,0x4c,0x4d,0x54,0x0,0x2b,0x31,0x31,0x31,0x32,0x0,0x2b,0x31, + 0x31,0x33,0x30,0x0,0x2b,0x31,0x32,0x33,0x30,0x0,0x2b,0x31,0x31,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2b,0x31,0x31,0x3e,0x2d,0x31, + 0x31,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Easter + 0x0,0x0,0x8,0xc2, + 0x54, + 0x5a,0x69,0x66,0x33,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x8c,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0xb9, + 0xc7,0x40,0x88,0xfd,0xd1,0x3c,0x40,0xfe,0x92,0xfa,0xb0,0xff,0xcc,0xcd,0xc0,0x0, + 0x72,0xdc,0xb0,0x1,0x75,0x50,0xc0,0x2,0x40,0x49,0xb0,0x3,0x55,0x32,0xc0,0x4, + 0x20,0x2b,0xb0,0x5,0x3e,0x4f,0x40,0x6,0x0,0xd,0xb0,0x7,0xb,0xbc,0x40,0x7, + 0xdf,0xef,0xb0,0x8,0xfe,0x13,0x40,0x9,0xbf,0xd1,0xb0,0xa,0xdd,0xf5,0x40,0xb, + 0xa8,0xee,0x30,0xc,0xbd,0xd7,0x40,0xd,0x88,0xd0,0x30,0xe,0x9d,0xb9,0x40,0xf, + 0x68,0xb2,0x30,0x10,0x86,0xd5,0xc0,0x11,0x48,0x94,0x30,0x12,0x66,0xb7,0xc0,0x13, + 0x28,0x76,0x30,0x14,0x46,0x99,0xc0,0x15,0x11,0x92,0xb0,0x16,0x26,0x7b,0xc0,0x16, + 0xf1,0x74,0xb0,0x18,0x6,0x5d,0xc0,0x18,0xd1,0x56,0xb0,0x19,0xe6,0x3f,0xc0,0x1a, + 0xb1,0x38,0xb0,0x1b,0xcf,0x5c,0x40,0x1c,0x91,0x1a,0xb0,0x1d,0xaf,0x3e,0x40,0x1e, + 0x70,0xfc,0xb0,0x1f,0x8f,0x20,0x40,0x20,0x7f,0x3,0x30,0x21,0x6f,0x2,0x40,0x22, + 0x39,0xfb,0x30,0x23,0x4e,0xe4,0x40,0x24,0x19,0xdd,0x30,0x25,0x38,0x0,0xc0,0x25, + 0xf9,0xbf,0x30,0x26,0xf2,0xf8,0xc0,0x27,0xd9,0xa1,0x30,0x28,0xf7,0xc4,0xc0,0x29, + 0xc2,0xbd,0xb0,0x2a,0xd7,0xa6,0xc0,0x2b,0xa2,0x9f,0xb0,0x2c,0xb7,0x88,0xc0,0x2d, + 0x82,0x81,0xb0,0x2e,0x97,0x6a,0xc0,0x2f,0x62,0x63,0xb0,0x30,0x80,0x87,0x40,0x31, + 0x42,0x45,0xb0,0x32,0x60,0x69,0x40,0x33,0x3d,0xd7,0x30,0x34,0x40,0x4b,0x40,0x35, + 0xb,0x44,0x30,0x36,0xd,0xb8,0x40,0x37,0x6,0xd5,0xb0,0x38,0x0,0xf,0x40,0x38, + 0xcb,0x8,0x30,0x39,0xe9,0x2b,0xc0,0x3a,0xaa,0xea,0x30,0x3b,0xc9,0xd,0xc0,0x3c, + 0x8a,0xcc,0x30,0x3d,0xa8,0xef,0xc0,0x3e,0x6a,0xae,0x30,0x3f,0x88,0xd1,0xc0,0x40, + 0x53,0xca,0xb0,0x41,0x68,0xb3,0xc0,0x42,0x33,0xac,0xb0,0x43,0x48,0x95,0xc0,0x44, + 0x13,0x8e,0xb0,0x45,0x31,0xb2,0x40,0x45,0xf3,0x70,0xb0,0x47,0x11,0x94,0x40,0x47, + 0xef,0x2,0x30,0x48,0xf1,0x76,0x40,0x49,0xbc,0x6f,0x30,0x4a,0xd1,0x58,0x40,0x4b, + 0xb8,0x0,0xb0,0x4c,0xb1,0x3a,0x40,0x4d,0xc6,0x7,0x30,0x4e,0x50,0x82,0xc0,0x4f, + 0x9c,0xae,0xb0,0x50,0x42,0xd9,0xc0,0x51,0x7c,0x90,0xb0,0x52,0x2b,0xf6,0x40,0x53, + 0x5c,0x72,0xb0,0x54,0xb,0xd8,0x40,0x57,0x37,0xe6,0x30,0x57,0xaf,0xec,0xc0,0x59, + 0x17,0xc8,0x30,0x59,0x8f,0xce,0xc0,0x5a,0xf7,0xaa,0x30,0x5b,0x6f,0xb0,0xc0,0x5c, + 0xd7,0x8c,0x30,0x5d,0x4f,0x92,0xc0,0x5e,0xb7,0x6e,0x30,0x5f,0x2f,0x74,0xc0,0x60, + 0x97,0x50,0x30,0x61,0x18,0x91,0x40,0x62,0x80,0x6c,0xb0,0x62,0xf8,0x73,0x40,0x64, + 0x60,0x4e,0xb0,0x64,0xd8,0x55,0x40,0x66,0x40,0x30,0xb0,0x66,0xb8,0x37,0x40,0x68, + 0x20,0x12,0xb0,0x68,0x98,0x19,0x40,0x69,0xff,0xf4,0xb0,0x6a,0x77,0xfb,0x40,0x6b, + 0xdf,0xd6,0xb0,0x6c,0x61,0x17,0xc0,0x6d,0xc8,0xf3,0x30,0x6e,0x40,0xf9,0xc0,0x6f, + 0xa8,0xd5,0x30,0x70,0x20,0xdb,0xc0,0x71,0x88,0xb7,0x30,0x72,0x0,0xbd,0xc0,0x73, + 0x68,0x99,0x30,0x73,0xe0,0x9f,0xc0,0x75,0x48,0x7b,0x30,0x75,0xc9,0xbc,0x40,0x77, + 0x31,0x97,0xb0,0x77,0xa9,0x9e,0x40,0x79,0x11,0x79,0xb0,0x79,0x89,0x80,0x40,0x7a, + 0xf1,0x5b,0xb0,0x7b,0x69,0x62,0x40,0x7c,0xd1,0x3d,0xb0,0x7d,0x49,0x44,0x40,0x7e, + 0xb1,0x1f,0xb0,0x7f,0x29,0x26,0x40,0x7f,0xff,0xff,0xff,0x1,0x4,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x6,0xff,0xff,0x99,0x78,0x0,0x0,0xff,0xff,0x99, + 0x78,0x0,0x4,0xff,0xff,0xab,0xa0,0x1,0x8,0xff,0xff,0x9d,0x90,0x0,0xc,0xff, + 0xff,0x9d,0x90,0x0,0xc,0xff,0xff,0xab,0xa0,0x0,0x8,0xff,0xff,0xb9,0xb0,0x1, + 0x10,0x4c,0x4d,0x54,0x0,0x45,0x4d,0x54,0x0,0x2d,0x30,0x36,0x0,0x2d,0x30,0x37, + 0x0,0x2d,0x30,0x35,0x0,0x0,0x0,0x1,0x1,0x0,0x1,0x1,0x0,0x0,0x1,0x1, + 0x0,0x1,0x1,0x54,0x5a,0x69,0x66,0x33,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x8d,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x14,0xf8, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x69,0x87,0x42,0x8,0xff, + 0xff,0xff,0xff,0xb9,0xc7,0x40,0x88,0xff,0xff,0xff,0xff,0xfd,0xd1,0x3c,0x40,0xff, + 0xff,0xff,0xff,0xfe,0x92,0xfa,0xb0,0xff,0xff,0xff,0xff,0xff,0xcc,0xcd,0xc0,0x0, + 0x0,0x0,0x0,0x0,0x72,0xdc,0xb0,0x0,0x0,0x0,0x0,0x1,0x75,0x50,0xc0,0x0, + 0x0,0x0,0x0,0x2,0x40,0x49,0xb0,0x0,0x0,0x0,0x0,0x3,0x55,0x32,0xc0,0x0, + 0x0,0x0,0x0,0x4,0x20,0x2b,0xb0,0x0,0x0,0x0,0x0,0x5,0x3e,0x4f,0x40,0x0, + 0x0,0x0,0x0,0x6,0x0,0xd,0xb0,0x0,0x0,0x0,0x0,0x7,0xb,0xbc,0x40,0x0, + 0x0,0x0,0x0,0x7,0xdf,0xef,0xb0,0x0,0x0,0x0,0x0,0x8,0xfe,0x13,0x40,0x0, + 0x0,0x0,0x0,0x9,0xbf,0xd1,0xb0,0x0,0x0,0x0,0x0,0xa,0xdd,0xf5,0x40,0x0, + 0x0,0x0,0x0,0xb,0xa8,0xee,0x30,0x0,0x0,0x0,0x0,0xc,0xbd,0xd7,0x40,0x0, + 0x0,0x0,0x0,0xd,0x88,0xd0,0x30,0x0,0x0,0x0,0x0,0xe,0x9d,0xb9,0x40,0x0, + 0x0,0x0,0x0,0xf,0x68,0xb2,0x30,0x0,0x0,0x0,0x0,0x10,0x86,0xd5,0xc0,0x0, + 0x0,0x0,0x0,0x11,0x48,0x94,0x30,0x0,0x0,0x0,0x0,0x12,0x66,0xb7,0xc0,0x0, + 0x0,0x0,0x0,0x13,0x28,0x76,0x30,0x0,0x0,0x0,0x0,0x14,0x46,0x99,0xc0,0x0, + 0x0,0x0,0x0,0x15,0x11,0x92,0xb0,0x0,0x0,0x0,0x0,0x16,0x26,0x7b,0xc0,0x0, + 0x0,0x0,0x0,0x16,0xf1,0x74,0xb0,0x0,0x0,0x0,0x0,0x18,0x6,0x5d,0xc0,0x0, + 0x0,0x0,0x0,0x18,0xd1,0x56,0xb0,0x0,0x0,0x0,0x0,0x19,0xe6,0x3f,0xc0,0x0, + 0x0,0x0,0x0,0x1a,0xb1,0x38,0xb0,0x0,0x0,0x0,0x0,0x1b,0xcf,0x5c,0x40,0x0, + 0x0,0x0,0x0,0x1c,0x91,0x1a,0xb0,0x0,0x0,0x0,0x0,0x1d,0xaf,0x3e,0x40,0x0, + 0x0,0x0,0x0,0x1e,0x70,0xfc,0xb0,0x0,0x0,0x0,0x0,0x1f,0x8f,0x20,0x40,0x0, + 0x0,0x0,0x0,0x20,0x7f,0x3,0x30,0x0,0x0,0x0,0x0,0x21,0x6f,0x2,0x40,0x0, + 0x0,0x0,0x0,0x22,0x39,0xfb,0x30,0x0,0x0,0x0,0x0,0x23,0x4e,0xe4,0x40,0x0, + 0x0,0x0,0x0,0x24,0x19,0xdd,0x30,0x0,0x0,0x0,0x0,0x25,0x38,0x0,0xc0,0x0, + 0x0,0x0,0x0,0x25,0xf9,0xbf,0x30,0x0,0x0,0x0,0x0,0x26,0xf2,0xf8,0xc0,0x0, + 0x0,0x0,0x0,0x27,0xd9,0xa1,0x30,0x0,0x0,0x0,0x0,0x28,0xf7,0xc4,0xc0,0x0, + 0x0,0x0,0x0,0x29,0xc2,0xbd,0xb0,0x0,0x0,0x0,0x0,0x2a,0xd7,0xa6,0xc0,0x0, + 0x0,0x0,0x0,0x2b,0xa2,0x9f,0xb0,0x0,0x0,0x0,0x0,0x2c,0xb7,0x88,0xc0,0x0, + 0x0,0x0,0x0,0x2d,0x82,0x81,0xb0,0x0,0x0,0x0,0x0,0x2e,0x97,0x6a,0xc0,0x0, + 0x0,0x0,0x0,0x2f,0x62,0x63,0xb0,0x0,0x0,0x0,0x0,0x30,0x80,0x87,0x40,0x0, + 0x0,0x0,0x0,0x31,0x42,0x45,0xb0,0x0,0x0,0x0,0x0,0x32,0x60,0x69,0x40,0x0, + 0x0,0x0,0x0,0x33,0x3d,0xd7,0x30,0x0,0x0,0x0,0x0,0x34,0x40,0x4b,0x40,0x0, + 0x0,0x0,0x0,0x35,0xb,0x44,0x30,0x0,0x0,0x0,0x0,0x36,0xd,0xb8,0x40,0x0, + 0x0,0x0,0x0,0x37,0x6,0xd5,0xb0,0x0,0x0,0x0,0x0,0x38,0x0,0xf,0x40,0x0, + 0x0,0x0,0x0,0x38,0xcb,0x8,0x30,0x0,0x0,0x0,0x0,0x39,0xe9,0x2b,0xc0,0x0, + 0x0,0x0,0x0,0x3a,0xaa,0xea,0x30,0x0,0x0,0x0,0x0,0x3b,0xc9,0xd,0xc0,0x0, + 0x0,0x0,0x0,0x3c,0x8a,0xcc,0x30,0x0,0x0,0x0,0x0,0x3d,0xa8,0xef,0xc0,0x0, + 0x0,0x0,0x0,0x3e,0x6a,0xae,0x30,0x0,0x0,0x0,0x0,0x3f,0x88,0xd1,0xc0,0x0, + 0x0,0x0,0x0,0x40,0x53,0xca,0xb0,0x0,0x0,0x0,0x0,0x41,0x68,0xb3,0xc0,0x0, + 0x0,0x0,0x0,0x42,0x33,0xac,0xb0,0x0,0x0,0x0,0x0,0x43,0x48,0x95,0xc0,0x0, + 0x0,0x0,0x0,0x44,0x13,0x8e,0xb0,0x0,0x0,0x0,0x0,0x45,0x31,0xb2,0x40,0x0, + 0x0,0x0,0x0,0x45,0xf3,0x70,0xb0,0x0,0x0,0x0,0x0,0x47,0x11,0x94,0x40,0x0, + 0x0,0x0,0x0,0x47,0xef,0x2,0x30,0x0,0x0,0x0,0x0,0x48,0xf1,0x76,0x40,0x0, + 0x0,0x0,0x0,0x49,0xbc,0x6f,0x30,0x0,0x0,0x0,0x0,0x4a,0xd1,0x58,0x40,0x0, + 0x0,0x0,0x0,0x4b,0xb8,0x0,0xb0,0x0,0x0,0x0,0x0,0x4c,0xb1,0x3a,0x40,0x0, + 0x0,0x0,0x0,0x4d,0xc6,0x7,0x30,0x0,0x0,0x0,0x0,0x4e,0x50,0x82,0xc0,0x0, + 0x0,0x0,0x0,0x4f,0x9c,0xae,0xb0,0x0,0x0,0x0,0x0,0x50,0x42,0xd9,0xc0,0x0, + 0x0,0x0,0x0,0x51,0x7c,0x90,0xb0,0x0,0x0,0x0,0x0,0x52,0x2b,0xf6,0x40,0x0, + 0x0,0x0,0x0,0x53,0x5c,0x72,0xb0,0x0,0x0,0x0,0x0,0x54,0xb,0xd8,0x40,0x0, + 0x0,0x0,0x0,0x57,0x37,0xe6,0x30,0x0,0x0,0x0,0x0,0x57,0xaf,0xec,0xc0,0x0, + 0x0,0x0,0x0,0x59,0x17,0xc8,0x30,0x0,0x0,0x0,0x0,0x59,0x8f,0xce,0xc0,0x0, + 0x0,0x0,0x0,0x5a,0xf7,0xaa,0x30,0x0,0x0,0x0,0x0,0x5b,0x6f,0xb0,0xc0,0x0, + 0x0,0x0,0x0,0x5c,0xd7,0x8c,0x30,0x0,0x0,0x0,0x0,0x5d,0x4f,0x92,0xc0,0x0, + 0x0,0x0,0x0,0x5e,0xb7,0x6e,0x30,0x0,0x0,0x0,0x0,0x5f,0x2f,0x74,0xc0,0x0, + 0x0,0x0,0x0,0x60,0x97,0x50,0x30,0x0,0x0,0x0,0x0,0x61,0x18,0x91,0x40,0x0, + 0x0,0x0,0x0,0x62,0x80,0x6c,0xb0,0x0,0x0,0x0,0x0,0x62,0xf8,0x73,0x40,0x0, + 0x0,0x0,0x0,0x64,0x60,0x4e,0xb0,0x0,0x0,0x0,0x0,0x64,0xd8,0x55,0x40,0x0, + 0x0,0x0,0x0,0x66,0x40,0x30,0xb0,0x0,0x0,0x0,0x0,0x66,0xb8,0x37,0x40,0x0, + 0x0,0x0,0x0,0x68,0x20,0x12,0xb0,0x0,0x0,0x0,0x0,0x68,0x98,0x19,0x40,0x0, + 0x0,0x0,0x0,0x69,0xff,0xf4,0xb0,0x0,0x0,0x0,0x0,0x6a,0x77,0xfb,0x40,0x0, + 0x0,0x0,0x0,0x6b,0xdf,0xd6,0xb0,0x0,0x0,0x0,0x0,0x6c,0x61,0x17,0xc0,0x0, + 0x0,0x0,0x0,0x6d,0xc8,0xf3,0x30,0x0,0x0,0x0,0x0,0x6e,0x40,0xf9,0xc0,0x0, + 0x0,0x0,0x0,0x6f,0xa8,0xd5,0x30,0x0,0x0,0x0,0x0,0x70,0x20,0xdb,0xc0,0x0, + 0x0,0x0,0x0,0x71,0x88,0xb7,0x30,0x0,0x0,0x0,0x0,0x72,0x0,0xbd,0xc0,0x0, + 0x0,0x0,0x0,0x73,0x68,0x99,0x30,0x0,0x0,0x0,0x0,0x73,0xe0,0x9f,0xc0,0x0, + 0x0,0x0,0x0,0x75,0x48,0x7b,0x30,0x0,0x0,0x0,0x0,0x75,0xc9,0xbc,0x40,0x0, + 0x0,0x0,0x0,0x77,0x31,0x97,0xb0,0x0,0x0,0x0,0x0,0x77,0xa9,0x9e,0x40,0x0, + 0x0,0x0,0x0,0x79,0x11,0x79,0xb0,0x0,0x0,0x0,0x0,0x79,0x89,0x80,0x40,0x0, + 0x0,0x0,0x0,0x7a,0xf1,0x5b,0xb0,0x0,0x0,0x0,0x0,0x7b,0x69,0x62,0x40,0x0, + 0x0,0x0,0x0,0x7c,0xd1,0x3d,0xb0,0x0,0x0,0x0,0x0,0x7d,0x49,0x44,0x40,0x0, + 0x0,0x0,0x0,0x7e,0xb1,0x1f,0xb0,0x0,0x0,0x0,0x0,0x7f,0x29,0x26,0x40,0x0, + 0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x4,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x6,0xff,0xff,0x99,0x78,0x0,0x0,0xff,0xff,0x99,0x78,0x0,0x4, + 0xff,0xff,0xab,0xa0,0x1,0x8,0xff,0xff,0x9d,0x90,0x0,0xc,0xff,0xff,0x9d,0x90, + 0x0,0xc,0xff,0xff,0xab,0xa0,0x0,0x8,0xff,0xff,0xb9,0xb0,0x1,0x10,0x4c,0x4d, + 0x54,0x0,0x45,0x4d,0x54,0x0,0x2d,0x30,0x36,0x0,0x2d,0x30,0x37,0x0,0x2d,0x30, + 0x35,0x0,0x0,0x0,0x1,0x1,0x0,0x1,0x1,0x0,0x0,0x1,0x1,0x0,0x1,0x1, + 0xa,0x3c,0x2d,0x30,0x36,0x3e,0x36,0x3c,0x2d,0x30,0x35,0x3e,0x2c,0x4d,0x38,0x2e, + 0x32,0x2e,0x36,0x2f,0x32,0x32,0x2c,0x4d,0x35,0x2e,0x32,0x2e,0x36,0x2f,0x32,0x32, + 0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Noumea + 0x0,0x0,0x1,0x48, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x9,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0x92, + 0xf5,0xc4,0x74,0xe,0xe6,0xba,0x50,0xf,0x56,0xbb,0xc0,0x10,0xc6,0x9c,0x50,0x11, + 0x37,0xef,0x40,0x32,0xa0,0x4b,0xf0,0x33,0x18,0x44,0x70,0x7f,0xff,0xff,0xff,0x0, + 0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x4,0x0,0x0,0x9c,0xc,0x0,0x0,0x0,0x0, + 0xa8,0xc0,0x1,0x4,0x0,0x0,0x9a,0xb0,0x0,0x8,0x0,0x0,0xa8,0xc0,0x1,0x4, + 0x0,0x0,0x9a,0xb0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x2b,0x31,0x32,0x0,0x2b,0x31, + 0x31,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66, + 0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9, + 0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xc,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0x92,0xf5,0xc4,0x74,0x0,0x0,0x0,0x0,0xe,0xe6,0xba,0x50, + 0x0,0x0,0x0,0x0,0xf,0x56,0xbb,0xc0,0x0,0x0,0x0,0x0,0x10,0xc6,0x9c,0x50, + 0x0,0x0,0x0,0x0,0x11,0x37,0xef,0x40,0x0,0x0,0x0,0x0,0x32,0xa0,0x4b,0xf0, + 0x0,0x0,0x0,0x0,0x33,0x18,0x44,0x70,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff, + 0x0,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x4,0x0,0x0,0x9c,0xc,0x0,0x0,0x0, + 0x0,0xa8,0xc0,0x1,0x4,0x0,0x0,0x9a,0xb0,0x0,0x8,0x0,0x0,0xa8,0xc0,0x1, + 0x4,0x0,0x0,0x9a,0xb0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x2b,0x31,0x32,0x0,0x2b, + 0x31,0x31,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2b, + 0x31,0x31,0x3e,0x2d,0x31,0x31,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Tongatapu + 0x0,0x0,0x1,0x89, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xb,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x80,0x0,0x0,0x0,0xc9, + 0x73,0x42,0x90,0x37,0xfb,0x47,0xd0,0x38,0xd3,0x7d,0xd0,0x3a,0x4,0x8,0x50,0x3a, + 0x72,0xb8,0x40,0x3b,0xe3,0xea,0x50,0x3c,0x52,0x9a,0x40,0x58,0x1d,0xd7,0xd0,0x58, + 0x7a,0x20,0xd0,0x7f,0xff,0xff,0xff,0x1,0x2,0x3,0x4,0x5,0x2,0x5,0x2,0x5, + 0x2,0x2,0x0,0x0,0xad,0x48,0x0,0x0,0x0,0x0,0xad,0x70,0x0,0x4,0x0,0x0, + 0xb6,0xd0,0x0,0xa,0x0,0x0,0xc4,0xe0,0x1,0xe,0x0,0x0,0xb6,0xd0,0x0,0xa, + 0x0,0x0,0xc4,0xe0,0x1,0xe,0x4c,0x4d,0x54,0x0,0x2b,0x31,0x32,0x32,0x30,0x0, + 0x2b,0x31,0x33,0x0,0x2b,0x31,0x34,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12, + 0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x7e,0x36,0x7,0xb8, + 0xff,0xff,0xff,0xff,0xc9,0x73,0x42,0x90,0x0,0x0,0x0,0x0,0x37,0xfb,0x47,0xd0, + 0x0,0x0,0x0,0x0,0x38,0xd3,0x7d,0xd0,0x0,0x0,0x0,0x0,0x3a,0x4,0x8,0x50, + 0x0,0x0,0x0,0x0,0x3a,0x72,0xb8,0x40,0x0,0x0,0x0,0x0,0x3b,0xe3,0xea,0x50, + 0x0,0x0,0x0,0x0,0x3c,0x52,0x9a,0x40,0x0,0x0,0x0,0x0,0x58,0x1d,0xd7,0xd0, + 0x0,0x0,0x0,0x0,0x58,0x7a,0x20,0xd0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff, + 0x0,0x1,0x2,0x3,0x4,0x5,0x2,0x5,0x2,0x5,0x2,0x2,0x0,0x0,0xad,0x48, + 0x0,0x0,0x0,0x0,0xad,0x70,0x0,0x4,0x0,0x0,0xb6,0xd0,0x0,0xa,0x0,0x0, + 0xc4,0xe0,0x1,0xe,0x0,0x0,0xb6,0xd0,0x0,0xa,0x0,0x0,0xc4,0xe0,0x1,0xe, + 0x4c,0x4d,0x54,0x0,0x2b,0x31,0x32,0x32,0x30,0x0,0x2b,0x31,0x33,0x0,0x2b,0x31, + 0x34,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c, + 0x2b,0x31,0x33,0x3e,0x2d,0x31,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Ponape + 0x0,0x0,0x0,0xb7, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x7f, + 0xff,0xff,0xff,0x1,0x1,0x0,0x0,0x94,0x54,0x0,0x0,0x0,0x0,0x9a,0xb0,0x0, + 0x4,0x4c,0x4d,0x54,0x0,0x2b,0x31,0x31,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, + 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x3,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0x7e,0x36,0x20,0xac,0x0,0x0,0x0,0x0,0x7f,0xff,0xff, + 0xff,0x0,0x1,0x1,0x0,0x0,0x94,0x54,0x0,0x0,0x0,0x0,0x9a,0xb0,0x0,0x4, + 0x4c,0x4d,0x54,0x0,0x2b,0x31,0x31,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2b,0x31, + 0x31,0x3e,0x2d,0x31,0x31,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Rarotonga + 0x0,0x0,0x2,0x5a, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x1c,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0x10, + 0xac,0x1b,0x28,0x11,0x3f,0xb5,0x18,0x12,0x79,0x81,0x20,0x13,0x1f,0x97,0x18,0x14, + 0x59,0x63,0x20,0x14,0xff,0x79,0x18,0x16,0x39,0x45,0x20,0x16,0xe8,0x95,0x98,0x18, + 0x22,0x61,0xa0,0x18,0xc8,0x77,0x98,0x1a,0x2,0x43,0xa0,0x1a,0xa8,0x59,0x98,0x1b, + 0xe2,0x25,0xa0,0x1c,0x88,0x3b,0x98,0x1d,0xc2,0x7,0xa0,0x1e,0x68,0x1d,0x98,0x1f, + 0xa1,0xe9,0xa0,0x20,0x47,0xff,0x98,0x21,0x81,0xcb,0xa0,0x22,0x31,0x1c,0x18,0x23, + 0x6a,0xe8,0x20,0x24,0x10,0xfe,0x18,0x25,0x4a,0xca,0x20,0x25,0xf0,0xe0,0x18,0x27, + 0x2a,0xac,0x20,0x27,0xd0,0xc2,0x18,0x7f,0xff,0xff,0xff,0x1,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x2,0xff,0xff,0x6a,0x38,0x0,0x0,0xff,0xff,0x6c, + 0x58,0x0,0x4,0xff,0xff,0x73,0x60,0x0,0xa,0xff,0xff,0x7a,0x68,0x1,0xe,0x4c, + 0x4d,0x54,0x0,0x2d,0x31,0x30,0x33,0x30,0x0,0x2d,0x31,0x30,0x0,0x2d,0x30,0x39, + 0x33,0x30,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1d,0x0, + 0x0,0x0,0x4,0x0,0x0,0x0,0x14,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff, + 0xff,0xff,0xff,0x7e,0x37,0x4a,0xc8,0x0,0x0,0x0,0x0,0x10,0xac,0x1b,0x28,0x0, + 0x0,0x0,0x0,0x11,0x3f,0xb5,0x18,0x0,0x0,0x0,0x0,0x12,0x79,0x81,0x20,0x0, + 0x0,0x0,0x0,0x13,0x1f,0x97,0x18,0x0,0x0,0x0,0x0,0x14,0x59,0x63,0x20,0x0, + 0x0,0x0,0x0,0x14,0xff,0x79,0x18,0x0,0x0,0x0,0x0,0x16,0x39,0x45,0x20,0x0, + 0x0,0x0,0x0,0x16,0xe8,0x95,0x98,0x0,0x0,0x0,0x0,0x18,0x22,0x61,0xa0,0x0, + 0x0,0x0,0x0,0x18,0xc8,0x77,0x98,0x0,0x0,0x0,0x0,0x1a,0x2,0x43,0xa0,0x0, + 0x0,0x0,0x0,0x1a,0xa8,0x59,0x98,0x0,0x0,0x0,0x0,0x1b,0xe2,0x25,0xa0,0x0, + 0x0,0x0,0x0,0x1c,0x88,0x3b,0x98,0x0,0x0,0x0,0x0,0x1d,0xc2,0x7,0xa0,0x0, + 0x0,0x0,0x0,0x1e,0x68,0x1d,0x98,0x0,0x0,0x0,0x0,0x1f,0xa1,0xe9,0xa0,0x0, + 0x0,0x0,0x0,0x20,0x47,0xff,0x98,0x0,0x0,0x0,0x0,0x21,0x81,0xcb,0xa0,0x0, + 0x0,0x0,0x0,0x22,0x31,0x1c,0x18,0x0,0x0,0x0,0x0,0x23,0x6a,0xe8,0x20,0x0, + 0x0,0x0,0x0,0x24,0x10,0xfe,0x18,0x0,0x0,0x0,0x0,0x25,0x4a,0xca,0x20,0x0, + 0x0,0x0,0x0,0x25,0xf0,0xe0,0x18,0x0,0x0,0x0,0x0,0x27,0x2a,0xac,0x20,0x0, + 0x0,0x0,0x0,0x27,0xd0,0xc2,0x18,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0, + 0x1,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x2,0xff,0xff,0x6a,0x38, + 0x0,0x0,0xff,0xff,0x6c,0x58,0x0,0x4,0xff,0xff,0x73,0x60,0x0,0xa,0xff,0xff, + 0x7a,0x68,0x1,0xe,0x4c,0x4d,0x54,0x0,0x2d,0x31,0x30,0x33,0x30,0x0,0x2d,0x31, + 0x30,0x0,0x2d,0x30,0x39,0x33,0x30,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xa,0x3c,0x2d,0x31,0x30,0x3e,0x31,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Port_Moresby + 0x0,0x0,0x0,0xce, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x9,0x80,0x0,0x0,0x0,0x7f, + 0xff,0xff,0xff,0x1,0x1,0x0,0x0,0x89,0xf0,0x0,0x0,0x0,0x0,0x8c,0xa0,0x0, + 0x5,0x50,0x4d,0x4d,0x54,0x0,0x2b,0x31,0x30,0x0,0x0,0x0,0x0,0x0,0x54,0x5a, + 0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x4,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xd,0xf8,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xff,0xff,0xff,0xff,0x56,0xb6,0x5a,0x8,0xff,0xff,0xff,0xff,0x72,0xed, + 0xa4,0x90,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x2,0x2,0x0,0x0, + 0x89,0xf8,0x0,0x0,0x0,0x0,0x89,0xf0,0x0,0x4,0x0,0x0,0x8c,0xa0,0x0,0x9, + 0x4c,0x4d,0x54,0x0,0x50,0x4d,0x4d,0x54,0x0,0x2b,0x31,0x30,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0xa,0x3c,0x2b,0x31,0x30,0x3e,0x2d,0x31,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Fiji + 0x0,0x0,0x4,0x50, + 0x54, + 0x5a,0x69,0x66,0x33,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x41,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0x9a, + 0x13,0xb1,0xc0,0x36,0x3b,0x17,0xe0,0x36,0xd7,0xfa,0x60,0x38,0x24,0x34,0x60,0x38, + 0xb7,0xdc,0x60,0x4b,0x11,0x2c,0xe0,0x4b,0xae,0xf,0x60,0x4c,0xc2,0xea,0x60,0x4d, + 0x72,0x41,0xe0,0x4e,0xa2,0xcc,0x60,0x4f,0x1a,0xc4,0xe0,0x50,0x82,0xae,0x60,0x50, + 0xfa,0xa6,0xe0,0x52,0x6b,0xca,0xe0,0x52,0xda,0x7a,0xd0,0x54,0x54,0xe7,0x60,0x54, + 0xba,0x6a,0xe0,0x56,0x34,0xc9,0x60,0x56,0x9a,0x4c,0xe0,0x58,0x1d,0xe5,0xe0,0x58, + 0x7a,0x2e,0xe0,0x59,0xfd,0xc7,0xe0,0x5a,0x5a,0x10,0xe0,0x5b,0xdd,0xa9,0xe0,0x5c, + 0x43,0x2d,0x60,0x5d,0xbd,0x8b,0xe0,0x5e,0x23,0xf,0x60,0x5f,0x9d,0x6d,0xe0,0x60, + 0x2,0xf1,0x60,0x61,0x86,0x8a,0x60,0x61,0xe2,0xd3,0x60,0x63,0x66,0x6c,0x60,0x63, + 0xc2,0xb5,0x60,0x65,0x46,0x4e,0x60,0x65,0xa2,0x97,0x60,0x67,0x26,0x30,0x60,0x67, + 0x8b,0xb3,0xe0,0x69,0x6,0x12,0x60,0x69,0x6b,0x95,0xe0,0x6a,0xe5,0xf4,0x60,0x6b, + 0x4b,0x77,0xe0,0x6c,0xcf,0x10,0xe0,0x6d,0x2b,0x59,0xe0,0x6e,0xae,0xf2,0xe0,0x6f, + 0xb,0x3b,0xe0,0x70,0x8e,0xd4,0xe0,0x70,0xf4,0x58,0x60,0x72,0x6e,0xb6,0xe0,0x72, + 0xd4,0x3a,0x60,0x74,0x4e,0x98,0xe0,0x74,0xb4,0x1c,0x60,0x76,0x37,0xb5,0x60,0x76, + 0x93,0xfe,0x60,0x78,0x17,0x97,0x60,0x78,0x73,0xe0,0x60,0x79,0xf7,0x79,0x60,0x7a, + 0x53,0xc2,0x60,0x7b,0xd7,0x5b,0x60,0x7c,0x3c,0xde,0xe0,0x7d,0xb7,0x3d,0x60,0x7e, + 0x1c,0xc0,0xe0,0x7f,0x97,0x1f,0x60,0x7f,0xfc,0xa2,0xe0,0x7f,0xff,0xff,0xff,0x0, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x2, + 0x0,0x0,0xa7,0xc0,0x0,0x0,0x0,0x0,0xb6,0xd0,0x1,0x4,0x0,0x0,0xa8,0xc0, + 0x0,0x8,0x4c,0x4d,0x54,0x0,0x2b,0x31,0x33,0x0,0x2b,0x31,0x32,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x33,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x41,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc, + 0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x9a,0x13,0xb1,0xc0, + 0x0,0x0,0x0,0x0,0x36,0x3b,0x17,0xe0,0x0,0x0,0x0,0x0,0x36,0xd7,0xfa,0x60, + 0x0,0x0,0x0,0x0,0x38,0x24,0x34,0x60,0x0,0x0,0x0,0x0,0x38,0xb7,0xdc,0x60, + 0x0,0x0,0x0,0x0,0x4b,0x11,0x2c,0xe0,0x0,0x0,0x0,0x0,0x4b,0xae,0xf,0x60, + 0x0,0x0,0x0,0x0,0x4c,0xc2,0xea,0x60,0x0,0x0,0x0,0x0,0x4d,0x72,0x41,0xe0, + 0x0,0x0,0x0,0x0,0x4e,0xa2,0xcc,0x60,0x0,0x0,0x0,0x0,0x4f,0x1a,0xc4,0xe0, + 0x0,0x0,0x0,0x0,0x50,0x82,0xae,0x60,0x0,0x0,0x0,0x0,0x50,0xfa,0xa6,0xe0, + 0x0,0x0,0x0,0x0,0x52,0x6b,0xca,0xe0,0x0,0x0,0x0,0x0,0x52,0xda,0x7a,0xd0, + 0x0,0x0,0x0,0x0,0x54,0x54,0xe7,0x60,0x0,0x0,0x0,0x0,0x54,0xba,0x6a,0xe0, + 0x0,0x0,0x0,0x0,0x56,0x34,0xc9,0x60,0x0,0x0,0x0,0x0,0x56,0x9a,0x4c,0xe0, + 0x0,0x0,0x0,0x0,0x58,0x1d,0xe5,0xe0,0x0,0x0,0x0,0x0,0x58,0x7a,0x2e,0xe0, + 0x0,0x0,0x0,0x0,0x59,0xfd,0xc7,0xe0,0x0,0x0,0x0,0x0,0x5a,0x5a,0x10,0xe0, + 0x0,0x0,0x0,0x0,0x5b,0xdd,0xa9,0xe0,0x0,0x0,0x0,0x0,0x5c,0x43,0x2d,0x60, + 0x0,0x0,0x0,0x0,0x5d,0xbd,0x8b,0xe0,0x0,0x0,0x0,0x0,0x5e,0x23,0xf,0x60, + 0x0,0x0,0x0,0x0,0x5f,0x9d,0x6d,0xe0,0x0,0x0,0x0,0x0,0x60,0x2,0xf1,0x60, + 0x0,0x0,0x0,0x0,0x61,0x86,0x8a,0x60,0x0,0x0,0x0,0x0,0x61,0xe2,0xd3,0x60, + 0x0,0x0,0x0,0x0,0x63,0x66,0x6c,0x60,0x0,0x0,0x0,0x0,0x63,0xc2,0xb5,0x60, + 0x0,0x0,0x0,0x0,0x65,0x46,0x4e,0x60,0x0,0x0,0x0,0x0,0x65,0xa2,0x97,0x60, + 0x0,0x0,0x0,0x0,0x67,0x26,0x30,0x60,0x0,0x0,0x0,0x0,0x67,0x8b,0xb3,0xe0, + 0x0,0x0,0x0,0x0,0x69,0x6,0x12,0x60,0x0,0x0,0x0,0x0,0x69,0x6b,0x95,0xe0, + 0x0,0x0,0x0,0x0,0x6a,0xe5,0xf4,0x60,0x0,0x0,0x0,0x0,0x6b,0x4b,0x77,0xe0, + 0x0,0x0,0x0,0x0,0x6c,0xcf,0x10,0xe0,0x0,0x0,0x0,0x0,0x6d,0x2b,0x59,0xe0, + 0x0,0x0,0x0,0x0,0x6e,0xae,0xf2,0xe0,0x0,0x0,0x0,0x0,0x6f,0xb,0x3b,0xe0, + 0x0,0x0,0x0,0x0,0x70,0x8e,0xd4,0xe0,0x0,0x0,0x0,0x0,0x70,0xf4,0x58,0x60, + 0x0,0x0,0x0,0x0,0x72,0x6e,0xb6,0xe0,0x0,0x0,0x0,0x0,0x72,0xd4,0x3a,0x60, + 0x0,0x0,0x0,0x0,0x74,0x4e,0x98,0xe0,0x0,0x0,0x0,0x0,0x74,0xb4,0x1c,0x60, + 0x0,0x0,0x0,0x0,0x76,0x37,0xb5,0x60,0x0,0x0,0x0,0x0,0x76,0x93,0xfe,0x60, + 0x0,0x0,0x0,0x0,0x78,0x17,0x97,0x60,0x0,0x0,0x0,0x0,0x78,0x73,0xe0,0x60, + 0x0,0x0,0x0,0x0,0x79,0xf7,0x79,0x60,0x0,0x0,0x0,0x0,0x7a,0x53,0xc2,0x60, + 0x0,0x0,0x0,0x0,0x7b,0xd7,0x5b,0x60,0x0,0x0,0x0,0x0,0x7c,0x3c,0xde,0xe0, + 0x0,0x0,0x0,0x0,0x7d,0xb7,0x3d,0x60,0x0,0x0,0x0,0x0,0x7e,0x1c,0xc0,0xe0, + 0x0,0x0,0x0,0x0,0x7f,0x97,0x1f,0x60,0x0,0x0,0x0,0x0,0x7f,0xfc,0xa2,0xe0, + 0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x2,0x0,0x0,0xa7,0xc0,0x0,0x0,0x0, + 0x0,0xb6,0xd0,0x1,0x4,0x0,0x0,0xa8,0xc0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x2b, + 0x31,0x33,0x0,0x2b,0x31,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2b, + 0x31,0x32,0x3e,0x2d,0x31,0x32,0x3c,0x2b,0x31,0x33,0x3e,0x2c,0x4d,0x31,0x31,0x2e, + 0x31,0x2e,0x30,0x2c,0x4d,0x31,0x2e,0x32,0x2e,0x31,0x2f,0x31,0x34,0x37,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Pago_Pago + 0x0,0x0,0x0,0xc4, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x91, + 0x5,0xfb,0x8,0x1,0x2,0x0,0x0,0xb1,0x78,0x0,0x0,0xff,0xff,0x5f,0xf8,0x0, + 0x0,0xff,0xff,0x65,0x50,0x0,0x4,0x4c,0x4d,0x54,0x0,0x53,0x53,0x54,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0, + 0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0, + 0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x6e,0x3d,0xc8, + 0x8,0xff,0xff,0xff,0xff,0x91,0x5,0xfb,0x8,0x0,0x1,0x2,0x0,0x0,0xb1,0x78, + 0x0,0x0,0xff,0xff,0x5f,0xf8,0x0,0x0,0xff,0xff,0x65,0x50,0x0,0x4,0x4c,0x4d, + 0x54,0x0,0x53,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x53,0x53,0x54, + 0x31,0x31,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Palau + 0x0,0x0,0x0,0xb6, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x7f, + 0xff,0xff,0xff,0x1,0x1,0x0,0x0,0x7e,0x14,0x0,0x0,0x0,0x0,0x7e,0x90,0x0, + 0x4,0x4c,0x4d,0x54,0x0,0x2b,0x30,0x39,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, + 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x3,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0x7e,0x36,0x36,0xec,0x0,0x0,0x0,0x0,0x7f,0xff,0xff, + 0xff,0x0,0x1,0x1,0x0,0x0,0x7e,0x14,0x0,0x0,0x0,0x0,0x7e,0x90,0x0,0x4, + 0x4c,0x4d,0x54,0x0,0x2b,0x30,0x39,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2b,0x30, + 0x39,0x3e,0x2d,0x39,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Chuuk + 0x0,0x0,0x0,0xb7, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x7f, + 0xff,0xff,0xff,0x1,0x1,0x0,0x0,0x8e,0x4c,0x0,0x0,0x0,0x0,0x8c,0xa0,0x0, + 0x4,0x4c,0x4d,0x54,0x0,0x2b,0x31,0x30,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, + 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x3,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0x7e,0x36,0x26,0xb4,0x0,0x0,0x0,0x0,0x7f,0xff,0xff, + 0xff,0x0,0x1,0x1,0x0,0x0,0x8e,0x4c,0x0,0x0,0x0,0x0,0x8c,0xa0,0x0,0x4, + 0x4c,0x4d,0x54,0x0,0x2b,0x31,0x30,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2b,0x31, + 0x30,0x3e,0x2d,0x31,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Efate + 0x0,0x0,0x1,0xec, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x17,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0x92, + 0xf5,0xc2,0xb4,0x19,0xd2,0xf7,0xd0,0x1a,0xc2,0xda,0xc0,0x1b,0xda,0x66,0xd0,0x1c, + 0xa2,0xbc,0xc0,0x1d,0x9b,0xf6,0x50,0x1e,0x82,0x9e,0xc0,0x1f,0x7b,0xd8,0x50,0x20, + 0x6b,0xbb,0x40,0x21,0x5b,0xba,0x50,0x22,0x4b,0x9d,0x40,0x23,0x3b,0x9c,0x50,0x24, + 0x2b,0x7f,0x40,0x25,0x1b,0x7e,0x50,0x26,0xb,0x61,0x40,0x26,0xfb,0x60,0x50,0x27, + 0xeb,0x43,0x40,0x28,0xe4,0x7c,0xd0,0x29,0x81,0x51,0x40,0x2a,0xe9,0x48,0xd0,0x2b, + 0x61,0x33,0x40,0x7f,0xff,0xff,0xff,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x2,0x0,0x0, + 0x9d,0xcc,0x0,0x0,0x0,0x0,0xa8,0xc0,0x1,0x4,0x0,0x0,0x9a,0xb0,0x0,0x8, + 0x4c,0x4d,0x54,0x0,0x2b,0x31,0x32,0x0,0x2b,0x31,0x31,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x17,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0xf8,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x92,0xf5,0xc2,0xb4,0x0,0x0, + 0x0,0x0,0x19,0xd2,0xf7,0xd0,0x0,0x0,0x0,0x0,0x1a,0xc2,0xda,0xc0,0x0,0x0, + 0x0,0x0,0x1b,0xda,0x66,0xd0,0x0,0x0,0x0,0x0,0x1c,0xa2,0xbc,0xc0,0x0,0x0, + 0x0,0x0,0x1d,0x9b,0xf6,0x50,0x0,0x0,0x0,0x0,0x1e,0x82,0x9e,0xc0,0x0,0x0, + 0x0,0x0,0x1f,0x7b,0xd8,0x50,0x0,0x0,0x0,0x0,0x20,0x6b,0xbb,0x40,0x0,0x0, + 0x0,0x0,0x21,0x5b,0xba,0x50,0x0,0x0,0x0,0x0,0x22,0x4b,0x9d,0x40,0x0,0x0, + 0x0,0x0,0x23,0x3b,0x9c,0x50,0x0,0x0,0x0,0x0,0x24,0x2b,0x7f,0x40,0x0,0x0, + 0x0,0x0,0x25,0x1b,0x7e,0x50,0x0,0x0,0x0,0x0,0x26,0xb,0x61,0x40,0x0,0x0, + 0x0,0x0,0x26,0xfb,0x60,0x50,0x0,0x0,0x0,0x0,0x27,0xeb,0x43,0x40,0x0,0x0, + 0x0,0x0,0x28,0xe4,0x7c,0xd0,0x0,0x0,0x0,0x0,0x29,0x81,0x51,0x40,0x0,0x0, + 0x0,0x0,0x2a,0xe9,0x48,0xd0,0x0,0x0,0x0,0x0,0x2b,0x61,0x33,0x40,0x0,0x0, + 0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x2,0x0,0x0,0x9d, + 0xcc,0x0,0x0,0x0,0x0,0xa8,0xc0,0x1,0x4,0x0,0x0,0x9a,0xb0,0x0,0x8,0x4c, + 0x4d,0x54,0x0,0x2b,0x31,0x32,0x0,0x2b,0x31,0x31,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xa,0x3c,0x2b,0x31,0x31,0x3e,0x2d,0x31,0x31,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Enderbury + 0x0,0x0,0x1,0x3, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x10,0x80,0x0,0x0,0x0,0x12, + 0x56,0x4,0xc0,0x2f,0x6,0x8b,0x30,0x7f,0xff,0xff,0xff,0x1,0x2,0x3,0x3,0xff, + 0xff,0x5f,0x9c,0x0,0x0,0xff,0xff,0x57,0x40,0x0,0x4,0xff,0xff,0x65,0x50,0x0, + 0x8,0x0,0x0,0xb6,0xd0,0x0,0xc,0x4c,0x4d,0x54,0x0,0x2d,0x31,0x32,0x0,0x2d, + 0x31,0x31,0x0,0x2b,0x31,0x33,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x5,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x10,0xf8,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x7e,0x37,0x55,0x64,0x0,0x0,0x0,0x0,0x12, + 0x56,0x4,0xc0,0x0,0x0,0x0,0x0,0x2f,0x6,0x8b,0x30,0x0,0x0,0x0,0x0,0x7f, + 0xff,0xff,0xff,0x0,0x1,0x2,0x3,0x3,0xff,0xff,0x5f,0x9c,0x0,0x0,0xff,0xff, + 0x57,0x40,0x0,0x4,0xff,0xff,0x65,0x50,0x0,0x8,0x0,0x0,0xb6,0xd0,0x0,0xc, + 0x4c,0x4d,0x54,0x0,0x2d,0x31,0x32,0x0,0x2d,0x31,0x31,0x0,0x2b,0x31,0x33,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2b,0x31,0x33,0x3e,0x2d,0x31, + 0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Honolulu + 0x0,0x0,0x1,0x14, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0xbb, + 0x5,0x43,0x48,0xbb,0x21,0x71,0x58,0xcb,0x89,0x3d,0xc8,0xd2,0x61,0x49,0x38,0xd5, + 0x8d,0x73,0x48,0x1,0x2,0x1,0x2,0x1,0x3,0xff,0xff,0x6c,0x2,0x0,0x0,0xff, + 0xff,0x6c,0x58,0x0,0x4,0xff,0xff,0x7a,0x68,0x1,0x8,0xff,0xff,0x73,0x60,0x0, + 0x4,0x4c,0x4d,0x54,0x0,0x48,0x53,0x54,0x0,0x48,0x44,0x54,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0, + 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x4,0x0,0x0,0x0, + 0xc,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x74,0xe0,0x70, + 0xbe,0xff,0xff,0xff,0xff,0xbb,0x5,0x43,0x48,0xff,0xff,0xff,0xff,0xbb,0x21,0x71, + 0x58,0xff,0xff,0xff,0xff,0xcb,0x89,0x3d,0xc8,0xff,0xff,0xff,0xff,0xd2,0x61,0x49, + 0x38,0xff,0xff,0xff,0xff,0xd5,0x8d,0x73,0x48,0x0,0x1,0x2,0x1,0x2,0x1,0x3, + 0xff,0xff,0x6c,0x2,0x0,0x0,0xff,0xff,0x6c,0x58,0x0,0x4,0xff,0xff,0x7a,0x68, + 0x1,0x8,0xff,0xff,0x73,0x60,0x0,0x4,0x4c,0x4d,0x54,0x0,0x48,0x53,0x54,0x0, + 0x48,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x48,0x53,0x54, + 0x31,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Niue + 0x0,0x0,0x1,0xa, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0xdc, + 0x43,0x35,0x60,0x10,0x74,0xca,0x38,0x7f,0xff,0xff,0xff,0x1,0x2,0x3,0x3,0xff, + 0xff,0x60,0xb4,0x0,0x0,0xff,0xff,0x60,0xa0,0x0,0x4,0xff,0xff,0x5e,0x48,0x0, + 0xa,0xff,0xff,0x65,0x50,0x0,0x10,0x4c,0x4d,0x54,0x0,0x2d,0x31,0x31,0x32,0x30, + 0x0,0x2d,0x31,0x31,0x33,0x30,0x0,0x2d,0x31,0x31,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x14,0xf8, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x7e,0x37,0x54,0x4c,0xff, + 0xff,0xff,0xff,0xdc,0x43,0x35,0x60,0x0,0x0,0x0,0x0,0x10,0x74,0xca,0x38,0x0, + 0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x2,0x3,0x3,0xff,0xff,0x60,0xb4, + 0x0,0x0,0xff,0xff,0x60,0xa0,0x0,0x4,0xff,0xff,0x5e,0x48,0x0,0xa,0xff,0xff, + 0x65,0x50,0x0,0x10,0x4c,0x4d,0x54,0x0,0x2d,0x31,0x31,0x32,0x30,0x0,0x2d,0x31, + 0x31,0x33,0x30,0x0,0x2d,0x31,0x31,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xa,0x3c,0x2d,0x31,0x31,0x3e,0x31,0x31,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Nauru + 0x0,0x0,0x1,0x1a, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x12,0x80,0x0,0x0,0x0,0xa3, + 0xe7,0x2b,0x4,0xcb,0xb4,0xbf,0x48,0xd0,0x42,0x50,0x70,0x11,0x8b,0x4,0xc8,0x7f, + 0xff,0xff,0xff,0x0,0x1,0x2,0x1,0x3,0x3,0x0,0x0,0x9c,0x7c,0x0,0x0,0x0, + 0x0,0xa1,0xb8,0x0,0x4,0x0,0x0,0x7e,0x90,0x0,0xa,0x0,0x0,0xa8,0xc0,0x0, + 0xe,0x4c,0x4d,0x54,0x0,0x2b,0x31,0x31,0x33,0x30,0x0,0x2b,0x30,0x39,0x0,0x2b, + 0x31,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x4,0x0,0x0,0x0,0x12,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff, + 0xff,0xff,0xff,0xa3,0xe7,0x2b,0x4,0xff,0xff,0xff,0xff,0xcb,0xb4,0xbf,0x48,0xff, + 0xff,0xff,0xff,0xd0,0x42,0x50,0x70,0x0,0x0,0x0,0x0,0x11,0x8b,0x4,0xc8,0x0, + 0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x2,0x1,0x3,0x3,0x0,0x0,0x9c, + 0x7c,0x0,0x0,0x0,0x0,0xa1,0xb8,0x0,0x4,0x0,0x0,0x7e,0x90,0x0,0xa,0x0, + 0x0,0xa8,0xc0,0x0,0xe,0x4c,0x4d,0x54,0x0,0x2b,0x31,0x31,0x33,0x30,0x0,0x2b, + 0x30,0x39,0x0,0x2b,0x31,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa, + 0x3c,0x2b,0x31,0x32,0x3e,0x2d,0x31,0x32,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Tarawa + 0x0,0x0,0x0,0xb7, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x7f, + 0xff,0xff,0xff,0x1,0x1,0x0,0x0,0xa2,0x34,0x0,0x0,0x0,0x0,0xa8,0xc0,0x0, + 0x4,0x4c,0x4d,0x54,0x0,0x2b,0x31,0x32,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, + 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x3,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0x7e,0x36,0x12,0xcc,0x0,0x0,0x0,0x0,0x7f,0xff,0xff, + 0xff,0x0,0x1,0x1,0x0,0x0,0xa2,0x34,0x0,0x0,0x0,0x0,0xa8,0xc0,0x0,0x4, + 0x4c,0x4d,0x54,0x0,0x2b,0x31,0x32,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2b,0x31, + 0x32,0x3e,0x2d,0x31,0x32,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Truk + 0x0,0x0,0x0,0xb7, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x7f, + 0xff,0xff,0xff,0x1,0x1,0x0,0x0,0x8e,0x4c,0x0,0x0,0x0,0x0,0x8c,0xa0,0x0, + 0x4,0x4c,0x4d,0x54,0x0,0x2b,0x31,0x30,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, + 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x3,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0x7e,0x36,0x26,0xb4,0x0,0x0,0x0,0x0,0x7f,0xff,0xff, + 0xff,0x0,0x1,0x1,0x0,0x0,0x8e,0x4c,0x0,0x0,0x0,0x0,0x8c,0xa0,0x0,0x4, + 0x4c,0x4d,0x54,0x0,0x2b,0x31,0x30,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2b,0x31, + 0x30,0x3e,0x2d,0x31,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Wallis + 0x0,0x0,0x0,0xb7, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x7f, + 0xff,0xff,0xff,0x1,0x1,0x0,0x0,0xac,0x58,0x0,0x0,0x0,0x0,0xa8,0xc0,0x0, + 0x4,0x4c,0x4d,0x54,0x0,0x2b,0x31,0x32,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, + 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x3,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0x7e,0x36,0x8,0xa8,0x0,0x0,0x0,0x0,0x7f,0xff,0xff, + 0xff,0x0,0x1,0x1,0x0,0x0,0xac,0x58,0x0,0x0,0x0,0x0,0xa8,0xc0,0x0,0x4, + 0x4c,0x4d,0x54,0x0,0x2b,0x31,0x32,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2b,0x31, + 0x32,0x3e,0x2d,0x31,0x32,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Chatham + 0x0,0x0,0x8,0x27, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x82,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x16,0x80,0x0,0x0,0x0,0xd2, + 0xda,0x96,0xbc,0x9,0x18,0xfd,0xe0,0x9,0xac,0xa5,0xe0,0xa,0xef,0xa5,0x60,0xb, + 0x9e,0xfc,0xe0,0xc,0xd8,0xc1,0xe0,0xd,0x7e,0xde,0xe0,0xe,0xb8,0xa3,0xe0,0xf, + 0x5e,0xc0,0xe0,0x10,0x98,0x85,0xe0,0x11,0x3e,0xa2,0xe0,0x12,0x78,0x67,0xe0,0x13, + 0x1e,0x84,0xe0,0x14,0x58,0x49,0xe0,0x14,0xfe,0x66,0xe0,0x16,0x38,0x2b,0xe0,0x16, + 0xe7,0x83,0x60,0x18,0x21,0x48,0x60,0x18,0xc7,0x65,0x60,0x1a,0x1,0x2a,0x60,0x1a, + 0xa7,0x47,0x60,0x1b,0xe1,0xc,0x60,0x1c,0x87,0x29,0x60,0x1d,0xc0,0xee,0x60,0x1e, + 0x67,0xb,0x60,0x1f,0xa0,0xd0,0x60,0x20,0x46,0xed,0x60,0x21,0x80,0xb2,0x60,0x22, + 0x30,0x9,0xe0,0x23,0x69,0xce,0xe0,0x24,0xf,0xeb,0xe0,0x25,0x2e,0x1,0x60,0x26, + 0x2,0x42,0xe0,0x27,0xd,0xe3,0x60,0x27,0xe2,0x24,0xe0,0x28,0xed,0xc5,0x60,0x29, + 0xc2,0x6,0xe0,0x2a,0xcd,0xa7,0x60,0x2b,0xab,0x23,0x60,0x2c,0xad,0x89,0x60,0x2d, + 0x8b,0x5,0x60,0x2e,0x8d,0x6b,0x60,0x2f,0x6a,0xe7,0x60,0x30,0x6d,0x4d,0x60,0x31, + 0x4a,0xc9,0x60,0x32,0x56,0x69,0xe0,0x33,0x2a,0xab,0x60,0x34,0x36,0x4b,0xe0,0x35, + 0xa,0x8d,0x60,0x36,0x16,0x2d,0xe0,0x36,0xf3,0xa9,0xe0,0x37,0xf6,0xf,0xe0,0x38, + 0xd3,0x8b,0xe0,0x39,0xd5,0xf1,0xe0,0x3a,0xb3,0x6d,0xe0,0x3b,0xbf,0xe,0x60,0x3c, + 0x93,0x4f,0xe0,0x3d,0x9e,0xf0,0x60,0x3e,0x73,0x31,0xe0,0x3f,0x7e,0xd2,0x60,0x40, + 0x5c,0x4e,0x60,0x41,0x5e,0xb4,0x60,0x42,0x3c,0x30,0x60,0x43,0x3e,0x96,0x60,0x44, + 0x1c,0x12,0x60,0x45,0x1e,0x78,0x60,0x45,0xfb,0xf4,0x60,0x46,0xfe,0x5a,0x60,0x47, + 0xf7,0x85,0xe0,0x48,0xde,0x3c,0x60,0x49,0xd7,0x67,0xe0,0x4a,0xbe,0x1e,0x60,0x4b, + 0xb7,0x49,0xe0,0x4c,0x9e,0x0,0x60,0x4d,0x97,0x2b,0xe0,0x4e,0x7d,0xe2,0x60,0x4f, + 0x77,0xd,0xe0,0x50,0x66,0xfe,0xe0,0x51,0x60,0x2a,0x60,0x52,0x46,0xe0,0xe0,0x53, + 0x40,0xc,0x60,0x54,0x26,0xc2,0xe0,0x55,0x1f,0xee,0x60,0x56,0x6,0xa4,0xe0,0x56, + 0xff,0xd0,0x60,0x57,0xe6,0x86,0xe0,0x58,0xdf,0xb2,0x60,0x59,0xc6,0x68,0xe0,0x5a, + 0xbf,0x94,0x60,0x5b,0xaf,0x85,0x60,0x5c,0xa8,0xb0,0xe0,0x5d,0x8f,0x67,0x60,0x5e, + 0x88,0x92,0xe0,0x5f,0x6f,0x49,0x60,0x60,0x68,0x74,0xe0,0x61,0x4f,0x2b,0x60,0x62, + 0x48,0x56,0xe0,0x63,0x2f,0xd,0x60,0x64,0x28,0x38,0xe0,0x65,0xe,0xef,0x60,0x66, + 0x11,0x55,0x60,0x66,0xf8,0xb,0xe0,0x67,0xf1,0x37,0x60,0x68,0xd7,0xed,0xe0,0x69, + 0xd1,0x19,0x60,0x6a,0xb7,0xcf,0xe0,0x6b,0xb0,0xfb,0x60,0x6c,0x97,0xb1,0xe0,0x6d, + 0x90,0xdd,0x60,0x6e,0x77,0x93,0xe0,0x6f,0x70,0xbf,0x60,0x70,0x60,0xb0,0x60,0x71, + 0x59,0xdb,0xe0,0x72,0x40,0x92,0x60,0x73,0x39,0xbd,0xe0,0x74,0x20,0x74,0x60,0x75, + 0x19,0x9f,0xe0,0x76,0x0,0x56,0x60,0x76,0xf9,0x81,0xe0,0x77,0xe0,0x38,0x60,0x78, + 0xd9,0x63,0xe0,0x79,0xc0,0x1a,0x60,0x7a,0xb9,0x45,0xe0,0x7b,0xa9,0x36,0xe0,0x7c, + 0xa2,0x62,0x60,0x7d,0x89,0x18,0xe0,0x7e,0x82,0x44,0x60,0x7f,0x68,0xfa,0xe0,0x7f, + 0xff,0xff,0xff,0x1,0x4,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x2,0x0,0x0,0xab,0xfc,0x0,0x0,0x0,0x0,0xac,0x44,0x0, + 0x4,0x0,0x0,0xc1,0x5c,0x1,0xa,0x0,0x0,0xb3,0x4c,0x0,0x10,0x0,0x0,0xb3, + 0x4c,0x0,0x10,0x4c,0x4d,0x54,0x0,0x2b,0x31,0x32,0x31,0x35,0x0,0x2b,0x31,0x33, + 0x34,0x35,0x0,0x2b,0x31,0x32,0x34,0x35,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0, + 0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x83,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x16,0xf8, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x41,0xb7,0x44,0x84,0xff, + 0xff,0xff,0xff,0xd2,0xda,0x96,0xbc,0x0,0x0,0x0,0x0,0x9,0x18,0xfd,0xe0,0x0, + 0x0,0x0,0x0,0x9,0xac,0xa5,0xe0,0x0,0x0,0x0,0x0,0xa,0xef,0xa5,0x60,0x0, + 0x0,0x0,0x0,0xb,0x9e,0xfc,0xe0,0x0,0x0,0x0,0x0,0xc,0xd8,0xc1,0xe0,0x0, + 0x0,0x0,0x0,0xd,0x7e,0xde,0xe0,0x0,0x0,0x0,0x0,0xe,0xb8,0xa3,0xe0,0x0, + 0x0,0x0,0x0,0xf,0x5e,0xc0,0xe0,0x0,0x0,0x0,0x0,0x10,0x98,0x85,0xe0,0x0, + 0x0,0x0,0x0,0x11,0x3e,0xa2,0xe0,0x0,0x0,0x0,0x0,0x12,0x78,0x67,0xe0,0x0, + 0x0,0x0,0x0,0x13,0x1e,0x84,0xe0,0x0,0x0,0x0,0x0,0x14,0x58,0x49,0xe0,0x0, + 0x0,0x0,0x0,0x14,0xfe,0x66,0xe0,0x0,0x0,0x0,0x0,0x16,0x38,0x2b,0xe0,0x0, + 0x0,0x0,0x0,0x16,0xe7,0x83,0x60,0x0,0x0,0x0,0x0,0x18,0x21,0x48,0x60,0x0, + 0x0,0x0,0x0,0x18,0xc7,0x65,0x60,0x0,0x0,0x0,0x0,0x1a,0x1,0x2a,0x60,0x0, + 0x0,0x0,0x0,0x1a,0xa7,0x47,0x60,0x0,0x0,0x0,0x0,0x1b,0xe1,0xc,0x60,0x0, + 0x0,0x0,0x0,0x1c,0x87,0x29,0x60,0x0,0x0,0x0,0x0,0x1d,0xc0,0xee,0x60,0x0, + 0x0,0x0,0x0,0x1e,0x67,0xb,0x60,0x0,0x0,0x0,0x0,0x1f,0xa0,0xd0,0x60,0x0, + 0x0,0x0,0x0,0x20,0x46,0xed,0x60,0x0,0x0,0x0,0x0,0x21,0x80,0xb2,0x60,0x0, + 0x0,0x0,0x0,0x22,0x30,0x9,0xe0,0x0,0x0,0x0,0x0,0x23,0x69,0xce,0xe0,0x0, + 0x0,0x0,0x0,0x24,0xf,0xeb,0xe0,0x0,0x0,0x0,0x0,0x25,0x2e,0x1,0x60,0x0, + 0x0,0x0,0x0,0x26,0x2,0x42,0xe0,0x0,0x0,0x0,0x0,0x27,0xd,0xe3,0x60,0x0, + 0x0,0x0,0x0,0x27,0xe2,0x24,0xe0,0x0,0x0,0x0,0x0,0x28,0xed,0xc5,0x60,0x0, + 0x0,0x0,0x0,0x29,0xc2,0x6,0xe0,0x0,0x0,0x0,0x0,0x2a,0xcd,0xa7,0x60,0x0, + 0x0,0x0,0x0,0x2b,0xab,0x23,0x60,0x0,0x0,0x0,0x0,0x2c,0xad,0x89,0x60,0x0, + 0x0,0x0,0x0,0x2d,0x8b,0x5,0x60,0x0,0x0,0x0,0x0,0x2e,0x8d,0x6b,0x60,0x0, + 0x0,0x0,0x0,0x2f,0x6a,0xe7,0x60,0x0,0x0,0x0,0x0,0x30,0x6d,0x4d,0x60,0x0, + 0x0,0x0,0x0,0x31,0x4a,0xc9,0x60,0x0,0x0,0x0,0x0,0x32,0x56,0x69,0xe0,0x0, + 0x0,0x0,0x0,0x33,0x2a,0xab,0x60,0x0,0x0,0x0,0x0,0x34,0x36,0x4b,0xe0,0x0, + 0x0,0x0,0x0,0x35,0xa,0x8d,0x60,0x0,0x0,0x0,0x0,0x36,0x16,0x2d,0xe0,0x0, + 0x0,0x0,0x0,0x36,0xf3,0xa9,0xe0,0x0,0x0,0x0,0x0,0x37,0xf6,0xf,0xe0,0x0, + 0x0,0x0,0x0,0x38,0xd3,0x8b,0xe0,0x0,0x0,0x0,0x0,0x39,0xd5,0xf1,0xe0,0x0, + 0x0,0x0,0x0,0x3a,0xb3,0x6d,0xe0,0x0,0x0,0x0,0x0,0x3b,0xbf,0xe,0x60,0x0, + 0x0,0x0,0x0,0x3c,0x93,0x4f,0xe0,0x0,0x0,0x0,0x0,0x3d,0x9e,0xf0,0x60,0x0, + 0x0,0x0,0x0,0x3e,0x73,0x31,0xe0,0x0,0x0,0x0,0x0,0x3f,0x7e,0xd2,0x60,0x0, + 0x0,0x0,0x0,0x40,0x5c,0x4e,0x60,0x0,0x0,0x0,0x0,0x41,0x5e,0xb4,0x60,0x0, + 0x0,0x0,0x0,0x42,0x3c,0x30,0x60,0x0,0x0,0x0,0x0,0x43,0x3e,0x96,0x60,0x0, + 0x0,0x0,0x0,0x44,0x1c,0x12,0x60,0x0,0x0,0x0,0x0,0x45,0x1e,0x78,0x60,0x0, + 0x0,0x0,0x0,0x45,0xfb,0xf4,0x60,0x0,0x0,0x0,0x0,0x46,0xfe,0x5a,0x60,0x0, + 0x0,0x0,0x0,0x47,0xf7,0x85,0xe0,0x0,0x0,0x0,0x0,0x48,0xde,0x3c,0x60,0x0, + 0x0,0x0,0x0,0x49,0xd7,0x67,0xe0,0x0,0x0,0x0,0x0,0x4a,0xbe,0x1e,0x60,0x0, + 0x0,0x0,0x0,0x4b,0xb7,0x49,0xe0,0x0,0x0,0x0,0x0,0x4c,0x9e,0x0,0x60,0x0, + 0x0,0x0,0x0,0x4d,0x97,0x2b,0xe0,0x0,0x0,0x0,0x0,0x4e,0x7d,0xe2,0x60,0x0, + 0x0,0x0,0x0,0x4f,0x77,0xd,0xe0,0x0,0x0,0x0,0x0,0x50,0x66,0xfe,0xe0,0x0, + 0x0,0x0,0x0,0x51,0x60,0x2a,0x60,0x0,0x0,0x0,0x0,0x52,0x46,0xe0,0xe0,0x0, + 0x0,0x0,0x0,0x53,0x40,0xc,0x60,0x0,0x0,0x0,0x0,0x54,0x26,0xc2,0xe0,0x0, + 0x0,0x0,0x0,0x55,0x1f,0xee,0x60,0x0,0x0,0x0,0x0,0x56,0x6,0xa4,0xe0,0x0, + 0x0,0x0,0x0,0x56,0xff,0xd0,0x60,0x0,0x0,0x0,0x0,0x57,0xe6,0x86,0xe0,0x0, + 0x0,0x0,0x0,0x58,0xdf,0xb2,0x60,0x0,0x0,0x0,0x0,0x59,0xc6,0x68,0xe0,0x0, + 0x0,0x0,0x0,0x5a,0xbf,0x94,0x60,0x0,0x0,0x0,0x0,0x5b,0xaf,0x85,0x60,0x0, + 0x0,0x0,0x0,0x5c,0xa8,0xb0,0xe0,0x0,0x0,0x0,0x0,0x5d,0x8f,0x67,0x60,0x0, + 0x0,0x0,0x0,0x5e,0x88,0x92,0xe0,0x0,0x0,0x0,0x0,0x5f,0x6f,0x49,0x60,0x0, + 0x0,0x0,0x0,0x60,0x68,0x74,0xe0,0x0,0x0,0x0,0x0,0x61,0x4f,0x2b,0x60,0x0, + 0x0,0x0,0x0,0x62,0x48,0x56,0xe0,0x0,0x0,0x0,0x0,0x63,0x2f,0xd,0x60,0x0, + 0x0,0x0,0x0,0x64,0x28,0x38,0xe0,0x0,0x0,0x0,0x0,0x65,0xe,0xef,0x60,0x0, + 0x0,0x0,0x0,0x66,0x11,0x55,0x60,0x0,0x0,0x0,0x0,0x66,0xf8,0xb,0xe0,0x0, + 0x0,0x0,0x0,0x67,0xf1,0x37,0x60,0x0,0x0,0x0,0x0,0x68,0xd7,0xed,0xe0,0x0, + 0x0,0x0,0x0,0x69,0xd1,0x19,0x60,0x0,0x0,0x0,0x0,0x6a,0xb7,0xcf,0xe0,0x0, + 0x0,0x0,0x0,0x6b,0xb0,0xfb,0x60,0x0,0x0,0x0,0x0,0x6c,0x97,0xb1,0xe0,0x0, + 0x0,0x0,0x0,0x6d,0x90,0xdd,0x60,0x0,0x0,0x0,0x0,0x6e,0x77,0x93,0xe0,0x0, + 0x0,0x0,0x0,0x6f,0x70,0xbf,0x60,0x0,0x0,0x0,0x0,0x70,0x60,0xb0,0x60,0x0, + 0x0,0x0,0x0,0x71,0x59,0xdb,0xe0,0x0,0x0,0x0,0x0,0x72,0x40,0x92,0x60,0x0, + 0x0,0x0,0x0,0x73,0x39,0xbd,0xe0,0x0,0x0,0x0,0x0,0x74,0x20,0x74,0x60,0x0, + 0x0,0x0,0x0,0x75,0x19,0x9f,0xe0,0x0,0x0,0x0,0x0,0x76,0x0,0x56,0x60,0x0, + 0x0,0x0,0x0,0x76,0xf9,0x81,0xe0,0x0,0x0,0x0,0x0,0x77,0xe0,0x38,0x60,0x0, + 0x0,0x0,0x0,0x78,0xd9,0x63,0xe0,0x0,0x0,0x0,0x0,0x79,0xc0,0x1a,0x60,0x0, + 0x0,0x0,0x0,0x7a,0xb9,0x45,0xe0,0x0,0x0,0x0,0x0,0x7b,0xa9,0x36,0xe0,0x0, + 0x0,0x0,0x0,0x7c,0xa2,0x62,0x60,0x0,0x0,0x0,0x0,0x7d,0x89,0x18,0xe0,0x0, + 0x0,0x0,0x0,0x7e,0x82,0x44,0x60,0x0,0x0,0x0,0x0,0x7f,0x68,0xfa,0xe0,0x0, + 0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x4,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x2,0x0,0x0,0xab,0xfc,0x0,0x0, + 0x0,0x0,0xac,0x44,0x0,0x4,0x0,0x0,0xc1,0x5c,0x1,0xa,0x0,0x0,0xb3,0x4c, + 0x0,0x10,0x0,0x0,0xb3,0x4c,0x0,0x10,0x4c,0x4d,0x54,0x0,0x2b,0x31,0x32,0x31, + 0x35,0x0,0x2b,0x31,0x33,0x34,0x35,0x0,0x2b,0x31,0x32,0x34,0x35,0x0,0x0,0x0, + 0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2b,0x31,0x32,0x34,0x35,0x3e, + 0x2d,0x31,0x32,0x3a,0x34,0x35,0x3c,0x2b,0x31,0x33,0x34,0x35,0x3e,0x2c,0x4d,0x39, + 0x2e,0x35,0x2e,0x30,0x2f,0x32,0x3a,0x34,0x35,0x2c,0x4d,0x34,0x2e,0x31,0x2e,0x30, + 0x2f,0x33,0x3a,0x34,0x35,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Auckland + 0x0,0x0,0x9,0x9c, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x9c,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x13,0x80,0x0,0x0,0x0,0xb0, + 0xb4,0xb2,0xe8,0xb1,0x51,0x87,0x58,0xb2,0x78,0xe5,0x68,0xb3,0x43,0xe5,0x60,0xb4, + 0x58,0xc7,0x68,0xb5,0x23,0xc7,0x60,0xb6,0x38,0xa9,0x68,0xb7,0x3,0xa9,0x60,0xb8, + 0x18,0x8b,0x68,0xb8,0xec,0xc5,0xe0,0xb9,0xf8,0x6d,0x68,0xba,0xcc,0xa7,0xe0,0xbb, + 0xd8,0x4f,0x68,0xbc,0xe3,0xe8,0xe0,0xbd,0xae,0xf6,0xe8,0xbe,0xc3,0xca,0xe0,0xbf, + 0x8e,0xd8,0xe8,0xc0,0xa3,0xac,0xe0,0xc1,0x6e,0xba,0xe8,0xc2,0x83,0x8e,0xe0,0xc3, + 0x4e,0x9c,0xe8,0xc4,0x63,0x70,0xe0,0xc5,0x2e,0x7e,0xe8,0xc6,0x4c,0x8d,0x60,0xc7, + 0xe,0x60,0xe8,0xc8,0x2c,0x6f,0x60,0xc8,0xf7,0x7d,0x68,0xd2,0xda,0x9a,0x40,0x9, + 0x18,0xfd,0xe0,0x9,0xac,0xa5,0xe0,0xa,0xef,0xa5,0x60,0xb,0x9e,0xfc,0xe0,0xc, + 0xd8,0xc1,0xe0,0xd,0x7e,0xde,0xe0,0xe,0xb8,0xa3,0xe0,0xf,0x5e,0xc0,0xe0,0x10, + 0x98,0x85,0xe0,0x11,0x3e,0xa2,0xe0,0x12,0x78,0x67,0xe0,0x13,0x1e,0x84,0xe0,0x14, + 0x58,0x49,0xe0,0x14,0xfe,0x66,0xe0,0x16,0x38,0x2b,0xe0,0x16,0xe7,0x83,0x60,0x18, + 0x21,0x48,0x60,0x18,0xc7,0x65,0x60,0x1a,0x1,0x2a,0x60,0x1a,0xa7,0x47,0x60,0x1b, + 0xe1,0xc,0x60,0x1c,0x87,0x29,0x60,0x1d,0xc0,0xee,0x60,0x1e,0x67,0xb,0x60,0x1f, + 0xa0,0xd0,0x60,0x20,0x46,0xed,0x60,0x21,0x80,0xb2,0x60,0x22,0x30,0x9,0xe0,0x23, + 0x69,0xce,0xe0,0x24,0xf,0xeb,0xe0,0x25,0x2e,0x1,0x60,0x26,0x2,0x42,0xe0,0x27, + 0xd,0xe3,0x60,0x27,0xe2,0x24,0xe0,0x28,0xed,0xc5,0x60,0x29,0xc2,0x6,0xe0,0x2a, + 0xcd,0xa7,0x60,0x2b,0xab,0x23,0x60,0x2c,0xad,0x89,0x60,0x2d,0x8b,0x5,0x60,0x2e, + 0x8d,0x6b,0x60,0x2f,0x6a,0xe7,0x60,0x30,0x6d,0x4d,0x60,0x31,0x4a,0xc9,0x60,0x32, + 0x56,0x69,0xe0,0x33,0x2a,0xab,0x60,0x34,0x36,0x4b,0xe0,0x35,0xa,0x8d,0x60,0x36, + 0x16,0x2d,0xe0,0x36,0xf3,0xa9,0xe0,0x37,0xf6,0xf,0xe0,0x38,0xd3,0x8b,0xe0,0x39, + 0xd5,0xf1,0xe0,0x3a,0xb3,0x6d,0xe0,0x3b,0xbf,0xe,0x60,0x3c,0x93,0x4f,0xe0,0x3d, + 0x9e,0xf0,0x60,0x3e,0x73,0x31,0xe0,0x3f,0x7e,0xd2,0x60,0x40,0x5c,0x4e,0x60,0x41, + 0x5e,0xb4,0x60,0x42,0x3c,0x30,0x60,0x43,0x3e,0x96,0x60,0x44,0x1c,0x12,0x60,0x45, + 0x1e,0x78,0x60,0x45,0xfb,0xf4,0x60,0x46,0xfe,0x5a,0x60,0x47,0xf7,0x85,0xe0,0x48, + 0xde,0x3c,0x60,0x49,0xd7,0x67,0xe0,0x4a,0xbe,0x1e,0x60,0x4b,0xb7,0x49,0xe0,0x4c, + 0x9e,0x0,0x60,0x4d,0x97,0x2b,0xe0,0x4e,0x7d,0xe2,0x60,0x4f,0x77,0xd,0xe0,0x50, + 0x66,0xfe,0xe0,0x51,0x60,0x2a,0x60,0x52,0x46,0xe0,0xe0,0x53,0x40,0xc,0x60,0x54, + 0x26,0xc2,0xe0,0x55,0x1f,0xee,0x60,0x56,0x6,0xa4,0xe0,0x56,0xff,0xd0,0x60,0x57, + 0xe6,0x86,0xe0,0x58,0xdf,0xb2,0x60,0x59,0xc6,0x68,0xe0,0x5a,0xbf,0x94,0x60,0x5b, + 0xaf,0x85,0x60,0x5c,0xa8,0xb0,0xe0,0x5d,0x8f,0x67,0x60,0x5e,0x88,0x92,0xe0,0x5f, + 0x6f,0x49,0x60,0x60,0x68,0x74,0xe0,0x61,0x4f,0x2b,0x60,0x62,0x48,0x56,0xe0,0x63, + 0x2f,0xd,0x60,0x64,0x28,0x38,0xe0,0x65,0xe,0xef,0x60,0x66,0x11,0x55,0x60,0x66, + 0xf8,0xb,0xe0,0x67,0xf1,0x37,0x60,0x68,0xd7,0xed,0xe0,0x69,0xd1,0x19,0x60,0x6a, + 0xb7,0xcf,0xe0,0x6b,0xb0,0xfb,0x60,0x6c,0x97,0xb1,0xe0,0x6d,0x90,0xdd,0x60,0x6e, + 0x77,0x93,0xe0,0x6f,0x70,0xbf,0x60,0x70,0x60,0xb0,0x60,0x71,0x59,0xdb,0xe0,0x72, + 0x40,0x92,0x60,0x73,0x39,0xbd,0xe0,0x74,0x20,0x74,0x60,0x75,0x19,0x9f,0xe0,0x76, + 0x0,0x56,0x60,0x76,0xf9,0x81,0xe0,0x77,0xe0,0x38,0x60,0x78,0xd9,0x63,0xe0,0x79, + 0xc0,0x1a,0x60,0x7a,0xb9,0x45,0xe0,0x7b,0xa9,0x36,0xe0,0x7c,0xa2,0x62,0x60,0x7d, + 0x89,0x18,0xe0,0x7e,0x82,0x44,0x60,0x7f,0x68,0xfa,0xe0,0x2,0x1,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x6,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x0,0x0,0xa3,0xd8,0x0,0x0,0x0,0x0,0xaf, + 0xc8,0x1,0x4,0x0,0x0,0xa1,0xb8,0x0,0x9,0x0,0x0,0xa8,0xc0,0x1,0x4,0x0, + 0x0,0xb6,0xd0,0x1,0xe,0x0,0x0,0xa8,0xc0,0x0,0x4,0x0,0x0,0xa8,0xc0,0x0, + 0x4,0x4c,0x4d,0x54,0x0,0x4e,0x5a,0x53,0x54,0x0,0x4e,0x5a,0x4d,0x54,0x0,0x4e, + 0x5a,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x9d,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x13,0xf8,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x41,0xb7,0x4c,0xa8,0xff,0xff, + 0xff,0xff,0xb0,0xb4,0xb2,0xe8,0xff,0xff,0xff,0xff,0xb1,0x51,0x87,0x58,0xff,0xff, + 0xff,0xff,0xb2,0x78,0xe5,0x68,0xff,0xff,0xff,0xff,0xb3,0x43,0xe5,0x60,0xff,0xff, + 0xff,0xff,0xb4,0x58,0xc7,0x68,0xff,0xff,0xff,0xff,0xb5,0x23,0xc7,0x60,0xff,0xff, + 0xff,0xff,0xb6,0x38,0xa9,0x68,0xff,0xff,0xff,0xff,0xb7,0x3,0xa9,0x60,0xff,0xff, + 0xff,0xff,0xb8,0x18,0x8b,0x68,0xff,0xff,0xff,0xff,0xb8,0xec,0xc5,0xe0,0xff,0xff, + 0xff,0xff,0xb9,0xf8,0x6d,0x68,0xff,0xff,0xff,0xff,0xba,0xcc,0xa7,0xe0,0xff,0xff, + 0xff,0xff,0xbb,0xd8,0x4f,0x68,0xff,0xff,0xff,0xff,0xbc,0xe3,0xe8,0xe0,0xff,0xff, + 0xff,0xff,0xbd,0xae,0xf6,0xe8,0xff,0xff,0xff,0xff,0xbe,0xc3,0xca,0xe0,0xff,0xff, + 0xff,0xff,0xbf,0x8e,0xd8,0xe8,0xff,0xff,0xff,0xff,0xc0,0xa3,0xac,0xe0,0xff,0xff, + 0xff,0xff,0xc1,0x6e,0xba,0xe8,0xff,0xff,0xff,0xff,0xc2,0x83,0x8e,0xe0,0xff,0xff, + 0xff,0xff,0xc3,0x4e,0x9c,0xe8,0xff,0xff,0xff,0xff,0xc4,0x63,0x70,0xe0,0xff,0xff, + 0xff,0xff,0xc5,0x2e,0x7e,0xe8,0xff,0xff,0xff,0xff,0xc6,0x4c,0x8d,0x60,0xff,0xff, + 0xff,0xff,0xc7,0xe,0x60,0xe8,0xff,0xff,0xff,0xff,0xc8,0x2c,0x6f,0x60,0xff,0xff, + 0xff,0xff,0xc8,0xf7,0x7d,0x68,0xff,0xff,0xff,0xff,0xd2,0xda,0x9a,0x40,0x0,0x0, + 0x0,0x0,0x9,0x18,0xfd,0xe0,0x0,0x0,0x0,0x0,0x9,0xac,0xa5,0xe0,0x0,0x0, + 0x0,0x0,0xa,0xef,0xa5,0x60,0x0,0x0,0x0,0x0,0xb,0x9e,0xfc,0xe0,0x0,0x0, + 0x0,0x0,0xc,0xd8,0xc1,0xe0,0x0,0x0,0x0,0x0,0xd,0x7e,0xde,0xe0,0x0,0x0, + 0x0,0x0,0xe,0xb8,0xa3,0xe0,0x0,0x0,0x0,0x0,0xf,0x5e,0xc0,0xe0,0x0,0x0, + 0x0,0x0,0x10,0x98,0x85,0xe0,0x0,0x0,0x0,0x0,0x11,0x3e,0xa2,0xe0,0x0,0x0, + 0x0,0x0,0x12,0x78,0x67,0xe0,0x0,0x0,0x0,0x0,0x13,0x1e,0x84,0xe0,0x0,0x0, + 0x0,0x0,0x14,0x58,0x49,0xe0,0x0,0x0,0x0,0x0,0x14,0xfe,0x66,0xe0,0x0,0x0, + 0x0,0x0,0x16,0x38,0x2b,0xe0,0x0,0x0,0x0,0x0,0x16,0xe7,0x83,0x60,0x0,0x0, + 0x0,0x0,0x18,0x21,0x48,0x60,0x0,0x0,0x0,0x0,0x18,0xc7,0x65,0x60,0x0,0x0, + 0x0,0x0,0x1a,0x1,0x2a,0x60,0x0,0x0,0x0,0x0,0x1a,0xa7,0x47,0x60,0x0,0x0, + 0x0,0x0,0x1b,0xe1,0xc,0x60,0x0,0x0,0x0,0x0,0x1c,0x87,0x29,0x60,0x0,0x0, + 0x0,0x0,0x1d,0xc0,0xee,0x60,0x0,0x0,0x0,0x0,0x1e,0x67,0xb,0x60,0x0,0x0, + 0x0,0x0,0x1f,0xa0,0xd0,0x60,0x0,0x0,0x0,0x0,0x20,0x46,0xed,0x60,0x0,0x0, + 0x0,0x0,0x21,0x80,0xb2,0x60,0x0,0x0,0x0,0x0,0x22,0x30,0x9,0xe0,0x0,0x0, + 0x0,0x0,0x23,0x69,0xce,0xe0,0x0,0x0,0x0,0x0,0x24,0xf,0xeb,0xe0,0x0,0x0, + 0x0,0x0,0x25,0x2e,0x1,0x60,0x0,0x0,0x0,0x0,0x26,0x2,0x42,0xe0,0x0,0x0, + 0x0,0x0,0x27,0xd,0xe3,0x60,0x0,0x0,0x0,0x0,0x27,0xe2,0x24,0xe0,0x0,0x0, + 0x0,0x0,0x28,0xed,0xc5,0x60,0x0,0x0,0x0,0x0,0x29,0xc2,0x6,0xe0,0x0,0x0, + 0x0,0x0,0x2a,0xcd,0xa7,0x60,0x0,0x0,0x0,0x0,0x2b,0xab,0x23,0x60,0x0,0x0, + 0x0,0x0,0x2c,0xad,0x89,0x60,0x0,0x0,0x0,0x0,0x2d,0x8b,0x5,0x60,0x0,0x0, + 0x0,0x0,0x2e,0x8d,0x6b,0x60,0x0,0x0,0x0,0x0,0x2f,0x6a,0xe7,0x60,0x0,0x0, + 0x0,0x0,0x30,0x6d,0x4d,0x60,0x0,0x0,0x0,0x0,0x31,0x4a,0xc9,0x60,0x0,0x0, + 0x0,0x0,0x32,0x56,0x69,0xe0,0x0,0x0,0x0,0x0,0x33,0x2a,0xab,0x60,0x0,0x0, + 0x0,0x0,0x34,0x36,0x4b,0xe0,0x0,0x0,0x0,0x0,0x35,0xa,0x8d,0x60,0x0,0x0, + 0x0,0x0,0x36,0x16,0x2d,0xe0,0x0,0x0,0x0,0x0,0x36,0xf3,0xa9,0xe0,0x0,0x0, + 0x0,0x0,0x37,0xf6,0xf,0xe0,0x0,0x0,0x0,0x0,0x38,0xd3,0x8b,0xe0,0x0,0x0, + 0x0,0x0,0x39,0xd5,0xf1,0xe0,0x0,0x0,0x0,0x0,0x3a,0xb3,0x6d,0xe0,0x0,0x0, + 0x0,0x0,0x3b,0xbf,0xe,0x60,0x0,0x0,0x0,0x0,0x3c,0x93,0x4f,0xe0,0x0,0x0, + 0x0,0x0,0x3d,0x9e,0xf0,0x60,0x0,0x0,0x0,0x0,0x3e,0x73,0x31,0xe0,0x0,0x0, + 0x0,0x0,0x3f,0x7e,0xd2,0x60,0x0,0x0,0x0,0x0,0x40,0x5c,0x4e,0x60,0x0,0x0, + 0x0,0x0,0x41,0x5e,0xb4,0x60,0x0,0x0,0x0,0x0,0x42,0x3c,0x30,0x60,0x0,0x0, + 0x0,0x0,0x43,0x3e,0x96,0x60,0x0,0x0,0x0,0x0,0x44,0x1c,0x12,0x60,0x0,0x0, + 0x0,0x0,0x45,0x1e,0x78,0x60,0x0,0x0,0x0,0x0,0x45,0xfb,0xf4,0x60,0x0,0x0, + 0x0,0x0,0x46,0xfe,0x5a,0x60,0x0,0x0,0x0,0x0,0x47,0xf7,0x85,0xe0,0x0,0x0, + 0x0,0x0,0x48,0xde,0x3c,0x60,0x0,0x0,0x0,0x0,0x49,0xd7,0x67,0xe0,0x0,0x0, + 0x0,0x0,0x4a,0xbe,0x1e,0x60,0x0,0x0,0x0,0x0,0x4b,0xb7,0x49,0xe0,0x0,0x0, + 0x0,0x0,0x4c,0x9e,0x0,0x60,0x0,0x0,0x0,0x0,0x4d,0x97,0x2b,0xe0,0x0,0x0, + 0x0,0x0,0x4e,0x7d,0xe2,0x60,0x0,0x0,0x0,0x0,0x4f,0x77,0xd,0xe0,0x0,0x0, + 0x0,0x0,0x50,0x66,0xfe,0xe0,0x0,0x0,0x0,0x0,0x51,0x60,0x2a,0x60,0x0,0x0, + 0x0,0x0,0x52,0x46,0xe0,0xe0,0x0,0x0,0x0,0x0,0x53,0x40,0xc,0x60,0x0,0x0, + 0x0,0x0,0x54,0x26,0xc2,0xe0,0x0,0x0,0x0,0x0,0x55,0x1f,0xee,0x60,0x0,0x0, + 0x0,0x0,0x56,0x6,0xa4,0xe0,0x0,0x0,0x0,0x0,0x56,0xff,0xd0,0x60,0x0,0x0, + 0x0,0x0,0x57,0xe6,0x86,0xe0,0x0,0x0,0x0,0x0,0x58,0xdf,0xb2,0x60,0x0,0x0, + 0x0,0x0,0x59,0xc6,0x68,0xe0,0x0,0x0,0x0,0x0,0x5a,0xbf,0x94,0x60,0x0,0x0, + 0x0,0x0,0x5b,0xaf,0x85,0x60,0x0,0x0,0x0,0x0,0x5c,0xa8,0xb0,0xe0,0x0,0x0, + 0x0,0x0,0x5d,0x8f,0x67,0x60,0x0,0x0,0x0,0x0,0x5e,0x88,0x92,0xe0,0x0,0x0, + 0x0,0x0,0x5f,0x6f,0x49,0x60,0x0,0x0,0x0,0x0,0x60,0x68,0x74,0xe0,0x0,0x0, + 0x0,0x0,0x61,0x4f,0x2b,0x60,0x0,0x0,0x0,0x0,0x62,0x48,0x56,0xe0,0x0,0x0, + 0x0,0x0,0x63,0x2f,0xd,0x60,0x0,0x0,0x0,0x0,0x64,0x28,0x38,0xe0,0x0,0x0, + 0x0,0x0,0x65,0xe,0xef,0x60,0x0,0x0,0x0,0x0,0x66,0x11,0x55,0x60,0x0,0x0, + 0x0,0x0,0x66,0xf8,0xb,0xe0,0x0,0x0,0x0,0x0,0x67,0xf1,0x37,0x60,0x0,0x0, + 0x0,0x0,0x68,0xd7,0xed,0xe0,0x0,0x0,0x0,0x0,0x69,0xd1,0x19,0x60,0x0,0x0, + 0x0,0x0,0x6a,0xb7,0xcf,0xe0,0x0,0x0,0x0,0x0,0x6b,0xb0,0xfb,0x60,0x0,0x0, + 0x0,0x0,0x6c,0x97,0xb1,0xe0,0x0,0x0,0x0,0x0,0x6d,0x90,0xdd,0x60,0x0,0x0, + 0x0,0x0,0x6e,0x77,0x93,0xe0,0x0,0x0,0x0,0x0,0x6f,0x70,0xbf,0x60,0x0,0x0, + 0x0,0x0,0x70,0x60,0xb0,0x60,0x0,0x0,0x0,0x0,0x71,0x59,0xdb,0xe0,0x0,0x0, + 0x0,0x0,0x72,0x40,0x92,0x60,0x0,0x0,0x0,0x0,0x73,0x39,0xbd,0xe0,0x0,0x0, + 0x0,0x0,0x74,0x20,0x74,0x60,0x0,0x0,0x0,0x0,0x75,0x19,0x9f,0xe0,0x0,0x0, + 0x0,0x0,0x76,0x0,0x56,0x60,0x0,0x0,0x0,0x0,0x76,0xf9,0x81,0xe0,0x0,0x0, + 0x0,0x0,0x77,0xe0,0x38,0x60,0x0,0x0,0x0,0x0,0x78,0xd9,0x63,0xe0,0x0,0x0, + 0x0,0x0,0x79,0xc0,0x1a,0x60,0x0,0x0,0x0,0x0,0x7a,0xb9,0x45,0xe0,0x0,0x0, + 0x0,0x0,0x7b,0xa9,0x36,0xe0,0x0,0x0,0x0,0x0,0x7c,0xa2,0x62,0x60,0x0,0x0, + 0x0,0x0,0x7d,0x89,0x18,0xe0,0x0,0x0,0x0,0x0,0x7e,0x82,0x44,0x60,0x0,0x0, + 0x0,0x0,0x7f,0x68,0xfa,0xe0,0x0,0x2,0x1,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x6,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x0,0x0,0xa3,0xd8,0x0,0x0,0x0,0x0,0xaf,0xc8,0x1,0x4,0x0, + 0x0,0xa1,0xb8,0x0,0x9,0x0,0x0,0xa8,0xc0,0x1,0x4,0x0,0x0,0xb6,0xd0,0x1, + 0xe,0x0,0x0,0xa8,0xc0,0x0,0x4,0x0,0x0,0xa8,0xc0,0x0,0x4,0x4c,0x4d,0x54, + 0x0,0x4e,0x5a,0x53,0x54,0x0,0x4e,0x5a,0x4d,0x54,0x0,0x4e,0x5a,0x44,0x54,0x0, + 0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x4e, + 0x5a,0x53,0x54,0x2d,0x31,0x32,0x4e,0x5a,0x44,0x54,0x2c,0x4d,0x39,0x2e,0x35,0x2e, + 0x30,0x2c,0x4d,0x34,0x2e,0x31,0x2e,0x30,0x2f,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Samoa + 0x0,0x0,0x0,0xc4, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x91, + 0x5,0xfb,0x8,0x1,0x2,0x0,0x0,0xb1,0x78,0x0,0x0,0xff,0xff,0x5f,0xf8,0x0, + 0x0,0xff,0xff,0x65,0x50,0x0,0x4,0x4c,0x4d,0x54,0x0,0x53,0x53,0x54,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0, + 0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0, + 0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x6e,0x3d,0xc8, + 0x8,0xff,0xff,0xff,0xff,0x91,0x5,0xfb,0x8,0x0,0x1,0x2,0x0,0x0,0xb1,0x78, + 0x0,0x0,0xff,0xff,0x5f,0xf8,0x0,0x0,0xff,0xff,0x65,0x50,0x0,0x4,0x4c,0x4d, + 0x54,0x0,0x53,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x53,0x53,0x54, + 0x31,0x31,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Gambier + 0x0,0x0,0x0,0xba, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x94, + 0x50,0x48,0x4,0x7f,0xff,0xff,0xff,0x0,0x1,0x1,0xff,0xff,0x81,0x7c,0x0,0x0, + 0xff,0xff,0x81,0x70,0x0,0x4,0x4c,0x4d,0x54,0x0,0x2d,0x30,0x39,0x0,0x0,0x0, + 0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x94,0x50,0x48,0x4,0x0,0x0, + 0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x1,0xff,0xff,0x81,0x7c,0x0,0x0,0xff, + 0xff,0x81,0x70,0x0,0x4,0x4c,0x4d,0x54,0x0,0x2d,0x30,0x39,0x0,0x0,0x0,0x0, + 0x0,0xa,0x3c,0x2d,0x30,0x39,0x3e,0x39,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Kosrae + 0x0,0x0,0x0,0xfb, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0xff, + 0x86,0x1b,0x50,0x36,0x8b,0x67,0x40,0x7f,0xff,0xff,0xff,0x1,0x2,0x1,0x1,0x0, + 0x0,0x98,0xcc,0x0,0x0,0x0,0x0,0x9a,0xb0,0x0,0x4,0x0,0x0,0xa8,0xc0,0x0, + 0x8,0x0,0x0,0x9a,0xb0,0x0,0x4,0x4c,0x4d,0x54,0x0,0x2b,0x31,0x31,0x0,0x2b, + 0x31,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0, + 0x0,0x0,0x4,0x0,0x0,0x0,0xc,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff, + 0xff,0xff,0xff,0x7e,0x36,0x1c,0x34,0xff,0xff,0xff,0xff,0xff,0x86,0x1b,0x50,0x0, + 0x0,0x0,0x0,0x36,0x8b,0x67,0x40,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0, + 0x1,0x2,0x1,0x1,0x0,0x0,0x98,0xcc,0x0,0x0,0x0,0x0,0x9a,0xb0,0x0,0x4, + 0x0,0x0,0xa8,0xc0,0x0,0x8,0x0,0x0,0x9a,0xb0,0x0,0x4,0x4c,0x4d,0x54,0x0, + 0x2b,0x31,0x31,0x0,0x2b,0x31,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xa,0x3c,0x2b,0x31,0x31,0x3e,0x2d,0x31,0x31,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Tahiti + 0x0,0x0,0x0,0xbb, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x94, + 0x50,0x55,0xb8,0x7f,0xff,0xff,0xff,0x0,0x1,0x1,0xff,0xff,0x73,0xc8,0x0,0x0, + 0xff,0xff,0x73,0x60,0x0,0x4,0x4c,0x4d,0x54,0x0,0x2d,0x31,0x30,0x0,0x0,0x0, + 0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x94,0x50,0x55,0xb8,0x0,0x0, + 0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x1,0xff,0xff,0x73,0xc8,0x0,0x0,0xff, + 0xff,0x73,0x60,0x0,0x4,0x4c,0x4d,0x54,0x0,0x2d,0x31,0x30,0x0,0x0,0x0,0x0, + 0x0,0xa,0x3c,0x2d,0x31,0x30,0x3e,0x31,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Guadalcanal + 0x0,0x0,0x0,0xbc, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x94, + 0x4f,0x33,0x8c,0x7f,0xff,0xff,0xff,0x0,0x1,0x1,0x0,0x0,0x95,0xf4,0x0,0x0, + 0x0,0x0,0x9a,0xb0,0x0,0x4,0x4c,0x4d,0x54,0x0,0x2b,0x31,0x31,0x0,0x0,0x0, + 0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x94,0x4f,0x33,0x8c,0x0,0x0, + 0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x1,0x0,0x0,0x95,0xf4,0x0,0x0,0x0, + 0x0,0x9a,0xb0,0x0,0x4,0x4c,0x4d,0x54,0x0,0x2b,0x31,0x31,0x0,0x0,0x0,0x0, + 0x0,0xa,0x3c,0x2b,0x31,0x31,0x3e,0x2d,0x31,0x31,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Funafuti + 0x0,0x0,0x0,0xb7, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x7f, + 0xff,0xff,0xff,0x1,0x1,0x0,0x0,0xa8,0x4,0x0,0x0,0x0,0x0,0xa8,0xc0,0x0, + 0x4,0x4c,0x4d,0x54,0x0,0x2b,0x31,0x32,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, + 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x3,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0x7e,0x36,0xc,0xfc,0x0,0x0,0x0,0x0,0x7f,0xff,0xff, + 0xff,0x0,0x1,0x1,0x0,0x0,0xa8,0x4,0x0,0x0,0x0,0x0,0xa8,0xc0,0x0,0x4, + 0x4c,0x4d,0x54,0x0,0x2b,0x31,0x32,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2b,0x31, + 0x32,0x3e,0x2d,0x31,0x32,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Kwajalein + 0x0,0x0,0x1,0x3, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x10,0x80,0x0,0x0,0x0,0xff, + 0x86,0x1b,0x50,0x2c,0x74,0xbc,0xc0,0x7f,0xff,0xff,0xff,0x1,0x2,0x3,0x3,0x0, + 0x0,0x9c,0xe0,0x0,0x0,0x0,0x0,0x9a,0xb0,0x0,0x4,0xff,0xff,0x57,0x40,0x0, + 0x8,0x0,0x0,0xa8,0xc0,0x0,0xc,0x4c,0x4d,0x54,0x0,0x2b,0x31,0x31,0x0,0x2d, + 0x31,0x32,0x0,0x2b,0x31,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x5,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x10,0xf8,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x7e,0x36,0x18,0x20,0xff,0xff,0xff,0xff,0xff, + 0x86,0x1b,0x50,0x0,0x0,0x0,0x0,0x2c,0x74,0xbc,0xc0,0x0,0x0,0x0,0x0,0x7f, + 0xff,0xff,0xff,0x0,0x1,0x2,0x3,0x3,0x0,0x0,0x9c,0xe0,0x0,0x0,0x0,0x0, + 0x9a,0xb0,0x0,0x4,0xff,0xff,0x57,0x40,0x0,0x8,0x0,0x0,0xa8,0xc0,0x0,0xc, + 0x4c,0x4d,0x54,0x0,0x2b,0x31,0x31,0x0,0x2d,0x31,0x32,0x0,0x2b,0x31,0x32,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2b,0x31,0x32,0x3e,0x2d,0x31, + 0x32,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Pitcairn + 0x0,0x0,0x0,0xdf, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xe,0x80,0x0,0x0,0x0,0x35, + 0x44,0x42,0x8,0x7f,0xff,0xff,0xff,0x1,0x2,0x2,0xff,0xff,0x86,0xc,0x0,0x0, + 0xff,0xff,0x88,0x78,0x0,0x4,0xff,0xff,0x8f,0x80,0x0,0xa,0x4c,0x4d,0x54,0x0, + 0x2d,0x30,0x38,0x33,0x30,0x0,0x2d,0x30,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xe,0xf8,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x7e,0x37,0x2e,0xf4,0x0,0x0,0x0,0x0, + 0x35,0x44,0x42,0x8,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x2,0x2, + 0xff,0xff,0x86,0xc,0x0,0x0,0xff,0xff,0x88,0x78,0x0,0x4,0xff,0xff,0x8f,0x80, + 0x0,0xa,0x4c,0x4d,0x54,0x0,0x2d,0x30,0x38,0x33,0x30,0x0,0x2d,0x30,0x38,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2d,0x30,0x38,0x3e,0x38,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Galapagos + 0x0,0x0,0x1,0xc, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0xb6, + 0xa4,0x4c,0x80,0x1e,0x18,0xc4,0x50,0x2b,0x17,0xa,0xe0,0x2b,0x71,0xf4,0x50,0x7f, + 0xff,0xff,0xff,0x0,0x1,0x3,0x2,0x3,0x3,0xff,0xff,0xac,0x0,0x0,0x0,0xff, + 0xff,0xb9,0xb0,0x0,0x4,0xff,0xff,0xb9,0xb0,0x1,0x4,0xff,0xff,0xab,0xa0,0x0, + 0x8,0x4c,0x4d,0x54,0x0,0x2d,0x30,0x35,0x0,0x2d,0x30,0x36,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0, + 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x0,0x0,0x0, + 0xc,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xb6,0xa4,0x4c, + 0x80,0x0,0x0,0x0,0x0,0x1e,0x18,0xc4,0x50,0x0,0x0,0x0,0x0,0x2b,0x17,0xa, + 0xe0,0x0,0x0,0x0,0x0,0x2b,0x71,0xf4,0x50,0x0,0x0,0x0,0x0,0x7f,0xff,0xff, + 0xff,0x0,0x1,0x3,0x2,0x3,0x3,0xff,0xff,0xac,0x0,0x0,0x0,0xff,0xff,0xb9, + 0xb0,0x0,0x4,0xff,0xff,0xb9,0xb0,0x1,0x4,0xff,0xff,0xab,0xa0,0x0,0x8,0x4c, + 0x4d,0x54,0x0,0x2d,0x30,0x35,0x0,0x2d,0x30,0x36,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0xa,0x3c,0x2d,0x30,0x36,0x3e,0x36,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Nicosia + 0x0,0x0,0x7,0xe0, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x80,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0xa5, + 0x77,0x1e,0xb8,0x9,0xed,0xaf,0xe0,0xa,0xdd,0x92,0xd0,0xb,0xfa,0x64,0xe0,0xc, + 0xbe,0xc6,0x50,0xd,0xa4,0x39,0x60,0xe,0x8a,0xe1,0xd0,0xf,0x84,0x1b,0x60,0x10, + 0x75,0x4f,0xd0,0x11,0x63,0xfd,0x60,0x12,0x53,0xe0,0x50,0x13,0x4d,0x19,0xe0,0x14, + 0x33,0xc2,0x50,0x15,0x23,0xc1,0x60,0x16,0x13,0xa4,0x50,0x17,0x3,0xa3,0x60,0x17, + 0xf3,0x86,0x50,0x18,0xe3,0x85,0x60,0x19,0xd3,0x68,0x50,0x1a,0xc3,0x67,0x60,0x1b, + 0xbc,0x84,0xd0,0x1c,0xac,0x83,0xe0,0x1d,0x9c,0x66,0xd0,0x1e,0x8c,0x65,0xe0,0x1f, + 0x7c,0x48,0xd0,0x20,0x6c,0x47,0xe0,0x21,0x5c,0x2a,0xd0,0x22,0x4c,0x29,0xe0,0x23, + 0x3c,0xc,0xd0,0x24,0x2c,0xb,0xe0,0x25,0x1b,0xee,0xd0,0x26,0xb,0xed,0xe0,0x27, + 0x5,0xb,0x50,0x27,0xf5,0xa,0x60,0x28,0xe4,0xed,0x50,0x29,0xd4,0xec,0x60,0x2a, + 0xc4,0xcf,0x50,0x2b,0xb4,0xce,0x60,0x2c,0xa4,0xb1,0x50,0x2d,0x94,0xb0,0x60,0x2e, + 0x84,0x93,0x50,0x2f,0x74,0x92,0x60,0x30,0x64,0x75,0x50,0x31,0x5d,0xae,0xe0,0x32, + 0x4d,0x91,0xd0,0x33,0x3d,0x90,0xe0,0x34,0x2d,0x73,0xd0,0x35,0x1d,0x72,0xe0,0x36, + 0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39, + 0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b,0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d, + 0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f,0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41, + 0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43,0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45, + 0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49, + 0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c, + 0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e,0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50, + 0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54, + 0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56,0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58, + 0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59,0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b, + 0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d,0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f, + 0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61,0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63, + 0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65,0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67, + 0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68,0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a, + 0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c,0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e, + 0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70,0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72, + 0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74,0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76, + 0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79, + 0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d, + 0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x0,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x0,0x0,0x1f,0x48,0x0, + 0x0,0x0,0x0,0x2a,0x30,0x1,0x4,0x0,0x0,0x1c,0x20,0x0,0x9,0x0,0x0,0x1c, + 0x20,0x0,0x9,0x0,0x0,0x2a,0x30,0x1,0x4,0x4c,0x4d,0x54,0x0,0x45,0x45,0x53, + 0x54,0x0,0x45,0x45,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x1,0x1, + 0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x80,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xd,0xf8,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xa5,0x77,0x1e,0xb8,0x0,0x0,0x0,0x0, + 0x9,0xed,0xaf,0xe0,0x0,0x0,0x0,0x0,0xa,0xdd,0x92,0xd0,0x0,0x0,0x0,0x0, + 0xb,0xfa,0x64,0xe0,0x0,0x0,0x0,0x0,0xc,0xbe,0xc6,0x50,0x0,0x0,0x0,0x0, + 0xd,0xa4,0x39,0x60,0x0,0x0,0x0,0x0,0xe,0x8a,0xe1,0xd0,0x0,0x0,0x0,0x0, + 0xf,0x84,0x1b,0x60,0x0,0x0,0x0,0x0,0x10,0x75,0x4f,0xd0,0x0,0x0,0x0,0x0, + 0x11,0x63,0xfd,0x60,0x0,0x0,0x0,0x0,0x12,0x53,0xe0,0x50,0x0,0x0,0x0,0x0, + 0x13,0x4d,0x19,0xe0,0x0,0x0,0x0,0x0,0x14,0x33,0xc2,0x50,0x0,0x0,0x0,0x0, + 0x15,0x23,0xc1,0x60,0x0,0x0,0x0,0x0,0x16,0x13,0xa4,0x50,0x0,0x0,0x0,0x0, + 0x17,0x3,0xa3,0x60,0x0,0x0,0x0,0x0,0x17,0xf3,0x86,0x50,0x0,0x0,0x0,0x0, + 0x18,0xe3,0x85,0x60,0x0,0x0,0x0,0x0,0x19,0xd3,0x68,0x50,0x0,0x0,0x0,0x0, + 0x1a,0xc3,0x67,0x60,0x0,0x0,0x0,0x0,0x1b,0xbc,0x84,0xd0,0x0,0x0,0x0,0x0, + 0x1c,0xac,0x83,0xe0,0x0,0x0,0x0,0x0,0x1d,0x9c,0x66,0xd0,0x0,0x0,0x0,0x0, + 0x1e,0x8c,0x65,0xe0,0x0,0x0,0x0,0x0,0x1f,0x7c,0x48,0xd0,0x0,0x0,0x0,0x0, + 0x20,0x6c,0x47,0xe0,0x0,0x0,0x0,0x0,0x21,0x5c,0x2a,0xd0,0x0,0x0,0x0,0x0, + 0x22,0x4c,0x29,0xe0,0x0,0x0,0x0,0x0,0x23,0x3c,0xc,0xd0,0x0,0x0,0x0,0x0, + 0x24,0x2c,0xb,0xe0,0x0,0x0,0x0,0x0,0x25,0x1b,0xee,0xd0,0x0,0x0,0x0,0x0, + 0x26,0xb,0xed,0xe0,0x0,0x0,0x0,0x0,0x27,0x5,0xb,0x50,0x0,0x0,0x0,0x0, + 0x27,0xf5,0xa,0x60,0x0,0x0,0x0,0x0,0x28,0xe4,0xed,0x50,0x0,0x0,0x0,0x0, + 0x29,0xd4,0xec,0x60,0x0,0x0,0x0,0x0,0x2a,0xc4,0xcf,0x50,0x0,0x0,0x0,0x0, + 0x2b,0xb4,0xce,0x60,0x0,0x0,0x0,0x0,0x2c,0xa4,0xb1,0x50,0x0,0x0,0x0,0x0, + 0x2d,0x94,0xb0,0x60,0x0,0x0,0x0,0x0,0x2e,0x84,0x93,0x50,0x0,0x0,0x0,0x0, + 0x2f,0x74,0x92,0x60,0x0,0x0,0x0,0x0,0x30,0x64,0x75,0x50,0x0,0x0,0x0,0x0, + 0x31,0x5d,0xae,0xe0,0x0,0x0,0x0,0x0,0x32,0x4d,0x91,0xd0,0x0,0x0,0x0,0x0, + 0x33,0x3d,0x90,0xe0,0x0,0x0,0x0,0x0,0x34,0x2d,0x73,0xd0,0x0,0x0,0x0,0x0, + 0x35,0x1d,0x72,0xe0,0x0,0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0, + 0x36,0xfd,0x7f,0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0, + 0x38,0xdd,0x61,0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0,0x0,0x0, + 0x3a,0xbd,0x43,0x10,0x0,0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0,0x0, + 0x3c,0xa6,0x5f,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0,0x0, + 0x3e,0x86,0x41,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0, + 0x40,0x66,0x23,0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0, + 0x42,0x46,0x5,0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0, + 0x44,0x25,0xe7,0x90,0x0,0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0, + 0x46,0x5,0xc9,0x90,0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0, + 0x47,0xee,0xe6,0x10,0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0, + 0x49,0xce,0xc8,0x10,0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0, + 0x4b,0xae,0xaa,0x10,0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0, + 0x4d,0x8e,0x8c,0x10,0x0,0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0, + 0x4f,0x6e,0x6e,0x10,0x0,0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0, + 0x51,0x57,0x8a,0x90,0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0, + 0x53,0x37,0x6c,0x90,0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0, + 0x55,0x17,0x4e,0x90,0x0,0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0, + 0x56,0xf7,0x30,0x90,0x0,0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0, + 0x58,0xd7,0x12,0x90,0x0,0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0, + 0x5a,0xb6,0xf4,0x90,0x0,0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0, + 0x5c,0xa0,0x11,0x10,0x0,0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0, + 0x5e,0x7f,0xf3,0x10,0x0,0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0, + 0x60,0x5f,0xd5,0x10,0x0,0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0, + 0x62,0x3f,0xb7,0x10,0x0,0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0, + 0x64,0x1f,0x99,0x10,0x0,0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0, + 0x66,0x8,0xb5,0x90,0x0,0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0, + 0x67,0xe8,0x97,0x90,0x0,0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0, + 0x69,0xc8,0x79,0x90,0x0,0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0, + 0x6b,0xa8,0x5b,0x90,0x0,0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0, + 0x6d,0x88,0x3d,0x90,0x0,0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0, + 0x6f,0x68,0x1f,0x90,0x0,0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0, + 0x71,0x51,0x3c,0x10,0x0,0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0, + 0x73,0x31,0x1e,0x10,0x0,0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0, + 0x75,0x11,0x0,0x10,0x0,0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0, + 0x76,0xf0,0xe2,0x10,0x0,0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0, + 0x78,0xd0,0xc4,0x10,0x0,0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0, + 0x7a,0xb0,0xa6,0x10,0x0,0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0, + 0x7c,0x99,0xc2,0x90,0x0,0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0, + 0x7e,0x79,0xa4,0x90,0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x0,0x0,0x1f,0x48, + 0x0,0x0,0x0,0x0,0x2a,0x30,0x1,0x4,0x0,0x0,0x1c,0x20,0x0,0x9,0x0,0x0, + 0x1c,0x20,0x0,0x9,0x0,0x0,0x2a,0x30,0x1,0x4,0x4c,0x4d,0x54,0x0,0x45,0x45, + 0x53,0x54,0x0,0x45,0x45,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x1, + 0x1,0xa,0x45,0x45,0x54,0x2d,0x32,0x45,0x45,0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35, + 0x2e,0x30,0x2f,0x33,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30,0x2f,0x34,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Mariehamn + 0x0,0x0,0x7,0x75, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x76,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x80,0x0,0x0,0x0,0xa4, + 0x73,0x6f,0x1b,0xcb,0xce,0x51,0x60,0xcc,0xc0,0xe5,0x60,0x15,0x23,0xdd,0x80,0x16, + 0x13,0xce,0x80,0x17,0x3,0xbf,0x80,0x17,0xf3,0xb0,0x80,0x18,0xe3,0xaf,0x90,0x19, + 0xd3,0xa0,0x90,0x1a,0xc3,0x91,0x90,0x1b,0xbc,0xbd,0x10,0x1c,0xac,0xae,0x10,0x1d, + 0x9c,0x9f,0x10,0x1e,0x8c,0x90,0x10,0x1f,0x7c,0x81,0x10,0x20,0x6c,0x72,0x10,0x21, + 0x5c,0x63,0x10,0x22,0x4c,0x54,0x10,0x23,0x3c,0x45,0x10,0x24,0x2c,0x36,0x10,0x25, + 0x1c,0x27,0x10,0x26,0xc,0x18,0x10,0x27,0x5,0x43,0x90,0x27,0xf5,0x34,0x90,0x28, + 0xe5,0x25,0x90,0x29,0xd5,0x16,0x90,0x2a,0xc5,0x7,0x90,0x2b,0xb4,0xf8,0x90,0x2c, + 0xa4,0xe9,0x90,0x2d,0x94,0xda,0x90,0x2e,0x84,0xcb,0x90,0x2f,0x74,0xbc,0x90,0x30, + 0x64,0xad,0x90,0x31,0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34, + 0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38, + 0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b, + 0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f, + 0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43, + 0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47, + 0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a, + 0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e, + 0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52, + 0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56, + 0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59, + 0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d, + 0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61, + 0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65, + 0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68, + 0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c, + 0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70, + 0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74, + 0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78, + 0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b, + 0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f, + 0x8e,0x7f,0x90,0x1,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x0,0x0,0x17,0x65,0x0,0x0,0x0, + 0x0,0x17,0x65,0x0,0x4,0x0,0x0,0x2a,0x30,0x1,0x8,0x0,0x0,0x1c,0x20,0x0, + 0xd,0x0,0x0,0x2a,0x30,0x1,0x8,0x0,0x0,0x1c,0x20,0x0,0xd,0x4c,0x4d,0x54, + 0x0,0x48,0x4d,0x54,0x0,0x45,0x45,0x53,0x54,0x0,0x45,0x45,0x54,0x0,0x0,0x0, + 0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x1,0x1,0x54,0x5a,0x69,0x66,0x32,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x77,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x11,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff, + 0xff,0xff,0x53,0xba,0x26,0x9b,0xff,0xff,0xff,0xff,0xa4,0x73,0x6f,0x1b,0xff,0xff, + 0xff,0xff,0xcb,0xce,0x51,0x60,0xff,0xff,0xff,0xff,0xcc,0xc0,0xe5,0x60,0x0,0x0, + 0x0,0x0,0x15,0x23,0xdd,0x80,0x0,0x0,0x0,0x0,0x16,0x13,0xce,0x80,0x0,0x0, + 0x0,0x0,0x17,0x3,0xbf,0x80,0x0,0x0,0x0,0x0,0x17,0xf3,0xb0,0x80,0x0,0x0, + 0x0,0x0,0x18,0xe3,0xaf,0x90,0x0,0x0,0x0,0x0,0x19,0xd3,0xa0,0x90,0x0,0x0, + 0x0,0x0,0x1a,0xc3,0x91,0x90,0x0,0x0,0x0,0x0,0x1b,0xbc,0xbd,0x10,0x0,0x0, + 0x0,0x0,0x1c,0xac,0xae,0x10,0x0,0x0,0x0,0x0,0x1d,0x9c,0x9f,0x10,0x0,0x0, + 0x0,0x0,0x1e,0x8c,0x90,0x10,0x0,0x0,0x0,0x0,0x1f,0x7c,0x81,0x10,0x0,0x0, + 0x0,0x0,0x20,0x6c,0x72,0x10,0x0,0x0,0x0,0x0,0x21,0x5c,0x63,0x10,0x0,0x0, + 0x0,0x0,0x22,0x4c,0x54,0x10,0x0,0x0,0x0,0x0,0x23,0x3c,0x45,0x10,0x0,0x0, + 0x0,0x0,0x24,0x2c,0x36,0x10,0x0,0x0,0x0,0x0,0x25,0x1c,0x27,0x10,0x0,0x0, + 0x0,0x0,0x26,0xc,0x18,0x10,0x0,0x0,0x0,0x0,0x27,0x5,0x43,0x90,0x0,0x0, + 0x0,0x0,0x27,0xf5,0x34,0x90,0x0,0x0,0x0,0x0,0x28,0xe5,0x25,0x90,0x0,0x0, + 0x0,0x0,0x29,0xd5,0x16,0x90,0x0,0x0,0x0,0x0,0x2a,0xc5,0x7,0x90,0x0,0x0, + 0x0,0x0,0x2b,0xb4,0xf8,0x90,0x0,0x0,0x0,0x0,0x2c,0xa4,0xe9,0x90,0x0,0x0, + 0x0,0x0,0x2d,0x94,0xda,0x90,0x0,0x0,0x0,0x0,0x2e,0x84,0xcb,0x90,0x0,0x0, + 0x0,0x0,0x2f,0x74,0xbc,0x90,0x0,0x0,0x0,0x0,0x30,0x64,0xad,0x90,0x0,0x0, + 0x0,0x0,0x31,0x5d,0xd9,0x10,0x0,0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0, + 0x0,0x0,0x33,0x3d,0xbb,0x10,0x0,0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0, + 0x0,0x0,0x35,0x1d,0x9d,0x10,0x0,0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0, + 0x0,0x0,0x36,0xfd,0x7f,0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0, + 0x0,0x0,0x38,0xdd,0x61,0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0, + 0x0,0x0,0x3a,0xbd,0x43,0x10,0x0,0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0, + 0x0,0x0,0x3c,0xa6,0x5f,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0, + 0x0,0x0,0x3e,0x86,0x41,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0, + 0x0,0x0,0x40,0x66,0x23,0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0, + 0x0,0x0,0x42,0x46,0x5,0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0, + 0x0,0x0,0x44,0x25,0xe7,0x90,0x0,0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0, + 0x0,0x0,0x46,0x5,0xc9,0x90,0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0, + 0x0,0x0,0x47,0xee,0xe6,0x10,0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0, + 0x0,0x0,0x49,0xce,0xc8,0x10,0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0, + 0x0,0x0,0x4b,0xae,0xaa,0x10,0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0, + 0x0,0x0,0x4d,0x8e,0x8c,0x10,0x0,0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0, + 0x0,0x0,0x4f,0x6e,0x6e,0x10,0x0,0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0, + 0x0,0x0,0x51,0x57,0x8a,0x90,0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0, + 0x0,0x0,0x53,0x37,0x6c,0x90,0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0, + 0x0,0x0,0x55,0x17,0x4e,0x90,0x0,0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0, + 0x0,0x0,0x56,0xf7,0x30,0x90,0x0,0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0, + 0x0,0x0,0x58,0xd7,0x12,0x90,0x0,0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0, + 0x0,0x0,0x5a,0xb6,0xf4,0x90,0x0,0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0, + 0x0,0x0,0x5c,0xa0,0x11,0x10,0x0,0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0, + 0x0,0x0,0x5e,0x7f,0xf3,0x10,0x0,0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0, + 0x0,0x0,0x60,0x5f,0xd5,0x10,0x0,0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0, + 0x0,0x0,0x62,0x3f,0xb7,0x10,0x0,0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0, + 0x0,0x0,0x64,0x1f,0x99,0x10,0x0,0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0, + 0x0,0x0,0x66,0x8,0xb5,0x90,0x0,0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0, + 0x0,0x0,0x67,0xe8,0x97,0x90,0x0,0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0, + 0x0,0x0,0x69,0xc8,0x79,0x90,0x0,0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0, + 0x0,0x0,0x6b,0xa8,0x5b,0x90,0x0,0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0, + 0x0,0x0,0x6d,0x88,0x3d,0x90,0x0,0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0, + 0x0,0x0,0x6f,0x68,0x1f,0x90,0x0,0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0, + 0x0,0x0,0x71,0x51,0x3c,0x10,0x0,0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0, + 0x0,0x0,0x73,0x31,0x1e,0x10,0x0,0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0, + 0x0,0x0,0x75,0x11,0x0,0x10,0x0,0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0, + 0x0,0x0,0x76,0xf0,0xe2,0x10,0x0,0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0, + 0x0,0x0,0x78,0xd0,0xc4,0x10,0x0,0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0, + 0x0,0x0,0x7a,0xb0,0xa6,0x10,0x0,0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0, + 0x0,0x0,0x7c,0x99,0xc2,0x90,0x0,0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0, + 0x0,0x0,0x7e,0x79,0xa4,0x90,0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x1, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x0,0x0,0x17,0x65,0x0,0x0,0x0,0x0,0x17,0x65,0x0, + 0x4,0x0,0x0,0x2a,0x30,0x1,0x8,0x0,0x0,0x1c,0x20,0x0,0xd,0x0,0x0,0x2a, + 0x30,0x1,0x8,0x0,0x0,0x1c,0x20,0x0,0xd,0x4c,0x4d,0x54,0x0,0x48,0x4d,0x54, + 0x0,0x45,0x45,0x53,0x54,0x0,0x45,0x45,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x1, + 0x0,0x0,0x0,0x0,0x1,0x1,0xa,0x45,0x45,0x54,0x2d,0x32,0x45,0x45,0x53,0x54, + 0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2f,0x33,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e, + 0x30,0x2f,0x34,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Kaliningrad + 0x0,0x0,0x5,0xee, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x4f,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x22,0x80,0x0,0x0,0x0,0x9b, + 0xc,0x17,0x60,0x9b,0xd5,0xda,0xf0,0x9c,0xd9,0xae,0x90,0x9d,0xa4,0xb5,0x90,0x9e, + 0xb9,0x90,0x90,0x9f,0x84,0x97,0x90,0xc8,0x9,0x71,0x90,0xcc,0xe7,0x4b,0x10,0xcd, + 0xa9,0x17,0x90,0xce,0xa2,0x43,0x10,0xcf,0x92,0x34,0x10,0xd0,0x82,0x25,0x10,0xd0, + 0xfa,0x1,0x70,0xd1,0x95,0x84,0x60,0xd2,0x8a,0xad,0x50,0xd2,0xdb,0x26,0xe0,0x15, + 0x27,0xa7,0xd0,0x16,0x18,0xdc,0x40,0x17,0x8,0xdb,0x50,0x17,0xfa,0xf,0xc0,0x18, + 0xea,0xe,0xd0,0x19,0xdb,0x43,0x40,0x1a,0xcc,0x93,0xd0,0x1b,0xbc,0xa0,0xf0,0x1c, + 0xac,0x91,0xf0,0x1d,0x9c,0x82,0xf0,0x1e,0x8c,0x73,0xf0,0x1f,0x7c,0x64,0xf0,0x20, + 0x6c,0x55,0xf0,0x21,0x5c,0x46,0xf0,0x22,0x4c,0x37,0xf0,0x23,0x3c,0x28,0xf0,0x24, + 0x2c,0x19,0xf0,0x25,0x1c,0x19,0x0,0x26,0xc,0xa,0x0,0x27,0x5,0x35,0x80,0x27, + 0xf5,0x26,0x80,0x28,0xe5,0x17,0x80,0x29,0xd5,0x8,0x80,0x2a,0xc4,0xf9,0x80,0x2b, + 0xb4,0xea,0x80,0x2c,0xa4,0xdb,0x80,0x2d,0x94,0xcc,0x80,0x2e,0x84,0xbd,0x80,0x2f, + 0x74,0xae,0x80,0x30,0x64,0x9f,0x80,0x31,0x5d,0xcb,0x0,0x32,0x72,0xa6,0x0,0x33, + 0x3d,0xad,0x0,0x34,0x52,0x88,0x0,0x35,0x1d,0x8f,0x0,0x36,0x32,0x6a,0x0,0x36, + 0xfd,0x71,0x0,0x38,0x1b,0x86,0x80,0x38,0xdd,0x53,0x0,0x39,0xfb,0x68,0x80,0x3a, + 0xbd,0x35,0x0,0x3b,0xdb,0x4a,0x80,0x3c,0xa6,0x51,0x80,0x3d,0xbb,0x2c,0x80,0x3e, + 0x86,0x33,0x80,0x3f,0x9b,0xe,0x80,0x40,0x66,0x15,0x80,0x41,0x84,0x2b,0x0,0x42, + 0x45,0xf7,0x80,0x43,0x64,0xd,0x0,0x44,0x25,0xd9,0x80,0x45,0x43,0xef,0x0,0x46, + 0x5,0xbb,0x80,0x47,0x23,0xd1,0x0,0x47,0xee,0xd8,0x0,0x49,0x3,0xb3,0x0,0x49, + 0xce,0xba,0x0,0x4a,0xe3,0x95,0x0,0x4b,0xae,0x9c,0x0,0x4c,0xcc,0xb1,0x80,0x4d, + 0x8e,0x7e,0x0,0x54,0x4c,0x2b,0x70,0x2,0x1,0x2,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x6,0x5,0x6,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x9, + 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, + 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, + 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, + 0xb,0xc,0xb,0xc,0xd,0xc,0x0,0x0,0x13,0x38,0x0,0x0,0x0,0x0,0x1c,0x20, + 0x1,0x4,0x0,0x0,0xe,0x10,0x0,0x9,0x0,0x0,0x1c,0x20,0x1,0x4,0x0,0x0, + 0xe,0x10,0x0,0x9,0x0,0x0,0x2a,0x30,0x1,0x4,0x0,0x0,0x1c,0x20,0x0,0x9, + 0x0,0x0,0x38,0x40,0x1,0xd,0x0,0x0,0x2a,0x30,0x0,0x11,0x0,0x0,0x2a,0x30, + 0x0,0x11,0x0,0x0,0x38,0x40,0x1,0xd,0x0,0x0,0x2a,0x30,0x1,0x15,0x0,0x0, + 0x1c,0x20,0x0,0x1a,0x0,0x0,0x2a,0x30,0x0,0x1e,0x0,0x0,0x1c,0x20,0x0,0x1a, + 0x4c,0x4d,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x43,0x45,0x54,0x0,0x4d,0x53,0x44, + 0x0,0x4d,0x53,0x4b,0x0,0x45,0x45,0x53,0x54,0x0,0x45,0x45,0x54,0x0,0x2b,0x30, + 0x33,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x1, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x50,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x22,0xf8,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x6f,0xa2,0x5b,0x48,0xff,0xff,0xff,0xff, + 0x9b,0xc,0x17,0x60,0xff,0xff,0xff,0xff,0x9b,0xd5,0xda,0xf0,0xff,0xff,0xff,0xff, + 0x9c,0xd9,0xae,0x90,0xff,0xff,0xff,0xff,0x9d,0xa4,0xb5,0x90,0xff,0xff,0xff,0xff, + 0x9e,0xb9,0x90,0x90,0xff,0xff,0xff,0xff,0x9f,0x84,0x97,0x90,0xff,0xff,0xff,0xff, + 0xc8,0x9,0x71,0x90,0xff,0xff,0xff,0xff,0xcc,0xe7,0x4b,0x10,0xff,0xff,0xff,0xff, + 0xcd,0xa9,0x17,0x90,0xff,0xff,0xff,0xff,0xce,0xa2,0x43,0x10,0xff,0xff,0xff,0xff, + 0xcf,0x92,0x34,0x10,0xff,0xff,0xff,0xff,0xd0,0x82,0x25,0x10,0xff,0xff,0xff,0xff, + 0xd0,0xfa,0x1,0x70,0xff,0xff,0xff,0xff,0xd1,0x95,0x84,0x60,0xff,0xff,0xff,0xff, + 0xd2,0x8a,0xad,0x50,0xff,0xff,0xff,0xff,0xd2,0xdb,0x26,0xe0,0x0,0x0,0x0,0x0, + 0x15,0x27,0xa7,0xd0,0x0,0x0,0x0,0x0,0x16,0x18,0xdc,0x40,0x0,0x0,0x0,0x0, + 0x17,0x8,0xdb,0x50,0x0,0x0,0x0,0x0,0x17,0xfa,0xf,0xc0,0x0,0x0,0x0,0x0, + 0x18,0xea,0xe,0xd0,0x0,0x0,0x0,0x0,0x19,0xdb,0x43,0x40,0x0,0x0,0x0,0x0, + 0x1a,0xcc,0x93,0xd0,0x0,0x0,0x0,0x0,0x1b,0xbc,0xa0,0xf0,0x0,0x0,0x0,0x0, + 0x1c,0xac,0x91,0xf0,0x0,0x0,0x0,0x0,0x1d,0x9c,0x82,0xf0,0x0,0x0,0x0,0x0, + 0x1e,0x8c,0x73,0xf0,0x0,0x0,0x0,0x0,0x1f,0x7c,0x64,0xf0,0x0,0x0,0x0,0x0, + 0x20,0x6c,0x55,0xf0,0x0,0x0,0x0,0x0,0x21,0x5c,0x46,0xf0,0x0,0x0,0x0,0x0, + 0x22,0x4c,0x37,0xf0,0x0,0x0,0x0,0x0,0x23,0x3c,0x28,0xf0,0x0,0x0,0x0,0x0, + 0x24,0x2c,0x19,0xf0,0x0,0x0,0x0,0x0,0x25,0x1c,0x19,0x0,0x0,0x0,0x0,0x0, + 0x26,0xc,0xa,0x0,0x0,0x0,0x0,0x0,0x27,0x5,0x35,0x80,0x0,0x0,0x0,0x0, + 0x27,0xf5,0x26,0x80,0x0,0x0,0x0,0x0,0x28,0xe5,0x17,0x80,0x0,0x0,0x0,0x0, + 0x29,0xd5,0x8,0x80,0x0,0x0,0x0,0x0,0x2a,0xc4,0xf9,0x80,0x0,0x0,0x0,0x0, + 0x2b,0xb4,0xea,0x80,0x0,0x0,0x0,0x0,0x2c,0xa4,0xdb,0x80,0x0,0x0,0x0,0x0, + 0x2d,0x94,0xcc,0x80,0x0,0x0,0x0,0x0,0x2e,0x84,0xbd,0x80,0x0,0x0,0x0,0x0, + 0x2f,0x74,0xae,0x80,0x0,0x0,0x0,0x0,0x30,0x64,0x9f,0x80,0x0,0x0,0x0,0x0, + 0x31,0x5d,0xcb,0x0,0x0,0x0,0x0,0x0,0x32,0x72,0xa6,0x0,0x0,0x0,0x0,0x0, + 0x33,0x3d,0xad,0x0,0x0,0x0,0x0,0x0,0x34,0x52,0x88,0x0,0x0,0x0,0x0,0x0, + 0x35,0x1d,0x8f,0x0,0x0,0x0,0x0,0x0,0x36,0x32,0x6a,0x0,0x0,0x0,0x0,0x0, + 0x36,0xfd,0x71,0x0,0x0,0x0,0x0,0x0,0x38,0x1b,0x86,0x80,0x0,0x0,0x0,0x0, + 0x38,0xdd,0x53,0x0,0x0,0x0,0x0,0x0,0x39,0xfb,0x68,0x80,0x0,0x0,0x0,0x0, + 0x3a,0xbd,0x35,0x0,0x0,0x0,0x0,0x0,0x3b,0xdb,0x4a,0x80,0x0,0x0,0x0,0x0, + 0x3c,0xa6,0x51,0x80,0x0,0x0,0x0,0x0,0x3d,0xbb,0x2c,0x80,0x0,0x0,0x0,0x0, + 0x3e,0x86,0x33,0x80,0x0,0x0,0x0,0x0,0x3f,0x9b,0xe,0x80,0x0,0x0,0x0,0x0, + 0x40,0x66,0x15,0x80,0x0,0x0,0x0,0x0,0x41,0x84,0x2b,0x0,0x0,0x0,0x0,0x0, + 0x42,0x45,0xf7,0x80,0x0,0x0,0x0,0x0,0x43,0x64,0xd,0x0,0x0,0x0,0x0,0x0, + 0x44,0x25,0xd9,0x80,0x0,0x0,0x0,0x0,0x45,0x43,0xef,0x0,0x0,0x0,0x0,0x0, + 0x46,0x5,0xbb,0x80,0x0,0x0,0x0,0x0,0x47,0x23,0xd1,0x0,0x0,0x0,0x0,0x0, + 0x47,0xee,0xd8,0x0,0x0,0x0,0x0,0x0,0x49,0x3,0xb3,0x0,0x0,0x0,0x0,0x0, + 0x49,0xce,0xba,0x0,0x0,0x0,0x0,0x0,0x4a,0xe3,0x95,0x0,0x0,0x0,0x0,0x0, + 0x4b,0xae,0x9c,0x0,0x0,0x0,0x0,0x0,0x4c,0xcc,0xb1,0x80,0x0,0x0,0x0,0x0, + 0x4d,0x8e,0x7e,0x0,0x0,0x0,0x0,0x0,0x54,0x4c,0x2b,0x70,0x0,0x2,0x1,0x2, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x6,0x5,0x6,0x8,0x7,0x8, + 0x7,0x8,0x7,0x8,0x7,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xb,0xc, + 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, + 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, + 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xd,0xc,0x0,0x0,0x13,0x38, + 0x0,0x0,0x0,0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe,0x10,0x0,0x9,0x0,0x0, + 0x1c,0x20,0x1,0x4,0x0,0x0,0xe,0x10,0x0,0x9,0x0,0x0,0x2a,0x30,0x1,0x4, + 0x0,0x0,0x1c,0x20,0x0,0x9,0x0,0x0,0x38,0x40,0x1,0xd,0x0,0x0,0x2a,0x30, + 0x0,0x11,0x0,0x0,0x2a,0x30,0x0,0x11,0x0,0x0,0x38,0x40,0x1,0xd,0x0,0x0, + 0x2a,0x30,0x1,0x15,0x0,0x0,0x1c,0x20,0x0,0x1a,0x0,0x0,0x2a,0x30,0x0,0x1e, + 0x0,0x0,0x1c,0x20,0x0,0x1a,0x4c,0x4d,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x43, + 0x45,0x54,0x0,0x4d,0x53,0x44,0x0,0x4d,0x53,0x4b,0x0,0x45,0x45,0x53,0x54,0x0, + 0x45,0x45,0x54,0x0,0x2b,0x30,0x33,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0, + 0x0,0x1,0x1,0x1,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x45,0x45,0x54,0x2d,0x32,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Bratislava + 0x0,0x0,0x8,0xe0, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x8e,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0x9b, + 0xc,0x17,0x60,0x9b,0xd5,0xda,0xf0,0x9c,0xd9,0xae,0x90,0x9d,0xa4,0xb5,0x90,0x9e, + 0xb9,0x90,0x90,0x9f,0x84,0x97,0x90,0xc8,0x9,0x71,0x90,0xcc,0xe7,0x4b,0x10,0xcd, + 0xa9,0x17,0x90,0xce,0xa2,0x43,0x10,0xcf,0x92,0x34,0x10,0xd0,0x6e,0x5e,0x90,0xd1, + 0x79,0xff,0x10,0xd2,0xa1,0x4f,0x10,0xd3,0x80,0x1c,0x90,0xd4,0x49,0xd2,0x10,0xd5, + 0x4c,0x38,0x10,0xd6,0x29,0xb4,0x10,0xd7,0x2c,0x1a,0x10,0xd8,0x9,0x96,0x10,0xd9, + 0x1,0x70,0x10,0xd9,0xe9,0x78,0x10,0x10,0xed,0x64,0x70,0x11,0x64,0x27,0x90,0x12, + 0x54,0x18,0x90,0x13,0x4d,0x44,0x10,0x14,0x33,0xfa,0x90,0x15,0x23,0xeb,0x90,0x16, + 0x13,0xdc,0x90,0x17,0x3,0xcd,0x90,0x17,0xf3,0xbe,0x90,0x18,0xe3,0xaf,0x90,0x19, + 0xd3,0xa0,0x90,0x1a,0xc3,0x91,0x90,0x1b,0xbc,0xbd,0x10,0x1c,0xac,0xae,0x10,0x1d, + 0x9c,0x9f,0x10,0x1e,0x8c,0x90,0x10,0x1f,0x7c,0x81,0x10,0x20,0x6c,0x72,0x10,0x21, + 0x5c,0x63,0x10,0x22,0x4c,0x54,0x10,0x23,0x3c,0x45,0x10,0x24,0x2c,0x36,0x10,0x25, + 0x1c,0x27,0x10,0x26,0xc,0x18,0x10,0x27,0x5,0x43,0x90,0x27,0xf5,0x34,0x90,0x28, + 0xe5,0x25,0x90,0x29,0xd5,0x16,0x90,0x2a,0xc5,0x7,0x90,0x2b,0xb4,0xf8,0x90,0x2c, + 0xa4,0xe9,0x90,0x2d,0x94,0xda,0x90,0x2e,0x84,0xcb,0x90,0x2f,0x74,0xbc,0x90,0x30, + 0x64,0xad,0x90,0x31,0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34, + 0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38, + 0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b, + 0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f, + 0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43, + 0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47, + 0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a, + 0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e, + 0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52, + 0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56, + 0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59, + 0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d, + 0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61, + 0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65, + 0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68, + 0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c, + 0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70, + 0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74, + 0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78, + 0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b, + 0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f, + 0x8e,0x7f,0x90,0x2,0x1,0x2,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x2,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x0,0x0,0xd,0x88,0x0,0x0,0x0,0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe, + 0x10,0x0,0x9,0x0,0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe,0x10,0x0,0x9,0x0, + 0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe,0x10,0x0,0x9,0x50,0x4d,0x54,0x0,0x43, + 0x45,0x53,0x54,0x0,0x43,0x45,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x0, + 0x0,0x0,0x0,0x0,0x1,0x1,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0, + 0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x90,0x0,0x0,0x0,0x8,0x0,0x0, + 0x0,0x11,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1e,0x49, + 0x92,0xf8,0xff,0xff,0xff,0xff,0x6c,0xcf,0xea,0xf8,0xff,0xff,0xff,0xff,0x9b,0xc, + 0x17,0x60,0xff,0xff,0xff,0xff,0x9b,0xd5,0xda,0xf0,0xff,0xff,0xff,0xff,0x9c,0xd9, + 0xae,0x90,0xff,0xff,0xff,0xff,0x9d,0xa4,0xb5,0x90,0xff,0xff,0xff,0xff,0x9e,0xb9, + 0x90,0x90,0xff,0xff,0xff,0xff,0x9f,0x84,0x97,0x90,0xff,0xff,0xff,0xff,0xc8,0x9, + 0x71,0x90,0xff,0xff,0xff,0xff,0xcc,0xe7,0x4b,0x10,0xff,0xff,0xff,0xff,0xcd,0xa9, + 0x17,0x90,0xff,0xff,0xff,0xff,0xce,0xa2,0x43,0x10,0xff,0xff,0xff,0xff,0xcf,0x92, + 0x34,0x10,0xff,0xff,0xff,0xff,0xd0,0x6e,0x5e,0x90,0xff,0xff,0xff,0xff,0xd1,0x79, + 0xff,0x10,0xff,0xff,0xff,0xff,0xd2,0xa1,0x4f,0x10,0xff,0xff,0xff,0xff,0xd3,0x80, + 0x1c,0x90,0xff,0xff,0xff,0xff,0xd4,0x49,0xd2,0x10,0xff,0xff,0xff,0xff,0xd5,0x4c, + 0x38,0x10,0xff,0xff,0xff,0xff,0xd6,0x29,0xb4,0x10,0xff,0xff,0xff,0xff,0xd7,0x2c, + 0x1a,0x10,0xff,0xff,0xff,0xff,0xd8,0x9,0x96,0x10,0xff,0xff,0xff,0xff,0xd9,0x1, + 0x70,0x10,0xff,0xff,0xff,0xff,0xd9,0xe9,0x78,0x10,0x0,0x0,0x0,0x0,0x10,0xed, + 0x64,0x70,0x0,0x0,0x0,0x0,0x11,0x64,0x27,0x90,0x0,0x0,0x0,0x0,0x12,0x54, + 0x18,0x90,0x0,0x0,0x0,0x0,0x13,0x4d,0x44,0x10,0x0,0x0,0x0,0x0,0x14,0x33, + 0xfa,0x90,0x0,0x0,0x0,0x0,0x15,0x23,0xeb,0x90,0x0,0x0,0x0,0x0,0x16,0x13, + 0xdc,0x90,0x0,0x0,0x0,0x0,0x17,0x3,0xcd,0x90,0x0,0x0,0x0,0x0,0x17,0xf3, + 0xbe,0x90,0x0,0x0,0x0,0x0,0x18,0xe3,0xaf,0x90,0x0,0x0,0x0,0x0,0x19,0xd3, + 0xa0,0x90,0x0,0x0,0x0,0x0,0x1a,0xc3,0x91,0x90,0x0,0x0,0x0,0x0,0x1b,0xbc, + 0xbd,0x10,0x0,0x0,0x0,0x0,0x1c,0xac,0xae,0x10,0x0,0x0,0x0,0x0,0x1d,0x9c, + 0x9f,0x10,0x0,0x0,0x0,0x0,0x1e,0x8c,0x90,0x10,0x0,0x0,0x0,0x0,0x1f,0x7c, + 0x81,0x10,0x0,0x0,0x0,0x0,0x20,0x6c,0x72,0x10,0x0,0x0,0x0,0x0,0x21,0x5c, + 0x63,0x10,0x0,0x0,0x0,0x0,0x22,0x4c,0x54,0x10,0x0,0x0,0x0,0x0,0x23,0x3c, + 0x45,0x10,0x0,0x0,0x0,0x0,0x24,0x2c,0x36,0x10,0x0,0x0,0x0,0x0,0x25,0x1c, + 0x27,0x10,0x0,0x0,0x0,0x0,0x26,0xc,0x18,0x10,0x0,0x0,0x0,0x0,0x27,0x5, + 0x43,0x90,0x0,0x0,0x0,0x0,0x27,0xf5,0x34,0x90,0x0,0x0,0x0,0x0,0x28,0xe5, + 0x25,0x90,0x0,0x0,0x0,0x0,0x29,0xd5,0x16,0x90,0x0,0x0,0x0,0x0,0x2a,0xc5, + 0x7,0x90,0x0,0x0,0x0,0x0,0x2b,0xb4,0xf8,0x90,0x0,0x0,0x0,0x0,0x2c,0xa4, + 0xe9,0x90,0x0,0x0,0x0,0x0,0x2d,0x94,0xda,0x90,0x0,0x0,0x0,0x0,0x2e,0x84, + 0xcb,0x90,0x0,0x0,0x0,0x0,0x2f,0x74,0xbc,0x90,0x0,0x0,0x0,0x0,0x30,0x64, + 0xad,0x90,0x0,0x0,0x0,0x0,0x31,0x5d,0xd9,0x10,0x0,0x0,0x0,0x0,0x32,0x72, + 0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d,0xbb,0x10,0x0,0x0,0x0,0x0,0x34,0x52, + 0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d,0x9d,0x10,0x0,0x0,0x0,0x0,0x36,0x32, + 0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd,0x7f,0x10,0x0,0x0,0x0,0x0,0x38,0x1b, + 0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd,0x61,0x10,0x0,0x0,0x0,0x0,0x39,0xfb, + 0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd,0x43,0x10,0x0,0x0,0x0,0x0,0x3b,0xdb, + 0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb, + 0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86,0x41,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b, + 0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66,0x23,0x90,0x0,0x0,0x0,0x0,0x41,0x84, + 0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46,0x5,0x90,0x0,0x0,0x0,0x0,0x43,0x64, + 0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25,0xe7,0x90,0x0,0x0,0x0,0x0,0x45,0x43, + 0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5,0xc9,0x90,0x0,0x0,0x0,0x0,0x47,0x23, + 0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee,0xe6,0x10,0x0,0x0,0x0,0x0,0x49,0x3, + 0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce,0xc8,0x10,0x0,0x0,0x0,0x0,0x4a,0xe3, + 0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae,0xaa,0x10,0x0,0x0,0x0,0x0,0x4c,0xcc, + 0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c,0x10,0x0,0x0,0x0,0x0,0x4e,0xac, + 0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e,0x10,0x0,0x0,0x0,0x0,0x50,0x8c, + 0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57,0x8a,0x90,0x0,0x0,0x0,0x0,0x52,0x6c, + 0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37,0x6c,0x90,0x0,0x0,0x0,0x0,0x54,0x4c, + 0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17,0x4e,0x90,0x0,0x0,0x0,0x0,0x56,0x2c, + 0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7,0x30,0x90,0x0,0x0,0x0,0x0,0x58,0x15, + 0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7,0x12,0x90,0x0,0x0,0x0,0x0,0x59,0xf5, + 0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4,0x90,0x0,0x0,0x0,0x0,0x5b,0xd5, + 0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0,0x11,0x10,0x0,0x0,0x0,0x0,0x5d,0xb4, + 0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3,0x10,0x0,0x0,0x0,0x0,0x5f,0x94, + 0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f,0xd5,0x10,0x0,0x0,0x0,0x0,0x61,0x7d, + 0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f,0xb7,0x10,0x0,0x0,0x0,0x0,0x63,0x5d, + 0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f,0x99,0x10,0x0,0x0,0x0,0x0,0x65,0x3d, + 0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8,0xb5,0x90,0x0,0x0,0x0,0x0,0x67,0x1d, + 0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8,0x97,0x90,0x0,0x0,0x0,0x0,0x68,0xfd, + 0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8,0x79,0x90,0x0,0x0,0x0,0x0,0x6a,0xdd, + 0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b,0x90,0x0,0x0,0x0,0x0,0x6c,0xc6, + 0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88,0x3d,0x90,0x0,0x0,0x0,0x0,0x6e,0xa6, + 0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68,0x1f,0x90,0x0,0x0,0x0,0x0,0x70,0x86, + 0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51,0x3c,0x10,0x0,0x0,0x0,0x0,0x72,0x66, + 0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31,0x1e,0x10,0x0,0x0,0x0,0x0,0x74,0x45, + 0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11,0x0,0x10,0x0,0x0,0x0,0x0,0x76,0x2f, + 0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0,0xe2,0x10,0x0,0x0,0x0,0x0,0x78,0xe, + 0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0,0xc4,0x10,0x0,0x0,0x0,0x0,0x79,0xee, + 0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6,0x10,0x0,0x0,0x0,0x0,0x7b,0xce, + 0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99,0xc2,0x90,0x0,0x0,0x0,0x0,0x7d,0xae, + 0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79,0xa4,0x90,0x0,0x0,0x0,0x0,0x7f,0x8e, + 0x7f,0x90,0x0,0x1,0x3,0x2,0x3,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x3,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x0,0x0,0xd,0x88,0x0,0x0,0x0,0x0,0xd,0x88,0x0,0x4,0x0,0x0, + 0x1c,0x20,0x1,0x8,0x0,0x0,0xe,0x10,0x0,0xd,0x0,0x0,0x1c,0x20,0x1,0x8, + 0x0,0x0,0xe,0x10,0x0,0xd,0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0xe,0x10, + 0x0,0xd,0x4c,0x4d,0x54,0x0,0x50,0x4d,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x43, + 0x45,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0, + 0x0,0x1,0x1,0xa,0x43,0x45,0x54,0x2d,0x31,0x43,0x45,0x53,0x54,0x2c,0x4d,0x33, + 0x2e,0x35,0x2e,0x30,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30,0x2f,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Busingen + 0x0,0x0,0x7,0x7e, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x77,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0xca, + 0x17,0x6a,0x0,0xca,0xe2,0x71,0x0,0xcb,0xf7,0x4c,0x0,0xcc,0xc2,0x53,0x0,0x15, + 0x23,0xeb,0x90,0x16,0x13,0xdc,0x90,0x17,0x3,0xcd,0x90,0x17,0xf3,0xbe,0x90,0x18, + 0xe3,0xaf,0x90,0x19,0xd3,0xa0,0x90,0x1a,0xc3,0x91,0x90,0x1b,0xbc,0xbd,0x10,0x1c, + 0xac,0xae,0x10,0x1d,0x9c,0x9f,0x10,0x1e,0x8c,0x90,0x10,0x1f,0x7c,0x81,0x10,0x20, + 0x6c,0x72,0x10,0x21,0x5c,0x63,0x10,0x22,0x4c,0x54,0x10,0x23,0x3c,0x45,0x10,0x24, + 0x2c,0x36,0x10,0x25,0x1c,0x27,0x10,0x26,0xc,0x18,0x10,0x27,0x5,0x43,0x90,0x27, + 0xf5,0x34,0x90,0x28,0xe5,0x25,0x90,0x29,0xd5,0x16,0x90,0x2a,0xc5,0x7,0x90,0x2b, + 0xb4,0xf8,0x90,0x2c,0xa4,0xe9,0x90,0x2d,0x94,0xda,0x90,0x2e,0x84,0xcb,0x90,0x2f, + 0x74,0xbc,0x90,0x30,0x64,0xad,0x90,0x31,0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33, + 0x3d,0xbb,0x10,0x34,0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36, + 0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a, + 0xbd,0x43,0x10,0x3b,0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e, + 0x86,0x41,0x90,0x3f,0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42, + 0x46,0x5,0x90,0x43,0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46, + 0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49, + 0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d, + 0x8e,0x8c,0x10,0x4e,0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51, + 0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55, + 0x17,0x4e,0x90,0x56,0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58, + 0xd7,0x12,0x90,0x59,0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c, + 0xa0,0x11,0x10,0x5d,0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60, + 0x5f,0xd5,0x10,0x61,0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64, + 0x1f,0x99,0x10,0x65,0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67, + 0xe8,0x97,0x90,0x68,0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b, + 0xa8,0x5b,0x90,0x6c,0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f, + 0x68,0x1f,0x90,0x70,0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73, + 0x31,0x1e,0x10,0x74,0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76, + 0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a, + 0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e, + 0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x0,0x0, + 0x6,0xfa,0x0,0x0,0x0,0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe,0x10,0x0,0x9, + 0x0,0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe,0x10,0x0,0x9,0x42,0x4d,0x54,0x0, + 0x43,0x45,0x53,0x54,0x0,0x43,0x45,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0, + 0x0,0x1,0x1,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x79,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0xf8, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x24,0xf0,0xea,0x80,0xff, + 0xff,0xff,0xff,0x71,0xd4,0x6,0x86,0xff,0xff,0xff,0xff,0xca,0x17,0x6a,0x0,0xff, + 0xff,0xff,0xff,0xca,0xe2,0x71,0x0,0xff,0xff,0xff,0xff,0xcb,0xf7,0x4c,0x0,0xff, + 0xff,0xff,0xff,0xcc,0xc2,0x53,0x0,0x0,0x0,0x0,0x0,0x15,0x23,0xeb,0x90,0x0, + 0x0,0x0,0x0,0x16,0x13,0xdc,0x90,0x0,0x0,0x0,0x0,0x17,0x3,0xcd,0x90,0x0, + 0x0,0x0,0x0,0x17,0xf3,0xbe,0x90,0x0,0x0,0x0,0x0,0x18,0xe3,0xaf,0x90,0x0, + 0x0,0x0,0x0,0x19,0xd3,0xa0,0x90,0x0,0x0,0x0,0x0,0x1a,0xc3,0x91,0x90,0x0, + 0x0,0x0,0x0,0x1b,0xbc,0xbd,0x10,0x0,0x0,0x0,0x0,0x1c,0xac,0xae,0x10,0x0, + 0x0,0x0,0x0,0x1d,0x9c,0x9f,0x10,0x0,0x0,0x0,0x0,0x1e,0x8c,0x90,0x10,0x0, + 0x0,0x0,0x0,0x1f,0x7c,0x81,0x10,0x0,0x0,0x0,0x0,0x20,0x6c,0x72,0x10,0x0, + 0x0,0x0,0x0,0x21,0x5c,0x63,0x10,0x0,0x0,0x0,0x0,0x22,0x4c,0x54,0x10,0x0, + 0x0,0x0,0x0,0x23,0x3c,0x45,0x10,0x0,0x0,0x0,0x0,0x24,0x2c,0x36,0x10,0x0, + 0x0,0x0,0x0,0x25,0x1c,0x27,0x10,0x0,0x0,0x0,0x0,0x26,0xc,0x18,0x10,0x0, + 0x0,0x0,0x0,0x27,0x5,0x43,0x90,0x0,0x0,0x0,0x0,0x27,0xf5,0x34,0x90,0x0, + 0x0,0x0,0x0,0x28,0xe5,0x25,0x90,0x0,0x0,0x0,0x0,0x29,0xd5,0x16,0x90,0x0, + 0x0,0x0,0x0,0x2a,0xc5,0x7,0x90,0x0,0x0,0x0,0x0,0x2b,0xb4,0xf8,0x90,0x0, + 0x0,0x0,0x0,0x2c,0xa4,0xe9,0x90,0x0,0x0,0x0,0x0,0x2d,0x94,0xda,0x90,0x0, + 0x0,0x0,0x0,0x2e,0x84,0xcb,0x90,0x0,0x0,0x0,0x0,0x2f,0x74,0xbc,0x90,0x0, + 0x0,0x0,0x0,0x30,0x64,0xad,0x90,0x0,0x0,0x0,0x0,0x31,0x5d,0xd9,0x10,0x0, + 0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d,0xbb,0x10,0x0, + 0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d,0x9d,0x10,0x0, + 0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd,0x7f,0x10,0x0, + 0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd,0x61,0x10,0x0, + 0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd,0x43,0x10,0x0, + 0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f,0x90,0x0, + 0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86,0x41,0x90,0x0, + 0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66,0x23,0x90,0x0, + 0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46,0x5,0x90,0x0, + 0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25,0xe7,0x90,0x0, + 0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5,0xc9,0x90,0x0, + 0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee,0xe6,0x10,0x0, + 0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce,0xc8,0x10,0x0, + 0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae,0xaa,0x10,0x0, + 0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c,0x10,0x0, + 0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e,0x10,0x0, + 0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57,0x8a,0x90,0x0, + 0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37,0x6c,0x90,0x0, + 0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17,0x4e,0x90,0x0, + 0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7,0x30,0x90,0x0, + 0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7,0x12,0x90,0x0, + 0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4,0x90,0x0, + 0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0,0x11,0x10,0x0, + 0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3,0x10,0x0, + 0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f,0xd5,0x10,0x0, + 0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f,0xb7,0x10,0x0, + 0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f,0x99,0x10,0x0, + 0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8,0xb5,0x90,0x0, + 0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8,0x97,0x90,0x0, + 0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8,0x79,0x90,0x0, + 0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b,0x90,0x0, + 0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88,0x3d,0x90,0x0, + 0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68,0x1f,0x90,0x0, + 0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51,0x3c,0x10,0x0, + 0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31,0x1e,0x10,0x0, + 0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11,0x0,0x10,0x0, + 0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0,0xe2,0x10,0x0, + 0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0,0xc4,0x10,0x0, + 0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6,0x10,0x0, + 0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99,0xc2,0x90,0x0, + 0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79,0xa4,0x90,0x0, + 0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x1,0x3,0x2,0x3,0x2,0x3,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x6,0xfa,0x0,0x4,0x0,0x0,0x1c,0x20, + 0x1,0x8,0x0,0x0,0xe,0x10,0x0,0xd,0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0, + 0xe,0x10,0x0,0xd,0x4c,0x4d,0x54,0x0,0x42,0x4d,0x54,0x0,0x43,0x45,0x53,0x54, + 0x0,0x43,0x45,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x1, + 0x1,0xa,0x43,0x45,0x54,0x2d,0x31,0x43,0x45,0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35, + 0x2e,0x30,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30,0x2f,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Vatican + 0x0,0x0,0xa,0x84, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xac,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0x9b, + 0x38,0xf8,0x70,0x9b,0xd5,0xcc,0xe0,0x9c,0xc5,0xcb,0xf0,0x9d,0xb7,0x0,0x60,0x9e, + 0x89,0xfe,0x70,0x9f,0xa0,0x1c,0xe0,0xa0,0x60,0xa5,0xf0,0xa1,0x7e,0xad,0x60,0xa2, + 0x5c,0x37,0x70,0xa3,0x4c,0x1a,0x60,0xc8,0x6c,0x35,0xf0,0xcc,0xe7,0x4b,0x10,0xcd, + 0xa9,0x17,0x90,0xce,0x82,0x74,0xe0,0xce,0xa2,0x43,0x10,0xcf,0x92,0x34,0x10,0xcf, + 0xe3,0xc6,0xe0,0xd0,0x6e,0x5e,0x90,0xd1,0x72,0x16,0x10,0xd2,0x4c,0xd2,0xf0,0xd3, + 0x3e,0x31,0x90,0xd4,0x49,0xd2,0x10,0xd5,0x1d,0xf7,0x70,0xd6,0x29,0x97,0xf0,0xd6, + 0xeb,0x80,0x90,0xd8,0x9,0x96,0x10,0xf9,0x33,0xb5,0xf0,0xf9,0xd9,0xc4,0xe0,0xfb, + 0x1c,0xd2,0x70,0xfb,0xb9,0xb4,0xf0,0xfc,0xfc,0xb4,0x70,0xfd,0x99,0x96,0xf0,0xfe, + 0xe5,0xd0,0xf0,0xff,0x82,0xb3,0x70,0x0,0xc5,0xb2,0xf0,0x1,0x62,0x95,0x70,0x2, + 0x9c,0x5a,0x70,0x3,0x42,0x77,0x70,0x4,0x85,0x76,0xf0,0x5,0x2b,0x93,0xf0,0x6, + 0x6e,0x93,0x70,0x7,0xb,0x75,0xf0,0x8,0x45,0x3a,0xf0,0x8,0xeb,0x57,0xf0,0xa, + 0x2e,0x57,0x70,0xa,0xcb,0x39,0xf0,0xc,0xe,0x39,0x70,0xc,0xab,0x1b,0xf0,0xd, + 0xe4,0xe0,0xf0,0xe,0x8a,0xfd,0xf0,0xf,0xcd,0xfd,0x70,0x10,0x74,0x1a,0x70,0x11, + 0xad,0xdf,0x70,0x12,0x53,0xfc,0x70,0x12,0xce,0x97,0xf0,0x13,0x4d,0x44,0x10,0x14, + 0x33,0xfa,0x90,0x15,0x23,0xeb,0x90,0x16,0x13,0xdc,0x90,0x17,0x3,0xcd,0x90,0x17, + 0xf3,0xbe,0x90,0x18,0xe3,0xaf,0x90,0x19,0xd3,0xa0,0x90,0x1a,0xc3,0x91,0x90,0x1b, + 0xbc,0xbd,0x10,0x1c,0xac,0xae,0x10,0x1d,0x9c,0x9f,0x10,0x1e,0x8c,0x90,0x10,0x1f, + 0x7c,0x81,0x10,0x20,0x6c,0x72,0x10,0x21,0x5c,0x63,0x10,0x22,0x4c,0x54,0x10,0x23, + 0x3c,0x45,0x10,0x24,0x2c,0x36,0x10,0x25,0x1c,0x27,0x10,0x26,0xc,0x18,0x10,0x27, + 0x5,0x43,0x90,0x27,0xf5,0x34,0x90,0x28,0xe5,0x25,0x90,0x29,0xd5,0x16,0x90,0x2a, + 0xc5,0x7,0x90,0x2b,0xb4,0xf8,0x90,0x2c,0xa4,0xe9,0x90,0x2d,0x94,0xda,0x90,0x2e, + 0x84,0xcb,0x90,0x2f,0x74,0xbc,0x90,0x30,0x64,0xad,0x90,0x31,0x5d,0xd9,0x10,0x32, + 0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34,0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36, + 0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39, + 0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b,0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d, + 0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f,0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41, + 0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43,0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45, + 0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49, + 0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c, + 0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e,0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50, + 0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54, + 0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56,0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58, + 0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59,0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b, + 0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d,0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f, + 0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61,0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63, + 0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65,0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67, + 0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68,0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a, + 0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c,0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e, + 0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70,0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72, + 0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74,0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76, + 0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79, + 0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d, + 0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x3,0x4,0x1,0x3,0x4,0x1,0x3,0x1,0x2, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x2,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x2,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x0,0x0,0xb,0xb4,0x0,0x0,0x0,0x0,0x1c, + 0x20,0x1,0x4,0x0,0x0,0xe,0x10,0x0,0x9,0x0,0x0,0xe,0x10,0x0,0x9,0x0, + 0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe,0x10,0x0, + 0x9,0x52,0x4d,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x43,0x45,0x54,0x0,0x0,0x0, + 0x0,0x1,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x54,0x5a,0x69,0x66, + 0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xae, + 0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x11,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0x3d,0xbe,0x1e,0xcc,0xff,0xff,0xff,0xff,0x70,0xbc,0x81,0x70, + 0xff,0xff,0xff,0xff,0x9b,0x38,0xf8,0x70,0xff,0xff,0xff,0xff,0x9b,0xd5,0xcc,0xe0, + 0xff,0xff,0xff,0xff,0x9c,0xc5,0xcb,0xf0,0xff,0xff,0xff,0xff,0x9d,0xb7,0x0,0x60, + 0xff,0xff,0xff,0xff,0x9e,0x89,0xfe,0x70,0xff,0xff,0xff,0xff,0x9f,0xa0,0x1c,0xe0, + 0xff,0xff,0xff,0xff,0xa0,0x60,0xa5,0xf0,0xff,0xff,0xff,0xff,0xa1,0x7e,0xad,0x60, + 0xff,0xff,0xff,0xff,0xa2,0x5c,0x37,0x70,0xff,0xff,0xff,0xff,0xa3,0x4c,0x1a,0x60, + 0xff,0xff,0xff,0xff,0xc8,0x6c,0x35,0xf0,0xff,0xff,0xff,0xff,0xcc,0xe7,0x4b,0x10, + 0xff,0xff,0xff,0xff,0xcd,0xa9,0x17,0x90,0xff,0xff,0xff,0xff,0xce,0x82,0x74,0xe0, + 0xff,0xff,0xff,0xff,0xce,0xa2,0x43,0x10,0xff,0xff,0xff,0xff,0xcf,0x92,0x34,0x10, + 0xff,0xff,0xff,0xff,0xcf,0xe3,0xc6,0xe0,0xff,0xff,0xff,0xff,0xd0,0x6e,0x5e,0x90, + 0xff,0xff,0xff,0xff,0xd1,0x72,0x16,0x10,0xff,0xff,0xff,0xff,0xd2,0x4c,0xd2,0xf0, + 0xff,0xff,0xff,0xff,0xd3,0x3e,0x31,0x90,0xff,0xff,0xff,0xff,0xd4,0x49,0xd2,0x10, + 0xff,0xff,0xff,0xff,0xd5,0x1d,0xf7,0x70,0xff,0xff,0xff,0xff,0xd6,0x29,0x97,0xf0, + 0xff,0xff,0xff,0xff,0xd6,0xeb,0x80,0x90,0xff,0xff,0xff,0xff,0xd8,0x9,0x96,0x10, + 0xff,0xff,0xff,0xff,0xf9,0x33,0xb5,0xf0,0xff,0xff,0xff,0xff,0xf9,0xd9,0xc4,0xe0, + 0xff,0xff,0xff,0xff,0xfb,0x1c,0xd2,0x70,0xff,0xff,0xff,0xff,0xfb,0xb9,0xb4,0xf0, + 0xff,0xff,0xff,0xff,0xfc,0xfc,0xb4,0x70,0xff,0xff,0xff,0xff,0xfd,0x99,0x96,0xf0, + 0xff,0xff,0xff,0xff,0xfe,0xe5,0xd0,0xf0,0xff,0xff,0xff,0xff,0xff,0x82,0xb3,0x70, + 0x0,0x0,0x0,0x0,0x0,0xc5,0xb2,0xf0,0x0,0x0,0x0,0x0,0x1,0x62,0x95,0x70, + 0x0,0x0,0x0,0x0,0x2,0x9c,0x5a,0x70,0x0,0x0,0x0,0x0,0x3,0x42,0x77,0x70, + 0x0,0x0,0x0,0x0,0x4,0x85,0x76,0xf0,0x0,0x0,0x0,0x0,0x5,0x2b,0x93,0xf0, + 0x0,0x0,0x0,0x0,0x6,0x6e,0x93,0x70,0x0,0x0,0x0,0x0,0x7,0xb,0x75,0xf0, + 0x0,0x0,0x0,0x0,0x8,0x45,0x3a,0xf0,0x0,0x0,0x0,0x0,0x8,0xeb,0x57,0xf0, + 0x0,0x0,0x0,0x0,0xa,0x2e,0x57,0x70,0x0,0x0,0x0,0x0,0xa,0xcb,0x39,0xf0, + 0x0,0x0,0x0,0x0,0xc,0xe,0x39,0x70,0x0,0x0,0x0,0x0,0xc,0xab,0x1b,0xf0, + 0x0,0x0,0x0,0x0,0xd,0xe4,0xe0,0xf0,0x0,0x0,0x0,0x0,0xe,0x8a,0xfd,0xf0, + 0x0,0x0,0x0,0x0,0xf,0xcd,0xfd,0x70,0x0,0x0,0x0,0x0,0x10,0x74,0x1a,0x70, + 0x0,0x0,0x0,0x0,0x11,0xad,0xdf,0x70,0x0,0x0,0x0,0x0,0x12,0x53,0xfc,0x70, + 0x0,0x0,0x0,0x0,0x12,0xce,0x97,0xf0,0x0,0x0,0x0,0x0,0x13,0x4d,0x44,0x10, + 0x0,0x0,0x0,0x0,0x14,0x33,0xfa,0x90,0x0,0x0,0x0,0x0,0x15,0x23,0xeb,0x90, + 0x0,0x0,0x0,0x0,0x16,0x13,0xdc,0x90,0x0,0x0,0x0,0x0,0x17,0x3,0xcd,0x90, + 0x0,0x0,0x0,0x0,0x17,0xf3,0xbe,0x90,0x0,0x0,0x0,0x0,0x18,0xe3,0xaf,0x90, + 0x0,0x0,0x0,0x0,0x19,0xd3,0xa0,0x90,0x0,0x0,0x0,0x0,0x1a,0xc3,0x91,0x90, + 0x0,0x0,0x0,0x0,0x1b,0xbc,0xbd,0x10,0x0,0x0,0x0,0x0,0x1c,0xac,0xae,0x10, + 0x0,0x0,0x0,0x0,0x1d,0x9c,0x9f,0x10,0x0,0x0,0x0,0x0,0x1e,0x8c,0x90,0x10, + 0x0,0x0,0x0,0x0,0x1f,0x7c,0x81,0x10,0x0,0x0,0x0,0x0,0x20,0x6c,0x72,0x10, + 0x0,0x0,0x0,0x0,0x21,0x5c,0x63,0x10,0x0,0x0,0x0,0x0,0x22,0x4c,0x54,0x10, + 0x0,0x0,0x0,0x0,0x23,0x3c,0x45,0x10,0x0,0x0,0x0,0x0,0x24,0x2c,0x36,0x10, + 0x0,0x0,0x0,0x0,0x25,0x1c,0x27,0x10,0x0,0x0,0x0,0x0,0x26,0xc,0x18,0x10, + 0x0,0x0,0x0,0x0,0x27,0x5,0x43,0x90,0x0,0x0,0x0,0x0,0x27,0xf5,0x34,0x90, + 0x0,0x0,0x0,0x0,0x28,0xe5,0x25,0x90,0x0,0x0,0x0,0x0,0x29,0xd5,0x16,0x90, + 0x0,0x0,0x0,0x0,0x2a,0xc5,0x7,0x90,0x0,0x0,0x0,0x0,0x2b,0xb4,0xf8,0x90, + 0x0,0x0,0x0,0x0,0x2c,0xa4,0xe9,0x90,0x0,0x0,0x0,0x0,0x2d,0x94,0xda,0x90, + 0x0,0x0,0x0,0x0,0x2e,0x84,0xcb,0x90,0x0,0x0,0x0,0x0,0x2f,0x74,0xbc,0x90, + 0x0,0x0,0x0,0x0,0x30,0x64,0xad,0x90,0x0,0x0,0x0,0x0,0x31,0x5d,0xd9,0x10, + 0x0,0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d,0xbb,0x10, + 0x0,0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d,0x9d,0x10, + 0x0,0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd,0x7f,0x10, + 0x0,0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd,0x61,0x10, + 0x0,0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd,0x43,0x10, + 0x0,0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f,0x90, + 0x0,0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86,0x41,0x90, + 0x0,0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66,0x23,0x90, + 0x0,0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46,0x5,0x90, + 0x0,0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25,0xe7,0x90, + 0x0,0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5,0xc9,0x90, + 0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee,0xe6,0x10, + 0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce,0xc8,0x10, + 0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae,0xaa,0x10, + 0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c,0x10, + 0x0,0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e,0x10, + 0x0,0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57,0x8a,0x90, + 0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37,0x6c,0x90, + 0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17,0x4e,0x90, + 0x0,0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7,0x30,0x90, + 0x0,0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7,0x12,0x90, + 0x0,0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4,0x90, + 0x0,0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0,0x11,0x10, + 0x0,0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3,0x10, + 0x0,0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f,0xd5,0x10, + 0x0,0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f,0xb7,0x10, + 0x0,0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f,0x99,0x10, + 0x0,0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8,0xb5,0x90, + 0x0,0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8,0x97,0x90, + 0x0,0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8,0x79,0x90, + 0x0,0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b,0x90, + 0x0,0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88,0x3d,0x90, + 0x0,0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68,0x1f,0x90, + 0x0,0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51,0x3c,0x10, + 0x0,0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31,0x1e,0x10, + 0x0,0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11,0x0,0x10, + 0x0,0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0,0xe2,0x10, + 0x0,0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0,0xc4,0x10, + 0x0,0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6,0x10, + 0x0,0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99,0xc2,0x90, + 0x0,0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79,0xa4,0x90, + 0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x1,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x4,0x5,0x2,0x4,0x5,0x2,0x4,0x2,0x3,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x3,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x3,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x0,0x0,0xb,0xb4,0x0,0x0,0x0,0x0,0xb,0xb4, + 0x0,0x4,0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0xe,0x10,0x0,0xd,0x0,0x0, + 0xe,0x10,0x0,0xd,0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0x1c,0x20,0x1,0x8, + 0x0,0x0,0xe,0x10,0x0,0xd,0x4c,0x4d,0x54,0x0,0x52,0x4d,0x54,0x0,0x43,0x45, + 0x53,0x54,0x0,0x43,0x45,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x0, + 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0xa,0x43,0x45,0x54,0x2d,0x31,0x43,0x45,0x53, + 0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30, + 0x2f,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Bucharest + 0x0,0x0,0x8,0xad, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x8a,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x11,0x80,0x0,0x0,0x0,0xb7, + 0xb0,0xd2,0x8,0xb9,0x3e,0xf3,0x60,0xb9,0xef,0x9c,0x60,0xba,0xdf,0x8d,0x60,0xbb, + 0xcf,0x7e,0x60,0xbc,0xc8,0xa9,0xe0,0xbd,0xb8,0x9a,0xe0,0xbe,0xa8,0x8b,0xe0,0xbf, + 0x98,0x7c,0xe0,0xc0,0x88,0x6d,0xe0,0xc1,0x78,0x5e,0xe0,0xc2,0x68,0x4f,0xe0,0xc3, + 0x58,0x40,0xe0,0xc4,0x48,0x31,0xe0,0xc5,0x38,0x22,0xe0,0xc6,0x28,0x13,0xe0,0xc7, + 0x18,0x4,0xe0,0x11,0xad,0xd1,0x60,0x12,0x53,0xe0,0x50,0x13,0x4d,0xb,0xd0,0x14, + 0x33,0xd0,0x60,0x15,0x23,0xdd,0x80,0x16,0x13,0xce,0x80,0x17,0x3,0xbf,0x80,0x17, + 0xf3,0xb0,0x80,0x18,0xe3,0xa1,0x80,0x19,0xd3,0x92,0x80,0x1a,0xc3,0x83,0x80,0x1b, + 0xbc,0xaf,0x0,0x1c,0xac,0xa0,0x0,0x1d,0x9c,0x91,0x0,0x1e,0x8c,0x82,0x0,0x1f, + 0x7c,0x73,0x0,0x20,0x6c,0x64,0x0,0x21,0x5c,0x55,0x0,0x22,0x4c,0x46,0x0,0x23, + 0x3c,0x37,0x0,0x24,0x2c,0x28,0x0,0x25,0x1c,0x19,0x0,0x26,0xc,0xa,0x0,0x27, + 0x5,0x35,0x80,0x27,0x7f,0xb4,0xe0,0x27,0xf5,0xa,0x60,0x28,0xe4,0xfb,0x60,0x29, + 0xd4,0xec,0x60,0x2a,0xc4,0xdd,0x60,0x2b,0xb4,0xce,0x60,0x2c,0xa4,0xbf,0x60,0x2d, + 0x24,0xa0,0xe0,0x2d,0x94,0xb0,0x60,0x2e,0x84,0x93,0x50,0x2f,0x74,0x92,0x60,0x30, + 0x64,0x75,0x50,0x31,0x5d,0xae,0xe0,0x32,0x72,0x7b,0xd0,0x33,0x3d,0xbb,0x10,0x34, + 0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38, + 0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b, + 0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f, + 0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43, + 0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47, + 0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a, + 0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e, + 0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52, + 0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56, + 0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59, + 0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d, + 0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61, + 0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65, + 0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68, + 0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c, + 0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70, + 0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74, + 0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78, + 0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b, + 0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f, + 0x8e,0x7f,0x90,0x1,0x5,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x4,0x5,0x4,0x5,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x5,0x2,0x3, + 0x2,0x3,0x2,0x3,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x6,0x7,0x6,0x7,0x6, + 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, + 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, + 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, + 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, + 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x0,0x0,0x18, + 0x78,0x0,0x0,0x0,0x0,0x18,0x78,0x0,0x4,0x0,0x0,0x2a,0x30,0x1,0x8,0x0, + 0x0,0x1c,0x20,0x0,0xd,0x0,0x0,0x2a,0x30,0x1,0x8,0x0,0x0,0x1c,0x20,0x0, + 0xd,0x0,0x0,0x2a,0x30,0x1,0x8,0x0,0x0,0x1c,0x20,0x0,0xd,0x4c,0x4d,0x54, + 0x0,0x42,0x4d,0x54,0x0,0x45,0x45,0x53,0x54,0x0,0x45,0x45,0x54,0x0,0x0,0x0, + 0x1,0x1,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x54,0x5a, + 0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x8b,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x11,0xf8,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xff,0xff,0xff,0xff,0x6c,0xcf,0xe0,0x8,0xff,0xff,0xff,0xff,0xb7,0xb0, + 0xd2,0x8,0xff,0xff,0xff,0xff,0xb9,0x3e,0xf3,0x60,0xff,0xff,0xff,0xff,0xb9,0xef, + 0x9c,0x60,0xff,0xff,0xff,0xff,0xba,0xdf,0x8d,0x60,0xff,0xff,0xff,0xff,0xbb,0xcf, + 0x7e,0x60,0xff,0xff,0xff,0xff,0xbc,0xc8,0xa9,0xe0,0xff,0xff,0xff,0xff,0xbd,0xb8, + 0x9a,0xe0,0xff,0xff,0xff,0xff,0xbe,0xa8,0x8b,0xe0,0xff,0xff,0xff,0xff,0xbf,0x98, + 0x7c,0xe0,0xff,0xff,0xff,0xff,0xc0,0x88,0x6d,0xe0,0xff,0xff,0xff,0xff,0xc1,0x78, + 0x5e,0xe0,0xff,0xff,0xff,0xff,0xc2,0x68,0x4f,0xe0,0xff,0xff,0xff,0xff,0xc3,0x58, + 0x40,0xe0,0xff,0xff,0xff,0xff,0xc4,0x48,0x31,0xe0,0xff,0xff,0xff,0xff,0xc5,0x38, + 0x22,0xe0,0xff,0xff,0xff,0xff,0xc6,0x28,0x13,0xe0,0xff,0xff,0xff,0xff,0xc7,0x18, + 0x4,0xe0,0x0,0x0,0x0,0x0,0x11,0xad,0xd1,0x60,0x0,0x0,0x0,0x0,0x12,0x53, + 0xe0,0x50,0x0,0x0,0x0,0x0,0x13,0x4d,0xb,0xd0,0x0,0x0,0x0,0x0,0x14,0x33, + 0xd0,0x60,0x0,0x0,0x0,0x0,0x15,0x23,0xdd,0x80,0x0,0x0,0x0,0x0,0x16,0x13, + 0xce,0x80,0x0,0x0,0x0,0x0,0x17,0x3,0xbf,0x80,0x0,0x0,0x0,0x0,0x17,0xf3, + 0xb0,0x80,0x0,0x0,0x0,0x0,0x18,0xe3,0xa1,0x80,0x0,0x0,0x0,0x0,0x19,0xd3, + 0x92,0x80,0x0,0x0,0x0,0x0,0x1a,0xc3,0x83,0x80,0x0,0x0,0x0,0x0,0x1b,0xbc, + 0xaf,0x0,0x0,0x0,0x0,0x0,0x1c,0xac,0xa0,0x0,0x0,0x0,0x0,0x0,0x1d,0x9c, + 0x91,0x0,0x0,0x0,0x0,0x0,0x1e,0x8c,0x82,0x0,0x0,0x0,0x0,0x0,0x1f,0x7c, + 0x73,0x0,0x0,0x0,0x0,0x0,0x20,0x6c,0x64,0x0,0x0,0x0,0x0,0x0,0x21,0x5c, + 0x55,0x0,0x0,0x0,0x0,0x0,0x22,0x4c,0x46,0x0,0x0,0x0,0x0,0x0,0x23,0x3c, + 0x37,0x0,0x0,0x0,0x0,0x0,0x24,0x2c,0x28,0x0,0x0,0x0,0x0,0x0,0x25,0x1c, + 0x19,0x0,0x0,0x0,0x0,0x0,0x26,0xc,0xa,0x0,0x0,0x0,0x0,0x0,0x27,0x5, + 0x35,0x80,0x0,0x0,0x0,0x0,0x27,0x7f,0xb4,0xe0,0x0,0x0,0x0,0x0,0x27,0xf5, + 0xa,0x60,0x0,0x0,0x0,0x0,0x28,0xe4,0xfb,0x60,0x0,0x0,0x0,0x0,0x29,0xd4, + 0xec,0x60,0x0,0x0,0x0,0x0,0x2a,0xc4,0xdd,0x60,0x0,0x0,0x0,0x0,0x2b,0xb4, + 0xce,0x60,0x0,0x0,0x0,0x0,0x2c,0xa4,0xbf,0x60,0x0,0x0,0x0,0x0,0x2d,0x24, + 0xa0,0xe0,0x0,0x0,0x0,0x0,0x2d,0x94,0xb0,0x60,0x0,0x0,0x0,0x0,0x2e,0x84, + 0x93,0x50,0x0,0x0,0x0,0x0,0x2f,0x74,0x92,0x60,0x0,0x0,0x0,0x0,0x30,0x64, + 0x75,0x50,0x0,0x0,0x0,0x0,0x31,0x5d,0xae,0xe0,0x0,0x0,0x0,0x0,0x32,0x72, + 0x7b,0xd0,0x0,0x0,0x0,0x0,0x33,0x3d,0xbb,0x10,0x0,0x0,0x0,0x0,0x34,0x52, + 0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d,0x9d,0x10,0x0,0x0,0x0,0x0,0x36,0x32, + 0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd,0x7f,0x10,0x0,0x0,0x0,0x0,0x38,0x1b, + 0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd,0x61,0x10,0x0,0x0,0x0,0x0,0x39,0xfb, + 0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd,0x43,0x10,0x0,0x0,0x0,0x0,0x3b,0xdb, + 0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb, + 0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86,0x41,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b, + 0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66,0x23,0x90,0x0,0x0,0x0,0x0,0x41,0x84, + 0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46,0x5,0x90,0x0,0x0,0x0,0x0,0x43,0x64, + 0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25,0xe7,0x90,0x0,0x0,0x0,0x0,0x45,0x43, + 0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5,0xc9,0x90,0x0,0x0,0x0,0x0,0x47,0x23, + 0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee,0xe6,0x10,0x0,0x0,0x0,0x0,0x49,0x3, + 0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce,0xc8,0x10,0x0,0x0,0x0,0x0,0x4a,0xe3, + 0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae,0xaa,0x10,0x0,0x0,0x0,0x0,0x4c,0xcc, + 0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c,0x10,0x0,0x0,0x0,0x0,0x4e,0xac, + 0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e,0x10,0x0,0x0,0x0,0x0,0x50,0x8c, + 0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57,0x8a,0x90,0x0,0x0,0x0,0x0,0x52,0x6c, + 0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37,0x6c,0x90,0x0,0x0,0x0,0x0,0x54,0x4c, + 0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17,0x4e,0x90,0x0,0x0,0x0,0x0,0x56,0x2c, + 0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7,0x30,0x90,0x0,0x0,0x0,0x0,0x58,0x15, + 0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7,0x12,0x90,0x0,0x0,0x0,0x0,0x59,0xf5, + 0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4,0x90,0x0,0x0,0x0,0x0,0x5b,0xd5, + 0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0,0x11,0x10,0x0,0x0,0x0,0x0,0x5d,0xb4, + 0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3,0x10,0x0,0x0,0x0,0x0,0x5f,0x94, + 0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f,0xd5,0x10,0x0,0x0,0x0,0x0,0x61,0x7d, + 0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f,0xb7,0x10,0x0,0x0,0x0,0x0,0x63,0x5d, + 0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f,0x99,0x10,0x0,0x0,0x0,0x0,0x65,0x3d, + 0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8,0xb5,0x90,0x0,0x0,0x0,0x0,0x67,0x1d, + 0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8,0x97,0x90,0x0,0x0,0x0,0x0,0x68,0xfd, + 0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8,0x79,0x90,0x0,0x0,0x0,0x0,0x6a,0xdd, + 0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b,0x90,0x0,0x0,0x0,0x0,0x6c,0xc6, + 0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88,0x3d,0x90,0x0,0x0,0x0,0x0,0x6e,0xa6, + 0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68,0x1f,0x90,0x0,0x0,0x0,0x0,0x70,0x86, + 0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51,0x3c,0x10,0x0,0x0,0x0,0x0,0x72,0x66, + 0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31,0x1e,0x10,0x0,0x0,0x0,0x0,0x74,0x45, + 0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11,0x0,0x10,0x0,0x0,0x0,0x0,0x76,0x2f, + 0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0,0xe2,0x10,0x0,0x0,0x0,0x0,0x78,0xe, + 0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0,0xc4,0x10,0x0,0x0,0x0,0x0,0x79,0xee, + 0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6,0x10,0x0,0x0,0x0,0x0,0x7b,0xce, + 0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99,0xc2,0x90,0x0,0x0,0x0,0x0,0x7d,0xae, + 0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79,0xa4,0x90,0x0,0x0,0x0,0x0,0x7f,0x8e, + 0x7f,0x90,0x0,0x1,0x5,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x4,0x5,0x4,0x5,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x5,0x2,0x3, + 0x2,0x3,0x2,0x3,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x6,0x7,0x6,0x7,0x6, + 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, + 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, + 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, + 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, + 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x0,0x0,0x18, + 0x78,0x0,0x0,0x0,0x0,0x18,0x78,0x0,0x4,0x0,0x0,0x2a,0x30,0x1,0x8,0x0, + 0x0,0x1c,0x20,0x0,0xd,0x0,0x0,0x2a,0x30,0x1,0x8,0x0,0x0,0x1c,0x20,0x0, + 0xd,0x0,0x0,0x2a,0x30,0x1,0x8,0x0,0x0,0x1c,0x20,0x0,0xd,0x4c,0x4d,0x54, + 0x0,0x42,0x4d,0x54,0x0,0x45,0x45,0x53,0x54,0x0,0x45,0x45,0x54,0x0,0x0,0x0, + 0x1,0x1,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0xa,0x45, + 0x45,0x54,0x2d,0x32,0x45,0x45,0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2f, + 0x33,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30,0x2f,0x34,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Europe/San_Marino + 0x0,0x0,0xa,0x84, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xac,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0x9b, + 0x38,0xf8,0x70,0x9b,0xd5,0xcc,0xe0,0x9c,0xc5,0xcb,0xf0,0x9d,0xb7,0x0,0x60,0x9e, + 0x89,0xfe,0x70,0x9f,0xa0,0x1c,0xe0,0xa0,0x60,0xa5,0xf0,0xa1,0x7e,0xad,0x60,0xa2, + 0x5c,0x37,0x70,0xa3,0x4c,0x1a,0x60,0xc8,0x6c,0x35,0xf0,0xcc,0xe7,0x4b,0x10,0xcd, + 0xa9,0x17,0x90,0xce,0x82,0x74,0xe0,0xce,0xa2,0x43,0x10,0xcf,0x92,0x34,0x10,0xcf, + 0xe3,0xc6,0xe0,0xd0,0x6e,0x5e,0x90,0xd1,0x72,0x16,0x10,0xd2,0x4c,0xd2,0xf0,0xd3, + 0x3e,0x31,0x90,0xd4,0x49,0xd2,0x10,0xd5,0x1d,0xf7,0x70,0xd6,0x29,0x97,0xf0,0xd6, + 0xeb,0x80,0x90,0xd8,0x9,0x96,0x10,0xf9,0x33,0xb5,0xf0,0xf9,0xd9,0xc4,0xe0,0xfb, + 0x1c,0xd2,0x70,0xfb,0xb9,0xb4,0xf0,0xfc,0xfc,0xb4,0x70,0xfd,0x99,0x96,0xf0,0xfe, + 0xe5,0xd0,0xf0,0xff,0x82,0xb3,0x70,0x0,0xc5,0xb2,0xf0,0x1,0x62,0x95,0x70,0x2, + 0x9c,0x5a,0x70,0x3,0x42,0x77,0x70,0x4,0x85,0x76,0xf0,0x5,0x2b,0x93,0xf0,0x6, + 0x6e,0x93,0x70,0x7,0xb,0x75,0xf0,0x8,0x45,0x3a,0xf0,0x8,0xeb,0x57,0xf0,0xa, + 0x2e,0x57,0x70,0xa,0xcb,0x39,0xf0,0xc,0xe,0x39,0x70,0xc,0xab,0x1b,0xf0,0xd, + 0xe4,0xe0,0xf0,0xe,0x8a,0xfd,0xf0,0xf,0xcd,0xfd,0x70,0x10,0x74,0x1a,0x70,0x11, + 0xad,0xdf,0x70,0x12,0x53,0xfc,0x70,0x12,0xce,0x97,0xf0,0x13,0x4d,0x44,0x10,0x14, + 0x33,0xfa,0x90,0x15,0x23,0xeb,0x90,0x16,0x13,0xdc,0x90,0x17,0x3,0xcd,0x90,0x17, + 0xf3,0xbe,0x90,0x18,0xe3,0xaf,0x90,0x19,0xd3,0xa0,0x90,0x1a,0xc3,0x91,0x90,0x1b, + 0xbc,0xbd,0x10,0x1c,0xac,0xae,0x10,0x1d,0x9c,0x9f,0x10,0x1e,0x8c,0x90,0x10,0x1f, + 0x7c,0x81,0x10,0x20,0x6c,0x72,0x10,0x21,0x5c,0x63,0x10,0x22,0x4c,0x54,0x10,0x23, + 0x3c,0x45,0x10,0x24,0x2c,0x36,0x10,0x25,0x1c,0x27,0x10,0x26,0xc,0x18,0x10,0x27, + 0x5,0x43,0x90,0x27,0xf5,0x34,0x90,0x28,0xe5,0x25,0x90,0x29,0xd5,0x16,0x90,0x2a, + 0xc5,0x7,0x90,0x2b,0xb4,0xf8,0x90,0x2c,0xa4,0xe9,0x90,0x2d,0x94,0xda,0x90,0x2e, + 0x84,0xcb,0x90,0x2f,0x74,0xbc,0x90,0x30,0x64,0xad,0x90,0x31,0x5d,0xd9,0x10,0x32, + 0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34,0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36, + 0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39, + 0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b,0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d, + 0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f,0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41, + 0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43,0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45, + 0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49, + 0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c, + 0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e,0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50, + 0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54, + 0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56,0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58, + 0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59,0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b, + 0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d,0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f, + 0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61,0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63, + 0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65,0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67, + 0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68,0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a, + 0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c,0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e, + 0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70,0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72, + 0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74,0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76, + 0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79, + 0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d, + 0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x3,0x4,0x1,0x3,0x4,0x1,0x3,0x1,0x2, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x2,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x2,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x0,0x0,0xb,0xb4,0x0,0x0,0x0,0x0,0x1c, + 0x20,0x1,0x4,0x0,0x0,0xe,0x10,0x0,0x9,0x0,0x0,0xe,0x10,0x0,0x9,0x0, + 0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe,0x10,0x0, + 0x9,0x52,0x4d,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x43,0x45,0x54,0x0,0x0,0x0, + 0x0,0x1,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x54,0x5a,0x69,0x66, + 0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xae, + 0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x11,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0x3d,0xbe,0x1e,0xcc,0xff,0xff,0xff,0xff,0x70,0xbc,0x81,0x70, + 0xff,0xff,0xff,0xff,0x9b,0x38,0xf8,0x70,0xff,0xff,0xff,0xff,0x9b,0xd5,0xcc,0xe0, + 0xff,0xff,0xff,0xff,0x9c,0xc5,0xcb,0xf0,0xff,0xff,0xff,0xff,0x9d,0xb7,0x0,0x60, + 0xff,0xff,0xff,0xff,0x9e,0x89,0xfe,0x70,0xff,0xff,0xff,0xff,0x9f,0xa0,0x1c,0xe0, + 0xff,0xff,0xff,0xff,0xa0,0x60,0xa5,0xf0,0xff,0xff,0xff,0xff,0xa1,0x7e,0xad,0x60, + 0xff,0xff,0xff,0xff,0xa2,0x5c,0x37,0x70,0xff,0xff,0xff,0xff,0xa3,0x4c,0x1a,0x60, + 0xff,0xff,0xff,0xff,0xc8,0x6c,0x35,0xf0,0xff,0xff,0xff,0xff,0xcc,0xe7,0x4b,0x10, + 0xff,0xff,0xff,0xff,0xcd,0xa9,0x17,0x90,0xff,0xff,0xff,0xff,0xce,0x82,0x74,0xe0, + 0xff,0xff,0xff,0xff,0xce,0xa2,0x43,0x10,0xff,0xff,0xff,0xff,0xcf,0x92,0x34,0x10, + 0xff,0xff,0xff,0xff,0xcf,0xe3,0xc6,0xe0,0xff,0xff,0xff,0xff,0xd0,0x6e,0x5e,0x90, + 0xff,0xff,0xff,0xff,0xd1,0x72,0x16,0x10,0xff,0xff,0xff,0xff,0xd2,0x4c,0xd2,0xf0, + 0xff,0xff,0xff,0xff,0xd3,0x3e,0x31,0x90,0xff,0xff,0xff,0xff,0xd4,0x49,0xd2,0x10, + 0xff,0xff,0xff,0xff,0xd5,0x1d,0xf7,0x70,0xff,0xff,0xff,0xff,0xd6,0x29,0x97,0xf0, + 0xff,0xff,0xff,0xff,0xd6,0xeb,0x80,0x90,0xff,0xff,0xff,0xff,0xd8,0x9,0x96,0x10, + 0xff,0xff,0xff,0xff,0xf9,0x33,0xb5,0xf0,0xff,0xff,0xff,0xff,0xf9,0xd9,0xc4,0xe0, + 0xff,0xff,0xff,0xff,0xfb,0x1c,0xd2,0x70,0xff,0xff,0xff,0xff,0xfb,0xb9,0xb4,0xf0, + 0xff,0xff,0xff,0xff,0xfc,0xfc,0xb4,0x70,0xff,0xff,0xff,0xff,0xfd,0x99,0x96,0xf0, + 0xff,0xff,0xff,0xff,0xfe,0xe5,0xd0,0xf0,0xff,0xff,0xff,0xff,0xff,0x82,0xb3,0x70, + 0x0,0x0,0x0,0x0,0x0,0xc5,0xb2,0xf0,0x0,0x0,0x0,0x0,0x1,0x62,0x95,0x70, + 0x0,0x0,0x0,0x0,0x2,0x9c,0x5a,0x70,0x0,0x0,0x0,0x0,0x3,0x42,0x77,0x70, + 0x0,0x0,0x0,0x0,0x4,0x85,0x76,0xf0,0x0,0x0,0x0,0x0,0x5,0x2b,0x93,0xf0, + 0x0,0x0,0x0,0x0,0x6,0x6e,0x93,0x70,0x0,0x0,0x0,0x0,0x7,0xb,0x75,0xf0, + 0x0,0x0,0x0,0x0,0x8,0x45,0x3a,0xf0,0x0,0x0,0x0,0x0,0x8,0xeb,0x57,0xf0, + 0x0,0x0,0x0,0x0,0xa,0x2e,0x57,0x70,0x0,0x0,0x0,0x0,0xa,0xcb,0x39,0xf0, + 0x0,0x0,0x0,0x0,0xc,0xe,0x39,0x70,0x0,0x0,0x0,0x0,0xc,0xab,0x1b,0xf0, + 0x0,0x0,0x0,0x0,0xd,0xe4,0xe0,0xf0,0x0,0x0,0x0,0x0,0xe,0x8a,0xfd,0xf0, + 0x0,0x0,0x0,0x0,0xf,0xcd,0xfd,0x70,0x0,0x0,0x0,0x0,0x10,0x74,0x1a,0x70, + 0x0,0x0,0x0,0x0,0x11,0xad,0xdf,0x70,0x0,0x0,0x0,0x0,0x12,0x53,0xfc,0x70, + 0x0,0x0,0x0,0x0,0x12,0xce,0x97,0xf0,0x0,0x0,0x0,0x0,0x13,0x4d,0x44,0x10, + 0x0,0x0,0x0,0x0,0x14,0x33,0xfa,0x90,0x0,0x0,0x0,0x0,0x15,0x23,0xeb,0x90, + 0x0,0x0,0x0,0x0,0x16,0x13,0xdc,0x90,0x0,0x0,0x0,0x0,0x17,0x3,0xcd,0x90, + 0x0,0x0,0x0,0x0,0x17,0xf3,0xbe,0x90,0x0,0x0,0x0,0x0,0x18,0xe3,0xaf,0x90, + 0x0,0x0,0x0,0x0,0x19,0xd3,0xa0,0x90,0x0,0x0,0x0,0x0,0x1a,0xc3,0x91,0x90, + 0x0,0x0,0x0,0x0,0x1b,0xbc,0xbd,0x10,0x0,0x0,0x0,0x0,0x1c,0xac,0xae,0x10, + 0x0,0x0,0x0,0x0,0x1d,0x9c,0x9f,0x10,0x0,0x0,0x0,0x0,0x1e,0x8c,0x90,0x10, + 0x0,0x0,0x0,0x0,0x1f,0x7c,0x81,0x10,0x0,0x0,0x0,0x0,0x20,0x6c,0x72,0x10, + 0x0,0x0,0x0,0x0,0x21,0x5c,0x63,0x10,0x0,0x0,0x0,0x0,0x22,0x4c,0x54,0x10, + 0x0,0x0,0x0,0x0,0x23,0x3c,0x45,0x10,0x0,0x0,0x0,0x0,0x24,0x2c,0x36,0x10, + 0x0,0x0,0x0,0x0,0x25,0x1c,0x27,0x10,0x0,0x0,0x0,0x0,0x26,0xc,0x18,0x10, + 0x0,0x0,0x0,0x0,0x27,0x5,0x43,0x90,0x0,0x0,0x0,0x0,0x27,0xf5,0x34,0x90, + 0x0,0x0,0x0,0x0,0x28,0xe5,0x25,0x90,0x0,0x0,0x0,0x0,0x29,0xd5,0x16,0x90, + 0x0,0x0,0x0,0x0,0x2a,0xc5,0x7,0x90,0x0,0x0,0x0,0x0,0x2b,0xb4,0xf8,0x90, + 0x0,0x0,0x0,0x0,0x2c,0xa4,0xe9,0x90,0x0,0x0,0x0,0x0,0x2d,0x94,0xda,0x90, + 0x0,0x0,0x0,0x0,0x2e,0x84,0xcb,0x90,0x0,0x0,0x0,0x0,0x2f,0x74,0xbc,0x90, + 0x0,0x0,0x0,0x0,0x30,0x64,0xad,0x90,0x0,0x0,0x0,0x0,0x31,0x5d,0xd9,0x10, + 0x0,0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d,0xbb,0x10, + 0x0,0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d,0x9d,0x10, + 0x0,0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd,0x7f,0x10, + 0x0,0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd,0x61,0x10, + 0x0,0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd,0x43,0x10, + 0x0,0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f,0x90, + 0x0,0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86,0x41,0x90, + 0x0,0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66,0x23,0x90, + 0x0,0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46,0x5,0x90, + 0x0,0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25,0xe7,0x90, + 0x0,0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5,0xc9,0x90, + 0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee,0xe6,0x10, + 0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce,0xc8,0x10, + 0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae,0xaa,0x10, + 0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c,0x10, + 0x0,0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e,0x10, + 0x0,0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57,0x8a,0x90, + 0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37,0x6c,0x90, + 0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17,0x4e,0x90, + 0x0,0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7,0x30,0x90, + 0x0,0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7,0x12,0x90, + 0x0,0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4,0x90, + 0x0,0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0,0x11,0x10, + 0x0,0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3,0x10, + 0x0,0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f,0xd5,0x10, + 0x0,0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f,0xb7,0x10, + 0x0,0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f,0x99,0x10, + 0x0,0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8,0xb5,0x90, + 0x0,0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8,0x97,0x90, + 0x0,0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8,0x79,0x90, + 0x0,0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b,0x90, + 0x0,0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88,0x3d,0x90, + 0x0,0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68,0x1f,0x90, + 0x0,0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51,0x3c,0x10, + 0x0,0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31,0x1e,0x10, + 0x0,0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11,0x0,0x10, + 0x0,0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0,0xe2,0x10, + 0x0,0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0,0xc4,0x10, + 0x0,0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6,0x10, + 0x0,0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99,0xc2,0x90, + 0x0,0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79,0xa4,0x90, + 0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x1,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x4,0x5,0x2,0x4,0x5,0x2,0x4,0x2,0x3,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x3,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x3,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x0,0x0,0xb,0xb4,0x0,0x0,0x0,0x0,0xb,0xb4, + 0x0,0x4,0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0xe,0x10,0x0,0xd,0x0,0x0, + 0xe,0x10,0x0,0xd,0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0x1c,0x20,0x1,0x8, + 0x0,0x0,0xe,0x10,0x0,0xd,0x4c,0x4d,0x54,0x0,0x52,0x4d,0x54,0x0,0x43,0x45, + 0x53,0x54,0x0,0x43,0x45,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x0, + 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0xa,0x43,0x45,0x54,0x2d,0x31,0x43,0x45,0x53, + 0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30, + 0x2f,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Copenhagen + 0x0,0x0,0x8,0x70, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x86,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0x9b, + 0x1e,0x8c,0x60,0x9b,0xd5,0xbe,0xd0,0xc8,0x43,0x57,0x70,0xcc,0xe7,0x4b,0x10,0xcd, + 0xa9,0x17,0x90,0xce,0xa2,0x43,0x10,0xcf,0x92,0x34,0x10,0xd0,0x82,0x25,0x10,0xd1, + 0x72,0x16,0x10,0xd2,0x24,0x10,0x90,0xd3,0x79,0x85,0x10,0xd4,0x1b,0xad,0x90,0xd5, + 0x5e,0xad,0x10,0xd5,0xdf,0xe0,0x10,0xd7,0x47,0xc9,0x90,0xd7,0xbf,0xc2,0x10,0x12, + 0xce,0x97,0xf0,0x13,0x4d,0x44,0x10,0x14,0x33,0xfa,0x90,0x15,0x23,0xeb,0x90,0x16, + 0x13,0xdc,0x90,0x17,0x3,0xcd,0x90,0x17,0xf3,0xbe,0x90,0x18,0xe3,0xaf,0x90,0x19, + 0xd3,0xa0,0x90,0x1a,0xc3,0x91,0x90,0x1b,0xbc,0xbd,0x10,0x1c,0xac,0xae,0x10,0x1d, + 0x9c,0x9f,0x10,0x1e,0x8c,0x90,0x10,0x1f,0x7c,0x81,0x10,0x20,0x6c,0x72,0x10,0x21, + 0x5c,0x63,0x10,0x22,0x4c,0x54,0x10,0x23,0x3c,0x45,0x10,0x24,0x2c,0x36,0x10,0x25, + 0x1c,0x27,0x10,0x26,0xc,0x18,0x10,0x27,0x5,0x43,0x90,0x27,0xf5,0x34,0x90,0x28, + 0xe5,0x25,0x90,0x29,0xd5,0x16,0x90,0x2a,0xc5,0x7,0x90,0x2b,0xb4,0xf8,0x90,0x2c, + 0xa4,0xe9,0x90,0x2d,0x94,0xda,0x90,0x2e,0x84,0xcb,0x90,0x2f,0x74,0xbc,0x90,0x30, + 0x64,0xad,0x90,0x31,0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34, + 0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38, + 0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b, + 0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f, + 0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43, + 0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47, + 0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a, + 0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e, + 0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52, + 0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56, + 0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59, + 0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d, + 0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61, + 0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65, + 0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68, + 0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c, + 0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70, + 0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74, + 0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78, + 0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b, + 0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f, + 0x8e,0x7f,0x90,0x2,0x1,0x2,0x1,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x2,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x0,0x0,0xb,0xcc,0x0,0x0,0x0, + 0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe,0x10,0x0,0x9,0x0,0x0,0xe,0x10,0x0, + 0x9,0x0,0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe, + 0x10,0x0,0x9,0x43,0x4d,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x43,0x45,0x54,0x0, + 0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x54,0x5a, + 0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x88,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x11,0xf8,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xff,0xff,0xff,0xff,0x69,0x86,0xcf,0xb4,0xff,0xff,0xff,0xff,0x71,0xc, + 0xef,0x34,0xff,0xff,0xff,0xff,0x9b,0x1e,0x8c,0x60,0xff,0xff,0xff,0xff,0x9b,0xd5, + 0xbe,0xd0,0xff,0xff,0xff,0xff,0xc8,0x43,0x57,0x70,0xff,0xff,0xff,0xff,0xcc,0xe7, + 0x4b,0x10,0xff,0xff,0xff,0xff,0xcd,0xa9,0x17,0x90,0xff,0xff,0xff,0xff,0xce,0xa2, + 0x43,0x10,0xff,0xff,0xff,0xff,0xcf,0x92,0x34,0x10,0xff,0xff,0xff,0xff,0xd0,0x82, + 0x25,0x10,0xff,0xff,0xff,0xff,0xd1,0x72,0x16,0x10,0xff,0xff,0xff,0xff,0xd2,0x24, + 0x10,0x90,0xff,0xff,0xff,0xff,0xd3,0x79,0x85,0x10,0xff,0xff,0xff,0xff,0xd4,0x1b, + 0xad,0x90,0xff,0xff,0xff,0xff,0xd5,0x5e,0xad,0x10,0xff,0xff,0xff,0xff,0xd5,0xdf, + 0xe0,0x10,0xff,0xff,0xff,0xff,0xd7,0x47,0xc9,0x90,0xff,0xff,0xff,0xff,0xd7,0xbf, + 0xc2,0x10,0x0,0x0,0x0,0x0,0x12,0xce,0x97,0xf0,0x0,0x0,0x0,0x0,0x13,0x4d, + 0x44,0x10,0x0,0x0,0x0,0x0,0x14,0x33,0xfa,0x90,0x0,0x0,0x0,0x0,0x15,0x23, + 0xeb,0x90,0x0,0x0,0x0,0x0,0x16,0x13,0xdc,0x90,0x0,0x0,0x0,0x0,0x17,0x3, + 0xcd,0x90,0x0,0x0,0x0,0x0,0x17,0xf3,0xbe,0x90,0x0,0x0,0x0,0x0,0x18,0xe3, + 0xaf,0x90,0x0,0x0,0x0,0x0,0x19,0xd3,0xa0,0x90,0x0,0x0,0x0,0x0,0x1a,0xc3, + 0x91,0x90,0x0,0x0,0x0,0x0,0x1b,0xbc,0xbd,0x10,0x0,0x0,0x0,0x0,0x1c,0xac, + 0xae,0x10,0x0,0x0,0x0,0x0,0x1d,0x9c,0x9f,0x10,0x0,0x0,0x0,0x0,0x1e,0x8c, + 0x90,0x10,0x0,0x0,0x0,0x0,0x1f,0x7c,0x81,0x10,0x0,0x0,0x0,0x0,0x20,0x6c, + 0x72,0x10,0x0,0x0,0x0,0x0,0x21,0x5c,0x63,0x10,0x0,0x0,0x0,0x0,0x22,0x4c, + 0x54,0x10,0x0,0x0,0x0,0x0,0x23,0x3c,0x45,0x10,0x0,0x0,0x0,0x0,0x24,0x2c, + 0x36,0x10,0x0,0x0,0x0,0x0,0x25,0x1c,0x27,0x10,0x0,0x0,0x0,0x0,0x26,0xc, + 0x18,0x10,0x0,0x0,0x0,0x0,0x27,0x5,0x43,0x90,0x0,0x0,0x0,0x0,0x27,0xf5, + 0x34,0x90,0x0,0x0,0x0,0x0,0x28,0xe5,0x25,0x90,0x0,0x0,0x0,0x0,0x29,0xd5, + 0x16,0x90,0x0,0x0,0x0,0x0,0x2a,0xc5,0x7,0x90,0x0,0x0,0x0,0x0,0x2b,0xb4, + 0xf8,0x90,0x0,0x0,0x0,0x0,0x2c,0xa4,0xe9,0x90,0x0,0x0,0x0,0x0,0x2d,0x94, + 0xda,0x90,0x0,0x0,0x0,0x0,0x2e,0x84,0xcb,0x90,0x0,0x0,0x0,0x0,0x2f,0x74, + 0xbc,0x90,0x0,0x0,0x0,0x0,0x30,0x64,0xad,0x90,0x0,0x0,0x0,0x0,0x31,0x5d, + 0xd9,0x10,0x0,0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d, + 0xbb,0x10,0x0,0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d, + 0x9d,0x10,0x0,0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd, + 0x7f,0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd, + 0x61,0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd, + 0x43,0x10,0x0,0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6, + 0x5f,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86, + 0x41,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66, + 0x23,0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46, + 0x5,0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25, + 0xe7,0x90,0x0,0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5, + 0xc9,0x90,0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee, + 0xe6,0x10,0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce, + 0xc8,0x10,0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae, + 0xaa,0x10,0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e, + 0x8c,0x10,0x0,0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e, + 0x6e,0x10,0x0,0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57, + 0x8a,0x90,0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37, + 0x6c,0x90,0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17, + 0x4e,0x90,0x0,0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7, + 0x30,0x90,0x0,0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7, + 0x12,0x90,0x0,0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6, + 0xf4,0x90,0x0,0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0, + 0x11,0x10,0x0,0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f, + 0xf3,0x10,0x0,0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f, + 0xd5,0x10,0x0,0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f, + 0xb7,0x10,0x0,0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f, + 0x99,0x10,0x0,0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8, + 0xb5,0x90,0x0,0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8, + 0x97,0x90,0x0,0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8, + 0x79,0x90,0x0,0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8, + 0x5b,0x90,0x0,0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88, + 0x3d,0x90,0x0,0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68, + 0x1f,0x90,0x0,0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51, + 0x3c,0x10,0x0,0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31, + 0x1e,0x10,0x0,0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11, + 0x0,0x10,0x0,0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0, + 0xe2,0x10,0x0,0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0, + 0xc4,0x10,0x0,0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0, + 0xa6,0x10,0x0,0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99, + 0xc2,0x90,0x0,0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79, + 0xa4,0x90,0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x1,0x3,0x2,0x3,0x2, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x3,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x0,0x0,0xb,0xcc,0x0,0x0,0x0,0x0,0xb,0xcc,0x0,0x4,0x0,0x0, + 0x1c,0x20,0x1,0x8,0x0,0x0,0xe,0x10,0x0,0xd,0x0,0x0,0xe,0x10,0x0,0xd, + 0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0xe,0x10, + 0x0,0xd,0x4c,0x4d,0x54,0x0,0x43,0x4d,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x43, + 0x45,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0, + 0x0,0x1,0x1,0xa,0x43,0x45,0x54,0x2d,0x31,0x43,0x45,0x53,0x54,0x2c,0x4d,0x33, + 0x2e,0x35,0x2e,0x30,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30,0x2f,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Berlin + 0x0,0x0,0x9,0x1f, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x91,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x12,0x80,0x0,0x0,0x0,0x9b, + 0xc,0x17,0x60,0x9b,0xd5,0xda,0xf0,0x9c,0xd9,0xae,0x90,0x9d,0xa4,0xb5,0x90,0x9e, + 0xb9,0x90,0x90,0x9f,0x84,0x97,0x90,0xc8,0x9,0x71,0x90,0xcc,0xe7,0x4b,0x10,0xcd, + 0xa9,0x17,0x90,0xce,0xa2,0x43,0x10,0xcf,0x92,0x34,0x10,0xd0,0x82,0x25,0x10,0xd1, + 0x72,0x16,0x10,0xd1,0xb6,0x96,0x0,0xd2,0x58,0xbe,0x80,0xd2,0xa1,0x4f,0x10,0xd2, + 0xdb,0x34,0xf0,0xd3,0x63,0x1b,0x90,0xd4,0x4b,0x23,0x90,0xd5,0x39,0xd1,0x20,0xd5, + 0x67,0xe7,0x90,0xd5,0xa8,0x73,0x0,0xd6,0x29,0xb4,0x10,0xd7,0x2c,0x1a,0x10,0xd8, + 0x9,0x96,0x10,0xd9,0x2,0xc1,0x90,0xd9,0xe9,0x78,0x10,0x12,0xce,0x97,0xf0,0x13, + 0x4d,0x44,0x10,0x14,0x33,0xfa,0x90,0x15,0x23,0xeb,0x90,0x16,0x13,0xdc,0x90,0x17, + 0x3,0xcd,0x90,0x17,0xf3,0xbe,0x90,0x18,0xe3,0xaf,0x90,0x19,0xd3,0xa0,0x90,0x1a, + 0xc3,0x91,0x90,0x1b,0xbc,0xbd,0x10,0x1c,0xac,0xae,0x10,0x1d,0x9c,0x9f,0x10,0x1e, + 0x8c,0x90,0x10,0x1f,0x7c,0x81,0x10,0x20,0x6c,0x72,0x10,0x21,0x5c,0x63,0x10,0x22, + 0x4c,0x54,0x10,0x23,0x3c,0x45,0x10,0x24,0x2c,0x36,0x10,0x25,0x1c,0x27,0x10,0x26, + 0xc,0x18,0x10,0x27,0x5,0x43,0x90,0x27,0xf5,0x34,0x90,0x28,0xe5,0x25,0x90,0x29, + 0xd5,0x16,0x90,0x2a,0xc5,0x7,0x90,0x2b,0xb4,0xf8,0x90,0x2c,0xa4,0xe9,0x90,0x2d, + 0x94,0xda,0x90,0x2e,0x84,0xcb,0x90,0x2f,0x74,0xbc,0x90,0x30,0x64,0xad,0x90,0x31, + 0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34,0x52,0x96,0x10,0x35, + 0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x38, + 0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b,0xdb,0x58,0x90,0x3c, + 0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f,0x9b,0x1c,0x90,0x40, + 0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43,0x64,0x1b,0x10,0x44, + 0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47, + 0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b, + 0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e,0xac,0xa1,0x90,0x4f, + 0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53, + 0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56,0x2c,0x29,0x90,0x56, + 0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59,0xf5,0x28,0x10,0x5a, + 0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d,0xb4,0xec,0x10,0x5e, + 0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61,0x7d,0xea,0x90,0x62, + 0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65,0x3d,0xae,0x90,0x66, + 0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68,0xfd,0x72,0x90,0x69, + 0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c,0xc6,0x71,0x10,0x6d, + 0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70,0x86,0x35,0x10,0x71, + 0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74,0x45,0xf9,0x10,0x75, + 0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78, + 0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c, + 0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x2, + 0x1,0x2,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x5,0x1,0x4, + 0x2,0x3,0x4,0x3,0x6,0x1,0x4,0x3,0x4,0x3,0x4,0x2,0x7,0x8,0x7,0x8, + 0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8, + 0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8, + 0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8, + 0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8, + 0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8, + 0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8, + 0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8, + 0x0,0x0,0xc,0x88,0x0,0x0,0x0,0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe,0x10, + 0x0,0x9,0x0,0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe,0x10,0x0,0x9,0x0,0x0, + 0x2a,0x30,0x1,0xd,0x0,0x0,0x2a,0x30,0x1,0xd,0x0,0x0,0x1c,0x20,0x1,0x4, + 0x0,0x0,0xe,0x10,0x0,0x9,0x4c,0x4d,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x43, + 0x45,0x54,0x0,0x43,0x45,0x4d,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x1,0x1, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x54,0x5a,0x69,0x66,0x32,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x9,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x92,0x0,0x0, + 0x0,0x9,0x0,0x0,0x0,0x12,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff, + 0xff,0xff,0x6f,0xa2,0x61,0xf8,0xff,0xff,0xff,0xff,0x9b,0xc,0x17,0x60,0xff,0xff, + 0xff,0xff,0x9b,0xd5,0xda,0xf0,0xff,0xff,0xff,0xff,0x9c,0xd9,0xae,0x90,0xff,0xff, + 0xff,0xff,0x9d,0xa4,0xb5,0x90,0xff,0xff,0xff,0xff,0x9e,0xb9,0x90,0x90,0xff,0xff, + 0xff,0xff,0x9f,0x84,0x97,0x90,0xff,0xff,0xff,0xff,0xc8,0x9,0x71,0x90,0xff,0xff, + 0xff,0xff,0xcc,0xe7,0x4b,0x10,0xff,0xff,0xff,0xff,0xcd,0xa9,0x17,0x90,0xff,0xff, + 0xff,0xff,0xce,0xa2,0x43,0x10,0xff,0xff,0xff,0xff,0xcf,0x92,0x34,0x10,0xff,0xff, + 0xff,0xff,0xd0,0x82,0x25,0x10,0xff,0xff,0xff,0xff,0xd1,0x72,0x16,0x10,0xff,0xff, + 0xff,0xff,0xd1,0xb6,0x96,0x0,0xff,0xff,0xff,0xff,0xd2,0x58,0xbe,0x80,0xff,0xff, + 0xff,0xff,0xd2,0xa1,0x4f,0x10,0xff,0xff,0xff,0xff,0xd2,0xdb,0x34,0xf0,0xff,0xff, + 0xff,0xff,0xd3,0x63,0x1b,0x90,0xff,0xff,0xff,0xff,0xd4,0x4b,0x23,0x90,0xff,0xff, + 0xff,0xff,0xd5,0x39,0xd1,0x20,0xff,0xff,0xff,0xff,0xd5,0x67,0xe7,0x90,0xff,0xff, + 0xff,0xff,0xd5,0xa8,0x73,0x0,0xff,0xff,0xff,0xff,0xd6,0x29,0xb4,0x10,0xff,0xff, + 0xff,0xff,0xd7,0x2c,0x1a,0x10,0xff,0xff,0xff,0xff,0xd8,0x9,0x96,0x10,0xff,0xff, + 0xff,0xff,0xd9,0x2,0xc1,0x90,0xff,0xff,0xff,0xff,0xd9,0xe9,0x78,0x10,0x0,0x0, + 0x0,0x0,0x12,0xce,0x97,0xf0,0x0,0x0,0x0,0x0,0x13,0x4d,0x44,0x10,0x0,0x0, + 0x0,0x0,0x14,0x33,0xfa,0x90,0x0,0x0,0x0,0x0,0x15,0x23,0xeb,0x90,0x0,0x0, + 0x0,0x0,0x16,0x13,0xdc,0x90,0x0,0x0,0x0,0x0,0x17,0x3,0xcd,0x90,0x0,0x0, + 0x0,0x0,0x17,0xf3,0xbe,0x90,0x0,0x0,0x0,0x0,0x18,0xe3,0xaf,0x90,0x0,0x0, + 0x0,0x0,0x19,0xd3,0xa0,0x90,0x0,0x0,0x0,0x0,0x1a,0xc3,0x91,0x90,0x0,0x0, + 0x0,0x0,0x1b,0xbc,0xbd,0x10,0x0,0x0,0x0,0x0,0x1c,0xac,0xae,0x10,0x0,0x0, + 0x0,0x0,0x1d,0x9c,0x9f,0x10,0x0,0x0,0x0,0x0,0x1e,0x8c,0x90,0x10,0x0,0x0, + 0x0,0x0,0x1f,0x7c,0x81,0x10,0x0,0x0,0x0,0x0,0x20,0x6c,0x72,0x10,0x0,0x0, + 0x0,0x0,0x21,0x5c,0x63,0x10,0x0,0x0,0x0,0x0,0x22,0x4c,0x54,0x10,0x0,0x0, + 0x0,0x0,0x23,0x3c,0x45,0x10,0x0,0x0,0x0,0x0,0x24,0x2c,0x36,0x10,0x0,0x0, + 0x0,0x0,0x25,0x1c,0x27,0x10,0x0,0x0,0x0,0x0,0x26,0xc,0x18,0x10,0x0,0x0, + 0x0,0x0,0x27,0x5,0x43,0x90,0x0,0x0,0x0,0x0,0x27,0xf5,0x34,0x90,0x0,0x0, + 0x0,0x0,0x28,0xe5,0x25,0x90,0x0,0x0,0x0,0x0,0x29,0xd5,0x16,0x90,0x0,0x0, + 0x0,0x0,0x2a,0xc5,0x7,0x90,0x0,0x0,0x0,0x0,0x2b,0xb4,0xf8,0x90,0x0,0x0, + 0x0,0x0,0x2c,0xa4,0xe9,0x90,0x0,0x0,0x0,0x0,0x2d,0x94,0xda,0x90,0x0,0x0, + 0x0,0x0,0x2e,0x84,0xcb,0x90,0x0,0x0,0x0,0x0,0x2f,0x74,0xbc,0x90,0x0,0x0, + 0x0,0x0,0x30,0x64,0xad,0x90,0x0,0x0,0x0,0x0,0x31,0x5d,0xd9,0x10,0x0,0x0, + 0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d,0xbb,0x10,0x0,0x0, + 0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d,0x9d,0x10,0x0,0x0, + 0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd,0x7f,0x10,0x0,0x0, + 0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd,0x61,0x10,0x0,0x0, + 0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd,0x43,0x10,0x0,0x0, + 0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f,0x90,0x0,0x0, + 0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86,0x41,0x90,0x0,0x0, + 0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66,0x23,0x90,0x0,0x0, + 0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46,0x5,0x90,0x0,0x0, + 0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25,0xe7,0x90,0x0,0x0, + 0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5,0xc9,0x90,0x0,0x0, + 0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee,0xe6,0x10,0x0,0x0, + 0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce,0xc8,0x10,0x0,0x0, + 0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae,0xaa,0x10,0x0,0x0, + 0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c,0x10,0x0,0x0, + 0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e,0x10,0x0,0x0, + 0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57,0x8a,0x90,0x0,0x0, + 0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37,0x6c,0x90,0x0,0x0, + 0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17,0x4e,0x90,0x0,0x0, + 0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7,0x30,0x90,0x0,0x0, + 0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7,0x12,0x90,0x0,0x0, + 0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4,0x90,0x0,0x0, + 0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0,0x11,0x10,0x0,0x0, + 0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3,0x10,0x0,0x0, + 0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f,0xd5,0x10,0x0,0x0, + 0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f,0xb7,0x10,0x0,0x0, + 0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f,0x99,0x10,0x0,0x0, + 0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8,0xb5,0x90,0x0,0x0, + 0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8,0x97,0x90,0x0,0x0, + 0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8,0x79,0x90,0x0,0x0, + 0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b,0x90,0x0,0x0, + 0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88,0x3d,0x90,0x0,0x0, + 0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68,0x1f,0x90,0x0,0x0, + 0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51,0x3c,0x10,0x0,0x0, + 0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31,0x1e,0x10,0x0,0x0, + 0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11,0x0,0x10,0x0,0x0, + 0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0,0xe2,0x10,0x0,0x0, + 0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0,0xc4,0x10,0x0,0x0, + 0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6,0x10,0x0,0x0, + 0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99,0xc2,0x90,0x0,0x0, + 0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79,0xa4,0x90,0x0,0x0, + 0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x2,0x1,0x2,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x5,0x1,0x4,0x2,0x3,0x4,0x3,0x6,0x1,0x4,0x3, + 0x4,0x3,0x4,0x2,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8, + 0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8, + 0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8, + 0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8, + 0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8, + 0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8, + 0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8, + 0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x0,0x0,0xc,0x88,0x0,0x0,0x0,0x0, + 0x1c,0x20,0x1,0x4,0x0,0x0,0xe,0x10,0x0,0x9,0x0,0x0,0x1c,0x20,0x1,0x4, + 0x0,0x0,0xe,0x10,0x0,0x9,0x0,0x0,0x2a,0x30,0x1,0xd,0x0,0x0,0x2a,0x30, + 0x1,0xd,0x0,0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe,0x10,0x0,0x9,0x4c,0x4d, + 0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x43,0x45,0x54,0x0,0x43,0x45,0x4d,0x54,0x0, + 0x0,0x0,0x0,0x1,0x1,0x0,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x1,0x1,0xa,0x43,0x45,0x54,0x2d,0x31,0x43,0x45,0x53,0x54,0x2c,0x4d,0x33,0x2e, + 0x35,0x2e,0x30,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30,0x2f,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Europe/London + 0x0,0x0,0xe,0x67, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xf3,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x11,0x80,0x0,0x0,0x0,0x9b, + 0x26,0xad,0xa0,0x9b,0xd6,0x5,0x20,0x9c,0xcf,0x30,0xa0,0x9d,0xa4,0xc3,0xa0,0x9e, + 0x9c,0x9d,0xa0,0x9f,0x97,0x1a,0xa0,0xa0,0x85,0xba,0x20,0xa1,0x76,0xfc,0xa0,0xa2, + 0x65,0x9c,0x20,0xa3,0x7b,0xc8,0xa0,0xa4,0x4e,0xb8,0xa0,0xa5,0x3f,0xfb,0x20,0xa6, + 0x25,0x60,0x20,0xa7,0x27,0xc6,0x20,0xa8,0x2a,0x2c,0x20,0xa8,0xeb,0xf8,0xa0,0xaa, + 0x0,0xd3,0xa0,0xaa,0xd5,0x15,0x20,0xab,0xe9,0xf0,0x20,0xac,0xc7,0x6c,0x20,0xad, + 0xc9,0xd2,0x20,0xae,0xa7,0x4e,0x20,0xaf,0xa0,0x79,0xa0,0xb0,0x87,0x30,0x20,0xb1, + 0x92,0xd0,0xa0,0xb2,0x70,0x4c,0xa0,0xb3,0x72,0xb2,0xa0,0xb4,0x50,0x2e,0xa0,0xb5, + 0x49,0x5a,0x20,0xb6,0x30,0x10,0xa0,0xb7,0x32,0x76,0xa0,0xb8,0xf,0xf2,0xa0,0xb9, + 0x12,0x58,0xa0,0xb9,0xef,0xd4,0xa0,0xba,0xe9,0x0,0x20,0xbb,0xd8,0xf1,0x20,0xbc, + 0xdb,0x57,0x20,0xbd,0xb8,0xd3,0x20,0xbe,0xb1,0xfe,0xa0,0xbf,0x98,0xb5,0x20,0xc0, + 0x9b,0x1b,0x20,0xc1,0x78,0x97,0x20,0xc2,0x7a,0xfd,0x20,0xc3,0x58,0x79,0x20,0xc4, + 0x51,0xa4,0xa0,0xc5,0x38,0x5b,0x20,0xc6,0x3a,0xc1,0x20,0xc7,0x58,0xd6,0xa0,0xc7, + 0xda,0x9,0xa0,0xca,0x16,0x26,0x90,0xca,0x97,0x59,0x90,0xcb,0xd1,0x1e,0x90,0xcc, + 0x77,0x3b,0x90,0xcd,0xb1,0x0,0x90,0xce,0x60,0x58,0x10,0xcf,0x90,0xe2,0x90,0xd0, + 0x6e,0x5e,0x90,0xd1,0x72,0x16,0x10,0xd1,0xfb,0x32,0x10,0xd2,0x69,0xfe,0x20,0xd3, + 0x63,0x29,0xa0,0xd4,0x49,0xe0,0x20,0xd5,0x1e,0x21,0xa0,0xd5,0x42,0xfd,0x90,0xd5, + 0xdf,0xe0,0x10,0xd6,0x4e,0xac,0x20,0xd6,0xfe,0x3,0xa0,0xd8,0x2e,0x8e,0x20,0xd8, + 0xf9,0x95,0x20,0xda,0xe,0x70,0x20,0xda,0xeb,0xec,0x20,0xdb,0xe5,0x17,0xa0,0xdc, + 0xcb,0xce,0x20,0xdd,0xc4,0xf9,0xa0,0xde,0xb4,0xea,0xa0,0xdf,0xae,0x16,0x20,0xe0, + 0x94,0xcc,0xa0,0xe1,0x72,0x48,0xa0,0xe2,0x6b,0x74,0x20,0xe3,0x52,0x2a,0xa0,0xe4, + 0x54,0x90,0xa0,0xe5,0x32,0xc,0xa0,0xe6,0x3d,0xad,0x20,0xe7,0x1b,0x29,0x20,0xe8, + 0x14,0x54,0xa0,0xe8,0xfb,0xb,0x20,0xe9,0xfd,0x71,0x20,0xea,0xda,0xed,0x20,0xeb, + 0xdd,0x53,0x20,0xec,0xba,0xcf,0x20,0xed,0xb3,0xfa,0xa0,0xee,0x9a,0xb1,0x20,0xef, + 0x81,0x67,0xa0,0xf0,0x9f,0x7d,0x20,0xf1,0x61,0x49,0xa0,0xf2,0x7f,0x5f,0x20,0xf3, + 0x4a,0x66,0x20,0xf4,0x5f,0x41,0x20,0xf5,0x21,0xd,0xa0,0xf6,0x3f,0x23,0x20,0xf7, + 0x0,0xef,0xa0,0xf8,0x1f,0x5,0x20,0xf8,0xe0,0xd1,0xa0,0xf9,0xfe,0xe7,0x20,0xfa, + 0xc0,0xb3,0xa0,0xfb,0xe8,0x3,0xa0,0xfc,0x7b,0xab,0xa0,0xfd,0xc7,0xbb,0x70,0x3, + 0x70,0xc6,0x20,0x4,0x29,0x58,0x20,0x5,0x50,0xa8,0x20,0x6,0x9,0x3a,0x20,0x7, + 0x30,0x8a,0x20,0x7,0xe9,0x1c,0x20,0x9,0x10,0x6c,0x20,0x9,0xc8,0xfe,0x20,0xa, + 0xf0,0x4e,0x20,0xb,0xb2,0x1a,0xa0,0xc,0xd0,0x30,0x20,0xd,0x91,0xfc,0xa0,0xe, + 0xb0,0x12,0x20,0xf,0x71,0xde,0xa0,0x10,0x99,0x2e,0xa0,0x11,0x51,0xc0,0xa0,0x12, + 0x79,0x10,0xa0,0x13,0x31,0xa2,0xa0,0x14,0x58,0xf2,0xa0,0x15,0x23,0xeb,0x90,0x16, + 0x38,0xc6,0x90,0x17,0x3,0xcd,0x90,0x18,0x18,0xa8,0x90,0x18,0xe3,0xaf,0x90,0x19, + 0xf8,0x8a,0x90,0x1a,0xc3,0x91,0x90,0x1b,0xe1,0xa7,0x10,0x1c,0xac,0xae,0x10,0x1d, + 0xc1,0x89,0x10,0x1e,0x8c,0x90,0x10,0x1f,0xa1,0x6b,0x10,0x20,0x6c,0x72,0x10,0x21, + 0x81,0x4d,0x10,0x22,0x4c,0x54,0x10,0x23,0x61,0x2f,0x10,0x24,0x2c,0x36,0x10,0x25, + 0x4a,0x4b,0x90,0x26,0xc,0x18,0x10,0x27,0x2a,0x2d,0x90,0x27,0xf5,0x34,0x90,0x29, + 0xa,0xf,0x90,0x29,0xd5,0x16,0x90,0x2a,0xe9,0xf1,0x90,0x2b,0xb4,0xf8,0x90,0x2c, + 0xc9,0xd3,0x90,0x2d,0x94,0xda,0x90,0x2e,0xa9,0xb5,0x90,0x2f,0x74,0xbc,0x90,0x30, + 0x89,0x97,0x90,0x30,0xe7,0x24,0x0,0x31,0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33, + 0x3d,0xbb,0x10,0x34,0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36, + 0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a, + 0xbd,0x43,0x10,0x3b,0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e, + 0x86,0x41,0x90,0x3f,0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42, + 0x46,0x5,0x90,0x43,0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46, + 0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49, + 0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d, + 0x8e,0x8c,0x10,0x4e,0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51, + 0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55, + 0x17,0x4e,0x90,0x56,0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58, + 0xd7,0x12,0x90,0x59,0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c, + 0xa0,0x11,0x10,0x5d,0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60, + 0x5f,0xd5,0x10,0x61,0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64, + 0x1f,0x99,0x10,0x65,0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67, + 0xe8,0x97,0x90,0x68,0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b, + 0xa8,0x5b,0x90,0x6c,0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f, + 0x68,0x1f,0x90,0x70,0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73, + 0x31,0x1e,0x10,0x74,0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76, + 0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a, + 0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e, + 0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3, + 0x1,0x3,0x1,0x2,0x1,0x2,0x1,0x3,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x4,0x6,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x7,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0xff,0xff,0xff,0xb5,0x0,0x0, + 0x0,0x0,0xe,0x10,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x1c,0x20, + 0x1,0xc,0x0,0x0,0xe,0x10,0x0,0x4,0x0,0x0,0xe,0x10,0x1,0x4,0x0,0x0, + 0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x42,0x53, + 0x54,0x0,0x47,0x4d,0x54,0x0,0x42,0x44,0x53,0x54,0x0,0x0,0x1,0x1,0x1,0x0, + 0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x54,0x5a,0x69,0x66,0x32, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf4,0x0, + 0x0,0x0,0x8,0x0,0x0,0x0,0x11,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff, + 0xff,0xff,0xff,0x1a,0x5d,0x9,0xcb,0xff,0xff,0xff,0xff,0x9b,0x26,0xad,0xa0,0xff, + 0xff,0xff,0xff,0x9b,0xd6,0x5,0x20,0xff,0xff,0xff,0xff,0x9c,0xcf,0x30,0xa0,0xff, + 0xff,0xff,0xff,0x9d,0xa4,0xc3,0xa0,0xff,0xff,0xff,0xff,0x9e,0x9c,0x9d,0xa0,0xff, + 0xff,0xff,0xff,0x9f,0x97,0x1a,0xa0,0xff,0xff,0xff,0xff,0xa0,0x85,0xba,0x20,0xff, + 0xff,0xff,0xff,0xa1,0x76,0xfc,0xa0,0xff,0xff,0xff,0xff,0xa2,0x65,0x9c,0x20,0xff, + 0xff,0xff,0xff,0xa3,0x7b,0xc8,0xa0,0xff,0xff,0xff,0xff,0xa4,0x4e,0xb8,0xa0,0xff, + 0xff,0xff,0xff,0xa5,0x3f,0xfb,0x20,0xff,0xff,0xff,0xff,0xa6,0x25,0x60,0x20,0xff, + 0xff,0xff,0xff,0xa7,0x27,0xc6,0x20,0xff,0xff,0xff,0xff,0xa8,0x2a,0x2c,0x20,0xff, + 0xff,0xff,0xff,0xa8,0xeb,0xf8,0xa0,0xff,0xff,0xff,0xff,0xaa,0x0,0xd3,0xa0,0xff, + 0xff,0xff,0xff,0xaa,0xd5,0x15,0x20,0xff,0xff,0xff,0xff,0xab,0xe9,0xf0,0x20,0xff, + 0xff,0xff,0xff,0xac,0xc7,0x6c,0x20,0xff,0xff,0xff,0xff,0xad,0xc9,0xd2,0x20,0xff, + 0xff,0xff,0xff,0xae,0xa7,0x4e,0x20,0xff,0xff,0xff,0xff,0xaf,0xa0,0x79,0xa0,0xff, + 0xff,0xff,0xff,0xb0,0x87,0x30,0x20,0xff,0xff,0xff,0xff,0xb1,0x92,0xd0,0xa0,0xff, + 0xff,0xff,0xff,0xb2,0x70,0x4c,0xa0,0xff,0xff,0xff,0xff,0xb3,0x72,0xb2,0xa0,0xff, + 0xff,0xff,0xff,0xb4,0x50,0x2e,0xa0,0xff,0xff,0xff,0xff,0xb5,0x49,0x5a,0x20,0xff, + 0xff,0xff,0xff,0xb6,0x30,0x10,0xa0,0xff,0xff,0xff,0xff,0xb7,0x32,0x76,0xa0,0xff, + 0xff,0xff,0xff,0xb8,0xf,0xf2,0xa0,0xff,0xff,0xff,0xff,0xb9,0x12,0x58,0xa0,0xff, + 0xff,0xff,0xff,0xb9,0xef,0xd4,0xa0,0xff,0xff,0xff,0xff,0xba,0xe9,0x0,0x20,0xff, + 0xff,0xff,0xff,0xbb,0xd8,0xf1,0x20,0xff,0xff,0xff,0xff,0xbc,0xdb,0x57,0x20,0xff, + 0xff,0xff,0xff,0xbd,0xb8,0xd3,0x20,0xff,0xff,0xff,0xff,0xbe,0xb1,0xfe,0xa0,0xff, + 0xff,0xff,0xff,0xbf,0x98,0xb5,0x20,0xff,0xff,0xff,0xff,0xc0,0x9b,0x1b,0x20,0xff, + 0xff,0xff,0xff,0xc1,0x78,0x97,0x20,0xff,0xff,0xff,0xff,0xc2,0x7a,0xfd,0x20,0xff, + 0xff,0xff,0xff,0xc3,0x58,0x79,0x20,0xff,0xff,0xff,0xff,0xc4,0x51,0xa4,0xa0,0xff, + 0xff,0xff,0xff,0xc5,0x38,0x5b,0x20,0xff,0xff,0xff,0xff,0xc6,0x3a,0xc1,0x20,0xff, + 0xff,0xff,0xff,0xc7,0x58,0xd6,0xa0,0xff,0xff,0xff,0xff,0xc7,0xda,0x9,0xa0,0xff, + 0xff,0xff,0xff,0xca,0x16,0x26,0x90,0xff,0xff,0xff,0xff,0xca,0x97,0x59,0x90,0xff, + 0xff,0xff,0xff,0xcb,0xd1,0x1e,0x90,0xff,0xff,0xff,0xff,0xcc,0x77,0x3b,0x90,0xff, + 0xff,0xff,0xff,0xcd,0xb1,0x0,0x90,0xff,0xff,0xff,0xff,0xce,0x60,0x58,0x10,0xff, + 0xff,0xff,0xff,0xcf,0x90,0xe2,0x90,0xff,0xff,0xff,0xff,0xd0,0x6e,0x5e,0x90,0xff, + 0xff,0xff,0xff,0xd1,0x72,0x16,0x10,0xff,0xff,0xff,0xff,0xd1,0xfb,0x32,0x10,0xff, + 0xff,0xff,0xff,0xd2,0x69,0xfe,0x20,0xff,0xff,0xff,0xff,0xd3,0x63,0x29,0xa0,0xff, + 0xff,0xff,0xff,0xd4,0x49,0xe0,0x20,0xff,0xff,0xff,0xff,0xd5,0x1e,0x21,0xa0,0xff, + 0xff,0xff,0xff,0xd5,0x42,0xfd,0x90,0xff,0xff,0xff,0xff,0xd5,0xdf,0xe0,0x10,0xff, + 0xff,0xff,0xff,0xd6,0x4e,0xac,0x20,0xff,0xff,0xff,0xff,0xd6,0xfe,0x3,0xa0,0xff, + 0xff,0xff,0xff,0xd8,0x2e,0x8e,0x20,0xff,0xff,0xff,0xff,0xd8,0xf9,0x95,0x20,0xff, + 0xff,0xff,0xff,0xda,0xe,0x70,0x20,0xff,0xff,0xff,0xff,0xda,0xeb,0xec,0x20,0xff, + 0xff,0xff,0xff,0xdb,0xe5,0x17,0xa0,0xff,0xff,0xff,0xff,0xdc,0xcb,0xce,0x20,0xff, + 0xff,0xff,0xff,0xdd,0xc4,0xf9,0xa0,0xff,0xff,0xff,0xff,0xde,0xb4,0xea,0xa0,0xff, + 0xff,0xff,0xff,0xdf,0xae,0x16,0x20,0xff,0xff,0xff,0xff,0xe0,0x94,0xcc,0xa0,0xff, + 0xff,0xff,0xff,0xe1,0x72,0x48,0xa0,0xff,0xff,0xff,0xff,0xe2,0x6b,0x74,0x20,0xff, + 0xff,0xff,0xff,0xe3,0x52,0x2a,0xa0,0xff,0xff,0xff,0xff,0xe4,0x54,0x90,0xa0,0xff, + 0xff,0xff,0xff,0xe5,0x32,0xc,0xa0,0xff,0xff,0xff,0xff,0xe6,0x3d,0xad,0x20,0xff, + 0xff,0xff,0xff,0xe7,0x1b,0x29,0x20,0xff,0xff,0xff,0xff,0xe8,0x14,0x54,0xa0,0xff, + 0xff,0xff,0xff,0xe8,0xfb,0xb,0x20,0xff,0xff,0xff,0xff,0xe9,0xfd,0x71,0x20,0xff, + 0xff,0xff,0xff,0xea,0xda,0xed,0x20,0xff,0xff,0xff,0xff,0xeb,0xdd,0x53,0x20,0xff, + 0xff,0xff,0xff,0xec,0xba,0xcf,0x20,0xff,0xff,0xff,0xff,0xed,0xb3,0xfa,0xa0,0xff, + 0xff,0xff,0xff,0xee,0x9a,0xb1,0x20,0xff,0xff,0xff,0xff,0xef,0x81,0x67,0xa0,0xff, + 0xff,0xff,0xff,0xf0,0x9f,0x7d,0x20,0xff,0xff,0xff,0xff,0xf1,0x61,0x49,0xa0,0xff, + 0xff,0xff,0xff,0xf2,0x7f,0x5f,0x20,0xff,0xff,0xff,0xff,0xf3,0x4a,0x66,0x20,0xff, + 0xff,0xff,0xff,0xf4,0x5f,0x41,0x20,0xff,0xff,0xff,0xff,0xf5,0x21,0xd,0xa0,0xff, + 0xff,0xff,0xff,0xf6,0x3f,0x23,0x20,0xff,0xff,0xff,0xff,0xf7,0x0,0xef,0xa0,0xff, + 0xff,0xff,0xff,0xf8,0x1f,0x5,0x20,0xff,0xff,0xff,0xff,0xf8,0xe0,0xd1,0xa0,0xff, + 0xff,0xff,0xff,0xf9,0xfe,0xe7,0x20,0xff,0xff,0xff,0xff,0xfa,0xc0,0xb3,0xa0,0xff, + 0xff,0xff,0xff,0xfb,0xe8,0x3,0xa0,0xff,0xff,0xff,0xff,0xfc,0x7b,0xab,0xa0,0xff, + 0xff,0xff,0xff,0xfd,0xc7,0xbb,0x70,0x0,0x0,0x0,0x0,0x3,0x70,0xc6,0x20,0x0, + 0x0,0x0,0x0,0x4,0x29,0x58,0x20,0x0,0x0,0x0,0x0,0x5,0x50,0xa8,0x20,0x0, + 0x0,0x0,0x0,0x6,0x9,0x3a,0x20,0x0,0x0,0x0,0x0,0x7,0x30,0x8a,0x20,0x0, + 0x0,0x0,0x0,0x7,0xe9,0x1c,0x20,0x0,0x0,0x0,0x0,0x9,0x10,0x6c,0x20,0x0, + 0x0,0x0,0x0,0x9,0xc8,0xfe,0x20,0x0,0x0,0x0,0x0,0xa,0xf0,0x4e,0x20,0x0, + 0x0,0x0,0x0,0xb,0xb2,0x1a,0xa0,0x0,0x0,0x0,0x0,0xc,0xd0,0x30,0x20,0x0, + 0x0,0x0,0x0,0xd,0x91,0xfc,0xa0,0x0,0x0,0x0,0x0,0xe,0xb0,0x12,0x20,0x0, + 0x0,0x0,0x0,0xf,0x71,0xde,0xa0,0x0,0x0,0x0,0x0,0x10,0x99,0x2e,0xa0,0x0, + 0x0,0x0,0x0,0x11,0x51,0xc0,0xa0,0x0,0x0,0x0,0x0,0x12,0x79,0x10,0xa0,0x0, + 0x0,0x0,0x0,0x13,0x31,0xa2,0xa0,0x0,0x0,0x0,0x0,0x14,0x58,0xf2,0xa0,0x0, + 0x0,0x0,0x0,0x15,0x23,0xeb,0x90,0x0,0x0,0x0,0x0,0x16,0x38,0xc6,0x90,0x0, + 0x0,0x0,0x0,0x17,0x3,0xcd,0x90,0x0,0x0,0x0,0x0,0x18,0x18,0xa8,0x90,0x0, + 0x0,0x0,0x0,0x18,0xe3,0xaf,0x90,0x0,0x0,0x0,0x0,0x19,0xf8,0x8a,0x90,0x0, + 0x0,0x0,0x0,0x1a,0xc3,0x91,0x90,0x0,0x0,0x0,0x0,0x1b,0xe1,0xa7,0x10,0x0, + 0x0,0x0,0x0,0x1c,0xac,0xae,0x10,0x0,0x0,0x0,0x0,0x1d,0xc1,0x89,0x10,0x0, + 0x0,0x0,0x0,0x1e,0x8c,0x90,0x10,0x0,0x0,0x0,0x0,0x1f,0xa1,0x6b,0x10,0x0, + 0x0,0x0,0x0,0x20,0x6c,0x72,0x10,0x0,0x0,0x0,0x0,0x21,0x81,0x4d,0x10,0x0, + 0x0,0x0,0x0,0x22,0x4c,0x54,0x10,0x0,0x0,0x0,0x0,0x23,0x61,0x2f,0x10,0x0, + 0x0,0x0,0x0,0x24,0x2c,0x36,0x10,0x0,0x0,0x0,0x0,0x25,0x4a,0x4b,0x90,0x0, + 0x0,0x0,0x0,0x26,0xc,0x18,0x10,0x0,0x0,0x0,0x0,0x27,0x2a,0x2d,0x90,0x0, + 0x0,0x0,0x0,0x27,0xf5,0x34,0x90,0x0,0x0,0x0,0x0,0x29,0xa,0xf,0x90,0x0, + 0x0,0x0,0x0,0x29,0xd5,0x16,0x90,0x0,0x0,0x0,0x0,0x2a,0xe9,0xf1,0x90,0x0, + 0x0,0x0,0x0,0x2b,0xb4,0xf8,0x90,0x0,0x0,0x0,0x0,0x2c,0xc9,0xd3,0x90,0x0, + 0x0,0x0,0x0,0x2d,0x94,0xda,0x90,0x0,0x0,0x0,0x0,0x2e,0xa9,0xb5,0x90,0x0, + 0x0,0x0,0x0,0x2f,0x74,0xbc,0x90,0x0,0x0,0x0,0x0,0x30,0x89,0x97,0x90,0x0, + 0x0,0x0,0x0,0x30,0xe7,0x24,0x0,0x0,0x0,0x0,0x0,0x31,0x5d,0xd9,0x10,0x0, + 0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d,0xbb,0x10,0x0, + 0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d,0x9d,0x10,0x0, + 0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd,0x7f,0x10,0x0, + 0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd,0x61,0x10,0x0, + 0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd,0x43,0x10,0x0, + 0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f,0x90,0x0, + 0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86,0x41,0x90,0x0, + 0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66,0x23,0x90,0x0, + 0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46,0x5,0x90,0x0, + 0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25,0xe7,0x90,0x0, + 0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5,0xc9,0x90,0x0, + 0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee,0xe6,0x10,0x0, + 0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce,0xc8,0x10,0x0, + 0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae,0xaa,0x10,0x0, + 0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c,0x10,0x0, + 0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e,0x10,0x0, + 0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57,0x8a,0x90,0x0, + 0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37,0x6c,0x90,0x0, + 0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17,0x4e,0x90,0x0, + 0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7,0x30,0x90,0x0, + 0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7,0x12,0x90,0x0, + 0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4,0x90,0x0, + 0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0,0x11,0x10,0x0, + 0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3,0x10,0x0, + 0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f,0xd5,0x10,0x0, + 0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f,0xb7,0x10,0x0, + 0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f,0x99,0x10,0x0, + 0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8,0xb5,0x90,0x0, + 0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8,0x97,0x90,0x0, + 0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8,0x79,0x90,0x0, + 0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b,0x90,0x0, + 0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88,0x3d,0x90,0x0, + 0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68,0x1f,0x90,0x0, + 0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51,0x3c,0x10,0x0, + 0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31,0x1e,0x10,0x0, + 0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11,0x0,0x10,0x0, + 0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0,0xe2,0x10,0x0, + 0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0,0xc4,0x10,0x0, + 0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6,0x10,0x0, + 0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99,0xc2,0x90,0x0, + 0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79,0xa4,0x90,0x0, + 0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x3,0x1,0x3,0x1,0x3,0x1, + 0x3,0x1,0x3,0x1,0x2,0x1,0x2,0x1,0x3,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x4,0x6,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x7,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0xff,0xff,0xff,0xb5,0x0, + 0x0,0x0,0x0,0xe,0x10,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x1c, + 0x20,0x1,0xc,0x0,0x0,0xe,0x10,0x0,0x4,0x0,0x0,0xe,0x10,0x1,0x4,0x0, + 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x42, + 0x53,0x54,0x0,0x47,0x4d,0x54,0x0,0x42,0x44,0x53,0x54,0x0,0x0,0x1,0x1,0x1, + 0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0xa,0x47,0x4d,0x54, + 0x30,0x42,0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2f,0x31,0x2c,0x4d,0x31, + 0x30,0x2e,0x35,0x2e,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Stockholm + 0x0,0x0,0x7,0x7e, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x77,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0x9b, + 0x1e,0x8c,0x60,0x9b,0xd5,0xda,0xf0,0x13,0x4d,0x44,0x10,0x14,0x33,0xfa,0x90,0x15, + 0x23,0xeb,0x90,0x16,0x13,0xdc,0x90,0x17,0x3,0xcd,0x90,0x17,0xf3,0xbe,0x90,0x18, + 0xe3,0xaf,0x90,0x19,0xd3,0xa0,0x90,0x1a,0xc3,0x91,0x90,0x1b,0xbc,0xbd,0x10,0x1c, + 0xac,0xae,0x10,0x1d,0x9c,0x9f,0x10,0x1e,0x8c,0x90,0x10,0x1f,0x7c,0x81,0x10,0x20, + 0x6c,0x72,0x10,0x21,0x5c,0x63,0x10,0x22,0x4c,0x54,0x10,0x23,0x3c,0x45,0x10,0x24, + 0x2c,0x36,0x10,0x25,0x1c,0x27,0x10,0x26,0xc,0x18,0x10,0x27,0x5,0x43,0x90,0x27, + 0xf5,0x34,0x90,0x28,0xe5,0x25,0x90,0x29,0xd5,0x16,0x90,0x2a,0xc5,0x7,0x90,0x2b, + 0xb4,0xf8,0x90,0x2c,0xa4,0xe9,0x90,0x2d,0x94,0xda,0x90,0x2e,0x84,0xcb,0x90,0x2f, + 0x74,0xbc,0x90,0x30,0x64,0xad,0x90,0x31,0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33, + 0x3d,0xbb,0x10,0x34,0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36, + 0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a, + 0xbd,0x43,0x10,0x3b,0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e, + 0x86,0x41,0x90,0x3f,0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42, + 0x46,0x5,0x90,0x43,0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46, + 0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49, + 0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d, + 0x8e,0x8c,0x10,0x4e,0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51, + 0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55, + 0x17,0x4e,0x90,0x56,0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58, + 0xd7,0x12,0x90,0x59,0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c, + 0xa0,0x11,0x10,0x5d,0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60, + 0x5f,0xd5,0x10,0x61,0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64, + 0x1f,0x99,0x10,0x65,0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67, + 0xe8,0x97,0x90,0x68,0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b, + 0xa8,0x5b,0x90,0x6c,0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f, + 0x68,0x1f,0x90,0x70,0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73, + 0x31,0x1e,0x10,0x74,0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76, + 0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a, + 0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e, + 0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x1,0x2,0x1,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x0,0x0, + 0xe,0x1e,0x0,0x0,0x0,0x0,0xe,0x10,0x0,0x4,0x0,0x0,0x1c,0x20,0x1,0x8, + 0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0xe,0x10,0x0,0x4,0x53,0x45,0x54,0x0, + 0x43,0x45,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0, + 0x0,0x1,0x1,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x79,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0xf8, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x54,0xd5,0x9f,0x94,0xff, + 0xff,0xff,0xff,0x7c,0x55,0x73,0x62,0xff,0xff,0xff,0xff,0x9b,0x1e,0x8c,0x60,0xff, + 0xff,0xff,0xff,0x9b,0xd5,0xda,0xf0,0x0,0x0,0x0,0x0,0x13,0x4d,0x44,0x10,0x0, + 0x0,0x0,0x0,0x14,0x33,0xfa,0x90,0x0,0x0,0x0,0x0,0x15,0x23,0xeb,0x90,0x0, + 0x0,0x0,0x0,0x16,0x13,0xdc,0x90,0x0,0x0,0x0,0x0,0x17,0x3,0xcd,0x90,0x0, + 0x0,0x0,0x0,0x17,0xf3,0xbe,0x90,0x0,0x0,0x0,0x0,0x18,0xe3,0xaf,0x90,0x0, + 0x0,0x0,0x0,0x19,0xd3,0xa0,0x90,0x0,0x0,0x0,0x0,0x1a,0xc3,0x91,0x90,0x0, + 0x0,0x0,0x0,0x1b,0xbc,0xbd,0x10,0x0,0x0,0x0,0x0,0x1c,0xac,0xae,0x10,0x0, + 0x0,0x0,0x0,0x1d,0x9c,0x9f,0x10,0x0,0x0,0x0,0x0,0x1e,0x8c,0x90,0x10,0x0, + 0x0,0x0,0x0,0x1f,0x7c,0x81,0x10,0x0,0x0,0x0,0x0,0x20,0x6c,0x72,0x10,0x0, + 0x0,0x0,0x0,0x21,0x5c,0x63,0x10,0x0,0x0,0x0,0x0,0x22,0x4c,0x54,0x10,0x0, + 0x0,0x0,0x0,0x23,0x3c,0x45,0x10,0x0,0x0,0x0,0x0,0x24,0x2c,0x36,0x10,0x0, + 0x0,0x0,0x0,0x25,0x1c,0x27,0x10,0x0,0x0,0x0,0x0,0x26,0xc,0x18,0x10,0x0, + 0x0,0x0,0x0,0x27,0x5,0x43,0x90,0x0,0x0,0x0,0x0,0x27,0xf5,0x34,0x90,0x0, + 0x0,0x0,0x0,0x28,0xe5,0x25,0x90,0x0,0x0,0x0,0x0,0x29,0xd5,0x16,0x90,0x0, + 0x0,0x0,0x0,0x2a,0xc5,0x7,0x90,0x0,0x0,0x0,0x0,0x2b,0xb4,0xf8,0x90,0x0, + 0x0,0x0,0x0,0x2c,0xa4,0xe9,0x90,0x0,0x0,0x0,0x0,0x2d,0x94,0xda,0x90,0x0, + 0x0,0x0,0x0,0x2e,0x84,0xcb,0x90,0x0,0x0,0x0,0x0,0x2f,0x74,0xbc,0x90,0x0, + 0x0,0x0,0x0,0x30,0x64,0xad,0x90,0x0,0x0,0x0,0x0,0x31,0x5d,0xd9,0x10,0x0, + 0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d,0xbb,0x10,0x0, + 0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d,0x9d,0x10,0x0, + 0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd,0x7f,0x10,0x0, + 0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd,0x61,0x10,0x0, + 0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd,0x43,0x10,0x0, + 0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f,0x90,0x0, + 0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86,0x41,0x90,0x0, + 0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66,0x23,0x90,0x0, + 0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46,0x5,0x90,0x0, + 0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25,0xe7,0x90,0x0, + 0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5,0xc9,0x90,0x0, + 0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee,0xe6,0x10,0x0, + 0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce,0xc8,0x10,0x0, + 0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae,0xaa,0x10,0x0, + 0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c,0x10,0x0, + 0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e,0x10,0x0, + 0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57,0x8a,0x90,0x0, + 0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37,0x6c,0x90,0x0, + 0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17,0x4e,0x90,0x0, + 0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7,0x30,0x90,0x0, + 0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7,0x12,0x90,0x0, + 0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4,0x90,0x0, + 0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0,0x11,0x10,0x0, + 0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3,0x10,0x0, + 0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f,0xd5,0x10,0x0, + 0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f,0xb7,0x10,0x0, + 0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f,0x99,0x10,0x0, + 0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8,0xb5,0x90,0x0, + 0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8,0x97,0x90,0x0, + 0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8,0x79,0x90,0x0, + 0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b,0x90,0x0, + 0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88,0x3d,0x90,0x0, + 0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68,0x1f,0x90,0x0, + 0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51,0x3c,0x10,0x0, + 0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31,0x1e,0x10,0x0, + 0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11,0x0,0x10,0x0, + 0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0,0xe2,0x10,0x0, + 0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0,0xc4,0x10,0x0, + 0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6,0x10,0x0, + 0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99,0xc2,0x90,0x0, + 0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79,0xa4,0x90,0x0, + 0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x1,0x2,0x3,0x2,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x0,0x0,0x10,0xec,0x0,0x0,0x0,0x0,0xe,0x1e,0x0,0x4,0x0,0x0,0xe,0x10, + 0x0,0x8,0x0,0x0,0x1c,0x20,0x1,0xc,0x0,0x0,0x1c,0x20,0x1,0xc,0x0,0x0, + 0xe,0x10,0x0,0x8,0x4c,0x4d,0x54,0x0,0x53,0x45,0x54,0x0,0x43,0x45,0x54,0x0, + 0x43,0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x1, + 0x1,0xa,0x43,0x45,0x54,0x2d,0x31,0x43,0x45,0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35, + 0x2e,0x30,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30,0x2f,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Astrakhan + 0x0,0x0,0x4,0xad, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x42,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x10,0x80,0x0,0x0,0x0,0xaa, + 0x18,0x45,0x74,0xb5,0xa4,0xb,0x50,0x15,0x27,0x99,0xc0,0x16,0x18,0xce,0x30,0x17, + 0x8,0xcd,0x40,0x17,0xfa,0x1,0xb0,0x18,0xea,0x0,0xc0,0x19,0xdb,0x35,0x30,0x1a, + 0xcc,0x85,0xc0,0x1b,0xbc,0x92,0xe0,0x1c,0xac,0x83,0xe0,0x1d,0x9c,0x74,0xe0,0x1e, + 0x8c,0x65,0xe0,0x1f,0x7c,0x56,0xe0,0x20,0x6c,0x47,0xe0,0x21,0x5c,0x38,0xe0,0x22, + 0x4c,0x29,0xe0,0x23,0x3c,0x1a,0xe0,0x24,0x2c,0xb,0xe0,0x25,0x1c,0xa,0xf0,0x26, + 0xb,0xfb,0xf0,0x27,0x5,0x27,0x70,0x27,0xf5,0x18,0x70,0x29,0xd4,0xec,0x60,0x2a, + 0xc4,0xeb,0x70,0x2b,0xb4,0xdc,0x70,0x2c,0xa4,0xcd,0x70,0x2d,0x94,0xbe,0x70,0x2e, + 0x84,0xaf,0x70,0x2f,0x74,0xa0,0x70,0x30,0x64,0x91,0x70,0x31,0x5d,0xbc,0xf0,0x32, + 0x72,0x97,0xf0,0x33,0x3d,0x9e,0xf0,0x34,0x52,0x79,0xf0,0x35,0x1d,0x80,0xf0,0x36, + 0x32,0x5b,0xf0,0x36,0xfd,0x62,0xf0,0x38,0x1b,0x78,0x70,0x38,0xdd,0x44,0xf0,0x39, + 0xfb,0x5a,0x70,0x3a,0xbd,0x26,0xf0,0x3b,0xdb,0x3c,0x70,0x3c,0xa6,0x43,0x70,0x3d, + 0xbb,0x1e,0x70,0x3e,0x86,0x25,0x70,0x3f,0x9b,0x0,0x70,0x40,0x66,0x7,0x70,0x41, + 0x84,0x1c,0xf0,0x42,0x45,0xe9,0x70,0x43,0x63,0xfe,0xf0,0x44,0x25,0xcb,0x70,0x45, + 0x43,0xe0,0xf0,0x46,0x5,0xad,0x70,0x47,0x23,0xc2,0xf0,0x47,0xee,0xc9,0xf0,0x49, + 0x3,0xa4,0xf0,0x49,0xce,0xab,0xf0,0x4a,0xe3,0x86,0xf0,0x4b,0xae,0x8d,0xf0,0x4c, + 0xcc,0xa3,0x70,0x4d,0x8e,0x6f,0xf0,0x54,0x4c,0x1d,0x60,0x56,0xf7,0x14,0x70,0x7f, + 0xff,0xff,0xff,0x0,0x1,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x6,0x7,0x6,0x7,0x4,0x6,0x7,0x6,0x7,0x6, + 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, + 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, + 0x7,0x4,0x7,0x4,0x4,0x0,0x0,0x2d,0xc,0x0,0x0,0x0,0x0,0x2a,0x30,0x0, + 0x4,0x0,0x0,0x46,0x50,0x1,0x8,0x0,0x0,0x38,0x40,0x0,0xc,0x0,0x0,0x38, + 0x40,0x0,0xc,0x0,0x0,0x46,0x50,0x1,0x8,0x0,0x0,0x38,0x40,0x1,0xc,0x0, + 0x0,0x2a,0x30,0x0,0x4,0x0,0x0,0x38,0x40,0x0,0xc,0x4c,0x4d,0x54,0x0,0x2b, + 0x30,0x33,0x0,0x2b,0x30,0x35,0x0,0x2b,0x30,0x34,0x0,0x0,0x0,0x0,0x0,0x1, + 0x1,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, + 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x42,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x10,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0xaa,0x18,0x45,0x74,0xff,0xff,0xff,0xff,0xb5,0xa4,0xb, + 0x50,0x0,0x0,0x0,0x0,0x15,0x27,0x99,0xc0,0x0,0x0,0x0,0x0,0x16,0x18,0xce, + 0x30,0x0,0x0,0x0,0x0,0x17,0x8,0xcd,0x40,0x0,0x0,0x0,0x0,0x17,0xfa,0x1, + 0xb0,0x0,0x0,0x0,0x0,0x18,0xea,0x0,0xc0,0x0,0x0,0x0,0x0,0x19,0xdb,0x35, + 0x30,0x0,0x0,0x0,0x0,0x1a,0xcc,0x85,0xc0,0x0,0x0,0x0,0x0,0x1b,0xbc,0x92, + 0xe0,0x0,0x0,0x0,0x0,0x1c,0xac,0x83,0xe0,0x0,0x0,0x0,0x0,0x1d,0x9c,0x74, + 0xe0,0x0,0x0,0x0,0x0,0x1e,0x8c,0x65,0xe0,0x0,0x0,0x0,0x0,0x1f,0x7c,0x56, + 0xe0,0x0,0x0,0x0,0x0,0x20,0x6c,0x47,0xe0,0x0,0x0,0x0,0x0,0x21,0x5c,0x38, + 0xe0,0x0,0x0,0x0,0x0,0x22,0x4c,0x29,0xe0,0x0,0x0,0x0,0x0,0x23,0x3c,0x1a, + 0xe0,0x0,0x0,0x0,0x0,0x24,0x2c,0xb,0xe0,0x0,0x0,0x0,0x0,0x25,0x1c,0xa, + 0xf0,0x0,0x0,0x0,0x0,0x26,0xb,0xfb,0xf0,0x0,0x0,0x0,0x0,0x27,0x5,0x27, + 0x70,0x0,0x0,0x0,0x0,0x27,0xf5,0x18,0x70,0x0,0x0,0x0,0x0,0x29,0xd4,0xec, + 0x60,0x0,0x0,0x0,0x0,0x2a,0xc4,0xeb,0x70,0x0,0x0,0x0,0x0,0x2b,0xb4,0xdc, + 0x70,0x0,0x0,0x0,0x0,0x2c,0xa4,0xcd,0x70,0x0,0x0,0x0,0x0,0x2d,0x94,0xbe, + 0x70,0x0,0x0,0x0,0x0,0x2e,0x84,0xaf,0x70,0x0,0x0,0x0,0x0,0x2f,0x74,0xa0, + 0x70,0x0,0x0,0x0,0x0,0x30,0x64,0x91,0x70,0x0,0x0,0x0,0x0,0x31,0x5d,0xbc, + 0xf0,0x0,0x0,0x0,0x0,0x32,0x72,0x97,0xf0,0x0,0x0,0x0,0x0,0x33,0x3d,0x9e, + 0xf0,0x0,0x0,0x0,0x0,0x34,0x52,0x79,0xf0,0x0,0x0,0x0,0x0,0x35,0x1d,0x80, + 0xf0,0x0,0x0,0x0,0x0,0x36,0x32,0x5b,0xf0,0x0,0x0,0x0,0x0,0x36,0xfd,0x62, + 0xf0,0x0,0x0,0x0,0x0,0x38,0x1b,0x78,0x70,0x0,0x0,0x0,0x0,0x38,0xdd,0x44, + 0xf0,0x0,0x0,0x0,0x0,0x39,0xfb,0x5a,0x70,0x0,0x0,0x0,0x0,0x3a,0xbd,0x26, + 0xf0,0x0,0x0,0x0,0x0,0x3b,0xdb,0x3c,0x70,0x0,0x0,0x0,0x0,0x3c,0xa6,0x43, + 0x70,0x0,0x0,0x0,0x0,0x3d,0xbb,0x1e,0x70,0x0,0x0,0x0,0x0,0x3e,0x86,0x25, + 0x70,0x0,0x0,0x0,0x0,0x3f,0x9b,0x0,0x70,0x0,0x0,0x0,0x0,0x40,0x66,0x7, + 0x70,0x0,0x0,0x0,0x0,0x41,0x84,0x1c,0xf0,0x0,0x0,0x0,0x0,0x42,0x45,0xe9, + 0x70,0x0,0x0,0x0,0x0,0x43,0x63,0xfe,0xf0,0x0,0x0,0x0,0x0,0x44,0x25,0xcb, + 0x70,0x0,0x0,0x0,0x0,0x45,0x43,0xe0,0xf0,0x0,0x0,0x0,0x0,0x46,0x5,0xad, + 0x70,0x0,0x0,0x0,0x0,0x47,0x23,0xc2,0xf0,0x0,0x0,0x0,0x0,0x47,0xee,0xc9, + 0xf0,0x0,0x0,0x0,0x0,0x49,0x3,0xa4,0xf0,0x0,0x0,0x0,0x0,0x49,0xce,0xab, + 0xf0,0x0,0x0,0x0,0x0,0x4a,0xe3,0x86,0xf0,0x0,0x0,0x0,0x0,0x4b,0xae,0x8d, + 0xf0,0x0,0x0,0x0,0x0,0x4c,0xcc,0xa3,0x70,0x0,0x0,0x0,0x0,0x4d,0x8e,0x6f, + 0xf0,0x0,0x0,0x0,0x0,0x54,0x4c,0x1d,0x60,0x0,0x0,0x0,0x0,0x56,0xf7,0x14, + 0x70,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x6,0x7,0x6,0x7, + 0x4,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, + 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, + 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x4,0x7,0x4,0x4,0x0,0x0,0x2d,0xc,0x0, + 0x0,0x0,0x0,0x2a,0x30,0x0,0x4,0x0,0x0,0x46,0x50,0x1,0x8,0x0,0x0,0x38, + 0x40,0x0,0xc,0x0,0x0,0x38,0x40,0x0,0xc,0x0,0x0,0x46,0x50,0x1,0x8,0x0, + 0x0,0x38,0x40,0x1,0xc,0x0,0x0,0x2a,0x30,0x0,0x4,0x0,0x0,0x38,0x40,0x0, + 0xc,0x4c,0x4d,0x54,0x0,0x2b,0x30,0x33,0x0,0x2b,0x30,0x35,0x0,0x2b,0x30,0x34, + 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0xa,0x3c,0x2b,0x30,0x34,0x3e,0x2d,0x34,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Prague + 0x0,0x0,0x8,0xe0, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x8e,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0x9b, + 0xc,0x17,0x60,0x9b,0xd5,0xda,0xf0,0x9c,0xd9,0xae,0x90,0x9d,0xa4,0xb5,0x90,0x9e, + 0xb9,0x90,0x90,0x9f,0x84,0x97,0x90,0xc8,0x9,0x71,0x90,0xcc,0xe7,0x4b,0x10,0xcd, + 0xa9,0x17,0x90,0xce,0xa2,0x43,0x10,0xcf,0x92,0x34,0x10,0xd0,0x6e,0x5e,0x90,0xd1, + 0x79,0xff,0x10,0xd2,0xa1,0x4f,0x10,0xd3,0x80,0x1c,0x90,0xd4,0x49,0xd2,0x10,0xd5, + 0x4c,0x38,0x10,0xd6,0x29,0xb4,0x10,0xd7,0x2c,0x1a,0x10,0xd8,0x9,0x96,0x10,0xd9, + 0x1,0x70,0x10,0xd9,0xe9,0x78,0x10,0x10,0xed,0x64,0x70,0x11,0x64,0x27,0x90,0x12, + 0x54,0x18,0x90,0x13,0x4d,0x44,0x10,0x14,0x33,0xfa,0x90,0x15,0x23,0xeb,0x90,0x16, + 0x13,0xdc,0x90,0x17,0x3,0xcd,0x90,0x17,0xf3,0xbe,0x90,0x18,0xe3,0xaf,0x90,0x19, + 0xd3,0xa0,0x90,0x1a,0xc3,0x91,0x90,0x1b,0xbc,0xbd,0x10,0x1c,0xac,0xae,0x10,0x1d, + 0x9c,0x9f,0x10,0x1e,0x8c,0x90,0x10,0x1f,0x7c,0x81,0x10,0x20,0x6c,0x72,0x10,0x21, + 0x5c,0x63,0x10,0x22,0x4c,0x54,0x10,0x23,0x3c,0x45,0x10,0x24,0x2c,0x36,0x10,0x25, + 0x1c,0x27,0x10,0x26,0xc,0x18,0x10,0x27,0x5,0x43,0x90,0x27,0xf5,0x34,0x90,0x28, + 0xe5,0x25,0x90,0x29,0xd5,0x16,0x90,0x2a,0xc5,0x7,0x90,0x2b,0xb4,0xf8,0x90,0x2c, + 0xa4,0xe9,0x90,0x2d,0x94,0xda,0x90,0x2e,0x84,0xcb,0x90,0x2f,0x74,0xbc,0x90,0x30, + 0x64,0xad,0x90,0x31,0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34, + 0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38, + 0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b, + 0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f, + 0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43, + 0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47, + 0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a, + 0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e, + 0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52, + 0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56, + 0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59, + 0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d, + 0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61, + 0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65, + 0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68, + 0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c, + 0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70, + 0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74, + 0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78, + 0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b, + 0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f, + 0x8e,0x7f,0x90,0x2,0x1,0x2,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x2,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x0,0x0,0xd,0x88,0x0,0x0,0x0,0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe, + 0x10,0x0,0x9,0x0,0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe,0x10,0x0,0x9,0x0, + 0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe,0x10,0x0,0x9,0x50,0x4d,0x54,0x0,0x43, + 0x45,0x53,0x54,0x0,0x43,0x45,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x0, + 0x0,0x0,0x0,0x0,0x1,0x1,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0, + 0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x90,0x0,0x0,0x0,0x8,0x0,0x0, + 0x0,0x11,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x1e,0x49, + 0x92,0xf8,0xff,0xff,0xff,0xff,0x6c,0xcf,0xea,0xf8,0xff,0xff,0xff,0xff,0x9b,0xc, + 0x17,0x60,0xff,0xff,0xff,0xff,0x9b,0xd5,0xda,0xf0,0xff,0xff,0xff,0xff,0x9c,0xd9, + 0xae,0x90,0xff,0xff,0xff,0xff,0x9d,0xa4,0xb5,0x90,0xff,0xff,0xff,0xff,0x9e,0xb9, + 0x90,0x90,0xff,0xff,0xff,0xff,0x9f,0x84,0x97,0x90,0xff,0xff,0xff,0xff,0xc8,0x9, + 0x71,0x90,0xff,0xff,0xff,0xff,0xcc,0xe7,0x4b,0x10,0xff,0xff,0xff,0xff,0xcd,0xa9, + 0x17,0x90,0xff,0xff,0xff,0xff,0xce,0xa2,0x43,0x10,0xff,0xff,0xff,0xff,0xcf,0x92, + 0x34,0x10,0xff,0xff,0xff,0xff,0xd0,0x6e,0x5e,0x90,0xff,0xff,0xff,0xff,0xd1,0x79, + 0xff,0x10,0xff,0xff,0xff,0xff,0xd2,0xa1,0x4f,0x10,0xff,0xff,0xff,0xff,0xd3,0x80, + 0x1c,0x90,0xff,0xff,0xff,0xff,0xd4,0x49,0xd2,0x10,0xff,0xff,0xff,0xff,0xd5,0x4c, + 0x38,0x10,0xff,0xff,0xff,0xff,0xd6,0x29,0xb4,0x10,0xff,0xff,0xff,0xff,0xd7,0x2c, + 0x1a,0x10,0xff,0xff,0xff,0xff,0xd8,0x9,0x96,0x10,0xff,0xff,0xff,0xff,0xd9,0x1, + 0x70,0x10,0xff,0xff,0xff,0xff,0xd9,0xe9,0x78,0x10,0x0,0x0,0x0,0x0,0x10,0xed, + 0x64,0x70,0x0,0x0,0x0,0x0,0x11,0x64,0x27,0x90,0x0,0x0,0x0,0x0,0x12,0x54, + 0x18,0x90,0x0,0x0,0x0,0x0,0x13,0x4d,0x44,0x10,0x0,0x0,0x0,0x0,0x14,0x33, + 0xfa,0x90,0x0,0x0,0x0,0x0,0x15,0x23,0xeb,0x90,0x0,0x0,0x0,0x0,0x16,0x13, + 0xdc,0x90,0x0,0x0,0x0,0x0,0x17,0x3,0xcd,0x90,0x0,0x0,0x0,0x0,0x17,0xf3, + 0xbe,0x90,0x0,0x0,0x0,0x0,0x18,0xe3,0xaf,0x90,0x0,0x0,0x0,0x0,0x19,0xd3, + 0xa0,0x90,0x0,0x0,0x0,0x0,0x1a,0xc3,0x91,0x90,0x0,0x0,0x0,0x0,0x1b,0xbc, + 0xbd,0x10,0x0,0x0,0x0,0x0,0x1c,0xac,0xae,0x10,0x0,0x0,0x0,0x0,0x1d,0x9c, + 0x9f,0x10,0x0,0x0,0x0,0x0,0x1e,0x8c,0x90,0x10,0x0,0x0,0x0,0x0,0x1f,0x7c, + 0x81,0x10,0x0,0x0,0x0,0x0,0x20,0x6c,0x72,0x10,0x0,0x0,0x0,0x0,0x21,0x5c, + 0x63,0x10,0x0,0x0,0x0,0x0,0x22,0x4c,0x54,0x10,0x0,0x0,0x0,0x0,0x23,0x3c, + 0x45,0x10,0x0,0x0,0x0,0x0,0x24,0x2c,0x36,0x10,0x0,0x0,0x0,0x0,0x25,0x1c, + 0x27,0x10,0x0,0x0,0x0,0x0,0x26,0xc,0x18,0x10,0x0,0x0,0x0,0x0,0x27,0x5, + 0x43,0x90,0x0,0x0,0x0,0x0,0x27,0xf5,0x34,0x90,0x0,0x0,0x0,0x0,0x28,0xe5, + 0x25,0x90,0x0,0x0,0x0,0x0,0x29,0xd5,0x16,0x90,0x0,0x0,0x0,0x0,0x2a,0xc5, + 0x7,0x90,0x0,0x0,0x0,0x0,0x2b,0xb4,0xf8,0x90,0x0,0x0,0x0,0x0,0x2c,0xa4, + 0xe9,0x90,0x0,0x0,0x0,0x0,0x2d,0x94,0xda,0x90,0x0,0x0,0x0,0x0,0x2e,0x84, + 0xcb,0x90,0x0,0x0,0x0,0x0,0x2f,0x74,0xbc,0x90,0x0,0x0,0x0,0x0,0x30,0x64, + 0xad,0x90,0x0,0x0,0x0,0x0,0x31,0x5d,0xd9,0x10,0x0,0x0,0x0,0x0,0x32,0x72, + 0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d,0xbb,0x10,0x0,0x0,0x0,0x0,0x34,0x52, + 0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d,0x9d,0x10,0x0,0x0,0x0,0x0,0x36,0x32, + 0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd,0x7f,0x10,0x0,0x0,0x0,0x0,0x38,0x1b, + 0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd,0x61,0x10,0x0,0x0,0x0,0x0,0x39,0xfb, + 0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd,0x43,0x10,0x0,0x0,0x0,0x0,0x3b,0xdb, + 0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb, + 0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86,0x41,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b, + 0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66,0x23,0x90,0x0,0x0,0x0,0x0,0x41,0x84, + 0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46,0x5,0x90,0x0,0x0,0x0,0x0,0x43,0x64, + 0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25,0xe7,0x90,0x0,0x0,0x0,0x0,0x45,0x43, + 0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5,0xc9,0x90,0x0,0x0,0x0,0x0,0x47,0x23, + 0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee,0xe6,0x10,0x0,0x0,0x0,0x0,0x49,0x3, + 0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce,0xc8,0x10,0x0,0x0,0x0,0x0,0x4a,0xe3, + 0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae,0xaa,0x10,0x0,0x0,0x0,0x0,0x4c,0xcc, + 0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c,0x10,0x0,0x0,0x0,0x0,0x4e,0xac, + 0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e,0x10,0x0,0x0,0x0,0x0,0x50,0x8c, + 0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57,0x8a,0x90,0x0,0x0,0x0,0x0,0x52,0x6c, + 0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37,0x6c,0x90,0x0,0x0,0x0,0x0,0x54,0x4c, + 0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17,0x4e,0x90,0x0,0x0,0x0,0x0,0x56,0x2c, + 0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7,0x30,0x90,0x0,0x0,0x0,0x0,0x58,0x15, + 0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7,0x12,0x90,0x0,0x0,0x0,0x0,0x59,0xf5, + 0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4,0x90,0x0,0x0,0x0,0x0,0x5b,0xd5, + 0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0,0x11,0x10,0x0,0x0,0x0,0x0,0x5d,0xb4, + 0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3,0x10,0x0,0x0,0x0,0x0,0x5f,0x94, + 0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f,0xd5,0x10,0x0,0x0,0x0,0x0,0x61,0x7d, + 0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f,0xb7,0x10,0x0,0x0,0x0,0x0,0x63,0x5d, + 0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f,0x99,0x10,0x0,0x0,0x0,0x0,0x65,0x3d, + 0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8,0xb5,0x90,0x0,0x0,0x0,0x0,0x67,0x1d, + 0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8,0x97,0x90,0x0,0x0,0x0,0x0,0x68,0xfd, + 0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8,0x79,0x90,0x0,0x0,0x0,0x0,0x6a,0xdd, + 0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b,0x90,0x0,0x0,0x0,0x0,0x6c,0xc6, + 0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88,0x3d,0x90,0x0,0x0,0x0,0x0,0x6e,0xa6, + 0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68,0x1f,0x90,0x0,0x0,0x0,0x0,0x70,0x86, + 0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51,0x3c,0x10,0x0,0x0,0x0,0x0,0x72,0x66, + 0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31,0x1e,0x10,0x0,0x0,0x0,0x0,0x74,0x45, + 0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11,0x0,0x10,0x0,0x0,0x0,0x0,0x76,0x2f, + 0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0,0xe2,0x10,0x0,0x0,0x0,0x0,0x78,0xe, + 0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0,0xc4,0x10,0x0,0x0,0x0,0x0,0x79,0xee, + 0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6,0x10,0x0,0x0,0x0,0x0,0x7b,0xce, + 0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99,0xc2,0x90,0x0,0x0,0x0,0x0,0x7d,0xae, + 0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79,0xa4,0x90,0x0,0x0,0x0,0x0,0x7f,0x8e, + 0x7f,0x90,0x0,0x1,0x3,0x2,0x3,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x3,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x0,0x0,0xd,0x88,0x0,0x0,0x0,0x0,0xd,0x88,0x0,0x4,0x0,0x0, + 0x1c,0x20,0x1,0x8,0x0,0x0,0xe,0x10,0x0,0xd,0x0,0x0,0x1c,0x20,0x1,0x8, + 0x0,0x0,0xe,0x10,0x0,0xd,0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0xe,0x10, + 0x0,0xd,0x4c,0x4d,0x54,0x0,0x50,0x4d,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x43, + 0x45,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0, + 0x0,0x1,0x1,0xa,0x43,0x45,0x54,0x2d,0x31,0x43,0x45,0x53,0x54,0x2c,0x4d,0x33, + 0x2e,0x35,0x2e,0x30,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30,0x2f,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Skopje + 0x0,0x0,0x7,0xa5, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x79,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0xca, + 0x2,0x35,0xe0,0xcc,0xe7,0x4b,0x10,0xcd,0xa9,0x17,0x90,0xce,0xa2,0x43,0x10,0xcf, + 0x92,0x34,0x10,0xd0,0x82,0x25,0x10,0xd0,0xfa,0x1,0x70,0xd1,0xa1,0x8c,0x10,0xd2, + 0x4e,0x40,0x90,0x18,0x45,0x5f,0x70,0x18,0xe3,0xaf,0x90,0x19,0xd3,0xa0,0x90,0x1a, + 0xc3,0x91,0x90,0x1b,0xbc,0xbd,0x10,0x1c,0xac,0xae,0x10,0x1d,0x9c,0x9f,0x10,0x1e, + 0x8c,0x90,0x10,0x1f,0x7c,0x81,0x10,0x20,0x6c,0x72,0x10,0x21,0x5c,0x63,0x10,0x22, + 0x4c,0x54,0x10,0x23,0x3c,0x45,0x10,0x24,0x2c,0x36,0x10,0x25,0x1c,0x27,0x10,0x26, + 0xc,0x18,0x10,0x27,0x5,0x43,0x90,0x27,0xf5,0x34,0x90,0x28,0xe5,0x25,0x90,0x29, + 0xd5,0x16,0x90,0x2a,0xc5,0x7,0x90,0x2b,0xb4,0xf8,0x90,0x2c,0xa4,0xe9,0x90,0x2d, + 0x94,0xda,0x90,0x2e,0x84,0xcb,0x90,0x2f,0x74,0xbc,0x90,0x30,0x64,0xad,0x90,0x31, + 0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34,0x52,0x96,0x10,0x35, + 0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x38, + 0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b,0xdb,0x58,0x90,0x3c, + 0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f,0x9b,0x1c,0x90,0x40, + 0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43,0x64,0x1b,0x10,0x44, + 0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47, + 0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b, + 0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e,0xac,0xa1,0x90,0x4f, + 0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53, + 0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56,0x2c,0x29,0x90,0x56, + 0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59,0xf5,0x28,0x10,0x5a, + 0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d,0xb4,0xec,0x10,0x5e, + 0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61,0x7d,0xea,0x90,0x62, + 0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65,0x3d,0xae,0x90,0x66, + 0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68,0xfd,0x72,0x90,0x69, + 0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c,0xc6,0x71,0x10,0x6d, + 0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70,0x86,0x35,0x10,0x71, + 0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74,0x45,0xf9,0x10,0x75, + 0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78, + 0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c, + 0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x1, + 0x4,0x2,0x3,0x2,0x3,0x2,0x1,0x3,0x2,0x1,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x0,0x0,0x13,0x38,0x0,0x0,0x0,0x0, + 0xe,0x10,0x0,0x4,0x0,0x0,0xe,0x10,0x0,0x4,0x0,0x0,0x1c,0x20,0x1,0x8, + 0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0xe,0x10, + 0x0,0x4,0x4c,0x4d,0x54,0x0,0x43,0x45,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x0, + 0x0,0x1,0x1,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x54,0x5a,0x69, + 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x7a,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0xd,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0x5e,0x3c,0xf0,0x48,0xff,0xff,0xff,0xff,0xca,0x2,0x35, + 0xe0,0xff,0xff,0xff,0xff,0xcc,0xe7,0x4b,0x10,0xff,0xff,0xff,0xff,0xcd,0xa9,0x17, + 0x90,0xff,0xff,0xff,0xff,0xce,0xa2,0x43,0x10,0xff,0xff,0xff,0xff,0xcf,0x92,0x34, + 0x10,0xff,0xff,0xff,0xff,0xd0,0x82,0x25,0x10,0xff,0xff,0xff,0xff,0xd0,0xfa,0x1, + 0x70,0xff,0xff,0xff,0xff,0xd1,0xa1,0x8c,0x10,0xff,0xff,0xff,0xff,0xd2,0x4e,0x40, + 0x90,0x0,0x0,0x0,0x0,0x18,0x45,0x5f,0x70,0x0,0x0,0x0,0x0,0x18,0xe3,0xaf, + 0x90,0x0,0x0,0x0,0x0,0x19,0xd3,0xa0,0x90,0x0,0x0,0x0,0x0,0x1a,0xc3,0x91, + 0x90,0x0,0x0,0x0,0x0,0x1b,0xbc,0xbd,0x10,0x0,0x0,0x0,0x0,0x1c,0xac,0xae, + 0x10,0x0,0x0,0x0,0x0,0x1d,0x9c,0x9f,0x10,0x0,0x0,0x0,0x0,0x1e,0x8c,0x90, + 0x10,0x0,0x0,0x0,0x0,0x1f,0x7c,0x81,0x10,0x0,0x0,0x0,0x0,0x20,0x6c,0x72, + 0x10,0x0,0x0,0x0,0x0,0x21,0x5c,0x63,0x10,0x0,0x0,0x0,0x0,0x22,0x4c,0x54, + 0x10,0x0,0x0,0x0,0x0,0x23,0x3c,0x45,0x10,0x0,0x0,0x0,0x0,0x24,0x2c,0x36, + 0x10,0x0,0x0,0x0,0x0,0x25,0x1c,0x27,0x10,0x0,0x0,0x0,0x0,0x26,0xc,0x18, + 0x10,0x0,0x0,0x0,0x0,0x27,0x5,0x43,0x90,0x0,0x0,0x0,0x0,0x27,0xf5,0x34, + 0x90,0x0,0x0,0x0,0x0,0x28,0xe5,0x25,0x90,0x0,0x0,0x0,0x0,0x29,0xd5,0x16, + 0x90,0x0,0x0,0x0,0x0,0x2a,0xc5,0x7,0x90,0x0,0x0,0x0,0x0,0x2b,0xb4,0xf8, + 0x90,0x0,0x0,0x0,0x0,0x2c,0xa4,0xe9,0x90,0x0,0x0,0x0,0x0,0x2d,0x94,0xda, + 0x90,0x0,0x0,0x0,0x0,0x2e,0x84,0xcb,0x90,0x0,0x0,0x0,0x0,0x2f,0x74,0xbc, + 0x90,0x0,0x0,0x0,0x0,0x30,0x64,0xad,0x90,0x0,0x0,0x0,0x0,0x31,0x5d,0xd9, + 0x10,0x0,0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d,0xbb, + 0x10,0x0,0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d,0x9d, + 0x10,0x0,0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd,0x7f, + 0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd,0x61, + 0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd,0x43, + 0x10,0x0,0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f, + 0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86,0x41, + 0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66,0x23, + 0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46,0x5, + 0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25,0xe7, + 0x90,0x0,0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5,0xc9, + 0x90,0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee,0xe6, + 0x10,0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce,0xc8, + 0x10,0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae,0xaa, + 0x10,0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c, + 0x10,0x0,0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e, + 0x10,0x0,0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57,0x8a, + 0x90,0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37,0x6c, + 0x90,0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17,0x4e, + 0x90,0x0,0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7,0x30, + 0x90,0x0,0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7,0x12, + 0x90,0x0,0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4, + 0x90,0x0,0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0,0x11, + 0x10,0x0,0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3, + 0x10,0x0,0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f,0xd5, + 0x10,0x0,0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f,0xb7, + 0x10,0x0,0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f,0x99, + 0x10,0x0,0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8,0xb5, + 0x90,0x0,0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8,0x97, + 0x90,0x0,0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8,0x79, + 0x90,0x0,0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b, + 0x90,0x0,0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88,0x3d, + 0x90,0x0,0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68,0x1f, + 0x90,0x0,0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51,0x3c, + 0x10,0x0,0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31,0x1e, + 0x10,0x0,0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11,0x0, + 0x10,0x0,0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0,0xe2, + 0x10,0x0,0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0,0xc4, + 0x10,0x0,0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6, + 0x10,0x0,0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99,0xc2, + 0x90,0x0,0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79,0xa4, + 0x90,0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x1,0x4,0x2,0x3,0x2,0x3, + 0x2,0x1,0x3,0x2,0x1,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x0,0x0,0x13,0x38,0x0,0x0,0x0,0x0,0xe,0x10,0x0,0x4,0x0, + 0x0,0xe,0x10,0x0,0x4,0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0x1c,0x20,0x1, + 0x8,0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0xe,0x10,0x0,0x4,0x4c,0x4d,0x54, + 0x0,0x43,0x45,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x0,0x0,0x1,0x1,0x0,0x1, + 0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0xa,0x43,0x45,0x54,0x2d,0x31,0x43,0x45, + 0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e, + 0x30,0x2f,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Saratov + 0x0,0x0,0x4,0xad, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x42,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x10,0x80,0x0,0x0,0x0,0xa1, + 0x0,0x39,0x80,0xb5,0xa4,0xb,0x50,0x15,0x27,0x99,0xc0,0x16,0x18,0xce,0x30,0x17, + 0x8,0xcd,0x40,0x17,0xfa,0x1,0xb0,0x18,0xea,0x0,0xc0,0x19,0xdb,0x35,0x30,0x1a, + 0xcc,0x85,0xc0,0x1b,0xbc,0x92,0xe0,0x1c,0xac,0x83,0xe0,0x1d,0x9c,0x74,0xe0,0x1e, + 0x8c,0x65,0xe0,0x1f,0x7c,0x56,0xe0,0x20,0x6c,0x47,0xe0,0x21,0x5c,0x38,0xe0,0x22, + 0x4c,0x29,0xe0,0x23,0x3c,0x28,0xf0,0x24,0x2c,0x19,0xf0,0x25,0x1c,0xa,0xf0,0x26, + 0xb,0xfb,0xf0,0x27,0x5,0x27,0x70,0x27,0xf5,0x18,0x70,0x29,0xd4,0xec,0x60,0x2a, + 0xc4,0xeb,0x70,0x2b,0xb4,0xdc,0x70,0x2c,0xa4,0xcd,0x70,0x2d,0x94,0xbe,0x70,0x2e, + 0x84,0xaf,0x70,0x2f,0x74,0xa0,0x70,0x30,0x64,0x91,0x70,0x31,0x5d,0xbc,0xf0,0x32, + 0x72,0x97,0xf0,0x33,0x3d,0x9e,0xf0,0x34,0x52,0x79,0xf0,0x35,0x1d,0x80,0xf0,0x36, + 0x32,0x5b,0xf0,0x36,0xfd,0x62,0xf0,0x38,0x1b,0x78,0x70,0x38,0xdd,0x44,0xf0,0x39, + 0xfb,0x5a,0x70,0x3a,0xbd,0x26,0xf0,0x3b,0xdb,0x3c,0x70,0x3c,0xa6,0x43,0x70,0x3d, + 0xbb,0x1e,0x70,0x3e,0x86,0x25,0x70,0x3f,0x9b,0x0,0x70,0x40,0x66,0x7,0x70,0x41, + 0x84,0x1c,0xf0,0x42,0x45,0xe9,0x70,0x43,0x63,0xfe,0xf0,0x44,0x25,0xcb,0x70,0x45, + 0x43,0xe0,0xf0,0x46,0x5,0xad,0x70,0x47,0x23,0xc2,0xf0,0x47,0xee,0xc9,0xf0,0x49, + 0x3,0xa4,0xf0,0x49,0xce,0xab,0xf0,0x4a,0xe3,0x86,0xf0,0x4b,0xae,0x8d,0xf0,0x4c, + 0xcc,0xa3,0x70,0x4d,0x8e,0x6f,0xf0,0x54,0x4c,0x1d,0x60,0x58,0x43,0x4e,0x70,0x7f, + 0xff,0xff,0xff,0x0,0x1,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x6,0x7,0x6,0x7,0x6,0x7,0x4,0x6,0x7,0x6,0x7,0x6, + 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, + 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, + 0x7,0x4,0x7,0x4,0x4,0x0,0x0,0x2b,0x32,0x0,0x0,0x0,0x0,0x2a,0x30,0x0, + 0x4,0x0,0x0,0x46,0x50,0x1,0x8,0x0,0x0,0x38,0x40,0x0,0xc,0x0,0x0,0x38, + 0x40,0x0,0xc,0x0,0x0,0x46,0x50,0x1,0x8,0x0,0x0,0x38,0x40,0x1,0xc,0x0, + 0x0,0x2a,0x30,0x0,0x4,0x0,0x0,0x38,0x40,0x0,0xc,0x4c,0x4d,0x54,0x0,0x2b, + 0x30,0x33,0x0,0x2b,0x30,0x35,0x0,0x2b,0x30,0x34,0x0,0x0,0x1,0x0,0x0,0x1, + 0x1,0x1,0x1,0x1,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, + 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x42,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x10,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0xa1,0x0,0x39,0x80,0xff,0xff,0xff,0xff,0xb5,0xa4,0xb, + 0x50,0x0,0x0,0x0,0x0,0x15,0x27,0x99,0xc0,0x0,0x0,0x0,0x0,0x16,0x18,0xce, + 0x30,0x0,0x0,0x0,0x0,0x17,0x8,0xcd,0x40,0x0,0x0,0x0,0x0,0x17,0xfa,0x1, + 0xb0,0x0,0x0,0x0,0x0,0x18,0xea,0x0,0xc0,0x0,0x0,0x0,0x0,0x19,0xdb,0x35, + 0x30,0x0,0x0,0x0,0x0,0x1a,0xcc,0x85,0xc0,0x0,0x0,0x0,0x0,0x1b,0xbc,0x92, + 0xe0,0x0,0x0,0x0,0x0,0x1c,0xac,0x83,0xe0,0x0,0x0,0x0,0x0,0x1d,0x9c,0x74, + 0xe0,0x0,0x0,0x0,0x0,0x1e,0x8c,0x65,0xe0,0x0,0x0,0x0,0x0,0x1f,0x7c,0x56, + 0xe0,0x0,0x0,0x0,0x0,0x20,0x6c,0x47,0xe0,0x0,0x0,0x0,0x0,0x21,0x5c,0x38, + 0xe0,0x0,0x0,0x0,0x0,0x22,0x4c,0x29,0xe0,0x0,0x0,0x0,0x0,0x23,0x3c,0x28, + 0xf0,0x0,0x0,0x0,0x0,0x24,0x2c,0x19,0xf0,0x0,0x0,0x0,0x0,0x25,0x1c,0xa, + 0xf0,0x0,0x0,0x0,0x0,0x26,0xb,0xfb,0xf0,0x0,0x0,0x0,0x0,0x27,0x5,0x27, + 0x70,0x0,0x0,0x0,0x0,0x27,0xf5,0x18,0x70,0x0,0x0,0x0,0x0,0x29,0xd4,0xec, + 0x60,0x0,0x0,0x0,0x0,0x2a,0xc4,0xeb,0x70,0x0,0x0,0x0,0x0,0x2b,0xb4,0xdc, + 0x70,0x0,0x0,0x0,0x0,0x2c,0xa4,0xcd,0x70,0x0,0x0,0x0,0x0,0x2d,0x94,0xbe, + 0x70,0x0,0x0,0x0,0x0,0x2e,0x84,0xaf,0x70,0x0,0x0,0x0,0x0,0x2f,0x74,0xa0, + 0x70,0x0,0x0,0x0,0x0,0x30,0x64,0x91,0x70,0x0,0x0,0x0,0x0,0x31,0x5d,0xbc, + 0xf0,0x0,0x0,0x0,0x0,0x32,0x72,0x97,0xf0,0x0,0x0,0x0,0x0,0x33,0x3d,0x9e, + 0xf0,0x0,0x0,0x0,0x0,0x34,0x52,0x79,0xf0,0x0,0x0,0x0,0x0,0x35,0x1d,0x80, + 0xf0,0x0,0x0,0x0,0x0,0x36,0x32,0x5b,0xf0,0x0,0x0,0x0,0x0,0x36,0xfd,0x62, + 0xf0,0x0,0x0,0x0,0x0,0x38,0x1b,0x78,0x70,0x0,0x0,0x0,0x0,0x38,0xdd,0x44, + 0xf0,0x0,0x0,0x0,0x0,0x39,0xfb,0x5a,0x70,0x0,0x0,0x0,0x0,0x3a,0xbd,0x26, + 0xf0,0x0,0x0,0x0,0x0,0x3b,0xdb,0x3c,0x70,0x0,0x0,0x0,0x0,0x3c,0xa6,0x43, + 0x70,0x0,0x0,0x0,0x0,0x3d,0xbb,0x1e,0x70,0x0,0x0,0x0,0x0,0x3e,0x86,0x25, + 0x70,0x0,0x0,0x0,0x0,0x3f,0x9b,0x0,0x70,0x0,0x0,0x0,0x0,0x40,0x66,0x7, + 0x70,0x0,0x0,0x0,0x0,0x41,0x84,0x1c,0xf0,0x0,0x0,0x0,0x0,0x42,0x45,0xe9, + 0x70,0x0,0x0,0x0,0x0,0x43,0x63,0xfe,0xf0,0x0,0x0,0x0,0x0,0x44,0x25,0xcb, + 0x70,0x0,0x0,0x0,0x0,0x45,0x43,0xe0,0xf0,0x0,0x0,0x0,0x0,0x46,0x5,0xad, + 0x70,0x0,0x0,0x0,0x0,0x47,0x23,0xc2,0xf0,0x0,0x0,0x0,0x0,0x47,0xee,0xc9, + 0xf0,0x0,0x0,0x0,0x0,0x49,0x3,0xa4,0xf0,0x0,0x0,0x0,0x0,0x49,0xce,0xab, + 0xf0,0x0,0x0,0x0,0x0,0x4a,0xe3,0x86,0xf0,0x0,0x0,0x0,0x0,0x4b,0xae,0x8d, + 0xf0,0x0,0x0,0x0,0x0,0x4c,0xcc,0xa3,0x70,0x0,0x0,0x0,0x0,0x4d,0x8e,0x6f, + 0xf0,0x0,0x0,0x0,0x0,0x54,0x4c,0x1d,0x60,0x0,0x0,0x0,0x0,0x58,0x43,0x4e, + 0x70,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x6,0x7,0x6,0x7,0x6,0x7, + 0x4,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, + 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, + 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x4,0x7,0x4,0x4,0x0,0x0,0x2b,0x32,0x0, + 0x0,0x0,0x0,0x2a,0x30,0x0,0x4,0x0,0x0,0x46,0x50,0x1,0x8,0x0,0x0,0x38, + 0x40,0x0,0xc,0x0,0x0,0x38,0x40,0x0,0xc,0x0,0x0,0x46,0x50,0x1,0x8,0x0, + 0x0,0x38,0x40,0x1,0xc,0x0,0x0,0x2a,0x30,0x0,0x4,0x0,0x0,0x38,0x40,0x0, + 0xc,0x4c,0x4d,0x54,0x0,0x2b,0x30,0x33,0x0,0x2b,0x30,0x35,0x0,0x2b,0x30,0x34, + 0x0,0x0,0x1,0x0,0x0,0x1,0x1,0x1,0x1,0x1,0x0,0x1,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0xa,0x3c,0x2b,0x30,0x34,0x3e,0x2d,0x34,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Lisbon + 0x0,0x0,0xd,0x7d, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xde,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x1b,0x80,0x0,0x0,0x0,0x92, + 0xe6,0x97,0x1d,0x9b,0x4b,0x6d,0x70,0x9b,0xfe,0xc7,0x80,0x9c,0x9c,0xed,0x70,0x9d, + 0xc9,0x83,0x70,0x9e,0x7f,0x72,0x70,0x9f,0xaa,0xb6,0xf0,0xa0,0x5f,0x54,0x70,0xa1, + 0x8b,0xea,0x70,0xa2,0x41,0xd9,0x70,0xa3,0x6e,0x6f,0x70,0xa4,0x23,0xc,0xf0,0xa5, + 0x4f,0xa2,0xf0,0xaa,0x5,0xef,0x70,0xaa,0xf4,0x8e,0xf0,0xad,0xc9,0xa7,0xf0,0xae, + 0xa7,0x23,0xf0,0xaf,0xa0,0x4f,0x70,0xb0,0x87,0x5,0xf0,0xb1,0x89,0x6b,0xf0,0xb2, + 0x70,0x22,0x70,0xb3,0x72,0x88,0x70,0xb4,0x50,0x4,0x70,0xb7,0x32,0x4c,0x70,0xb8, + 0xf,0xc8,0x70,0xb8,0xff,0xb9,0x70,0xb9,0xef,0xaa,0x70,0xbc,0xc8,0xb7,0xf0,0xbd, + 0xb8,0xa8,0xf0,0xbe,0x9f,0x5f,0x70,0xbf,0x98,0x8a,0xf0,0xc0,0x9a,0xf0,0xf0,0xc1, + 0x78,0x6c,0xf0,0xc2,0x68,0x5d,0xf0,0xc3,0x58,0x4e,0xf0,0xc4,0x3f,0x5,0x70,0xc5, + 0x38,0x30,0xf0,0xc6,0x3a,0x96,0xf0,0xc7,0x58,0xac,0x70,0xc7,0xd9,0xdf,0x70,0xc9, + 0x1,0x2f,0x70,0xc9,0xf1,0x20,0x70,0xca,0xe2,0x62,0xf0,0xcb,0xb5,0x52,0xf0,0xcb, + 0xec,0xa3,0xe0,0xcc,0x80,0x4b,0xe0,0xcc,0xdc,0xa2,0xf0,0xcd,0x95,0x34,0xf0,0xcd, + 0xc3,0x4b,0x60,0xce,0x72,0xa2,0xe0,0xce,0xc5,0xbf,0x70,0xcf,0x75,0x16,0xf0,0xcf, + 0xac,0x67,0xe0,0xd0,0x52,0x84,0xe0,0xd0,0xa5,0xa1,0x70,0xd1,0x54,0xf8,0xf0,0xd1, + 0x8c,0x49,0xe0,0xd2,0x32,0x66,0xe0,0xd2,0x85,0x83,0x70,0xd3,0x59,0xc4,0xf0,0xd4, + 0x49,0xb5,0xf0,0xd5,0x39,0xd1,0x20,0xd6,0x29,0xc2,0x20,0xd7,0x19,0xb3,0x20,0xd8, + 0x9,0xa4,0x20,0xd8,0xf9,0x95,0x20,0xd9,0xe9,0x86,0x20,0xdc,0xb9,0x59,0x20,0xdd, + 0xb2,0x84,0xa0,0xde,0xa2,0x75,0xa0,0xdf,0x92,0x66,0xa0,0xe0,0x82,0x57,0xa0,0xe1, + 0x72,0x48,0xa0,0xe2,0x62,0x39,0xa0,0xe3,0x52,0x2a,0xa0,0xe4,0x42,0x1b,0xa0,0xe5, + 0x32,0xc,0xa0,0xe6,0x21,0xfd,0xa0,0xe7,0x1b,0x29,0x20,0xe8,0xb,0x1a,0x20,0xe8, + 0xfb,0xb,0x20,0xe9,0xea,0xfc,0x20,0xea,0xda,0xed,0x20,0xeb,0xca,0xde,0x20,0xec, + 0xba,0xcf,0x20,0xed,0xaa,0xc0,0x20,0xee,0x9a,0xb1,0x20,0xef,0x8a,0xa2,0x20,0xf0, + 0x7a,0x93,0x20,0xf1,0x6a,0x84,0x20,0xf2,0x63,0xaf,0xa0,0xf3,0x53,0xa0,0xa0,0xf4, + 0x43,0x91,0xa0,0xf5,0x33,0x82,0xa0,0xf6,0x23,0x73,0xa0,0xf7,0x13,0x64,0xa0,0xf8, + 0x3,0x55,0xa0,0xf8,0xf3,0x46,0xa0,0xc,0xab,0x2a,0x0,0xd,0x9b,0x1b,0x0,0xe, + 0x8b,0xc,0x0,0xf,0x84,0x37,0x80,0x10,0x74,0x28,0x80,0x11,0x64,0x19,0x80,0x12, + 0x54,0x18,0x90,0x13,0x43,0xfb,0x80,0x14,0x33,0xfa,0x90,0x15,0x23,0xeb,0x90,0x16, + 0x13,0xdc,0x90,0x17,0x3,0xcd,0x90,0x17,0xf3,0xbe,0x90,0x18,0xe3,0xbd,0xa0,0x19, + 0xd3,0xa0,0x90,0x1a,0xc3,0x91,0x90,0x1b,0xbc,0xbd,0x10,0x1c,0xac,0xae,0x10,0x1d, + 0x9c,0x9f,0x10,0x1e,0x8c,0x90,0x10,0x1f,0x7c,0x81,0x10,0x20,0x6c,0x72,0x10,0x21, + 0x5c,0x63,0x10,0x22,0x4c,0x54,0x10,0x23,0x3c,0x45,0x10,0x24,0x2c,0x36,0x10,0x25, + 0x1c,0x27,0x10,0x26,0xc,0x18,0x10,0x27,0x5,0x43,0x90,0x27,0xf5,0x34,0x90,0x28, + 0xe5,0x25,0x90,0x29,0xd5,0x16,0x90,0x2a,0xc5,0x7,0x90,0x2b,0xb4,0xf8,0x90,0x2c, + 0xa4,0xe9,0x90,0x2d,0x94,0xda,0x90,0x2e,0x84,0xcb,0x90,0x2f,0x74,0xbc,0x90,0x30, + 0x64,0xad,0x90,0x31,0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34, + 0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38, + 0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b, + 0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f, + 0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43, + 0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47, + 0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a, + 0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e, + 0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52, + 0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56, + 0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59, + 0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d, + 0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61, + 0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65, + 0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68, + 0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c, + 0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70, + 0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74, + 0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78, + 0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b, + 0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f, + 0x8e,0x7f,0x90,0x0,0x2,0x1,0x2,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x5,0x3,0x4,0x3,0x5,0x3,0x4,0x3,0x5,0x3,0x4,0x3,0x5,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x6,0x2,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x9,0xa,0x9, + 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9, + 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9, + 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9, + 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9, + 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9, + 0xa,0xff,0xff,0xf7,0x63,0x0,0x0,0x0,0x0,0xe,0x10,0x1,0x4,0x0,0x0,0x0, + 0x0,0x0,0x9,0x0,0x0,0xe,0x10,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x9,0x0, + 0x0,0x1c,0x20,0x1,0xd,0x0,0x0,0xe,0x10,0x0,0x12,0x0,0x0,0xe,0x10,0x0, + 0x12,0x0,0x0,0x1c,0x20,0x1,0x16,0x0,0x0,0xe,0x10,0x1,0x4,0x0,0x0,0x0, + 0x0,0x0,0x9,0x4c,0x4d,0x54,0x0,0x57,0x45,0x53,0x54,0x0,0x57,0x45,0x54,0x0, + 0x57,0x45,0x4d,0x54,0x0,0x43,0x45,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x0,0x0, + 0x0,0x1,0x1,0x1,0x0,0x1,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x1,0x1,0x1,0x1,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0xb, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xde,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x1b, + 0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x92,0xe6,0x97,0x1d, + 0xff,0xff,0xff,0xff,0x9b,0x4b,0x6d,0x70,0xff,0xff,0xff,0xff,0x9b,0xfe,0xc7,0x80, + 0xff,0xff,0xff,0xff,0x9c,0x9c,0xed,0x70,0xff,0xff,0xff,0xff,0x9d,0xc9,0x83,0x70, + 0xff,0xff,0xff,0xff,0x9e,0x7f,0x72,0x70,0xff,0xff,0xff,0xff,0x9f,0xaa,0xb6,0xf0, + 0xff,0xff,0xff,0xff,0xa0,0x5f,0x54,0x70,0xff,0xff,0xff,0xff,0xa1,0x8b,0xea,0x70, + 0xff,0xff,0xff,0xff,0xa2,0x41,0xd9,0x70,0xff,0xff,0xff,0xff,0xa3,0x6e,0x6f,0x70, + 0xff,0xff,0xff,0xff,0xa4,0x23,0xc,0xf0,0xff,0xff,0xff,0xff,0xa5,0x4f,0xa2,0xf0, + 0xff,0xff,0xff,0xff,0xaa,0x5,0xef,0x70,0xff,0xff,0xff,0xff,0xaa,0xf4,0x8e,0xf0, + 0xff,0xff,0xff,0xff,0xad,0xc9,0xa7,0xf0,0xff,0xff,0xff,0xff,0xae,0xa7,0x23,0xf0, + 0xff,0xff,0xff,0xff,0xaf,0xa0,0x4f,0x70,0xff,0xff,0xff,0xff,0xb0,0x87,0x5,0xf0, + 0xff,0xff,0xff,0xff,0xb1,0x89,0x6b,0xf0,0xff,0xff,0xff,0xff,0xb2,0x70,0x22,0x70, + 0xff,0xff,0xff,0xff,0xb3,0x72,0x88,0x70,0xff,0xff,0xff,0xff,0xb4,0x50,0x4,0x70, + 0xff,0xff,0xff,0xff,0xb7,0x32,0x4c,0x70,0xff,0xff,0xff,0xff,0xb8,0xf,0xc8,0x70, + 0xff,0xff,0xff,0xff,0xb8,0xff,0xb9,0x70,0xff,0xff,0xff,0xff,0xb9,0xef,0xaa,0x70, + 0xff,0xff,0xff,0xff,0xbc,0xc8,0xb7,0xf0,0xff,0xff,0xff,0xff,0xbd,0xb8,0xa8,0xf0, + 0xff,0xff,0xff,0xff,0xbe,0x9f,0x5f,0x70,0xff,0xff,0xff,0xff,0xbf,0x98,0x8a,0xf0, + 0xff,0xff,0xff,0xff,0xc0,0x9a,0xf0,0xf0,0xff,0xff,0xff,0xff,0xc1,0x78,0x6c,0xf0, + 0xff,0xff,0xff,0xff,0xc2,0x68,0x5d,0xf0,0xff,0xff,0xff,0xff,0xc3,0x58,0x4e,0xf0, + 0xff,0xff,0xff,0xff,0xc4,0x3f,0x5,0x70,0xff,0xff,0xff,0xff,0xc5,0x38,0x30,0xf0, + 0xff,0xff,0xff,0xff,0xc6,0x3a,0x96,0xf0,0xff,0xff,0xff,0xff,0xc7,0x58,0xac,0x70, + 0xff,0xff,0xff,0xff,0xc7,0xd9,0xdf,0x70,0xff,0xff,0xff,0xff,0xc9,0x1,0x2f,0x70, + 0xff,0xff,0xff,0xff,0xc9,0xf1,0x20,0x70,0xff,0xff,0xff,0xff,0xca,0xe2,0x62,0xf0, + 0xff,0xff,0xff,0xff,0xcb,0xb5,0x52,0xf0,0xff,0xff,0xff,0xff,0xcb,0xec,0xa3,0xe0, + 0xff,0xff,0xff,0xff,0xcc,0x80,0x4b,0xe0,0xff,0xff,0xff,0xff,0xcc,0xdc,0xa2,0xf0, + 0xff,0xff,0xff,0xff,0xcd,0x95,0x34,0xf0,0xff,0xff,0xff,0xff,0xcd,0xc3,0x4b,0x60, + 0xff,0xff,0xff,0xff,0xce,0x72,0xa2,0xe0,0xff,0xff,0xff,0xff,0xce,0xc5,0xbf,0x70, + 0xff,0xff,0xff,0xff,0xcf,0x75,0x16,0xf0,0xff,0xff,0xff,0xff,0xcf,0xac,0x67,0xe0, + 0xff,0xff,0xff,0xff,0xd0,0x52,0x84,0xe0,0xff,0xff,0xff,0xff,0xd0,0xa5,0xa1,0x70, + 0xff,0xff,0xff,0xff,0xd1,0x54,0xf8,0xf0,0xff,0xff,0xff,0xff,0xd1,0x8c,0x49,0xe0, + 0xff,0xff,0xff,0xff,0xd2,0x32,0x66,0xe0,0xff,0xff,0xff,0xff,0xd2,0x85,0x83,0x70, + 0xff,0xff,0xff,0xff,0xd3,0x59,0xc4,0xf0,0xff,0xff,0xff,0xff,0xd4,0x49,0xb5,0xf0, + 0xff,0xff,0xff,0xff,0xd5,0x39,0xd1,0x20,0xff,0xff,0xff,0xff,0xd6,0x29,0xc2,0x20, + 0xff,0xff,0xff,0xff,0xd7,0x19,0xb3,0x20,0xff,0xff,0xff,0xff,0xd8,0x9,0xa4,0x20, + 0xff,0xff,0xff,0xff,0xd8,0xf9,0x95,0x20,0xff,0xff,0xff,0xff,0xd9,0xe9,0x86,0x20, + 0xff,0xff,0xff,0xff,0xdc,0xb9,0x59,0x20,0xff,0xff,0xff,0xff,0xdd,0xb2,0x84,0xa0, + 0xff,0xff,0xff,0xff,0xde,0xa2,0x75,0xa0,0xff,0xff,0xff,0xff,0xdf,0x92,0x66,0xa0, + 0xff,0xff,0xff,0xff,0xe0,0x82,0x57,0xa0,0xff,0xff,0xff,0xff,0xe1,0x72,0x48,0xa0, + 0xff,0xff,0xff,0xff,0xe2,0x62,0x39,0xa0,0xff,0xff,0xff,0xff,0xe3,0x52,0x2a,0xa0, + 0xff,0xff,0xff,0xff,0xe4,0x42,0x1b,0xa0,0xff,0xff,0xff,0xff,0xe5,0x32,0xc,0xa0, + 0xff,0xff,0xff,0xff,0xe6,0x21,0xfd,0xa0,0xff,0xff,0xff,0xff,0xe7,0x1b,0x29,0x20, + 0xff,0xff,0xff,0xff,0xe8,0xb,0x1a,0x20,0xff,0xff,0xff,0xff,0xe8,0xfb,0xb,0x20, + 0xff,0xff,0xff,0xff,0xe9,0xea,0xfc,0x20,0xff,0xff,0xff,0xff,0xea,0xda,0xed,0x20, + 0xff,0xff,0xff,0xff,0xeb,0xca,0xde,0x20,0xff,0xff,0xff,0xff,0xec,0xba,0xcf,0x20, + 0xff,0xff,0xff,0xff,0xed,0xaa,0xc0,0x20,0xff,0xff,0xff,0xff,0xee,0x9a,0xb1,0x20, + 0xff,0xff,0xff,0xff,0xef,0x8a,0xa2,0x20,0xff,0xff,0xff,0xff,0xf0,0x7a,0x93,0x20, + 0xff,0xff,0xff,0xff,0xf1,0x6a,0x84,0x20,0xff,0xff,0xff,0xff,0xf2,0x63,0xaf,0xa0, + 0xff,0xff,0xff,0xff,0xf3,0x53,0xa0,0xa0,0xff,0xff,0xff,0xff,0xf4,0x43,0x91,0xa0, + 0xff,0xff,0xff,0xff,0xf5,0x33,0x82,0xa0,0xff,0xff,0xff,0xff,0xf6,0x23,0x73,0xa0, + 0xff,0xff,0xff,0xff,0xf7,0x13,0x64,0xa0,0xff,0xff,0xff,0xff,0xf8,0x3,0x55,0xa0, + 0xff,0xff,0xff,0xff,0xf8,0xf3,0x46,0xa0,0x0,0x0,0x0,0x0,0xc,0xab,0x2a,0x0, + 0x0,0x0,0x0,0x0,0xd,0x9b,0x1b,0x0,0x0,0x0,0x0,0x0,0xe,0x8b,0xc,0x0, + 0x0,0x0,0x0,0x0,0xf,0x84,0x37,0x80,0x0,0x0,0x0,0x0,0x10,0x74,0x28,0x80, + 0x0,0x0,0x0,0x0,0x11,0x64,0x19,0x80,0x0,0x0,0x0,0x0,0x12,0x54,0x18,0x90, + 0x0,0x0,0x0,0x0,0x13,0x43,0xfb,0x80,0x0,0x0,0x0,0x0,0x14,0x33,0xfa,0x90, + 0x0,0x0,0x0,0x0,0x15,0x23,0xeb,0x90,0x0,0x0,0x0,0x0,0x16,0x13,0xdc,0x90, + 0x0,0x0,0x0,0x0,0x17,0x3,0xcd,0x90,0x0,0x0,0x0,0x0,0x17,0xf3,0xbe,0x90, + 0x0,0x0,0x0,0x0,0x18,0xe3,0xbd,0xa0,0x0,0x0,0x0,0x0,0x19,0xd3,0xa0,0x90, + 0x0,0x0,0x0,0x0,0x1a,0xc3,0x91,0x90,0x0,0x0,0x0,0x0,0x1b,0xbc,0xbd,0x10, + 0x0,0x0,0x0,0x0,0x1c,0xac,0xae,0x10,0x0,0x0,0x0,0x0,0x1d,0x9c,0x9f,0x10, + 0x0,0x0,0x0,0x0,0x1e,0x8c,0x90,0x10,0x0,0x0,0x0,0x0,0x1f,0x7c,0x81,0x10, + 0x0,0x0,0x0,0x0,0x20,0x6c,0x72,0x10,0x0,0x0,0x0,0x0,0x21,0x5c,0x63,0x10, + 0x0,0x0,0x0,0x0,0x22,0x4c,0x54,0x10,0x0,0x0,0x0,0x0,0x23,0x3c,0x45,0x10, + 0x0,0x0,0x0,0x0,0x24,0x2c,0x36,0x10,0x0,0x0,0x0,0x0,0x25,0x1c,0x27,0x10, + 0x0,0x0,0x0,0x0,0x26,0xc,0x18,0x10,0x0,0x0,0x0,0x0,0x27,0x5,0x43,0x90, + 0x0,0x0,0x0,0x0,0x27,0xf5,0x34,0x90,0x0,0x0,0x0,0x0,0x28,0xe5,0x25,0x90, + 0x0,0x0,0x0,0x0,0x29,0xd5,0x16,0x90,0x0,0x0,0x0,0x0,0x2a,0xc5,0x7,0x90, + 0x0,0x0,0x0,0x0,0x2b,0xb4,0xf8,0x90,0x0,0x0,0x0,0x0,0x2c,0xa4,0xe9,0x90, + 0x0,0x0,0x0,0x0,0x2d,0x94,0xda,0x90,0x0,0x0,0x0,0x0,0x2e,0x84,0xcb,0x90, + 0x0,0x0,0x0,0x0,0x2f,0x74,0xbc,0x90,0x0,0x0,0x0,0x0,0x30,0x64,0xad,0x90, + 0x0,0x0,0x0,0x0,0x31,0x5d,0xd9,0x10,0x0,0x0,0x0,0x0,0x32,0x72,0xb4,0x10, + 0x0,0x0,0x0,0x0,0x33,0x3d,0xbb,0x10,0x0,0x0,0x0,0x0,0x34,0x52,0x96,0x10, + 0x0,0x0,0x0,0x0,0x35,0x1d,0x9d,0x10,0x0,0x0,0x0,0x0,0x36,0x32,0x78,0x10, + 0x0,0x0,0x0,0x0,0x36,0xfd,0x7f,0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0x94,0x90, + 0x0,0x0,0x0,0x0,0x38,0xdd,0x61,0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0x76,0x90, + 0x0,0x0,0x0,0x0,0x3a,0xbd,0x43,0x10,0x0,0x0,0x0,0x0,0x3b,0xdb,0x58,0x90, + 0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90, + 0x0,0x0,0x0,0x0,0x3e,0x86,0x41,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90, + 0x0,0x0,0x0,0x0,0x40,0x66,0x23,0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x39,0x10, + 0x0,0x0,0x0,0x0,0x42,0x46,0x5,0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x1b,0x10, + 0x0,0x0,0x0,0x0,0x44,0x25,0xe7,0x90,0x0,0x0,0x0,0x0,0x45,0x43,0xfd,0x10, + 0x0,0x0,0x0,0x0,0x46,0x5,0xc9,0x90,0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10, + 0x0,0x0,0x0,0x0,0x47,0xee,0xe6,0x10,0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10, + 0x0,0x0,0x0,0x0,0x49,0xce,0xc8,0x10,0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10, + 0x0,0x0,0x0,0x0,0x4b,0xae,0xaa,0x10,0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90, + 0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c,0x10,0x0,0x0,0x0,0x0,0x4e,0xac,0xa1,0x90, + 0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e,0x10,0x0,0x0,0x0,0x0,0x50,0x8c,0x83,0x90, + 0x0,0x0,0x0,0x0,0x51,0x57,0x8a,0x90,0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90, + 0x0,0x0,0x0,0x0,0x53,0x37,0x6c,0x90,0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90, + 0x0,0x0,0x0,0x0,0x55,0x17,0x4e,0x90,0x0,0x0,0x0,0x0,0x56,0x2c,0x29,0x90, + 0x0,0x0,0x0,0x0,0x56,0xf7,0x30,0x90,0x0,0x0,0x0,0x0,0x58,0x15,0x46,0x10, + 0x0,0x0,0x0,0x0,0x58,0xd7,0x12,0x90,0x0,0x0,0x0,0x0,0x59,0xf5,0x28,0x10, + 0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4,0x90,0x0,0x0,0x0,0x0,0x5b,0xd5,0xa,0x10, + 0x0,0x0,0x0,0x0,0x5c,0xa0,0x11,0x10,0x0,0x0,0x0,0x0,0x5d,0xb4,0xec,0x10, + 0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3,0x10,0x0,0x0,0x0,0x0,0x5f,0x94,0xce,0x10, + 0x0,0x0,0x0,0x0,0x60,0x5f,0xd5,0x10,0x0,0x0,0x0,0x0,0x61,0x7d,0xea,0x90, + 0x0,0x0,0x0,0x0,0x62,0x3f,0xb7,0x10,0x0,0x0,0x0,0x0,0x63,0x5d,0xcc,0x90, + 0x0,0x0,0x0,0x0,0x64,0x1f,0x99,0x10,0x0,0x0,0x0,0x0,0x65,0x3d,0xae,0x90, + 0x0,0x0,0x0,0x0,0x66,0x8,0xb5,0x90,0x0,0x0,0x0,0x0,0x67,0x1d,0x90,0x90, + 0x0,0x0,0x0,0x0,0x67,0xe8,0x97,0x90,0x0,0x0,0x0,0x0,0x68,0xfd,0x72,0x90, + 0x0,0x0,0x0,0x0,0x69,0xc8,0x79,0x90,0x0,0x0,0x0,0x0,0x6a,0xdd,0x54,0x90, + 0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b,0x90,0x0,0x0,0x0,0x0,0x6c,0xc6,0x71,0x10, + 0x0,0x0,0x0,0x0,0x6d,0x88,0x3d,0x90,0x0,0x0,0x0,0x0,0x6e,0xa6,0x53,0x10, + 0x0,0x0,0x0,0x0,0x6f,0x68,0x1f,0x90,0x0,0x0,0x0,0x0,0x70,0x86,0x35,0x10, + 0x0,0x0,0x0,0x0,0x71,0x51,0x3c,0x10,0x0,0x0,0x0,0x0,0x72,0x66,0x17,0x10, + 0x0,0x0,0x0,0x0,0x73,0x31,0x1e,0x10,0x0,0x0,0x0,0x0,0x74,0x45,0xf9,0x10, + 0x0,0x0,0x0,0x0,0x75,0x11,0x0,0x10,0x0,0x0,0x0,0x0,0x76,0x2f,0x15,0x90, + 0x0,0x0,0x0,0x0,0x76,0xf0,0xe2,0x10,0x0,0x0,0x0,0x0,0x78,0xe,0xf7,0x90, + 0x0,0x0,0x0,0x0,0x78,0xd0,0xc4,0x10,0x0,0x0,0x0,0x0,0x79,0xee,0xd9,0x90, + 0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6,0x10,0x0,0x0,0x0,0x0,0x7b,0xce,0xbb,0x90, + 0x0,0x0,0x0,0x0,0x7c,0x99,0xc2,0x90,0x0,0x0,0x0,0x0,0x7d,0xae,0x9d,0x90, + 0x0,0x0,0x0,0x0,0x7e,0x79,0xa4,0x90,0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90, + 0x0,0x2,0x1,0x2,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x5,0x3,0x4, + 0x3,0x5,0x3,0x4,0x3,0x5,0x3,0x4,0x3,0x5,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x6,0x2,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x9,0xa,0x9,0xa,0x9,0xa, + 0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa, + 0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa, + 0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa, + 0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa, + 0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0xff,0xff, + 0xf7,0x63,0x0,0x0,0x0,0x0,0xe,0x10,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x9, + 0x0,0x0,0xe,0x10,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x1c,0x20, + 0x1,0xd,0x0,0x0,0xe,0x10,0x0,0x12,0x0,0x0,0xe,0x10,0x0,0x12,0x0,0x0, + 0x1c,0x20,0x1,0x16,0x0,0x0,0xe,0x10,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x9, + 0x4c,0x4d,0x54,0x0,0x57,0x45,0x53,0x54,0x0,0x57,0x45,0x54,0x0,0x57,0x45,0x4d, + 0x54,0x0,0x43,0x45,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x1,0x1, + 0x1,0x0,0x1,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1, + 0x1,0xa,0x57,0x45,0x54,0x30,0x57,0x45,0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e, + 0x30,0x2f,0x31,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Paris + 0x0,0x0,0xb,0x9b, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xb8,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x1f,0x80,0x0,0x0,0x0,0x91, + 0x60,0x50,0x8b,0x9b,0x47,0x78,0xf0,0x9b,0xd7,0x2c,0x70,0x9c,0xbc,0x91,0x70,0x9d, + 0xc0,0x48,0xf0,0x9e,0x89,0xfe,0x70,0x9f,0xa0,0x2a,0xf0,0xa0,0x60,0xa5,0xf0,0xa1, + 0x80,0xc,0xf0,0xa2,0x2e,0x12,0xf0,0xa3,0x7a,0x4c,0xf0,0xa4,0x35,0x81,0xf0,0xa5, + 0x5e,0x23,0x70,0xa6,0x25,0x35,0xf0,0xa7,0x27,0x9b,0xf0,0xa8,0x58,0x26,0x70,0xa9, + 0x7,0x7d,0xf0,0xa9,0xee,0x34,0x70,0xaa,0xe7,0x5f,0xf0,0xab,0xd7,0x50,0xf0,0xac, + 0xc7,0x41,0xf0,0xad,0xc9,0xa7,0xf0,0xae,0xa7,0x23,0xf0,0xaf,0xa0,0x4f,0x70,0xb0, + 0x87,0x5,0xf0,0xb1,0x89,0x6b,0xf0,0xb2,0x70,0x22,0x70,0xb3,0x72,0x88,0x70,0xb4, + 0x50,0x4,0x70,0xb5,0x49,0x2f,0xf0,0xb6,0x2f,0xe6,0x70,0xb7,0x32,0x4c,0x70,0xb8, + 0xf,0xc8,0x70,0xb8,0xff,0xb9,0x70,0xb9,0xef,0xaa,0x70,0xba,0xd6,0x60,0xf0,0xbb, + 0xd8,0xc6,0xf0,0xbc,0xc8,0xb7,0xf0,0xbd,0xb8,0xa8,0xf0,0xbe,0x9f,0x5f,0x70,0xbf, + 0x98,0x8a,0xf0,0xc0,0x9a,0xf0,0xf0,0xc1,0x78,0x6c,0xf0,0xc2,0x68,0x5d,0xf0,0xc3, + 0x58,0x4e,0xf0,0xc4,0x3f,0x5,0x70,0xc5,0x38,0x30,0xf0,0xc6,0x3a,0x96,0xf0,0xc7, + 0x58,0xac,0x70,0xc7,0xda,0x9,0xa0,0xc8,0x6c,0x27,0xe0,0xcc,0xe7,0x4b,0x10,0xcd, + 0xa9,0x17,0x90,0xce,0xa2,0x43,0x10,0xcf,0x92,0x34,0x10,0xd0,0x4f,0xe1,0xe0,0xd0, + 0x89,0xf1,0xf0,0xd1,0x72,0x16,0x10,0xd2,0x4e,0x40,0x90,0xb,0xbb,0x39,0x0,0xc, + 0xab,0x1b,0xf0,0xd,0xa4,0x63,0x90,0xe,0x8b,0x1a,0x10,0xf,0x84,0x45,0x90,0x10, + 0x74,0x36,0x90,0x11,0x64,0x27,0x90,0x12,0x54,0x18,0x90,0x13,0x4d,0x44,0x10,0x14, + 0x33,0xfa,0x90,0x15,0x23,0xeb,0x90,0x16,0x13,0xdc,0x90,0x17,0x3,0xcd,0x90,0x17, + 0xf3,0xbe,0x90,0x18,0xe3,0xaf,0x90,0x19,0xd3,0xa0,0x90,0x1a,0xc3,0x91,0x90,0x1b, + 0xbc,0xbd,0x10,0x1c,0xac,0xae,0x10,0x1d,0x9c,0x9f,0x10,0x1e,0x8c,0x90,0x10,0x1f, + 0x7c,0x81,0x10,0x20,0x6c,0x72,0x10,0x21,0x5c,0x63,0x10,0x22,0x4c,0x54,0x10,0x23, + 0x3c,0x45,0x10,0x24,0x2c,0x36,0x10,0x25,0x1c,0x27,0x10,0x26,0xc,0x18,0x10,0x27, + 0x5,0x43,0x90,0x27,0xf5,0x34,0x90,0x28,0xe5,0x25,0x90,0x29,0xd5,0x16,0x90,0x2a, + 0xc5,0x7,0x90,0x2b,0xb4,0xf8,0x90,0x2c,0xa4,0xe9,0x90,0x2d,0x94,0xda,0x90,0x2e, + 0x84,0xcb,0x90,0x2f,0x74,0xbc,0x90,0x30,0x64,0xad,0x90,0x31,0x5d,0xd9,0x10,0x32, + 0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34,0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36, + 0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39, + 0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b,0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d, + 0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f,0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41, + 0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43,0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45, + 0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49, + 0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c, + 0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e,0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50, + 0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54, + 0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56,0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58, + 0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59,0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b, + 0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d,0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f, + 0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61,0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63, + 0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65,0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67, + 0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68,0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a, + 0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c,0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e, + 0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70,0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72, + 0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74,0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76, + 0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79, + 0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d, + 0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x1,0x5,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x4,0x8,0x6, + 0x7,0x6,0x7,0x9,0x4,0x9,0xa,0x8,0xa,0xb,0xc,0xb,0xc,0xb,0xc,0xb, + 0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb, + 0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb, + 0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb, + 0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb, + 0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb, + 0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb, + 0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb, + 0xc,0xb,0xc,0x0,0x0,0x2,0x31,0x0,0x0,0x0,0x0,0x2,0x31,0x0,0x4,0x0, + 0x0,0xe,0x10,0x1,0x8,0x0,0x0,0x0,0x0,0x0,0xd,0x0,0x0,0xe,0x10,0x1, + 0x8,0x0,0x0,0x0,0x0,0x0,0xd,0x0,0x0,0xe,0x10,0x0,0x11,0x0,0x0,0x1c, + 0x20,0x1,0x15,0x0,0x0,0x1c,0x20,0x1,0x15,0x0,0x0,0x1c,0x20,0x1,0x1a,0x0, + 0x0,0xe,0x10,0x0,0x11,0x0,0x0,0x1c,0x20,0x1,0x15,0x0,0x0,0xe,0x10,0x0, + 0x11,0x4c,0x4d,0x54,0x0,0x50,0x4d,0x54,0x0,0x57,0x45,0x53,0x54,0x0,0x57,0x45, + 0x54,0x0,0x43,0x45,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x57,0x45,0x4d,0x54,0x0, + 0x0,0x0,0x1,0x1,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x54,0x5a,0x69,0x66,0x32,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xd,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb9,0x0,0x0, + 0x0,0xd,0x0,0x0,0x0,0x1f,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff, + 0xff,0xff,0x6b,0xc8,0x4a,0x8b,0xff,0xff,0xff,0xff,0x91,0x60,0x50,0x8b,0xff,0xff, + 0xff,0xff,0x9b,0x47,0x78,0xf0,0xff,0xff,0xff,0xff,0x9b,0xd7,0x2c,0x70,0xff,0xff, + 0xff,0xff,0x9c,0xbc,0x91,0x70,0xff,0xff,0xff,0xff,0x9d,0xc0,0x48,0xf0,0xff,0xff, + 0xff,0xff,0x9e,0x89,0xfe,0x70,0xff,0xff,0xff,0xff,0x9f,0xa0,0x2a,0xf0,0xff,0xff, + 0xff,0xff,0xa0,0x60,0xa5,0xf0,0xff,0xff,0xff,0xff,0xa1,0x80,0xc,0xf0,0xff,0xff, + 0xff,0xff,0xa2,0x2e,0x12,0xf0,0xff,0xff,0xff,0xff,0xa3,0x7a,0x4c,0xf0,0xff,0xff, + 0xff,0xff,0xa4,0x35,0x81,0xf0,0xff,0xff,0xff,0xff,0xa5,0x5e,0x23,0x70,0xff,0xff, + 0xff,0xff,0xa6,0x25,0x35,0xf0,0xff,0xff,0xff,0xff,0xa7,0x27,0x9b,0xf0,0xff,0xff, + 0xff,0xff,0xa8,0x58,0x26,0x70,0xff,0xff,0xff,0xff,0xa9,0x7,0x7d,0xf0,0xff,0xff, + 0xff,0xff,0xa9,0xee,0x34,0x70,0xff,0xff,0xff,0xff,0xaa,0xe7,0x5f,0xf0,0xff,0xff, + 0xff,0xff,0xab,0xd7,0x50,0xf0,0xff,0xff,0xff,0xff,0xac,0xc7,0x41,0xf0,0xff,0xff, + 0xff,0xff,0xad,0xc9,0xa7,0xf0,0xff,0xff,0xff,0xff,0xae,0xa7,0x23,0xf0,0xff,0xff, + 0xff,0xff,0xaf,0xa0,0x4f,0x70,0xff,0xff,0xff,0xff,0xb0,0x87,0x5,0xf0,0xff,0xff, + 0xff,0xff,0xb1,0x89,0x6b,0xf0,0xff,0xff,0xff,0xff,0xb2,0x70,0x22,0x70,0xff,0xff, + 0xff,0xff,0xb3,0x72,0x88,0x70,0xff,0xff,0xff,0xff,0xb4,0x50,0x4,0x70,0xff,0xff, + 0xff,0xff,0xb5,0x49,0x2f,0xf0,0xff,0xff,0xff,0xff,0xb6,0x2f,0xe6,0x70,0xff,0xff, + 0xff,0xff,0xb7,0x32,0x4c,0x70,0xff,0xff,0xff,0xff,0xb8,0xf,0xc8,0x70,0xff,0xff, + 0xff,0xff,0xb8,0xff,0xb9,0x70,0xff,0xff,0xff,0xff,0xb9,0xef,0xaa,0x70,0xff,0xff, + 0xff,0xff,0xba,0xd6,0x60,0xf0,0xff,0xff,0xff,0xff,0xbb,0xd8,0xc6,0xf0,0xff,0xff, + 0xff,0xff,0xbc,0xc8,0xb7,0xf0,0xff,0xff,0xff,0xff,0xbd,0xb8,0xa8,0xf0,0xff,0xff, + 0xff,0xff,0xbe,0x9f,0x5f,0x70,0xff,0xff,0xff,0xff,0xbf,0x98,0x8a,0xf0,0xff,0xff, + 0xff,0xff,0xc0,0x9a,0xf0,0xf0,0xff,0xff,0xff,0xff,0xc1,0x78,0x6c,0xf0,0xff,0xff, + 0xff,0xff,0xc2,0x68,0x5d,0xf0,0xff,0xff,0xff,0xff,0xc3,0x58,0x4e,0xf0,0xff,0xff, + 0xff,0xff,0xc4,0x3f,0x5,0x70,0xff,0xff,0xff,0xff,0xc5,0x38,0x30,0xf0,0xff,0xff, + 0xff,0xff,0xc6,0x3a,0x96,0xf0,0xff,0xff,0xff,0xff,0xc7,0x58,0xac,0x70,0xff,0xff, + 0xff,0xff,0xc7,0xda,0x9,0xa0,0xff,0xff,0xff,0xff,0xc8,0x6c,0x27,0xe0,0xff,0xff, + 0xff,0xff,0xcc,0xe7,0x4b,0x10,0xff,0xff,0xff,0xff,0xcd,0xa9,0x17,0x90,0xff,0xff, + 0xff,0xff,0xce,0xa2,0x43,0x10,0xff,0xff,0xff,0xff,0xcf,0x92,0x34,0x10,0xff,0xff, + 0xff,0xff,0xd0,0x4f,0xe1,0xe0,0xff,0xff,0xff,0xff,0xd0,0x89,0xf1,0xf0,0xff,0xff, + 0xff,0xff,0xd1,0x72,0x16,0x10,0xff,0xff,0xff,0xff,0xd2,0x4e,0x40,0x90,0x0,0x0, + 0x0,0x0,0xb,0xbb,0x39,0x0,0x0,0x0,0x0,0x0,0xc,0xab,0x1b,0xf0,0x0,0x0, + 0x0,0x0,0xd,0xa4,0x63,0x90,0x0,0x0,0x0,0x0,0xe,0x8b,0x1a,0x10,0x0,0x0, + 0x0,0x0,0xf,0x84,0x45,0x90,0x0,0x0,0x0,0x0,0x10,0x74,0x36,0x90,0x0,0x0, + 0x0,0x0,0x11,0x64,0x27,0x90,0x0,0x0,0x0,0x0,0x12,0x54,0x18,0x90,0x0,0x0, + 0x0,0x0,0x13,0x4d,0x44,0x10,0x0,0x0,0x0,0x0,0x14,0x33,0xfa,0x90,0x0,0x0, + 0x0,0x0,0x15,0x23,0xeb,0x90,0x0,0x0,0x0,0x0,0x16,0x13,0xdc,0x90,0x0,0x0, + 0x0,0x0,0x17,0x3,0xcd,0x90,0x0,0x0,0x0,0x0,0x17,0xf3,0xbe,0x90,0x0,0x0, + 0x0,0x0,0x18,0xe3,0xaf,0x90,0x0,0x0,0x0,0x0,0x19,0xd3,0xa0,0x90,0x0,0x0, + 0x0,0x0,0x1a,0xc3,0x91,0x90,0x0,0x0,0x0,0x0,0x1b,0xbc,0xbd,0x10,0x0,0x0, + 0x0,0x0,0x1c,0xac,0xae,0x10,0x0,0x0,0x0,0x0,0x1d,0x9c,0x9f,0x10,0x0,0x0, + 0x0,0x0,0x1e,0x8c,0x90,0x10,0x0,0x0,0x0,0x0,0x1f,0x7c,0x81,0x10,0x0,0x0, + 0x0,0x0,0x20,0x6c,0x72,0x10,0x0,0x0,0x0,0x0,0x21,0x5c,0x63,0x10,0x0,0x0, + 0x0,0x0,0x22,0x4c,0x54,0x10,0x0,0x0,0x0,0x0,0x23,0x3c,0x45,0x10,0x0,0x0, + 0x0,0x0,0x24,0x2c,0x36,0x10,0x0,0x0,0x0,0x0,0x25,0x1c,0x27,0x10,0x0,0x0, + 0x0,0x0,0x26,0xc,0x18,0x10,0x0,0x0,0x0,0x0,0x27,0x5,0x43,0x90,0x0,0x0, + 0x0,0x0,0x27,0xf5,0x34,0x90,0x0,0x0,0x0,0x0,0x28,0xe5,0x25,0x90,0x0,0x0, + 0x0,0x0,0x29,0xd5,0x16,0x90,0x0,0x0,0x0,0x0,0x2a,0xc5,0x7,0x90,0x0,0x0, + 0x0,0x0,0x2b,0xb4,0xf8,0x90,0x0,0x0,0x0,0x0,0x2c,0xa4,0xe9,0x90,0x0,0x0, + 0x0,0x0,0x2d,0x94,0xda,0x90,0x0,0x0,0x0,0x0,0x2e,0x84,0xcb,0x90,0x0,0x0, + 0x0,0x0,0x2f,0x74,0xbc,0x90,0x0,0x0,0x0,0x0,0x30,0x64,0xad,0x90,0x0,0x0, + 0x0,0x0,0x31,0x5d,0xd9,0x10,0x0,0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0, + 0x0,0x0,0x33,0x3d,0xbb,0x10,0x0,0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0, + 0x0,0x0,0x35,0x1d,0x9d,0x10,0x0,0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0, + 0x0,0x0,0x36,0xfd,0x7f,0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0, + 0x0,0x0,0x38,0xdd,0x61,0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0, + 0x0,0x0,0x3a,0xbd,0x43,0x10,0x0,0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0, + 0x0,0x0,0x3c,0xa6,0x5f,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0, + 0x0,0x0,0x3e,0x86,0x41,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0, + 0x0,0x0,0x40,0x66,0x23,0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0, + 0x0,0x0,0x42,0x46,0x5,0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0, + 0x0,0x0,0x44,0x25,0xe7,0x90,0x0,0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0, + 0x0,0x0,0x46,0x5,0xc9,0x90,0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0, + 0x0,0x0,0x47,0xee,0xe6,0x10,0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0, + 0x0,0x0,0x49,0xce,0xc8,0x10,0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0, + 0x0,0x0,0x4b,0xae,0xaa,0x10,0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0, + 0x0,0x0,0x4d,0x8e,0x8c,0x10,0x0,0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0, + 0x0,0x0,0x4f,0x6e,0x6e,0x10,0x0,0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0, + 0x0,0x0,0x51,0x57,0x8a,0x90,0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0, + 0x0,0x0,0x53,0x37,0x6c,0x90,0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0, + 0x0,0x0,0x55,0x17,0x4e,0x90,0x0,0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0, + 0x0,0x0,0x56,0xf7,0x30,0x90,0x0,0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0, + 0x0,0x0,0x58,0xd7,0x12,0x90,0x0,0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0, + 0x0,0x0,0x5a,0xb6,0xf4,0x90,0x0,0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0, + 0x0,0x0,0x5c,0xa0,0x11,0x10,0x0,0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0, + 0x0,0x0,0x5e,0x7f,0xf3,0x10,0x0,0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0, + 0x0,0x0,0x60,0x5f,0xd5,0x10,0x0,0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0, + 0x0,0x0,0x62,0x3f,0xb7,0x10,0x0,0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0, + 0x0,0x0,0x64,0x1f,0x99,0x10,0x0,0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0, + 0x0,0x0,0x66,0x8,0xb5,0x90,0x0,0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0, + 0x0,0x0,0x67,0xe8,0x97,0x90,0x0,0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0, + 0x0,0x0,0x69,0xc8,0x79,0x90,0x0,0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0, + 0x0,0x0,0x6b,0xa8,0x5b,0x90,0x0,0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0, + 0x0,0x0,0x6d,0x88,0x3d,0x90,0x0,0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0, + 0x0,0x0,0x6f,0x68,0x1f,0x90,0x0,0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0, + 0x0,0x0,0x71,0x51,0x3c,0x10,0x0,0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0, + 0x0,0x0,0x73,0x31,0x1e,0x10,0x0,0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0, + 0x0,0x0,0x75,0x11,0x0,0x10,0x0,0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0, + 0x0,0x0,0x76,0xf0,0xe2,0x10,0x0,0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0, + 0x0,0x0,0x78,0xd0,0xc4,0x10,0x0,0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0, + 0x0,0x0,0x7a,0xb0,0xa6,0x10,0x0,0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0, + 0x0,0x0,0x7c,0x99,0xc2,0x90,0x0,0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0, + 0x0,0x0,0x7e,0x79,0xa4,0x90,0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x1, + 0x5,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x4,0x8,0x6,0x7,0x6,0x7,0x9,0x4,0x9,0xa,0x8,0xa,0xb,0xc,0xb, + 0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb, + 0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb, + 0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb, + 0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb, + 0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb, + 0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb, + 0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb, + 0xc,0xb,0xc,0xb,0xc,0xb,0xc,0x0,0x0,0x2,0x31,0x0,0x0,0x0,0x0,0x2, + 0x31,0x0,0x4,0x0,0x0,0xe,0x10,0x1,0x8,0x0,0x0,0x0,0x0,0x0,0xd,0x0, + 0x0,0xe,0x10,0x1,0x8,0x0,0x0,0x0,0x0,0x0,0xd,0x0,0x0,0xe,0x10,0x0, + 0x11,0x0,0x0,0x1c,0x20,0x1,0x15,0x0,0x0,0x1c,0x20,0x1,0x15,0x0,0x0,0x1c, + 0x20,0x1,0x1a,0x0,0x0,0xe,0x10,0x0,0x11,0x0,0x0,0x1c,0x20,0x1,0x15,0x0, + 0x0,0xe,0x10,0x0,0x11,0x4c,0x4d,0x54,0x0,0x50,0x4d,0x54,0x0,0x57,0x45,0x53, + 0x54,0x0,0x57,0x45,0x54,0x0,0x43,0x45,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x57, + 0x45,0x4d,0x54,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x1, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0xa,0x43, + 0x45,0x54,0x2d,0x31,0x43,0x45,0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2c, + 0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30,0x2f,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Tiraspol + 0x0,0x0,0x9,0x8d, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x8e,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x26,0x80,0x0,0x0,0x0,0x9e, + 0x6b,0x9f,0xc,0xb7,0xb0,0xd2,0x8,0xb9,0x3e,0xf3,0x60,0xb9,0xef,0x9c,0x60,0xba, + 0xdf,0x8d,0x60,0xbb,0xcf,0x7e,0x60,0xbc,0xc8,0xa9,0xe0,0xbd,0xb8,0x9a,0xe0,0xbe, + 0xa8,0x8b,0xe0,0xbf,0x98,0x7c,0xe0,0xc0,0x88,0x6d,0xe0,0xc1,0x78,0x5e,0xe0,0xc2, + 0x68,0x4f,0xe0,0xc3,0x58,0x40,0xe0,0xc4,0x48,0x31,0xe0,0xc5,0x38,0x22,0xe0,0xc6, + 0x28,0x13,0xe0,0xc7,0x18,0x4,0xe0,0xc8,0xbc,0x93,0x60,0xca,0x77,0x7d,0x50,0xcc, + 0xe7,0x4b,0x10,0xcd,0xa9,0x17,0x90,0xce,0xa2,0x43,0x10,0xcf,0x92,0x34,0x10,0xd0, + 0x4e,0x90,0x60,0x15,0x27,0xa7,0xd0,0x16,0x18,0xdc,0x40,0x17,0x8,0xdb,0x50,0x17, + 0xfa,0xf,0xc0,0x18,0xea,0xe,0xd0,0x19,0xdb,0x43,0x40,0x1a,0xcc,0x93,0xd0,0x1b, + 0xbc,0xa0,0xf0,0x1c,0xac,0x91,0xf0,0x1d,0x9c,0x82,0xf0,0x1e,0x8c,0x73,0xf0,0x1f, + 0x7c,0x64,0xf0,0x20,0x6c,0x55,0xf0,0x21,0x5c,0x46,0xf0,0x22,0x4c,0x37,0xf0,0x23, + 0x3c,0x28,0xf0,0x24,0x2c,0x19,0xf0,0x25,0x1c,0xa,0xf0,0x26,0xb,0xfb,0xf0,0x26, + 0x43,0x4c,0xe0,0x27,0x5,0x35,0x80,0x27,0xf5,0x26,0x80,0x28,0xe5,0x17,0x80,0x29, + 0x60,0xe8,0x60,0x29,0xd4,0xec,0x60,0x2a,0xc4,0xcf,0x50,0x2b,0xb4,0xce,0x60,0x2c, + 0xa4,0xb1,0x50,0x2d,0x94,0xb0,0x60,0x2e,0x84,0x93,0x50,0x2f,0x74,0x92,0x60,0x30, + 0x64,0x75,0x50,0x31,0x5d,0xae,0xe0,0x32,0x72,0x7b,0xd0,0x33,0x3d,0xad,0x0,0x34, + 0x52,0x88,0x0,0x35,0x1d,0x8f,0x0,0x36,0x32,0x6a,0x0,0x36,0xfd,0x71,0x0,0x38, + 0x1b,0x86,0x80,0x38,0xdd,0x53,0x0,0x39,0xfb,0x68,0x80,0x3a,0xbd,0x35,0x0,0x3b, + 0xdb,0x4a,0x80,0x3c,0xa6,0x51,0x80,0x3d,0xbb,0x2c,0x80,0x3e,0x86,0x33,0x80,0x3f, + 0x9b,0xe,0x80,0x40,0x66,0x15,0x80,0x41,0x84,0x2b,0x0,0x42,0x45,0xf7,0x80,0x43, + 0x64,0xd,0x0,0x44,0x25,0xd9,0x80,0x45,0x43,0xef,0x0,0x46,0x5,0xbb,0x80,0x47, + 0x23,0xd1,0x0,0x47,0xee,0xd8,0x0,0x49,0x3,0xb3,0x0,0x49,0xce,0xba,0x0,0x4a, + 0xe3,0x95,0x0,0x4b,0xae,0x9c,0x0,0x4c,0xcc,0xb1,0x80,0x4d,0x8e,0x7e,0x0,0x4e, + 0xac,0x93,0x80,0x4f,0x6e,0x60,0x0,0x50,0x8c,0x75,0x80,0x51,0x57,0x7c,0x80,0x52, + 0x6c,0x57,0x80,0x53,0x37,0x5e,0x80,0x54,0x4c,0x39,0x80,0x55,0x17,0x40,0x80,0x56, + 0x2c,0x1b,0x80,0x56,0xf7,0x22,0x80,0x58,0x15,0x38,0x0,0x58,0xd7,0x4,0x80,0x59, + 0xf5,0x1a,0x0,0x5a,0xb6,0xe6,0x80,0x5b,0xd4,0xfc,0x0,0x5c,0xa0,0x3,0x0,0x5d, + 0xb4,0xde,0x0,0x5e,0x7f,0xe5,0x0,0x5f,0x94,0xc0,0x0,0x60,0x5f,0xc7,0x0,0x61, + 0x7d,0xdc,0x80,0x62,0x3f,0xa9,0x0,0x63,0x5d,0xbe,0x80,0x64,0x1f,0x8b,0x0,0x65, + 0x3d,0xa0,0x80,0x66,0x8,0xa7,0x80,0x67,0x1d,0x82,0x80,0x67,0xe8,0x89,0x80,0x68, + 0xfd,0x64,0x80,0x69,0xc8,0x6b,0x80,0x6a,0xdd,0x46,0x80,0x6b,0xa8,0x4d,0x80,0x6c, + 0xc6,0x63,0x0,0x6d,0x88,0x2f,0x80,0x6e,0xa6,0x45,0x0,0x6f,0x68,0x11,0x80,0x70, + 0x86,0x27,0x0,0x71,0x51,0x2e,0x0,0x72,0x66,0x9,0x0,0x73,0x31,0x10,0x0,0x74, + 0x45,0xeb,0x0,0x75,0x10,0xf2,0x0,0x76,0x2f,0x7,0x80,0x76,0xf0,0xd4,0x0,0x78, + 0xe,0xe9,0x80,0x78,0xd0,0xb6,0x0,0x79,0xee,0xcb,0x80,0x7a,0xb0,0x98,0x0,0x7b, + 0xce,0xad,0x80,0x7c,0x99,0xb4,0x80,0x7d,0xae,0x8f,0x80,0x7e,0x79,0x96,0x80,0x7f, + 0x8e,0x71,0x80,0x1,0x2,0x5,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x6,0x9,0x7,0x8,0x7,0x8,0xb,0xa,0xb,0xa, + 0xb,0xa,0xb,0xa,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd, + 0x6,0x4,0x3,0x4,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x0,0x0,0x1b,0x8,0x0,0x0,0x0,0x0,0x1a,0xf4,0x0,0x4,0x0,0x0,0x18, + 0x78,0x0,0x8,0x0,0x0,0x2a,0x30,0x1,0xc,0x0,0x0,0x1c,0x20,0x0,0x11,0x0, + 0x0,0x1c,0x20,0x0,0x11,0x0,0x0,0x2a,0x30,0x1,0xc,0x0,0x0,0xe,0x10,0x0, + 0x15,0x0,0x0,0x1c,0x20,0x1,0x19,0x0,0x0,0x1c,0x20,0x1,0x19,0x0,0x0,0x38, + 0x40,0x1,0x1e,0x0,0x0,0x2a,0x30,0x0,0x22,0x0,0x0,0x2a,0x30,0x0,0x22,0x0, + 0x0,0x38,0x40,0x1,0x1e,0x0,0x0,0x2a,0x30,0x1,0xc,0x0,0x0,0x1c,0x20,0x0, + 0x11,0x4c,0x4d,0x54,0x0,0x43,0x4d,0x54,0x0,0x42,0x4d,0x54,0x0,0x45,0x45,0x53, + 0x54,0x0,0x45,0x45,0x54,0x0,0x43,0x45,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x4d, + 0x53,0x44,0x0,0x4d,0x53,0x4b,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x1,0x1, + 0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x10,0x0, + 0x0,0x0,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0x0,0x0,0x0,0x10,0x0, + 0x0,0x0,0x26,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x56, + 0xb6,0xc8,0xf8,0xff,0xff,0xff,0xff,0x9e,0x6b,0x9f,0xc,0xff,0xff,0xff,0xff,0xb7, + 0xb0,0xd2,0x8,0xff,0xff,0xff,0xff,0xb9,0x3e,0xf3,0x60,0xff,0xff,0xff,0xff,0xb9, + 0xef,0x9c,0x60,0xff,0xff,0xff,0xff,0xba,0xdf,0x8d,0x60,0xff,0xff,0xff,0xff,0xbb, + 0xcf,0x7e,0x60,0xff,0xff,0xff,0xff,0xbc,0xc8,0xa9,0xe0,0xff,0xff,0xff,0xff,0xbd, + 0xb8,0x9a,0xe0,0xff,0xff,0xff,0xff,0xbe,0xa8,0x8b,0xe0,0xff,0xff,0xff,0xff,0xbf, + 0x98,0x7c,0xe0,0xff,0xff,0xff,0xff,0xc0,0x88,0x6d,0xe0,0xff,0xff,0xff,0xff,0xc1, + 0x78,0x5e,0xe0,0xff,0xff,0xff,0xff,0xc2,0x68,0x4f,0xe0,0xff,0xff,0xff,0xff,0xc3, + 0x58,0x40,0xe0,0xff,0xff,0xff,0xff,0xc4,0x48,0x31,0xe0,0xff,0xff,0xff,0xff,0xc5, + 0x38,0x22,0xe0,0xff,0xff,0xff,0xff,0xc6,0x28,0x13,0xe0,0xff,0xff,0xff,0xff,0xc7, + 0x18,0x4,0xe0,0xff,0xff,0xff,0xff,0xc8,0xbc,0x93,0x60,0xff,0xff,0xff,0xff,0xca, + 0x77,0x7d,0x50,0xff,0xff,0xff,0xff,0xcc,0xe7,0x4b,0x10,0xff,0xff,0xff,0xff,0xcd, + 0xa9,0x17,0x90,0xff,0xff,0xff,0xff,0xce,0xa2,0x43,0x10,0xff,0xff,0xff,0xff,0xcf, + 0x92,0x34,0x10,0xff,0xff,0xff,0xff,0xd0,0x4e,0x90,0x60,0x0,0x0,0x0,0x0,0x15, + 0x27,0xa7,0xd0,0x0,0x0,0x0,0x0,0x16,0x18,0xdc,0x40,0x0,0x0,0x0,0x0,0x17, + 0x8,0xdb,0x50,0x0,0x0,0x0,0x0,0x17,0xfa,0xf,0xc0,0x0,0x0,0x0,0x0,0x18, + 0xea,0xe,0xd0,0x0,0x0,0x0,0x0,0x19,0xdb,0x43,0x40,0x0,0x0,0x0,0x0,0x1a, + 0xcc,0x93,0xd0,0x0,0x0,0x0,0x0,0x1b,0xbc,0xa0,0xf0,0x0,0x0,0x0,0x0,0x1c, + 0xac,0x91,0xf0,0x0,0x0,0x0,0x0,0x1d,0x9c,0x82,0xf0,0x0,0x0,0x0,0x0,0x1e, + 0x8c,0x73,0xf0,0x0,0x0,0x0,0x0,0x1f,0x7c,0x64,0xf0,0x0,0x0,0x0,0x0,0x20, + 0x6c,0x55,0xf0,0x0,0x0,0x0,0x0,0x21,0x5c,0x46,0xf0,0x0,0x0,0x0,0x0,0x22, + 0x4c,0x37,0xf0,0x0,0x0,0x0,0x0,0x23,0x3c,0x28,0xf0,0x0,0x0,0x0,0x0,0x24, + 0x2c,0x19,0xf0,0x0,0x0,0x0,0x0,0x25,0x1c,0xa,0xf0,0x0,0x0,0x0,0x0,0x26, + 0xb,0xfb,0xf0,0x0,0x0,0x0,0x0,0x26,0x43,0x4c,0xe0,0x0,0x0,0x0,0x0,0x27, + 0x5,0x35,0x80,0x0,0x0,0x0,0x0,0x27,0xf5,0x26,0x80,0x0,0x0,0x0,0x0,0x28, + 0xe5,0x17,0x80,0x0,0x0,0x0,0x0,0x29,0x60,0xe8,0x60,0x0,0x0,0x0,0x0,0x29, + 0xd4,0xec,0x60,0x0,0x0,0x0,0x0,0x2a,0xc4,0xcf,0x50,0x0,0x0,0x0,0x0,0x2b, + 0xb4,0xce,0x60,0x0,0x0,0x0,0x0,0x2c,0xa4,0xb1,0x50,0x0,0x0,0x0,0x0,0x2d, + 0x94,0xb0,0x60,0x0,0x0,0x0,0x0,0x2e,0x84,0x93,0x50,0x0,0x0,0x0,0x0,0x2f, + 0x74,0x92,0x60,0x0,0x0,0x0,0x0,0x30,0x64,0x75,0x50,0x0,0x0,0x0,0x0,0x31, + 0x5d,0xae,0xe0,0x0,0x0,0x0,0x0,0x32,0x72,0x7b,0xd0,0x0,0x0,0x0,0x0,0x33, + 0x3d,0xad,0x0,0x0,0x0,0x0,0x0,0x34,0x52,0x88,0x0,0x0,0x0,0x0,0x0,0x35, + 0x1d,0x8f,0x0,0x0,0x0,0x0,0x0,0x36,0x32,0x6a,0x0,0x0,0x0,0x0,0x0,0x36, + 0xfd,0x71,0x0,0x0,0x0,0x0,0x0,0x38,0x1b,0x86,0x80,0x0,0x0,0x0,0x0,0x38, + 0xdd,0x53,0x0,0x0,0x0,0x0,0x0,0x39,0xfb,0x68,0x80,0x0,0x0,0x0,0x0,0x3a, + 0xbd,0x35,0x0,0x0,0x0,0x0,0x0,0x3b,0xdb,0x4a,0x80,0x0,0x0,0x0,0x0,0x3c, + 0xa6,0x51,0x80,0x0,0x0,0x0,0x0,0x3d,0xbb,0x2c,0x80,0x0,0x0,0x0,0x0,0x3e, + 0x86,0x33,0x80,0x0,0x0,0x0,0x0,0x3f,0x9b,0xe,0x80,0x0,0x0,0x0,0x0,0x40, + 0x66,0x15,0x80,0x0,0x0,0x0,0x0,0x41,0x84,0x2b,0x0,0x0,0x0,0x0,0x0,0x42, + 0x45,0xf7,0x80,0x0,0x0,0x0,0x0,0x43,0x64,0xd,0x0,0x0,0x0,0x0,0x0,0x44, + 0x25,0xd9,0x80,0x0,0x0,0x0,0x0,0x45,0x43,0xef,0x0,0x0,0x0,0x0,0x0,0x46, + 0x5,0xbb,0x80,0x0,0x0,0x0,0x0,0x47,0x23,0xd1,0x0,0x0,0x0,0x0,0x0,0x47, + 0xee,0xd8,0x0,0x0,0x0,0x0,0x0,0x49,0x3,0xb3,0x0,0x0,0x0,0x0,0x0,0x49, + 0xce,0xba,0x0,0x0,0x0,0x0,0x0,0x4a,0xe3,0x95,0x0,0x0,0x0,0x0,0x0,0x4b, + 0xae,0x9c,0x0,0x0,0x0,0x0,0x0,0x4c,0xcc,0xb1,0x80,0x0,0x0,0x0,0x0,0x4d, + 0x8e,0x7e,0x0,0x0,0x0,0x0,0x0,0x4e,0xac,0x93,0x80,0x0,0x0,0x0,0x0,0x4f, + 0x6e,0x60,0x0,0x0,0x0,0x0,0x0,0x50,0x8c,0x75,0x80,0x0,0x0,0x0,0x0,0x51, + 0x57,0x7c,0x80,0x0,0x0,0x0,0x0,0x52,0x6c,0x57,0x80,0x0,0x0,0x0,0x0,0x53, + 0x37,0x5e,0x80,0x0,0x0,0x0,0x0,0x54,0x4c,0x39,0x80,0x0,0x0,0x0,0x0,0x55, + 0x17,0x40,0x80,0x0,0x0,0x0,0x0,0x56,0x2c,0x1b,0x80,0x0,0x0,0x0,0x0,0x56, + 0xf7,0x22,0x80,0x0,0x0,0x0,0x0,0x58,0x15,0x38,0x0,0x0,0x0,0x0,0x0,0x58, + 0xd7,0x4,0x80,0x0,0x0,0x0,0x0,0x59,0xf5,0x1a,0x0,0x0,0x0,0x0,0x0,0x5a, + 0xb6,0xe6,0x80,0x0,0x0,0x0,0x0,0x5b,0xd4,0xfc,0x0,0x0,0x0,0x0,0x0,0x5c, + 0xa0,0x3,0x0,0x0,0x0,0x0,0x0,0x5d,0xb4,0xde,0x0,0x0,0x0,0x0,0x0,0x5e, + 0x7f,0xe5,0x0,0x0,0x0,0x0,0x0,0x5f,0x94,0xc0,0x0,0x0,0x0,0x0,0x0,0x60, + 0x5f,0xc7,0x0,0x0,0x0,0x0,0x0,0x61,0x7d,0xdc,0x80,0x0,0x0,0x0,0x0,0x62, + 0x3f,0xa9,0x0,0x0,0x0,0x0,0x0,0x63,0x5d,0xbe,0x80,0x0,0x0,0x0,0x0,0x64, + 0x1f,0x8b,0x0,0x0,0x0,0x0,0x0,0x65,0x3d,0xa0,0x80,0x0,0x0,0x0,0x0,0x66, + 0x8,0xa7,0x80,0x0,0x0,0x0,0x0,0x67,0x1d,0x82,0x80,0x0,0x0,0x0,0x0,0x67, + 0xe8,0x89,0x80,0x0,0x0,0x0,0x0,0x68,0xfd,0x64,0x80,0x0,0x0,0x0,0x0,0x69, + 0xc8,0x6b,0x80,0x0,0x0,0x0,0x0,0x6a,0xdd,0x46,0x80,0x0,0x0,0x0,0x0,0x6b, + 0xa8,0x4d,0x80,0x0,0x0,0x0,0x0,0x6c,0xc6,0x63,0x0,0x0,0x0,0x0,0x0,0x6d, + 0x88,0x2f,0x80,0x0,0x0,0x0,0x0,0x6e,0xa6,0x45,0x0,0x0,0x0,0x0,0x0,0x6f, + 0x68,0x11,0x80,0x0,0x0,0x0,0x0,0x70,0x86,0x27,0x0,0x0,0x0,0x0,0x0,0x71, + 0x51,0x2e,0x0,0x0,0x0,0x0,0x0,0x72,0x66,0x9,0x0,0x0,0x0,0x0,0x0,0x73, + 0x31,0x10,0x0,0x0,0x0,0x0,0x0,0x74,0x45,0xeb,0x0,0x0,0x0,0x0,0x0,0x75, + 0x10,0xf2,0x0,0x0,0x0,0x0,0x0,0x76,0x2f,0x7,0x80,0x0,0x0,0x0,0x0,0x76, + 0xf0,0xd4,0x0,0x0,0x0,0x0,0x0,0x78,0xe,0xe9,0x80,0x0,0x0,0x0,0x0,0x78, + 0xd0,0xb6,0x0,0x0,0x0,0x0,0x0,0x79,0xee,0xcb,0x80,0x0,0x0,0x0,0x0,0x7a, + 0xb0,0x98,0x0,0x0,0x0,0x0,0x0,0x7b,0xce,0xad,0x80,0x0,0x0,0x0,0x0,0x7c, + 0x99,0xb4,0x80,0x0,0x0,0x0,0x0,0x7d,0xae,0x8f,0x80,0x0,0x0,0x0,0x0,0x7e, + 0x79,0x96,0x80,0x0,0x0,0x0,0x0,0x7f,0x8e,0x71,0x80,0x0,0x1,0x2,0x5,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x6, + 0x9,0x7,0x8,0x7,0x8,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xc,0xd,0xc, + 0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0x6,0x4,0x3,0x4,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x0,0x0,0x1b,0x8,0x0,0x0, + 0x0,0x0,0x1a,0xf4,0x0,0x4,0x0,0x0,0x18,0x78,0x0,0x8,0x0,0x0,0x2a,0x30, + 0x1,0xc,0x0,0x0,0x1c,0x20,0x0,0x11,0x0,0x0,0x1c,0x20,0x0,0x11,0x0,0x0, + 0x2a,0x30,0x1,0xc,0x0,0x0,0xe,0x10,0x0,0x15,0x0,0x0,0x1c,0x20,0x1,0x19, + 0x0,0x0,0x1c,0x20,0x1,0x19,0x0,0x0,0x38,0x40,0x1,0x1e,0x0,0x0,0x2a,0x30, + 0x0,0x22,0x0,0x0,0x2a,0x30,0x0,0x22,0x0,0x0,0x38,0x40,0x1,0x1e,0x0,0x0, + 0x2a,0x30,0x1,0xc,0x0,0x0,0x1c,0x20,0x0,0x11,0x4c,0x4d,0x54,0x0,0x43,0x4d, + 0x54,0x0,0x42,0x4d,0x54,0x0,0x45,0x45,0x53,0x54,0x0,0x45,0x45,0x54,0x0,0x43, + 0x45,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x4d,0x53,0x44,0x0,0x4d,0x53,0x4b,0x0, + 0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x1,0x1,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xa,0x45,0x45,0x54,0x2d,0x32,0x45,0x45,0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e, + 0x30,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30,0x2f,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Monaco + 0x0,0x0,0xb,0x89, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xb9,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x1f,0x80,0x0,0x0,0x0,0x91, + 0x60,0x50,0x4f,0x9b,0x47,0x78,0xf0,0x9b,0xd7,0x2c,0x70,0x9c,0xbc,0x91,0x70,0x9d, + 0xc0,0x48,0xf0,0x9e,0x89,0xfe,0x70,0x9f,0xa0,0x2a,0xf0,0xa0,0x60,0xa5,0xf0,0xa1, + 0x80,0xc,0xf0,0xa2,0x2e,0x12,0xf0,0xa3,0x7a,0x4c,0xf0,0xa4,0x35,0x81,0xf0,0xa5, + 0x5e,0x23,0x70,0xa6,0x25,0x35,0xf0,0xa7,0x27,0x9b,0xf0,0xa8,0x58,0x26,0x70,0xa9, + 0x7,0x7d,0xf0,0xa9,0xee,0x34,0x70,0xaa,0xe7,0x5f,0xf0,0xab,0xd7,0x50,0xf0,0xac, + 0xc7,0x41,0xf0,0xad,0xc9,0xa7,0xf0,0xae,0xa7,0x23,0xf0,0xaf,0xa0,0x4f,0x70,0xb0, + 0x87,0x5,0xf0,0xb1,0x89,0x6b,0xf0,0xb2,0x70,0x22,0x70,0xb3,0x72,0x88,0x70,0xb4, + 0x50,0x4,0x70,0xb5,0x49,0x2f,0xf0,0xb6,0x2f,0xe6,0x70,0xb7,0x32,0x4c,0x70,0xb8, + 0xf,0xc8,0x70,0xb8,0xff,0xb9,0x70,0xb9,0xef,0xaa,0x70,0xba,0xd6,0x60,0xf0,0xbb, + 0xd8,0xc6,0xf0,0xbc,0xc8,0xb7,0xf0,0xbd,0xb8,0xa8,0xf0,0xbe,0x9f,0x5f,0x70,0xbf, + 0x98,0x8a,0xf0,0xc0,0x9a,0xf0,0xf0,0xc1,0x78,0x6c,0xf0,0xc2,0x68,0x5d,0xf0,0xc3, + 0x58,0x4e,0xf0,0xc4,0x3f,0x5,0x70,0xc5,0x38,0x30,0xf0,0xc6,0x3a,0x96,0xf0,0xc7, + 0x58,0xac,0x70,0xc7,0xda,0x9,0xa0,0xca,0x17,0x5b,0xf0,0xca,0xe2,0x54,0xe0,0xcb, + 0xad,0x69,0xf0,0xcc,0xe7,0x4b,0x10,0xcd,0xa9,0x17,0x90,0xce,0xa2,0x43,0x10,0xcf, + 0x92,0x34,0x10,0xd0,0x89,0xf1,0xf0,0xd1,0x72,0x16,0x10,0xd2,0x4e,0x40,0x90,0xb, + 0xbb,0x39,0x0,0xc,0xab,0x1b,0xf0,0xd,0xa4,0x63,0x90,0xe,0x8b,0x1a,0x10,0xf, + 0x84,0x45,0x90,0x10,0x74,0x36,0x90,0x11,0x64,0x27,0x90,0x12,0x54,0x18,0x90,0x13, + 0x4d,0x44,0x10,0x14,0x33,0xfa,0x90,0x15,0x23,0xeb,0x90,0x16,0x13,0xdc,0x90,0x17, + 0x3,0xcd,0x90,0x17,0xf3,0xbe,0x90,0x18,0xe3,0xaf,0x90,0x19,0xd3,0xa0,0x90,0x1a, + 0xc3,0x91,0x90,0x1b,0xbc,0xbd,0x10,0x1c,0xac,0xae,0x10,0x1d,0x9c,0x9f,0x10,0x1e, + 0x8c,0x90,0x10,0x1f,0x7c,0x81,0x10,0x20,0x6c,0x72,0x10,0x21,0x5c,0x63,0x10,0x22, + 0x4c,0x54,0x10,0x23,0x3c,0x45,0x10,0x24,0x2c,0x36,0x10,0x25,0x1c,0x27,0x10,0x26, + 0xc,0x18,0x10,0x27,0x5,0x43,0x90,0x27,0xf5,0x34,0x90,0x28,0xe5,0x25,0x90,0x29, + 0xd5,0x16,0x90,0x2a,0xc5,0x7,0x90,0x2b,0xb4,0xf8,0x90,0x2c,0xa4,0xe9,0x90,0x2d, + 0x94,0xda,0x90,0x2e,0x84,0xcb,0x90,0x2f,0x74,0xbc,0x90,0x30,0x64,0xad,0x90,0x31, + 0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34,0x52,0x96,0x10,0x35, + 0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x38, + 0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b,0xdb,0x58,0x90,0x3c, + 0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f,0x9b,0x1c,0x90,0x40, + 0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43,0x64,0x1b,0x10,0x44, + 0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47, + 0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b, + 0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e,0xac,0xa1,0x90,0x4f, + 0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53, + 0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56,0x2c,0x29,0x90,0x56, + 0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59,0xf5,0x28,0x10,0x5a, + 0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d,0xb4,0xec,0x10,0x5e, + 0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61,0x7d,0xea,0x90,0x62, + 0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65,0x3d,0xae,0x90,0x66, + 0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68,0xfd,0x72,0x90,0x69, + 0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c,0xc6,0x71,0x10,0x6d, + 0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70,0x86,0x35,0x10,0x71, + 0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74,0x45,0xf9,0x10,0x75, + 0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78, + 0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c, + 0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x1, + 0x6,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x8,0x7,0x8,0x9,0xa, + 0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa, + 0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa, + 0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa, + 0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa, + 0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa, + 0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa, + 0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa, + 0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x0,0x0,0x6,0xec,0x0,0x0,0x0,0x0, + 0x2,0x31,0x0,0x4,0x0,0x0,0xe,0x10,0x1,0x8,0x0,0x0,0x0,0x0,0x0,0xd, + 0x0,0x0,0xe,0x10,0x1,0x8,0x0,0x0,0x1c,0x20,0x1,0x11,0x0,0x0,0x0,0x0, + 0x0,0xd,0x0,0x0,0x1c,0x20,0x1,0x16,0x0,0x0,0xe,0x10,0x0,0x1b,0x0,0x0, + 0x1c,0x20,0x1,0x16,0x0,0x0,0xe,0x10,0x0,0x1b,0x4c,0x4d,0x54,0x0,0x50,0x4d, + 0x54,0x0,0x57,0x45,0x53,0x54,0x0,0x57,0x45,0x54,0x0,0x57,0x45,0x4d,0x54,0x0, + 0x43,0x45,0x53,0x54,0x0,0x43,0x45,0x54,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0, + 0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xba,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x1f,0xf8,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x6b,0xc8,0x45,0x94,0xff,0xff,0xff,0xff,0x91, + 0x60,0x50,0x4f,0xff,0xff,0xff,0xff,0x9b,0x47,0x78,0xf0,0xff,0xff,0xff,0xff,0x9b, + 0xd7,0x2c,0x70,0xff,0xff,0xff,0xff,0x9c,0xbc,0x91,0x70,0xff,0xff,0xff,0xff,0x9d, + 0xc0,0x48,0xf0,0xff,0xff,0xff,0xff,0x9e,0x89,0xfe,0x70,0xff,0xff,0xff,0xff,0x9f, + 0xa0,0x2a,0xf0,0xff,0xff,0xff,0xff,0xa0,0x60,0xa5,0xf0,0xff,0xff,0xff,0xff,0xa1, + 0x80,0xc,0xf0,0xff,0xff,0xff,0xff,0xa2,0x2e,0x12,0xf0,0xff,0xff,0xff,0xff,0xa3, + 0x7a,0x4c,0xf0,0xff,0xff,0xff,0xff,0xa4,0x35,0x81,0xf0,0xff,0xff,0xff,0xff,0xa5, + 0x5e,0x23,0x70,0xff,0xff,0xff,0xff,0xa6,0x25,0x35,0xf0,0xff,0xff,0xff,0xff,0xa7, + 0x27,0x9b,0xf0,0xff,0xff,0xff,0xff,0xa8,0x58,0x26,0x70,0xff,0xff,0xff,0xff,0xa9, + 0x7,0x7d,0xf0,0xff,0xff,0xff,0xff,0xa9,0xee,0x34,0x70,0xff,0xff,0xff,0xff,0xaa, + 0xe7,0x5f,0xf0,0xff,0xff,0xff,0xff,0xab,0xd7,0x50,0xf0,0xff,0xff,0xff,0xff,0xac, + 0xc7,0x41,0xf0,0xff,0xff,0xff,0xff,0xad,0xc9,0xa7,0xf0,0xff,0xff,0xff,0xff,0xae, + 0xa7,0x23,0xf0,0xff,0xff,0xff,0xff,0xaf,0xa0,0x4f,0x70,0xff,0xff,0xff,0xff,0xb0, + 0x87,0x5,0xf0,0xff,0xff,0xff,0xff,0xb1,0x89,0x6b,0xf0,0xff,0xff,0xff,0xff,0xb2, + 0x70,0x22,0x70,0xff,0xff,0xff,0xff,0xb3,0x72,0x88,0x70,0xff,0xff,0xff,0xff,0xb4, + 0x50,0x4,0x70,0xff,0xff,0xff,0xff,0xb5,0x49,0x2f,0xf0,0xff,0xff,0xff,0xff,0xb6, + 0x2f,0xe6,0x70,0xff,0xff,0xff,0xff,0xb7,0x32,0x4c,0x70,0xff,0xff,0xff,0xff,0xb8, + 0xf,0xc8,0x70,0xff,0xff,0xff,0xff,0xb8,0xff,0xb9,0x70,0xff,0xff,0xff,0xff,0xb9, + 0xef,0xaa,0x70,0xff,0xff,0xff,0xff,0xba,0xd6,0x60,0xf0,0xff,0xff,0xff,0xff,0xbb, + 0xd8,0xc6,0xf0,0xff,0xff,0xff,0xff,0xbc,0xc8,0xb7,0xf0,0xff,0xff,0xff,0xff,0xbd, + 0xb8,0xa8,0xf0,0xff,0xff,0xff,0xff,0xbe,0x9f,0x5f,0x70,0xff,0xff,0xff,0xff,0xbf, + 0x98,0x8a,0xf0,0xff,0xff,0xff,0xff,0xc0,0x9a,0xf0,0xf0,0xff,0xff,0xff,0xff,0xc1, + 0x78,0x6c,0xf0,0xff,0xff,0xff,0xff,0xc2,0x68,0x5d,0xf0,0xff,0xff,0xff,0xff,0xc3, + 0x58,0x4e,0xf0,0xff,0xff,0xff,0xff,0xc4,0x3f,0x5,0x70,0xff,0xff,0xff,0xff,0xc5, + 0x38,0x30,0xf0,0xff,0xff,0xff,0xff,0xc6,0x3a,0x96,0xf0,0xff,0xff,0xff,0xff,0xc7, + 0x58,0xac,0x70,0xff,0xff,0xff,0xff,0xc7,0xda,0x9,0xa0,0xff,0xff,0xff,0xff,0xca, + 0x17,0x5b,0xf0,0xff,0xff,0xff,0xff,0xca,0xe2,0x54,0xe0,0xff,0xff,0xff,0xff,0xcb, + 0xad,0x69,0xf0,0xff,0xff,0xff,0xff,0xcc,0xe7,0x4b,0x10,0xff,0xff,0xff,0xff,0xcd, + 0xa9,0x17,0x90,0xff,0xff,0xff,0xff,0xce,0xa2,0x43,0x10,0xff,0xff,0xff,0xff,0xcf, + 0x92,0x34,0x10,0xff,0xff,0xff,0xff,0xd0,0x89,0xf1,0xf0,0xff,0xff,0xff,0xff,0xd1, + 0x72,0x16,0x10,0xff,0xff,0xff,0xff,0xd2,0x4e,0x40,0x90,0x0,0x0,0x0,0x0,0xb, + 0xbb,0x39,0x0,0x0,0x0,0x0,0x0,0xc,0xab,0x1b,0xf0,0x0,0x0,0x0,0x0,0xd, + 0xa4,0x63,0x90,0x0,0x0,0x0,0x0,0xe,0x8b,0x1a,0x10,0x0,0x0,0x0,0x0,0xf, + 0x84,0x45,0x90,0x0,0x0,0x0,0x0,0x10,0x74,0x36,0x90,0x0,0x0,0x0,0x0,0x11, + 0x64,0x27,0x90,0x0,0x0,0x0,0x0,0x12,0x54,0x18,0x90,0x0,0x0,0x0,0x0,0x13, + 0x4d,0x44,0x10,0x0,0x0,0x0,0x0,0x14,0x33,0xfa,0x90,0x0,0x0,0x0,0x0,0x15, + 0x23,0xeb,0x90,0x0,0x0,0x0,0x0,0x16,0x13,0xdc,0x90,0x0,0x0,0x0,0x0,0x17, + 0x3,0xcd,0x90,0x0,0x0,0x0,0x0,0x17,0xf3,0xbe,0x90,0x0,0x0,0x0,0x0,0x18, + 0xe3,0xaf,0x90,0x0,0x0,0x0,0x0,0x19,0xd3,0xa0,0x90,0x0,0x0,0x0,0x0,0x1a, + 0xc3,0x91,0x90,0x0,0x0,0x0,0x0,0x1b,0xbc,0xbd,0x10,0x0,0x0,0x0,0x0,0x1c, + 0xac,0xae,0x10,0x0,0x0,0x0,0x0,0x1d,0x9c,0x9f,0x10,0x0,0x0,0x0,0x0,0x1e, + 0x8c,0x90,0x10,0x0,0x0,0x0,0x0,0x1f,0x7c,0x81,0x10,0x0,0x0,0x0,0x0,0x20, + 0x6c,0x72,0x10,0x0,0x0,0x0,0x0,0x21,0x5c,0x63,0x10,0x0,0x0,0x0,0x0,0x22, + 0x4c,0x54,0x10,0x0,0x0,0x0,0x0,0x23,0x3c,0x45,0x10,0x0,0x0,0x0,0x0,0x24, + 0x2c,0x36,0x10,0x0,0x0,0x0,0x0,0x25,0x1c,0x27,0x10,0x0,0x0,0x0,0x0,0x26, + 0xc,0x18,0x10,0x0,0x0,0x0,0x0,0x27,0x5,0x43,0x90,0x0,0x0,0x0,0x0,0x27, + 0xf5,0x34,0x90,0x0,0x0,0x0,0x0,0x28,0xe5,0x25,0x90,0x0,0x0,0x0,0x0,0x29, + 0xd5,0x16,0x90,0x0,0x0,0x0,0x0,0x2a,0xc5,0x7,0x90,0x0,0x0,0x0,0x0,0x2b, + 0xb4,0xf8,0x90,0x0,0x0,0x0,0x0,0x2c,0xa4,0xe9,0x90,0x0,0x0,0x0,0x0,0x2d, + 0x94,0xda,0x90,0x0,0x0,0x0,0x0,0x2e,0x84,0xcb,0x90,0x0,0x0,0x0,0x0,0x2f, + 0x74,0xbc,0x90,0x0,0x0,0x0,0x0,0x30,0x64,0xad,0x90,0x0,0x0,0x0,0x0,0x31, + 0x5d,0xd9,0x10,0x0,0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0,0x0,0x0,0x33, + 0x3d,0xbb,0x10,0x0,0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35, + 0x1d,0x9d,0x10,0x0,0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36, + 0xfd,0x7f,0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38, + 0xdd,0x61,0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0,0x0,0x0,0x3a, + 0xbd,0x43,0x10,0x0,0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0,0x0,0x3c, + 0xa6,0x5f,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0,0x0,0x3e, + 0x86,0x41,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40, + 0x66,0x23,0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42, + 0x46,0x5,0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44, + 0x25,0xe7,0x90,0x0,0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46, + 0x5,0xc9,0x90,0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47, + 0xee,0xe6,0x10,0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49, + 0xce,0xc8,0x10,0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b, + 0xae,0xaa,0x10,0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d, + 0x8e,0x8c,0x10,0x0,0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f, + 0x6e,0x6e,0x10,0x0,0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51, + 0x57,0x8a,0x90,0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53, + 0x37,0x6c,0x90,0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55, + 0x17,0x4e,0x90,0x0,0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56, + 0xf7,0x30,0x90,0x0,0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58, + 0xd7,0x12,0x90,0x0,0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a, + 0xb6,0xf4,0x90,0x0,0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c, + 0xa0,0x11,0x10,0x0,0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e, + 0x7f,0xf3,0x10,0x0,0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60, + 0x5f,0xd5,0x10,0x0,0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62, + 0x3f,0xb7,0x10,0x0,0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64, + 0x1f,0x99,0x10,0x0,0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66, + 0x8,0xb5,0x90,0x0,0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67, + 0xe8,0x97,0x90,0x0,0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69, + 0xc8,0x79,0x90,0x0,0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b, + 0xa8,0x5b,0x90,0x0,0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d, + 0x88,0x3d,0x90,0x0,0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f, + 0x68,0x1f,0x90,0x0,0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71, + 0x51,0x3c,0x10,0x0,0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73, + 0x31,0x1e,0x10,0x0,0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75, + 0x11,0x0,0x10,0x0,0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76, + 0xf0,0xe2,0x10,0x0,0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78, + 0xd0,0xc4,0x10,0x0,0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a, + 0xb0,0xa6,0x10,0x0,0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c, + 0x99,0xc2,0x90,0x0,0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e, + 0x79,0xa4,0x90,0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x1,0x6,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x8,0x7,0x8,0x9,0xa,0x9,0xa,0x9, + 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9, + 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9, + 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9, + 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9, + 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9, + 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9, + 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9, + 0xa,0x9,0xa,0x9,0xa,0x0,0x0,0x6,0xec,0x0,0x0,0x0,0x0,0x2,0x31,0x0, + 0x4,0x0,0x0,0xe,0x10,0x1,0x8,0x0,0x0,0x0,0x0,0x0,0xd,0x0,0x0,0xe, + 0x10,0x1,0x8,0x0,0x0,0x1c,0x20,0x1,0x11,0x0,0x0,0x0,0x0,0x0,0xd,0x0, + 0x0,0x1c,0x20,0x1,0x16,0x0,0x0,0xe,0x10,0x0,0x1b,0x0,0x0,0x1c,0x20,0x1, + 0x16,0x0,0x0,0xe,0x10,0x0,0x1b,0x4c,0x4d,0x54,0x0,0x50,0x4d,0x54,0x0,0x57, + 0x45,0x53,0x54,0x0,0x57,0x45,0x54,0x0,0x57,0x45,0x4d,0x54,0x0,0x43,0x45,0x53, + 0x54,0x0,0x43,0x45,0x54,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x1, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0xa,0x43,0x45,0x54, + 0x2d,0x31,0x43,0x45,0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2c,0x4d,0x31, + 0x30,0x2e,0x35,0x2e,0x30,0x2f,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Athens + 0x0,0x0,0x8,0xdf, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x8a,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x1a,0x80,0x0,0x0,0x0,0x9b, + 0x80,0x21,0x80,0xb9,0x7c,0xe9,0xe0,0xb9,0xc6,0xaf,0xd0,0xc9,0xf2,0x63,0xe0,0xca, + 0x10,0xa8,0x50,0xcc,0xe7,0x4b,0x10,0xcd,0xaa,0x4c,0xf0,0xce,0xa2,0x18,0xe0,0xcf, + 0x93,0x69,0x70,0xdf,0x13,0x9e,0x60,0xdf,0xb7,0xa,0x50,0x9,0xec,0x5e,0x60,0xb, + 0x18,0xf4,0x60,0xb,0xcd,0xae,0x0,0xc,0xbd,0x9f,0x0,0xd,0xa4,0x55,0x80,0xe, + 0x8c,0x5d,0x80,0xf,0x84,0x37,0x80,0x10,0x6a,0xfc,0x10,0x11,0x64,0x7b,0xf0,0x12, + 0x52,0xaa,0xf0,0x13,0x46,0x82,0x60,0x14,0x33,0xc2,0x50,0x15,0x23,0xeb,0x90,0x16, + 0x13,0xdc,0x90,0x17,0x3,0xcd,0x90,0x17,0xf3,0xbe,0x90,0x18,0xe3,0xaf,0x90,0x19, + 0xd3,0xa0,0x90,0x1a,0xc3,0x91,0x90,0x1b,0xbc,0xbd,0x10,0x1c,0xac,0xae,0x10,0x1d, + 0x9c,0x9f,0x10,0x1e,0x8c,0x90,0x10,0x1f,0x7c,0x81,0x10,0x20,0x6c,0x72,0x10,0x21, + 0x5c,0x63,0x10,0x22,0x4c,0x54,0x10,0x23,0x3c,0x45,0x10,0x24,0x2c,0x36,0x10,0x25, + 0x1c,0x27,0x10,0x26,0xc,0x18,0x10,0x27,0x5,0x43,0x90,0x27,0xf5,0x34,0x90,0x28, + 0xe5,0x25,0x90,0x29,0xd5,0x16,0x90,0x2a,0xc5,0x7,0x90,0x2b,0xb4,0xf8,0x90,0x2c, + 0xa4,0xe9,0x90,0x2d,0x94,0xda,0x90,0x2e,0x84,0xcb,0x90,0x2f,0x74,0xbc,0x90,0x30, + 0x64,0xad,0x90,0x31,0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34, + 0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38, + 0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b, + 0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f, + 0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43, + 0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47, + 0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a, + 0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e, + 0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52, + 0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56, + 0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59, + 0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d, + 0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61, + 0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65, + 0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68, + 0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c, + 0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70, + 0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74, + 0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78, + 0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b, + 0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f, + 0x8e,0x7f,0x90,0x1,0x3,0x2,0x3,0x2,0x5,0x4,0x5,0x4,0x3,0x2,0x3,0x6, + 0x7,0x6,0x7,0x6,0x7,0x6,0x3,0x2,0x3,0x2,0x3,0x8,0x9,0x8,0x9,0x8, + 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, + 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, + 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, + 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, + 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, + 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, + 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x0,0x0,0x16, + 0x3c,0x0,0x0,0x0,0x0,0x16,0x3c,0x0,0x4,0x0,0x0,0x2a,0x30,0x1,0x8,0x0, + 0x0,0x1c,0x20,0x0,0xd,0x0,0x0,0xe,0x10,0x0,0x11,0x0,0x0,0x1c,0x20,0x1, + 0x15,0x0,0x0,0x2a,0x30,0x1,0x8,0x0,0x0,0x1c,0x20,0x0,0xd,0x0,0x0,0x2a, + 0x30,0x1,0x8,0x0,0x0,0x1c,0x20,0x0,0xd,0x4c,0x4d,0x54,0x0,0x41,0x4d,0x54, + 0x0,0x45,0x45,0x53,0x54,0x0,0x45,0x45,0x54,0x0,0x43,0x45,0x54,0x0,0x43,0x45, + 0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x0, + 0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8b,0x0,0x0,0x0,0xa,0x0, + 0x0,0x0,0x1a,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x74, + 0x3f,0x98,0x44,0xff,0xff,0xff,0xff,0x9b,0x80,0x21,0x80,0xff,0xff,0xff,0xff,0xb9, + 0x7c,0xe9,0xe0,0xff,0xff,0xff,0xff,0xb9,0xc6,0xaf,0xd0,0xff,0xff,0xff,0xff,0xc9, + 0xf2,0x63,0xe0,0xff,0xff,0xff,0xff,0xca,0x10,0xa8,0x50,0xff,0xff,0xff,0xff,0xcc, + 0xe7,0x4b,0x10,0xff,0xff,0xff,0xff,0xcd,0xaa,0x4c,0xf0,0xff,0xff,0xff,0xff,0xce, + 0xa2,0x18,0xe0,0xff,0xff,0xff,0xff,0xcf,0x93,0x69,0x70,0xff,0xff,0xff,0xff,0xdf, + 0x13,0x9e,0x60,0xff,0xff,0xff,0xff,0xdf,0xb7,0xa,0x50,0x0,0x0,0x0,0x0,0x9, + 0xec,0x5e,0x60,0x0,0x0,0x0,0x0,0xb,0x18,0xf4,0x60,0x0,0x0,0x0,0x0,0xb, + 0xcd,0xae,0x0,0x0,0x0,0x0,0x0,0xc,0xbd,0x9f,0x0,0x0,0x0,0x0,0x0,0xd, + 0xa4,0x55,0x80,0x0,0x0,0x0,0x0,0xe,0x8c,0x5d,0x80,0x0,0x0,0x0,0x0,0xf, + 0x84,0x37,0x80,0x0,0x0,0x0,0x0,0x10,0x6a,0xfc,0x10,0x0,0x0,0x0,0x0,0x11, + 0x64,0x7b,0xf0,0x0,0x0,0x0,0x0,0x12,0x52,0xaa,0xf0,0x0,0x0,0x0,0x0,0x13, + 0x46,0x82,0x60,0x0,0x0,0x0,0x0,0x14,0x33,0xc2,0x50,0x0,0x0,0x0,0x0,0x15, + 0x23,0xeb,0x90,0x0,0x0,0x0,0x0,0x16,0x13,0xdc,0x90,0x0,0x0,0x0,0x0,0x17, + 0x3,0xcd,0x90,0x0,0x0,0x0,0x0,0x17,0xf3,0xbe,0x90,0x0,0x0,0x0,0x0,0x18, + 0xe3,0xaf,0x90,0x0,0x0,0x0,0x0,0x19,0xd3,0xa0,0x90,0x0,0x0,0x0,0x0,0x1a, + 0xc3,0x91,0x90,0x0,0x0,0x0,0x0,0x1b,0xbc,0xbd,0x10,0x0,0x0,0x0,0x0,0x1c, + 0xac,0xae,0x10,0x0,0x0,0x0,0x0,0x1d,0x9c,0x9f,0x10,0x0,0x0,0x0,0x0,0x1e, + 0x8c,0x90,0x10,0x0,0x0,0x0,0x0,0x1f,0x7c,0x81,0x10,0x0,0x0,0x0,0x0,0x20, + 0x6c,0x72,0x10,0x0,0x0,0x0,0x0,0x21,0x5c,0x63,0x10,0x0,0x0,0x0,0x0,0x22, + 0x4c,0x54,0x10,0x0,0x0,0x0,0x0,0x23,0x3c,0x45,0x10,0x0,0x0,0x0,0x0,0x24, + 0x2c,0x36,0x10,0x0,0x0,0x0,0x0,0x25,0x1c,0x27,0x10,0x0,0x0,0x0,0x0,0x26, + 0xc,0x18,0x10,0x0,0x0,0x0,0x0,0x27,0x5,0x43,0x90,0x0,0x0,0x0,0x0,0x27, + 0xf5,0x34,0x90,0x0,0x0,0x0,0x0,0x28,0xe5,0x25,0x90,0x0,0x0,0x0,0x0,0x29, + 0xd5,0x16,0x90,0x0,0x0,0x0,0x0,0x2a,0xc5,0x7,0x90,0x0,0x0,0x0,0x0,0x2b, + 0xb4,0xf8,0x90,0x0,0x0,0x0,0x0,0x2c,0xa4,0xe9,0x90,0x0,0x0,0x0,0x0,0x2d, + 0x94,0xda,0x90,0x0,0x0,0x0,0x0,0x2e,0x84,0xcb,0x90,0x0,0x0,0x0,0x0,0x2f, + 0x74,0xbc,0x90,0x0,0x0,0x0,0x0,0x30,0x64,0xad,0x90,0x0,0x0,0x0,0x0,0x31, + 0x5d,0xd9,0x10,0x0,0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0,0x0,0x0,0x33, + 0x3d,0xbb,0x10,0x0,0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35, + 0x1d,0x9d,0x10,0x0,0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36, + 0xfd,0x7f,0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38, + 0xdd,0x61,0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0,0x0,0x0,0x3a, + 0xbd,0x43,0x10,0x0,0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0,0x0,0x3c, + 0xa6,0x5f,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0,0x0,0x3e, + 0x86,0x41,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40, + 0x66,0x23,0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42, + 0x46,0x5,0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44, + 0x25,0xe7,0x90,0x0,0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46, + 0x5,0xc9,0x90,0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47, + 0xee,0xe6,0x10,0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49, + 0xce,0xc8,0x10,0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b, + 0xae,0xaa,0x10,0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d, + 0x8e,0x8c,0x10,0x0,0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f, + 0x6e,0x6e,0x10,0x0,0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51, + 0x57,0x8a,0x90,0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53, + 0x37,0x6c,0x90,0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55, + 0x17,0x4e,0x90,0x0,0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56, + 0xf7,0x30,0x90,0x0,0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58, + 0xd7,0x12,0x90,0x0,0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a, + 0xb6,0xf4,0x90,0x0,0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c, + 0xa0,0x11,0x10,0x0,0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e, + 0x7f,0xf3,0x10,0x0,0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60, + 0x5f,0xd5,0x10,0x0,0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62, + 0x3f,0xb7,0x10,0x0,0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64, + 0x1f,0x99,0x10,0x0,0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66, + 0x8,0xb5,0x90,0x0,0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67, + 0xe8,0x97,0x90,0x0,0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69, + 0xc8,0x79,0x90,0x0,0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b, + 0xa8,0x5b,0x90,0x0,0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d, + 0x88,0x3d,0x90,0x0,0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f, + 0x68,0x1f,0x90,0x0,0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71, + 0x51,0x3c,0x10,0x0,0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73, + 0x31,0x1e,0x10,0x0,0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75, + 0x11,0x0,0x10,0x0,0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76, + 0xf0,0xe2,0x10,0x0,0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78, + 0xd0,0xc4,0x10,0x0,0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a, + 0xb0,0xa6,0x10,0x0,0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c, + 0x99,0xc2,0x90,0x0,0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e, + 0x79,0xa4,0x90,0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x1,0x3,0x2,0x3, + 0x2,0x5,0x4,0x5,0x4,0x3,0x2,0x3,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x3, + 0x2,0x3,0x2,0x3,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, + 0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, + 0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, + 0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, + 0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, + 0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, + 0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, + 0x8,0x9,0x8,0x9,0x8,0x9,0x0,0x0,0x16,0x3c,0x0,0x0,0x0,0x0,0x16,0x3c, + 0x0,0x4,0x0,0x0,0x2a,0x30,0x1,0x8,0x0,0x0,0x1c,0x20,0x0,0xd,0x0,0x0, + 0xe,0x10,0x0,0x11,0x0,0x0,0x1c,0x20,0x1,0x15,0x0,0x0,0x2a,0x30,0x1,0x8, + 0x0,0x0,0x1c,0x20,0x0,0xd,0x0,0x0,0x2a,0x30,0x1,0x8,0x0,0x0,0x1c,0x20, + 0x0,0xd,0x4c,0x4d,0x54,0x0,0x41,0x4d,0x54,0x0,0x45,0x45,0x53,0x54,0x0,0x45, + 0x45,0x54,0x0,0x43,0x45,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x1,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, + 0xa,0x45,0x45,0x54,0x2d,0x32,0x45,0x45,0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e, + 0x30,0x2f,0x33,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30,0x2f,0x34,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Warsaw + 0x0,0x0,0xa,0x91, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xa8,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x1a,0x80,0x0,0x0,0x0,0x99, + 0xa8,0x2a,0xd0,0x9b,0xc,0x17,0x60,0x9b,0xd5,0xda,0xf0,0x9c,0xd9,0xae,0x90,0x9d, + 0xa4,0xb5,0x90,0x9e,0xb9,0x90,0x90,0x9f,0x84,0x97,0x90,0xa0,0x9a,0xb6,0x0,0xa1, + 0x65,0xbd,0x0,0xa6,0x7d,0x7c,0x60,0xc8,0x76,0xde,0x10,0xcc,0xe7,0x4b,0x10,0xcd, + 0xa9,0x17,0x90,0xce,0xa2,0x43,0x10,0xcf,0x92,0x34,0x10,0xd0,0x80,0xa9,0x60,0xd0, + 0x84,0xba,0x0,0xd1,0x95,0x92,0x70,0xd2,0x8a,0xbb,0x60,0xd3,0x62,0xff,0x70,0xd4, + 0x4b,0x23,0x90,0xd5,0x5e,0xad,0x10,0xd6,0x29,0xb4,0x10,0xd7,0x2c,0x1a,0x10,0xd8, + 0x9,0x96,0x10,0xd9,0x2,0xc1,0x90,0xd9,0xe9,0x78,0x10,0xe8,0x54,0xd2,0x0,0xe8, + 0xf1,0xb4,0x80,0xe9,0xe1,0xa5,0x80,0xea,0xd1,0x96,0x80,0xec,0x14,0x96,0x0,0xec, + 0xba,0xb3,0x0,0xed,0xaa,0xa4,0x0,0xee,0x9a,0x95,0x0,0xef,0xd4,0x5a,0x0,0xf0, + 0x7a,0x77,0x0,0xf1,0xb4,0x3c,0x0,0xf2,0x5a,0x59,0x0,0xf3,0x94,0x1e,0x0,0xf4, + 0x3a,0x3b,0x0,0xf5,0x7d,0x3a,0x80,0xf6,0x1a,0x1d,0x0,0xd,0x2a,0xfd,0x70,0xd, + 0xa4,0x55,0x80,0xe,0x8b,0xc,0x0,0xf,0x84,0x37,0x80,0x10,0x74,0x28,0x80,0x11, + 0x64,0x19,0x80,0x12,0x54,0xa,0x80,0x13,0x4d,0x36,0x0,0x14,0x33,0xec,0x80,0x15, + 0x23,0xdd,0x80,0x16,0x13,0xce,0x80,0x17,0x3,0xbf,0x80,0x17,0xf3,0xb0,0x80,0x18, + 0xe3,0xa1,0x80,0x19,0xd3,0x92,0x80,0x1a,0xc3,0x83,0x80,0x1b,0xbc,0xaf,0x0,0x1c, + 0xac,0xa0,0x0,0x1d,0x9c,0x91,0x0,0x1e,0x8c,0x82,0x0,0x1f,0x7c,0x73,0x0,0x20, + 0x6c,0x64,0x0,0x21,0x5c,0x55,0x0,0x21,0xda,0xd6,0xf0,0x22,0x4c,0x54,0x10,0x23, + 0x3c,0x45,0x10,0x24,0x2c,0x36,0x10,0x25,0x1c,0x27,0x10,0x26,0xc,0x18,0x10,0x27, + 0x5,0x43,0x90,0x27,0xf5,0x34,0x90,0x28,0xe5,0x25,0x90,0x29,0xd5,0x16,0x90,0x2a, + 0xc5,0x7,0x90,0x2b,0xb4,0xf8,0x90,0x2c,0xa4,0xe9,0x90,0x2d,0x94,0xda,0x90,0x2e, + 0x84,0xcb,0x90,0x2f,0x74,0xbc,0x90,0x30,0x64,0xad,0x90,0x31,0x5d,0xd9,0x10,0x32, + 0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34,0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36, + 0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39, + 0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b,0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d, + 0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f,0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41, + 0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43,0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45, + 0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49, + 0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c, + 0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e,0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50, + 0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54, + 0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56,0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58, + 0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59,0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b, + 0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d,0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f, + 0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61,0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63, + 0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65,0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67, + 0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68,0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a, + 0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c,0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e, + 0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70,0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72, + 0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74,0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76, + 0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79, + 0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d, + 0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x1,0x3,0x2,0x3,0x4, + 0x5,0x4,0x8,0x6,0x7,0x3,0x2,0x5,0x4,0x5,0x4,0x2,0x3,0x2,0x3,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x3,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x3,0x9, + 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9, + 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9, + 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9, + 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9, + 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9, + 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9, + 0xa,0x9,0xa,0x0,0x0,0x13,0xb0,0x0,0x0,0x0,0x0,0x13,0xb0,0x0,0x4,0x0, + 0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0xe,0x10,0x0,0xd,0x0,0x0,0x1c,0x20,0x1, + 0x8,0x0,0x0,0xe,0x10,0x0,0xd,0x0,0x0,0x2a,0x30,0x1,0x11,0x0,0x0,0x1c, + 0x20,0x0,0x16,0x0,0x0,0x1c,0x20,0x0,0x16,0x0,0x0,0x1c,0x20,0x1,0x8,0x0, + 0x0,0xe,0x10,0x0,0xd,0x4c,0x4d,0x54,0x0,0x57,0x4d,0x54,0x0,0x43,0x45,0x53, + 0x54,0x0,0x43,0x45,0x54,0x0,0x45,0x45,0x53,0x54,0x0,0x45,0x45,0x54,0x0,0x0, + 0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x1,0x1,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0, + 0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa9,0x0,0x0,0x0,0xb,0x0,0x0,0x0, + 0x1a,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x56,0xb6,0xd0, + 0x50,0xff,0xff,0xff,0xff,0x99,0xa8,0x2a,0xd0,0xff,0xff,0xff,0xff,0x9b,0xc,0x17, + 0x60,0xff,0xff,0xff,0xff,0x9b,0xd5,0xda,0xf0,0xff,0xff,0xff,0xff,0x9c,0xd9,0xae, + 0x90,0xff,0xff,0xff,0xff,0x9d,0xa4,0xb5,0x90,0xff,0xff,0xff,0xff,0x9e,0xb9,0x90, + 0x90,0xff,0xff,0xff,0xff,0x9f,0x84,0x97,0x90,0xff,0xff,0xff,0xff,0xa0,0x9a,0xb6, + 0x0,0xff,0xff,0xff,0xff,0xa1,0x65,0xbd,0x0,0xff,0xff,0xff,0xff,0xa6,0x7d,0x7c, + 0x60,0xff,0xff,0xff,0xff,0xc8,0x76,0xde,0x10,0xff,0xff,0xff,0xff,0xcc,0xe7,0x4b, + 0x10,0xff,0xff,0xff,0xff,0xcd,0xa9,0x17,0x90,0xff,0xff,0xff,0xff,0xce,0xa2,0x43, + 0x10,0xff,0xff,0xff,0xff,0xcf,0x92,0x34,0x10,0xff,0xff,0xff,0xff,0xd0,0x80,0xa9, + 0x60,0xff,0xff,0xff,0xff,0xd0,0x84,0xba,0x0,0xff,0xff,0xff,0xff,0xd1,0x95,0x92, + 0x70,0xff,0xff,0xff,0xff,0xd2,0x8a,0xbb,0x60,0xff,0xff,0xff,0xff,0xd3,0x62,0xff, + 0x70,0xff,0xff,0xff,0xff,0xd4,0x4b,0x23,0x90,0xff,0xff,0xff,0xff,0xd5,0x5e,0xad, + 0x10,0xff,0xff,0xff,0xff,0xd6,0x29,0xb4,0x10,0xff,0xff,0xff,0xff,0xd7,0x2c,0x1a, + 0x10,0xff,0xff,0xff,0xff,0xd8,0x9,0x96,0x10,0xff,0xff,0xff,0xff,0xd9,0x2,0xc1, + 0x90,0xff,0xff,0xff,0xff,0xd9,0xe9,0x78,0x10,0xff,0xff,0xff,0xff,0xe8,0x54,0xd2, + 0x0,0xff,0xff,0xff,0xff,0xe8,0xf1,0xb4,0x80,0xff,0xff,0xff,0xff,0xe9,0xe1,0xa5, + 0x80,0xff,0xff,0xff,0xff,0xea,0xd1,0x96,0x80,0xff,0xff,0xff,0xff,0xec,0x14,0x96, + 0x0,0xff,0xff,0xff,0xff,0xec,0xba,0xb3,0x0,0xff,0xff,0xff,0xff,0xed,0xaa,0xa4, + 0x0,0xff,0xff,0xff,0xff,0xee,0x9a,0x95,0x0,0xff,0xff,0xff,0xff,0xef,0xd4,0x5a, + 0x0,0xff,0xff,0xff,0xff,0xf0,0x7a,0x77,0x0,0xff,0xff,0xff,0xff,0xf1,0xb4,0x3c, + 0x0,0xff,0xff,0xff,0xff,0xf2,0x5a,0x59,0x0,0xff,0xff,0xff,0xff,0xf3,0x94,0x1e, + 0x0,0xff,0xff,0xff,0xff,0xf4,0x3a,0x3b,0x0,0xff,0xff,0xff,0xff,0xf5,0x7d,0x3a, + 0x80,0xff,0xff,0xff,0xff,0xf6,0x1a,0x1d,0x0,0x0,0x0,0x0,0x0,0xd,0x2a,0xfd, + 0x70,0x0,0x0,0x0,0x0,0xd,0xa4,0x55,0x80,0x0,0x0,0x0,0x0,0xe,0x8b,0xc, + 0x0,0x0,0x0,0x0,0x0,0xf,0x84,0x37,0x80,0x0,0x0,0x0,0x0,0x10,0x74,0x28, + 0x80,0x0,0x0,0x0,0x0,0x11,0x64,0x19,0x80,0x0,0x0,0x0,0x0,0x12,0x54,0xa, + 0x80,0x0,0x0,0x0,0x0,0x13,0x4d,0x36,0x0,0x0,0x0,0x0,0x0,0x14,0x33,0xec, + 0x80,0x0,0x0,0x0,0x0,0x15,0x23,0xdd,0x80,0x0,0x0,0x0,0x0,0x16,0x13,0xce, + 0x80,0x0,0x0,0x0,0x0,0x17,0x3,0xbf,0x80,0x0,0x0,0x0,0x0,0x17,0xf3,0xb0, + 0x80,0x0,0x0,0x0,0x0,0x18,0xe3,0xa1,0x80,0x0,0x0,0x0,0x0,0x19,0xd3,0x92, + 0x80,0x0,0x0,0x0,0x0,0x1a,0xc3,0x83,0x80,0x0,0x0,0x0,0x0,0x1b,0xbc,0xaf, + 0x0,0x0,0x0,0x0,0x0,0x1c,0xac,0xa0,0x0,0x0,0x0,0x0,0x0,0x1d,0x9c,0x91, + 0x0,0x0,0x0,0x0,0x0,0x1e,0x8c,0x82,0x0,0x0,0x0,0x0,0x0,0x1f,0x7c,0x73, + 0x0,0x0,0x0,0x0,0x0,0x20,0x6c,0x64,0x0,0x0,0x0,0x0,0x0,0x21,0x5c,0x55, + 0x0,0x0,0x0,0x0,0x0,0x21,0xda,0xd6,0xf0,0x0,0x0,0x0,0x0,0x22,0x4c,0x54, + 0x10,0x0,0x0,0x0,0x0,0x23,0x3c,0x45,0x10,0x0,0x0,0x0,0x0,0x24,0x2c,0x36, + 0x10,0x0,0x0,0x0,0x0,0x25,0x1c,0x27,0x10,0x0,0x0,0x0,0x0,0x26,0xc,0x18, + 0x10,0x0,0x0,0x0,0x0,0x27,0x5,0x43,0x90,0x0,0x0,0x0,0x0,0x27,0xf5,0x34, + 0x90,0x0,0x0,0x0,0x0,0x28,0xe5,0x25,0x90,0x0,0x0,0x0,0x0,0x29,0xd5,0x16, + 0x90,0x0,0x0,0x0,0x0,0x2a,0xc5,0x7,0x90,0x0,0x0,0x0,0x0,0x2b,0xb4,0xf8, + 0x90,0x0,0x0,0x0,0x0,0x2c,0xa4,0xe9,0x90,0x0,0x0,0x0,0x0,0x2d,0x94,0xda, + 0x90,0x0,0x0,0x0,0x0,0x2e,0x84,0xcb,0x90,0x0,0x0,0x0,0x0,0x2f,0x74,0xbc, + 0x90,0x0,0x0,0x0,0x0,0x30,0x64,0xad,0x90,0x0,0x0,0x0,0x0,0x31,0x5d,0xd9, + 0x10,0x0,0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d,0xbb, + 0x10,0x0,0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d,0x9d, + 0x10,0x0,0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd,0x7f, + 0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd,0x61, + 0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd,0x43, + 0x10,0x0,0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f, + 0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86,0x41, + 0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66,0x23, + 0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46,0x5, + 0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25,0xe7, + 0x90,0x0,0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5,0xc9, + 0x90,0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee,0xe6, + 0x10,0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce,0xc8, + 0x10,0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae,0xaa, + 0x10,0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c, + 0x10,0x0,0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e, + 0x10,0x0,0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57,0x8a, + 0x90,0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37,0x6c, + 0x90,0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17,0x4e, + 0x90,0x0,0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7,0x30, + 0x90,0x0,0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7,0x12, + 0x90,0x0,0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4, + 0x90,0x0,0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0,0x11, + 0x10,0x0,0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3, + 0x10,0x0,0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f,0xd5, + 0x10,0x0,0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f,0xb7, + 0x10,0x0,0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f,0x99, + 0x10,0x0,0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8,0xb5, + 0x90,0x0,0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8,0x97, + 0x90,0x0,0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8,0x79, + 0x90,0x0,0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b, + 0x90,0x0,0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88,0x3d, + 0x90,0x0,0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68,0x1f, + 0x90,0x0,0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51,0x3c, + 0x10,0x0,0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31,0x1e, + 0x10,0x0,0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11,0x0, + 0x10,0x0,0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0,0xe2, + 0x10,0x0,0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0,0xc4, + 0x10,0x0,0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6, + 0x10,0x0,0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99,0xc2, + 0x90,0x0,0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79,0xa4, + 0x90,0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x1,0x3,0x2,0x3,0x4,0x5, + 0x4,0x8,0x6,0x7,0x3,0x2,0x5,0x4,0x5,0x4,0x2,0x3,0x2,0x3,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x3,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x3,0x9,0xa, + 0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa, + 0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa, + 0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa, + 0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa, + 0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa, + 0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa, + 0x9,0xa,0x0,0x0,0x13,0xb0,0x0,0x0,0x0,0x0,0x13,0xb0,0x0,0x4,0x0,0x0, + 0x1c,0x20,0x1,0x8,0x0,0x0,0xe,0x10,0x0,0xd,0x0,0x0,0x1c,0x20,0x1,0x8, + 0x0,0x0,0xe,0x10,0x0,0xd,0x0,0x0,0x2a,0x30,0x1,0x11,0x0,0x0,0x1c,0x20, + 0x0,0x16,0x0,0x0,0x1c,0x20,0x0,0x16,0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0, + 0xe,0x10,0x0,0xd,0x4c,0x4d,0x54,0x0,0x57,0x4d,0x54,0x0,0x43,0x45,0x53,0x54, + 0x0,0x43,0x45,0x54,0x0,0x45,0x45,0x53,0x54,0x0,0x45,0x45,0x54,0x0,0x0,0x0, + 0x0,0x0,0x1,0x1,0x1,0x1,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x1,0x1,0xa,0x43,0x45,0x54,0x2d,0x31,0x43,0x45,0x53,0x54,0x2c,0x4d, + 0x33,0x2e,0x35,0x2e,0x30,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30,0x2f,0x33,0xa, + + // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Malta + 0x0,0x0,0xa,0x45, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xa9,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0x9b, + 0x38,0xf8,0x70,0x9b,0xd5,0xcc,0xe0,0x9c,0xc5,0xcb,0xf0,0x9d,0xb7,0x0,0x60,0x9e, + 0x89,0xfe,0x70,0x9f,0xa0,0x1c,0xe0,0xa0,0x60,0xa5,0xf0,0xa1,0x7e,0xad,0x60,0xa2, + 0x5c,0x37,0x70,0xa3,0x4c,0x1a,0x60,0xc8,0x6c,0x35,0xf0,0xcc,0xe7,0x4b,0x10,0xcd, + 0xa9,0x17,0x90,0xce,0xa2,0x43,0x10,0xcf,0x90,0xe2,0x90,0xd0,0x6e,0x5e,0x90,0xd1, + 0x72,0x16,0x10,0xd2,0x4c,0xd2,0xf0,0xd3,0x3e,0x31,0x90,0xd4,0x49,0xd2,0x10,0xd5, + 0x1d,0xf7,0x70,0xd6,0x29,0x97,0xf0,0xd6,0xeb,0x80,0x90,0xd8,0x9,0x96,0x10,0xf9, + 0x33,0xb5,0xf0,0xf9,0xd9,0xc4,0xe0,0xfb,0x1c,0xd2,0x70,0xfb,0xb9,0xb4,0xf0,0xfc, + 0xfc,0xb4,0x70,0xfd,0x99,0x96,0xf0,0xfe,0xe5,0xd0,0xf0,0xff,0x82,0xb3,0x70,0x0, + 0xc5,0xb2,0xf0,0x1,0x62,0x95,0x70,0x2,0x9c,0x5a,0x70,0x3,0x42,0x77,0x70,0x4, + 0x85,0x76,0xf0,0x5,0x2b,0x93,0xf0,0x6,0x1a,0x33,0x70,0x7,0xa,0x24,0x70,0x8, + 0x17,0x16,0x70,0x8,0xda,0x34,0x70,0x9,0xf7,0x14,0x90,0xa,0xc2,0xd,0x80,0xb, + 0xd6,0xf6,0x90,0xc,0xa1,0xef,0x80,0xd,0xb6,0xd8,0x90,0xe,0x81,0xd1,0x80,0xf, + 0x96,0xba,0x90,0x10,0x61,0xb3,0x80,0x11,0x76,0x9c,0x90,0x12,0x41,0x95,0x80,0x13, + 0x45,0x5b,0x10,0x14,0x2a,0xb2,0x0,0x15,0x23,0xeb,0x90,0x16,0x13,0xdc,0x90,0x17, + 0x3,0xcd,0x90,0x17,0xf3,0xbe,0x90,0x18,0xe3,0xaf,0x90,0x19,0xd3,0xa0,0x90,0x1a, + 0xc3,0x91,0x90,0x1b,0xbc,0xbd,0x10,0x1c,0xac,0xae,0x10,0x1d,0x9c,0x9f,0x10,0x1e, + 0x8c,0x90,0x10,0x1f,0x7c,0x81,0x10,0x20,0x6c,0x72,0x10,0x21,0x5c,0x63,0x10,0x22, + 0x4c,0x54,0x10,0x23,0x3c,0x45,0x10,0x24,0x2c,0x36,0x10,0x25,0x1c,0x27,0x10,0x26, + 0xc,0x18,0x10,0x27,0x5,0x43,0x90,0x27,0xf5,0x34,0x90,0x28,0xe5,0x25,0x90,0x29, + 0xd5,0x16,0x90,0x2a,0xc5,0x7,0x90,0x2b,0xb4,0xf8,0x90,0x2c,0xa4,0xe9,0x90,0x2d, + 0x94,0xda,0x90,0x2e,0x84,0xcb,0x90,0x2f,0x74,0xbc,0x90,0x30,0x64,0xad,0x90,0x31, + 0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34,0x52,0x96,0x10,0x35, + 0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x38, + 0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b,0xdb,0x58,0x90,0x3c, + 0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f,0x9b,0x1c,0x90,0x40, + 0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43,0x64,0x1b,0x10,0x44, + 0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47, + 0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b, + 0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e,0xac,0xa1,0x90,0x4f, + 0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53, + 0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56,0x2c,0x29,0x90,0x56, + 0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59,0xf5,0x28,0x10,0x5a, + 0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d,0xb4,0xec,0x10,0x5e, + 0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61,0x7d,0xea,0x90,0x62, + 0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65,0x3d,0xae,0x90,0x66, + 0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68,0xfd,0x72,0x90,0x69, + 0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c,0xc6,0x71,0x10,0x6d, + 0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70,0x86,0x35,0x10,0x71, + 0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74,0x45,0xf9,0x10,0x75, + 0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78, + 0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c, + 0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x3, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x3,0x4,0x3,0x4,0x3, + 0x1,0x2,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x2,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x0,0x0,0xd,0x9c,0x0,0x0,0x0,0x0, + 0x1c,0x20,0x1,0x4,0x0,0x0,0xe,0x10,0x0,0x9,0x0,0x0,0xe,0x10,0x0,0x9, + 0x0,0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe,0x10, + 0x0,0x9,0x4c,0x4d,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x43,0x45,0x54,0x0,0x0, + 0x0,0x0,0x1,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x54,0x5a,0x69, + 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xaa,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0xd,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0x70,0xbd,0xd3,0x64,0xff,0xff,0xff,0xff,0x9b,0x38,0xf8, + 0x70,0xff,0xff,0xff,0xff,0x9b,0xd5,0xcc,0xe0,0xff,0xff,0xff,0xff,0x9c,0xc5,0xcb, + 0xf0,0xff,0xff,0xff,0xff,0x9d,0xb7,0x0,0x60,0xff,0xff,0xff,0xff,0x9e,0x89,0xfe, + 0x70,0xff,0xff,0xff,0xff,0x9f,0xa0,0x1c,0xe0,0xff,0xff,0xff,0xff,0xa0,0x60,0xa5, + 0xf0,0xff,0xff,0xff,0xff,0xa1,0x7e,0xad,0x60,0xff,0xff,0xff,0xff,0xa2,0x5c,0x37, + 0x70,0xff,0xff,0xff,0xff,0xa3,0x4c,0x1a,0x60,0xff,0xff,0xff,0xff,0xc8,0x6c,0x35, + 0xf0,0xff,0xff,0xff,0xff,0xcc,0xe7,0x4b,0x10,0xff,0xff,0xff,0xff,0xcd,0xa9,0x17, + 0x90,0xff,0xff,0xff,0xff,0xce,0xa2,0x43,0x10,0xff,0xff,0xff,0xff,0xcf,0x90,0xe2, + 0x90,0xff,0xff,0xff,0xff,0xd0,0x6e,0x5e,0x90,0xff,0xff,0xff,0xff,0xd1,0x72,0x16, + 0x10,0xff,0xff,0xff,0xff,0xd2,0x4c,0xd2,0xf0,0xff,0xff,0xff,0xff,0xd3,0x3e,0x31, + 0x90,0xff,0xff,0xff,0xff,0xd4,0x49,0xd2,0x10,0xff,0xff,0xff,0xff,0xd5,0x1d,0xf7, + 0x70,0xff,0xff,0xff,0xff,0xd6,0x29,0x97,0xf0,0xff,0xff,0xff,0xff,0xd6,0xeb,0x80, + 0x90,0xff,0xff,0xff,0xff,0xd8,0x9,0x96,0x10,0xff,0xff,0xff,0xff,0xf9,0x33,0xb5, + 0xf0,0xff,0xff,0xff,0xff,0xf9,0xd9,0xc4,0xe0,0xff,0xff,0xff,0xff,0xfb,0x1c,0xd2, + 0x70,0xff,0xff,0xff,0xff,0xfb,0xb9,0xb4,0xf0,0xff,0xff,0xff,0xff,0xfc,0xfc,0xb4, + 0x70,0xff,0xff,0xff,0xff,0xfd,0x99,0x96,0xf0,0xff,0xff,0xff,0xff,0xfe,0xe5,0xd0, + 0xf0,0xff,0xff,0xff,0xff,0xff,0x82,0xb3,0x70,0x0,0x0,0x0,0x0,0x0,0xc5,0xb2, + 0xf0,0x0,0x0,0x0,0x0,0x1,0x62,0x95,0x70,0x0,0x0,0x0,0x0,0x2,0x9c,0x5a, + 0x70,0x0,0x0,0x0,0x0,0x3,0x42,0x77,0x70,0x0,0x0,0x0,0x0,0x4,0x85,0x76, + 0xf0,0x0,0x0,0x0,0x0,0x5,0x2b,0x93,0xf0,0x0,0x0,0x0,0x0,0x6,0x1a,0x33, + 0x70,0x0,0x0,0x0,0x0,0x7,0xa,0x24,0x70,0x0,0x0,0x0,0x0,0x8,0x17,0x16, + 0x70,0x0,0x0,0x0,0x0,0x8,0xda,0x34,0x70,0x0,0x0,0x0,0x0,0x9,0xf7,0x14, + 0x90,0x0,0x0,0x0,0x0,0xa,0xc2,0xd,0x80,0x0,0x0,0x0,0x0,0xb,0xd6,0xf6, + 0x90,0x0,0x0,0x0,0x0,0xc,0xa1,0xef,0x80,0x0,0x0,0x0,0x0,0xd,0xb6,0xd8, + 0x90,0x0,0x0,0x0,0x0,0xe,0x81,0xd1,0x80,0x0,0x0,0x0,0x0,0xf,0x96,0xba, + 0x90,0x0,0x0,0x0,0x0,0x10,0x61,0xb3,0x80,0x0,0x0,0x0,0x0,0x11,0x76,0x9c, + 0x90,0x0,0x0,0x0,0x0,0x12,0x41,0x95,0x80,0x0,0x0,0x0,0x0,0x13,0x45,0x5b, + 0x10,0x0,0x0,0x0,0x0,0x14,0x2a,0xb2,0x0,0x0,0x0,0x0,0x0,0x15,0x23,0xeb, + 0x90,0x0,0x0,0x0,0x0,0x16,0x13,0xdc,0x90,0x0,0x0,0x0,0x0,0x17,0x3,0xcd, + 0x90,0x0,0x0,0x0,0x0,0x17,0xf3,0xbe,0x90,0x0,0x0,0x0,0x0,0x18,0xe3,0xaf, + 0x90,0x0,0x0,0x0,0x0,0x19,0xd3,0xa0,0x90,0x0,0x0,0x0,0x0,0x1a,0xc3,0x91, + 0x90,0x0,0x0,0x0,0x0,0x1b,0xbc,0xbd,0x10,0x0,0x0,0x0,0x0,0x1c,0xac,0xae, + 0x10,0x0,0x0,0x0,0x0,0x1d,0x9c,0x9f,0x10,0x0,0x0,0x0,0x0,0x1e,0x8c,0x90, + 0x10,0x0,0x0,0x0,0x0,0x1f,0x7c,0x81,0x10,0x0,0x0,0x0,0x0,0x20,0x6c,0x72, + 0x10,0x0,0x0,0x0,0x0,0x21,0x5c,0x63,0x10,0x0,0x0,0x0,0x0,0x22,0x4c,0x54, + 0x10,0x0,0x0,0x0,0x0,0x23,0x3c,0x45,0x10,0x0,0x0,0x0,0x0,0x24,0x2c,0x36, + 0x10,0x0,0x0,0x0,0x0,0x25,0x1c,0x27,0x10,0x0,0x0,0x0,0x0,0x26,0xc,0x18, + 0x10,0x0,0x0,0x0,0x0,0x27,0x5,0x43,0x90,0x0,0x0,0x0,0x0,0x27,0xf5,0x34, + 0x90,0x0,0x0,0x0,0x0,0x28,0xe5,0x25,0x90,0x0,0x0,0x0,0x0,0x29,0xd5,0x16, + 0x90,0x0,0x0,0x0,0x0,0x2a,0xc5,0x7,0x90,0x0,0x0,0x0,0x0,0x2b,0xb4,0xf8, + 0x90,0x0,0x0,0x0,0x0,0x2c,0xa4,0xe9,0x90,0x0,0x0,0x0,0x0,0x2d,0x94,0xda, + 0x90,0x0,0x0,0x0,0x0,0x2e,0x84,0xcb,0x90,0x0,0x0,0x0,0x0,0x2f,0x74,0xbc, + 0x90,0x0,0x0,0x0,0x0,0x30,0x64,0xad,0x90,0x0,0x0,0x0,0x0,0x31,0x5d,0xd9, + 0x10,0x0,0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d,0xbb, + 0x10,0x0,0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d,0x9d, + 0x10,0x0,0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd,0x7f, + 0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd,0x61, + 0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd,0x43, + 0x10,0x0,0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f, + 0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86,0x41, + 0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66,0x23, + 0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46,0x5, + 0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25,0xe7, + 0x90,0x0,0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5,0xc9, + 0x90,0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee,0xe6, + 0x10,0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce,0xc8, + 0x10,0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae,0xaa, + 0x10,0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c, + 0x10,0x0,0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e, + 0x10,0x0,0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57,0x8a, + 0x90,0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37,0x6c, + 0x90,0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17,0x4e, + 0x90,0x0,0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7,0x30, + 0x90,0x0,0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7,0x12, + 0x90,0x0,0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4, + 0x90,0x0,0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0,0x11, + 0x10,0x0,0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3, + 0x10,0x0,0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f,0xd5, + 0x10,0x0,0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f,0xb7, + 0x10,0x0,0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f,0x99, + 0x10,0x0,0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8,0xb5, + 0x90,0x0,0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8,0x97, + 0x90,0x0,0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8,0x79, + 0x90,0x0,0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b, + 0x90,0x0,0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88,0x3d, + 0x90,0x0,0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68,0x1f, + 0x90,0x0,0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51,0x3c, + 0x10,0x0,0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31,0x1e, + 0x10,0x0,0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11,0x0, + 0x10,0x0,0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0,0xe2, + 0x10,0x0,0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0,0xc4, + 0x10,0x0,0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6, + 0x10,0x0,0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99,0xc2, + 0x90,0x0,0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79,0xa4, + 0x90,0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x3,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x3,0x4,0x3,0x4,0x3,0x1,0x2,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x2,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x0,0x0,0xd,0x9c,0x0,0x0,0x0,0x0,0x1c,0x20,0x1,0x4,0x0, + 0x0,0xe,0x10,0x0,0x9,0x0,0x0,0xe,0x10,0x0,0x9,0x0,0x0,0x1c,0x20,0x1, + 0x4,0x0,0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe,0x10,0x0,0x9,0x4c,0x4d,0x54, + 0x0,0x43,0x45,0x53,0x54,0x0,0x43,0x45,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x1, + 0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0xa,0x43,0x45,0x54,0x2d,0x31,0x43,0x45, + 0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e, + 0x30,0x2f,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Ulyanovsk + 0x0,0x0,0x5,0x1, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x44,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0xa1, + 0x0,0x39,0x80,0xb5,0xa4,0xb,0x50,0x15,0x27,0x99,0xc0,0x16,0x18,0xce,0x30,0x17, + 0x8,0xcd,0x40,0x17,0xfa,0x1,0xb0,0x18,0xea,0x0,0xc0,0x19,0xdb,0x35,0x30,0x1a, + 0xcc,0x85,0xc0,0x1b,0xbc,0x92,0xe0,0x1c,0xac,0x83,0xe0,0x1d,0x9c,0x74,0xe0,0x1e, + 0x8c,0x65,0xe0,0x1f,0x7c,0x56,0xe0,0x20,0x6c,0x47,0xe0,0x21,0x5c,0x38,0xe0,0x22, + 0x4c,0x29,0xe0,0x23,0x3c,0x1a,0xe0,0x24,0x2c,0xb,0xe0,0x25,0x1c,0xa,0xf0,0x26, + 0xb,0xfb,0xf0,0x27,0x5,0x27,0x70,0x27,0xf5,0x18,0x70,0x28,0xe5,0x17,0x80,0x29, + 0x78,0xbf,0x80,0x29,0xd4,0xfa,0x70,0x2a,0xc4,0xeb,0x70,0x2b,0xb4,0xdc,0x70,0x2c, + 0xa4,0xcd,0x70,0x2d,0x94,0xbe,0x70,0x2e,0x84,0xaf,0x70,0x2f,0x74,0xa0,0x70,0x30, + 0x64,0x91,0x70,0x31,0x5d,0xbc,0xf0,0x32,0x72,0x97,0xf0,0x33,0x3d,0x9e,0xf0,0x34, + 0x52,0x79,0xf0,0x35,0x1d,0x80,0xf0,0x36,0x32,0x5b,0xf0,0x36,0xfd,0x62,0xf0,0x38, + 0x1b,0x78,0x70,0x38,0xdd,0x44,0xf0,0x39,0xfb,0x5a,0x70,0x3a,0xbd,0x26,0xf0,0x3b, + 0xdb,0x3c,0x70,0x3c,0xa6,0x43,0x70,0x3d,0xbb,0x1e,0x70,0x3e,0x86,0x25,0x70,0x3f, + 0x9b,0x0,0x70,0x40,0x66,0x7,0x70,0x41,0x84,0x1c,0xf0,0x42,0x45,0xe9,0x70,0x43, + 0x63,0xfe,0xf0,0x44,0x25,0xcb,0x70,0x45,0x43,0xe0,0xf0,0x46,0x5,0xad,0x70,0x47, + 0x23,0xc2,0xf0,0x47,0xee,0xc9,0xf0,0x49,0x3,0xa4,0xf0,0x49,0xce,0xab,0xf0,0x4a, + 0xe3,0x86,0xf0,0x4b,0xae,0x8d,0xf0,0x4c,0xcc,0xa3,0x70,0x4d,0x8e,0x6f,0xf0,0x54, + 0x4c,0x1d,0x60,0x56,0xf7,0x14,0x70,0x7f,0xff,0xff,0xff,0x0,0x1,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x6,0x7, + 0x6,0x7,0x8,0x9,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, + 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, + 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x4,0x7,0x4,0x4,0x0, + 0x0,0x2d,0x60,0x0,0x0,0x0,0x0,0x2a,0x30,0x0,0x4,0x0,0x0,0x46,0x50,0x1, + 0x8,0x0,0x0,0x38,0x40,0x0,0xc,0x0,0x0,0x38,0x40,0x0,0xc,0x0,0x0,0x46, + 0x50,0x1,0x8,0x0,0x0,0x38,0x40,0x1,0xc,0x0,0x0,0x2a,0x30,0x0,0x4,0x0, + 0x0,0x2a,0x30,0x1,0x4,0x0,0x0,0x1c,0x20,0x0,0x10,0x0,0x0,0x38,0x40,0x1, + 0xc,0x0,0x0,0x38,0x40,0x0,0xc,0x4c,0x4d,0x54,0x0,0x2b,0x30,0x33,0x0,0x2b, + 0x30,0x35,0x0,0x2b,0x30,0x34,0x0,0x2b,0x30,0x32,0x0,0x0,0x1,0x0,0x0,0x1, + 0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0xc,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x44,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x14,0xf8, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xa1,0x0,0x39,0x80,0xff, + 0xff,0xff,0xff,0xb5,0xa4,0xb,0x50,0x0,0x0,0x0,0x0,0x15,0x27,0x99,0xc0,0x0, + 0x0,0x0,0x0,0x16,0x18,0xce,0x30,0x0,0x0,0x0,0x0,0x17,0x8,0xcd,0x40,0x0, + 0x0,0x0,0x0,0x17,0xfa,0x1,0xb0,0x0,0x0,0x0,0x0,0x18,0xea,0x0,0xc0,0x0, + 0x0,0x0,0x0,0x19,0xdb,0x35,0x30,0x0,0x0,0x0,0x0,0x1a,0xcc,0x85,0xc0,0x0, + 0x0,0x0,0x0,0x1b,0xbc,0x92,0xe0,0x0,0x0,0x0,0x0,0x1c,0xac,0x83,0xe0,0x0, + 0x0,0x0,0x0,0x1d,0x9c,0x74,0xe0,0x0,0x0,0x0,0x0,0x1e,0x8c,0x65,0xe0,0x0, + 0x0,0x0,0x0,0x1f,0x7c,0x56,0xe0,0x0,0x0,0x0,0x0,0x20,0x6c,0x47,0xe0,0x0, + 0x0,0x0,0x0,0x21,0x5c,0x38,0xe0,0x0,0x0,0x0,0x0,0x22,0x4c,0x29,0xe0,0x0, + 0x0,0x0,0x0,0x23,0x3c,0x1a,0xe0,0x0,0x0,0x0,0x0,0x24,0x2c,0xb,0xe0,0x0, + 0x0,0x0,0x0,0x25,0x1c,0xa,0xf0,0x0,0x0,0x0,0x0,0x26,0xb,0xfb,0xf0,0x0, + 0x0,0x0,0x0,0x27,0x5,0x27,0x70,0x0,0x0,0x0,0x0,0x27,0xf5,0x18,0x70,0x0, + 0x0,0x0,0x0,0x28,0xe5,0x17,0x80,0x0,0x0,0x0,0x0,0x29,0x78,0xbf,0x80,0x0, + 0x0,0x0,0x0,0x29,0xd4,0xfa,0x70,0x0,0x0,0x0,0x0,0x2a,0xc4,0xeb,0x70,0x0, + 0x0,0x0,0x0,0x2b,0xb4,0xdc,0x70,0x0,0x0,0x0,0x0,0x2c,0xa4,0xcd,0x70,0x0, + 0x0,0x0,0x0,0x2d,0x94,0xbe,0x70,0x0,0x0,0x0,0x0,0x2e,0x84,0xaf,0x70,0x0, + 0x0,0x0,0x0,0x2f,0x74,0xa0,0x70,0x0,0x0,0x0,0x0,0x30,0x64,0x91,0x70,0x0, + 0x0,0x0,0x0,0x31,0x5d,0xbc,0xf0,0x0,0x0,0x0,0x0,0x32,0x72,0x97,0xf0,0x0, + 0x0,0x0,0x0,0x33,0x3d,0x9e,0xf0,0x0,0x0,0x0,0x0,0x34,0x52,0x79,0xf0,0x0, + 0x0,0x0,0x0,0x35,0x1d,0x80,0xf0,0x0,0x0,0x0,0x0,0x36,0x32,0x5b,0xf0,0x0, + 0x0,0x0,0x0,0x36,0xfd,0x62,0xf0,0x0,0x0,0x0,0x0,0x38,0x1b,0x78,0x70,0x0, + 0x0,0x0,0x0,0x38,0xdd,0x44,0xf0,0x0,0x0,0x0,0x0,0x39,0xfb,0x5a,0x70,0x0, + 0x0,0x0,0x0,0x3a,0xbd,0x26,0xf0,0x0,0x0,0x0,0x0,0x3b,0xdb,0x3c,0x70,0x0, + 0x0,0x0,0x0,0x3c,0xa6,0x43,0x70,0x0,0x0,0x0,0x0,0x3d,0xbb,0x1e,0x70,0x0, + 0x0,0x0,0x0,0x3e,0x86,0x25,0x70,0x0,0x0,0x0,0x0,0x3f,0x9b,0x0,0x70,0x0, + 0x0,0x0,0x0,0x40,0x66,0x7,0x70,0x0,0x0,0x0,0x0,0x41,0x84,0x1c,0xf0,0x0, + 0x0,0x0,0x0,0x42,0x45,0xe9,0x70,0x0,0x0,0x0,0x0,0x43,0x63,0xfe,0xf0,0x0, + 0x0,0x0,0x0,0x44,0x25,0xcb,0x70,0x0,0x0,0x0,0x0,0x45,0x43,0xe0,0xf0,0x0, + 0x0,0x0,0x0,0x46,0x5,0xad,0x70,0x0,0x0,0x0,0x0,0x47,0x23,0xc2,0xf0,0x0, + 0x0,0x0,0x0,0x47,0xee,0xc9,0xf0,0x0,0x0,0x0,0x0,0x49,0x3,0xa4,0xf0,0x0, + 0x0,0x0,0x0,0x49,0xce,0xab,0xf0,0x0,0x0,0x0,0x0,0x4a,0xe3,0x86,0xf0,0x0, + 0x0,0x0,0x0,0x4b,0xae,0x8d,0xf0,0x0,0x0,0x0,0x0,0x4c,0xcc,0xa3,0x70,0x0, + 0x0,0x0,0x0,0x4d,0x8e,0x6f,0xf0,0x0,0x0,0x0,0x0,0x54,0x4c,0x1d,0x60,0x0, + 0x0,0x0,0x0,0x56,0xf7,0x14,0x70,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0, + 0x1,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x6,0x7,0x6,0x7,0x8,0x9,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, + 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, + 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x4, + 0x7,0x4,0x4,0x0,0x0,0x2d,0x60,0x0,0x0,0x0,0x0,0x2a,0x30,0x0,0x4,0x0, + 0x0,0x46,0x50,0x1,0x8,0x0,0x0,0x38,0x40,0x0,0xc,0x0,0x0,0x38,0x40,0x0, + 0xc,0x0,0x0,0x46,0x50,0x1,0x8,0x0,0x0,0x38,0x40,0x1,0xc,0x0,0x0,0x2a, + 0x30,0x0,0x4,0x0,0x0,0x2a,0x30,0x1,0x4,0x0,0x0,0x1c,0x20,0x0,0x10,0x0, + 0x0,0x38,0x40,0x1,0xc,0x0,0x0,0x38,0x40,0x0,0xc,0x4c,0x4d,0x54,0x0,0x2b, + 0x30,0x33,0x0,0x2b,0x30,0x35,0x0,0x2b,0x30,0x34,0x0,0x2b,0x30,0x32,0x0,0x0, + 0x1,0x0,0x0,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x0,0x1,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2b,0x30,0x34,0x3e,0x2d,0x34,0xa, + + // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Vienna + 0x0,0x0,0x8,0xbd, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x8d,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0x9b, + 0xc,0x17,0x60,0x9b,0xd5,0xda,0xf0,0x9c,0xd9,0xae,0x90,0x9d,0xa4,0xb5,0x90,0x9e, + 0xb9,0x90,0x90,0x9f,0x84,0x97,0x90,0xa1,0xf2,0xbf,0x70,0xa2,0x70,0x1a,0x10,0xa3, + 0x44,0x5b,0x90,0xc8,0x9,0x71,0x90,0xcc,0xe7,0x4b,0x10,0xcd,0xa9,0x17,0x90,0xce, + 0xa2,0x43,0x10,0xcf,0x92,0x34,0x10,0xd0,0x82,0x25,0x10,0xd1,0x72,0x16,0x10,0xd1, + 0x7f,0x45,0x10,0xd2,0xdb,0x34,0xf0,0xd3,0x63,0x1b,0x90,0xd4,0x49,0xd2,0x10,0xd5, + 0x39,0xc3,0x10,0xd6,0x29,0xb4,0x10,0xd7,0x2c,0x1a,0x10,0xd8,0x9,0x96,0x10,0x13, + 0x4d,0x27,0xf0,0x14,0x33,0xd0,0x60,0x15,0x23,0xeb,0x90,0x16,0x13,0xdc,0x90,0x17, + 0x3,0xcd,0x90,0x17,0xf3,0xbe,0x90,0x18,0xe3,0xaf,0x90,0x19,0xd3,0xa0,0x90,0x1a, + 0xc3,0x91,0x90,0x1b,0xbc,0xbd,0x10,0x1c,0xac,0xae,0x10,0x1d,0x9c,0x9f,0x10,0x1e, + 0x8c,0x90,0x10,0x1f,0x7c,0x81,0x10,0x20,0x6c,0x72,0x10,0x21,0x5c,0x63,0x10,0x22, + 0x4c,0x54,0x10,0x23,0x3c,0x45,0x10,0x24,0x2c,0x36,0x10,0x25,0x1c,0x27,0x10,0x26, + 0xc,0x18,0x10,0x27,0x5,0x43,0x90,0x27,0xf5,0x34,0x90,0x28,0xe5,0x25,0x90,0x29, + 0xd5,0x16,0x90,0x2a,0xc5,0x7,0x90,0x2b,0xb4,0xf8,0x90,0x2c,0xa4,0xe9,0x90,0x2d, + 0x94,0xda,0x90,0x2e,0x84,0xcb,0x90,0x2f,0x74,0xbc,0x90,0x30,0x64,0xad,0x90,0x31, + 0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34,0x52,0x96,0x10,0x35, + 0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x38, + 0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b,0xdb,0x58,0x90,0x3c, + 0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f,0x9b,0x1c,0x90,0x40, + 0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43,0x64,0x1b,0x10,0x44, + 0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47, + 0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b, + 0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e,0xac,0xa1,0x90,0x4f, + 0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53, + 0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56,0x2c,0x29,0x90,0x56, + 0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59,0xf5,0x28,0x10,0x5a, + 0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d,0xb4,0xec,0x10,0x5e, + 0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61,0x7d,0xea,0x90,0x62, + 0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65,0x3d,0xae,0x90,0x66, + 0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68,0xfd,0x72,0x90,0x69, + 0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c,0xc6,0x71,0x10,0x6d, + 0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70,0x86,0x35,0x10,0x71, + 0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74,0x45,0xf9,0x10,0x75, + 0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78, + 0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c, + 0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x2, + 0x1,0x2,0x3,0x4,0x3,0x4,0x2,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x2,0x3,0x4,0x3,0x4,0x3,0x4,0x1,0x2,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x0,0x0,0xf,0x51, + 0x0,0x0,0x0,0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe,0x10,0x0,0x9,0x0,0x0, + 0x1c,0x20,0x1,0x4,0x0,0x0,0xe,0x10,0x0,0x9,0x0,0x0,0x1c,0x20,0x1,0x4, + 0x0,0x0,0xe,0x10,0x0,0x9,0x4c,0x4d,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x43, + 0x45,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x1, + 0x1,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x8e,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0xd,0xf8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x6f,0xa2,0x5f,0x2f,0xff,0xff,0xff, + 0xff,0x9b,0xc,0x17,0x60,0xff,0xff,0xff,0xff,0x9b,0xd5,0xda,0xf0,0xff,0xff,0xff, + 0xff,0x9c,0xd9,0xae,0x90,0xff,0xff,0xff,0xff,0x9d,0xa4,0xb5,0x90,0xff,0xff,0xff, + 0xff,0x9e,0xb9,0x90,0x90,0xff,0xff,0xff,0xff,0x9f,0x84,0x97,0x90,0xff,0xff,0xff, + 0xff,0xa1,0xf2,0xbf,0x70,0xff,0xff,0xff,0xff,0xa2,0x70,0x1a,0x10,0xff,0xff,0xff, + 0xff,0xa3,0x44,0x5b,0x90,0xff,0xff,0xff,0xff,0xc8,0x9,0x71,0x90,0xff,0xff,0xff, + 0xff,0xcc,0xe7,0x4b,0x10,0xff,0xff,0xff,0xff,0xcd,0xa9,0x17,0x90,0xff,0xff,0xff, + 0xff,0xce,0xa2,0x43,0x10,0xff,0xff,0xff,0xff,0xcf,0x92,0x34,0x10,0xff,0xff,0xff, + 0xff,0xd0,0x82,0x25,0x10,0xff,0xff,0xff,0xff,0xd1,0x72,0x16,0x10,0xff,0xff,0xff, + 0xff,0xd1,0x7f,0x45,0x10,0xff,0xff,0xff,0xff,0xd2,0xdb,0x34,0xf0,0xff,0xff,0xff, + 0xff,0xd3,0x63,0x1b,0x90,0xff,0xff,0xff,0xff,0xd4,0x49,0xd2,0x10,0xff,0xff,0xff, + 0xff,0xd5,0x39,0xc3,0x10,0xff,0xff,0xff,0xff,0xd6,0x29,0xb4,0x10,0xff,0xff,0xff, + 0xff,0xd7,0x2c,0x1a,0x10,0xff,0xff,0xff,0xff,0xd8,0x9,0x96,0x10,0x0,0x0,0x0, + 0x0,0x13,0x4d,0x27,0xf0,0x0,0x0,0x0,0x0,0x14,0x33,0xd0,0x60,0x0,0x0,0x0, + 0x0,0x15,0x23,0xeb,0x90,0x0,0x0,0x0,0x0,0x16,0x13,0xdc,0x90,0x0,0x0,0x0, + 0x0,0x17,0x3,0xcd,0x90,0x0,0x0,0x0,0x0,0x17,0xf3,0xbe,0x90,0x0,0x0,0x0, + 0x0,0x18,0xe3,0xaf,0x90,0x0,0x0,0x0,0x0,0x19,0xd3,0xa0,0x90,0x0,0x0,0x0, + 0x0,0x1a,0xc3,0x91,0x90,0x0,0x0,0x0,0x0,0x1b,0xbc,0xbd,0x10,0x0,0x0,0x0, + 0x0,0x1c,0xac,0xae,0x10,0x0,0x0,0x0,0x0,0x1d,0x9c,0x9f,0x10,0x0,0x0,0x0, + 0x0,0x1e,0x8c,0x90,0x10,0x0,0x0,0x0,0x0,0x1f,0x7c,0x81,0x10,0x0,0x0,0x0, + 0x0,0x20,0x6c,0x72,0x10,0x0,0x0,0x0,0x0,0x21,0x5c,0x63,0x10,0x0,0x0,0x0, + 0x0,0x22,0x4c,0x54,0x10,0x0,0x0,0x0,0x0,0x23,0x3c,0x45,0x10,0x0,0x0,0x0, + 0x0,0x24,0x2c,0x36,0x10,0x0,0x0,0x0,0x0,0x25,0x1c,0x27,0x10,0x0,0x0,0x0, + 0x0,0x26,0xc,0x18,0x10,0x0,0x0,0x0,0x0,0x27,0x5,0x43,0x90,0x0,0x0,0x0, + 0x0,0x27,0xf5,0x34,0x90,0x0,0x0,0x0,0x0,0x28,0xe5,0x25,0x90,0x0,0x0,0x0, + 0x0,0x29,0xd5,0x16,0x90,0x0,0x0,0x0,0x0,0x2a,0xc5,0x7,0x90,0x0,0x0,0x0, + 0x0,0x2b,0xb4,0xf8,0x90,0x0,0x0,0x0,0x0,0x2c,0xa4,0xe9,0x90,0x0,0x0,0x0, + 0x0,0x2d,0x94,0xda,0x90,0x0,0x0,0x0,0x0,0x2e,0x84,0xcb,0x90,0x0,0x0,0x0, + 0x0,0x2f,0x74,0xbc,0x90,0x0,0x0,0x0,0x0,0x30,0x64,0xad,0x90,0x0,0x0,0x0, + 0x0,0x31,0x5d,0xd9,0x10,0x0,0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0,0x0, + 0x0,0x33,0x3d,0xbb,0x10,0x0,0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0,0x0, + 0x0,0x35,0x1d,0x9d,0x10,0x0,0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0, + 0x0,0x36,0xfd,0x7f,0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0, + 0x0,0x38,0xdd,0x61,0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0,0x0, + 0x0,0x3a,0xbd,0x43,0x10,0x0,0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0, + 0x0,0x3c,0xa6,0x5f,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0, + 0x0,0x3e,0x86,0x41,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0, + 0x0,0x40,0x66,0x23,0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0, + 0x0,0x42,0x46,0x5,0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0, + 0x0,0x44,0x25,0xe7,0x90,0x0,0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0, + 0x0,0x46,0x5,0xc9,0x90,0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0, + 0x0,0x47,0xee,0xe6,0x10,0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0, + 0x0,0x49,0xce,0xc8,0x10,0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0, + 0x0,0x4b,0xae,0xaa,0x10,0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0, + 0x0,0x4d,0x8e,0x8c,0x10,0x0,0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0, + 0x0,0x4f,0x6e,0x6e,0x10,0x0,0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0, + 0x0,0x51,0x57,0x8a,0x90,0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0, + 0x0,0x53,0x37,0x6c,0x90,0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0, + 0x0,0x55,0x17,0x4e,0x90,0x0,0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0, + 0x0,0x56,0xf7,0x30,0x90,0x0,0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0, + 0x0,0x58,0xd7,0x12,0x90,0x0,0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0, + 0x0,0x5a,0xb6,0xf4,0x90,0x0,0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0, + 0x0,0x5c,0xa0,0x11,0x10,0x0,0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0, + 0x0,0x5e,0x7f,0xf3,0x10,0x0,0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0, + 0x0,0x60,0x5f,0xd5,0x10,0x0,0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0, + 0x0,0x62,0x3f,0xb7,0x10,0x0,0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0, + 0x0,0x64,0x1f,0x99,0x10,0x0,0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0, + 0x0,0x66,0x8,0xb5,0x90,0x0,0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0, + 0x0,0x67,0xe8,0x97,0x90,0x0,0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0, + 0x0,0x69,0xc8,0x79,0x90,0x0,0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0, + 0x0,0x6b,0xa8,0x5b,0x90,0x0,0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0, + 0x0,0x6d,0x88,0x3d,0x90,0x0,0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0, + 0x0,0x6f,0x68,0x1f,0x90,0x0,0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0, + 0x0,0x71,0x51,0x3c,0x10,0x0,0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0, + 0x0,0x73,0x31,0x1e,0x10,0x0,0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0, + 0x0,0x75,0x11,0x0,0x10,0x0,0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0, + 0x0,0x76,0xf0,0xe2,0x10,0x0,0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0, + 0x0,0x78,0xd0,0xc4,0x10,0x0,0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0, + 0x0,0x7a,0xb0,0xa6,0x10,0x0,0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0, + 0x0,0x7c,0x99,0xc2,0x90,0x0,0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0, + 0x0,0x7e,0x79,0xa4,0x90,0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x2,0x1, + 0x2,0x3,0x4,0x3,0x4,0x2,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x2,0x3,0x4,0x3,0x4,0x3,0x4,0x1,0x2,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x0,0x0,0xf,0x51,0x0, + 0x0,0x0,0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe,0x10,0x0,0x9,0x0,0x0,0x1c, + 0x20,0x1,0x4,0x0,0x0,0xe,0x10,0x0,0x9,0x0,0x0,0x1c,0x20,0x1,0x4,0x0, + 0x0,0xe,0x10,0x0,0x9,0x4c,0x4d,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x43,0x45, + 0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x1, + 0xa,0x43,0x45,0x54,0x2d,0x31,0x43,0x45,0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e, + 0x30,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30,0x2f,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Gibraltar + 0x0,0x0,0xb,0xf5, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xc6,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x1a,0x80,0x0,0x0,0x0,0x9b, + 0x26,0xad,0xa0,0x9b,0xd6,0x5,0x20,0x9c,0xcf,0x30,0xa0,0x9d,0xa4,0xc3,0xa0,0x9e, + 0x9c,0x9d,0xa0,0x9f,0x97,0x1a,0xa0,0xa0,0x85,0xba,0x20,0xa1,0x76,0xfc,0xa0,0xa2, + 0x65,0x9c,0x20,0xa3,0x7b,0xc8,0xa0,0xa4,0x4e,0xb8,0xa0,0xa5,0x3f,0xfb,0x20,0xa6, + 0x25,0x60,0x20,0xa7,0x27,0xc6,0x20,0xa8,0x2a,0x2c,0x20,0xa8,0xeb,0xf8,0xa0,0xaa, + 0x0,0xd3,0xa0,0xaa,0xd5,0x15,0x20,0xab,0xe9,0xf0,0x20,0xac,0xc7,0x6c,0x20,0xad, + 0xc9,0xd2,0x20,0xae,0xa7,0x4e,0x20,0xaf,0xa0,0x79,0xa0,0xb0,0x87,0x30,0x20,0xb1, + 0x92,0xd0,0xa0,0xb2,0x70,0x4c,0xa0,0xb3,0x72,0xb2,0xa0,0xb4,0x50,0x2e,0xa0,0xb5, + 0x49,0x5a,0x20,0xb6,0x30,0x10,0xa0,0xb7,0x32,0x76,0xa0,0xb8,0xf,0xf2,0xa0,0xb9, + 0x12,0x58,0xa0,0xb9,0xef,0xd4,0xa0,0xba,0xe9,0x0,0x20,0xbb,0xd8,0xf1,0x20,0xbc, + 0xdb,0x57,0x20,0xbd,0xb8,0xd3,0x20,0xbe,0xb1,0xfe,0xa0,0xbf,0x98,0xb5,0x20,0xc0, + 0x9b,0x1b,0x20,0xc1,0x78,0x97,0x20,0xc2,0x7a,0xfd,0x20,0xc3,0x58,0x79,0x20,0xc4, + 0x51,0xa4,0xa0,0xc5,0x38,0x5b,0x20,0xc6,0x3a,0xc1,0x20,0xc7,0x58,0xd6,0xa0,0xc7, + 0xda,0x9,0xa0,0xca,0x16,0x26,0x90,0xca,0x97,0x59,0x90,0xcb,0xd1,0x1e,0x90,0xcc, + 0x77,0x3b,0x90,0xcd,0xb1,0x0,0x90,0xce,0x60,0x58,0x10,0xcf,0x90,0xe2,0x90,0xd0, + 0x6e,0x5e,0x90,0xd1,0x72,0x16,0x10,0xd1,0xfb,0x32,0x10,0xd2,0x69,0xfe,0x20,0xd3, + 0x63,0x29,0xa0,0xd4,0x49,0xe0,0x20,0xd5,0x1e,0x21,0xa0,0xd5,0x42,0xfd,0x90,0xd5, + 0xdf,0xe0,0x10,0xd6,0x4e,0xac,0x20,0xd6,0xfe,0x3,0xa0,0xd8,0x2e,0x8e,0x20,0xd8, + 0xf9,0x95,0x20,0xda,0xe,0x70,0x20,0xda,0xeb,0xec,0x20,0xdb,0xe5,0x17,0xa0,0xdc, + 0xcb,0xce,0x20,0xdd,0xc4,0xf9,0xa0,0xde,0xb4,0xea,0xa0,0xdf,0xae,0x16,0x20,0xe0, + 0x94,0xcc,0xa0,0xe1,0x72,0x48,0xa0,0xe2,0x6b,0x74,0x20,0xe3,0x52,0x2a,0xa0,0xe4, + 0x54,0x90,0xa0,0xe5,0x32,0xc,0xa0,0xe6,0x3d,0xad,0x20,0xe7,0x1b,0x29,0x20,0xe8, + 0x14,0x54,0xa0,0x17,0x3,0xcd,0x90,0x17,0xf3,0xbe,0x90,0x18,0xe3,0xaf,0x90,0x19, + 0xd3,0xa0,0x90,0x1a,0xc3,0x91,0x90,0x1b,0xbc,0xbd,0x10,0x1c,0xac,0xae,0x10,0x1d, + 0x9c,0x9f,0x10,0x1e,0x8c,0x90,0x10,0x1f,0x7c,0x81,0x10,0x20,0x6c,0x72,0x10,0x21, + 0x5c,0x63,0x10,0x22,0x4c,0x54,0x10,0x23,0x3c,0x45,0x10,0x24,0x2c,0x36,0x10,0x25, + 0x1c,0x27,0x10,0x26,0xc,0x18,0x10,0x27,0x5,0x43,0x90,0x27,0xf5,0x34,0x90,0x28, + 0xe5,0x25,0x90,0x29,0xd5,0x16,0x90,0x2a,0xc5,0x7,0x90,0x2b,0xb4,0xf8,0x90,0x2c, + 0xa4,0xe9,0x90,0x2d,0x94,0xda,0x90,0x2e,0x84,0xcb,0x90,0x2f,0x74,0xbc,0x90,0x30, + 0x64,0xad,0x90,0x31,0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34, + 0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38, + 0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b, + 0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f, + 0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43, + 0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47, + 0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a, + 0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e, + 0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52, + 0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56, + 0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59, + 0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d, + 0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61, + 0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65, + 0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68, + 0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c, + 0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70, + 0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74, + 0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78, + 0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b, + 0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f, + 0x8e,0x7f,0x90,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x2, + 0x1,0x2,0x1,0x3,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x4,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0xff,0xff,0xfa,0xfc,0x0,0x0,0x0, + 0x0,0xe,0x10,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x1c,0x20,0x1, + 0xc,0x0,0x0,0xe,0x10,0x0,0x11,0x0,0x0,0x1c,0x20,0x1,0x15,0x0,0x0,0xe, + 0x10,0x0,0x11,0x4c,0x4d,0x54,0x0,0x42,0x53,0x54,0x0,0x47,0x4d,0x54,0x0,0x42, + 0x44,0x53,0x54,0x0,0x43,0x45,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x0,0x1,0x1, + 0x1,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x54,0x5a,0x69,0x66,0x32, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc7,0x0, + 0x0,0x0,0x7,0x0,0x0,0x0,0x1a,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff, + 0xff,0xff,0xff,0x57,0xd1,0xa,0x4,0xff,0xff,0xff,0xff,0x9b,0x26,0xad,0xa0,0xff, + 0xff,0xff,0xff,0x9b,0xd6,0x5,0x20,0xff,0xff,0xff,0xff,0x9c,0xcf,0x30,0xa0,0xff, + 0xff,0xff,0xff,0x9d,0xa4,0xc3,0xa0,0xff,0xff,0xff,0xff,0x9e,0x9c,0x9d,0xa0,0xff, + 0xff,0xff,0xff,0x9f,0x97,0x1a,0xa0,0xff,0xff,0xff,0xff,0xa0,0x85,0xba,0x20,0xff, + 0xff,0xff,0xff,0xa1,0x76,0xfc,0xa0,0xff,0xff,0xff,0xff,0xa2,0x65,0x9c,0x20,0xff, + 0xff,0xff,0xff,0xa3,0x7b,0xc8,0xa0,0xff,0xff,0xff,0xff,0xa4,0x4e,0xb8,0xa0,0xff, + 0xff,0xff,0xff,0xa5,0x3f,0xfb,0x20,0xff,0xff,0xff,0xff,0xa6,0x25,0x60,0x20,0xff, + 0xff,0xff,0xff,0xa7,0x27,0xc6,0x20,0xff,0xff,0xff,0xff,0xa8,0x2a,0x2c,0x20,0xff, + 0xff,0xff,0xff,0xa8,0xeb,0xf8,0xa0,0xff,0xff,0xff,0xff,0xaa,0x0,0xd3,0xa0,0xff, + 0xff,0xff,0xff,0xaa,0xd5,0x15,0x20,0xff,0xff,0xff,0xff,0xab,0xe9,0xf0,0x20,0xff, + 0xff,0xff,0xff,0xac,0xc7,0x6c,0x20,0xff,0xff,0xff,0xff,0xad,0xc9,0xd2,0x20,0xff, + 0xff,0xff,0xff,0xae,0xa7,0x4e,0x20,0xff,0xff,0xff,0xff,0xaf,0xa0,0x79,0xa0,0xff, + 0xff,0xff,0xff,0xb0,0x87,0x30,0x20,0xff,0xff,0xff,0xff,0xb1,0x92,0xd0,0xa0,0xff, + 0xff,0xff,0xff,0xb2,0x70,0x4c,0xa0,0xff,0xff,0xff,0xff,0xb3,0x72,0xb2,0xa0,0xff, + 0xff,0xff,0xff,0xb4,0x50,0x2e,0xa0,0xff,0xff,0xff,0xff,0xb5,0x49,0x5a,0x20,0xff, + 0xff,0xff,0xff,0xb6,0x30,0x10,0xa0,0xff,0xff,0xff,0xff,0xb7,0x32,0x76,0xa0,0xff, + 0xff,0xff,0xff,0xb8,0xf,0xf2,0xa0,0xff,0xff,0xff,0xff,0xb9,0x12,0x58,0xa0,0xff, + 0xff,0xff,0xff,0xb9,0xef,0xd4,0xa0,0xff,0xff,0xff,0xff,0xba,0xe9,0x0,0x20,0xff, + 0xff,0xff,0xff,0xbb,0xd8,0xf1,0x20,0xff,0xff,0xff,0xff,0xbc,0xdb,0x57,0x20,0xff, + 0xff,0xff,0xff,0xbd,0xb8,0xd3,0x20,0xff,0xff,0xff,0xff,0xbe,0xb1,0xfe,0xa0,0xff, + 0xff,0xff,0xff,0xbf,0x98,0xb5,0x20,0xff,0xff,0xff,0xff,0xc0,0x9b,0x1b,0x20,0xff, + 0xff,0xff,0xff,0xc1,0x78,0x97,0x20,0xff,0xff,0xff,0xff,0xc2,0x7a,0xfd,0x20,0xff, + 0xff,0xff,0xff,0xc3,0x58,0x79,0x20,0xff,0xff,0xff,0xff,0xc4,0x51,0xa4,0xa0,0xff, + 0xff,0xff,0xff,0xc5,0x38,0x5b,0x20,0xff,0xff,0xff,0xff,0xc6,0x3a,0xc1,0x20,0xff, + 0xff,0xff,0xff,0xc7,0x58,0xd6,0xa0,0xff,0xff,0xff,0xff,0xc7,0xda,0x9,0xa0,0xff, + 0xff,0xff,0xff,0xca,0x16,0x26,0x90,0xff,0xff,0xff,0xff,0xca,0x97,0x59,0x90,0xff, + 0xff,0xff,0xff,0xcb,0xd1,0x1e,0x90,0xff,0xff,0xff,0xff,0xcc,0x77,0x3b,0x90,0xff, + 0xff,0xff,0xff,0xcd,0xb1,0x0,0x90,0xff,0xff,0xff,0xff,0xce,0x60,0x58,0x10,0xff, + 0xff,0xff,0xff,0xcf,0x90,0xe2,0x90,0xff,0xff,0xff,0xff,0xd0,0x6e,0x5e,0x90,0xff, + 0xff,0xff,0xff,0xd1,0x72,0x16,0x10,0xff,0xff,0xff,0xff,0xd1,0xfb,0x32,0x10,0xff, + 0xff,0xff,0xff,0xd2,0x69,0xfe,0x20,0xff,0xff,0xff,0xff,0xd3,0x63,0x29,0xa0,0xff, + 0xff,0xff,0xff,0xd4,0x49,0xe0,0x20,0xff,0xff,0xff,0xff,0xd5,0x1e,0x21,0xa0,0xff, + 0xff,0xff,0xff,0xd5,0x42,0xfd,0x90,0xff,0xff,0xff,0xff,0xd5,0xdf,0xe0,0x10,0xff, + 0xff,0xff,0xff,0xd6,0x4e,0xac,0x20,0xff,0xff,0xff,0xff,0xd6,0xfe,0x3,0xa0,0xff, + 0xff,0xff,0xff,0xd8,0x2e,0x8e,0x20,0xff,0xff,0xff,0xff,0xd8,0xf9,0x95,0x20,0xff, + 0xff,0xff,0xff,0xda,0xe,0x70,0x20,0xff,0xff,0xff,0xff,0xda,0xeb,0xec,0x20,0xff, + 0xff,0xff,0xff,0xdb,0xe5,0x17,0xa0,0xff,0xff,0xff,0xff,0xdc,0xcb,0xce,0x20,0xff, + 0xff,0xff,0xff,0xdd,0xc4,0xf9,0xa0,0xff,0xff,0xff,0xff,0xde,0xb4,0xea,0xa0,0xff, + 0xff,0xff,0xff,0xdf,0xae,0x16,0x20,0xff,0xff,0xff,0xff,0xe0,0x94,0xcc,0xa0,0xff, + 0xff,0xff,0xff,0xe1,0x72,0x48,0xa0,0xff,0xff,0xff,0xff,0xe2,0x6b,0x74,0x20,0xff, + 0xff,0xff,0xff,0xe3,0x52,0x2a,0xa0,0xff,0xff,0xff,0xff,0xe4,0x54,0x90,0xa0,0xff, + 0xff,0xff,0xff,0xe5,0x32,0xc,0xa0,0xff,0xff,0xff,0xff,0xe6,0x3d,0xad,0x20,0xff, + 0xff,0xff,0xff,0xe7,0x1b,0x29,0x20,0xff,0xff,0xff,0xff,0xe8,0x14,0x54,0xa0,0x0, + 0x0,0x0,0x0,0x17,0x3,0xcd,0x90,0x0,0x0,0x0,0x0,0x17,0xf3,0xbe,0x90,0x0, + 0x0,0x0,0x0,0x18,0xe3,0xaf,0x90,0x0,0x0,0x0,0x0,0x19,0xd3,0xa0,0x90,0x0, + 0x0,0x0,0x0,0x1a,0xc3,0x91,0x90,0x0,0x0,0x0,0x0,0x1b,0xbc,0xbd,0x10,0x0, + 0x0,0x0,0x0,0x1c,0xac,0xae,0x10,0x0,0x0,0x0,0x0,0x1d,0x9c,0x9f,0x10,0x0, + 0x0,0x0,0x0,0x1e,0x8c,0x90,0x10,0x0,0x0,0x0,0x0,0x1f,0x7c,0x81,0x10,0x0, + 0x0,0x0,0x0,0x20,0x6c,0x72,0x10,0x0,0x0,0x0,0x0,0x21,0x5c,0x63,0x10,0x0, + 0x0,0x0,0x0,0x22,0x4c,0x54,0x10,0x0,0x0,0x0,0x0,0x23,0x3c,0x45,0x10,0x0, + 0x0,0x0,0x0,0x24,0x2c,0x36,0x10,0x0,0x0,0x0,0x0,0x25,0x1c,0x27,0x10,0x0, + 0x0,0x0,0x0,0x26,0xc,0x18,0x10,0x0,0x0,0x0,0x0,0x27,0x5,0x43,0x90,0x0, + 0x0,0x0,0x0,0x27,0xf5,0x34,0x90,0x0,0x0,0x0,0x0,0x28,0xe5,0x25,0x90,0x0, + 0x0,0x0,0x0,0x29,0xd5,0x16,0x90,0x0,0x0,0x0,0x0,0x2a,0xc5,0x7,0x90,0x0, + 0x0,0x0,0x0,0x2b,0xb4,0xf8,0x90,0x0,0x0,0x0,0x0,0x2c,0xa4,0xe9,0x90,0x0, + 0x0,0x0,0x0,0x2d,0x94,0xda,0x90,0x0,0x0,0x0,0x0,0x2e,0x84,0xcb,0x90,0x0, + 0x0,0x0,0x0,0x2f,0x74,0xbc,0x90,0x0,0x0,0x0,0x0,0x30,0x64,0xad,0x90,0x0, + 0x0,0x0,0x0,0x31,0x5d,0xd9,0x10,0x0,0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0, + 0x0,0x0,0x0,0x33,0x3d,0xbb,0x10,0x0,0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0, + 0x0,0x0,0x0,0x35,0x1d,0x9d,0x10,0x0,0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0, + 0x0,0x0,0x0,0x36,0xfd,0x7f,0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0, + 0x0,0x0,0x0,0x38,0xdd,0x61,0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0, + 0x0,0x0,0x0,0x3a,0xbd,0x43,0x10,0x0,0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0, + 0x0,0x0,0x0,0x3c,0xa6,0x5f,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0, + 0x0,0x0,0x0,0x3e,0x86,0x41,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0, + 0x0,0x0,0x0,0x40,0x66,0x23,0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0, + 0x0,0x0,0x0,0x42,0x46,0x5,0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0, + 0x0,0x0,0x0,0x44,0x25,0xe7,0x90,0x0,0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0, + 0x0,0x0,0x0,0x46,0x5,0xc9,0x90,0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0, + 0x0,0x0,0x0,0x47,0xee,0xe6,0x10,0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0, + 0x0,0x0,0x0,0x49,0xce,0xc8,0x10,0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0, + 0x0,0x0,0x0,0x4b,0xae,0xaa,0x10,0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0, + 0x0,0x0,0x0,0x4d,0x8e,0x8c,0x10,0x0,0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0, + 0x0,0x0,0x0,0x4f,0x6e,0x6e,0x10,0x0,0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0, + 0x0,0x0,0x0,0x51,0x57,0x8a,0x90,0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0, + 0x0,0x0,0x0,0x53,0x37,0x6c,0x90,0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0, + 0x0,0x0,0x0,0x55,0x17,0x4e,0x90,0x0,0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0, + 0x0,0x0,0x0,0x56,0xf7,0x30,0x90,0x0,0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0, + 0x0,0x0,0x0,0x58,0xd7,0x12,0x90,0x0,0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0, + 0x0,0x0,0x0,0x5a,0xb6,0xf4,0x90,0x0,0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0, + 0x0,0x0,0x0,0x5c,0xa0,0x11,0x10,0x0,0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0, + 0x0,0x0,0x0,0x5e,0x7f,0xf3,0x10,0x0,0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0, + 0x0,0x0,0x0,0x60,0x5f,0xd5,0x10,0x0,0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0, + 0x0,0x0,0x0,0x62,0x3f,0xb7,0x10,0x0,0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0, + 0x0,0x0,0x0,0x64,0x1f,0x99,0x10,0x0,0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0, + 0x0,0x0,0x0,0x66,0x8,0xb5,0x90,0x0,0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0, + 0x0,0x0,0x0,0x67,0xe8,0x97,0x90,0x0,0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0, + 0x0,0x0,0x0,0x69,0xc8,0x79,0x90,0x0,0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0, + 0x0,0x0,0x0,0x6b,0xa8,0x5b,0x90,0x0,0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0, + 0x0,0x0,0x0,0x6d,0x88,0x3d,0x90,0x0,0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0, + 0x0,0x0,0x0,0x6f,0x68,0x1f,0x90,0x0,0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0, + 0x0,0x0,0x0,0x71,0x51,0x3c,0x10,0x0,0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0, + 0x0,0x0,0x0,0x73,0x31,0x1e,0x10,0x0,0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0, + 0x0,0x0,0x0,0x75,0x11,0x0,0x10,0x0,0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0, + 0x0,0x0,0x0,0x76,0xf0,0xe2,0x10,0x0,0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0, + 0x0,0x0,0x0,0x78,0xd0,0xc4,0x10,0x0,0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0, + 0x0,0x0,0x0,0x7a,0xb0,0xa6,0x10,0x0,0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0, + 0x0,0x0,0x0,0x7c,0x99,0xc2,0x90,0x0,0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0, + 0x0,0x0,0x0,0x7e,0x79,0xa4,0x90,0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x2,0x1,0x2,0x1, + 0x3,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x4,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0xff,0xff,0xfa,0xfc,0x0,0x0,0x0,0x0,0xe,0x10, + 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x1c,0x20,0x1,0xc,0x0,0x0, + 0xe,0x10,0x0,0x11,0x0,0x0,0x1c,0x20,0x1,0x15,0x0,0x0,0xe,0x10,0x0,0x11, + 0x4c,0x4d,0x54,0x0,0x42,0x53,0x54,0x0,0x47,0x4d,0x54,0x0,0x42,0x44,0x53,0x54, + 0x0,0x43,0x45,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x0,0x1,0x1,0x1,0x0,0x1, + 0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0xa,0x43,0x45,0x54,0x2d,0x31,0x43,0x45, + 0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e, + 0x30,0x2f,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Samara + 0x0,0x0,0x4,0xe5, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x42,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0xa1, + 0x0,0x39,0x80,0xb5,0xa4,0xb,0x50,0x15,0x27,0x99,0xc0,0x16,0x18,0xce,0x30,0x17, + 0x8,0xcd,0x40,0x17,0xfa,0x1,0xb0,0x18,0xea,0x0,0xc0,0x19,0xdb,0x35,0x30,0x1a, + 0xcc,0x85,0xc0,0x1b,0xbc,0x92,0xe0,0x1c,0xac,0x83,0xe0,0x1d,0x9c,0x74,0xe0,0x1e, + 0x8c,0x65,0xe0,0x1f,0x7c,0x56,0xe0,0x20,0x6c,0x47,0xe0,0x21,0x5c,0x38,0xe0,0x22, + 0x4c,0x29,0xe0,0x23,0x3c,0x1a,0xe0,0x24,0x2c,0xb,0xe0,0x25,0x1c,0xa,0xf0,0x26, + 0xb,0xfb,0xf0,0x27,0x5,0x27,0x70,0x27,0xf5,0x18,0x70,0x28,0xe5,0x17,0x80,0x29, + 0x0,0xc7,0x0,0x29,0xd4,0xec,0x60,0x2a,0xc4,0xdd,0x60,0x2b,0xb4,0xce,0x60,0x2c, + 0xa4,0xbf,0x60,0x2d,0x94,0xb0,0x60,0x2e,0x84,0xa1,0x60,0x2f,0x74,0x92,0x60,0x30, + 0x64,0x83,0x60,0x31,0x5d,0xae,0xe0,0x32,0x72,0x89,0xe0,0x33,0x3d,0x90,0xe0,0x34, + 0x52,0x6b,0xe0,0x35,0x1d,0x72,0xe0,0x36,0x32,0x4d,0xe0,0x36,0xfd,0x54,0xe0,0x38, + 0x1b,0x6a,0x60,0x38,0xdd,0x36,0xe0,0x39,0xfb,0x4c,0x60,0x3a,0xbd,0x18,0xe0,0x3b, + 0xdb,0x2e,0x60,0x3c,0xa6,0x35,0x60,0x3d,0xbb,0x10,0x60,0x3e,0x86,0x17,0x60,0x3f, + 0x9a,0xf2,0x60,0x40,0x65,0xf9,0x60,0x41,0x84,0xe,0xe0,0x42,0x45,0xdb,0x60,0x43, + 0x63,0xf0,0xe0,0x44,0x25,0xbd,0x60,0x45,0x43,0xd2,0xe0,0x46,0x5,0x9f,0x60,0x47, + 0x23,0xb4,0xe0,0x47,0xee,0xbb,0xe0,0x49,0x3,0x96,0xe0,0x49,0xce,0x9d,0xe0,0x4a, + 0xe3,0x78,0xe0,0x4b,0xae,0x7f,0xe0,0x4c,0xcc,0xa3,0x70,0x4d,0x8e,0x6f,0xf0,0x7f, + 0xff,0xff,0xff,0x0,0x1,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x6,0x7,0x6,0x7,0x8,0x7,0x2,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x6,0x7,0x4,0x4,0x0,0x0,0x2e,0xf4,0x0,0x0,0x0,0x0,0x2a,0x30,0x0, + 0x4,0x0,0x0,0x38,0x40,0x0,0x8,0x0,0x0,0x46,0x50,0x1,0xc,0x0,0x0,0x38, + 0x40,0x0,0x8,0x0,0x0,0x46,0x50,0x1,0xc,0x0,0x0,0x38,0x40,0x1,0x8,0x0, + 0x0,0x2a,0x30,0x0,0x4,0x0,0x0,0x2a,0x30,0x1,0x4,0x0,0x0,0x1c,0x20,0x0, + 0x10,0x0,0x0,0x38,0x40,0x1,0x8,0x0,0x0,0x38,0x40,0x0,0x8,0x4c,0x4d,0x54, + 0x0,0x2b,0x30,0x33,0x0,0x2b,0x30,0x34,0x0,0x2b,0x30,0x35,0x0,0x2b,0x30,0x32, + 0x0,0x0,0x1,0x0,0x0,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x0,0x1,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xc,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x42,0x0,0x0,0x0, + 0xc,0x0,0x0,0x0,0x14,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff, + 0xff,0xa1,0x0,0x39,0x80,0xff,0xff,0xff,0xff,0xb5,0xa4,0xb,0x50,0x0,0x0,0x0, + 0x0,0x15,0x27,0x99,0xc0,0x0,0x0,0x0,0x0,0x16,0x18,0xce,0x30,0x0,0x0,0x0, + 0x0,0x17,0x8,0xcd,0x40,0x0,0x0,0x0,0x0,0x17,0xfa,0x1,0xb0,0x0,0x0,0x0, + 0x0,0x18,0xea,0x0,0xc0,0x0,0x0,0x0,0x0,0x19,0xdb,0x35,0x30,0x0,0x0,0x0, + 0x0,0x1a,0xcc,0x85,0xc0,0x0,0x0,0x0,0x0,0x1b,0xbc,0x92,0xe0,0x0,0x0,0x0, + 0x0,0x1c,0xac,0x83,0xe0,0x0,0x0,0x0,0x0,0x1d,0x9c,0x74,0xe0,0x0,0x0,0x0, + 0x0,0x1e,0x8c,0x65,0xe0,0x0,0x0,0x0,0x0,0x1f,0x7c,0x56,0xe0,0x0,0x0,0x0, + 0x0,0x20,0x6c,0x47,0xe0,0x0,0x0,0x0,0x0,0x21,0x5c,0x38,0xe0,0x0,0x0,0x0, + 0x0,0x22,0x4c,0x29,0xe0,0x0,0x0,0x0,0x0,0x23,0x3c,0x1a,0xe0,0x0,0x0,0x0, + 0x0,0x24,0x2c,0xb,0xe0,0x0,0x0,0x0,0x0,0x25,0x1c,0xa,0xf0,0x0,0x0,0x0, + 0x0,0x26,0xb,0xfb,0xf0,0x0,0x0,0x0,0x0,0x27,0x5,0x27,0x70,0x0,0x0,0x0, + 0x0,0x27,0xf5,0x18,0x70,0x0,0x0,0x0,0x0,0x28,0xe5,0x17,0x80,0x0,0x0,0x0, + 0x0,0x29,0x0,0xc7,0x0,0x0,0x0,0x0,0x0,0x29,0xd4,0xec,0x60,0x0,0x0,0x0, + 0x0,0x2a,0xc4,0xdd,0x60,0x0,0x0,0x0,0x0,0x2b,0xb4,0xce,0x60,0x0,0x0,0x0, + 0x0,0x2c,0xa4,0xbf,0x60,0x0,0x0,0x0,0x0,0x2d,0x94,0xb0,0x60,0x0,0x0,0x0, + 0x0,0x2e,0x84,0xa1,0x60,0x0,0x0,0x0,0x0,0x2f,0x74,0x92,0x60,0x0,0x0,0x0, + 0x0,0x30,0x64,0x83,0x60,0x0,0x0,0x0,0x0,0x31,0x5d,0xae,0xe0,0x0,0x0,0x0, + 0x0,0x32,0x72,0x89,0xe0,0x0,0x0,0x0,0x0,0x33,0x3d,0x90,0xe0,0x0,0x0,0x0, + 0x0,0x34,0x52,0x6b,0xe0,0x0,0x0,0x0,0x0,0x35,0x1d,0x72,0xe0,0x0,0x0,0x0, + 0x0,0x36,0x32,0x4d,0xe0,0x0,0x0,0x0,0x0,0x36,0xfd,0x54,0xe0,0x0,0x0,0x0, + 0x0,0x38,0x1b,0x6a,0x60,0x0,0x0,0x0,0x0,0x38,0xdd,0x36,0xe0,0x0,0x0,0x0, + 0x0,0x39,0xfb,0x4c,0x60,0x0,0x0,0x0,0x0,0x3a,0xbd,0x18,0xe0,0x0,0x0,0x0, + 0x0,0x3b,0xdb,0x2e,0x60,0x0,0x0,0x0,0x0,0x3c,0xa6,0x35,0x60,0x0,0x0,0x0, + 0x0,0x3d,0xbb,0x10,0x60,0x0,0x0,0x0,0x0,0x3e,0x86,0x17,0x60,0x0,0x0,0x0, + 0x0,0x3f,0x9a,0xf2,0x60,0x0,0x0,0x0,0x0,0x40,0x65,0xf9,0x60,0x0,0x0,0x0, + 0x0,0x41,0x84,0xe,0xe0,0x0,0x0,0x0,0x0,0x42,0x45,0xdb,0x60,0x0,0x0,0x0, + 0x0,0x43,0x63,0xf0,0xe0,0x0,0x0,0x0,0x0,0x44,0x25,0xbd,0x60,0x0,0x0,0x0, + 0x0,0x45,0x43,0xd2,0xe0,0x0,0x0,0x0,0x0,0x46,0x5,0x9f,0x60,0x0,0x0,0x0, + 0x0,0x47,0x23,0xb4,0xe0,0x0,0x0,0x0,0x0,0x47,0xee,0xbb,0xe0,0x0,0x0,0x0, + 0x0,0x49,0x3,0x96,0xe0,0x0,0x0,0x0,0x0,0x49,0xce,0x9d,0xe0,0x0,0x0,0x0, + 0x0,0x4a,0xe3,0x78,0xe0,0x0,0x0,0x0,0x0,0x4b,0xae,0x7f,0xe0,0x0,0x0,0x0, + 0x0,0x4c,0xcc,0xa3,0x70,0x0,0x0,0x0,0x0,0x4d,0x8e,0x6f,0xf0,0x0,0x0,0x0, + 0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x6,0x7,0x6,0x7,0x8,0x7,0x2,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x6,0x7,0x4,0x4,0x0,0x0,0x2e,0xf4,0x0,0x0,0x0,0x0,0x2a, + 0x30,0x0,0x4,0x0,0x0,0x38,0x40,0x0,0x8,0x0,0x0,0x46,0x50,0x1,0xc,0x0, + 0x0,0x38,0x40,0x0,0x8,0x0,0x0,0x46,0x50,0x1,0xc,0x0,0x0,0x38,0x40,0x1, + 0x8,0x0,0x0,0x2a,0x30,0x0,0x4,0x0,0x0,0x2a,0x30,0x1,0x4,0x0,0x0,0x1c, + 0x20,0x0,0x10,0x0,0x0,0x38,0x40,0x1,0x8,0x0,0x0,0x38,0x40,0x0,0x8,0x4c, + 0x4d,0x54,0x0,0x2b,0x30,0x33,0x0,0x2b,0x30,0x34,0x0,0x2b,0x30,0x35,0x0,0x2b, + 0x30,0x32,0x0,0x0,0x1,0x0,0x0,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x0, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2b,0x30,0x34, + 0x3e,0x2d,0x34,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Istanbul + 0x0,0x0,0x8,0x76, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x83,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x19,0x80,0x0,0x0,0x0,0x90, + 0x8b,0xf5,0x98,0x9b,0xc,0x17,0x60,0x9b,0xd5,0xbe,0xd0,0xa2,0x65,0x63,0xe0,0xa3, + 0x7b,0x82,0x50,0xa4,0x4e,0x80,0x60,0xa5,0x3f,0xb4,0xd0,0xa6,0x25,0x27,0xe0,0xa7, + 0x27,0x7f,0xd0,0xaa,0x28,0x28,0x60,0xaa,0xe1,0xfd,0xd0,0xab,0xf9,0x89,0xe0,0xac, + 0xc3,0x31,0x50,0xc8,0x7f,0xee,0x60,0xc8,0xff,0xc1,0xd0,0xc9,0x4a,0xf5,0x60,0xca, + 0xce,0x80,0x50,0xcb,0xcb,0xae,0x60,0xcc,0xe5,0xc1,0x50,0xd1,0x71,0xeb,0xe0,0xd2, + 0x6b,0x9,0x50,0xd3,0xa2,0x39,0x60,0xd4,0x43,0x2,0x50,0xd5,0x4c,0xd,0xe0,0xd6, + 0x29,0x7b,0xd0,0xd7,0x2b,0xef,0xe0,0xd8,0x9,0x5d,0xd0,0xd9,0x2,0x97,0x60,0xd9, + 0xe9,0x3f,0xd0,0xda,0xef,0xa8,0x60,0xdb,0xd2,0x5c,0x50,0xdc,0xd4,0xd0,0x60,0xdd, + 0xb3,0x8f,0xd0,0xf1,0xf4,0xb9,0x60,0xf2,0x64,0xba,0xd0,0xf5,0x68,0x6,0x60,0xf6, + 0x1f,0x38,0xd0,0x0,0xa0,0xba,0xe0,0x1,0x6b,0xb3,0xd0,0x2,0x80,0x9c,0xe0,0x3, + 0x4b,0x95,0xd0,0x4,0x69,0xb9,0x60,0x5,0x34,0xb2,0x50,0x6,0x6e,0x93,0x70,0x7, + 0x39,0xa8,0x80,0x7,0xfb,0x75,0x0,0x9,0x19,0xa6,0xa0,0x9,0xdb,0x3a,0xe0,0xa, + 0xf0,0x7,0xd0,0xc,0x10,0xce,0x60,0xc,0xd9,0x24,0x50,0xd,0xa4,0x39,0x60,0xe, + 0xa6,0x91,0x50,0xf,0x84,0x1b,0x60,0x10,0x86,0x73,0x50,0x12,0x67,0x98,0xc0,0x13, + 0x4d,0x36,0x0,0x14,0x47,0x7a,0xc0,0x15,0x23,0xdd,0x80,0x16,0x27,0x5c,0xc0,0x17, + 0x3,0xbf,0x80,0x18,0x7,0x3e,0xc0,0x19,0x89,0x94,0x50,0x19,0xdc,0x94,0xc0,0x1c, + 0xc6,0xd3,0xd0,0x1d,0x9b,0x15,0x50,0x1e,0x8c,0x73,0xf0,0x1f,0x7c,0x64,0xf0,0x20, + 0x6c,0x55,0xf0,0x21,0x5c,0x46,0xf0,0x22,0x4c,0x37,0xf0,0x23,0x3c,0x28,0xf0,0x24, + 0x2c,0x19,0xf0,0x25,0x1c,0xa,0xf0,0x26,0xb,0xfb,0xf0,0x27,0x5,0x27,0x70,0x27, + 0xf5,0x18,0x70,0x28,0xe5,0x9,0x70,0x29,0xd4,0xfa,0x70,0x2a,0xc4,0xeb,0x70,0x2b, + 0xb4,0xdc,0x70,0x2c,0xa4,0xcd,0x70,0x2d,0x8b,0x83,0xf0,0x2e,0x84,0xaf,0x70,0x2f, + 0x74,0xa0,0x70,0x30,0x64,0x91,0x70,0x31,0x5d,0xbc,0xf0,0x32,0x72,0x97,0xf0,0x33, + 0x3d,0x9e,0xf0,0x34,0x52,0x79,0xf0,0x35,0x1d,0x80,0xf0,0x36,0x32,0x5b,0xf0,0x36, + 0xfd,0x62,0xf0,0x38,0x1b,0x78,0x70,0x38,0xdd,0x44,0xf0,0x39,0xfb,0x5a,0x70,0x3a, + 0xbd,0x26,0xf0,0x3b,0xdb,0x3c,0x70,0x3c,0xa6,0x43,0x70,0x3d,0xbb,0x1e,0x70,0x3e, + 0x86,0x25,0x70,0x3f,0x9b,0x0,0x70,0x40,0x66,0x7,0x70,0x41,0x84,0x1c,0xf0,0x42, + 0x45,0xe9,0x70,0x43,0x63,0xfe,0xf0,0x44,0x25,0xcb,0x70,0x45,0x43,0xe0,0xf0,0x45, + 0x98,0x32,0xe0,0x46,0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49, + 0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c, + 0xcc,0xbf,0x90,0x4d,0x8f,0xdd,0x90,0x4e,0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50, + 0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53,0x38,0xbe,0x10,0x54, + 0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56,0x3e,0x9e,0x90,0x56,0xf7,0x30,0x90,0x57, + 0xcf,0x2e,0x50,0x7f,0xff,0xff,0xff,0x1,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x2,0x3,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x3,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, + 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x5,0x5,0x0,0x0,0x1b,0x28,0x0,0x0, + 0x0,0x0,0x1b,0x68,0x0,0x4,0x0,0x0,0x2a,0x30,0x1,0x8,0x0,0x0,0x1c,0x20, + 0x0,0xd,0x0,0x0,0x38,0x40,0x1,0x11,0x0,0x0,0x2a,0x30,0x0,0x15,0x0,0x0, + 0x2a,0x30,0x1,0x8,0x0,0x0,0x1c,0x20,0x0,0xd,0x0,0x0,0x2a,0x30,0x1,0x8, + 0x0,0x0,0x1c,0x20,0x0,0xd,0x0,0x0,0x2a,0x30,0x0,0x15,0x4c,0x4d,0x54,0x0, + 0x49,0x4d,0x54,0x0,0x45,0x45,0x53,0x54,0x0,0x45,0x45,0x54,0x0,0x2b,0x30,0x34, + 0x0,0x2b,0x30,0x33,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x54,0x5a,0x69,0x66,0x32, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xb,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x84,0x0, + 0x0,0x0,0xb,0x0,0x0,0x0,0x19,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff, + 0xff,0xff,0xff,0x56,0xb6,0xc8,0xd8,0xff,0xff,0xff,0xff,0x90,0x8b,0xf5,0x98,0xff, + 0xff,0xff,0xff,0x9b,0xc,0x17,0x60,0xff,0xff,0xff,0xff,0x9b,0xd5,0xbe,0xd0,0xff, + 0xff,0xff,0xff,0xa2,0x65,0x63,0xe0,0xff,0xff,0xff,0xff,0xa3,0x7b,0x82,0x50,0xff, + 0xff,0xff,0xff,0xa4,0x4e,0x80,0x60,0xff,0xff,0xff,0xff,0xa5,0x3f,0xb4,0xd0,0xff, + 0xff,0xff,0xff,0xa6,0x25,0x27,0xe0,0xff,0xff,0xff,0xff,0xa7,0x27,0x7f,0xd0,0xff, + 0xff,0xff,0xff,0xaa,0x28,0x28,0x60,0xff,0xff,0xff,0xff,0xaa,0xe1,0xfd,0xd0,0xff, + 0xff,0xff,0xff,0xab,0xf9,0x89,0xe0,0xff,0xff,0xff,0xff,0xac,0xc3,0x31,0x50,0xff, + 0xff,0xff,0xff,0xc8,0x7f,0xee,0x60,0xff,0xff,0xff,0xff,0xc8,0xff,0xc1,0xd0,0xff, + 0xff,0xff,0xff,0xc9,0x4a,0xf5,0x60,0xff,0xff,0xff,0xff,0xca,0xce,0x80,0x50,0xff, + 0xff,0xff,0xff,0xcb,0xcb,0xae,0x60,0xff,0xff,0xff,0xff,0xcc,0xe5,0xc1,0x50,0xff, + 0xff,0xff,0xff,0xd1,0x71,0xeb,0xe0,0xff,0xff,0xff,0xff,0xd2,0x6b,0x9,0x50,0xff, + 0xff,0xff,0xff,0xd3,0xa2,0x39,0x60,0xff,0xff,0xff,0xff,0xd4,0x43,0x2,0x50,0xff, + 0xff,0xff,0xff,0xd5,0x4c,0xd,0xe0,0xff,0xff,0xff,0xff,0xd6,0x29,0x7b,0xd0,0xff, + 0xff,0xff,0xff,0xd7,0x2b,0xef,0xe0,0xff,0xff,0xff,0xff,0xd8,0x9,0x5d,0xd0,0xff, + 0xff,0xff,0xff,0xd9,0x2,0x97,0x60,0xff,0xff,0xff,0xff,0xd9,0xe9,0x3f,0xd0,0xff, + 0xff,0xff,0xff,0xda,0xef,0xa8,0x60,0xff,0xff,0xff,0xff,0xdb,0xd2,0x5c,0x50,0xff, + 0xff,0xff,0xff,0xdc,0xd4,0xd0,0x60,0xff,0xff,0xff,0xff,0xdd,0xb3,0x8f,0xd0,0xff, + 0xff,0xff,0xff,0xf1,0xf4,0xb9,0x60,0xff,0xff,0xff,0xff,0xf2,0x64,0xba,0xd0,0xff, + 0xff,0xff,0xff,0xf5,0x68,0x6,0x60,0xff,0xff,0xff,0xff,0xf6,0x1f,0x38,0xd0,0x0, + 0x0,0x0,0x0,0x0,0xa0,0xba,0xe0,0x0,0x0,0x0,0x0,0x1,0x6b,0xb3,0xd0,0x0, + 0x0,0x0,0x0,0x2,0x80,0x9c,0xe0,0x0,0x0,0x0,0x0,0x3,0x4b,0x95,0xd0,0x0, + 0x0,0x0,0x0,0x4,0x69,0xb9,0x60,0x0,0x0,0x0,0x0,0x5,0x34,0xb2,0x50,0x0, + 0x0,0x0,0x0,0x6,0x6e,0x93,0x70,0x0,0x0,0x0,0x0,0x7,0x39,0xa8,0x80,0x0, + 0x0,0x0,0x0,0x7,0xfb,0x75,0x0,0x0,0x0,0x0,0x0,0x9,0x19,0xa6,0xa0,0x0, + 0x0,0x0,0x0,0x9,0xdb,0x3a,0xe0,0x0,0x0,0x0,0x0,0xa,0xf0,0x7,0xd0,0x0, + 0x0,0x0,0x0,0xc,0x10,0xce,0x60,0x0,0x0,0x0,0x0,0xc,0xd9,0x24,0x50,0x0, + 0x0,0x0,0x0,0xd,0xa4,0x39,0x60,0x0,0x0,0x0,0x0,0xe,0xa6,0x91,0x50,0x0, + 0x0,0x0,0x0,0xf,0x84,0x1b,0x60,0x0,0x0,0x0,0x0,0x10,0x86,0x73,0x50,0x0, + 0x0,0x0,0x0,0x12,0x67,0x98,0xc0,0x0,0x0,0x0,0x0,0x13,0x4d,0x36,0x0,0x0, + 0x0,0x0,0x0,0x14,0x47,0x7a,0xc0,0x0,0x0,0x0,0x0,0x15,0x23,0xdd,0x80,0x0, + 0x0,0x0,0x0,0x16,0x27,0x5c,0xc0,0x0,0x0,0x0,0x0,0x17,0x3,0xbf,0x80,0x0, + 0x0,0x0,0x0,0x18,0x7,0x3e,0xc0,0x0,0x0,0x0,0x0,0x19,0x89,0x94,0x50,0x0, + 0x0,0x0,0x0,0x19,0xdc,0x94,0xc0,0x0,0x0,0x0,0x0,0x1c,0xc6,0xd3,0xd0,0x0, + 0x0,0x0,0x0,0x1d,0x9b,0x15,0x50,0x0,0x0,0x0,0x0,0x1e,0x8c,0x73,0xf0,0x0, + 0x0,0x0,0x0,0x1f,0x7c,0x64,0xf0,0x0,0x0,0x0,0x0,0x20,0x6c,0x55,0xf0,0x0, + 0x0,0x0,0x0,0x21,0x5c,0x46,0xf0,0x0,0x0,0x0,0x0,0x22,0x4c,0x37,0xf0,0x0, + 0x0,0x0,0x0,0x23,0x3c,0x28,0xf0,0x0,0x0,0x0,0x0,0x24,0x2c,0x19,0xf0,0x0, + 0x0,0x0,0x0,0x25,0x1c,0xa,0xf0,0x0,0x0,0x0,0x0,0x26,0xb,0xfb,0xf0,0x0, + 0x0,0x0,0x0,0x27,0x5,0x27,0x70,0x0,0x0,0x0,0x0,0x27,0xf5,0x18,0x70,0x0, + 0x0,0x0,0x0,0x28,0xe5,0x9,0x70,0x0,0x0,0x0,0x0,0x29,0xd4,0xfa,0x70,0x0, + 0x0,0x0,0x0,0x2a,0xc4,0xeb,0x70,0x0,0x0,0x0,0x0,0x2b,0xb4,0xdc,0x70,0x0, + 0x0,0x0,0x0,0x2c,0xa4,0xcd,0x70,0x0,0x0,0x0,0x0,0x2d,0x8b,0x83,0xf0,0x0, + 0x0,0x0,0x0,0x2e,0x84,0xaf,0x70,0x0,0x0,0x0,0x0,0x2f,0x74,0xa0,0x70,0x0, + 0x0,0x0,0x0,0x30,0x64,0x91,0x70,0x0,0x0,0x0,0x0,0x31,0x5d,0xbc,0xf0,0x0, + 0x0,0x0,0x0,0x32,0x72,0x97,0xf0,0x0,0x0,0x0,0x0,0x33,0x3d,0x9e,0xf0,0x0, + 0x0,0x0,0x0,0x34,0x52,0x79,0xf0,0x0,0x0,0x0,0x0,0x35,0x1d,0x80,0xf0,0x0, + 0x0,0x0,0x0,0x36,0x32,0x5b,0xf0,0x0,0x0,0x0,0x0,0x36,0xfd,0x62,0xf0,0x0, + 0x0,0x0,0x0,0x38,0x1b,0x78,0x70,0x0,0x0,0x0,0x0,0x38,0xdd,0x44,0xf0,0x0, + 0x0,0x0,0x0,0x39,0xfb,0x5a,0x70,0x0,0x0,0x0,0x0,0x3a,0xbd,0x26,0xf0,0x0, + 0x0,0x0,0x0,0x3b,0xdb,0x3c,0x70,0x0,0x0,0x0,0x0,0x3c,0xa6,0x43,0x70,0x0, + 0x0,0x0,0x0,0x3d,0xbb,0x1e,0x70,0x0,0x0,0x0,0x0,0x3e,0x86,0x25,0x70,0x0, + 0x0,0x0,0x0,0x3f,0x9b,0x0,0x70,0x0,0x0,0x0,0x0,0x40,0x66,0x7,0x70,0x0, + 0x0,0x0,0x0,0x41,0x84,0x1c,0xf0,0x0,0x0,0x0,0x0,0x42,0x45,0xe9,0x70,0x0, + 0x0,0x0,0x0,0x43,0x63,0xfe,0xf0,0x0,0x0,0x0,0x0,0x44,0x25,0xcb,0x70,0x0, + 0x0,0x0,0x0,0x45,0x43,0xe0,0xf0,0x0,0x0,0x0,0x0,0x45,0x98,0x32,0xe0,0x0, + 0x0,0x0,0x0,0x46,0x5,0xc9,0x90,0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0, + 0x0,0x0,0x0,0x47,0xee,0xe6,0x10,0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0, + 0x0,0x0,0x0,0x49,0xce,0xc8,0x10,0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0, + 0x0,0x0,0x0,0x4b,0xae,0xaa,0x10,0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0, + 0x0,0x0,0x0,0x4d,0x8f,0xdd,0x90,0x0,0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0, + 0x0,0x0,0x0,0x4f,0x6e,0x6e,0x10,0x0,0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0, + 0x0,0x0,0x0,0x51,0x57,0x8a,0x90,0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0, + 0x0,0x0,0x0,0x53,0x38,0xbe,0x10,0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0, + 0x0,0x0,0x0,0x55,0x17,0x4e,0x90,0x0,0x0,0x0,0x0,0x56,0x3e,0x9e,0x90,0x0, + 0x0,0x0,0x0,0x56,0xf7,0x30,0x90,0x0,0x0,0x0,0x0,0x57,0xcf,0x2e,0x50,0x0, + 0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x2,0x3,0x6,0x7,0x6,0x7,0x6, + 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, + 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, + 0x7,0x6,0x7,0x6,0x7,0x3,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, + 0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x5,0x5,0x0,0x0,0x1b,0x28,0x0, + 0x0,0x0,0x0,0x1b,0x68,0x0,0x4,0x0,0x0,0x2a,0x30,0x1,0x8,0x0,0x0,0x1c, + 0x20,0x0,0xd,0x0,0x0,0x38,0x40,0x1,0x11,0x0,0x0,0x2a,0x30,0x0,0x15,0x0, + 0x0,0x2a,0x30,0x1,0x8,0x0,0x0,0x1c,0x20,0x0,0xd,0x0,0x0,0x2a,0x30,0x1, + 0x8,0x0,0x0,0x1c,0x20,0x0,0xd,0x0,0x0,0x2a,0x30,0x0,0x15,0x4c,0x4d,0x54, + 0x0,0x49,0x4d,0x54,0x0,0x45,0x45,0x53,0x54,0x0,0x45,0x45,0x54,0x0,0x2b,0x30, + 0x34,0x0,0x2b,0x30,0x33,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0xa,0x3c,0x2b,0x30, + 0x33,0x3e,0x2d,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Guernsey + 0x0,0x0,0xe,0x67, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xf3,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x11,0x80,0x0,0x0,0x0,0x9b, + 0x26,0xad,0xa0,0x9b,0xd6,0x5,0x20,0x9c,0xcf,0x30,0xa0,0x9d,0xa4,0xc3,0xa0,0x9e, + 0x9c,0x9d,0xa0,0x9f,0x97,0x1a,0xa0,0xa0,0x85,0xba,0x20,0xa1,0x76,0xfc,0xa0,0xa2, + 0x65,0x9c,0x20,0xa3,0x7b,0xc8,0xa0,0xa4,0x4e,0xb8,0xa0,0xa5,0x3f,0xfb,0x20,0xa6, + 0x25,0x60,0x20,0xa7,0x27,0xc6,0x20,0xa8,0x2a,0x2c,0x20,0xa8,0xeb,0xf8,0xa0,0xaa, + 0x0,0xd3,0xa0,0xaa,0xd5,0x15,0x20,0xab,0xe9,0xf0,0x20,0xac,0xc7,0x6c,0x20,0xad, + 0xc9,0xd2,0x20,0xae,0xa7,0x4e,0x20,0xaf,0xa0,0x79,0xa0,0xb0,0x87,0x30,0x20,0xb1, + 0x92,0xd0,0xa0,0xb2,0x70,0x4c,0xa0,0xb3,0x72,0xb2,0xa0,0xb4,0x50,0x2e,0xa0,0xb5, + 0x49,0x5a,0x20,0xb6,0x30,0x10,0xa0,0xb7,0x32,0x76,0xa0,0xb8,0xf,0xf2,0xa0,0xb9, + 0x12,0x58,0xa0,0xb9,0xef,0xd4,0xa0,0xba,0xe9,0x0,0x20,0xbb,0xd8,0xf1,0x20,0xbc, + 0xdb,0x57,0x20,0xbd,0xb8,0xd3,0x20,0xbe,0xb1,0xfe,0xa0,0xbf,0x98,0xb5,0x20,0xc0, + 0x9b,0x1b,0x20,0xc1,0x78,0x97,0x20,0xc2,0x7a,0xfd,0x20,0xc3,0x58,0x79,0x20,0xc4, + 0x51,0xa4,0xa0,0xc5,0x38,0x5b,0x20,0xc6,0x3a,0xc1,0x20,0xc7,0x58,0xd6,0xa0,0xc7, + 0xda,0x9,0xa0,0xca,0x16,0x26,0x90,0xca,0x97,0x59,0x90,0xcb,0xd1,0x1e,0x90,0xcc, + 0x77,0x3b,0x90,0xcd,0xb1,0x0,0x90,0xce,0x60,0x58,0x10,0xcf,0x90,0xe2,0x90,0xd0, + 0x6e,0x5e,0x90,0xd1,0x72,0x16,0x10,0xd1,0xfb,0x32,0x10,0xd2,0x69,0xfe,0x20,0xd3, + 0x63,0x29,0xa0,0xd4,0x49,0xe0,0x20,0xd5,0x1e,0x21,0xa0,0xd5,0x42,0xfd,0x90,0xd5, + 0xdf,0xe0,0x10,0xd6,0x4e,0xac,0x20,0xd6,0xfe,0x3,0xa0,0xd8,0x2e,0x8e,0x20,0xd8, + 0xf9,0x95,0x20,0xda,0xe,0x70,0x20,0xda,0xeb,0xec,0x20,0xdb,0xe5,0x17,0xa0,0xdc, + 0xcb,0xce,0x20,0xdd,0xc4,0xf9,0xa0,0xde,0xb4,0xea,0xa0,0xdf,0xae,0x16,0x20,0xe0, + 0x94,0xcc,0xa0,0xe1,0x72,0x48,0xa0,0xe2,0x6b,0x74,0x20,0xe3,0x52,0x2a,0xa0,0xe4, + 0x54,0x90,0xa0,0xe5,0x32,0xc,0xa0,0xe6,0x3d,0xad,0x20,0xe7,0x1b,0x29,0x20,0xe8, + 0x14,0x54,0xa0,0xe8,0xfb,0xb,0x20,0xe9,0xfd,0x71,0x20,0xea,0xda,0xed,0x20,0xeb, + 0xdd,0x53,0x20,0xec,0xba,0xcf,0x20,0xed,0xb3,0xfa,0xa0,0xee,0x9a,0xb1,0x20,0xef, + 0x81,0x67,0xa0,0xf0,0x9f,0x7d,0x20,0xf1,0x61,0x49,0xa0,0xf2,0x7f,0x5f,0x20,0xf3, + 0x4a,0x66,0x20,0xf4,0x5f,0x41,0x20,0xf5,0x21,0xd,0xa0,0xf6,0x3f,0x23,0x20,0xf7, + 0x0,0xef,0xa0,0xf8,0x1f,0x5,0x20,0xf8,0xe0,0xd1,0xa0,0xf9,0xfe,0xe7,0x20,0xfa, + 0xc0,0xb3,0xa0,0xfb,0xe8,0x3,0xa0,0xfc,0x7b,0xab,0xa0,0xfd,0xc7,0xbb,0x70,0x3, + 0x70,0xc6,0x20,0x4,0x29,0x58,0x20,0x5,0x50,0xa8,0x20,0x6,0x9,0x3a,0x20,0x7, + 0x30,0x8a,0x20,0x7,0xe9,0x1c,0x20,0x9,0x10,0x6c,0x20,0x9,0xc8,0xfe,0x20,0xa, + 0xf0,0x4e,0x20,0xb,0xb2,0x1a,0xa0,0xc,0xd0,0x30,0x20,0xd,0x91,0xfc,0xa0,0xe, + 0xb0,0x12,0x20,0xf,0x71,0xde,0xa0,0x10,0x99,0x2e,0xa0,0x11,0x51,0xc0,0xa0,0x12, + 0x79,0x10,0xa0,0x13,0x31,0xa2,0xa0,0x14,0x58,0xf2,0xa0,0x15,0x23,0xeb,0x90,0x16, + 0x38,0xc6,0x90,0x17,0x3,0xcd,0x90,0x18,0x18,0xa8,0x90,0x18,0xe3,0xaf,0x90,0x19, + 0xf8,0x8a,0x90,0x1a,0xc3,0x91,0x90,0x1b,0xe1,0xa7,0x10,0x1c,0xac,0xae,0x10,0x1d, + 0xc1,0x89,0x10,0x1e,0x8c,0x90,0x10,0x1f,0xa1,0x6b,0x10,0x20,0x6c,0x72,0x10,0x21, + 0x81,0x4d,0x10,0x22,0x4c,0x54,0x10,0x23,0x61,0x2f,0x10,0x24,0x2c,0x36,0x10,0x25, + 0x4a,0x4b,0x90,0x26,0xc,0x18,0x10,0x27,0x2a,0x2d,0x90,0x27,0xf5,0x34,0x90,0x29, + 0xa,0xf,0x90,0x29,0xd5,0x16,0x90,0x2a,0xe9,0xf1,0x90,0x2b,0xb4,0xf8,0x90,0x2c, + 0xc9,0xd3,0x90,0x2d,0x94,0xda,0x90,0x2e,0xa9,0xb5,0x90,0x2f,0x74,0xbc,0x90,0x30, + 0x89,0x97,0x90,0x30,0xe7,0x24,0x0,0x31,0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33, + 0x3d,0xbb,0x10,0x34,0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36, + 0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a, + 0xbd,0x43,0x10,0x3b,0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e, + 0x86,0x41,0x90,0x3f,0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42, + 0x46,0x5,0x90,0x43,0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46, + 0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49, + 0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d, + 0x8e,0x8c,0x10,0x4e,0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51, + 0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55, + 0x17,0x4e,0x90,0x56,0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58, + 0xd7,0x12,0x90,0x59,0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c, + 0xa0,0x11,0x10,0x5d,0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60, + 0x5f,0xd5,0x10,0x61,0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64, + 0x1f,0x99,0x10,0x65,0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67, + 0xe8,0x97,0x90,0x68,0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b, + 0xa8,0x5b,0x90,0x6c,0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f, + 0x68,0x1f,0x90,0x70,0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73, + 0x31,0x1e,0x10,0x74,0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76, + 0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a, + 0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e, + 0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3, + 0x1,0x3,0x1,0x2,0x1,0x2,0x1,0x3,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0xff,0xff,0x95,0xa0,0x0,0x0,0xff,0xff,0xab,0xa0,0x1,0x4,0xff,0xff, - 0x9d,0x90,0x0,0x8,0xff,0xff,0xab,0xa0,0x1,0xc,0xff,0xff,0xab,0xa0,0x1,0x10, - 0x4c,0x4d,0x54,0x0,0x4d,0x44,0x54,0x0,0x4d,0x53,0x54,0x0,0x4d,0x57,0x54,0x0, - 0x4d,0x50,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x1,0x54,0x5a, - 0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x9b,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0xf8,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xff,0xff,0xff,0xff,0x88,0xde,0xce,0xe0,0xff,0xff,0xff,0xff,0x9e,0xb8, - 0xaf,0x90,0xff,0xff,0xff,0xff,0x9f,0xbb,0x7,0x80,0xff,0xff,0xff,0xff,0xa0,0x98, - 0x91,0x90,0xff,0xff,0xff,0xff,0xa0,0xd2,0x85,0x80,0xff,0xff,0xff,0xff,0xa2,0x8a, - 0xe8,0x90,0xff,0xff,0xff,0xff,0xa3,0x84,0x6,0x0,0xff,0xff,0xff,0xff,0xa4,0x6a, - 0xca,0x90,0xff,0xff,0xff,0xff,0xa5,0x35,0xc3,0x80,0xff,0xff,0xff,0xff,0xa6,0x53, - 0xe7,0x10,0xff,0xff,0xff,0xff,0xa7,0x15,0xa5,0x80,0xff,0xff,0xff,0xff,0xa8,0x33, - 0xc9,0x10,0xff,0xff,0xff,0xff,0xa8,0xfe,0xc2,0x0,0xff,0xff,0xff,0xff,0xcb,0x89, - 0xc,0x90,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x61, - 0x18,0x0,0xff,0xff,0xff,0xff,0xd5,0x55,0xe3,0x10,0xff,0xff,0xff,0xff,0xd6,0x20, - 0xdc,0x0,0xff,0xff,0xff,0xff,0xfa,0xf8,0x75,0x10,0xff,0xff,0xff,0xff,0xfb,0xe8, - 0x58,0x0,0xff,0xff,0xff,0xff,0xfe,0xb8,0x39,0x10,0xff,0xff,0xff,0xff,0xff,0xa8, - 0x1c,0x0,0x0,0x0,0x0,0x0,0x4,0x61,0x19,0x90,0x0,0x0,0x0,0x0,0x5,0x50, - 0xfc,0x80,0x0,0x0,0x0,0x0,0x6,0x40,0xfb,0x90,0x0,0x0,0x0,0x0,0x7,0x30, - 0xde,0x80,0x0,0x0,0x0,0x0,0x8,0x20,0xdd,0x90,0x0,0x0,0x0,0x0,0x9,0x10, - 0xc0,0x80,0x0,0x0,0x0,0x0,0xa,0x0,0xbf,0x90,0x0,0x0,0x0,0x0,0xa,0xf0, - 0xa2,0x80,0x0,0x0,0x0,0x0,0xb,0xe0,0xa1,0x90,0x0,0x0,0x0,0x0,0xc,0xd9, - 0xbf,0x0,0x0,0x0,0x0,0x0,0xd,0xc0,0x83,0x90,0x0,0x0,0x0,0x0,0xe,0xb9, - 0xa1,0x0,0x0,0x0,0x0,0x0,0xf,0xa9,0xa0,0x10,0x0,0x0,0x0,0x0,0x10,0x99, - 0x83,0x0,0x0,0x0,0x0,0x0,0x11,0x89,0x82,0x10,0x0,0x0,0x0,0x0,0x12,0x79, - 0x65,0x0,0x0,0x0,0x0,0x0,0x13,0x69,0x64,0x10,0x0,0x0,0x0,0x0,0x14,0x59, - 0x47,0x0,0x0,0x0,0x0,0x0,0x15,0x49,0x46,0x10,0x0,0x0,0x0,0x0,0x16,0x39, - 0x29,0x0,0x0,0x0,0x0,0x0,0x17,0x29,0x28,0x10,0x0,0x0,0x0,0x0,0x18,0x22, - 0x45,0x80,0x0,0x0,0x0,0x0,0x19,0x9,0xa,0x10,0x0,0x0,0x0,0x0,0x1a,0x2, - 0x27,0x80,0x0,0x0,0x0,0x0,0x1a,0xf2,0x26,0x90,0x0,0x0,0x0,0x0,0x1b,0xe2, - 0x9,0x80,0x0,0x0,0x0,0x0,0x1c,0xd2,0x8,0x90,0x0,0x0,0x0,0x0,0x1d,0xc1, - 0xeb,0x80,0x0,0x0,0x0,0x0,0x1e,0xb1,0xea,0x90,0x0,0x0,0x0,0x0,0x1f,0xa1, - 0xcd,0x80,0x0,0x0,0x0,0x0,0x20,0x76,0x1d,0x10,0x0,0x0,0x0,0x0,0x21,0x81, - 0xaf,0x80,0x0,0x0,0x0,0x0,0x22,0x55,0xff,0x10,0x0,0x0,0x0,0x0,0x23,0x6a, - 0xcc,0x0,0x0,0x0,0x0,0x0,0x24,0x35,0xe1,0x10,0x0,0x0,0x0,0x0,0x25,0x4a, - 0xae,0x0,0x0,0x0,0x0,0x0,0x26,0x15,0xc3,0x10,0x0,0x0,0x0,0x0,0x27,0x2a, - 0x90,0x0,0x0,0x0,0x0,0x0,0x27,0xfe,0xdf,0x90,0x0,0x0,0x0,0x0,0x29,0xa, - 0x72,0x0,0x0,0x0,0x0,0x0,0x29,0xde,0xc1,0x90,0x0,0x0,0x0,0x0,0x2a,0xea, - 0x54,0x0,0x0,0x0,0x0,0x0,0x2b,0xbe,0xa3,0x90,0x0,0x0,0x0,0x0,0x2c,0xd3, - 0x70,0x80,0x0,0x0,0x0,0x0,0x2d,0x9e,0x85,0x90,0x0,0x0,0x0,0x0,0x2e,0xb3, - 0x52,0x80,0x0,0x0,0x0,0x0,0x2f,0x7e,0x67,0x90,0x0,0x0,0x0,0x0,0x30,0x93, - 0x34,0x80,0x0,0x0,0x0,0x0,0x31,0x67,0x84,0x10,0x0,0x0,0x0,0x0,0x32,0x73, - 0x16,0x80,0x0,0x0,0x0,0x0,0x33,0x47,0x66,0x10,0x0,0x0,0x0,0x0,0x34,0x52, - 0xf8,0x80,0x0,0x0,0x0,0x0,0x35,0x27,0x48,0x10,0x0,0x0,0x0,0x0,0x36,0x32, - 0xda,0x80,0x0,0x0,0x0,0x0,0x37,0x7,0x2a,0x10,0x0,0x0,0x0,0x0,0x38,0x1b, - 0xf7,0x0,0x0,0x0,0x0,0x0,0x38,0xe7,0xc,0x10,0x0,0x0,0x0,0x0,0x39,0xfb, - 0xd9,0x0,0x0,0x0,0x0,0x0,0x3a,0xc6,0xee,0x10,0x0,0x0,0x0,0x0,0x3b,0xdb, - 0xbb,0x0,0x0,0x0,0x0,0x0,0x3c,0xb0,0xa,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb, - 0x9d,0x0,0x0,0x0,0x0,0x0,0x3e,0x8f,0xec,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b, - 0x7f,0x0,0x0,0x0,0x0,0x0,0x40,0x6f,0xce,0x90,0x0,0x0,0x0,0x0,0x41,0x84, - 0x9b,0x80,0x0,0x0,0x0,0x0,0x42,0x4f,0xb0,0x90,0x0,0x0,0x0,0x0,0x43,0x64, - 0x7d,0x80,0x0,0x0,0x0,0x0,0x44,0x2f,0x92,0x90,0x0,0x0,0x0,0x0,0x45,0x44, - 0x5f,0x80,0x0,0x0,0x0,0x0,0x45,0xf3,0xc5,0x10,0x0,0x0,0x0,0x0,0x47,0x2d, - 0x7c,0x0,0x0,0x0,0x0,0x0,0x47,0xd3,0xa7,0x10,0x0,0x0,0x0,0x0,0x49,0xd, - 0x5e,0x0,0x0,0x0,0x0,0x0,0x49,0xb3,0x89,0x10,0x0,0x0,0x0,0x0,0x4a,0xed, - 0x40,0x0,0x0,0x0,0x0,0x0,0x4b,0x9c,0xa5,0x90,0x0,0x0,0x0,0x0,0x4c,0xd6, - 0x5c,0x80,0x0,0x0,0x0,0x0,0x4d,0x7c,0x87,0x90,0x0,0x0,0x0,0x0,0x4e,0xb6, - 0x3e,0x80,0x0,0x0,0x0,0x0,0x4f,0x5c,0x69,0x90,0x0,0x0,0x0,0x0,0x50,0x96, - 0x20,0x80,0x0,0x0,0x0,0x0,0x51,0x3c,0x4b,0x90,0x0,0x0,0x0,0x0,0x52,0x76, - 0x2,0x80,0x0,0x0,0x0,0x0,0x53,0x1c,0x2d,0x90,0x0,0x0,0x0,0x0,0x54,0x55, - 0xe4,0x80,0x0,0x0,0x0,0x0,0x54,0xfc,0xf,0x90,0x0,0x0,0x0,0x0,0x56,0x35, - 0xc6,0x80,0x0,0x0,0x0,0x0,0x56,0xe5,0x2c,0x10,0x0,0x0,0x0,0x0,0x58,0x1e, - 0xe3,0x0,0x0,0x0,0x0,0x0,0x58,0xc5,0xe,0x10,0x0,0x0,0x0,0x0,0x59,0xfe, - 0xc5,0x0,0x0,0x0,0x0,0x0,0x5a,0xa4,0xf0,0x10,0x0,0x0,0x0,0x0,0x5b,0xde, - 0xa7,0x0,0x0,0x0,0x0,0x0,0x5c,0x84,0xd2,0x10,0x0,0x0,0x0,0x0,0x5d,0xbe, - 0x89,0x0,0x0,0x0,0x0,0x0,0x5e,0x64,0xb4,0x10,0x0,0x0,0x0,0x0,0x5f,0x9e, - 0x6b,0x0,0x0,0x0,0x0,0x0,0x60,0x4d,0xd0,0x90,0x0,0x0,0x0,0x0,0x61,0x87, - 0x87,0x80,0x0,0x0,0x0,0x0,0x62,0x2d,0xb2,0x90,0x0,0x0,0x0,0x0,0x63,0x67, - 0x69,0x80,0x0,0x0,0x0,0x0,0x64,0xd,0x94,0x90,0x0,0x0,0x0,0x0,0x65,0x47, - 0x4b,0x80,0x0,0x0,0x0,0x0,0x65,0xed,0x76,0x90,0x0,0x0,0x0,0x0,0x67,0x27, - 0x2d,0x80,0x0,0x0,0x0,0x0,0x67,0xcd,0x58,0x90,0x0,0x0,0x0,0x0,0x69,0x7, - 0xf,0x80,0x0,0x0,0x0,0x0,0x69,0xad,0x3a,0x90,0x0,0x0,0x0,0x0,0x6a,0xe6, - 0xf1,0x80,0x0,0x0,0x0,0x0,0x6b,0x96,0x57,0x10,0x0,0x0,0x0,0x0,0x6c,0xd0, - 0xe,0x0,0x0,0x0,0x0,0x0,0x6d,0x76,0x39,0x10,0x0,0x0,0x0,0x0,0x6e,0xaf, - 0xf0,0x0,0x0,0x0,0x0,0x0,0x6f,0x56,0x1b,0x10,0x0,0x0,0x0,0x0,0x70,0x8f, - 0xd2,0x0,0x0,0x0,0x0,0x0,0x71,0x35,0xfd,0x10,0x0,0x0,0x0,0x0,0x72,0x6f, - 0xb4,0x0,0x0,0x0,0x0,0x0,0x73,0x15,0xdf,0x10,0x0,0x0,0x0,0x0,0x74,0x4f, - 0x96,0x0,0x0,0x0,0x0,0x0,0x74,0xfe,0xfb,0x90,0x0,0x0,0x0,0x0,0x76,0x38, - 0xb2,0x80,0x0,0x0,0x0,0x0,0x76,0xde,0xdd,0x90,0x0,0x0,0x0,0x0,0x78,0x18, - 0x94,0x80,0x0,0x0,0x0,0x0,0x78,0xbe,0xbf,0x90,0x0,0x0,0x0,0x0,0x79,0xf8, - 0x76,0x80,0x0,0x0,0x0,0x0,0x7a,0x9e,0xa1,0x90,0x0,0x0,0x0,0x0,0x7b,0xd8, - 0x58,0x80,0x0,0x0,0x0,0x0,0x7c,0x7e,0x83,0x90,0x0,0x0,0x0,0x0,0x7d,0xb8, - 0x3a,0x80,0x0,0x0,0x0,0x0,0x7e,0x5e,0x65,0x90,0x0,0x0,0x0,0x0,0x7f,0x98, - 0x1c,0x80,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x3,0x4,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x1,0x2,0x1,0x4,0x6,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x7,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0xff,0xff,0xff,0xb5,0x0,0x0, + 0x0,0x0,0xe,0x10,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x1c,0x20, + 0x1,0xc,0x0,0x0,0xe,0x10,0x0,0x4,0x0,0x0,0xe,0x10,0x1,0x4,0x0,0x0, + 0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x42,0x53, + 0x54,0x0,0x47,0x4d,0x54,0x0,0x42,0x44,0x53,0x54,0x0,0x0,0x1,0x1,0x1,0x0, + 0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x54,0x5a,0x69,0x66,0x32, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf4,0x0, + 0x0,0x0,0x8,0x0,0x0,0x0,0x11,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff, + 0xff,0xff,0xff,0x1a,0x5d,0x9,0xcb,0xff,0xff,0xff,0xff,0x9b,0x26,0xad,0xa0,0xff, + 0xff,0xff,0xff,0x9b,0xd6,0x5,0x20,0xff,0xff,0xff,0xff,0x9c,0xcf,0x30,0xa0,0xff, + 0xff,0xff,0xff,0x9d,0xa4,0xc3,0xa0,0xff,0xff,0xff,0xff,0x9e,0x9c,0x9d,0xa0,0xff, + 0xff,0xff,0xff,0x9f,0x97,0x1a,0xa0,0xff,0xff,0xff,0xff,0xa0,0x85,0xba,0x20,0xff, + 0xff,0xff,0xff,0xa1,0x76,0xfc,0xa0,0xff,0xff,0xff,0xff,0xa2,0x65,0x9c,0x20,0xff, + 0xff,0xff,0xff,0xa3,0x7b,0xc8,0xa0,0xff,0xff,0xff,0xff,0xa4,0x4e,0xb8,0xa0,0xff, + 0xff,0xff,0xff,0xa5,0x3f,0xfb,0x20,0xff,0xff,0xff,0xff,0xa6,0x25,0x60,0x20,0xff, + 0xff,0xff,0xff,0xa7,0x27,0xc6,0x20,0xff,0xff,0xff,0xff,0xa8,0x2a,0x2c,0x20,0xff, + 0xff,0xff,0xff,0xa8,0xeb,0xf8,0xa0,0xff,0xff,0xff,0xff,0xaa,0x0,0xd3,0xa0,0xff, + 0xff,0xff,0xff,0xaa,0xd5,0x15,0x20,0xff,0xff,0xff,0xff,0xab,0xe9,0xf0,0x20,0xff, + 0xff,0xff,0xff,0xac,0xc7,0x6c,0x20,0xff,0xff,0xff,0xff,0xad,0xc9,0xd2,0x20,0xff, + 0xff,0xff,0xff,0xae,0xa7,0x4e,0x20,0xff,0xff,0xff,0xff,0xaf,0xa0,0x79,0xa0,0xff, + 0xff,0xff,0xff,0xb0,0x87,0x30,0x20,0xff,0xff,0xff,0xff,0xb1,0x92,0xd0,0xa0,0xff, + 0xff,0xff,0xff,0xb2,0x70,0x4c,0xa0,0xff,0xff,0xff,0xff,0xb3,0x72,0xb2,0xa0,0xff, + 0xff,0xff,0xff,0xb4,0x50,0x2e,0xa0,0xff,0xff,0xff,0xff,0xb5,0x49,0x5a,0x20,0xff, + 0xff,0xff,0xff,0xb6,0x30,0x10,0xa0,0xff,0xff,0xff,0xff,0xb7,0x32,0x76,0xa0,0xff, + 0xff,0xff,0xff,0xb8,0xf,0xf2,0xa0,0xff,0xff,0xff,0xff,0xb9,0x12,0x58,0xa0,0xff, + 0xff,0xff,0xff,0xb9,0xef,0xd4,0xa0,0xff,0xff,0xff,0xff,0xba,0xe9,0x0,0x20,0xff, + 0xff,0xff,0xff,0xbb,0xd8,0xf1,0x20,0xff,0xff,0xff,0xff,0xbc,0xdb,0x57,0x20,0xff, + 0xff,0xff,0xff,0xbd,0xb8,0xd3,0x20,0xff,0xff,0xff,0xff,0xbe,0xb1,0xfe,0xa0,0xff, + 0xff,0xff,0xff,0xbf,0x98,0xb5,0x20,0xff,0xff,0xff,0xff,0xc0,0x9b,0x1b,0x20,0xff, + 0xff,0xff,0xff,0xc1,0x78,0x97,0x20,0xff,0xff,0xff,0xff,0xc2,0x7a,0xfd,0x20,0xff, + 0xff,0xff,0xff,0xc3,0x58,0x79,0x20,0xff,0xff,0xff,0xff,0xc4,0x51,0xa4,0xa0,0xff, + 0xff,0xff,0xff,0xc5,0x38,0x5b,0x20,0xff,0xff,0xff,0xff,0xc6,0x3a,0xc1,0x20,0xff, + 0xff,0xff,0xff,0xc7,0x58,0xd6,0xa0,0xff,0xff,0xff,0xff,0xc7,0xda,0x9,0xa0,0xff, + 0xff,0xff,0xff,0xca,0x16,0x26,0x90,0xff,0xff,0xff,0xff,0xca,0x97,0x59,0x90,0xff, + 0xff,0xff,0xff,0xcb,0xd1,0x1e,0x90,0xff,0xff,0xff,0xff,0xcc,0x77,0x3b,0x90,0xff, + 0xff,0xff,0xff,0xcd,0xb1,0x0,0x90,0xff,0xff,0xff,0xff,0xce,0x60,0x58,0x10,0xff, + 0xff,0xff,0xff,0xcf,0x90,0xe2,0x90,0xff,0xff,0xff,0xff,0xd0,0x6e,0x5e,0x90,0xff, + 0xff,0xff,0xff,0xd1,0x72,0x16,0x10,0xff,0xff,0xff,0xff,0xd1,0xfb,0x32,0x10,0xff, + 0xff,0xff,0xff,0xd2,0x69,0xfe,0x20,0xff,0xff,0xff,0xff,0xd3,0x63,0x29,0xa0,0xff, + 0xff,0xff,0xff,0xd4,0x49,0xe0,0x20,0xff,0xff,0xff,0xff,0xd5,0x1e,0x21,0xa0,0xff, + 0xff,0xff,0xff,0xd5,0x42,0xfd,0x90,0xff,0xff,0xff,0xff,0xd5,0xdf,0xe0,0x10,0xff, + 0xff,0xff,0xff,0xd6,0x4e,0xac,0x20,0xff,0xff,0xff,0xff,0xd6,0xfe,0x3,0xa0,0xff, + 0xff,0xff,0xff,0xd8,0x2e,0x8e,0x20,0xff,0xff,0xff,0xff,0xd8,0xf9,0x95,0x20,0xff, + 0xff,0xff,0xff,0xda,0xe,0x70,0x20,0xff,0xff,0xff,0xff,0xda,0xeb,0xec,0x20,0xff, + 0xff,0xff,0xff,0xdb,0xe5,0x17,0xa0,0xff,0xff,0xff,0xff,0xdc,0xcb,0xce,0x20,0xff, + 0xff,0xff,0xff,0xdd,0xc4,0xf9,0xa0,0xff,0xff,0xff,0xff,0xde,0xb4,0xea,0xa0,0xff, + 0xff,0xff,0xff,0xdf,0xae,0x16,0x20,0xff,0xff,0xff,0xff,0xe0,0x94,0xcc,0xa0,0xff, + 0xff,0xff,0xff,0xe1,0x72,0x48,0xa0,0xff,0xff,0xff,0xff,0xe2,0x6b,0x74,0x20,0xff, + 0xff,0xff,0xff,0xe3,0x52,0x2a,0xa0,0xff,0xff,0xff,0xff,0xe4,0x54,0x90,0xa0,0xff, + 0xff,0xff,0xff,0xe5,0x32,0xc,0xa0,0xff,0xff,0xff,0xff,0xe6,0x3d,0xad,0x20,0xff, + 0xff,0xff,0xff,0xe7,0x1b,0x29,0x20,0xff,0xff,0xff,0xff,0xe8,0x14,0x54,0xa0,0xff, + 0xff,0xff,0xff,0xe8,0xfb,0xb,0x20,0xff,0xff,0xff,0xff,0xe9,0xfd,0x71,0x20,0xff, + 0xff,0xff,0xff,0xea,0xda,0xed,0x20,0xff,0xff,0xff,0xff,0xeb,0xdd,0x53,0x20,0xff, + 0xff,0xff,0xff,0xec,0xba,0xcf,0x20,0xff,0xff,0xff,0xff,0xed,0xb3,0xfa,0xa0,0xff, + 0xff,0xff,0xff,0xee,0x9a,0xb1,0x20,0xff,0xff,0xff,0xff,0xef,0x81,0x67,0xa0,0xff, + 0xff,0xff,0xff,0xf0,0x9f,0x7d,0x20,0xff,0xff,0xff,0xff,0xf1,0x61,0x49,0xa0,0xff, + 0xff,0xff,0xff,0xf2,0x7f,0x5f,0x20,0xff,0xff,0xff,0xff,0xf3,0x4a,0x66,0x20,0xff, + 0xff,0xff,0xff,0xf4,0x5f,0x41,0x20,0xff,0xff,0xff,0xff,0xf5,0x21,0xd,0xa0,0xff, + 0xff,0xff,0xff,0xf6,0x3f,0x23,0x20,0xff,0xff,0xff,0xff,0xf7,0x0,0xef,0xa0,0xff, + 0xff,0xff,0xff,0xf8,0x1f,0x5,0x20,0xff,0xff,0xff,0xff,0xf8,0xe0,0xd1,0xa0,0xff, + 0xff,0xff,0xff,0xf9,0xfe,0xe7,0x20,0xff,0xff,0xff,0xff,0xfa,0xc0,0xb3,0xa0,0xff, + 0xff,0xff,0xff,0xfb,0xe8,0x3,0xa0,0xff,0xff,0xff,0xff,0xfc,0x7b,0xab,0xa0,0xff, + 0xff,0xff,0xff,0xfd,0xc7,0xbb,0x70,0x0,0x0,0x0,0x0,0x3,0x70,0xc6,0x20,0x0, + 0x0,0x0,0x0,0x4,0x29,0x58,0x20,0x0,0x0,0x0,0x0,0x5,0x50,0xa8,0x20,0x0, + 0x0,0x0,0x0,0x6,0x9,0x3a,0x20,0x0,0x0,0x0,0x0,0x7,0x30,0x8a,0x20,0x0, + 0x0,0x0,0x0,0x7,0xe9,0x1c,0x20,0x0,0x0,0x0,0x0,0x9,0x10,0x6c,0x20,0x0, + 0x0,0x0,0x0,0x9,0xc8,0xfe,0x20,0x0,0x0,0x0,0x0,0xa,0xf0,0x4e,0x20,0x0, + 0x0,0x0,0x0,0xb,0xb2,0x1a,0xa0,0x0,0x0,0x0,0x0,0xc,0xd0,0x30,0x20,0x0, + 0x0,0x0,0x0,0xd,0x91,0xfc,0xa0,0x0,0x0,0x0,0x0,0xe,0xb0,0x12,0x20,0x0, + 0x0,0x0,0x0,0xf,0x71,0xde,0xa0,0x0,0x0,0x0,0x0,0x10,0x99,0x2e,0xa0,0x0, + 0x0,0x0,0x0,0x11,0x51,0xc0,0xa0,0x0,0x0,0x0,0x0,0x12,0x79,0x10,0xa0,0x0, + 0x0,0x0,0x0,0x13,0x31,0xa2,0xa0,0x0,0x0,0x0,0x0,0x14,0x58,0xf2,0xa0,0x0, + 0x0,0x0,0x0,0x15,0x23,0xeb,0x90,0x0,0x0,0x0,0x0,0x16,0x38,0xc6,0x90,0x0, + 0x0,0x0,0x0,0x17,0x3,0xcd,0x90,0x0,0x0,0x0,0x0,0x18,0x18,0xa8,0x90,0x0, + 0x0,0x0,0x0,0x18,0xe3,0xaf,0x90,0x0,0x0,0x0,0x0,0x19,0xf8,0x8a,0x90,0x0, + 0x0,0x0,0x0,0x1a,0xc3,0x91,0x90,0x0,0x0,0x0,0x0,0x1b,0xe1,0xa7,0x10,0x0, + 0x0,0x0,0x0,0x1c,0xac,0xae,0x10,0x0,0x0,0x0,0x0,0x1d,0xc1,0x89,0x10,0x0, + 0x0,0x0,0x0,0x1e,0x8c,0x90,0x10,0x0,0x0,0x0,0x0,0x1f,0xa1,0x6b,0x10,0x0, + 0x0,0x0,0x0,0x20,0x6c,0x72,0x10,0x0,0x0,0x0,0x0,0x21,0x81,0x4d,0x10,0x0, + 0x0,0x0,0x0,0x22,0x4c,0x54,0x10,0x0,0x0,0x0,0x0,0x23,0x61,0x2f,0x10,0x0, + 0x0,0x0,0x0,0x24,0x2c,0x36,0x10,0x0,0x0,0x0,0x0,0x25,0x4a,0x4b,0x90,0x0, + 0x0,0x0,0x0,0x26,0xc,0x18,0x10,0x0,0x0,0x0,0x0,0x27,0x2a,0x2d,0x90,0x0, + 0x0,0x0,0x0,0x27,0xf5,0x34,0x90,0x0,0x0,0x0,0x0,0x29,0xa,0xf,0x90,0x0, + 0x0,0x0,0x0,0x29,0xd5,0x16,0x90,0x0,0x0,0x0,0x0,0x2a,0xe9,0xf1,0x90,0x0, + 0x0,0x0,0x0,0x2b,0xb4,0xf8,0x90,0x0,0x0,0x0,0x0,0x2c,0xc9,0xd3,0x90,0x0, + 0x0,0x0,0x0,0x2d,0x94,0xda,0x90,0x0,0x0,0x0,0x0,0x2e,0xa9,0xb5,0x90,0x0, + 0x0,0x0,0x0,0x2f,0x74,0xbc,0x90,0x0,0x0,0x0,0x0,0x30,0x89,0x97,0x90,0x0, + 0x0,0x0,0x0,0x30,0xe7,0x24,0x0,0x0,0x0,0x0,0x0,0x31,0x5d,0xd9,0x10,0x0, + 0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d,0xbb,0x10,0x0, + 0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d,0x9d,0x10,0x0, + 0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd,0x7f,0x10,0x0, + 0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd,0x61,0x10,0x0, + 0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd,0x43,0x10,0x0, + 0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f,0x90,0x0, + 0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86,0x41,0x90,0x0, + 0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66,0x23,0x90,0x0, + 0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46,0x5,0x90,0x0, + 0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25,0xe7,0x90,0x0, + 0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5,0xc9,0x90,0x0, + 0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee,0xe6,0x10,0x0, + 0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce,0xc8,0x10,0x0, + 0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae,0xaa,0x10,0x0, + 0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c,0x10,0x0, + 0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e,0x10,0x0, + 0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57,0x8a,0x90,0x0, + 0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37,0x6c,0x90,0x0, + 0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17,0x4e,0x90,0x0, + 0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7,0x30,0x90,0x0, + 0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7,0x12,0x90,0x0, + 0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4,0x90,0x0, + 0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0,0x11,0x10,0x0, + 0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3,0x10,0x0, + 0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f,0xd5,0x10,0x0, + 0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f,0xb7,0x10,0x0, + 0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f,0x99,0x10,0x0, + 0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8,0xb5,0x90,0x0, + 0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8,0x97,0x90,0x0, + 0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8,0x79,0x90,0x0, + 0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b,0x90,0x0, + 0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88,0x3d,0x90,0x0, + 0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68,0x1f,0x90,0x0, + 0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51,0x3c,0x10,0x0, + 0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31,0x1e,0x10,0x0, + 0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11,0x0,0x10,0x0, + 0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0,0xe2,0x10,0x0, + 0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0,0xc4,0x10,0x0, + 0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6,0x10,0x0, + 0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99,0xc2,0x90,0x0, + 0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79,0xa4,0x90,0x0, + 0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x3,0x1,0x3,0x1,0x3,0x1, + 0x3,0x1,0x3,0x1,0x2,0x1,0x2,0x1,0x3,0x1,0x2,0x1,0x2,0x1,0x2,0x1, 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0x95, - 0xa0,0x0,0x0,0xff,0xff,0xab,0xa0,0x1,0x4,0xff,0xff,0x9d,0x90,0x0,0x8,0xff, - 0xff,0xab,0xa0,0x1,0xc,0xff,0xff,0xab,0xa0,0x1,0x10,0x4c,0x4d,0x54,0x0,0x4d, - 0x44,0x54,0x0,0x4d,0x53,0x54,0x0,0x4d,0x57,0x54,0x0,0x4d,0x50,0x54,0x0,0x0, - 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x1,0xa,0x4d,0x53,0x54,0x37,0x4d,0x44, - 0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30, + 0x2,0x1,0x2,0x1,0x4,0x6,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x7,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0xff,0xff,0xff,0xb5,0x0, + 0x0,0x0,0x0,0xe,0x10,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x1c, + 0x20,0x1,0xc,0x0,0x0,0xe,0x10,0x0,0x4,0x0,0x0,0xe,0x10,0x1,0x4,0x0, + 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x42, + 0x53,0x54,0x0,0x47,0x4d,0x54,0x0,0x42,0x44,0x53,0x54,0x0,0x0,0x1,0x1,0x1, + 0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0xa,0x47,0x4d,0x54, + 0x30,0x42,0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2f,0x31,0x2c,0x4d,0x31, + 0x30,0x2e,0x35,0x2e,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Volgograd + 0x0,0x0,0x4,0x8f, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x41,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x10,0x80,0x0,0x0,0x0,0xa1, + 0xf5,0x46,0xdc,0xb5,0xa4,0xb,0x50,0x15,0x27,0x99,0xc0,0x16,0x18,0xce,0x30,0x17, + 0x8,0xcd,0x40,0x17,0xfa,0x1,0xb0,0x18,0xea,0x0,0xc0,0x19,0xdb,0x35,0x30,0x1a, + 0xcc,0x85,0xc0,0x1b,0xbc,0x92,0xe0,0x1c,0xac,0x83,0xe0,0x1d,0x9c,0x74,0xe0,0x1e, + 0x8c,0x65,0xe0,0x1f,0x7c,0x56,0xe0,0x20,0x6c,0x47,0xe0,0x21,0x5c,0x38,0xe0,0x22, + 0x4c,0x29,0xe0,0x23,0x3c,0x28,0xf0,0x24,0x2c,0x19,0xf0,0x25,0x1c,0xa,0xf0,0x26, + 0xb,0xfb,0xf0,0x27,0x5,0x27,0x70,0x27,0xf5,0x18,0x70,0x29,0xd4,0xec,0x60,0x2a, + 0xc4,0xeb,0x70,0x2b,0xb4,0xdc,0x70,0x2c,0xa4,0xcd,0x70,0x2d,0x94,0xbe,0x70,0x2e, + 0x84,0xaf,0x70,0x2f,0x74,0xa0,0x70,0x30,0x64,0x91,0x70,0x31,0x5d,0xbc,0xf0,0x32, + 0x72,0x97,0xf0,0x33,0x3d,0x9e,0xf0,0x34,0x52,0x79,0xf0,0x35,0x1d,0x80,0xf0,0x36, + 0x32,0x5b,0xf0,0x36,0xfd,0x62,0xf0,0x38,0x1b,0x78,0x70,0x38,0xdd,0x44,0xf0,0x39, + 0xfb,0x5a,0x70,0x3a,0xbd,0x26,0xf0,0x3b,0xdb,0x3c,0x70,0x3c,0xa6,0x43,0x70,0x3d, + 0xbb,0x1e,0x70,0x3e,0x86,0x25,0x70,0x3f,0x9b,0x0,0x70,0x40,0x66,0x7,0x70,0x41, + 0x84,0x1c,0xf0,0x42,0x45,0xe9,0x70,0x43,0x63,0xfe,0xf0,0x44,0x25,0xcb,0x70,0x45, + 0x43,0xe0,0xf0,0x46,0x5,0xad,0x70,0x47,0x23,0xc2,0xf0,0x47,0xee,0xc9,0xf0,0x49, + 0x3,0xa4,0xf0,0x49,0xce,0xab,0xf0,0x4a,0xe3,0x86,0xf0,0x4b,0xae,0x8d,0xf0,0x4c, + 0xcc,0xa3,0x70,0x4d,0x8e,0x6f,0xf0,0x54,0x4c,0x1d,0x60,0x7f,0xff,0xff,0xff,0x0, + 0x1,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x6,0x7,0x6,0x7,0x6,0x7,0x4,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, + 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, + 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x4,0x7,0x7, + 0x0,0x0,0x29,0xa4,0x0,0x0,0x0,0x0,0x2a,0x30,0x0,0x4,0x0,0x0,0x38,0x40, + 0x0,0x8,0x0,0x0,0x46,0x50,0x1,0xc,0x0,0x0,0x38,0x40,0x0,0x8,0x0,0x0, + 0x46,0x50,0x1,0xc,0x0,0x0,0x38,0x40,0x1,0x8,0x0,0x0,0x2a,0x30,0x0,0x4, + 0x4c,0x4d,0x54,0x0,0x2b,0x30,0x33,0x0,0x2b,0x30,0x34,0x0,0x2b,0x30,0x35,0x0, + 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x41,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x10,0xf8,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xa1,0xf5,0x46,0xdc,0xff,0xff,0xff,0xff, + 0xb5,0xa4,0xb,0x50,0x0,0x0,0x0,0x0,0x15,0x27,0x99,0xc0,0x0,0x0,0x0,0x0, + 0x16,0x18,0xce,0x30,0x0,0x0,0x0,0x0,0x17,0x8,0xcd,0x40,0x0,0x0,0x0,0x0, + 0x17,0xfa,0x1,0xb0,0x0,0x0,0x0,0x0,0x18,0xea,0x0,0xc0,0x0,0x0,0x0,0x0, + 0x19,0xdb,0x35,0x30,0x0,0x0,0x0,0x0,0x1a,0xcc,0x85,0xc0,0x0,0x0,0x0,0x0, + 0x1b,0xbc,0x92,0xe0,0x0,0x0,0x0,0x0,0x1c,0xac,0x83,0xe0,0x0,0x0,0x0,0x0, + 0x1d,0x9c,0x74,0xe0,0x0,0x0,0x0,0x0,0x1e,0x8c,0x65,0xe0,0x0,0x0,0x0,0x0, + 0x1f,0x7c,0x56,0xe0,0x0,0x0,0x0,0x0,0x20,0x6c,0x47,0xe0,0x0,0x0,0x0,0x0, + 0x21,0x5c,0x38,0xe0,0x0,0x0,0x0,0x0,0x22,0x4c,0x29,0xe0,0x0,0x0,0x0,0x0, + 0x23,0x3c,0x28,0xf0,0x0,0x0,0x0,0x0,0x24,0x2c,0x19,0xf0,0x0,0x0,0x0,0x0, + 0x25,0x1c,0xa,0xf0,0x0,0x0,0x0,0x0,0x26,0xb,0xfb,0xf0,0x0,0x0,0x0,0x0, + 0x27,0x5,0x27,0x70,0x0,0x0,0x0,0x0,0x27,0xf5,0x18,0x70,0x0,0x0,0x0,0x0, + 0x29,0xd4,0xec,0x60,0x0,0x0,0x0,0x0,0x2a,0xc4,0xeb,0x70,0x0,0x0,0x0,0x0, + 0x2b,0xb4,0xdc,0x70,0x0,0x0,0x0,0x0,0x2c,0xa4,0xcd,0x70,0x0,0x0,0x0,0x0, + 0x2d,0x94,0xbe,0x70,0x0,0x0,0x0,0x0,0x2e,0x84,0xaf,0x70,0x0,0x0,0x0,0x0, + 0x2f,0x74,0xa0,0x70,0x0,0x0,0x0,0x0,0x30,0x64,0x91,0x70,0x0,0x0,0x0,0x0, + 0x31,0x5d,0xbc,0xf0,0x0,0x0,0x0,0x0,0x32,0x72,0x97,0xf0,0x0,0x0,0x0,0x0, + 0x33,0x3d,0x9e,0xf0,0x0,0x0,0x0,0x0,0x34,0x52,0x79,0xf0,0x0,0x0,0x0,0x0, + 0x35,0x1d,0x80,0xf0,0x0,0x0,0x0,0x0,0x36,0x32,0x5b,0xf0,0x0,0x0,0x0,0x0, + 0x36,0xfd,0x62,0xf0,0x0,0x0,0x0,0x0,0x38,0x1b,0x78,0x70,0x0,0x0,0x0,0x0, + 0x38,0xdd,0x44,0xf0,0x0,0x0,0x0,0x0,0x39,0xfb,0x5a,0x70,0x0,0x0,0x0,0x0, + 0x3a,0xbd,0x26,0xf0,0x0,0x0,0x0,0x0,0x3b,0xdb,0x3c,0x70,0x0,0x0,0x0,0x0, + 0x3c,0xa6,0x43,0x70,0x0,0x0,0x0,0x0,0x3d,0xbb,0x1e,0x70,0x0,0x0,0x0,0x0, + 0x3e,0x86,0x25,0x70,0x0,0x0,0x0,0x0,0x3f,0x9b,0x0,0x70,0x0,0x0,0x0,0x0, + 0x40,0x66,0x7,0x70,0x0,0x0,0x0,0x0,0x41,0x84,0x1c,0xf0,0x0,0x0,0x0,0x0, + 0x42,0x45,0xe9,0x70,0x0,0x0,0x0,0x0,0x43,0x63,0xfe,0xf0,0x0,0x0,0x0,0x0, + 0x44,0x25,0xcb,0x70,0x0,0x0,0x0,0x0,0x45,0x43,0xe0,0xf0,0x0,0x0,0x0,0x0, + 0x46,0x5,0xad,0x70,0x0,0x0,0x0,0x0,0x47,0x23,0xc2,0xf0,0x0,0x0,0x0,0x0, + 0x47,0xee,0xc9,0xf0,0x0,0x0,0x0,0x0,0x49,0x3,0xa4,0xf0,0x0,0x0,0x0,0x0, + 0x49,0xce,0xab,0xf0,0x0,0x0,0x0,0x0,0x4a,0xe3,0x86,0xf0,0x0,0x0,0x0,0x0, + 0x4b,0xae,0x8d,0xf0,0x0,0x0,0x0,0x0,0x4c,0xcc,0xa3,0x70,0x0,0x0,0x0,0x0, + 0x4d,0x8e,0x6f,0xf0,0x0,0x0,0x0,0x0,0x54,0x4c,0x1d,0x60,0x0,0x0,0x0,0x0, + 0x7f,0xff,0xff,0xff,0x0,0x1,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x6,0x7,0x6,0x7,0x6,0x7,0x4,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x4,0x7,0x7,0x0,0x0,0x29,0xa4,0x0,0x0,0x0,0x0,0x2a,0x30,0x0, + 0x4,0x0,0x0,0x38,0x40,0x0,0x8,0x0,0x0,0x46,0x50,0x1,0xc,0x0,0x0,0x38, + 0x40,0x0,0x8,0x0,0x0,0x46,0x50,0x1,0xc,0x0,0x0,0x38,0x40,0x1,0x8,0x0, + 0x0,0x2a,0x30,0x0,0x4,0x4c,0x4d,0x54,0x0,0x2b,0x30,0x33,0x0,0x2b,0x30,0x34, + 0x0,0x2b,0x30,0x35,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2b,0x30,0x33,0x3e,0x2d,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Zaporozhye + 0x0,0x0,0x8,0x43, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x7a,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x24,0x80,0x0,0x0,0x0,0xaa, + 0x19,0xa3,0x30,0xb5,0xa4,0x19,0x60,0xca,0xaa,0xe7,0xd0,0xcc,0xe7,0x4b,0x10,0xcd, + 0xa9,0x17,0x90,0xce,0xa2,0x43,0x10,0xce,0xbd,0xd6,0x70,0x15,0x27,0xa7,0xd0,0x16, + 0x18,0xdc,0x40,0x17,0x8,0xdb,0x50,0x17,0xfa,0xf,0xc0,0x18,0xea,0xe,0xd0,0x19, + 0xdb,0x43,0x40,0x1a,0xcc,0x93,0xd0,0x1b,0xbc,0xa0,0xf0,0x1c,0xac,0x91,0xf0,0x1d, + 0x9c,0x82,0xf0,0x1e,0x8c,0x73,0xf0,0x1f,0x7c,0x64,0xf0,0x20,0x6c,0x55,0xf0,0x21, + 0x5c,0x46,0xf0,0x22,0x4c,0x37,0xf0,0x23,0x3c,0x28,0xf0,0x24,0x2c,0x19,0xf0,0x25, + 0x1c,0xa,0xf0,0x26,0xb,0xfb,0xf0,0x27,0x5,0x27,0x70,0x27,0xf5,0x18,0x70,0x28, + 0xe4,0xed,0x50,0x29,0xd4,0xec,0x60,0x2a,0xc4,0xcf,0x50,0x2b,0xb4,0xce,0x60,0x2c, + 0xa4,0xb1,0x50,0x2d,0x94,0xb0,0x60,0x2e,0x84,0x93,0x50,0x2f,0x74,0xbc,0x90,0x30, + 0x64,0xad,0x90,0x31,0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34, + 0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38, + 0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b, + 0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f, + 0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43, + 0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47, + 0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a, + 0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e, + 0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52, + 0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56, + 0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59, + 0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d, + 0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61, + 0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65, + 0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68, + 0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c, + 0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70, + 0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74, + 0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78, + 0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b, + 0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f, + 0x8e,0x7f,0x90,0x1,0x2,0x3,0x6,0x4,0x5,0x4,0x3,0x7,0x3,0x7,0x3,0x7, + 0x3,0x7,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0xa, + 0x2,0xa,0x2,0xa,0x2,0xa,0x2,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb, + 0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb, + 0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb, + 0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb, + 0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb, + 0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0x0,0x0,0x20, + 0xf8,0x0,0x0,0x0,0x0,0x20,0xd0,0x0,0x4,0x0,0x0,0x1c,0x20,0x0,0xa,0x0, + 0x0,0x2a,0x30,0x0,0xe,0x0,0x0,0xe,0x10,0x0,0x12,0x0,0x0,0x1c,0x20,0x1, + 0x16,0x0,0x0,0x1c,0x20,0x1,0x16,0x0,0x0,0x38,0x40,0x1,0x1b,0x0,0x0,0x2a, + 0x30,0x0,0xe,0x0,0x0,0x38,0x40,0x1,0x1b,0x0,0x0,0x2a,0x30,0x1,0x1f,0x0, + 0x0,0x2a,0x30,0x1,0x1f,0x0,0x0,0x1c,0x20,0x0,0xa,0x4c,0x4d,0x54,0x0,0x2b, + 0x30,0x32,0x32,0x30,0x0,0x45,0x45,0x54,0x0,0x4d,0x53,0x4b,0x0,0x43,0x45,0x54, + 0x0,0x43,0x45,0x53,0x54,0x0,0x4d,0x53,0x44,0x0,0x45,0x45,0x53,0x54,0x0,0x0, + 0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x1,0x1,0x0,0x1,0x1,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x54,0x5a,0x69,0x66,0x32,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xd,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7b,0x0,0x0,0x0, + 0xd,0x0,0x0,0x0,0x24,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff, + 0xff,0x56,0xb6,0xc3,0x8,0xff,0xff,0xff,0xff,0xaa,0x19,0xa3,0x30,0xff,0xff,0xff, + 0xff,0xb5,0xa4,0x19,0x60,0xff,0xff,0xff,0xff,0xca,0xaa,0xe7,0xd0,0xff,0xff,0xff, + 0xff,0xcc,0xe7,0x4b,0x10,0xff,0xff,0xff,0xff,0xcd,0xa9,0x17,0x90,0xff,0xff,0xff, + 0xff,0xce,0xa2,0x43,0x10,0xff,0xff,0xff,0xff,0xce,0xbd,0xd6,0x70,0x0,0x0,0x0, + 0x0,0x15,0x27,0xa7,0xd0,0x0,0x0,0x0,0x0,0x16,0x18,0xdc,0x40,0x0,0x0,0x0, + 0x0,0x17,0x8,0xdb,0x50,0x0,0x0,0x0,0x0,0x17,0xfa,0xf,0xc0,0x0,0x0,0x0, + 0x0,0x18,0xea,0xe,0xd0,0x0,0x0,0x0,0x0,0x19,0xdb,0x43,0x40,0x0,0x0,0x0, + 0x0,0x1a,0xcc,0x93,0xd0,0x0,0x0,0x0,0x0,0x1b,0xbc,0xa0,0xf0,0x0,0x0,0x0, + 0x0,0x1c,0xac,0x91,0xf0,0x0,0x0,0x0,0x0,0x1d,0x9c,0x82,0xf0,0x0,0x0,0x0, + 0x0,0x1e,0x8c,0x73,0xf0,0x0,0x0,0x0,0x0,0x1f,0x7c,0x64,0xf0,0x0,0x0,0x0, + 0x0,0x20,0x6c,0x55,0xf0,0x0,0x0,0x0,0x0,0x21,0x5c,0x46,0xf0,0x0,0x0,0x0, + 0x0,0x22,0x4c,0x37,0xf0,0x0,0x0,0x0,0x0,0x23,0x3c,0x28,0xf0,0x0,0x0,0x0, + 0x0,0x24,0x2c,0x19,0xf0,0x0,0x0,0x0,0x0,0x25,0x1c,0xa,0xf0,0x0,0x0,0x0, + 0x0,0x26,0xb,0xfb,0xf0,0x0,0x0,0x0,0x0,0x27,0x5,0x27,0x70,0x0,0x0,0x0, + 0x0,0x27,0xf5,0x18,0x70,0x0,0x0,0x0,0x0,0x28,0xe4,0xed,0x50,0x0,0x0,0x0, + 0x0,0x29,0xd4,0xec,0x60,0x0,0x0,0x0,0x0,0x2a,0xc4,0xcf,0x50,0x0,0x0,0x0, + 0x0,0x2b,0xb4,0xce,0x60,0x0,0x0,0x0,0x0,0x2c,0xa4,0xb1,0x50,0x0,0x0,0x0, + 0x0,0x2d,0x94,0xb0,0x60,0x0,0x0,0x0,0x0,0x2e,0x84,0x93,0x50,0x0,0x0,0x0, + 0x0,0x2f,0x74,0xbc,0x90,0x0,0x0,0x0,0x0,0x30,0x64,0xad,0x90,0x0,0x0,0x0, + 0x0,0x31,0x5d,0xd9,0x10,0x0,0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0,0x0, + 0x0,0x33,0x3d,0xbb,0x10,0x0,0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0,0x0, + 0x0,0x35,0x1d,0x9d,0x10,0x0,0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0, + 0x0,0x36,0xfd,0x7f,0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0, + 0x0,0x38,0xdd,0x61,0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0,0x0, + 0x0,0x3a,0xbd,0x43,0x10,0x0,0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0, + 0x0,0x3c,0xa6,0x5f,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0, + 0x0,0x3e,0x86,0x41,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0, + 0x0,0x40,0x66,0x23,0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0, + 0x0,0x42,0x46,0x5,0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0, + 0x0,0x44,0x25,0xe7,0x90,0x0,0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0, + 0x0,0x46,0x5,0xc9,0x90,0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0, + 0x0,0x47,0xee,0xe6,0x10,0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0, + 0x0,0x49,0xce,0xc8,0x10,0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0, + 0x0,0x4b,0xae,0xaa,0x10,0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0, + 0x0,0x4d,0x8e,0x8c,0x10,0x0,0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0, + 0x0,0x4f,0x6e,0x6e,0x10,0x0,0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0, + 0x0,0x51,0x57,0x8a,0x90,0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0, + 0x0,0x53,0x37,0x6c,0x90,0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0, + 0x0,0x55,0x17,0x4e,0x90,0x0,0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0, + 0x0,0x56,0xf7,0x30,0x90,0x0,0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0, + 0x0,0x58,0xd7,0x12,0x90,0x0,0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0, + 0x0,0x5a,0xb6,0xf4,0x90,0x0,0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0, + 0x0,0x5c,0xa0,0x11,0x10,0x0,0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0, + 0x0,0x5e,0x7f,0xf3,0x10,0x0,0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0, + 0x0,0x60,0x5f,0xd5,0x10,0x0,0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0, + 0x0,0x62,0x3f,0xb7,0x10,0x0,0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0, + 0x0,0x64,0x1f,0x99,0x10,0x0,0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0, + 0x0,0x66,0x8,0xb5,0x90,0x0,0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0, + 0x0,0x67,0xe8,0x97,0x90,0x0,0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0, + 0x0,0x69,0xc8,0x79,0x90,0x0,0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0, + 0x0,0x6b,0xa8,0x5b,0x90,0x0,0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0, + 0x0,0x6d,0x88,0x3d,0x90,0x0,0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0, + 0x0,0x6f,0x68,0x1f,0x90,0x0,0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0, + 0x0,0x71,0x51,0x3c,0x10,0x0,0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0, + 0x0,0x73,0x31,0x1e,0x10,0x0,0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0, + 0x0,0x75,0x11,0x0,0x10,0x0,0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0, + 0x0,0x76,0xf0,0xe2,0x10,0x0,0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0, + 0x0,0x78,0xd0,0xc4,0x10,0x0,0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0, + 0x0,0x7a,0xb0,0xa6,0x10,0x0,0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0, + 0x0,0x7c,0x99,0xc2,0x90,0x0,0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0, + 0x0,0x7e,0x79,0xa4,0x90,0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x1,0x2, + 0x3,0x6,0x4,0x5,0x4,0x3,0x7,0x3,0x7,0x3,0x7,0x3,0x7,0x8,0x9,0x8, + 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0xa,0x2,0xa,0x2,0xa,0x2, + 0xa,0x2,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, + 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, + 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, + 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, + 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, + 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0x0,0x0,0x20,0xf8,0x0,0x0,0x0,0x0, + 0x20,0xd0,0x0,0x4,0x0,0x0,0x1c,0x20,0x0,0xa,0x0,0x0,0x2a,0x30,0x0,0xe, + 0x0,0x0,0xe,0x10,0x0,0x12,0x0,0x0,0x1c,0x20,0x1,0x16,0x0,0x0,0x1c,0x20, + 0x1,0x16,0x0,0x0,0x38,0x40,0x1,0x1b,0x0,0x0,0x2a,0x30,0x0,0xe,0x0,0x0, + 0x38,0x40,0x1,0x1b,0x0,0x0,0x2a,0x30,0x1,0x1f,0x0,0x0,0x2a,0x30,0x1,0x1f, + 0x0,0x0,0x1c,0x20,0x0,0xa,0x4c,0x4d,0x54,0x0,0x2b,0x30,0x32,0x32,0x30,0x0, + 0x45,0x45,0x54,0x0,0x4d,0x53,0x4b,0x0,0x43,0x45,0x54,0x0,0x43,0x45,0x53,0x54, + 0x0,0x4d,0x53,0x44,0x0,0x45,0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x1, + 0x0,0x0,0x1,0x1,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x1,0x1,0xa,0x45,0x45,0x54,0x2d,0x32,0x45,0x45,0x53,0x54,0x2c,0x4d, + 0x33,0x2e,0x35,0x2e,0x30,0x2f,0x33,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30,0x2f, + 0x34,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Vaduz + 0x0,0x0,0x7,0x7e, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x77,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0xca, + 0x17,0x6a,0x0,0xca,0xe2,0x71,0x0,0xcb,0xf7,0x4c,0x0,0xcc,0xc2,0x53,0x0,0x15, + 0x23,0xeb,0x90,0x16,0x13,0xdc,0x90,0x17,0x3,0xcd,0x90,0x17,0xf3,0xbe,0x90,0x18, + 0xe3,0xaf,0x90,0x19,0xd3,0xa0,0x90,0x1a,0xc3,0x91,0x90,0x1b,0xbc,0xbd,0x10,0x1c, + 0xac,0xae,0x10,0x1d,0x9c,0x9f,0x10,0x1e,0x8c,0x90,0x10,0x1f,0x7c,0x81,0x10,0x20, + 0x6c,0x72,0x10,0x21,0x5c,0x63,0x10,0x22,0x4c,0x54,0x10,0x23,0x3c,0x45,0x10,0x24, + 0x2c,0x36,0x10,0x25,0x1c,0x27,0x10,0x26,0xc,0x18,0x10,0x27,0x5,0x43,0x90,0x27, + 0xf5,0x34,0x90,0x28,0xe5,0x25,0x90,0x29,0xd5,0x16,0x90,0x2a,0xc5,0x7,0x90,0x2b, + 0xb4,0xf8,0x90,0x2c,0xa4,0xe9,0x90,0x2d,0x94,0xda,0x90,0x2e,0x84,0xcb,0x90,0x2f, + 0x74,0xbc,0x90,0x30,0x64,0xad,0x90,0x31,0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33, + 0x3d,0xbb,0x10,0x34,0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36, + 0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a, + 0xbd,0x43,0x10,0x3b,0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e, + 0x86,0x41,0x90,0x3f,0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42, + 0x46,0x5,0x90,0x43,0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46, + 0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49, + 0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d, + 0x8e,0x8c,0x10,0x4e,0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51, + 0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55, + 0x17,0x4e,0x90,0x56,0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58, + 0xd7,0x12,0x90,0x59,0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c, + 0xa0,0x11,0x10,0x5d,0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60, + 0x5f,0xd5,0x10,0x61,0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64, + 0x1f,0x99,0x10,0x65,0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67, + 0xe8,0x97,0x90,0x68,0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b, + 0xa8,0x5b,0x90,0x6c,0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f, + 0x68,0x1f,0x90,0x70,0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73, + 0x31,0x1e,0x10,0x74,0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76, + 0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a, + 0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e, + 0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x0,0x0, + 0x6,0xfa,0x0,0x0,0x0,0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe,0x10,0x0,0x9, + 0x0,0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe,0x10,0x0,0x9,0x42,0x4d,0x54,0x0, + 0x43,0x45,0x53,0x54,0x0,0x43,0x45,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0, + 0x0,0x1,0x1,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x79,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0xf8, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x24,0xf0,0xea,0x80,0xff, + 0xff,0xff,0xff,0x71,0xd4,0x6,0x86,0xff,0xff,0xff,0xff,0xca,0x17,0x6a,0x0,0xff, + 0xff,0xff,0xff,0xca,0xe2,0x71,0x0,0xff,0xff,0xff,0xff,0xcb,0xf7,0x4c,0x0,0xff, + 0xff,0xff,0xff,0xcc,0xc2,0x53,0x0,0x0,0x0,0x0,0x0,0x15,0x23,0xeb,0x90,0x0, + 0x0,0x0,0x0,0x16,0x13,0xdc,0x90,0x0,0x0,0x0,0x0,0x17,0x3,0xcd,0x90,0x0, + 0x0,0x0,0x0,0x17,0xf3,0xbe,0x90,0x0,0x0,0x0,0x0,0x18,0xe3,0xaf,0x90,0x0, + 0x0,0x0,0x0,0x19,0xd3,0xa0,0x90,0x0,0x0,0x0,0x0,0x1a,0xc3,0x91,0x90,0x0, + 0x0,0x0,0x0,0x1b,0xbc,0xbd,0x10,0x0,0x0,0x0,0x0,0x1c,0xac,0xae,0x10,0x0, + 0x0,0x0,0x0,0x1d,0x9c,0x9f,0x10,0x0,0x0,0x0,0x0,0x1e,0x8c,0x90,0x10,0x0, + 0x0,0x0,0x0,0x1f,0x7c,0x81,0x10,0x0,0x0,0x0,0x0,0x20,0x6c,0x72,0x10,0x0, + 0x0,0x0,0x0,0x21,0x5c,0x63,0x10,0x0,0x0,0x0,0x0,0x22,0x4c,0x54,0x10,0x0, + 0x0,0x0,0x0,0x23,0x3c,0x45,0x10,0x0,0x0,0x0,0x0,0x24,0x2c,0x36,0x10,0x0, + 0x0,0x0,0x0,0x25,0x1c,0x27,0x10,0x0,0x0,0x0,0x0,0x26,0xc,0x18,0x10,0x0, + 0x0,0x0,0x0,0x27,0x5,0x43,0x90,0x0,0x0,0x0,0x0,0x27,0xf5,0x34,0x90,0x0, + 0x0,0x0,0x0,0x28,0xe5,0x25,0x90,0x0,0x0,0x0,0x0,0x29,0xd5,0x16,0x90,0x0, + 0x0,0x0,0x0,0x2a,0xc5,0x7,0x90,0x0,0x0,0x0,0x0,0x2b,0xb4,0xf8,0x90,0x0, + 0x0,0x0,0x0,0x2c,0xa4,0xe9,0x90,0x0,0x0,0x0,0x0,0x2d,0x94,0xda,0x90,0x0, + 0x0,0x0,0x0,0x2e,0x84,0xcb,0x90,0x0,0x0,0x0,0x0,0x2f,0x74,0xbc,0x90,0x0, + 0x0,0x0,0x0,0x30,0x64,0xad,0x90,0x0,0x0,0x0,0x0,0x31,0x5d,0xd9,0x10,0x0, + 0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d,0xbb,0x10,0x0, + 0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d,0x9d,0x10,0x0, + 0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd,0x7f,0x10,0x0, + 0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd,0x61,0x10,0x0, + 0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd,0x43,0x10,0x0, + 0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f,0x90,0x0, + 0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86,0x41,0x90,0x0, + 0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66,0x23,0x90,0x0, + 0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46,0x5,0x90,0x0, + 0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25,0xe7,0x90,0x0, + 0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5,0xc9,0x90,0x0, + 0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee,0xe6,0x10,0x0, + 0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce,0xc8,0x10,0x0, + 0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae,0xaa,0x10,0x0, + 0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c,0x10,0x0, + 0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e,0x10,0x0, + 0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57,0x8a,0x90,0x0, + 0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37,0x6c,0x90,0x0, + 0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17,0x4e,0x90,0x0, + 0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7,0x30,0x90,0x0, + 0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7,0x12,0x90,0x0, + 0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4,0x90,0x0, + 0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0,0x11,0x10,0x0, + 0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3,0x10,0x0, + 0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f,0xd5,0x10,0x0, + 0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f,0xb7,0x10,0x0, + 0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f,0x99,0x10,0x0, + 0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8,0xb5,0x90,0x0, + 0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8,0x97,0x90,0x0, + 0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8,0x79,0x90,0x0, + 0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b,0x90,0x0, + 0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88,0x3d,0x90,0x0, + 0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68,0x1f,0x90,0x0, + 0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51,0x3c,0x10,0x0, + 0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31,0x1e,0x10,0x0, + 0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11,0x0,0x10,0x0, + 0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0,0xe2,0x10,0x0, + 0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0,0xc4,0x10,0x0, + 0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6,0x10,0x0, + 0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99,0xc2,0x90,0x0, + 0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79,0xa4,0x90,0x0, + 0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x1,0x3,0x2,0x3,0x2,0x3,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x6,0xfa,0x0,0x4,0x0,0x0,0x1c,0x20, + 0x1,0x8,0x0,0x0,0xe,0x10,0x0,0xd,0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0, + 0xe,0x10,0x0,0xd,0x4c,0x4d,0x54,0x0,0x42,0x4d,0x54,0x0,0x43,0x45,0x53,0x54, + 0x0,0x43,0x45,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x1, + 0x1,0xa,0x43,0x45,0x54,0x2d,0x31,0x43,0x45,0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35, + 0x2e,0x30,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30,0x2f,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Ljubljana + 0x0,0x0,0x7,0xa5, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x79,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0xca, + 0x2,0x35,0xe0,0xcc,0xe7,0x4b,0x10,0xcd,0xa9,0x17,0x90,0xce,0xa2,0x43,0x10,0xcf, + 0x92,0x34,0x10,0xd0,0x82,0x25,0x10,0xd0,0xfa,0x1,0x70,0xd1,0xa1,0x8c,0x10,0xd2, + 0x4e,0x40,0x90,0x18,0x45,0x5f,0x70,0x18,0xe3,0xaf,0x90,0x19,0xd3,0xa0,0x90,0x1a, + 0xc3,0x91,0x90,0x1b,0xbc,0xbd,0x10,0x1c,0xac,0xae,0x10,0x1d,0x9c,0x9f,0x10,0x1e, + 0x8c,0x90,0x10,0x1f,0x7c,0x81,0x10,0x20,0x6c,0x72,0x10,0x21,0x5c,0x63,0x10,0x22, + 0x4c,0x54,0x10,0x23,0x3c,0x45,0x10,0x24,0x2c,0x36,0x10,0x25,0x1c,0x27,0x10,0x26, + 0xc,0x18,0x10,0x27,0x5,0x43,0x90,0x27,0xf5,0x34,0x90,0x28,0xe5,0x25,0x90,0x29, + 0xd5,0x16,0x90,0x2a,0xc5,0x7,0x90,0x2b,0xb4,0xf8,0x90,0x2c,0xa4,0xe9,0x90,0x2d, + 0x94,0xda,0x90,0x2e,0x84,0xcb,0x90,0x2f,0x74,0xbc,0x90,0x30,0x64,0xad,0x90,0x31, + 0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34,0x52,0x96,0x10,0x35, + 0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x38, + 0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b,0xdb,0x58,0x90,0x3c, + 0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f,0x9b,0x1c,0x90,0x40, + 0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43,0x64,0x1b,0x10,0x44, + 0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47, + 0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b, + 0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e,0xac,0xa1,0x90,0x4f, + 0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53, + 0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56,0x2c,0x29,0x90,0x56, + 0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59,0xf5,0x28,0x10,0x5a, + 0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d,0xb4,0xec,0x10,0x5e, + 0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61,0x7d,0xea,0x90,0x62, + 0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65,0x3d,0xae,0x90,0x66, + 0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68,0xfd,0x72,0x90,0x69, + 0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c,0xc6,0x71,0x10,0x6d, + 0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70,0x86,0x35,0x10,0x71, + 0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74,0x45,0xf9,0x10,0x75, + 0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78, + 0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c, + 0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x1, + 0x4,0x2,0x3,0x2,0x3,0x2,0x1,0x3,0x2,0x1,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x0,0x0,0x13,0x38,0x0,0x0,0x0,0x0, + 0xe,0x10,0x0,0x4,0x0,0x0,0xe,0x10,0x0,0x4,0x0,0x0,0x1c,0x20,0x1,0x8, + 0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0xe,0x10, + 0x0,0x4,0x4c,0x4d,0x54,0x0,0x43,0x45,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x0, + 0x0,0x1,0x1,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x54,0x5a,0x69, + 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x7a,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0xd,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0x5e,0x3c,0xf0,0x48,0xff,0xff,0xff,0xff,0xca,0x2,0x35, + 0xe0,0xff,0xff,0xff,0xff,0xcc,0xe7,0x4b,0x10,0xff,0xff,0xff,0xff,0xcd,0xa9,0x17, + 0x90,0xff,0xff,0xff,0xff,0xce,0xa2,0x43,0x10,0xff,0xff,0xff,0xff,0xcf,0x92,0x34, + 0x10,0xff,0xff,0xff,0xff,0xd0,0x82,0x25,0x10,0xff,0xff,0xff,0xff,0xd0,0xfa,0x1, + 0x70,0xff,0xff,0xff,0xff,0xd1,0xa1,0x8c,0x10,0xff,0xff,0xff,0xff,0xd2,0x4e,0x40, + 0x90,0x0,0x0,0x0,0x0,0x18,0x45,0x5f,0x70,0x0,0x0,0x0,0x0,0x18,0xe3,0xaf, + 0x90,0x0,0x0,0x0,0x0,0x19,0xd3,0xa0,0x90,0x0,0x0,0x0,0x0,0x1a,0xc3,0x91, + 0x90,0x0,0x0,0x0,0x0,0x1b,0xbc,0xbd,0x10,0x0,0x0,0x0,0x0,0x1c,0xac,0xae, + 0x10,0x0,0x0,0x0,0x0,0x1d,0x9c,0x9f,0x10,0x0,0x0,0x0,0x0,0x1e,0x8c,0x90, + 0x10,0x0,0x0,0x0,0x0,0x1f,0x7c,0x81,0x10,0x0,0x0,0x0,0x0,0x20,0x6c,0x72, + 0x10,0x0,0x0,0x0,0x0,0x21,0x5c,0x63,0x10,0x0,0x0,0x0,0x0,0x22,0x4c,0x54, + 0x10,0x0,0x0,0x0,0x0,0x23,0x3c,0x45,0x10,0x0,0x0,0x0,0x0,0x24,0x2c,0x36, + 0x10,0x0,0x0,0x0,0x0,0x25,0x1c,0x27,0x10,0x0,0x0,0x0,0x0,0x26,0xc,0x18, + 0x10,0x0,0x0,0x0,0x0,0x27,0x5,0x43,0x90,0x0,0x0,0x0,0x0,0x27,0xf5,0x34, + 0x90,0x0,0x0,0x0,0x0,0x28,0xe5,0x25,0x90,0x0,0x0,0x0,0x0,0x29,0xd5,0x16, + 0x90,0x0,0x0,0x0,0x0,0x2a,0xc5,0x7,0x90,0x0,0x0,0x0,0x0,0x2b,0xb4,0xf8, + 0x90,0x0,0x0,0x0,0x0,0x2c,0xa4,0xe9,0x90,0x0,0x0,0x0,0x0,0x2d,0x94,0xda, + 0x90,0x0,0x0,0x0,0x0,0x2e,0x84,0xcb,0x90,0x0,0x0,0x0,0x0,0x2f,0x74,0xbc, + 0x90,0x0,0x0,0x0,0x0,0x30,0x64,0xad,0x90,0x0,0x0,0x0,0x0,0x31,0x5d,0xd9, + 0x10,0x0,0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d,0xbb, + 0x10,0x0,0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d,0x9d, + 0x10,0x0,0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd,0x7f, + 0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd,0x61, + 0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd,0x43, + 0x10,0x0,0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f, + 0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86,0x41, + 0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66,0x23, + 0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46,0x5, + 0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25,0xe7, + 0x90,0x0,0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5,0xc9, + 0x90,0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee,0xe6, + 0x10,0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce,0xc8, + 0x10,0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae,0xaa, + 0x10,0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c, + 0x10,0x0,0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e, + 0x10,0x0,0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57,0x8a, + 0x90,0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37,0x6c, + 0x90,0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17,0x4e, + 0x90,0x0,0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7,0x30, + 0x90,0x0,0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7,0x12, + 0x90,0x0,0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4, + 0x90,0x0,0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0,0x11, + 0x10,0x0,0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3, + 0x10,0x0,0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f,0xd5, + 0x10,0x0,0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f,0xb7, + 0x10,0x0,0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f,0x99, + 0x10,0x0,0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8,0xb5, + 0x90,0x0,0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8,0x97, + 0x90,0x0,0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8,0x79, + 0x90,0x0,0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b, + 0x90,0x0,0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88,0x3d, + 0x90,0x0,0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68,0x1f, + 0x90,0x0,0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51,0x3c, + 0x10,0x0,0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31,0x1e, + 0x10,0x0,0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11,0x0, + 0x10,0x0,0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0,0xe2, + 0x10,0x0,0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0,0xc4, + 0x10,0x0,0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6, + 0x10,0x0,0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99,0xc2, + 0x90,0x0,0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79,0xa4, + 0x90,0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x1,0x4,0x2,0x3,0x2,0x3, + 0x2,0x1,0x3,0x2,0x1,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x0,0x0,0x13,0x38,0x0,0x0,0x0,0x0,0xe,0x10,0x0,0x4,0x0, + 0x0,0xe,0x10,0x0,0x4,0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0x1c,0x20,0x1, + 0x8,0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0xe,0x10,0x0,0x4,0x4c,0x4d,0x54, + 0x0,0x43,0x45,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x0,0x0,0x1,0x1,0x0,0x1, + 0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0xa,0x43,0x45,0x54,0x2d,0x31,0x43,0x45, + 0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e, + 0x30,0x2f,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Brussels + 0x0,0x0,0xb,0x9a, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xba,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x16,0x80,0x0,0x0,0x0,0x98, + 0x44,0x49,0x80,0x9b,0xc,0x25,0x70,0x9b,0xd5,0xda,0xf0,0x9c,0xd9,0xae,0x90,0x9d, + 0xa4,0xb5,0x90,0x9e,0xb9,0x90,0x90,0x9f,0x84,0x97,0x90,0x9f,0xce,0xf8,0x30,0xa0, + 0x60,0xa5,0xf0,0xa1,0x7e,0xbb,0x70,0xa2,0x2e,0x12,0xf0,0xa3,0x7a,0x4c,0xf0,0xa4, + 0x35,0x81,0xf0,0xa5,0x5e,0x23,0x70,0xa6,0x25,0x35,0xf0,0xa7,0x27,0x9b,0xf0,0xa8, + 0x2a,0x1,0xf0,0xa9,0x7,0x7d,0xf0,0xa9,0xee,0x34,0x70,0xaa,0xe7,0x5f,0xf0,0xab, + 0xd7,0x50,0xf0,0xac,0xc7,0x41,0xf0,0xad,0xc9,0xa7,0xf0,0xae,0xa7,0x23,0xf0,0xaf, + 0xa0,0x4f,0x70,0xb0,0x87,0x5,0xf0,0xb1,0x89,0x6b,0xf0,0xb2,0x70,0x4c,0xa0,0xb3, + 0x72,0xb2,0xa0,0xb4,0x50,0x2e,0xa0,0xb5,0x49,0x5a,0x20,0xb6,0x30,0x10,0xa0,0xb7, + 0x32,0x76,0xa0,0xb8,0xf,0xf2,0xa0,0xb8,0xff,0xe3,0xa0,0xb9,0xef,0xd4,0xa0,0xba, + 0xd6,0x8b,0x20,0xbb,0xd8,0xf1,0x20,0xbc,0xc8,0xe2,0x20,0xbd,0xb8,0xd3,0x20,0xbe, + 0x9f,0x89,0xa0,0xbf,0x98,0xb5,0x20,0xc0,0x9b,0x1b,0x20,0xc1,0x78,0x97,0x20,0xc2, + 0x68,0x88,0x20,0xc3,0x58,0x79,0x20,0xc4,0x3f,0x2f,0xa0,0xc5,0x38,0x5b,0x20,0xc6, + 0x3a,0xc1,0x20,0xc7,0x58,0xd6,0xa0,0xc7,0xda,0x9,0xa0,0xc8,0x4a,0x19,0x20,0xcc, + 0xe7,0x4b,0x10,0xcd,0xa9,0x17,0x90,0xce,0xa2,0x43,0x10,0xcf,0x92,0x34,0x10,0xd0, + 0x5b,0xbf,0x60,0xd0,0x6e,0x5e,0x90,0xd1,0x72,0x16,0x10,0xd2,0x4e,0x40,0x90,0xd3, + 0x91,0x40,0x10,0xd4,0x4b,0x23,0x90,0xd,0x2a,0xfd,0x70,0xd,0xa4,0x63,0x90,0xe, + 0x8b,0x1a,0x10,0xf,0x84,0x45,0x90,0x10,0x74,0x36,0x90,0x11,0x64,0x27,0x90,0x12, + 0x54,0x18,0x90,0x13,0x4d,0x44,0x10,0x14,0x33,0xfa,0x90,0x15,0x23,0xeb,0x90,0x16, + 0x13,0xdc,0x90,0x17,0x3,0xcd,0x90,0x17,0xf3,0xbe,0x90,0x18,0xe3,0xaf,0x90,0x19, + 0xd3,0xa0,0x90,0x1a,0xc3,0x91,0x90,0x1b,0xbc,0xbd,0x10,0x1c,0xac,0xae,0x10,0x1d, + 0x9c,0x9f,0x10,0x1e,0x8c,0x90,0x10,0x1f,0x7c,0x81,0x10,0x20,0x6c,0x72,0x10,0x21, + 0x5c,0x63,0x10,0x22,0x4c,0x54,0x10,0x23,0x3c,0x45,0x10,0x24,0x2c,0x36,0x10,0x25, + 0x1c,0x27,0x10,0x26,0xc,0x18,0x10,0x27,0x5,0x43,0x90,0x27,0xf5,0x34,0x90,0x28, + 0xe5,0x25,0x90,0x29,0xd5,0x16,0x90,0x2a,0xc5,0x7,0x90,0x2b,0xb4,0xf8,0x90,0x2c, + 0xa4,0xe9,0x90,0x2d,0x94,0xda,0x90,0x2e,0x84,0xcb,0x90,0x2f,0x74,0xbc,0x90,0x30, + 0x64,0xad,0x90,0x31,0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34, + 0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38, + 0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b, + 0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f, + 0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43, + 0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47, + 0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a, + 0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e, + 0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52, + 0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56, + 0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59, + 0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d, + 0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61, + 0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65, + 0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68, + 0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c, + 0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70, + 0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74, + 0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78, + 0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b, + 0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f, + 0x8e,0x7f,0x90,0x1,0x2,0x5,0x2,0x3,0x4,0x3,0x4,0x8,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x3,0x4,0x3,0x4,0x3,0x5,0x4,0x3,0x4, + 0x3,0x4,0x2,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9, + 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9, + 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9, + 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9, + 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9, + 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9, + 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9, + 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x0,0x0,0x4, + 0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0xe,0x10,0x0,0x8,0x0, + 0x0,0x1c,0x20,0x1,0xc,0x0,0x0,0xe,0x10,0x0,0x8,0x0,0x0,0x1c,0x20,0x1, + 0xc,0x0,0x0,0xe,0x10,0x1,0x11,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0, + 0x0,0x0,0x4,0x0,0x0,0x1c,0x20,0x1,0xc,0x0,0x0,0xe,0x10,0x0,0x8,0x42, + 0x4d,0x54,0x0,0x57,0x45,0x54,0x0,0x43,0x45,0x54,0x0,0x43,0x45,0x53,0x54,0x0, + 0x57,0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x1,0x1,0x1,0x1,0x1, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x54,0x5a,0x69,0x66,0x32, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xc,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xbc,0x0, + 0x0,0x0,0xc,0x0,0x0,0x0,0x1a,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff, + 0xff,0xff,0xff,0x56,0xb6,0xdf,0xe6,0xff,0xff,0xff,0xff,0x6d,0xe9,0x6c,0xa6,0xff, + 0xff,0xff,0xff,0x98,0x44,0x49,0x80,0xff,0xff,0xff,0xff,0x9b,0xc,0x25,0x70,0xff, + 0xff,0xff,0xff,0x9b,0xd5,0xda,0xf0,0xff,0xff,0xff,0xff,0x9c,0xd9,0xae,0x90,0xff, + 0xff,0xff,0xff,0x9d,0xa4,0xb5,0x90,0xff,0xff,0xff,0xff,0x9e,0xb9,0x90,0x90,0xff, + 0xff,0xff,0xff,0x9f,0x84,0x97,0x90,0xff,0xff,0xff,0xff,0x9f,0xce,0xf8,0x30,0xff, + 0xff,0xff,0xff,0xa0,0x60,0xa5,0xf0,0xff,0xff,0xff,0xff,0xa1,0x7e,0xbb,0x70,0xff, + 0xff,0xff,0xff,0xa2,0x2e,0x12,0xf0,0xff,0xff,0xff,0xff,0xa3,0x7a,0x4c,0xf0,0xff, + 0xff,0xff,0xff,0xa4,0x35,0x81,0xf0,0xff,0xff,0xff,0xff,0xa5,0x5e,0x23,0x70,0xff, + 0xff,0xff,0xff,0xa6,0x25,0x35,0xf0,0xff,0xff,0xff,0xff,0xa7,0x27,0x9b,0xf0,0xff, + 0xff,0xff,0xff,0xa8,0x2a,0x1,0xf0,0xff,0xff,0xff,0xff,0xa9,0x7,0x7d,0xf0,0xff, + 0xff,0xff,0xff,0xa9,0xee,0x34,0x70,0xff,0xff,0xff,0xff,0xaa,0xe7,0x5f,0xf0,0xff, + 0xff,0xff,0xff,0xab,0xd7,0x50,0xf0,0xff,0xff,0xff,0xff,0xac,0xc7,0x41,0xf0,0xff, + 0xff,0xff,0xff,0xad,0xc9,0xa7,0xf0,0xff,0xff,0xff,0xff,0xae,0xa7,0x23,0xf0,0xff, + 0xff,0xff,0xff,0xaf,0xa0,0x4f,0x70,0xff,0xff,0xff,0xff,0xb0,0x87,0x5,0xf0,0xff, + 0xff,0xff,0xff,0xb1,0x89,0x6b,0xf0,0xff,0xff,0xff,0xff,0xb2,0x70,0x4c,0xa0,0xff, + 0xff,0xff,0xff,0xb3,0x72,0xb2,0xa0,0xff,0xff,0xff,0xff,0xb4,0x50,0x2e,0xa0,0xff, + 0xff,0xff,0xff,0xb5,0x49,0x5a,0x20,0xff,0xff,0xff,0xff,0xb6,0x30,0x10,0xa0,0xff, + 0xff,0xff,0xff,0xb7,0x32,0x76,0xa0,0xff,0xff,0xff,0xff,0xb8,0xf,0xf2,0xa0,0xff, + 0xff,0xff,0xff,0xb8,0xff,0xe3,0xa0,0xff,0xff,0xff,0xff,0xb9,0xef,0xd4,0xa0,0xff, + 0xff,0xff,0xff,0xba,0xd6,0x8b,0x20,0xff,0xff,0xff,0xff,0xbb,0xd8,0xf1,0x20,0xff, + 0xff,0xff,0xff,0xbc,0xc8,0xe2,0x20,0xff,0xff,0xff,0xff,0xbd,0xb8,0xd3,0x20,0xff, + 0xff,0xff,0xff,0xbe,0x9f,0x89,0xa0,0xff,0xff,0xff,0xff,0xbf,0x98,0xb5,0x20,0xff, + 0xff,0xff,0xff,0xc0,0x9b,0x1b,0x20,0xff,0xff,0xff,0xff,0xc1,0x78,0x97,0x20,0xff, + 0xff,0xff,0xff,0xc2,0x68,0x88,0x20,0xff,0xff,0xff,0xff,0xc3,0x58,0x79,0x20,0xff, + 0xff,0xff,0xff,0xc4,0x3f,0x2f,0xa0,0xff,0xff,0xff,0xff,0xc5,0x38,0x5b,0x20,0xff, + 0xff,0xff,0xff,0xc6,0x3a,0xc1,0x20,0xff,0xff,0xff,0xff,0xc7,0x58,0xd6,0xa0,0xff, + 0xff,0xff,0xff,0xc7,0xda,0x9,0xa0,0xff,0xff,0xff,0xff,0xc8,0x4a,0x19,0x20,0xff, + 0xff,0xff,0xff,0xcc,0xe7,0x4b,0x10,0xff,0xff,0xff,0xff,0xcd,0xa9,0x17,0x90,0xff, + 0xff,0xff,0xff,0xce,0xa2,0x43,0x10,0xff,0xff,0xff,0xff,0xcf,0x92,0x34,0x10,0xff, + 0xff,0xff,0xff,0xd0,0x5b,0xbf,0x60,0xff,0xff,0xff,0xff,0xd0,0x6e,0x5e,0x90,0xff, + 0xff,0xff,0xff,0xd1,0x72,0x16,0x10,0xff,0xff,0xff,0xff,0xd2,0x4e,0x40,0x90,0xff, + 0xff,0xff,0xff,0xd3,0x91,0x40,0x10,0xff,0xff,0xff,0xff,0xd4,0x4b,0x23,0x90,0x0, + 0x0,0x0,0x0,0xd,0x2a,0xfd,0x70,0x0,0x0,0x0,0x0,0xd,0xa4,0x63,0x90,0x0, + 0x0,0x0,0x0,0xe,0x8b,0x1a,0x10,0x0,0x0,0x0,0x0,0xf,0x84,0x45,0x90,0x0, + 0x0,0x0,0x0,0x10,0x74,0x36,0x90,0x0,0x0,0x0,0x0,0x11,0x64,0x27,0x90,0x0, + 0x0,0x0,0x0,0x12,0x54,0x18,0x90,0x0,0x0,0x0,0x0,0x13,0x4d,0x44,0x10,0x0, + 0x0,0x0,0x0,0x14,0x33,0xfa,0x90,0x0,0x0,0x0,0x0,0x15,0x23,0xeb,0x90,0x0, + 0x0,0x0,0x0,0x16,0x13,0xdc,0x90,0x0,0x0,0x0,0x0,0x17,0x3,0xcd,0x90,0x0, + 0x0,0x0,0x0,0x17,0xf3,0xbe,0x90,0x0,0x0,0x0,0x0,0x18,0xe3,0xaf,0x90,0x0, + 0x0,0x0,0x0,0x19,0xd3,0xa0,0x90,0x0,0x0,0x0,0x0,0x1a,0xc3,0x91,0x90,0x0, + 0x0,0x0,0x0,0x1b,0xbc,0xbd,0x10,0x0,0x0,0x0,0x0,0x1c,0xac,0xae,0x10,0x0, + 0x0,0x0,0x0,0x1d,0x9c,0x9f,0x10,0x0,0x0,0x0,0x0,0x1e,0x8c,0x90,0x10,0x0, + 0x0,0x0,0x0,0x1f,0x7c,0x81,0x10,0x0,0x0,0x0,0x0,0x20,0x6c,0x72,0x10,0x0, + 0x0,0x0,0x0,0x21,0x5c,0x63,0x10,0x0,0x0,0x0,0x0,0x22,0x4c,0x54,0x10,0x0, + 0x0,0x0,0x0,0x23,0x3c,0x45,0x10,0x0,0x0,0x0,0x0,0x24,0x2c,0x36,0x10,0x0, + 0x0,0x0,0x0,0x25,0x1c,0x27,0x10,0x0,0x0,0x0,0x0,0x26,0xc,0x18,0x10,0x0, + 0x0,0x0,0x0,0x27,0x5,0x43,0x90,0x0,0x0,0x0,0x0,0x27,0xf5,0x34,0x90,0x0, + 0x0,0x0,0x0,0x28,0xe5,0x25,0x90,0x0,0x0,0x0,0x0,0x29,0xd5,0x16,0x90,0x0, + 0x0,0x0,0x0,0x2a,0xc5,0x7,0x90,0x0,0x0,0x0,0x0,0x2b,0xb4,0xf8,0x90,0x0, + 0x0,0x0,0x0,0x2c,0xa4,0xe9,0x90,0x0,0x0,0x0,0x0,0x2d,0x94,0xda,0x90,0x0, + 0x0,0x0,0x0,0x2e,0x84,0xcb,0x90,0x0,0x0,0x0,0x0,0x2f,0x74,0xbc,0x90,0x0, + 0x0,0x0,0x0,0x30,0x64,0xad,0x90,0x0,0x0,0x0,0x0,0x31,0x5d,0xd9,0x10,0x0, + 0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d,0xbb,0x10,0x0, + 0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d,0x9d,0x10,0x0, + 0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd,0x7f,0x10,0x0, + 0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd,0x61,0x10,0x0, + 0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd,0x43,0x10,0x0, + 0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f,0x90,0x0, + 0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86,0x41,0x90,0x0, + 0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66,0x23,0x90,0x0, + 0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46,0x5,0x90,0x0, + 0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25,0xe7,0x90,0x0, + 0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5,0xc9,0x90,0x0, + 0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee,0xe6,0x10,0x0, + 0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce,0xc8,0x10,0x0, + 0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae,0xaa,0x10,0x0, + 0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c,0x10,0x0, + 0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e,0x10,0x0, + 0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57,0x8a,0x90,0x0, + 0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37,0x6c,0x90,0x0, + 0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17,0x4e,0x90,0x0, + 0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7,0x30,0x90,0x0, + 0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7,0x12,0x90,0x0, + 0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4,0x90,0x0, + 0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0,0x11,0x10,0x0, + 0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3,0x10,0x0, + 0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f,0xd5,0x10,0x0, + 0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f,0xb7,0x10,0x0, + 0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f,0x99,0x10,0x0, + 0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8,0xb5,0x90,0x0, + 0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8,0x97,0x90,0x0, + 0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8,0x79,0x90,0x0, + 0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b,0x90,0x0, + 0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88,0x3d,0x90,0x0, + 0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68,0x1f,0x90,0x0, + 0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51,0x3c,0x10,0x0, + 0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31,0x1e,0x10,0x0, + 0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11,0x0,0x10,0x0, + 0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0,0xe2,0x10,0x0, + 0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0,0xc4,0x10,0x0, + 0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6,0x10,0x0, + 0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99,0xc2,0x90,0x0, + 0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79,0xa4,0x90,0x0, + 0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x1,0x2,0x3,0x6,0x3,0x4,0x5,0x4, + 0x5,0x9,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8, + 0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8, + 0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x4,0x5,0x4, + 0x5,0x4,0x6,0x5,0x4,0x5,0x4,0x5,0x3,0xa,0xb,0xa,0xb,0xa,0xb,0xa, + 0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa, + 0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa, + 0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa, + 0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa, + 0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa, + 0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa, + 0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa, + 0xb,0xa,0xb,0x0,0x0,0x4,0x1a,0x0,0x0,0x0,0x0,0x4,0x1a,0x0,0x4,0x0, + 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0xe,0x10,0x0,0xc,0x0,0x0,0x1c,0x20,0x1, + 0x10,0x0,0x0,0xe,0x10,0x0,0xc,0x0,0x0,0x1c,0x20,0x1,0x10,0x0,0x0,0xe, + 0x10,0x1,0x15,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x8,0x0, + 0x0,0x1c,0x20,0x1,0x10,0x0,0x0,0xe,0x10,0x0,0xc,0x4c,0x4d,0x54,0x0,0x42, + 0x4d,0x54,0x0,0x57,0x45,0x54,0x0,0x43,0x45,0x54,0x0,0x43,0x45,0x53,0x54,0x0, + 0x57,0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x1,0x1,0x1,0x1, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0xa,0x43,0x45, + 0x54,0x2d,0x31,0x43,0x45,0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2c,0x4d, + 0x31,0x30,0x2e,0x35,0x2e,0x30,0x2f,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Sofia + 0x0,0x0,0x8,0x52, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x7f,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x16,0x80,0x0,0x0,0x0,0xcc, + 0xe7,0x4b,0x10,0xcd,0xa9,0x17,0x90,0xce,0xa2,0x43,0x10,0xcf,0x92,0x34,0x10,0xd0, + 0x82,0x25,0x10,0xd0,0xfa,0x1,0x70,0xd1,0x72,0x24,0x20,0x11,0x63,0xef,0x50,0x12, + 0x55,0x3f,0xe0,0x13,0x4d,0xb,0xd0,0x14,0x35,0x21,0xe0,0x15,0x2c,0xed,0xd0,0x16, + 0x13,0xc0,0x70,0x17,0xc,0xcf,0xd0,0x17,0xf3,0xb0,0x80,0x18,0xe3,0xa1,0x80,0x19, + 0xd3,0x92,0x80,0x1a,0xc3,0x83,0x80,0x1b,0xbc,0xaf,0x0,0x1c,0xac,0xa0,0x0,0x1d, + 0x9c,0x91,0x0,0x1e,0x8c,0x82,0x0,0x1f,0x7c,0x73,0x0,0x20,0x6c,0x64,0x0,0x21, + 0x5c,0x55,0x0,0x22,0x4c,0x46,0x0,0x23,0x3c,0x37,0x0,0x24,0x2c,0x28,0x0,0x25, + 0x1c,0x19,0x0,0x26,0xc,0xa,0x0,0x27,0x5,0x35,0x80,0x27,0x7f,0xb4,0xe0,0x27, + 0xf5,0xa,0x60,0x28,0xe4,0xed,0x50,0x29,0xd4,0xec,0x60,0x2a,0xc4,0xcf,0x50,0x2b, + 0xb4,0xce,0x60,0x2c,0xa4,0xb1,0x50,0x2d,0x94,0xb0,0x60,0x2e,0x84,0x93,0x50,0x2f, + 0x74,0x92,0x60,0x30,0x64,0x75,0x50,0x31,0x5d,0xae,0xe0,0x32,0x72,0x7b,0xd0,0x33, + 0x3d,0xbb,0x10,0x34,0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36, + 0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a, + 0xbd,0x43,0x10,0x3b,0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e, + 0x86,0x41,0x90,0x3f,0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42, + 0x46,0x5,0x90,0x43,0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46, + 0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49, + 0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d, + 0x8e,0x8c,0x10,0x4e,0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51, + 0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55, + 0x17,0x4e,0x90,0x56,0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58, + 0xd7,0x12,0x90,0x59,0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c, + 0xa0,0x11,0x10,0x5d,0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60, + 0x5f,0xd5,0x10,0x61,0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64, + 0x1f,0x99,0x10,0x65,0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67, + 0xe8,0x97,0x90,0x68,0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b, + 0xa8,0x5b,0x90,0x6c,0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f, + 0x68,0x1f,0x90,0x70,0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73, + 0x31,0x1e,0x10,0x74,0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76, + 0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a, + 0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e, + 0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x1,0x2,0x3,0x2,0x3,0x2,0x4,0x1,0x5, + 0x1,0x5,0x1,0x5,0x1,0x5,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x1,0x5,0x1,0x5,0x1,0x5,0x1,0x5,0x1, + 0x5,0x1,0x5,0x1,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, + 0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, + 0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, + 0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, + 0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, + 0x8,0x9,0x8,0x9,0x8,0x9,0x0,0x0,0x1b,0x68,0x0,0x0,0x0,0x0,0x1c,0x20, + 0x0,0x4,0x0,0x0,0xe,0x10,0x0,0x8,0x0,0x0,0x1c,0x20,0x1,0xc,0x0,0x0, + 0xe,0x10,0x0,0x8,0x0,0x0,0x2a,0x30,0x1,0x11,0x0,0x0,0x1c,0x20,0x0,0x4, + 0x0,0x0,0x2a,0x30,0x1,0x11,0x0,0x0,0x2a,0x30,0x1,0x11,0x0,0x0,0x1c,0x20, + 0x0,0x4,0x49,0x4d,0x54,0x0,0x45,0x45,0x54,0x0,0x43,0x45,0x54,0x0,0x43,0x45, + 0x53,0x54,0x0,0x45,0x45,0x53,0x54,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x1,0x1, + 0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x54,0x5a,0x69,0x66, + 0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0xb,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x81, + 0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x1a,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0x56,0xb6,0xce,0x24,0xff,0xff,0xff,0xff,0x72,0xc3,0xe3,0x18, + 0xff,0xff,0xff,0xff,0xcc,0xe7,0x4b,0x10,0xff,0xff,0xff,0xff,0xcd,0xa9,0x17,0x90, + 0xff,0xff,0xff,0xff,0xce,0xa2,0x43,0x10,0xff,0xff,0xff,0xff,0xcf,0x92,0x34,0x10, + 0xff,0xff,0xff,0xff,0xd0,0x82,0x25,0x10,0xff,0xff,0xff,0xff,0xd0,0xfa,0x1,0x70, + 0xff,0xff,0xff,0xff,0xd1,0x72,0x24,0x20,0x0,0x0,0x0,0x0,0x11,0x63,0xef,0x50, + 0x0,0x0,0x0,0x0,0x12,0x55,0x3f,0xe0,0x0,0x0,0x0,0x0,0x13,0x4d,0xb,0xd0, + 0x0,0x0,0x0,0x0,0x14,0x35,0x21,0xe0,0x0,0x0,0x0,0x0,0x15,0x2c,0xed,0xd0, + 0x0,0x0,0x0,0x0,0x16,0x13,0xc0,0x70,0x0,0x0,0x0,0x0,0x17,0xc,0xcf,0xd0, + 0x0,0x0,0x0,0x0,0x17,0xf3,0xb0,0x80,0x0,0x0,0x0,0x0,0x18,0xe3,0xa1,0x80, + 0x0,0x0,0x0,0x0,0x19,0xd3,0x92,0x80,0x0,0x0,0x0,0x0,0x1a,0xc3,0x83,0x80, + 0x0,0x0,0x0,0x0,0x1b,0xbc,0xaf,0x0,0x0,0x0,0x0,0x0,0x1c,0xac,0xa0,0x0, + 0x0,0x0,0x0,0x0,0x1d,0x9c,0x91,0x0,0x0,0x0,0x0,0x0,0x1e,0x8c,0x82,0x0, + 0x0,0x0,0x0,0x0,0x1f,0x7c,0x73,0x0,0x0,0x0,0x0,0x0,0x20,0x6c,0x64,0x0, + 0x0,0x0,0x0,0x0,0x21,0x5c,0x55,0x0,0x0,0x0,0x0,0x0,0x22,0x4c,0x46,0x0, + 0x0,0x0,0x0,0x0,0x23,0x3c,0x37,0x0,0x0,0x0,0x0,0x0,0x24,0x2c,0x28,0x0, + 0x0,0x0,0x0,0x0,0x25,0x1c,0x19,0x0,0x0,0x0,0x0,0x0,0x26,0xc,0xa,0x0, + 0x0,0x0,0x0,0x0,0x27,0x5,0x35,0x80,0x0,0x0,0x0,0x0,0x27,0x7f,0xb4,0xe0, + 0x0,0x0,0x0,0x0,0x27,0xf5,0xa,0x60,0x0,0x0,0x0,0x0,0x28,0xe4,0xed,0x50, + 0x0,0x0,0x0,0x0,0x29,0xd4,0xec,0x60,0x0,0x0,0x0,0x0,0x2a,0xc4,0xcf,0x50, + 0x0,0x0,0x0,0x0,0x2b,0xb4,0xce,0x60,0x0,0x0,0x0,0x0,0x2c,0xa4,0xb1,0x50, + 0x0,0x0,0x0,0x0,0x2d,0x94,0xb0,0x60,0x0,0x0,0x0,0x0,0x2e,0x84,0x93,0x50, + 0x0,0x0,0x0,0x0,0x2f,0x74,0x92,0x60,0x0,0x0,0x0,0x0,0x30,0x64,0x75,0x50, + 0x0,0x0,0x0,0x0,0x31,0x5d,0xae,0xe0,0x0,0x0,0x0,0x0,0x32,0x72,0x7b,0xd0, + 0x0,0x0,0x0,0x0,0x33,0x3d,0xbb,0x10,0x0,0x0,0x0,0x0,0x34,0x52,0x96,0x10, + 0x0,0x0,0x0,0x0,0x35,0x1d,0x9d,0x10,0x0,0x0,0x0,0x0,0x36,0x32,0x78,0x10, + 0x0,0x0,0x0,0x0,0x36,0xfd,0x7f,0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0x94,0x90, + 0x0,0x0,0x0,0x0,0x38,0xdd,0x61,0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0x76,0x90, + 0x0,0x0,0x0,0x0,0x3a,0xbd,0x43,0x10,0x0,0x0,0x0,0x0,0x3b,0xdb,0x58,0x90, + 0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90, + 0x0,0x0,0x0,0x0,0x3e,0x86,0x41,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90, + 0x0,0x0,0x0,0x0,0x40,0x66,0x23,0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x39,0x10, + 0x0,0x0,0x0,0x0,0x42,0x46,0x5,0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x1b,0x10, + 0x0,0x0,0x0,0x0,0x44,0x25,0xe7,0x90,0x0,0x0,0x0,0x0,0x45,0x43,0xfd,0x10, + 0x0,0x0,0x0,0x0,0x46,0x5,0xc9,0x90,0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10, + 0x0,0x0,0x0,0x0,0x47,0xee,0xe6,0x10,0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10, + 0x0,0x0,0x0,0x0,0x49,0xce,0xc8,0x10,0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10, + 0x0,0x0,0x0,0x0,0x4b,0xae,0xaa,0x10,0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90, + 0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c,0x10,0x0,0x0,0x0,0x0,0x4e,0xac,0xa1,0x90, + 0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e,0x10,0x0,0x0,0x0,0x0,0x50,0x8c,0x83,0x90, + 0x0,0x0,0x0,0x0,0x51,0x57,0x8a,0x90,0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90, + 0x0,0x0,0x0,0x0,0x53,0x37,0x6c,0x90,0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90, + 0x0,0x0,0x0,0x0,0x55,0x17,0x4e,0x90,0x0,0x0,0x0,0x0,0x56,0x2c,0x29,0x90, + 0x0,0x0,0x0,0x0,0x56,0xf7,0x30,0x90,0x0,0x0,0x0,0x0,0x58,0x15,0x46,0x10, + 0x0,0x0,0x0,0x0,0x58,0xd7,0x12,0x90,0x0,0x0,0x0,0x0,0x59,0xf5,0x28,0x10, + 0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4,0x90,0x0,0x0,0x0,0x0,0x5b,0xd5,0xa,0x10, + 0x0,0x0,0x0,0x0,0x5c,0xa0,0x11,0x10,0x0,0x0,0x0,0x0,0x5d,0xb4,0xec,0x10, + 0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3,0x10,0x0,0x0,0x0,0x0,0x5f,0x94,0xce,0x10, + 0x0,0x0,0x0,0x0,0x60,0x5f,0xd5,0x10,0x0,0x0,0x0,0x0,0x61,0x7d,0xea,0x90, + 0x0,0x0,0x0,0x0,0x62,0x3f,0xb7,0x10,0x0,0x0,0x0,0x0,0x63,0x5d,0xcc,0x90, + 0x0,0x0,0x0,0x0,0x64,0x1f,0x99,0x10,0x0,0x0,0x0,0x0,0x65,0x3d,0xae,0x90, + 0x0,0x0,0x0,0x0,0x66,0x8,0xb5,0x90,0x0,0x0,0x0,0x0,0x67,0x1d,0x90,0x90, + 0x0,0x0,0x0,0x0,0x67,0xe8,0x97,0x90,0x0,0x0,0x0,0x0,0x68,0xfd,0x72,0x90, + 0x0,0x0,0x0,0x0,0x69,0xc8,0x79,0x90,0x0,0x0,0x0,0x0,0x6a,0xdd,0x54,0x90, + 0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b,0x90,0x0,0x0,0x0,0x0,0x6c,0xc6,0x71,0x10, + 0x0,0x0,0x0,0x0,0x6d,0x88,0x3d,0x90,0x0,0x0,0x0,0x0,0x6e,0xa6,0x53,0x10, + 0x0,0x0,0x0,0x0,0x6f,0x68,0x1f,0x90,0x0,0x0,0x0,0x0,0x70,0x86,0x35,0x10, + 0x0,0x0,0x0,0x0,0x71,0x51,0x3c,0x10,0x0,0x0,0x0,0x0,0x72,0x66,0x17,0x10, + 0x0,0x0,0x0,0x0,0x73,0x31,0x1e,0x10,0x0,0x0,0x0,0x0,0x74,0x45,0xf9,0x10, + 0x0,0x0,0x0,0x0,0x75,0x11,0x0,0x10,0x0,0x0,0x0,0x0,0x76,0x2f,0x15,0x90, + 0x0,0x0,0x0,0x0,0x76,0xf0,0xe2,0x10,0x0,0x0,0x0,0x0,0x78,0xe,0xf7,0x90, + 0x0,0x0,0x0,0x0,0x78,0xd0,0xc4,0x10,0x0,0x0,0x0,0x0,0x79,0xee,0xd9,0x90, + 0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6,0x10,0x0,0x0,0x0,0x0,0x7b,0xce,0xbb,0x90, + 0x0,0x0,0x0,0x0,0x7c,0x99,0xc2,0x90,0x0,0x0,0x0,0x0,0x7d,0xae,0x9d,0x90, + 0x0,0x0,0x0,0x0,0x7e,0x79,0xa4,0x90,0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90, + 0x0,0x1,0x2,0x3,0x4,0x3,0x4,0x3,0x5,0x2,0x6,0x2,0x6,0x2,0x6,0x2, + 0x6,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, + 0x8,0x7,0x2,0x6,0x2,0x6,0x2,0x6,0x2,0x6,0x2,0x6,0x2,0x6,0x2,0x9, + 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9, + 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9, + 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9, + 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9, + 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9, + 0xa,0x0,0x0,0x15,0xdc,0x0,0x0,0x0,0x0,0x1b,0x68,0x0,0x4,0x0,0x0,0x1c, + 0x20,0x0,0x8,0x0,0x0,0xe,0x10,0x0,0xc,0x0,0x0,0x1c,0x20,0x1,0x10,0x0, + 0x0,0xe,0x10,0x0,0xc,0x0,0x0,0x2a,0x30,0x1,0x15,0x0,0x0,0x1c,0x20,0x0, + 0x8,0x0,0x0,0x2a,0x30,0x1,0x15,0x0,0x0,0x2a,0x30,0x1,0x15,0x0,0x0,0x1c, + 0x20,0x0,0x8,0x4c,0x4d,0x54,0x0,0x49,0x4d,0x54,0x0,0x45,0x45,0x54,0x0,0x43, + 0x45,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x45,0x45,0x53,0x54,0x0,0x0,0x0,0x0, + 0x1,0x1,0x0,0x0,0x1,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x1,0x1,0xa,0x45,0x45,0x54,0x2d,0x32,0x45,0x45,0x53,0x54,0x2c,0x4d,0x33, + 0x2e,0x35,0x2e,0x30,0x2f,0x33,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30,0x2f,0x34, 0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Canada/Atlantic - 0x0,0x0,0xd,0x6e, + // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Vilnius + 0x0,0x0,0x8,0x97, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xe5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0x80, - 0xf1,0xab,0xa0,0x9a,0xe4,0xde,0xc0,0x9b,0xd6,0x13,0x30,0x9e,0xb8,0x85,0x60,0x9f, - 0xba,0xdd,0x50,0xa2,0x9d,0x17,0x40,0xa3,0x30,0xb1,0x30,0xa4,0x7a,0x56,0x40,0xa5, - 0x1b,0x1f,0x30,0xa6,0x53,0xa0,0xc0,0xa6,0xfc,0x52,0xb0,0xa8,0x3c,0xbd,0x40,0xa8, - 0xdc,0x34,0xb0,0xaa,0x1c,0x9f,0x40,0xaa,0xcd,0x3a,0x30,0xab,0xfc,0x81,0x40,0xac, - 0xbf,0x91,0x30,0xad,0xee,0xd8,0x40,0xae,0x8c,0xfe,0x30,0xaf,0xbc,0x45,0x40,0xb0, - 0x7f,0x55,0x30,0xb1,0xae,0x9c,0x40,0xb2,0x4b,0x70,0xb0,0xb3,0x8e,0x7e,0x40,0xb4, - 0x24,0xbb,0x30,0xb5,0x6e,0x60,0x40,0xb6,0x15,0xc0,0xb0,0xb7,0x4e,0x42,0x40,0xb8, - 0x8,0x17,0xb0,0xb9,0x24,0xe9,0xc0,0xb9,0xe7,0xf9,0xb0,0xbb,0x4,0xcb,0xc0,0xbb, - 0xd1,0x16,0x30,0xbd,0x0,0x5d,0x40,0xbd,0x9d,0x31,0xb0,0xbe,0xf2,0xb4,0x40,0xbf, - 0x90,0xda,0x30,0xc0,0xd3,0xe7,0xc0,0xc1,0x5e,0x47,0x30,0xc2,0x8d,0x8e,0x40,0xc3, - 0x50,0x9e,0x30,0xc4,0x6d,0x70,0x40,0xc5,0x30,0x80,0x30,0xc6,0x72,0x3c,0x40,0xc7, - 0x10,0x62,0x30,0xc8,0x36,0x6e,0xc0,0xc8,0xf9,0x7e,0xb0,0xca,0x16,0x50,0xc0,0xca, - 0xd9,0x60,0xb0,0xcb,0x88,0xe2,0x60,0xd2,0x23,0xf4,0x70,0xd2,0x60,0xed,0xd0,0xd3, - 0x75,0xd6,0xe0,0xd4,0x40,0xcf,0xd0,0xd5,0x55,0xb8,0xe0,0xd6,0x20,0xb1,0xd0,0xd7, - 0x35,0x9a,0xe0,0xd8,0x0,0x93,0xd0,0xd9,0x15,0x7c,0xe0,0xd9,0xe0,0x75,0xd0,0xdc, - 0xde,0x7b,0x60,0xdd,0xa9,0x74,0x50,0xde,0xbe,0x5d,0x60,0xdf,0x89,0x56,0x50,0xe0, - 0x9e,0x3f,0x60,0xe1,0x69,0x38,0x50,0xe2,0x7e,0x21,0x60,0xe3,0x49,0x1a,0x50,0xe6, - 0x47,0x1f,0xe0,0xe7,0x12,0x18,0xd0,0xe8,0x27,0x1,0xe0,0xe8,0xf1,0xfa,0xd0,0xea, - 0x6,0xe3,0xe0,0xea,0xd1,0xdc,0xd0,0xeb,0xe6,0xc5,0xe0,0xec,0xb1,0xbe,0xd0,0xf1, - 0x8f,0xa6,0x60,0xf2,0x7f,0x89,0x50,0xf3,0x6f,0x88,0x60,0xf4,0x5f,0x6b,0x50,0xf5, - 0x4f,0x6a,0x60,0xf6,0x3f,0x4d,0x50,0xf7,0x2f,0x4c,0x60,0xf8,0x28,0x69,0xd0,0xf9, - 0xf,0x2e,0x60,0xfa,0x8,0x4b,0xd0,0xfa,0xf8,0x4a,0xe0,0xfb,0xe8,0x2d,0xd0,0xfc, - 0xd8,0x2c,0xe0,0xfd,0xc8,0xf,0xd0,0xfe,0xb8,0xe,0xe0,0xff,0xa7,0xf1,0xd0,0x0, - 0x97,0xf0,0xe0,0x1,0x87,0xd3,0xd0,0x2,0x77,0xd2,0xe0,0x3,0x70,0xf0,0x50,0x4, - 0x60,0xef,0x60,0x5,0x50,0xd2,0x50,0x6,0x40,0xd1,0x60,0x7,0x30,0xb4,0x50,0x8, - 0x20,0xb3,0x60,0x9,0x10,0x96,0x50,0xa,0x0,0x95,0x60,0xa,0xf0,0x78,0x50,0xb, - 0xe0,0x77,0x60,0xc,0xd9,0x94,0xd0,0xd,0xc0,0x59,0x60,0xe,0xb9,0x76,0xd0,0xf, - 0xa9,0x75,0xe0,0x10,0x99,0x58,0xd0,0x11,0x89,0x57,0xe0,0x12,0x79,0x3a,0xd0,0x13, - 0x69,0x39,0xe0,0x14,0x59,0x1c,0xd0,0x15,0x49,0x1b,0xe0,0x16,0x38,0xfe,0xd0,0x17, - 0x28,0xfd,0xe0,0x18,0x22,0x1b,0x50,0x19,0x8,0xdf,0xe0,0x1a,0x1,0xfd,0x50,0x1a, - 0xf1,0xfc,0x60,0x1b,0xe1,0xdf,0x50,0x1c,0xd1,0xde,0x60,0x1d,0xc1,0xc1,0x50,0x1e, - 0xb1,0xc0,0x60,0x1f,0xa1,0xa3,0x50,0x20,0x75,0xf2,0xe0,0x21,0x81,0x85,0x50,0x22, - 0x55,0xd4,0xe0,0x23,0x6a,0xa1,0xd0,0x24,0x35,0xb6,0xe0,0x25,0x4a,0x83,0xd0,0x26, - 0x15,0x98,0xe0,0x27,0x2a,0x65,0xd0,0x27,0xfe,0xb5,0x60,0x29,0xa,0x47,0xd0,0x29, - 0xde,0x97,0x60,0x2a,0xea,0x29,0xd0,0x2b,0xbe,0x79,0x60,0x2c,0xd3,0x46,0x50,0x2d, - 0x9e,0x5b,0x60,0x2e,0xb3,0x28,0x50,0x2f,0x7e,0x3d,0x60,0x30,0x93,0xa,0x50,0x31, - 0x67,0x59,0xe0,0x32,0x72,0xec,0x50,0x33,0x47,0x3b,0xe0,0x34,0x52,0xce,0x50,0x35, - 0x27,0x1d,0xe0,0x36,0x32,0xb0,0x50,0x37,0x6,0xff,0xe0,0x38,0x1b,0xcc,0xd0,0x38, - 0xe6,0xe1,0xe0,0x39,0xfb,0xae,0xd0,0x3a,0xc6,0xc3,0xe0,0x3b,0xdb,0x90,0xd0,0x3c, - 0xaf,0xe0,0x60,0x3d,0xbb,0x72,0xd0,0x3e,0x8f,0xc2,0x60,0x3f,0x9b,0x54,0xd0,0x40, - 0x6f,0xa4,0x60,0x41,0x84,0x71,0x50,0x42,0x4f,0x86,0x60,0x43,0x64,0x53,0x50,0x44, - 0x2f,0x68,0x60,0x45,0x44,0x35,0x50,0x45,0xf3,0x9a,0xe0,0x47,0x2d,0x51,0xd0,0x47, - 0xd3,0x7c,0xe0,0x49,0xd,0x33,0xd0,0x49,0xb3,0x5e,0xe0,0x4a,0xed,0x15,0xd0,0x4b, - 0x9c,0x7b,0x60,0x4c,0xd6,0x32,0x50,0x4d,0x7c,0x5d,0x60,0x4e,0xb6,0x14,0x50,0x4f, - 0x5c,0x3f,0x60,0x50,0x95,0xf6,0x50,0x51,0x3c,0x21,0x60,0x52,0x75,0xd8,0x50,0x53, - 0x1c,0x3,0x60,0x54,0x55,0xba,0x50,0x54,0xfb,0xe5,0x60,0x56,0x35,0x9c,0x50,0x56, - 0xe5,0x1,0xe0,0x58,0x1e,0xb8,0xd0,0x58,0xc4,0xe3,0xe0,0x59,0xfe,0x9a,0xd0,0x5a, - 0xa4,0xc5,0xe0,0x5b,0xde,0x7c,0xd0,0x5c,0x84,0xa7,0xe0,0x5d,0xbe,0x5e,0xd0,0x5e, - 0x64,0x89,0xe0,0x5f,0x9e,0x40,0xd0,0x60,0x4d,0xa6,0x60,0x61,0x87,0x5d,0x50,0x62, - 0x2d,0x88,0x60,0x63,0x67,0x3f,0x50,0x64,0xd,0x6a,0x60,0x65,0x47,0x21,0x50,0x65, - 0xed,0x4c,0x60,0x67,0x27,0x3,0x50,0x67,0xcd,0x2e,0x60,0x69,0x6,0xe5,0x50,0x69, - 0xad,0x10,0x60,0x6a,0xe6,0xc7,0x50,0x6b,0x96,0x2c,0xe0,0x6c,0xcf,0xe3,0xd0,0x6d, - 0x76,0xe,0xe0,0x6e,0xaf,0xc5,0xd0,0x6f,0x55,0xf0,0xe0,0x70,0x8f,0xa7,0xd0,0x71, - 0x35,0xd2,0xe0,0x72,0x6f,0x89,0xd0,0x73,0x15,0xb4,0xe0,0x74,0x4f,0x6b,0xd0,0x74, - 0xfe,0xd1,0x60,0x76,0x38,0x88,0x50,0x76,0xde,0xb3,0x60,0x78,0x18,0x6a,0x50,0x78, - 0xbe,0x95,0x60,0x79,0xf8,0x4c,0x50,0x7a,0x9e,0x77,0x60,0x7b,0xd8,0x2e,0x50,0x7c, - 0x7e,0x59,0x60,0x7d,0xb8,0x10,0x50,0x7e,0x5e,0x3b,0x60,0x7f,0x97,0xf2,0x50,0x0, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x3,0x4,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x0,0x0,0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x7a,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x26,0x80,0x0,0x0,0x0,0x9c, + 0x4f,0x1f,0x50,0xa1,0x85,0x4a,0x98,0xa2,0xf1,0x30,0xf0,0xa3,0x66,0x78,0x60,0xc8, + 0xac,0xcf,0x70,0xca,0x59,0x2a,0xd0,0xcc,0xe7,0x4b,0x10,0xcd,0xa9,0x17,0x90,0xce, + 0xa2,0x43,0x10,0xcf,0x92,0x34,0x10,0xd0,0x30,0x3d,0xe0,0x15,0x27,0xa7,0xd0,0x16, + 0x18,0xdc,0x40,0x17,0x8,0xdb,0x50,0x17,0xfa,0xf,0xc0,0x18,0xea,0xe,0xd0,0x19, + 0xdb,0x43,0x40,0x1a,0xcc,0x93,0xd0,0x1b,0xbc,0xa0,0xf0,0x1c,0xac,0x91,0xf0,0x1d, + 0x9c,0x82,0xf0,0x1e,0x8c,0x73,0xf0,0x1f,0x7c,0x64,0xf0,0x20,0x6c,0x55,0xf0,0x21, + 0x5c,0x46,0xf0,0x22,0x4c,0x37,0xf0,0x23,0x3c,0x28,0xf0,0x24,0x2c,0x19,0xf0,0x25, + 0x1c,0x19,0x0,0x26,0xc,0xa,0x0,0x27,0x5,0x35,0x80,0x27,0xf5,0x26,0x80,0x28, + 0xe5,0x17,0x80,0x29,0xd5,0x8,0x80,0x2a,0xc4,0xf9,0x80,0x2b,0xb4,0xea,0x80,0x2c, + 0xa4,0xdb,0x80,0x2d,0x94,0xcc,0x80,0x2e,0x84,0xbd,0x80,0x2f,0x74,0xae,0x80,0x30, + 0x64,0x9f,0x80,0x31,0x5d,0xcb,0x0,0x32,0x72,0xa6,0x0,0x33,0x3d,0xad,0x0,0x34, + 0x52,0x88,0x0,0x34,0xaa,0xc0,0x60,0x35,0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36, + 0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x3e,0x12,0x13,0x60,0x3e,0x86,0x41,0x90,0x3f, + 0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43, + 0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47, + 0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a, + 0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e, + 0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52, + 0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56, + 0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59, + 0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d, + 0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61, + 0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65, + 0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68, + 0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c, + 0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70, + 0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74, + 0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78, + 0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b, + 0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f, + 0x8e,0x7f,0x90,0x1,0x2,0x3,0x4,0x3,0x5,0x8,0x6,0x7,0x6,0x7,0x5,0x9, + 0x5,0x9,0x5,0x9,0x5,0x9,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xc, + 0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc, + 0xd,0x4,0xe,0xf,0xe,0x10,0x4,0x11,0x10,0x11,0x10,0x11,0x10,0x11,0x10,0x11, + 0x10,0x11,0x10,0x11,0x10,0x11,0x10,0x11,0x10,0x11,0x10,0x11,0x10,0x11,0x10,0x11, + 0x10,0x11,0x10,0x11,0x10,0x11,0x10,0x11,0x10,0x11,0x10,0x11,0x10,0x11,0x10,0x11, + 0x10,0x11,0x10,0x11,0x10,0x11,0x10,0x11,0x10,0x11,0x10,0x11,0x10,0x11,0x10,0x11, + 0x10,0x11,0x10,0x11,0x10,0x11,0x10,0x11,0x10,0x11,0x10,0x11,0x10,0x0,0x0,0x17, + 0xbc,0x0,0x0,0x0,0x0,0x13,0xb0,0x0,0x4,0x0,0x0,0x16,0x68,0x0,0x8,0x0, + 0x0,0xe,0x10,0x0,0xc,0x0,0x0,0x1c,0x20,0x0,0x10,0x0,0x0,0x2a,0x30,0x0, + 0x14,0x0,0x0,0xe,0x10,0x0,0xc,0x0,0x0,0x1c,0x20,0x1,0x18,0x0,0x0,0x1c, + 0x20,0x1,0x18,0x0,0x0,0x38,0x40,0x1,0x1d,0x0,0x0,0x2a,0x30,0x0,0x14,0x0, + 0x0,0x38,0x40,0x1,0x1d,0x0,0x0,0x2a,0x30,0x1,0x21,0x0,0x0,0x1c,0x20,0x0, + 0x10,0x0,0x0,0x1c,0x20,0x1,0x18,0x0,0x0,0xe,0x10,0x0,0xc,0x0,0x0,0x1c, + 0x20,0x0,0x10,0x0,0x0,0x2a,0x30,0x1,0x21,0x4c,0x4d,0x54,0x0,0x57,0x4d,0x54, + 0x0,0x4b,0x4d,0x54,0x0,0x43,0x45,0x54,0x0,0x45,0x45,0x54,0x0,0x4d,0x53,0x4b, + 0x0,0x43,0x45,0x53,0x54,0x0,0x4d,0x53,0x44,0x0,0x45,0x45,0x53,0x54,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x1,0x1,0x1,0x1,0x1,0x1,0x1, + 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, + 0x1,0x1,0x1,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x12,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7b,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x26,0xf8, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x56,0xb6,0xcc,0x44,0xff, + 0xff,0xff,0xff,0x9c,0x4f,0x1f,0x50,0xff,0xff,0xff,0xff,0xa1,0x85,0x4a,0x98,0xff, + 0xff,0xff,0xff,0xa2,0xf1,0x30,0xf0,0xff,0xff,0xff,0xff,0xa3,0x66,0x78,0x60,0xff, + 0xff,0xff,0xff,0xc8,0xac,0xcf,0x70,0xff,0xff,0xff,0xff,0xca,0x59,0x2a,0xd0,0xff, + 0xff,0xff,0xff,0xcc,0xe7,0x4b,0x10,0xff,0xff,0xff,0xff,0xcd,0xa9,0x17,0x90,0xff, + 0xff,0xff,0xff,0xce,0xa2,0x43,0x10,0xff,0xff,0xff,0xff,0xcf,0x92,0x34,0x10,0xff, + 0xff,0xff,0xff,0xd0,0x30,0x3d,0xe0,0x0,0x0,0x0,0x0,0x15,0x27,0xa7,0xd0,0x0, + 0x0,0x0,0x0,0x16,0x18,0xdc,0x40,0x0,0x0,0x0,0x0,0x17,0x8,0xdb,0x50,0x0, + 0x0,0x0,0x0,0x17,0xfa,0xf,0xc0,0x0,0x0,0x0,0x0,0x18,0xea,0xe,0xd0,0x0, + 0x0,0x0,0x0,0x19,0xdb,0x43,0x40,0x0,0x0,0x0,0x0,0x1a,0xcc,0x93,0xd0,0x0, + 0x0,0x0,0x0,0x1b,0xbc,0xa0,0xf0,0x0,0x0,0x0,0x0,0x1c,0xac,0x91,0xf0,0x0, + 0x0,0x0,0x0,0x1d,0x9c,0x82,0xf0,0x0,0x0,0x0,0x0,0x1e,0x8c,0x73,0xf0,0x0, + 0x0,0x0,0x0,0x1f,0x7c,0x64,0xf0,0x0,0x0,0x0,0x0,0x20,0x6c,0x55,0xf0,0x0, + 0x0,0x0,0x0,0x21,0x5c,0x46,0xf0,0x0,0x0,0x0,0x0,0x22,0x4c,0x37,0xf0,0x0, + 0x0,0x0,0x0,0x23,0x3c,0x28,0xf0,0x0,0x0,0x0,0x0,0x24,0x2c,0x19,0xf0,0x0, + 0x0,0x0,0x0,0x25,0x1c,0x19,0x0,0x0,0x0,0x0,0x0,0x26,0xc,0xa,0x0,0x0, + 0x0,0x0,0x0,0x27,0x5,0x35,0x80,0x0,0x0,0x0,0x0,0x27,0xf5,0x26,0x80,0x0, + 0x0,0x0,0x0,0x28,0xe5,0x17,0x80,0x0,0x0,0x0,0x0,0x29,0xd5,0x8,0x80,0x0, + 0x0,0x0,0x0,0x2a,0xc4,0xf9,0x80,0x0,0x0,0x0,0x0,0x2b,0xb4,0xea,0x80,0x0, + 0x0,0x0,0x0,0x2c,0xa4,0xdb,0x80,0x0,0x0,0x0,0x0,0x2d,0x94,0xcc,0x80,0x0, + 0x0,0x0,0x0,0x2e,0x84,0xbd,0x80,0x0,0x0,0x0,0x0,0x2f,0x74,0xae,0x80,0x0, + 0x0,0x0,0x0,0x30,0x64,0x9f,0x80,0x0,0x0,0x0,0x0,0x31,0x5d,0xcb,0x0,0x0, + 0x0,0x0,0x0,0x32,0x72,0xa6,0x0,0x0,0x0,0x0,0x0,0x33,0x3d,0xad,0x0,0x0, + 0x0,0x0,0x0,0x34,0x52,0x88,0x0,0x0,0x0,0x0,0x0,0x34,0xaa,0xc0,0x60,0x0, + 0x0,0x0,0x0,0x35,0x1d,0x9d,0x10,0x0,0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0, + 0x0,0x0,0x0,0x36,0xfd,0x7f,0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0, + 0x0,0x0,0x0,0x3e,0x12,0x13,0x60,0x0,0x0,0x0,0x0,0x3e,0x86,0x41,0x90,0x0, + 0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66,0x23,0x90,0x0, + 0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46,0x5,0x90,0x0, + 0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25,0xe7,0x90,0x0, + 0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5,0xc9,0x90,0x0, + 0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee,0xe6,0x10,0x0, + 0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce,0xc8,0x10,0x0, + 0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae,0xaa,0x10,0x0, + 0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c,0x10,0x0, + 0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e,0x10,0x0, + 0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57,0x8a,0x90,0x0, + 0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37,0x6c,0x90,0x0, + 0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17,0x4e,0x90,0x0, + 0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7,0x30,0x90,0x0, + 0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7,0x12,0x90,0x0, + 0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4,0x90,0x0, + 0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0,0x11,0x10,0x0, + 0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3,0x10,0x0, + 0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f,0xd5,0x10,0x0, + 0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f,0xb7,0x10,0x0, + 0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f,0x99,0x10,0x0, + 0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8,0xb5,0x90,0x0, + 0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8,0x97,0x90,0x0, + 0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8,0x79,0x90,0x0, + 0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b,0x90,0x0, + 0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88,0x3d,0x90,0x0, + 0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68,0x1f,0x90,0x0, + 0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51,0x3c,0x10,0x0, + 0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31,0x1e,0x10,0x0, + 0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11,0x0,0x10,0x0, + 0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0,0xe2,0x10,0x0, + 0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0,0xc4,0x10,0x0, + 0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6,0x10,0x0, + 0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99,0xc2,0x90,0x0, + 0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79,0xa4,0x90,0x0, + 0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x1,0x2,0x3,0x4,0x3,0x5,0x8,0x6, + 0x7,0x6,0x7,0x5,0x9,0x5,0x9,0x5,0x9,0x5,0x9,0xa,0xb,0xa,0xb,0xa, + 0xb,0xa,0xb,0xa,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd, + 0xc,0xd,0xc,0xd,0xc,0xd,0x4,0xe,0xf,0xe,0x10,0x4,0x11,0x10,0x11,0x10, + 0x11,0x10,0x11,0x10,0x11,0x10,0x11,0x10,0x11,0x10,0x11,0x10,0x11,0x10,0x11,0x10, + 0x11,0x10,0x11,0x10,0x11,0x10,0x11,0x10,0x11,0x10,0x11,0x10,0x11,0x10,0x11,0x10, + 0x11,0x10,0x11,0x10,0x11,0x10,0x11,0x10,0x11,0x10,0x11,0x10,0x11,0x10,0x11,0x10, + 0x11,0x10,0x11,0x10,0x11,0x10,0x11,0x10,0x11,0x10,0x11,0x10,0x11,0x10,0x11,0x10, + 0x11,0x10,0x0,0x0,0x17,0xbc,0x0,0x0,0x0,0x0,0x13,0xb0,0x0,0x4,0x0,0x0, + 0x16,0x68,0x0,0x8,0x0,0x0,0xe,0x10,0x0,0xc,0x0,0x0,0x1c,0x20,0x0,0x10, + 0x0,0x0,0x2a,0x30,0x0,0x14,0x0,0x0,0xe,0x10,0x0,0xc,0x0,0x0,0x1c,0x20, + 0x1,0x18,0x0,0x0,0x1c,0x20,0x1,0x18,0x0,0x0,0x38,0x40,0x1,0x1d,0x0,0x0, + 0x2a,0x30,0x0,0x14,0x0,0x0,0x38,0x40,0x1,0x1d,0x0,0x0,0x2a,0x30,0x1,0x21, + 0x0,0x0,0x1c,0x20,0x0,0x10,0x0,0x0,0x1c,0x20,0x1,0x18,0x0,0x0,0xe,0x10, + 0x0,0xc,0x0,0x0,0x1c,0x20,0x0,0x10,0x0,0x0,0x2a,0x30,0x1,0x21,0x4c,0x4d, + 0x54,0x0,0x57,0x4d,0x54,0x0,0x4b,0x4d,0x54,0x0,0x43,0x45,0x54,0x0,0x45,0x45, + 0x54,0x0,0x4d,0x53,0x4b,0x0,0x43,0x45,0x53,0x54,0x0,0x4d,0x53,0x44,0x0,0x45, + 0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x1,0x1, + 0x1,0x1,0x1,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1,0xa,0x45,0x45,0x54,0x2d,0x32,0x45,0x45, + 0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2f,0x33,0x2c,0x4d,0x31,0x30,0x2e, + 0x35,0x2e,0x30,0x2f,0x34,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Isle_of_Man + 0x0,0x0,0xe,0x67, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xf3,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x11,0x80,0x0,0x0,0x0,0x9b, + 0x26,0xad,0xa0,0x9b,0xd6,0x5,0x20,0x9c,0xcf,0x30,0xa0,0x9d,0xa4,0xc3,0xa0,0x9e, + 0x9c,0x9d,0xa0,0x9f,0x97,0x1a,0xa0,0xa0,0x85,0xba,0x20,0xa1,0x76,0xfc,0xa0,0xa2, + 0x65,0x9c,0x20,0xa3,0x7b,0xc8,0xa0,0xa4,0x4e,0xb8,0xa0,0xa5,0x3f,0xfb,0x20,0xa6, + 0x25,0x60,0x20,0xa7,0x27,0xc6,0x20,0xa8,0x2a,0x2c,0x20,0xa8,0xeb,0xf8,0xa0,0xaa, + 0x0,0xd3,0xa0,0xaa,0xd5,0x15,0x20,0xab,0xe9,0xf0,0x20,0xac,0xc7,0x6c,0x20,0xad, + 0xc9,0xd2,0x20,0xae,0xa7,0x4e,0x20,0xaf,0xa0,0x79,0xa0,0xb0,0x87,0x30,0x20,0xb1, + 0x92,0xd0,0xa0,0xb2,0x70,0x4c,0xa0,0xb3,0x72,0xb2,0xa0,0xb4,0x50,0x2e,0xa0,0xb5, + 0x49,0x5a,0x20,0xb6,0x30,0x10,0xa0,0xb7,0x32,0x76,0xa0,0xb8,0xf,0xf2,0xa0,0xb9, + 0x12,0x58,0xa0,0xb9,0xef,0xd4,0xa0,0xba,0xe9,0x0,0x20,0xbb,0xd8,0xf1,0x20,0xbc, + 0xdb,0x57,0x20,0xbd,0xb8,0xd3,0x20,0xbe,0xb1,0xfe,0xa0,0xbf,0x98,0xb5,0x20,0xc0, + 0x9b,0x1b,0x20,0xc1,0x78,0x97,0x20,0xc2,0x7a,0xfd,0x20,0xc3,0x58,0x79,0x20,0xc4, + 0x51,0xa4,0xa0,0xc5,0x38,0x5b,0x20,0xc6,0x3a,0xc1,0x20,0xc7,0x58,0xd6,0xa0,0xc7, + 0xda,0x9,0xa0,0xca,0x16,0x26,0x90,0xca,0x97,0x59,0x90,0xcb,0xd1,0x1e,0x90,0xcc, + 0x77,0x3b,0x90,0xcd,0xb1,0x0,0x90,0xce,0x60,0x58,0x10,0xcf,0x90,0xe2,0x90,0xd0, + 0x6e,0x5e,0x90,0xd1,0x72,0x16,0x10,0xd1,0xfb,0x32,0x10,0xd2,0x69,0xfe,0x20,0xd3, + 0x63,0x29,0xa0,0xd4,0x49,0xe0,0x20,0xd5,0x1e,0x21,0xa0,0xd5,0x42,0xfd,0x90,0xd5, + 0xdf,0xe0,0x10,0xd6,0x4e,0xac,0x20,0xd6,0xfe,0x3,0xa0,0xd8,0x2e,0x8e,0x20,0xd8, + 0xf9,0x95,0x20,0xda,0xe,0x70,0x20,0xda,0xeb,0xec,0x20,0xdb,0xe5,0x17,0xa0,0xdc, + 0xcb,0xce,0x20,0xdd,0xc4,0xf9,0xa0,0xde,0xb4,0xea,0xa0,0xdf,0xae,0x16,0x20,0xe0, + 0x94,0xcc,0xa0,0xe1,0x72,0x48,0xa0,0xe2,0x6b,0x74,0x20,0xe3,0x52,0x2a,0xa0,0xe4, + 0x54,0x90,0xa0,0xe5,0x32,0xc,0xa0,0xe6,0x3d,0xad,0x20,0xe7,0x1b,0x29,0x20,0xe8, + 0x14,0x54,0xa0,0xe8,0xfb,0xb,0x20,0xe9,0xfd,0x71,0x20,0xea,0xda,0xed,0x20,0xeb, + 0xdd,0x53,0x20,0xec,0xba,0xcf,0x20,0xed,0xb3,0xfa,0xa0,0xee,0x9a,0xb1,0x20,0xef, + 0x81,0x67,0xa0,0xf0,0x9f,0x7d,0x20,0xf1,0x61,0x49,0xa0,0xf2,0x7f,0x5f,0x20,0xf3, + 0x4a,0x66,0x20,0xf4,0x5f,0x41,0x20,0xf5,0x21,0xd,0xa0,0xf6,0x3f,0x23,0x20,0xf7, + 0x0,0xef,0xa0,0xf8,0x1f,0x5,0x20,0xf8,0xe0,0xd1,0xa0,0xf9,0xfe,0xe7,0x20,0xfa, + 0xc0,0xb3,0xa0,0xfb,0xe8,0x3,0xa0,0xfc,0x7b,0xab,0xa0,0xfd,0xc7,0xbb,0x70,0x3, + 0x70,0xc6,0x20,0x4,0x29,0x58,0x20,0x5,0x50,0xa8,0x20,0x6,0x9,0x3a,0x20,0x7, + 0x30,0x8a,0x20,0x7,0xe9,0x1c,0x20,0x9,0x10,0x6c,0x20,0x9,0xc8,0xfe,0x20,0xa, + 0xf0,0x4e,0x20,0xb,0xb2,0x1a,0xa0,0xc,0xd0,0x30,0x20,0xd,0x91,0xfc,0xa0,0xe, + 0xb0,0x12,0x20,0xf,0x71,0xde,0xa0,0x10,0x99,0x2e,0xa0,0x11,0x51,0xc0,0xa0,0x12, + 0x79,0x10,0xa0,0x13,0x31,0xa2,0xa0,0x14,0x58,0xf2,0xa0,0x15,0x23,0xeb,0x90,0x16, + 0x38,0xc6,0x90,0x17,0x3,0xcd,0x90,0x18,0x18,0xa8,0x90,0x18,0xe3,0xaf,0x90,0x19, + 0xf8,0x8a,0x90,0x1a,0xc3,0x91,0x90,0x1b,0xe1,0xa7,0x10,0x1c,0xac,0xae,0x10,0x1d, + 0xc1,0x89,0x10,0x1e,0x8c,0x90,0x10,0x1f,0xa1,0x6b,0x10,0x20,0x6c,0x72,0x10,0x21, + 0x81,0x4d,0x10,0x22,0x4c,0x54,0x10,0x23,0x61,0x2f,0x10,0x24,0x2c,0x36,0x10,0x25, + 0x4a,0x4b,0x90,0x26,0xc,0x18,0x10,0x27,0x2a,0x2d,0x90,0x27,0xf5,0x34,0x90,0x29, + 0xa,0xf,0x90,0x29,0xd5,0x16,0x90,0x2a,0xe9,0xf1,0x90,0x2b,0xb4,0xf8,0x90,0x2c, + 0xc9,0xd3,0x90,0x2d,0x94,0xda,0x90,0x2e,0xa9,0xb5,0x90,0x2f,0x74,0xbc,0x90,0x30, + 0x89,0x97,0x90,0x30,0xe7,0x24,0x0,0x31,0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33, + 0x3d,0xbb,0x10,0x34,0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36, + 0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a, + 0xbd,0x43,0x10,0x3b,0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e, + 0x86,0x41,0x90,0x3f,0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42, + 0x46,0x5,0x90,0x43,0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46, + 0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49, + 0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d, + 0x8e,0x8c,0x10,0x4e,0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51, + 0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55, + 0x17,0x4e,0x90,0x56,0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58, + 0xd7,0x12,0x90,0x59,0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c, + 0xa0,0x11,0x10,0x5d,0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60, + 0x5f,0xd5,0x10,0x61,0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64, + 0x1f,0x99,0x10,0x65,0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67, + 0xe8,0x97,0x90,0x68,0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b, + 0xa8,0x5b,0x90,0x6c,0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f, + 0x68,0x1f,0x90,0x70,0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73, + 0x31,0x1e,0x10,0x74,0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76, + 0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a, + 0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e, + 0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0xff,0xff,0xc4,0x60,0x0,0x0,0xff,0xff,0xd5,0xd0,0x1,0x4, - 0xff,0xff,0xc7,0xc0,0x0,0x8,0xff,0xff,0xd5,0xd0,0x1,0xc,0xff,0xff,0xd5,0xd0, - 0x1,0x10,0x4c,0x4d,0x54,0x0,0x41,0x44,0x54,0x0,0x41,0x53,0x54,0x0,0x41,0x57, - 0x54,0x0,0x41,0x50,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x1, - 0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0xe5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0xf8,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x80,0xf1,0xab,0xa0,0xff,0xff,0xff,0xff, - 0x9a,0xe4,0xde,0xc0,0xff,0xff,0xff,0xff,0x9b,0xd6,0x13,0x30,0xff,0xff,0xff,0xff, - 0x9e,0xb8,0x85,0x60,0xff,0xff,0xff,0xff,0x9f,0xba,0xdd,0x50,0xff,0xff,0xff,0xff, - 0xa2,0x9d,0x17,0x40,0xff,0xff,0xff,0xff,0xa3,0x30,0xb1,0x30,0xff,0xff,0xff,0xff, - 0xa4,0x7a,0x56,0x40,0xff,0xff,0xff,0xff,0xa5,0x1b,0x1f,0x30,0xff,0xff,0xff,0xff, - 0xa6,0x53,0xa0,0xc0,0xff,0xff,0xff,0xff,0xa6,0xfc,0x52,0xb0,0xff,0xff,0xff,0xff, - 0xa8,0x3c,0xbd,0x40,0xff,0xff,0xff,0xff,0xa8,0xdc,0x34,0xb0,0xff,0xff,0xff,0xff, - 0xaa,0x1c,0x9f,0x40,0xff,0xff,0xff,0xff,0xaa,0xcd,0x3a,0x30,0xff,0xff,0xff,0xff, - 0xab,0xfc,0x81,0x40,0xff,0xff,0xff,0xff,0xac,0xbf,0x91,0x30,0xff,0xff,0xff,0xff, - 0xad,0xee,0xd8,0x40,0xff,0xff,0xff,0xff,0xae,0x8c,0xfe,0x30,0xff,0xff,0xff,0xff, - 0xaf,0xbc,0x45,0x40,0xff,0xff,0xff,0xff,0xb0,0x7f,0x55,0x30,0xff,0xff,0xff,0xff, - 0xb1,0xae,0x9c,0x40,0xff,0xff,0xff,0xff,0xb2,0x4b,0x70,0xb0,0xff,0xff,0xff,0xff, - 0xb3,0x8e,0x7e,0x40,0xff,0xff,0xff,0xff,0xb4,0x24,0xbb,0x30,0xff,0xff,0xff,0xff, - 0xb5,0x6e,0x60,0x40,0xff,0xff,0xff,0xff,0xb6,0x15,0xc0,0xb0,0xff,0xff,0xff,0xff, - 0xb7,0x4e,0x42,0x40,0xff,0xff,0xff,0xff,0xb8,0x8,0x17,0xb0,0xff,0xff,0xff,0xff, - 0xb9,0x24,0xe9,0xc0,0xff,0xff,0xff,0xff,0xb9,0xe7,0xf9,0xb0,0xff,0xff,0xff,0xff, - 0xbb,0x4,0xcb,0xc0,0xff,0xff,0xff,0xff,0xbb,0xd1,0x16,0x30,0xff,0xff,0xff,0xff, - 0xbd,0x0,0x5d,0x40,0xff,0xff,0xff,0xff,0xbd,0x9d,0x31,0xb0,0xff,0xff,0xff,0xff, - 0xbe,0xf2,0xb4,0x40,0xff,0xff,0xff,0xff,0xbf,0x90,0xda,0x30,0xff,0xff,0xff,0xff, - 0xc0,0xd3,0xe7,0xc0,0xff,0xff,0xff,0xff,0xc1,0x5e,0x47,0x30,0xff,0xff,0xff,0xff, - 0xc2,0x8d,0x8e,0x40,0xff,0xff,0xff,0xff,0xc3,0x50,0x9e,0x30,0xff,0xff,0xff,0xff, - 0xc4,0x6d,0x70,0x40,0xff,0xff,0xff,0xff,0xc5,0x30,0x80,0x30,0xff,0xff,0xff,0xff, - 0xc6,0x72,0x3c,0x40,0xff,0xff,0xff,0xff,0xc7,0x10,0x62,0x30,0xff,0xff,0xff,0xff, - 0xc8,0x36,0x6e,0xc0,0xff,0xff,0xff,0xff,0xc8,0xf9,0x7e,0xb0,0xff,0xff,0xff,0xff, - 0xca,0x16,0x50,0xc0,0xff,0xff,0xff,0xff,0xca,0xd9,0x60,0xb0,0xff,0xff,0xff,0xff, - 0xcb,0x88,0xe2,0x60,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff, - 0xd2,0x60,0xed,0xd0,0xff,0xff,0xff,0xff,0xd3,0x75,0xd6,0xe0,0xff,0xff,0xff,0xff, - 0xd4,0x40,0xcf,0xd0,0xff,0xff,0xff,0xff,0xd5,0x55,0xb8,0xe0,0xff,0xff,0xff,0xff, - 0xd6,0x20,0xb1,0xd0,0xff,0xff,0xff,0xff,0xd7,0x35,0x9a,0xe0,0xff,0xff,0xff,0xff, - 0xd8,0x0,0x93,0xd0,0xff,0xff,0xff,0xff,0xd9,0x15,0x7c,0xe0,0xff,0xff,0xff,0xff, - 0xd9,0xe0,0x75,0xd0,0xff,0xff,0xff,0xff,0xdc,0xde,0x7b,0x60,0xff,0xff,0xff,0xff, - 0xdd,0xa9,0x74,0x50,0xff,0xff,0xff,0xff,0xde,0xbe,0x5d,0x60,0xff,0xff,0xff,0xff, - 0xdf,0x89,0x56,0x50,0xff,0xff,0xff,0xff,0xe0,0x9e,0x3f,0x60,0xff,0xff,0xff,0xff, - 0xe1,0x69,0x38,0x50,0xff,0xff,0xff,0xff,0xe2,0x7e,0x21,0x60,0xff,0xff,0xff,0xff, - 0xe3,0x49,0x1a,0x50,0xff,0xff,0xff,0xff,0xe6,0x47,0x1f,0xe0,0xff,0xff,0xff,0xff, - 0xe7,0x12,0x18,0xd0,0xff,0xff,0xff,0xff,0xe8,0x27,0x1,0xe0,0xff,0xff,0xff,0xff, - 0xe8,0xf1,0xfa,0xd0,0xff,0xff,0xff,0xff,0xea,0x6,0xe3,0xe0,0xff,0xff,0xff,0xff, - 0xea,0xd1,0xdc,0xd0,0xff,0xff,0xff,0xff,0xeb,0xe6,0xc5,0xe0,0xff,0xff,0xff,0xff, - 0xec,0xb1,0xbe,0xd0,0xff,0xff,0xff,0xff,0xf1,0x8f,0xa6,0x60,0xff,0xff,0xff,0xff, - 0xf2,0x7f,0x89,0x50,0xff,0xff,0xff,0xff,0xf3,0x6f,0x88,0x60,0xff,0xff,0xff,0xff, - 0xf4,0x5f,0x6b,0x50,0xff,0xff,0xff,0xff,0xf5,0x4f,0x6a,0x60,0xff,0xff,0xff,0xff, - 0xf6,0x3f,0x4d,0x50,0xff,0xff,0xff,0xff,0xf7,0x2f,0x4c,0x60,0xff,0xff,0xff,0xff, - 0xf8,0x28,0x69,0xd0,0xff,0xff,0xff,0xff,0xf9,0xf,0x2e,0x60,0xff,0xff,0xff,0xff, - 0xfa,0x8,0x4b,0xd0,0xff,0xff,0xff,0xff,0xfa,0xf8,0x4a,0xe0,0xff,0xff,0xff,0xff, - 0xfb,0xe8,0x2d,0xd0,0xff,0xff,0xff,0xff,0xfc,0xd8,0x2c,0xe0,0xff,0xff,0xff,0xff, - 0xfd,0xc8,0xf,0xd0,0xff,0xff,0xff,0xff,0xfe,0xb8,0xe,0xe0,0xff,0xff,0xff,0xff, - 0xff,0xa7,0xf1,0xd0,0x0,0x0,0x0,0x0,0x0,0x97,0xf0,0xe0,0x0,0x0,0x0,0x0, - 0x1,0x87,0xd3,0xd0,0x0,0x0,0x0,0x0,0x2,0x77,0xd2,0xe0,0x0,0x0,0x0,0x0, - 0x3,0x70,0xf0,0x50,0x0,0x0,0x0,0x0,0x4,0x60,0xef,0x60,0x0,0x0,0x0,0x0, - 0x5,0x50,0xd2,0x50,0x0,0x0,0x0,0x0,0x6,0x40,0xd1,0x60,0x0,0x0,0x0,0x0, - 0x7,0x30,0xb4,0x50,0x0,0x0,0x0,0x0,0x8,0x20,0xb3,0x60,0x0,0x0,0x0,0x0, - 0x9,0x10,0x96,0x50,0x0,0x0,0x0,0x0,0xa,0x0,0x95,0x60,0x0,0x0,0x0,0x0, - 0xa,0xf0,0x78,0x50,0x0,0x0,0x0,0x0,0xb,0xe0,0x77,0x60,0x0,0x0,0x0,0x0, - 0xc,0xd9,0x94,0xd0,0x0,0x0,0x0,0x0,0xd,0xc0,0x59,0x60,0x0,0x0,0x0,0x0, - 0xe,0xb9,0x76,0xd0,0x0,0x0,0x0,0x0,0xf,0xa9,0x75,0xe0,0x0,0x0,0x0,0x0, - 0x10,0x99,0x58,0xd0,0x0,0x0,0x0,0x0,0x11,0x89,0x57,0xe0,0x0,0x0,0x0,0x0, - 0x12,0x79,0x3a,0xd0,0x0,0x0,0x0,0x0,0x13,0x69,0x39,0xe0,0x0,0x0,0x0,0x0, - 0x14,0x59,0x1c,0xd0,0x0,0x0,0x0,0x0,0x15,0x49,0x1b,0xe0,0x0,0x0,0x0,0x0, - 0x16,0x38,0xfe,0xd0,0x0,0x0,0x0,0x0,0x17,0x28,0xfd,0xe0,0x0,0x0,0x0,0x0, - 0x18,0x22,0x1b,0x50,0x0,0x0,0x0,0x0,0x19,0x8,0xdf,0xe0,0x0,0x0,0x0,0x0, - 0x1a,0x1,0xfd,0x50,0x0,0x0,0x0,0x0,0x1a,0xf1,0xfc,0x60,0x0,0x0,0x0,0x0, - 0x1b,0xe1,0xdf,0x50,0x0,0x0,0x0,0x0,0x1c,0xd1,0xde,0x60,0x0,0x0,0x0,0x0, - 0x1d,0xc1,0xc1,0x50,0x0,0x0,0x0,0x0,0x1e,0xb1,0xc0,0x60,0x0,0x0,0x0,0x0, - 0x1f,0xa1,0xa3,0x50,0x0,0x0,0x0,0x0,0x20,0x75,0xf2,0xe0,0x0,0x0,0x0,0x0, - 0x21,0x81,0x85,0x50,0x0,0x0,0x0,0x0,0x22,0x55,0xd4,0xe0,0x0,0x0,0x0,0x0, - 0x23,0x6a,0xa1,0xd0,0x0,0x0,0x0,0x0,0x24,0x35,0xb6,0xe0,0x0,0x0,0x0,0x0, - 0x25,0x4a,0x83,0xd0,0x0,0x0,0x0,0x0,0x26,0x15,0x98,0xe0,0x0,0x0,0x0,0x0, - 0x27,0x2a,0x65,0xd0,0x0,0x0,0x0,0x0,0x27,0xfe,0xb5,0x60,0x0,0x0,0x0,0x0, - 0x29,0xa,0x47,0xd0,0x0,0x0,0x0,0x0,0x29,0xde,0x97,0x60,0x0,0x0,0x0,0x0, - 0x2a,0xea,0x29,0xd0,0x0,0x0,0x0,0x0,0x2b,0xbe,0x79,0x60,0x0,0x0,0x0,0x0, - 0x2c,0xd3,0x46,0x50,0x0,0x0,0x0,0x0,0x2d,0x9e,0x5b,0x60,0x0,0x0,0x0,0x0, - 0x2e,0xb3,0x28,0x50,0x0,0x0,0x0,0x0,0x2f,0x7e,0x3d,0x60,0x0,0x0,0x0,0x0, - 0x30,0x93,0xa,0x50,0x0,0x0,0x0,0x0,0x31,0x67,0x59,0xe0,0x0,0x0,0x0,0x0, - 0x32,0x72,0xec,0x50,0x0,0x0,0x0,0x0,0x33,0x47,0x3b,0xe0,0x0,0x0,0x0,0x0, - 0x34,0x52,0xce,0x50,0x0,0x0,0x0,0x0,0x35,0x27,0x1d,0xe0,0x0,0x0,0x0,0x0, - 0x36,0x32,0xb0,0x50,0x0,0x0,0x0,0x0,0x37,0x6,0xff,0xe0,0x0,0x0,0x0,0x0, - 0x38,0x1b,0xcc,0xd0,0x0,0x0,0x0,0x0,0x38,0xe6,0xe1,0xe0,0x0,0x0,0x0,0x0, - 0x39,0xfb,0xae,0xd0,0x0,0x0,0x0,0x0,0x3a,0xc6,0xc3,0xe0,0x0,0x0,0x0,0x0, - 0x3b,0xdb,0x90,0xd0,0x0,0x0,0x0,0x0,0x3c,0xaf,0xe0,0x60,0x0,0x0,0x0,0x0, - 0x3d,0xbb,0x72,0xd0,0x0,0x0,0x0,0x0,0x3e,0x8f,0xc2,0x60,0x0,0x0,0x0,0x0, - 0x3f,0x9b,0x54,0xd0,0x0,0x0,0x0,0x0,0x40,0x6f,0xa4,0x60,0x0,0x0,0x0,0x0, - 0x41,0x84,0x71,0x50,0x0,0x0,0x0,0x0,0x42,0x4f,0x86,0x60,0x0,0x0,0x0,0x0, - 0x43,0x64,0x53,0x50,0x0,0x0,0x0,0x0,0x44,0x2f,0x68,0x60,0x0,0x0,0x0,0x0, - 0x45,0x44,0x35,0x50,0x0,0x0,0x0,0x0,0x45,0xf3,0x9a,0xe0,0x0,0x0,0x0,0x0, - 0x47,0x2d,0x51,0xd0,0x0,0x0,0x0,0x0,0x47,0xd3,0x7c,0xe0,0x0,0x0,0x0,0x0, - 0x49,0xd,0x33,0xd0,0x0,0x0,0x0,0x0,0x49,0xb3,0x5e,0xe0,0x0,0x0,0x0,0x0, - 0x4a,0xed,0x15,0xd0,0x0,0x0,0x0,0x0,0x4b,0x9c,0x7b,0x60,0x0,0x0,0x0,0x0, - 0x4c,0xd6,0x32,0x50,0x0,0x0,0x0,0x0,0x4d,0x7c,0x5d,0x60,0x0,0x0,0x0,0x0, - 0x4e,0xb6,0x14,0x50,0x0,0x0,0x0,0x0,0x4f,0x5c,0x3f,0x60,0x0,0x0,0x0,0x0, - 0x50,0x95,0xf6,0x50,0x0,0x0,0x0,0x0,0x51,0x3c,0x21,0x60,0x0,0x0,0x0,0x0, - 0x52,0x75,0xd8,0x50,0x0,0x0,0x0,0x0,0x53,0x1c,0x3,0x60,0x0,0x0,0x0,0x0, - 0x54,0x55,0xba,0x50,0x0,0x0,0x0,0x0,0x54,0xfb,0xe5,0x60,0x0,0x0,0x0,0x0, - 0x56,0x35,0x9c,0x50,0x0,0x0,0x0,0x0,0x56,0xe5,0x1,0xe0,0x0,0x0,0x0,0x0, - 0x58,0x1e,0xb8,0xd0,0x0,0x0,0x0,0x0,0x58,0xc4,0xe3,0xe0,0x0,0x0,0x0,0x0, - 0x59,0xfe,0x9a,0xd0,0x0,0x0,0x0,0x0,0x5a,0xa4,0xc5,0xe0,0x0,0x0,0x0,0x0, - 0x5b,0xde,0x7c,0xd0,0x0,0x0,0x0,0x0,0x5c,0x84,0xa7,0xe0,0x0,0x0,0x0,0x0, - 0x5d,0xbe,0x5e,0xd0,0x0,0x0,0x0,0x0,0x5e,0x64,0x89,0xe0,0x0,0x0,0x0,0x0, - 0x5f,0x9e,0x40,0xd0,0x0,0x0,0x0,0x0,0x60,0x4d,0xa6,0x60,0x0,0x0,0x0,0x0, - 0x61,0x87,0x5d,0x50,0x0,0x0,0x0,0x0,0x62,0x2d,0x88,0x60,0x0,0x0,0x0,0x0, - 0x63,0x67,0x3f,0x50,0x0,0x0,0x0,0x0,0x64,0xd,0x6a,0x60,0x0,0x0,0x0,0x0, - 0x65,0x47,0x21,0x50,0x0,0x0,0x0,0x0,0x65,0xed,0x4c,0x60,0x0,0x0,0x0,0x0, - 0x67,0x27,0x3,0x50,0x0,0x0,0x0,0x0,0x67,0xcd,0x2e,0x60,0x0,0x0,0x0,0x0, - 0x69,0x6,0xe5,0x50,0x0,0x0,0x0,0x0,0x69,0xad,0x10,0x60,0x0,0x0,0x0,0x0, - 0x6a,0xe6,0xc7,0x50,0x0,0x0,0x0,0x0,0x6b,0x96,0x2c,0xe0,0x0,0x0,0x0,0x0, - 0x6c,0xcf,0xe3,0xd0,0x0,0x0,0x0,0x0,0x6d,0x76,0xe,0xe0,0x0,0x0,0x0,0x0, - 0x6e,0xaf,0xc5,0xd0,0x0,0x0,0x0,0x0,0x6f,0x55,0xf0,0xe0,0x0,0x0,0x0,0x0, - 0x70,0x8f,0xa7,0xd0,0x0,0x0,0x0,0x0,0x71,0x35,0xd2,0xe0,0x0,0x0,0x0,0x0, - 0x72,0x6f,0x89,0xd0,0x0,0x0,0x0,0x0,0x73,0x15,0xb4,0xe0,0x0,0x0,0x0,0x0, - 0x74,0x4f,0x6b,0xd0,0x0,0x0,0x0,0x0,0x74,0xfe,0xd1,0x60,0x0,0x0,0x0,0x0, - 0x76,0x38,0x88,0x50,0x0,0x0,0x0,0x0,0x76,0xde,0xb3,0x60,0x0,0x0,0x0,0x0, - 0x78,0x18,0x6a,0x50,0x0,0x0,0x0,0x0,0x78,0xbe,0x95,0x60,0x0,0x0,0x0,0x0, - 0x79,0xf8,0x4c,0x50,0x0,0x0,0x0,0x0,0x7a,0x9e,0x77,0x60,0x0,0x0,0x0,0x0, - 0x7b,0xd8,0x2e,0x50,0x0,0x0,0x0,0x0,0x7c,0x7e,0x59,0x60,0x0,0x0,0x0,0x0, - 0x7d,0xb8,0x10,0x50,0x0,0x0,0x0,0x0,0x7e,0x5e,0x3b,0x60,0x0,0x0,0x0,0x0, - 0x7f,0x97,0xf2,0x50,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3, + 0x1,0x3,0x1,0x2,0x1,0x2,0x1,0x3,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x1,0x2,0x1,0x4,0x6,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x7,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0xff,0xff,0xff,0xb5,0x0,0x0, + 0x0,0x0,0xe,0x10,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x1c,0x20, + 0x1,0xc,0x0,0x0,0xe,0x10,0x0,0x4,0x0,0x0,0xe,0x10,0x1,0x4,0x0,0x0, + 0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x42,0x53, + 0x54,0x0,0x47,0x4d,0x54,0x0,0x42,0x44,0x53,0x54,0x0,0x0,0x1,0x1,0x1,0x0, + 0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x54,0x5a,0x69,0x66,0x32, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf4,0x0, + 0x0,0x0,0x8,0x0,0x0,0x0,0x11,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff, + 0xff,0xff,0xff,0x1a,0x5d,0x9,0xcb,0xff,0xff,0xff,0xff,0x9b,0x26,0xad,0xa0,0xff, + 0xff,0xff,0xff,0x9b,0xd6,0x5,0x20,0xff,0xff,0xff,0xff,0x9c,0xcf,0x30,0xa0,0xff, + 0xff,0xff,0xff,0x9d,0xa4,0xc3,0xa0,0xff,0xff,0xff,0xff,0x9e,0x9c,0x9d,0xa0,0xff, + 0xff,0xff,0xff,0x9f,0x97,0x1a,0xa0,0xff,0xff,0xff,0xff,0xa0,0x85,0xba,0x20,0xff, + 0xff,0xff,0xff,0xa1,0x76,0xfc,0xa0,0xff,0xff,0xff,0xff,0xa2,0x65,0x9c,0x20,0xff, + 0xff,0xff,0xff,0xa3,0x7b,0xc8,0xa0,0xff,0xff,0xff,0xff,0xa4,0x4e,0xb8,0xa0,0xff, + 0xff,0xff,0xff,0xa5,0x3f,0xfb,0x20,0xff,0xff,0xff,0xff,0xa6,0x25,0x60,0x20,0xff, + 0xff,0xff,0xff,0xa7,0x27,0xc6,0x20,0xff,0xff,0xff,0xff,0xa8,0x2a,0x2c,0x20,0xff, + 0xff,0xff,0xff,0xa8,0xeb,0xf8,0xa0,0xff,0xff,0xff,0xff,0xaa,0x0,0xd3,0xa0,0xff, + 0xff,0xff,0xff,0xaa,0xd5,0x15,0x20,0xff,0xff,0xff,0xff,0xab,0xe9,0xf0,0x20,0xff, + 0xff,0xff,0xff,0xac,0xc7,0x6c,0x20,0xff,0xff,0xff,0xff,0xad,0xc9,0xd2,0x20,0xff, + 0xff,0xff,0xff,0xae,0xa7,0x4e,0x20,0xff,0xff,0xff,0xff,0xaf,0xa0,0x79,0xa0,0xff, + 0xff,0xff,0xff,0xb0,0x87,0x30,0x20,0xff,0xff,0xff,0xff,0xb1,0x92,0xd0,0xa0,0xff, + 0xff,0xff,0xff,0xb2,0x70,0x4c,0xa0,0xff,0xff,0xff,0xff,0xb3,0x72,0xb2,0xa0,0xff, + 0xff,0xff,0xff,0xb4,0x50,0x2e,0xa0,0xff,0xff,0xff,0xff,0xb5,0x49,0x5a,0x20,0xff, + 0xff,0xff,0xff,0xb6,0x30,0x10,0xa0,0xff,0xff,0xff,0xff,0xb7,0x32,0x76,0xa0,0xff, + 0xff,0xff,0xff,0xb8,0xf,0xf2,0xa0,0xff,0xff,0xff,0xff,0xb9,0x12,0x58,0xa0,0xff, + 0xff,0xff,0xff,0xb9,0xef,0xd4,0xa0,0xff,0xff,0xff,0xff,0xba,0xe9,0x0,0x20,0xff, + 0xff,0xff,0xff,0xbb,0xd8,0xf1,0x20,0xff,0xff,0xff,0xff,0xbc,0xdb,0x57,0x20,0xff, + 0xff,0xff,0xff,0xbd,0xb8,0xd3,0x20,0xff,0xff,0xff,0xff,0xbe,0xb1,0xfe,0xa0,0xff, + 0xff,0xff,0xff,0xbf,0x98,0xb5,0x20,0xff,0xff,0xff,0xff,0xc0,0x9b,0x1b,0x20,0xff, + 0xff,0xff,0xff,0xc1,0x78,0x97,0x20,0xff,0xff,0xff,0xff,0xc2,0x7a,0xfd,0x20,0xff, + 0xff,0xff,0xff,0xc3,0x58,0x79,0x20,0xff,0xff,0xff,0xff,0xc4,0x51,0xa4,0xa0,0xff, + 0xff,0xff,0xff,0xc5,0x38,0x5b,0x20,0xff,0xff,0xff,0xff,0xc6,0x3a,0xc1,0x20,0xff, + 0xff,0xff,0xff,0xc7,0x58,0xd6,0xa0,0xff,0xff,0xff,0xff,0xc7,0xda,0x9,0xa0,0xff, + 0xff,0xff,0xff,0xca,0x16,0x26,0x90,0xff,0xff,0xff,0xff,0xca,0x97,0x59,0x90,0xff, + 0xff,0xff,0xff,0xcb,0xd1,0x1e,0x90,0xff,0xff,0xff,0xff,0xcc,0x77,0x3b,0x90,0xff, + 0xff,0xff,0xff,0xcd,0xb1,0x0,0x90,0xff,0xff,0xff,0xff,0xce,0x60,0x58,0x10,0xff, + 0xff,0xff,0xff,0xcf,0x90,0xe2,0x90,0xff,0xff,0xff,0xff,0xd0,0x6e,0x5e,0x90,0xff, + 0xff,0xff,0xff,0xd1,0x72,0x16,0x10,0xff,0xff,0xff,0xff,0xd1,0xfb,0x32,0x10,0xff, + 0xff,0xff,0xff,0xd2,0x69,0xfe,0x20,0xff,0xff,0xff,0xff,0xd3,0x63,0x29,0xa0,0xff, + 0xff,0xff,0xff,0xd4,0x49,0xe0,0x20,0xff,0xff,0xff,0xff,0xd5,0x1e,0x21,0xa0,0xff, + 0xff,0xff,0xff,0xd5,0x42,0xfd,0x90,0xff,0xff,0xff,0xff,0xd5,0xdf,0xe0,0x10,0xff, + 0xff,0xff,0xff,0xd6,0x4e,0xac,0x20,0xff,0xff,0xff,0xff,0xd6,0xfe,0x3,0xa0,0xff, + 0xff,0xff,0xff,0xd8,0x2e,0x8e,0x20,0xff,0xff,0xff,0xff,0xd8,0xf9,0x95,0x20,0xff, + 0xff,0xff,0xff,0xda,0xe,0x70,0x20,0xff,0xff,0xff,0xff,0xda,0xeb,0xec,0x20,0xff, + 0xff,0xff,0xff,0xdb,0xe5,0x17,0xa0,0xff,0xff,0xff,0xff,0xdc,0xcb,0xce,0x20,0xff, + 0xff,0xff,0xff,0xdd,0xc4,0xf9,0xa0,0xff,0xff,0xff,0xff,0xde,0xb4,0xea,0xa0,0xff, + 0xff,0xff,0xff,0xdf,0xae,0x16,0x20,0xff,0xff,0xff,0xff,0xe0,0x94,0xcc,0xa0,0xff, + 0xff,0xff,0xff,0xe1,0x72,0x48,0xa0,0xff,0xff,0xff,0xff,0xe2,0x6b,0x74,0x20,0xff, + 0xff,0xff,0xff,0xe3,0x52,0x2a,0xa0,0xff,0xff,0xff,0xff,0xe4,0x54,0x90,0xa0,0xff, + 0xff,0xff,0xff,0xe5,0x32,0xc,0xa0,0xff,0xff,0xff,0xff,0xe6,0x3d,0xad,0x20,0xff, + 0xff,0xff,0xff,0xe7,0x1b,0x29,0x20,0xff,0xff,0xff,0xff,0xe8,0x14,0x54,0xa0,0xff, + 0xff,0xff,0xff,0xe8,0xfb,0xb,0x20,0xff,0xff,0xff,0xff,0xe9,0xfd,0x71,0x20,0xff, + 0xff,0xff,0xff,0xea,0xda,0xed,0x20,0xff,0xff,0xff,0xff,0xeb,0xdd,0x53,0x20,0xff, + 0xff,0xff,0xff,0xec,0xba,0xcf,0x20,0xff,0xff,0xff,0xff,0xed,0xb3,0xfa,0xa0,0xff, + 0xff,0xff,0xff,0xee,0x9a,0xb1,0x20,0xff,0xff,0xff,0xff,0xef,0x81,0x67,0xa0,0xff, + 0xff,0xff,0xff,0xf0,0x9f,0x7d,0x20,0xff,0xff,0xff,0xff,0xf1,0x61,0x49,0xa0,0xff, + 0xff,0xff,0xff,0xf2,0x7f,0x5f,0x20,0xff,0xff,0xff,0xff,0xf3,0x4a,0x66,0x20,0xff, + 0xff,0xff,0xff,0xf4,0x5f,0x41,0x20,0xff,0xff,0xff,0xff,0xf5,0x21,0xd,0xa0,0xff, + 0xff,0xff,0xff,0xf6,0x3f,0x23,0x20,0xff,0xff,0xff,0xff,0xf7,0x0,0xef,0xa0,0xff, + 0xff,0xff,0xff,0xf8,0x1f,0x5,0x20,0xff,0xff,0xff,0xff,0xf8,0xe0,0xd1,0xa0,0xff, + 0xff,0xff,0xff,0xf9,0xfe,0xe7,0x20,0xff,0xff,0xff,0xff,0xfa,0xc0,0xb3,0xa0,0xff, + 0xff,0xff,0xff,0xfb,0xe8,0x3,0xa0,0xff,0xff,0xff,0xff,0xfc,0x7b,0xab,0xa0,0xff, + 0xff,0xff,0xff,0xfd,0xc7,0xbb,0x70,0x0,0x0,0x0,0x0,0x3,0x70,0xc6,0x20,0x0, + 0x0,0x0,0x0,0x4,0x29,0x58,0x20,0x0,0x0,0x0,0x0,0x5,0x50,0xa8,0x20,0x0, + 0x0,0x0,0x0,0x6,0x9,0x3a,0x20,0x0,0x0,0x0,0x0,0x7,0x30,0x8a,0x20,0x0, + 0x0,0x0,0x0,0x7,0xe9,0x1c,0x20,0x0,0x0,0x0,0x0,0x9,0x10,0x6c,0x20,0x0, + 0x0,0x0,0x0,0x9,0xc8,0xfe,0x20,0x0,0x0,0x0,0x0,0xa,0xf0,0x4e,0x20,0x0, + 0x0,0x0,0x0,0xb,0xb2,0x1a,0xa0,0x0,0x0,0x0,0x0,0xc,0xd0,0x30,0x20,0x0, + 0x0,0x0,0x0,0xd,0x91,0xfc,0xa0,0x0,0x0,0x0,0x0,0xe,0xb0,0x12,0x20,0x0, + 0x0,0x0,0x0,0xf,0x71,0xde,0xa0,0x0,0x0,0x0,0x0,0x10,0x99,0x2e,0xa0,0x0, + 0x0,0x0,0x0,0x11,0x51,0xc0,0xa0,0x0,0x0,0x0,0x0,0x12,0x79,0x10,0xa0,0x0, + 0x0,0x0,0x0,0x13,0x31,0xa2,0xa0,0x0,0x0,0x0,0x0,0x14,0x58,0xf2,0xa0,0x0, + 0x0,0x0,0x0,0x15,0x23,0xeb,0x90,0x0,0x0,0x0,0x0,0x16,0x38,0xc6,0x90,0x0, + 0x0,0x0,0x0,0x17,0x3,0xcd,0x90,0x0,0x0,0x0,0x0,0x18,0x18,0xa8,0x90,0x0, + 0x0,0x0,0x0,0x18,0xe3,0xaf,0x90,0x0,0x0,0x0,0x0,0x19,0xf8,0x8a,0x90,0x0, + 0x0,0x0,0x0,0x1a,0xc3,0x91,0x90,0x0,0x0,0x0,0x0,0x1b,0xe1,0xa7,0x10,0x0, + 0x0,0x0,0x0,0x1c,0xac,0xae,0x10,0x0,0x0,0x0,0x0,0x1d,0xc1,0x89,0x10,0x0, + 0x0,0x0,0x0,0x1e,0x8c,0x90,0x10,0x0,0x0,0x0,0x0,0x1f,0xa1,0x6b,0x10,0x0, + 0x0,0x0,0x0,0x20,0x6c,0x72,0x10,0x0,0x0,0x0,0x0,0x21,0x81,0x4d,0x10,0x0, + 0x0,0x0,0x0,0x22,0x4c,0x54,0x10,0x0,0x0,0x0,0x0,0x23,0x61,0x2f,0x10,0x0, + 0x0,0x0,0x0,0x24,0x2c,0x36,0x10,0x0,0x0,0x0,0x0,0x25,0x4a,0x4b,0x90,0x0, + 0x0,0x0,0x0,0x26,0xc,0x18,0x10,0x0,0x0,0x0,0x0,0x27,0x2a,0x2d,0x90,0x0, + 0x0,0x0,0x0,0x27,0xf5,0x34,0x90,0x0,0x0,0x0,0x0,0x29,0xa,0xf,0x90,0x0, + 0x0,0x0,0x0,0x29,0xd5,0x16,0x90,0x0,0x0,0x0,0x0,0x2a,0xe9,0xf1,0x90,0x0, + 0x0,0x0,0x0,0x2b,0xb4,0xf8,0x90,0x0,0x0,0x0,0x0,0x2c,0xc9,0xd3,0x90,0x0, + 0x0,0x0,0x0,0x2d,0x94,0xda,0x90,0x0,0x0,0x0,0x0,0x2e,0xa9,0xb5,0x90,0x0, + 0x0,0x0,0x0,0x2f,0x74,0xbc,0x90,0x0,0x0,0x0,0x0,0x30,0x89,0x97,0x90,0x0, + 0x0,0x0,0x0,0x30,0xe7,0x24,0x0,0x0,0x0,0x0,0x0,0x31,0x5d,0xd9,0x10,0x0, + 0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d,0xbb,0x10,0x0, + 0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d,0x9d,0x10,0x0, + 0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd,0x7f,0x10,0x0, + 0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd,0x61,0x10,0x0, + 0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd,0x43,0x10,0x0, + 0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f,0x90,0x0, + 0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86,0x41,0x90,0x0, + 0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66,0x23,0x90,0x0, + 0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46,0x5,0x90,0x0, + 0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25,0xe7,0x90,0x0, + 0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5,0xc9,0x90,0x0, + 0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee,0xe6,0x10,0x0, + 0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce,0xc8,0x10,0x0, + 0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae,0xaa,0x10,0x0, + 0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c,0x10,0x0, + 0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e,0x10,0x0, + 0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57,0x8a,0x90,0x0, + 0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37,0x6c,0x90,0x0, + 0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17,0x4e,0x90,0x0, + 0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7,0x30,0x90,0x0, + 0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7,0x12,0x90,0x0, + 0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4,0x90,0x0, + 0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0,0x11,0x10,0x0, + 0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3,0x10,0x0, + 0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f,0xd5,0x10,0x0, + 0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f,0xb7,0x10,0x0, + 0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f,0x99,0x10,0x0, + 0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8,0xb5,0x90,0x0, + 0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8,0x97,0x90,0x0, + 0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8,0x79,0x90,0x0, + 0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b,0x90,0x0, + 0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88,0x3d,0x90,0x0, + 0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68,0x1f,0x90,0x0, + 0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51,0x3c,0x10,0x0, + 0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31,0x1e,0x10,0x0, + 0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11,0x0,0x10,0x0, + 0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0,0xe2,0x10,0x0, + 0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0,0xc4,0x10,0x0, + 0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6,0x10,0x0, + 0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99,0xc2,0x90,0x0, + 0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79,0xa4,0x90,0x0, + 0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x3,0x1,0x3,0x1,0x3,0x1, + 0x3,0x1,0x3,0x1,0x2,0x1,0x2,0x1,0x3,0x1,0x2,0x1,0x2,0x1,0x2,0x1, 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0xc4,0x60,0x0,0x0,0xff, - 0xff,0xd5,0xd0,0x1,0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0xff,0xff,0xd5,0xd0,0x1, - 0xc,0xff,0xff,0xd5,0xd0,0x1,0x10,0x4c,0x4d,0x54,0x0,0x41,0x44,0x54,0x0,0x41, - 0x53,0x54,0x0,0x41,0x57,0x54,0x0,0x41,0x50,0x54,0x0,0x0,0x0,0x0,0x0,0x1, - 0x0,0x0,0x0,0x0,0x1,0xa,0x41,0x53,0x54,0x34,0x41,0x44,0x54,0x2c,0x4d,0x33, - 0x2e,0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Canada/Yukon - 0x0,0x0,0x8,0x2d, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x7f,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x21,0x80,0x0,0x0,0x0,0x9e, - 0xb8,0xcb,0xb0,0x9f,0xbb,0x23,0xa0,0xa0,0xd0,0xc,0xb0,0xa1,0xa2,0xd2,0x80,0xcb, - 0x89,0x28,0xb0,0xd2,0x23,0xf4,0x70,0xd2,0x61,0x34,0x20,0xf7,0x2f,0x76,0x90,0xf8, - 0x28,0xa2,0x10,0xfb,0x1d,0x5f,0x10,0x13,0x69,0x72,0x20,0x14,0x59,0x55,0x10,0x15, - 0x49,0x54,0x20,0x16,0x39,0x37,0x10,0x17,0x29,0x36,0x20,0x18,0x22,0x53,0x90,0x19, - 0x9,0x18,0x20,0x1a,0x2,0x35,0x90,0x1a,0xf2,0x34,0xa0,0x1b,0xe2,0x17,0x90,0x1c, - 0xd2,0x16,0xa0,0x1d,0xc1,0xf9,0x90,0x1e,0xb1,0xf8,0xa0,0x1f,0xa1,0xdb,0x90,0x20, - 0x76,0x2b,0x20,0x21,0x81,0xbd,0x90,0x22,0x56,0xd,0x20,0x23,0x6a,0xda,0x10,0x24, - 0x35,0xef,0x20,0x25,0x4a,0xbc,0x10,0x26,0x15,0xd1,0x20,0x27,0x2a,0x9e,0x10,0x27, - 0xfe,0xed,0xa0,0x29,0xa,0x80,0x10,0x29,0xde,0xcf,0xa0,0x2a,0xea,0x62,0x10,0x2b, - 0xbe,0xb1,0xa0,0x2c,0xd3,0x7e,0x90,0x2d,0x9e,0x93,0xa0,0x2e,0xb3,0x60,0x90,0x2f, - 0x7e,0x75,0xa0,0x30,0x93,0x42,0x90,0x31,0x67,0x92,0x20,0x32,0x73,0x24,0x90,0x33, - 0x47,0x74,0x20,0x34,0x53,0x6,0x90,0x35,0x27,0x56,0x20,0x36,0x32,0xe8,0x90,0x37, - 0x7,0x38,0x20,0x38,0x1c,0x5,0x10,0x38,0xe7,0x1a,0x20,0x39,0xfb,0xe7,0x10,0x3a, - 0xc6,0xfc,0x20,0x3b,0xdb,0xc9,0x10,0x3c,0xb0,0x18,0xa0,0x3d,0xbb,0xab,0x10,0x3e, - 0x8f,0xfa,0xa0,0x3f,0x9b,0x8d,0x10,0x40,0x6f,0xdc,0xa0,0x41,0x84,0xa9,0x90,0x42, - 0x4f,0xbe,0xa0,0x43,0x64,0x8b,0x90,0x44,0x2f,0xa0,0xa0,0x45,0x44,0x6d,0x90,0x45, - 0xf3,0xd3,0x20,0x47,0x2d,0x8a,0x10,0x47,0xd3,0xb5,0x20,0x49,0xd,0x6c,0x10,0x49, - 0xb3,0x97,0x20,0x4a,0xed,0x4e,0x10,0x4b,0x9c,0xb3,0xa0,0x4c,0xd6,0x6a,0x90,0x4d, - 0x7c,0x95,0xa0,0x4e,0xb6,0x4c,0x90,0x4f,0x5c,0x77,0xa0,0x50,0x96,0x2e,0x90,0x51, - 0x3c,0x59,0xa0,0x52,0x76,0x10,0x90,0x53,0x1c,0x3b,0xa0,0x54,0x55,0xf2,0x90,0x54, - 0xfc,0x1d,0xa0,0x56,0x35,0xd4,0x90,0x56,0xe5,0x3a,0x20,0x58,0x1e,0xf1,0x10,0x58, - 0xc5,0x1c,0x20,0x59,0xfe,0xd3,0x10,0x5a,0xa4,0xfe,0x20,0x5b,0xde,0xb5,0x10,0x5c, - 0x84,0xe0,0x20,0x5d,0xbe,0x97,0x10,0x5e,0x64,0xc2,0x20,0x5f,0x9e,0x79,0x10,0x60, - 0x4d,0xde,0xa0,0x61,0x87,0x95,0x90,0x62,0x2d,0xc0,0xa0,0x63,0x67,0x77,0x90,0x64, - 0xd,0xa2,0xa0,0x65,0x47,0x59,0x90,0x65,0xed,0x84,0xa0,0x67,0x27,0x3b,0x90,0x67, - 0xcd,0x66,0xa0,0x69,0x7,0x1d,0x90,0x69,0xad,0x48,0xa0,0x6a,0xe6,0xff,0x90,0x6b, - 0x96,0x65,0x20,0x6c,0xd0,0x1c,0x10,0x6d,0x76,0x47,0x20,0x6e,0xaf,0xfe,0x10,0x6f, - 0x56,0x29,0x20,0x70,0x8f,0xe0,0x10,0x71,0x36,0xb,0x20,0x72,0x6f,0xc2,0x10,0x73, - 0x15,0xed,0x20,0x74,0x4f,0xa4,0x10,0x74,0xff,0x9,0xa0,0x76,0x38,0xc0,0x90,0x76, - 0xde,0xeb,0xa0,0x78,0x18,0xa2,0x90,0x78,0xbe,0xcd,0xa0,0x79,0xf8,0x84,0x90,0x7a, - 0x9e,0xaf,0xa0,0x7b,0xd8,0x66,0x90,0x7c,0x7e,0x91,0xa0,0x7d,0xb8,0x48,0x90,0x7e, - 0x5e,0x73,0xa0,0x7f,0x98,0x2a,0x90,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x2,0x5, - 0x2,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, - 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, - 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, - 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, - 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, - 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, - 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, - 0x7,0x6,0x7,0x6,0x7,0x6,0xff,0xff,0x81,0x64,0x0,0x0,0xff,0xff,0x8f,0x80, - 0x1,0x4,0xff,0xff,0x81,0x70,0x0,0x8,0xff,0xff,0x8f,0x80,0x1,0xc,0xff,0xff, - 0x8f,0x80,0x1,0x10,0xff,0xff,0x9d,0x90,0x1,0x14,0xff,0xff,0x8f,0x80,0x0,0x19, - 0xff,0xff,0x9d,0x90,0x1,0x1d,0x4c,0x4d,0x54,0x0,0x59,0x44,0x54,0x0,0x59,0x53, - 0x54,0x0,0x59,0x57,0x54,0x0,0x59,0x50,0x54,0x0,0x59,0x44,0x44,0x54,0x0,0x50, - 0x53,0x54,0x0,0x50,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0, - 0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x0,0x0,0x0,0x8,0x0, - 0x0,0x0,0x21,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x7d, - 0x86,0x8a,0x9c,0xff,0xff,0xff,0xff,0x9e,0xb8,0xcb,0xb0,0xff,0xff,0xff,0xff,0x9f, - 0xbb,0x23,0xa0,0xff,0xff,0xff,0xff,0xa0,0xd0,0xc,0xb0,0xff,0xff,0xff,0xff,0xa1, - 0xa2,0xd2,0x80,0xff,0xff,0xff,0xff,0xcb,0x89,0x28,0xb0,0xff,0xff,0xff,0xff,0xd2, - 0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x61,0x34,0x20,0xff,0xff,0xff,0xff,0xf7, - 0x2f,0x76,0x90,0xff,0xff,0xff,0xff,0xf8,0x28,0xa2,0x10,0xff,0xff,0xff,0xff,0xfb, - 0x1d,0x5f,0x10,0x0,0x0,0x0,0x0,0x13,0x69,0x72,0x20,0x0,0x0,0x0,0x0,0x14, - 0x59,0x55,0x10,0x0,0x0,0x0,0x0,0x15,0x49,0x54,0x20,0x0,0x0,0x0,0x0,0x16, - 0x39,0x37,0x10,0x0,0x0,0x0,0x0,0x17,0x29,0x36,0x20,0x0,0x0,0x0,0x0,0x18, - 0x22,0x53,0x90,0x0,0x0,0x0,0x0,0x19,0x9,0x18,0x20,0x0,0x0,0x0,0x0,0x1a, - 0x2,0x35,0x90,0x0,0x0,0x0,0x0,0x1a,0xf2,0x34,0xa0,0x0,0x0,0x0,0x0,0x1b, - 0xe2,0x17,0x90,0x0,0x0,0x0,0x0,0x1c,0xd2,0x16,0xa0,0x0,0x0,0x0,0x0,0x1d, - 0xc1,0xf9,0x90,0x0,0x0,0x0,0x0,0x1e,0xb1,0xf8,0xa0,0x0,0x0,0x0,0x0,0x1f, - 0xa1,0xdb,0x90,0x0,0x0,0x0,0x0,0x20,0x76,0x2b,0x20,0x0,0x0,0x0,0x0,0x21, - 0x81,0xbd,0x90,0x0,0x0,0x0,0x0,0x22,0x56,0xd,0x20,0x0,0x0,0x0,0x0,0x23, - 0x6a,0xda,0x10,0x0,0x0,0x0,0x0,0x24,0x35,0xef,0x20,0x0,0x0,0x0,0x0,0x25, - 0x4a,0xbc,0x10,0x0,0x0,0x0,0x0,0x26,0x15,0xd1,0x20,0x0,0x0,0x0,0x0,0x27, - 0x2a,0x9e,0x10,0x0,0x0,0x0,0x0,0x27,0xfe,0xed,0xa0,0x0,0x0,0x0,0x0,0x29, - 0xa,0x80,0x10,0x0,0x0,0x0,0x0,0x29,0xde,0xcf,0xa0,0x0,0x0,0x0,0x0,0x2a, - 0xea,0x62,0x10,0x0,0x0,0x0,0x0,0x2b,0xbe,0xb1,0xa0,0x0,0x0,0x0,0x0,0x2c, - 0xd3,0x7e,0x90,0x0,0x0,0x0,0x0,0x2d,0x9e,0x93,0xa0,0x0,0x0,0x0,0x0,0x2e, - 0xb3,0x60,0x90,0x0,0x0,0x0,0x0,0x2f,0x7e,0x75,0xa0,0x0,0x0,0x0,0x0,0x30, - 0x93,0x42,0x90,0x0,0x0,0x0,0x0,0x31,0x67,0x92,0x20,0x0,0x0,0x0,0x0,0x32, - 0x73,0x24,0x90,0x0,0x0,0x0,0x0,0x33,0x47,0x74,0x20,0x0,0x0,0x0,0x0,0x34, - 0x53,0x6,0x90,0x0,0x0,0x0,0x0,0x35,0x27,0x56,0x20,0x0,0x0,0x0,0x0,0x36, - 0x32,0xe8,0x90,0x0,0x0,0x0,0x0,0x37,0x7,0x38,0x20,0x0,0x0,0x0,0x0,0x38, - 0x1c,0x5,0x10,0x0,0x0,0x0,0x0,0x38,0xe7,0x1a,0x20,0x0,0x0,0x0,0x0,0x39, - 0xfb,0xe7,0x10,0x0,0x0,0x0,0x0,0x3a,0xc6,0xfc,0x20,0x0,0x0,0x0,0x0,0x3b, - 0xdb,0xc9,0x10,0x0,0x0,0x0,0x0,0x3c,0xb0,0x18,0xa0,0x0,0x0,0x0,0x0,0x3d, - 0xbb,0xab,0x10,0x0,0x0,0x0,0x0,0x3e,0x8f,0xfa,0xa0,0x0,0x0,0x0,0x0,0x3f, - 0x9b,0x8d,0x10,0x0,0x0,0x0,0x0,0x40,0x6f,0xdc,0xa0,0x0,0x0,0x0,0x0,0x41, - 0x84,0xa9,0x90,0x0,0x0,0x0,0x0,0x42,0x4f,0xbe,0xa0,0x0,0x0,0x0,0x0,0x43, - 0x64,0x8b,0x90,0x0,0x0,0x0,0x0,0x44,0x2f,0xa0,0xa0,0x0,0x0,0x0,0x0,0x45, - 0x44,0x6d,0x90,0x0,0x0,0x0,0x0,0x45,0xf3,0xd3,0x20,0x0,0x0,0x0,0x0,0x47, - 0x2d,0x8a,0x10,0x0,0x0,0x0,0x0,0x47,0xd3,0xb5,0x20,0x0,0x0,0x0,0x0,0x49, - 0xd,0x6c,0x10,0x0,0x0,0x0,0x0,0x49,0xb3,0x97,0x20,0x0,0x0,0x0,0x0,0x4a, - 0xed,0x4e,0x10,0x0,0x0,0x0,0x0,0x4b,0x9c,0xb3,0xa0,0x0,0x0,0x0,0x0,0x4c, - 0xd6,0x6a,0x90,0x0,0x0,0x0,0x0,0x4d,0x7c,0x95,0xa0,0x0,0x0,0x0,0x0,0x4e, - 0xb6,0x4c,0x90,0x0,0x0,0x0,0x0,0x4f,0x5c,0x77,0xa0,0x0,0x0,0x0,0x0,0x50, - 0x96,0x2e,0x90,0x0,0x0,0x0,0x0,0x51,0x3c,0x59,0xa0,0x0,0x0,0x0,0x0,0x52, - 0x76,0x10,0x90,0x0,0x0,0x0,0x0,0x53,0x1c,0x3b,0xa0,0x0,0x0,0x0,0x0,0x54, - 0x55,0xf2,0x90,0x0,0x0,0x0,0x0,0x54,0xfc,0x1d,0xa0,0x0,0x0,0x0,0x0,0x56, - 0x35,0xd4,0x90,0x0,0x0,0x0,0x0,0x56,0xe5,0x3a,0x20,0x0,0x0,0x0,0x0,0x58, - 0x1e,0xf1,0x10,0x0,0x0,0x0,0x0,0x58,0xc5,0x1c,0x20,0x0,0x0,0x0,0x0,0x59, - 0xfe,0xd3,0x10,0x0,0x0,0x0,0x0,0x5a,0xa4,0xfe,0x20,0x0,0x0,0x0,0x0,0x5b, - 0xde,0xb5,0x10,0x0,0x0,0x0,0x0,0x5c,0x84,0xe0,0x20,0x0,0x0,0x0,0x0,0x5d, - 0xbe,0x97,0x10,0x0,0x0,0x0,0x0,0x5e,0x64,0xc2,0x20,0x0,0x0,0x0,0x0,0x5f, - 0x9e,0x79,0x10,0x0,0x0,0x0,0x0,0x60,0x4d,0xde,0xa0,0x0,0x0,0x0,0x0,0x61, - 0x87,0x95,0x90,0x0,0x0,0x0,0x0,0x62,0x2d,0xc0,0xa0,0x0,0x0,0x0,0x0,0x63, - 0x67,0x77,0x90,0x0,0x0,0x0,0x0,0x64,0xd,0xa2,0xa0,0x0,0x0,0x0,0x0,0x65, - 0x47,0x59,0x90,0x0,0x0,0x0,0x0,0x65,0xed,0x84,0xa0,0x0,0x0,0x0,0x0,0x67, - 0x27,0x3b,0x90,0x0,0x0,0x0,0x0,0x67,0xcd,0x66,0xa0,0x0,0x0,0x0,0x0,0x69, - 0x7,0x1d,0x90,0x0,0x0,0x0,0x0,0x69,0xad,0x48,0xa0,0x0,0x0,0x0,0x0,0x6a, - 0xe6,0xff,0x90,0x0,0x0,0x0,0x0,0x6b,0x96,0x65,0x20,0x0,0x0,0x0,0x0,0x6c, - 0xd0,0x1c,0x10,0x0,0x0,0x0,0x0,0x6d,0x76,0x47,0x20,0x0,0x0,0x0,0x0,0x6e, - 0xaf,0xfe,0x10,0x0,0x0,0x0,0x0,0x6f,0x56,0x29,0x20,0x0,0x0,0x0,0x0,0x70, - 0x8f,0xe0,0x10,0x0,0x0,0x0,0x0,0x71,0x36,0xb,0x20,0x0,0x0,0x0,0x0,0x72, - 0x6f,0xc2,0x10,0x0,0x0,0x0,0x0,0x73,0x15,0xed,0x20,0x0,0x0,0x0,0x0,0x74, - 0x4f,0xa4,0x10,0x0,0x0,0x0,0x0,0x74,0xff,0x9,0xa0,0x0,0x0,0x0,0x0,0x76, - 0x38,0xc0,0x90,0x0,0x0,0x0,0x0,0x76,0xde,0xeb,0xa0,0x0,0x0,0x0,0x0,0x78, - 0x18,0xa2,0x90,0x0,0x0,0x0,0x0,0x78,0xbe,0xcd,0xa0,0x0,0x0,0x0,0x0,0x79, - 0xf8,0x84,0x90,0x0,0x0,0x0,0x0,0x7a,0x9e,0xaf,0xa0,0x0,0x0,0x0,0x0,0x7b, - 0xd8,0x66,0x90,0x0,0x0,0x0,0x0,0x7c,0x7e,0x91,0xa0,0x0,0x0,0x0,0x0,0x7d, - 0xb8,0x48,0x90,0x0,0x0,0x0,0x0,0x7e,0x5e,0x73,0xa0,0x0,0x0,0x0,0x0,0x7f, - 0x98,0x2a,0x90,0x0,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x2,0x5,0x2,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0xff,0xff,0x81,0x64,0x0,0x0,0xff,0xff,0x8f,0x80,0x1,0x4,0xff, - 0xff,0x81,0x70,0x0,0x8,0xff,0xff,0x8f,0x80,0x1,0xc,0xff,0xff,0x8f,0x80,0x1, - 0x10,0xff,0xff,0x9d,0x90,0x1,0x14,0xff,0xff,0x8f,0x80,0x0,0x19,0xff,0xff,0x9d, - 0x90,0x1,0x1d,0x4c,0x4d,0x54,0x0,0x59,0x44,0x54,0x0,0x59,0x53,0x54,0x0,0x59, - 0x57,0x54,0x0,0x59,0x50,0x54,0x0,0x59,0x44,0x44,0x54,0x0,0x50,0x53,0x54,0x0, - 0x50,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x1,0x0,0x0,0x0,0xa,0x50,0x53,0x54,0x38,0x50,0x44,0x54,0x2c,0x4d,0x33,0x2e, - 0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Canada/East-Saskatchewan - 0x0,0x0,0x3,0xe2, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x36,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x80,0x0,0x0,0x0,0x86, - 0xfd,0x93,0x1c,0x9e,0xb8,0xaf,0x90,0x9f,0xbb,0x7,0x80,0xb5,0x65,0x4f,0xf0,0xb6, - 0x30,0x48,0xe0,0xb7,0x45,0x31,0xf0,0xb8,0x10,0x2a,0xe0,0xb9,0x25,0x13,0xf0,0xb9, - 0xf0,0xc,0xe0,0xbb,0xe,0x30,0x70,0xbb,0xcf,0xee,0xe0,0xbc,0xee,0x12,0x70,0xbd, - 0xb9,0xb,0x60,0xc2,0x72,0x8,0xf0,0xc3,0x61,0xeb,0xe0,0xc4,0x51,0xea,0xf0,0xc5, - 0x38,0x93,0x60,0xc6,0x31,0xcc,0xf0,0xc7,0x21,0xaf,0xe0,0xc8,0x1a,0xe9,0x70,0xc9, - 0xa,0xcc,0x60,0xc9,0xfa,0xcb,0x70,0xca,0xea,0xae,0x60,0xcb,0x89,0xc,0x90,0xd2, - 0x23,0xf4,0x70,0xd2,0x61,0x18,0x0,0xd3,0x63,0x8c,0x10,0xd4,0x53,0x6f,0x0,0xd5, - 0x55,0xe3,0x10,0xd6,0x20,0xdc,0x0,0xd7,0x35,0xc5,0x10,0xd8,0x0,0xbe,0x0,0xd9, - 0x15,0xa7,0x10,0xd9,0xe0,0xa0,0x0,0xda,0xfe,0xc3,0x90,0xdb,0xc0,0x82,0x0,0xdc, - 0xde,0xa5,0x90,0xdd,0xa9,0x9e,0x80,0xde,0xbe,0x87,0x90,0xdf,0x89,0x80,0x80,0xe0, - 0x9e,0x69,0x90,0xe1,0x69,0x62,0x80,0xe2,0x7e,0x4b,0x90,0xe3,0x49,0x44,0x80,0xe4, - 0x5e,0x2d,0x90,0xe5,0x29,0x26,0x80,0xe6,0x47,0x4a,0x10,0xe7,0x12,0x43,0x0,0xe8, - 0x27,0x2c,0x10,0xe8,0xf2,0x25,0x0,0xeb,0xe6,0xf0,0x10,0xec,0xd6,0xd3,0x0,0xed, - 0xc6,0xd2,0x10,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x5,0xff,0xff,0x9d,0xe4,0x0,0x0,0xff, - 0xff,0xab,0xa0,0x1,0x4,0xff,0xff,0x9d,0x90,0x0,0x8,0xff,0xff,0xab,0xa0,0x1, - 0xc,0xff,0xff,0xab,0xa0,0x1,0x10,0xff,0xff,0xab,0xa0,0x0,0x14,0x4c,0x4d,0x54, - 0x0,0x4d,0x44,0x54,0x0,0x4d,0x53,0x54,0x0,0x4d,0x57,0x54,0x0,0x4d,0x50,0x54, - 0x0,0x43,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x1, - 0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x36,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0xf8,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x86,0xfd,0x93,0x1c,0xff,0xff,0xff, - 0xff,0x9e,0xb8,0xaf,0x90,0xff,0xff,0xff,0xff,0x9f,0xbb,0x7,0x80,0xff,0xff,0xff, - 0xff,0xb5,0x65,0x4f,0xf0,0xff,0xff,0xff,0xff,0xb6,0x30,0x48,0xe0,0xff,0xff,0xff, - 0xff,0xb7,0x45,0x31,0xf0,0xff,0xff,0xff,0xff,0xb8,0x10,0x2a,0xe0,0xff,0xff,0xff, - 0xff,0xb9,0x25,0x13,0xf0,0xff,0xff,0xff,0xff,0xb9,0xf0,0xc,0xe0,0xff,0xff,0xff, - 0xff,0xbb,0xe,0x30,0x70,0xff,0xff,0xff,0xff,0xbb,0xcf,0xee,0xe0,0xff,0xff,0xff, - 0xff,0xbc,0xee,0x12,0x70,0xff,0xff,0xff,0xff,0xbd,0xb9,0xb,0x60,0xff,0xff,0xff, - 0xff,0xc2,0x72,0x8,0xf0,0xff,0xff,0xff,0xff,0xc3,0x61,0xeb,0xe0,0xff,0xff,0xff, - 0xff,0xc4,0x51,0xea,0xf0,0xff,0xff,0xff,0xff,0xc5,0x38,0x93,0x60,0xff,0xff,0xff, - 0xff,0xc6,0x31,0xcc,0xf0,0xff,0xff,0xff,0xff,0xc7,0x21,0xaf,0xe0,0xff,0xff,0xff, - 0xff,0xc8,0x1a,0xe9,0x70,0xff,0xff,0xff,0xff,0xc9,0xa,0xcc,0x60,0xff,0xff,0xff, - 0xff,0xc9,0xfa,0xcb,0x70,0xff,0xff,0xff,0xff,0xca,0xea,0xae,0x60,0xff,0xff,0xff, - 0xff,0xcb,0x89,0xc,0x90,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff, - 0xff,0xd2,0x61,0x18,0x0,0xff,0xff,0xff,0xff,0xd3,0x63,0x8c,0x10,0xff,0xff,0xff, - 0xff,0xd4,0x53,0x6f,0x0,0xff,0xff,0xff,0xff,0xd5,0x55,0xe3,0x10,0xff,0xff,0xff, - 0xff,0xd6,0x20,0xdc,0x0,0xff,0xff,0xff,0xff,0xd7,0x35,0xc5,0x10,0xff,0xff,0xff, - 0xff,0xd8,0x0,0xbe,0x0,0xff,0xff,0xff,0xff,0xd9,0x15,0xa7,0x10,0xff,0xff,0xff, - 0xff,0xd9,0xe0,0xa0,0x0,0xff,0xff,0xff,0xff,0xda,0xfe,0xc3,0x90,0xff,0xff,0xff, - 0xff,0xdb,0xc0,0x82,0x0,0xff,0xff,0xff,0xff,0xdc,0xde,0xa5,0x90,0xff,0xff,0xff, - 0xff,0xdd,0xa9,0x9e,0x80,0xff,0xff,0xff,0xff,0xde,0xbe,0x87,0x90,0xff,0xff,0xff, - 0xff,0xdf,0x89,0x80,0x80,0xff,0xff,0xff,0xff,0xe0,0x9e,0x69,0x90,0xff,0xff,0xff, - 0xff,0xe1,0x69,0x62,0x80,0xff,0xff,0xff,0xff,0xe2,0x7e,0x4b,0x90,0xff,0xff,0xff, - 0xff,0xe3,0x49,0x44,0x80,0xff,0xff,0xff,0xff,0xe4,0x5e,0x2d,0x90,0xff,0xff,0xff, - 0xff,0xe5,0x29,0x26,0x80,0xff,0xff,0xff,0xff,0xe6,0x47,0x4a,0x10,0xff,0xff,0xff, - 0xff,0xe7,0x12,0x43,0x0,0xff,0xff,0xff,0xff,0xe8,0x27,0x2c,0x10,0xff,0xff,0xff, - 0xff,0xe8,0xf2,0x25,0x0,0xff,0xff,0xff,0xff,0xeb,0xe6,0xf0,0x10,0xff,0xff,0xff, - 0xff,0xec,0xd6,0xd3,0x0,0xff,0xff,0xff,0xff,0xed,0xc6,0xd2,0x10,0x0,0x2,0x1, 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x5,0xff,0xff,0x9d,0xe4,0x0,0x0,0xff,0xff,0xab,0xa0,0x1,0x4,0xff, - 0xff,0x9d,0x90,0x0,0x8,0xff,0xff,0xab,0xa0,0x1,0xc,0xff,0xff,0xab,0xa0,0x1, - 0x10,0xff,0xff,0xab,0xa0,0x0,0x14,0x4c,0x4d,0x54,0x0,0x4d,0x44,0x54,0x0,0x4d, - 0x53,0x54,0x0,0x4d,0x57,0x54,0x0,0x4d,0x50,0x54,0x0,0x43,0x53,0x54,0x0,0x0, - 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0x43,0x53,0x54,0x36, - 0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Majuro - 0x0,0x0,0x0,0xc5, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0xff, - 0x86,0x1b,0x50,0x1,0x2,0x0,0x0,0xa0,0x80,0x0,0x0,0x0,0x0,0x9a,0xb0,0x0, - 0x4,0x0,0x0,0xa8,0xc0,0x0,0x4,0x4c,0x4d,0x54,0x0,0x4d,0x48,0x54,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0, - 0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0, - 0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x7e,0x36,0x14, - 0x80,0xff,0xff,0xff,0xff,0xff,0x86,0x1b,0x50,0x0,0x1,0x2,0x0,0x0,0xa0,0x80, - 0x0,0x0,0x0,0x0,0x9a,0xb0,0x0,0x4,0x0,0x0,0xa8,0xc0,0x0,0x4,0x4c,0x4d, - 0x54,0x0,0x4d,0x48,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x4d,0x48,0x54, - 0x2d,0x31,0x32,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Yap - 0x0,0x0,0x0,0x99, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5,0x0,0x0,0x8c,0xa0,0x0, - 0x0,0x43,0x48,0x55,0x54,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2, - 0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2, - 0x0,0x0,0x0,0x9,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff, - 0x7e,0x36,0x26,0xb4,0x0,0x1,0x0,0x0,0x8e,0x4c,0x0,0x0,0x0,0x0,0x8c,0xa0, - 0x0,0x4,0x4c,0x4d,0x54,0x0,0x43,0x48,0x55,0x54,0x0,0x0,0x0,0x0,0x0,0xa, - 0x43,0x48,0x55,0x54,0x2d,0x31,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Wake - 0x0,0x0,0x0,0x99, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5,0x0,0x0,0xa8,0xc0,0x0, - 0x0,0x57,0x41,0x4b,0x54,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2, - 0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2, - 0x0,0x0,0x0,0x9,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff, - 0x7e,0x36,0x18,0xcc,0x0,0x1,0x0,0x0,0x9c,0x34,0x0,0x0,0x0,0x0,0xa8,0xc0, - 0x0,0x4,0x4c,0x4d,0x54,0x0,0x57,0x41,0x4b,0x54,0x0,0x0,0x0,0x0,0x0,0xa, - 0x57,0x41,0x4b,0x54,0x2d,0x31,0x32,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Apia - 0x0,0x0,0x4,0x4e, + 0x2,0x1,0x2,0x1,0x4,0x6,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x7,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0xff,0xff,0xff,0xb5,0x0, + 0x0,0x0,0x0,0xe,0x10,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x1c, + 0x20,0x1,0xc,0x0,0x0,0xe,0x10,0x0,0x4,0x0,0x0,0xe,0x10,0x1,0x4,0x0, + 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x42, + 0x53,0x54,0x0,0x47,0x4d,0x54,0x0,0x42,0x44,0x53,0x54,0x0,0x0,0x1,0x1,0x1, + 0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0xa,0x47,0x4d,0x54, + 0x30,0x42,0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2f,0x31,0x2c,0x4d,0x31, + 0x30,0x2e,0x35,0x2e,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Chisinau + 0x0,0x0,0x9,0x8d, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x3b,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x12,0x80,0x0,0x0,0x0,0x91, - 0x5,0xfc,0x0,0xda,0x62,0x4,0x38,0x4c,0x9f,0x27,0xb0,0x4d,0x97,0x2b,0xe0,0x4e, - 0x7d,0xe2,0x60,0x4e,0xfd,0x8b,0xa0,0x4f,0x77,0xd,0xe0,0x50,0x66,0xfe,0xe0,0x51, - 0x60,0x2a,0x60,0x52,0x46,0xe0,0xe0,0x53,0x40,0xc,0x60,0x54,0x26,0xc2,0xe0,0x55, - 0x1f,0xee,0x60,0x56,0x6,0xa4,0xe0,0x56,0xff,0xd0,0x60,0x57,0xe6,0x86,0xe0,0x58, - 0xdf,0xb2,0x60,0x59,0xc6,0x68,0xe0,0x5a,0xbf,0x94,0x60,0x5b,0xaf,0x85,0x60,0x5c, - 0xa8,0xb0,0xe0,0x5d,0x8f,0x67,0x60,0x5e,0x88,0x92,0xe0,0x5f,0x6f,0x49,0x60,0x60, - 0x68,0x74,0xe0,0x61,0x4f,0x2b,0x60,0x62,0x48,0x56,0xe0,0x63,0x2f,0xd,0x60,0x64, - 0x28,0x38,0xe0,0x65,0xe,0xef,0x60,0x66,0x11,0x55,0x60,0x66,0xf8,0xb,0xe0,0x67, - 0xf1,0x37,0x60,0x68,0xd7,0xed,0xe0,0x69,0xd1,0x19,0x60,0x6a,0xb7,0xcf,0xe0,0x6b, - 0xb0,0xfb,0x60,0x6c,0x97,0xb1,0xe0,0x6d,0x90,0xdd,0x60,0x6e,0x77,0x93,0xe0,0x6f, - 0x70,0xbf,0x60,0x70,0x60,0xb0,0x60,0x71,0x59,0xdb,0xe0,0x72,0x40,0x92,0x60,0x73, - 0x39,0xbd,0xe0,0x74,0x20,0x74,0x60,0x75,0x19,0x9f,0xe0,0x76,0x0,0x56,0x60,0x76, - 0xf9,0x81,0xe0,0x77,0xe0,0x38,0x60,0x78,0xd9,0x63,0xe0,0x79,0xc0,0x1a,0x60,0x7a, - 0xb9,0x45,0xe0,0x7b,0xa9,0x36,0xe0,0x7c,0xa2,0x62,0x60,0x7d,0x89,0x18,0xe0,0x7e, - 0x82,0x44,0x60,0x7f,0x68,0xfa,0xe0,0x1,0x2,0x4,0x3,0x4,0x3,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x0,0x0,0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x8e,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x26,0x80,0x0,0x0,0x0,0x9e, + 0x6b,0x9f,0xc,0xb7,0xb0,0xd2,0x8,0xb9,0x3e,0xf3,0x60,0xb9,0xef,0x9c,0x60,0xba, + 0xdf,0x8d,0x60,0xbb,0xcf,0x7e,0x60,0xbc,0xc8,0xa9,0xe0,0xbd,0xb8,0x9a,0xe0,0xbe, + 0xa8,0x8b,0xe0,0xbf,0x98,0x7c,0xe0,0xc0,0x88,0x6d,0xe0,0xc1,0x78,0x5e,0xe0,0xc2, + 0x68,0x4f,0xe0,0xc3,0x58,0x40,0xe0,0xc4,0x48,0x31,0xe0,0xc5,0x38,0x22,0xe0,0xc6, + 0x28,0x13,0xe0,0xc7,0x18,0x4,0xe0,0xc8,0xbc,0x93,0x60,0xca,0x77,0x7d,0x50,0xcc, + 0xe7,0x4b,0x10,0xcd,0xa9,0x17,0x90,0xce,0xa2,0x43,0x10,0xcf,0x92,0x34,0x10,0xd0, + 0x4e,0x90,0x60,0x15,0x27,0xa7,0xd0,0x16,0x18,0xdc,0x40,0x17,0x8,0xdb,0x50,0x17, + 0xfa,0xf,0xc0,0x18,0xea,0xe,0xd0,0x19,0xdb,0x43,0x40,0x1a,0xcc,0x93,0xd0,0x1b, + 0xbc,0xa0,0xf0,0x1c,0xac,0x91,0xf0,0x1d,0x9c,0x82,0xf0,0x1e,0x8c,0x73,0xf0,0x1f, + 0x7c,0x64,0xf0,0x20,0x6c,0x55,0xf0,0x21,0x5c,0x46,0xf0,0x22,0x4c,0x37,0xf0,0x23, + 0x3c,0x28,0xf0,0x24,0x2c,0x19,0xf0,0x25,0x1c,0xa,0xf0,0x26,0xb,0xfb,0xf0,0x26, + 0x43,0x4c,0xe0,0x27,0x5,0x35,0x80,0x27,0xf5,0x26,0x80,0x28,0xe5,0x17,0x80,0x29, + 0x60,0xe8,0x60,0x29,0xd4,0xec,0x60,0x2a,0xc4,0xcf,0x50,0x2b,0xb4,0xce,0x60,0x2c, + 0xa4,0xb1,0x50,0x2d,0x94,0xb0,0x60,0x2e,0x84,0x93,0x50,0x2f,0x74,0x92,0x60,0x30, + 0x64,0x75,0x50,0x31,0x5d,0xae,0xe0,0x32,0x72,0x7b,0xd0,0x33,0x3d,0xad,0x0,0x34, + 0x52,0x88,0x0,0x35,0x1d,0x8f,0x0,0x36,0x32,0x6a,0x0,0x36,0xfd,0x71,0x0,0x38, + 0x1b,0x86,0x80,0x38,0xdd,0x53,0x0,0x39,0xfb,0x68,0x80,0x3a,0xbd,0x35,0x0,0x3b, + 0xdb,0x4a,0x80,0x3c,0xa6,0x51,0x80,0x3d,0xbb,0x2c,0x80,0x3e,0x86,0x33,0x80,0x3f, + 0x9b,0xe,0x80,0x40,0x66,0x15,0x80,0x41,0x84,0x2b,0x0,0x42,0x45,0xf7,0x80,0x43, + 0x64,0xd,0x0,0x44,0x25,0xd9,0x80,0x45,0x43,0xef,0x0,0x46,0x5,0xbb,0x80,0x47, + 0x23,0xd1,0x0,0x47,0xee,0xd8,0x0,0x49,0x3,0xb3,0x0,0x49,0xce,0xba,0x0,0x4a, + 0xe3,0x95,0x0,0x4b,0xae,0x9c,0x0,0x4c,0xcc,0xb1,0x80,0x4d,0x8e,0x7e,0x0,0x4e, + 0xac,0x93,0x80,0x4f,0x6e,0x60,0x0,0x50,0x8c,0x75,0x80,0x51,0x57,0x7c,0x80,0x52, + 0x6c,0x57,0x80,0x53,0x37,0x5e,0x80,0x54,0x4c,0x39,0x80,0x55,0x17,0x40,0x80,0x56, + 0x2c,0x1b,0x80,0x56,0xf7,0x22,0x80,0x58,0x15,0x38,0x0,0x58,0xd7,0x4,0x80,0x59, + 0xf5,0x1a,0x0,0x5a,0xb6,0xe6,0x80,0x5b,0xd4,0xfc,0x0,0x5c,0xa0,0x3,0x0,0x5d, + 0xb4,0xde,0x0,0x5e,0x7f,0xe5,0x0,0x5f,0x94,0xc0,0x0,0x60,0x5f,0xc7,0x0,0x61, + 0x7d,0xdc,0x80,0x62,0x3f,0xa9,0x0,0x63,0x5d,0xbe,0x80,0x64,0x1f,0x8b,0x0,0x65, + 0x3d,0xa0,0x80,0x66,0x8,0xa7,0x80,0x67,0x1d,0x82,0x80,0x67,0xe8,0x89,0x80,0x68, + 0xfd,0x64,0x80,0x69,0xc8,0x6b,0x80,0x6a,0xdd,0x46,0x80,0x6b,0xa8,0x4d,0x80,0x6c, + 0xc6,0x63,0x0,0x6d,0x88,0x2f,0x80,0x6e,0xa6,0x45,0x0,0x6f,0x68,0x11,0x80,0x70, + 0x86,0x27,0x0,0x71,0x51,0x2e,0x0,0x72,0x66,0x9,0x0,0x73,0x31,0x10,0x0,0x74, + 0x45,0xeb,0x0,0x75,0x10,0xf2,0x0,0x76,0x2f,0x7,0x80,0x76,0xf0,0xd4,0x0,0x78, + 0xe,0xe9,0x80,0x78,0xd0,0xb6,0x0,0x79,0xee,0xcb,0x80,0x7a,0xb0,0x98,0x0,0x7b, + 0xce,0xad,0x80,0x7c,0x99,0xb4,0x80,0x7d,0xae,0x8f,0x80,0x7e,0x79,0x96,0x80,0x7f, + 0x8e,0x71,0x80,0x1,0x2,0x5,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x6,0x9,0x7,0x8,0x7,0x8,0xb,0xa,0xb,0xa, + 0xb,0xa,0xb,0xa,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd, + 0x6,0x4,0x3,0x4,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x0,0x0,0xb0,0x80,0x0,0x0,0xff,0xff,0x5f,0x0,0x0,0x0,0xff,0xff, - 0x5e,0x48,0x0,0x4,0xff,0xff,0x73,0x60,0x1,0x9,0xff,0xff,0x65,0x50,0x0,0x5, - 0x0,0x0,0xb6,0xd0,0x0,0x4,0x0,0x0,0xc4,0xe0,0x1,0xd,0x4c,0x4d,0x54,0x0, - 0x57,0x53,0x53,0x54,0x0,0x53,0x44,0x54,0x0,0x57,0x53,0x44,0x54,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66, - 0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3c, - 0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x12,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0xff,0xff,0xff,0xff,0x55,0xc8,0xe5,0x80,0xff,0xff,0xff,0xff,0x91,0x5,0xfc,0x0, - 0xff,0xff,0xff,0xff,0xda,0x62,0x4,0x38,0x0,0x0,0x0,0x0,0x4c,0x9f,0x27,0xb0, - 0x0,0x0,0x0,0x0,0x4d,0x97,0x2b,0xe0,0x0,0x0,0x0,0x0,0x4e,0x7d,0xe2,0x60, - 0x0,0x0,0x0,0x0,0x4e,0xfd,0x8b,0xa0,0x0,0x0,0x0,0x0,0x4f,0x77,0xd,0xe0, - 0x0,0x0,0x0,0x0,0x50,0x66,0xfe,0xe0,0x0,0x0,0x0,0x0,0x51,0x60,0x2a,0x60, - 0x0,0x0,0x0,0x0,0x52,0x46,0xe0,0xe0,0x0,0x0,0x0,0x0,0x53,0x40,0xc,0x60, - 0x0,0x0,0x0,0x0,0x54,0x26,0xc2,0xe0,0x0,0x0,0x0,0x0,0x55,0x1f,0xee,0x60, - 0x0,0x0,0x0,0x0,0x56,0x6,0xa4,0xe0,0x0,0x0,0x0,0x0,0x56,0xff,0xd0,0x60, - 0x0,0x0,0x0,0x0,0x57,0xe6,0x86,0xe0,0x0,0x0,0x0,0x0,0x58,0xdf,0xb2,0x60, - 0x0,0x0,0x0,0x0,0x59,0xc6,0x68,0xe0,0x0,0x0,0x0,0x0,0x5a,0xbf,0x94,0x60, - 0x0,0x0,0x0,0x0,0x5b,0xaf,0x85,0x60,0x0,0x0,0x0,0x0,0x5c,0xa8,0xb0,0xe0, - 0x0,0x0,0x0,0x0,0x5d,0x8f,0x67,0x60,0x0,0x0,0x0,0x0,0x5e,0x88,0x92,0xe0, - 0x0,0x0,0x0,0x0,0x5f,0x6f,0x49,0x60,0x0,0x0,0x0,0x0,0x60,0x68,0x74,0xe0, - 0x0,0x0,0x0,0x0,0x61,0x4f,0x2b,0x60,0x0,0x0,0x0,0x0,0x62,0x48,0x56,0xe0, - 0x0,0x0,0x0,0x0,0x63,0x2f,0xd,0x60,0x0,0x0,0x0,0x0,0x64,0x28,0x38,0xe0, - 0x0,0x0,0x0,0x0,0x65,0xe,0xef,0x60,0x0,0x0,0x0,0x0,0x66,0x11,0x55,0x60, - 0x0,0x0,0x0,0x0,0x66,0xf8,0xb,0xe0,0x0,0x0,0x0,0x0,0x67,0xf1,0x37,0x60, - 0x0,0x0,0x0,0x0,0x68,0xd7,0xed,0xe0,0x0,0x0,0x0,0x0,0x69,0xd1,0x19,0x60, - 0x0,0x0,0x0,0x0,0x6a,0xb7,0xcf,0xe0,0x0,0x0,0x0,0x0,0x6b,0xb0,0xfb,0x60, - 0x0,0x0,0x0,0x0,0x6c,0x97,0xb1,0xe0,0x0,0x0,0x0,0x0,0x6d,0x90,0xdd,0x60, - 0x0,0x0,0x0,0x0,0x6e,0x77,0x93,0xe0,0x0,0x0,0x0,0x0,0x6f,0x70,0xbf,0x60, - 0x0,0x0,0x0,0x0,0x70,0x60,0xb0,0x60,0x0,0x0,0x0,0x0,0x71,0x59,0xdb,0xe0, - 0x0,0x0,0x0,0x0,0x72,0x40,0x92,0x60,0x0,0x0,0x0,0x0,0x73,0x39,0xbd,0xe0, - 0x0,0x0,0x0,0x0,0x74,0x20,0x74,0x60,0x0,0x0,0x0,0x0,0x75,0x19,0x9f,0xe0, - 0x0,0x0,0x0,0x0,0x76,0x0,0x56,0x60,0x0,0x0,0x0,0x0,0x76,0xf9,0x81,0xe0, - 0x0,0x0,0x0,0x0,0x77,0xe0,0x38,0x60,0x0,0x0,0x0,0x0,0x78,0xd9,0x63,0xe0, - 0x0,0x0,0x0,0x0,0x79,0xc0,0x1a,0x60,0x0,0x0,0x0,0x0,0x7a,0xb9,0x45,0xe0, - 0x0,0x0,0x0,0x0,0x7b,0xa9,0x36,0xe0,0x0,0x0,0x0,0x0,0x7c,0xa2,0x62,0x60, - 0x0,0x0,0x0,0x0,0x7d,0x89,0x18,0xe0,0x0,0x0,0x0,0x0,0x7e,0x82,0x44,0x60, - 0x0,0x0,0x0,0x0,0x7f,0x68,0xfa,0xe0,0x0,0x1,0x2,0x4,0x3,0x4,0x3,0x6, 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x0,0x0,0xb0,0x80,0x0,0x0,0xff,0xff,0x5f,0x0,0x0,0x0, - 0xff,0xff,0x5e,0x48,0x0,0x4,0xff,0xff,0x73,0x60,0x1,0x9,0xff,0xff,0x65,0x50, - 0x0,0x5,0x0,0x0,0xb6,0xd0,0x0,0x4,0x0,0x0,0xc4,0xe0,0x1,0xd,0x4c,0x4d, - 0x54,0x0,0x57,0x53,0x53,0x54,0x0,0x53,0x44,0x54,0x0,0x57,0x53,0x44,0x54,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x57, - 0x53,0x53,0x54,0x2d,0x31,0x33,0x57,0x53,0x44,0x54,0x2c,0x4d,0x39,0x2e,0x35,0x2e, - 0x30,0x2f,0x33,0x2c,0x4d,0x34,0x2e,0x31,0x2e,0x30,0x2f,0x34,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Marquesas - 0x0,0x0,0x0,0xb0, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x9,0x80,0x0,0x0,0x0,0x94, - 0x50,0x4c,0x48,0x0,0x1,0xff,0xff,0x7d,0x38,0x0,0x0,0xff,0xff,0x7a,0x68,0x0, - 0x4,0x4c,0x4d,0x54,0x0,0x4d,0x41,0x52,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a, - 0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x9,0xf8,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xff,0xff,0xff,0xff,0x94,0x50,0x4c,0x48,0x0,0x1,0xff,0xff,0x7d,0x38, - 0x0,0x0,0xff,0xff,0x7a,0x68,0x0,0x4,0x4c,0x4d,0x54,0x0,0x4d,0x41,0x52,0x54, - 0x0,0x0,0x0,0x0,0x0,0xa,0x4d,0x41,0x52,0x54,0x39,0x3a,0x33,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Kiritimati - 0x0,0x0,0x0,0xe6, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x3,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x9,0x80,0x0,0x0,0x0,0x12, - 0x55,0xf2,0x0,0x2f,0x6,0x7d,0x20,0x1,0x2,0x3,0xff,0xff,0x6c,0x80,0x0,0x0, - 0xff,0xff,0x6a,0x0,0x0,0x4,0xff,0xff,0x73,0x60,0x0,0x4,0x0,0x0,0xc4,0xe0, - 0x0,0x4,0x4c,0x4d,0x54,0x0,0x4c,0x49,0x4e,0x54,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x9,0xf8, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x7e,0x37,0x48,0x80,0x0, - 0x0,0x0,0x0,0x12,0x55,0xf2,0x0,0x0,0x0,0x0,0x0,0x2f,0x6,0x7d,0x20,0x0, - 0x1,0x2,0x3,0xff,0xff,0x6c,0x80,0x0,0x0,0xff,0xff,0x6a,0x0,0x0,0x4,0xff, - 0xff,0x73,0x60,0x0,0x4,0x0,0x0,0xc4,0xe0,0x0,0x4,0x4c,0x4d,0x54,0x0,0x4c, - 0x49,0x4e,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x4c,0x49,0x4e, - 0x54,0x2d,0x31,0x34,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Guam - 0x0,0x0,0x0,0xe1, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0x3a, - 0x43,0x5e,0x60,0x1,0x2,0x0,0x0,0x87,0xb4,0x0,0x0,0x0,0x0,0x8c,0xa0,0x0, - 0x4,0x0,0x0,0x8c,0xa0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x47,0x53,0x54,0x0,0x43, - 0x68,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0, - 0x0,0x4,0x0,0x0,0x0,0xd,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff, - 0xff,0xff,0x14,0xe1,0xc5,0xcc,0xff,0xff,0xff,0xff,0x7e,0x36,0x2d,0x4c,0x0,0x0, - 0x0,0x0,0x3a,0x43,0x5e,0x60,0x0,0x1,0x2,0x3,0xff,0xff,0x36,0x34,0x0,0x0, - 0x0,0x0,0x87,0xb4,0x0,0x0,0x0,0x0,0x8c,0xa0,0x0,0x4,0x0,0x0,0x8c,0xa0, - 0x0,0x8,0x4c,0x4d,0x54,0x0,0x47,0x53,0x54,0x0,0x43,0x68,0x53,0x54,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x43,0x68,0x53,0x54,0x2d,0x31,0x30,0xa, - - // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Fakaofo - 0x0,0x0,0x0,0xc5, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x4e, - 0xfd,0x99,0xb0,0x1,0x2,0xff,0xff,0x5f,0x78,0x0,0x0,0xff,0xff,0x65,0x50,0x0, - 0x4,0x0,0x0,0xb6,0xd0,0x0,0x4,0x4c,0x4d,0x54,0x0,0x54,0x4b,0x54,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0, - 0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0, - 0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x7e,0x37,0x55, - 0x88,0x0,0x0,0x0,0x0,0x4e,0xfd,0x99,0xb0,0x0,0x1,0x2,0xff,0xff,0x5f,0x78, - 0x0,0x0,0xff,0xff,0x65,0x50,0x0,0x4,0x0,0x0,0xb6,0xd0,0x0,0x4,0x4c,0x4d, - 0x54,0x0,0x54,0x4b,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x54,0x4b,0x54, - 0x2d,0x31,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Johnston - 0x0,0x0,0x1,0x14, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0xbb, - 0x5,0x43,0x48,0xbb,0x21,0x71,0x58,0xcb,0x89,0x3d,0xc8,0xd2,0x61,0x49,0x38,0xd5, - 0x8d,0x73,0x48,0x1,0x2,0x1,0x2,0x1,0x3,0xff,0xff,0x6c,0x2,0x0,0x0,0xff, - 0xff,0x6c,0x58,0x0,0x4,0xff,0xff,0x7a,0x68,0x1,0x8,0xff,0xff,0x73,0x60,0x0, - 0x4,0x4c,0x4d,0x54,0x0,0x48,0x53,0x54,0x0,0x48,0x44,0x54,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0, - 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x4,0x0,0x0,0x0, - 0xc,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x74,0xe0,0x70, - 0xbe,0xff,0xff,0xff,0xff,0xbb,0x5,0x43,0x48,0xff,0xff,0xff,0xff,0xbb,0x21,0x71, - 0x58,0xff,0xff,0xff,0xff,0xcb,0x89,0x3d,0xc8,0xff,0xff,0xff,0xff,0xd2,0x61,0x49, - 0x38,0xff,0xff,0xff,0xff,0xd5,0x8d,0x73,0x48,0x0,0x1,0x2,0x1,0x2,0x1,0x3, - 0xff,0xff,0x6c,0x2,0x0,0x0,0xff,0xff,0x6c,0x58,0x0,0x4,0xff,0xff,0x7a,0x68, - 0x1,0x8,0xff,0xff,0x73,0x60,0x0,0x4,0x4c,0x4d,0x54,0x0,0x48,0x53,0x54,0x0, - 0x48,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x48,0x53,0x54, - 0x31,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Bougainville - 0x0,0x0,0x1,0x18, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x11,0x80,0x0,0x0,0x0,0xcc, - 0x43,0x36,0x60,0xd2,0x2b,0x6c,0xf0,0x54,0x9e,0xd7,0x80,0x1,0x2,0x1,0x3,0x0, - 0x0,0x89,0xf0,0x0,0x0,0x0,0x0,0x8c,0xa0,0x0,0x5,0x0,0x0,0x7e,0x90,0x0, - 0x9,0x0,0x0,0x9a,0xb0,0x0,0xd,0x50,0x4d,0x4d,0x54,0x0,0x50,0x47,0x54,0x0, - 0x4a,0x53,0x54,0x0,0x42,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x15,0xf8,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x56,0xb6,0x52,0x28,0xff,0xff,0xff,0xff, - 0x72,0xed,0xa4,0x90,0xff,0xff,0xff,0xff,0xcc,0x43,0x36,0x60,0xff,0xff,0xff,0xff, - 0xd2,0x2b,0x6c,0xf0,0x0,0x0,0x0,0x0,0x54,0x9e,0xd7,0x80,0x0,0x1,0x2,0x3, - 0x2,0x4,0x0,0x0,0x91,0xd8,0x0,0x0,0x0,0x0,0x89,0xf0,0x0,0x4,0x0,0x0, - 0x8c,0xa0,0x0,0x9,0x0,0x0,0x7e,0x90,0x0,0xd,0x0,0x0,0x9a,0xb0,0x0,0x11, - 0x4c,0x4d,0x54,0x0,0x50,0x4d,0x4d,0x54,0x0,0x50,0x47,0x54,0x0,0x4a,0x53,0x54, - 0x0,0x42,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa, - 0x42,0x53,0x54,0x2d,0x31,0x31,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Pohnpei - 0x0,0x0,0x0,0x99, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5,0x0,0x0,0x9a,0xb0,0x0, - 0x0,0x50,0x4f,0x4e,0x54,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2, - 0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2, - 0x0,0x0,0x0,0x9,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff, - 0x7e,0x36,0x20,0xac,0x0,0x1,0x0,0x0,0x94,0x54,0x0,0x0,0x0,0x0,0x9a,0xb0, - 0x0,0x4,0x4c,0x4d,0x54,0x0,0x50,0x4f,0x4e,0x54,0x0,0x0,0x0,0x0,0x0,0xa, - 0x50,0x4f,0x4e,0x54,0x2d,0x31,0x31,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Midway - 0x0,0x0,0x1,0x10, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x4,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x10,0x80,0x0,0x0,0x0,0x91, - 0x5,0xfb,0x8,0xfa,0xd2,0x55,0xb0,0x1a,0x2b,0x30,0x30,0x1,0x2,0x3,0x4,0x0, - 0x0,0xb1,0x78,0x0,0x0,0xff,0xff,0x5f,0xf8,0x0,0x0,0xff,0xff,0x65,0x50,0x0, - 0x4,0xff,0xff,0x65,0x50,0x0,0x8,0xff,0xff,0x65,0x50,0x0,0xc,0x4c,0x4d,0x54, - 0x0,0x4e,0x53,0x54,0x0,0x42,0x53,0x54,0x0,0x53,0x53,0x54,0x0,0x0,0x0,0x0, + 0x5,0x0,0x0,0x1b,0x8,0x0,0x0,0x0,0x0,0x1a,0xf4,0x0,0x4,0x0,0x0,0x18, + 0x78,0x0,0x8,0x0,0x0,0x2a,0x30,0x1,0xc,0x0,0x0,0x1c,0x20,0x0,0x11,0x0, + 0x0,0x1c,0x20,0x0,0x11,0x0,0x0,0x2a,0x30,0x1,0xc,0x0,0x0,0xe,0x10,0x0, + 0x15,0x0,0x0,0x1c,0x20,0x1,0x19,0x0,0x0,0x1c,0x20,0x1,0x19,0x0,0x0,0x38, + 0x40,0x1,0x1e,0x0,0x0,0x2a,0x30,0x0,0x22,0x0,0x0,0x2a,0x30,0x0,0x22,0x0, + 0x0,0x38,0x40,0x1,0x1e,0x0,0x0,0x2a,0x30,0x1,0xc,0x0,0x0,0x1c,0x20,0x0, + 0x11,0x4c,0x4d,0x54,0x0,0x43,0x4d,0x54,0x0,0x42,0x4d,0x54,0x0,0x45,0x45,0x53, + 0x54,0x0,0x45,0x45,0x54,0x0,0x43,0x45,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x4d, + 0x53,0x44,0x0,0x4d,0x53,0x4b,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x1,0x1, + 0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0, - 0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0, - 0x0,0x0,0x10,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x55, - 0xc8,0xe4,0x88,0xff,0xff,0xff,0xff,0x91,0x5,0xfb,0x8,0xff,0xff,0xff,0xff,0xfa, - 0xd2,0x55,0xb0,0x0,0x0,0x0,0x0,0x1a,0x2b,0x30,0x30,0x0,0x1,0x2,0x3,0x4, - 0x0,0x0,0xb1,0x78,0x0,0x0,0xff,0xff,0x5f,0xf8,0x0,0x0,0xff,0xff,0x65,0x50, - 0x0,0x4,0xff,0xff,0x65,0x50,0x0,0x8,0xff,0xff,0x65,0x50,0x0,0xc,0x4c,0x4d, - 0x54,0x0,0x4e,0x53,0x54,0x0,0x42,0x53,0x54,0x0,0x53,0x53,0x54,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x53,0x53,0x54,0x31,0x31,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Saipan - 0x0,0x0,0x0,0xe1, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0x3a, - 0x43,0x5e,0x60,0x1,0x2,0x0,0x0,0x87,0xb4,0x0,0x0,0x0,0x0,0x8c,0xa0,0x0, - 0x4,0x0,0x0,0x8c,0xa0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x47,0x53,0x54,0x0,0x43, - 0x68,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x10,0x0, + 0x0,0x0,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0x0,0x0,0x0,0x10,0x0, + 0x0,0x0,0x26,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x56, + 0xb6,0xc8,0xf8,0xff,0xff,0xff,0xff,0x9e,0x6b,0x9f,0xc,0xff,0xff,0xff,0xff,0xb7, + 0xb0,0xd2,0x8,0xff,0xff,0xff,0xff,0xb9,0x3e,0xf3,0x60,0xff,0xff,0xff,0xff,0xb9, + 0xef,0x9c,0x60,0xff,0xff,0xff,0xff,0xba,0xdf,0x8d,0x60,0xff,0xff,0xff,0xff,0xbb, + 0xcf,0x7e,0x60,0xff,0xff,0xff,0xff,0xbc,0xc8,0xa9,0xe0,0xff,0xff,0xff,0xff,0xbd, + 0xb8,0x9a,0xe0,0xff,0xff,0xff,0xff,0xbe,0xa8,0x8b,0xe0,0xff,0xff,0xff,0xff,0xbf, + 0x98,0x7c,0xe0,0xff,0xff,0xff,0xff,0xc0,0x88,0x6d,0xe0,0xff,0xff,0xff,0xff,0xc1, + 0x78,0x5e,0xe0,0xff,0xff,0xff,0xff,0xc2,0x68,0x4f,0xe0,0xff,0xff,0xff,0xff,0xc3, + 0x58,0x40,0xe0,0xff,0xff,0xff,0xff,0xc4,0x48,0x31,0xe0,0xff,0xff,0xff,0xff,0xc5, + 0x38,0x22,0xe0,0xff,0xff,0xff,0xff,0xc6,0x28,0x13,0xe0,0xff,0xff,0xff,0xff,0xc7, + 0x18,0x4,0xe0,0xff,0xff,0xff,0xff,0xc8,0xbc,0x93,0x60,0xff,0xff,0xff,0xff,0xca, + 0x77,0x7d,0x50,0xff,0xff,0xff,0xff,0xcc,0xe7,0x4b,0x10,0xff,0xff,0xff,0xff,0xcd, + 0xa9,0x17,0x90,0xff,0xff,0xff,0xff,0xce,0xa2,0x43,0x10,0xff,0xff,0xff,0xff,0xcf, + 0x92,0x34,0x10,0xff,0xff,0xff,0xff,0xd0,0x4e,0x90,0x60,0x0,0x0,0x0,0x0,0x15, + 0x27,0xa7,0xd0,0x0,0x0,0x0,0x0,0x16,0x18,0xdc,0x40,0x0,0x0,0x0,0x0,0x17, + 0x8,0xdb,0x50,0x0,0x0,0x0,0x0,0x17,0xfa,0xf,0xc0,0x0,0x0,0x0,0x0,0x18, + 0xea,0xe,0xd0,0x0,0x0,0x0,0x0,0x19,0xdb,0x43,0x40,0x0,0x0,0x0,0x0,0x1a, + 0xcc,0x93,0xd0,0x0,0x0,0x0,0x0,0x1b,0xbc,0xa0,0xf0,0x0,0x0,0x0,0x0,0x1c, + 0xac,0x91,0xf0,0x0,0x0,0x0,0x0,0x1d,0x9c,0x82,0xf0,0x0,0x0,0x0,0x0,0x1e, + 0x8c,0x73,0xf0,0x0,0x0,0x0,0x0,0x1f,0x7c,0x64,0xf0,0x0,0x0,0x0,0x0,0x20, + 0x6c,0x55,0xf0,0x0,0x0,0x0,0x0,0x21,0x5c,0x46,0xf0,0x0,0x0,0x0,0x0,0x22, + 0x4c,0x37,0xf0,0x0,0x0,0x0,0x0,0x23,0x3c,0x28,0xf0,0x0,0x0,0x0,0x0,0x24, + 0x2c,0x19,0xf0,0x0,0x0,0x0,0x0,0x25,0x1c,0xa,0xf0,0x0,0x0,0x0,0x0,0x26, + 0xb,0xfb,0xf0,0x0,0x0,0x0,0x0,0x26,0x43,0x4c,0xe0,0x0,0x0,0x0,0x0,0x27, + 0x5,0x35,0x80,0x0,0x0,0x0,0x0,0x27,0xf5,0x26,0x80,0x0,0x0,0x0,0x0,0x28, + 0xe5,0x17,0x80,0x0,0x0,0x0,0x0,0x29,0x60,0xe8,0x60,0x0,0x0,0x0,0x0,0x29, + 0xd4,0xec,0x60,0x0,0x0,0x0,0x0,0x2a,0xc4,0xcf,0x50,0x0,0x0,0x0,0x0,0x2b, + 0xb4,0xce,0x60,0x0,0x0,0x0,0x0,0x2c,0xa4,0xb1,0x50,0x0,0x0,0x0,0x0,0x2d, + 0x94,0xb0,0x60,0x0,0x0,0x0,0x0,0x2e,0x84,0x93,0x50,0x0,0x0,0x0,0x0,0x2f, + 0x74,0x92,0x60,0x0,0x0,0x0,0x0,0x30,0x64,0x75,0x50,0x0,0x0,0x0,0x0,0x31, + 0x5d,0xae,0xe0,0x0,0x0,0x0,0x0,0x32,0x72,0x7b,0xd0,0x0,0x0,0x0,0x0,0x33, + 0x3d,0xad,0x0,0x0,0x0,0x0,0x0,0x34,0x52,0x88,0x0,0x0,0x0,0x0,0x0,0x35, + 0x1d,0x8f,0x0,0x0,0x0,0x0,0x0,0x36,0x32,0x6a,0x0,0x0,0x0,0x0,0x0,0x36, + 0xfd,0x71,0x0,0x0,0x0,0x0,0x0,0x38,0x1b,0x86,0x80,0x0,0x0,0x0,0x0,0x38, + 0xdd,0x53,0x0,0x0,0x0,0x0,0x0,0x39,0xfb,0x68,0x80,0x0,0x0,0x0,0x0,0x3a, + 0xbd,0x35,0x0,0x0,0x0,0x0,0x0,0x3b,0xdb,0x4a,0x80,0x0,0x0,0x0,0x0,0x3c, + 0xa6,0x51,0x80,0x0,0x0,0x0,0x0,0x3d,0xbb,0x2c,0x80,0x0,0x0,0x0,0x0,0x3e, + 0x86,0x33,0x80,0x0,0x0,0x0,0x0,0x3f,0x9b,0xe,0x80,0x0,0x0,0x0,0x0,0x40, + 0x66,0x15,0x80,0x0,0x0,0x0,0x0,0x41,0x84,0x2b,0x0,0x0,0x0,0x0,0x0,0x42, + 0x45,0xf7,0x80,0x0,0x0,0x0,0x0,0x43,0x64,0xd,0x0,0x0,0x0,0x0,0x0,0x44, + 0x25,0xd9,0x80,0x0,0x0,0x0,0x0,0x45,0x43,0xef,0x0,0x0,0x0,0x0,0x0,0x46, + 0x5,0xbb,0x80,0x0,0x0,0x0,0x0,0x47,0x23,0xd1,0x0,0x0,0x0,0x0,0x0,0x47, + 0xee,0xd8,0x0,0x0,0x0,0x0,0x0,0x49,0x3,0xb3,0x0,0x0,0x0,0x0,0x0,0x49, + 0xce,0xba,0x0,0x0,0x0,0x0,0x0,0x4a,0xe3,0x95,0x0,0x0,0x0,0x0,0x0,0x4b, + 0xae,0x9c,0x0,0x0,0x0,0x0,0x0,0x4c,0xcc,0xb1,0x80,0x0,0x0,0x0,0x0,0x4d, + 0x8e,0x7e,0x0,0x0,0x0,0x0,0x0,0x4e,0xac,0x93,0x80,0x0,0x0,0x0,0x0,0x4f, + 0x6e,0x60,0x0,0x0,0x0,0x0,0x0,0x50,0x8c,0x75,0x80,0x0,0x0,0x0,0x0,0x51, + 0x57,0x7c,0x80,0x0,0x0,0x0,0x0,0x52,0x6c,0x57,0x80,0x0,0x0,0x0,0x0,0x53, + 0x37,0x5e,0x80,0x0,0x0,0x0,0x0,0x54,0x4c,0x39,0x80,0x0,0x0,0x0,0x0,0x55, + 0x17,0x40,0x80,0x0,0x0,0x0,0x0,0x56,0x2c,0x1b,0x80,0x0,0x0,0x0,0x0,0x56, + 0xf7,0x22,0x80,0x0,0x0,0x0,0x0,0x58,0x15,0x38,0x0,0x0,0x0,0x0,0x0,0x58, + 0xd7,0x4,0x80,0x0,0x0,0x0,0x0,0x59,0xf5,0x1a,0x0,0x0,0x0,0x0,0x0,0x5a, + 0xb6,0xe6,0x80,0x0,0x0,0x0,0x0,0x5b,0xd4,0xfc,0x0,0x0,0x0,0x0,0x0,0x5c, + 0xa0,0x3,0x0,0x0,0x0,0x0,0x0,0x5d,0xb4,0xde,0x0,0x0,0x0,0x0,0x0,0x5e, + 0x7f,0xe5,0x0,0x0,0x0,0x0,0x0,0x5f,0x94,0xc0,0x0,0x0,0x0,0x0,0x0,0x60, + 0x5f,0xc7,0x0,0x0,0x0,0x0,0x0,0x61,0x7d,0xdc,0x80,0x0,0x0,0x0,0x0,0x62, + 0x3f,0xa9,0x0,0x0,0x0,0x0,0x0,0x63,0x5d,0xbe,0x80,0x0,0x0,0x0,0x0,0x64, + 0x1f,0x8b,0x0,0x0,0x0,0x0,0x0,0x65,0x3d,0xa0,0x80,0x0,0x0,0x0,0x0,0x66, + 0x8,0xa7,0x80,0x0,0x0,0x0,0x0,0x67,0x1d,0x82,0x80,0x0,0x0,0x0,0x0,0x67, + 0xe8,0x89,0x80,0x0,0x0,0x0,0x0,0x68,0xfd,0x64,0x80,0x0,0x0,0x0,0x0,0x69, + 0xc8,0x6b,0x80,0x0,0x0,0x0,0x0,0x6a,0xdd,0x46,0x80,0x0,0x0,0x0,0x0,0x6b, + 0xa8,0x4d,0x80,0x0,0x0,0x0,0x0,0x6c,0xc6,0x63,0x0,0x0,0x0,0x0,0x0,0x6d, + 0x88,0x2f,0x80,0x0,0x0,0x0,0x0,0x6e,0xa6,0x45,0x0,0x0,0x0,0x0,0x0,0x6f, + 0x68,0x11,0x80,0x0,0x0,0x0,0x0,0x70,0x86,0x27,0x0,0x0,0x0,0x0,0x0,0x71, + 0x51,0x2e,0x0,0x0,0x0,0x0,0x0,0x72,0x66,0x9,0x0,0x0,0x0,0x0,0x0,0x73, + 0x31,0x10,0x0,0x0,0x0,0x0,0x0,0x74,0x45,0xeb,0x0,0x0,0x0,0x0,0x0,0x75, + 0x10,0xf2,0x0,0x0,0x0,0x0,0x0,0x76,0x2f,0x7,0x80,0x0,0x0,0x0,0x0,0x76, + 0xf0,0xd4,0x0,0x0,0x0,0x0,0x0,0x78,0xe,0xe9,0x80,0x0,0x0,0x0,0x0,0x78, + 0xd0,0xb6,0x0,0x0,0x0,0x0,0x0,0x79,0xee,0xcb,0x80,0x0,0x0,0x0,0x0,0x7a, + 0xb0,0x98,0x0,0x0,0x0,0x0,0x0,0x7b,0xce,0xad,0x80,0x0,0x0,0x0,0x0,0x7c, + 0x99,0xb4,0x80,0x0,0x0,0x0,0x0,0x7d,0xae,0x8f,0x80,0x0,0x0,0x0,0x0,0x7e, + 0x79,0x96,0x80,0x0,0x0,0x0,0x0,0x7f,0x8e,0x71,0x80,0x0,0x1,0x2,0x5,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x6, + 0x9,0x7,0x8,0x7,0x8,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xc,0xd,0xc, + 0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0x6,0x4,0x3,0x4,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x0,0x0,0x1b,0x8,0x0,0x0, + 0x0,0x0,0x1a,0xf4,0x0,0x4,0x0,0x0,0x18,0x78,0x0,0x8,0x0,0x0,0x2a,0x30, + 0x1,0xc,0x0,0x0,0x1c,0x20,0x0,0x11,0x0,0x0,0x1c,0x20,0x0,0x11,0x0,0x0, + 0x2a,0x30,0x1,0xc,0x0,0x0,0xe,0x10,0x0,0x15,0x0,0x0,0x1c,0x20,0x1,0x19, + 0x0,0x0,0x1c,0x20,0x1,0x19,0x0,0x0,0x38,0x40,0x1,0x1e,0x0,0x0,0x2a,0x30, + 0x0,0x22,0x0,0x0,0x2a,0x30,0x0,0x22,0x0,0x0,0x38,0x40,0x1,0x1e,0x0,0x0, + 0x2a,0x30,0x1,0xc,0x0,0x0,0x1c,0x20,0x0,0x11,0x4c,0x4d,0x54,0x0,0x43,0x4d, + 0x54,0x0,0x42,0x4d,0x54,0x0,0x45,0x45,0x53,0x54,0x0,0x45,0x45,0x54,0x0,0x43, + 0x45,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x4d,0x53,0x44,0x0,0x4d,0x53,0x4b,0x0, + 0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x1,0x1,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0, - 0x0,0x4,0x0,0x0,0x0,0xd,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff, - 0xff,0xff,0x14,0xe1,0xc5,0xcc,0xff,0xff,0xff,0xff,0x7e,0x36,0x2d,0x4c,0x0,0x0, - 0x0,0x0,0x3a,0x43,0x5e,0x60,0x0,0x1,0x2,0x3,0xff,0xff,0x36,0x34,0x0,0x0, - 0x0,0x0,0x87,0xb4,0x0,0x0,0x0,0x0,0x8c,0xa0,0x0,0x4,0x0,0x0,0x8c,0xa0, - 0x0,0x8,0x4c,0x4d,0x54,0x0,0x47,0x53,0x54,0x0,0x43,0x68,0x53,0x54,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x43,0x68,0x53,0x54,0x2d,0x31,0x30,0xa, - - // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Norfolk - 0x0,0x0,0x1,0x21, + 0xa,0x45,0x45,0x54,0x2d,0x32,0x45,0x45,0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e, + 0x30,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30,0x2f,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Budapest + 0x0,0x0,0x9,0x65, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x11,0x80,0x0,0x0,0x0,0xdc, - 0x41,0xf8,0x80,0x9,0xf,0xca,0x68,0x9,0xb5,0xd9,0x58,0x56,0xf,0xe6,0x68,0x1, - 0x2,0x3,0x2,0x4,0x0,0x0,0x9d,0x78,0x0,0x0,0x0,0x0,0x9d,0x80,0x0,0x4, - 0x0,0x0,0xa1,0xb8,0x0,0x8,0x0,0x0,0xaf,0xc8,0x1,0xc,0x0,0x0,0x9a,0xb0, - 0x0,0x8,0x4c,0x4d,0x54,0x0,0x4e,0x4d,0x54,0x0,0x4e,0x46,0x54,0x0,0x4e,0x46, - 0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, - 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x6,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x11,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0x7e,0x36,0x17,0x88,0xff,0xff,0xff,0xff,0xdc,0x41,0xf8, - 0x80,0x0,0x0,0x0,0x0,0x9,0xf,0xca,0x68,0x0,0x0,0x0,0x0,0x9,0xb5,0xd9, - 0x58,0x0,0x0,0x0,0x0,0x56,0xf,0xe6,0x68,0x0,0x1,0x2,0x3,0x2,0x4,0x0, - 0x0,0x9d,0x78,0x0,0x0,0x0,0x0,0x9d,0x80,0x0,0x4,0x0,0x0,0xa1,0xb8,0x0, - 0x8,0x0,0x0,0xaf,0xc8,0x1,0xc,0x0,0x0,0x9a,0xb0,0x0,0x8,0x4c,0x4d,0x54, - 0x0,0x4e,0x4d,0x54,0x0,0x4e,0x46,0x54,0x0,0x4e,0x46,0x53,0x54,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x4e,0x46,0x54,0x2d,0x31,0x31,0xa, - - // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Easter - 0x0,0x0,0x8,0xb1, - 0x54, - 0x5a,0x69,0x66,0x33,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x8b,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x13,0x80,0x0,0x0,0x0,0xb9, - 0xc7,0x40,0x88,0xfd,0xd1,0x3c,0x40,0xfe,0x92,0xfa,0xb0,0xff,0xcc,0xcd,0xc0,0x0, - 0x72,0xdc,0xb0,0x1,0x75,0x50,0xc0,0x2,0x40,0x49,0xb0,0x3,0x55,0x32,0xc0,0x4, - 0x20,0x2b,0xb0,0x5,0x3e,0x4f,0x40,0x6,0x0,0xd,0xb0,0x7,0xb,0xbc,0x40,0x7, - 0xdf,0xef,0xb0,0x8,0xfe,0x13,0x40,0x9,0xbf,0xd1,0xb0,0xa,0xdd,0xf5,0x40,0xb, - 0xa8,0xee,0x30,0xc,0xbd,0xd7,0x40,0xd,0x88,0xd0,0x30,0xe,0x9d,0xb9,0x40,0xf, - 0x68,0xb2,0x30,0x10,0x86,0xd5,0xc0,0x11,0x48,0x94,0x30,0x12,0x66,0xb7,0xc0,0x13, - 0x28,0x76,0x30,0x14,0x46,0x99,0xc0,0x15,0x11,0x92,0xb0,0x16,0x26,0x7b,0xc0,0x16, - 0xf1,0x74,0xb0,0x18,0x6,0x5d,0xc0,0x18,0xd1,0x56,0xb0,0x19,0xe6,0x3f,0xc0,0x1a, - 0xb1,0x38,0xb0,0x1b,0xcf,0x5c,0x40,0x1c,0x91,0x1a,0xb0,0x1d,0xaf,0x3e,0x40,0x1e, - 0x70,0xfc,0xb0,0x1f,0x8f,0x20,0x40,0x20,0x7f,0x3,0x30,0x21,0x6f,0x2,0x40,0x22, - 0x39,0xfb,0x30,0x23,0x4e,0xe4,0x40,0x24,0x19,0xdd,0x30,0x25,0x38,0x0,0xc0,0x25, - 0xf9,0xbf,0x30,0x26,0xf2,0xf8,0xc0,0x27,0xd9,0xa1,0x30,0x28,0xf7,0xc4,0xc0,0x29, - 0xc2,0xbd,0xb0,0x2a,0xd7,0xa6,0xc0,0x2b,0xa2,0x9f,0xb0,0x2c,0xb7,0x88,0xc0,0x2d, - 0x82,0x81,0xb0,0x2e,0x97,0x6a,0xc0,0x2f,0x62,0x63,0xb0,0x30,0x80,0x87,0x40,0x31, - 0x42,0x45,0xb0,0x32,0x60,0x69,0x40,0x33,0x3d,0xd7,0x30,0x34,0x40,0x4b,0x40,0x35, - 0xb,0x44,0x30,0x36,0xd,0xb8,0x40,0x37,0x6,0xd5,0xb0,0x38,0x0,0xf,0x40,0x38, - 0xcb,0x8,0x30,0x39,0xe9,0x2b,0xc0,0x3a,0xaa,0xea,0x30,0x3b,0xc9,0xd,0xc0,0x3c, - 0x8a,0xcc,0x30,0x3d,0xa8,0xef,0xc0,0x3e,0x6a,0xae,0x30,0x3f,0x88,0xd1,0xc0,0x40, - 0x53,0xca,0xb0,0x41,0x68,0xb3,0xc0,0x42,0x33,0xac,0xb0,0x43,0x48,0x95,0xc0,0x44, - 0x13,0x8e,0xb0,0x45,0x31,0xb2,0x40,0x45,0xf3,0x70,0xb0,0x47,0x11,0x94,0x40,0x47, - 0xef,0x2,0x30,0x48,0xf1,0x76,0x40,0x49,0xbc,0x6f,0x30,0x4a,0xd1,0x58,0x40,0x4b, - 0xb8,0x0,0xb0,0x4c,0xb1,0x3a,0x40,0x4d,0xc6,0x7,0x30,0x4e,0x50,0x82,0xc0,0x4f, - 0x9c,0xae,0xb0,0x50,0x42,0xd9,0xc0,0x51,0x7c,0x90,0xb0,0x52,0x2b,0xf6,0x40,0x53, - 0x5c,0x72,0xb0,0x54,0xb,0xd8,0x40,0x57,0x37,0xe6,0x30,0x57,0xaf,0xec,0xc0,0x59, - 0x17,0xc8,0x30,0x59,0x8f,0xce,0xc0,0x5a,0xf7,0xaa,0x30,0x5b,0x6f,0xb0,0xc0,0x5c, - 0xd7,0x8c,0x30,0x5d,0x4f,0x92,0xc0,0x5e,0xb7,0x6e,0x30,0x5f,0x2f,0x74,0xc0,0x60, - 0x97,0x50,0x30,0x61,0x18,0x91,0x40,0x62,0x80,0x6c,0xb0,0x62,0xf8,0x73,0x40,0x64, - 0x60,0x4e,0xb0,0x64,0xd8,0x55,0x40,0x66,0x40,0x30,0xb0,0x66,0xb8,0x37,0x40,0x68, - 0x20,0x12,0xb0,0x68,0x98,0x19,0x40,0x69,0xff,0xf4,0xb0,0x6a,0x77,0xfb,0x40,0x6b, - 0xdf,0xd6,0xb0,0x6c,0x61,0x17,0xc0,0x6d,0xc8,0xf3,0x30,0x6e,0x40,0xf9,0xc0,0x6f, - 0xa8,0xd5,0x30,0x70,0x20,0xdb,0xc0,0x71,0x88,0xb7,0x30,0x72,0x0,0xbd,0xc0,0x73, - 0x68,0x99,0x30,0x73,0xe0,0x9f,0xc0,0x75,0x48,0x7b,0x30,0x75,0xc9,0xbc,0x40,0x77, - 0x31,0x97,0xb0,0x77,0xa9,0x9e,0x40,0x79,0x11,0x79,0xb0,0x79,0x89,0x80,0x40,0x7a, - 0xf1,0x5b,0xb0,0x7b,0x69,0x62,0x40,0x7c,0xd1,0x3d,0xb0,0x7d,0x49,0x44,0x40,0x7e, - 0xb1,0x1f,0xb0,0x7f,0x29,0x26,0x40,0x1,0x4,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0xff,0xff,0x99,0x78,0x0,0x0,0xff,0xff,0x99,0x78,0x0,0x4,0xff,0xff, - 0xab,0xa0,0x1,0x8,0xff,0xff,0x9d,0x90,0x0,0xe,0xff,0xff,0x9d,0x90,0x0,0xe, - 0xff,0xff,0xab,0xa0,0x0,0xe,0xff,0xff,0xb9,0xb0,0x1,0x8,0x4c,0x4d,0x54,0x0, - 0x45,0x4d,0x54,0x0,0x45,0x41,0x53,0x53,0x54,0x0,0x45,0x41,0x53,0x54,0x0,0x0, - 0x0,0x1,0x1,0x0,0x1,0x1,0x0,0x0,0x1,0x1,0x0,0x1,0x1,0x54,0x5a,0x69, - 0x66,0x33,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x8c,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x13,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0x69,0x87,0x42,0x8,0xff,0xff,0xff,0xff,0xb9,0xc7,0x40, - 0x88,0xff,0xff,0xff,0xff,0xfd,0xd1,0x3c,0x40,0xff,0xff,0xff,0xff,0xfe,0x92,0xfa, - 0xb0,0xff,0xff,0xff,0xff,0xff,0xcc,0xcd,0xc0,0x0,0x0,0x0,0x0,0x0,0x72,0xdc, - 0xb0,0x0,0x0,0x0,0x0,0x1,0x75,0x50,0xc0,0x0,0x0,0x0,0x0,0x2,0x40,0x49, - 0xb0,0x0,0x0,0x0,0x0,0x3,0x55,0x32,0xc0,0x0,0x0,0x0,0x0,0x4,0x20,0x2b, - 0xb0,0x0,0x0,0x0,0x0,0x5,0x3e,0x4f,0x40,0x0,0x0,0x0,0x0,0x6,0x0,0xd, - 0xb0,0x0,0x0,0x0,0x0,0x7,0xb,0xbc,0x40,0x0,0x0,0x0,0x0,0x7,0xdf,0xef, - 0xb0,0x0,0x0,0x0,0x0,0x8,0xfe,0x13,0x40,0x0,0x0,0x0,0x0,0x9,0xbf,0xd1, - 0xb0,0x0,0x0,0x0,0x0,0xa,0xdd,0xf5,0x40,0x0,0x0,0x0,0x0,0xb,0xa8,0xee, - 0x30,0x0,0x0,0x0,0x0,0xc,0xbd,0xd7,0x40,0x0,0x0,0x0,0x0,0xd,0x88,0xd0, - 0x30,0x0,0x0,0x0,0x0,0xe,0x9d,0xb9,0x40,0x0,0x0,0x0,0x0,0xf,0x68,0xb2, - 0x30,0x0,0x0,0x0,0x0,0x10,0x86,0xd5,0xc0,0x0,0x0,0x0,0x0,0x11,0x48,0x94, - 0x30,0x0,0x0,0x0,0x0,0x12,0x66,0xb7,0xc0,0x0,0x0,0x0,0x0,0x13,0x28,0x76, - 0x30,0x0,0x0,0x0,0x0,0x14,0x46,0x99,0xc0,0x0,0x0,0x0,0x0,0x15,0x11,0x92, - 0xb0,0x0,0x0,0x0,0x0,0x16,0x26,0x7b,0xc0,0x0,0x0,0x0,0x0,0x16,0xf1,0x74, - 0xb0,0x0,0x0,0x0,0x0,0x18,0x6,0x5d,0xc0,0x0,0x0,0x0,0x0,0x18,0xd1,0x56, - 0xb0,0x0,0x0,0x0,0x0,0x19,0xe6,0x3f,0xc0,0x0,0x0,0x0,0x0,0x1a,0xb1,0x38, - 0xb0,0x0,0x0,0x0,0x0,0x1b,0xcf,0x5c,0x40,0x0,0x0,0x0,0x0,0x1c,0x91,0x1a, - 0xb0,0x0,0x0,0x0,0x0,0x1d,0xaf,0x3e,0x40,0x0,0x0,0x0,0x0,0x1e,0x70,0xfc, - 0xb0,0x0,0x0,0x0,0x0,0x1f,0x8f,0x20,0x40,0x0,0x0,0x0,0x0,0x20,0x7f,0x3, - 0x30,0x0,0x0,0x0,0x0,0x21,0x6f,0x2,0x40,0x0,0x0,0x0,0x0,0x22,0x39,0xfb, - 0x30,0x0,0x0,0x0,0x0,0x23,0x4e,0xe4,0x40,0x0,0x0,0x0,0x0,0x24,0x19,0xdd, - 0x30,0x0,0x0,0x0,0x0,0x25,0x38,0x0,0xc0,0x0,0x0,0x0,0x0,0x25,0xf9,0xbf, - 0x30,0x0,0x0,0x0,0x0,0x26,0xf2,0xf8,0xc0,0x0,0x0,0x0,0x0,0x27,0xd9,0xa1, - 0x30,0x0,0x0,0x0,0x0,0x28,0xf7,0xc4,0xc0,0x0,0x0,0x0,0x0,0x29,0xc2,0xbd, - 0xb0,0x0,0x0,0x0,0x0,0x2a,0xd7,0xa6,0xc0,0x0,0x0,0x0,0x0,0x2b,0xa2,0x9f, - 0xb0,0x0,0x0,0x0,0x0,0x2c,0xb7,0x88,0xc0,0x0,0x0,0x0,0x0,0x2d,0x82,0x81, - 0xb0,0x0,0x0,0x0,0x0,0x2e,0x97,0x6a,0xc0,0x0,0x0,0x0,0x0,0x2f,0x62,0x63, - 0xb0,0x0,0x0,0x0,0x0,0x30,0x80,0x87,0x40,0x0,0x0,0x0,0x0,0x31,0x42,0x45, - 0xb0,0x0,0x0,0x0,0x0,0x32,0x60,0x69,0x40,0x0,0x0,0x0,0x0,0x33,0x3d,0xd7, - 0x30,0x0,0x0,0x0,0x0,0x34,0x40,0x4b,0x40,0x0,0x0,0x0,0x0,0x35,0xb,0x44, - 0x30,0x0,0x0,0x0,0x0,0x36,0xd,0xb8,0x40,0x0,0x0,0x0,0x0,0x37,0x6,0xd5, - 0xb0,0x0,0x0,0x0,0x0,0x38,0x0,0xf,0x40,0x0,0x0,0x0,0x0,0x38,0xcb,0x8, - 0x30,0x0,0x0,0x0,0x0,0x39,0xe9,0x2b,0xc0,0x0,0x0,0x0,0x0,0x3a,0xaa,0xea, - 0x30,0x0,0x0,0x0,0x0,0x3b,0xc9,0xd,0xc0,0x0,0x0,0x0,0x0,0x3c,0x8a,0xcc, - 0x30,0x0,0x0,0x0,0x0,0x3d,0xa8,0xef,0xc0,0x0,0x0,0x0,0x0,0x3e,0x6a,0xae, - 0x30,0x0,0x0,0x0,0x0,0x3f,0x88,0xd1,0xc0,0x0,0x0,0x0,0x0,0x40,0x53,0xca, - 0xb0,0x0,0x0,0x0,0x0,0x41,0x68,0xb3,0xc0,0x0,0x0,0x0,0x0,0x42,0x33,0xac, - 0xb0,0x0,0x0,0x0,0x0,0x43,0x48,0x95,0xc0,0x0,0x0,0x0,0x0,0x44,0x13,0x8e, - 0xb0,0x0,0x0,0x0,0x0,0x45,0x31,0xb2,0x40,0x0,0x0,0x0,0x0,0x45,0xf3,0x70, - 0xb0,0x0,0x0,0x0,0x0,0x47,0x11,0x94,0x40,0x0,0x0,0x0,0x0,0x47,0xef,0x2, - 0x30,0x0,0x0,0x0,0x0,0x48,0xf1,0x76,0x40,0x0,0x0,0x0,0x0,0x49,0xbc,0x6f, - 0x30,0x0,0x0,0x0,0x0,0x4a,0xd1,0x58,0x40,0x0,0x0,0x0,0x0,0x4b,0xb8,0x0, - 0xb0,0x0,0x0,0x0,0x0,0x4c,0xb1,0x3a,0x40,0x0,0x0,0x0,0x0,0x4d,0xc6,0x7, - 0x30,0x0,0x0,0x0,0x0,0x4e,0x50,0x82,0xc0,0x0,0x0,0x0,0x0,0x4f,0x9c,0xae, - 0xb0,0x0,0x0,0x0,0x0,0x50,0x42,0xd9,0xc0,0x0,0x0,0x0,0x0,0x51,0x7c,0x90, - 0xb0,0x0,0x0,0x0,0x0,0x52,0x2b,0xf6,0x40,0x0,0x0,0x0,0x0,0x53,0x5c,0x72, - 0xb0,0x0,0x0,0x0,0x0,0x54,0xb,0xd8,0x40,0x0,0x0,0x0,0x0,0x57,0x37,0xe6, - 0x30,0x0,0x0,0x0,0x0,0x57,0xaf,0xec,0xc0,0x0,0x0,0x0,0x0,0x59,0x17,0xc8, - 0x30,0x0,0x0,0x0,0x0,0x59,0x8f,0xce,0xc0,0x0,0x0,0x0,0x0,0x5a,0xf7,0xaa, - 0x30,0x0,0x0,0x0,0x0,0x5b,0x6f,0xb0,0xc0,0x0,0x0,0x0,0x0,0x5c,0xd7,0x8c, - 0x30,0x0,0x0,0x0,0x0,0x5d,0x4f,0x92,0xc0,0x0,0x0,0x0,0x0,0x5e,0xb7,0x6e, - 0x30,0x0,0x0,0x0,0x0,0x5f,0x2f,0x74,0xc0,0x0,0x0,0x0,0x0,0x60,0x97,0x50, - 0x30,0x0,0x0,0x0,0x0,0x61,0x18,0x91,0x40,0x0,0x0,0x0,0x0,0x62,0x80,0x6c, - 0xb0,0x0,0x0,0x0,0x0,0x62,0xf8,0x73,0x40,0x0,0x0,0x0,0x0,0x64,0x60,0x4e, - 0xb0,0x0,0x0,0x0,0x0,0x64,0xd8,0x55,0x40,0x0,0x0,0x0,0x0,0x66,0x40,0x30, - 0xb0,0x0,0x0,0x0,0x0,0x66,0xb8,0x37,0x40,0x0,0x0,0x0,0x0,0x68,0x20,0x12, - 0xb0,0x0,0x0,0x0,0x0,0x68,0x98,0x19,0x40,0x0,0x0,0x0,0x0,0x69,0xff,0xf4, - 0xb0,0x0,0x0,0x0,0x0,0x6a,0x77,0xfb,0x40,0x0,0x0,0x0,0x0,0x6b,0xdf,0xd6, - 0xb0,0x0,0x0,0x0,0x0,0x6c,0x61,0x17,0xc0,0x0,0x0,0x0,0x0,0x6d,0xc8,0xf3, - 0x30,0x0,0x0,0x0,0x0,0x6e,0x40,0xf9,0xc0,0x0,0x0,0x0,0x0,0x6f,0xa8,0xd5, - 0x30,0x0,0x0,0x0,0x0,0x70,0x20,0xdb,0xc0,0x0,0x0,0x0,0x0,0x71,0x88,0xb7, - 0x30,0x0,0x0,0x0,0x0,0x72,0x0,0xbd,0xc0,0x0,0x0,0x0,0x0,0x73,0x68,0x99, - 0x30,0x0,0x0,0x0,0x0,0x73,0xe0,0x9f,0xc0,0x0,0x0,0x0,0x0,0x75,0x48,0x7b, - 0x30,0x0,0x0,0x0,0x0,0x75,0xc9,0xbc,0x40,0x0,0x0,0x0,0x0,0x77,0x31,0x97, - 0xb0,0x0,0x0,0x0,0x0,0x77,0xa9,0x9e,0x40,0x0,0x0,0x0,0x0,0x79,0x11,0x79, - 0xb0,0x0,0x0,0x0,0x0,0x79,0x89,0x80,0x40,0x0,0x0,0x0,0x0,0x7a,0xf1,0x5b, - 0xb0,0x0,0x0,0x0,0x0,0x7b,0x69,0x62,0x40,0x0,0x0,0x0,0x0,0x7c,0xd1,0x3d, - 0xb0,0x0,0x0,0x0,0x0,0x7d,0x49,0x44,0x40,0x0,0x0,0x0,0x0,0x7e,0xb1,0x1f, - 0xb0,0x0,0x0,0x0,0x0,0x7f,0x29,0x26,0x40,0x0,0x1,0x4,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x0,0x0,0x99,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0x9b, + 0xc,0x17,0x60,0x9b,0xd5,0xda,0xf0,0x9c,0xd9,0xae,0x90,0x9d,0xa4,0xb5,0x90,0x9e, + 0x30,0x58,0x70,0x9e,0xa7,0x29,0xa0,0x9f,0x84,0x97,0x90,0xa0,0x9a,0xd2,0x20,0xa1, + 0xc0,0xc2,0x90,0xc9,0xf3,0xc3,0x70,0xcc,0xe7,0x4b,0x10,0xcd,0xa9,0x17,0x90,0xce, + 0xa2,0x43,0x10,0xcf,0x92,0x34,0x10,0xd0,0x82,0x25,0x10,0xd0,0xfa,0x1,0x70,0xd1, + 0x99,0x78,0xe0,0xd2,0x8a,0xbb,0x60,0xd3,0x50,0xa6,0x90,0xd4,0x49,0xd2,0x10,0xd5, + 0x39,0xc3,0x10,0xd6,0x29,0xb4,0x10,0xd7,0x19,0xa5,0x10,0xd8,0x9,0x96,0x10,0xd9, + 0x2,0xc1,0x90,0xd9,0xe9,0x78,0x10,0xda,0xed,0x2f,0x90,0xdb,0xe6,0x5b,0x10,0xe2, + 0xa2,0xa8,0xf0,0xe3,0x51,0xf2,0x60,0xe4,0x83,0xdc,0x70,0xe5,0x33,0x25,0xe0,0xe6, + 0x74,0xe1,0xf0,0xe7,0x11,0xb6,0x60,0xe8,0x54,0xd2,0x0,0xe8,0xf1,0xc2,0x90,0x13, + 0x4d,0x36,0x0,0x14,0x33,0xfa,0x90,0x15,0x23,0xeb,0x90,0x16,0x13,0xdc,0x90,0x17, + 0x3,0xcd,0x90,0x17,0xf3,0xbe,0x90,0x18,0xe3,0xaf,0x90,0x19,0xd3,0xa0,0x90,0x1a, + 0xc3,0x91,0x90,0x1b,0xbc,0xbd,0x10,0x1c,0xac,0xae,0x10,0x1d,0x9c,0x9f,0x10,0x1e, + 0x8c,0x90,0x10,0x1f,0x7c,0x81,0x10,0x20,0x6c,0x72,0x10,0x21,0x5c,0x63,0x10,0x22, + 0x4c,0x54,0x10,0x23,0x3c,0x45,0x10,0x24,0x2c,0x36,0x10,0x25,0x1c,0x27,0x10,0x26, + 0xc,0x18,0x10,0x27,0x5,0x43,0x90,0x27,0xf5,0x34,0x90,0x28,0xe5,0x25,0x90,0x29, + 0xd5,0x16,0x90,0x2a,0xc5,0x7,0x90,0x2b,0xb4,0xf8,0x90,0x2c,0xa4,0xe9,0x90,0x2d, + 0x94,0xda,0x90,0x2e,0x84,0xcb,0x90,0x2f,0x74,0xbc,0x90,0x30,0x64,0xad,0x90,0x31, + 0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34,0x52,0x96,0x10,0x35, + 0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x38, + 0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b,0xdb,0x58,0x90,0x3c, + 0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f,0x9b,0x1c,0x90,0x40, + 0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43,0x64,0x1b,0x10,0x44, + 0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47, + 0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b, + 0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e,0xac,0xa1,0x90,0x4f, + 0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53, + 0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56,0x2c,0x29,0x90,0x56, + 0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59,0xf5,0x28,0x10,0x5a, + 0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d,0xb4,0xec,0x10,0x5e, + 0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61,0x7d,0xea,0x90,0x62, + 0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65,0x3d,0xae,0x90,0x66, + 0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68,0xfd,0x72,0x90,0x69, + 0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c,0xc6,0x71,0x10,0x6d, + 0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70,0x86,0x35,0x10,0x71, + 0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74,0x45,0xf9,0x10,0x75, + 0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78, + 0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c, + 0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x2, + 0x1,0x2,0x3,0x4,0x2,0x1,0x2,0x1,0x2,0x1,0x4,0x3,0x4,0x3,0x4,0x2, + 0x1,0x2,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0xff,0xff,0x99,0x78,0x0,0x0,0xff,0xff,0x99,0x78,0x0, - 0x4,0xff,0xff,0xab,0xa0,0x1,0x8,0xff,0xff,0x9d,0x90,0x0,0xe,0xff,0xff,0x9d, - 0x90,0x0,0xe,0xff,0xff,0xab,0xa0,0x0,0xe,0xff,0xff,0xb9,0xb0,0x1,0x8,0x4c, - 0x4d,0x54,0x0,0x45,0x4d,0x54,0x0,0x45,0x41,0x53,0x53,0x54,0x0,0x45,0x41,0x53, - 0x54,0x0,0x0,0x0,0x1,0x1,0x0,0x1,0x1,0x0,0x0,0x1,0x1,0x0,0x1,0x1, - 0xa,0x45,0x41,0x53,0x54,0x36,0x45,0x41,0x53,0x53,0x54,0x2c,0x4d,0x38,0x2e,0x32, - 0x2e,0x36,0x2f,0x32,0x32,0x2c,0x4d,0x35,0x2e,0x32,0x2e,0x36,0x2f,0x32,0x32,0xa, - - // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Noumea - 0x0,0x0,0x1,0x3a, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x8,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0x92, - 0xf5,0xc4,0x74,0xe,0xe6,0xba,0x50,0xf,0x56,0xbb,0xc0,0x10,0xc6,0x9c,0x50,0x11, - 0x37,0xef,0x40,0x32,0xa0,0x4b,0xf0,0x33,0x18,0x44,0x70,0x0,0x2,0x1,0x2,0x1, - 0x2,0x3,0x4,0x0,0x0,0x9c,0xc,0x0,0x0,0x0,0x0,0xa8,0xc0,0x1,0x4,0x0, - 0x0,0x9a,0xb0,0x0,0x9,0x0,0x0,0xa8,0xc0,0x1,0x4,0x0,0x0,0x9a,0xb0,0x0, - 0x9,0x4c,0x4d,0x54,0x0,0x4e,0x43,0x53,0x54,0x0,0x4e,0x43,0x54,0x0,0x0,0x0, - 0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5, - 0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x5, - 0x0,0x0,0x0,0xd,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff, - 0x92,0xf5,0xc4,0x74,0x0,0x0,0x0,0x0,0xe,0xe6,0xba,0x50,0x0,0x0,0x0,0x0, - 0xf,0x56,0xbb,0xc0,0x0,0x0,0x0,0x0,0x10,0xc6,0x9c,0x50,0x0,0x0,0x0,0x0, - 0x11,0x37,0xef,0x40,0x0,0x0,0x0,0x0,0x32,0xa0,0x4b,0xf0,0x0,0x0,0x0,0x0, - 0x33,0x18,0x44,0x70,0x0,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x0,0x0,0x9c,0xc, - 0x0,0x0,0x0,0x0,0xa8,0xc0,0x1,0x4,0x0,0x0,0x9a,0xb0,0x0,0x9,0x0,0x0, - 0xa8,0xc0,0x1,0x4,0x0,0x0,0x9a,0xb0,0x0,0x9,0x4c,0x4d,0x54,0x0,0x4e,0x43, - 0x53,0x54,0x0,0x4e,0x43,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0, - 0x0,0xa,0x4e,0x43,0x54,0x2d,0x31,0x31,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Tongatapu - 0x0,0x0,0x3,0xdd, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x34,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0x80,0x0,0x0,0x0,0xc9, - 0x73,0x42,0x90,0x37,0xfb,0x47,0xd0,0x38,0xd3,0x7d,0xd0,0x3a,0x4,0x8,0x50,0x3a, - 0x72,0xb8,0x40,0x3b,0xe3,0xea,0x50,0x3c,0x52,0x9a,0x40,0x58,0x1d,0xd7,0xd0,0x58, - 0x7a,0x20,0xd0,0x59,0xfd,0xb9,0xd0,0x5a,0x63,0x3d,0x50,0x5b,0xdd,0x9b,0xd0,0x5c, - 0x43,0x1f,0x50,0x5d,0xbd,0x7d,0xd0,0x5e,0x23,0x1,0x50,0x5f,0x9d,0x5f,0xd0,0x60, - 0x2,0xe3,0x50,0x61,0x86,0x7c,0x50,0x61,0xe2,0xc5,0x50,0x63,0x66,0x5e,0x50,0x63, - 0xc2,0xa7,0x50,0x65,0x46,0x40,0x50,0x65,0xab,0xc3,0xd0,0x67,0x26,0x22,0x50,0x67, - 0x8b,0xa5,0xd0,0x69,0x6,0x4,0x50,0x69,0x6b,0x87,0xd0,0x6a,0xe5,0xe6,0x50,0x6b, - 0x4b,0x69,0xd0,0x6c,0xcf,0x2,0xd0,0x6d,0x2b,0x4b,0xd0,0x6e,0xae,0xe4,0xd0,0x6f, - 0x14,0x68,0x50,0x70,0x8e,0xc6,0xd0,0x70,0xf4,0x4a,0x50,0x72,0x6e,0xa8,0xd0,0x72, - 0xd4,0x2c,0x50,0x74,0x4e,0x8a,0xd0,0x74,0xb4,0xe,0x50,0x76,0x37,0xa7,0x50,0x76, - 0x93,0xf0,0x50,0x78,0x17,0x89,0x50,0x78,0x73,0xd2,0x50,0x79,0xf7,0x6b,0x50,0x7a, - 0x5c,0xee,0xd0,0x7b,0xd7,0x4d,0x50,0x7c,0x3c,0xd0,0xd0,0x7d,0xb7,0x2f,0x50,0x7e, - 0x1c,0xb2,0xd0,0x7f,0x97,0x11,0x50,0x7f,0xff,0xff,0xff,0x1,0x2,0x3,0x4,0x5, - 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, - 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, - 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x5,0x0, - 0x0,0xad,0x48,0x0,0x0,0x0,0x0,0xad,0x70,0x0,0x4,0x0,0x0,0xb6,0xd0,0x0, - 0xa,0x0,0x0,0xc4,0xe0,0x1,0xe,0x0,0x0,0xb6,0xd0,0x0,0xa,0x0,0x0,0xc4, - 0xe0,0x1,0xe,0x4c,0x4d,0x54,0x0,0x2b,0x31,0x32,0x32,0x30,0x0,0x2b,0x31,0x33, - 0x0,0x2b,0x31,0x34,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x35,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x12,0xf8,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x7e,0x36,0x7,0xb8,0xff,0xff,0xff, - 0xff,0xc9,0x73,0x42,0x90,0x0,0x0,0x0,0x0,0x37,0xfb,0x47,0xd0,0x0,0x0,0x0, - 0x0,0x38,0xd3,0x7d,0xd0,0x0,0x0,0x0,0x0,0x3a,0x4,0x8,0x50,0x0,0x0,0x0, - 0x0,0x3a,0x72,0xb8,0x40,0x0,0x0,0x0,0x0,0x3b,0xe3,0xea,0x50,0x0,0x0,0x0, - 0x0,0x3c,0x52,0x9a,0x40,0x0,0x0,0x0,0x0,0x58,0x1d,0xd7,0xd0,0x0,0x0,0x0, - 0x0,0x58,0x7a,0x20,0xd0,0x0,0x0,0x0,0x0,0x59,0xfd,0xb9,0xd0,0x0,0x0,0x0, - 0x0,0x5a,0x63,0x3d,0x50,0x0,0x0,0x0,0x0,0x5b,0xdd,0x9b,0xd0,0x0,0x0,0x0, - 0x0,0x5c,0x43,0x1f,0x50,0x0,0x0,0x0,0x0,0x5d,0xbd,0x7d,0xd0,0x0,0x0,0x0, - 0x0,0x5e,0x23,0x1,0x50,0x0,0x0,0x0,0x0,0x5f,0x9d,0x5f,0xd0,0x0,0x0,0x0, - 0x0,0x60,0x2,0xe3,0x50,0x0,0x0,0x0,0x0,0x61,0x86,0x7c,0x50,0x0,0x0,0x0, - 0x0,0x61,0xe2,0xc5,0x50,0x0,0x0,0x0,0x0,0x63,0x66,0x5e,0x50,0x0,0x0,0x0, - 0x0,0x63,0xc2,0xa7,0x50,0x0,0x0,0x0,0x0,0x65,0x46,0x40,0x50,0x0,0x0,0x0, - 0x0,0x65,0xab,0xc3,0xd0,0x0,0x0,0x0,0x0,0x67,0x26,0x22,0x50,0x0,0x0,0x0, - 0x0,0x67,0x8b,0xa5,0xd0,0x0,0x0,0x0,0x0,0x69,0x6,0x4,0x50,0x0,0x0,0x0, - 0x0,0x69,0x6b,0x87,0xd0,0x0,0x0,0x0,0x0,0x6a,0xe5,0xe6,0x50,0x0,0x0,0x0, - 0x0,0x6b,0x4b,0x69,0xd0,0x0,0x0,0x0,0x0,0x6c,0xcf,0x2,0xd0,0x0,0x0,0x0, - 0x0,0x6d,0x2b,0x4b,0xd0,0x0,0x0,0x0,0x0,0x6e,0xae,0xe4,0xd0,0x0,0x0,0x0, - 0x0,0x6f,0x14,0x68,0x50,0x0,0x0,0x0,0x0,0x70,0x8e,0xc6,0xd0,0x0,0x0,0x0, - 0x0,0x70,0xf4,0x4a,0x50,0x0,0x0,0x0,0x0,0x72,0x6e,0xa8,0xd0,0x0,0x0,0x0, - 0x0,0x72,0xd4,0x2c,0x50,0x0,0x0,0x0,0x0,0x74,0x4e,0x8a,0xd0,0x0,0x0,0x0, - 0x0,0x74,0xb4,0xe,0x50,0x0,0x0,0x0,0x0,0x76,0x37,0xa7,0x50,0x0,0x0,0x0, - 0x0,0x76,0x93,0xf0,0x50,0x0,0x0,0x0,0x0,0x78,0x17,0x89,0x50,0x0,0x0,0x0, - 0x0,0x78,0x73,0xd2,0x50,0x0,0x0,0x0,0x0,0x79,0xf7,0x6b,0x50,0x0,0x0,0x0, - 0x0,0x7a,0x5c,0xee,0xd0,0x0,0x0,0x0,0x0,0x7b,0xd7,0x4d,0x50,0x0,0x0,0x0, - 0x0,0x7c,0x3c,0xd0,0xd0,0x0,0x0,0x0,0x0,0x7d,0xb7,0x2f,0x50,0x0,0x0,0x0, - 0x0,0x7e,0x1c,0xb2,0xd0,0x0,0x0,0x0,0x0,0x7f,0x97,0x11,0x50,0x0,0x0,0x0, - 0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x2,0x3,0x4,0x5,0x2,0x5,0x2,0x5,0x2, - 0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2, - 0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2, - 0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x5,0x0,0x0,0xad,0x48,0x0,0x0, - 0x0,0x0,0xad,0x70,0x0,0x4,0x0,0x0,0xb6,0xd0,0x0,0xa,0x0,0x0,0xc4,0xe0, - 0x1,0xe,0x0,0x0,0xb6,0xd0,0x0,0xa,0x0,0x0,0xc4,0xe0,0x1,0xe,0x4c,0x4d, - 0x54,0x0,0x2b,0x31,0x32,0x32,0x30,0x0,0x2b,0x31,0x33,0x0,0x2b,0x31,0x34,0x0, - 0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2b,0x31, - 0x33,0x3e,0x2d,0x31,0x33,0x3c,0x2b,0x31,0x34,0x3e,0x2c,0x4d,0x31,0x31,0x2e,0x31, - 0x2e,0x30,0x2c,0x4d,0x31,0x2e,0x33,0x2e,0x30,0x2f,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Ponape - 0x0,0x0,0x0,0x99, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5,0x0,0x0,0x9a,0xb0,0x0, - 0x0,0x50,0x4f,0x4e,0x54,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2, - 0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2, - 0x0,0x0,0x0,0x9,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff, - 0x7e,0x36,0x20,0xac,0x0,0x1,0x0,0x0,0x94,0x54,0x0,0x0,0x0,0x0,0x9a,0xb0, - 0x0,0x4,0x4c,0x4d,0x54,0x0,0x50,0x4f,0x4e,0x54,0x0,0x0,0x0,0x0,0x0,0xa, - 0x50,0x4f,0x4e,0x54,0x2d,0x31,0x31,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Rarotonga - 0x0,0x0,0x2,0x3e, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x1b,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0xe,0x80,0x0,0x0,0x0,0x10, - 0xac,0x1b,0x28,0x11,0x3f,0xb5,0x18,0x12,0x79,0x81,0x20,0x13,0x1f,0x97,0x18,0x14, - 0x59,0x63,0x20,0x14,0xff,0x79,0x18,0x16,0x39,0x45,0x20,0x16,0xe8,0x95,0x98,0x18, - 0x22,0x61,0xa0,0x18,0xc8,0x77,0x98,0x1a,0x2,0x43,0xa0,0x1a,0xa8,0x59,0x98,0x1b, - 0xe2,0x25,0xa0,0x1c,0x88,0x3b,0x98,0x1d,0xc2,0x7,0xa0,0x1e,0x68,0x1d,0x98,0x1f, - 0xa1,0xe9,0xa0,0x20,0x47,0xff,0x98,0x21,0x81,0xcb,0xa0,0x22,0x31,0x1c,0x18,0x23, - 0x6a,0xe8,0x20,0x24,0x10,0xfe,0x18,0x25,0x4a,0xca,0x20,0x25,0xf0,0xe0,0x18,0x27, - 0x2a,0xac,0x20,0x27,0xd0,0xc2,0x18,0x1,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0xff,0xff,0x6a,0x38,0x0,0x0,0xff,0xff,0x6c,0x58,0x0,0x4,0xff,0xff, - 0x73,0x60,0x0,0x4,0xff,0xff,0x7a,0x68,0x1,0x8,0x4c,0x4d,0x54,0x0,0x43,0x4b, - 0x54,0x0,0x43,0x4b,0x48,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x1c,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0xe,0xf8,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x7e,0x37,0x4a,0xc8,0x0,0x0,0x0,0x0, - 0x10,0xac,0x1b,0x28,0x0,0x0,0x0,0x0,0x11,0x3f,0xb5,0x18,0x0,0x0,0x0,0x0, - 0x12,0x79,0x81,0x20,0x0,0x0,0x0,0x0,0x13,0x1f,0x97,0x18,0x0,0x0,0x0,0x0, - 0x14,0x59,0x63,0x20,0x0,0x0,0x0,0x0,0x14,0xff,0x79,0x18,0x0,0x0,0x0,0x0, - 0x16,0x39,0x45,0x20,0x0,0x0,0x0,0x0,0x16,0xe8,0x95,0x98,0x0,0x0,0x0,0x0, - 0x18,0x22,0x61,0xa0,0x0,0x0,0x0,0x0,0x18,0xc8,0x77,0x98,0x0,0x0,0x0,0x0, - 0x1a,0x2,0x43,0xa0,0x0,0x0,0x0,0x0,0x1a,0xa8,0x59,0x98,0x0,0x0,0x0,0x0, - 0x1b,0xe2,0x25,0xa0,0x0,0x0,0x0,0x0,0x1c,0x88,0x3b,0x98,0x0,0x0,0x0,0x0, - 0x1d,0xc2,0x7,0xa0,0x0,0x0,0x0,0x0,0x1e,0x68,0x1d,0x98,0x0,0x0,0x0,0x0, - 0x1f,0xa1,0xe9,0xa0,0x0,0x0,0x0,0x0,0x20,0x47,0xff,0x98,0x0,0x0,0x0,0x0, - 0x21,0x81,0xcb,0xa0,0x0,0x0,0x0,0x0,0x22,0x31,0x1c,0x18,0x0,0x0,0x0,0x0, - 0x23,0x6a,0xe8,0x20,0x0,0x0,0x0,0x0,0x24,0x10,0xfe,0x18,0x0,0x0,0x0,0x0, - 0x25,0x4a,0xca,0x20,0x0,0x0,0x0,0x0,0x25,0xf0,0xe0,0x18,0x0,0x0,0x0,0x0, - 0x27,0x2a,0xac,0x20,0x0,0x0,0x0,0x0,0x27,0xd0,0xc2,0x18,0x0,0x1,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0xff,0xff,0x6a,0x38,0x0,0x0,0xff,0xff, - 0x6c,0x58,0x0,0x4,0xff,0xff,0x73,0x60,0x0,0x4,0xff,0xff,0x7a,0x68,0x1,0x8, - 0x4c,0x4d,0x54,0x0,0x43,0x4b,0x54,0x0,0x43,0x4b,0x48,0x53,0x54,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x43,0x4b,0x54,0x31,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Port_Moresby - 0x0,0x0,0x0,0xac, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x0,0x0,0x8c,0xa0,0x0, - 0x0,0x50,0x47,0x54,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0, - 0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, - 0x0,0x0,0xd,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x56, - 0xb6,0x5a,0x8,0xff,0xff,0xff,0xff,0x72,0xed,0xa4,0x90,0x0,0x1,0x2,0x0,0x0, - 0x89,0xf8,0x0,0x0,0x0,0x0,0x89,0xf0,0x0,0x4,0x0,0x0,0x8c,0xa0,0x0,0x9, - 0x4c,0x4d,0x54,0x0,0x50,0x4d,0x4d,0x54,0x0,0x50,0x47,0x54,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0xa,0x50,0x47,0x54,0x2d,0x31,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Fiji - 0x0,0x0,0x4,0x31, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x3f,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0x9a, - 0x13,0xb1,0xc0,0x36,0x3b,0x17,0xe0,0x36,0xd7,0xfa,0x60,0x38,0x24,0x34,0x60,0x38, - 0xb7,0xdc,0x60,0x4b,0x11,0x2c,0xe0,0x4b,0xae,0xf,0x60,0x4c,0xc2,0xea,0x60,0x4d, - 0x72,0x41,0xe0,0x4e,0xa2,0xcc,0x60,0x4f,0x1a,0xc4,0xe0,0x50,0x82,0xae,0x60,0x50, - 0xfa,0xa6,0xe0,0x52,0x6b,0xca,0xe0,0x52,0xda,0x7a,0xd0,0x54,0x54,0xe7,0x60,0x54, - 0xba,0x6a,0xe0,0x56,0x34,0xc9,0x60,0x56,0x9a,0x4c,0xe0,0x58,0x1d,0xe5,0xe0,0x58, - 0x7a,0x2e,0xe0,0x59,0xfd,0xc7,0xe0,0x5a,0x63,0x4b,0x60,0x5b,0xdd,0xa9,0xe0,0x5c, - 0x43,0x2d,0x60,0x5d,0xbd,0x8b,0xe0,0x5e,0x23,0xf,0x60,0x5f,0x9d,0x6d,0xe0,0x60, - 0x2,0xf1,0x60,0x61,0x86,0x8a,0x60,0x61,0xe2,0xd3,0x60,0x63,0x66,0x6c,0x60,0x63, - 0xc2,0xb5,0x60,0x65,0x46,0x4e,0x60,0x65,0xab,0xd1,0xe0,0x67,0x26,0x30,0x60,0x67, - 0x8b,0xb3,0xe0,0x69,0x6,0x12,0x60,0x69,0x6b,0x95,0xe0,0x6a,0xe5,0xf4,0x60,0x6b, - 0x4b,0x77,0xe0,0x6c,0xcf,0x10,0xe0,0x6d,0x2b,0x59,0xe0,0x6e,0xae,0xf2,0xe0,0x6f, - 0x14,0x76,0x60,0x70,0x8e,0xd4,0xe0,0x70,0xf4,0x58,0x60,0x72,0x6e,0xb6,0xe0,0x72, - 0xd4,0x3a,0x60,0x74,0x4e,0x98,0xe0,0x74,0xb4,0x1c,0x60,0x76,0x37,0xb5,0x60,0x76, - 0x93,0xfe,0x60,0x78,0x17,0x97,0x60,0x78,0x73,0xe0,0x60,0x79,0xf7,0x79,0x60,0x7a, - 0x5c,0xfc,0xe0,0x7b,0xd7,0x5b,0x60,0x7c,0x3c,0xde,0xe0,0x7d,0xb7,0x3d,0x60,0x7e, - 0x1c,0xc0,0xe0,0x7f,0x97,0x1f,0x60,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x0,0x0,0xa7,0xc0,0x0,0x0,0x0,0x0,0xb6,0xd0, - 0x1,0x4,0x0,0x0,0xa8,0xc0,0x0,0x9,0x4c,0x4d,0x54,0x0,0x46,0x4a,0x53,0x54, - 0x0,0x46,0x4a,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3f,0x0, - 0x0,0x0,0x3,0x0,0x0,0x0,0xd,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff, - 0xff,0xff,0xff,0x9a,0x13,0xb1,0xc0,0x0,0x0,0x0,0x0,0x36,0x3b,0x17,0xe0,0x0, - 0x0,0x0,0x0,0x36,0xd7,0xfa,0x60,0x0,0x0,0x0,0x0,0x38,0x24,0x34,0x60,0x0, - 0x0,0x0,0x0,0x38,0xb7,0xdc,0x60,0x0,0x0,0x0,0x0,0x4b,0x11,0x2c,0xe0,0x0, - 0x0,0x0,0x0,0x4b,0xae,0xf,0x60,0x0,0x0,0x0,0x0,0x4c,0xc2,0xea,0x60,0x0, - 0x0,0x0,0x0,0x4d,0x72,0x41,0xe0,0x0,0x0,0x0,0x0,0x4e,0xa2,0xcc,0x60,0x0, - 0x0,0x0,0x0,0x4f,0x1a,0xc4,0xe0,0x0,0x0,0x0,0x0,0x50,0x82,0xae,0x60,0x0, - 0x0,0x0,0x0,0x50,0xfa,0xa6,0xe0,0x0,0x0,0x0,0x0,0x52,0x6b,0xca,0xe0,0x0, - 0x0,0x0,0x0,0x52,0xda,0x7a,0xd0,0x0,0x0,0x0,0x0,0x54,0x54,0xe7,0x60,0x0, - 0x0,0x0,0x0,0x54,0xba,0x6a,0xe0,0x0,0x0,0x0,0x0,0x56,0x34,0xc9,0x60,0x0, - 0x0,0x0,0x0,0x56,0x9a,0x4c,0xe0,0x0,0x0,0x0,0x0,0x58,0x1d,0xe5,0xe0,0x0, - 0x0,0x0,0x0,0x58,0x7a,0x2e,0xe0,0x0,0x0,0x0,0x0,0x59,0xfd,0xc7,0xe0,0x0, - 0x0,0x0,0x0,0x5a,0x63,0x4b,0x60,0x0,0x0,0x0,0x0,0x5b,0xdd,0xa9,0xe0,0x0, - 0x0,0x0,0x0,0x5c,0x43,0x2d,0x60,0x0,0x0,0x0,0x0,0x5d,0xbd,0x8b,0xe0,0x0, - 0x0,0x0,0x0,0x5e,0x23,0xf,0x60,0x0,0x0,0x0,0x0,0x5f,0x9d,0x6d,0xe0,0x0, - 0x0,0x0,0x0,0x60,0x2,0xf1,0x60,0x0,0x0,0x0,0x0,0x61,0x86,0x8a,0x60,0x0, - 0x0,0x0,0x0,0x61,0xe2,0xd3,0x60,0x0,0x0,0x0,0x0,0x63,0x66,0x6c,0x60,0x0, - 0x0,0x0,0x0,0x63,0xc2,0xb5,0x60,0x0,0x0,0x0,0x0,0x65,0x46,0x4e,0x60,0x0, - 0x0,0x0,0x0,0x65,0xab,0xd1,0xe0,0x0,0x0,0x0,0x0,0x67,0x26,0x30,0x60,0x0, - 0x0,0x0,0x0,0x67,0x8b,0xb3,0xe0,0x0,0x0,0x0,0x0,0x69,0x6,0x12,0x60,0x0, - 0x0,0x0,0x0,0x69,0x6b,0x95,0xe0,0x0,0x0,0x0,0x0,0x6a,0xe5,0xf4,0x60,0x0, - 0x0,0x0,0x0,0x6b,0x4b,0x77,0xe0,0x0,0x0,0x0,0x0,0x6c,0xcf,0x10,0xe0,0x0, - 0x0,0x0,0x0,0x6d,0x2b,0x59,0xe0,0x0,0x0,0x0,0x0,0x6e,0xae,0xf2,0xe0,0x0, - 0x0,0x0,0x0,0x6f,0x14,0x76,0x60,0x0,0x0,0x0,0x0,0x70,0x8e,0xd4,0xe0,0x0, - 0x0,0x0,0x0,0x70,0xf4,0x58,0x60,0x0,0x0,0x0,0x0,0x72,0x6e,0xb6,0xe0,0x0, - 0x0,0x0,0x0,0x72,0xd4,0x3a,0x60,0x0,0x0,0x0,0x0,0x74,0x4e,0x98,0xe0,0x0, - 0x0,0x0,0x0,0x74,0xb4,0x1c,0x60,0x0,0x0,0x0,0x0,0x76,0x37,0xb5,0x60,0x0, - 0x0,0x0,0x0,0x76,0x93,0xfe,0x60,0x0,0x0,0x0,0x0,0x78,0x17,0x97,0x60,0x0, - 0x0,0x0,0x0,0x78,0x73,0xe0,0x60,0x0,0x0,0x0,0x0,0x79,0xf7,0x79,0x60,0x0, - 0x0,0x0,0x0,0x7a,0x5c,0xfc,0xe0,0x0,0x0,0x0,0x0,0x7b,0xd7,0x5b,0x60,0x0, - 0x0,0x0,0x0,0x7c,0x3c,0xde,0xe0,0x0,0x0,0x0,0x0,0x7d,0xb7,0x3d,0x60,0x0, - 0x0,0x0,0x0,0x7e,0x1c,0xc0,0xe0,0x0,0x0,0x0,0x0,0x7f,0x97,0x1f,0x60,0x0, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x0,0x0, - 0xa7,0xc0,0x0,0x0,0x0,0x0,0xb6,0xd0,0x1,0x4,0x0,0x0,0xa8,0xc0,0x0,0x9, - 0x4c,0x4d,0x54,0x0,0x46,0x4a,0x53,0x54,0x0,0x46,0x4a,0x54,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0xa,0x46,0x4a,0x54,0x2d,0x31,0x32,0x46,0x4a,0x53,0x54,0x2c,0x4d, - 0x31,0x31,0x2e,0x31,0x2e,0x30,0x2c,0x4d,0x31,0x2e,0x33,0x2e,0x30,0x2f,0x33,0xa, - - // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Pago_Pago - 0x0,0x0,0x1,0x10, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x4,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x10,0x80,0x0,0x0,0x0,0x91, - 0x5,0xfb,0x8,0xfa,0xd2,0x55,0xb0,0x1a,0x2b,0x30,0x30,0x1,0x2,0x3,0x4,0x0, - 0x0,0xb1,0x78,0x0,0x0,0xff,0xff,0x5f,0xf8,0x0,0x0,0xff,0xff,0x65,0x50,0x0, - 0x4,0xff,0xff,0x65,0x50,0x0,0x8,0xff,0xff,0x65,0x50,0x0,0xc,0x4c,0x4d,0x54, - 0x0,0x4e,0x53,0x54,0x0,0x42,0x53,0x54,0x0,0x53,0x53,0x54,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0, - 0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0, - 0x0,0x0,0x10,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x55, - 0xc8,0xe4,0x88,0xff,0xff,0xff,0xff,0x91,0x5,0xfb,0x8,0xff,0xff,0xff,0xff,0xfa, - 0xd2,0x55,0xb0,0x0,0x0,0x0,0x0,0x1a,0x2b,0x30,0x30,0x0,0x1,0x2,0x3,0x4, - 0x0,0x0,0xb1,0x78,0x0,0x0,0xff,0xff,0x5f,0xf8,0x0,0x0,0xff,0xff,0x65,0x50, - 0x0,0x4,0xff,0xff,0x65,0x50,0x0,0x8,0xff,0xff,0x65,0x50,0x0,0xc,0x4c,0x4d, - 0x54,0x0,0x4e,0x53,0x54,0x0,0x42,0x53,0x54,0x0,0x53,0x53,0x54,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x53,0x53,0x54,0x31,0x31,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Palau - 0x0,0x0,0x0,0x95, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x0,0x0,0x7e,0x90,0x0, - 0x0,0x50,0x57,0x54,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0, - 0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x7e, - 0x36,0x36,0xec,0x0,0x1,0x0,0x0,0x7e,0x14,0x0,0x0,0x0,0x0,0x7e,0x90,0x0, - 0x4,0x4c,0x4d,0x54,0x0,0x50,0x57,0x54,0x0,0x0,0x0,0x0,0x0,0xa,0x50,0x57, - 0x54,0x2d,0x39,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Chuuk - 0x0,0x0,0x0,0x99, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5,0x0,0x0,0x8c,0xa0,0x0, - 0x0,0x43,0x48,0x55,0x54,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2, - 0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2, - 0x0,0x0,0x0,0x9,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff, - 0x7e,0x36,0x26,0xb4,0x0,0x1,0x0,0x0,0x8e,0x4c,0x0,0x0,0x0,0x0,0x8c,0xa0, - 0x0,0x4,0x4c,0x4d,0x54,0x0,0x43,0x48,0x55,0x54,0x0,0x0,0x0,0x0,0x0,0xa, - 0x43,0x48,0x55,0x54,0x2d,0x31,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Efate - 0x0,0x0,0x1,0xde, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x16,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0x92, - 0xf5,0xc2,0xb4,0x19,0xd2,0xf7,0xd0,0x1a,0xc2,0xda,0xc0,0x1b,0xda,0x66,0xd0,0x1c, - 0xa2,0xbc,0xc0,0x1d,0x9b,0xf6,0x50,0x1e,0x82,0x9e,0xc0,0x1f,0x7b,0xd8,0x50,0x20, - 0x6b,0xbb,0x40,0x21,0x5b,0xba,0x50,0x22,0x4b,0x9d,0x40,0x23,0x3b,0x9c,0x50,0x24, - 0x2b,0x7f,0x40,0x25,0x1b,0x7e,0x50,0x26,0xb,0x61,0x40,0x26,0xfb,0x60,0x50,0x27, - 0xeb,0x43,0x40,0x28,0xe4,0x7c,0xd0,0x29,0x81,0x51,0x40,0x2a,0xe9,0x48,0xd0,0x2b, - 0x61,0x33,0x40,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x0,0x0,0x9d,0xcc,0x0,0x0,0x0, - 0x0,0xa8,0xc0,0x1,0x4,0x0,0x0,0x9a,0xb0,0x0,0x9,0x4c,0x4d,0x54,0x0,0x56, - 0x55,0x53,0x54,0x0,0x56,0x55,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a, - 0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x16,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xd,0xf8,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xff,0xff,0xff,0xff,0x92,0xf5,0xc2,0xb4,0x0,0x0,0x0,0x0,0x19,0xd2, - 0xf7,0xd0,0x0,0x0,0x0,0x0,0x1a,0xc2,0xda,0xc0,0x0,0x0,0x0,0x0,0x1b,0xda, - 0x66,0xd0,0x0,0x0,0x0,0x0,0x1c,0xa2,0xbc,0xc0,0x0,0x0,0x0,0x0,0x1d,0x9b, - 0xf6,0x50,0x0,0x0,0x0,0x0,0x1e,0x82,0x9e,0xc0,0x0,0x0,0x0,0x0,0x1f,0x7b, - 0xd8,0x50,0x0,0x0,0x0,0x0,0x20,0x6b,0xbb,0x40,0x0,0x0,0x0,0x0,0x21,0x5b, - 0xba,0x50,0x0,0x0,0x0,0x0,0x22,0x4b,0x9d,0x40,0x0,0x0,0x0,0x0,0x23,0x3b, - 0x9c,0x50,0x0,0x0,0x0,0x0,0x24,0x2b,0x7f,0x40,0x0,0x0,0x0,0x0,0x25,0x1b, - 0x7e,0x50,0x0,0x0,0x0,0x0,0x26,0xb,0x61,0x40,0x0,0x0,0x0,0x0,0x26,0xfb, - 0x60,0x50,0x0,0x0,0x0,0x0,0x27,0xeb,0x43,0x40,0x0,0x0,0x0,0x0,0x28,0xe4, - 0x7c,0xd0,0x0,0x0,0x0,0x0,0x29,0x81,0x51,0x40,0x0,0x0,0x0,0x0,0x2a,0xe9, - 0x48,0xd0,0x0,0x0,0x0,0x0,0x2b,0x61,0x33,0x40,0x0,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x0,0x0,0x9d,0xcc,0x0,0x0,0x0,0x0,0xa8,0xc0,0x1,0x4,0x0,0x0,0x9a,0xb0, - 0x0,0x9,0x4c,0x4d,0x54,0x0,0x56,0x55,0x53,0x54,0x0,0x56,0x55,0x54,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0xa,0x56,0x55,0x54,0x2d,0x31,0x31,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Enderbury - 0x0,0x0,0x0,0xe6, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x3,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x9,0x80,0x0,0x0,0x0,0x12, - 0x56,0x4,0xc0,0x2f,0x6,0x8b,0x30,0x1,0x2,0x3,0xff,0xff,0x5f,0x9c,0x0,0x0, - 0xff,0xff,0x57,0x40,0x0,0x4,0xff,0xff,0x65,0x50,0x0,0x4,0x0,0x0,0xb6,0xd0, - 0x0,0x4,0x4c,0x4d,0x54,0x0,0x50,0x48,0x4f,0x54,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x9,0xf8, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x7e,0x37,0x55,0x64,0x0, - 0x0,0x0,0x0,0x12,0x56,0x4,0xc0,0x0,0x0,0x0,0x0,0x2f,0x6,0x8b,0x30,0x0, - 0x1,0x2,0x3,0xff,0xff,0x5f,0x9c,0x0,0x0,0xff,0xff,0x57,0x40,0x0,0x4,0xff, - 0xff,0x65,0x50,0x0,0x4,0x0,0x0,0xb6,0xd0,0x0,0x4,0x4c,0x4d,0x54,0x0,0x50, - 0x48,0x4f,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x50,0x48,0x4f, - 0x54,0x2d,0x31,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Honolulu - 0x0,0x0,0x1,0x14, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0xbb, - 0x5,0x43,0x48,0xbb,0x21,0x71,0x58,0xcb,0x89,0x3d,0xc8,0xd2,0x61,0x49,0x38,0xd5, - 0x8d,0x73,0x48,0x1,0x2,0x1,0x2,0x1,0x3,0xff,0xff,0x6c,0x2,0x0,0x0,0xff, - 0xff,0x6c,0x58,0x0,0x4,0xff,0xff,0x7a,0x68,0x1,0x8,0xff,0xff,0x73,0x60,0x0, - 0x4,0x4c,0x4d,0x54,0x0,0x48,0x53,0x54,0x0,0x48,0x44,0x54,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0, - 0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x4,0x0,0x0,0x0, - 0xc,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x74,0xe0,0x70, - 0xbe,0xff,0xff,0xff,0xff,0xbb,0x5,0x43,0x48,0xff,0xff,0xff,0xff,0xbb,0x21,0x71, - 0x58,0xff,0xff,0xff,0xff,0xcb,0x89,0x3d,0xc8,0xff,0xff,0xff,0xff,0xd2,0x61,0x49, - 0x38,0xff,0xff,0xff,0xff,0xd5,0x8d,0x73,0x48,0x0,0x1,0x2,0x1,0x2,0x1,0x3, - 0xff,0xff,0x6c,0x2,0x0,0x0,0xff,0xff,0x6c,0x58,0x0,0x4,0xff,0xff,0x7a,0x68, - 0x1,0x8,0xff,0xff,0x73,0x60,0x0,0x4,0x4c,0x4d,0x54,0x0,0x48,0x53,0x54,0x0, - 0x48,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x48,0x53,0x54, - 0x31,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Niue - 0x0,0x0,0x0,0xe2, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x3,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0xdc, - 0x43,0x35,0x60,0x10,0x74,0xca,0x38,0x1,0x2,0x3,0xff,0xff,0x60,0xb4,0x0,0x0, - 0xff,0xff,0x60,0xa0,0x0,0x4,0xff,0xff,0x5e,0x48,0x0,0x4,0xff,0xff,0x65,0x50, - 0x0,0x4,0x4c,0x4d,0x54,0x0,0x4e,0x55,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x8,0xf8,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x7e,0x37,0x54,0x4c,0xff,0xff, - 0xff,0xff,0xdc,0x43,0x35,0x60,0x0,0x0,0x0,0x0,0x10,0x74,0xca,0x38,0x0,0x1, - 0x2,0x3,0xff,0xff,0x60,0xb4,0x0,0x0,0xff,0xff,0x60,0xa0,0x0,0x4,0xff,0xff, - 0x5e,0x48,0x0,0x4,0xff,0xff,0x65,0x50,0x0,0x4,0x4c,0x4d,0x54,0x0,0x4e,0x55, - 0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x4e,0x55,0x54,0x31,0x31, - 0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Nauru - 0x0,0x0,0x0,0xfe, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x5,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0xa3, - 0xe7,0x2b,0x4,0xcb,0xb4,0xbf,0x48,0xd0,0x42,0x50,0x70,0x11,0x8b,0x4,0xc8,0x0, - 0x1,0x2,0x1,0x3,0x0,0x0,0x9c,0x7c,0x0,0x0,0x0,0x0,0xa1,0xb8,0x0,0x4, - 0x0,0x0,0x7e,0x90,0x0,0x8,0x0,0x0,0xa8,0xc0,0x0,0x4,0x4c,0x4d,0x54,0x0, - 0x4e,0x52,0x54,0x0,0x4a,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0xc,0xf8,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xa3,0xe7,0x2b,0x4,0xff,0xff,0xff,0xff, - 0xcb,0xb4,0xbf,0x48,0xff,0xff,0xff,0xff,0xd0,0x42,0x50,0x70,0x0,0x0,0x0,0x0, - 0x11,0x8b,0x4,0xc8,0x0,0x1,0x2,0x1,0x3,0x0,0x0,0x9c,0x7c,0x0,0x0,0x0, - 0x0,0xa1,0xb8,0x0,0x4,0x0,0x0,0x7e,0x90,0x0,0x8,0x0,0x0,0xa8,0xc0,0x0, - 0x4,0x4c,0x4d,0x54,0x0,0x4e,0x52,0x54,0x0,0x4a,0x53,0x54,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0xa,0x4e,0x52,0x54,0x2d,0x31,0x32,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Tarawa - 0x0,0x0,0x0,0x99, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5,0x0,0x0,0xa8,0xc0,0x0, - 0x0,0x47,0x49,0x4c,0x54,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2, - 0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2, - 0x0,0x0,0x0,0x9,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff, - 0x7e,0x36,0x12,0xcc,0x0,0x1,0x0,0x0,0xa2,0x34,0x0,0x0,0x0,0x0,0xa8,0xc0, - 0x0,0x4,0x4c,0x4d,0x54,0x0,0x47,0x49,0x4c,0x54,0x0,0x0,0x0,0x0,0x0,0xa, - 0x47,0x49,0x4c,0x54,0x2d,0x31,0x32,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Truk - 0x0,0x0,0x0,0x99, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x5,0x0,0x0,0x8c,0xa0,0x0, - 0x0,0x43,0x48,0x55,0x54,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2, - 0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2, - 0x0,0x0,0x0,0x9,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff, - 0x7e,0x36,0x26,0xb4,0x0,0x1,0x0,0x0,0x8e,0x4c,0x0,0x0,0x0,0x0,0x8c,0xa0, - 0x0,0x4,0x4c,0x4d,0x54,0x0,0x43,0x48,0x55,0x54,0x0,0x0,0x0,0x0,0x0,0xa, - 0x43,0x48,0x55,0x54,0x2d,0x31,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Wallis - 0x0,0x0,0x0,0x96, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x0,0x0,0xa8,0xc0,0x0, - 0x0,0x57,0x46,0x54,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0, - 0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x7e, - 0x36,0x8,0xa8,0x0,0x1,0x0,0x0,0xac,0x58,0x0,0x0,0x0,0x0,0xa8,0xc0,0x0, - 0x4,0x4c,0x4d,0x54,0x0,0x57,0x46,0x54,0x0,0x0,0x0,0x0,0x0,0xa,0x57,0x46, - 0x54,0x2d,0x31,0x32,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Chatham - 0x0,0x0,0x8,0x9, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x0,0x0,0x11,0xe4,0x0,0x0,0x0,0x0, + 0x1c,0x20,0x1,0x4,0x0,0x0,0xe,0x10,0x0,0x9,0x0,0x0,0x1c,0x20,0x1,0x4, + 0x0,0x0,0xe,0x10,0x0,0x9,0x0,0x0,0xe,0x10,0x0,0x9,0x0,0x0,0x1c,0x20, + 0x1,0x4,0x4c,0x4d,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x43,0x45,0x54,0x0,0x0, + 0x0,0x0,0x1,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x54,0x5a,0x69, + 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x9a,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0xd,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0x6a,0xee,0xb3,0x1c,0xff,0xff,0xff,0xff,0x9b,0xc,0x17, + 0x60,0xff,0xff,0xff,0xff,0x9b,0xd5,0xda,0xf0,0xff,0xff,0xff,0xff,0x9c,0xd9,0xae, + 0x90,0xff,0xff,0xff,0xff,0x9d,0xa4,0xb5,0x90,0xff,0xff,0xff,0xff,0x9e,0x30,0x58, + 0x70,0xff,0xff,0xff,0xff,0x9e,0xa7,0x29,0xa0,0xff,0xff,0xff,0xff,0x9f,0x84,0x97, + 0x90,0xff,0xff,0xff,0xff,0xa0,0x9a,0xd2,0x20,0xff,0xff,0xff,0xff,0xa1,0xc0,0xc2, + 0x90,0xff,0xff,0xff,0xff,0xc9,0xf3,0xc3,0x70,0xff,0xff,0xff,0xff,0xcc,0xe7,0x4b, + 0x10,0xff,0xff,0xff,0xff,0xcd,0xa9,0x17,0x90,0xff,0xff,0xff,0xff,0xce,0xa2,0x43, + 0x10,0xff,0xff,0xff,0xff,0xcf,0x92,0x34,0x10,0xff,0xff,0xff,0xff,0xd0,0x82,0x25, + 0x10,0xff,0xff,0xff,0xff,0xd0,0xfa,0x1,0x70,0xff,0xff,0xff,0xff,0xd1,0x99,0x78, + 0xe0,0xff,0xff,0xff,0xff,0xd2,0x8a,0xbb,0x60,0xff,0xff,0xff,0xff,0xd3,0x50,0xa6, + 0x90,0xff,0xff,0xff,0xff,0xd4,0x49,0xd2,0x10,0xff,0xff,0xff,0xff,0xd5,0x39,0xc3, + 0x10,0xff,0xff,0xff,0xff,0xd6,0x29,0xb4,0x10,0xff,0xff,0xff,0xff,0xd7,0x19,0xa5, + 0x10,0xff,0xff,0xff,0xff,0xd8,0x9,0x96,0x10,0xff,0xff,0xff,0xff,0xd9,0x2,0xc1, + 0x90,0xff,0xff,0xff,0xff,0xd9,0xe9,0x78,0x10,0xff,0xff,0xff,0xff,0xda,0xed,0x2f, + 0x90,0xff,0xff,0xff,0xff,0xdb,0xe6,0x5b,0x10,0xff,0xff,0xff,0xff,0xe2,0xa2,0xa8, + 0xf0,0xff,0xff,0xff,0xff,0xe3,0x51,0xf2,0x60,0xff,0xff,0xff,0xff,0xe4,0x83,0xdc, + 0x70,0xff,0xff,0xff,0xff,0xe5,0x33,0x25,0xe0,0xff,0xff,0xff,0xff,0xe6,0x74,0xe1, + 0xf0,0xff,0xff,0xff,0xff,0xe7,0x11,0xb6,0x60,0xff,0xff,0xff,0xff,0xe8,0x54,0xd2, + 0x0,0xff,0xff,0xff,0xff,0xe8,0xf1,0xc2,0x90,0x0,0x0,0x0,0x0,0x13,0x4d,0x36, + 0x0,0x0,0x0,0x0,0x0,0x14,0x33,0xfa,0x90,0x0,0x0,0x0,0x0,0x15,0x23,0xeb, + 0x90,0x0,0x0,0x0,0x0,0x16,0x13,0xdc,0x90,0x0,0x0,0x0,0x0,0x17,0x3,0xcd, + 0x90,0x0,0x0,0x0,0x0,0x17,0xf3,0xbe,0x90,0x0,0x0,0x0,0x0,0x18,0xe3,0xaf, + 0x90,0x0,0x0,0x0,0x0,0x19,0xd3,0xa0,0x90,0x0,0x0,0x0,0x0,0x1a,0xc3,0x91, + 0x90,0x0,0x0,0x0,0x0,0x1b,0xbc,0xbd,0x10,0x0,0x0,0x0,0x0,0x1c,0xac,0xae, + 0x10,0x0,0x0,0x0,0x0,0x1d,0x9c,0x9f,0x10,0x0,0x0,0x0,0x0,0x1e,0x8c,0x90, + 0x10,0x0,0x0,0x0,0x0,0x1f,0x7c,0x81,0x10,0x0,0x0,0x0,0x0,0x20,0x6c,0x72, + 0x10,0x0,0x0,0x0,0x0,0x21,0x5c,0x63,0x10,0x0,0x0,0x0,0x0,0x22,0x4c,0x54, + 0x10,0x0,0x0,0x0,0x0,0x23,0x3c,0x45,0x10,0x0,0x0,0x0,0x0,0x24,0x2c,0x36, + 0x10,0x0,0x0,0x0,0x0,0x25,0x1c,0x27,0x10,0x0,0x0,0x0,0x0,0x26,0xc,0x18, + 0x10,0x0,0x0,0x0,0x0,0x27,0x5,0x43,0x90,0x0,0x0,0x0,0x0,0x27,0xf5,0x34, + 0x90,0x0,0x0,0x0,0x0,0x28,0xe5,0x25,0x90,0x0,0x0,0x0,0x0,0x29,0xd5,0x16, + 0x90,0x0,0x0,0x0,0x0,0x2a,0xc5,0x7,0x90,0x0,0x0,0x0,0x0,0x2b,0xb4,0xf8, + 0x90,0x0,0x0,0x0,0x0,0x2c,0xa4,0xe9,0x90,0x0,0x0,0x0,0x0,0x2d,0x94,0xda, + 0x90,0x0,0x0,0x0,0x0,0x2e,0x84,0xcb,0x90,0x0,0x0,0x0,0x0,0x2f,0x74,0xbc, + 0x90,0x0,0x0,0x0,0x0,0x30,0x64,0xad,0x90,0x0,0x0,0x0,0x0,0x31,0x5d,0xd9, + 0x10,0x0,0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d,0xbb, + 0x10,0x0,0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d,0x9d, + 0x10,0x0,0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd,0x7f, + 0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd,0x61, + 0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd,0x43, + 0x10,0x0,0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f, + 0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86,0x41, + 0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66,0x23, + 0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46,0x5, + 0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25,0xe7, + 0x90,0x0,0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5,0xc9, + 0x90,0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee,0xe6, + 0x10,0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce,0xc8, + 0x10,0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae,0xaa, + 0x10,0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c, + 0x10,0x0,0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e, + 0x10,0x0,0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57,0x8a, + 0x90,0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37,0x6c, + 0x90,0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17,0x4e, + 0x90,0x0,0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7,0x30, + 0x90,0x0,0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7,0x12, + 0x90,0x0,0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4, + 0x90,0x0,0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0,0x11, + 0x10,0x0,0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3, + 0x10,0x0,0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f,0xd5, + 0x10,0x0,0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f,0xb7, + 0x10,0x0,0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f,0x99, + 0x10,0x0,0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8,0xb5, + 0x90,0x0,0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8,0x97, + 0x90,0x0,0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8,0x79, + 0x90,0x0,0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b, + 0x90,0x0,0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88,0x3d, + 0x90,0x0,0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68,0x1f, + 0x90,0x0,0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51,0x3c, + 0x10,0x0,0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31,0x1e, + 0x10,0x0,0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11,0x0, + 0x10,0x0,0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0,0xe2, + 0x10,0x0,0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0,0xc4, + 0x10,0x0,0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6, + 0x10,0x0,0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99,0xc2, + 0x90,0x0,0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79,0xa4, + 0x90,0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x2,0x1,0x2,0x3,0x4,0x2, + 0x1,0x2,0x1,0x2,0x1,0x4,0x3,0x4,0x3,0x4,0x2,0x1,0x2,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x0,0x0,0x11,0xe4,0x0,0x0,0x0,0x0,0x1c,0x20,0x1,0x4,0x0, + 0x0,0xe,0x10,0x0,0x9,0x0,0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe,0x10,0x0, + 0x9,0x0,0x0,0xe,0x10,0x0,0x9,0x0,0x0,0x1c,0x20,0x1,0x4,0x4c,0x4d,0x54, + 0x0,0x43,0x45,0x53,0x54,0x0,0x43,0x45,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x1, + 0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0xa,0x43,0x45,0x54,0x2d,0x31,0x43,0x45, + 0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e, + 0x30,0x2f,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Kiev + 0x0,0x0,0x8,0x31, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x81,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x10,0x80,0x0,0x0,0x0,0xd2, - 0xda,0x96,0xbc,0x9,0x18,0xfd,0xe0,0x9,0xac,0xa5,0xe0,0xa,0xef,0xa5,0x60,0xb, - 0x9e,0xfc,0xe0,0xc,0xd8,0xc1,0xe0,0xd,0x7e,0xde,0xe0,0xe,0xb8,0xa3,0xe0,0xf, - 0x5e,0xc0,0xe0,0x10,0x98,0x85,0xe0,0x11,0x3e,0xa2,0xe0,0x12,0x78,0x67,0xe0,0x13, - 0x1e,0x84,0xe0,0x14,0x58,0x49,0xe0,0x14,0xfe,0x66,0xe0,0x16,0x38,0x2b,0xe0,0x16, - 0xe7,0x83,0x60,0x18,0x21,0x48,0x60,0x18,0xc7,0x65,0x60,0x1a,0x1,0x2a,0x60,0x1a, - 0xa7,0x47,0x60,0x1b,0xe1,0xc,0x60,0x1c,0x87,0x29,0x60,0x1d,0xc0,0xee,0x60,0x1e, - 0x67,0xb,0x60,0x1f,0xa0,0xd0,0x60,0x20,0x46,0xed,0x60,0x21,0x80,0xb2,0x60,0x22, - 0x30,0x9,0xe0,0x23,0x69,0xce,0xe0,0x24,0xf,0xeb,0xe0,0x25,0x2e,0x1,0x60,0x26, - 0x2,0x42,0xe0,0x27,0xd,0xe3,0x60,0x27,0xe2,0x24,0xe0,0x28,0xed,0xc5,0x60,0x29, - 0xc2,0x6,0xe0,0x2a,0xcd,0xa7,0x60,0x2b,0xab,0x23,0x60,0x2c,0xad,0x89,0x60,0x2d, - 0x8b,0x5,0x60,0x2e,0x8d,0x6b,0x60,0x2f,0x6a,0xe7,0x60,0x30,0x6d,0x4d,0x60,0x31, - 0x4a,0xc9,0x60,0x32,0x56,0x69,0xe0,0x33,0x2a,0xab,0x60,0x34,0x36,0x4b,0xe0,0x35, - 0xa,0x8d,0x60,0x36,0x16,0x2d,0xe0,0x36,0xf3,0xa9,0xe0,0x37,0xf6,0xf,0xe0,0x38, - 0xd3,0x8b,0xe0,0x39,0xd5,0xf1,0xe0,0x3a,0xb3,0x6d,0xe0,0x3b,0xbf,0xe,0x60,0x3c, - 0x93,0x4f,0xe0,0x3d,0x9e,0xf0,0x60,0x3e,0x73,0x31,0xe0,0x3f,0x7e,0xd2,0x60,0x40, - 0x5c,0x4e,0x60,0x41,0x5e,0xb4,0x60,0x42,0x3c,0x30,0x60,0x43,0x3e,0x96,0x60,0x44, - 0x1c,0x12,0x60,0x45,0x1e,0x78,0x60,0x45,0xfb,0xf4,0x60,0x46,0xfe,0x5a,0x60,0x47, - 0xf7,0x85,0xe0,0x48,0xde,0x3c,0x60,0x49,0xd7,0x67,0xe0,0x4a,0xbe,0x1e,0x60,0x4b, - 0xb7,0x49,0xe0,0x4c,0x9e,0x0,0x60,0x4d,0x97,0x2b,0xe0,0x4e,0x7d,0xe2,0x60,0x4f, - 0x77,0xd,0xe0,0x50,0x66,0xfe,0xe0,0x51,0x60,0x2a,0x60,0x52,0x46,0xe0,0xe0,0x53, - 0x40,0xc,0x60,0x54,0x26,0xc2,0xe0,0x55,0x1f,0xee,0x60,0x56,0x6,0xa4,0xe0,0x56, - 0xff,0xd0,0x60,0x57,0xe6,0x86,0xe0,0x58,0xdf,0xb2,0x60,0x59,0xc6,0x68,0xe0,0x5a, - 0xbf,0x94,0x60,0x5b,0xaf,0x85,0x60,0x5c,0xa8,0xb0,0xe0,0x5d,0x8f,0x67,0x60,0x5e, - 0x88,0x92,0xe0,0x5f,0x6f,0x49,0x60,0x60,0x68,0x74,0xe0,0x61,0x4f,0x2b,0x60,0x62, - 0x48,0x56,0xe0,0x63,0x2f,0xd,0x60,0x64,0x28,0x38,0xe0,0x65,0xe,0xef,0x60,0x66, - 0x11,0x55,0x60,0x66,0xf8,0xb,0xe0,0x67,0xf1,0x37,0x60,0x68,0xd7,0xed,0xe0,0x69, - 0xd1,0x19,0x60,0x6a,0xb7,0xcf,0xe0,0x6b,0xb0,0xfb,0x60,0x6c,0x97,0xb1,0xe0,0x6d, - 0x90,0xdd,0x60,0x6e,0x77,0x93,0xe0,0x6f,0x70,0xbf,0x60,0x70,0x60,0xb0,0x60,0x71, - 0x59,0xdb,0xe0,0x72,0x40,0x92,0x60,0x73,0x39,0xbd,0xe0,0x74,0x20,0x74,0x60,0x75, - 0x19,0x9f,0xe0,0x76,0x0,0x56,0x60,0x76,0xf9,0x81,0xe0,0x77,0xe0,0x38,0x60,0x78, - 0xd9,0x63,0xe0,0x79,0xc0,0x1a,0x60,0x7a,0xb9,0x45,0xe0,0x7b,0xa9,0x36,0xe0,0x7c, - 0xa2,0x62,0x60,0x7d,0x89,0x18,0xe0,0x7e,0x82,0x44,0x60,0x7f,0x68,0xfa,0xe0,0x1, - 0x4,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x0,0x0,0xab,0xfc,0x0,0x0,0x0,0x0,0xac,0x44,0x0,0x4,0x0,0x0,0xc1,0x5c, - 0x1,0xa,0x0,0x0,0xb3,0x4c,0x0,0x4,0x0,0x0,0xb3,0x4c,0x0,0x4,0x4c,0x4d, - 0x54,0x0,0x43,0x48,0x41,0x53,0x54,0x0,0x43,0x48,0x41,0x44,0x54,0x0,0x0,0x0, - 0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5, - 0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x82,0x0,0x0,0x0,0x5, - 0x0,0x0,0x0,0x10,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff, - 0x41,0xb7,0x44,0x84,0xff,0xff,0xff,0xff,0xd2,0xda,0x96,0xbc,0x0,0x0,0x0,0x0, - 0x9,0x18,0xfd,0xe0,0x0,0x0,0x0,0x0,0x9,0xac,0xa5,0xe0,0x0,0x0,0x0,0x0, - 0xa,0xef,0xa5,0x60,0x0,0x0,0x0,0x0,0xb,0x9e,0xfc,0xe0,0x0,0x0,0x0,0x0, - 0xc,0xd8,0xc1,0xe0,0x0,0x0,0x0,0x0,0xd,0x7e,0xde,0xe0,0x0,0x0,0x0,0x0, - 0xe,0xb8,0xa3,0xe0,0x0,0x0,0x0,0x0,0xf,0x5e,0xc0,0xe0,0x0,0x0,0x0,0x0, - 0x10,0x98,0x85,0xe0,0x0,0x0,0x0,0x0,0x11,0x3e,0xa2,0xe0,0x0,0x0,0x0,0x0, - 0x12,0x78,0x67,0xe0,0x0,0x0,0x0,0x0,0x13,0x1e,0x84,0xe0,0x0,0x0,0x0,0x0, - 0x14,0x58,0x49,0xe0,0x0,0x0,0x0,0x0,0x14,0xfe,0x66,0xe0,0x0,0x0,0x0,0x0, - 0x16,0x38,0x2b,0xe0,0x0,0x0,0x0,0x0,0x16,0xe7,0x83,0x60,0x0,0x0,0x0,0x0, - 0x18,0x21,0x48,0x60,0x0,0x0,0x0,0x0,0x18,0xc7,0x65,0x60,0x0,0x0,0x0,0x0, - 0x1a,0x1,0x2a,0x60,0x0,0x0,0x0,0x0,0x1a,0xa7,0x47,0x60,0x0,0x0,0x0,0x0, - 0x1b,0xe1,0xc,0x60,0x0,0x0,0x0,0x0,0x1c,0x87,0x29,0x60,0x0,0x0,0x0,0x0, - 0x1d,0xc0,0xee,0x60,0x0,0x0,0x0,0x0,0x1e,0x67,0xb,0x60,0x0,0x0,0x0,0x0, - 0x1f,0xa0,0xd0,0x60,0x0,0x0,0x0,0x0,0x20,0x46,0xed,0x60,0x0,0x0,0x0,0x0, - 0x21,0x80,0xb2,0x60,0x0,0x0,0x0,0x0,0x22,0x30,0x9,0xe0,0x0,0x0,0x0,0x0, - 0x23,0x69,0xce,0xe0,0x0,0x0,0x0,0x0,0x24,0xf,0xeb,0xe0,0x0,0x0,0x0,0x0, - 0x25,0x2e,0x1,0x60,0x0,0x0,0x0,0x0,0x26,0x2,0x42,0xe0,0x0,0x0,0x0,0x0, - 0x27,0xd,0xe3,0x60,0x0,0x0,0x0,0x0,0x27,0xe2,0x24,0xe0,0x0,0x0,0x0,0x0, - 0x28,0xed,0xc5,0x60,0x0,0x0,0x0,0x0,0x29,0xc2,0x6,0xe0,0x0,0x0,0x0,0x0, - 0x2a,0xcd,0xa7,0x60,0x0,0x0,0x0,0x0,0x2b,0xab,0x23,0x60,0x0,0x0,0x0,0x0, - 0x2c,0xad,0x89,0x60,0x0,0x0,0x0,0x0,0x2d,0x8b,0x5,0x60,0x0,0x0,0x0,0x0, - 0x2e,0x8d,0x6b,0x60,0x0,0x0,0x0,0x0,0x2f,0x6a,0xe7,0x60,0x0,0x0,0x0,0x0, - 0x30,0x6d,0x4d,0x60,0x0,0x0,0x0,0x0,0x31,0x4a,0xc9,0x60,0x0,0x0,0x0,0x0, - 0x32,0x56,0x69,0xe0,0x0,0x0,0x0,0x0,0x33,0x2a,0xab,0x60,0x0,0x0,0x0,0x0, - 0x34,0x36,0x4b,0xe0,0x0,0x0,0x0,0x0,0x35,0xa,0x8d,0x60,0x0,0x0,0x0,0x0, - 0x36,0x16,0x2d,0xe0,0x0,0x0,0x0,0x0,0x36,0xf3,0xa9,0xe0,0x0,0x0,0x0,0x0, - 0x37,0xf6,0xf,0xe0,0x0,0x0,0x0,0x0,0x38,0xd3,0x8b,0xe0,0x0,0x0,0x0,0x0, - 0x39,0xd5,0xf1,0xe0,0x0,0x0,0x0,0x0,0x3a,0xb3,0x6d,0xe0,0x0,0x0,0x0,0x0, - 0x3b,0xbf,0xe,0x60,0x0,0x0,0x0,0x0,0x3c,0x93,0x4f,0xe0,0x0,0x0,0x0,0x0, - 0x3d,0x9e,0xf0,0x60,0x0,0x0,0x0,0x0,0x3e,0x73,0x31,0xe0,0x0,0x0,0x0,0x0, - 0x3f,0x7e,0xd2,0x60,0x0,0x0,0x0,0x0,0x40,0x5c,0x4e,0x60,0x0,0x0,0x0,0x0, - 0x41,0x5e,0xb4,0x60,0x0,0x0,0x0,0x0,0x42,0x3c,0x30,0x60,0x0,0x0,0x0,0x0, - 0x43,0x3e,0x96,0x60,0x0,0x0,0x0,0x0,0x44,0x1c,0x12,0x60,0x0,0x0,0x0,0x0, - 0x45,0x1e,0x78,0x60,0x0,0x0,0x0,0x0,0x45,0xfb,0xf4,0x60,0x0,0x0,0x0,0x0, - 0x46,0xfe,0x5a,0x60,0x0,0x0,0x0,0x0,0x47,0xf7,0x85,0xe0,0x0,0x0,0x0,0x0, - 0x48,0xde,0x3c,0x60,0x0,0x0,0x0,0x0,0x49,0xd7,0x67,0xe0,0x0,0x0,0x0,0x0, - 0x4a,0xbe,0x1e,0x60,0x0,0x0,0x0,0x0,0x4b,0xb7,0x49,0xe0,0x0,0x0,0x0,0x0, - 0x4c,0x9e,0x0,0x60,0x0,0x0,0x0,0x0,0x4d,0x97,0x2b,0xe0,0x0,0x0,0x0,0x0, - 0x4e,0x7d,0xe2,0x60,0x0,0x0,0x0,0x0,0x4f,0x77,0xd,0xe0,0x0,0x0,0x0,0x0, - 0x50,0x66,0xfe,0xe0,0x0,0x0,0x0,0x0,0x51,0x60,0x2a,0x60,0x0,0x0,0x0,0x0, - 0x52,0x46,0xe0,0xe0,0x0,0x0,0x0,0x0,0x53,0x40,0xc,0x60,0x0,0x0,0x0,0x0, - 0x54,0x26,0xc2,0xe0,0x0,0x0,0x0,0x0,0x55,0x1f,0xee,0x60,0x0,0x0,0x0,0x0, - 0x56,0x6,0xa4,0xe0,0x0,0x0,0x0,0x0,0x56,0xff,0xd0,0x60,0x0,0x0,0x0,0x0, - 0x57,0xe6,0x86,0xe0,0x0,0x0,0x0,0x0,0x58,0xdf,0xb2,0x60,0x0,0x0,0x0,0x0, - 0x59,0xc6,0x68,0xe0,0x0,0x0,0x0,0x0,0x5a,0xbf,0x94,0x60,0x0,0x0,0x0,0x0, - 0x5b,0xaf,0x85,0x60,0x0,0x0,0x0,0x0,0x5c,0xa8,0xb0,0xe0,0x0,0x0,0x0,0x0, - 0x5d,0x8f,0x67,0x60,0x0,0x0,0x0,0x0,0x5e,0x88,0x92,0xe0,0x0,0x0,0x0,0x0, - 0x5f,0x6f,0x49,0x60,0x0,0x0,0x0,0x0,0x60,0x68,0x74,0xe0,0x0,0x0,0x0,0x0, - 0x61,0x4f,0x2b,0x60,0x0,0x0,0x0,0x0,0x62,0x48,0x56,0xe0,0x0,0x0,0x0,0x0, - 0x63,0x2f,0xd,0x60,0x0,0x0,0x0,0x0,0x64,0x28,0x38,0xe0,0x0,0x0,0x0,0x0, - 0x65,0xe,0xef,0x60,0x0,0x0,0x0,0x0,0x66,0x11,0x55,0x60,0x0,0x0,0x0,0x0, - 0x66,0xf8,0xb,0xe0,0x0,0x0,0x0,0x0,0x67,0xf1,0x37,0x60,0x0,0x0,0x0,0x0, - 0x68,0xd7,0xed,0xe0,0x0,0x0,0x0,0x0,0x69,0xd1,0x19,0x60,0x0,0x0,0x0,0x0, - 0x6a,0xb7,0xcf,0xe0,0x0,0x0,0x0,0x0,0x6b,0xb0,0xfb,0x60,0x0,0x0,0x0,0x0, - 0x6c,0x97,0xb1,0xe0,0x0,0x0,0x0,0x0,0x6d,0x90,0xdd,0x60,0x0,0x0,0x0,0x0, - 0x6e,0x77,0x93,0xe0,0x0,0x0,0x0,0x0,0x6f,0x70,0xbf,0x60,0x0,0x0,0x0,0x0, - 0x70,0x60,0xb0,0x60,0x0,0x0,0x0,0x0,0x71,0x59,0xdb,0xe0,0x0,0x0,0x0,0x0, - 0x72,0x40,0x92,0x60,0x0,0x0,0x0,0x0,0x73,0x39,0xbd,0xe0,0x0,0x0,0x0,0x0, - 0x74,0x20,0x74,0x60,0x0,0x0,0x0,0x0,0x75,0x19,0x9f,0xe0,0x0,0x0,0x0,0x0, - 0x76,0x0,0x56,0x60,0x0,0x0,0x0,0x0,0x76,0xf9,0x81,0xe0,0x0,0x0,0x0,0x0, - 0x77,0xe0,0x38,0x60,0x0,0x0,0x0,0x0,0x78,0xd9,0x63,0xe0,0x0,0x0,0x0,0x0, - 0x79,0xc0,0x1a,0x60,0x0,0x0,0x0,0x0,0x7a,0xb9,0x45,0xe0,0x0,0x0,0x0,0x0, - 0x7b,0xa9,0x36,0xe0,0x0,0x0,0x0,0x0,0x7c,0xa2,0x62,0x60,0x0,0x0,0x0,0x0, - 0x7d,0x89,0x18,0xe0,0x0,0x0,0x0,0x0,0x7e,0x82,0x44,0x60,0x0,0x0,0x0,0x0, - 0x7f,0x68,0xfa,0xe0,0x0,0x1,0x4,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x0,0x0,0xab,0xfc,0x0,0x0,0x0,0x0,0xac,0x44, - 0x0,0x4,0x0,0x0,0xc1,0x5c,0x1,0xa,0x0,0x0,0xb3,0x4c,0x0,0x4,0x0,0x0, - 0xb3,0x4c,0x0,0x4,0x4c,0x4d,0x54,0x0,0x43,0x48,0x41,0x53,0x54,0x0,0x43,0x48, - 0x41,0x44,0x54,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x43, - 0x48,0x41,0x53,0x54,0x2d,0x31,0x32,0x3a,0x34,0x35,0x43,0x48,0x41,0x44,0x54,0x2c, - 0x4d,0x39,0x2e,0x35,0x2e,0x30,0x2f,0x32,0x3a,0x34,0x35,0x2c,0x4d,0x34,0x2e,0x31, - 0x2e,0x30,0x2f,0x33,0x3a,0x34,0x35,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Auckland - 0x0,0x0,0x9,0x9c, + 0x0,0x0,0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x79,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x22,0x80,0x0,0x0,0x0,0xaa, + 0x19,0xa7,0x64,0xb5,0xa4,0x19,0x60,0xca,0xcd,0x2e,0xd0,0xcc,0xe7,0x4b,0x10,0xcd, + 0xa9,0x17,0x90,0xce,0xa2,0x43,0x10,0xce,0xcd,0xa8,0x70,0x15,0x27,0xa7,0xd0,0x16, + 0x18,0xdc,0x40,0x17,0x8,0xdb,0x50,0x17,0xfa,0xf,0xc0,0x18,0xea,0xe,0xd0,0x19, + 0xdb,0x43,0x40,0x1a,0xcc,0x93,0xd0,0x1b,0xbc,0xa0,0xf0,0x1c,0xac,0x91,0xf0,0x1d, + 0x9c,0x82,0xf0,0x1e,0x8c,0x73,0xf0,0x1f,0x7c,0x64,0xf0,0x20,0x6c,0x55,0xf0,0x21, + 0x5c,0x46,0xf0,0x22,0x4c,0x37,0xf0,0x23,0x3c,0x28,0xf0,0x24,0x2c,0x19,0xf0,0x25, + 0x1c,0xa,0xf0,0x26,0xb,0xfb,0xf0,0x26,0x8d,0x20,0xe0,0x28,0xe5,0x17,0x80,0x29, + 0xd4,0xec,0x60,0x2a,0xc4,0xcf,0x50,0x2b,0xb4,0xce,0x60,0x2c,0xa4,0xb1,0x50,0x2d, + 0x94,0xb0,0x60,0x2e,0x84,0x93,0x50,0x2f,0x74,0xbc,0x90,0x30,0x64,0xad,0x90,0x31, + 0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34,0x52,0x96,0x10,0x35, + 0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x38, + 0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b,0xdb,0x58,0x90,0x3c, + 0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f,0x9b,0x1c,0x90,0x40, + 0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43,0x64,0x1b,0x10,0x44, + 0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47, + 0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b, + 0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e,0xac,0xa1,0x90,0x4f, + 0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53, + 0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56,0x2c,0x29,0x90,0x56, + 0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59,0xf5,0x28,0x10,0x5a, + 0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d,0xb4,0xec,0x10,0x5e, + 0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61,0x7d,0xea,0x90,0x62, + 0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65,0x3d,0xae,0x90,0x66, + 0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68,0xfd,0x72,0x90,0x69, + 0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c,0xc6,0x71,0x10,0x6d, + 0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70,0x86,0x35,0x10,0x71, + 0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74,0x45,0xf9,0x10,0x75, + 0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78, + 0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c, + 0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x1, + 0x2,0x3,0x6,0x4,0x5,0x4,0x3,0x7,0x3,0x7,0x3,0x7,0x3,0x7,0x8,0x9, + 0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0xa,0x2,0xa,0x2,0xa,0x2, + 0xa,0x2,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, + 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, + 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, + 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, + 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, + 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0x0,0x0,0x1c,0x9c,0x0,0x0,0x0,0x0, + 0x1c,0x9c,0x0,0x4,0x0,0x0,0x1c,0x20,0x0,0x8,0x0,0x0,0x2a,0x30,0x0,0xc, + 0x0,0x0,0xe,0x10,0x0,0x10,0x0,0x0,0x1c,0x20,0x1,0x14,0x0,0x0,0x1c,0x20, + 0x1,0x14,0x0,0x0,0x38,0x40,0x1,0x19,0x0,0x0,0x2a,0x30,0x0,0xc,0x0,0x0, + 0x38,0x40,0x1,0x19,0x0,0x0,0x2a,0x30,0x1,0x1d,0x0,0x0,0x2a,0x30,0x1,0x1d, + 0x0,0x0,0x1c,0x20,0x0,0x8,0x4c,0x4d,0x54,0x0,0x4b,0x4d,0x54,0x0,0x45,0x45, + 0x54,0x0,0x4d,0x53,0x4b,0x0,0x43,0x45,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x4d, + 0x53,0x44,0x0,0x45,0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0, + 0x1,0x1,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x1,0x1,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0xd,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7a,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x22,0xf8,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x56,0xb6,0xc7,0x64,0xff,0xff, + 0xff,0xff,0xaa,0x19,0xa7,0x64,0xff,0xff,0xff,0xff,0xb5,0xa4,0x19,0x60,0xff,0xff, + 0xff,0xff,0xca,0xcd,0x2e,0xd0,0xff,0xff,0xff,0xff,0xcc,0xe7,0x4b,0x10,0xff,0xff, + 0xff,0xff,0xcd,0xa9,0x17,0x90,0xff,0xff,0xff,0xff,0xce,0xa2,0x43,0x10,0xff,0xff, + 0xff,0xff,0xce,0xcd,0xa8,0x70,0x0,0x0,0x0,0x0,0x15,0x27,0xa7,0xd0,0x0,0x0, + 0x0,0x0,0x16,0x18,0xdc,0x40,0x0,0x0,0x0,0x0,0x17,0x8,0xdb,0x50,0x0,0x0, + 0x0,0x0,0x17,0xfa,0xf,0xc0,0x0,0x0,0x0,0x0,0x18,0xea,0xe,0xd0,0x0,0x0, + 0x0,0x0,0x19,0xdb,0x43,0x40,0x0,0x0,0x0,0x0,0x1a,0xcc,0x93,0xd0,0x0,0x0, + 0x0,0x0,0x1b,0xbc,0xa0,0xf0,0x0,0x0,0x0,0x0,0x1c,0xac,0x91,0xf0,0x0,0x0, + 0x0,0x0,0x1d,0x9c,0x82,0xf0,0x0,0x0,0x0,0x0,0x1e,0x8c,0x73,0xf0,0x0,0x0, + 0x0,0x0,0x1f,0x7c,0x64,0xf0,0x0,0x0,0x0,0x0,0x20,0x6c,0x55,0xf0,0x0,0x0, + 0x0,0x0,0x21,0x5c,0x46,0xf0,0x0,0x0,0x0,0x0,0x22,0x4c,0x37,0xf0,0x0,0x0, + 0x0,0x0,0x23,0x3c,0x28,0xf0,0x0,0x0,0x0,0x0,0x24,0x2c,0x19,0xf0,0x0,0x0, + 0x0,0x0,0x25,0x1c,0xa,0xf0,0x0,0x0,0x0,0x0,0x26,0xb,0xfb,0xf0,0x0,0x0, + 0x0,0x0,0x26,0x8d,0x20,0xe0,0x0,0x0,0x0,0x0,0x28,0xe5,0x17,0x80,0x0,0x0, + 0x0,0x0,0x29,0xd4,0xec,0x60,0x0,0x0,0x0,0x0,0x2a,0xc4,0xcf,0x50,0x0,0x0, + 0x0,0x0,0x2b,0xb4,0xce,0x60,0x0,0x0,0x0,0x0,0x2c,0xa4,0xb1,0x50,0x0,0x0, + 0x0,0x0,0x2d,0x94,0xb0,0x60,0x0,0x0,0x0,0x0,0x2e,0x84,0x93,0x50,0x0,0x0, + 0x0,0x0,0x2f,0x74,0xbc,0x90,0x0,0x0,0x0,0x0,0x30,0x64,0xad,0x90,0x0,0x0, + 0x0,0x0,0x31,0x5d,0xd9,0x10,0x0,0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0, + 0x0,0x0,0x33,0x3d,0xbb,0x10,0x0,0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0, + 0x0,0x0,0x35,0x1d,0x9d,0x10,0x0,0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0, + 0x0,0x0,0x36,0xfd,0x7f,0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0, + 0x0,0x0,0x38,0xdd,0x61,0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0, + 0x0,0x0,0x3a,0xbd,0x43,0x10,0x0,0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0, + 0x0,0x0,0x3c,0xa6,0x5f,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0, + 0x0,0x0,0x3e,0x86,0x41,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0, + 0x0,0x0,0x40,0x66,0x23,0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0, + 0x0,0x0,0x42,0x46,0x5,0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0, + 0x0,0x0,0x44,0x25,0xe7,0x90,0x0,0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0, + 0x0,0x0,0x46,0x5,0xc9,0x90,0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0, + 0x0,0x0,0x47,0xee,0xe6,0x10,0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0, + 0x0,0x0,0x49,0xce,0xc8,0x10,0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0, + 0x0,0x0,0x4b,0xae,0xaa,0x10,0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0, + 0x0,0x0,0x4d,0x8e,0x8c,0x10,0x0,0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0, + 0x0,0x0,0x4f,0x6e,0x6e,0x10,0x0,0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0, + 0x0,0x0,0x51,0x57,0x8a,0x90,0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0, + 0x0,0x0,0x53,0x37,0x6c,0x90,0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0, + 0x0,0x0,0x55,0x17,0x4e,0x90,0x0,0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0, + 0x0,0x0,0x56,0xf7,0x30,0x90,0x0,0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0, + 0x0,0x0,0x58,0xd7,0x12,0x90,0x0,0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0, + 0x0,0x0,0x5a,0xb6,0xf4,0x90,0x0,0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0, + 0x0,0x0,0x5c,0xa0,0x11,0x10,0x0,0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0, + 0x0,0x0,0x5e,0x7f,0xf3,0x10,0x0,0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0, + 0x0,0x0,0x60,0x5f,0xd5,0x10,0x0,0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0, + 0x0,0x0,0x62,0x3f,0xb7,0x10,0x0,0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0, + 0x0,0x0,0x64,0x1f,0x99,0x10,0x0,0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0, + 0x0,0x0,0x66,0x8,0xb5,0x90,0x0,0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0, + 0x0,0x0,0x67,0xe8,0x97,0x90,0x0,0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0, + 0x0,0x0,0x69,0xc8,0x79,0x90,0x0,0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0, + 0x0,0x0,0x6b,0xa8,0x5b,0x90,0x0,0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0, + 0x0,0x0,0x6d,0x88,0x3d,0x90,0x0,0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0, + 0x0,0x0,0x6f,0x68,0x1f,0x90,0x0,0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0, + 0x0,0x0,0x71,0x51,0x3c,0x10,0x0,0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0, + 0x0,0x0,0x73,0x31,0x1e,0x10,0x0,0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0, + 0x0,0x0,0x75,0x11,0x0,0x10,0x0,0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0, + 0x0,0x0,0x76,0xf0,0xe2,0x10,0x0,0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0, + 0x0,0x0,0x78,0xd0,0xc4,0x10,0x0,0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0, + 0x0,0x0,0x7a,0xb0,0xa6,0x10,0x0,0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0, + 0x0,0x0,0x7c,0x99,0xc2,0x90,0x0,0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0, + 0x0,0x0,0x7e,0x79,0xa4,0x90,0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x1, + 0x2,0x3,0x6,0x4,0x5,0x4,0x3,0x7,0x3,0x7,0x3,0x7,0x3,0x7,0x8,0x9, + 0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0xa,0x2,0xa,0x2,0xa,0x2, + 0xa,0x2,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, + 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, + 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, + 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, + 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, + 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0x0,0x0,0x1c,0x9c,0x0,0x0,0x0,0x0, + 0x1c,0x9c,0x0,0x4,0x0,0x0,0x1c,0x20,0x0,0x8,0x0,0x0,0x2a,0x30,0x0,0xc, + 0x0,0x0,0xe,0x10,0x0,0x10,0x0,0x0,0x1c,0x20,0x1,0x14,0x0,0x0,0x1c,0x20, + 0x1,0x14,0x0,0x0,0x38,0x40,0x1,0x19,0x0,0x0,0x2a,0x30,0x0,0xc,0x0,0x0, + 0x38,0x40,0x1,0x19,0x0,0x0,0x2a,0x30,0x1,0x1d,0x0,0x0,0x2a,0x30,0x1,0x1d, + 0x0,0x0,0x1c,0x20,0x0,0x8,0x4c,0x4d,0x54,0x0,0x4b,0x4d,0x54,0x0,0x45,0x45, + 0x54,0x0,0x4d,0x53,0x4b,0x0,0x43,0x45,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x4d, + 0x53,0x44,0x0,0x45,0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0, + 0x1,0x1,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x1,0x1,0xa,0x45,0x45,0x54,0x2d,0x32,0x45,0x45,0x53,0x54,0x2c,0x4d,0x33,0x2e, + 0x35,0x2e,0x30,0x2f,0x33,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30,0x2f,0x34,0xa, + + // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Rome + 0x0,0x0,0xa,0x84, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x9c,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x13,0x80,0x0,0x0,0x0,0xb0, - 0xb4,0xb2,0xe8,0xb1,0x51,0x87,0x58,0xb2,0x78,0xe5,0x68,0xb3,0x43,0xe5,0x60,0xb4, - 0x58,0xc7,0x68,0xb5,0x23,0xc7,0x60,0xb6,0x38,0xa9,0x68,0xb7,0x3,0xa9,0x60,0xb8, - 0x18,0x8b,0x68,0xb8,0xec,0xc5,0xe0,0xb9,0xf8,0x6d,0x68,0xba,0xcc,0xa7,0xe0,0xbb, - 0xd8,0x4f,0x68,0xbc,0xe3,0xe8,0xe0,0xbd,0xae,0xf6,0xe8,0xbe,0xc3,0xca,0xe0,0xbf, - 0x8e,0xd8,0xe8,0xc0,0xa3,0xac,0xe0,0xc1,0x6e,0xba,0xe8,0xc2,0x83,0x8e,0xe0,0xc3, - 0x4e,0x9c,0xe8,0xc4,0x63,0x70,0xe0,0xc5,0x2e,0x7e,0xe8,0xc6,0x4c,0x8d,0x60,0xc7, - 0xe,0x60,0xe8,0xc8,0x2c,0x6f,0x60,0xc8,0xf7,0x7d,0x68,0xd2,0xda,0x9a,0x40,0x9, - 0x18,0xfd,0xe0,0x9,0xac,0xa5,0xe0,0xa,0xef,0xa5,0x60,0xb,0x9e,0xfc,0xe0,0xc, - 0xd8,0xc1,0xe0,0xd,0x7e,0xde,0xe0,0xe,0xb8,0xa3,0xe0,0xf,0x5e,0xc0,0xe0,0x10, - 0x98,0x85,0xe0,0x11,0x3e,0xa2,0xe0,0x12,0x78,0x67,0xe0,0x13,0x1e,0x84,0xe0,0x14, - 0x58,0x49,0xe0,0x14,0xfe,0x66,0xe0,0x16,0x38,0x2b,0xe0,0x16,0xe7,0x83,0x60,0x18, - 0x21,0x48,0x60,0x18,0xc7,0x65,0x60,0x1a,0x1,0x2a,0x60,0x1a,0xa7,0x47,0x60,0x1b, - 0xe1,0xc,0x60,0x1c,0x87,0x29,0x60,0x1d,0xc0,0xee,0x60,0x1e,0x67,0xb,0x60,0x1f, - 0xa0,0xd0,0x60,0x20,0x46,0xed,0x60,0x21,0x80,0xb2,0x60,0x22,0x30,0x9,0xe0,0x23, - 0x69,0xce,0xe0,0x24,0xf,0xeb,0xe0,0x25,0x2e,0x1,0x60,0x26,0x2,0x42,0xe0,0x27, - 0xd,0xe3,0x60,0x27,0xe2,0x24,0xe0,0x28,0xed,0xc5,0x60,0x29,0xc2,0x6,0xe0,0x2a, - 0xcd,0xa7,0x60,0x2b,0xab,0x23,0x60,0x2c,0xad,0x89,0x60,0x2d,0x8b,0x5,0x60,0x2e, - 0x8d,0x6b,0x60,0x2f,0x6a,0xe7,0x60,0x30,0x6d,0x4d,0x60,0x31,0x4a,0xc9,0x60,0x32, - 0x56,0x69,0xe0,0x33,0x2a,0xab,0x60,0x34,0x36,0x4b,0xe0,0x35,0xa,0x8d,0x60,0x36, - 0x16,0x2d,0xe0,0x36,0xf3,0xa9,0xe0,0x37,0xf6,0xf,0xe0,0x38,0xd3,0x8b,0xe0,0x39, - 0xd5,0xf1,0xe0,0x3a,0xb3,0x6d,0xe0,0x3b,0xbf,0xe,0x60,0x3c,0x93,0x4f,0xe0,0x3d, - 0x9e,0xf0,0x60,0x3e,0x73,0x31,0xe0,0x3f,0x7e,0xd2,0x60,0x40,0x5c,0x4e,0x60,0x41, - 0x5e,0xb4,0x60,0x42,0x3c,0x30,0x60,0x43,0x3e,0x96,0x60,0x44,0x1c,0x12,0x60,0x45, - 0x1e,0x78,0x60,0x45,0xfb,0xf4,0x60,0x46,0xfe,0x5a,0x60,0x47,0xf7,0x85,0xe0,0x48, - 0xde,0x3c,0x60,0x49,0xd7,0x67,0xe0,0x4a,0xbe,0x1e,0x60,0x4b,0xb7,0x49,0xe0,0x4c, - 0x9e,0x0,0x60,0x4d,0x97,0x2b,0xe0,0x4e,0x7d,0xe2,0x60,0x4f,0x77,0xd,0xe0,0x50, - 0x66,0xfe,0xe0,0x51,0x60,0x2a,0x60,0x52,0x46,0xe0,0xe0,0x53,0x40,0xc,0x60,0x54, - 0x26,0xc2,0xe0,0x55,0x1f,0xee,0x60,0x56,0x6,0xa4,0xe0,0x56,0xff,0xd0,0x60,0x57, - 0xe6,0x86,0xe0,0x58,0xdf,0xb2,0x60,0x59,0xc6,0x68,0xe0,0x5a,0xbf,0x94,0x60,0x5b, - 0xaf,0x85,0x60,0x5c,0xa8,0xb0,0xe0,0x5d,0x8f,0x67,0x60,0x5e,0x88,0x92,0xe0,0x5f, - 0x6f,0x49,0x60,0x60,0x68,0x74,0xe0,0x61,0x4f,0x2b,0x60,0x62,0x48,0x56,0xe0,0x63, - 0x2f,0xd,0x60,0x64,0x28,0x38,0xe0,0x65,0xe,0xef,0x60,0x66,0x11,0x55,0x60,0x66, - 0xf8,0xb,0xe0,0x67,0xf1,0x37,0x60,0x68,0xd7,0xed,0xe0,0x69,0xd1,0x19,0x60,0x6a, - 0xb7,0xcf,0xe0,0x6b,0xb0,0xfb,0x60,0x6c,0x97,0xb1,0xe0,0x6d,0x90,0xdd,0x60,0x6e, - 0x77,0x93,0xe0,0x6f,0x70,0xbf,0x60,0x70,0x60,0xb0,0x60,0x71,0x59,0xdb,0xe0,0x72, - 0x40,0x92,0x60,0x73,0x39,0xbd,0xe0,0x74,0x20,0x74,0x60,0x75,0x19,0x9f,0xe0,0x76, - 0x0,0x56,0x60,0x76,0xf9,0x81,0xe0,0x77,0xe0,0x38,0x60,0x78,0xd9,0x63,0xe0,0x79, - 0xc0,0x1a,0x60,0x7a,0xb9,0x45,0xe0,0x7b,0xa9,0x36,0xe0,0x7c,0xa2,0x62,0x60,0x7d, - 0x89,0x18,0xe0,0x7e,0x82,0x44,0x60,0x7f,0x68,0xfa,0xe0,0x2,0x1,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x6,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x0,0x0,0xa3,0xd8,0x0,0x0,0x0,0x0,0xaf, - 0xc8,0x1,0x4,0x0,0x0,0xa1,0xb8,0x0,0x9,0x0,0x0,0xa8,0xc0,0x1,0x4,0x0, - 0x0,0xb6,0xd0,0x1,0xe,0x0,0x0,0xa8,0xc0,0x0,0x4,0x0,0x0,0xa8,0xc0,0x0, - 0x4,0x4c,0x4d,0x54,0x0,0x4e,0x5a,0x53,0x54,0x0,0x4e,0x5a,0x4d,0x54,0x0,0x4e, - 0x5a,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x9d,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x13,0xf8,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x41,0xb7,0x4c,0xa8,0xff,0xff, - 0xff,0xff,0xb0,0xb4,0xb2,0xe8,0xff,0xff,0xff,0xff,0xb1,0x51,0x87,0x58,0xff,0xff, - 0xff,0xff,0xb2,0x78,0xe5,0x68,0xff,0xff,0xff,0xff,0xb3,0x43,0xe5,0x60,0xff,0xff, - 0xff,0xff,0xb4,0x58,0xc7,0x68,0xff,0xff,0xff,0xff,0xb5,0x23,0xc7,0x60,0xff,0xff, - 0xff,0xff,0xb6,0x38,0xa9,0x68,0xff,0xff,0xff,0xff,0xb7,0x3,0xa9,0x60,0xff,0xff, - 0xff,0xff,0xb8,0x18,0x8b,0x68,0xff,0xff,0xff,0xff,0xb8,0xec,0xc5,0xe0,0xff,0xff, - 0xff,0xff,0xb9,0xf8,0x6d,0x68,0xff,0xff,0xff,0xff,0xba,0xcc,0xa7,0xe0,0xff,0xff, - 0xff,0xff,0xbb,0xd8,0x4f,0x68,0xff,0xff,0xff,0xff,0xbc,0xe3,0xe8,0xe0,0xff,0xff, - 0xff,0xff,0xbd,0xae,0xf6,0xe8,0xff,0xff,0xff,0xff,0xbe,0xc3,0xca,0xe0,0xff,0xff, - 0xff,0xff,0xbf,0x8e,0xd8,0xe8,0xff,0xff,0xff,0xff,0xc0,0xa3,0xac,0xe0,0xff,0xff, - 0xff,0xff,0xc1,0x6e,0xba,0xe8,0xff,0xff,0xff,0xff,0xc2,0x83,0x8e,0xe0,0xff,0xff, - 0xff,0xff,0xc3,0x4e,0x9c,0xe8,0xff,0xff,0xff,0xff,0xc4,0x63,0x70,0xe0,0xff,0xff, - 0xff,0xff,0xc5,0x2e,0x7e,0xe8,0xff,0xff,0xff,0xff,0xc6,0x4c,0x8d,0x60,0xff,0xff, - 0xff,0xff,0xc7,0xe,0x60,0xe8,0xff,0xff,0xff,0xff,0xc8,0x2c,0x6f,0x60,0xff,0xff, - 0xff,0xff,0xc8,0xf7,0x7d,0x68,0xff,0xff,0xff,0xff,0xd2,0xda,0x9a,0x40,0x0,0x0, - 0x0,0x0,0x9,0x18,0xfd,0xe0,0x0,0x0,0x0,0x0,0x9,0xac,0xa5,0xe0,0x0,0x0, - 0x0,0x0,0xa,0xef,0xa5,0x60,0x0,0x0,0x0,0x0,0xb,0x9e,0xfc,0xe0,0x0,0x0, - 0x0,0x0,0xc,0xd8,0xc1,0xe0,0x0,0x0,0x0,0x0,0xd,0x7e,0xde,0xe0,0x0,0x0, - 0x0,0x0,0xe,0xb8,0xa3,0xe0,0x0,0x0,0x0,0x0,0xf,0x5e,0xc0,0xe0,0x0,0x0, - 0x0,0x0,0x10,0x98,0x85,0xe0,0x0,0x0,0x0,0x0,0x11,0x3e,0xa2,0xe0,0x0,0x0, - 0x0,0x0,0x12,0x78,0x67,0xe0,0x0,0x0,0x0,0x0,0x13,0x1e,0x84,0xe0,0x0,0x0, - 0x0,0x0,0x14,0x58,0x49,0xe0,0x0,0x0,0x0,0x0,0x14,0xfe,0x66,0xe0,0x0,0x0, - 0x0,0x0,0x16,0x38,0x2b,0xe0,0x0,0x0,0x0,0x0,0x16,0xe7,0x83,0x60,0x0,0x0, - 0x0,0x0,0x18,0x21,0x48,0x60,0x0,0x0,0x0,0x0,0x18,0xc7,0x65,0x60,0x0,0x0, - 0x0,0x0,0x1a,0x1,0x2a,0x60,0x0,0x0,0x0,0x0,0x1a,0xa7,0x47,0x60,0x0,0x0, - 0x0,0x0,0x1b,0xe1,0xc,0x60,0x0,0x0,0x0,0x0,0x1c,0x87,0x29,0x60,0x0,0x0, - 0x0,0x0,0x1d,0xc0,0xee,0x60,0x0,0x0,0x0,0x0,0x1e,0x67,0xb,0x60,0x0,0x0, - 0x0,0x0,0x1f,0xa0,0xd0,0x60,0x0,0x0,0x0,0x0,0x20,0x46,0xed,0x60,0x0,0x0, - 0x0,0x0,0x21,0x80,0xb2,0x60,0x0,0x0,0x0,0x0,0x22,0x30,0x9,0xe0,0x0,0x0, - 0x0,0x0,0x23,0x69,0xce,0xe0,0x0,0x0,0x0,0x0,0x24,0xf,0xeb,0xe0,0x0,0x0, - 0x0,0x0,0x25,0x2e,0x1,0x60,0x0,0x0,0x0,0x0,0x26,0x2,0x42,0xe0,0x0,0x0, - 0x0,0x0,0x27,0xd,0xe3,0x60,0x0,0x0,0x0,0x0,0x27,0xe2,0x24,0xe0,0x0,0x0, - 0x0,0x0,0x28,0xed,0xc5,0x60,0x0,0x0,0x0,0x0,0x29,0xc2,0x6,0xe0,0x0,0x0, - 0x0,0x0,0x2a,0xcd,0xa7,0x60,0x0,0x0,0x0,0x0,0x2b,0xab,0x23,0x60,0x0,0x0, - 0x0,0x0,0x2c,0xad,0x89,0x60,0x0,0x0,0x0,0x0,0x2d,0x8b,0x5,0x60,0x0,0x0, - 0x0,0x0,0x2e,0x8d,0x6b,0x60,0x0,0x0,0x0,0x0,0x2f,0x6a,0xe7,0x60,0x0,0x0, - 0x0,0x0,0x30,0x6d,0x4d,0x60,0x0,0x0,0x0,0x0,0x31,0x4a,0xc9,0x60,0x0,0x0, - 0x0,0x0,0x32,0x56,0x69,0xe0,0x0,0x0,0x0,0x0,0x33,0x2a,0xab,0x60,0x0,0x0, - 0x0,0x0,0x34,0x36,0x4b,0xe0,0x0,0x0,0x0,0x0,0x35,0xa,0x8d,0x60,0x0,0x0, - 0x0,0x0,0x36,0x16,0x2d,0xe0,0x0,0x0,0x0,0x0,0x36,0xf3,0xa9,0xe0,0x0,0x0, - 0x0,0x0,0x37,0xf6,0xf,0xe0,0x0,0x0,0x0,0x0,0x38,0xd3,0x8b,0xe0,0x0,0x0, - 0x0,0x0,0x39,0xd5,0xf1,0xe0,0x0,0x0,0x0,0x0,0x3a,0xb3,0x6d,0xe0,0x0,0x0, - 0x0,0x0,0x3b,0xbf,0xe,0x60,0x0,0x0,0x0,0x0,0x3c,0x93,0x4f,0xe0,0x0,0x0, - 0x0,0x0,0x3d,0x9e,0xf0,0x60,0x0,0x0,0x0,0x0,0x3e,0x73,0x31,0xe0,0x0,0x0, - 0x0,0x0,0x3f,0x7e,0xd2,0x60,0x0,0x0,0x0,0x0,0x40,0x5c,0x4e,0x60,0x0,0x0, - 0x0,0x0,0x41,0x5e,0xb4,0x60,0x0,0x0,0x0,0x0,0x42,0x3c,0x30,0x60,0x0,0x0, - 0x0,0x0,0x43,0x3e,0x96,0x60,0x0,0x0,0x0,0x0,0x44,0x1c,0x12,0x60,0x0,0x0, - 0x0,0x0,0x45,0x1e,0x78,0x60,0x0,0x0,0x0,0x0,0x45,0xfb,0xf4,0x60,0x0,0x0, - 0x0,0x0,0x46,0xfe,0x5a,0x60,0x0,0x0,0x0,0x0,0x47,0xf7,0x85,0xe0,0x0,0x0, - 0x0,0x0,0x48,0xde,0x3c,0x60,0x0,0x0,0x0,0x0,0x49,0xd7,0x67,0xe0,0x0,0x0, - 0x0,0x0,0x4a,0xbe,0x1e,0x60,0x0,0x0,0x0,0x0,0x4b,0xb7,0x49,0xe0,0x0,0x0, - 0x0,0x0,0x4c,0x9e,0x0,0x60,0x0,0x0,0x0,0x0,0x4d,0x97,0x2b,0xe0,0x0,0x0, - 0x0,0x0,0x4e,0x7d,0xe2,0x60,0x0,0x0,0x0,0x0,0x4f,0x77,0xd,0xe0,0x0,0x0, - 0x0,0x0,0x50,0x66,0xfe,0xe0,0x0,0x0,0x0,0x0,0x51,0x60,0x2a,0x60,0x0,0x0, - 0x0,0x0,0x52,0x46,0xe0,0xe0,0x0,0x0,0x0,0x0,0x53,0x40,0xc,0x60,0x0,0x0, - 0x0,0x0,0x54,0x26,0xc2,0xe0,0x0,0x0,0x0,0x0,0x55,0x1f,0xee,0x60,0x0,0x0, - 0x0,0x0,0x56,0x6,0xa4,0xe0,0x0,0x0,0x0,0x0,0x56,0xff,0xd0,0x60,0x0,0x0, - 0x0,0x0,0x57,0xe6,0x86,0xe0,0x0,0x0,0x0,0x0,0x58,0xdf,0xb2,0x60,0x0,0x0, - 0x0,0x0,0x59,0xc6,0x68,0xe0,0x0,0x0,0x0,0x0,0x5a,0xbf,0x94,0x60,0x0,0x0, - 0x0,0x0,0x5b,0xaf,0x85,0x60,0x0,0x0,0x0,0x0,0x5c,0xa8,0xb0,0xe0,0x0,0x0, - 0x0,0x0,0x5d,0x8f,0x67,0x60,0x0,0x0,0x0,0x0,0x5e,0x88,0x92,0xe0,0x0,0x0, - 0x0,0x0,0x5f,0x6f,0x49,0x60,0x0,0x0,0x0,0x0,0x60,0x68,0x74,0xe0,0x0,0x0, - 0x0,0x0,0x61,0x4f,0x2b,0x60,0x0,0x0,0x0,0x0,0x62,0x48,0x56,0xe0,0x0,0x0, - 0x0,0x0,0x63,0x2f,0xd,0x60,0x0,0x0,0x0,0x0,0x64,0x28,0x38,0xe0,0x0,0x0, - 0x0,0x0,0x65,0xe,0xef,0x60,0x0,0x0,0x0,0x0,0x66,0x11,0x55,0x60,0x0,0x0, - 0x0,0x0,0x66,0xf8,0xb,0xe0,0x0,0x0,0x0,0x0,0x67,0xf1,0x37,0x60,0x0,0x0, - 0x0,0x0,0x68,0xd7,0xed,0xe0,0x0,0x0,0x0,0x0,0x69,0xd1,0x19,0x60,0x0,0x0, - 0x0,0x0,0x6a,0xb7,0xcf,0xe0,0x0,0x0,0x0,0x0,0x6b,0xb0,0xfb,0x60,0x0,0x0, - 0x0,0x0,0x6c,0x97,0xb1,0xe0,0x0,0x0,0x0,0x0,0x6d,0x90,0xdd,0x60,0x0,0x0, - 0x0,0x0,0x6e,0x77,0x93,0xe0,0x0,0x0,0x0,0x0,0x6f,0x70,0xbf,0x60,0x0,0x0, - 0x0,0x0,0x70,0x60,0xb0,0x60,0x0,0x0,0x0,0x0,0x71,0x59,0xdb,0xe0,0x0,0x0, - 0x0,0x0,0x72,0x40,0x92,0x60,0x0,0x0,0x0,0x0,0x73,0x39,0xbd,0xe0,0x0,0x0, - 0x0,0x0,0x74,0x20,0x74,0x60,0x0,0x0,0x0,0x0,0x75,0x19,0x9f,0xe0,0x0,0x0, - 0x0,0x0,0x76,0x0,0x56,0x60,0x0,0x0,0x0,0x0,0x76,0xf9,0x81,0xe0,0x0,0x0, - 0x0,0x0,0x77,0xe0,0x38,0x60,0x0,0x0,0x0,0x0,0x78,0xd9,0x63,0xe0,0x0,0x0, - 0x0,0x0,0x79,0xc0,0x1a,0x60,0x0,0x0,0x0,0x0,0x7a,0xb9,0x45,0xe0,0x0,0x0, - 0x0,0x0,0x7b,0xa9,0x36,0xe0,0x0,0x0,0x0,0x0,0x7c,0xa2,0x62,0x60,0x0,0x0, - 0x0,0x0,0x7d,0x89,0x18,0xe0,0x0,0x0,0x0,0x0,0x7e,0x82,0x44,0x60,0x0,0x0, - 0x0,0x0,0x7f,0x68,0xfa,0xe0,0x0,0x2,0x1,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x6,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x0,0x0,0xac,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0x9b, + 0x38,0xf8,0x70,0x9b,0xd5,0xcc,0xe0,0x9c,0xc5,0xcb,0xf0,0x9d,0xb7,0x0,0x60,0x9e, + 0x89,0xfe,0x70,0x9f,0xa0,0x1c,0xe0,0xa0,0x60,0xa5,0xf0,0xa1,0x7e,0xad,0x60,0xa2, + 0x5c,0x37,0x70,0xa3,0x4c,0x1a,0x60,0xc8,0x6c,0x35,0xf0,0xcc,0xe7,0x4b,0x10,0xcd, + 0xa9,0x17,0x90,0xce,0x82,0x74,0xe0,0xce,0xa2,0x43,0x10,0xcf,0x92,0x34,0x10,0xcf, + 0xe3,0xc6,0xe0,0xd0,0x6e,0x5e,0x90,0xd1,0x72,0x16,0x10,0xd2,0x4c,0xd2,0xf0,0xd3, + 0x3e,0x31,0x90,0xd4,0x49,0xd2,0x10,0xd5,0x1d,0xf7,0x70,0xd6,0x29,0x97,0xf0,0xd6, + 0xeb,0x80,0x90,0xd8,0x9,0x96,0x10,0xf9,0x33,0xb5,0xf0,0xf9,0xd9,0xc4,0xe0,0xfb, + 0x1c,0xd2,0x70,0xfb,0xb9,0xb4,0xf0,0xfc,0xfc,0xb4,0x70,0xfd,0x99,0x96,0xf0,0xfe, + 0xe5,0xd0,0xf0,0xff,0x82,0xb3,0x70,0x0,0xc5,0xb2,0xf0,0x1,0x62,0x95,0x70,0x2, + 0x9c,0x5a,0x70,0x3,0x42,0x77,0x70,0x4,0x85,0x76,0xf0,0x5,0x2b,0x93,0xf0,0x6, + 0x6e,0x93,0x70,0x7,0xb,0x75,0xf0,0x8,0x45,0x3a,0xf0,0x8,0xeb,0x57,0xf0,0xa, + 0x2e,0x57,0x70,0xa,0xcb,0x39,0xf0,0xc,0xe,0x39,0x70,0xc,0xab,0x1b,0xf0,0xd, + 0xe4,0xe0,0xf0,0xe,0x8a,0xfd,0xf0,0xf,0xcd,0xfd,0x70,0x10,0x74,0x1a,0x70,0x11, + 0xad,0xdf,0x70,0x12,0x53,0xfc,0x70,0x12,0xce,0x97,0xf0,0x13,0x4d,0x44,0x10,0x14, + 0x33,0xfa,0x90,0x15,0x23,0xeb,0x90,0x16,0x13,0xdc,0x90,0x17,0x3,0xcd,0x90,0x17, + 0xf3,0xbe,0x90,0x18,0xe3,0xaf,0x90,0x19,0xd3,0xa0,0x90,0x1a,0xc3,0x91,0x90,0x1b, + 0xbc,0xbd,0x10,0x1c,0xac,0xae,0x10,0x1d,0x9c,0x9f,0x10,0x1e,0x8c,0x90,0x10,0x1f, + 0x7c,0x81,0x10,0x20,0x6c,0x72,0x10,0x21,0x5c,0x63,0x10,0x22,0x4c,0x54,0x10,0x23, + 0x3c,0x45,0x10,0x24,0x2c,0x36,0x10,0x25,0x1c,0x27,0x10,0x26,0xc,0x18,0x10,0x27, + 0x5,0x43,0x90,0x27,0xf5,0x34,0x90,0x28,0xe5,0x25,0x90,0x29,0xd5,0x16,0x90,0x2a, + 0xc5,0x7,0x90,0x2b,0xb4,0xf8,0x90,0x2c,0xa4,0xe9,0x90,0x2d,0x94,0xda,0x90,0x2e, + 0x84,0xcb,0x90,0x2f,0x74,0xbc,0x90,0x30,0x64,0xad,0x90,0x31,0x5d,0xd9,0x10,0x32, + 0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34,0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36, + 0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39, + 0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b,0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d, + 0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f,0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41, + 0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43,0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45, + 0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49, + 0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c, + 0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e,0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50, + 0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54, + 0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56,0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58, + 0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59,0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b, + 0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d,0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f, + 0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61,0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63, + 0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65,0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67, + 0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68,0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a, + 0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c,0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e, + 0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70,0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72, + 0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74,0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76, + 0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79, + 0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d, + 0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x3,0x4,0x1,0x3,0x4,0x1,0x3,0x1,0x2, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x2,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x2,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x0,0x0,0xb,0xb4,0x0,0x0,0x0,0x0,0x1c, + 0x20,0x1,0x4,0x0,0x0,0xe,0x10,0x0,0x9,0x0,0x0,0xe,0x10,0x0,0x9,0x0, + 0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe,0x10,0x0, + 0x9,0x52,0x4d,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x43,0x45,0x54,0x0,0x0,0x0, + 0x0,0x1,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x54,0x5a,0x69,0x66, + 0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xae, + 0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x11,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xff,0xff,0xff,0xff,0x3d,0xbe,0x1e,0xcc,0xff,0xff,0xff,0xff,0x70,0xbc,0x81,0x70, + 0xff,0xff,0xff,0xff,0x9b,0x38,0xf8,0x70,0xff,0xff,0xff,0xff,0x9b,0xd5,0xcc,0xe0, + 0xff,0xff,0xff,0xff,0x9c,0xc5,0xcb,0xf0,0xff,0xff,0xff,0xff,0x9d,0xb7,0x0,0x60, + 0xff,0xff,0xff,0xff,0x9e,0x89,0xfe,0x70,0xff,0xff,0xff,0xff,0x9f,0xa0,0x1c,0xe0, + 0xff,0xff,0xff,0xff,0xa0,0x60,0xa5,0xf0,0xff,0xff,0xff,0xff,0xa1,0x7e,0xad,0x60, + 0xff,0xff,0xff,0xff,0xa2,0x5c,0x37,0x70,0xff,0xff,0xff,0xff,0xa3,0x4c,0x1a,0x60, + 0xff,0xff,0xff,0xff,0xc8,0x6c,0x35,0xf0,0xff,0xff,0xff,0xff,0xcc,0xe7,0x4b,0x10, + 0xff,0xff,0xff,0xff,0xcd,0xa9,0x17,0x90,0xff,0xff,0xff,0xff,0xce,0x82,0x74,0xe0, + 0xff,0xff,0xff,0xff,0xce,0xa2,0x43,0x10,0xff,0xff,0xff,0xff,0xcf,0x92,0x34,0x10, + 0xff,0xff,0xff,0xff,0xcf,0xe3,0xc6,0xe0,0xff,0xff,0xff,0xff,0xd0,0x6e,0x5e,0x90, + 0xff,0xff,0xff,0xff,0xd1,0x72,0x16,0x10,0xff,0xff,0xff,0xff,0xd2,0x4c,0xd2,0xf0, + 0xff,0xff,0xff,0xff,0xd3,0x3e,0x31,0x90,0xff,0xff,0xff,0xff,0xd4,0x49,0xd2,0x10, + 0xff,0xff,0xff,0xff,0xd5,0x1d,0xf7,0x70,0xff,0xff,0xff,0xff,0xd6,0x29,0x97,0xf0, + 0xff,0xff,0xff,0xff,0xd6,0xeb,0x80,0x90,0xff,0xff,0xff,0xff,0xd8,0x9,0x96,0x10, + 0xff,0xff,0xff,0xff,0xf9,0x33,0xb5,0xf0,0xff,0xff,0xff,0xff,0xf9,0xd9,0xc4,0xe0, + 0xff,0xff,0xff,0xff,0xfb,0x1c,0xd2,0x70,0xff,0xff,0xff,0xff,0xfb,0xb9,0xb4,0xf0, + 0xff,0xff,0xff,0xff,0xfc,0xfc,0xb4,0x70,0xff,0xff,0xff,0xff,0xfd,0x99,0x96,0xf0, + 0xff,0xff,0xff,0xff,0xfe,0xe5,0xd0,0xf0,0xff,0xff,0xff,0xff,0xff,0x82,0xb3,0x70, + 0x0,0x0,0x0,0x0,0x0,0xc5,0xb2,0xf0,0x0,0x0,0x0,0x0,0x1,0x62,0x95,0x70, + 0x0,0x0,0x0,0x0,0x2,0x9c,0x5a,0x70,0x0,0x0,0x0,0x0,0x3,0x42,0x77,0x70, + 0x0,0x0,0x0,0x0,0x4,0x85,0x76,0xf0,0x0,0x0,0x0,0x0,0x5,0x2b,0x93,0xf0, + 0x0,0x0,0x0,0x0,0x6,0x6e,0x93,0x70,0x0,0x0,0x0,0x0,0x7,0xb,0x75,0xf0, + 0x0,0x0,0x0,0x0,0x8,0x45,0x3a,0xf0,0x0,0x0,0x0,0x0,0x8,0xeb,0x57,0xf0, + 0x0,0x0,0x0,0x0,0xa,0x2e,0x57,0x70,0x0,0x0,0x0,0x0,0xa,0xcb,0x39,0xf0, + 0x0,0x0,0x0,0x0,0xc,0xe,0x39,0x70,0x0,0x0,0x0,0x0,0xc,0xab,0x1b,0xf0, + 0x0,0x0,0x0,0x0,0xd,0xe4,0xe0,0xf0,0x0,0x0,0x0,0x0,0xe,0x8a,0xfd,0xf0, + 0x0,0x0,0x0,0x0,0xf,0xcd,0xfd,0x70,0x0,0x0,0x0,0x0,0x10,0x74,0x1a,0x70, + 0x0,0x0,0x0,0x0,0x11,0xad,0xdf,0x70,0x0,0x0,0x0,0x0,0x12,0x53,0xfc,0x70, + 0x0,0x0,0x0,0x0,0x12,0xce,0x97,0xf0,0x0,0x0,0x0,0x0,0x13,0x4d,0x44,0x10, + 0x0,0x0,0x0,0x0,0x14,0x33,0xfa,0x90,0x0,0x0,0x0,0x0,0x15,0x23,0xeb,0x90, + 0x0,0x0,0x0,0x0,0x16,0x13,0xdc,0x90,0x0,0x0,0x0,0x0,0x17,0x3,0xcd,0x90, + 0x0,0x0,0x0,0x0,0x17,0xf3,0xbe,0x90,0x0,0x0,0x0,0x0,0x18,0xe3,0xaf,0x90, + 0x0,0x0,0x0,0x0,0x19,0xd3,0xa0,0x90,0x0,0x0,0x0,0x0,0x1a,0xc3,0x91,0x90, + 0x0,0x0,0x0,0x0,0x1b,0xbc,0xbd,0x10,0x0,0x0,0x0,0x0,0x1c,0xac,0xae,0x10, + 0x0,0x0,0x0,0x0,0x1d,0x9c,0x9f,0x10,0x0,0x0,0x0,0x0,0x1e,0x8c,0x90,0x10, + 0x0,0x0,0x0,0x0,0x1f,0x7c,0x81,0x10,0x0,0x0,0x0,0x0,0x20,0x6c,0x72,0x10, + 0x0,0x0,0x0,0x0,0x21,0x5c,0x63,0x10,0x0,0x0,0x0,0x0,0x22,0x4c,0x54,0x10, + 0x0,0x0,0x0,0x0,0x23,0x3c,0x45,0x10,0x0,0x0,0x0,0x0,0x24,0x2c,0x36,0x10, + 0x0,0x0,0x0,0x0,0x25,0x1c,0x27,0x10,0x0,0x0,0x0,0x0,0x26,0xc,0x18,0x10, + 0x0,0x0,0x0,0x0,0x27,0x5,0x43,0x90,0x0,0x0,0x0,0x0,0x27,0xf5,0x34,0x90, + 0x0,0x0,0x0,0x0,0x28,0xe5,0x25,0x90,0x0,0x0,0x0,0x0,0x29,0xd5,0x16,0x90, + 0x0,0x0,0x0,0x0,0x2a,0xc5,0x7,0x90,0x0,0x0,0x0,0x0,0x2b,0xb4,0xf8,0x90, + 0x0,0x0,0x0,0x0,0x2c,0xa4,0xe9,0x90,0x0,0x0,0x0,0x0,0x2d,0x94,0xda,0x90, + 0x0,0x0,0x0,0x0,0x2e,0x84,0xcb,0x90,0x0,0x0,0x0,0x0,0x2f,0x74,0xbc,0x90, + 0x0,0x0,0x0,0x0,0x30,0x64,0xad,0x90,0x0,0x0,0x0,0x0,0x31,0x5d,0xd9,0x10, + 0x0,0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d,0xbb,0x10, + 0x0,0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d,0x9d,0x10, + 0x0,0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd,0x7f,0x10, + 0x0,0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd,0x61,0x10, + 0x0,0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd,0x43,0x10, + 0x0,0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f,0x90, + 0x0,0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86,0x41,0x90, + 0x0,0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66,0x23,0x90, + 0x0,0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46,0x5,0x90, + 0x0,0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25,0xe7,0x90, + 0x0,0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5,0xc9,0x90, + 0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee,0xe6,0x10, + 0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce,0xc8,0x10, + 0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae,0xaa,0x10, + 0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c,0x10, + 0x0,0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e,0x10, + 0x0,0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57,0x8a,0x90, + 0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37,0x6c,0x90, + 0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17,0x4e,0x90, + 0x0,0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7,0x30,0x90, + 0x0,0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7,0x12,0x90, + 0x0,0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4,0x90, + 0x0,0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0,0x11,0x10, + 0x0,0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3,0x10, + 0x0,0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f,0xd5,0x10, + 0x0,0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f,0xb7,0x10, + 0x0,0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f,0x99,0x10, + 0x0,0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8,0xb5,0x90, + 0x0,0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8,0x97,0x90, + 0x0,0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8,0x79,0x90, + 0x0,0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b,0x90, + 0x0,0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88,0x3d,0x90, + 0x0,0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68,0x1f,0x90, + 0x0,0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51,0x3c,0x10, + 0x0,0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31,0x1e,0x10, + 0x0,0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11,0x0,0x10, + 0x0,0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0,0xe2,0x10, + 0x0,0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0,0xc4,0x10, + 0x0,0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6,0x10, + 0x0,0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99,0xc2,0x90, + 0x0,0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79,0xa4,0x90, + 0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x1,0x3,0x2,0x3,0x2,0x3,0x2, + 0x3,0x2,0x3,0x2,0x3,0x2,0x4,0x5,0x2,0x4,0x5,0x2,0x4,0x2,0x3,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x3,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x3,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x0,0x0,0xb,0xb4,0x0,0x0,0x0,0x0,0xb,0xb4, + 0x0,0x4,0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0xe,0x10,0x0,0xd,0x0,0x0, + 0xe,0x10,0x0,0xd,0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0x1c,0x20,0x1,0x8, + 0x0,0x0,0xe,0x10,0x0,0xd,0x4c,0x4d,0x54,0x0,0x52,0x4d,0x54,0x0,0x43,0x45, + 0x53,0x54,0x0,0x43,0x45,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x0, + 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0xa,0x43,0x45,0x54,0x2d,0x31,0x43,0x45,0x53, + 0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30, + 0x2f,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Dublin + 0x0,0x0,0xd,0xd7, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xe6,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0x9b, + 0x26,0xb3,0x91,0x9b,0xd6,0xb,0x11,0x9c,0xcf,0x30,0xa0,0x9d,0xa4,0xc3,0xa0,0x9e, + 0x9c,0x9d,0xa0,0x9f,0x97,0x1a,0xa0,0xa0,0x85,0xba,0x20,0xa1,0x76,0xfc,0xa0,0xa2, + 0x65,0x9c,0x20,0xa3,0x7b,0xc8,0xa0,0xa4,0x4e,0xb8,0xa0,0xa5,0x3f,0xfb,0x20,0xa5, + 0x94,0x3f,0x0,0xa6,0x25,0x60,0x20,0xa7,0x27,0xc6,0x20,0xa8,0x2a,0x2c,0x20,0xa8, + 0xeb,0xf8,0xa0,0xaa,0x0,0xd3,0xa0,0xaa,0xd5,0x15,0x20,0xab,0xe9,0xf0,0x20,0xac, + 0xc7,0x6c,0x20,0xad,0xc9,0xd2,0x20,0xae,0xa7,0x4e,0x20,0xaf,0xa0,0x79,0xa0,0xb0, + 0x87,0x30,0x20,0xb1,0x92,0xd0,0xa0,0xb2,0x70,0x4c,0xa0,0xb3,0x72,0xb2,0xa0,0xb4, + 0x50,0x2e,0xa0,0xb5,0x49,0x5a,0x20,0xb6,0x30,0x10,0xa0,0xb7,0x32,0x76,0xa0,0xb8, + 0xf,0xf2,0xa0,0xb9,0x12,0x58,0xa0,0xb9,0xef,0xd4,0xa0,0xba,0xe9,0x0,0x20,0xbb, + 0xd8,0xf1,0x20,0xbc,0xdb,0x57,0x20,0xbd,0xb8,0xd3,0x20,0xbe,0xb1,0xfe,0xa0,0xbf, + 0x98,0xb5,0x20,0xc0,0x9b,0x1b,0x20,0xc1,0x78,0x97,0x20,0xc2,0x7a,0xfd,0x20,0xc3, + 0x58,0x79,0x20,0xc4,0x51,0xa4,0xa0,0xc5,0x38,0x5b,0x20,0xc6,0x3a,0xc1,0x20,0xc7, + 0x58,0xd6,0xa0,0xc7,0xda,0x9,0xa0,0xd4,0x49,0xe0,0x20,0xd5,0x1e,0x21,0xa0,0xd6, + 0x4e,0xac,0x20,0xd7,0x2c,0x28,0x20,0xd8,0x2e,0x8e,0x20,0xd8,0xf9,0x95,0x20,0xda, + 0xe,0x70,0x20,0xda,0xeb,0xec,0x20,0xdb,0xe5,0x17,0xa0,0xdc,0xcb,0xce,0x20,0xdd, + 0xc4,0xf9,0xa0,0xde,0xb4,0xea,0xa0,0xdf,0xae,0x16,0x20,0xe0,0x94,0xcc,0xa0,0xe1, + 0x72,0x48,0xa0,0xe2,0x6b,0x74,0x20,0xe3,0x52,0x2a,0xa0,0xe4,0x54,0x90,0xa0,0xe5, + 0x32,0xc,0xa0,0xe6,0x3d,0xad,0x20,0xe7,0x1b,0x29,0x20,0xe8,0x14,0x54,0xa0,0xe8, + 0xfb,0xb,0x20,0xe9,0xfd,0x71,0x20,0xea,0xda,0xed,0x20,0xeb,0xdd,0x53,0x20,0xec, + 0xba,0xcf,0x20,0xed,0xb3,0xfa,0xa0,0xee,0x9a,0xb1,0x20,0xef,0x81,0x67,0xa0,0xf0, + 0x9f,0x7d,0x20,0xf1,0x61,0x49,0xa0,0xf2,0x7f,0x5f,0x20,0xf3,0x4a,0x66,0x20,0xf4, + 0x5f,0x41,0x20,0xf5,0x21,0xd,0xa0,0xf6,0x3f,0x23,0x20,0xf7,0x0,0xef,0xa0,0xf8, + 0x1f,0x5,0x20,0xf8,0xe0,0xd1,0xa0,0xf9,0xfe,0xe7,0x20,0xfa,0xc0,0xb3,0xa0,0xfb, + 0xe8,0x3,0xa0,0xfc,0x7b,0xab,0xa0,0xfd,0xc7,0xbb,0x70,0x3,0x70,0xc6,0x20,0x4, + 0x29,0x58,0x20,0x5,0x50,0xa8,0x20,0x6,0x9,0x3a,0x20,0x7,0x30,0x8a,0x20,0x7, + 0xe9,0x1c,0x20,0x9,0x10,0x6c,0x20,0x9,0xc8,0xfe,0x20,0xa,0xf0,0x4e,0x20,0xb, + 0xb2,0x1a,0xa0,0xc,0xd0,0x30,0x20,0xd,0x91,0xfc,0xa0,0xe,0xb0,0x12,0x20,0xf, + 0x71,0xde,0xa0,0x10,0x99,0x2e,0xa0,0x11,0x51,0xc0,0xa0,0x12,0x79,0x10,0xa0,0x13, + 0x31,0xa2,0xa0,0x14,0x58,0xf2,0xa0,0x15,0x23,0xeb,0x90,0x16,0x38,0xc6,0x90,0x17, + 0x3,0xcd,0x90,0x18,0x18,0xa8,0x90,0x18,0xe3,0xaf,0x90,0x19,0xf8,0x8a,0x90,0x1a, + 0xc3,0x91,0x90,0x1b,0xe1,0xa7,0x10,0x1c,0xac,0xae,0x10,0x1d,0xc1,0x89,0x10,0x1e, + 0x8c,0x90,0x10,0x1f,0xa1,0x6b,0x10,0x20,0x6c,0x72,0x10,0x21,0x81,0x4d,0x10,0x22, + 0x4c,0x54,0x10,0x23,0x61,0x2f,0x10,0x24,0x2c,0x36,0x10,0x25,0x4a,0x4b,0x90,0x26, + 0xc,0x18,0x10,0x27,0x2a,0x2d,0x90,0x27,0xf5,0x34,0x90,0x29,0xa,0xf,0x90,0x29, + 0xd5,0x16,0x90,0x2a,0xe9,0xf1,0x90,0x2b,0xb4,0xf8,0x90,0x2c,0xc9,0xd3,0x90,0x2d, + 0x94,0xda,0x90,0x2e,0xa9,0xb5,0x90,0x2f,0x74,0xbc,0x90,0x30,0x89,0x97,0x90,0x30, + 0xe7,0x24,0x0,0x31,0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34, + 0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38, + 0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b, + 0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f, + 0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43, + 0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47, + 0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a, + 0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e, + 0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52, + 0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56, + 0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59, + 0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d, + 0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61, + 0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65, + 0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68, + 0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c, + 0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70, + 0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74, + 0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78, + 0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b, + 0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f, + 0x8e,0x7f,0x90,0x1,0x2,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x6,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x0,0x0,0xa3,0xd8,0x0,0x0,0x0,0x0,0xaf,0xc8,0x1,0x4,0x0, - 0x0,0xa1,0xb8,0x0,0x9,0x0,0x0,0xa8,0xc0,0x1,0x4,0x0,0x0,0xb6,0xd0,0x1, - 0xe,0x0,0x0,0xa8,0xc0,0x0,0x4,0x0,0x0,0xa8,0xc0,0x0,0x4,0x4c,0x4d,0x54, - 0x0,0x4e,0x5a,0x53,0x54,0x0,0x4e,0x5a,0x4d,0x54,0x0,0x4e,0x5a,0x44,0x54,0x0, - 0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x4e, - 0x5a,0x53,0x54,0x2d,0x31,0x32,0x4e,0x5a,0x44,0x54,0x2c,0x4d,0x39,0x2e,0x35,0x2e, - 0x30,0x2c,0x4d,0x34,0x2e,0x31,0x2e,0x30,0x2f,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Samoa - 0x0,0x0,0x1,0x10, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x4,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x10,0x80,0x0,0x0,0x0,0x91, - 0x5,0xfb,0x8,0xfa,0xd2,0x55,0xb0,0x1a,0x2b,0x30,0x30,0x1,0x2,0x3,0x4,0x0, - 0x0,0xb1,0x78,0x0,0x0,0xff,0xff,0x5f,0xf8,0x0,0x0,0xff,0xff,0x65,0x50,0x0, - 0x4,0xff,0xff,0x65,0x50,0x0,0x8,0xff,0xff,0x65,0x50,0x0,0xc,0x4c,0x4d,0x54, - 0x0,0x4e,0x53,0x54,0x0,0x42,0x53,0x54,0x0,0x53,0x53,0x54,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0, - 0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0, - 0x0,0x0,0x10,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x55, - 0xc8,0xe4,0x88,0xff,0xff,0xff,0xff,0x91,0x5,0xfb,0x8,0xff,0xff,0xff,0xff,0xfa, - 0xd2,0x55,0xb0,0x0,0x0,0x0,0x0,0x1a,0x2b,0x30,0x30,0x0,0x1,0x2,0x3,0x4, - 0x0,0x0,0xb1,0x78,0x0,0x0,0xff,0xff,0x5f,0xf8,0x0,0x0,0xff,0xff,0x65,0x50, - 0x0,0x4,0xff,0xff,0x65,0x50,0x0,0x8,0xff,0xff,0x65,0x50,0x0,0xc,0x4c,0x4d, - 0x54,0x0,0x4e,0x53,0x54,0x0,0x42,0x53,0x54,0x0,0x53,0x53,0x54,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x53,0x53,0x54,0x31,0x31,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Gambier - 0x0,0x0,0x0,0xad, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x9,0x80,0x0,0x0,0x0,0x94, - 0x50,0x48,0x4,0x0,0x1,0xff,0xff,0x81,0x7c,0x0,0x0,0xff,0xff,0x81,0x70,0x0, - 0x4,0x4c,0x4d,0x54,0x0,0x47,0x41,0x4d,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a, - 0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x9,0xf8,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xff,0xff,0xff,0xff,0x94,0x50,0x48,0x4,0x0,0x1,0xff,0xff,0x81,0x7c, - 0x0,0x0,0xff,0xff,0x81,0x70,0x0,0x4,0x4c,0x4d,0x54,0x0,0x47,0x41,0x4d,0x54, - 0x0,0x0,0x0,0x0,0x0,0xa,0x47,0x41,0x4d,0x54,0x39,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Kosrae - 0x0,0x0,0x0,0xe6, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x3,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x9,0x80,0x0,0x0,0x0,0xff, - 0x86,0x1b,0x50,0x36,0x8b,0x67,0x40,0x1,0x2,0x1,0x0,0x0,0x98,0xcc,0x0,0x0, - 0x0,0x0,0x9a,0xb0,0x0,0x4,0x0,0x0,0xa8,0xc0,0x0,0x4,0x0,0x0,0x9a,0xb0, - 0x0,0x4,0x4c,0x4d,0x54,0x0,0x4b,0x4f,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x9,0xf8, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x7e,0x36,0x1c,0x34,0xff, - 0xff,0xff,0xff,0xff,0x86,0x1b,0x50,0x0,0x0,0x0,0x0,0x36,0x8b,0x67,0x40,0x0, - 0x1,0x2,0x1,0x0,0x0,0x98,0xcc,0x0,0x0,0x0,0x0,0x9a,0xb0,0x0,0x4,0x0, - 0x0,0xa8,0xc0,0x0,0x4,0x0,0x0,0x9a,0xb0,0x0,0x4,0x4c,0x4d,0x54,0x0,0x4b, - 0x4f,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x4b,0x4f,0x53, - 0x54,0x2d,0x31,0x31,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Tahiti - 0x0,0x0,0x0,0xae, + 0x4,0x5,0x7,0x9,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, + 0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, + 0x8,0x9,0x8,0x9,0x6,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, + 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, + 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, + 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, + 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, + 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0xff,0xff,0xfa,0x24,0x0,0x0,0xff, + 0xff,0xfa,0xf,0x0,0x4,0x0,0x0,0x8,0x1f,0x1,0x8,0x0,0x0,0xe,0x10,0x1, + 0xc,0x0,0x0,0x0,0x0,0x0,0x10,0x0,0x0,0xe,0x10,0x1,0x8,0x0,0x0,0x0, + 0x0,0x0,0x10,0x0,0x0,0xe,0x10,0x0,0x8,0x0,0x0,0xe,0x10,0x1,0x8,0x0, + 0x0,0x0,0x0,0x0,0x10,0x4c,0x4d,0x54,0x0,0x44,0x4d,0x54,0x0,0x49,0x53,0x54, + 0x0,0x42,0x53,0x54,0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x0, + 0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x54,0x5a,0x69, + 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xe7,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x14,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0x57,0xd1,0xa,0xdc,0xff,0xff,0xff,0xff,0x9b,0x26,0xb3, + 0x91,0xff,0xff,0xff,0xff,0x9b,0xd6,0xb,0x11,0xff,0xff,0xff,0xff,0x9c,0xcf,0x30, + 0xa0,0xff,0xff,0xff,0xff,0x9d,0xa4,0xc3,0xa0,0xff,0xff,0xff,0xff,0x9e,0x9c,0x9d, + 0xa0,0xff,0xff,0xff,0xff,0x9f,0x97,0x1a,0xa0,0xff,0xff,0xff,0xff,0xa0,0x85,0xba, + 0x20,0xff,0xff,0xff,0xff,0xa1,0x76,0xfc,0xa0,0xff,0xff,0xff,0xff,0xa2,0x65,0x9c, + 0x20,0xff,0xff,0xff,0xff,0xa3,0x7b,0xc8,0xa0,0xff,0xff,0xff,0xff,0xa4,0x4e,0xb8, + 0xa0,0xff,0xff,0xff,0xff,0xa5,0x3f,0xfb,0x20,0xff,0xff,0xff,0xff,0xa5,0x94,0x3f, + 0x0,0xff,0xff,0xff,0xff,0xa6,0x25,0x60,0x20,0xff,0xff,0xff,0xff,0xa7,0x27,0xc6, + 0x20,0xff,0xff,0xff,0xff,0xa8,0x2a,0x2c,0x20,0xff,0xff,0xff,0xff,0xa8,0xeb,0xf8, + 0xa0,0xff,0xff,0xff,0xff,0xaa,0x0,0xd3,0xa0,0xff,0xff,0xff,0xff,0xaa,0xd5,0x15, + 0x20,0xff,0xff,0xff,0xff,0xab,0xe9,0xf0,0x20,0xff,0xff,0xff,0xff,0xac,0xc7,0x6c, + 0x20,0xff,0xff,0xff,0xff,0xad,0xc9,0xd2,0x20,0xff,0xff,0xff,0xff,0xae,0xa7,0x4e, + 0x20,0xff,0xff,0xff,0xff,0xaf,0xa0,0x79,0xa0,0xff,0xff,0xff,0xff,0xb0,0x87,0x30, + 0x20,0xff,0xff,0xff,0xff,0xb1,0x92,0xd0,0xa0,0xff,0xff,0xff,0xff,0xb2,0x70,0x4c, + 0xa0,0xff,0xff,0xff,0xff,0xb3,0x72,0xb2,0xa0,0xff,0xff,0xff,0xff,0xb4,0x50,0x2e, + 0xa0,0xff,0xff,0xff,0xff,0xb5,0x49,0x5a,0x20,0xff,0xff,0xff,0xff,0xb6,0x30,0x10, + 0xa0,0xff,0xff,0xff,0xff,0xb7,0x32,0x76,0xa0,0xff,0xff,0xff,0xff,0xb8,0xf,0xf2, + 0xa0,0xff,0xff,0xff,0xff,0xb9,0x12,0x58,0xa0,0xff,0xff,0xff,0xff,0xb9,0xef,0xd4, + 0xa0,0xff,0xff,0xff,0xff,0xba,0xe9,0x0,0x20,0xff,0xff,0xff,0xff,0xbb,0xd8,0xf1, + 0x20,0xff,0xff,0xff,0xff,0xbc,0xdb,0x57,0x20,0xff,0xff,0xff,0xff,0xbd,0xb8,0xd3, + 0x20,0xff,0xff,0xff,0xff,0xbe,0xb1,0xfe,0xa0,0xff,0xff,0xff,0xff,0xbf,0x98,0xb5, + 0x20,0xff,0xff,0xff,0xff,0xc0,0x9b,0x1b,0x20,0xff,0xff,0xff,0xff,0xc1,0x78,0x97, + 0x20,0xff,0xff,0xff,0xff,0xc2,0x7a,0xfd,0x20,0xff,0xff,0xff,0xff,0xc3,0x58,0x79, + 0x20,0xff,0xff,0xff,0xff,0xc4,0x51,0xa4,0xa0,0xff,0xff,0xff,0xff,0xc5,0x38,0x5b, + 0x20,0xff,0xff,0xff,0xff,0xc6,0x3a,0xc1,0x20,0xff,0xff,0xff,0xff,0xc7,0x58,0xd6, + 0xa0,0xff,0xff,0xff,0xff,0xc7,0xda,0x9,0xa0,0xff,0xff,0xff,0xff,0xd4,0x49,0xe0, + 0x20,0xff,0xff,0xff,0xff,0xd5,0x1e,0x21,0xa0,0xff,0xff,0xff,0xff,0xd6,0x4e,0xac, + 0x20,0xff,0xff,0xff,0xff,0xd7,0x2c,0x28,0x20,0xff,0xff,0xff,0xff,0xd8,0x2e,0x8e, + 0x20,0xff,0xff,0xff,0xff,0xd8,0xf9,0x95,0x20,0xff,0xff,0xff,0xff,0xda,0xe,0x70, + 0x20,0xff,0xff,0xff,0xff,0xda,0xeb,0xec,0x20,0xff,0xff,0xff,0xff,0xdb,0xe5,0x17, + 0xa0,0xff,0xff,0xff,0xff,0xdc,0xcb,0xce,0x20,0xff,0xff,0xff,0xff,0xdd,0xc4,0xf9, + 0xa0,0xff,0xff,0xff,0xff,0xde,0xb4,0xea,0xa0,0xff,0xff,0xff,0xff,0xdf,0xae,0x16, + 0x20,0xff,0xff,0xff,0xff,0xe0,0x94,0xcc,0xa0,0xff,0xff,0xff,0xff,0xe1,0x72,0x48, + 0xa0,0xff,0xff,0xff,0xff,0xe2,0x6b,0x74,0x20,0xff,0xff,0xff,0xff,0xe3,0x52,0x2a, + 0xa0,0xff,0xff,0xff,0xff,0xe4,0x54,0x90,0xa0,0xff,0xff,0xff,0xff,0xe5,0x32,0xc, + 0xa0,0xff,0xff,0xff,0xff,0xe6,0x3d,0xad,0x20,0xff,0xff,0xff,0xff,0xe7,0x1b,0x29, + 0x20,0xff,0xff,0xff,0xff,0xe8,0x14,0x54,0xa0,0xff,0xff,0xff,0xff,0xe8,0xfb,0xb, + 0x20,0xff,0xff,0xff,0xff,0xe9,0xfd,0x71,0x20,0xff,0xff,0xff,0xff,0xea,0xda,0xed, + 0x20,0xff,0xff,0xff,0xff,0xeb,0xdd,0x53,0x20,0xff,0xff,0xff,0xff,0xec,0xba,0xcf, + 0x20,0xff,0xff,0xff,0xff,0xed,0xb3,0xfa,0xa0,0xff,0xff,0xff,0xff,0xee,0x9a,0xb1, + 0x20,0xff,0xff,0xff,0xff,0xef,0x81,0x67,0xa0,0xff,0xff,0xff,0xff,0xf0,0x9f,0x7d, + 0x20,0xff,0xff,0xff,0xff,0xf1,0x61,0x49,0xa0,0xff,0xff,0xff,0xff,0xf2,0x7f,0x5f, + 0x20,0xff,0xff,0xff,0xff,0xf3,0x4a,0x66,0x20,0xff,0xff,0xff,0xff,0xf4,0x5f,0x41, + 0x20,0xff,0xff,0xff,0xff,0xf5,0x21,0xd,0xa0,0xff,0xff,0xff,0xff,0xf6,0x3f,0x23, + 0x20,0xff,0xff,0xff,0xff,0xf7,0x0,0xef,0xa0,0xff,0xff,0xff,0xff,0xf8,0x1f,0x5, + 0x20,0xff,0xff,0xff,0xff,0xf8,0xe0,0xd1,0xa0,0xff,0xff,0xff,0xff,0xf9,0xfe,0xe7, + 0x20,0xff,0xff,0xff,0xff,0xfa,0xc0,0xb3,0xa0,0xff,0xff,0xff,0xff,0xfb,0xe8,0x3, + 0xa0,0xff,0xff,0xff,0xff,0xfc,0x7b,0xab,0xa0,0xff,0xff,0xff,0xff,0xfd,0xc7,0xbb, + 0x70,0x0,0x0,0x0,0x0,0x3,0x70,0xc6,0x20,0x0,0x0,0x0,0x0,0x4,0x29,0x58, + 0x20,0x0,0x0,0x0,0x0,0x5,0x50,0xa8,0x20,0x0,0x0,0x0,0x0,0x6,0x9,0x3a, + 0x20,0x0,0x0,0x0,0x0,0x7,0x30,0x8a,0x20,0x0,0x0,0x0,0x0,0x7,0xe9,0x1c, + 0x20,0x0,0x0,0x0,0x0,0x9,0x10,0x6c,0x20,0x0,0x0,0x0,0x0,0x9,0xc8,0xfe, + 0x20,0x0,0x0,0x0,0x0,0xa,0xf0,0x4e,0x20,0x0,0x0,0x0,0x0,0xb,0xb2,0x1a, + 0xa0,0x0,0x0,0x0,0x0,0xc,0xd0,0x30,0x20,0x0,0x0,0x0,0x0,0xd,0x91,0xfc, + 0xa0,0x0,0x0,0x0,0x0,0xe,0xb0,0x12,0x20,0x0,0x0,0x0,0x0,0xf,0x71,0xde, + 0xa0,0x0,0x0,0x0,0x0,0x10,0x99,0x2e,0xa0,0x0,0x0,0x0,0x0,0x11,0x51,0xc0, + 0xa0,0x0,0x0,0x0,0x0,0x12,0x79,0x10,0xa0,0x0,0x0,0x0,0x0,0x13,0x31,0xa2, + 0xa0,0x0,0x0,0x0,0x0,0x14,0x58,0xf2,0xa0,0x0,0x0,0x0,0x0,0x15,0x23,0xeb, + 0x90,0x0,0x0,0x0,0x0,0x16,0x38,0xc6,0x90,0x0,0x0,0x0,0x0,0x17,0x3,0xcd, + 0x90,0x0,0x0,0x0,0x0,0x18,0x18,0xa8,0x90,0x0,0x0,0x0,0x0,0x18,0xe3,0xaf, + 0x90,0x0,0x0,0x0,0x0,0x19,0xf8,0x8a,0x90,0x0,0x0,0x0,0x0,0x1a,0xc3,0x91, + 0x90,0x0,0x0,0x0,0x0,0x1b,0xe1,0xa7,0x10,0x0,0x0,0x0,0x0,0x1c,0xac,0xae, + 0x10,0x0,0x0,0x0,0x0,0x1d,0xc1,0x89,0x10,0x0,0x0,0x0,0x0,0x1e,0x8c,0x90, + 0x10,0x0,0x0,0x0,0x0,0x1f,0xa1,0x6b,0x10,0x0,0x0,0x0,0x0,0x20,0x6c,0x72, + 0x10,0x0,0x0,0x0,0x0,0x21,0x81,0x4d,0x10,0x0,0x0,0x0,0x0,0x22,0x4c,0x54, + 0x10,0x0,0x0,0x0,0x0,0x23,0x61,0x2f,0x10,0x0,0x0,0x0,0x0,0x24,0x2c,0x36, + 0x10,0x0,0x0,0x0,0x0,0x25,0x4a,0x4b,0x90,0x0,0x0,0x0,0x0,0x26,0xc,0x18, + 0x10,0x0,0x0,0x0,0x0,0x27,0x2a,0x2d,0x90,0x0,0x0,0x0,0x0,0x27,0xf5,0x34, + 0x90,0x0,0x0,0x0,0x0,0x29,0xa,0xf,0x90,0x0,0x0,0x0,0x0,0x29,0xd5,0x16, + 0x90,0x0,0x0,0x0,0x0,0x2a,0xe9,0xf1,0x90,0x0,0x0,0x0,0x0,0x2b,0xb4,0xf8, + 0x90,0x0,0x0,0x0,0x0,0x2c,0xc9,0xd3,0x90,0x0,0x0,0x0,0x0,0x2d,0x94,0xda, + 0x90,0x0,0x0,0x0,0x0,0x2e,0xa9,0xb5,0x90,0x0,0x0,0x0,0x0,0x2f,0x74,0xbc, + 0x90,0x0,0x0,0x0,0x0,0x30,0x89,0x97,0x90,0x0,0x0,0x0,0x0,0x30,0xe7,0x24, + 0x0,0x0,0x0,0x0,0x0,0x31,0x5d,0xd9,0x10,0x0,0x0,0x0,0x0,0x32,0x72,0xb4, + 0x10,0x0,0x0,0x0,0x0,0x33,0x3d,0xbb,0x10,0x0,0x0,0x0,0x0,0x34,0x52,0x96, + 0x10,0x0,0x0,0x0,0x0,0x35,0x1d,0x9d,0x10,0x0,0x0,0x0,0x0,0x36,0x32,0x78, + 0x10,0x0,0x0,0x0,0x0,0x36,0xfd,0x7f,0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0x94, + 0x90,0x0,0x0,0x0,0x0,0x38,0xdd,0x61,0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0x76, + 0x90,0x0,0x0,0x0,0x0,0x3a,0xbd,0x43,0x10,0x0,0x0,0x0,0x0,0x3b,0xdb,0x58, + 0x90,0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x3a, + 0x90,0x0,0x0,0x0,0x0,0x3e,0x86,0x41,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x1c, + 0x90,0x0,0x0,0x0,0x0,0x40,0x66,0x23,0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x39, + 0x10,0x0,0x0,0x0,0x0,0x42,0x46,0x5,0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x1b, + 0x10,0x0,0x0,0x0,0x0,0x44,0x25,0xe7,0x90,0x0,0x0,0x0,0x0,0x45,0x43,0xfd, + 0x10,0x0,0x0,0x0,0x0,0x46,0x5,0xc9,0x90,0x0,0x0,0x0,0x0,0x47,0x23,0xdf, + 0x10,0x0,0x0,0x0,0x0,0x47,0xee,0xe6,0x10,0x0,0x0,0x0,0x0,0x49,0x3,0xc1, + 0x10,0x0,0x0,0x0,0x0,0x49,0xce,0xc8,0x10,0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3, + 0x10,0x0,0x0,0x0,0x0,0x4b,0xae,0xaa,0x10,0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf, + 0x90,0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c,0x10,0x0,0x0,0x0,0x0,0x4e,0xac,0xa1, + 0x90,0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e,0x10,0x0,0x0,0x0,0x0,0x50,0x8c,0x83, + 0x90,0x0,0x0,0x0,0x0,0x51,0x57,0x8a,0x90,0x0,0x0,0x0,0x0,0x52,0x6c,0x65, + 0x90,0x0,0x0,0x0,0x0,0x53,0x37,0x6c,0x90,0x0,0x0,0x0,0x0,0x54,0x4c,0x47, + 0x90,0x0,0x0,0x0,0x0,0x55,0x17,0x4e,0x90,0x0,0x0,0x0,0x0,0x56,0x2c,0x29, + 0x90,0x0,0x0,0x0,0x0,0x56,0xf7,0x30,0x90,0x0,0x0,0x0,0x0,0x58,0x15,0x46, + 0x10,0x0,0x0,0x0,0x0,0x58,0xd7,0x12,0x90,0x0,0x0,0x0,0x0,0x59,0xf5,0x28, + 0x10,0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4,0x90,0x0,0x0,0x0,0x0,0x5b,0xd5,0xa, + 0x10,0x0,0x0,0x0,0x0,0x5c,0xa0,0x11,0x10,0x0,0x0,0x0,0x0,0x5d,0xb4,0xec, + 0x10,0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3,0x10,0x0,0x0,0x0,0x0,0x5f,0x94,0xce, + 0x10,0x0,0x0,0x0,0x0,0x60,0x5f,0xd5,0x10,0x0,0x0,0x0,0x0,0x61,0x7d,0xea, + 0x90,0x0,0x0,0x0,0x0,0x62,0x3f,0xb7,0x10,0x0,0x0,0x0,0x0,0x63,0x5d,0xcc, + 0x90,0x0,0x0,0x0,0x0,0x64,0x1f,0x99,0x10,0x0,0x0,0x0,0x0,0x65,0x3d,0xae, + 0x90,0x0,0x0,0x0,0x0,0x66,0x8,0xb5,0x90,0x0,0x0,0x0,0x0,0x67,0x1d,0x90, + 0x90,0x0,0x0,0x0,0x0,0x67,0xe8,0x97,0x90,0x0,0x0,0x0,0x0,0x68,0xfd,0x72, + 0x90,0x0,0x0,0x0,0x0,0x69,0xc8,0x79,0x90,0x0,0x0,0x0,0x0,0x6a,0xdd,0x54, + 0x90,0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b,0x90,0x0,0x0,0x0,0x0,0x6c,0xc6,0x71, + 0x10,0x0,0x0,0x0,0x0,0x6d,0x88,0x3d,0x90,0x0,0x0,0x0,0x0,0x6e,0xa6,0x53, + 0x10,0x0,0x0,0x0,0x0,0x6f,0x68,0x1f,0x90,0x0,0x0,0x0,0x0,0x70,0x86,0x35, + 0x10,0x0,0x0,0x0,0x0,0x71,0x51,0x3c,0x10,0x0,0x0,0x0,0x0,0x72,0x66,0x17, + 0x10,0x0,0x0,0x0,0x0,0x73,0x31,0x1e,0x10,0x0,0x0,0x0,0x0,0x74,0x45,0xf9, + 0x10,0x0,0x0,0x0,0x0,0x75,0x11,0x0,0x10,0x0,0x0,0x0,0x0,0x76,0x2f,0x15, + 0x90,0x0,0x0,0x0,0x0,0x76,0xf0,0xe2,0x10,0x0,0x0,0x0,0x0,0x78,0xe,0xf7, + 0x90,0x0,0x0,0x0,0x0,0x78,0xd0,0xc4,0x10,0x0,0x0,0x0,0x0,0x79,0xee,0xd9, + 0x90,0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6,0x10,0x0,0x0,0x0,0x0,0x7b,0xce,0xbb, + 0x90,0x0,0x0,0x0,0x0,0x7c,0x99,0xc2,0x90,0x0,0x0,0x0,0x0,0x7d,0xae,0x9d, + 0x90,0x0,0x0,0x0,0x0,0x7e,0x79,0xa4,0x90,0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f, + 0x90,0x0,0x1,0x2,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x6, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x7,0x9,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, + 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8, + 0x9,0x8,0x9,0x6,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, + 0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, + 0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, + 0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, + 0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9, + 0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0xff,0xff,0xfa,0x24,0x0,0x0,0xff,0xff, + 0xfa,0xf,0x0,0x4,0x0,0x0,0x8,0x1f,0x1,0x8,0x0,0x0,0xe,0x10,0x1,0xc, + 0x0,0x0,0x0,0x0,0x0,0x10,0x0,0x0,0xe,0x10,0x1,0x8,0x0,0x0,0x0,0x0, + 0x0,0x10,0x0,0x0,0xe,0x10,0x0,0x8,0x0,0x0,0xe,0x10,0x1,0x8,0x0,0x0, + 0x0,0x0,0x0,0x10,0x4c,0x4d,0x54,0x0,0x44,0x4d,0x54,0x0,0x49,0x53,0x54,0x0, + 0x42,0x53,0x54,0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x0,0x0, + 0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0xa,0x47,0x4d,0x54, + 0x30,0x49,0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2f,0x31,0x2c,0x4d,0x31, + 0x30,0x2e,0x35,0x2e,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Tallinn + 0x0,0x0,0x8,0x8b, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x9,0x80,0x0,0x0,0x0,0x94, - 0x50,0x55,0xb8,0x0,0x1,0xff,0xff,0x73,0xc8,0x0,0x0,0xff,0xff,0x73,0x60,0x0, - 0x4,0x4c,0x4d,0x54,0x0,0x54,0x41,0x48,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a, - 0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x9,0xf8,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xff,0xff,0xff,0xff,0x94,0x50,0x55,0xb8,0x0,0x1,0xff,0xff,0x73,0xc8, - 0x0,0x0,0xff,0xff,0x73,0x60,0x0,0x4,0x4c,0x4d,0x54,0x0,0x54,0x41,0x48,0x54, - 0x0,0x0,0x0,0x0,0x0,0xa,0x54,0x41,0x48,0x54,0x31,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Guadalcanal - 0x0,0x0,0x0,0xac, + 0x0,0x0,0x0,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x7c,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x22,0x80,0x0,0x0,0x0,0x9e, + 0x59,0x2d,0xcc,0x9e,0xb9,0x90,0x90,0x9f,0x84,0x97,0x90,0xa1,0x0,0x2b,0x70,0xa4, + 0x73,0x6f,0x4c,0xc8,0xb0,0xb5,0xe0,0xca,0xc6,0x97,0x50,0xcc,0xe7,0x4b,0x10,0xcd, + 0xa9,0x17,0x90,0xce,0xa2,0x43,0x10,0xcf,0x92,0x34,0x10,0xd0,0x74,0xcb,0xe0,0x15, + 0x27,0xa7,0xd0,0x16,0x18,0xdc,0x40,0x17,0x8,0xdb,0x50,0x17,0xfa,0xf,0xc0,0x18, + 0xea,0xe,0xd0,0x19,0xdb,0x43,0x40,0x1a,0xcc,0x93,0xd0,0x1b,0xbc,0xa0,0xf0,0x1c, + 0xac,0x91,0xf0,0x1d,0x9c,0x82,0xf0,0x1e,0x8c,0x73,0xf0,0x1f,0x7c,0x64,0xf0,0x20, + 0x6c,0x55,0xf0,0x21,0x5c,0x46,0xf0,0x22,0x4c,0x37,0xf0,0x23,0x3c,0x28,0xf0,0x24, + 0x2c,0x19,0xf0,0x25,0x1c,0x19,0x0,0x26,0xc,0xa,0x0,0x27,0x5,0x35,0x80,0x27, + 0xf5,0x26,0x80,0x28,0xe5,0x17,0x80,0x29,0xd5,0x8,0x80,0x2a,0xc4,0xf9,0x80,0x2b, + 0xb4,0xea,0x80,0x2c,0xa4,0xdb,0x80,0x2d,0x94,0xcc,0x80,0x2e,0x84,0xbd,0x80,0x2f, + 0x74,0xae,0x80,0x30,0x64,0x9f,0x80,0x31,0x5d,0xcb,0x0,0x32,0x72,0xa6,0x0,0x33, + 0x3d,0xad,0x0,0x34,0x52,0x88,0x0,0x35,0x1d,0x8f,0x0,0x36,0x6,0xbe,0x50,0x36, + 0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x3c,0xa6,0x5f,0x90,0x3d, + 0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f,0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41, + 0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43,0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45, + 0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49, + 0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c, + 0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e,0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50, + 0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54, + 0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56,0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58, + 0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59,0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b, + 0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d,0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f, + 0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61,0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63, + 0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65,0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67, + 0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68,0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a, + 0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c,0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e, + 0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70,0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72, + 0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74,0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76, + 0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79, + 0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d, + 0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x1,0x4,0x2,0x3,0x1, + 0x5,0x6,0x7,0x3,0x2,0x3,0x2,0x6,0x8,0x6,0x8,0x6,0x8,0x6,0x8,0x9, + 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, + 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xf,0xd,0xe,0x5,0xe, + 0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe, + 0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe, + 0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe, + 0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe, + 0xd,0xe,0xd,0xe,0xd,0xe,0xd,0x0,0x0,0x17,0x34,0x0,0x0,0x0,0x0,0x17, + 0x34,0x0,0x4,0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0xe,0x10,0x0,0xd,0x0, + 0x0,0xe,0x10,0x0,0xd,0x0,0x0,0x1c,0x20,0x0,0x11,0x0,0x0,0x2a,0x30,0x0, + 0x15,0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0x38,0x40,0x1,0x19,0x0,0x0,0x2a, + 0x30,0x0,0x15,0x0,0x0,0x38,0x40,0x1,0x19,0x0,0x0,0x2a,0x30,0x1,0x1d,0x0, + 0x0,0x1c,0x20,0x0,0x11,0x0,0x0,0x1c,0x20,0x0,0x11,0x0,0x0,0x2a,0x30,0x1, + 0x1d,0x0,0x0,0x2a,0x30,0x1,0x1d,0x4c,0x4d,0x54,0x0,0x54,0x4d,0x54,0x0,0x43, + 0x45,0x53,0x54,0x0,0x43,0x45,0x54,0x0,0x45,0x45,0x54,0x0,0x4d,0x53,0x4b,0x0, + 0x4d,0x53,0x44,0x0,0x45,0x45,0x53,0x54,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0, + 0x0,0x0,0x1,0x1,0x1,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x10,0x0,0x0,0x0,0x10,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7d,0x0,0x0,0x0, + 0x10,0x0,0x0,0x0,0x22,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff, + 0xff,0x56,0xb6,0xcc,0xcc,0xff,0xff,0xff,0xff,0x9e,0x59,0x2d,0xcc,0xff,0xff,0xff, + 0xff,0x9e,0xb9,0x90,0x90,0xff,0xff,0xff,0xff,0x9f,0x84,0x97,0x90,0xff,0xff,0xff, + 0xff,0xa1,0x0,0x2b,0x70,0xff,0xff,0xff,0xff,0xa4,0x73,0x6f,0x4c,0xff,0xff,0xff, + 0xff,0xc8,0xb0,0xb5,0xe0,0xff,0xff,0xff,0xff,0xca,0xc6,0x97,0x50,0xff,0xff,0xff, + 0xff,0xcc,0xe7,0x4b,0x10,0xff,0xff,0xff,0xff,0xcd,0xa9,0x17,0x90,0xff,0xff,0xff, + 0xff,0xce,0xa2,0x43,0x10,0xff,0xff,0xff,0xff,0xcf,0x92,0x34,0x10,0xff,0xff,0xff, + 0xff,0xd0,0x74,0xcb,0xe0,0x0,0x0,0x0,0x0,0x15,0x27,0xa7,0xd0,0x0,0x0,0x0, + 0x0,0x16,0x18,0xdc,0x40,0x0,0x0,0x0,0x0,0x17,0x8,0xdb,0x50,0x0,0x0,0x0, + 0x0,0x17,0xfa,0xf,0xc0,0x0,0x0,0x0,0x0,0x18,0xea,0xe,0xd0,0x0,0x0,0x0, + 0x0,0x19,0xdb,0x43,0x40,0x0,0x0,0x0,0x0,0x1a,0xcc,0x93,0xd0,0x0,0x0,0x0, + 0x0,0x1b,0xbc,0xa0,0xf0,0x0,0x0,0x0,0x0,0x1c,0xac,0x91,0xf0,0x0,0x0,0x0, + 0x0,0x1d,0x9c,0x82,0xf0,0x0,0x0,0x0,0x0,0x1e,0x8c,0x73,0xf0,0x0,0x0,0x0, + 0x0,0x1f,0x7c,0x64,0xf0,0x0,0x0,0x0,0x0,0x20,0x6c,0x55,0xf0,0x0,0x0,0x0, + 0x0,0x21,0x5c,0x46,0xf0,0x0,0x0,0x0,0x0,0x22,0x4c,0x37,0xf0,0x0,0x0,0x0, + 0x0,0x23,0x3c,0x28,0xf0,0x0,0x0,0x0,0x0,0x24,0x2c,0x19,0xf0,0x0,0x0,0x0, + 0x0,0x25,0x1c,0x19,0x0,0x0,0x0,0x0,0x0,0x26,0xc,0xa,0x0,0x0,0x0,0x0, + 0x0,0x27,0x5,0x35,0x80,0x0,0x0,0x0,0x0,0x27,0xf5,0x26,0x80,0x0,0x0,0x0, + 0x0,0x28,0xe5,0x17,0x80,0x0,0x0,0x0,0x0,0x29,0xd5,0x8,0x80,0x0,0x0,0x0, + 0x0,0x2a,0xc4,0xf9,0x80,0x0,0x0,0x0,0x0,0x2b,0xb4,0xea,0x80,0x0,0x0,0x0, + 0x0,0x2c,0xa4,0xdb,0x80,0x0,0x0,0x0,0x0,0x2d,0x94,0xcc,0x80,0x0,0x0,0x0, + 0x0,0x2e,0x84,0xbd,0x80,0x0,0x0,0x0,0x0,0x2f,0x74,0xae,0x80,0x0,0x0,0x0, + 0x0,0x30,0x64,0x9f,0x80,0x0,0x0,0x0,0x0,0x31,0x5d,0xcb,0x0,0x0,0x0,0x0, + 0x0,0x32,0x72,0xa6,0x0,0x0,0x0,0x0,0x0,0x33,0x3d,0xad,0x0,0x0,0x0,0x0, + 0x0,0x34,0x52,0x88,0x0,0x0,0x0,0x0,0x0,0x35,0x1d,0x8f,0x0,0x0,0x0,0x0, + 0x0,0x36,0x6,0xbe,0x50,0x0,0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0, + 0x0,0x36,0xfd,0x7f,0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0, + 0x0,0x3c,0xa6,0x5f,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0, + 0x0,0x3e,0x86,0x41,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0, + 0x0,0x40,0x66,0x23,0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0, + 0x0,0x42,0x46,0x5,0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0, + 0x0,0x44,0x25,0xe7,0x90,0x0,0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0, + 0x0,0x46,0x5,0xc9,0x90,0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0, + 0x0,0x47,0xee,0xe6,0x10,0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0, + 0x0,0x49,0xce,0xc8,0x10,0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0, + 0x0,0x4b,0xae,0xaa,0x10,0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0, + 0x0,0x4d,0x8e,0x8c,0x10,0x0,0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0, + 0x0,0x4f,0x6e,0x6e,0x10,0x0,0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0, + 0x0,0x51,0x57,0x8a,0x90,0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0, + 0x0,0x53,0x37,0x6c,0x90,0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0, + 0x0,0x55,0x17,0x4e,0x90,0x0,0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0, + 0x0,0x56,0xf7,0x30,0x90,0x0,0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0, + 0x0,0x58,0xd7,0x12,0x90,0x0,0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0, + 0x0,0x5a,0xb6,0xf4,0x90,0x0,0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0, + 0x0,0x5c,0xa0,0x11,0x10,0x0,0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0, + 0x0,0x5e,0x7f,0xf3,0x10,0x0,0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0, + 0x0,0x60,0x5f,0xd5,0x10,0x0,0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0, + 0x0,0x62,0x3f,0xb7,0x10,0x0,0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0, + 0x0,0x64,0x1f,0x99,0x10,0x0,0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0, + 0x0,0x66,0x8,0xb5,0x90,0x0,0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0, + 0x0,0x67,0xe8,0x97,0x90,0x0,0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0, + 0x0,0x69,0xc8,0x79,0x90,0x0,0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0, + 0x0,0x6b,0xa8,0x5b,0x90,0x0,0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0, + 0x0,0x6d,0x88,0x3d,0x90,0x0,0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0, + 0x0,0x6f,0x68,0x1f,0x90,0x0,0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0, + 0x0,0x71,0x51,0x3c,0x10,0x0,0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0, + 0x0,0x73,0x31,0x1e,0x10,0x0,0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0, + 0x0,0x75,0x11,0x0,0x10,0x0,0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0, + 0x0,0x76,0xf0,0xe2,0x10,0x0,0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0, + 0x0,0x78,0xd0,0xc4,0x10,0x0,0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0, + 0x0,0x7a,0xb0,0xa6,0x10,0x0,0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0, + 0x0,0x7c,0x99,0xc2,0x90,0x0,0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0, + 0x0,0x7e,0x79,0xa4,0x90,0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x1,0x4, + 0x2,0x3,0x1,0x5,0x6,0x7,0x3,0x2,0x3,0x2,0x6,0x8,0x6,0x8,0x6,0x8, + 0x6,0x8,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xb,0xc,0xb,0xc,0xb, + 0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xf,0xd, + 0xe,0x5,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd, + 0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd, + 0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd, + 0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd, + 0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0x0,0x0,0x17,0x34,0x0,0x0, + 0x0,0x0,0x17,0x34,0x0,0x4,0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0xe,0x10, + 0x0,0xd,0x0,0x0,0xe,0x10,0x0,0xd,0x0,0x0,0x1c,0x20,0x0,0x11,0x0,0x0, + 0x2a,0x30,0x0,0x15,0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0x38,0x40,0x1,0x19, + 0x0,0x0,0x2a,0x30,0x0,0x15,0x0,0x0,0x38,0x40,0x1,0x19,0x0,0x0,0x2a,0x30, + 0x1,0x1d,0x0,0x0,0x1c,0x20,0x0,0x11,0x0,0x0,0x1c,0x20,0x0,0x11,0x0,0x0, + 0x2a,0x30,0x1,0x1d,0x0,0x0,0x2a,0x30,0x1,0x1d,0x4c,0x4d,0x54,0x0,0x54,0x4d, + 0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x43,0x45,0x54,0x0,0x45,0x45,0x54,0x0,0x4d, + 0x53,0x4b,0x0,0x4d,0x53,0x44,0x0,0x45,0x45,0x53,0x54,0x0,0x0,0x0,0x1,0x1, + 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0xa,0x45,0x45,0x54, + 0x2d,0x32,0x45,0x45,0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2f,0x33,0x2c, + 0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30,0x2f,0x34,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Sarajevo + 0x0,0x0,0x7,0xa5, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x94, - 0x4f,0x33,0x8c,0x0,0x1,0x0,0x0,0x95,0xf4,0x0,0x0,0x0,0x0,0x9a,0xb0,0x0, - 0x4,0x4c,0x4d,0x54,0x0,0x53,0x42,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x79,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0xca, + 0x2,0x35,0xe0,0xcc,0xe7,0x4b,0x10,0xcd,0xa9,0x17,0x90,0xce,0xa2,0x43,0x10,0xcf, + 0x92,0x34,0x10,0xd0,0x82,0x25,0x10,0xd0,0xfa,0x1,0x70,0xd1,0xa1,0x8c,0x10,0xd2, + 0x4e,0x40,0x90,0x18,0x45,0x5f,0x70,0x18,0xe3,0xaf,0x90,0x19,0xd3,0xa0,0x90,0x1a, + 0xc3,0x91,0x90,0x1b,0xbc,0xbd,0x10,0x1c,0xac,0xae,0x10,0x1d,0x9c,0x9f,0x10,0x1e, + 0x8c,0x90,0x10,0x1f,0x7c,0x81,0x10,0x20,0x6c,0x72,0x10,0x21,0x5c,0x63,0x10,0x22, + 0x4c,0x54,0x10,0x23,0x3c,0x45,0x10,0x24,0x2c,0x36,0x10,0x25,0x1c,0x27,0x10,0x26, + 0xc,0x18,0x10,0x27,0x5,0x43,0x90,0x27,0xf5,0x34,0x90,0x28,0xe5,0x25,0x90,0x29, + 0xd5,0x16,0x90,0x2a,0xc5,0x7,0x90,0x2b,0xb4,0xf8,0x90,0x2c,0xa4,0xe9,0x90,0x2d, + 0x94,0xda,0x90,0x2e,0x84,0xcb,0x90,0x2f,0x74,0xbc,0x90,0x30,0x64,0xad,0x90,0x31, + 0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34,0x52,0x96,0x10,0x35, + 0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x38, + 0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b,0xdb,0x58,0x90,0x3c, + 0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f,0x9b,0x1c,0x90,0x40, + 0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43,0x64,0x1b,0x10,0x44, + 0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47, + 0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b, + 0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e,0xac,0xa1,0x90,0x4f, + 0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53, + 0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56,0x2c,0x29,0x90,0x56, + 0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59,0xf5,0x28,0x10,0x5a, + 0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d,0xb4,0xec,0x10,0x5e, + 0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61,0x7d,0xea,0x90,0x62, + 0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65,0x3d,0xae,0x90,0x66, + 0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68,0xfd,0x72,0x90,0x69, + 0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c,0xc6,0x71,0x10,0x6d, + 0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70,0x86,0x35,0x10,0x71, + 0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74,0x45,0xf9,0x10,0x75, + 0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78, + 0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c, + 0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x1, + 0x4,0x2,0x3,0x2,0x3,0x2,0x1,0x3,0x2,0x1,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x0,0x0,0x13,0x38,0x0,0x0,0x0,0x0, + 0xe,0x10,0x0,0x4,0x0,0x0,0xe,0x10,0x0,0x4,0x0,0x0,0x1c,0x20,0x1,0x8, + 0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0xe,0x10, + 0x0,0x4,0x4c,0x4d,0x54,0x0,0x43,0x45,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x0, + 0x0,0x1,0x1,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x54,0x5a,0x69, 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0x94,0x4f,0x33,0x8c,0x0,0x1,0x0,0x0,0x95,0xf4,0x0, - 0x0,0x0,0x0,0x9a,0xb0,0x0,0x4,0x4c,0x4d,0x54,0x0,0x53,0x42,0x54,0x0,0x0, - 0x0,0x0,0x0,0xa,0x53,0x42,0x54,0x2d,0x31,0x31,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Funafuti - 0x0,0x0,0x0,0x96, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x4,0x0,0x0,0xa8,0xc0,0x0, - 0x0,0x54,0x56,0x54,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0, - 0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x7e, - 0x36,0xc,0xfc,0x0,0x1,0x0,0x0,0xa8,0x4,0x0,0x0,0x0,0x0,0xa8,0xc0,0x0, - 0x4,0x4c,0x4d,0x54,0x0,0x54,0x56,0x54,0x0,0x0,0x0,0x0,0x0,0xa,0x54,0x56, - 0x54,0x2d,0x31,0x32,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Kwajalein - 0x0,0x0,0x0,0xed, + 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x7a,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0xd,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0x5e,0x3c,0xf0,0x48,0xff,0xff,0xff,0xff,0xca,0x2,0x35, + 0xe0,0xff,0xff,0xff,0xff,0xcc,0xe7,0x4b,0x10,0xff,0xff,0xff,0xff,0xcd,0xa9,0x17, + 0x90,0xff,0xff,0xff,0xff,0xce,0xa2,0x43,0x10,0xff,0xff,0xff,0xff,0xcf,0x92,0x34, + 0x10,0xff,0xff,0xff,0xff,0xd0,0x82,0x25,0x10,0xff,0xff,0xff,0xff,0xd0,0xfa,0x1, + 0x70,0xff,0xff,0xff,0xff,0xd1,0xa1,0x8c,0x10,0xff,0xff,0xff,0xff,0xd2,0x4e,0x40, + 0x90,0x0,0x0,0x0,0x0,0x18,0x45,0x5f,0x70,0x0,0x0,0x0,0x0,0x18,0xe3,0xaf, + 0x90,0x0,0x0,0x0,0x0,0x19,0xd3,0xa0,0x90,0x0,0x0,0x0,0x0,0x1a,0xc3,0x91, + 0x90,0x0,0x0,0x0,0x0,0x1b,0xbc,0xbd,0x10,0x0,0x0,0x0,0x0,0x1c,0xac,0xae, + 0x10,0x0,0x0,0x0,0x0,0x1d,0x9c,0x9f,0x10,0x0,0x0,0x0,0x0,0x1e,0x8c,0x90, + 0x10,0x0,0x0,0x0,0x0,0x1f,0x7c,0x81,0x10,0x0,0x0,0x0,0x0,0x20,0x6c,0x72, + 0x10,0x0,0x0,0x0,0x0,0x21,0x5c,0x63,0x10,0x0,0x0,0x0,0x0,0x22,0x4c,0x54, + 0x10,0x0,0x0,0x0,0x0,0x23,0x3c,0x45,0x10,0x0,0x0,0x0,0x0,0x24,0x2c,0x36, + 0x10,0x0,0x0,0x0,0x0,0x25,0x1c,0x27,0x10,0x0,0x0,0x0,0x0,0x26,0xc,0x18, + 0x10,0x0,0x0,0x0,0x0,0x27,0x5,0x43,0x90,0x0,0x0,0x0,0x0,0x27,0xf5,0x34, + 0x90,0x0,0x0,0x0,0x0,0x28,0xe5,0x25,0x90,0x0,0x0,0x0,0x0,0x29,0xd5,0x16, + 0x90,0x0,0x0,0x0,0x0,0x2a,0xc5,0x7,0x90,0x0,0x0,0x0,0x0,0x2b,0xb4,0xf8, + 0x90,0x0,0x0,0x0,0x0,0x2c,0xa4,0xe9,0x90,0x0,0x0,0x0,0x0,0x2d,0x94,0xda, + 0x90,0x0,0x0,0x0,0x0,0x2e,0x84,0xcb,0x90,0x0,0x0,0x0,0x0,0x2f,0x74,0xbc, + 0x90,0x0,0x0,0x0,0x0,0x30,0x64,0xad,0x90,0x0,0x0,0x0,0x0,0x31,0x5d,0xd9, + 0x10,0x0,0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d,0xbb, + 0x10,0x0,0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d,0x9d, + 0x10,0x0,0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd,0x7f, + 0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd,0x61, + 0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd,0x43, + 0x10,0x0,0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f, + 0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86,0x41, + 0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66,0x23, + 0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46,0x5, + 0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25,0xe7, + 0x90,0x0,0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5,0xc9, + 0x90,0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee,0xe6, + 0x10,0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce,0xc8, + 0x10,0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae,0xaa, + 0x10,0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c, + 0x10,0x0,0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e, + 0x10,0x0,0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57,0x8a, + 0x90,0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37,0x6c, + 0x90,0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17,0x4e, + 0x90,0x0,0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7,0x30, + 0x90,0x0,0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7,0x12, + 0x90,0x0,0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4, + 0x90,0x0,0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0,0x11, + 0x10,0x0,0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3, + 0x10,0x0,0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f,0xd5, + 0x10,0x0,0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f,0xb7, + 0x10,0x0,0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f,0x99, + 0x10,0x0,0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8,0xb5, + 0x90,0x0,0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8,0x97, + 0x90,0x0,0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8,0x79, + 0x90,0x0,0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b, + 0x90,0x0,0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88,0x3d, + 0x90,0x0,0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68,0x1f, + 0x90,0x0,0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51,0x3c, + 0x10,0x0,0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31,0x1e, + 0x10,0x0,0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11,0x0, + 0x10,0x0,0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0,0xe2, + 0x10,0x0,0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0,0xc4, + 0x10,0x0,0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6, + 0x10,0x0,0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99,0xc2, + 0x90,0x0,0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79,0xa4, + 0x90,0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x1,0x4,0x2,0x3,0x2,0x3, + 0x2,0x1,0x3,0x2,0x1,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x0,0x0,0x13,0x38,0x0,0x0,0x0,0x0,0xe,0x10,0x0,0x4,0x0, + 0x0,0xe,0x10,0x0,0x4,0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0x1c,0x20,0x1, + 0x8,0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0xe,0x10,0x0,0x4,0x4c,0x4d,0x54, + 0x0,0x43,0x45,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x0,0x0,0x1,0x1,0x0,0x1, + 0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0xa,0x43,0x45,0x54,0x2d,0x31,0x43,0x45, + 0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e, + 0x30,0x2f,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Andorra + 0x0,0x0,0x6,0xd7, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x3,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0xff, - 0x86,0x1b,0x50,0x2c,0x74,0xbc,0xc0,0x1,0x2,0x3,0x0,0x0,0x9c,0xe0,0x0,0x0, - 0x0,0x0,0x9a,0xb0,0x0,0x4,0xff,0xff,0x57,0x40,0x0,0x8,0x0,0x0,0xa8,0xc0, - 0x0,0x4,0x4c,0x4d,0x54,0x0,0x4d,0x48,0x54,0x0,0x4b,0x57,0x41,0x54,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0, - 0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0, - 0x0,0x0,0xd,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x7e, - 0x36,0x18,0x20,0xff,0xff,0xff,0xff,0xff,0x86,0x1b,0x50,0x0,0x0,0x0,0x0,0x2c, - 0x74,0xbc,0xc0,0x0,0x1,0x2,0x3,0x0,0x0,0x9c,0xe0,0x0,0x0,0x0,0x0,0x9a, - 0xb0,0x0,0x4,0xff,0xff,0x57,0x40,0x0,0x8,0x0,0x0,0xa8,0xc0,0x0,0x4,0x4c, - 0x4d,0x54,0x0,0x4d,0x48,0x54,0x0,0x4b,0x57,0x41,0x54,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0xa,0x4d,0x48,0x54,0x2d,0x31,0x32,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Pitcairn - 0x0,0x0,0x0,0xcb, + 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x6c,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x11,0x80,0x0,0x0,0x0,0xd4, + 0x41,0xdb,0x0,0x1c,0xac,0xae,0x10,0x1d,0x9c,0x9f,0x10,0x1e,0x8c,0x90,0x10,0x1f, + 0x7c,0x81,0x10,0x20,0x6c,0x72,0x10,0x21,0x5c,0x63,0x10,0x22,0x4c,0x54,0x10,0x23, + 0x3c,0x45,0x10,0x24,0x2c,0x36,0x10,0x25,0x1c,0x27,0x10,0x26,0xc,0x18,0x10,0x27, + 0x5,0x43,0x90,0x27,0xf5,0x34,0x90,0x28,0xe5,0x25,0x90,0x29,0xd5,0x16,0x90,0x2a, + 0xc5,0x7,0x90,0x2b,0xb4,0xf8,0x90,0x2c,0xa4,0xe9,0x90,0x2d,0x94,0xda,0x90,0x2e, + 0x84,0xcb,0x90,0x2f,0x74,0xbc,0x90,0x30,0x64,0xad,0x90,0x31,0x5d,0xd9,0x10,0x32, + 0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34,0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36, + 0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39, + 0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b,0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d, + 0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f,0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41, + 0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43,0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45, + 0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49, + 0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c, + 0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e,0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50, + 0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54, + 0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56,0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58, + 0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59,0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b, + 0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d,0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f, + 0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61,0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63, + 0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65,0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67, + 0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68,0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a, + 0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c,0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e, + 0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70,0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72, + 0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74,0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76, + 0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79, + 0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d, + 0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x1,0x2,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x0,0x0,0x1,0x6c,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x4,0x0,0x0,0xe,0x10,0x0,0x8,0x0,0x0,0x1c,0x20,0x1,0xc,0x0, + 0x0,0xe,0x10,0x0,0x8,0x4c,0x4d,0x54,0x0,0x57,0x45,0x54,0x0,0x43,0x45,0x54, + 0x0,0x43,0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x1,0x1, + 0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x6d,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x11,0xf8,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x7e,0x36,0xb3,0x94,0xff,0xff,0xff,0xff, + 0xd4,0x41,0xdb,0x0,0x0,0x0,0x0,0x0,0x1c,0xac,0xae,0x10,0x0,0x0,0x0,0x0, + 0x1d,0x9c,0x9f,0x10,0x0,0x0,0x0,0x0,0x1e,0x8c,0x90,0x10,0x0,0x0,0x0,0x0, + 0x1f,0x7c,0x81,0x10,0x0,0x0,0x0,0x0,0x20,0x6c,0x72,0x10,0x0,0x0,0x0,0x0, + 0x21,0x5c,0x63,0x10,0x0,0x0,0x0,0x0,0x22,0x4c,0x54,0x10,0x0,0x0,0x0,0x0, + 0x23,0x3c,0x45,0x10,0x0,0x0,0x0,0x0,0x24,0x2c,0x36,0x10,0x0,0x0,0x0,0x0, + 0x25,0x1c,0x27,0x10,0x0,0x0,0x0,0x0,0x26,0xc,0x18,0x10,0x0,0x0,0x0,0x0, + 0x27,0x5,0x43,0x90,0x0,0x0,0x0,0x0,0x27,0xf5,0x34,0x90,0x0,0x0,0x0,0x0, + 0x28,0xe5,0x25,0x90,0x0,0x0,0x0,0x0,0x29,0xd5,0x16,0x90,0x0,0x0,0x0,0x0, + 0x2a,0xc5,0x7,0x90,0x0,0x0,0x0,0x0,0x2b,0xb4,0xf8,0x90,0x0,0x0,0x0,0x0, + 0x2c,0xa4,0xe9,0x90,0x0,0x0,0x0,0x0,0x2d,0x94,0xda,0x90,0x0,0x0,0x0,0x0, + 0x2e,0x84,0xcb,0x90,0x0,0x0,0x0,0x0,0x2f,0x74,0xbc,0x90,0x0,0x0,0x0,0x0, + 0x30,0x64,0xad,0x90,0x0,0x0,0x0,0x0,0x31,0x5d,0xd9,0x10,0x0,0x0,0x0,0x0, + 0x32,0x72,0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d,0xbb,0x10,0x0,0x0,0x0,0x0, + 0x34,0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d,0x9d,0x10,0x0,0x0,0x0,0x0, + 0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd,0x7f,0x10,0x0,0x0,0x0,0x0, + 0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd,0x61,0x10,0x0,0x0,0x0,0x0, + 0x39,0xfb,0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd,0x43,0x10,0x0,0x0,0x0,0x0, + 0x3b,0xdb,0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f,0x90,0x0,0x0,0x0,0x0, + 0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86,0x41,0x90,0x0,0x0,0x0,0x0, + 0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66,0x23,0x90,0x0,0x0,0x0,0x0, + 0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46,0x5,0x90,0x0,0x0,0x0,0x0, + 0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25,0xe7,0x90,0x0,0x0,0x0,0x0, + 0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5,0xc9,0x90,0x0,0x0,0x0,0x0, + 0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee,0xe6,0x10,0x0,0x0,0x0,0x0, + 0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce,0xc8,0x10,0x0,0x0,0x0,0x0, + 0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae,0xaa,0x10,0x0,0x0,0x0,0x0, + 0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c,0x10,0x0,0x0,0x0,0x0, + 0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e,0x10,0x0,0x0,0x0,0x0, + 0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57,0x8a,0x90,0x0,0x0,0x0,0x0, + 0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37,0x6c,0x90,0x0,0x0,0x0,0x0, + 0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17,0x4e,0x90,0x0,0x0,0x0,0x0, + 0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7,0x30,0x90,0x0,0x0,0x0,0x0, + 0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7,0x12,0x90,0x0,0x0,0x0,0x0, + 0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4,0x90,0x0,0x0,0x0,0x0, + 0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0,0x11,0x10,0x0,0x0,0x0,0x0, + 0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3,0x10,0x0,0x0,0x0,0x0, + 0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f,0xd5,0x10,0x0,0x0,0x0,0x0, + 0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f,0xb7,0x10,0x0,0x0,0x0,0x0, + 0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f,0x99,0x10,0x0,0x0,0x0,0x0, + 0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8,0xb5,0x90,0x0,0x0,0x0,0x0, + 0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8,0x97,0x90,0x0,0x0,0x0,0x0, + 0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8,0x79,0x90,0x0,0x0,0x0,0x0, + 0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b,0x90,0x0,0x0,0x0,0x0, + 0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88,0x3d,0x90,0x0,0x0,0x0,0x0, + 0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68,0x1f,0x90,0x0,0x0,0x0,0x0, + 0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51,0x3c,0x10,0x0,0x0,0x0,0x0, + 0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31,0x1e,0x10,0x0,0x0,0x0,0x0, + 0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11,0x0,0x10,0x0,0x0,0x0,0x0, + 0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0,0xe2,0x10,0x0,0x0,0x0,0x0, + 0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0,0xc4,0x10,0x0,0x0,0x0,0x0, + 0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6,0x10,0x0,0x0,0x0,0x0, + 0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99,0xc2,0x90,0x0,0x0,0x0,0x0, + 0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79,0xa4,0x90,0x0,0x0,0x0,0x0, + 0x7f,0x8e,0x7f,0x90,0x0,0x1,0x2,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x0,0x0,0x1,0x6c,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0xe, + 0x10,0x0,0x8,0x0,0x0,0x1c,0x20,0x1,0xc,0x0,0x0,0xe,0x10,0x0,0x8,0x4c, + 0x4d,0x54,0x0,0x57,0x45,0x54,0x0,0x43,0x45,0x54,0x0,0x43,0x45,0x53,0x54,0x0, + 0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x1,0x1,0xa,0x43,0x45,0x54,0x2d,0x31, + 0x43,0x45,0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2c,0x4d,0x31,0x30,0x2e, + 0x35,0x2e,0x30,0x2f,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Riga + 0x0,0x0,0x8,0xbb, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0x35, - 0x44,0x42,0x8,0x1,0x2,0xff,0xff,0x86,0xc,0x0,0x0,0xff,0xff,0x88,0x78,0x0, - 0x4,0xff,0xff,0x8f,0x80,0x0,0x8,0x4c,0x4d,0x54,0x0,0x50,0x4e,0x54,0x0,0x50, - 0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x80,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x26,0x80,0x0,0x0,0x0,0x9e, + 0xb9,0x87,0xfe,0x9f,0x84,0x8e,0xfe,0xa0,0x88,0x46,0x7e,0xa0,0xcb,0x82,0xfe,0xad, + 0xe7,0xf1,0xde,0xc8,0xaf,0x64,0x60,0xca,0x62,0x65,0x50,0xcc,0xe7,0x4b,0x10,0xcd, + 0xa9,0x17,0x90,0xce,0xa2,0x43,0x10,0xcf,0x92,0x34,0x10,0xd0,0x82,0x25,0x10,0xd0, + 0x90,0x89,0x70,0x15,0x27,0xa7,0xd0,0x16,0x18,0xdc,0x40,0x17,0x8,0xdb,0x50,0x17, + 0xfa,0xf,0xc0,0x18,0xea,0xe,0xd0,0x19,0xdb,0x43,0x40,0x1a,0xcc,0x93,0xd0,0x1b, + 0xbc,0xa0,0xf0,0x1c,0xac,0x91,0xf0,0x1d,0x9c,0x82,0xf0,0x1e,0x8c,0x73,0xf0,0x1f, + 0x7c,0x64,0xf0,0x20,0x6c,0x55,0xf0,0x21,0x5c,0x46,0xf0,0x22,0x4c,0x37,0xf0,0x23, + 0x3c,0x28,0xf0,0x24,0x2c,0x19,0xf0,0x25,0x1c,0x19,0x0,0x26,0xc,0xa,0x0,0x27, + 0x5,0x35,0x80,0x27,0xf5,0x26,0x80,0x28,0xe5,0x17,0x80,0x29,0xd5,0x8,0x80,0x2a, + 0xc4,0xf9,0x80,0x2b,0xb4,0xea,0x80,0x2c,0xa4,0xdb,0x80,0x2d,0x94,0xcc,0x80,0x2e, + 0x84,0xbd,0x80,0x2f,0x74,0xae,0x80,0x30,0x64,0x9f,0x80,0x31,0x5d,0xcb,0x0,0x32, + 0x4d,0xbc,0x0,0x32,0xe3,0xea,0xe0,0x33,0x3d,0xbb,0x10,0x34,0x52,0x96,0x10,0x35, + 0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x38, + 0xba,0xef,0xe0,0x3a,0xbd,0x43,0x10,0x3b,0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d, + 0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f,0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41, + 0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43,0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45, + 0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49, + 0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c, + 0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e,0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50, + 0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54, + 0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56,0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58, + 0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59,0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b, + 0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d,0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f, + 0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61,0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63, + 0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65,0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67, + 0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68,0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a, + 0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c,0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e, + 0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70,0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72, + 0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74,0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76, + 0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79, + 0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d, + 0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x1,0x2,0x1,0x2,0x1, + 0x3,0x4,0x7,0x5,0x6,0x5,0x6,0x5,0x4,0x8,0x4,0x8,0x4,0x8,0x4,0x8, + 0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xb,0xc,0xb,0xc,0xb,0xc,0xb, + 0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0x3,0xd,0xe,0xd,0xe,0xd,0xe, + 0x3,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd, + 0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd, + 0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd, + 0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd, + 0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0x0,0x0,0x16,0xa2,0x0, + 0x0,0x0,0x0,0x16,0xa2,0x0,0x4,0x0,0x0,0x24,0xb2,0x1,0x8,0x0,0x0,0x1c, + 0x20,0x0,0xc,0x0,0x0,0x2a,0x30,0x0,0x10,0x0,0x0,0xe,0x10,0x0,0x14,0x0, + 0x0,0x1c,0x20,0x1,0x18,0x0,0x0,0x1c,0x20,0x1,0x18,0x0,0x0,0x38,0x40,0x1, + 0x1d,0x0,0x0,0x2a,0x30,0x0,0x10,0x0,0x0,0x38,0x40,0x1,0x1d,0x0,0x0,0x2a, + 0x30,0x1,0x21,0x0,0x0,0x1c,0x20,0x0,0xc,0x0,0x0,0x2a,0x30,0x1,0x21,0x0, + 0x0,0x1c,0x20,0x0,0xc,0x4c,0x4d,0x54,0x0,0x52,0x4d,0x54,0x0,0x4c,0x53,0x54, + 0x0,0x45,0x45,0x54,0x0,0x4d,0x53,0x4b,0x0,0x43,0x45,0x54,0x0,0x43,0x45,0x53, + 0x54,0x0,0x4d,0x53,0x44,0x0,0x45,0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0, + 0x1,0x1,0x0,0x0,0x1,0x1,0x1,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x54,0x5a,0x69,0x66,0x32,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0, - 0x3,0x0,0x0,0x0,0xc,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff, - 0xff,0x7e,0x37,0x2e,0xf4,0x0,0x0,0x0,0x0,0x35,0x44,0x42,0x8,0x0,0x1,0x2, - 0xff,0xff,0x86,0xc,0x0,0x0,0xff,0xff,0x88,0x78,0x0,0x4,0xff,0xff,0x8f,0x80, - 0x0,0x8,0x4c,0x4d,0x54,0x0,0x50,0x4e,0x54,0x0,0x50,0x53,0x54,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0xa,0x50,0x53,0x54,0x38,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Pacific/Galapagos - 0x0,0x0,0x0,0xd3, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0xb6, - 0xa4,0x4c,0x80,0x1e,0x18,0xc4,0x50,0x0,0x1,0x2,0xff,0xff,0xac,0x0,0x0,0x0, - 0xff,0xff,0xb9,0xb0,0x0,0x4,0xff,0xff,0xab,0xa0,0x0,0x8,0x4c,0x4d,0x54,0x0, - 0x45,0x43,0x54,0x0,0x47,0x41,0x4c,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xd,0xf8,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xb6,0xa4,0x4c,0x80,0x0,0x0,0x0,0x0,0x1e, - 0x18,0xc4,0x50,0x0,0x1,0x2,0xff,0xff,0xac,0x0,0x0,0x0,0xff,0xff,0xb9,0xb0, - 0x0,0x4,0xff,0xff,0xab,0xa0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x45,0x43,0x54,0x0, - 0x47,0x41,0x4c,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x47,0x41,0x4c,0x54, - 0x36,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Lubumbashi - 0x0,0x0,0x0,0xab, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x82, - 0x46,0xc5,0xf4,0x0,0x1,0x0,0x0,0x1e,0x8c,0x0,0x0,0x0,0x0,0x1c,0x20,0x0, - 0x4,0x4c,0x4d,0x54,0x0,0x43,0x41,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, - 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0x82,0x46,0xc5,0xf4,0x0,0x1,0x0,0x0,0x1e,0x8c,0x0, - 0x0,0x0,0x0,0x1c,0x20,0x0,0x4,0x4c,0x4d,0x54,0x0,0x43,0x41,0x54,0x0,0x0, - 0x0,0x0,0x0,0xa,0x43,0x41,0x54,0x2d,0x32,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Porto-Novo - 0x0,0x0,0x0,0xab, + 0xf,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x81,0x0,0x0,0x0, + 0xf,0x0,0x0,0x0,0x26,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff, + 0xff,0x56,0xb6,0xcd,0x5e,0xff,0xff,0xff,0xff,0x9e,0xb9,0x87,0xfe,0xff,0xff,0xff, + 0xff,0x9f,0x84,0x8e,0xfe,0xff,0xff,0xff,0xff,0xa0,0x88,0x46,0x7e,0xff,0xff,0xff, + 0xff,0xa0,0xcb,0x82,0xfe,0xff,0xff,0xff,0xff,0xad,0xe7,0xf1,0xde,0xff,0xff,0xff, + 0xff,0xc8,0xaf,0x64,0x60,0xff,0xff,0xff,0xff,0xca,0x62,0x65,0x50,0xff,0xff,0xff, + 0xff,0xcc,0xe7,0x4b,0x10,0xff,0xff,0xff,0xff,0xcd,0xa9,0x17,0x90,0xff,0xff,0xff, + 0xff,0xce,0xa2,0x43,0x10,0xff,0xff,0xff,0xff,0xcf,0x92,0x34,0x10,0xff,0xff,0xff, + 0xff,0xd0,0x82,0x25,0x10,0xff,0xff,0xff,0xff,0xd0,0x90,0x89,0x70,0x0,0x0,0x0, + 0x0,0x15,0x27,0xa7,0xd0,0x0,0x0,0x0,0x0,0x16,0x18,0xdc,0x40,0x0,0x0,0x0, + 0x0,0x17,0x8,0xdb,0x50,0x0,0x0,0x0,0x0,0x17,0xfa,0xf,0xc0,0x0,0x0,0x0, + 0x0,0x18,0xea,0xe,0xd0,0x0,0x0,0x0,0x0,0x19,0xdb,0x43,0x40,0x0,0x0,0x0, + 0x0,0x1a,0xcc,0x93,0xd0,0x0,0x0,0x0,0x0,0x1b,0xbc,0xa0,0xf0,0x0,0x0,0x0, + 0x0,0x1c,0xac,0x91,0xf0,0x0,0x0,0x0,0x0,0x1d,0x9c,0x82,0xf0,0x0,0x0,0x0, + 0x0,0x1e,0x8c,0x73,0xf0,0x0,0x0,0x0,0x0,0x1f,0x7c,0x64,0xf0,0x0,0x0,0x0, + 0x0,0x20,0x6c,0x55,0xf0,0x0,0x0,0x0,0x0,0x21,0x5c,0x46,0xf0,0x0,0x0,0x0, + 0x0,0x22,0x4c,0x37,0xf0,0x0,0x0,0x0,0x0,0x23,0x3c,0x28,0xf0,0x0,0x0,0x0, + 0x0,0x24,0x2c,0x19,0xf0,0x0,0x0,0x0,0x0,0x25,0x1c,0x19,0x0,0x0,0x0,0x0, + 0x0,0x26,0xc,0xa,0x0,0x0,0x0,0x0,0x0,0x27,0x5,0x35,0x80,0x0,0x0,0x0, + 0x0,0x27,0xf5,0x26,0x80,0x0,0x0,0x0,0x0,0x28,0xe5,0x17,0x80,0x0,0x0,0x0, + 0x0,0x29,0xd5,0x8,0x80,0x0,0x0,0x0,0x0,0x2a,0xc4,0xf9,0x80,0x0,0x0,0x0, + 0x0,0x2b,0xb4,0xea,0x80,0x0,0x0,0x0,0x0,0x2c,0xa4,0xdb,0x80,0x0,0x0,0x0, + 0x0,0x2d,0x94,0xcc,0x80,0x0,0x0,0x0,0x0,0x2e,0x84,0xbd,0x80,0x0,0x0,0x0, + 0x0,0x2f,0x74,0xae,0x80,0x0,0x0,0x0,0x0,0x30,0x64,0x9f,0x80,0x0,0x0,0x0, + 0x0,0x31,0x5d,0xcb,0x0,0x0,0x0,0x0,0x0,0x32,0x4d,0xbc,0x0,0x0,0x0,0x0, + 0x0,0x32,0xe3,0xea,0xe0,0x0,0x0,0x0,0x0,0x33,0x3d,0xbb,0x10,0x0,0x0,0x0, + 0x0,0x34,0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d,0x9d,0x10,0x0,0x0,0x0, + 0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd,0x7f,0x10,0x0,0x0,0x0, + 0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xba,0xef,0xe0,0x0,0x0,0x0, + 0x0,0x3a,0xbd,0x43,0x10,0x0,0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0, + 0x0,0x3c,0xa6,0x5f,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0, + 0x0,0x3e,0x86,0x41,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0, + 0x0,0x40,0x66,0x23,0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0, + 0x0,0x42,0x46,0x5,0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0, + 0x0,0x44,0x25,0xe7,0x90,0x0,0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0, + 0x0,0x46,0x5,0xc9,0x90,0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0, + 0x0,0x47,0xee,0xe6,0x10,0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0, + 0x0,0x49,0xce,0xc8,0x10,0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0, + 0x0,0x4b,0xae,0xaa,0x10,0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0, + 0x0,0x4d,0x8e,0x8c,0x10,0x0,0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0, + 0x0,0x4f,0x6e,0x6e,0x10,0x0,0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0, + 0x0,0x51,0x57,0x8a,0x90,0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0, + 0x0,0x53,0x37,0x6c,0x90,0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0, + 0x0,0x55,0x17,0x4e,0x90,0x0,0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0, + 0x0,0x56,0xf7,0x30,0x90,0x0,0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0, + 0x0,0x58,0xd7,0x12,0x90,0x0,0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0, + 0x0,0x5a,0xb6,0xf4,0x90,0x0,0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0, + 0x0,0x5c,0xa0,0x11,0x10,0x0,0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0, + 0x0,0x5e,0x7f,0xf3,0x10,0x0,0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0, + 0x0,0x60,0x5f,0xd5,0x10,0x0,0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0, + 0x0,0x62,0x3f,0xb7,0x10,0x0,0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0, + 0x0,0x64,0x1f,0x99,0x10,0x0,0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0, + 0x0,0x66,0x8,0xb5,0x90,0x0,0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0, + 0x0,0x67,0xe8,0x97,0x90,0x0,0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0, + 0x0,0x69,0xc8,0x79,0x90,0x0,0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0, + 0x0,0x6b,0xa8,0x5b,0x90,0x0,0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0, + 0x0,0x6d,0x88,0x3d,0x90,0x0,0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0, + 0x0,0x6f,0x68,0x1f,0x90,0x0,0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0, + 0x0,0x71,0x51,0x3c,0x10,0x0,0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0, + 0x0,0x73,0x31,0x1e,0x10,0x0,0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0, + 0x0,0x75,0x11,0x0,0x10,0x0,0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0, + 0x0,0x76,0xf0,0xe2,0x10,0x0,0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0, + 0x0,0x78,0xd0,0xc4,0x10,0x0,0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0, + 0x0,0x7a,0xb0,0xa6,0x10,0x0,0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0, + 0x0,0x7c,0x99,0xc2,0x90,0x0,0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0, + 0x0,0x7e,0x79,0xa4,0x90,0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x1,0x2, + 0x1,0x2,0x1,0x3,0x4,0x7,0x5,0x6,0x5,0x6,0x5,0x4,0x8,0x4,0x8,0x4, + 0x8,0x4,0x8,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xb,0xc,0xb,0xc, + 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0x3,0xd,0xe,0xd, + 0xe,0xd,0xe,0x3,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe, + 0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe, + 0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe, + 0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe, + 0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0xd,0xe,0x0,0x0, + 0x16,0xa2,0x0,0x0,0x0,0x0,0x16,0xa2,0x0,0x4,0x0,0x0,0x24,0xb2,0x1,0x8, + 0x0,0x0,0x1c,0x20,0x0,0xc,0x0,0x0,0x2a,0x30,0x0,0x10,0x0,0x0,0xe,0x10, + 0x0,0x14,0x0,0x0,0x1c,0x20,0x1,0x18,0x0,0x0,0x1c,0x20,0x1,0x18,0x0,0x0, + 0x38,0x40,0x1,0x1d,0x0,0x0,0x2a,0x30,0x0,0x10,0x0,0x0,0x38,0x40,0x1,0x1d, + 0x0,0x0,0x2a,0x30,0x1,0x21,0x0,0x0,0x1c,0x20,0x0,0xc,0x0,0x0,0x2a,0x30, + 0x1,0x21,0x0,0x0,0x1c,0x20,0x0,0xc,0x4c,0x4d,0x54,0x0,0x52,0x4d,0x54,0x0, + 0x4c,0x53,0x54,0x0,0x45,0x45,0x54,0x0,0x4d,0x53,0x4b,0x0,0x43,0x45,0x54,0x0, + 0x43,0x45,0x53,0x54,0x0,0x4d,0x53,0x44,0x0,0x45,0x45,0x53,0x54,0x0,0x0,0x0, + 0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x1,0x1,0x1,0x1,0x1,0x1,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0xa,0x45,0x45,0x54, + 0x2d,0x32,0x45,0x45,0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2f,0x33,0x2c, + 0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30,0x2f,0x34,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Belgrade + 0x0,0x0,0x7,0xa5, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0xa1, - 0x51,0xf3,0x50,0x0,0x1,0x0,0x0,0x3,0x30,0x0,0x0,0x0,0x0,0xe,0x10,0x0, - 0x4,0x4c,0x4d,0x54,0x0,0x57,0x41,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x79,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0xca, + 0x2,0x35,0xe0,0xcc,0xe7,0x4b,0x10,0xcd,0xa9,0x17,0x90,0xce,0xa2,0x43,0x10,0xcf, + 0x92,0x34,0x10,0xd0,0x82,0x25,0x10,0xd0,0xfa,0x1,0x70,0xd1,0xa1,0x8c,0x10,0xd2, + 0x4e,0x40,0x90,0x18,0x45,0x5f,0x70,0x18,0xe3,0xaf,0x90,0x19,0xd3,0xa0,0x90,0x1a, + 0xc3,0x91,0x90,0x1b,0xbc,0xbd,0x10,0x1c,0xac,0xae,0x10,0x1d,0x9c,0x9f,0x10,0x1e, + 0x8c,0x90,0x10,0x1f,0x7c,0x81,0x10,0x20,0x6c,0x72,0x10,0x21,0x5c,0x63,0x10,0x22, + 0x4c,0x54,0x10,0x23,0x3c,0x45,0x10,0x24,0x2c,0x36,0x10,0x25,0x1c,0x27,0x10,0x26, + 0xc,0x18,0x10,0x27,0x5,0x43,0x90,0x27,0xf5,0x34,0x90,0x28,0xe5,0x25,0x90,0x29, + 0xd5,0x16,0x90,0x2a,0xc5,0x7,0x90,0x2b,0xb4,0xf8,0x90,0x2c,0xa4,0xe9,0x90,0x2d, + 0x94,0xda,0x90,0x2e,0x84,0xcb,0x90,0x2f,0x74,0xbc,0x90,0x30,0x64,0xad,0x90,0x31, + 0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34,0x52,0x96,0x10,0x35, + 0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x38, + 0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b,0xdb,0x58,0x90,0x3c, + 0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f,0x9b,0x1c,0x90,0x40, + 0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43,0x64,0x1b,0x10,0x44, + 0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47, + 0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b, + 0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e,0xac,0xa1,0x90,0x4f, + 0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53, + 0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56,0x2c,0x29,0x90,0x56, + 0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59,0xf5,0x28,0x10,0x5a, + 0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d,0xb4,0xec,0x10,0x5e, + 0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61,0x7d,0xea,0x90,0x62, + 0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65,0x3d,0xae,0x90,0x66, + 0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68,0xfd,0x72,0x90,0x69, + 0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c,0xc6,0x71,0x10,0x6d, + 0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70,0x86,0x35,0x10,0x71, + 0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74,0x45,0xf9,0x10,0x75, + 0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78, + 0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c, + 0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x1, + 0x4,0x2,0x3,0x2,0x3,0x2,0x1,0x3,0x2,0x1,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x0,0x0,0x13,0x38,0x0,0x0,0x0,0x0, + 0xe,0x10,0x0,0x4,0x0,0x0,0xe,0x10,0x0,0x4,0x0,0x0,0x1c,0x20,0x1,0x8, + 0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0xe,0x10, + 0x0,0x4,0x4c,0x4d,0x54,0x0,0x43,0x45,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x0, + 0x0,0x1,0x1,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x54,0x5a,0x69, 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0xa1,0x51,0xf3,0x50,0x0,0x1,0x0,0x0,0x3,0x30,0x0, - 0x0,0x0,0x0,0xe,0x10,0x0,0x4,0x4c,0x4d,0x54,0x0,0x57,0x41,0x54,0x0,0x0, - 0x0,0x0,0x0,0xa,0x57,0x41,0x54,0x2d,0x31,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Kigali - 0x0,0x0,0x0,0xab, + 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x7a,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0xd,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0x5e,0x3c,0xf0,0x48,0xff,0xff,0xff,0xff,0xca,0x2,0x35, + 0xe0,0xff,0xff,0xff,0xff,0xcc,0xe7,0x4b,0x10,0xff,0xff,0xff,0xff,0xcd,0xa9,0x17, + 0x90,0xff,0xff,0xff,0xff,0xce,0xa2,0x43,0x10,0xff,0xff,0xff,0xff,0xcf,0x92,0x34, + 0x10,0xff,0xff,0xff,0xff,0xd0,0x82,0x25,0x10,0xff,0xff,0xff,0xff,0xd0,0xfa,0x1, + 0x70,0xff,0xff,0xff,0xff,0xd1,0xa1,0x8c,0x10,0xff,0xff,0xff,0xff,0xd2,0x4e,0x40, + 0x90,0x0,0x0,0x0,0x0,0x18,0x45,0x5f,0x70,0x0,0x0,0x0,0x0,0x18,0xe3,0xaf, + 0x90,0x0,0x0,0x0,0x0,0x19,0xd3,0xa0,0x90,0x0,0x0,0x0,0x0,0x1a,0xc3,0x91, + 0x90,0x0,0x0,0x0,0x0,0x1b,0xbc,0xbd,0x10,0x0,0x0,0x0,0x0,0x1c,0xac,0xae, + 0x10,0x0,0x0,0x0,0x0,0x1d,0x9c,0x9f,0x10,0x0,0x0,0x0,0x0,0x1e,0x8c,0x90, + 0x10,0x0,0x0,0x0,0x0,0x1f,0x7c,0x81,0x10,0x0,0x0,0x0,0x0,0x20,0x6c,0x72, + 0x10,0x0,0x0,0x0,0x0,0x21,0x5c,0x63,0x10,0x0,0x0,0x0,0x0,0x22,0x4c,0x54, + 0x10,0x0,0x0,0x0,0x0,0x23,0x3c,0x45,0x10,0x0,0x0,0x0,0x0,0x24,0x2c,0x36, + 0x10,0x0,0x0,0x0,0x0,0x25,0x1c,0x27,0x10,0x0,0x0,0x0,0x0,0x26,0xc,0x18, + 0x10,0x0,0x0,0x0,0x0,0x27,0x5,0x43,0x90,0x0,0x0,0x0,0x0,0x27,0xf5,0x34, + 0x90,0x0,0x0,0x0,0x0,0x28,0xe5,0x25,0x90,0x0,0x0,0x0,0x0,0x29,0xd5,0x16, + 0x90,0x0,0x0,0x0,0x0,0x2a,0xc5,0x7,0x90,0x0,0x0,0x0,0x0,0x2b,0xb4,0xf8, + 0x90,0x0,0x0,0x0,0x0,0x2c,0xa4,0xe9,0x90,0x0,0x0,0x0,0x0,0x2d,0x94,0xda, + 0x90,0x0,0x0,0x0,0x0,0x2e,0x84,0xcb,0x90,0x0,0x0,0x0,0x0,0x2f,0x74,0xbc, + 0x90,0x0,0x0,0x0,0x0,0x30,0x64,0xad,0x90,0x0,0x0,0x0,0x0,0x31,0x5d,0xd9, + 0x10,0x0,0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d,0xbb, + 0x10,0x0,0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d,0x9d, + 0x10,0x0,0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd,0x7f, + 0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd,0x61, + 0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd,0x43, + 0x10,0x0,0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f, + 0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86,0x41, + 0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66,0x23, + 0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46,0x5, + 0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25,0xe7, + 0x90,0x0,0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5,0xc9, + 0x90,0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee,0xe6, + 0x10,0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce,0xc8, + 0x10,0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae,0xaa, + 0x10,0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c, + 0x10,0x0,0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e, + 0x10,0x0,0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57,0x8a, + 0x90,0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37,0x6c, + 0x90,0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17,0x4e, + 0x90,0x0,0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7,0x30, + 0x90,0x0,0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7,0x12, + 0x90,0x0,0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4, + 0x90,0x0,0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0,0x11, + 0x10,0x0,0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3, + 0x10,0x0,0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f,0xd5, + 0x10,0x0,0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f,0xb7, + 0x10,0x0,0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f,0x99, + 0x10,0x0,0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8,0xb5, + 0x90,0x0,0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8,0x97, + 0x90,0x0,0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8,0x79, + 0x90,0x0,0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b, + 0x90,0x0,0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88,0x3d, + 0x90,0x0,0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68,0x1f, + 0x90,0x0,0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51,0x3c, + 0x10,0x0,0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31,0x1e, + 0x10,0x0,0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11,0x0, + 0x10,0x0,0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0,0xe2, + 0x10,0x0,0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0,0xc4, + 0x10,0x0,0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6, + 0x10,0x0,0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99,0xc2, + 0x90,0x0,0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79,0xa4, + 0x90,0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x1,0x4,0x2,0x3,0x2,0x3, + 0x2,0x1,0x3,0x2,0x1,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x0,0x0,0x13,0x38,0x0,0x0,0x0,0x0,0xe,0x10,0x0,0x4,0x0, + 0x0,0xe,0x10,0x0,0x4,0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0x1c,0x20,0x1, + 0x8,0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0xe,0x10,0x0,0x4,0x4c,0x4d,0x54, + 0x0,0x43,0x45,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x0,0x0,0x1,0x1,0x0,0x1, + 0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0xa,0x43,0x45,0x54,0x2d,0x31,0x43,0x45, + 0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e, + 0x30,0x2f,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Kirov + 0x0,0x0,0x4,0x8f, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x82, - 0x46,0xc5,0xf4,0x0,0x1,0x0,0x0,0x1e,0x8c,0x0,0x0,0x0,0x0,0x1c,0x20,0x0, - 0x4,0x4c,0x4d,0x54,0x0,0x43,0x41,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, - 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0x82,0x46,0xc5,0xf4,0x0,0x1,0x0,0x0,0x1e,0x8c,0x0, - 0x0,0x0,0x0,0x1c,0x20,0x0,0x4,0x4c,0x4d,0x54,0x0,0x43,0x41,0x54,0x0,0x0, - 0x0,0x0,0x0,0xa,0x43,0x41,0x54,0x2d,0x32,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Malabo - 0x0,0x0,0x0,0xab, + 0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x41,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x10,0x80,0x0,0x0,0x0,0xa1, + 0x0,0x39,0x80,0xb5,0xa4,0xb,0x50,0x15,0x27,0x99,0xc0,0x16,0x18,0xce,0x30,0x17, + 0x8,0xcd,0x40,0x17,0xfa,0x1,0xb0,0x18,0xea,0x0,0xc0,0x19,0xdb,0x35,0x30,0x1a, + 0xcc,0x85,0xc0,0x1b,0xbc,0x92,0xe0,0x1c,0xac,0x83,0xe0,0x1d,0x9c,0x74,0xe0,0x1e, + 0x8c,0x65,0xe0,0x1f,0x7c,0x56,0xe0,0x20,0x6c,0x47,0xe0,0x21,0x5c,0x38,0xe0,0x22, + 0x4c,0x29,0xe0,0x23,0x3c,0x1a,0xe0,0x24,0x2c,0xb,0xe0,0x25,0x1c,0xa,0xf0,0x26, + 0xb,0xfb,0xf0,0x27,0x5,0x27,0x70,0x27,0xf5,0x18,0x70,0x29,0xd4,0xec,0x60,0x2a, + 0xc4,0xeb,0x70,0x2b,0xb4,0xdc,0x70,0x2c,0xa4,0xcd,0x70,0x2d,0x94,0xbe,0x70,0x2e, + 0x84,0xaf,0x70,0x2f,0x74,0xa0,0x70,0x30,0x64,0x91,0x70,0x31,0x5d,0xbc,0xf0,0x32, + 0x72,0x97,0xf0,0x33,0x3d,0x9e,0xf0,0x34,0x52,0x79,0xf0,0x35,0x1d,0x80,0xf0,0x36, + 0x32,0x5b,0xf0,0x36,0xfd,0x62,0xf0,0x38,0x1b,0x78,0x70,0x38,0xdd,0x44,0xf0,0x39, + 0xfb,0x5a,0x70,0x3a,0xbd,0x26,0xf0,0x3b,0xdb,0x3c,0x70,0x3c,0xa6,0x43,0x70,0x3d, + 0xbb,0x1e,0x70,0x3e,0x86,0x25,0x70,0x3f,0x9b,0x0,0x70,0x40,0x66,0x7,0x70,0x41, + 0x84,0x1c,0xf0,0x42,0x45,0xe9,0x70,0x43,0x63,0xfe,0xf0,0x44,0x25,0xcb,0x70,0x45, + 0x43,0xe0,0xf0,0x46,0x5,0xad,0x70,0x47,0x23,0xc2,0xf0,0x47,0xee,0xc9,0xf0,0x49, + 0x3,0xa4,0xf0,0x49,0xce,0xab,0xf0,0x4a,0xe3,0x86,0xf0,0x4b,0xae,0x8d,0xf0,0x4c, + 0xcc,0xa3,0x70,0x4d,0x8e,0x6f,0xf0,0x54,0x4c,0x1d,0x60,0x7f,0xff,0xff,0xff,0x0, + 0x1,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x6,0x7,0x6,0x7,0x4,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, + 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, + 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x4,0x7,0x7, + 0x0,0x0,0x2e,0x98,0x0,0x0,0x0,0x0,0x2a,0x30,0x0,0x4,0x0,0x0,0x46,0x50, + 0x1,0x8,0x0,0x0,0x38,0x40,0x0,0xc,0x0,0x0,0x38,0x40,0x0,0xc,0x0,0x0, + 0x46,0x50,0x1,0x8,0x0,0x0,0x38,0x40,0x1,0xc,0x0,0x0,0x2a,0x30,0x0,0x4, + 0x4c,0x4d,0x54,0x0,0x2b,0x30,0x33,0x0,0x2b,0x30,0x35,0x0,0x2b,0x30,0x34,0x0, + 0x0,0x1,0x0,0x0,0x1,0x1,0x1,0x1,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0, + 0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x41,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x10,0xf8,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xa1,0x0,0x39,0x80,0xff,0xff,0xff,0xff, + 0xb5,0xa4,0xb,0x50,0x0,0x0,0x0,0x0,0x15,0x27,0x99,0xc0,0x0,0x0,0x0,0x0, + 0x16,0x18,0xce,0x30,0x0,0x0,0x0,0x0,0x17,0x8,0xcd,0x40,0x0,0x0,0x0,0x0, + 0x17,0xfa,0x1,0xb0,0x0,0x0,0x0,0x0,0x18,0xea,0x0,0xc0,0x0,0x0,0x0,0x0, + 0x19,0xdb,0x35,0x30,0x0,0x0,0x0,0x0,0x1a,0xcc,0x85,0xc0,0x0,0x0,0x0,0x0, + 0x1b,0xbc,0x92,0xe0,0x0,0x0,0x0,0x0,0x1c,0xac,0x83,0xe0,0x0,0x0,0x0,0x0, + 0x1d,0x9c,0x74,0xe0,0x0,0x0,0x0,0x0,0x1e,0x8c,0x65,0xe0,0x0,0x0,0x0,0x0, + 0x1f,0x7c,0x56,0xe0,0x0,0x0,0x0,0x0,0x20,0x6c,0x47,0xe0,0x0,0x0,0x0,0x0, + 0x21,0x5c,0x38,0xe0,0x0,0x0,0x0,0x0,0x22,0x4c,0x29,0xe0,0x0,0x0,0x0,0x0, + 0x23,0x3c,0x1a,0xe0,0x0,0x0,0x0,0x0,0x24,0x2c,0xb,0xe0,0x0,0x0,0x0,0x0, + 0x25,0x1c,0xa,0xf0,0x0,0x0,0x0,0x0,0x26,0xb,0xfb,0xf0,0x0,0x0,0x0,0x0, + 0x27,0x5,0x27,0x70,0x0,0x0,0x0,0x0,0x27,0xf5,0x18,0x70,0x0,0x0,0x0,0x0, + 0x29,0xd4,0xec,0x60,0x0,0x0,0x0,0x0,0x2a,0xc4,0xeb,0x70,0x0,0x0,0x0,0x0, + 0x2b,0xb4,0xdc,0x70,0x0,0x0,0x0,0x0,0x2c,0xa4,0xcd,0x70,0x0,0x0,0x0,0x0, + 0x2d,0x94,0xbe,0x70,0x0,0x0,0x0,0x0,0x2e,0x84,0xaf,0x70,0x0,0x0,0x0,0x0, + 0x2f,0x74,0xa0,0x70,0x0,0x0,0x0,0x0,0x30,0x64,0x91,0x70,0x0,0x0,0x0,0x0, + 0x31,0x5d,0xbc,0xf0,0x0,0x0,0x0,0x0,0x32,0x72,0x97,0xf0,0x0,0x0,0x0,0x0, + 0x33,0x3d,0x9e,0xf0,0x0,0x0,0x0,0x0,0x34,0x52,0x79,0xf0,0x0,0x0,0x0,0x0, + 0x35,0x1d,0x80,0xf0,0x0,0x0,0x0,0x0,0x36,0x32,0x5b,0xf0,0x0,0x0,0x0,0x0, + 0x36,0xfd,0x62,0xf0,0x0,0x0,0x0,0x0,0x38,0x1b,0x78,0x70,0x0,0x0,0x0,0x0, + 0x38,0xdd,0x44,0xf0,0x0,0x0,0x0,0x0,0x39,0xfb,0x5a,0x70,0x0,0x0,0x0,0x0, + 0x3a,0xbd,0x26,0xf0,0x0,0x0,0x0,0x0,0x3b,0xdb,0x3c,0x70,0x0,0x0,0x0,0x0, + 0x3c,0xa6,0x43,0x70,0x0,0x0,0x0,0x0,0x3d,0xbb,0x1e,0x70,0x0,0x0,0x0,0x0, + 0x3e,0x86,0x25,0x70,0x0,0x0,0x0,0x0,0x3f,0x9b,0x0,0x70,0x0,0x0,0x0,0x0, + 0x40,0x66,0x7,0x70,0x0,0x0,0x0,0x0,0x41,0x84,0x1c,0xf0,0x0,0x0,0x0,0x0, + 0x42,0x45,0xe9,0x70,0x0,0x0,0x0,0x0,0x43,0x63,0xfe,0xf0,0x0,0x0,0x0,0x0, + 0x44,0x25,0xcb,0x70,0x0,0x0,0x0,0x0,0x45,0x43,0xe0,0xf0,0x0,0x0,0x0,0x0, + 0x46,0x5,0xad,0x70,0x0,0x0,0x0,0x0,0x47,0x23,0xc2,0xf0,0x0,0x0,0x0,0x0, + 0x47,0xee,0xc9,0xf0,0x0,0x0,0x0,0x0,0x49,0x3,0xa4,0xf0,0x0,0x0,0x0,0x0, + 0x49,0xce,0xab,0xf0,0x0,0x0,0x0,0x0,0x4a,0xe3,0x86,0xf0,0x0,0x0,0x0,0x0, + 0x4b,0xae,0x8d,0xf0,0x0,0x0,0x0,0x0,0x4c,0xcc,0xa3,0x70,0x0,0x0,0x0,0x0, + 0x4d,0x8e,0x6f,0xf0,0x0,0x0,0x0,0x0,0x54,0x4c,0x1d,0x60,0x0,0x0,0x0,0x0, + 0x7f,0xff,0xff,0xff,0x0,0x1,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x6,0x7,0x6,0x7,0x4,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x4,0x7,0x7,0x0,0x0,0x2e,0x98,0x0,0x0,0x0,0x0,0x2a,0x30,0x0, + 0x4,0x0,0x0,0x46,0x50,0x1,0x8,0x0,0x0,0x38,0x40,0x0,0xc,0x0,0x0,0x38, + 0x40,0x0,0xc,0x0,0x0,0x46,0x50,0x1,0x8,0x0,0x0,0x38,0x40,0x1,0xc,0x0, + 0x0,0x2a,0x30,0x0,0x4,0x4c,0x4d,0x54,0x0,0x2b,0x30,0x33,0x0,0x2b,0x30,0x35, + 0x0,0x2b,0x30,0x34,0x0,0x0,0x1,0x0,0x0,0x1,0x1,0x1,0x1,0x0,0x1,0x0, + 0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2b,0x30,0x33,0x3e,0x2d,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Oslo + 0x0,0x0,0x8,0xcb, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0xa1, - 0x51,0xf3,0x50,0x0,0x1,0x0,0x0,0x3,0x30,0x0,0x0,0x0,0x0,0xe,0x10,0x0, - 0x4,0x4c,0x4d,0x54,0x0,0x57,0x41,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, - 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0xa1,0x51,0xf3,0x50,0x0,0x1,0x0,0x0,0x3,0x30,0x0, - 0x0,0x0,0x0,0xe,0x10,0x0,0x4,0x4c,0x4d,0x54,0x0,0x57,0x41,0x54,0x0,0x0, - 0x0,0x0,0x0,0xa,0x57,0x41,0x54,0x2d,0x31,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Ceuta - 0x0,0x0,0x8,0x1b, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x8e,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0x9b, + 0x27,0xe3,0x0,0x9b,0xd4,0x7b,0x60,0xc8,0xb7,0x4d,0x60,0xcc,0xe7,0x4b,0x10,0xcd, + 0xa9,0x17,0x90,0xce,0xa2,0x43,0x10,0xcf,0x92,0x34,0x10,0xd0,0x82,0x25,0x10,0xd1, + 0x72,0x16,0x10,0xd2,0x62,0x7,0x10,0xeb,0xaf,0x20,0x90,0xec,0xa8,0x4c,0x10,0xed, + 0x98,0x3d,0x10,0xee,0x88,0x2e,0x10,0xef,0x78,0x1f,0x10,0xf0,0x68,0x10,0x10,0xf1, + 0x58,0x1,0x10,0xf2,0x47,0xf2,0x10,0xf3,0x37,0xe3,0x10,0xf4,0x27,0xd4,0x10,0xf5, + 0x17,0xc5,0x10,0xf6,0x10,0xf0,0x90,0xf7,0x2f,0x6,0x10,0xf7,0xf0,0xd2,0x90,0x12, + 0xce,0x97,0xf0,0x13,0x4d,0x44,0x10,0x14,0x33,0xfa,0x90,0x15,0x23,0xeb,0x90,0x16, + 0x13,0xdc,0x90,0x17,0x3,0xcd,0x90,0x17,0xf3,0xbe,0x90,0x18,0xe3,0xaf,0x90,0x19, + 0xd3,0xa0,0x90,0x1a,0xc3,0x91,0x90,0x1b,0xbc,0xbd,0x10,0x1c,0xac,0xae,0x10,0x1d, + 0x9c,0x9f,0x10,0x1e,0x8c,0x90,0x10,0x1f,0x7c,0x81,0x10,0x20,0x6c,0x72,0x10,0x21, + 0x5c,0x63,0x10,0x22,0x4c,0x54,0x10,0x23,0x3c,0x45,0x10,0x24,0x2c,0x36,0x10,0x25, + 0x1c,0x27,0x10,0x26,0xc,0x18,0x10,0x27,0x5,0x43,0x90,0x27,0xf5,0x34,0x90,0x28, + 0xe5,0x25,0x90,0x29,0xd5,0x16,0x90,0x2a,0xc5,0x7,0x90,0x2b,0xb4,0xf8,0x90,0x2c, + 0xa4,0xe9,0x90,0x2d,0x94,0xda,0x90,0x2e,0x84,0xcb,0x90,0x2f,0x74,0xbc,0x90,0x30, + 0x64,0xad,0x90,0x31,0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34, + 0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38, + 0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b, + 0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f, + 0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43, + 0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47, + 0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a, + 0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e, + 0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52, + 0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56, + 0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59, + 0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d, + 0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61, + 0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65, + 0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68, + 0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c, + 0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70, + 0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74, + 0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78, + 0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b, + 0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f, + 0x8e,0x7f,0x90,0x2,0x1,0x2,0x1,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x2,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x0,0x0,0xa,0x14,0x0,0x0,0x0,0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe, + 0x10,0x0,0x9,0x0,0x0,0xe,0x10,0x0,0x9,0x0,0x0,0x1c,0x20,0x1,0x4,0x0, + 0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe,0x10,0x0,0x9,0x4c,0x4d,0x54,0x0,0x43, + 0x45,0x53,0x54,0x0,0x43,0x45,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x0, + 0x0,0x0,0x0,0x0,0x1,0x1,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0, + 0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0x0,0x0,0x0,0x7,0x0,0x0, + 0x0,0xd,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x72,0xee, + 0x24,0x6c,0xff,0xff,0xff,0xff,0x9b,0x27,0xe3,0x0,0xff,0xff,0xff,0xff,0x9b,0xd4, + 0x7b,0x60,0xff,0xff,0xff,0xff,0xc8,0xb7,0x4d,0x60,0xff,0xff,0xff,0xff,0xcc,0xe7, + 0x4b,0x10,0xff,0xff,0xff,0xff,0xcd,0xa9,0x17,0x90,0xff,0xff,0xff,0xff,0xce,0xa2, + 0x43,0x10,0xff,0xff,0xff,0xff,0xcf,0x92,0x34,0x10,0xff,0xff,0xff,0xff,0xd0,0x82, + 0x25,0x10,0xff,0xff,0xff,0xff,0xd1,0x72,0x16,0x10,0xff,0xff,0xff,0xff,0xd2,0x62, + 0x7,0x10,0xff,0xff,0xff,0xff,0xeb,0xaf,0x20,0x90,0xff,0xff,0xff,0xff,0xec,0xa8, + 0x4c,0x10,0xff,0xff,0xff,0xff,0xed,0x98,0x3d,0x10,0xff,0xff,0xff,0xff,0xee,0x88, + 0x2e,0x10,0xff,0xff,0xff,0xff,0xef,0x78,0x1f,0x10,0xff,0xff,0xff,0xff,0xf0,0x68, + 0x10,0x10,0xff,0xff,0xff,0xff,0xf1,0x58,0x1,0x10,0xff,0xff,0xff,0xff,0xf2,0x47, + 0xf2,0x10,0xff,0xff,0xff,0xff,0xf3,0x37,0xe3,0x10,0xff,0xff,0xff,0xff,0xf4,0x27, + 0xd4,0x10,0xff,0xff,0xff,0xff,0xf5,0x17,0xc5,0x10,0xff,0xff,0xff,0xff,0xf6,0x10, + 0xf0,0x90,0xff,0xff,0xff,0xff,0xf7,0x2f,0x6,0x10,0xff,0xff,0xff,0xff,0xf7,0xf0, + 0xd2,0x90,0x0,0x0,0x0,0x0,0x12,0xce,0x97,0xf0,0x0,0x0,0x0,0x0,0x13,0x4d, + 0x44,0x10,0x0,0x0,0x0,0x0,0x14,0x33,0xfa,0x90,0x0,0x0,0x0,0x0,0x15,0x23, + 0xeb,0x90,0x0,0x0,0x0,0x0,0x16,0x13,0xdc,0x90,0x0,0x0,0x0,0x0,0x17,0x3, + 0xcd,0x90,0x0,0x0,0x0,0x0,0x17,0xf3,0xbe,0x90,0x0,0x0,0x0,0x0,0x18,0xe3, + 0xaf,0x90,0x0,0x0,0x0,0x0,0x19,0xd3,0xa0,0x90,0x0,0x0,0x0,0x0,0x1a,0xc3, + 0x91,0x90,0x0,0x0,0x0,0x0,0x1b,0xbc,0xbd,0x10,0x0,0x0,0x0,0x0,0x1c,0xac, + 0xae,0x10,0x0,0x0,0x0,0x0,0x1d,0x9c,0x9f,0x10,0x0,0x0,0x0,0x0,0x1e,0x8c, + 0x90,0x10,0x0,0x0,0x0,0x0,0x1f,0x7c,0x81,0x10,0x0,0x0,0x0,0x0,0x20,0x6c, + 0x72,0x10,0x0,0x0,0x0,0x0,0x21,0x5c,0x63,0x10,0x0,0x0,0x0,0x0,0x22,0x4c, + 0x54,0x10,0x0,0x0,0x0,0x0,0x23,0x3c,0x45,0x10,0x0,0x0,0x0,0x0,0x24,0x2c, + 0x36,0x10,0x0,0x0,0x0,0x0,0x25,0x1c,0x27,0x10,0x0,0x0,0x0,0x0,0x26,0xc, + 0x18,0x10,0x0,0x0,0x0,0x0,0x27,0x5,0x43,0x90,0x0,0x0,0x0,0x0,0x27,0xf5, + 0x34,0x90,0x0,0x0,0x0,0x0,0x28,0xe5,0x25,0x90,0x0,0x0,0x0,0x0,0x29,0xd5, + 0x16,0x90,0x0,0x0,0x0,0x0,0x2a,0xc5,0x7,0x90,0x0,0x0,0x0,0x0,0x2b,0xb4, + 0xf8,0x90,0x0,0x0,0x0,0x0,0x2c,0xa4,0xe9,0x90,0x0,0x0,0x0,0x0,0x2d,0x94, + 0xda,0x90,0x0,0x0,0x0,0x0,0x2e,0x84,0xcb,0x90,0x0,0x0,0x0,0x0,0x2f,0x74, + 0xbc,0x90,0x0,0x0,0x0,0x0,0x30,0x64,0xad,0x90,0x0,0x0,0x0,0x0,0x31,0x5d, + 0xd9,0x10,0x0,0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d, + 0xbb,0x10,0x0,0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d, + 0x9d,0x10,0x0,0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd, + 0x7f,0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd, + 0x61,0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd, + 0x43,0x10,0x0,0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6, + 0x5f,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86, + 0x41,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66, + 0x23,0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46, + 0x5,0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25, + 0xe7,0x90,0x0,0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5, + 0xc9,0x90,0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee, + 0xe6,0x10,0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce, + 0xc8,0x10,0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae, + 0xaa,0x10,0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e, + 0x8c,0x10,0x0,0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e, + 0x6e,0x10,0x0,0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57, + 0x8a,0x90,0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37, + 0x6c,0x90,0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17, + 0x4e,0x90,0x0,0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7, + 0x30,0x90,0x0,0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7, + 0x12,0x90,0x0,0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6, + 0xf4,0x90,0x0,0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0, + 0x11,0x10,0x0,0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f, + 0xf3,0x10,0x0,0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f, + 0xd5,0x10,0x0,0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f, + 0xb7,0x10,0x0,0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f, + 0x99,0x10,0x0,0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8, + 0xb5,0x90,0x0,0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8, + 0x97,0x90,0x0,0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8, + 0x79,0x90,0x0,0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8, + 0x5b,0x90,0x0,0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88, + 0x3d,0x90,0x0,0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68, + 0x1f,0x90,0x0,0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51, + 0x3c,0x10,0x0,0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31, + 0x1e,0x10,0x0,0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11, + 0x0,0x10,0x0,0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0, + 0xe2,0x10,0x0,0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0, + 0xc4,0x10,0x0,0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0, + 0xa6,0x10,0x0,0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99, + 0xc2,0x90,0x0,0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79, + 0xa4,0x90,0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x2,0x1,0x2,0x1,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x2,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x0,0x0,0xa,0x14,0x0,0x0,0x0, + 0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe,0x10,0x0,0x9,0x0,0x0,0xe,0x10,0x0, + 0x9,0x0,0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe, + 0x10,0x0,0x9,0x4c,0x4d,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x43,0x45,0x54,0x0, + 0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0xa,0x43, + 0x45,0x54,0x2d,0x31,0x43,0x45,0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2c, + 0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30,0x2f,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Belfast + 0x0,0x0,0xe,0x67, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x7f,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x16,0x80,0x0,0x0,0x0,0x9e, - 0xd6,0x75,0x70,0x9f,0xa1,0x6e,0x60,0xaa,0x5,0xef,0x70,0xaa,0xe7,0x5f,0xf0,0xad, - 0xc9,0xa7,0xf0,0xae,0xa7,0x23,0xf0,0xaf,0xa0,0x4f,0x70,0xb0,0x87,0x5,0xf0,0xb1, - 0x89,0x6b,0xf0,0xb2,0x70,0x22,0x70,0xb2,0xe1,0x91,0x80,0xfb,0x25,0x72,0x40,0xfb, - 0xc2,0xef,0x70,0x8,0x6b,0x84,0x80,0x8,0xc6,0x6d,0xf0,0xb,0xe8,0xc,0x0,0xc, - 0x61,0x47,0xf0,0xd,0xc9,0x3f,0x80,0xe,0x8e,0xf2,0x70,0xf,0xd3,0x51,0x80,0x10, - 0x27,0xa3,0x70,0x1a,0xb7,0xa6,0x0,0x1e,0x8c,0x90,0x10,0x1f,0x7c,0x81,0x10,0x20, - 0x6c,0x72,0x10,0x21,0x5c,0x63,0x10,0x22,0x4c,0x54,0x10,0x23,0x3c,0x45,0x10,0x24, - 0x2c,0x36,0x10,0x25,0x1c,0x27,0x10,0x26,0xc,0x18,0x10,0x27,0x5,0x43,0x90,0x27, - 0xf5,0x34,0x90,0x28,0xe5,0x25,0x90,0x29,0xd5,0x16,0x90,0x2a,0xc5,0x7,0x90,0x2b, - 0xb4,0xf8,0x90,0x2c,0xa4,0xe9,0x90,0x2d,0x94,0xda,0x90,0x2e,0x84,0xcb,0x90,0x2f, - 0x74,0xbc,0x90,0x30,0x64,0xad,0x90,0x31,0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33, + 0x0,0x0,0xf3,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x11,0x80,0x0,0x0,0x0,0x9b, + 0x26,0xad,0xa0,0x9b,0xd6,0x5,0x20,0x9c,0xcf,0x30,0xa0,0x9d,0xa4,0xc3,0xa0,0x9e, + 0x9c,0x9d,0xa0,0x9f,0x97,0x1a,0xa0,0xa0,0x85,0xba,0x20,0xa1,0x76,0xfc,0xa0,0xa2, + 0x65,0x9c,0x20,0xa3,0x7b,0xc8,0xa0,0xa4,0x4e,0xb8,0xa0,0xa5,0x3f,0xfb,0x20,0xa6, + 0x25,0x60,0x20,0xa7,0x27,0xc6,0x20,0xa8,0x2a,0x2c,0x20,0xa8,0xeb,0xf8,0xa0,0xaa, + 0x0,0xd3,0xa0,0xaa,0xd5,0x15,0x20,0xab,0xe9,0xf0,0x20,0xac,0xc7,0x6c,0x20,0xad, + 0xc9,0xd2,0x20,0xae,0xa7,0x4e,0x20,0xaf,0xa0,0x79,0xa0,0xb0,0x87,0x30,0x20,0xb1, + 0x92,0xd0,0xa0,0xb2,0x70,0x4c,0xa0,0xb3,0x72,0xb2,0xa0,0xb4,0x50,0x2e,0xa0,0xb5, + 0x49,0x5a,0x20,0xb6,0x30,0x10,0xa0,0xb7,0x32,0x76,0xa0,0xb8,0xf,0xf2,0xa0,0xb9, + 0x12,0x58,0xa0,0xb9,0xef,0xd4,0xa0,0xba,0xe9,0x0,0x20,0xbb,0xd8,0xf1,0x20,0xbc, + 0xdb,0x57,0x20,0xbd,0xb8,0xd3,0x20,0xbe,0xb1,0xfe,0xa0,0xbf,0x98,0xb5,0x20,0xc0, + 0x9b,0x1b,0x20,0xc1,0x78,0x97,0x20,0xc2,0x7a,0xfd,0x20,0xc3,0x58,0x79,0x20,0xc4, + 0x51,0xa4,0xa0,0xc5,0x38,0x5b,0x20,0xc6,0x3a,0xc1,0x20,0xc7,0x58,0xd6,0xa0,0xc7, + 0xda,0x9,0xa0,0xca,0x16,0x26,0x90,0xca,0x97,0x59,0x90,0xcb,0xd1,0x1e,0x90,0xcc, + 0x77,0x3b,0x90,0xcd,0xb1,0x0,0x90,0xce,0x60,0x58,0x10,0xcf,0x90,0xe2,0x90,0xd0, + 0x6e,0x5e,0x90,0xd1,0x72,0x16,0x10,0xd1,0xfb,0x32,0x10,0xd2,0x69,0xfe,0x20,0xd3, + 0x63,0x29,0xa0,0xd4,0x49,0xe0,0x20,0xd5,0x1e,0x21,0xa0,0xd5,0x42,0xfd,0x90,0xd5, + 0xdf,0xe0,0x10,0xd6,0x4e,0xac,0x20,0xd6,0xfe,0x3,0xa0,0xd8,0x2e,0x8e,0x20,0xd8, + 0xf9,0x95,0x20,0xda,0xe,0x70,0x20,0xda,0xeb,0xec,0x20,0xdb,0xe5,0x17,0xa0,0xdc, + 0xcb,0xce,0x20,0xdd,0xc4,0xf9,0xa0,0xde,0xb4,0xea,0xa0,0xdf,0xae,0x16,0x20,0xe0, + 0x94,0xcc,0xa0,0xe1,0x72,0x48,0xa0,0xe2,0x6b,0x74,0x20,0xe3,0x52,0x2a,0xa0,0xe4, + 0x54,0x90,0xa0,0xe5,0x32,0xc,0xa0,0xe6,0x3d,0xad,0x20,0xe7,0x1b,0x29,0x20,0xe8, + 0x14,0x54,0xa0,0xe8,0xfb,0xb,0x20,0xe9,0xfd,0x71,0x20,0xea,0xda,0xed,0x20,0xeb, + 0xdd,0x53,0x20,0xec,0xba,0xcf,0x20,0xed,0xb3,0xfa,0xa0,0xee,0x9a,0xb1,0x20,0xef, + 0x81,0x67,0xa0,0xf0,0x9f,0x7d,0x20,0xf1,0x61,0x49,0xa0,0xf2,0x7f,0x5f,0x20,0xf3, + 0x4a,0x66,0x20,0xf4,0x5f,0x41,0x20,0xf5,0x21,0xd,0xa0,0xf6,0x3f,0x23,0x20,0xf7, + 0x0,0xef,0xa0,0xf8,0x1f,0x5,0x20,0xf8,0xe0,0xd1,0xa0,0xf9,0xfe,0xe7,0x20,0xfa, + 0xc0,0xb3,0xa0,0xfb,0xe8,0x3,0xa0,0xfc,0x7b,0xab,0xa0,0xfd,0xc7,0xbb,0x70,0x3, + 0x70,0xc6,0x20,0x4,0x29,0x58,0x20,0x5,0x50,0xa8,0x20,0x6,0x9,0x3a,0x20,0x7, + 0x30,0x8a,0x20,0x7,0xe9,0x1c,0x20,0x9,0x10,0x6c,0x20,0x9,0xc8,0xfe,0x20,0xa, + 0xf0,0x4e,0x20,0xb,0xb2,0x1a,0xa0,0xc,0xd0,0x30,0x20,0xd,0x91,0xfc,0xa0,0xe, + 0xb0,0x12,0x20,0xf,0x71,0xde,0xa0,0x10,0x99,0x2e,0xa0,0x11,0x51,0xc0,0xa0,0x12, + 0x79,0x10,0xa0,0x13,0x31,0xa2,0xa0,0x14,0x58,0xf2,0xa0,0x15,0x23,0xeb,0x90,0x16, + 0x38,0xc6,0x90,0x17,0x3,0xcd,0x90,0x18,0x18,0xa8,0x90,0x18,0xe3,0xaf,0x90,0x19, + 0xf8,0x8a,0x90,0x1a,0xc3,0x91,0x90,0x1b,0xe1,0xa7,0x10,0x1c,0xac,0xae,0x10,0x1d, + 0xc1,0x89,0x10,0x1e,0x8c,0x90,0x10,0x1f,0xa1,0x6b,0x10,0x20,0x6c,0x72,0x10,0x21, + 0x81,0x4d,0x10,0x22,0x4c,0x54,0x10,0x23,0x61,0x2f,0x10,0x24,0x2c,0x36,0x10,0x25, + 0x4a,0x4b,0x90,0x26,0xc,0x18,0x10,0x27,0x2a,0x2d,0x90,0x27,0xf5,0x34,0x90,0x29, + 0xa,0xf,0x90,0x29,0xd5,0x16,0x90,0x2a,0xe9,0xf1,0x90,0x2b,0xb4,0xf8,0x90,0x2c, + 0xc9,0xd3,0x90,0x2d,0x94,0xda,0x90,0x2e,0xa9,0xb5,0x90,0x2f,0x74,0xbc,0x90,0x30, + 0x89,0x97,0x90,0x30,0xe7,0x24,0x0,0x31,0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33, 0x3d,0xbb,0x10,0x34,0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36, 0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a, 0xbd,0x43,0x10,0x3b,0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e, @@ -41105,1601 +41174,3531 @@ static const unsigned char qt_resource_data[] = { 0x31,0x1e,0x10,0x74,0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76, 0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a, 0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e, - 0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x1,0x2,0x1,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x5,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0xff,0xff,0xfb,0x4,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x4,0x0,0x0,0xe,0x10,0x1,0x8,0x0,0x0,0xe,0x10,0x1,0x8,0x0,0x0, - 0x0,0x0,0x0,0x4,0x0,0x0,0xe,0x10,0x0,0xd,0x0,0x0,0x1c,0x20,0x1,0x11, - 0x0,0x0,0xe,0x10,0x0,0xd,0x4c,0x4d,0x54,0x0,0x57,0x45,0x54,0x0,0x57,0x45, - 0x53,0x54,0x0,0x43,0x45,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x1, - 0x1,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x54,0x5a,0x69,0x66, - 0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80, - 0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x16,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0xff,0xff,0xff,0xff,0x7e,0x36,0xb9,0xfc,0xff,0xff,0xff,0xff,0x9e,0xd6,0x75,0x70, - 0xff,0xff,0xff,0xff,0x9f,0xa1,0x6e,0x60,0xff,0xff,0xff,0xff,0xaa,0x5,0xef,0x70, - 0xff,0xff,0xff,0xff,0xaa,0xe7,0x5f,0xf0,0xff,0xff,0xff,0xff,0xad,0xc9,0xa7,0xf0, - 0xff,0xff,0xff,0xff,0xae,0xa7,0x23,0xf0,0xff,0xff,0xff,0xff,0xaf,0xa0,0x4f,0x70, - 0xff,0xff,0xff,0xff,0xb0,0x87,0x5,0xf0,0xff,0xff,0xff,0xff,0xb1,0x89,0x6b,0xf0, - 0xff,0xff,0xff,0xff,0xb2,0x70,0x22,0x70,0xff,0xff,0xff,0xff,0xb2,0xe1,0x91,0x80, - 0xff,0xff,0xff,0xff,0xfb,0x25,0x72,0x40,0xff,0xff,0xff,0xff,0xfb,0xc2,0xef,0x70, - 0x0,0x0,0x0,0x0,0x8,0x6b,0x84,0x80,0x0,0x0,0x0,0x0,0x8,0xc6,0x6d,0xf0, - 0x0,0x0,0x0,0x0,0xb,0xe8,0xc,0x0,0x0,0x0,0x0,0x0,0xc,0x61,0x47,0xf0, - 0x0,0x0,0x0,0x0,0xd,0xc9,0x3f,0x80,0x0,0x0,0x0,0x0,0xe,0x8e,0xf2,0x70, - 0x0,0x0,0x0,0x0,0xf,0xd3,0x51,0x80,0x0,0x0,0x0,0x0,0x10,0x27,0xa3,0x70, - 0x0,0x0,0x0,0x0,0x1a,0xb7,0xa6,0x0,0x0,0x0,0x0,0x0,0x1e,0x8c,0x90,0x10, - 0x0,0x0,0x0,0x0,0x1f,0x7c,0x81,0x10,0x0,0x0,0x0,0x0,0x20,0x6c,0x72,0x10, - 0x0,0x0,0x0,0x0,0x21,0x5c,0x63,0x10,0x0,0x0,0x0,0x0,0x22,0x4c,0x54,0x10, - 0x0,0x0,0x0,0x0,0x23,0x3c,0x45,0x10,0x0,0x0,0x0,0x0,0x24,0x2c,0x36,0x10, - 0x0,0x0,0x0,0x0,0x25,0x1c,0x27,0x10,0x0,0x0,0x0,0x0,0x26,0xc,0x18,0x10, - 0x0,0x0,0x0,0x0,0x27,0x5,0x43,0x90,0x0,0x0,0x0,0x0,0x27,0xf5,0x34,0x90, - 0x0,0x0,0x0,0x0,0x28,0xe5,0x25,0x90,0x0,0x0,0x0,0x0,0x29,0xd5,0x16,0x90, - 0x0,0x0,0x0,0x0,0x2a,0xc5,0x7,0x90,0x0,0x0,0x0,0x0,0x2b,0xb4,0xf8,0x90, - 0x0,0x0,0x0,0x0,0x2c,0xa4,0xe9,0x90,0x0,0x0,0x0,0x0,0x2d,0x94,0xda,0x90, - 0x0,0x0,0x0,0x0,0x2e,0x84,0xcb,0x90,0x0,0x0,0x0,0x0,0x2f,0x74,0xbc,0x90, - 0x0,0x0,0x0,0x0,0x30,0x64,0xad,0x90,0x0,0x0,0x0,0x0,0x31,0x5d,0xd9,0x10, - 0x0,0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d,0xbb,0x10, - 0x0,0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d,0x9d,0x10, - 0x0,0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd,0x7f,0x10, - 0x0,0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd,0x61,0x10, - 0x0,0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd,0x43,0x10, - 0x0,0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f,0x90, - 0x0,0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86,0x41,0x90, - 0x0,0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66,0x23,0x90, - 0x0,0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46,0x5,0x90, - 0x0,0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25,0xe7,0x90, - 0x0,0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5,0xc9,0x90, - 0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee,0xe6,0x10, - 0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce,0xc8,0x10, - 0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae,0xaa,0x10, - 0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c,0x10, - 0x0,0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e,0x10, - 0x0,0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57,0x8a,0x90, - 0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37,0x6c,0x90, - 0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17,0x4e,0x90, - 0x0,0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7,0x30,0x90, - 0x0,0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7,0x12,0x90, - 0x0,0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4,0x90, - 0x0,0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0,0x11,0x10, - 0x0,0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3,0x10, - 0x0,0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f,0xd5,0x10, - 0x0,0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f,0xb7,0x10, - 0x0,0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f,0x99,0x10, - 0x0,0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8,0xb5,0x90, - 0x0,0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8,0x97,0x90, - 0x0,0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8,0x79,0x90, - 0x0,0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b,0x90, - 0x0,0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88,0x3d,0x90, - 0x0,0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68,0x1f,0x90, - 0x0,0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51,0x3c,0x10, - 0x0,0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31,0x1e,0x10, - 0x0,0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11,0x0,0x10, - 0x0,0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0,0xe2,0x10, - 0x0,0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0,0xc4,0x10, - 0x0,0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6,0x10, - 0x0,0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99,0xc2,0x90, - 0x0,0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79,0xa4,0x90, - 0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x1,0x2,0x1,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x5, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0xff,0xff,0xfb,0x4,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x4,0x0,0x0,0xe,0x10,0x1,0x8,0x0,0x0,0xe,0x10,0x1,0x8, - 0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0xe,0x10,0x0,0xd,0x0,0x0,0x1c,0x20, - 0x1,0x11,0x0,0x0,0xe,0x10,0x0,0xd,0x4c,0x4d,0x54,0x0,0x57,0x45,0x54,0x0, - 0x57,0x45,0x53,0x54,0x0,0x43,0x45,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x0,0x0, - 0x0,0x1,0x1,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0xa,0x43, - 0x45,0x54,0x2d,0x31,0x43,0x45,0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2c, - 0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30,0x2f,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Windhoek - 0x0,0x0,0x6,0x2e, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x5d,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x17,0x80,0x0,0x0,0x0,0x82, - 0x46,0xcf,0x68,0xcc,0xae,0x8c,0x80,0xcd,0x9e,0x6f,0x70,0x26,0x6,0xa7,0xe0,0x2d, - 0x9d,0xea,0xe0,0x2e,0x69,0x1c,0x10,0x2f,0x7d,0xe9,0x0,0x30,0x48,0xfe,0x10,0x31, - 0x67,0x5,0x80,0x32,0x28,0xe0,0x10,0x33,0x46,0xe7,0x80,0x34,0x11,0xfc,0x90,0x35, - 0x26,0xc9,0x80,0x35,0xf1,0xde,0x90,0x37,0x6,0xab,0x80,0x37,0xd1,0xc0,0x90,0x38, - 0xe6,0x8d,0x80,0x39,0xb1,0xa2,0x90,0x3a,0xc6,0x6f,0x80,0x3b,0x91,0x84,0x90,0x3c, - 0xaf,0x8c,0x0,0x3d,0x71,0x66,0x90,0x3e,0x8f,0x6e,0x0,0x3f,0x5a,0x83,0x10,0x40, - 0x6f,0x50,0x0,0x41,0x3a,0x65,0x10,0x42,0x4f,0x32,0x0,0x43,0x1a,0x47,0x10,0x44, - 0x2f,0x14,0x0,0x44,0xfa,0x29,0x10,0x46,0xe,0xf6,0x0,0x46,0xda,0xb,0x10,0x47, - 0xf8,0x12,0x80,0x48,0xc3,0x27,0x90,0x49,0xd7,0xf4,0x80,0x4a,0xa3,0x9,0x90,0x4b, - 0xb7,0xd6,0x80,0x4c,0x82,0xeb,0x90,0x4d,0x97,0xb8,0x80,0x4e,0x62,0xcd,0x90,0x4f, - 0x77,0x9a,0x80,0x50,0x42,0xaf,0x90,0x51,0x60,0xb7,0x0,0x52,0x22,0x91,0x90,0x53, - 0x40,0x99,0x0,0x54,0xb,0xae,0x10,0x55,0x20,0x7b,0x0,0x55,0xeb,0x90,0x10,0x57, - 0x0,0x5d,0x0,0x57,0xcb,0x72,0x10,0x58,0xe0,0x3f,0x0,0x59,0xab,0x54,0x10,0x5a, - 0xc0,0x21,0x0,0x5b,0x8b,0x36,0x10,0x5c,0xa9,0x3d,0x80,0x5d,0x6b,0x18,0x10,0x5e, - 0x89,0x1f,0x80,0x5f,0x54,0x34,0x90,0x60,0x69,0x1,0x80,0x61,0x34,0x16,0x90,0x62, - 0x48,0xe3,0x80,0x63,0x13,0xf8,0x90,0x64,0x28,0xc5,0x80,0x64,0xf3,0xda,0x90,0x66, - 0x11,0xe2,0x0,0x66,0xd3,0xbc,0x90,0x67,0xf1,0xc4,0x0,0x68,0xbc,0xd9,0x10,0x69, - 0xd1,0xa6,0x0,0x6a,0x9c,0xbb,0x10,0x6b,0xb1,0x88,0x0,0x6c,0x7c,0x9d,0x10,0x6d, - 0x91,0x6a,0x0,0x6e,0x5c,0x7f,0x10,0x6f,0x71,0x4c,0x0,0x70,0x3c,0x61,0x10,0x71, - 0x5a,0x68,0x80,0x72,0x1c,0x43,0x10,0x73,0x3a,0x4a,0x80,0x74,0x5,0x5f,0x90,0x75, - 0x1a,0x2c,0x80,0x75,0xe5,0x41,0x90,0x76,0xfa,0xe,0x80,0x77,0xc5,0x23,0x90,0x78, - 0xd9,0xf0,0x80,0x79,0xa5,0x5,0x90,0x7a,0xb9,0xd2,0x80,0x7b,0x84,0xe7,0x90,0x7c, - 0xa2,0xef,0x0,0x7d,0x6e,0x4,0x10,0x7e,0x82,0xd1,0x0,0x7f,0x4d,0xe6,0x10,0x1, - 0x2,0x3,0x2,0x4,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x0,0x0,0x10,0x8, - 0x0,0x0,0x0,0x0,0x15,0x18,0x0,0x4,0x0,0x0,0x1c,0x20,0x0,0x9,0x0,0x0, - 0x2a,0x30,0x1,0x9,0x0,0x0,0x1c,0x20,0x0,0xe,0x0,0x0,0x1c,0x20,0x1,0x12, - 0x0,0x0,0xe,0x10,0x0,0x5,0x4c,0x4d,0x54,0x0,0x53,0x57,0x41,0x54,0x0,0x53, - 0x41,0x53,0x54,0x0,0x43,0x41,0x54,0x0,0x57,0x41,0x53,0x54,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5e,0x0, - 0x0,0x0,0x7,0x0,0x0,0x0,0x17,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff, - 0xff,0xff,0xff,0x6d,0x7b,0x4b,0x78,0xff,0xff,0xff,0xff,0x82,0x46,0xcf,0x68,0xff, - 0xff,0xff,0xff,0xcc,0xae,0x8c,0x80,0xff,0xff,0xff,0xff,0xcd,0x9e,0x6f,0x70,0x0, - 0x0,0x0,0x0,0x26,0x6,0xa7,0xe0,0x0,0x0,0x0,0x0,0x2d,0x9d,0xea,0xe0,0x0, - 0x0,0x0,0x0,0x2e,0x69,0x1c,0x10,0x0,0x0,0x0,0x0,0x2f,0x7d,0xe9,0x0,0x0, - 0x0,0x0,0x0,0x30,0x48,0xfe,0x10,0x0,0x0,0x0,0x0,0x31,0x67,0x5,0x80,0x0, - 0x0,0x0,0x0,0x32,0x28,0xe0,0x10,0x0,0x0,0x0,0x0,0x33,0x46,0xe7,0x80,0x0, - 0x0,0x0,0x0,0x34,0x11,0xfc,0x90,0x0,0x0,0x0,0x0,0x35,0x26,0xc9,0x80,0x0, - 0x0,0x0,0x0,0x35,0xf1,0xde,0x90,0x0,0x0,0x0,0x0,0x37,0x6,0xab,0x80,0x0, - 0x0,0x0,0x0,0x37,0xd1,0xc0,0x90,0x0,0x0,0x0,0x0,0x38,0xe6,0x8d,0x80,0x0, - 0x0,0x0,0x0,0x39,0xb1,0xa2,0x90,0x0,0x0,0x0,0x0,0x3a,0xc6,0x6f,0x80,0x0, - 0x0,0x0,0x0,0x3b,0x91,0x84,0x90,0x0,0x0,0x0,0x0,0x3c,0xaf,0x8c,0x0,0x0, - 0x0,0x0,0x0,0x3d,0x71,0x66,0x90,0x0,0x0,0x0,0x0,0x3e,0x8f,0x6e,0x0,0x0, - 0x0,0x0,0x0,0x3f,0x5a,0x83,0x10,0x0,0x0,0x0,0x0,0x40,0x6f,0x50,0x0,0x0, - 0x0,0x0,0x0,0x41,0x3a,0x65,0x10,0x0,0x0,0x0,0x0,0x42,0x4f,0x32,0x0,0x0, - 0x0,0x0,0x0,0x43,0x1a,0x47,0x10,0x0,0x0,0x0,0x0,0x44,0x2f,0x14,0x0,0x0, - 0x0,0x0,0x0,0x44,0xfa,0x29,0x10,0x0,0x0,0x0,0x0,0x46,0xe,0xf6,0x0,0x0, - 0x0,0x0,0x0,0x46,0xda,0xb,0x10,0x0,0x0,0x0,0x0,0x47,0xf8,0x12,0x80,0x0, - 0x0,0x0,0x0,0x48,0xc3,0x27,0x90,0x0,0x0,0x0,0x0,0x49,0xd7,0xf4,0x80,0x0, - 0x0,0x0,0x0,0x4a,0xa3,0x9,0x90,0x0,0x0,0x0,0x0,0x4b,0xb7,0xd6,0x80,0x0, - 0x0,0x0,0x0,0x4c,0x82,0xeb,0x90,0x0,0x0,0x0,0x0,0x4d,0x97,0xb8,0x80,0x0, - 0x0,0x0,0x0,0x4e,0x62,0xcd,0x90,0x0,0x0,0x0,0x0,0x4f,0x77,0x9a,0x80,0x0, - 0x0,0x0,0x0,0x50,0x42,0xaf,0x90,0x0,0x0,0x0,0x0,0x51,0x60,0xb7,0x0,0x0, - 0x0,0x0,0x0,0x52,0x22,0x91,0x90,0x0,0x0,0x0,0x0,0x53,0x40,0x99,0x0,0x0, - 0x0,0x0,0x0,0x54,0xb,0xae,0x10,0x0,0x0,0x0,0x0,0x55,0x20,0x7b,0x0,0x0, - 0x0,0x0,0x0,0x55,0xeb,0x90,0x10,0x0,0x0,0x0,0x0,0x57,0x0,0x5d,0x0,0x0, - 0x0,0x0,0x0,0x57,0xcb,0x72,0x10,0x0,0x0,0x0,0x0,0x58,0xe0,0x3f,0x0,0x0, - 0x0,0x0,0x0,0x59,0xab,0x54,0x10,0x0,0x0,0x0,0x0,0x5a,0xc0,0x21,0x0,0x0, - 0x0,0x0,0x0,0x5b,0x8b,0x36,0x10,0x0,0x0,0x0,0x0,0x5c,0xa9,0x3d,0x80,0x0, - 0x0,0x0,0x0,0x5d,0x6b,0x18,0x10,0x0,0x0,0x0,0x0,0x5e,0x89,0x1f,0x80,0x0, - 0x0,0x0,0x0,0x5f,0x54,0x34,0x90,0x0,0x0,0x0,0x0,0x60,0x69,0x1,0x80,0x0, - 0x0,0x0,0x0,0x61,0x34,0x16,0x90,0x0,0x0,0x0,0x0,0x62,0x48,0xe3,0x80,0x0, - 0x0,0x0,0x0,0x63,0x13,0xf8,0x90,0x0,0x0,0x0,0x0,0x64,0x28,0xc5,0x80,0x0, - 0x0,0x0,0x0,0x64,0xf3,0xda,0x90,0x0,0x0,0x0,0x0,0x66,0x11,0xe2,0x0,0x0, - 0x0,0x0,0x0,0x66,0xd3,0xbc,0x90,0x0,0x0,0x0,0x0,0x67,0xf1,0xc4,0x0,0x0, - 0x0,0x0,0x0,0x68,0xbc,0xd9,0x10,0x0,0x0,0x0,0x0,0x69,0xd1,0xa6,0x0,0x0, - 0x0,0x0,0x0,0x6a,0x9c,0xbb,0x10,0x0,0x0,0x0,0x0,0x6b,0xb1,0x88,0x0,0x0, - 0x0,0x0,0x0,0x6c,0x7c,0x9d,0x10,0x0,0x0,0x0,0x0,0x6d,0x91,0x6a,0x0,0x0, - 0x0,0x0,0x0,0x6e,0x5c,0x7f,0x10,0x0,0x0,0x0,0x0,0x6f,0x71,0x4c,0x0,0x0, - 0x0,0x0,0x0,0x70,0x3c,0x61,0x10,0x0,0x0,0x0,0x0,0x71,0x5a,0x68,0x80,0x0, - 0x0,0x0,0x0,0x72,0x1c,0x43,0x10,0x0,0x0,0x0,0x0,0x73,0x3a,0x4a,0x80,0x0, - 0x0,0x0,0x0,0x74,0x5,0x5f,0x90,0x0,0x0,0x0,0x0,0x75,0x1a,0x2c,0x80,0x0, - 0x0,0x0,0x0,0x75,0xe5,0x41,0x90,0x0,0x0,0x0,0x0,0x76,0xfa,0xe,0x80,0x0, - 0x0,0x0,0x0,0x77,0xc5,0x23,0x90,0x0,0x0,0x0,0x0,0x78,0xd9,0xf0,0x80,0x0, - 0x0,0x0,0x0,0x79,0xa5,0x5,0x90,0x0,0x0,0x0,0x0,0x7a,0xb9,0xd2,0x80,0x0, - 0x0,0x0,0x0,0x7b,0x84,0xe7,0x90,0x0,0x0,0x0,0x0,0x7c,0xa2,0xef,0x0,0x0, - 0x0,0x0,0x0,0x7d,0x6e,0x4,0x10,0x0,0x0,0x0,0x0,0x7e,0x82,0xd1,0x0,0x0, - 0x0,0x0,0x0,0x7f,0x4d,0xe6,0x10,0x0,0x1,0x2,0x3,0x2,0x4,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3, + 0x1,0x3,0x1,0x2,0x1,0x2,0x1,0x3,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x4,0x6,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x7,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x0,0x0,0x10,0x8,0x0,0x0,0x0,0x0,0x15,0x18,0x0, - 0x4,0x0,0x0,0x1c,0x20,0x0,0x9,0x0,0x0,0x2a,0x30,0x1,0x9,0x0,0x0,0x1c, - 0x20,0x0,0xe,0x0,0x0,0x1c,0x20,0x1,0x12,0x0,0x0,0xe,0x10,0x0,0x5,0x4c, - 0x4d,0x54,0x0,0x53,0x57,0x41,0x54,0x0,0x53,0x41,0x53,0x54,0x0,0x43,0x41,0x54, - 0x0,0x57,0x41,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0xa,0x57,0x41,0x54,0x2d,0x31,0x57,0x41,0x53,0x54,0x2c,0x4d, - 0x39,0x2e,0x31,0x2e,0x30,0x2c,0x4d,0x34,0x2e,0x31,0x2e,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Khartoum - 0x0,0x0,0x2,0xab, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x23,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x11,0x80,0x0,0x0,0x0,0xb6, - 0xa3,0xda,0x0,0x0,0x9e,0x17,0xe0,0x1,0x7a,0x34,0x50,0x2,0x7d,0xf9,0xe0,0x3, - 0x5b,0x67,0xd0,0x4,0x60,0x7e,0xe0,0x5,0x3d,0xec,0xd0,0x6,0x40,0x60,0xe0,0x7, - 0x1f,0x20,0x50,0x8,0x20,0x42,0xe0,0x9,0x0,0x53,0xd0,0xa,0x0,0x24,0xe0,0xa, - 0xe1,0x87,0x50,0xb,0xe0,0x6,0xe0,0xc,0xc4,0xc,0x50,0xd,0xbf,0xe8,0xe0,0xe, - 0xa5,0x3f,0xd0,0xf,0xa9,0x5,0x60,0x10,0x86,0x73,0x50,0x11,0x88,0xe7,0x60,0x12, - 0x67,0xa6,0xd0,0x13,0x68,0xc9,0x60,0x14,0x4a,0x2b,0xd0,0x15,0x48,0xab,0x60,0x16, - 0x2b,0x5f,0x50,0x17,0x28,0x8d,0x60,0x18,0xc,0x92,0xd0,0x19,0x8,0x6f,0x60,0x19, - 0xed,0xc6,0x50,0x1a,0xf1,0x8b,0xe0,0x1b,0xd0,0x4b,0x50,0x1c,0xd1,0x6d,0xe0,0x1d, - 0xb1,0x7e,0xd0,0x38,0x80,0x45,0x20,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x0,0x0,0x1e,0x80,0x0,0x0, - 0x0,0x0,0x2a,0x30,0x1,0x4,0x0,0x0,0x1c,0x20,0x0,0x9,0x0,0x0,0x2a,0x30, - 0x0,0xd,0x4c,0x4d,0x54,0x0,0x43,0x41,0x53,0x54,0x0,0x43,0x41,0x54,0x0,0x45, - 0x41,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0xff,0xff,0xff,0xb5,0x0,0x0, + 0x0,0x0,0xe,0x10,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x1c,0x20, + 0x1,0xc,0x0,0x0,0xe,0x10,0x0,0x4,0x0,0x0,0xe,0x10,0x1,0x4,0x0,0x0, + 0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x42,0x53, + 0x54,0x0,0x47,0x4d,0x54,0x0,0x42,0x44,0x53,0x54,0x0,0x0,0x1,0x1,0x1,0x0, + 0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x54,0x5a,0x69,0x66,0x32, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x23,0x0, - 0x0,0x0,0x4,0x0,0x0,0x0,0x11,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff, - 0xff,0xff,0xff,0xb6,0xa3,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x9e,0x17,0xe0,0x0, - 0x0,0x0,0x0,0x1,0x7a,0x34,0x50,0x0,0x0,0x0,0x0,0x2,0x7d,0xf9,0xe0,0x0, - 0x0,0x0,0x0,0x3,0x5b,0x67,0xd0,0x0,0x0,0x0,0x0,0x4,0x60,0x7e,0xe0,0x0, - 0x0,0x0,0x0,0x5,0x3d,0xec,0xd0,0x0,0x0,0x0,0x0,0x6,0x40,0x60,0xe0,0x0, - 0x0,0x0,0x0,0x7,0x1f,0x20,0x50,0x0,0x0,0x0,0x0,0x8,0x20,0x42,0xe0,0x0, - 0x0,0x0,0x0,0x9,0x0,0x53,0xd0,0x0,0x0,0x0,0x0,0xa,0x0,0x24,0xe0,0x0, - 0x0,0x0,0x0,0xa,0xe1,0x87,0x50,0x0,0x0,0x0,0x0,0xb,0xe0,0x6,0xe0,0x0, - 0x0,0x0,0x0,0xc,0xc4,0xc,0x50,0x0,0x0,0x0,0x0,0xd,0xbf,0xe8,0xe0,0x0, - 0x0,0x0,0x0,0xe,0xa5,0x3f,0xd0,0x0,0x0,0x0,0x0,0xf,0xa9,0x5,0x60,0x0, - 0x0,0x0,0x0,0x10,0x86,0x73,0x50,0x0,0x0,0x0,0x0,0x11,0x88,0xe7,0x60,0x0, - 0x0,0x0,0x0,0x12,0x67,0xa6,0xd0,0x0,0x0,0x0,0x0,0x13,0x68,0xc9,0x60,0x0, - 0x0,0x0,0x0,0x14,0x4a,0x2b,0xd0,0x0,0x0,0x0,0x0,0x15,0x48,0xab,0x60,0x0, - 0x0,0x0,0x0,0x16,0x2b,0x5f,0x50,0x0,0x0,0x0,0x0,0x17,0x28,0x8d,0x60,0x0, - 0x0,0x0,0x0,0x18,0xc,0x92,0xd0,0x0,0x0,0x0,0x0,0x19,0x8,0x6f,0x60,0x0, - 0x0,0x0,0x0,0x19,0xed,0xc6,0x50,0x0,0x0,0x0,0x0,0x1a,0xf1,0x8b,0xe0,0x0, - 0x0,0x0,0x0,0x1b,0xd0,0x4b,0x50,0x0,0x0,0x0,0x0,0x1c,0xd1,0x6d,0xe0,0x0, - 0x0,0x0,0x0,0x1d,0xb1,0x7e,0xd0,0x0,0x0,0x0,0x0,0x38,0x80,0x45,0x20,0x0, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x3,0x0,0x0,0x1e,0x80,0x0,0x0,0x0,0x0,0x2a,0x30,0x1,0x4,0x0,0x0, - 0x1c,0x20,0x0,0x9,0x0,0x0,0x2a,0x30,0x0,0xd,0x4c,0x4d,0x54,0x0,0x43,0x41, - 0x53,0x54,0x0,0x43,0x41,0x54,0x0,0x45,0x41,0x54,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0xa,0x45,0x41,0x54,0x2d,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Mbabane - 0x0,0x0,0x1,0xf, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x9,0x80,0x0,0x0,0x0,0x82, - 0x46,0xcf,0x68,0xcc,0xae,0x8c,0x80,0xcd,0x9e,0x6f,0x70,0xce,0x8e,0x6e,0x80,0xcf, - 0x7e,0x51,0x70,0x1,0x3,0x2,0x3,0x2,0x3,0x0,0x0,0x1a,0x40,0x0,0x0,0x0, - 0x0,0x15,0x18,0x0,0x4,0x0,0x0,0x2a,0x30,0x1,0x4,0x0,0x0,0x1c,0x20,0x0, - 0x4,0x4c,0x4d,0x54,0x0,0x53,0x41,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x9,0xf8,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x6d,0x7b,0x41,0x40,0xff,0xff, - 0xff,0xff,0x82,0x46,0xcf,0x68,0xff,0xff,0xff,0xff,0xcc,0xae,0x8c,0x80,0xff,0xff, - 0xff,0xff,0xcd,0x9e,0x6f,0x70,0xff,0xff,0xff,0xff,0xce,0x8e,0x6e,0x80,0xff,0xff, - 0xff,0xff,0xcf,0x7e,0x51,0x70,0x0,0x1,0x3,0x2,0x3,0x2,0x3,0x0,0x0,0x1a, - 0x40,0x0,0x0,0x0,0x0,0x15,0x18,0x0,0x4,0x0,0x0,0x2a,0x30,0x1,0x4,0x0, - 0x0,0x1c,0x20,0x0,0x4,0x4c,0x4d,0x54,0x0,0x53,0x41,0x53,0x54,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x53,0x41,0x53,0x54,0x2d,0x32,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Casablanca - 0x0,0x0,0x6,0x6b, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x65,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x11,0x80,0x0,0x0,0x0,0x96, - 0x51,0xf9,0x9c,0xc6,0xff,0x14,0x80,0xc7,0x58,0xac,0x70,0xc7,0xd9,0xed,0x80,0xd2, - 0xa1,0x32,0xf0,0xdb,0x35,0xa4,0x0,0xdb,0xee,0x27,0xf0,0xfb,0x25,0x72,0x40,0xfb, - 0xc2,0xef,0x70,0x8,0x6b,0x84,0x80,0x8,0xc6,0x6d,0xf0,0xb,0xe8,0xc,0x0,0xc, - 0x61,0x47,0xf0,0xd,0xc9,0x3f,0x80,0xe,0x8e,0xf2,0x70,0xf,0xd3,0x51,0x80,0x10, - 0x27,0xa3,0x70,0x1a,0xb7,0xa6,0x0,0x1e,0x18,0x6f,0xf0,0x48,0x41,0xe6,0x80,0x48, - 0xbb,0x22,0x70,0x4a,0x23,0x1a,0x0,0x4a,0x8d,0xd5,0x70,0x4b,0xdc,0xc0,0x80,0x4c, - 0x5d,0xe5,0x70,0x4d,0x97,0xb8,0x80,0x4e,0x34,0x8c,0xf0,0x4f,0x9c,0xa0,0xa0,0x50, - 0x8,0xbb,0xa0,0x50,0x31,0x9a,0x20,0x50,0x67,0xa7,0xa0,0x51,0x7c,0x82,0xa0,0x51, - 0xd8,0xcb,0xa0,0x52,0x5,0x9e,0xa0,0x52,0x6c,0x73,0xa0,0x53,0x37,0x7a,0xa0,0x53, - 0xae,0x21,0xa0,0x53,0xdc,0x46,0x20,0x54,0x4c,0x55,0xa0,0x55,0x17,0x5c,0xa0,0x55, - 0x7c,0xe0,0x20,0x55,0xab,0x4,0xa0,0x56,0x2c,0x37,0xa0,0x56,0xf7,0x3e,0xa0,0x57, - 0x53,0x87,0xa0,0x57,0x81,0xac,0x20,0x58,0x15,0x54,0x20,0x58,0xd7,0x20,0xa0,0x59, - 0x20,0xf4,0xa0,0x59,0x58,0x53,0xa0,0x59,0xf5,0x36,0x20,0x5a,0xb7,0x2,0xa0,0x5a, - 0xf7,0x9c,0x20,0x5b,0x25,0xc0,0xa0,0x5b,0xd5,0x18,0x20,0x5c,0xa0,0x1f,0x20,0x5c, - 0xce,0x43,0xa0,0x5c,0xfc,0x68,0x20,0x5d,0xb4,0xfa,0x20,0x5e,0x80,0x1,0x20,0x5e, - 0x9b,0xb0,0xa0,0x5e,0xc9,0xd5,0x20,0x5f,0x94,0xdc,0x20,0x60,0x5f,0xe3,0x20,0x60, - 0x72,0x58,0x20,0x60,0xa0,0x7c,0xa0,0x61,0x7d,0xf8,0xa0,0x62,0x77,0x24,0x20,0x63, - 0x5d,0xda,0xa0,0x64,0x44,0x91,0x20,0x65,0x3d,0xbc,0xa0,0x66,0x1b,0x38,0xa0,0x67, - 0x1d,0x9e,0xa0,0x67,0xf1,0xe0,0x20,0x68,0xfd,0x80,0xa0,0x69,0xc8,0x87,0xa0,0x6a, - 0xdd,0x62,0xa0,0x6b,0xa8,0x69,0xa0,0x6c,0xc6,0x7f,0x20,0x6d,0x88,0x4b,0xa0,0x6e, - 0xa6,0x61,0x20,0x6f,0x68,0x2d,0xa0,0x70,0x86,0x43,0x20,0x71,0x51,0x4a,0x20,0x72, - 0x66,0x25,0x20,0x73,0x31,0x2c,0x20,0x74,0x46,0x7,0x20,0x75,0x11,0xe,0x20,0x76, - 0x2f,0x23,0xa0,0x76,0xf0,0xf0,0x20,0x78,0xf,0x5,0xa0,0x78,0xd0,0xd2,0x20,0x79, - 0xee,0xe7,0xa0,0x7a,0xb0,0xb4,0x20,0x7b,0xce,0xc9,0xa0,0x7c,0x99,0xd0,0xa0,0x7d, - 0xa5,0x71,0x20,0x7e,0x79,0xb2,0xa0,0x7f,0x72,0xde,0x20,0x7f,0x8e,0x9b,0xb0,0x0, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x3,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x2,0xff,0xff,0xf8,0xe4,0x0,0x0,0x0,0x0,0xe,0x10,0x1,0x4, - 0x0,0x0,0x0,0x0,0x0,0x9,0x0,0x0,0xe,0x10,0x0,0xd,0x0,0x0,0x0,0x0, - 0x0,0x9,0x4c,0x4d,0x54,0x0,0x57,0x45,0x53,0x54,0x0,0x57,0x45,0x54,0x0,0x43, - 0x45,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, - 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x65,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x11,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0x96,0x51,0xf9,0x9c,0xff,0xff,0xff,0xff,0xc6,0xff,0x14, - 0x80,0xff,0xff,0xff,0xff,0xc7,0x58,0xac,0x70,0xff,0xff,0xff,0xff,0xc7,0xd9,0xed, - 0x80,0xff,0xff,0xff,0xff,0xd2,0xa1,0x32,0xf0,0xff,0xff,0xff,0xff,0xdb,0x35,0xa4, - 0x0,0xff,0xff,0xff,0xff,0xdb,0xee,0x27,0xf0,0xff,0xff,0xff,0xff,0xfb,0x25,0x72, - 0x40,0xff,0xff,0xff,0xff,0xfb,0xc2,0xef,0x70,0x0,0x0,0x0,0x0,0x8,0x6b,0x84, - 0x80,0x0,0x0,0x0,0x0,0x8,0xc6,0x6d,0xf0,0x0,0x0,0x0,0x0,0xb,0xe8,0xc, - 0x0,0x0,0x0,0x0,0x0,0xc,0x61,0x47,0xf0,0x0,0x0,0x0,0x0,0xd,0xc9,0x3f, - 0x80,0x0,0x0,0x0,0x0,0xe,0x8e,0xf2,0x70,0x0,0x0,0x0,0x0,0xf,0xd3,0x51, - 0x80,0x0,0x0,0x0,0x0,0x10,0x27,0xa3,0x70,0x0,0x0,0x0,0x0,0x1a,0xb7,0xa6, - 0x0,0x0,0x0,0x0,0x0,0x1e,0x18,0x6f,0xf0,0x0,0x0,0x0,0x0,0x48,0x41,0xe6, - 0x80,0x0,0x0,0x0,0x0,0x48,0xbb,0x22,0x70,0x0,0x0,0x0,0x0,0x4a,0x23,0x1a, - 0x0,0x0,0x0,0x0,0x0,0x4a,0x8d,0xd5,0x70,0x0,0x0,0x0,0x0,0x4b,0xdc,0xc0, - 0x80,0x0,0x0,0x0,0x0,0x4c,0x5d,0xe5,0x70,0x0,0x0,0x0,0x0,0x4d,0x97,0xb8, - 0x80,0x0,0x0,0x0,0x0,0x4e,0x34,0x8c,0xf0,0x0,0x0,0x0,0x0,0x4f,0x9c,0xa0, - 0xa0,0x0,0x0,0x0,0x0,0x50,0x8,0xbb,0xa0,0x0,0x0,0x0,0x0,0x50,0x31,0x9a, - 0x20,0x0,0x0,0x0,0x0,0x50,0x67,0xa7,0xa0,0x0,0x0,0x0,0x0,0x51,0x7c,0x82, - 0xa0,0x0,0x0,0x0,0x0,0x51,0xd8,0xcb,0xa0,0x0,0x0,0x0,0x0,0x52,0x5,0x9e, - 0xa0,0x0,0x0,0x0,0x0,0x52,0x6c,0x73,0xa0,0x0,0x0,0x0,0x0,0x53,0x37,0x7a, - 0xa0,0x0,0x0,0x0,0x0,0x53,0xae,0x21,0xa0,0x0,0x0,0x0,0x0,0x53,0xdc,0x46, - 0x20,0x0,0x0,0x0,0x0,0x54,0x4c,0x55,0xa0,0x0,0x0,0x0,0x0,0x55,0x17,0x5c, - 0xa0,0x0,0x0,0x0,0x0,0x55,0x7c,0xe0,0x20,0x0,0x0,0x0,0x0,0x55,0xab,0x4, - 0xa0,0x0,0x0,0x0,0x0,0x56,0x2c,0x37,0xa0,0x0,0x0,0x0,0x0,0x56,0xf7,0x3e, - 0xa0,0x0,0x0,0x0,0x0,0x57,0x53,0x87,0xa0,0x0,0x0,0x0,0x0,0x57,0x81,0xac, - 0x20,0x0,0x0,0x0,0x0,0x58,0x15,0x54,0x20,0x0,0x0,0x0,0x0,0x58,0xd7,0x20, - 0xa0,0x0,0x0,0x0,0x0,0x59,0x20,0xf4,0xa0,0x0,0x0,0x0,0x0,0x59,0x58,0x53, - 0xa0,0x0,0x0,0x0,0x0,0x59,0xf5,0x36,0x20,0x0,0x0,0x0,0x0,0x5a,0xb7,0x2, - 0xa0,0x0,0x0,0x0,0x0,0x5a,0xf7,0x9c,0x20,0x0,0x0,0x0,0x0,0x5b,0x25,0xc0, - 0xa0,0x0,0x0,0x0,0x0,0x5b,0xd5,0x18,0x20,0x0,0x0,0x0,0x0,0x5c,0xa0,0x1f, - 0x20,0x0,0x0,0x0,0x0,0x5c,0xce,0x43,0xa0,0x0,0x0,0x0,0x0,0x5c,0xfc,0x68, - 0x20,0x0,0x0,0x0,0x0,0x5d,0xb4,0xfa,0x20,0x0,0x0,0x0,0x0,0x5e,0x80,0x1, - 0x20,0x0,0x0,0x0,0x0,0x5e,0x9b,0xb0,0xa0,0x0,0x0,0x0,0x0,0x5e,0xc9,0xd5, - 0x20,0x0,0x0,0x0,0x0,0x5f,0x94,0xdc,0x20,0x0,0x0,0x0,0x0,0x60,0x5f,0xe3, - 0x20,0x0,0x0,0x0,0x0,0x60,0x72,0x58,0x20,0x0,0x0,0x0,0x0,0x60,0xa0,0x7c, - 0xa0,0x0,0x0,0x0,0x0,0x61,0x7d,0xf8,0xa0,0x0,0x0,0x0,0x0,0x62,0x77,0x24, - 0x20,0x0,0x0,0x0,0x0,0x63,0x5d,0xda,0xa0,0x0,0x0,0x0,0x0,0x64,0x44,0x91, - 0x20,0x0,0x0,0x0,0x0,0x65,0x3d,0xbc,0xa0,0x0,0x0,0x0,0x0,0x66,0x1b,0x38, - 0xa0,0x0,0x0,0x0,0x0,0x67,0x1d,0x9e,0xa0,0x0,0x0,0x0,0x0,0x67,0xf1,0xe0, - 0x20,0x0,0x0,0x0,0x0,0x68,0xfd,0x80,0xa0,0x0,0x0,0x0,0x0,0x69,0xc8,0x87, - 0xa0,0x0,0x0,0x0,0x0,0x6a,0xdd,0x62,0xa0,0x0,0x0,0x0,0x0,0x6b,0xa8,0x69, - 0xa0,0x0,0x0,0x0,0x0,0x6c,0xc6,0x7f,0x20,0x0,0x0,0x0,0x0,0x6d,0x88,0x4b, - 0xa0,0x0,0x0,0x0,0x0,0x6e,0xa6,0x61,0x20,0x0,0x0,0x0,0x0,0x6f,0x68,0x2d, - 0xa0,0x0,0x0,0x0,0x0,0x70,0x86,0x43,0x20,0x0,0x0,0x0,0x0,0x71,0x51,0x4a, - 0x20,0x0,0x0,0x0,0x0,0x72,0x66,0x25,0x20,0x0,0x0,0x0,0x0,0x73,0x31,0x2c, - 0x20,0x0,0x0,0x0,0x0,0x74,0x46,0x7,0x20,0x0,0x0,0x0,0x0,0x75,0x11,0xe, - 0x20,0x0,0x0,0x0,0x0,0x76,0x2f,0x23,0xa0,0x0,0x0,0x0,0x0,0x76,0xf0,0xf0, - 0x20,0x0,0x0,0x0,0x0,0x78,0xf,0x5,0xa0,0x0,0x0,0x0,0x0,0x78,0xd0,0xd2, - 0x20,0x0,0x0,0x0,0x0,0x79,0xee,0xe7,0xa0,0x0,0x0,0x0,0x0,0x7a,0xb0,0xb4, - 0x20,0x0,0x0,0x0,0x0,0x7b,0xce,0xc9,0xa0,0x0,0x0,0x0,0x0,0x7c,0x99,0xd0, - 0xa0,0x0,0x0,0x0,0x0,0x7d,0xa5,0x71,0x20,0x0,0x0,0x0,0x0,0x7e,0x79,0xb2, - 0xa0,0x0,0x0,0x0,0x0,0x7f,0x72,0xde,0x20,0x0,0x0,0x0,0x0,0x7f,0x8e,0x9b, - 0xb0,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x3,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf4,0x0, + 0x0,0x0,0x8,0x0,0x0,0x0,0x11,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff, + 0xff,0xff,0xff,0x1a,0x5d,0x9,0xcb,0xff,0xff,0xff,0xff,0x9b,0x26,0xad,0xa0,0xff, + 0xff,0xff,0xff,0x9b,0xd6,0x5,0x20,0xff,0xff,0xff,0xff,0x9c,0xcf,0x30,0xa0,0xff, + 0xff,0xff,0xff,0x9d,0xa4,0xc3,0xa0,0xff,0xff,0xff,0xff,0x9e,0x9c,0x9d,0xa0,0xff, + 0xff,0xff,0xff,0x9f,0x97,0x1a,0xa0,0xff,0xff,0xff,0xff,0xa0,0x85,0xba,0x20,0xff, + 0xff,0xff,0xff,0xa1,0x76,0xfc,0xa0,0xff,0xff,0xff,0xff,0xa2,0x65,0x9c,0x20,0xff, + 0xff,0xff,0xff,0xa3,0x7b,0xc8,0xa0,0xff,0xff,0xff,0xff,0xa4,0x4e,0xb8,0xa0,0xff, + 0xff,0xff,0xff,0xa5,0x3f,0xfb,0x20,0xff,0xff,0xff,0xff,0xa6,0x25,0x60,0x20,0xff, + 0xff,0xff,0xff,0xa7,0x27,0xc6,0x20,0xff,0xff,0xff,0xff,0xa8,0x2a,0x2c,0x20,0xff, + 0xff,0xff,0xff,0xa8,0xeb,0xf8,0xa0,0xff,0xff,0xff,0xff,0xaa,0x0,0xd3,0xa0,0xff, + 0xff,0xff,0xff,0xaa,0xd5,0x15,0x20,0xff,0xff,0xff,0xff,0xab,0xe9,0xf0,0x20,0xff, + 0xff,0xff,0xff,0xac,0xc7,0x6c,0x20,0xff,0xff,0xff,0xff,0xad,0xc9,0xd2,0x20,0xff, + 0xff,0xff,0xff,0xae,0xa7,0x4e,0x20,0xff,0xff,0xff,0xff,0xaf,0xa0,0x79,0xa0,0xff, + 0xff,0xff,0xff,0xb0,0x87,0x30,0x20,0xff,0xff,0xff,0xff,0xb1,0x92,0xd0,0xa0,0xff, + 0xff,0xff,0xff,0xb2,0x70,0x4c,0xa0,0xff,0xff,0xff,0xff,0xb3,0x72,0xb2,0xa0,0xff, + 0xff,0xff,0xff,0xb4,0x50,0x2e,0xa0,0xff,0xff,0xff,0xff,0xb5,0x49,0x5a,0x20,0xff, + 0xff,0xff,0xff,0xb6,0x30,0x10,0xa0,0xff,0xff,0xff,0xff,0xb7,0x32,0x76,0xa0,0xff, + 0xff,0xff,0xff,0xb8,0xf,0xf2,0xa0,0xff,0xff,0xff,0xff,0xb9,0x12,0x58,0xa0,0xff, + 0xff,0xff,0xff,0xb9,0xef,0xd4,0xa0,0xff,0xff,0xff,0xff,0xba,0xe9,0x0,0x20,0xff, + 0xff,0xff,0xff,0xbb,0xd8,0xf1,0x20,0xff,0xff,0xff,0xff,0xbc,0xdb,0x57,0x20,0xff, + 0xff,0xff,0xff,0xbd,0xb8,0xd3,0x20,0xff,0xff,0xff,0xff,0xbe,0xb1,0xfe,0xa0,0xff, + 0xff,0xff,0xff,0xbf,0x98,0xb5,0x20,0xff,0xff,0xff,0xff,0xc0,0x9b,0x1b,0x20,0xff, + 0xff,0xff,0xff,0xc1,0x78,0x97,0x20,0xff,0xff,0xff,0xff,0xc2,0x7a,0xfd,0x20,0xff, + 0xff,0xff,0xff,0xc3,0x58,0x79,0x20,0xff,0xff,0xff,0xff,0xc4,0x51,0xa4,0xa0,0xff, + 0xff,0xff,0xff,0xc5,0x38,0x5b,0x20,0xff,0xff,0xff,0xff,0xc6,0x3a,0xc1,0x20,0xff, + 0xff,0xff,0xff,0xc7,0x58,0xd6,0xa0,0xff,0xff,0xff,0xff,0xc7,0xda,0x9,0xa0,0xff, + 0xff,0xff,0xff,0xca,0x16,0x26,0x90,0xff,0xff,0xff,0xff,0xca,0x97,0x59,0x90,0xff, + 0xff,0xff,0xff,0xcb,0xd1,0x1e,0x90,0xff,0xff,0xff,0xff,0xcc,0x77,0x3b,0x90,0xff, + 0xff,0xff,0xff,0xcd,0xb1,0x0,0x90,0xff,0xff,0xff,0xff,0xce,0x60,0x58,0x10,0xff, + 0xff,0xff,0xff,0xcf,0x90,0xe2,0x90,0xff,0xff,0xff,0xff,0xd0,0x6e,0x5e,0x90,0xff, + 0xff,0xff,0xff,0xd1,0x72,0x16,0x10,0xff,0xff,0xff,0xff,0xd1,0xfb,0x32,0x10,0xff, + 0xff,0xff,0xff,0xd2,0x69,0xfe,0x20,0xff,0xff,0xff,0xff,0xd3,0x63,0x29,0xa0,0xff, + 0xff,0xff,0xff,0xd4,0x49,0xe0,0x20,0xff,0xff,0xff,0xff,0xd5,0x1e,0x21,0xa0,0xff, + 0xff,0xff,0xff,0xd5,0x42,0xfd,0x90,0xff,0xff,0xff,0xff,0xd5,0xdf,0xe0,0x10,0xff, + 0xff,0xff,0xff,0xd6,0x4e,0xac,0x20,0xff,0xff,0xff,0xff,0xd6,0xfe,0x3,0xa0,0xff, + 0xff,0xff,0xff,0xd8,0x2e,0x8e,0x20,0xff,0xff,0xff,0xff,0xd8,0xf9,0x95,0x20,0xff, + 0xff,0xff,0xff,0xda,0xe,0x70,0x20,0xff,0xff,0xff,0xff,0xda,0xeb,0xec,0x20,0xff, + 0xff,0xff,0xff,0xdb,0xe5,0x17,0xa0,0xff,0xff,0xff,0xff,0xdc,0xcb,0xce,0x20,0xff, + 0xff,0xff,0xff,0xdd,0xc4,0xf9,0xa0,0xff,0xff,0xff,0xff,0xde,0xb4,0xea,0xa0,0xff, + 0xff,0xff,0xff,0xdf,0xae,0x16,0x20,0xff,0xff,0xff,0xff,0xe0,0x94,0xcc,0xa0,0xff, + 0xff,0xff,0xff,0xe1,0x72,0x48,0xa0,0xff,0xff,0xff,0xff,0xe2,0x6b,0x74,0x20,0xff, + 0xff,0xff,0xff,0xe3,0x52,0x2a,0xa0,0xff,0xff,0xff,0xff,0xe4,0x54,0x90,0xa0,0xff, + 0xff,0xff,0xff,0xe5,0x32,0xc,0xa0,0xff,0xff,0xff,0xff,0xe6,0x3d,0xad,0x20,0xff, + 0xff,0xff,0xff,0xe7,0x1b,0x29,0x20,0xff,0xff,0xff,0xff,0xe8,0x14,0x54,0xa0,0xff, + 0xff,0xff,0xff,0xe8,0xfb,0xb,0x20,0xff,0xff,0xff,0xff,0xe9,0xfd,0x71,0x20,0xff, + 0xff,0xff,0xff,0xea,0xda,0xed,0x20,0xff,0xff,0xff,0xff,0xeb,0xdd,0x53,0x20,0xff, + 0xff,0xff,0xff,0xec,0xba,0xcf,0x20,0xff,0xff,0xff,0xff,0xed,0xb3,0xfa,0xa0,0xff, + 0xff,0xff,0xff,0xee,0x9a,0xb1,0x20,0xff,0xff,0xff,0xff,0xef,0x81,0x67,0xa0,0xff, + 0xff,0xff,0xff,0xf0,0x9f,0x7d,0x20,0xff,0xff,0xff,0xff,0xf1,0x61,0x49,0xa0,0xff, + 0xff,0xff,0xff,0xf2,0x7f,0x5f,0x20,0xff,0xff,0xff,0xff,0xf3,0x4a,0x66,0x20,0xff, + 0xff,0xff,0xff,0xf4,0x5f,0x41,0x20,0xff,0xff,0xff,0xff,0xf5,0x21,0xd,0xa0,0xff, + 0xff,0xff,0xff,0xf6,0x3f,0x23,0x20,0xff,0xff,0xff,0xff,0xf7,0x0,0xef,0xa0,0xff, + 0xff,0xff,0xff,0xf8,0x1f,0x5,0x20,0xff,0xff,0xff,0xff,0xf8,0xe0,0xd1,0xa0,0xff, + 0xff,0xff,0xff,0xf9,0xfe,0xe7,0x20,0xff,0xff,0xff,0xff,0xfa,0xc0,0xb3,0xa0,0xff, + 0xff,0xff,0xff,0xfb,0xe8,0x3,0xa0,0xff,0xff,0xff,0xff,0xfc,0x7b,0xab,0xa0,0xff, + 0xff,0xff,0xff,0xfd,0xc7,0xbb,0x70,0x0,0x0,0x0,0x0,0x3,0x70,0xc6,0x20,0x0, + 0x0,0x0,0x0,0x4,0x29,0x58,0x20,0x0,0x0,0x0,0x0,0x5,0x50,0xa8,0x20,0x0, + 0x0,0x0,0x0,0x6,0x9,0x3a,0x20,0x0,0x0,0x0,0x0,0x7,0x30,0x8a,0x20,0x0, + 0x0,0x0,0x0,0x7,0xe9,0x1c,0x20,0x0,0x0,0x0,0x0,0x9,0x10,0x6c,0x20,0x0, + 0x0,0x0,0x0,0x9,0xc8,0xfe,0x20,0x0,0x0,0x0,0x0,0xa,0xf0,0x4e,0x20,0x0, + 0x0,0x0,0x0,0xb,0xb2,0x1a,0xa0,0x0,0x0,0x0,0x0,0xc,0xd0,0x30,0x20,0x0, + 0x0,0x0,0x0,0xd,0x91,0xfc,0xa0,0x0,0x0,0x0,0x0,0xe,0xb0,0x12,0x20,0x0, + 0x0,0x0,0x0,0xf,0x71,0xde,0xa0,0x0,0x0,0x0,0x0,0x10,0x99,0x2e,0xa0,0x0, + 0x0,0x0,0x0,0x11,0x51,0xc0,0xa0,0x0,0x0,0x0,0x0,0x12,0x79,0x10,0xa0,0x0, + 0x0,0x0,0x0,0x13,0x31,0xa2,0xa0,0x0,0x0,0x0,0x0,0x14,0x58,0xf2,0xa0,0x0, + 0x0,0x0,0x0,0x15,0x23,0xeb,0x90,0x0,0x0,0x0,0x0,0x16,0x38,0xc6,0x90,0x0, + 0x0,0x0,0x0,0x17,0x3,0xcd,0x90,0x0,0x0,0x0,0x0,0x18,0x18,0xa8,0x90,0x0, + 0x0,0x0,0x0,0x18,0xe3,0xaf,0x90,0x0,0x0,0x0,0x0,0x19,0xf8,0x8a,0x90,0x0, + 0x0,0x0,0x0,0x1a,0xc3,0x91,0x90,0x0,0x0,0x0,0x0,0x1b,0xe1,0xa7,0x10,0x0, + 0x0,0x0,0x0,0x1c,0xac,0xae,0x10,0x0,0x0,0x0,0x0,0x1d,0xc1,0x89,0x10,0x0, + 0x0,0x0,0x0,0x1e,0x8c,0x90,0x10,0x0,0x0,0x0,0x0,0x1f,0xa1,0x6b,0x10,0x0, + 0x0,0x0,0x0,0x20,0x6c,0x72,0x10,0x0,0x0,0x0,0x0,0x21,0x81,0x4d,0x10,0x0, + 0x0,0x0,0x0,0x22,0x4c,0x54,0x10,0x0,0x0,0x0,0x0,0x23,0x61,0x2f,0x10,0x0, + 0x0,0x0,0x0,0x24,0x2c,0x36,0x10,0x0,0x0,0x0,0x0,0x25,0x4a,0x4b,0x90,0x0, + 0x0,0x0,0x0,0x26,0xc,0x18,0x10,0x0,0x0,0x0,0x0,0x27,0x2a,0x2d,0x90,0x0, + 0x0,0x0,0x0,0x27,0xf5,0x34,0x90,0x0,0x0,0x0,0x0,0x29,0xa,0xf,0x90,0x0, + 0x0,0x0,0x0,0x29,0xd5,0x16,0x90,0x0,0x0,0x0,0x0,0x2a,0xe9,0xf1,0x90,0x0, + 0x0,0x0,0x0,0x2b,0xb4,0xf8,0x90,0x0,0x0,0x0,0x0,0x2c,0xc9,0xd3,0x90,0x0, + 0x0,0x0,0x0,0x2d,0x94,0xda,0x90,0x0,0x0,0x0,0x0,0x2e,0xa9,0xb5,0x90,0x0, + 0x0,0x0,0x0,0x2f,0x74,0xbc,0x90,0x0,0x0,0x0,0x0,0x30,0x89,0x97,0x90,0x0, + 0x0,0x0,0x0,0x30,0xe7,0x24,0x0,0x0,0x0,0x0,0x0,0x31,0x5d,0xd9,0x10,0x0, + 0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d,0xbb,0x10,0x0, + 0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d,0x9d,0x10,0x0, + 0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd,0x7f,0x10,0x0, + 0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd,0x61,0x10,0x0, + 0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd,0x43,0x10,0x0, + 0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f,0x90,0x0, + 0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86,0x41,0x90,0x0, + 0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66,0x23,0x90,0x0, + 0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46,0x5,0x90,0x0, + 0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25,0xe7,0x90,0x0, + 0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5,0xc9,0x90,0x0, + 0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee,0xe6,0x10,0x0, + 0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce,0xc8,0x10,0x0, + 0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae,0xaa,0x10,0x0, + 0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c,0x10,0x0, + 0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e,0x10,0x0, + 0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57,0x8a,0x90,0x0, + 0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37,0x6c,0x90,0x0, + 0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17,0x4e,0x90,0x0, + 0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7,0x30,0x90,0x0, + 0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7,0x12,0x90,0x0, + 0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4,0x90,0x0, + 0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0,0x11,0x10,0x0, + 0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3,0x10,0x0, + 0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f,0xd5,0x10,0x0, + 0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f,0xb7,0x10,0x0, + 0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f,0x99,0x10,0x0, + 0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8,0xb5,0x90,0x0, + 0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8,0x97,0x90,0x0, + 0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8,0x79,0x90,0x0, + 0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b,0x90,0x0, + 0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88,0x3d,0x90,0x0, + 0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68,0x1f,0x90,0x0, + 0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51,0x3c,0x10,0x0, + 0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31,0x1e,0x10,0x0, + 0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11,0x0,0x10,0x0, + 0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0,0xe2,0x10,0x0, + 0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0,0xc4,0x10,0x0, + 0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6,0x10,0x0, + 0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99,0xc2,0x90,0x0, + 0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79,0xa4,0x90,0x0, + 0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x3,0x1,0x3,0x1,0x3,0x1, + 0x3,0x1,0x3,0x1,0x2,0x1,0x2,0x1,0x3,0x1,0x2,0x1,0x2,0x1,0x2,0x1, 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x2,0xff,0xff,0xf8,0xe4,0x0,0x0,0x0,0x0,0xe,0x10, - 0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x9,0x0,0x0,0xe,0x10,0x0,0xd,0x0,0x0, - 0x0,0x0,0x0,0x9,0x4c,0x4d,0x54,0x0,0x57,0x45,0x53,0x54,0x0,0x57,0x45,0x54, - 0x0,0x43,0x45,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa, - 0x57,0x45,0x54,0x30,0x57,0x45,0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2c, - 0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30,0x2f,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Bissau - 0x0,0x0,0x0,0xd0, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0x92, - 0xe6,0x9d,0x1c,0x9,0x67,0x61,0x10,0x0,0x1,0x2,0xff,0xff,0xf1,0x64,0x0,0x0, - 0xff,0xff,0xf1,0xf0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x8,0x4c,0x4d,0x54,0x0, - 0x57,0x41,0x54,0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a, - 0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0xf8,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xff,0xff,0xff,0xff,0x92,0xe6,0x9d,0x1c,0x0,0x0,0x0,0x0,0x9,0x67, - 0x61,0x10,0x0,0x1,0x2,0xff,0xff,0xf1,0x64,0x0,0x0,0xff,0xff,0xf1,0xf0,0x0, - 0x4,0x0,0x0,0x0,0x0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x57,0x41,0x54,0x0,0x47, - 0x4d,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x47,0x4d,0x54,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Johannesburg - 0x0,0x0,0x1,0xf, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x9,0x80,0x0,0x0,0x0,0x82, - 0x46,0xcf,0x68,0xcc,0xae,0x8c,0x80,0xcd,0x9e,0x6f,0x70,0xce,0x8e,0x6e,0x80,0xcf, - 0x7e,0x51,0x70,0x1,0x3,0x2,0x3,0x2,0x3,0x0,0x0,0x1a,0x40,0x0,0x0,0x0, - 0x0,0x15,0x18,0x0,0x4,0x0,0x0,0x2a,0x30,0x1,0x4,0x0,0x0,0x1c,0x20,0x0, - 0x4,0x4c,0x4d,0x54,0x0,0x53,0x41,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x9,0xf8,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x6d,0x7b,0x41,0x40,0xff,0xff, - 0xff,0xff,0x82,0x46,0xcf,0x68,0xff,0xff,0xff,0xff,0xcc,0xae,0x8c,0x80,0xff,0xff, - 0xff,0xff,0xcd,0x9e,0x6f,0x70,0xff,0xff,0xff,0xff,0xce,0x8e,0x6e,0x80,0xff,0xff, - 0xff,0xff,0xcf,0x7e,0x51,0x70,0x0,0x1,0x3,0x2,0x3,0x2,0x3,0x0,0x0,0x1a, - 0x40,0x0,0x0,0x0,0x0,0x15,0x18,0x0,0x4,0x0,0x0,0x2a,0x30,0x1,0x4,0x0, - 0x0,0x1c,0x20,0x0,0x4,0x4c,0x4d,0x54,0x0,0x53,0x41,0x53,0x54,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x53,0x41,0x53,0x54,0x2d,0x32,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Ndjamena - 0x0,0x0,0x0,0xe1, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x4,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0x92, - 0xe6,0x80,0x64,0x12,0x66,0x71,0x70,0x13,0x26,0xde,0x60,0x0,0x1,0x2,0x1,0x0, - 0x0,0xe,0x1c,0x0,0x0,0x0,0x0,0xe,0x10,0x0,0x4,0x0,0x0,0x1c,0x20,0x1, - 0x8,0x4c,0x4d,0x54,0x0,0x57,0x41,0x54,0x0,0x57,0x41,0x53,0x54,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xd, - 0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x92,0xe6,0x80,0x64, - 0x0,0x0,0x0,0x0,0x12,0x66,0x71,0x70,0x0,0x0,0x0,0x0,0x13,0x26,0xde,0x60, - 0x0,0x1,0x2,0x1,0x0,0x0,0xe,0x1c,0x0,0x0,0x0,0x0,0xe,0x10,0x0,0x4, - 0x0,0x0,0x1c,0x20,0x1,0x8,0x4c,0x4d,0x54,0x0,0x57,0x41,0x54,0x0,0x57,0x41, - 0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x57,0x41,0x54,0x2d,0x31,0xa, - - // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Asmera - 0x0,0x0,0x1,0x1b, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x13,0x80,0x0,0x0,0x0,0xb1, - 0xee,0xda,0xfc,0xb4,0xc2,0x9a,0xd0,0xc7,0x91,0x47,0xd8,0xed,0x2f,0xe1,0xd4,0x0, - 0x1,0x2,0x3,0x1,0x0,0x0,0x22,0x84,0x0,0x0,0x0,0x0,0x2a,0x30,0x0,0x4, - 0x0,0x0,0x23,0x28,0x0,0x8,0x0,0x0,0x26,0xac,0x0,0xd,0x0,0x0,0x2a,0x30, - 0x0,0x4,0x4c,0x4d,0x54,0x0,0x45,0x41,0x54,0x0,0x42,0x45,0x41,0x54,0x0,0x42, - 0x45,0x41,0x55,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x13,0xf8,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xb1,0xee,0xda,0xfc,0xff,0xff,0xff,0xff,0xb4, - 0xc2,0x9a,0xd0,0xff,0xff,0xff,0xff,0xc7,0x91,0x47,0xd8,0xff,0xff,0xff,0xff,0xed, - 0x2f,0xe1,0xd4,0x0,0x1,0x2,0x3,0x1,0x0,0x0,0x22,0x84,0x0,0x0,0x0,0x0, - 0x2a,0x30,0x0,0x4,0x0,0x0,0x23,0x28,0x0,0x8,0x0,0x0,0x26,0xac,0x0,0xd, - 0x0,0x0,0x2a,0x30,0x0,0x4,0x4c,0x4d,0x54,0x0,0x45,0x41,0x54,0x0,0x42,0x45, - 0x41,0x54,0x0,0x42,0x45,0x41,0x55,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0xa,0x45,0x41,0x54,0x2d,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Mogadishu - 0x0,0x0,0x1,0x1b, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x13,0x80,0x0,0x0,0x0,0xb1, - 0xee,0xda,0xfc,0xb4,0xc2,0x9a,0xd0,0xc7,0x91,0x47,0xd8,0xed,0x2f,0xe1,0xd4,0x0, - 0x1,0x2,0x3,0x1,0x0,0x0,0x22,0x84,0x0,0x0,0x0,0x0,0x2a,0x30,0x0,0x4, - 0x0,0x0,0x23,0x28,0x0,0x8,0x0,0x0,0x26,0xac,0x0,0xd,0x0,0x0,0x2a,0x30, - 0x0,0x4,0x4c,0x4d,0x54,0x0,0x45,0x41,0x54,0x0,0x42,0x45,0x41,0x54,0x0,0x42, - 0x45,0x41,0x55,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x13,0xf8,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xb1,0xee,0xda,0xfc,0xff,0xff,0xff,0xff,0xb4, - 0xc2,0x9a,0xd0,0xff,0xff,0xff,0xff,0xc7,0x91,0x47,0xd8,0xff,0xff,0xff,0xff,0xed, - 0x2f,0xe1,0xd4,0x0,0x1,0x2,0x3,0x1,0x0,0x0,0x22,0x84,0x0,0x0,0x0,0x0, - 0x2a,0x30,0x0,0x4,0x0,0x0,0x23,0x28,0x0,0x8,0x0,0x0,0x26,0xac,0x0,0xd, - 0x0,0x0,0x2a,0x30,0x0,0x4,0x4c,0x4d,0x54,0x0,0x45,0x41,0x54,0x0,0x42,0x45, - 0x41,0x54,0x0,0x42,0x45,0x41,0x55,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0xa,0x45,0x41,0x54,0x2d,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Luanda - 0x0,0x0,0x0,0xab, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0xa1, - 0x51,0xf3,0x50,0x0,0x1,0x0,0x0,0x3,0x30,0x0,0x0,0x0,0x0,0xe,0x10,0x0, - 0x4,0x4c,0x4d,0x54,0x0,0x57,0x41,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, - 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0xa1,0x51,0xf3,0x50,0x0,0x1,0x0,0x0,0x3,0x30,0x0, - 0x0,0x0,0x0,0xe,0x10,0x0,0x4,0x4c,0x4d,0x54,0x0,0x57,0x41,0x54,0x0,0x0, - 0x0,0x0,0x0,0xa,0x57,0x41,0x54,0x2d,0x31,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Blantyre - 0x0,0x0,0x0,0xab, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x82, - 0x46,0xc5,0xf4,0x0,0x1,0x0,0x0,0x1e,0x8c,0x0,0x0,0x0,0x0,0x1c,0x20,0x0, - 0x4,0x4c,0x4d,0x54,0x0,0x43,0x41,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, - 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0x82,0x46,0xc5,0xf4,0x0,0x1,0x0,0x0,0x1e,0x8c,0x0, - 0x0,0x0,0x0,0x1c,0x20,0x0,0x4,0x4c,0x4d,0x54,0x0,0x43,0x41,0x54,0x0,0x0, - 0x0,0x0,0x0,0xa,0x43,0x41,0x54,0x2d,0x32,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Tunis - 0x0,0x0,0x2,0xc6, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x22,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x80,0x0,0x0,0x0,0x91, - 0x60,0x50,0x4f,0xc6,0x3a,0x88,0xe0,0xc7,0x58,0x9e,0x60,0xc7,0xdb,0x22,0xe0,0xca, - 0xe2,0x54,0xe0,0xcb,0xad,0x69,0xf0,0xcc,0xe7,0x4b,0x10,0xcd,0xa9,0x17,0x90,0xcd, - 0xc2,0x16,0x0,0xcd,0xcc,0xb0,0x10,0xce,0xa2,0x35,0x0,0xcf,0x92,0x34,0x10,0xd0, - 0x89,0xe3,0xe0,0xd1,0x72,0x16,0x10,0xd2,0x4e,0x16,0x60,0xd,0xc7,0xdf,0xf0,0xe, - 0x89,0xac,0x70,0xf,0xaa,0x64,0xf0,0x10,0x74,0x1a,0x70,0x22,0xa3,0x3a,0xf0,0x23, - 0x3c,0x28,0xf0,0x24,0x2c,0x19,0xf0,0x25,0x1c,0xa,0xf0,0x26,0x3c,0xc3,0x70,0x27, - 0x5,0x27,0x70,0x42,0x74,0xd,0xf0,0x43,0x3c,0x80,0x0,0x44,0x25,0xe7,0x90,0x45, - 0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49, - 0x3,0xc1,0x10,0x1,0x4,0x2,0x3,0x2,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x0,0x0,0x9,0x8c,0x0,0x0,0x0,0x0,0x2,0x31,0x0, - 0x4,0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0xe,0x10,0x0,0xd,0x0,0x0,0xe, - 0x10,0x0,0xd,0x0,0x0,0x1c,0x20,0x1,0x8,0x4c,0x4d,0x54,0x0,0x50,0x4d,0x54, - 0x0,0x43,0x45,0x53,0x54,0x0,0x43,0x45,0x54,0x0,0x0,0x0,0x1,0x1,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0, - 0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x23,0x0,0x0,0x0,0x6,0x0,0x0, - 0x0,0x11,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x59,0x46, - 0x13,0xf4,0xff,0xff,0xff,0xff,0x91,0x60,0x50,0x4f,0xff,0xff,0xff,0xff,0xc6,0x3a, - 0x88,0xe0,0xff,0xff,0xff,0xff,0xc7,0x58,0x9e,0x60,0xff,0xff,0xff,0xff,0xc7,0xdb, - 0x22,0xe0,0xff,0xff,0xff,0xff,0xca,0xe2,0x54,0xe0,0xff,0xff,0xff,0xff,0xcb,0xad, - 0x69,0xf0,0xff,0xff,0xff,0xff,0xcc,0xe7,0x4b,0x10,0xff,0xff,0xff,0xff,0xcd,0xa9, - 0x17,0x90,0xff,0xff,0xff,0xff,0xcd,0xc2,0x16,0x0,0xff,0xff,0xff,0xff,0xcd,0xcc, - 0xb0,0x10,0xff,0xff,0xff,0xff,0xce,0xa2,0x35,0x0,0xff,0xff,0xff,0xff,0xcf,0x92, - 0x34,0x10,0xff,0xff,0xff,0xff,0xd0,0x89,0xe3,0xe0,0xff,0xff,0xff,0xff,0xd1,0x72, - 0x16,0x10,0xff,0xff,0xff,0xff,0xd2,0x4e,0x16,0x60,0x0,0x0,0x0,0x0,0xd,0xc7, - 0xdf,0xf0,0x0,0x0,0x0,0x0,0xe,0x89,0xac,0x70,0x0,0x0,0x0,0x0,0xf,0xaa, - 0x64,0xf0,0x0,0x0,0x0,0x0,0x10,0x74,0x1a,0x70,0x0,0x0,0x0,0x0,0x22,0xa3, - 0x3a,0xf0,0x0,0x0,0x0,0x0,0x23,0x3c,0x28,0xf0,0x0,0x0,0x0,0x0,0x24,0x2c, - 0x19,0xf0,0x0,0x0,0x0,0x0,0x25,0x1c,0xa,0xf0,0x0,0x0,0x0,0x0,0x26,0x3c, - 0xc3,0x70,0x0,0x0,0x0,0x0,0x27,0x5,0x27,0x70,0x0,0x0,0x0,0x0,0x42,0x74, - 0xd,0xf0,0x0,0x0,0x0,0x0,0x43,0x3c,0x80,0x0,0x0,0x0,0x0,0x0,0x44,0x25, - 0xe7,0x90,0x0,0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5, - 0xc9,0x90,0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee, - 0xe6,0x10,0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x1,0x4,0x2,0x3,0x2, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x0,0x0,0x9, - 0x8c,0x0,0x0,0x0,0x0,0x2,0x31,0x0,0x4,0x0,0x0,0x1c,0x20,0x1,0x8,0x0, - 0x0,0xe,0x10,0x0,0xd,0x0,0x0,0xe,0x10,0x0,0xd,0x0,0x0,0x1c,0x20,0x1, - 0x8,0x4c,0x4d,0x54,0x0,0x50,0x4d,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x43,0x45, - 0x54,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x43, - 0x45,0x54,0x2d,0x31,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Harare - 0x0,0x0,0x0,0xab, + 0x2,0x1,0x2,0x1,0x4,0x6,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x7,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0xff,0xff,0xff,0xb5,0x0, + 0x0,0x0,0x0,0xe,0x10,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x1c, + 0x20,0x1,0xc,0x0,0x0,0xe,0x10,0x0,0x4,0x0,0x0,0xe,0x10,0x1,0x4,0x0, + 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x42, + 0x53,0x54,0x0,0x47,0x4d,0x54,0x0,0x42,0x44,0x53,0x54,0x0,0x0,0x1,0x1,0x1, + 0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0xa,0x47,0x4d,0x54, + 0x30,0x42,0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2f,0x31,0x2c,0x4d,0x31, + 0x30,0x2e,0x35,0x2e,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Zagreb + 0x0,0x0,0x7,0xa5, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x82, - 0x46,0xc5,0xf4,0x0,0x1,0x0,0x0,0x1e,0x8c,0x0,0x0,0x0,0x0,0x1c,0x20,0x0, - 0x4,0x4c,0x4d,0x54,0x0,0x43,0x41,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x79,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0xca, + 0x2,0x35,0xe0,0xcc,0xe7,0x4b,0x10,0xcd,0xa9,0x17,0x90,0xce,0xa2,0x43,0x10,0xcf, + 0x92,0x34,0x10,0xd0,0x82,0x25,0x10,0xd0,0xfa,0x1,0x70,0xd1,0xa1,0x8c,0x10,0xd2, + 0x4e,0x40,0x90,0x18,0x45,0x5f,0x70,0x18,0xe3,0xaf,0x90,0x19,0xd3,0xa0,0x90,0x1a, + 0xc3,0x91,0x90,0x1b,0xbc,0xbd,0x10,0x1c,0xac,0xae,0x10,0x1d,0x9c,0x9f,0x10,0x1e, + 0x8c,0x90,0x10,0x1f,0x7c,0x81,0x10,0x20,0x6c,0x72,0x10,0x21,0x5c,0x63,0x10,0x22, + 0x4c,0x54,0x10,0x23,0x3c,0x45,0x10,0x24,0x2c,0x36,0x10,0x25,0x1c,0x27,0x10,0x26, + 0xc,0x18,0x10,0x27,0x5,0x43,0x90,0x27,0xf5,0x34,0x90,0x28,0xe5,0x25,0x90,0x29, + 0xd5,0x16,0x90,0x2a,0xc5,0x7,0x90,0x2b,0xb4,0xf8,0x90,0x2c,0xa4,0xe9,0x90,0x2d, + 0x94,0xda,0x90,0x2e,0x84,0xcb,0x90,0x2f,0x74,0xbc,0x90,0x30,0x64,0xad,0x90,0x31, + 0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34,0x52,0x96,0x10,0x35, + 0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x38, + 0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b,0xdb,0x58,0x90,0x3c, + 0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f,0x9b,0x1c,0x90,0x40, + 0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43,0x64,0x1b,0x10,0x44, + 0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47, + 0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b, + 0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e,0xac,0xa1,0x90,0x4f, + 0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53, + 0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56,0x2c,0x29,0x90,0x56, + 0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59,0xf5,0x28,0x10,0x5a, + 0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d,0xb4,0xec,0x10,0x5e, + 0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61,0x7d,0xea,0x90,0x62, + 0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65,0x3d,0xae,0x90,0x66, + 0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68,0xfd,0x72,0x90,0x69, + 0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c,0xc6,0x71,0x10,0x6d, + 0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70,0x86,0x35,0x10,0x71, + 0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74,0x45,0xf9,0x10,0x75, + 0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78, + 0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c, + 0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x1, + 0x4,0x2,0x3,0x2,0x3,0x2,0x1,0x3,0x2,0x1,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x0,0x0,0x13,0x38,0x0,0x0,0x0,0x0, + 0xe,0x10,0x0,0x4,0x0,0x0,0xe,0x10,0x0,0x4,0x0,0x0,0x1c,0x20,0x1,0x8, + 0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0xe,0x10, + 0x0,0x4,0x4c,0x4d,0x54,0x0,0x43,0x45,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x0, + 0x0,0x1,0x1,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x54,0x5a,0x69, 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0x82,0x46,0xc5,0xf4,0x0,0x1,0x0,0x0,0x1e,0x8c,0x0, - 0x0,0x0,0x0,0x1c,0x20,0x0,0x4,0x4c,0x4d,0x54,0x0,0x43,0x41,0x54,0x0,0x0, - 0x0,0x0,0x0,0xa,0x43,0x41,0x54,0x2d,0x32,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Bujumbura - 0x0,0x0,0x0,0xab, + 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x7a,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0xd,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0x5e,0x3c,0xf0,0x48,0xff,0xff,0xff,0xff,0xca,0x2,0x35, + 0xe0,0xff,0xff,0xff,0xff,0xcc,0xe7,0x4b,0x10,0xff,0xff,0xff,0xff,0xcd,0xa9,0x17, + 0x90,0xff,0xff,0xff,0xff,0xce,0xa2,0x43,0x10,0xff,0xff,0xff,0xff,0xcf,0x92,0x34, + 0x10,0xff,0xff,0xff,0xff,0xd0,0x82,0x25,0x10,0xff,0xff,0xff,0xff,0xd0,0xfa,0x1, + 0x70,0xff,0xff,0xff,0xff,0xd1,0xa1,0x8c,0x10,0xff,0xff,0xff,0xff,0xd2,0x4e,0x40, + 0x90,0x0,0x0,0x0,0x0,0x18,0x45,0x5f,0x70,0x0,0x0,0x0,0x0,0x18,0xe3,0xaf, + 0x90,0x0,0x0,0x0,0x0,0x19,0xd3,0xa0,0x90,0x0,0x0,0x0,0x0,0x1a,0xc3,0x91, + 0x90,0x0,0x0,0x0,0x0,0x1b,0xbc,0xbd,0x10,0x0,0x0,0x0,0x0,0x1c,0xac,0xae, + 0x10,0x0,0x0,0x0,0x0,0x1d,0x9c,0x9f,0x10,0x0,0x0,0x0,0x0,0x1e,0x8c,0x90, + 0x10,0x0,0x0,0x0,0x0,0x1f,0x7c,0x81,0x10,0x0,0x0,0x0,0x0,0x20,0x6c,0x72, + 0x10,0x0,0x0,0x0,0x0,0x21,0x5c,0x63,0x10,0x0,0x0,0x0,0x0,0x22,0x4c,0x54, + 0x10,0x0,0x0,0x0,0x0,0x23,0x3c,0x45,0x10,0x0,0x0,0x0,0x0,0x24,0x2c,0x36, + 0x10,0x0,0x0,0x0,0x0,0x25,0x1c,0x27,0x10,0x0,0x0,0x0,0x0,0x26,0xc,0x18, + 0x10,0x0,0x0,0x0,0x0,0x27,0x5,0x43,0x90,0x0,0x0,0x0,0x0,0x27,0xf5,0x34, + 0x90,0x0,0x0,0x0,0x0,0x28,0xe5,0x25,0x90,0x0,0x0,0x0,0x0,0x29,0xd5,0x16, + 0x90,0x0,0x0,0x0,0x0,0x2a,0xc5,0x7,0x90,0x0,0x0,0x0,0x0,0x2b,0xb4,0xf8, + 0x90,0x0,0x0,0x0,0x0,0x2c,0xa4,0xe9,0x90,0x0,0x0,0x0,0x0,0x2d,0x94,0xda, + 0x90,0x0,0x0,0x0,0x0,0x2e,0x84,0xcb,0x90,0x0,0x0,0x0,0x0,0x2f,0x74,0xbc, + 0x90,0x0,0x0,0x0,0x0,0x30,0x64,0xad,0x90,0x0,0x0,0x0,0x0,0x31,0x5d,0xd9, + 0x10,0x0,0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d,0xbb, + 0x10,0x0,0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d,0x9d, + 0x10,0x0,0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd,0x7f, + 0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd,0x61, + 0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd,0x43, + 0x10,0x0,0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f, + 0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86,0x41, + 0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66,0x23, + 0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46,0x5, + 0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25,0xe7, + 0x90,0x0,0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5,0xc9, + 0x90,0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee,0xe6, + 0x10,0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce,0xc8, + 0x10,0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae,0xaa, + 0x10,0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c, + 0x10,0x0,0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e, + 0x10,0x0,0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57,0x8a, + 0x90,0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37,0x6c, + 0x90,0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17,0x4e, + 0x90,0x0,0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7,0x30, + 0x90,0x0,0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7,0x12, + 0x90,0x0,0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4, + 0x90,0x0,0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0,0x11, + 0x10,0x0,0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3, + 0x10,0x0,0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f,0xd5, + 0x10,0x0,0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f,0xb7, + 0x10,0x0,0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f,0x99, + 0x10,0x0,0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8,0xb5, + 0x90,0x0,0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8,0x97, + 0x90,0x0,0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8,0x79, + 0x90,0x0,0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b, + 0x90,0x0,0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88,0x3d, + 0x90,0x0,0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68,0x1f, + 0x90,0x0,0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51,0x3c, + 0x10,0x0,0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31,0x1e, + 0x10,0x0,0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11,0x0, + 0x10,0x0,0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0,0xe2, + 0x10,0x0,0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0,0xc4, + 0x10,0x0,0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6, + 0x10,0x0,0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99,0xc2, + 0x90,0x0,0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79,0xa4, + 0x90,0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x1,0x4,0x2,0x3,0x2,0x3, + 0x2,0x1,0x3,0x2,0x1,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x0,0x0,0x13,0x38,0x0,0x0,0x0,0x0,0xe,0x10,0x0,0x4,0x0, + 0x0,0xe,0x10,0x0,0x4,0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0x1c,0x20,0x1, + 0x8,0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0xe,0x10,0x0,0x4,0x4c,0x4d,0x54, + 0x0,0x43,0x45,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x0,0x0,0x1,0x1,0x0,0x1, + 0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0xa,0x43,0x45,0x54,0x2d,0x31,0x43,0x45, + 0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e, + 0x30,0x2f,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Podgorica + 0x0,0x0,0x7,0xa5, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x82, - 0x46,0xc5,0xf4,0x0,0x1,0x0,0x0,0x1e,0x8c,0x0,0x0,0x0,0x0,0x1c,0x20,0x0, - 0x4,0x4c,0x4d,0x54,0x0,0x43,0x41,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x79,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0xca, + 0x2,0x35,0xe0,0xcc,0xe7,0x4b,0x10,0xcd,0xa9,0x17,0x90,0xce,0xa2,0x43,0x10,0xcf, + 0x92,0x34,0x10,0xd0,0x82,0x25,0x10,0xd0,0xfa,0x1,0x70,0xd1,0xa1,0x8c,0x10,0xd2, + 0x4e,0x40,0x90,0x18,0x45,0x5f,0x70,0x18,0xe3,0xaf,0x90,0x19,0xd3,0xa0,0x90,0x1a, + 0xc3,0x91,0x90,0x1b,0xbc,0xbd,0x10,0x1c,0xac,0xae,0x10,0x1d,0x9c,0x9f,0x10,0x1e, + 0x8c,0x90,0x10,0x1f,0x7c,0x81,0x10,0x20,0x6c,0x72,0x10,0x21,0x5c,0x63,0x10,0x22, + 0x4c,0x54,0x10,0x23,0x3c,0x45,0x10,0x24,0x2c,0x36,0x10,0x25,0x1c,0x27,0x10,0x26, + 0xc,0x18,0x10,0x27,0x5,0x43,0x90,0x27,0xf5,0x34,0x90,0x28,0xe5,0x25,0x90,0x29, + 0xd5,0x16,0x90,0x2a,0xc5,0x7,0x90,0x2b,0xb4,0xf8,0x90,0x2c,0xa4,0xe9,0x90,0x2d, + 0x94,0xda,0x90,0x2e,0x84,0xcb,0x90,0x2f,0x74,0xbc,0x90,0x30,0x64,0xad,0x90,0x31, + 0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34,0x52,0x96,0x10,0x35, + 0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x38, + 0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b,0xdb,0x58,0x90,0x3c, + 0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f,0x9b,0x1c,0x90,0x40, + 0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43,0x64,0x1b,0x10,0x44, + 0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47, + 0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b, + 0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e,0xac,0xa1,0x90,0x4f, + 0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53, + 0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56,0x2c,0x29,0x90,0x56, + 0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59,0xf5,0x28,0x10,0x5a, + 0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d,0xb4,0xec,0x10,0x5e, + 0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61,0x7d,0xea,0x90,0x62, + 0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65,0x3d,0xae,0x90,0x66, + 0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68,0xfd,0x72,0x90,0x69, + 0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c,0xc6,0x71,0x10,0x6d, + 0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70,0x86,0x35,0x10,0x71, + 0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74,0x45,0xf9,0x10,0x75, + 0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78, + 0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c, + 0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x1, + 0x4,0x2,0x3,0x2,0x3,0x2,0x1,0x3,0x2,0x1,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x0,0x0,0x13,0x38,0x0,0x0,0x0,0x0, + 0xe,0x10,0x0,0x4,0x0,0x0,0xe,0x10,0x0,0x4,0x0,0x0,0x1c,0x20,0x1,0x8, + 0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0xe,0x10, + 0x0,0x4,0x4c,0x4d,0x54,0x0,0x43,0x45,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x0, + 0x0,0x1,0x1,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x54,0x5a,0x69, 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0x82,0x46,0xc5,0xf4,0x0,0x1,0x0,0x0,0x1e,0x8c,0x0, - 0x0,0x0,0x0,0x1c,0x20,0x0,0x4,0x4c,0x4d,0x54,0x0,0x43,0x41,0x54,0x0,0x0, - 0x0,0x0,0x0,0xa,0x43,0x41,0x54,0x2d,0x32,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Dar_es_Salaam - 0x0,0x0,0x1,0x1b, + 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x7a,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0xd,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0x5e,0x3c,0xf0,0x48,0xff,0xff,0xff,0xff,0xca,0x2,0x35, + 0xe0,0xff,0xff,0xff,0xff,0xcc,0xe7,0x4b,0x10,0xff,0xff,0xff,0xff,0xcd,0xa9,0x17, + 0x90,0xff,0xff,0xff,0xff,0xce,0xa2,0x43,0x10,0xff,0xff,0xff,0xff,0xcf,0x92,0x34, + 0x10,0xff,0xff,0xff,0xff,0xd0,0x82,0x25,0x10,0xff,0xff,0xff,0xff,0xd0,0xfa,0x1, + 0x70,0xff,0xff,0xff,0xff,0xd1,0xa1,0x8c,0x10,0xff,0xff,0xff,0xff,0xd2,0x4e,0x40, + 0x90,0x0,0x0,0x0,0x0,0x18,0x45,0x5f,0x70,0x0,0x0,0x0,0x0,0x18,0xe3,0xaf, + 0x90,0x0,0x0,0x0,0x0,0x19,0xd3,0xa0,0x90,0x0,0x0,0x0,0x0,0x1a,0xc3,0x91, + 0x90,0x0,0x0,0x0,0x0,0x1b,0xbc,0xbd,0x10,0x0,0x0,0x0,0x0,0x1c,0xac,0xae, + 0x10,0x0,0x0,0x0,0x0,0x1d,0x9c,0x9f,0x10,0x0,0x0,0x0,0x0,0x1e,0x8c,0x90, + 0x10,0x0,0x0,0x0,0x0,0x1f,0x7c,0x81,0x10,0x0,0x0,0x0,0x0,0x20,0x6c,0x72, + 0x10,0x0,0x0,0x0,0x0,0x21,0x5c,0x63,0x10,0x0,0x0,0x0,0x0,0x22,0x4c,0x54, + 0x10,0x0,0x0,0x0,0x0,0x23,0x3c,0x45,0x10,0x0,0x0,0x0,0x0,0x24,0x2c,0x36, + 0x10,0x0,0x0,0x0,0x0,0x25,0x1c,0x27,0x10,0x0,0x0,0x0,0x0,0x26,0xc,0x18, + 0x10,0x0,0x0,0x0,0x0,0x27,0x5,0x43,0x90,0x0,0x0,0x0,0x0,0x27,0xf5,0x34, + 0x90,0x0,0x0,0x0,0x0,0x28,0xe5,0x25,0x90,0x0,0x0,0x0,0x0,0x29,0xd5,0x16, + 0x90,0x0,0x0,0x0,0x0,0x2a,0xc5,0x7,0x90,0x0,0x0,0x0,0x0,0x2b,0xb4,0xf8, + 0x90,0x0,0x0,0x0,0x0,0x2c,0xa4,0xe9,0x90,0x0,0x0,0x0,0x0,0x2d,0x94,0xda, + 0x90,0x0,0x0,0x0,0x0,0x2e,0x84,0xcb,0x90,0x0,0x0,0x0,0x0,0x2f,0x74,0xbc, + 0x90,0x0,0x0,0x0,0x0,0x30,0x64,0xad,0x90,0x0,0x0,0x0,0x0,0x31,0x5d,0xd9, + 0x10,0x0,0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d,0xbb, + 0x10,0x0,0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d,0x9d, + 0x10,0x0,0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd,0x7f, + 0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd,0x61, + 0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd,0x43, + 0x10,0x0,0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f, + 0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86,0x41, + 0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66,0x23, + 0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46,0x5, + 0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25,0xe7, + 0x90,0x0,0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5,0xc9, + 0x90,0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee,0xe6, + 0x10,0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce,0xc8, + 0x10,0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae,0xaa, + 0x10,0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c, + 0x10,0x0,0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e, + 0x10,0x0,0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57,0x8a, + 0x90,0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37,0x6c, + 0x90,0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17,0x4e, + 0x90,0x0,0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7,0x30, + 0x90,0x0,0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7,0x12, + 0x90,0x0,0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4, + 0x90,0x0,0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0,0x11, + 0x10,0x0,0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3, + 0x10,0x0,0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f,0xd5, + 0x10,0x0,0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f,0xb7, + 0x10,0x0,0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f,0x99, + 0x10,0x0,0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8,0xb5, + 0x90,0x0,0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8,0x97, + 0x90,0x0,0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8,0x79, + 0x90,0x0,0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b, + 0x90,0x0,0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88,0x3d, + 0x90,0x0,0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68,0x1f, + 0x90,0x0,0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51,0x3c, + 0x10,0x0,0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31,0x1e, + 0x10,0x0,0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11,0x0, + 0x10,0x0,0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0,0xe2, + 0x10,0x0,0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0,0xc4, + 0x10,0x0,0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6, + 0x10,0x0,0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99,0xc2, + 0x90,0x0,0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79,0xa4, + 0x90,0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x1,0x4,0x2,0x3,0x2,0x3, + 0x2,0x1,0x3,0x2,0x1,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x0,0x0,0x13,0x38,0x0,0x0,0x0,0x0,0xe,0x10,0x0,0x4,0x0, + 0x0,0xe,0x10,0x0,0x4,0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0x1c,0x20,0x1, + 0x8,0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0xe,0x10,0x0,0x4,0x4c,0x4d,0x54, + 0x0,0x43,0x45,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x0,0x0,0x1,0x1,0x0,0x1, + 0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0xa,0x43,0x45,0x54,0x2d,0x31,0x43,0x45, + 0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e, + 0x30,0x2f,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Tirane + 0x0,0x0,0x8,0x32, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x13,0x80,0x0,0x0,0x0,0xb1, - 0xee,0xda,0xfc,0xb4,0xc2,0x9a,0xd0,0xc7,0x91,0x47,0xd8,0xed,0x2f,0xe1,0xd4,0x0, - 0x1,0x2,0x3,0x1,0x0,0x0,0x22,0x84,0x0,0x0,0x0,0x0,0x2a,0x30,0x0,0x4, - 0x0,0x0,0x23,0x28,0x0,0x8,0x0,0x0,0x26,0xac,0x0,0xd,0x0,0x0,0x2a,0x30, - 0x0,0x4,0x4c,0x4d,0x54,0x0,0x45,0x41,0x54,0x0,0x42,0x45,0x41,0x54,0x0,0x42, - 0x45,0x41,0x55,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x13,0xf8,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xb1,0xee,0xda,0xfc,0xff,0xff,0xff,0xff,0xb4, - 0xc2,0x9a,0xd0,0xff,0xff,0xff,0xff,0xc7,0x91,0x47,0xd8,0xff,0xff,0xff,0xff,0xed, - 0x2f,0xe1,0xd4,0x0,0x1,0x2,0x3,0x1,0x0,0x0,0x22,0x84,0x0,0x0,0x0,0x0, - 0x2a,0x30,0x0,0x4,0x0,0x0,0x23,0x28,0x0,0x8,0x0,0x0,0x26,0xac,0x0,0xd, - 0x0,0x0,0x2a,0x30,0x0,0x4,0x4c,0x4d,0x54,0x0,0x45,0x41,0x54,0x0,0x42,0x45, - 0x41,0x54,0x0,0x42,0x45,0x41,0x55,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0xa,0x45,0x41,0x54,0x2d,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Juba - 0x0,0x0,0x2,0xab, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x23,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x11,0x80,0x0,0x0,0x0,0xb6, - 0xa3,0xda,0x0,0x0,0x9e,0x17,0xe0,0x1,0x7a,0x34,0x50,0x2,0x7d,0xf9,0xe0,0x3, - 0x5b,0x67,0xd0,0x4,0x60,0x7e,0xe0,0x5,0x3d,0xec,0xd0,0x6,0x40,0x60,0xe0,0x7, - 0x1f,0x20,0x50,0x8,0x20,0x42,0xe0,0x9,0x0,0x53,0xd0,0xa,0x0,0x24,0xe0,0xa, - 0xe1,0x87,0x50,0xb,0xe0,0x6,0xe0,0xc,0xc4,0xc,0x50,0xd,0xbf,0xe8,0xe0,0xe, - 0xa5,0x3f,0xd0,0xf,0xa9,0x5,0x60,0x10,0x86,0x73,0x50,0x11,0x88,0xe7,0x60,0x12, - 0x67,0xa6,0xd0,0x13,0x68,0xc9,0x60,0x14,0x4a,0x2b,0xd0,0x15,0x48,0xab,0x60,0x16, - 0x2b,0x5f,0x50,0x17,0x28,0x8d,0x60,0x18,0xc,0x92,0xd0,0x19,0x8,0x6f,0x60,0x19, - 0xed,0xc6,0x50,0x1a,0xf1,0x8b,0xe0,0x1b,0xd0,0x4b,0x50,0x1c,0xd1,0x6d,0xe0,0x1d, - 0xb1,0x7e,0xd0,0x38,0x80,0x45,0x20,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x0,0x0,0x1e,0x80,0x0,0x0, - 0x0,0x0,0x2a,0x30,0x1,0x4,0x0,0x0,0x1c,0x20,0x0,0x9,0x0,0x0,0x2a,0x30, - 0x0,0xd,0x4c,0x4d,0x54,0x0,0x43,0x41,0x53,0x54,0x0,0x43,0x41,0x54,0x0,0x45, - 0x41,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x23,0x0, - 0x0,0x0,0x4,0x0,0x0,0x0,0x11,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff, - 0xff,0xff,0xff,0xb6,0xa3,0xda,0x0,0x0,0x0,0x0,0x0,0x0,0x9e,0x17,0xe0,0x0, - 0x0,0x0,0x0,0x1,0x7a,0x34,0x50,0x0,0x0,0x0,0x0,0x2,0x7d,0xf9,0xe0,0x0, - 0x0,0x0,0x0,0x3,0x5b,0x67,0xd0,0x0,0x0,0x0,0x0,0x4,0x60,0x7e,0xe0,0x0, - 0x0,0x0,0x0,0x5,0x3d,0xec,0xd0,0x0,0x0,0x0,0x0,0x6,0x40,0x60,0xe0,0x0, - 0x0,0x0,0x0,0x7,0x1f,0x20,0x50,0x0,0x0,0x0,0x0,0x8,0x20,0x42,0xe0,0x0, - 0x0,0x0,0x0,0x9,0x0,0x53,0xd0,0x0,0x0,0x0,0x0,0xa,0x0,0x24,0xe0,0x0, - 0x0,0x0,0x0,0xa,0xe1,0x87,0x50,0x0,0x0,0x0,0x0,0xb,0xe0,0x6,0xe0,0x0, - 0x0,0x0,0x0,0xc,0xc4,0xc,0x50,0x0,0x0,0x0,0x0,0xd,0xbf,0xe8,0xe0,0x0, - 0x0,0x0,0x0,0xe,0xa5,0x3f,0xd0,0x0,0x0,0x0,0x0,0xf,0xa9,0x5,0x60,0x0, - 0x0,0x0,0x0,0x10,0x86,0x73,0x50,0x0,0x0,0x0,0x0,0x11,0x88,0xe7,0x60,0x0, - 0x0,0x0,0x0,0x12,0x67,0xa6,0xd0,0x0,0x0,0x0,0x0,0x13,0x68,0xc9,0x60,0x0, - 0x0,0x0,0x0,0x14,0x4a,0x2b,0xd0,0x0,0x0,0x0,0x0,0x15,0x48,0xab,0x60,0x0, - 0x0,0x0,0x0,0x16,0x2b,0x5f,0x50,0x0,0x0,0x0,0x0,0x17,0x28,0x8d,0x60,0x0, - 0x0,0x0,0x0,0x18,0xc,0x92,0xd0,0x0,0x0,0x0,0x0,0x19,0x8,0x6f,0x60,0x0, - 0x0,0x0,0x0,0x19,0xed,0xc6,0x50,0x0,0x0,0x0,0x0,0x1a,0xf1,0x8b,0xe0,0x0, - 0x0,0x0,0x0,0x1b,0xd0,0x4b,0x50,0x0,0x0,0x0,0x0,0x1c,0xd1,0x6d,0xe0,0x0, - 0x0,0x0,0x0,0x1d,0xb1,0x7e,0xd0,0x0,0x0,0x0,0x0,0x38,0x80,0x45,0x20,0x0, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x0,0x0,0x86,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0x96, + 0xaa,0x34,0x68,0xc8,0x6d,0x87,0x70,0xcc,0xe7,0x4b,0x10,0xcd,0xa9,0x17,0x90,0xcd, + 0xb8,0xe9,0x90,0x8,0x28,0x39,0xf0,0x8,0xef,0x3e,0x60,0xa,0x5,0x78,0xf0,0xa, + 0xd0,0x71,0xe0,0xb,0xe9,0x4f,0x70,0xc,0xb4,0x48,0x60,0xd,0xd2,0x6b,0xf0,0xe, + 0x94,0x2a,0x60,0xf,0xb0,0xfc,0x70,0x10,0x74,0xc,0x60,0x11,0x90,0xde,0x70,0x12, + 0x53,0xee,0x60,0x13,0x70,0xc0,0x70,0x14,0x3b,0xb9,0x60,0x15,0x48,0xb9,0x70,0x16, + 0x13,0xb2,0x60,0x17,0x31,0xd5,0xf0,0x17,0xfc,0xce,0xe0,0x19,0x0,0x94,0x70,0x19, + 0xdb,0x5f,0x60,0x1a,0xcc,0xaf,0xf0,0x1b,0xbc,0xbd,0x10,0x1c,0xac,0xae,0x10,0x1d, + 0x9c,0x9f,0x10,0x1e,0x8c,0x90,0x10,0x1f,0x7c,0x81,0x10,0x20,0x6c,0x72,0x10,0x21, + 0x5c,0x63,0x10,0x22,0x4c,0x54,0x10,0x23,0x3c,0x45,0x10,0x24,0x2c,0x36,0x10,0x25, + 0x1c,0x27,0x10,0x26,0xc,0x18,0x10,0x27,0x5,0x43,0x90,0x27,0xf5,0x34,0x90,0x28, + 0xe5,0x25,0x90,0x29,0xd5,0x16,0x90,0x2a,0xc5,0x7,0x90,0x2b,0xb4,0xf8,0x90,0x2c, + 0xa4,0xe9,0x90,0x2d,0x94,0xda,0x90,0x2e,0x84,0xcb,0x90,0x2f,0x74,0xbc,0x90,0x30, + 0x64,0xad,0x90,0x31,0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34, + 0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38, + 0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b, + 0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f, + 0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43, + 0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47, + 0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a, + 0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e, + 0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52, + 0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56, + 0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59, + 0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d, + 0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61, + 0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65, + 0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68, + 0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c, + 0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70, + 0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74, + 0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78, + 0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b, + 0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f, + 0x8e,0x7f,0x90,0x0,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x0,0x0,0x12,0x98,0x0,0x0,0x0, + 0x0,0xe,0x10,0x0,0x4,0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0xe,0x10,0x0, + 0x4,0x0,0x0,0x1c,0x20,0x1,0x8,0x4c,0x4d,0x54,0x0,0x43,0x45,0x54,0x0,0x43, + 0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x1,0x1,0x54,0x5a, + 0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x86,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xd,0xf8,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xff,0xff,0xff,0xff,0x96,0xaa,0x34,0x68,0xff,0xff,0xff,0xff,0xc8,0x6d, + 0x87,0x70,0xff,0xff,0xff,0xff,0xcc,0xe7,0x4b,0x10,0xff,0xff,0xff,0xff,0xcd,0xa9, + 0x17,0x90,0xff,0xff,0xff,0xff,0xcd,0xb8,0xe9,0x90,0x0,0x0,0x0,0x0,0x8,0x28, + 0x39,0xf0,0x0,0x0,0x0,0x0,0x8,0xef,0x3e,0x60,0x0,0x0,0x0,0x0,0xa,0x5, + 0x78,0xf0,0x0,0x0,0x0,0x0,0xa,0xd0,0x71,0xe0,0x0,0x0,0x0,0x0,0xb,0xe9, + 0x4f,0x70,0x0,0x0,0x0,0x0,0xc,0xb4,0x48,0x60,0x0,0x0,0x0,0x0,0xd,0xd2, + 0x6b,0xf0,0x0,0x0,0x0,0x0,0xe,0x94,0x2a,0x60,0x0,0x0,0x0,0x0,0xf,0xb0, + 0xfc,0x70,0x0,0x0,0x0,0x0,0x10,0x74,0xc,0x60,0x0,0x0,0x0,0x0,0x11,0x90, + 0xde,0x70,0x0,0x0,0x0,0x0,0x12,0x53,0xee,0x60,0x0,0x0,0x0,0x0,0x13,0x70, + 0xc0,0x70,0x0,0x0,0x0,0x0,0x14,0x3b,0xb9,0x60,0x0,0x0,0x0,0x0,0x15,0x48, + 0xb9,0x70,0x0,0x0,0x0,0x0,0x16,0x13,0xb2,0x60,0x0,0x0,0x0,0x0,0x17,0x31, + 0xd5,0xf0,0x0,0x0,0x0,0x0,0x17,0xfc,0xce,0xe0,0x0,0x0,0x0,0x0,0x19,0x0, + 0x94,0x70,0x0,0x0,0x0,0x0,0x19,0xdb,0x5f,0x60,0x0,0x0,0x0,0x0,0x1a,0xcc, + 0xaf,0xf0,0x0,0x0,0x0,0x0,0x1b,0xbc,0xbd,0x10,0x0,0x0,0x0,0x0,0x1c,0xac, + 0xae,0x10,0x0,0x0,0x0,0x0,0x1d,0x9c,0x9f,0x10,0x0,0x0,0x0,0x0,0x1e,0x8c, + 0x90,0x10,0x0,0x0,0x0,0x0,0x1f,0x7c,0x81,0x10,0x0,0x0,0x0,0x0,0x20,0x6c, + 0x72,0x10,0x0,0x0,0x0,0x0,0x21,0x5c,0x63,0x10,0x0,0x0,0x0,0x0,0x22,0x4c, + 0x54,0x10,0x0,0x0,0x0,0x0,0x23,0x3c,0x45,0x10,0x0,0x0,0x0,0x0,0x24,0x2c, + 0x36,0x10,0x0,0x0,0x0,0x0,0x25,0x1c,0x27,0x10,0x0,0x0,0x0,0x0,0x26,0xc, + 0x18,0x10,0x0,0x0,0x0,0x0,0x27,0x5,0x43,0x90,0x0,0x0,0x0,0x0,0x27,0xf5, + 0x34,0x90,0x0,0x0,0x0,0x0,0x28,0xe5,0x25,0x90,0x0,0x0,0x0,0x0,0x29,0xd5, + 0x16,0x90,0x0,0x0,0x0,0x0,0x2a,0xc5,0x7,0x90,0x0,0x0,0x0,0x0,0x2b,0xb4, + 0xf8,0x90,0x0,0x0,0x0,0x0,0x2c,0xa4,0xe9,0x90,0x0,0x0,0x0,0x0,0x2d,0x94, + 0xda,0x90,0x0,0x0,0x0,0x0,0x2e,0x84,0xcb,0x90,0x0,0x0,0x0,0x0,0x2f,0x74, + 0xbc,0x90,0x0,0x0,0x0,0x0,0x30,0x64,0xad,0x90,0x0,0x0,0x0,0x0,0x31,0x5d, + 0xd9,0x10,0x0,0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d, + 0xbb,0x10,0x0,0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d, + 0x9d,0x10,0x0,0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd, + 0x7f,0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd, + 0x61,0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd, + 0x43,0x10,0x0,0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6, + 0x5f,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86, + 0x41,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66, + 0x23,0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46, + 0x5,0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25, + 0xe7,0x90,0x0,0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5, + 0xc9,0x90,0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee, + 0xe6,0x10,0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce, + 0xc8,0x10,0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae, + 0xaa,0x10,0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e, + 0x8c,0x10,0x0,0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e, + 0x6e,0x10,0x0,0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57, + 0x8a,0x90,0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37, + 0x6c,0x90,0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17, + 0x4e,0x90,0x0,0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7, + 0x30,0x90,0x0,0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7, + 0x12,0x90,0x0,0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6, + 0xf4,0x90,0x0,0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0, + 0x11,0x10,0x0,0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f, + 0xf3,0x10,0x0,0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f, + 0xd5,0x10,0x0,0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f, + 0xb7,0x10,0x0,0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f, + 0x99,0x10,0x0,0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8, + 0xb5,0x90,0x0,0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8, + 0x97,0x90,0x0,0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8, + 0x79,0x90,0x0,0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8, + 0x5b,0x90,0x0,0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88, + 0x3d,0x90,0x0,0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68, + 0x1f,0x90,0x0,0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51, + 0x3c,0x10,0x0,0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31, + 0x1e,0x10,0x0,0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11, + 0x0,0x10,0x0,0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0, + 0xe2,0x10,0x0,0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0, + 0xc4,0x10,0x0,0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0, + 0xa6,0x10,0x0,0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99, + 0xc2,0x90,0x0,0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79, + 0xa4,0x90,0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x1,0x2,0x1,0x2,0x1, 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x3,0x0,0x0,0x1e,0x80,0x0,0x0,0x0,0x0,0x2a,0x30,0x1,0x4,0x0,0x0, - 0x1c,0x20,0x0,0x9,0x0,0x0,0x2a,0x30,0x0,0xd,0x4c,0x4d,0x54,0x0,0x43,0x41, - 0x53,0x54,0x0,0x43,0x41,0x54,0x0,0x45,0x41,0x54,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0xa,0x45,0x41,0x54,0x2d,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Maseru - 0x0,0x0,0x1,0xf, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x9,0x80,0x0,0x0,0x0,0x82, - 0x46,0xcf,0x68,0xcc,0xae,0x8c,0x80,0xcd,0x9e,0x6f,0x70,0xce,0x8e,0x6e,0x80,0xcf, - 0x7e,0x51,0x70,0x1,0x3,0x2,0x3,0x2,0x3,0x0,0x0,0x1a,0x40,0x0,0x0,0x0, - 0x0,0x15,0x18,0x0,0x4,0x0,0x0,0x2a,0x30,0x1,0x4,0x0,0x0,0x1c,0x20,0x0, - 0x4,0x4c,0x4d,0x54,0x0,0x53,0x41,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x9,0xf8,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x6d,0x7b,0x41,0x40,0xff,0xff, - 0xff,0xff,0x82,0x46,0xcf,0x68,0xff,0xff,0xff,0xff,0xcc,0xae,0x8c,0x80,0xff,0xff, - 0xff,0xff,0xcd,0x9e,0x6f,0x70,0xff,0xff,0xff,0xff,0xce,0x8e,0x6e,0x80,0xff,0xff, - 0xff,0xff,0xcf,0x7e,0x51,0x70,0x0,0x1,0x3,0x2,0x3,0x2,0x3,0x0,0x0,0x1a, - 0x40,0x0,0x0,0x0,0x0,0x15,0x18,0x0,0x4,0x0,0x0,0x2a,0x30,0x1,0x4,0x0, - 0x0,0x1c,0x20,0x0,0x4,0x4c,0x4d,0x54,0x0,0x53,0x41,0x53,0x54,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x53,0x41,0x53,0x54,0x2d,0x32,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Dakar - 0x0,0x0,0x0,0xaa, + 0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x0,0x0,0x12,0x98,0x0,0x0,0x0,0x0,0xe,0x10,0x0,0x4,0x0,0x0,0x1c,0x20, + 0x1,0x8,0x0,0x0,0xe,0x10,0x0,0x4,0x0,0x0,0x1c,0x20,0x1,0x8,0x4c,0x4d, + 0x54,0x0,0x43,0x45,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x1,0x1, + 0x0,0x0,0x0,0x1,0x1,0xa,0x43,0x45,0x54,0x2d,0x31,0x43,0x45,0x53,0x54,0x2c, + 0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30,0x2f,0x33, + 0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Helsinki + 0x0,0x0,0x7,0x75, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x92, - 0xe6,0x92,0x48,0x0,0x1,0xff,0xff,0xfc,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x4,0x4c,0x4d,0x54,0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, - 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0x92,0xe6,0x92,0x48,0x0,0x1,0xff,0xff,0xfc,0x38,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x4c,0x4d,0x54,0x0,0x47,0x4d,0x54,0x0,0x0, - 0x0,0x0,0x0,0xa,0x47,0x4d,0x54,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Timbuktu - 0x0,0x0,0x0,0xaa, + 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x76,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x80,0x0,0x0,0x0,0xa4, + 0x73,0x6f,0x1b,0xcb,0xce,0x51,0x60,0xcc,0xc0,0xe5,0x60,0x15,0x23,0xdd,0x80,0x16, + 0x13,0xce,0x80,0x17,0x3,0xbf,0x80,0x17,0xf3,0xb0,0x80,0x18,0xe3,0xaf,0x90,0x19, + 0xd3,0xa0,0x90,0x1a,0xc3,0x91,0x90,0x1b,0xbc,0xbd,0x10,0x1c,0xac,0xae,0x10,0x1d, + 0x9c,0x9f,0x10,0x1e,0x8c,0x90,0x10,0x1f,0x7c,0x81,0x10,0x20,0x6c,0x72,0x10,0x21, + 0x5c,0x63,0x10,0x22,0x4c,0x54,0x10,0x23,0x3c,0x45,0x10,0x24,0x2c,0x36,0x10,0x25, + 0x1c,0x27,0x10,0x26,0xc,0x18,0x10,0x27,0x5,0x43,0x90,0x27,0xf5,0x34,0x90,0x28, + 0xe5,0x25,0x90,0x29,0xd5,0x16,0x90,0x2a,0xc5,0x7,0x90,0x2b,0xb4,0xf8,0x90,0x2c, + 0xa4,0xe9,0x90,0x2d,0x94,0xda,0x90,0x2e,0x84,0xcb,0x90,0x2f,0x74,0xbc,0x90,0x30, + 0x64,0xad,0x90,0x31,0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34, + 0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38, + 0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b, + 0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f, + 0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43, + 0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47, + 0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a, + 0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e, + 0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52, + 0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56, + 0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59, + 0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d, + 0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61, + 0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65, + 0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68, + 0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c, + 0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70, + 0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74, + 0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78, + 0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b, + 0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f, + 0x8e,0x7f,0x90,0x1,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x0,0x0,0x17,0x65,0x0,0x0,0x0, + 0x0,0x17,0x65,0x0,0x4,0x0,0x0,0x2a,0x30,0x1,0x8,0x0,0x0,0x1c,0x20,0x0, + 0xd,0x0,0x0,0x2a,0x30,0x1,0x8,0x0,0x0,0x1c,0x20,0x0,0xd,0x4c,0x4d,0x54, + 0x0,0x48,0x4d,0x54,0x0,0x45,0x45,0x53,0x54,0x0,0x45,0x45,0x54,0x0,0x0,0x0, + 0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x1,0x1,0x54,0x5a,0x69,0x66,0x32,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x77,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x11,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff, + 0xff,0xff,0x53,0xba,0x26,0x9b,0xff,0xff,0xff,0xff,0xa4,0x73,0x6f,0x1b,0xff,0xff, + 0xff,0xff,0xcb,0xce,0x51,0x60,0xff,0xff,0xff,0xff,0xcc,0xc0,0xe5,0x60,0x0,0x0, + 0x0,0x0,0x15,0x23,0xdd,0x80,0x0,0x0,0x0,0x0,0x16,0x13,0xce,0x80,0x0,0x0, + 0x0,0x0,0x17,0x3,0xbf,0x80,0x0,0x0,0x0,0x0,0x17,0xf3,0xb0,0x80,0x0,0x0, + 0x0,0x0,0x18,0xe3,0xaf,0x90,0x0,0x0,0x0,0x0,0x19,0xd3,0xa0,0x90,0x0,0x0, + 0x0,0x0,0x1a,0xc3,0x91,0x90,0x0,0x0,0x0,0x0,0x1b,0xbc,0xbd,0x10,0x0,0x0, + 0x0,0x0,0x1c,0xac,0xae,0x10,0x0,0x0,0x0,0x0,0x1d,0x9c,0x9f,0x10,0x0,0x0, + 0x0,0x0,0x1e,0x8c,0x90,0x10,0x0,0x0,0x0,0x0,0x1f,0x7c,0x81,0x10,0x0,0x0, + 0x0,0x0,0x20,0x6c,0x72,0x10,0x0,0x0,0x0,0x0,0x21,0x5c,0x63,0x10,0x0,0x0, + 0x0,0x0,0x22,0x4c,0x54,0x10,0x0,0x0,0x0,0x0,0x23,0x3c,0x45,0x10,0x0,0x0, + 0x0,0x0,0x24,0x2c,0x36,0x10,0x0,0x0,0x0,0x0,0x25,0x1c,0x27,0x10,0x0,0x0, + 0x0,0x0,0x26,0xc,0x18,0x10,0x0,0x0,0x0,0x0,0x27,0x5,0x43,0x90,0x0,0x0, + 0x0,0x0,0x27,0xf5,0x34,0x90,0x0,0x0,0x0,0x0,0x28,0xe5,0x25,0x90,0x0,0x0, + 0x0,0x0,0x29,0xd5,0x16,0x90,0x0,0x0,0x0,0x0,0x2a,0xc5,0x7,0x90,0x0,0x0, + 0x0,0x0,0x2b,0xb4,0xf8,0x90,0x0,0x0,0x0,0x0,0x2c,0xa4,0xe9,0x90,0x0,0x0, + 0x0,0x0,0x2d,0x94,0xda,0x90,0x0,0x0,0x0,0x0,0x2e,0x84,0xcb,0x90,0x0,0x0, + 0x0,0x0,0x2f,0x74,0xbc,0x90,0x0,0x0,0x0,0x0,0x30,0x64,0xad,0x90,0x0,0x0, + 0x0,0x0,0x31,0x5d,0xd9,0x10,0x0,0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0, + 0x0,0x0,0x33,0x3d,0xbb,0x10,0x0,0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0, + 0x0,0x0,0x35,0x1d,0x9d,0x10,0x0,0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0, + 0x0,0x0,0x36,0xfd,0x7f,0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0, + 0x0,0x0,0x38,0xdd,0x61,0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0, + 0x0,0x0,0x3a,0xbd,0x43,0x10,0x0,0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0, + 0x0,0x0,0x3c,0xa6,0x5f,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0, + 0x0,0x0,0x3e,0x86,0x41,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0, + 0x0,0x0,0x40,0x66,0x23,0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0, + 0x0,0x0,0x42,0x46,0x5,0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0, + 0x0,0x0,0x44,0x25,0xe7,0x90,0x0,0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0, + 0x0,0x0,0x46,0x5,0xc9,0x90,0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0, + 0x0,0x0,0x47,0xee,0xe6,0x10,0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0, + 0x0,0x0,0x49,0xce,0xc8,0x10,0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0, + 0x0,0x0,0x4b,0xae,0xaa,0x10,0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0, + 0x0,0x0,0x4d,0x8e,0x8c,0x10,0x0,0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0, + 0x0,0x0,0x4f,0x6e,0x6e,0x10,0x0,0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0, + 0x0,0x0,0x51,0x57,0x8a,0x90,0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0, + 0x0,0x0,0x53,0x37,0x6c,0x90,0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0, + 0x0,0x0,0x55,0x17,0x4e,0x90,0x0,0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0, + 0x0,0x0,0x56,0xf7,0x30,0x90,0x0,0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0, + 0x0,0x0,0x58,0xd7,0x12,0x90,0x0,0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0, + 0x0,0x0,0x5a,0xb6,0xf4,0x90,0x0,0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0, + 0x0,0x0,0x5c,0xa0,0x11,0x10,0x0,0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0, + 0x0,0x0,0x5e,0x7f,0xf3,0x10,0x0,0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0, + 0x0,0x0,0x60,0x5f,0xd5,0x10,0x0,0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0, + 0x0,0x0,0x62,0x3f,0xb7,0x10,0x0,0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0, + 0x0,0x0,0x64,0x1f,0x99,0x10,0x0,0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0, + 0x0,0x0,0x66,0x8,0xb5,0x90,0x0,0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0, + 0x0,0x0,0x67,0xe8,0x97,0x90,0x0,0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0, + 0x0,0x0,0x69,0xc8,0x79,0x90,0x0,0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0, + 0x0,0x0,0x6b,0xa8,0x5b,0x90,0x0,0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0, + 0x0,0x0,0x6d,0x88,0x3d,0x90,0x0,0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0, + 0x0,0x0,0x6f,0x68,0x1f,0x90,0x0,0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0, + 0x0,0x0,0x71,0x51,0x3c,0x10,0x0,0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0, + 0x0,0x0,0x73,0x31,0x1e,0x10,0x0,0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0, + 0x0,0x0,0x75,0x11,0x0,0x10,0x0,0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0, + 0x0,0x0,0x76,0xf0,0xe2,0x10,0x0,0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0, + 0x0,0x0,0x78,0xd0,0xc4,0x10,0x0,0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0, + 0x0,0x0,0x7a,0xb0,0xa6,0x10,0x0,0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0, + 0x0,0x0,0x7c,0x99,0xc2,0x90,0x0,0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0, + 0x0,0x0,0x7e,0x79,0xa4,0x90,0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x1, + 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x0,0x0,0x17,0x65,0x0,0x0,0x0,0x0,0x17,0x65,0x0, + 0x4,0x0,0x0,0x2a,0x30,0x1,0x8,0x0,0x0,0x1c,0x20,0x0,0xd,0x0,0x0,0x2a, + 0x30,0x1,0x8,0x0,0x0,0x1c,0x20,0x0,0xd,0x4c,0x4d,0x54,0x0,0x48,0x4d,0x54, + 0x0,0x45,0x45,0x53,0x54,0x0,0x45,0x45,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x1, + 0x0,0x0,0x0,0x0,0x1,0x1,0xa,0x45,0x45,0x54,0x2d,0x32,0x45,0x45,0x53,0x54, + 0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2f,0x33,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e, + 0x30,0x2f,0x34,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Uzhgorod + 0x0,0x0,0x8,0x37, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x92, - 0xe6,0x92,0x48,0x0,0x1,0xff,0xff,0xfc,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x4,0x4c,0x4d,0x54,0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, - 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0x92,0xe6,0x92,0x48,0x0,0x1,0xff,0xff,0xfc,0x38,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x4c,0x4d,0x54,0x0,0x47,0x4d,0x54,0x0,0x0, - 0x0,0x0,0x0,0xa,0x47,0x4d,0x54,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Addis_Ababa - 0x0,0x0,0x1,0x1b, + 0x0,0x0,0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x7a,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x1e,0x80,0x0,0x0,0x0,0xc8, + 0x9,0x71,0x90,0xcc,0xe7,0x4b,0x10,0xcd,0xa9,0x17,0x90,0xce,0xa2,0x43,0x10,0xcf, + 0x92,0x34,0x10,0xd0,0x80,0xa9,0x60,0xd0,0xa1,0x9e,0xe0,0xd1,0xe5,0xfd,0xf0,0x15, + 0x27,0xa7,0xd0,0x16,0x18,0xdc,0x40,0x17,0x8,0xdb,0x50,0x17,0xfa,0xf,0xc0,0x18, + 0xea,0xe,0xd0,0x19,0xdb,0x43,0x40,0x1a,0xcc,0x93,0xd0,0x1b,0xbc,0xa0,0xf0,0x1c, + 0xac,0x91,0xf0,0x1d,0x9c,0x82,0xf0,0x1e,0x8c,0x73,0xf0,0x1f,0x7c,0x64,0xf0,0x20, + 0x6c,0x55,0xf0,0x21,0x5c,0x46,0xf0,0x22,0x4c,0x37,0xf0,0x23,0x3c,0x28,0xf0,0x24, + 0x2c,0x19,0xf0,0x25,0x1c,0xa,0xf0,0x25,0x9e,0x73,0x50,0x26,0x8d,0x2e,0xf0,0x27, + 0xf5,0x42,0xa0,0x29,0xd4,0xec,0x60,0x2a,0xc4,0xcf,0x50,0x2b,0xb4,0xce,0x60,0x2c, + 0xa4,0xb1,0x50,0x2d,0x94,0xb0,0x60,0x2e,0x84,0x93,0x50,0x2f,0x74,0xbc,0x90,0x30, + 0x64,0xad,0x90,0x31,0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34, + 0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38, + 0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b, + 0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f, + 0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43, + 0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47, + 0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a, + 0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e, + 0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52, + 0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56, + 0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59, + 0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d, + 0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61, + 0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65, + 0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68, + 0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c, + 0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70, + 0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74, + 0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78, + 0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b, + 0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f, + 0x8e,0x7f,0x90,0x1,0x2,0x3,0x2,0x3,0x2,0x4,0x1,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x6,0x1, + 0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb, + 0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb, + 0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb, + 0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb, + 0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb, + 0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0x0,0x0,0x14, + 0xe8,0x0,0x0,0x0,0x0,0xe,0x10,0x0,0x4,0x0,0x0,0x1c,0x20,0x1,0x8,0x0, + 0x0,0xe,0x10,0x0,0x4,0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0,0x38,0x40,0x1, + 0xd,0x0,0x0,0x2a,0x30,0x0,0x11,0x0,0x0,0x2a,0x30,0x0,0x11,0x0,0x0,0x38, + 0x40,0x1,0xd,0x0,0x0,0x1c,0x20,0x0,0x15,0x0,0x0,0x2a,0x30,0x1,0x19,0x0, + 0x0,0x2a,0x30,0x1,0x19,0x0,0x0,0x1c,0x20,0x0,0x15,0x4c,0x4d,0x54,0x0,0x43, + 0x45,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x4d,0x53,0x44,0x0,0x4d,0x53,0x4b,0x0, + 0x45,0x45,0x54,0x0,0x45,0x45,0x53,0x54,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0, + 0x1,0x1,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x1,0x1,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0xd,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7b,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x1e,0xf8, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x6a,0xee,0xb0,0x18,0xff, + 0xff,0xff,0xff,0xc8,0x9,0x71,0x90,0xff,0xff,0xff,0xff,0xcc,0xe7,0x4b,0x10,0xff, + 0xff,0xff,0xff,0xcd,0xa9,0x17,0x90,0xff,0xff,0xff,0xff,0xce,0xa2,0x43,0x10,0xff, + 0xff,0xff,0xff,0xcf,0x92,0x34,0x10,0xff,0xff,0xff,0xff,0xd0,0x80,0xa9,0x60,0xff, + 0xff,0xff,0xff,0xd0,0xa1,0x9e,0xe0,0xff,0xff,0xff,0xff,0xd1,0xe5,0xfd,0xf0,0x0, + 0x0,0x0,0x0,0x15,0x27,0xa7,0xd0,0x0,0x0,0x0,0x0,0x16,0x18,0xdc,0x40,0x0, + 0x0,0x0,0x0,0x17,0x8,0xdb,0x50,0x0,0x0,0x0,0x0,0x17,0xfa,0xf,0xc0,0x0, + 0x0,0x0,0x0,0x18,0xea,0xe,0xd0,0x0,0x0,0x0,0x0,0x19,0xdb,0x43,0x40,0x0, + 0x0,0x0,0x0,0x1a,0xcc,0x93,0xd0,0x0,0x0,0x0,0x0,0x1b,0xbc,0xa0,0xf0,0x0, + 0x0,0x0,0x0,0x1c,0xac,0x91,0xf0,0x0,0x0,0x0,0x0,0x1d,0x9c,0x82,0xf0,0x0, + 0x0,0x0,0x0,0x1e,0x8c,0x73,0xf0,0x0,0x0,0x0,0x0,0x1f,0x7c,0x64,0xf0,0x0, + 0x0,0x0,0x0,0x20,0x6c,0x55,0xf0,0x0,0x0,0x0,0x0,0x21,0x5c,0x46,0xf0,0x0, + 0x0,0x0,0x0,0x22,0x4c,0x37,0xf0,0x0,0x0,0x0,0x0,0x23,0x3c,0x28,0xf0,0x0, + 0x0,0x0,0x0,0x24,0x2c,0x19,0xf0,0x0,0x0,0x0,0x0,0x25,0x1c,0xa,0xf0,0x0, + 0x0,0x0,0x0,0x25,0x9e,0x73,0x50,0x0,0x0,0x0,0x0,0x26,0x8d,0x2e,0xf0,0x0, + 0x0,0x0,0x0,0x27,0xf5,0x42,0xa0,0x0,0x0,0x0,0x0,0x29,0xd4,0xec,0x60,0x0, + 0x0,0x0,0x0,0x2a,0xc4,0xcf,0x50,0x0,0x0,0x0,0x0,0x2b,0xb4,0xce,0x60,0x0, + 0x0,0x0,0x0,0x2c,0xa4,0xb1,0x50,0x0,0x0,0x0,0x0,0x2d,0x94,0xb0,0x60,0x0, + 0x0,0x0,0x0,0x2e,0x84,0x93,0x50,0x0,0x0,0x0,0x0,0x2f,0x74,0xbc,0x90,0x0, + 0x0,0x0,0x0,0x30,0x64,0xad,0x90,0x0,0x0,0x0,0x0,0x31,0x5d,0xd9,0x10,0x0, + 0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d,0xbb,0x10,0x0, + 0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d,0x9d,0x10,0x0, + 0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd,0x7f,0x10,0x0, + 0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd,0x61,0x10,0x0, + 0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd,0x43,0x10,0x0, + 0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f,0x90,0x0, + 0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86,0x41,0x90,0x0, + 0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66,0x23,0x90,0x0, + 0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46,0x5,0x90,0x0, + 0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25,0xe7,0x90,0x0, + 0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5,0xc9,0x90,0x0, + 0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee,0xe6,0x10,0x0, + 0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce,0xc8,0x10,0x0, + 0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae,0xaa,0x10,0x0, + 0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c,0x10,0x0, + 0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e,0x10,0x0, + 0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57,0x8a,0x90,0x0, + 0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37,0x6c,0x90,0x0, + 0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17,0x4e,0x90,0x0, + 0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7,0x30,0x90,0x0, + 0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7,0x12,0x90,0x0, + 0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4,0x90,0x0, + 0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0,0x11,0x10,0x0, + 0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3,0x10,0x0, + 0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f,0xd5,0x10,0x0, + 0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f,0xb7,0x10,0x0, + 0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f,0x99,0x10,0x0, + 0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8,0xb5,0x90,0x0, + 0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8,0x97,0x90,0x0, + 0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8,0x79,0x90,0x0, + 0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b,0x90,0x0, + 0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88,0x3d,0x90,0x0, + 0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68,0x1f,0x90,0x0, + 0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51,0x3c,0x10,0x0, + 0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31,0x1e,0x10,0x0, + 0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11,0x0,0x10,0x0, + 0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0,0xe2,0x10,0x0, + 0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0,0xc4,0x10,0x0, + 0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6,0x10,0x0, + 0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99,0xc2,0x90,0x0, + 0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79,0xa4,0x90,0x0, + 0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x1,0x2,0x3,0x2,0x3,0x2,0x4,0x1, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8, + 0x7,0x8,0x7,0x6,0x1,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xb,0xc,0xb,0xc, + 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, + 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, + 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, + 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, + 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, + 0xb,0xc,0x0,0x0,0x14,0xe8,0x0,0x0,0x0,0x0,0xe,0x10,0x0,0x4,0x0,0x0, + 0x1c,0x20,0x1,0x8,0x0,0x0,0xe,0x10,0x0,0x4,0x0,0x0,0x1c,0x20,0x1,0x8, + 0x0,0x0,0x38,0x40,0x1,0xd,0x0,0x0,0x2a,0x30,0x0,0x11,0x0,0x0,0x2a,0x30, + 0x0,0x11,0x0,0x0,0x38,0x40,0x1,0xd,0x0,0x0,0x1c,0x20,0x0,0x15,0x0,0x0, + 0x2a,0x30,0x1,0x19,0x0,0x0,0x2a,0x30,0x1,0x19,0x0,0x0,0x1c,0x20,0x0,0x15, + 0x4c,0x4d,0x54,0x0,0x43,0x45,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x4d,0x53,0x44, + 0x0,0x4d,0x53,0x4b,0x0,0x45,0x45,0x54,0x0,0x45,0x45,0x53,0x54,0x0,0x0,0x0, + 0x1,0x1,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0xa,0x45,0x45,0x54,0x2d,0x32,0x45,0x45, + 0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2f,0x33,0x2c,0x4d,0x31,0x30,0x2e, + 0x35,0x2e,0x30,0x2f,0x34,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Zurich + 0x0,0x0,0x7,0x7e, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x13,0x80,0x0,0x0,0x0,0xb1, - 0xee,0xda,0xfc,0xb4,0xc2,0x9a,0xd0,0xc7,0x91,0x47,0xd8,0xed,0x2f,0xe1,0xd4,0x0, - 0x1,0x2,0x3,0x1,0x0,0x0,0x22,0x84,0x0,0x0,0x0,0x0,0x2a,0x30,0x0,0x4, - 0x0,0x0,0x23,0x28,0x0,0x8,0x0,0x0,0x26,0xac,0x0,0xd,0x0,0x0,0x2a,0x30, - 0x0,0x4,0x4c,0x4d,0x54,0x0,0x45,0x41,0x54,0x0,0x42,0x45,0x41,0x54,0x0,0x42, - 0x45,0x41,0x55,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x13,0xf8,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xb1,0xee,0xda,0xfc,0xff,0xff,0xff,0xff,0xb4, - 0xc2,0x9a,0xd0,0xff,0xff,0xff,0xff,0xc7,0x91,0x47,0xd8,0xff,0xff,0xff,0xff,0xed, - 0x2f,0xe1,0xd4,0x0,0x1,0x2,0x3,0x1,0x0,0x0,0x22,0x84,0x0,0x0,0x0,0x0, - 0x2a,0x30,0x0,0x4,0x0,0x0,0x23,0x28,0x0,0x8,0x0,0x0,0x26,0xac,0x0,0xd, - 0x0,0x0,0x2a,0x30,0x0,0x4,0x4c,0x4d,0x54,0x0,0x45,0x41,0x54,0x0,0x42,0x45, - 0x41,0x54,0x0,0x42,0x45,0x41,0x55,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0xa,0x45,0x41,0x54,0x2d,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Bamako - 0x0,0x0,0x0,0xaa, + 0x0,0x0,0x77,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0xca, + 0x17,0x6a,0x0,0xca,0xe2,0x71,0x0,0xcb,0xf7,0x4c,0x0,0xcc,0xc2,0x53,0x0,0x15, + 0x23,0xeb,0x90,0x16,0x13,0xdc,0x90,0x17,0x3,0xcd,0x90,0x17,0xf3,0xbe,0x90,0x18, + 0xe3,0xaf,0x90,0x19,0xd3,0xa0,0x90,0x1a,0xc3,0x91,0x90,0x1b,0xbc,0xbd,0x10,0x1c, + 0xac,0xae,0x10,0x1d,0x9c,0x9f,0x10,0x1e,0x8c,0x90,0x10,0x1f,0x7c,0x81,0x10,0x20, + 0x6c,0x72,0x10,0x21,0x5c,0x63,0x10,0x22,0x4c,0x54,0x10,0x23,0x3c,0x45,0x10,0x24, + 0x2c,0x36,0x10,0x25,0x1c,0x27,0x10,0x26,0xc,0x18,0x10,0x27,0x5,0x43,0x90,0x27, + 0xf5,0x34,0x90,0x28,0xe5,0x25,0x90,0x29,0xd5,0x16,0x90,0x2a,0xc5,0x7,0x90,0x2b, + 0xb4,0xf8,0x90,0x2c,0xa4,0xe9,0x90,0x2d,0x94,0xda,0x90,0x2e,0x84,0xcb,0x90,0x2f, + 0x74,0xbc,0x90,0x30,0x64,0xad,0x90,0x31,0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33, + 0x3d,0xbb,0x10,0x34,0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36, + 0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a, + 0xbd,0x43,0x10,0x3b,0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e, + 0x86,0x41,0x90,0x3f,0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42, + 0x46,0x5,0x90,0x43,0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46, + 0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49, + 0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d, + 0x8e,0x8c,0x10,0x4e,0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51, + 0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55, + 0x17,0x4e,0x90,0x56,0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58, + 0xd7,0x12,0x90,0x59,0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c, + 0xa0,0x11,0x10,0x5d,0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60, + 0x5f,0xd5,0x10,0x61,0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64, + 0x1f,0x99,0x10,0x65,0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67, + 0xe8,0x97,0x90,0x68,0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b, + 0xa8,0x5b,0x90,0x6c,0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f, + 0x68,0x1f,0x90,0x70,0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73, + 0x31,0x1e,0x10,0x74,0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76, + 0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a, + 0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e, + 0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x0,0x0, + 0x6,0xfa,0x0,0x0,0x0,0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe,0x10,0x0,0x9, + 0x0,0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe,0x10,0x0,0x9,0x42,0x4d,0x54,0x0, + 0x43,0x45,0x53,0x54,0x0,0x43,0x45,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0, + 0x0,0x1,0x1,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x79,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0xf8, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x24,0xf0,0xea,0x80,0xff, + 0xff,0xff,0xff,0x71,0xd4,0x6,0x86,0xff,0xff,0xff,0xff,0xca,0x17,0x6a,0x0,0xff, + 0xff,0xff,0xff,0xca,0xe2,0x71,0x0,0xff,0xff,0xff,0xff,0xcb,0xf7,0x4c,0x0,0xff, + 0xff,0xff,0xff,0xcc,0xc2,0x53,0x0,0x0,0x0,0x0,0x0,0x15,0x23,0xeb,0x90,0x0, + 0x0,0x0,0x0,0x16,0x13,0xdc,0x90,0x0,0x0,0x0,0x0,0x17,0x3,0xcd,0x90,0x0, + 0x0,0x0,0x0,0x17,0xf3,0xbe,0x90,0x0,0x0,0x0,0x0,0x18,0xe3,0xaf,0x90,0x0, + 0x0,0x0,0x0,0x19,0xd3,0xa0,0x90,0x0,0x0,0x0,0x0,0x1a,0xc3,0x91,0x90,0x0, + 0x0,0x0,0x0,0x1b,0xbc,0xbd,0x10,0x0,0x0,0x0,0x0,0x1c,0xac,0xae,0x10,0x0, + 0x0,0x0,0x0,0x1d,0x9c,0x9f,0x10,0x0,0x0,0x0,0x0,0x1e,0x8c,0x90,0x10,0x0, + 0x0,0x0,0x0,0x1f,0x7c,0x81,0x10,0x0,0x0,0x0,0x0,0x20,0x6c,0x72,0x10,0x0, + 0x0,0x0,0x0,0x21,0x5c,0x63,0x10,0x0,0x0,0x0,0x0,0x22,0x4c,0x54,0x10,0x0, + 0x0,0x0,0x0,0x23,0x3c,0x45,0x10,0x0,0x0,0x0,0x0,0x24,0x2c,0x36,0x10,0x0, + 0x0,0x0,0x0,0x25,0x1c,0x27,0x10,0x0,0x0,0x0,0x0,0x26,0xc,0x18,0x10,0x0, + 0x0,0x0,0x0,0x27,0x5,0x43,0x90,0x0,0x0,0x0,0x0,0x27,0xf5,0x34,0x90,0x0, + 0x0,0x0,0x0,0x28,0xe5,0x25,0x90,0x0,0x0,0x0,0x0,0x29,0xd5,0x16,0x90,0x0, + 0x0,0x0,0x0,0x2a,0xc5,0x7,0x90,0x0,0x0,0x0,0x0,0x2b,0xb4,0xf8,0x90,0x0, + 0x0,0x0,0x0,0x2c,0xa4,0xe9,0x90,0x0,0x0,0x0,0x0,0x2d,0x94,0xda,0x90,0x0, + 0x0,0x0,0x0,0x2e,0x84,0xcb,0x90,0x0,0x0,0x0,0x0,0x2f,0x74,0xbc,0x90,0x0, + 0x0,0x0,0x0,0x30,0x64,0xad,0x90,0x0,0x0,0x0,0x0,0x31,0x5d,0xd9,0x10,0x0, + 0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d,0xbb,0x10,0x0, + 0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d,0x9d,0x10,0x0, + 0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd,0x7f,0x10,0x0, + 0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd,0x61,0x10,0x0, + 0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd,0x43,0x10,0x0, + 0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f,0x90,0x0, + 0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86,0x41,0x90,0x0, + 0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66,0x23,0x90,0x0, + 0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46,0x5,0x90,0x0, + 0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25,0xe7,0x90,0x0, + 0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5,0xc9,0x90,0x0, + 0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee,0xe6,0x10,0x0, + 0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce,0xc8,0x10,0x0, + 0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae,0xaa,0x10,0x0, + 0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c,0x10,0x0, + 0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e,0x10,0x0, + 0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57,0x8a,0x90,0x0, + 0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37,0x6c,0x90,0x0, + 0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17,0x4e,0x90,0x0, + 0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7,0x30,0x90,0x0, + 0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7,0x12,0x90,0x0, + 0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4,0x90,0x0, + 0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0,0x11,0x10,0x0, + 0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3,0x10,0x0, + 0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f,0xd5,0x10,0x0, + 0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f,0xb7,0x10,0x0, + 0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f,0x99,0x10,0x0, + 0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8,0xb5,0x90,0x0, + 0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8,0x97,0x90,0x0, + 0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8,0x79,0x90,0x0, + 0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b,0x90,0x0, + 0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88,0x3d,0x90,0x0, + 0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68,0x1f,0x90,0x0, + 0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51,0x3c,0x10,0x0, + 0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31,0x1e,0x10,0x0, + 0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11,0x0,0x10,0x0, + 0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0,0xe2,0x10,0x0, + 0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0,0xc4,0x10,0x0, + 0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6,0x10,0x0, + 0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99,0xc2,0x90,0x0, + 0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79,0xa4,0x90,0x0, + 0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x1,0x3,0x2,0x3,0x2,0x3,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x6,0xfa,0x0,0x4,0x0,0x0,0x1c,0x20, + 0x1,0x8,0x0,0x0,0xe,0x10,0x0,0xd,0x0,0x0,0x1c,0x20,0x1,0x8,0x0,0x0, + 0xe,0x10,0x0,0xd,0x4c,0x4d,0x54,0x0,0x42,0x4d,0x54,0x0,0x43,0x45,0x53,0x54, + 0x0,0x43,0x45,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x1, + 0x1,0xa,0x43,0x45,0x54,0x2d,0x31,0x43,0x45,0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35, + 0x2e,0x30,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30,0x2f,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Madrid + 0x0,0x0,0xa,0x4d, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x92, - 0xe6,0x92,0x48,0x0,0x1,0xff,0xff,0xfc,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x4,0x4c,0x4d,0x54,0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, + 0x0,0x0,0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xa3,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x1b,0x80,0x0,0x0,0x0,0x9e, + 0xba,0xc5,0xf0,0x9f,0xa0,0x39,0x0,0xa0,0x90,0x1b,0xf0,0xa1,0x81,0x6c,0x80,0xaa, + 0x5,0xef,0x70,0xaa,0xe7,0x6e,0x0,0xad,0xc9,0xa7,0xf0,0xae,0xa7,0x32,0x0,0xaf, + 0xa0,0x4f,0x70,0xb0,0x87,0x14,0x0,0xb1,0x89,0x7a,0x0,0xb2,0x70,0x30,0x80,0xb3, + 0x72,0x88,0x70,0xb4,0x50,0x12,0x80,0xc2,0xc9,0xec,0xf0,0xc3,0x58,0x5d,0x0,0xc4, + 0x48,0x3f,0xf0,0xc4,0x6d,0x1b,0xe0,0xc5,0x39,0x74,0x60,0xc7,0x21,0x5b,0x80,0xc7, + 0xf5,0x8e,0xf0,0xcb,0xf5,0xde,0x60,0xcc,0x95,0x71,0xf0,0xcd,0xc3,0x4b,0x60,0xce, + 0xa0,0xd5,0x70,0xcf,0xa3,0x2d,0x60,0xd0,0x80,0xb7,0x70,0xd1,0x83,0xf,0x60,0xd2, + 0x60,0x99,0x70,0xd3,0x62,0xf1,0x60,0xd4,0x40,0x7b,0x70,0xd9,0x1e,0x46,0xe0,0xd9, + 0xe9,0x5b,0xf0,0x8,0xd,0xcd,0xe0,0x8,0xf4,0x92,0x70,0x9,0xed,0xaf,0xe0,0xa, + 0xd4,0x74,0x70,0xb,0xbb,0x1c,0xe0,0xc,0xab,0x1b,0xf0,0xd,0xa4,0x39,0x60,0xe, + 0x8a,0xfd,0xf0,0xf,0x84,0x45,0x90,0x10,0x74,0x36,0x90,0x10,0xed,0x64,0x70,0x11, + 0x64,0x27,0x90,0x12,0x54,0x18,0x90,0x13,0x4d,0x44,0x10,0x14,0x33,0xfa,0x90,0x15, + 0x23,0xeb,0x90,0x16,0x13,0xdc,0x90,0x17,0x3,0xcd,0x90,0x17,0xf3,0xbe,0x90,0x18, + 0xe3,0xaf,0x90,0x19,0xd3,0xa0,0x90,0x1a,0xc3,0x91,0x90,0x1b,0xbc,0xbd,0x10,0x1c, + 0xac,0xae,0x10,0x1d,0x9c,0x9f,0x10,0x1e,0x8c,0x90,0x10,0x1f,0x7c,0x81,0x10,0x20, + 0x6c,0x72,0x10,0x21,0x5c,0x63,0x10,0x22,0x4c,0x54,0x10,0x23,0x3c,0x45,0x10,0x24, + 0x2c,0x36,0x10,0x25,0x1c,0x27,0x10,0x26,0xc,0x18,0x10,0x27,0x5,0x43,0x90,0x27, + 0xf5,0x34,0x90,0x28,0xe5,0x25,0x90,0x29,0xd5,0x16,0x90,0x2a,0xc5,0x7,0x90,0x2b, + 0xb4,0xf8,0x90,0x2c,0xa4,0xe9,0x90,0x2d,0x94,0xda,0x90,0x2e,0x84,0xcb,0x90,0x2f, + 0x74,0xbc,0x90,0x30,0x64,0xad,0x90,0x31,0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33, + 0x3d,0xbb,0x10,0x34,0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36, + 0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a, + 0xbd,0x43,0x10,0x3b,0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e, + 0x86,0x41,0x90,0x3f,0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42, + 0x46,0x5,0x90,0x43,0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46, + 0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49, + 0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d, + 0x8e,0x8c,0x10,0x4e,0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51, + 0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55, + 0x17,0x4e,0x90,0x56,0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58, + 0xd7,0x12,0x90,0x59,0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c, + 0xa0,0x11,0x10,0x5d,0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60, + 0x5f,0xd5,0x10,0x61,0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64, + 0x1f,0x99,0x10,0x65,0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67, + 0xe8,0x97,0x90,0x68,0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b, + 0xa8,0x5b,0x90,0x6c,0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f, + 0x68,0x1f,0x90,0x70,0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73, + 0x31,0x1e,0x10,0x74,0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76, + 0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a, + 0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e, + 0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x4,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x3,0x1,0x2,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x7,0x8,0x6,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa, + 0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa, + 0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa, + 0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa, + 0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa, + 0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa, + 0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa, + 0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0xff,0xff,0xfc,0x8c,0x0,0x0, + 0x0,0x0,0xe,0x10,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x1c,0x20, + 0x1,0xd,0x0,0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x1c,0x20,0x1,0x12,0x0,0x0, + 0xe,0x10,0x0,0x17,0x0,0x0,0x1c,0x20,0x1,0x12,0x0,0x0,0xe,0x10,0x0,0x17, + 0x0,0x0,0x1c,0x20,0x1,0x12,0x0,0x0,0xe,0x10,0x0,0x17,0x4c,0x4d,0x54,0x0, + 0x57,0x45,0x53,0x54,0x0,0x57,0x45,0x54,0x0,0x57,0x45,0x4d,0x54,0x0,0x43,0x45, + 0x53,0x54,0x0,0x43,0x45,0x54,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x1,0x1, + 0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x54,0x5a,0x69, 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0x92,0xe6,0x92,0x48,0x0,0x1,0xff,0xff,0xfc,0x38,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x4c,0x4d,0x54,0x0,0x47,0x4d,0x54,0x0,0x0, - 0x0,0x0,0x0,0xa,0x47,0x4d,0x54,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Libreville - 0x0,0x0,0x0,0xab, + 0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xa4,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x1b,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0x7e,0x36,0xb5,0x0,0xff,0xff,0xff,0xff,0x9e,0xba,0xc5, + 0xf0,0xff,0xff,0xff,0xff,0x9f,0xa0,0x39,0x0,0xff,0xff,0xff,0xff,0xa0,0x90,0x1b, + 0xf0,0xff,0xff,0xff,0xff,0xa1,0x81,0x6c,0x80,0xff,0xff,0xff,0xff,0xaa,0x5,0xef, + 0x70,0xff,0xff,0xff,0xff,0xaa,0xe7,0x6e,0x0,0xff,0xff,0xff,0xff,0xad,0xc9,0xa7, + 0xf0,0xff,0xff,0xff,0xff,0xae,0xa7,0x32,0x0,0xff,0xff,0xff,0xff,0xaf,0xa0,0x4f, + 0x70,0xff,0xff,0xff,0xff,0xb0,0x87,0x14,0x0,0xff,0xff,0xff,0xff,0xb1,0x89,0x7a, + 0x0,0xff,0xff,0xff,0xff,0xb2,0x70,0x30,0x80,0xff,0xff,0xff,0xff,0xb3,0x72,0x88, + 0x70,0xff,0xff,0xff,0xff,0xb4,0x50,0x12,0x80,0xff,0xff,0xff,0xff,0xc2,0xc9,0xec, + 0xf0,0xff,0xff,0xff,0xff,0xc3,0x58,0x5d,0x0,0xff,0xff,0xff,0xff,0xc4,0x48,0x3f, + 0xf0,0xff,0xff,0xff,0xff,0xc4,0x6d,0x1b,0xe0,0xff,0xff,0xff,0xff,0xc5,0x39,0x74, + 0x60,0xff,0xff,0xff,0xff,0xc7,0x21,0x5b,0x80,0xff,0xff,0xff,0xff,0xc7,0xf5,0x8e, + 0xf0,0xff,0xff,0xff,0xff,0xcb,0xf5,0xde,0x60,0xff,0xff,0xff,0xff,0xcc,0x95,0x71, + 0xf0,0xff,0xff,0xff,0xff,0xcd,0xc3,0x4b,0x60,0xff,0xff,0xff,0xff,0xce,0xa0,0xd5, + 0x70,0xff,0xff,0xff,0xff,0xcf,0xa3,0x2d,0x60,0xff,0xff,0xff,0xff,0xd0,0x80,0xb7, + 0x70,0xff,0xff,0xff,0xff,0xd1,0x83,0xf,0x60,0xff,0xff,0xff,0xff,0xd2,0x60,0x99, + 0x70,0xff,0xff,0xff,0xff,0xd3,0x62,0xf1,0x60,0xff,0xff,0xff,0xff,0xd4,0x40,0x7b, + 0x70,0xff,0xff,0xff,0xff,0xd9,0x1e,0x46,0xe0,0xff,0xff,0xff,0xff,0xd9,0xe9,0x5b, + 0xf0,0x0,0x0,0x0,0x0,0x8,0xd,0xcd,0xe0,0x0,0x0,0x0,0x0,0x8,0xf4,0x92, + 0x70,0x0,0x0,0x0,0x0,0x9,0xed,0xaf,0xe0,0x0,0x0,0x0,0x0,0xa,0xd4,0x74, + 0x70,0x0,0x0,0x0,0x0,0xb,0xbb,0x1c,0xe0,0x0,0x0,0x0,0x0,0xc,0xab,0x1b, + 0xf0,0x0,0x0,0x0,0x0,0xd,0xa4,0x39,0x60,0x0,0x0,0x0,0x0,0xe,0x8a,0xfd, + 0xf0,0x0,0x0,0x0,0x0,0xf,0x84,0x45,0x90,0x0,0x0,0x0,0x0,0x10,0x74,0x36, + 0x90,0x0,0x0,0x0,0x0,0x10,0xed,0x64,0x70,0x0,0x0,0x0,0x0,0x11,0x64,0x27, + 0x90,0x0,0x0,0x0,0x0,0x12,0x54,0x18,0x90,0x0,0x0,0x0,0x0,0x13,0x4d,0x44, + 0x10,0x0,0x0,0x0,0x0,0x14,0x33,0xfa,0x90,0x0,0x0,0x0,0x0,0x15,0x23,0xeb, + 0x90,0x0,0x0,0x0,0x0,0x16,0x13,0xdc,0x90,0x0,0x0,0x0,0x0,0x17,0x3,0xcd, + 0x90,0x0,0x0,0x0,0x0,0x17,0xf3,0xbe,0x90,0x0,0x0,0x0,0x0,0x18,0xe3,0xaf, + 0x90,0x0,0x0,0x0,0x0,0x19,0xd3,0xa0,0x90,0x0,0x0,0x0,0x0,0x1a,0xc3,0x91, + 0x90,0x0,0x0,0x0,0x0,0x1b,0xbc,0xbd,0x10,0x0,0x0,0x0,0x0,0x1c,0xac,0xae, + 0x10,0x0,0x0,0x0,0x0,0x1d,0x9c,0x9f,0x10,0x0,0x0,0x0,0x0,0x1e,0x8c,0x90, + 0x10,0x0,0x0,0x0,0x0,0x1f,0x7c,0x81,0x10,0x0,0x0,0x0,0x0,0x20,0x6c,0x72, + 0x10,0x0,0x0,0x0,0x0,0x21,0x5c,0x63,0x10,0x0,0x0,0x0,0x0,0x22,0x4c,0x54, + 0x10,0x0,0x0,0x0,0x0,0x23,0x3c,0x45,0x10,0x0,0x0,0x0,0x0,0x24,0x2c,0x36, + 0x10,0x0,0x0,0x0,0x0,0x25,0x1c,0x27,0x10,0x0,0x0,0x0,0x0,0x26,0xc,0x18, + 0x10,0x0,0x0,0x0,0x0,0x27,0x5,0x43,0x90,0x0,0x0,0x0,0x0,0x27,0xf5,0x34, + 0x90,0x0,0x0,0x0,0x0,0x28,0xe5,0x25,0x90,0x0,0x0,0x0,0x0,0x29,0xd5,0x16, + 0x90,0x0,0x0,0x0,0x0,0x2a,0xc5,0x7,0x90,0x0,0x0,0x0,0x0,0x2b,0xb4,0xf8, + 0x90,0x0,0x0,0x0,0x0,0x2c,0xa4,0xe9,0x90,0x0,0x0,0x0,0x0,0x2d,0x94,0xda, + 0x90,0x0,0x0,0x0,0x0,0x2e,0x84,0xcb,0x90,0x0,0x0,0x0,0x0,0x2f,0x74,0xbc, + 0x90,0x0,0x0,0x0,0x0,0x30,0x64,0xad,0x90,0x0,0x0,0x0,0x0,0x31,0x5d,0xd9, + 0x10,0x0,0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d,0xbb, + 0x10,0x0,0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d,0x9d, + 0x10,0x0,0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd,0x7f, + 0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd,0x61, + 0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd,0x43, + 0x10,0x0,0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f, + 0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86,0x41, + 0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66,0x23, + 0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46,0x5, + 0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25,0xe7, + 0x90,0x0,0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5,0xc9, + 0x90,0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee,0xe6, + 0x10,0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce,0xc8, + 0x10,0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae,0xaa, + 0x10,0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c, + 0x10,0x0,0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e, + 0x10,0x0,0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57,0x8a, + 0x90,0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37,0x6c, + 0x90,0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17,0x4e, + 0x90,0x0,0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7,0x30, + 0x90,0x0,0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7,0x12, + 0x90,0x0,0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4, + 0x90,0x0,0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0,0x11, + 0x10,0x0,0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3, + 0x10,0x0,0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f,0xd5, + 0x10,0x0,0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f,0xb7, + 0x10,0x0,0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f,0x99, + 0x10,0x0,0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8,0xb5, + 0x90,0x0,0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8,0x97, + 0x90,0x0,0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8,0x79, + 0x90,0x0,0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b, + 0x90,0x0,0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88,0x3d, + 0x90,0x0,0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68,0x1f, + 0x90,0x0,0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51,0x3c, + 0x10,0x0,0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31,0x1e, + 0x10,0x0,0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11,0x0, + 0x10,0x0,0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0,0xe2, + 0x10,0x0,0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0,0xc4, + 0x10,0x0,0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6, + 0x10,0x0,0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99,0xc2, + 0x90,0x0,0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79,0xa4, + 0x90,0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x4,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x3,0x1,0x2,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x7,0x8,0x6,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9, + 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9, + 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9, + 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9, + 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9, + 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9, + 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9, + 0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0x9,0xa,0xff,0xff,0xfc, + 0x8c,0x0,0x0,0x0,0x0,0xe,0x10,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x9,0x0, + 0x0,0x1c,0x20,0x1,0xd,0x0,0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x1c,0x20,0x1, + 0x12,0x0,0x0,0xe,0x10,0x0,0x17,0x0,0x0,0x1c,0x20,0x1,0x12,0x0,0x0,0xe, + 0x10,0x0,0x17,0x0,0x0,0x1c,0x20,0x1,0x12,0x0,0x0,0xe,0x10,0x0,0x17,0x4c, + 0x4d,0x54,0x0,0x57,0x45,0x53,0x54,0x0,0x57,0x45,0x54,0x0,0x57,0x45,0x4d,0x54, + 0x0,0x43,0x45,0x53,0x54,0x0,0x43,0x45,0x54,0x0,0x0,0x0,0x1,0x0,0x0,0x0, + 0x0,0x1,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, + 0xa,0x43,0x45,0x54,0x2d,0x31,0x43,0x45,0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e, + 0x30,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30,0x2f,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Simferopol + 0x0,0x0,0x5,0xd2, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0xa1, - 0x51,0xf3,0x50,0x0,0x1,0x0,0x0,0x3,0x30,0x0,0x0,0x0,0x0,0xe,0x10,0x0, - 0x4,0x4c,0x4d,0x54,0x0,0x57,0x41,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, - 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0xa1,0x51,0xf3,0x50,0x0,0x1,0x0,0x0,0x3,0x30,0x0, - 0x0,0x0,0x0,0xe,0x10,0x0,0x4,0x4c,0x4d,0x54,0x0,0x57,0x41,0x54,0x0,0x0, - 0x0,0x0,0x0,0xa,0x57,0x41,0x54,0x2d,0x31,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Djibouti - 0x0,0x0,0x1,0x1b, + 0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x4d,0x0,0x0,0x0,0xf,0x0,0x0,0x0,0x22,0x80,0x0,0x0,0x0,0xaa, + 0x19,0xa4,0x20,0xb5,0xa4,0x19,0x60,0xcb,0x4,0x8d,0xd0,0xcc,0xe7,0x4b,0x10,0xcd, + 0xa9,0x17,0x90,0xce,0xa2,0x43,0x10,0xcf,0x92,0x34,0x10,0xcf,0x9f,0x38,0xe0,0x15, + 0x27,0xa7,0xd0,0x16,0x18,0xdc,0x40,0x17,0x8,0xdb,0x50,0x17,0xfa,0xf,0xc0,0x18, + 0xea,0xe,0xd0,0x19,0xdb,0x43,0x40,0x1a,0xcc,0x93,0xd0,0x1b,0xbc,0xa0,0xf0,0x1c, + 0xac,0x91,0xf0,0x1d,0x9c,0x82,0xf0,0x1e,0x8c,0x73,0xf0,0x1f,0x7c,0x64,0xf0,0x20, + 0x6c,0x55,0xf0,0x21,0x5c,0x46,0xf0,0x22,0x4c,0x37,0xf0,0x23,0x3c,0x28,0xf0,0x24, + 0x2c,0x19,0xf0,0x25,0x1c,0xa,0xf0,0x25,0x9e,0x73,0x50,0x26,0x8d,0x2e,0xf0,0x29, + 0xd4,0xec,0x60,0x2a,0xc4,0xcf,0x50,0x2b,0xb4,0xce,0x60,0x2c,0xa4,0xb1,0x50,0x2d, + 0x94,0xb0,0x60,0x2d,0xc2,0xc6,0xd0,0x2e,0x84,0x85,0x40,0x2f,0x74,0x84,0x50,0x30, + 0x64,0x67,0x40,0x31,0x5d,0xa0,0xd0,0x32,0x72,0xa6,0x0,0x32,0xc9,0x7e,0xd0,0x33, + 0x3d,0xbb,0x10,0x34,0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36, + 0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a, + 0xbd,0x43,0x10,0x3b,0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e, + 0x86,0x41,0x90,0x3f,0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42, + 0x46,0x5,0x90,0x43,0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46, + 0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49, + 0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d, + 0x8e,0x8c,0x10,0x4e,0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51, + 0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53,0x37,0x5e,0x80,0x54,0x4c,0x1d,0x60,0x1, + 0x2,0x3,0x6,0x4,0x5,0x4,0x5,0x3,0x7,0x3,0x7,0x3,0x7,0x3,0x7,0x8, + 0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x3,0x2,0xa,0x2,0xa,0x2, + 0xa,0x7,0x3,0x7,0x3,0x9,0x8,0x3,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, + 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, + 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xd,0x8,0x0,0x0,0x1f,0xf8, + 0x0,0x0,0x0,0x0,0x1f,0xe0,0x0,0x4,0x0,0x0,0x1c,0x20,0x0,0x8,0x0,0x0, + 0x2a,0x30,0x0,0xc,0x0,0x0,0xe,0x10,0x0,0x10,0x0,0x0,0x1c,0x20,0x1,0x14, + 0x0,0x0,0x1c,0x20,0x1,0x14,0x0,0x0,0x38,0x40,0x1,0x19,0x0,0x0,0x2a,0x30, + 0x0,0xc,0x0,0x0,0x38,0x40,0x1,0x19,0x0,0x0,0x2a,0x30,0x1,0x1d,0x0,0x0, + 0x2a,0x30,0x1,0x1d,0x0,0x0,0x1c,0x20,0x0,0x8,0x0,0x0,0x38,0x40,0x0,0xc, + 0x0,0x0,0x2a,0x30,0x0,0xc,0x4c,0x4d,0x54,0x0,0x53,0x4d,0x54,0x0,0x45,0x45, + 0x54,0x0,0x4d,0x53,0x4b,0x0,0x43,0x45,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x4d, + 0x53,0x44,0x0,0x45,0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0, + 0x1,0x1,0x0,0x1,0x1,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x1,0x1,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf,0x0,0x0, + 0x0,0xf,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4e,0x0,0x0,0x0,0xf,0x0,0x0, + 0x0,0x22,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x56,0xb6, + 0xc4,0x8,0xff,0xff,0xff,0xff,0xaa,0x19,0xa4,0x20,0xff,0xff,0xff,0xff,0xb5,0xa4, + 0x19,0x60,0xff,0xff,0xff,0xff,0xcb,0x4,0x8d,0xd0,0xff,0xff,0xff,0xff,0xcc,0xe7, + 0x4b,0x10,0xff,0xff,0xff,0xff,0xcd,0xa9,0x17,0x90,0xff,0xff,0xff,0xff,0xce,0xa2, + 0x43,0x10,0xff,0xff,0xff,0xff,0xcf,0x92,0x34,0x10,0xff,0xff,0xff,0xff,0xcf,0x9f, + 0x38,0xe0,0x0,0x0,0x0,0x0,0x15,0x27,0xa7,0xd0,0x0,0x0,0x0,0x0,0x16,0x18, + 0xdc,0x40,0x0,0x0,0x0,0x0,0x17,0x8,0xdb,0x50,0x0,0x0,0x0,0x0,0x17,0xfa, + 0xf,0xc0,0x0,0x0,0x0,0x0,0x18,0xea,0xe,0xd0,0x0,0x0,0x0,0x0,0x19,0xdb, + 0x43,0x40,0x0,0x0,0x0,0x0,0x1a,0xcc,0x93,0xd0,0x0,0x0,0x0,0x0,0x1b,0xbc, + 0xa0,0xf0,0x0,0x0,0x0,0x0,0x1c,0xac,0x91,0xf0,0x0,0x0,0x0,0x0,0x1d,0x9c, + 0x82,0xf0,0x0,0x0,0x0,0x0,0x1e,0x8c,0x73,0xf0,0x0,0x0,0x0,0x0,0x1f,0x7c, + 0x64,0xf0,0x0,0x0,0x0,0x0,0x20,0x6c,0x55,0xf0,0x0,0x0,0x0,0x0,0x21,0x5c, + 0x46,0xf0,0x0,0x0,0x0,0x0,0x22,0x4c,0x37,0xf0,0x0,0x0,0x0,0x0,0x23,0x3c, + 0x28,0xf0,0x0,0x0,0x0,0x0,0x24,0x2c,0x19,0xf0,0x0,0x0,0x0,0x0,0x25,0x1c, + 0xa,0xf0,0x0,0x0,0x0,0x0,0x25,0x9e,0x73,0x50,0x0,0x0,0x0,0x0,0x26,0x8d, + 0x2e,0xf0,0x0,0x0,0x0,0x0,0x29,0xd4,0xec,0x60,0x0,0x0,0x0,0x0,0x2a,0xc4, + 0xcf,0x50,0x0,0x0,0x0,0x0,0x2b,0xb4,0xce,0x60,0x0,0x0,0x0,0x0,0x2c,0xa4, + 0xb1,0x50,0x0,0x0,0x0,0x0,0x2d,0x94,0xb0,0x60,0x0,0x0,0x0,0x0,0x2d,0xc2, + 0xc6,0xd0,0x0,0x0,0x0,0x0,0x2e,0x84,0x85,0x40,0x0,0x0,0x0,0x0,0x2f,0x74, + 0x84,0x50,0x0,0x0,0x0,0x0,0x30,0x64,0x67,0x40,0x0,0x0,0x0,0x0,0x31,0x5d, + 0xa0,0xd0,0x0,0x0,0x0,0x0,0x32,0x72,0xa6,0x0,0x0,0x0,0x0,0x0,0x32,0xc9, + 0x7e,0xd0,0x0,0x0,0x0,0x0,0x33,0x3d,0xbb,0x10,0x0,0x0,0x0,0x0,0x34,0x52, + 0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d,0x9d,0x10,0x0,0x0,0x0,0x0,0x36,0x32, + 0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd,0x7f,0x10,0x0,0x0,0x0,0x0,0x38,0x1b, + 0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd,0x61,0x10,0x0,0x0,0x0,0x0,0x39,0xfb, + 0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd,0x43,0x10,0x0,0x0,0x0,0x0,0x3b,0xdb, + 0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb, + 0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86,0x41,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b, + 0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66,0x23,0x90,0x0,0x0,0x0,0x0,0x41,0x84, + 0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46,0x5,0x90,0x0,0x0,0x0,0x0,0x43,0x64, + 0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25,0xe7,0x90,0x0,0x0,0x0,0x0,0x45,0x43, + 0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5,0xc9,0x90,0x0,0x0,0x0,0x0,0x47,0x23, + 0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee,0xe6,0x10,0x0,0x0,0x0,0x0,0x49,0x3, + 0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce,0xc8,0x10,0x0,0x0,0x0,0x0,0x4a,0xe3, + 0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae,0xaa,0x10,0x0,0x0,0x0,0x0,0x4c,0xcc, + 0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c,0x10,0x0,0x0,0x0,0x0,0x4e,0xac, + 0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e,0x10,0x0,0x0,0x0,0x0,0x50,0x8c, + 0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57,0x8a,0x90,0x0,0x0,0x0,0x0,0x52,0x6c, + 0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37,0x5e,0x80,0x0,0x0,0x0,0x0,0x54,0x4c, + 0x1d,0x60,0x0,0x1,0x2,0x3,0x6,0x4,0x5,0x4,0x5,0x3,0x7,0x3,0x7,0x3, + 0x7,0x3,0x7,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x3,0x2, + 0xa,0x2,0xa,0x2,0xa,0x7,0x3,0x7,0x3,0x9,0x8,0x3,0xb,0xc,0xb,0xc, + 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, + 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xd,0x8, + 0x0,0x0,0x1f,0xf8,0x0,0x0,0x0,0x0,0x1f,0xe0,0x0,0x4,0x0,0x0,0x1c,0x20, + 0x0,0x8,0x0,0x0,0x2a,0x30,0x0,0xc,0x0,0x0,0xe,0x10,0x0,0x10,0x0,0x0, + 0x1c,0x20,0x1,0x14,0x0,0x0,0x1c,0x20,0x1,0x14,0x0,0x0,0x38,0x40,0x1,0x19, + 0x0,0x0,0x2a,0x30,0x0,0xc,0x0,0x0,0x38,0x40,0x1,0x19,0x0,0x0,0x2a,0x30, + 0x1,0x1d,0x0,0x0,0x2a,0x30,0x1,0x1d,0x0,0x0,0x1c,0x20,0x0,0x8,0x0,0x0, + 0x38,0x40,0x0,0xc,0x0,0x0,0x2a,0x30,0x0,0xc,0x4c,0x4d,0x54,0x0,0x53,0x4d, + 0x54,0x0,0x45,0x45,0x54,0x0,0x4d,0x53,0x4b,0x0,0x43,0x45,0x54,0x0,0x43,0x45, + 0x53,0x54,0x0,0x4d,0x53,0x44,0x0,0x45,0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x0, + 0x1,0x1,0x0,0x0,0x1,0x1,0x0,0x1,0x1,0x0,0x1,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0xa,0x4d,0x53,0x4b,0x2d,0x33, + 0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Minsk + 0x0,0x0,0x5,0x5a, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x13,0x80,0x0,0x0,0x0,0xb1, - 0xee,0xda,0xfc,0xb4,0xc2,0x9a,0xd0,0xc7,0x91,0x47,0xd8,0xed,0x2f,0xe1,0xd4,0x0, - 0x1,0x2,0x3,0x1,0x0,0x0,0x22,0x84,0x0,0x0,0x0,0x0,0x2a,0x30,0x0,0x4, - 0x0,0x0,0x23,0x28,0x0,0x8,0x0,0x0,0x26,0xac,0x0,0xd,0x0,0x0,0x2a,0x30, - 0x0,0x4,0x4c,0x4d,0x54,0x0,0x45,0x41,0x54,0x0,0x42,0x45,0x41,0x54,0x0,0x42, - 0x45,0x41,0x55,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x13,0xf8,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xb1,0xee,0xda,0xfc,0xff,0xff,0xff,0xff,0xb4, - 0xc2,0x9a,0xd0,0xff,0xff,0xff,0xff,0xc7,0x91,0x47,0xd8,0xff,0xff,0xff,0xff,0xed, - 0x2f,0xe1,0xd4,0x0,0x1,0x2,0x3,0x1,0x0,0x0,0x22,0x84,0x0,0x0,0x0,0x0, - 0x2a,0x30,0x0,0x4,0x0,0x0,0x23,0x28,0x0,0x8,0x0,0x0,0x26,0xac,0x0,0xd, - 0x0,0x0,0x2a,0x30,0x0,0x4,0x4c,0x4d,0x54,0x0,0x45,0x41,0x54,0x0,0x42,0x45, - 0x41,0x54,0x0,0x42,0x45,0x41,0x55,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0xa,0x45,0x41,0x54,0x2d,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Africa/El_Aaiun - 0x0,0x0,0x5,0xc1, + 0x0,0x0,0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x46,0x0,0x0,0x0,0xd,0x0,0x0,0x0,0x26,0x80,0x0,0x0,0x0,0xaa, + 0x19,0xaa,0x38,0xb5,0xa4,0x19,0x60,0xca,0x5e,0x70,0xd0,0xcc,0xe7,0x4b,0x10,0xcd, + 0xa9,0x17,0x90,0xce,0xa2,0x43,0x10,0xcf,0x92,0x34,0x10,0xd0,0xa,0x2,0x60,0x15, + 0x27,0xa7,0xd0,0x16,0x18,0xdc,0x40,0x17,0x8,0xdb,0x50,0x17,0xfa,0xf,0xc0,0x18, + 0xea,0xe,0xd0,0x19,0xdb,0x43,0x40,0x1a,0xcc,0x93,0xd0,0x1b,0xbc,0xa0,0xf0,0x1c, + 0xac,0x91,0xf0,0x1d,0x9c,0x82,0xf0,0x1e,0x8c,0x73,0xf0,0x1f,0x7c,0x64,0xf0,0x20, + 0x6c,0x55,0xf0,0x21,0x5c,0x46,0xf0,0x22,0x4c,0x37,0xf0,0x23,0x3c,0x28,0xf0,0x24, + 0x2c,0x19,0xf0,0x25,0x1c,0xa,0xf0,0x25,0x9e,0x73,0x50,0x27,0xf5,0x18,0x70,0x28, + 0xe5,0x17,0x80,0x29,0xd5,0x8,0x80,0x2a,0xc4,0xf9,0x80,0x2b,0xb4,0xea,0x80,0x2c, + 0xa4,0xdb,0x80,0x2d,0x94,0xcc,0x80,0x2e,0x84,0xbd,0x80,0x2f,0x74,0xae,0x80,0x30, + 0x64,0x9f,0x80,0x31,0x5d,0xcb,0x0,0x32,0x72,0xa6,0x0,0x33,0x3d,0xad,0x0,0x34, + 0x52,0x88,0x0,0x35,0x1d,0x8f,0x0,0x36,0x32,0x6a,0x0,0x36,0xfd,0x71,0x0,0x38, + 0x1b,0x86,0x80,0x38,0xdd,0x53,0x0,0x39,0xfb,0x68,0x80,0x3a,0xbd,0x35,0x0,0x3b, + 0xdb,0x4a,0x80,0x3c,0xa6,0x51,0x80,0x3d,0xbb,0x2c,0x80,0x3e,0x86,0x33,0x80,0x3f, + 0x9b,0xe,0x80,0x40,0x66,0x15,0x80,0x41,0x84,0x2b,0x0,0x42,0x45,0xf7,0x80,0x43, + 0x64,0xd,0x0,0x44,0x25,0xd9,0x80,0x45,0x43,0xef,0x0,0x46,0x5,0xbb,0x80,0x47, + 0x23,0xd1,0x0,0x47,0xee,0xd8,0x0,0x49,0x3,0xb3,0x0,0x49,0xce,0xba,0x0,0x4a, + 0xe3,0x95,0x0,0x4b,0xae,0x9c,0x0,0x4c,0xcc,0xb1,0x80,0x4d,0x8e,0x7e,0x0,0x7f, + 0xff,0xff,0xff,0x1,0x2,0x3,0x6,0x4,0x5,0x4,0x5,0x3,0x7,0x3,0x7,0x3, + 0x7,0x3,0x7,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x3,0xa, + 0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa, + 0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa, + 0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xc,0xc,0x0,0x0,0x19,0xd8,0x0,0x0,0x0, + 0x0,0x19,0xc8,0x0,0x4,0x0,0x0,0x1c,0x20,0x0,0x8,0x0,0x0,0x2a,0x30,0x0, + 0xc,0x0,0x0,0xe,0x10,0x0,0x10,0x0,0x0,0x1c,0x20,0x1,0x14,0x0,0x0,0x1c, + 0x20,0x1,0x14,0x0,0x0,0x38,0x40,0x1,0x19,0x0,0x0,0x2a,0x30,0x0,0xc,0x0, + 0x0,0x38,0x40,0x1,0x19,0x0,0x0,0x2a,0x30,0x1,0x1d,0x0,0x0,0x1c,0x20,0x0, + 0x8,0x0,0x0,0x2a,0x30,0x0,0x22,0x4c,0x4d,0x54,0x0,0x4d,0x4d,0x54,0x0,0x45, + 0x45,0x54,0x0,0x4d,0x53,0x4b,0x0,0x43,0x45,0x54,0x0,0x43,0x45,0x53,0x54,0x0, + 0x4d,0x53,0x44,0x0,0x45,0x45,0x53,0x54,0x0,0x2b,0x30,0x33,0x0,0x0,0x0,0x0, + 0x0,0x1,0x1,0x0,0x0,0x1,0x1,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xd,0x0, + 0x0,0x0,0xd,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x47,0x0,0x0,0x0,0xd,0x0, + 0x0,0x0,0x26,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x56, + 0xb6,0xca,0x28,0xff,0xff,0xff,0xff,0xaa,0x19,0xaa,0x38,0xff,0xff,0xff,0xff,0xb5, + 0xa4,0x19,0x60,0xff,0xff,0xff,0xff,0xca,0x5e,0x70,0xd0,0xff,0xff,0xff,0xff,0xcc, + 0xe7,0x4b,0x10,0xff,0xff,0xff,0xff,0xcd,0xa9,0x17,0x90,0xff,0xff,0xff,0xff,0xce, + 0xa2,0x43,0x10,0xff,0xff,0xff,0xff,0xcf,0x92,0x34,0x10,0xff,0xff,0xff,0xff,0xd0, + 0xa,0x2,0x60,0x0,0x0,0x0,0x0,0x15,0x27,0xa7,0xd0,0x0,0x0,0x0,0x0,0x16, + 0x18,0xdc,0x40,0x0,0x0,0x0,0x0,0x17,0x8,0xdb,0x50,0x0,0x0,0x0,0x0,0x17, + 0xfa,0xf,0xc0,0x0,0x0,0x0,0x0,0x18,0xea,0xe,0xd0,0x0,0x0,0x0,0x0,0x19, + 0xdb,0x43,0x40,0x0,0x0,0x0,0x0,0x1a,0xcc,0x93,0xd0,0x0,0x0,0x0,0x0,0x1b, + 0xbc,0xa0,0xf0,0x0,0x0,0x0,0x0,0x1c,0xac,0x91,0xf0,0x0,0x0,0x0,0x0,0x1d, + 0x9c,0x82,0xf0,0x0,0x0,0x0,0x0,0x1e,0x8c,0x73,0xf0,0x0,0x0,0x0,0x0,0x1f, + 0x7c,0x64,0xf0,0x0,0x0,0x0,0x0,0x20,0x6c,0x55,0xf0,0x0,0x0,0x0,0x0,0x21, + 0x5c,0x46,0xf0,0x0,0x0,0x0,0x0,0x22,0x4c,0x37,0xf0,0x0,0x0,0x0,0x0,0x23, + 0x3c,0x28,0xf0,0x0,0x0,0x0,0x0,0x24,0x2c,0x19,0xf0,0x0,0x0,0x0,0x0,0x25, + 0x1c,0xa,0xf0,0x0,0x0,0x0,0x0,0x25,0x9e,0x73,0x50,0x0,0x0,0x0,0x0,0x27, + 0xf5,0x18,0x70,0x0,0x0,0x0,0x0,0x28,0xe5,0x17,0x80,0x0,0x0,0x0,0x0,0x29, + 0xd5,0x8,0x80,0x0,0x0,0x0,0x0,0x2a,0xc4,0xf9,0x80,0x0,0x0,0x0,0x0,0x2b, + 0xb4,0xea,0x80,0x0,0x0,0x0,0x0,0x2c,0xa4,0xdb,0x80,0x0,0x0,0x0,0x0,0x2d, + 0x94,0xcc,0x80,0x0,0x0,0x0,0x0,0x2e,0x84,0xbd,0x80,0x0,0x0,0x0,0x0,0x2f, + 0x74,0xae,0x80,0x0,0x0,0x0,0x0,0x30,0x64,0x9f,0x80,0x0,0x0,0x0,0x0,0x31, + 0x5d,0xcb,0x0,0x0,0x0,0x0,0x0,0x32,0x72,0xa6,0x0,0x0,0x0,0x0,0x0,0x33, + 0x3d,0xad,0x0,0x0,0x0,0x0,0x0,0x34,0x52,0x88,0x0,0x0,0x0,0x0,0x0,0x35, + 0x1d,0x8f,0x0,0x0,0x0,0x0,0x0,0x36,0x32,0x6a,0x0,0x0,0x0,0x0,0x0,0x36, + 0xfd,0x71,0x0,0x0,0x0,0x0,0x0,0x38,0x1b,0x86,0x80,0x0,0x0,0x0,0x0,0x38, + 0xdd,0x53,0x0,0x0,0x0,0x0,0x0,0x39,0xfb,0x68,0x80,0x0,0x0,0x0,0x0,0x3a, + 0xbd,0x35,0x0,0x0,0x0,0x0,0x0,0x3b,0xdb,0x4a,0x80,0x0,0x0,0x0,0x0,0x3c, + 0xa6,0x51,0x80,0x0,0x0,0x0,0x0,0x3d,0xbb,0x2c,0x80,0x0,0x0,0x0,0x0,0x3e, + 0x86,0x33,0x80,0x0,0x0,0x0,0x0,0x3f,0x9b,0xe,0x80,0x0,0x0,0x0,0x0,0x40, + 0x66,0x15,0x80,0x0,0x0,0x0,0x0,0x41,0x84,0x2b,0x0,0x0,0x0,0x0,0x0,0x42, + 0x45,0xf7,0x80,0x0,0x0,0x0,0x0,0x43,0x64,0xd,0x0,0x0,0x0,0x0,0x0,0x44, + 0x25,0xd9,0x80,0x0,0x0,0x0,0x0,0x45,0x43,0xef,0x0,0x0,0x0,0x0,0x0,0x46, + 0x5,0xbb,0x80,0x0,0x0,0x0,0x0,0x47,0x23,0xd1,0x0,0x0,0x0,0x0,0x0,0x47, + 0xee,0xd8,0x0,0x0,0x0,0x0,0x0,0x49,0x3,0xb3,0x0,0x0,0x0,0x0,0x0,0x49, + 0xce,0xba,0x0,0x0,0x0,0x0,0x0,0x4a,0xe3,0x95,0x0,0x0,0x0,0x0,0x0,0x4b, + 0xae,0x9c,0x0,0x0,0x0,0x0,0x0,0x4c,0xcc,0xb1,0x80,0x0,0x0,0x0,0x0,0x4d, + 0x8e,0x7e,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x2,0x3,0x6, + 0x4,0x5,0x4,0x5,0x3,0x7,0x3,0x7,0x3,0x7,0x3,0x7,0x8,0x9,0x8,0x9, + 0x8,0x9,0x8,0x9,0x8,0x9,0x8,0x3,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb, + 0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb, + 0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb, + 0xc,0xc,0x0,0x0,0x19,0xd8,0x0,0x0,0x0,0x0,0x19,0xc8,0x0,0x4,0x0,0x0, + 0x1c,0x20,0x0,0x8,0x0,0x0,0x2a,0x30,0x0,0xc,0x0,0x0,0xe,0x10,0x0,0x10, + 0x0,0x0,0x1c,0x20,0x1,0x14,0x0,0x0,0x1c,0x20,0x1,0x14,0x0,0x0,0x38,0x40, + 0x1,0x19,0x0,0x0,0x2a,0x30,0x0,0xc,0x0,0x0,0x38,0x40,0x1,0x19,0x0,0x0, + 0x2a,0x30,0x1,0x1d,0x0,0x0,0x1c,0x20,0x0,0x8,0x0,0x0,0x2a,0x30,0x0,0x22, + 0x4c,0x4d,0x54,0x0,0x4d,0x4d,0x54,0x0,0x45,0x45,0x54,0x0,0x4d,0x53,0x4b,0x0, + 0x43,0x45,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x4d,0x53,0x44,0x0,0x45,0x45,0x53, + 0x54,0x0,0x2b,0x30,0x33,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x1,0x1, + 0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xa,0x3c,0x2b,0x30,0x33,0x3e,0x2d,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Luxembourg + 0x0,0x0,0xb,0x9e, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x5a,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x11,0x80,0x0,0x0,0x0,0xbc, - 0x48,0xf0,0xe0,0xb,0xd1,0xb0,0x90,0xb,0xe8,0xc,0x0,0xc,0x61,0x47,0xf0,0xd, - 0xc9,0x3f,0x80,0xe,0x8e,0xf2,0x70,0xf,0xd3,0x51,0x80,0x10,0x27,0xa3,0x70,0x48, - 0x41,0xe6,0x80,0x48,0xbb,0x22,0x70,0x4a,0x23,0x1a,0x0,0x4a,0x8d,0xd5,0x70,0x4b, - 0xdc,0xc0,0x80,0x4c,0x5d,0xe5,0x70,0x4d,0x97,0xb8,0x80,0x4e,0x34,0x8c,0xf0,0x4f, - 0x9c,0xa0,0xa0,0x50,0x8,0xbb,0xa0,0x50,0x31,0x9a,0x20,0x50,0x67,0xa7,0xa0,0x51, - 0x7c,0x82,0xa0,0x51,0xd8,0xcb,0xa0,0x52,0x5,0x9e,0xa0,0x52,0x6c,0x73,0xa0,0x53, - 0x37,0x7a,0xa0,0x53,0xae,0x21,0xa0,0x53,0xdc,0x46,0x20,0x54,0x4c,0x55,0xa0,0x55, - 0x17,0x5c,0xa0,0x55,0x7c,0xe0,0x20,0x55,0xab,0x4,0xa0,0x56,0x2c,0x37,0xa0,0x56, - 0xf7,0x3e,0xa0,0x57,0x53,0x87,0xa0,0x57,0x81,0xac,0x20,0x58,0x15,0x54,0x20,0x58, - 0xd7,0x20,0xa0,0x59,0x20,0xf4,0xa0,0x59,0x58,0x53,0xa0,0x59,0xf5,0x36,0x20,0x5a, - 0xb7,0x2,0xa0,0x5a,0xf7,0x9c,0x20,0x5b,0x25,0xc0,0xa0,0x5b,0xd5,0x18,0x20,0x5c, - 0xa0,0x1f,0x20,0x5c,0xce,0x43,0xa0,0x5c,0xfc,0x68,0x20,0x5d,0xb4,0xfa,0x20,0x5e, - 0x80,0x1,0x20,0x5e,0x9b,0xb0,0xa0,0x5e,0xc9,0xd5,0x20,0x5f,0x94,0xdc,0x20,0x60, - 0x5f,0xe3,0x20,0x60,0x72,0x58,0x20,0x60,0xa0,0x7c,0xa0,0x61,0x7d,0xf8,0xa0,0x62, - 0x77,0x24,0x20,0x63,0x5d,0xda,0xa0,0x64,0x44,0x91,0x20,0x65,0x3d,0xbc,0xa0,0x66, - 0x1b,0x38,0xa0,0x67,0x1d,0x9e,0xa0,0x67,0xf1,0xe0,0x20,0x68,0xfd,0x80,0xa0,0x69, - 0xc8,0x87,0xa0,0x6a,0xdd,0x62,0xa0,0x6b,0xa8,0x69,0xa0,0x6c,0xc6,0x7f,0x20,0x6d, - 0x88,0x4b,0xa0,0x6e,0xa6,0x61,0x20,0x6f,0x68,0x2d,0xa0,0x70,0x86,0x43,0x20,0x71, - 0x51,0x4a,0x20,0x72,0x66,0x25,0x20,0x73,0x31,0x2c,0x20,0x74,0x46,0x7,0x20,0x75, - 0x11,0xe,0x20,0x76,0x2f,0x23,0xa0,0x76,0xf0,0xf0,0x20,0x78,0xf,0x5,0xa0,0x78, - 0xd0,0xd2,0x20,0x79,0xee,0xe7,0xa0,0x7a,0xb0,0xb4,0x20,0x7b,0xce,0xc9,0xa0,0x7c, - 0x99,0xd0,0xa0,0x7d,0xa5,0x71,0x20,0x7e,0x79,0xb2,0xa0,0x7f,0x72,0xde,0x20,0x7f, - 0x8e,0x9b,0xb0,0x0,0x1,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x3,0xff,0xff,0xf3, - 0xa0,0x0,0x0,0xff,0xff,0xf1,0xf0,0x0,0x4,0x0,0x0,0xe,0x10,0x1,0x8,0x0, - 0x0,0x0,0x0,0x0,0xd,0x4c,0x4d,0x54,0x0,0x57,0x41,0x54,0x0,0x57,0x45,0x53, - 0x54,0x0,0x57,0x45,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a, + 0x0,0x0,0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xb9,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x16,0x80,0x0,0x0,0x0,0x84, + 0xa2,0xad,0xbc,0x9b,0x1e,0x8c,0x60,0x9b,0xd5,0xda,0xf0,0x9c,0xea,0xa7,0xe0,0x9d, + 0xa4,0x99,0x70,0x9e,0xb9,0x90,0x90,0x9f,0x84,0x97,0x90,0x9f,0xe0,0xc4,0x70,0xa0, + 0x60,0xa5,0xf0,0xa1,0x7e,0xe5,0xa0,0xa2,0x2e,0x12,0xf0,0xa3,0x7a,0x69,0x10,0xa4, + 0x35,0x81,0xf0,0xa5,0x5e,0x3f,0x90,0xa6,0x25,0x35,0xf0,0xa7,0x27,0xaa,0x0,0xa8, + 0x2a,0x1,0xf0,0xa9,0x7,0x9a,0x10,0xa9,0xee,0x34,0x70,0xaa,0xe7,0x6e,0x0,0xab, + 0xd8,0xa2,0x70,0xac,0xc7,0x50,0x0,0xad,0xc9,0xa7,0xf0,0xae,0xa7,0x32,0x0,0xaf, + 0xa0,0x4f,0x70,0xb0,0x87,0x14,0x0,0xb1,0x89,0x6b,0xf0,0xb2,0x70,0x30,0x80,0xb3, + 0x72,0x88,0x70,0xb4,0x50,0x2e,0xa0,0xb5,0x49,0x5a,0x20,0xb6,0x30,0x10,0xa0,0xb7, + 0x32,0x76,0xa0,0xb8,0xf,0xf2,0xa0,0xb8,0xff,0xe3,0xa0,0xb9,0xef,0xd4,0xa0,0xba, + 0xd6,0x8b,0x20,0xbb,0xd8,0xf1,0x20,0xbc,0xc8,0xe2,0x20,0xbd,0xb8,0xd3,0x20,0xbe, + 0x9f,0x89,0xa0,0xbf,0x98,0xb5,0x20,0xc0,0x9b,0x1b,0x20,0xc1,0x78,0x97,0x20,0xc2, + 0x68,0x88,0x20,0xc3,0x58,0x79,0x20,0xc4,0x3f,0x2f,0xa0,0xc5,0x38,0x5b,0x20,0xc6, + 0x3a,0xc1,0x20,0xc7,0x58,0xd6,0xa0,0xc7,0xda,0x9,0xa0,0xc8,0x42,0x30,0x20,0xcc, + 0xe7,0x4b,0x10,0xcd,0xa9,0x17,0x90,0xce,0xa2,0x43,0x10,0xcf,0x92,0x34,0x10,0xd0, + 0x6f,0xb0,0x10,0xd1,0x72,0x16,0x10,0xd2,0x4e,0x40,0x90,0xd3,0x91,0x40,0x10,0xd4, + 0x4b,0x23,0x90,0xd,0x2a,0xfd,0x70,0xd,0xa4,0x63,0x90,0xe,0x8b,0x1a,0x10,0xf, + 0x84,0x45,0x90,0x10,0x74,0x36,0x90,0x11,0x64,0x27,0x90,0x12,0x54,0x18,0x90,0x13, + 0x4d,0x44,0x10,0x14,0x33,0xfa,0x90,0x15,0x23,0xeb,0x90,0x16,0x13,0xdc,0x90,0x17, + 0x3,0xcd,0x90,0x17,0xf3,0xbe,0x90,0x18,0xe3,0xaf,0x90,0x19,0xd3,0xa0,0x90,0x1a, + 0xc3,0x91,0x90,0x1b,0xbc,0xbd,0x10,0x1c,0xac,0xae,0x10,0x1d,0x9c,0x9f,0x10,0x1e, + 0x8c,0x90,0x10,0x1f,0x7c,0x81,0x10,0x20,0x6c,0x72,0x10,0x21,0x5c,0x63,0x10,0x22, + 0x4c,0x54,0x10,0x23,0x3c,0x45,0x10,0x24,0x2c,0x36,0x10,0x25,0x1c,0x27,0x10,0x26, + 0xc,0x18,0x10,0x27,0x5,0x43,0x90,0x27,0xf5,0x34,0x90,0x28,0xe5,0x25,0x90,0x29, + 0xd5,0x16,0x90,0x2a,0xc5,0x7,0x90,0x2b,0xb4,0xf8,0x90,0x2c,0xa4,0xe9,0x90,0x2d, + 0x94,0xda,0x90,0x2e,0x84,0xcb,0x90,0x2f,0x74,0xbc,0x90,0x30,0x64,0xad,0x90,0x31, + 0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34,0x52,0x96,0x10,0x35, + 0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x38, + 0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b,0xdb,0x58,0x90,0x3c, + 0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f,0x9b,0x1c,0x90,0x40, + 0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43,0x64,0x1b,0x10,0x44, + 0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47, + 0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b, + 0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e,0xac,0xa1,0x90,0x4f, + 0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53, + 0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56,0x2c,0x29,0x90,0x56, + 0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59,0xf5,0x28,0x10,0x5a, + 0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d,0xb4,0xec,0x10,0x5e, + 0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61,0x7d,0xea,0x90,0x62, + 0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65,0x3d,0xae,0x90,0x66, + 0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68,0xfd,0x72,0x90,0x69, + 0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c,0xc6,0x71,0x10,0x6d, + 0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70,0x86,0x35,0x10,0x71, + 0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74,0x45,0xf9,0x10,0x75, + 0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78, + 0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c, + 0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x0, + 0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x7,0x8,0x7, + 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, + 0x8,0x7,0x8,0xb,0x9,0xa,0x9,0xa,0x2,0x3,0x4,0x3,0x4,0x2,0xc,0xd, + 0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd, + 0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd, + 0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd, + 0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd, + 0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd, + 0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd, + 0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd, + 0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0x0,0x0,0x5,0xc4,0x0,0x0,0x0,0x0, + 0x1c,0x20,0x1,0x4,0x0,0x0,0xe,0x10,0x0,0x9,0x0,0x0,0x1c,0x20,0x1,0x4, + 0x0,0x0,0xe,0x10,0x0,0x9,0x0,0x0,0xe,0x10,0x1,0xd,0x0,0x0,0x0,0x0, + 0x0,0x12,0x0,0x0,0x0,0x0,0x0,0x12,0x0,0x0,0xe,0x10,0x1,0xd,0x0,0x0, + 0xe,0x10,0x0,0x12,0x0,0x0,0x1c,0x20,0x1,0xd,0x0,0x0,0x1c,0x20,0x1,0xd, + 0x0,0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe,0x10,0x0,0x9,0x4c,0x4d,0x54,0x0, + 0x43,0x45,0x53,0x54,0x0,0x43,0x45,0x54,0x0,0x57,0x45,0x53,0x54,0x0,0x57,0x45, + 0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x1,0x1,0x1,0x1,0x0,0x1,0x1, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x54,0x5a, 0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x5a,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x11,0xf8,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xff,0xff,0xff,0xff,0xbc,0x48,0xf0,0xe0,0x0,0x0,0x0,0x0,0xb,0xd1, - 0xb0,0x90,0x0,0x0,0x0,0x0,0xb,0xe8,0xc,0x0,0x0,0x0,0x0,0x0,0xc,0x61, - 0x47,0xf0,0x0,0x0,0x0,0x0,0xd,0xc9,0x3f,0x80,0x0,0x0,0x0,0x0,0xe,0x8e, - 0xf2,0x70,0x0,0x0,0x0,0x0,0xf,0xd3,0x51,0x80,0x0,0x0,0x0,0x0,0x10,0x27, - 0xa3,0x70,0x0,0x0,0x0,0x0,0x48,0x41,0xe6,0x80,0x0,0x0,0x0,0x0,0x48,0xbb, - 0x22,0x70,0x0,0x0,0x0,0x0,0x4a,0x23,0x1a,0x0,0x0,0x0,0x0,0x0,0x4a,0x8d, - 0xd5,0x70,0x0,0x0,0x0,0x0,0x4b,0xdc,0xc0,0x80,0x0,0x0,0x0,0x0,0x4c,0x5d, - 0xe5,0x70,0x0,0x0,0x0,0x0,0x4d,0x97,0xb8,0x80,0x0,0x0,0x0,0x0,0x4e,0x34, - 0x8c,0xf0,0x0,0x0,0x0,0x0,0x4f,0x9c,0xa0,0xa0,0x0,0x0,0x0,0x0,0x50,0x8, - 0xbb,0xa0,0x0,0x0,0x0,0x0,0x50,0x31,0x9a,0x20,0x0,0x0,0x0,0x0,0x50,0x67, - 0xa7,0xa0,0x0,0x0,0x0,0x0,0x51,0x7c,0x82,0xa0,0x0,0x0,0x0,0x0,0x51,0xd8, - 0xcb,0xa0,0x0,0x0,0x0,0x0,0x52,0x5,0x9e,0xa0,0x0,0x0,0x0,0x0,0x52,0x6c, - 0x73,0xa0,0x0,0x0,0x0,0x0,0x53,0x37,0x7a,0xa0,0x0,0x0,0x0,0x0,0x53,0xae, - 0x21,0xa0,0x0,0x0,0x0,0x0,0x53,0xdc,0x46,0x20,0x0,0x0,0x0,0x0,0x54,0x4c, - 0x55,0xa0,0x0,0x0,0x0,0x0,0x55,0x17,0x5c,0xa0,0x0,0x0,0x0,0x0,0x55,0x7c, - 0xe0,0x20,0x0,0x0,0x0,0x0,0x55,0xab,0x4,0xa0,0x0,0x0,0x0,0x0,0x56,0x2c, - 0x37,0xa0,0x0,0x0,0x0,0x0,0x56,0xf7,0x3e,0xa0,0x0,0x0,0x0,0x0,0x57,0x53, - 0x87,0xa0,0x0,0x0,0x0,0x0,0x57,0x81,0xac,0x20,0x0,0x0,0x0,0x0,0x58,0x15, - 0x54,0x20,0x0,0x0,0x0,0x0,0x58,0xd7,0x20,0xa0,0x0,0x0,0x0,0x0,0x59,0x20, - 0xf4,0xa0,0x0,0x0,0x0,0x0,0x59,0x58,0x53,0xa0,0x0,0x0,0x0,0x0,0x59,0xf5, - 0x36,0x20,0x0,0x0,0x0,0x0,0x5a,0xb7,0x2,0xa0,0x0,0x0,0x0,0x0,0x5a,0xf7, - 0x9c,0x20,0x0,0x0,0x0,0x0,0x5b,0x25,0xc0,0xa0,0x0,0x0,0x0,0x0,0x5b,0xd5, - 0x18,0x20,0x0,0x0,0x0,0x0,0x5c,0xa0,0x1f,0x20,0x0,0x0,0x0,0x0,0x5c,0xce, - 0x43,0xa0,0x0,0x0,0x0,0x0,0x5c,0xfc,0x68,0x20,0x0,0x0,0x0,0x0,0x5d,0xb4, - 0xfa,0x20,0x0,0x0,0x0,0x0,0x5e,0x80,0x1,0x20,0x0,0x0,0x0,0x0,0x5e,0x9b, - 0xb0,0xa0,0x0,0x0,0x0,0x0,0x5e,0xc9,0xd5,0x20,0x0,0x0,0x0,0x0,0x5f,0x94, - 0xdc,0x20,0x0,0x0,0x0,0x0,0x60,0x5f,0xe3,0x20,0x0,0x0,0x0,0x0,0x60,0x72, - 0x58,0x20,0x0,0x0,0x0,0x0,0x60,0xa0,0x7c,0xa0,0x0,0x0,0x0,0x0,0x61,0x7d, - 0xf8,0xa0,0x0,0x0,0x0,0x0,0x62,0x77,0x24,0x20,0x0,0x0,0x0,0x0,0x63,0x5d, - 0xda,0xa0,0x0,0x0,0x0,0x0,0x64,0x44,0x91,0x20,0x0,0x0,0x0,0x0,0x65,0x3d, - 0xbc,0xa0,0x0,0x0,0x0,0x0,0x66,0x1b,0x38,0xa0,0x0,0x0,0x0,0x0,0x67,0x1d, - 0x9e,0xa0,0x0,0x0,0x0,0x0,0x67,0xf1,0xe0,0x20,0x0,0x0,0x0,0x0,0x68,0xfd, - 0x80,0xa0,0x0,0x0,0x0,0x0,0x69,0xc8,0x87,0xa0,0x0,0x0,0x0,0x0,0x6a,0xdd, - 0x62,0xa0,0x0,0x0,0x0,0x0,0x6b,0xa8,0x69,0xa0,0x0,0x0,0x0,0x0,0x6c,0xc6, - 0x7f,0x20,0x0,0x0,0x0,0x0,0x6d,0x88,0x4b,0xa0,0x0,0x0,0x0,0x0,0x6e,0xa6, - 0x61,0x20,0x0,0x0,0x0,0x0,0x6f,0x68,0x2d,0xa0,0x0,0x0,0x0,0x0,0x70,0x86, - 0x43,0x20,0x0,0x0,0x0,0x0,0x71,0x51,0x4a,0x20,0x0,0x0,0x0,0x0,0x72,0x66, - 0x25,0x20,0x0,0x0,0x0,0x0,0x73,0x31,0x2c,0x20,0x0,0x0,0x0,0x0,0x74,0x46, - 0x7,0x20,0x0,0x0,0x0,0x0,0x75,0x11,0xe,0x20,0x0,0x0,0x0,0x0,0x76,0x2f, - 0x23,0xa0,0x0,0x0,0x0,0x0,0x76,0xf0,0xf0,0x20,0x0,0x0,0x0,0x0,0x78,0xf, - 0x5,0xa0,0x0,0x0,0x0,0x0,0x78,0xd0,0xd2,0x20,0x0,0x0,0x0,0x0,0x79,0xee, - 0xe7,0xa0,0x0,0x0,0x0,0x0,0x7a,0xb0,0xb4,0x20,0x0,0x0,0x0,0x0,0x7b,0xce, - 0xc9,0xa0,0x0,0x0,0x0,0x0,0x7c,0x99,0xd0,0xa0,0x0,0x0,0x0,0x0,0x7d,0xa5, - 0x71,0x20,0x0,0x0,0x0,0x0,0x7e,0x79,0xb2,0xa0,0x0,0x0,0x0,0x0,0x7f,0x72, - 0xde,0x20,0x0,0x0,0x0,0x0,0x7f,0x8e,0x9b,0xb0,0x0,0x1,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x3,0xff,0xff,0xf3,0xa0,0x0,0x0,0xff,0xff,0xf1,0xf0,0x0,0x4, - 0x0,0x0,0xe,0x10,0x1,0x8,0x0,0x0,0x0,0x0,0x0,0xd,0x4c,0x4d,0x54,0x0, - 0x57,0x41,0x54,0x0,0x57,0x45,0x53,0x54,0x0,0x57,0x45,0x54,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0xa,0x57,0x45,0x54,0x30,0x57,0x45,0x53,0x54,0x2c,0x4d, - 0x33,0x2e,0x35,0x2e,0x30,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30,0x2f,0x33,0xa, - - // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Niamey - 0x0,0x0,0x0,0xab, + 0x0,0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xb9,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x16,0xf8,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xff,0xff,0xff,0xff,0x84,0xa2,0xad,0xbc,0xff,0xff,0xff,0xff,0x9b,0x1e, + 0x8c,0x60,0xff,0xff,0xff,0xff,0x9b,0xd5,0xda,0xf0,0xff,0xff,0xff,0xff,0x9c,0xea, + 0xa7,0xe0,0xff,0xff,0xff,0xff,0x9d,0xa4,0x99,0x70,0xff,0xff,0xff,0xff,0x9e,0xb9, + 0x90,0x90,0xff,0xff,0xff,0xff,0x9f,0x84,0x97,0x90,0xff,0xff,0xff,0xff,0x9f,0xe0, + 0xc4,0x70,0xff,0xff,0xff,0xff,0xa0,0x60,0xa5,0xf0,0xff,0xff,0xff,0xff,0xa1,0x7e, + 0xe5,0xa0,0xff,0xff,0xff,0xff,0xa2,0x2e,0x12,0xf0,0xff,0xff,0xff,0xff,0xa3,0x7a, + 0x69,0x10,0xff,0xff,0xff,0xff,0xa4,0x35,0x81,0xf0,0xff,0xff,0xff,0xff,0xa5,0x5e, + 0x3f,0x90,0xff,0xff,0xff,0xff,0xa6,0x25,0x35,0xf0,0xff,0xff,0xff,0xff,0xa7,0x27, + 0xaa,0x0,0xff,0xff,0xff,0xff,0xa8,0x2a,0x1,0xf0,0xff,0xff,0xff,0xff,0xa9,0x7, + 0x9a,0x10,0xff,0xff,0xff,0xff,0xa9,0xee,0x34,0x70,0xff,0xff,0xff,0xff,0xaa,0xe7, + 0x6e,0x0,0xff,0xff,0xff,0xff,0xab,0xd8,0xa2,0x70,0xff,0xff,0xff,0xff,0xac,0xc7, + 0x50,0x0,0xff,0xff,0xff,0xff,0xad,0xc9,0xa7,0xf0,0xff,0xff,0xff,0xff,0xae,0xa7, + 0x32,0x0,0xff,0xff,0xff,0xff,0xaf,0xa0,0x4f,0x70,0xff,0xff,0xff,0xff,0xb0,0x87, + 0x14,0x0,0xff,0xff,0xff,0xff,0xb1,0x89,0x6b,0xf0,0xff,0xff,0xff,0xff,0xb2,0x70, + 0x30,0x80,0xff,0xff,0xff,0xff,0xb3,0x72,0x88,0x70,0xff,0xff,0xff,0xff,0xb4,0x50, + 0x2e,0xa0,0xff,0xff,0xff,0xff,0xb5,0x49,0x5a,0x20,0xff,0xff,0xff,0xff,0xb6,0x30, + 0x10,0xa0,0xff,0xff,0xff,0xff,0xb7,0x32,0x76,0xa0,0xff,0xff,0xff,0xff,0xb8,0xf, + 0xf2,0xa0,0xff,0xff,0xff,0xff,0xb8,0xff,0xe3,0xa0,0xff,0xff,0xff,0xff,0xb9,0xef, + 0xd4,0xa0,0xff,0xff,0xff,0xff,0xba,0xd6,0x8b,0x20,0xff,0xff,0xff,0xff,0xbb,0xd8, + 0xf1,0x20,0xff,0xff,0xff,0xff,0xbc,0xc8,0xe2,0x20,0xff,0xff,0xff,0xff,0xbd,0xb8, + 0xd3,0x20,0xff,0xff,0xff,0xff,0xbe,0x9f,0x89,0xa0,0xff,0xff,0xff,0xff,0xbf,0x98, + 0xb5,0x20,0xff,0xff,0xff,0xff,0xc0,0x9b,0x1b,0x20,0xff,0xff,0xff,0xff,0xc1,0x78, + 0x97,0x20,0xff,0xff,0xff,0xff,0xc2,0x68,0x88,0x20,0xff,0xff,0xff,0xff,0xc3,0x58, + 0x79,0x20,0xff,0xff,0xff,0xff,0xc4,0x3f,0x2f,0xa0,0xff,0xff,0xff,0xff,0xc5,0x38, + 0x5b,0x20,0xff,0xff,0xff,0xff,0xc6,0x3a,0xc1,0x20,0xff,0xff,0xff,0xff,0xc7,0x58, + 0xd6,0xa0,0xff,0xff,0xff,0xff,0xc7,0xda,0x9,0xa0,0xff,0xff,0xff,0xff,0xc8,0x42, + 0x30,0x20,0xff,0xff,0xff,0xff,0xcc,0xe7,0x4b,0x10,0xff,0xff,0xff,0xff,0xcd,0xa9, + 0x17,0x90,0xff,0xff,0xff,0xff,0xce,0xa2,0x43,0x10,0xff,0xff,0xff,0xff,0xcf,0x92, + 0x34,0x10,0xff,0xff,0xff,0xff,0xd0,0x6f,0xb0,0x10,0xff,0xff,0xff,0xff,0xd1,0x72, + 0x16,0x10,0xff,0xff,0xff,0xff,0xd2,0x4e,0x40,0x90,0xff,0xff,0xff,0xff,0xd3,0x91, + 0x40,0x10,0xff,0xff,0xff,0xff,0xd4,0x4b,0x23,0x90,0x0,0x0,0x0,0x0,0xd,0x2a, + 0xfd,0x70,0x0,0x0,0x0,0x0,0xd,0xa4,0x63,0x90,0x0,0x0,0x0,0x0,0xe,0x8b, + 0x1a,0x10,0x0,0x0,0x0,0x0,0xf,0x84,0x45,0x90,0x0,0x0,0x0,0x0,0x10,0x74, + 0x36,0x90,0x0,0x0,0x0,0x0,0x11,0x64,0x27,0x90,0x0,0x0,0x0,0x0,0x12,0x54, + 0x18,0x90,0x0,0x0,0x0,0x0,0x13,0x4d,0x44,0x10,0x0,0x0,0x0,0x0,0x14,0x33, + 0xfa,0x90,0x0,0x0,0x0,0x0,0x15,0x23,0xeb,0x90,0x0,0x0,0x0,0x0,0x16,0x13, + 0xdc,0x90,0x0,0x0,0x0,0x0,0x17,0x3,0xcd,0x90,0x0,0x0,0x0,0x0,0x17,0xf3, + 0xbe,0x90,0x0,0x0,0x0,0x0,0x18,0xe3,0xaf,0x90,0x0,0x0,0x0,0x0,0x19,0xd3, + 0xa0,0x90,0x0,0x0,0x0,0x0,0x1a,0xc3,0x91,0x90,0x0,0x0,0x0,0x0,0x1b,0xbc, + 0xbd,0x10,0x0,0x0,0x0,0x0,0x1c,0xac,0xae,0x10,0x0,0x0,0x0,0x0,0x1d,0x9c, + 0x9f,0x10,0x0,0x0,0x0,0x0,0x1e,0x8c,0x90,0x10,0x0,0x0,0x0,0x0,0x1f,0x7c, + 0x81,0x10,0x0,0x0,0x0,0x0,0x20,0x6c,0x72,0x10,0x0,0x0,0x0,0x0,0x21,0x5c, + 0x63,0x10,0x0,0x0,0x0,0x0,0x22,0x4c,0x54,0x10,0x0,0x0,0x0,0x0,0x23,0x3c, + 0x45,0x10,0x0,0x0,0x0,0x0,0x24,0x2c,0x36,0x10,0x0,0x0,0x0,0x0,0x25,0x1c, + 0x27,0x10,0x0,0x0,0x0,0x0,0x26,0xc,0x18,0x10,0x0,0x0,0x0,0x0,0x27,0x5, + 0x43,0x90,0x0,0x0,0x0,0x0,0x27,0xf5,0x34,0x90,0x0,0x0,0x0,0x0,0x28,0xe5, + 0x25,0x90,0x0,0x0,0x0,0x0,0x29,0xd5,0x16,0x90,0x0,0x0,0x0,0x0,0x2a,0xc5, + 0x7,0x90,0x0,0x0,0x0,0x0,0x2b,0xb4,0xf8,0x90,0x0,0x0,0x0,0x0,0x2c,0xa4, + 0xe9,0x90,0x0,0x0,0x0,0x0,0x2d,0x94,0xda,0x90,0x0,0x0,0x0,0x0,0x2e,0x84, + 0xcb,0x90,0x0,0x0,0x0,0x0,0x2f,0x74,0xbc,0x90,0x0,0x0,0x0,0x0,0x30,0x64, + 0xad,0x90,0x0,0x0,0x0,0x0,0x31,0x5d,0xd9,0x10,0x0,0x0,0x0,0x0,0x32,0x72, + 0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d,0xbb,0x10,0x0,0x0,0x0,0x0,0x34,0x52, + 0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d,0x9d,0x10,0x0,0x0,0x0,0x0,0x36,0x32, + 0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd,0x7f,0x10,0x0,0x0,0x0,0x0,0x38,0x1b, + 0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd,0x61,0x10,0x0,0x0,0x0,0x0,0x39,0xfb, + 0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd,0x43,0x10,0x0,0x0,0x0,0x0,0x3b,0xdb, + 0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb, + 0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86,0x41,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b, + 0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66,0x23,0x90,0x0,0x0,0x0,0x0,0x41,0x84, + 0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46,0x5,0x90,0x0,0x0,0x0,0x0,0x43,0x64, + 0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25,0xe7,0x90,0x0,0x0,0x0,0x0,0x45,0x43, + 0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5,0xc9,0x90,0x0,0x0,0x0,0x0,0x47,0x23, + 0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee,0xe6,0x10,0x0,0x0,0x0,0x0,0x49,0x3, + 0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce,0xc8,0x10,0x0,0x0,0x0,0x0,0x4a,0xe3, + 0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae,0xaa,0x10,0x0,0x0,0x0,0x0,0x4c,0xcc, + 0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c,0x10,0x0,0x0,0x0,0x0,0x4e,0xac, + 0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e,0x10,0x0,0x0,0x0,0x0,0x50,0x8c, + 0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57,0x8a,0x90,0x0,0x0,0x0,0x0,0x52,0x6c, + 0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37,0x6c,0x90,0x0,0x0,0x0,0x0,0x54,0x4c, + 0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17,0x4e,0x90,0x0,0x0,0x0,0x0,0x56,0x2c, + 0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7,0x30,0x90,0x0,0x0,0x0,0x0,0x58,0x15, + 0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7,0x12,0x90,0x0,0x0,0x0,0x0,0x59,0xf5, + 0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4,0x90,0x0,0x0,0x0,0x0,0x5b,0xd5, + 0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0,0x11,0x10,0x0,0x0,0x0,0x0,0x5d,0xb4, + 0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3,0x10,0x0,0x0,0x0,0x0,0x5f,0x94, + 0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f,0xd5,0x10,0x0,0x0,0x0,0x0,0x61,0x7d, + 0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f,0xb7,0x10,0x0,0x0,0x0,0x0,0x63,0x5d, + 0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f,0x99,0x10,0x0,0x0,0x0,0x0,0x65,0x3d, + 0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8,0xb5,0x90,0x0,0x0,0x0,0x0,0x67,0x1d, + 0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8,0x97,0x90,0x0,0x0,0x0,0x0,0x68,0xfd, + 0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8,0x79,0x90,0x0,0x0,0x0,0x0,0x6a,0xdd, + 0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b,0x90,0x0,0x0,0x0,0x0,0x6c,0xc6, + 0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88,0x3d,0x90,0x0,0x0,0x0,0x0,0x6e,0xa6, + 0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68,0x1f,0x90,0x0,0x0,0x0,0x0,0x70,0x86, + 0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51,0x3c,0x10,0x0,0x0,0x0,0x0,0x72,0x66, + 0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31,0x1e,0x10,0x0,0x0,0x0,0x0,0x74,0x45, + 0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11,0x0,0x10,0x0,0x0,0x0,0x0,0x76,0x2f, + 0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0,0xe2,0x10,0x0,0x0,0x0,0x0,0x78,0xe, + 0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0,0xc4,0x10,0x0,0x0,0x0,0x0,0x79,0xee, + 0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6,0x10,0x0,0x0,0x0,0x0,0x7b,0xce, + 0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99,0xc2,0x90,0x0,0x0,0x0,0x0,0x7d,0xae, + 0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79,0xa4,0x90,0x0,0x0,0x0,0x0,0x7f,0x8e, + 0x7f,0x90,0x0,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8, + 0x7,0x8,0x7,0x8,0x7,0x8,0xb,0x9,0xa,0x9,0xa,0x2,0x3,0x4,0x3,0x4, + 0x2,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc, + 0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc, + 0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc, + 0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc, + 0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc, + 0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc, + 0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc, + 0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0xc,0xd,0x0,0x0,0x5,0xc4,0x0, + 0x0,0x0,0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe,0x10,0x0,0x9,0x0,0x0,0x1c, + 0x20,0x1,0x4,0x0,0x0,0xe,0x10,0x0,0x9,0x0,0x0,0xe,0x10,0x1,0xd,0x0, + 0x0,0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x0,0x0,0x12,0x0,0x0,0xe,0x10,0x1, + 0xd,0x0,0x0,0xe,0x10,0x0,0x12,0x0,0x0,0x1c,0x20,0x1,0xd,0x0,0x0,0x1c, + 0x20,0x1,0xd,0x0,0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe,0x10,0x0,0x9,0x4c, + 0x4d,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x43,0x45,0x54,0x0,0x57,0x45,0x53,0x54, + 0x0,0x57,0x45,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x1,0x1,0x1,0x1, + 0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1, + 0x1,0xa,0x43,0x45,0x54,0x2d,0x31,0x43,0x45,0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35, + 0x2e,0x30,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30,0x2f,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Moscow + 0x0,0x0,0x6,0x8, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0xa1, - 0x51,0xf3,0x50,0x0,0x1,0x0,0x0,0x3,0x30,0x0,0x0,0x0,0x0,0xe,0x10,0x0, - 0x4,0x4c,0x4d,0x54,0x0,0x57,0x41,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, - 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0xa1,0x51,0xf3,0x50,0x0,0x1,0x0,0x0,0x3,0x30,0x0, - 0x0,0x0,0x0,0xe,0x10,0x0,0x4,0x4c,0x4d,0x54,0x0,0x57,0x41,0x54,0x0,0x0, - 0x0,0x0,0x0,0xa,0x57,0x41,0x54,0x2d,0x31,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Tripoli - 0x0,0x0,0x2,0x8f, - 0x54, + 0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x4e,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x26,0x80,0x0,0x0,0x0,0x9b, + 0x5f,0x1e,0xc7,0x9d,0x3e,0xf2,0x79,0x9e,0x2a,0xee,0xf9,0x9e,0xf7,0x39,0x69,0x9f, + 0x84,0x57,0xf9,0xa0,0xd8,0x6c,0xe9,0xa1,0x0,0x39,0x80,0xa1,0x3c,0xa6,0x40,0xa4, + 0x10,0x6d,0xc0,0xa4,0x3d,0x32,0xb0,0xa5,0x15,0x68,0xb0,0xa5,0x3d,0x3,0xc0,0xa7, + 0x1e,0x45,0x50,0xb5,0xa4,0x19,0x60,0x15,0x27,0xa7,0xd0,0x16,0x18,0xdc,0x40,0x17, + 0x8,0xdb,0x50,0x17,0xfa,0xf,0xc0,0x18,0xea,0xe,0xd0,0x19,0xdb,0x43,0x40,0x1a, + 0xcc,0x93,0xd0,0x1b,0xbc,0xa0,0xf0,0x1c,0xac,0x91,0xf0,0x1d,0x9c,0x82,0xf0,0x1e, + 0x8c,0x73,0xf0,0x1f,0x7c,0x64,0xf0,0x20,0x6c,0x55,0xf0,0x21,0x5c,0x46,0xf0,0x22, + 0x4c,0x37,0xf0,0x23,0x3c,0x28,0xf0,0x24,0x2c,0x19,0xf0,0x25,0x1c,0xa,0xf0,0x26, + 0xb,0xfb,0xf0,0x27,0x5,0x27,0x70,0x27,0xf5,0x18,0x70,0x28,0xe5,0x17,0x80,0x29, + 0x78,0xbf,0x80,0x29,0xd4,0xfa,0x70,0x2a,0xc4,0xeb,0x70,0x2b,0xb4,0xdc,0x70,0x2c, + 0xa4,0xcd,0x70,0x2d,0x94,0xbe,0x70,0x2e,0x84,0xaf,0x70,0x2f,0x74,0xa0,0x70,0x30, + 0x64,0x91,0x70,0x31,0x5d,0xbc,0xf0,0x32,0x72,0x97,0xf0,0x33,0x3d,0x9e,0xf0,0x34, + 0x52,0x79,0xf0,0x35,0x1d,0x80,0xf0,0x36,0x32,0x5b,0xf0,0x36,0xfd,0x62,0xf0,0x38, + 0x1b,0x78,0x70,0x38,0xdd,0x44,0xf0,0x39,0xfb,0x5a,0x70,0x3a,0xbd,0x26,0xf0,0x3b, + 0xdb,0x3c,0x70,0x3c,0xa6,0x43,0x70,0x3d,0xbb,0x1e,0x70,0x3e,0x86,0x25,0x70,0x3f, + 0x9b,0x0,0x70,0x40,0x66,0x7,0x70,0x41,0x84,0x1c,0xf0,0x42,0x45,0xe9,0x70,0x43, + 0x63,0xfe,0xf0,0x44,0x25,0xcb,0x70,0x45,0x43,0xe0,0xf0,0x46,0x5,0xad,0x70,0x47, + 0x23,0xc2,0xf0,0x47,0xee,0xc9,0xf0,0x49,0x3,0xa4,0xf0,0x49,0xce,0xab,0xf0,0x4a, + 0xe3,0x86,0xf0,0x4b,0xae,0x8d,0xf0,0x4c,0xcc,0xa3,0x70,0x4d,0x8e,0x6f,0xf0,0x54, + 0x4c,0x1d,0x60,0x1,0x3,0x2,0x3,0x4,0x2,0x4,0x5,0x6,0x7,0x8,0x7,0x6, + 0x9,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0xa,0xb,0xa,0xb,0xa,0xb,0xa, + 0xb,0xa,0xb,0xa,0xb,0xa,0xc,0xd,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb, + 0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb, + 0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xe, + 0xa,0x0,0x0,0x23,0x39,0x0,0x0,0x0,0x0,0x23,0x39,0x0,0x4,0x0,0x0,0x31, + 0x87,0x1,0x8,0x0,0x0,0x23,0x77,0x0,0x4,0x0,0x0,0x3f,0x97,0x1,0xc,0x0, + 0x0,0x38,0x40,0x1,0x11,0x0,0x0,0x2a,0x30,0x0,0x15,0x0,0x0,0x38,0x40,0x1, + 0x11,0x0,0x0,0x46,0x50,0x1,0x19,0x0,0x0,0x1c,0x20,0x0,0x1d,0x0,0x0,0x2a, + 0x30,0x0,0x15,0x0,0x0,0x38,0x40,0x1,0x11,0x0,0x0,0x2a,0x30,0x1,0x21,0x0, + 0x0,0x1c,0x20,0x0,0x1d,0x0,0x0,0x38,0x40,0x0,0x15,0x0,0x0,0x38,0x40,0x1, + 0x11,0x0,0x0,0x2a,0x30,0x0,0x15,0x4c,0x4d,0x54,0x0,0x4d,0x4d,0x54,0x0,0x4d, + 0x53,0x54,0x0,0x4d,0x44,0x53,0x54,0x0,0x4d,0x53,0x44,0x0,0x4d,0x53,0x4b,0x0, + 0x2b,0x30,0x35,0x0,0x45,0x45,0x54,0x0,0x45,0x45,0x53,0x54,0x0,0x0,0x0,0x0, + 0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x0,0x0, + 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x21,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x11,0x80,0x0,0x0,0x0,0xa1, - 0xf2,0xc1,0x24,0xdd,0xbb,0xb1,0x10,0xde,0x23,0xad,0x60,0xe1,0x78,0xd2,0x10,0xe1, - 0xe7,0x65,0xe0,0xe5,0x2f,0x3f,0x70,0xe5,0xa9,0xcc,0xe0,0xeb,0x4e,0xc6,0xf0,0x16, - 0x92,0x42,0x60,0x17,0x8,0xf7,0x70,0x17,0xfa,0x2b,0xe0,0x18,0xea,0x2a,0xf0,0x19, - 0xdb,0x5f,0x60,0x1a,0xcc,0xaf,0xf0,0x1b,0xbd,0xe4,0x60,0x1c,0xb4,0x7a,0xf0,0x1d, - 0x9f,0x17,0xe0,0x1e,0x93,0xb,0x70,0x1f,0x82,0xee,0x60,0x20,0x70,0x4a,0x70,0x21, - 0x61,0x7e,0xe0,0x22,0x52,0xcf,0x70,0x23,0x44,0x3,0xe0,0x24,0x34,0x2,0xf0,0x25, - 0x25,0x37,0x60,0x26,0x40,0xb7,0xf0,0x32,0x4e,0xf1,0x60,0x33,0x44,0x36,0x70,0x34, - 0x35,0x6a,0xe0,0x50,0x9d,0x99,0x0,0x51,0x54,0xd9,0x80,0x52,0x69,0xb4,0x80,0x0, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x2,0x1,0x3,0x2,0x1,0x3, - 0x0,0x0,0xc,0x5c,0x0,0x0,0x0,0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe,0x10, - 0x0,0x9,0x0,0x0,0x1c,0x20,0x0,0xd,0x4c,0x4d,0x54,0x0,0x43,0x45,0x53,0x54, - 0x0,0x43,0x45,0x54,0x0,0x45,0x45,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x21,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x11,0xf8,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xa1,0xf2,0xc1,0x24,0xff,0xff,0xff, - 0xff,0xdd,0xbb,0xb1,0x10,0xff,0xff,0xff,0xff,0xde,0x23,0xad,0x60,0xff,0xff,0xff, - 0xff,0xe1,0x78,0xd2,0x10,0xff,0xff,0xff,0xff,0xe1,0xe7,0x65,0xe0,0xff,0xff,0xff, - 0xff,0xe5,0x2f,0x3f,0x70,0xff,0xff,0xff,0xff,0xe5,0xa9,0xcc,0xe0,0xff,0xff,0xff, - 0xff,0xeb,0x4e,0xc6,0xf0,0x0,0x0,0x0,0x0,0x16,0x92,0x42,0x60,0x0,0x0,0x0, - 0x0,0x17,0x8,0xf7,0x70,0x0,0x0,0x0,0x0,0x17,0xfa,0x2b,0xe0,0x0,0x0,0x0, - 0x0,0x18,0xea,0x2a,0xf0,0x0,0x0,0x0,0x0,0x19,0xdb,0x5f,0x60,0x0,0x0,0x0, - 0x0,0x1a,0xcc,0xaf,0xf0,0x0,0x0,0x0,0x0,0x1b,0xbd,0xe4,0x60,0x0,0x0,0x0, - 0x0,0x1c,0xb4,0x7a,0xf0,0x0,0x0,0x0,0x0,0x1d,0x9f,0x17,0xe0,0x0,0x0,0x0, - 0x0,0x1e,0x93,0xb,0x70,0x0,0x0,0x0,0x0,0x1f,0x82,0xee,0x60,0x0,0x0,0x0, - 0x0,0x20,0x70,0x4a,0x70,0x0,0x0,0x0,0x0,0x21,0x61,0x7e,0xe0,0x0,0x0,0x0, - 0x0,0x22,0x52,0xcf,0x70,0x0,0x0,0x0,0x0,0x23,0x44,0x3,0xe0,0x0,0x0,0x0, - 0x0,0x24,0x34,0x2,0xf0,0x0,0x0,0x0,0x0,0x25,0x25,0x37,0x60,0x0,0x0,0x0, - 0x0,0x26,0x40,0xb7,0xf0,0x0,0x0,0x0,0x0,0x32,0x4e,0xf1,0x60,0x0,0x0,0x0, - 0x0,0x33,0x44,0x36,0x70,0x0,0x0,0x0,0x0,0x34,0x35,0x6a,0xe0,0x0,0x0,0x0, - 0x0,0x50,0x9d,0x99,0x0,0x0,0x0,0x0,0x0,0x51,0x54,0xd9,0x80,0x0,0x0,0x0, - 0x0,0x52,0x69,0xb4,0x80,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3, - 0x2,0x1,0x3,0x2,0x1,0x3,0x0,0x0,0xc,0x5c,0x0,0x0,0x0,0x0,0x1c,0x20, - 0x1,0x4,0x0,0x0,0xe,0x10,0x0,0x9,0x0,0x0,0x1c,0x20,0x0,0xd,0x4c,0x4d, - 0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x43,0x45,0x54,0x0,0x45,0x45,0x54,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x45,0x45,0x54,0x2d,0x32,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Abidjan - 0x0,0x0,0x0,0xaa, + 0x0,0x0,0x0,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x4f,0x0,0x0,0x0,0x11,0x0,0x0,0x0,0x26,0xf8,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x56,0xb6,0xc0,0xc7,0xff,0xff,0xff,0xff,0x9b, + 0x5f,0x1e,0xc7,0xff,0xff,0xff,0xff,0x9d,0x3e,0xf2,0x79,0xff,0xff,0xff,0xff,0x9e, + 0x2a,0xee,0xf9,0xff,0xff,0xff,0xff,0x9e,0xf7,0x39,0x69,0xff,0xff,0xff,0xff,0x9f, + 0x84,0x57,0xf9,0xff,0xff,0xff,0xff,0xa0,0xd8,0x6c,0xe9,0xff,0xff,0xff,0xff,0xa1, + 0x0,0x39,0x80,0xff,0xff,0xff,0xff,0xa1,0x3c,0xa6,0x40,0xff,0xff,0xff,0xff,0xa4, + 0x10,0x6d,0xc0,0xff,0xff,0xff,0xff,0xa4,0x3d,0x32,0xb0,0xff,0xff,0xff,0xff,0xa5, + 0x15,0x68,0xb0,0xff,0xff,0xff,0xff,0xa5,0x3d,0x3,0xc0,0xff,0xff,0xff,0xff,0xa7, + 0x1e,0x45,0x50,0xff,0xff,0xff,0xff,0xb5,0xa4,0x19,0x60,0x0,0x0,0x0,0x0,0x15, + 0x27,0xa7,0xd0,0x0,0x0,0x0,0x0,0x16,0x18,0xdc,0x40,0x0,0x0,0x0,0x0,0x17, + 0x8,0xdb,0x50,0x0,0x0,0x0,0x0,0x17,0xfa,0xf,0xc0,0x0,0x0,0x0,0x0,0x18, + 0xea,0xe,0xd0,0x0,0x0,0x0,0x0,0x19,0xdb,0x43,0x40,0x0,0x0,0x0,0x0,0x1a, + 0xcc,0x93,0xd0,0x0,0x0,0x0,0x0,0x1b,0xbc,0xa0,0xf0,0x0,0x0,0x0,0x0,0x1c, + 0xac,0x91,0xf0,0x0,0x0,0x0,0x0,0x1d,0x9c,0x82,0xf0,0x0,0x0,0x0,0x0,0x1e, + 0x8c,0x73,0xf0,0x0,0x0,0x0,0x0,0x1f,0x7c,0x64,0xf0,0x0,0x0,0x0,0x0,0x20, + 0x6c,0x55,0xf0,0x0,0x0,0x0,0x0,0x21,0x5c,0x46,0xf0,0x0,0x0,0x0,0x0,0x22, + 0x4c,0x37,0xf0,0x0,0x0,0x0,0x0,0x23,0x3c,0x28,0xf0,0x0,0x0,0x0,0x0,0x24, + 0x2c,0x19,0xf0,0x0,0x0,0x0,0x0,0x25,0x1c,0xa,0xf0,0x0,0x0,0x0,0x0,0x26, + 0xb,0xfb,0xf0,0x0,0x0,0x0,0x0,0x27,0x5,0x27,0x70,0x0,0x0,0x0,0x0,0x27, + 0xf5,0x18,0x70,0x0,0x0,0x0,0x0,0x28,0xe5,0x17,0x80,0x0,0x0,0x0,0x0,0x29, + 0x78,0xbf,0x80,0x0,0x0,0x0,0x0,0x29,0xd4,0xfa,0x70,0x0,0x0,0x0,0x0,0x2a, + 0xc4,0xeb,0x70,0x0,0x0,0x0,0x0,0x2b,0xb4,0xdc,0x70,0x0,0x0,0x0,0x0,0x2c, + 0xa4,0xcd,0x70,0x0,0x0,0x0,0x0,0x2d,0x94,0xbe,0x70,0x0,0x0,0x0,0x0,0x2e, + 0x84,0xaf,0x70,0x0,0x0,0x0,0x0,0x2f,0x74,0xa0,0x70,0x0,0x0,0x0,0x0,0x30, + 0x64,0x91,0x70,0x0,0x0,0x0,0x0,0x31,0x5d,0xbc,0xf0,0x0,0x0,0x0,0x0,0x32, + 0x72,0x97,0xf0,0x0,0x0,0x0,0x0,0x33,0x3d,0x9e,0xf0,0x0,0x0,0x0,0x0,0x34, + 0x52,0x79,0xf0,0x0,0x0,0x0,0x0,0x35,0x1d,0x80,0xf0,0x0,0x0,0x0,0x0,0x36, + 0x32,0x5b,0xf0,0x0,0x0,0x0,0x0,0x36,0xfd,0x62,0xf0,0x0,0x0,0x0,0x0,0x38, + 0x1b,0x78,0x70,0x0,0x0,0x0,0x0,0x38,0xdd,0x44,0xf0,0x0,0x0,0x0,0x0,0x39, + 0xfb,0x5a,0x70,0x0,0x0,0x0,0x0,0x3a,0xbd,0x26,0xf0,0x0,0x0,0x0,0x0,0x3b, + 0xdb,0x3c,0x70,0x0,0x0,0x0,0x0,0x3c,0xa6,0x43,0x70,0x0,0x0,0x0,0x0,0x3d, + 0xbb,0x1e,0x70,0x0,0x0,0x0,0x0,0x3e,0x86,0x25,0x70,0x0,0x0,0x0,0x0,0x3f, + 0x9b,0x0,0x70,0x0,0x0,0x0,0x0,0x40,0x66,0x7,0x70,0x0,0x0,0x0,0x0,0x41, + 0x84,0x1c,0xf0,0x0,0x0,0x0,0x0,0x42,0x45,0xe9,0x70,0x0,0x0,0x0,0x0,0x43, + 0x63,0xfe,0xf0,0x0,0x0,0x0,0x0,0x44,0x25,0xcb,0x70,0x0,0x0,0x0,0x0,0x45, + 0x43,0xe0,0xf0,0x0,0x0,0x0,0x0,0x46,0x5,0xad,0x70,0x0,0x0,0x0,0x0,0x47, + 0x23,0xc2,0xf0,0x0,0x0,0x0,0x0,0x47,0xee,0xc9,0xf0,0x0,0x0,0x0,0x0,0x49, + 0x3,0xa4,0xf0,0x0,0x0,0x0,0x0,0x49,0xce,0xab,0xf0,0x0,0x0,0x0,0x0,0x4a, + 0xe3,0x86,0xf0,0x0,0x0,0x0,0x0,0x4b,0xae,0x8d,0xf0,0x0,0x0,0x0,0x0,0x4c, + 0xcc,0xa3,0x70,0x0,0x0,0x0,0x0,0x4d,0x8e,0x6f,0xf0,0x0,0x0,0x0,0x0,0x54, + 0x4c,0x1d,0x60,0x0,0x1,0x3,0x2,0x3,0x4,0x2,0x4,0x5,0x6,0x7,0x8,0x7, + 0x6,0x9,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0xa,0xb,0xa,0xb,0xa,0xb, + 0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xc,0xd,0xa,0xb,0xa,0xb,0xa,0xb,0xa, + 0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa, + 0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa,0xb,0xa, + 0xe,0xa,0x0,0x0,0x23,0x39,0x0,0x0,0x0,0x0,0x23,0x39,0x0,0x4,0x0,0x0, + 0x31,0x87,0x1,0x8,0x0,0x0,0x23,0x77,0x0,0x4,0x0,0x0,0x3f,0x97,0x1,0xc, + 0x0,0x0,0x38,0x40,0x1,0x11,0x0,0x0,0x2a,0x30,0x0,0x15,0x0,0x0,0x38,0x40, + 0x1,0x11,0x0,0x0,0x46,0x50,0x1,0x19,0x0,0x0,0x1c,0x20,0x0,0x1d,0x0,0x0, + 0x2a,0x30,0x0,0x15,0x0,0x0,0x38,0x40,0x1,0x11,0x0,0x0,0x2a,0x30,0x1,0x21, + 0x0,0x0,0x1c,0x20,0x0,0x1d,0x0,0x0,0x38,0x40,0x0,0x15,0x0,0x0,0x38,0x40, + 0x1,0x11,0x0,0x0,0x2a,0x30,0x0,0x15,0x4c,0x4d,0x54,0x0,0x4d,0x4d,0x54,0x0, + 0x4d,0x53,0x54,0x0,0x4d,0x44,0x53,0x54,0x0,0x4d,0x53,0x44,0x0,0x4d,0x53,0x4b, + 0x0,0x2b,0x30,0x35,0x0,0x45,0x45,0x54,0x0,0x45,0x45,0x53,0x54,0x0,0x0,0x0, + 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x0, + 0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xa,0x4d,0x53,0x4b,0x2d,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Jersey + 0x0,0x0,0xe,0x67, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x92, - 0xe6,0x92,0x48,0x0,0x1,0xff,0xff,0xfc,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x4,0x4c,0x4d,0x54,0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, - 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0x92,0xe6,0x92,0x48,0x0,0x1,0xff,0xff,0xfc,0x38,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x4c,0x4d,0x54,0x0,0x47,0x4d,0x54,0x0,0x0, - 0x0,0x0,0x0,0xa,0x47,0x4d,0x54,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Conakry - 0x0,0x0,0x0,0xaa, + 0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xf3,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x11,0x80,0x0,0x0,0x0,0x9b, + 0x26,0xad,0xa0,0x9b,0xd6,0x5,0x20,0x9c,0xcf,0x30,0xa0,0x9d,0xa4,0xc3,0xa0,0x9e, + 0x9c,0x9d,0xa0,0x9f,0x97,0x1a,0xa0,0xa0,0x85,0xba,0x20,0xa1,0x76,0xfc,0xa0,0xa2, + 0x65,0x9c,0x20,0xa3,0x7b,0xc8,0xa0,0xa4,0x4e,0xb8,0xa0,0xa5,0x3f,0xfb,0x20,0xa6, + 0x25,0x60,0x20,0xa7,0x27,0xc6,0x20,0xa8,0x2a,0x2c,0x20,0xa8,0xeb,0xf8,0xa0,0xaa, + 0x0,0xd3,0xa0,0xaa,0xd5,0x15,0x20,0xab,0xe9,0xf0,0x20,0xac,0xc7,0x6c,0x20,0xad, + 0xc9,0xd2,0x20,0xae,0xa7,0x4e,0x20,0xaf,0xa0,0x79,0xa0,0xb0,0x87,0x30,0x20,0xb1, + 0x92,0xd0,0xa0,0xb2,0x70,0x4c,0xa0,0xb3,0x72,0xb2,0xa0,0xb4,0x50,0x2e,0xa0,0xb5, + 0x49,0x5a,0x20,0xb6,0x30,0x10,0xa0,0xb7,0x32,0x76,0xa0,0xb8,0xf,0xf2,0xa0,0xb9, + 0x12,0x58,0xa0,0xb9,0xef,0xd4,0xa0,0xba,0xe9,0x0,0x20,0xbb,0xd8,0xf1,0x20,0xbc, + 0xdb,0x57,0x20,0xbd,0xb8,0xd3,0x20,0xbe,0xb1,0xfe,0xa0,0xbf,0x98,0xb5,0x20,0xc0, + 0x9b,0x1b,0x20,0xc1,0x78,0x97,0x20,0xc2,0x7a,0xfd,0x20,0xc3,0x58,0x79,0x20,0xc4, + 0x51,0xa4,0xa0,0xc5,0x38,0x5b,0x20,0xc6,0x3a,0xc1,0x20,0xc7,0x58,0xd6,0xa0,0xc7, + 0xda,0x9,0xa0,0xca,0x16,0x26,0x90,0xca,0x97,0x59,0x90,0xcb,0xd1,0x1e,0x90,0xcc, + 0x77,0x3b,0x90,0xcd,0xb1,0x0,0x90,0xce,0x60,0x58,0x10,0xcf,0x90,0xe2,0x90,0xd0, + 0x6e,0x5e,0x90,0xd1,0x72,0x16,0x10,0xd1,0xfb,0x32,0x10,0xd2,0x69,0xfe,0x20,0xd3, + 0x63,0x29,0xa0,0xd4,0x49,0xe0,0x20,0xd5,0x1e,0x21,0xa0,0xd5,0x42,0xfd,0x90,0xd5, + 0xdf,0xe0,0x10,0xd6,0x4e,0xac,0x20,0xd6,0xfe,0x3,0xa0,0xd8,0x2e,0x8e,0x20,0xd8, + 0xf9,0x95,0x20,0xda,0xe,0x70,0x20,0xda,0xeb,0xec,0x20,0xdb,0xe5,0x17,0xa0,0xdc, + 0xcb,0xce,0x20,0xdd,0xc4,0xf9,0xa0,0xde,0xb4,0xea,0xa0,0xdf,0xae,0x16,0x20,0xe0, + 0x94,0xcc,0xa0,0xe1,0x72,0x48,0xa0,0xe2,0x6b,0x74,0x20,0xe3,0x52,0x2a,0xa0,0xe4, + 0x54,0x90,0xa0,0xe5,0x32,0xc,0xa0,0xe6,0x3d,0xad,0x20,0xe7,0x1b,0x29,0x20,0xe8, + 0x14,0x54,0xa0,0xe8,0xfb,0xb,0x20,0xe9,0xfd,0x71,0x20,0xea,0xda,0xed,0x20,0xeb, + 0xdd,0x53,0x20,0xec,0xba,0xcf,0x20,0xed,0xb3,0xfa,0xa0,0xee,0x9a,0xb1,0x20,0xef, + 0x81,0x67,0xa0,0xf0,0x9f,0x7d,0x20,0xf1,0x61,0x49,0xa0,0xf2,0x7f,0x5f,0x20,0xf3, + 0x4a,0x66,0x20,0xf4,0x5f,0x41,0x20,0xf5,0x21,0xd,0xa0,0xf6,0x3f,0x23,0x20,0xf7, + 0x0,0xef,0xa0,0xf8,0x1f,0x5,0x20,0xf8,0xe0,0xd1,0xa0,0xf9,0xfe,0xe7,0x20,0xfa, + 0xc0,0xb3,0xa0,0xfb,0xe8,0x3,0xa0,0xfc,0x7b,0xab,0xa0,0xfd,0xc7,0xbb,0x70,0x3, + 0x70,0xc6,0x20,0x4,0x29,0x58,0x20,0x5,0x50,0xa8,0x20,0x6,0x9,0x3a,0x20,0x7, + 0x30,0x8a,0x20,0x7,0xe9,0x1c,0x20,0x9,0x10,0x6c,0x20,0x9,0xc8,0xfe,0x20,0xa, + 0xf0,0x4e,0x20,0xb,0xb2,0x1a,0xa0,0xc,0xd0,0x30,0x20,0xd,0x91,0xfc,0xa0,0xe, + 0xb0,0x12,0x20,0xf,0x71,0xde,0xa0,0x10,0x99,0x2e,0xa0,0x11,0x51,0xc0,0xa0,0x12, + 0x79,0x10,0xa0,0x13,0x31,0xa2,0xa0,0x14,0x58,0xf2,0xa0,0x15,0x23,0xeb,0x90,0x16, + 0x38,0xc6,0x90,0x17,0x3,0xcd,0x90,0x18,0x18,0xa8,0x90,0x18,0xe3,0xaf,0x90,0x19, + 0xf8,0x8a,0x90,0x1a,0xc3,0x91,0x90,0x1b,0xe1,0xa7,0x10,0x1c,0xac,0xae,0x10,0x1d, + 0xc1,0x89,0x10,0x1e,0x8c,0x90,0x10,0x1f,0xa1,0x6b,0x10,0x20,0x6c,0x72,0x10,0x21, + 0x81,0x4d,0x10,0x22,0x4c,0x54,0x10,0x23,0x61,0x2f,0x10,0x24,0x2c,0x36,0x10,0x25, + 0x4a,0x4b,0x90,0x26,0xc,0x18,0x10,0x27,0x2a,0x2d,0x90,0x27,0xf5,0x34,0x90,0x29, + 0xa,0xf,0x90,0x29,0xd5,0x16,0x90,0x2a,0xe9,0xf1,0x90,0x2b,0xb4,0xf8,0x90,0x2c, + 0xc9,0xd3,0x90,0x2d,0x94,0xda,0x90,0x2e,0xa9,0xb5,0x90,0x2f,0x74,0xbc,0x90,0x30, + 0x89,0x97,0x90,0x30,0xe7,0x24,0x0,0x31,0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33, + 0x3d,0xbb,0x10,0x34,0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36, + 0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a, + 0xbd,0x43,0x10,0x3b,0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e, + 0x86,0x41,0x90,0x3f,0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42, + 0x46,0x5,0x90,0x43,0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46, + 0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49, + 0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d, + 0x8e,0x8c,0x10,0x4e,0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51, + 0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55, + 0x17,0x4e,0x90,0x56,0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58, + 0xd7,0x12,0x90,0x59,0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c, + 0xa0,0x11,0x10,0x5d,0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60, + 0x5f,0xd5,0x10,0x61,0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64, + 0x1f,0x99,0x10,0x65,0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67, + 0xe8,0x97,0x90,0x68,0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b, + 0xa8,0x5b,0x90,0x6c,0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f, + 0x68,0x1f,0x90,0x70,0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73, + 0x31,0x1e,0x10,0x74,0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76, + 0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a, + 0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e, + 0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3, + 0x1,0x3,0x1,0x2,0x1,0x2,0x1,0x3,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x4,0x6,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x7,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0xff,0xff,0xff,0xb5,0x0,0x0, + 0x0,0x0,0xe,0x10,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x1c,0x20, + 0x1,0xc,0x0,0x0,0xe,0x10,0x0,0x4,0x0,0x0,0xe,0x10,0x1,0x4,0x0,0x0, + 0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x42,0x53, + 0x54,0x0,0x47,0x4d,0x54,0x0,0x42,0x44,0x53,0x54,0x0,0x0,0x1,0x1,0x1,0x0, + 0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x54,0x5a,0x69,0x66,0x32, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf4,0x0, + 0x0,0x0,0x8,0x0,0x0,0x0,0x11,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff, + 0xff,0xff,0xff,0x1a,0x5d,0x9,0xcb,0xff,0xff,0xff,0xff,0x9b,0x26,0xad,0xa0,0xff, + 0xff,0xff,0xff,0x9b,0xd6,0x5,0x20,0xff,0xff,0xff,0xff,0x9c,0xcf,0x30,0xa0,0xff, + 0xff,0xff,0xff,0x9d,0xa4,0xc3,0xa0,0xff,0xff,0xff,0xff,0x9e,0x9c,0x9d,0xa0,0xff, + 0xff,0xff,0xff,0x9f,0x97,0x1a,0xa0,0xff,0xff,0xff,0xff,0xa0,0x85,0xba,0x20,0xff, + 0xff,0xff,0xff,0xa1,0x76,0xfc,0xa0,0xff,0xff,0xff,0xff,0xa2,0x65,0x9c,0x20,0xff, + 0xff,0xff,0xff,0xa3,0x7b,0xc8,0xa0,0xff,0xff,0xff,0xff,0xa4,0x4e,0xb8,0xa0,0xff, + 0xff,0xff,0xff,0xa5,0x3f,0xfb,0x20,0xff,0xff,0xff,0xff,0xa6,0x25,0x60,0x20,0xff, + 0xff,0xff,0xff,0xa7,0x27,0xc6,0x20,0xff,0xff,0xff,0xff,0xa8,0x2a,0x2c,0x20,0xff, + 0xff,0xff,0xff,0xa8,0xeb,0xf8,0xa0,0xff,0xff,0xff,0xff,0xaa,0x0,0xd3,0xa0,0xff, + 0xff,0xff,0xff,0xaa,0xd5,0x15,0x20,0xff,0xff,0xff,0xff,0xab,0xe9,0xf0,0x20,0xff, + 0xff,0xff,0xff,0xac,0xc7,0x6c,0x20,0xff,0xff,0xff,0xff,0xad,0xc9,0xd2,0x20,0xff, + 0xff,0xff,0xff,0xae,0xa7,0x4e,0x20,0xff,0xff,0xff,0xff,0xaf,0xa0,0x79,0xa0,0xff, + 0xff,0xff,0xff,0xb0,0x87,0x30,0x20,0xff,0xff,0xff,0xff,0xb1,0x92,0xd0,0xa0,0xff, + 0xff,0xff,0xff,0xb2,0x70,0x4c,0xa0,0xff,0xff,0xff,0xff,0xb3,0x72,0xb2,0xa0,0xff, + 0xff,0xff,0xff,0xb4,0x50,0x2e,0xa0,0xff,0xff,0xff,0xff,0xb5,0x49,0x5a,0x20,0xff, + 0xff,0xff,0xff,0xb6,0x30,0x10,0xa0,0xff,0xff,0xff,0xff,0xb7,0x32,0x76,0xa0,0xff, + 0xff,0xff,0xff,0xb8,0xf,0xf2,0xa0,0xff,0xff,0xff,0xff,0xb9,0x12,0x58,0xa0,0xff, + 0xff,0xff,0xff,0xb9,0xef,0xd4,0xa0,0xff,0xff,0xff,0xff,0xba,0xe9,0x0,0x20,0xff, + 0xff,0xff,0xff,0xbb,0xd8,0xf1,0x20,0xff,0xff,0xff,0xff,0xbc,0xdb,0x57,0x20,0xff, + 0xff,0xff,0xff,0xbd,0xb8,0xd3,0x20,0xff,0xff,0xff,0xff,0xbe,0xb1,0xfe,0xa0,0xff, + 0xff,0xff,0xff,0xbf,0x98,0xb5,0x20,0xff,0xff,0xff,0xff,0xc0,0x9b,0x1b,0x20,0xff, + 0xff,0xff,0xff,0xc1,0x78,0x97,0x20,0xff,0xff,0xff,0xff,0xc2,0x7a,0xfd,0x20,0xff, + 0xff,0xff,0xff,0xc3,0x58,0x79,0x20,0xff,0xff,0xff,0xff,0xc4,0x51,0xa4,0xa0,0xff, + 0xff,0xff,0xff,0xc5,0x38,0x5b,0x20,0xff,0xff,0xff,0xff,0xc6,0x3a,0xc1,0x20,0xff, + 0xff,0xff,0xff,0xc7,0x58,0xd6,0xa0,0xff,0xff,0xff,0xff,0xc7,0xda,0x9,0xa0,0xff, + 0xff,0xff,0xff,0xca,0x16,0x26,0x90,0xff,0xff,0xff,0xff,0xca,0x97,0x59,0x90,0xff, + 0xff,0xff,0xff,0xcb,0xd1,0x1e,0x90,0xff,0xff,0xff,0xff,0xcc,0x77,0x3b,0x90,0xff, + 0xff,0xff,0xff,0xcd,0xb1,0x0,0x90,0xff,0xff,0xff,0xff,0xce,0x60,0x58,0x10,0xff, + 0xff,0xff,0xff,0xcf,0x90,0xe2,0x90,0xff,0xff,0xff,0xff,0xd0,0x6e,0x5e,0x90,0xff, + 0xff,0xff,0xff,0xd1,0x72,0x16,0x10,0xff,0xff,0xff,0xff,0xd1,0xfb,0x32,0x10,0xff, + 0xff,0xff,0xff,0xd2,0x69,0xfe,0x20,0xff,0xff,0xff,0xff,0xd3,0x63,0x29,0xa0,0xff, + 0xff,0xff,0xff,0xd4,0x49,0xe0,0x20,0xff,0xff,0xff,0xff,0xd5,0x1e,0x21,0xa0,0xff, + 0xff,0xff,0xff,0xd5,0x42,0xfd,0x90,0xff,0xff,0xff,0xff,0xd5,0xdf,0xe0,0x10,0xff, + 0xff,0xff,0xff,0xd6,0x4e,0xac,0x20,0xff,0xff,0xff,0xff,0xd6,0xfe,0x3,0xa0,0xff, + 0xff,0xff,0xff,0xd8,0x2e,0x8e,0x20,0xff,0xff,0xff,0xff,0xd8,0xf9,0x95,0x20,0xff, + 0xff,0xff,0xff,0xda,0xe,0x70,0x20,0xff,0xff,0xff,0xff,0xda,0xeb,0xec,0x20,0xff, + 0xff,0xff,0xff,0xdb,0xe5,0x17,0xa0,0xff,0xff,0xff,0xff,0xdc,0xcb,0xce,0x20,0xff, + 0xff,0xff,0xff,0xdd,0xc4,0xf9,0xa0,0xff,0xff,0xff,0xff,0xde,0xb4,0xea,0xa0,0xff, + 0xff,0xff,0xff,0xdf,0xae,0x16,0x20,0xff,0xff,0xff,0xff,0xe0,0x94,0xcc,0xa0,0xff, + 0xff,0xff,0xff,0xe1,0x72,0x48,0xa0,0xff,0xff,0xff,0xff,0xe2,0x6b,0x74,0x20,0xff, + 0xff,0xff,0xff,0xe3,0x52,0x2a,0xa0,0xff,0xff,0xff,0xff,0xe4,0x54,0x90,0xa0,0xff, + 0xff,0xff,0xff,0xe5,0x32,0xc,0xa0,0xff,0xff,0xff,0xff,0xe6,0x3d,0xad,0x20,0xff, + 0xff,0xff,0xff,0xe7,0x1b,0x29,0x20,0xff,0xff,0xff,0xff,0xe8,0x14,0x54,0xa0,0xff, + 0xff,0xff,0xff,0xe8,0xfb,0xb,0x20,0xff,0xff,0xff,0xff,0xe9,0xfd,0x71,0x20,0xff, + 0xff,0xff,0xff,0xea,0xda,0xed,0x20,0xff,0xff,0xff,0xff,0xeb,0xdd,0x53,0x20,0xff, + 0xff,0xff,0xff,0xec,0xba,0xcf,0x20,0xff,0xff,0xff,0xff,0xed,0xb3,0xfa,0xa0,0xff, + 0xff,0xff,0xff,0xee,0x9a,0xb1,0x20,0xff,0xff,0xff,0xff,0xef,0x81,0x67,0xa0,0xff, + 0xff,0xff,0xff,0xf0,0x9f,0x7d,0x20,0xff,0xff,0xff,0xff,0xf1,0x61,0x49,0xa0,0xff, + 0xff,0xff,0xff,0xf2,0x7f,0x5f,0x20,0xff,0xff,0xff,0xff,0xf3,0x4a,0x66,0x20,0xff, + 0xff,0xff,0xff,0xf4,0x5f,0x41,0x20,0xff,0xff,0xff,0xff,0xf5,0x21,0xd,0xa0,0xff, + 0xff,0xff,0xff,0xf6,0x3f,0x23,0x20,0xff,0xff,0xff,0xff,0xf7,0x0,0xef,0xa0,0xff, + 0xff,0xff,0xff,0xf8,0x1f,0x5,0x20,0xff,0xff,0xff,0xff,0xf8,0xe0,0xd1,0xa0,0xff, + 0xff,0xff,0xff,0xf9,0xfe,0xe7,0x20,0xff,0xff,0xff,0xff,0xfa,0xc0,0xb3,0xa0,0xff, + 0xff,0xff,0xff,0xfb,0xe8,0x3,0xa0,0xff,0xff,0xff,0xff,0xfc,0x7b,0xab,0xa0,0xff, + 0xff,0xff,0xff,0xfd,0xc7,0xbb,0x70,0x0,0x0,0x0,0x0,0x3,0x70,0xc6,0x20,0x0, + 0x0,0x0,0x0,0x4,0x29,0x58,0x20,0x0,0x0,0x0,0x0,0x5,0x50,0xa8,0x20,0x0, + 0x0,0x0,0x0,0x6,0x9,0x3a,0x20,0x0,0x0,0x0,0x0,0x7,0x30,0x8a,0x20,0x0, + 0x0,0x0,0x0,0x7,0xe9,0x1c,0x20,0x0,0x0,0x0,0x0,0x9,0x10,0x6c,0x20,0x0, + 0x0,0x0,0x0,0x9,0xc8,0xfe,0x20,0x0,0x0,0x0,0x0,0xa,0xf0,0x4e,0x20,0x0, + 0x0,0x0,0x0,0xb,0xb2,0x1a,0xa0,0x0,0x0,0x0,0x0,0xc,0xd0,0x30,0x20,0x0, + 0x0,0x0,0x0,0xd,0x91,0xfc,0xa0,0x0,0x0,0x0,0x0,0xe,0xb0,0x12,0x20,0x0, + 0x0,0x0,0x0,0xf,0x71,0xde,0xa0,0x0,0x0,0x0,0x0,0x10,0x99,0x2e,0xa0,0x0, + 0x0,0x0,0x0,0x11,0x51,0xc0,0xa0,0x0,0x0,0x0,0x0,0x12,0x79,0x10,0xa0,0x0, + 0x0,0x0,0x0,0x13,0x31,0xa2,0xa0,0x0,0x0,0x0,0x0,0x14,0x58,0xf2,0xa0,0x0, + 0x0,0x0,0x0,0x15,0x23,0xeb,0x90,0x0,0x0,0x0,0x0,0x16,0x38,0xc6,0x90,0x0, + 0x0,0x0,0x0,0x17,0x3,0xcd,0x90,0x0,0x0,0x0,0x0,0x18,0x18,0xa8,0x90,0x0, + 0x0,0x0,0x0,0x18,0xe3,0xaf,0x90,0x0,0x0,0x0,0x0,0x19,0xf8,0x8a,0x90,0x0, + 0x0,0x0,0x0,0x1a,0xc3,0x91,0x90,0x0,0x0,0x0,0x0,0x1b,0xe1,0xa7,0x10,0x0, + 0x0,0x0,0x0,0x1c,0xac,0xae,0x10,0x0,0x0,0x0,0x0,0x1d,0xc1,0x89,0x10,0x0, + 0x0,0x0,0x0,0x1e,0x8c,0x90,0x10,0x0,0x0,0x0,0x0,0x1f,0xa1,0x6b,0x10,0x0, + 0x0,0x0,0x0,0x20,0x6c,0x72,0x10,0x0,0x0,0x0,0x0,0x21,0x81,0x4d,0x10,0x0, + 0x0,0x0,0x0,0x22,0x4c,0x54,0x10,0x0,0x0,0x0,0x0,0x23,0x61,0x2f,0x10,0x0, + 0x0,0x0,0x0,0x24,0x2c,0x36,0x10,0x0,0x0,0x0,0x0,0x25,0x4a,0x4b,0x90,0x0, + 0x0,0x0,0x0,0x26,0xc,0x18,0x10,0x0,0x0,0x0,0x0,0x27,0x2a,0x2d,0x90,0x0, + 0x0,0x0,0x0,0x27,0xf5,0x34,0x90,0x0,0x0,0x0,0x0,0x29,0xa,0xf,0x90,0x0, + 0x0,0x0,0x0,0x29,0xd5,0x16,0x90,0x0,0x0,0x0,0x0,0x2a,0xe9,0xf1,0x90,0x0, + 0x0,0x0,0x0,0x2b,0xb4,0xf8,0x90,0x0,0x0,0x0,0x0,0x2c,0xc9,0xd3,0x90,0x0, + 0x0,0x0,0x0,0x2d,0x94,0xda,0x90,0x0,0x0,0x0,0x0,0x2e,0xa9,0xb5,0x90,0x0, + 0x0,0x0,0x0,0x2f,0x74,0xbc,0x90,0x0,0x0,0x0,0x0,0x30,0x89,0x97,0x90,0x0, + 0x0,0x0,0x0,0x30,0xe7,0x24,0x0,0x0,0x0,0x0,0x0,0x31,0x5d,0xd9,0x10,0x0, + 0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d,0xbb,0x10,0x0, + 0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d,0x9d,0x10,0x0, + 0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd,0x7f,0x10,0x0, + 0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd,0x61,0x10,0x0, + 0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd,0x43,0x10,0x0, + 0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f,0x90,0x0, + 0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86,0x41,0x90,0x0, + 0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66,0x23,0x90,0x0, + 0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46,0x5,0x90,0x0, + 0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25,0xe7,0x90,0x0, + 0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5,0xc9,0x90,0x0, + 0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee,0xe6,0x10,0x0, + 0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce,0xc8,0x10,0x0, + 0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae,0xaa,0x10,0x0, + 0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c,0x10,0x0, + 0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e,0x10,0x0, + 0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57,0x8a,0x90,0x0, + 0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37,0x6c,0x90,0x0, + 0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17,0x4e,0x90,0x0, + 0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7,0x30,0x90,0x0, + 0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7,0x12,0x90,0x0, + 0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4,0x90,0x0, + 0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0,0x11,0x10,0x0, + 0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3,0x10,0x0, + 0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f,0xd5,0x10,0x0, + 0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f,0xb7,0x10,0x0, + 0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f,0x99,0x10,0x0, + 0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8,0xb5,0x90,0x0, + 0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8,0x97,0x90,0x0, + 0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8,0x79,0x90,0x0, + 0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b,0x90,0x0, + 0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88,0x3d,0x90,0x0, + 0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68,0x1f,0x90,0x0, + 0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51,0x3c,0x10,0x0, + 0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31,0x1e,0x10,0x0, + 0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11,0x0,0x10,0x0, + 0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0,0xe2,0x10,0x0, + 0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0,0xc4,0x10,0x0, + 0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6,0x10,0x0, + 0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99,0xc2,0x90,0x0, + 0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79,0xa4,0x90,0x0, + 0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x3,0x1,0x3,0x1,0x3,0x1, + 0x3,0x1,0x3,0x1,0x2,0x1,0x2,0x1,0x3,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x4,0x6,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x6,0x7,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0xff,0xff,0xff,0xb5,0x0, + 0x0,0x0,0x0,0xe,0x10,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x1c, + 0x20,0x1,0xc,0x0,0x0,0xe,0x10,0x0,0x4,0x0,0x0,0xe,0x10,0x1,0x4,0x0, + 0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x42, + 0x53,0x54,0x0,0x47,0x4d,0x54,0x0,0x42,0x44,0x53,0x54,0x0,0x0,0x1,0x1,0x1, + 0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0xa,0x47,0x4d,0x54, + 0x30,0x42,0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2f,0x31,0x2c,0x4d,0x31, + 0x30,0x2e,0x35,0x2e,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Europe/Amsterdam + 0x0,0x0,0xb,0x85, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x92, - 0xe6,0x92,0x48,0x0,0x1,0xff,0xff,0xfc,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x4,0x4c,0x4d,0x54,0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, - 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0x92,0xe6,0x92,0x48,0x0,0x1,0xff,0xff,0xfc,0x38,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x4c,0x4d,0x54,0x0,0x47,0x4d,0x54,0x0,0x0, - 0x0,0x0,0x0,0xa,0x47,0x4d,0x54,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Gaborone - 0x0,0x0,0x0,0xab, + 0x0,0x0,0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xb5,0x0,0x0,0x0,0xe,0x0,0x0,0x0,0x21,0x80,0x0,0x0,0x0,0x9b, + 0xc,0x2e,0xec,0x9b,0xd5,0xd6,0x5c,0x9c,0xd9,0xb8,0xc,0x9d,0xa4,0xbf,0xc,0x9e, + 0xa7,0x25,0xc,0x9f,0x97,0x16,0xc,0xa0,0x90,0x41,0x8c,0xa1,0x76,0xf8,0xc,0xa2, + 0x70,0x23,0x8c,0xa3,0x56,0xda,0xc,0xa4,0x50,0x5,0x8c,0xa5,0x36,0xbc,0xc,0xa6, + 0x25,0x5b,0x8c,0xa7,0x27,0xc1,0x8c,0xa8,0x5e,0xe3,0x8c,0xa9,0x7,0xa3,0x8c,0xa9, + 0xee,0x5a,0xc,0xaa,0xe7,0x85,0x8c,0xac,0x27,0xe2,0xc,0xac,0xc7,0x67,0x8c,0xad, + 0xed,0x66,0xc,0xae,0xa7,0x49,0x8c,0xaf,0xce,0x99,0x8c,0xb0,0x87,0x2b,0x8c,0xb1, + 0xb1,0x1e,0x8c,0xb2,0x70,0x48,0xc,0xb3,0x92,0x52,0xc,0xb4,0x50,0x2a,0xc,0xb5, + 0x73,0x85,0x8c,0xb6,0x30,0xc,0xc,0xb7,0x54,0xb9,0xc,0xb8,0xf,0xee,0xc,0xb9, + 0x40,0x78,0x8c,0xb9,0xef,0xd0,0xc,0xbb,0x18,0x71,0x8c,0xbb,0xd8,0xec,0x8c,0xbc, + 0xf9,0xa5,0xc,0xbd,0xb8,0xce,0x8c,0xbe,0xda,0xd8,0x8c,0xbf,0x98,0xb0,0x8c,0xc0, + 0xbd,0x5d,0x8c,0xc1,0x78,0x92,0x8c,0xc2,0xa7,0xcb,0x8c,0xc2,0xdc,0x5d,0x5c,0xc3, + 0x58,0x74,0x70,0xc4,0x7f,0xc4,0x70,0xc5,0x38,0x56,0x70,0xc6,0x60,0xf7,0xf0,0xc7, + 0x21,0x72,0xf0,0xc8,0x44,0xb2,0x50,0xcc,0xe7,0x4b,0x10,0xcd,0xa9,0x17,0x90,0xce, + 0xa2,0x43,0x10,0xcf,0x92,0x34,0x10,0xd0,0x82,0x25,0x10,0xd1,0x72,0x16,0x10,0xd2, + 0x4e,0x40,0x90,0xd,0x2a,0xfd,0x70,0xd,0xa4,0x63,0x90,0xe,0x8b,0x1a,0x10,0xf, + 0x84,0x45,0x90,0x10,0x74,0x36,0x90,0x11,0x64,0x27,0x90,0x12,0x54,0x18,0x90,0x13, + 0x4d,0x44,0x10,0x14,0x33,0xfa,0x90,0x15,0x23,0xeb,0x90,0x16,0x13,0xdc,0x90,0x17, + 0x3,0xcd,0x90,0x17,0xf3,0xbe,0x90,0x18,0xe3,0xaf,0x90,0x19,0xd3,0xa0,0x90,0x1a, + 0xc3,0x91,0x90,0x1b,0xbc,0xbd,0x10,0x1c,0xac,0xae,0x10,0x1d,0x9c,0x9f,0x10,0x1e, + 0x8c,0x90,0x10,0x1f,0x7c,0x81,0x10,0x20,0x6c,0x72,0x10,0x21,0x5c,0x63,0x10,0x22, + 0x4c,0x54,0x10,0x23,0x3c,0x45,0x10,0x24,0x2c,0x36,0x10,0x25,0x1c,0x27,0x10,0x26, + 0xc,0x18,0x10,0x27,0x5,0x43,0x90,0x27,0xf5,0x34,0x90,0x28,0xe5,0x25,0x90,0x29, + 0xd5,0x16,0x90,0x2a,0xc5,0x7,0x90,0x2b,0xb4,0xf8,0x90,0x2c,0xa4,0xe9,0x90,0x2d, + 0x94,0xda,0x90,0x2e,0x84,0xcb,0x90,0x2f,0x74,0xbc,0x90,0x30,0x64,0xad,0x90,0x31, + 0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34,0x52,0x96,0x10,0x35, + 0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38,0x1b,0x94,0x90,0x38, + 0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b,0xdb,0x58,0x90,0x3c, + 0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f,0x9b,0x1c,0x90,0x40, + 0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43,0x64,0x1b,0x10,0x44, + 0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47,0x23,0xdf,0x10,0x47, + 0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a,0xe3,0xa3,0x10,0x4b, + 0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e,0xac,0xa1,0x90,0x4f, + 0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53, + 0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56,0x2c,0x29,0x90,0x56, + 0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59,0xf5,0x28,0x10,0x5a, + 0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d,0xb4,0xec,0x10,0x5e, + 0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61,0x7d,0xea,0x90,0x62, + 0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65,0x3d,0xae,0x90,0x66, + 0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68,0xfd,0x72,0x90,0x69, + 0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c,0xc6,0x71,0x10,0x6d, + 0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70,0x86,0x35,0x10,0x71, + 0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74,0x45,0xf9,0x10,0x75, + 0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78, + 0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c, + 0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x2, + 0x1,0x2,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x7,0x5,0x6,0x5,0x6, + 0x5,0xa,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0xd,0xb,0xc,0xb,0xc,0xb,0xc, + 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, + 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, + 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, + 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, + 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, + 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, + 0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc, + 0xb,0xc,0xb,0xc,0x0,0x0,0x4,0x94,0x0,0x0,0x0,0x0,0x12,0xa4,0x1,0x4, + 0x0,0x0,0x4,0x94,0x0,0x8,0x0,0x0,0x12,0xa4,0x1,0x4,0x0,0x0,0x4,0x94, + 0x0,0x8,0x0,0x0,0x4,0xb0,0x0,0xc,0x0,0x0,0x12,0xc0,0x1,0x12,0x0,0x0, + 0x12,0xc0,0x1,0x12,0x0,0x0,0xe,0x10,0x0,0x18,0x0,0x0,0x1c,0x20,0x1,0x1c, + 0x0,0x0,0x1c,0x20,0x1,0x1c,0x0,0x0,0x1c,0x20,0x1,0x1c,0x0,0x0,0xe,0x10, + 0x0,0x18,0x0,0x0,0xe,0x10,0x0,0x18,0x4c,0x4d,0x54,0x0,0x4e,0x53,0x54,0x0, + 0x41,0x4d,0x54,0x0,0x2b,0x30,0x30,0x32,0x30,0x0,0x2b,0x30,0x31,0x32,0x30,0x0, + 0x43,0x45,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1, + 0x0,0x1,0x1,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x1,0x1,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xe,0x0,0x0,0x0, + 0xe,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb6,0x0,0x0,0x0,0xe,0x0,0x0,0x0, + 0x21,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x2,0x12,0x51, + 0x6c,0xff,0xff,0xff,0xff,0x9b,0xc,0x2e,0xec,0xff,0xff,0xff,0xff,0x9b,0xd5,0xd6, + 0x5c,0xff,0xff,0xff,0xff,0x9c,0xd9,0xb8,0xc,0xff,0xff,0xff,0xff,0x9d,0xa4,0xbf, + 0xc,0xff,0xff,0xff,0xff,0x9e,0xa7,0x25,0xc,0xff,0xff,0xff,0xff,0x9f,0x97,0x16, + 0xc,0xff,0xff,0xff,0xff,0xa0,0x90,0x41,0x8c,0xff,0xff,0xff,0xff,0xa1,0x76,0xf8, + 0xc,0xff,0xff,0xff,0xff,0xa2,0x70,0x23,0x8c,0xff,0xff,0xff,0xff,0xa3,0x56,0xda, + 0xc,0xff,0xff,0xff,0xff,0xa4,0x50,0x5,0x8c,0xff,0xff,0xff,0xff,0xa5,0x36,0xbc, + 0xc,0xff,0xff,0xff,0xff,0xa6,0x25,0x5b,0x8c,0xff,0xff,0xff,0xff,0xa7,0x27,0xc1, + 0x8c,0xff,0xff,0xff,0xff,0xa8,0x5e,0xe3,0x8c,0xff,0xff,0xff,0xff,0xa9,0x7,0xa3, + 0x8c,0xff,0xff,0xff,0xff,0xa9,0xee,0x5a,0xc,0xff,0xff,0xff,0xff,0xaa,0xe7,0x85, + 0x8c,0xff,0xff,0xff,0xff,0xac,0x27,0xe2,0xc,0xff,0xff,0xff,0xff,0xac,0xc7,0x67, + 0x8c,0xff,0xff,0xff,0xff,0xad,0xed,0x66,0xc,0xff,0xff,0xff,0xff,0xae,0xa7,0x49, + 0x8c,0xff,0xff,0xff,0xff,0xaf,0xce,0x99,0x8c,0xff,0xff,0xff,0xff,0xb0,0x87,0x2b, + 0x8c,0xff,0xff,0xff,0xff,0xb1,0xb1,0x1e,0x8c,0xff,0xff,0xff,0xff,0xb2,0x70,0x48, + 0xc,0xff,0xff,0xff,0xff,0xb3,0x92,0x52,0xc,0xff,0xff,0xff,0xff,0xb4,0x50,0x2a, + 0xc,0xff,0xff,0xff,0xff,0xb5,0x73,0x85,0x8c,0xff,0xff,0xff,0xff,0xb6,0x30,0xc, + 0xc,0xff,0xff,0xff,0xff,0xb7,0x54,0xb9,0xc,0xff,0xff,0xff,0xff,0xb8,0xf,0xee, + 0xc,0xff,0xff,0xff,0xff,0xb9,0x40,0x78,0x8c,0xff,0xff,0xff,0xff,0xb9,0xef,0xd0, + 0xc,0xff,0xff,0xff,0xff,0xbb,0x18,0x71,0x8c,0xff,0xff,0xff,0xff,0xbb,0xd8,0xec, + 0x8c,0xff,0xff,0xff,0xff,0xbc,0xf9,0xa5,0xc,0xff,0xff,0xff,0xff,0xbd,0xb8,0xce, + 0x8c,0xff,0xff,0xff,0xff,0xbe,0xda,0xd8,0x8c,0xff,0xff,0xff,0xff,0xbf,0x98,0xb0, + 0x8c,0xff,0xff,0xff,0xff,0xc0,0xbd,0x5d,0x8c,0xff,0xff,0xff,0xff,0xc1,0x78,0x92, + 0x8c,0xff,0xff,0xff,0xff,0xc2,0xa7,0xcb,0x8c,0xff,0xff,0xff,0xff,0xc2,0xdc,0x5d, + 0x5c,0xff,0xff,0xff,0xff,0xc3,0x58,0x74,0x70,0xff,0xff,0xff,0xff,0xc4,0x7f,0xc4, + 0x70,0xff,0xff,0xff,0xff,0xc5,0x38,0x56,0x70,0xff,0xff,0xff,0xff,0xc6,0x60,0xf7, + 0xf0,0xff,0xff,0xff,0xff,0xc7,0x21,0x72,0xf0,0xff,0xff,0xff,0xff,0xc8,0x44,0xb2, + 0x50,0xff,0xff,0xff,0xff,0xcc,0xe7,0x4b,0x10,0xff,0xff,0xff,0xff,0xcd,0xa9,0x17, + 0x90,0xff,0xff,0xff,0xff,0xce,0xa2,0x43,0x10,0xff,0xff,0xff,0xff,0xcf,0x92,0x34, + 0x10,0xff,0xff,0xff,0xff,0xd0,0x82,0x25,0x10,0xff,0xff,0xff,0xff,0xd1,0x72,0x16, + 0x10,0xff,0xff,0xff,0xff,0xd2,0x4e,0x40,0x90,0x0,0x0,0x0,0x0,0xd,0x2a,0xfd, + 0x70,0x0,0x0,0x0,0x0,0xd,0xa4,0x63,0x90,0x0,0x0,0x0,0x0,0xe,0x8b,0x1a, + 0x10,0x0,0x0,0x0,0x0,0xf,0x84,0x45,0x90,0x0,0x0,0x0,0x0,0x10,0x74,0x36, + 0x90,0x0,0x0,0x0,0x0,0x11,0x64,0x27,0x90,0x0,0x0,0x0,0x0,0x12,0x54,0x18, + 0x90,0x0,0x0,0x0,0x0,0x13,0x4d,0x44,0x10,0x0,0x0,0x0,0x0,0x14,0x33,0xfa, + 0x90,0x0,0x0,0x0,0x0,0x15,0x23,0xeb,0x90,0x0,0x0,0x0,0x0,0x16,0x13,0xdc, + 0x90,0x0,0x0,0x0,0x0,0x17,0x3,0xcd,0x90,0x0,0x0,0x0,0x0,0x17,0xf3,0xbe, + 0x90,0x0,0x0,0x0,0x0,0x18,0xe3,0xaf,0x90,0x0,0x0,0x0,0x0,0x19,0xd3,0xa0, + 0x90,0x0,0x0,0x0,0x0,0x1a,0xc3,0x91,0x90,0x0,0x0,0x0,0x0,0x1b,0xbc,0xbd, + 0x10,0x0,0x0,0x0,0x0,0x1c,0xac,0xae,0x10,0x0,0x0,0x0,0x0,0x1d,0x9c,0x9f, + 0x10,0x0,0x0,0x0,0x0,0x1e,0x8c,0x90,0x10,0x0,0x0,0x0,0x0,0x1f,0x7c,0x81, + 0x10,0x0,0x0,0x0,0x0,0x20,0x6c,0x72,0x10,0x0,0x0,0x0,0x0,0x21,0x5c,0x63, + 0x10,0x0,0x0,0x0,0x0,0x22,0x4c,0x54,0x10,0x0,0x0,0x0,0x0,0x23,0x3c,0x45, + 0x10,0x0,0x0,0x0,0x0,0x24,0x2c,0x36,0x10,0x0,0x0,0x0,0x0,0x25,0x1c,0x27, + 0x10,0x0,0x0,0x0,0x0,0x26,0xc,0x18,0x10,0x0,0x0,0x0,0x0,0x27,0x5,0x43, + 0x90,0x0,0x0,0x0,0x0,0x27,0xf5,0x34,0x90,0x0,0x0,0x0,0x0,0x28,0xe5,0x25, + 0x90,0x0,0x0,0x0,0x0,0x29,0xd5,0x16,0x90,0x0,0x0,0x0,0x0,0x2a,0xc5,0x7, + 0x90,0x0,0x0,0x0,0x0,0x2b,0xb4,0xf8,0x90,0x0,0x0,0x0,0x0,0x2c,0xa4,0xe9, + 0x90,0x0,0x0,0x0,0x0,0x2d,0x94,0xda,0x90,0x0,0x0,0x0,0x0,0x2e,0x84,0xcb, + 0x90,0x0,0x0,0x0,0x0,0x2f,0x74,0xbc,0x90,0x0,0x0,0x0,0x0,0x30,0x64,0xad, + 0x90,0x0,0x0,0x0,0x0,0x31,0x5d,0xd9,0x10,0x0,0x0,0x0,0x0,0x32,0x72,0xb4, + 0x10,0x0,0x0,0x0,0x0,0x33,0x3d,0xbb,0x10,0x0,0x0,0x0,0x0,0x34,0x52,0x96, + 0x10,0x0,0x0,0x0,0x0,0x35,0x1d,0x9d,0x10,0x0,0x0,0x0,0x0,0x36,0x32,0x78, + 0x10,0x0,0x0,0x0,0x0,0x36,0xfd,0x7f,0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0x94, + 0x90,0x0,0x0,0x0,0x0,0x38,0xdd,0x61,0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0x76, + 0x90,0x0,0x0,0x0,0x0,0x3a,0xbd,0x43,0x10,0x0,0x0,0x0,0x0,0x3b,0xdb,0x58, + 0x90,0x0,0x0,0x0,0x0,0x3c,0xa6,0x5f,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x3a, + 0x90,0x0,0x0,0x0,0x0,0x3e,0x86,0x41,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x1c, + 0x90,0x0,0x0,0x0,0x0,0x40,0x66,0x23,0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x39, + 0x10,0x0,0x0,0x0,0x0,0x42,0x46,0x5,0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x1b, + 0x10,0x0,0x0,0x0,0x0,0x44,0x25,0xe7,0x90,0x0,0x0,0x0,0x0,0x45,0x43,0xfd, + 0x10,0x0,0x0,0x0,0x0,0x46,0x5,0xc9,0x90,0x0,0x0,0x0,0x0,0x47,0x23,0xdf, + 0x10,0x0,0x0,0x0,0x0,0x47,0xee,0xe6,0x10,0x0,0x0,0x0,0x0,0x49,0x3,0xc1, + 0x10,0x0,0x0,0x0,0x0,0x49,0xce,0xc8,0x10,0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3, + 0x10,0x0,0x0,0x0,0x0,0x4b,0xae,0xaa,0x10,0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf, + 0x90,0x0,0x0,0x0,0x0,0x4d,0x8e,0x8c,0x10,0x0,0x0,0x0,0x0,0x4e,0xac,0xa1, + 0x90,0x0,0x0,0x0,0x0,0x4f,0x6e,0x6e,0x10,0x0,0x0,0x0,0x0,0x50,0x8c,0x83, + 0x90,0x0,0x0,0x0,0x0,0x51,0x57,0x8a,0x90,0x0,0x0,0x0,0x0,0x52,0x6c,0x65, + 0x90,0x0,0x0,0x0,0x0,0x53,0x37,0x6c,0x90,0x0,0x0,0x0,0x0,0x54,0x4c,0x47, + 0x90,0x0,0x0,0x0,0x0,0x55,0x17,0x4e,0x90,0x0,0x0,0x0,0x0,0x56,0x2c,0x29, + 0x90,0x0,0x0,0x0,0x0,0x56,0xf7,0x30,0x90,0x0,0x0,0x0,0x0,0x58,0x15,0x46, + 0x10,0x0,0x0,0x0,0x0,0x58,0xd7,0x12,0x90,0x0,0x0,0x0,0x0,0x59,0xf5,0x28, + 0x10,0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4,0x90,0x0,0x0,0x0,0x0,0x5b,0xd5,0xa, + 0x10,0x0,0x0,0x0,0x0,0x5c,0xa0,0x11,0x10,0x0,0x0,0x0,0x0,0x5d,0xb4,0xec, + 0x10,0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3,0x10,0x0,0x0,0x0,0x0,0x5f,0x94,0xce, + 0x10,0x0,0x0,0x0,0x0,0x60,0x5f,0xd5,0x10,0x0,0x0,0x0,0x0,0x61,0x7d,0xea, + 0x90,0x0,0x0,0x0,0x0,0x62,0x3f,0xb7,0x10,0x0,0x0,0x0,0x0,0x63,0x5d,0xcc, + 0x90,0x0,0x0,0x0,0x0,0x64,0x1f,0x99,0x10,0x0,0x0,0x0,0x0,0x65,0x3d,0xae, + 0x90,0x0,0x0,0x0,0x0,0x66,0x8,0xb5,0x90,0x0,0x0,0x0,0x0,0x67,0x1d,0x90, + 0x90,0x0,0x0,0x0,0x0,0x67,0xe8,0x97,0x90,0x0,0x0,0x0,0x0,0x68,0xfd,0x72, + 0x90,0x0,0x0,0x0,0x0,0x69,0xc8,0x79,0x90,0x0,0x0,0x0,0x0,0x6a,0xdd,0x54, + 0x90,0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b,0x90,0x0,0x0,0x0,0x0,0x6c,0xc6,0x71, + 0x10,0x0,0x0,0x0,0x0,0x6d,0x88,0x3d,0x90,0x0,0x0,0x0,0x0,0x6e,0xa6,0x53, + 0x10,0x0,0x0,0x0,0x0,0x6f,0x68,0x1f,0x90,0x0,0x0,0x0,0x0,0x70,0x86,0x35, + 0x10,0x0,0x0,0x0,0x0,0x71,0x51,0x3c,0x10,0x0,0x0,0x0,0x0,0x72,0x66,0x17, + 0x10,0x0,0x0,0x0,0x0,0x73,0x31,0x1e,0x10,0x0,0x0,0x0,0x0,0x74,0x45,0xf9, + 0x10,0x0,0x0,0x0,0x0,0x75,0x11,0x0,0x10,0x0,0x0,0x0,0x0,0x76,0x2f,0x15, + 0x90,0x0,0x0,0x0,0x0,0x76,0xf0,0xe2,0x10,0x0,0x0,0x0,0x0,0x78,0xe,0xf7, + 0x90,0x0,0x0,0x0,0x0,0x78,0xd0,0xc4,0x10,0x0,0x0,0x0,0x0,0x79,0xee,0xd9, + 0x90,0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6,0x10,0x0,0x0,0x0,0x0,0x7b,0xce,0xbb, + 0x90,0x0,0x0,0x0,0x0,0x7c,0x99,0xc2,0x90,0x0,0x0,0x0,0x0,0x7d,0xae,0x9d, + 0x90,0x0,0x0,0x0,0x0,0x7e,0x79,0xa4,0x90,0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f, + 0x90,0x0,0x2,0x1,0x2,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x7,0x5, + 0x6,0x5,0x6,0x5,0xa,0x8,0x9,0x8,0x9,0x8,0x9,0x8,0xd,0xb,0xc,0xb, + 0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb, + 0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb, + 0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb, + 0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb, + 0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb, + 0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb, + 0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb,0xc,0xb, + 0xc,0xb,0xc,0xb,0xc,0xb,0xc,0x0,0x0,0x4,0x94,0x0,0x0,0x0,0x0,0x12, + 0xa4,0x1,0x4,0x0,0x0,0x4,0x94,0x0,0x8,0x0,0x0,0x12,0xa4,0x1,0x4,0x0, + 0x0,0x4,0x94,0x0,0x8,0x0,0x0,0x4,0xb0,0x0,0xc,0x0,0x0,0x12,0xc0,0x1, + 0x12,0x0,0x0,0x12,0xc0,0x1,0x12,0x0,0x0,0xe,0x10,0x0,0x18,0x0,0x0,0x1c, + 0x20,0x1,0x1c,0x0,0x0,0x1c,0x20,0x1,0x1c,0x0,0x0,0x1c,0x20,0x1,0x1c,0x0, + 0x0,0xe,0x10,0x0,0x18,0x0,0x0,0xe,0x10,0x0,0x18,0x4c,0x4d,0x54,0x0,0x4e, + 0x53,0x54,0x0,0x41,0x4d,0x54,0x0,0x2b,0x30,0x30,0x32,0x30,0x0,0x2b,0x30,0x31, + 0x32,0x30,0x0,0x43,0x45,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x0,0x0,0x0,0x1, + 0x1,0x1,0x1,0x0,0x1,0x1,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0xa,0x43,0x45,0x54,0x2d,0x31,0x43,0x45, + 0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e, + 0x30,0x2f,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Arctic/Longyearbyen + 0x0,0x0,0x8,0xcb, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x82, - 0x46,0xc5,0xf4,0x0,0x1,0x0,0x0,0x1e,0x8c,0x0,0x0,0x0,0x0,0x1c,0x20,0x0, - 0x4,0x4c,0x4d,0x54,0x0,0x43,0x41,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, - 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0x82,0x46,0xc5,0xf4,0x0,0x1,0x0,0x0,0x1e,0x8c,0x0, - 0x0,0x0,0x0,0x1c,0x20,0x0,0x4,0x4c,0x4d,0x54,0x0,0x43,0x41,0x54,0x0,0x0, - 0x0,0x0,0x0,0xa,0x43,0x41,0x54,0x2d,0x32,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Sao_Tome - 0x0,0x0,0x0,0xaa, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x8e,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0x9b, + 0x27,0xe3,0x0,0x9b,0xd4,0x7b,0x60,0xc8,0xb7,0x4d,0x60,0xcc,0xe7,0x4b,0x10,0xcd, + 0xa9,0x17,0x90,0xce,0xa2,0x43,0x10,0xcf,0x92,0x34,0x10,0xd0,0x82,0x25,0x10,0xd1, + 0x72,0x16,0x10,0xd2,0x62,0x7,0x10,0xeb,0xaf,0x20,0x90,0xec,0xa8,0x4c,0x10,0xed, + 0x98,0x3d,0x10,0xee,0x88,0x2e,0x10,0xef,0x78,0x1f,0x10,0xf0,0x68,0x10,0x10,0xf1, + 0x58,0x1,0x10,0xf2,0x47,0xf2,0x10,0xf3,0x37,0xe3,0x10,0xf4,0x27,0xd4,0x10,0xf5, + 0x17,0xc5,0x10,0xf6,0x10,0xf0,0x90,0xf7,0x2f,0x6,0x10,0xf7,0xf0,0xd2,0x90,0x12, + 0xce,0x97,0xf0,0x13,0x4d,0x44,0x10,0x14,0x33,0xfa,0x90,0x15,0x23,0xeb,0x90,0x16, + 0x13,0xdc,0x90,0x17,0x3,0xcd,0x90,0x17,0xf3,0xbe,0x90,0x18,0xe3,0xaf,0x90,0x19, + 0xd3,0xa0,0x90,0x1a,0xc3,0x91,0x90,0x1b,0xbc,0xbd,0x10,0x1c,0xac,0xae,0x10,0x1d, + 0x9c,0x9f,0x10,0x1e,0x8c,0x90,0x10,0x1f,0x7c,0x81,0x10,0x20,0x6c,0x72,0x10,0x21, + 0x5c,0x63,0x10,0x22,0x4c,0x54,0x10,0x23,0x3c,0x45,0x10,0x24,0x2c,0x36,0x10,0x25, + 0x1c,0x27,0x10,0x26,0xc,0x18,0x10,0x27,0x5,0x43,0x90,0x27,0xf5,0x34,0x90,0x28, + 0xe5,0x25,0x90,0x29,0xd5,0x16,0x90,0x2a,0xc5,0x7,0x90,0x2b,0xb4,0xf8,0x90,0x2c, + 0xa4,0xe9,0x90,0x2d,0x94,0xda,0x90,0x2e,0x84,0xcb,0x90,0x2f,0x74,0xbc,0x90,0x30, + 0x64,0xad,0x90,0x31,0x5d,0xd9,0x10,0x32,0x72,0xb4,0x10,0x33,0x3d,0xbb,0x10,0x34, + 0x52,0x96,0x10,0x35,0x1d,0x9d,0x10,0x36,0x32,0x78,0x10,0x36,0xfd,0x7f,0x10,0x38, + 0x1b,0x94,0x90,0x38,0xdd,0x61,0x10,0x39,0xfb,0x76,0x90,0x3a,0xbd,0x43,0x10,0x3b, + 0xdb,0x58,0x90,0x3c,0xa6,0x5f,0x90,0x3d,0xbb,0x3a,0x90,0x3e,0x86,0x41,0x90,0x3f, + 0x9b,0x1c,0x90,0x40,0x66,0x23,0x90,0x41,0x84,0x39,0x10,0x42,0x46,0x5,0x90,0x43, + 0x64,0x1b,0x10,0x44,0x25,0xe7,0x90,0x45,0x43,0xfd,0x10,0x46,0x5,0xc9,0x90,0x47, + 0x23,0xdf,0x10,0x47,0xee,0xe6,0x10,0x49,0x3,0xc1,0x10,0x49,0xce,0xc8,0x10,0x4a, + 0xe3,0xa3,0x10,0x4b,0xae,0xaa,0x10,0x4c,0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e, + 0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50,0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52, + 0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54,0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56, + 0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x58,0x15,0x46,0x10,0x58,0xd7,0x12,0x90,0x59, + 0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c,0xa0,0x11,0x10,0x5d, + 0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60,0x5f,0xd5,0x10,0x61, + 0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64,0x1f,0x99,0x10,0x65, + 0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67,0xe8,0x97,0x90,0x68, + 0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b,0xa8,0x5b,0x90,0x6c, + 0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f,0x68,0x1f,0x90,0x70, + 0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73,0x31,0x1e,0x10,0x74, + 0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76,0xf0,0xe2,0x10,0x78, + 0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a,0xb0,0xa6,0x10,0x7b, + 0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e,0x79,0xa4,0x90,0x7f, + 0x8e,0x7f,0x90,0x2,0x1,0x2,0x1,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x2,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x0,0x0,0xa,0x14,0x0,0x0,0x0,0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe, + 0x10,0x0,0x9,0x0,0x0,0xe,0x10,0x0,0x9,0x0,0x0,0x1c,0x20,0x1,0x4,0x0, + 0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe,0x10,0x0,0x9,0x4c,0x4d,0x54,0x0,0x43, + 0x45,0x53,0x54,0x0,0x43,0x45,0x54,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x0, + 0x0,0x0,0x0,0x0,0x1,0x1,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0, + 0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8f,0x0,0x0,0x0,0x7,0x0,0x0, + 0x0,0xd,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x72,0xee, + 0x24,0x6c,0xff,0xff,0xff,0xff,0x9b,0x27,0xe3,0x0,0xff,0xff,0xff,0xff,0x9b,0xd4, + 0x7b,0x60,0xff,0xff,0xff,0xff,0xc8,0xb7,0x4d,0x60,0xff,0xff,0xff,0xff,0xcc,0xe7, + 0x4b,0x10,0xff,0xff,0xff,0xff,0xcd,0xa9,0x17,0x90,0xff,0xff,0xff,0xff,0xce,0xa2, + 0x43,0x10,0xff,0xff,0xff,0xff,0xcf,0x92,0x34,0x10,0xff,0xff,0xff,0xff,0xd0,0x82, + 0x25,0x10,0xff,0xff,0xff,0xff,0xd1,0x72,0x16,0x10,0xff,0xff,0xff,0xff,0xd2,0x62, + 0x7,0x10,0xff,0xff,0xff,0xff,0xeb,0xaf,0x20,0x90,0xff,0xff,0xff,0xff,0xec,0xa8, + 0x4c,0x10,0xff,0xff,0xff,0xff,0xed,0x98,0x3d,0x10,0xff,0xff,0xff,0xff,0xee,0x88, + 0x2e,0x10,0xff,0xff,0xff,0xff,0xef,0x78,0x1f,0x10,0xff,0xff,0xff,0xff,0xf0,0x68, + 0x10,0x10,0xff,0xff,0xff,0xff,0xf1,0x58,0x1,0x10,0xff,0xff,0xff,0xff,0xf2,0x47, + 0xf2,0x10,0xff,0xff,0xff,0xff,0xf3,0x37,0xe3,0x10,0xff,0xff,0xff,0xff,0xf4,0x27, + 0xd4,0x10,0xff,0xff,0xff,0xff,0xf5,0x17,0xc5,0x10,0xff,0xff,0xff,0xff,0xf6,0x10, + 0xf0,0x90,0xff,0xff,0xff,0xff,0xf7,0x2f,0x6,0x10,0xff,0xff,0xff,0xff,0xf7,0xf0, + 0xd2,0x90,0x0,0x0,0x0,0x0,0x12,0xce,0x97,0xf0,0x0,0x0,0x0,0x0,0x13,0x4d, + 0x44,0x10,0x0,0x0,0x0,0x0,0x14,0x33,0xfa,0x90,0x0,0x0,0x0,0x0,0x15,0x23, + 0xeb,0x90,0x0,0x0,0x0,0x0,0x16,0x13,0xdc,0x90,0x0,0x0,0x0,0x0,0x17,0x3, + 0xcd,0x90,0x0,0x0,0x0,0x0,0x17,0xf3,0xbe,0x90,0x0,0x0,0x0,0x0,0x18,0xe3, + 0xaf,0x90,0x0,0x0,0x0,0x0,0x19,0xd3,0xa0,0x90,0x0,0x0,0x0,0x0,0x1a,0xc3, + 0x91,0x90,0x0,0x0,0x0,0x0,0x1b,0xbc,0xbd,0x10,0x0,0x0,0x0,0x0,0x1c,0xac, + 0xae,0x10,0x0,0x0,0x0,0x0,0x1d,0x9c,0x9f,0x10,0x0,0x0,0x0,0x0,0x1e,0x8c, + 0x90,0x10,0x0,0x0,0x0,0x0,0x1f,0x7c,0x81,0x10,0x0,0x0,0x0,0x0,0x20,0x6c, + 0x72,0x10,0x0,0x0,0x0,0x0,0x21,0x5c,0x63,0x10,0x0,0x0,0x0,0x0,0x22,0x4c, + 0x54,0x10,0x0,0x0,0x0,0x0,0x23,0x3c,0x45,0x10,0x0,0x0,0x0,0x0,0x24,0x2c, + 0x36,0x10,0x0,0x0,0x0,0x0,0x25,0x1c,0x27,0x10,0x0,0x0,0x0,0x0,0x26,0xc, + 0x18,0x10,0x0,0x0,0x0,0x0,0x27,0x5,0x43,0x90,0x0,0x0,0x0,0x0,0x27,0xf5, + 0x34,0x90,0x0,0x0,0x0,0x0,0x28,0xe5,0x25,0x90,0x0,0x0,0x0,0x0,0x29,0xd5, + 0x16,0x90,0x0,0x0,0x0,0x0,0x2a,0xc5,0x7,0x90,0x0,0x0,0x0,0x0,0x2b,0xb4, + 0xf8,0x90,0x0,0x0,0x0,0x0,0x2c,0xa4,0xe9,0x90,0x0,0x0,0x0,0x0,0x2d,0x94, + 0xda,0x90,0x0,0x0,0x0,0x0,0x2e,0x84,0xcb,0x90,0x0,0x0,0x0,0x0,0x2f,0x74, + 0xbc,0x90,0x0,0x0,0x0,0x0,0x30,0x64,0xad,0x90,0x0,0x0,0x0,0x0,0x31,0x5d, + 0xd9,0x10,0x0,0x0,0x0,0x0,0x32,0x72,0xb4,0x10,0x0,0x0,0x0,0x0,0x33,0x3d, + 0xbb,0x10,0x0,0x0,0x0,0x0,0x34,0x52,0x96,0x10,0x0,0x0,0x0,0x0,0x35,0x1d, + 0x9d,0x10,0x0,0x0,0x0,0x0,0x36,0x32,0x78,0x10,0x0,0x0,0x0,0x0,0x36,0xfd, + 0x7f,0x10,0x0,0x0,0x0,0x0,0x38,0x1b,0x94,0x90,0x0,0x0,0x0,0x0,0x38,0xdd, + 0x61,0x10,0x0,0x0,0x0,0x0,0x39,0xfb,0x76,0x90,0x0,0x0,0x0,0x0,0x3a,0xbd, + 0x43,0x10,0x0,0x0,0x0,0x0,0x3b,0xdb,0x58,0x90,0x0,0x0,0x0,0x0,0x3c,0xa6, + 0x5f,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb,0x3a,0x90,0x0,0x0,0x0,0x0,0x3e,0x86, + 0x41,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b,0x1c,0x90,0x0,0x0,0x0,0x0,0x40,0x66, + 0x23,0x90,0x0,0x0,0x0,0x0,0x41,0x84,0x39,0x10,0x0,0x0,0x0,0x0,0x42,0x46, + 0x5,0x90,0x0,0x0,0x0,0x0,0x43,0x64,0x1b,0x10,0x0,0x0,0x0,0x0,0x44,0x25, + 0xe7,0x90,0x0,0x0,0x0,0x0,0x45,0x43,0xfd,0x10,0x0,0x0,0x0,0x0,0x46,0x5, + 0xc9,0x90,0x0,0x0,0x0,0x0,0x47,0x23,0xdf,0x10,0x0,0x0,0x0,0x0,0x47,0xee, + 0xe6,0x10,0x0,0x0,0x0,0x0,0x49,0x3,0xc1,0x10,0x0,0x0,0x0,0x0,0x49,0xce, + 0xc8,0x10,0x0,0x0,0x0,0x0,0x4a,0xe3,0xa3,0x10,0x0,0x0,0x0,0x0,0x4b,0xae, + 0xaa,0x10,0x0,0x0,0x0,0x0,0x4c,0xcc,0xbf,0x90,0x0,0x0,0x0,0x0,0x4d,0x8e, + 0x8c,0x10,0x0,0x0,0x0,0x0,0x4e,0xac,0xa1,0x90,0x0,0x0,0x0,0x0,0x4f,0x6e, + 0x6e,0x10,0x0,0x0,0x0,0x0,0x50,0x8c,0x83,0x90,0x0,0x0,0x0,0x0,0x51,0x57, + 0x8a,0x90,0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53,0x37, + 0x6c,0x90,0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55,0x17, + 0x4e,0x90,0x0,0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56,0xf7, + 0x30,0x90,0x0,0x0,0x0,0x0,0x58,0x15,0x46,0x10,0x0,0x0,0x0,0x0,0x58,0xd7, + 0x12,0x90,0x0,0x0,0x0,0x0,0x59,0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6, + 0xf4,0x90,0x0,0x0,0x0,0x0,0x5b,0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0, + 0x11,0x10,0x0,0x0,0x0,0x0,0x5d,0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f, + 0xf3,0x10,0x0,0x0,0x0,0x0,0x5f,0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f, + 0xd5,0x10,0x0,0x0,0x0,0x0,0x61,0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f, + 0xb7,0x10,0x0,0x0,0x0,0x0,0x63,0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f, + 0x99,0x10,0x0,0x0,0x0,0x0,0x65,0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8, + 0xb5,0x90,0x0,0x0,0x0,0x0,0x67,0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8, + 0x97,0x90,0x0,0x0,0x0,0x0,0x68,0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8, + 0x79,0x90,0x0,0x0,0x0,0x0,0x6a,0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8, + 0x5b,0x90,0x0,0x0,0x0,0x0,0x6c,0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88, + 0x3d,0x90,0x0,0x0,0x0,0x0,0x6e,0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68, + 0x1f,0x90,0x0,0x0,0x0,0x0,0x70,0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51, + 0x3c,0x10,0x0,0x0,0x0,0x0,0x72,0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31, + 0x1e,0x10,0x0,0x0,0x0,0x0,0x74,0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11, + 0x0,0x10,0x0,0x0,0x0,0x0,0x76,0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0, + 0xe2,0x10,0x0,0x0,0x0,0x0,0x78,0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0, + 0xc4,0x10,0x0,0x0,0x0,0x0,0x79,0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0, + 0xa6,0x10,0x0,0x0,0x0,0x0,0x7b,0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99, + 0xc2,0x90,0x0,0x0,0x0,0x0,0x7d,0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79, + 0xa4,0x90,0x0,0x0,0x0,0x0,0x7f,0x8e,0x7f,0x90,0x0,0x2,0x1,0x2,0x1,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x2,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x0,0x0,0xa,0x14,0x0,0x0,0x0, + 0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe,0x10,0x0,0x9,0x0,0x0,0xe,0x10,0x0, + 0x9,0x0,0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0x1c,0x20,0x1,0x4,0x0,0x0,0xe, + 0x10,0x0,0x9,0x4c,0x4d,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x43,0x45,0x54,0x0, + 0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0xa,0x43, + 0x45,0x54,0x2d,0x31,0x43,0x45,0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2c, + 0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30,0x2f,0x33,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Canada/Central + 0x0,0x0,0xb,0x4b, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x92, - 0xe6,0x92,0x48,0x0,0x1,0xff,0xff,0xfc,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x4,0x4c,0x4d,0x54,0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, - 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0x92,0xe6,0x92,0x48,0x0,0x1,0xff,0xff,0xfc,0x38,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x4c,0x4d,0x54,0x0,0x47,0x4d,0x54,0x0,0x0, - 0x0,0x0,0x0,0xa,0x47,0x4d,0x54,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Lusaka - 0x0,0x0,0x0,0xab, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xbb,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0x9b, + 0x1,0xfb,0xe0,0x9b,0xc3,0xba,0x50,0x9e,0xb8,0xa1,0x80,0x9f,0xba,0xf9,0x70,0xc2, + 0xa0,0x3b,0x80,0xc3,0x4f,0x84,0xf0,0xcb,0x88,0xfe,0x80,0xd2,0x23,0xf4,0x70,0xd2, + 0x61,0x9,0xf0,0xd3,0x88,0x68,0x0,0xd4,0x53,0x60,0xf0,0xd5,0x55,0xd5,0x0,0xd6, + 0x20,0xcd,0xf0,0xd7,0x35,0xb7,0x0,0xd8,0x0,0xaf,0xf0,0xd9,0x15,0x99,0x0,0xd9, + 0xe0,0x91,0xf0,0xdb,0x0,0x7,0x0,0xdb,0xc8,0x5c,0xf0,0xdc,0xde,0x97,0x80,0xdd, + 0xa9,0x90,0x70,0xde,0xbe,0x79,0x80,0xdf,0x89,0x72,0x70,0xe0,0x9e,0x5b,0x80,0xe1, + 0x69,0x54,0x70,0xe2,0x7e,0x3d,0x80,0xe3,0x49,0x36,0x70,0xe4,0x5e,0x1f,0x80,0xe5, + 0x29,0x18,0x70,0xe6,0x47,0x3c,0x0,0xe7,0x12,0x34,0xf0,0xe8,0x27,0x1e,0x0,0xe8, + 0xf2,0x16,0xf0,0xea,0x7,0x0,0x0,0xea,0xd1,0xf8,0xf0,0xeb,0xe6,0xe2,0x0,0xec, + 0xd6,0xc4,0xf0,0xed,0xc6,0xc4,0x0,0xee,0x91,0xbc,0xf0,0xf3,0x6f,0xa4,0x80,0xf4, + 0x31,0x62,0xf0,0xf9,0xf,0x4a,0x80,0xfa,0x8,0x76,0x0,0xfa,0xf8,0x67,0x0,0xfb, + 0xe8,0x58,0x0,0xfc,0xd8,0x49,0x0,0xfd,0xc8,0x3a,0x0,0xfe,0xb8,0x2b,0x0,0xff, + 0xa8,0x1c,0x0,0x0,0x98,0xd,0x0,0x1,0x87,0xfe,0x0,0x2,0x77,0xef,0x0,0x3, + 0x71,0x1a,0x80,0x4,0x61,0xb,0x80,0x5,0x50,0xfc,0x80,0x6,0x40,0xed,0x80,0x7, + 0x30,0xde,0x80,0x8,0x20,0xcf,0x80,0x9,0x10,0xc0,0x80,0xa,0x0,0xb1,0x80,0xa, + 0xf0,0xa2,0x80,0xb,0xe0,0x93,0x80,0xc,0xd9,0xbf,0x0,0xd,0xc0,0x75,0x80,0xe, + 0xb9,0xa1,0x0,0xf,0xa9,0x92,0x0,0x10,0x99,0x83,0x0,0x11,0x89,0x74,0x0,0x12, + 0x79,0x65,0x0,0x13,0x69,0x56,0x0,0x14,0x59,0x47,0x0,0x15,0x49,0x38,0x0,0x16, + 0x39,0x29,0x0,0x17,0x29,0x1a,0x0,0x18,0x22,0x45,0x80,0x19,0x8,0xfc,0x0,0x1a, + 0x2,0x27,0x80,0x1a,0xf2,0x18,0x80,0x1b,0xe2,0x9,0x80,0x1c,0xd1,0xfa,0x80,0x1d, + 0xc1,0xeb,0x80,0x1e,0xb1,0xdc,0x80,0x1f,0xa1,0xcd,0x80,0x20,0x76,0xf,0x0,0x21, + 0x81,0xaf,0x80,0x22,0x55,0xf1,0x0,0x23,0x6a,0xcc,0x0,0x24,0x35,0xd3,0x0,0x25, + 0x4a,0xae,0x0,0x26,0x15,0xb5,0x0,0x27,0x2a,0x90,0x0,0x27,0xfe,0xd1,0x80,0x29, + 0xa,0x72,0x0,0x29,0xde,0xb3,0x80,0x2a,0xea,0x54,0x0,0x2b,0xbe,0x95,0x80,0x2c, + 0xd3,0x70,0x80,0x2d,0x9e,0x77,0x80,0x2e,0xb3,0x52,0x80,0x2f,0x7e,0x59,0x80,0x30, + 0x93,0x34,0x80,0x31,0x67,0x76,0x0,0x32,0x73,0x16,0x80,0x33,0x47,0x58,0x0,0x34, + 0x52,0xf8,0x80,0x35,0x27,0x3a,0x0,0x36,0x32,0xda,0x80,0x37,0x7,0x1c,0x0,0x38, + 0x1b,0xf7,0x0,0x38,0xe6,0xfe,0x0,0x39,0xfb,0xd9,0x0,0x3a,0xc6,0xe0,0x0,0x3b, + 0xdb,0xbb,0x0,0x3c,0xaf,0xfc,0x80,0x3d,0xbb,0x9d,0x0,0x3e,0x8f,0xde,0x80,0x3f, + 0x9b,0x7f,0x0,0x40,0x6f,0xc0,0x80,0x41,0x84,0x9b,0x80,0x42,0x4f,0xa2,0x80,0x43, + 0x64,0x7d,0x80,0x43,0xb7,0x6f,0xe0,0x44,0x2f,0x84,0x80,0x45,0x44,0x51,0x70,0x45, + 0xf3,0xb7,0x0,0x47,0x2d,0x6d,0xf0,0x47,0xd3,0x99,0x0,0x49,0xd,0x4f,0xf0,0x49, + 0xb3,0x7b,0x0,0x4a,0xed,0x31,0xf0,0x4b,0x9c,0x97,0x80,0x4c,0xd6,0x4e,0x70,0x4d, + 0x7c,0x79,0x80,0x4e,0xb6,0x30,0x70,0x4f,0x5c,0x5b,0x80,0x50,0x96,0x12,0x70,0x51, + 0x3c,0x3d,0x80,0x52,0x75,0xf4,0x70,0x53,0x1c,0x1f,0x80,0x54,0x55,0xd6,0x70,0x54, + 0xfc,0x1,0x80,0x56,0x35,0xb8,0x70,0x56,0xe5,0x1e,0x0,0x58,0x1e,0xd4,0xf0,0x58, + 0xc5,0x0,0x0,0x59,0xfe,0xb6,0xf0,0x5a,0xa4,0xe2,0x0,0x5b,0xde,0x98,0xf0,0x5c, + 0x84,0xc4,0x0,0x5d,0xbe,0x7a,0xf0,0x5e,0x64,0xa6,0x0,0x5f,0x9e,0x5c,0xf0,0x60, + 0x4d,0xc2,0x80,0x61,0x87,0x79,0x70,0x62,0x2d,0xa4,0x80,0x63,0x67,0x5b,0x70,0x64, + 0xd,0x86,0x80,0x65,0x47,0x3d,0x70,0x65,0xed,0x68,0x80,0x67,0x27,0x1f,0x70,0x67, + 0xcd,0x4a,0x80,0x69,0x7,0x1,0x70,0x69,0xad,0x2c,0x80,0x6a,0xe6,0xe3,0x70,0x6b, + 0x96,0x49,0x0,0x6c,0xcf,0xff,0xf0,0x6d,0x76,0x2b,0x0,0x6e,0xaf,0xe1,0xf0,0x6f, + 0x56,0xd,0x0,0x70,0x8f,0xc3,0xf0,0x71,0x35,0xef,0x0,0x72,0x6f,0xa5,0xf0,0x73, + 0x15,0xd1,0x0,0x74,0x4f,0x87,0xf0,0x74,0xfe,0xed,0x80,0x76,0x38,0xa4,0x70,0x76, + 0xde,0xcf,0x80,0x78,0x18,0x86,0x70,0x78,0xbe,0xb1,0x80,0x79,0xf8,0x68,0x70,0x7a, + 0x9e,0x93,0x80,0x7b,0xd8,0x4a,0x70,0x7c,0x7e,0x75,0x80,0x7d,0xb8,0x2c,0x70,0x7e, + 0x5e,0x57,0x80,0x7f,0x98,0xe,0x70,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0xff,0xff,0xa4,0xec,0x0,0x0,0xff,0xff,0xb9,0xb0,0x1,0x4,0xff,0xff, + 0xab,0xa0,0x0,0x8,0xff,0xff,0xb9,0xb0,0x1,0xc,0xff,0xff,0xb9,0xb0,0x1,0x10, + 0xff,0xff,0xb9,0xb0,0x1,0x4,0xff,0xff,0xab,0xa0,0x0,0x8,0x4c,0x4d,0x54,0x0, + 0x43,0x44,0x54,0x0,0x43,0x53,0x54,0x0,0x43,0x57,0x54,0x0,0x43,0x50,0x54,0x0, + 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x54,0x5a, + 0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xbc,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x14,0xf8,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xff,0xff,0xff,0xff,0x64,0xe4,0xb0,0x94,0xff,0xff,0xff,0xff,0x9b,0x1, + 0xfb,0xe0,0xff,0xff,0xff,0xff,0x9b,0xc3,0xba,0x50,0xff,0xff,0xff,0xff,0x9e,0xb8, + 0xa1,0x80,0xff,0xff,0xff,0xff,0x9f,0xba,0xf9,0x70,0xff,0xff,0xff,0xff,0xc2,0xa0, + 0x3b,0x80,0xff,0xff,0xff,0xff,0xc3,0x4f,0x84,0xf0,0xff,0xff,0xff,0xff,0xcb,0x88, + 0xfe,0x80,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x61, + 0x9,0xf0,0xff,0xff,0xff,0xff,0xd3,0x88,0x68,0x0,0xff,0xff,0xff,0xff,0xd4,0x53, + 0x60,0xf0,0xff,0xff,0xff,0xff,0xd5,0x55,0xd5,0x0,0xff,0xff,0xff,0xff,0xd6,0x20, + 0xcd,0xf0,0xff,0xff,0xff,0xff,0xd7,0x35,0xb7,0x0,0xff,0xff,0xff,0xff,0xd8,0x0, + 0xaf,0xf0,0xff,0xff,0xff,0xff,0xd9,0x15,0x99,0x0,0xff,0xff,0xff,0xff,0xd9,0xe0, + 0x91,0xf0,0xff,0xff,0xff,0xff,0xdb,0x0,0x7,0x0,0xff,0xff,0xff,0xff,0xdb,0xc8, + 0x5c,0xf0,0xff,0xff,0xff,0xff,0xdc,0xde,0x97,0x80,0xff,0xff,0xff,0xff,0xdd,0xa9, + 0x90,0x70,0xff,0xff,0xff,0xff,0xde,0xbe,0x79,0x80,0xff,0xff,0xff,0xff,0xdf,0x89, + 0x72,0x70,0xff,0xff,0xff,0xff,0xe0,0x9e,0x5b,0x80,0xff,0xff,0xff,0xff,0xe1,0x69, + 0x54,0x70,0xff,0xff,0xff,0xff,0xe2,0x7e,0x3d,0x80,0xff,0xff,0xff,0xff,0xe3,0x49, + 0x36,0x70,0xff,0xff,0xff,0xff,0xe4,0x5e,0x1f,0x80,0xff,0xff,0xff,0xff,0xe5,0x29, + 0x18,0x70,0xff,0xff,0xff,0xff,0xe6,0x47,0x3c,0x0,0xff,0xff,0xff,0xff,0xe7,0x12, + 0x34,0xf0,0xff,0xff,0xff,0xff,0xe8,0x27,0x1e,0x0,0xff,0xff,0xff,0xff,0xe8,0xf2, + 0x16,0xf0,0xff,0xff,0xff,0xff,0xea,0x7,0x0,0x0,0xff,0xff,0xff,0xff,0xea,0xd1, + 0xf8,0xf0,0xff,0xff,0xff,0xff,0xeb,0xe6,0xe2,0x0,0xff,0xff,0xff,0xff,0xec,0xd6, + 0xc4,0xf0,0xff,0xff,0xff,0xff,0xed,0xc6,0xc4,0x0,0xff,0xff,0xff,0xff,0xee,0x91, + 0xbc,0xf0,0xff,0xff,0xff,0xff,0xf3,0x6f,0xa4,0x80,0xff,0xff,0xff,0xff,0xf4,0x31, + 0x62,0xf0,0xff,0xff,0xff,0xff,0xf9,0xf,0x4a,0x80,0xff,0xff,0xff,0xff,0xfa,0x8, + 0x76,0x0,0xff,0xff,0xff,0xff,0xfa,0xf8,0x67,0x0,0xff,0xff,0xff,0xff,0xfb,0xe8, + 0x58,0x0,0xff,0xff,0xff,0xff,0xfc,0xd8,0x49,0x0,0xff,0xff,0xff,0xff,0xfd,0xc8, + 0x3a,0x0,0xff,0xff,0xff,0xff,0xfe,0xb8,0x2b,0x0,0xff,0xff,0xff,0xff,0xff,0xa8, + 0x1c,0x0,0x0,0x0,0x0,0x0,0x0,0x98,0xd,0x0,0x0,0x0,0x0,0x0,0x1,0x87, + 0xfe,0x0,0x0,0x0,0x0,0x0,0x2,0x77,0xef,0x0,0x0,0x0,0x0,0x0,0x3,0x71, + 0x1a,0x80,0x0,0x0,0x0,0x0,0x4,0x61,0xb,0x80,0x0,0x0,0x0,0x0,0x5,0x50, + 0xfc,0x80,0x0,0x0,0x0,0x0,0x6,0x40,0xed,0x80,0x0,0x0,0x0,0x0,0x7,0x30, + 0xde,0x80,0x0,0x0,0x0,0x0,0x8,0x20,0xcf,0x80,0x0,0x0,0x0,0x0,0x9,0x10, + 0xc0,0x80,0x0,0x0,0x0,0x0,0xa,0x0,0xb1,0x80,0x0,0x0,0x0,0x0,0xa,0xf0, + 0xa2,0x80,0x0,0x0,0x0,0x0,0xb,0xe0,0x93,0x80,0x0,0x0,0x0,0x0,0xc,0xd9, + 0xbf,0x0,0x0,0x0,0x0,0x0,0xd,0xc0,0x75,0x80,0x0,0x0,0x0,0x0,0xe,0xb9, + 0xa1,0x0,0x0,0x0,0x0,0x0,0xf,0xa9,0x92,0x0,0x0,0x0,0x0,0x0,0x10,0x99, + 0x83,0x0,0x0,0x0,0x0,0x0,0x11,0x89,0x74,0x0,0x0,0x0,0x0,0x0,0x12,0x79, + 0x65,0x0,0x0,0x0,0x0,0x0,0x13,0x69,0x56,0x0,0x0,0x0,0x0,0x0,0x14,0x59, + 0x47,0x0,0x0,0x0,0x0,0x0,0x15,0x49,0x38,0x0,0x0,0x0,0x0,0x0,0x16,0x39, + 0x29,0x0,0x0,0x0,0x0,0x0,0x17,0x29,0x1a,0x0,0x0,0x0,0x0,0x0,0x18,0x22, + 0x45,0x80,0x0,0x0,0x0,0x0,0x19,0x8,0xfc,0x0,0x0,0x0,0x0,0x0,0x1a,0x2, + 0x27,0x80,0x0,0x0,0x0,0x0,0x1a,0xf2,0x18,0x80,0x0,0x0,0x0,0x0,0x1b,0xe2, + 0x9,0x80,0x0,0x0,0x0,0x0,0x1c,0xd1,0xfa,0x80,0x0,0x0,0x0,0x0,0x1d,0xc1, + 0xeb,0x80,0x0,0x0,0x0,0x0,0x1e,0xb1,0xdc,0x80,0x0,0x0,0x0,0x0,0x1f,0xa1, + 0xcd,0x80,0x0,0x0,0x0,0x0,0x20,0x76,0xf,0x0,0x0,0x0,0x0,0x0,0x21,0x81, + 0xaf,0x80,0x0,0x0,0x0,0x0,0x22,0x55,0xf1,0x0,0x0,0x0,0x0,0x0,0x23,0x6a, + 0xcc,0x0,0x0,0x0,0x0,0x0,0x24,0x35,0xd3,0x0,0x0,0x0,0x0,0x0,0x25,0x4a, + 0xae,0x0,0x0,0x0,0x0,0x0,0x26,0x15,0xb5,0x0,0x0,0x0,0x0,0x0,0x27,0x2a, + 0x90,0x0,0x0,0x0,0x0,0x0,0x27,0xfe,0xd1,0x80,0x0,0x0,0x0,0x0,0x29,0xa, + 0x72,0x0,0x0,0x0,0x0,0x0,0x29,0xde,0xb3,0x80,0x0,0x0,0x0,0x0,0x2a,0xea, + 0x54,0x0,0x0,0x0,0x0,0x0,0x2b,0xbe,0x95,0x80,0x0,0x0,0x0,0x0,0x2c,0xd3, + 0x70,0x80,0x0,0x0,0x0,0x0,0x2d,0x9e,0x77,0x80,0x0,0x0,0x0,0x0,0x2e,0xb3, + 0x52,0x80,0x0,0x0,0x0,0x0,0x2f,0x7e,0x59,0x80,0x0,0x0,0x0,0x0,0x30,0x93, + 0x34,0x80,0x0,0x0,0x0,0x0,0x31,0x67,0x76,0x0,0x0,0x0,0x0,0x0,0x32,0x73, + 0x16,0x80,0x0,0x0,0x0,0x0,0x33,0x47,0x58,0x0,0x0,0x0,0x0,0x0,0x34,0x52, + 0xf8,0x80,0x0,0x0,0x0,0x0,0x35,0x27,0x3a,0x0,0x0,0x0,0x0,0x0,0x36,0x32, + 0xda,0x80,0x0,0x0,0x0,0x0,0x37,0x7,0x1c,0x0,0x0,0x0,0x0,0x0,0x38,0x1b, + 0xf7,0x0,0x0,0x0,0x0,0x0,0x38,0xe6,0xfe,0x0,0x0,0x0,0x0,0x0,0x39,0xfb, + 0xd9,0x0,0x0,0x0,0x0,0x0,0x3a,0xc6,0xe0,0x0,0x0,0x0,0x0,0x0,0x3b,0xdb, + 0xbb,0x0,0x0,0x0,0x0,0x0,0x3c,0xaf,0xfc,0x80,0x0,0x0,0x0,0x0,0x3d,0xbb, + 0x9d,0x0,0x0,0x0,0x0,0x0,0x3e,0x8f,0xde,0x80,0x0,0x0,0x0,0x0,0x3f,0x9b, + 0x7f,0x0,0x0,0x0,0x0,0x0,0x40,0x6f,0xc0,0x80,0x0,0x0,0x0,0x0,0x41,0x84, + 0x9b,0x80,0x0,0x0,0x0,0x0,0x42,0x4f,0xa2,0x80,0x0,0x0,0x0,0x0,0x43,0x64, + 0x7d,0x80,0x0,0x0,0x0,0x0,0x43,0xb7,0x6f,0xe0,0x0,0x0,0x0,0x0,0x44,0x2f, + 0x84,0x80,0x0,0x0,0x0,0x0,0x45,0x44,0x51,0x70,0x0,0x0,0x0,0x0,0x45,0xf3, + 0xb7,0x0,0x0,0x0,0x0,0x0,0x47,0x2d,0x6d,0xf0,0x0,0x0,0x0,0x0,0x47,0xd3, + 0x99,0x0,0x0,0x0,0x0,0x0,0x49,0xd,0x4f,0xf0,0x0,0x0,0x0,0x0,0x49,0xb3, + 0x7b,0x0,0x0,0x0,0x0,0x0,0x4a,0xed,0x31,0xf0,0x0,0x0,0x0,0x0,0x4b,0x9c, + 0x97,0x80,0x0,0x0,0x0,0x0,0x4c,0xd6,0x4e,0x70,0x0,0x0,0x0,0x0,0x4d,0x7c, + 0x79,0x80,0x0,0x0,0x0,0x0,0x4e,0xb6,0x30,0x70,0x0,0x0,0x0,0x0,0x4f,0x5c, + 0x5b,0x80,0x0,0x0,0x0,0x0,0x50,0x96,0x12,0x70,0x0,0x0,0x0,0x0,0x51,0x3c, + 0x3d,0x80,0x0,0x0,0x0,0x0,0x52,0x75,0xf4,0x70,0x0,0x0,0x0,0x0,0x53,0x1c, + 0x1f,0x80,0x0,0x0,0x0,0x0,0x54,0x55,0xd6,0x70,0x0,0x0,0x0,0x0,0x54,0xfc, + 0x1,0x80,0x0,0x0,0x0,0x0,0x56,0x35,0xb8,0x70,0x0,0x0,0x0,0x0,0x56,0xe5, + 0x1e,0x0,0x0,0x0,0x0,0x0,0x58,0x1e,0xd4,0xf0,0x0,0x0,0x0,0x0,0x58,0xc5, + 0x0,0x0,0x0,0x0,0x0,0x0,0x59,0xfe,0xb6,0xf0,0x0,0x0,0x0,0x0,0x5a,0xa4, + 0xe2,0x0,0x0,0x0,0x0,0x0,0x5b,0xde,0x98,0xf0,0x0,0x0,0x0,0x0,0x5c,0x84, + 0xc4,0x0,0x0,0x0,0x0,0x0,0x5d,0xbe,0x7a,0xf0,0x0,0x0,0x0,0x0,0x5e,0x64, + 0xa6,0x0,0x0,0x0,0x0,0x0,0x5f,0x9e,0x5c,0xf0,0x0,0x0,0x0,0x0,0x60,0x4d, + 0xc2,0x80,0x0,0x0,0x0,0x0,0x61,0x87,0x79,0x70,0x0,0x0,0x0,0x0,0x62,0x2d, + 0xa4,0x80,0x0,0x0,0x0,0x0,0x63,0x67,0x5b,0x70,0x0,0x0,0x0,0x0,0x64,0xd, + 0x86,0x80,0x0,0x0,0x0,0x0,0x65,0x47,0x3d,0x70,0x0,0x0,0x0,0x0,0x65,0xed, + 0x68,0x80,0x0,0x0,0x0,0x0,0x67,0x27,0x1f,0x70,0x0,0x0,0x0,0x0,0x67,0xcd, + 0x4a,0x80,0x0,0x0,0x0,0x0,0x69,0x7,0x1,0x70,0x0,0x0,0x0,0x0,0x69,0xad, + 0x2c,0x80,0x0,0x0,0x0,0x0,0x6a,0xe6,0xe3,0x70,0x0,0x0,0x0,0x0,0x6b,0x96, + 0x49,0x0,0x0,0x0,0x0,0x0,0x6c,0xcf,0xff,0xf0,0x0,0x0,0x0,0x0,0x6d,0x76, + 0x2b,0x0,0x0,0x0,0x0,0x0,0x6e,0xaf,0xe1,0xf0,0x0,0x0,0x0,0x0,0x6f,0x56, + 0xd,0x0,0x0,0x0,0x0,0x0,0x70,0x8f,0xc3,0xf0,0x0,0x0,0x0,0x0,0x71,0x35, + 0xef,0x0,0x0,0x0,0x0,0x0,0x72,0x6f,0xa5,0xf0,0x0,0x0,0x0,0x0,0x73,0x15, + 0xd1,0x0,0x0,0x0,0x0,0x0,0x74,0x4f,0x87,0xf0,0x0,0x0,0x0,0x0,0x74,0xfe, + 0xed,0x80,0x0,0x0,0x0,0x0,0x76,0x38,0xa4,0x70,0x0,0x0,0x0,0x0,0x76,0xde, + 0xcf,0x80,0x0,0x0,0x0,0x0,0x78,0x18,0x86,0x70,0x0,0x0,0x0,0x0,0x78,0xbe, + 0xb1,0x80,0x0,0x0,0x0,0x0,0x79,0xf8,0x68,0x70,0x0,0x0,0x0,0x0,0x7a,0x9e, + 0x93,0x80,0x0,0x0,0x0,0x0,0x7b,0xd8,0x4a,0x70,0x0,0x0,0x0,0x0,0x7c,0x7e, + 0x75,0x80,0x0,0x0,0x0,0x0,0x7d,0xb8,0x2c,0x70,0x0,0x0,0x0,0x0,0x7e,0x5e, + 0x57,0x80,0x0,0x0,0x0,0x0,0x7f,0x98,0xe,0x70,0x0,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x3,0x4,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0xa4,0xec,0x0,0x0,0xff,0xff,0xb9,0xb0, + 0x1,0x4,0xff,0xff,0xab,0xa0,0x0,0x8,0xff,0xff,0xb9,0xb0,0x1,0xc,0xff,0xff, + 0xb9,0xb0,0x1,0x10,0xff,0xff,0xb9,0xb0,0x1,0x4,0xff,0xff,0xab,0xa0,0x0,0x8, + 0x4c,0x4d,0x54,0x0,0x43,0x44,0x54,0x0,0x43,0x53,0x54,0x0,0x43,0x57,0x54,0x0, + 0x43,0x50,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x1, + 0x0,0x0,0xa,0x43,0x53,0x54,0x36,0x43,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e, + 0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Canada/Eastern + 0x0,0x0,0xd,0xaf, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x82, - 0x46,0xc5,0xf4,0x0,0x1,0x0,0x0,0x1e,0x8c,0x0,0x0,0x0,0x0,0x1c,0x20,0x0, - 0x4,0x4c,0x4d,0x54,0x0,0x43,0x41,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, - 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0x82,0x46,0xc5,0xf4,0x0,0x1,0x0,0x0,0x1e,0x8c,0x0, - 0x0,0x0,0x0,0x1c,0x20,0x0,0x4,0x4c,0x4d,0x54,0x0,0x43,0x41,0x54,0x0,0x0, - 0x0,0x0,0x0,0xa,0x43,0x41,0x54,0x2d,0x32,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Freetown - 0x0,0x0,0x0,0xaa, + 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xe9,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0x9e, + 0xb8,0x93,0x70,0x9f,0xba,0xeb,0x60,0xa0,0x87,0x2e,0xc8,0xa1,0x9a,0xb1,0x40,0xa2, + 0x94,0x6,0xf0,0xa3,0x55,0xa9,0x40,0xa4,0x86,0x5d,0xf0,0xa5,0x28,0x78,0x60,0xa6, + 0x66,0x3f,0xf0,0xa7,0xc,0x4e,0xe0,0xa8,0x46,0x21,0xf0,0xa8,0xec,0x30,0xe0,0xaa, + 0x1c,0xc9,0x70,0xaa,0xd5,0x4d,0x60,0xab,0xfc,0xab,0x70,0xac,0xb5,0x2f,0x60,0xad, + 0xdc,0x8d,0x70,0xae,0x95,0x11,0x60,0xaf,0xbc,0x6f,0x70,0xb0,0x7e,0x2d,0xe0,0xb1, + 0x9c,0x51,0x70,0xb2,0x67,0x4a,0x60,0xb3,0x7c,0x33,0x70,0xb4,0x47,0x2c,0x60,0xb5, + 0x5c,0x15,0x70,0xb6,0x27,0xe,0x60,0xb7,0x3b,0xf7,0x70,0xb8,0x6,0xf0,0x60,0xb9, + 0x25,0x13,0xf0,0xb9,0xe6,0xd2,0x60,0xbb,0x4,0xf5,0xf0,0xbb,0xcf,0xee,0xe0,0xbc, + 0xe4,0xd7,0xf0,0xbd,0xaf,0xd0,0xe0,0xbe,0xc4,0xb9,0xf0,0xbf,0x8f,0xb2,0xe0,0xc0, + 0xa4,0x9b,0xf0,0xc1,0x6f,0x94,0xe0,0xc2,0x84,0x7d,0xf0,0xc3,0x4f,0x76,0xe0,0xc4, + 0x64,0x5f,0xf0,0xc5,0x2f,0x58,0xe0,0xc6,0x4d,0x7c,0x70,0xc7,0xf,0x3a,0xe0,0xc8, + 0x2d,0x5e,0x70,0xcb,0x88,0xf0,0x70,0xd2,0x23,0xf4,0x70,0xd2,0x60,0xfb,0xe0,0xd3, + 0x75,0xe4,0xf0,0xd4,0x40,0xdd,0xe0,0xd5,0x55,0xaa,0xd0,0xd6,0x20,0xa3,0xc0,0xd7, + 0x35,0x8c,0xd0,0xd8,0x0,0x85,0xc0,0xd9,0x15,0x6e,0xd0,0xda,0x33,0x76,0x40,0xda, + 0xfe,0xa7,0x70,0xdc,0x13,0x74,0x60,0xdc,0xde,0x89,0x70,0xdd,0xa9,0x82,0x60,0xde, + 0xbe,0x6b,0x70,0xdf,0x89,0x64,0x60,0xe0,0x9e,0x4d,0x70,0xe1,0x69,0x46,0x60,0xe2, + 0x7e,0x2f,0x70,0xe3,0x49,0x28,0x60,0xe4,0x5e,0x11,0x70,0xe5,0x29,0xa,0x60,0xe6, + 0x47,0x2d,0xf0,0xe7,0x12,0x26,0xe0,0xe8,0x27,0xf,0xf0,0xe9,0x16,0xf2,0xe0,0xea, + 0x6,0xf1,0xf0,0xea,0xf6,0xd4,0xe0,0xeb,0xe6,0xd3,0xf0,0xec,0xd6,0xb6,0xe0,0xed, + 0xc6,0xb5,0xf0,0xee,0xbf,0xd3,0x60,0xef,0xaf,0xd2,0x70,0xf0,0x9f,0xb5,0x60,0xf1, + 0x8f,0xb4,0x70,0xf2,0x7f,0x97,0x60,0xf3,0x6f,0x96,0x70,0xf4,0x5f,0x79,0x60,0xf5, + 0x4f,0x78,0x70,0xf6,0x3f,0x5b,0x60,0xf7,0x2f,0x5a,0x70,0xf8,0x28,0x77,0xe0,0xf9, + 0xf,0x3c,0x70,0xfa,0x8,0x59,0xe0,0xfa,0xf8,0x58,0xf0,0xfb,0xe8,0x3b,0xe0,0xfc, + 0xd8,0x3a,0xf0,0xfd,0xc8,0x1d,0xe0,0xfe,0xb8,0x1c,0xf0,0xff,0xa7,0xff,0xe0,0x0, + 0x97,0xfe,0xf0,0x1,0x87,0xe1,0xe0,0x2,0x77,0xe0,0xf0,0x3,0x70,0xfe,0x60,0x4, + 0x60,0xfd,0x70,0x5,0x50,0xe0,0x60,0x6,0x40,0xdf,0x70,0x7,0x30,0xc2,0x60,0x8, + 0x20,0xc1,0x70,0x9,0x10,0xa4,0x60,0xa,0x0,0xa3,0x70,0xa,0xf0,0x86,0x60,0xb, + 0xe0,0x85,0x70,0xc,0xd9,0xa2,0xe0,0xd,0xc0,0x67,0x70,0xe,0xb9,0x84,0xe0,0xf, + 0xa9,0x83,0xf0,0x10,0x99,0x66,0xe0,0x11,0x89,0x65,0xf0,0x12,0x79,0x48,0xe0,0x13, + 0x69,0x47,0xf0,0x14,0x59,0x2a,0xe0,0x15,0x49,0x29,0xf0,0x16,0x39,0xc,0xe0,0x17, + 0x29,0xb,0xf0,0x18,0x22,0x29,0x60,0x19,0x8,0xed,0xf0,0x1a,0x2,0xb,0x60,0x1a, + 0xf2,0xa,0x70,0x1b,0xe1,0xed,0x60,0x1c,0xd1,0xec,0x70,0x1d,0xc1,0xcf,0x60,0x1e, + 0xb1,0xce,0x70,0x1f,0xa1,0xb1,0x60,0x20,0x76,0x0,0xf0,0x21,0x81,0x93,0x60,0x22, + 0x55,0xe2,0xf0,0x23,0x6a,0xaf,0xe0,0x24,0x35,0xc4,0xf0,0x25,0x4a,0x91,0xe0,0x26, + 0x15,0xa6,0xf0,0x27,0x2a,0x73,0xe0,0x27,0xfe,0xc3,0x70,0x29,0xa,0x55,0xe0,0x29, + 0xde,0xa5,0x70,0x2a,0xea,0x37,0xe0,0x2b,0xbe,0x87,0x70,0x2c,0xd3,0x54,0x60,0x2d, + 0x9e,0x69,0x70,0x2e,0xb3,0x36,0x60,0x2f,0x7e,0x4b,0x70,0x30,0x93,0x18,0x60,0x31, + 0x67,0x67,0xf0,0x32,0x72,0xfa,0x60,0x33,0x47,0x49,0xf0,0x34,0x52,0xdc,0x60,0x35, + 0x27,0x2b,0xf0,0x36,0x32,0xbe,0x60,0x37,0x7,0xd,0xf0,0x38,0x1b,0xda,0xe0,0x38, + 0xe6,0xef,0xf0,0x39,0xfb,0xbc,0xe0,0x3a,0xc6,0xd1,0xf0,0x3b,0xdb,0x9e,0xe0,0x3c, + 0xaf,0xee,0x70,0x3d,0xbb,0x80,0xe0,0x3e,0x8f,0xd0,0x70,0x3f,0x9b,0x62,0xe0,0x40, + 0x6f,0xb2,0x70,0x41,0x84,0x7f,0x60,0x42,0x4f,0x94,0x70,0x43,0x64,0x61,0x60,0x44, + 0x2f,0x76,0x70,0x45,0x44,0x43,0x60,0x45,0xf3,0xa8,0xf0,0x47,0x2d,0x5f,0xe0,0x47, + 0xd3,0x8a,0xf0,0x49,0xd,0x41,0xe0,0x49,0xb3,0x6c,0xf0,0x4a,0xed,0x23,0xe0,0x4b, + 0x9c,0x89,0x70,0x4c,0xd6,0x40,0x60,0x4d,0x7c,0x6b,0x70,0x4e,0xb6,0x22,0x60,0x4f, + 0x5c,0x4d,0x70,0x50,0x96,0x4,0x60,0x51,0x3c,0x2f,0x70,0x52,0x75,0xe6,0x60,0x53, + 0x1c,0x11,0x70,0x54,0x55,0xc8,0x60,0x54,0xfb,0xf3,0x70,0x56,0x35,0xaa,0x60,0x56, + 0xe5,0xf,0xf0,0x58,0x1e,0xc6,0xe0,0x58,0xc4,0xf1,0xf0,0x59,0xfe,0xa8,0xe0,0x5a, + 0xa4,0xd3,0xf0,0x5b,0xde,0x8a,0xe0,0x5c,0x84,0xb5,0xf0,0x5d,0xbe,0x6c,0xe0,0x5e, + 0x64,0x97,0xf0,0x5f,0x9e,0x4e,0xe0,0x60,0x4d,0xb4,0x70,0x61,0x87,0x6b,0x60,0x62, + 0x2d,0x96,0x70,0x63,0x67,0x4d,0x60,0x64,0xd,0x78,0x70,0x65,0x47,0x2f,0x60,0x65, + 0xed,0x5a,0x70,0x67,0x27,0x11,0x60,0x67,0xcd,0x3c,0x70,0x69,0x6,0xf3,0x60,0x69, + 0xad,0x1e,0x70,0x6a,0xe6,0xd5,0x60,0x6b,0x96,0x3a,0xf0,0x6c,0xcf,0xf1,0xe0,0x6d, + 0x76,0x1c,0xf0,0x6e,0xaf,0xd3,0xe0,0x6f,0x55,0xfe,0xf0,0x70,0x8f,0xb5,0xe0,0x71, + 0x35,0xe0,0xf0,0x72,0x6f,0x97,0xe0,0x73,0x15,0xc2,0xf0,0x74,0x4f,0x79,0xe0,0x74, + 0xfe,0xdf,0x70,0x76,0x38,0x96,0x60,0x76,0xde,0xc1,0x70,0x78,0x18,0x78,0x60,0x78, + 0xbe,0xa3,0x70,0x79,0xf8,0x5a,0x60,0x7a,0x9e,0x85,0x70,0x7b,0xd8,0x3c,0x60,0x7c, + 0x7e,0x67,0x70,0x7d,0xb8,0x1e,0x60,0x7e,0x5e,0x49,0x70,0x7f,0x98,0x0,0x60,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x3,0x4,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0xb5,0x94,0x0,0x0,0xff,0xff, + 0xc7,0xc0,0x1,0x4,0xff,0xff,0xb9,0xb0,0x0,0x8,0xff,0xff,0xc7,0xc0,0x1,0xc, + 0xff,0xff,0xc7,0xc0,0x1,0x10,0x4c,0x4d,0x54,0x0,0x45,0x44,0x54,0x0,0x45,0x53, + 0x54,0x0,0x45,0x57,0x54,0x0,0x45,0x50,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0, + 0x0,0x0,0x0,0x1,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xea,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14, + 0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x72,0xee,0x78,0xec, + 0xff,0xff,0xff,0xff,0x9e,0xb8,0x93,0x70,0xff,0xff,0xff,0xff,0x9f,0xba,0xeb,0x60, + 0xff,0xff,0xff,0xff,0xa0,0x87,0x2e,0xc8,0xff,0xff,0xff,0xff,0xa1,0x9a,0xb1,0x40, + 0xff,0xff,0xff,0xff,0xa2,0x94,0x6,0xf0,0xff,0xff,0xff,0xff,0xa3,0x55,0xa9,0x40, + 0xff,0xff,0xff,0xff,0xa4,0x86,0x5d,0xf0,0xff,0xff,0xff,0xff,0xa5,0x28,0x78,0x60, + 0xff,0xff,0xff,0xff,0xa6,0x66,0x3f,0xf0,0xff,0xff,0xff,0xff,0xa7,0xc,0x4e,0xe0, + 0xff,0xff,0xff,0xff,0xa8,0x46,0x21,0xf0,0xff,0xff,0xff,0xff,0xa8,0xec,0x30,0xe0, + 0xff,0xff,0xff,0xff,0xaa,0x1c,0xc9,0x70,0xff,0xff,0xff,0xff,0xaa,0xd5,0x4d,0x60, + 0xff,0xff,0xff,0xff,0xab,0xfc,0xab,0x70,0xff,0xff,0xff,0xff,0xac,0xb5,0x2f,0x60, + 0xff,0xff,0xff,0xff,0xad,0xdc,0x8d,0x70,0xff,0xff,0xff,0xff,0xae,0x95,0x11,0x60, + 0xff,0xff,0xff,0xff,0xaf,0xbc,0x6f,0x70,0xff,0xff,0xff,0xff,0xb0,0x7e,0x2d,0xe0, + 0xff,0xff,0xff,0xff,0xb1,0x9c,0x51,0x70,0xff,0xff,0xff,0xff,0xb2,0x67,0x4a,0x60, + 0xff,0xff,0xff,0xff,0xb3,0x7c,0x33,0x70,0xff,0xff,0xff,0xff,0xb4,0x47,0x2c,0x60, + 0xff,0xff,0xff,0xff,0xb5,0x5c,0x15,0x70,0xff,0xff,0xff,0xff,0xb6,0x27,0xe,0x60, + 0xff,0xff,0xff,0xff,0xb7,0x3b,0xf7,0x70,0xff,0xff,0xff,0xff,0xb8,0x6,0xf0,0x60, + 0xff,0xff,0xff,0xff,0xb9,0x25,0x13,0xf0,0xff,0xff,0xff,0xff,0xb9,0xe6,0xd2,0x60, + 0xff,0xff,0xff,0xff,0xbb,0x4,0xf5,0xf0,0xff,0xff,0xff,0xff,0xbb,0xcf,0xee,0xe0, + 0xff,0xff,0xff,0xff,0xbc,0xe4,0xd7,0xf0,0xff,0xff,0xff,0xff,0xbd,0xaf,0xd0,0xe0, + 0xff,0xff,0xff,0xff,0xbe,0xc4,0xb9,0xf0,0xff,0xff,0xff,0xff,0xbf,0x8f,0xb2,0xe0, + 0xff,0xff,0xff,0xff,0xc0,0xa4,0x9b,0xf0,0xff,0xff,0xff,0xff,0xc1,0x6f,0x94,0xe0, + 0xff,0xff,0xff,0xff,0xc2,0x84,0x7d,0xf0,0xff,0xff,0xff,0xff,0xc3,0x4f,0x76,0xe0, + 0xff,0xff,0xff,0xff,0xc4,0x64,0x5f,0xf0,0xff,0xff,0xff,0xff,0xc5,0x2f,0x58,0xe0, + 0xff,0xff,0xff,0xff,0xc6,0x4d,0x7c,0x70,0xff,0xff,0xff,0xff,0xc7,0xf,0x3a,0xe0, + 0xff,0xff,0xff,0xff,0xc8,0x2d,0x5e,0x70,0xff,0xff,0xff,0xff,0xcb,0x88,0xf0,0x70, + 0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x60,0xfb,0xe0, + 0xff,0xff,0xff,0xff,0xd3,0x75,0xe4,0xf0,0xff,0xff,0xff,0xff,0xd4,0x40,0xdd,0xe0, + 0xff,0xff,0xff,0xff,0xd5,0x55,0xaa,0xd0,0xff,0xff,0xff,0xff,0xd6,0x20,0xa3,0xc0, + 0xff,0xff,0xff,0xff,0xd7,0x35,0x8c,0xd0,0xff,0xff,0xff,0xff,0xd8,0x0,0x85,0xc0, + 0xff,0xff,0xff,0xff,0xd9,0x15,0x6e,0xd0,0xff,0xff,0xff,0xff,0xda,0x33,0x76,0x40, + 0xff,0xff,0xff,0xff,0xda,0xfe,0xa7,0x70,0xff,0xff,0xff,0xff,0xdc,0x13,0x74,0x60, + 0xff,0xff,0xff,0xff,0xdc,0xde,0x89,0x70,0xff,0xff,0xff,0xff,0xdd,0xa9,0x82,0x60, + 0xff,0xff,0xff,0xff,0xde,0xbe,0x6b,0x70,0xff,0xff,0xff,0xff,0xdf,0x89,0x64,0x60, + 0xff,0xff,0xff,0xff,0xe0,0x9e,0x4d,0x70,0xff,0xff,0xff,0xff,0xe1,0x69,0x46,0x60, + 0xff,0xff,0xff,0xff,0xe2,0x7e,0x2f,0x70,0xff,0xff,0xff,0xff,0xe3,0x49,0x28,0x60, + 0xff,0xff,0xff,0xff,0xe4,0x5e,0x11,0x70,0xff,0xff,0xff,0xff,0xe5,0x29,0xa,0x60, + 0xff,0xff,0xff,0xff,0xe6,0x47,0x2d,0xf0,0xff,0xff,0xff,0xff,0xe7,0x12,0x26,0xe0, + 0xff,0xff,0xff,0xff,0xe8,0x27,0xf,0xf0,0xff,0xff,0xff,0xff,0xe9,0x16,0xf2,0xe0, + 0xff,0xff,0xff,0xff,0xea,0x6,0xf1,0xf0,0xff,0xff,0xff,0xff,0xea,0xf6,0xd4,0xe0, + 0xff,0xff,0xff,0xff,0xeb,0xe6,0xd3,0xf0,0xff,0xff,0xff,0xff,0xec,0xd6,0xb6,0xe0, + 0xff,0xff,0xff,0xff,0xed,0xc6,0xb5,0xf0,0xff,0xff,0xff,0xff,0xee,0xbf,0xd3,0x60, + 0xff,0xff,0xff,0xff,0xef,0xaf,0xd2,0x70,0xff,0xff,0xff,0xff,0xf0,0x9f,0xb5,0x60, + 0xff,0xff,0xff,0xff,0xf1,0x8f,0xb4,0x70,0xff,0xff,0xff,0xff,0xf2,0x7f,0x97,0x60, + 0xff,0xff,0xff,0xff,0xf3,0x6f,0x96,0x70,0xff,0xff,0xff,0xff,0xf4,0x5f,0x79,0x60, + 0xff,0xff,0xff,0xff,0xf5,0x4f,0x78,0x70,0xff,0xff,0xff,0xff,0xf6,0x3f,0x5b,0x60, + 0xff,0xff,0xff,0xff,0xf7,0x2f,0x5a,0x70,0xff,0xff,0xff,0xff,0xf8,0x28,0x77,0xe0, + 0xff,0xff,0xff,0xff,0xf9,0xf,0x3c,0x70,0xff,0xff,0xff,0xff,0xfa,0x8,0x59,0xe0, + 0xff,0xff,0xff,0xff,0xfa,0xf8,0x58,0xf0,0xff,0xff,0xff,0xff,0xfb,0xe8,0x3b,0xe0, + 0xff,0xff,0xff,0xff,0xfc,0xd8,0x3a,0xf0,0xff,0xff,0xff,0xff,0xfd,0xc8,0x1d,0xe0, + 0xff,0xff,0xff,0xff,0xfe,0xb8,0x1c,0xf0,0xff,0xff,0xff,0xff,0xff,0xa7,0xff,0xe0, + 0x0,0x0,0x0,0x0,0x0,0x97,0xfe,0xf0,0x0,0x0,0x0,0x0,0x1,0x87,0xe1,0xe0, + 0x0,0x0,0x0,0x0,0x2,0x77,0xe0,0xf0,0x0,0x0,0x0,0x0,0x3,0x70,0xfe,0x60, + 0x0,0x0,0x0,0x0,0x4,0x60,0xfd,0x70,0x0,0x0,0x0,0x0,0x5,0x50,0xe0,0x60, + 0x0,0x0,0x0,0x0,0x6,0x40,0xdf,0x70,0x0,0x0,0x0,0x0,0x7,0x30,0xc2,0x60, + 0x0,0x0,0x0,0x0,0x8,0x20,0xc1,0x70,0x0,0x0,0x0,0x0,0x9,0x10,0xa4,0x60, + 0x0,0x0,0x0,0x0,0xa,0x0,0xa3,0x70,0x0,0x0,0x0,0x0,0xa,0xf0,0x86,0x60, + 0x0,0x0,0x0,0x0,0xb,0xe0,0x85,0x70,0x0,0x0,0x0,0x0,0xc,0xd9,0xa2,0xe0, + 0x0,0x0,0x0,0x0,0xd,0xc0,0x67,0x70,0x0,0x0,0x0,0x0,0xe,0xb9,0x84,0xe0, + 0x0,0x0,0x0,0x0,0xf,0xa9,0x83,0xf0,0x0,0x0,0x0,0x0,0x10,0x99,0x66,0xe0, + 0x0,0x0,0x0,0x0,0x11,0x89,0x65,0xf0,0x0,0x0,0x0,0x0,0x12,0x79,0x48,0xe0, + 0x0,0x0,0x0,0x0,0x13,0x69,0x47,0xf0,0x0,0x0,0x0,0x0,0x14,0x59,0x2a,0xe0, + 0x0,0x0,0x0,0x0,0x15,0x49,0x29,0xf0,0x0,0x0,0x0,0x0,0x16,0x39,0xc,0xe0, + 0x0,0x0,0x0,0x0,0x17,0x29,0xb,0xf0,0x0,0x0,0x0,0x0,0x18,0x22,0x29,0x60, + 0x0,0x0,0x0,0x0,0x19,0x8,0xed,0xf0,0x0,0x0,0x0,0x0,0x1a,0x2,0xb,0x60, + 0x0,0x0,0x0,0x0,0x1a,0xf2,0xa,0x70,0x0,0x0,0x0,0x0,0x1b,0xe1,0xed,0x60, + 0x0,0x0,0x0,0x0,0x1c,0xd1,0xec,0x70,0x0,0x0,0x0,0x0,0x1d,0xc1,0xcf,0x60, + 0x0,0x0,0x0,0x0,0x1e,0xb1,0xce,0x70,0x0,0x0,0x0,0x0,0x1f,0xa1,0xb1,0x60, + 0x0,0x0,0x0,0x0,0x20,0x76,0x0,0xf0,0x0,0x0,0x0,0x0,0x21,0x81,0x93,0x60, + 0x0,0x0,0x0,0x0,0x22,0x55,0xe2,0xf0,0x0,0x0,0x0,0x0,0x23,0x6a,0xaf,0xe0, + 0x0,0x0,0x0,0x0,0x24,0x35,0xc4,0xf0,0x0,0x0,0x0,0x0,0x25,0x4a,0x91,0xe0, + 0x0,0x0,0x0,0x0,0x26,0x15,0xa6,0xf0,0x0,0x0,0x0,0x0,0x27,0x2a,0x73,0xe0, + 0x0,0x0,0x0,0x0,0x27,0xfe,0xc3,0x70,0x0,0x0,0x0,0x0,0x29,0xa,0x55,0xe0, + 0x0,0x0,0x0,0x0,0x29,0xde,0xa5,0x70,0x0,0x0,0x0,0x0,0x2a,0xea,0x37,0xe0, + 0x0,0x0,0x0,0x0,0x2b,0xbe,0x87,0x70,0x0,0x0,0x0,0x0,0x2c,0xd3,0x54,0x60, + 0x0,0x0,0x0,0x0,0x2d,0x9e,0x69,0x70,0x0,0x0,0x0,0x0,0x2e,0xb3,0x36,0x60, + 0x0,0x0,0x0,0x0,0x2f,0x7e,0x4b,0x70,0x0,0x0,0x0,0x0,0x30,0x93,0x18,0x60, + 0x0,0x0,0x0,0x0,0x31,0x67,0x67,0xf0,0x0,0x0,0x0,0x0,0x32,0x72,0xfa,0x60, + 0x0,0x0,0x0,0x0,0x33,0x47,0x49,0xf0,0x0,0x0,0x0,0x0,0x34,0x52,0xdc,0x60, + 0x0,0x0,0x0,0x0,0x35,0x27,0x2b,0xf0,0x0,0x0,0x0,0x0,0x36,0x32,0xbe,0x60, + 0x0,0x0,0x0,0x0,0x37,0x7,0xd,0xf0,0x0,0x0,0x0,0x0,0x38,0x1b,0xda,0xe0, + 0x0,0x0,0x0,0x0,0x38,0xe6,0xef,0xf0,0x0,0x0,0x0,0x0,0x39,0xfb,0xbc,0xe0, + 0x0,0x0,0x0,0x0,0x3a,0xc6,0xd1,0xf0,0x0,0x0,0x0,0x0,0x3b,0xdb,0x9e,0xe0, + 0x0,0x0,0x0,0x0,0x3c,0xaf,0xee,0x70,0x0,0x0,0x0,0x0,0x3d,0xbb,0x80,0xe0, + 0x0,0x0,0x0,0x0,0x3e,0x8f,0xd0,0x70,0x0,0x0,0x0,0x0,0x3f,0x9b,0x62,0xe0, + 0x0,0x0,0x0,0x0,0x40,0x6f,0xb2,0x70,0x0,0x0,0x0,0x0,0x41,0x84,0x7f,0x60, + 0x0,0x0,0x0,0x0,0x42,0x4f,0x94,0x70,0x0,0x0,0x0,0x0,0x43,0x64,0x61,0x60, + 0x0,0x0,0x0,0x0,0x44,0x2f,0x76,0x70,0x0,0x0,0x0,0x0,0x45,0x44,0x43,0x60, + 0x0,0x0,0x0,0x0,0x45,0xf3,0xa8,0xf0,0x0,0x0,0x0,0x0,0x47,0x2d,0x5f,0xe0, + 0x0,0x0,0x0,0x0,0x47,0xd3,0x8a,0xf0,0x0,0x0,0x0,0x0,0x49,0xd,0x41,0xe0, + 0x0,0x0,0x0,0x0,0x49,0xb3,0x6c,0xf0,0x0,0x0,0x0,0x0,0x4a,0xed,0x23,0xe0, + 0x0,0x0,0x0,0x0,0x4b,0x9c,0x89,0x70,0x0,0x0,0x0,0x0,0x4c,0xd6,0x40,0x60, + 0x0,0x0,0x0,0x0,0x4d,0x7c,0x6b,0x70,0x0,0x0,0x0,0x0,0x4e,0xb6,0x22,0x60, + 0x0,0x0,0x0,0x0,0x4f,0x5c,0x4d,0x70,0x0,0x0,0x0,0x0,0x50,0x96,0x4,0x60, + 0x0,0x0,0x0,0x0,0x51,0x3c,0x2f,0x70,0x0,0x0,0x0,0x0,0x52,0x75,0xe6,0x60, + 0x0,0x0,0x0,0x0,0x53,0x1c,0x11,0x70,0x0,0x0,0x0,0x0,0x54,0x55,0xc8,0x60, + 0x0,0x0,0x0,0x0,0x54,0xfb,0xf3,0x70,0x0,0x0,0x0,0x0,0x56,0x35,0xaa,0x60, + 0x0,0x0,0x0,0x0,0x56,0xe5,0xf,0xf0,0x0,0x0,0x0,0x0,0x58,0x1e,0xc6,0xe0, + 0x0,0x0,0x0,0x0,0x58,0xc4,0xf1,0xf0,0x0,0x0,0x0,0x0,0x59,0xfe,0xa8,0xe0, + 0x0,0x0,0x0,0x0,0x5a,0xa4,0xd3,0xf0,0x0,0x0,0x0,0x0,0x5b,0xde,0x8a,0xe0, + 0x0,0x0,0x0,0x0,0x5c,0x84,0xb5,0xf0,0x0,0x0,0x0,0x0,0x5d,0xbe,0x6c,0xe0, + 0x0,0x0,0x0,0x0,0x5e,0x64,0x97,0xf0,0x0,0x0,0x0,0x0,0x5f,0x9e,0x4e,0xe0, + 0x0,0x0,0x0,0x0,0x60,0x4d,0xb4,0x70,0x0,0x0,0x0,0x0,0x61,0x87,0x6b,0x60, + 0x0,0x0,0x0,0x0,0x62,0x2d,0x96,0x70,0x0,0x0,0x0,0x0,0x63,0x67,0x4d,0x60, + 0x0,0x0,0x0,0x0,0x64,0xd,0x78,0x70,0x0,0x0,0x0,0x0,0x65,0x47,0x2f,0x60, + 0x0,0x0,0x0,0x0,0x65,0xed,0x5a,0x70,0x0,0x0,0x0,0x0,0x67,0x27,0x11,0x60, + 0x0,0x0,0x0,0x0,0x67,0xcd,0x3c,0x70,0x0,0x0,0x0,0x0,0x69,0x6,0xf3,0x60, + 0x0,0x0,0x0,0x0,0x69,0xad,0x1e,0x70,0x0,0x0,0x0,0x0,0x6a,0xe6,0xd5,0x60, + 0x0,0x0,0x0,0x0,0x6b,0x96,0x3a,0xf0,0x0,0x0,0x0,0x0,0x6c,0xcf,0xf1,0xe0, + 0x0,0x0,0x0,0x0,0x6d,0x76,0x1c,0xf0,0x0,0x0,0x0,0x0,0x6e,0xaf,0xd3,0xe0, + 0x0,0x0,0x0,0x0,0x6f,0x55,0xfe,0xf0,0x0,0x0,0x0,0x0,0x70,0x8f,0xb5,0xe0, + 0x0,0x0,0x0,0x0,0x71,0x35,0xe0,0xf0,0x0,0x0,0x0,0x0,0x72,0x6f,0x97,0xe0, + 0x0,0x0,0x0,0x0,0x73,0x15,0xc2,0xf0,0x0,0x0,0x0,0x0,0x74,0x4f,0x79,0xe0, + 0x0,0x0,0x0,0x0,0x74,0xfe,0xdf,0x70,0x0,0x0,0x0,0x0,0x76,0x38,0x96,0x60, + 0x0,0x0,0x0,0x0,0x76,0xde,0xc1,0x70,0x0,0x0,0x0,0x0,0x78,0x18,0x78,0x60, + 0x0,0x0,0x0,0x0,0x78,0xbe,0xa3,0x70,0x0,0x0,0x0,0x0,0x79,0xf8,0x5a,0x60, + 0x0,0x0,0x0,0x0,0x7a,0x9e,0x85,0x70,0x0,0x0,0x0,0x0,0x7b,0xd8,0x3c,0x60, + 0x0,0x0,0x0,0x0,0x7c,0x7e,0x67,0x70,0x0,0x0,0x0,0x0,0x7d,0xb8,0x1e,0x60, + 0x0,0x0,0x0,0x0,0x7e,0x5e,0x49,0x70,0x0,0x0,0x0,0x0,0x7f,0x98,0x0,0x60, + 0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x3, + 0x4,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0xb5,0x94,0x0,0x0, + 0xff,0xff,0xc7,0xc0,0x1,0x4,0xff,0xff,0xb9,0xb0,0x0,0x8,0xff,0xff,0xc7,0xc0, + 0x1,0xc,0xff,0xff,0xc7,0xc0,0x1,0x10,0x4c,0x4d,0x54,0x0,0x45,0x44,0x54,0x0, + 0x45,0x53,0x54,0x0,0x45,0x57,0x54,0x0,0x45,0x50,0x54,0x0,0x0,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0x0,0x1,0xa,0x45,0x53,0x54,0x35,0x45,0x44,0x54,0x2c,0x4d, + 0x33,0x2e,0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Canada/Newfoundland + 0x0,0x0,0xe,0x50, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xef,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x19,0x80,0x0,0x0,0x0,0x9c, + 0xcf,0x62,0xc,0x9d,0xa4,0xe6,0xfc,0x9e,0xb8,0x7e,0x8c,0x9f,0xba,0xd6,0x7c,0xa0, + 0xb6,0x88,0xdc,0xa1,0x38,0xff,0x4c,0xa2,0x95,0x19,0x5c,0xa3,0x84,0xfc,0x4c,0xa4, + 0x74,0xfb,0x5c,0xa5,0x64,0xde,0x4c,0xa6,0x5e,0x17,0xdc,0xa7,0x44,0xc0,0x4c,0xa8, + 0x3d,0xf9,0xdc,0xa9,0x24,0xa2,0x4c,0xaa,0x1d,0xdb,0xdc,0xab,0x4,0x84,0x4c,0xab, + 0xfd,0xbd,0xdc,0xac,0xe4,0x66,0x4c,0xad,0xdd,0x9f,0xdc,0xae,0xcd,0x82,0xcc,0xaf, + 0xbd,0x81,0xdc,0xb0,0xad,0x64,0xcc,0xb1,0xa6,0x9e,0x5c,0xb2,0x8d,0x46,0xcc,0xb3, + 0x86,0x80,0x5c,0xb4,0x6d,0x28,0xcc,0xb5,0x66,0x62,0x5c,0xb6,0x4d,0xa,0xcc,0xb7, + 0x46,0x44,0x5c,0xb8,0x2c,0xec,0xcc,0xb9,0x26,0x26,0x5c,0xba,0x16,0x9,0x4c,0xbb, + 0xf,0x42,0xdc,0xbb,0xf5,0xeb,0x4c,0xbc,0xef,0x24,0xdc,0xbd,0xd5,0xcd,0x4c,0xbe, + 0x9e,0x4d,0x6c,0xbe,0xcf,0x6,0xa8,0xbf,0xb5,0xaf,0x18,0xc0,0xb8,0x31,0x38,0xc1, + 0x79,0xef,0xa8,0xc2,0x98,0x13,0x38,0xc3,0x59,0xd1,0xa8,0xc4,0x77,0xf5,0x38,0xc5, + 0x39,0xb3,0xa8,0xc6,0x61,0x11,0xb8,0xc7,0x19,0x95,0xa8,0xc8,0x40,0xf3,0xb8,0xc9, + 0x2,0xb2,0x28,0xca,0x20,0xd5,0xb8,0xca,0xe2,0x94,0x28,0xcc,0x0,0xb7,0xb8,0xd2, + 0x23,0xf4,0x70,0xd2,0x60,0xe6,0xc8,0xd3,0x88,0x44,0xd8,0xd4,0x4a,0x3,0x48,0xd5, + 0x68,0x26,0xd8,0xd6,0x29,0xe5,0x48,0xd7,0x48,0x8,0xd8,0xd8,0x9,0xc7,0x48,0xd9, + 0x27,0xea,0xd8,0xd9,0xe9,0xa9,0x48,0xdb,0x11,0x7,0x58,0xdb,0xd2,0xc5,0xc8,0xdc, + 0xde,0x74,0x58,0xdd,0xa9,0x6d,0x48,0xde,0xbe,0x56,0x58,0xdf,0x89,0x4f,0x48,0xe0, + 0x9e,0x38,0x58,0xe1,0x69,0x31,0x48,0xe2,0x7e,0x1a,0x58,0xe3,0x49,0x13,0x48,0xe4, + 0x5d,0xfc,0x58,0xe5,0x28,0xf5,0x48,0xe6,0x47,0x18,0xd8,0xe7,0x12,0x11,0xc8,0xe8, + 0x26,0xfa,0xd8,0xe8,0xf1,0xf3,0xc8,0xea,0x6,0xdc,0xd8,0xea,0xd1,0xd5,0xc8,0xeb, + 0xe6,0xbe,0xd8,0xec,0xb1,0xb7,0xc8,0xed,0xc6,0xa0,0xd8,0xee,0xbf,0xbe,0x48,0xef, + 0xaf,0xbd,0x58,0xf0,0x9f,0xa0,0x48,0xf1,0x8f,0x9f,0x58,0xf2,0x7f,0x82,0x48,0xf3, + 0x6f,0x81,0x58,0xf4,0x5f,0x64,0x48,0xf5,0x4f,0x63,0x58,0xf6,0x3f,0x46,0x48,0xf7, + 0x2f,0x45,0x58,0xf8,0x28,0x62,0xc8,0xf9,0xf,0x27,0x58,0xfa,0x8,0x44,0xc8,0xfa, + 0xf8,0x43,0xd8,0xfb,0xe8,0x26,0xc8,0xfc,0xd8,0x25,0xd8,0xfd,0xc8,0x8,0xc8,0xfe, + 0xb8,0x7,0xd8,0xff,0xa7,0xea,0xc8,0x0,0x97,0xe9,0xd8,0x1,0x87,0xcc,0xc8,0x2, + 0x77,0xcb,0xd8,0x3,0x70,0xe9,0x48,0x4,0x60,0xe8,0x58,0x5,0x50,0xcb,0x48,0x6, + 0x40,0xca,0x58,0x7,0x30,0xad,0x48,0x8,0x20,0xac,0x58,0x9,0x10,0x8f,0x48,0xa, + 0x0,0x8e,0x58,0xa,0xf0,0x71,0x48,0xb,0xe0,0x70,0x58,0xc,0xd9,0x8d,0xc8,0xd, + 0xc0,0x52,0x58,0xe,0xb9,0x6f,0xc8,0xf,0xa9,0x6e,0xd8,0x10,0x99,0x51,0xc8,0x11, + 0x89,0x50,0xd8,0x12,0x79,0x33,0xc8,0x13,0x69,0x32,0xd8,0x14,0x59,0x15,0xc8,0x15, + 0x49,0x14,0xd8,0x16,0x38,0xf7,0xc8,0x17,0x28,0xf6,0xd8,0x18,0x22,0x14,0x48,0x19, + 0x8,0xd8,0xd8,0x1a,0x1,0xf6,0x48,0x1a,0xf1,0xf5,0x58,0x1b,0xe1,0xd8,0x48,0x1c, + 0xd1,0xd7,0x58,0x1d,0xc1,0xba,0x48,0x1e,0xb1,0xb9,0x58,0x1f,0xa1,0x9c,0x48,0x20, + 0x75,0xcf,0xf4,0x21,0x81,0x62,0x64,0x22,0x55,0xb1,0xf4,0x23,0x6a,0x70,0xd4,0x24, + 0x35,0x93,0xf4,0x25,0x4a,0x60,0xe4,0x26,0x15,0x75,0xf4,0x27,0x2a,0x42,0xe4,0x27, + 0xfe,0x92,0x74,0x29,0xa,0x24,0xe4,0x29,0xde,0x74,0x74,0x2a,0xea,0x6,0xe4,0x2b, + 0xbe,0x56,0x74,0x2c,0xd3,0x23,0x64,0x2d,0x9e,0x38,0x74,0x2e,0xb3,0x5,0x64,0x2f, + 0x7e,0x1a,0x74,0x30,0x92,0xe7,0x64,0x31,0x67,0x36,0xf4,0x32,0x72,0xc9,0x64,0x33, + 0x47,0x18,0xf4,0x34,0x52,0xab,0x64,0x35,0x26,0xfa,0xf4,0x36,0x32,0x8d,0x64,0x37, + 0x6,0xdc,0xf4,0x38,0x1b,0xa9,0xe4,0x38,0xe6,0xbe,0xf4,0x39,0xfb,0x8b,0xe4,0x3a, + 0xc6,0xa0,0xf4,0x3b,0xdb,0x6d,0xe4,0x3c,0xaf,0xbd,0x74,0x3d,0xbb,0x4f,0xe4,0x3e, + 0x8f,0x9f,0x74,0x3f,0x9b,0x31,0xe4,0x40,0x6f,0x81,0x74,0x41,0x84,0x4e,0x64,0x42, + 0x4f,0x63,0x74,0x43,0x64,0x30,0x64,0x44,0x2f,0x45,0x74,0x45,0x44,0x12,0x64,0x45, + 0xf3,0x77,0xf4,0x47,0x2d,0x2e,0xe4,0x47,0xd3,0x59,0xf4,0x49,0xd,0x10,0xe4,0x49, + 0xb3,0x3b,0xf4,0x4a,0xec,0xf2,0xe4,0x4b,0x9c,0x58,0x74,0x4c,0xd6,0xf,0x64,0x4d, + 0x7c,0x3a,0x74,0x4e,0xb6,0xd,0x48,0x4f,0x5c,0x38,0x58,0x50,0x95,0xef,0x48,0x51, + 0x3c,0x1a,0x58,0x52,0x75,0xd1,0x48,0x53,0x1b,0xfc,0x58,0x54,0x55,0xb3,0x48,0x54, + 0xfb,0xde,0x58,0x56,0x35,0x95,0x48,0x56,0xe4,0xfa,0xd8,0x58,0x1e,0xb1,0xc8,0x58, + 0xc4,0xdc,0xd8,0x59,0xfe,0x93,0xc8,0x5a,0xa4,0xbe,0xd8,0x5b,0xde,0x75,0xc8,0x5c, + 0x84,0xa0,0xd8,0x5d,0xbe,0x57,0xc8,0x5e,0x64,0x82,0xd8,0x5f,0x9e,0x39,0xc8,0x60, + 0x4d,0x9f,0x58,0x61,0x87,0x56,0x48,0x62,0x2d,0x81,0x58,0x63,0x67,0x38,0x48,0x64, + 0xd,0x63,0x58,0x65,0x47,0x1a,0x48,0x65,0xed,0x45,0x58,0x67,0x26,0xfc,0x48,0x67, + 0xcd,0x27,0x58,0x69,0x6,0xde,0x48,0x69,0xad,0x9,0x58,0x6a,0xe6,0xc0,0x48,0x6b, + 0x96,0x25,0xd8,0x6c,0xcf,0xdc,0xc8,0x6d,0x76,0x7,0xd8,0x6e,0xaf,0xbe,0xc8,0x6f, + 0x55,0xe9,0xd8,0x70,0x8f,0xa0,0xc8,0x71,0x35,0xcb,0xd8,0x72,0x6f,0x82,0xc8,0x73, + 0x15,0xad,0xd8,0x74,0x4f,0x64,0xc8,0x74,0xfe,0xca,0x58,0x76,0x38,0x81,0x48,0x76, + 0xde,0xac,0x58,0x78,0x18,0x63,0x48,0x78,0xbe,0x8e,0x58,0x79,0xf8,0x45,0x48,0x7a, + 0x9e,0x70,0x58,0x7b,0xd8,0x27,0x48,0x7c,0x7e,0x52,0x58,0x7d,0xb8,0x9,0x48,0x7e, + 0x5e,0x34,0x58,0x7f,0x97,0xeb,0x48,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x6,0x5,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x7,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0xff,0xff,0xce,0x94,0x0,0x0,0xff,0xff,0xdc,0xa4, + 0x1,0x4,0xff,0xff,0xce,0x94,0x0,0x8,0xff,0xff,0xdc,0xd8,0x1,0x4,0xff,0xff, + 0xce,0xc8,0x0,0x8,0xff,0xff,0xdc,0xd8,0x1,0xc,0xff,0xff,0xdc,0xd8,0x1,0x10, + 0xff,0xff,0xea,0xe8,0x1,0x14,0xff,0xff,0xdc,0xd8,0x1,0x4,0x4c,0x4d,0x54,0x0, + 0x4e,0x44,0x54,0x0,0x4e,0x53,0x54,0x0,0x4e,0x50,0x54,0x0,0x4e,0x57,0x54,0x0, + 0x4e,0x44,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9,0x0, + 0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xf0,0x0,0x0,0x0,0x9,0x0, + 0x0,0x0,0x19,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x5e, + 0x3d,0x34,0xec,0xff,0xff,0xff,0xff,0x9c,0xcf,0x62,0xc,0xff,0xff,0xff,0xff,0x9d, + 0xa4,0xe6,0xfc,0xff,0xff,0xff,0xff,0x9e,0xb8,0x7e,0x8c,0xff,0xff,0xff,0xff,0x9f, + 0xba,0xd6,0x7c,0xff,0xff,0xff,0xff,0xa0,0xb6,0x88,0xdc,0xff,0xff,0xff,0xff,0xa1, + 0x38,0xff,0x4c,0xff,0xff,0xff,0xff,0xa2,0x95,0x19,0x5c,0xff,0xff,0xff,0xff,0xa3, + 0x84,0xfc,0x4c,0xff,0xff,0xff,0xff,0xa4,0x74,0xfb,0x5c,0xff,0xff,0xff,0xff,0xa5, + 0x64,0xde,0x4c,0xff,0xff,0xff,0xff,0xa6,0x5e,0x17,0xdc,0xff,0xff,0xff,0xff,0xa7, + 0x44,0xc0,0x4c,0xff,0xff,0xff,0xff,0xa8,0x3d,0xf9,0xdc,0xff,0xff,0xff,0xff,0xa9, + 0x24,0xa2,0x4c,0xff,0xff,0xff,0xff,0xaa,0x1d,0xdb,0xdc,0xff,0xff,0xff,0xff,0xab, + 0x4,0x84,0x4c,0xff,0xff,0xff,0xff,0xab,0xfd,0xbd,0xdc,0xff,0xff,0xff,0xff,0xac, + 0xe4,0x66,0x4c,0xff,0xff,0xff,0xff,0xad,0xdd,0x9f,0xdc,0xff,0xff,0xff,0xff,0xae, + 0xcd,0x82,0xcc,0xff,0xff,0xff,0xff,0xaf,0xbd,0x81,0xdc,0xff,0xff,0xff,0xff,0xb0, + 0xad,0x64,0xcc,0xff,0xff,0xff,0xff,0xb1,0xa6,0x9e,0x5c,0xff,0xff,0xff,0xff,0xb2, + 0x8d,0x46,0xcc,0xff,0xff,0xff,0xff,0xb3,0x86,0x80,0x5c,0xff,0xff,0xff,0xff,0xb4, + 0x6d,0x28,0xcc,0xff,0xff,0xff,0xff,0xb5,0x66,0x62,0x5c,0xff,0xff,0xff,0xff,0xb6, + 0x4d,0xa,0xcc,0xff,0xff,0xff,0xff,0xb7,0x46,0x44,0x5c,0xff,0xff,0xff,0xff,0xb8, + 0x2c,0xec,0xcc,0xff,0xff,0xff,0xff,0xb9,0x26,0x26,0x5c,0xff,0xff,0xff,0xff,0xba, + 0x16,0x9,0x4c,0xff,0xff,0xff,0xff,0xbb,0xf,0x42,0xdc,0xff,0xff,0xff,0xff,0xbb, + 0xf5,0xeb,0x4c,0xff,0xff,0xff,0xff,0xbc,0xef,0x24,0xdc,0xff,0xff,0xff,0xff,0xbd, + 0xd5,0xcd,0x4c,0xff,0xff,0xff,0xff,0xbe,0x9e,0x4d,0x6c,0xff,0xff,0xff,0xff,0xbe, + 0xcf,0x6,0xa8,0xff,0xff,0xff,0xff,0xbf,0xb5,0xaf,0x18,0xff,0xff,0xff,0xff,0xc0, + 0xb8,0x31,0x38,0xff,0xff,0xff,0xff,0xc1,0x79,0xef,0xa8,0xff,0xff,0xff,0xff,0xc2, + 0x98,0x13,0x38,0xff,0xff,0xff,0xff,0xc3,0x59,0xd1,0xa8,0xff,0xff,0xff,0xff,0xc4, + 0x77,0xf5,0x38,0xff,0xff,0xff,0xff,0xc5,0x39,0xb3,0xa8,0xff,0xff,0xff,0xff,0xc6, + 0x61,0x11,0xb8,0xff,0xff,0xff,0xff,0xc7,0x19,0x95,0xa8,0xff,0xff,0xff,0xff,0xc8, + 0x40,0xf3,0xb8,0xff,0xff,0xff,0xff,0xc9,0x2,0xb2,0x28,0xff,0xff,0xff,0xff,0xca, + 0x20,0xd5,0xb8,0xff,0xff,0xff,0xff,0xca,0xe2,0x94,0x28,0xff,0xff,0xff,0xff,0xcc, + 0x0,0xb7,0xb8,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2, + 0x60,0xe6,0xc8,0xff,0xff,0xff,0xff,0xd3,0x88,0x44,0xd8,0xff,0xff,0xff,0xff,0xd4, + 0x4a,0x3,0x48,0xff,0xff,0xff,0xff,0xd5,0x68,0x26,0xd8,0xff,0xff,0xff,0xff,0xd6, + 0x29,0xe5,0x48,0xff,0xff,0xff,0xff,0xd7,0x48,0x8,0xd8,0xff,0xff,0xff,0xff,0xd8, + 0x9,0xc7,0x48,0xff,0xff,0xff,0xff,0xd9,0x27,0xea,0xd8,0xff,0xff,0xff,0xff,0xd9, + 0xe9,0xa9,0x48,0xff,0xff,0xff,0xff,0xdb,0x11,0x7,0x58,0xff,0xff,0xff,0xff,0xdb, + 0xd2,0xc5,0xc8,0xff,0xff,0xff,0xff,0xdc,0xde,0x74,0x58,0xff,0xff,0xff,0xff,0xdd, + 0xa9,0x6d,0x48,0xff,0xff,0xff,0xff,0xde,0xbe,0x56,0x58,0xff,0xff,0xff,0xff,0xdf, + 0x89,0x4f,0x48,0xff,0xff,0xff,0xff,0xe0,0x9e,0x38,0x58,0xff,0xff,0xff,0xff,0xe1, + 0x69,0x31,0x48,0xff,0xff,0xff,0xff,0xe2,0x7e,0x1a,0x58,0xff,0xff,0xff,0xff,0xe3, + 0x49,0x13,0x48,0xff,0xff,0xff,0xff,0xe4,0x5d,0xfc,0x58,0xff,0xff,0xff,0xff,0xe5, + 0x28,0xf5,0x48,0xff,0xff,0xff,0xff,0xe6,0x47,0x18,0xd8,0xff,0xff,0xff,0xff,0xe7, + 0x12,0x11,0xc8,0xff,0xff,0xff,0xff,0xe8,0x26,0xfa,0xd8,0xff,0xff,0xff,0xff,0xe8, + 0xf1,0xf3,0xc8,0xff,0xff,0xff,0xff,0xea,0x6,0xdc,0xd8,0xff,0xff,0xff,0xff,0xea, + 0xd1,0xd5,0xc8,0xff,0xff,0xff,0xff,0xeb,0xe6,0xbe,0xd8,0xff,0xff,0xff,0xff,0xec, + 0xb1,0xb7,0xc8,0xff,0xff,0xff,0xff,0xed,0xc6,0xa0,0xd8,0xff,0xff,0xff,0xff,0xee, + 0xbf,0xbe,0x48,0xff,0xff,0xff,0xff,0xef,0xaf,0xbd,0x58,0xff,0xff,0xff,0xff,0xf0, + 0x9f,0xa0,0x48,0xff,0xff,0xff,0xff,0xf1,0x8f,0x9f,0x58,0xff,0xff,0xff,0xff,0xf2, + 0x7f,0x82,0x48,0xff,0xff,0xff,0xff,0xf3,0x6f,0x81,0x58,0xff,0xff,0xff,0xff,0xf4, + 0x5f,0x64,0x48,0xff,0xff,0xff,0xff,0xf5,0x4f,0x63,0x58,0xff,0xff,0xff,0xff,0xf6, + 0x3f,0x46,0x48,0xff,0xff,0xff,0xff,0xf7,0x2f,0x45,0x58,0xff,0xff,0xff,0xff,0xf8, + 0x28,0x62,0xc8,0xff,0xff,0xff,0xff,0xf9,0xf,0x27,0x58,0xff,0xff,0xff,0xff,0xfa, + 0x8,0x44,0xc8,0xff,0xff,0xff,0xff,0xfa,0xf8,0x43,0xd8,0xff,0xff,0xff,0xff,0xfb, + 0xe8,0x26,0xc8,0xff,0xff,0xff,0xff,0xfc,0xd8,0x25,0xd8,0xff,0xff,0xff,0xff,0xfd, + 0xc8,0x8,0xc8,0xff,0xff,0xff,0xff,0xfe,0xb8,0x7,0xd8,0xff,0xff,0xff,0xff,0xff, + 0xa7,0xea,0xc8,0x0,0x0,0x0,0x0,0x0,0x97,0xe9,0xd8,0x0,0x0,0x0,0x0,0x1, + 0x87,0xcc,0xc8,0x0,0x0,0x0,0x0,0x2,0x77,0xcb,0xd8,0x0,0x0,0x0,0x0,0x3, + 0x70,0xe9,0x48,0x0,0x0,0x0,0x0,0x4,0x60,0xe8,0x58,0x0,0x0,0x0,0x0,0x5, + 0x50,0xcb,0x48,0x0,0x0,0x0,0x0,0x6,0x40,0xca,0x58,0x0,0x0,0x0,0x0,0x7, + 0x30,0xad,0x48,0x0,0x0,0x0,0x0,0x8,0x20,0xac,0x58,0x0,0x0,0x0,0x0,0x9, + 0x10,0x8f,0x48,0x0,0x0,0x0,0x0,0xa,0x0,0x8e,0x58,0x0,0x0,0x0,0x0,0xa, + 0xf0,0x71,0x48,0x0,0x0,0x0,0x0,0xb,0xe0,0x70,0x58,0x0,0x0,0x0,0x0,0xc, + 0xd9,0x8d,0xc8,0x0,0x0,0x0,0x0,0xd,0xc0,0x52,0x58,0x0,0x0,0x0,0x0,0xe, + 0xb9,0x6f,0xc8,0x0,0x0,0x0,0x0,0xf,0xa9,0x6e,0xd8,0x0,0x0,0x0,0x0,0x10, + 0x99,0x51,0xc8,0x0,0x0,0x0,0x0,0x11,0x89,0x50,0xd8,0x0,0x0,0x0,0x0,0x12, + 0x79,0x33,0xc8,0x0,0x0,0x0,0x0,0x13,0x69,0x32,0xd8,0x0,0x0,0x0,0x0,0x14, + 0x59,0x15,0xc8,0x0,0x0,0x0,0x0,0x15,0x49,0x14,0xd8,0x0,0x0,0x0,0x0,0x16, + 0x38,0xf7,0xc8,0x0,0x0,0x0,0x0,0x17,0x28,0xf6,0xd8,0x0,0x0,0x0,0x0,0x18, + 0x22,0x14,0x48,0x0,0x0,0x0,0x0,0x19,0x8,0xd8,0xd8,0x0,0x0,0x0,0x0,0x1a, + 0x1,0xf6,0x48,0x0,0x0,0x0,0x0,0x1a,0xf1,0xf5,0x58,0x0,0x0,0x0,0x0,0x1b, + 0xe1,0xd8,0x48,0x0,0x0,0x0,0x0,0x1c,0xd1,0xd7,0x58,0x0,0x0,0x0,0x0,0x1d, + 0xc1,0xba,0x48,0x0,0x0,0x0,0x0,0x1e,0xb1,0xb9,0x58,0x0,0x0,0x0,0x0,0x1f, + 0xa1,0x9c,0x48,0x0,0x0,0x0,0x0,0x20,0x75,0xcf,0xf4,0x0,0x0,0x0,0x0,0x21, + 0x81,0x62,0x64,0x0,0x0,0x0,0x0,0x22,0x55,0xb1,0xf4,0x0,0x0,0x0,0x0,0x23, + 0x6a,0x70,0xd4,0x0,0x0,0x0,0x0,0x24,0x35,0x93,0xf4,0x0,0x0,0x0,0x0,0x25, + 0x4a,0x60,0xe4,0x0,0x0,0x0,0x0,0x26,0x15,0x75,0xf4,0x0,0x0,0x0,0x0,0x27, + 0x2a,0x42,0xe4,0x0,0x0,0x0,0x0,0x27,0xfe,0x92,0x74,0x0,0x0,0x0,0x0,0x29, + 0xa,0x24,0xe4,0x0,0x0,0x0,0x0,0x29,0xde,0x74,0x74,0x0,0x0,0x0,0x0,0x2a, + 0xea,0x6,0xe4,0x0,0x0,0x0,0x0,0x2b,0xbe,0x56,0x74,0x0,0x0,0x0,0x0,0x2c, + 0xd3,0x23,0x64,0x0,0x0,0x0,0x0,0x2d,0x9e,0x38,0x74,0x0,0x0,0x0,0x0,0x2e, + 0xb3,0x5,0x64,0x0,0x0,0x0,0x0,0x2f,0x7e,0x1a,0x74,0x0,0x0,0x0,0x0,0x30, + 0x92,0xe7,0x64,0x0,0x0,0x0,0x0,0x31,0x67,0x36,0xf4,0x0,0x0,0x0,0x0,0x32, + 0x72,0xc9,0x64,0x0,0x0,0x0,0x0,0x33,0x47,0x18,0xf4,0x0,0x0,0x0,0x0,0x34, + 0x52,0xab,0x64,0x0,0x0,0x0,0x0,0x35,0x26,0xfa,0xf4,0x0,0x0,0x0,0x0,0x36, + 0x32,0x8d,0x64,0x0,0x0,0x0,0x0,0x37,0x6,0xdc,0xf4,0x0,0x0,0x0,0x0,0x38, + 0x1b,0xa9,0xe4,0x0,0x0,0x0,0x0,0x38,0xe6,0xbe,0xf4,0x0,0x0,0x0,0x0,0x39, + 0xfb,0x8b,0xe4,0x0,0x0,0x0,0x0,0x3a,0xc6,0xa0,0xf4,0x0,0x0,0x0,0x0,0x3b, + 0xdb,0x6d,0xe4,0x0,0x0,0x0,0x0,0x3c,0xaf,0xbd,0x74,0x0,0x0,0x0,0x0,0x3d, + 0xbb,0x4f,0xe4,0x0,0x0,0x0,0x0,0x3e,0x8f,0x9f,0x74,0x0,0x0,0x0,0x0,0x3f, + 0x9b,0x31,0xe4,0x0,0x0,0x0,0x0,0x40,0x6f,0x81,0x74,0x0,0x0,0x0,0x0,0x41, + 0x84,0x4e,0x64,0x0,0x0,0x0,0x0,0x42,0x4f,0x63,0x74,0x0,0x0,0x0,0x0,0x43, + 0x64,0x30,0x64,0x0,0x0,0x0,0x0,0x44,0x2f,0x45,0x74,0x0,0x0,0x0,0x0,0x45, + 0x44,0x12,0x64,0x0,0x0,0x0,0x0,0x45,0xf3,0x77,0xf4,0x0,0x0,0x0,0x0,0x47, + 0x2d,0x2e,0xe4,0x0,0x0,0x0,0x0,0x47,0xd3,0x59,0xf4,0x0,0x0,0x0,0x0,0x49, + 0xd,0x10,0xe4,0x0,0x0,0x0,0x0,0x49,0xb3,0x3b,0xf4,0x0,0x0,0x0,0x0,0x4a, + 0xec,0xf2,0xe4,0x0,0x0,0x0,0x0,0x4b,0x9c,0x58,0x74,0x0,0x0,0x0,0x0,0x4c, + 0xd6,0xf,0x64,0x0,0x0,0x0,0x0,0x4d,0x7c,0x3a,0x74,0x0,0x0,0x0,0x0,0x4e, + 0xb6,0xd,0x48,0x0,0x0,0x0,0x0,0x4f,0x5c,0x38,0x58,0x0,0x0,0x0,0x0,0x50, + 0x95,0xef,0x48,0x0,0x0,0x0,0x0,0x51,0x3c,0x1a,0x58,0x0,0x0,0x0,0x0,0x52, + 0x75,0xd1,0x48,0x0,0x0,0x0,0x0,0x53,0x1b,0xfc,0x58,0x0,0x0,0x0,0x0,0x54, + 0x55,0xb3,0x48,0x0,0x0,0x0,0x0,0x54,0xfb,0xde,0x58,0x0,0x0,0x0,0x0,0x56, + 0x35,0x95,0x48,0x0,0x0,0x0,0x0,0x56,0xe4,0xfa,0xd8,0x0,0x0,0x0,0x0,0x58, + 0x1e,0xb1,0xc8,0x0,0x0,0x0,0x0,0x58,0xc4,0xdc,0xd8,0x0,0x0,0x0,0x0,0x59, + 0xfe,0x93,0xc8,0x0,0x0,0x0,0x0,0x5a,0xa4,0xbe,0xd8,0x0,0x0,0x0,0x0,0x5b, + 0xde,0x75,0xc8,0x0,0x0,0x0,0x0,0x5c,0x84,0xa0,0xd8,0x0,0x0,0x0,0x0,0x5d, + 0xbe,0x57,0xc8,0x0,0x0,0x0,0x0,0x5e,0x64,0x82,0xd8,0x0,0x0,0x0,0x0,0x5f, + 0x9e,0x39,0xc8,0x0,0x0,0x0,0x0,0x60,0x4d,0x9f,0x58,0x0,0x0,0x0,0x0,0x61, + 0x87,0x56,0x48,0x0,0x0,0x0,0x0,0x62,0x2d,0x81,0x58,0x0,0x0,0x0,0x0,0x63, + 0x67,0x38,0x48,0x0,0x0,0x0,0x0,0x64,0xd,0x63,0x58,0x0,0x0,0x0,0x0,0x65, + 0x47,0x1a,0x48,0x0,0x0,0x0,0x0,0x65,0xed,0x45,0x58,0x0,0x0,0x0,0x0,0x67, + 0x26,0xfc,0x48,0x0,0x0,0x0,0x0,0x67,0xcd,0x27,0x58,0x0,0x0,0x0,0x0,0x69, + 0x6,0xde,0x48,0x0,0x0,0x0,0x0,0x69,0xad,0x9,0x58,0x0,0x0,0x0,0x0,0x6a, + 0xe6,0xc0,0x48,0x0,0x0,0x0,0x0,0x6b,0x96,0x25,0xd8,0x0,0x0,0x0,0x0,0x6c, + 0xcf,0xdc,0xc8,0x0,0x0,0x0,0x0,0x6d,0x76,0x7,0xd8,0x0,0x0,0x0,0x0,0x6e, + 0xaf,0xbe,0xc8,0x0,0x0,0x0,0x0,0x6f,0x55,0xe9,0xd8,0x0,0x0,0x0,0x0,0x70, + 0x8f,0xa0,0xc8,0x0,0x0,0x0,0x0,0x71,0x35,0xcb,0xd8,0x0,0x0,0x0,0x0,0x72, + 0x6f,0x82,0xc8,0x0,0x0,0x0,0x0,0x73,0x15,0xad,0xd8,0x0,0x0,0x0,0x0,0x74, + 0x4f,0x64,0xc8,0x0,0x0,0x0,0x0,0x74,0xfe,0xca,0x58,0x0,0x0,0x0,0x0,0x76, + 0x38,0x81,0x48,0x0,0x0,0x0,0x0,0x76,0xde,0xac,0x58,0x0,0x0,0x0,0x0,0x78, + 0x18,0x63,0x48,0x0,0x0,0x0,0x0,0x78,0xbe,0x8e,0x58,0x0,0x0,0x0,0x0,0x79, + 0xf8,0x45,0x48,0x0,0x0,0x0,0x0,0x7a,0x9e,0x70,0x58,0x0,0x0,0x0,0x0,0x7b, + 0xd8,0x27,0x48,0x0,0x0,0x0,0x0,0x7c,0x7e,0x52,0x58,0x0,0x0,0x0,0x0,0x7d, + 0xb8,0x9,0x48,0x0,0x0,0x0,0x0,0x7e,0x5e,0x34,0x58,0x0,0x0,0x0,0x0,0x7f, + 0x97,0xeb,0x48,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x6,0x5,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x7, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0xff,0xff,0xce,0x94,0x0,0x0,0xff,0xff,0xdc,0xa4,0x1,0x4,0xff, + 0xff,0xce,0x94,0x0,0x8,0xff,0xff,0xdc,0xd8,0x1,0x4,0xff,0xff,0xce,0xc8,0x0, + 0x8,0xff,0xff,0xdc,0xd8,0x1,0xc,0xff,0xff,0xdc,0xd8,0x1,0x10,0xff,0xff,0xea, + 0xe8,0x1,0x14,0xff,0xff,0xdc,0xd8,0x1,0x4,0x4c,0x4d,0x54,0x0,0x4e,0x44,0x54, + 0x0,0x4e,0x53,0x54,0x0,0x4e,0x50,0x54,0x0,0x4e,0x57,0x54,0x0,0x4e,0x44,0x44, + 0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0xa,0x4e,0x53,0x54,0x33,0x3a,0x33,0x30,0x4e,0x44,0x54,0x2c, + 0x4d,0x33,0x2e,0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Canada/Pacific + 0x0,0x0,0xb,0x55, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x92, - 0xe6,0x92,0x48,0x0,0x1,0xff,0xff,0xfc,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x4,0x4c,0x4d,0x54,0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, + 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xbe,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0x9e, + 0xb8,0xbd,0xa0,0x9f,0xbb,0x15,0x90,0xcb,0x89,0x1a,0xa0,0xd2,0x23,0xf4,0x70,0xd2, + 0x61,0x26,0x10,0xd3,0x76,0xf,0x20,0xd4,0x53,0x7d,0x10,0xd5,0x55,0xf1,0x20,0xd6, + 0x20,0xea,0x10,0xd7,0x35,0xd3,0x20,0xd8,0x0,0xcc,0x10,0xd9,0x15,0xb5,0x20,0xd9, + 0xe0,0xae,0x10,0xda,0xfe,0xd1,0xa0,0xdb,0xc0,0x90,0x10,0xdc,0xde,0xb3,0xa0,0xdd, + 0xa9,0xac,0x90,0xde,0xbe,0x95,0xa0,0xdf,0x89,0x8e,0x90,0xe0,0x9e,0x77,0xa0,0xe1, + 0x69,0x70,0x90,0xe2,0x7e,0x59,0xa0,0xe3,0x49,0x52,0x90,0xe4,0x5e,0x3b,0xa0,0xe5, + 0x29,0x34,0x90,0xe6,0x47,0x58,0x20,0xe7,0x12,0x51,0x10,0xe8,0x27,0x3a,0x20,0xe8, + 0xf2,0x33,0x10,0xea,0x7,0x1c,0x20,0xea,0xd2,0x15,0x10,0xeb,0xe6,0xfe,0x20,0xec, + 0xb1,0xf7,0x10,0xed,0xc6,0xe0,0x20,0xee,0x91,0xd9,0x10,0xef,0xaf,0xfc,0xa0,0xf0, + 0x71,0xbb,0x10,0xf1,0x8f,0xde,0xa0,0xf2,0x7f,0xc1,0x90,0xf3,0x6f,0xc0,0xa0,0xf4, + 0x5f,0xa3,0x90,0xf5,0x4f,0xa2,0xa0,0xf6,0x3f,0x85,0x90,0xf7,0x2f,0x84,0xa0,0xf8, + 0x28,0xa2,0x10,0xf9,0xf,0x66,0xa0,0xfa,0x8,0x84,0x10,0xfa,0xf8,0x83,0x20,0xfb, + 0xe8,0x66,0x10,0xfc,0xd8,0x65,0x20,0xfd,0xc8,0x48,0x10,0xfe,0xb8,0x47,0x20,0xff, + 0xa8,0x2a,0x10,0x0,0x98,0x29,0x20,0x1,0x88,0xc,0x10,0x2,0x78,0xb,0x20,0x3, + 0x71,0x28,0x90,0x4,0x61,0x27,0xa0,0x5,0x51,0xa,0x90,0x6,0x41,0x9,0xa0,0x7, + 0x30,0xec,0x90,0x8,0x20,0xeb,0xa0,0x9,0x10,0xce,0x90,0xa,0x0,0xcd,0xa0,0xa, + 0xf0,0xb0,0x90,0xb,0xe0,0xaf,0xa0,0xc,0xd9,0xcd,0x10,0xd,0xc0,0x91,0xa0,0xe, + 0xb9,0xaf,0x10,0xf,0xa9,0xae,0x20,0x10,0x99,0x91,0x10,0x11,0x89,0x90,0x20,0x12, + 0x79,0x73,0x10,0x13,0x69,0x72,0x20,0x14,0x59,0x55,0x10,0x15,0x49,0x54,0x20,0x16, + 0x39,0x37,0x10,0x17,0x29,0x36,0x20,0x18,0x22,0x53,0x90,0x19,0x9,0x18,0x20,0x1a, + 0x2,0x35,0x90,0x1a,0xf2,0x34,0xa0,0x1b,0xe2,0x17,0x90,0x1c,0xd2,0x16,0xa0,0x1d, + 0xc1,0xf9,0x90,0x1e,0xb1,0xf8,0xa0,0x1f,0xa1,0xdb,0x90,0x20,0x76,0x2b,0x20,0x21, + 0x81,0xbd,0x90,0x22,0x56,0xd,0x20,0x23,0x6a,0xda,0x10,0x24,0x35,0xef,0x20,0x25, + 0x4a,0xbc,0x10,0x26,0x15,0xd1,0x20,0x27,0x2a,0x9e,0x10,0x27,0xfe,0xed,0xa0,0x29, + 0xa,0x80,0x10,0x29,0xde,0xcf,0xa0,0x2a,0xea,0x62,0x10,0x2b,0xbe,0xb1,0xa0,0x2c, + 0xd3,0x7e,0x90,0x2d,0x9e,0x93,0xa0,0x2e,0xb3,0x60,0x90,0x2f,0x7e,0x75,0xa0,0x30, + 0x93,0x42,0x90,0x31,0x67,0x92,0x20,0x32,0x73,0x24,0x90,0x33,0x47,0x74,0x20,0x34, + 0x53,0x6,0x90,0x35,0x27,0x56,0x20,0x36,0x32,0xe8,0x90,0x37,0x7,0x38,0x20,0x38, + 0x1c,0x5,0x10,0x38,0xe7,0x1a,0x20,0x39,0xfb,0xe7,0x10,0x3a,0xc6,0xfc,0x20,0x3b, + 0xdb,0xc9,0x10,0x3c,0xb0,0x18,0xa0,0x3d,0xbb,0xab,0x10,0x3e,0x8f,0xfa,0xa0,0x3f, + 0x9b,0x8d,0x10,0x40,0x6f,0xdc,0xa0,0x41,0x84,0xa9,0x90,0x42,0x4f,0xbe,0xa0,0x43, + 0x64,0x8b,0x90,0x44,0x2f,0xa0,0xa0,0x45,0x44,0x6d,0x90,0x45,0xf3,0xd3,0x20,0x47, + 0x2d,0x8a,0x10,0x47,0xd3,0xb5,0x20,0x49,0xd,0x6c,0x10,0x49,0xb3,0x97,0x20,0x4a, + 0xed,0x4e,0x10,0x4b,0x9c,0xb3,0xa0,0x4c,0xd6,0x6a,0x90,0x4d,0x7c,0x95,0xa0,0x4e, + 0xb6,0x4c,0x90,0x4f,0x5c,0x77,0xa0,0x50,0x96,0x2e,0x90,0x51,0x3c,0x59,0xa0,0x52, + 0x76,0x10,0x90,0x53,0x1c,0x3b,0xa0,0x54,0x55,0xf2,0x90,0x54,0xfc,0x1d,0xa0,0x56, + 0x35,0xd4,0x90,0x56,0xe5,0x3a,0x20,0x58,0x1e,0xf1,0x10,0x58,0xc5,0x1c,0x20,0x59, + 0xfe,0xd3,0x10,0x5a,0xa4,0xfe,0x20,0x5b,0xde,0xb5,0x10,0x5c,0x84,0xe0,0x20,0x5d, + 0xbe,0x97,0x10,0x5e,0x64,0xc2,0x20,0x5f,0x9e,0x79,0x10,0x60,0x4d,0xde,0xa0,0x61, + 0x87,0x95,0x90,0x62,0x2d,0xc0,0xa0,0x63,0x67,0x77,0x90,0x64,0xd,0xa2,0xa0,0x65, + 0x47,0x59,0x90,0x65,0xed,0x84,0xa0,0x67,0x27,0x3b,0x90,0x67,0xcd,0x66,0xa0,0x69, + 0x7,0x1d,0x90,0x69,0xad,0x48,0xa0,0x6a,0xe6,0xff,0x90,0x6b,0x96,0x65,0x20,0x6c, + 0xd0,0x1c,0x10,0x6d,0x76,0x47,0x20,0x6e,0xaf,0xfe,0x10,0x6f,0x56,0x29,0x20,0x70, + 0x8f,0xe0,0x10,0x71,0x36,0xb,0x20,0x72,0x6f,0xc2,0x10,0x73,0x15,0xed,0x20,0x74, + 0x4f,0xa4,0x10,0x74,0xff,0x9,0xa0,0x76,0x38,0xc0,0x90,0x76,0xde,0xeb,0xa0,0x78, + 0x18,0xa2,0x90,0x78,0xbe,0xcd,0xa0,0x79,0xf8,0x84,0x90,0x7a,0x9e,0xaf,0xa0,0x7b, + 0xd8,0x66,0x90,0x7c,0x7e,0x91,0xa0,0x7d,0xb8,0x48,0x90,0x7e,0x5e,0x73,0xa0,0x7f, + 0x98,0x2a,0x90,0x2,0x1,0x2,0x3,0x4,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0xff,0xff,0x8c,0x94,0x0,0x0,0xff,0xff,0x9d,0x90,0x1,0x4,0xff,0xff,0x8f, + 0x80,0x0,0x8,0xff,0xff,0x9d,0x90,0x1,0xc,0xff,0xff,0x9d,0x90,0x1,0x10,0x4c, + 0x4d,0x54,0x0,0x50,0x44,0x54,0x0,0x50,0x53,0x54,0x0,0x50,0x57,0x54,0x0,0x50, + 0x50,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x1,0x54,0x5a,0x69, 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0x92,0xe6,0x92,0x48,0x0,0x1,0xff,0xff,0xfc,0x38,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x4c,0x4d,0x54,0x0,0x47,0x4d,0x54,0x0,0x0, - 0x0,0x0,0x0,0xa,0x47,0x4d,0x54,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Cairo - 0x0,0x0,0x7,0xb4, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x7f,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0xc8, - 0x93,0xb4,0xe0,0xc8,0xfa,0x7b,0xd0,0xc9,0xfc,0xef,0xe0,0xca,0xc7,0xe8,0xd0,0xcb, - 0xcb,0xae,0x60,0xcc,0xdf,0x29,0xd0,0xcd,0xac,0xe1,0xe0,0xce,0xc6,0xf4,0xd0,0xcf, - 0x8f,0x66,0xe0,0xd0,0xa9,0x79,0xd0,0xd1,0x84,0x60,0xe0,0xd2,0x8a,0xad,0x50,0xe8, - 0x36,0x63,0x60,0xe8,0xf4,0x2d,0x50,0xea,0xb,0xb9,0x60,0xea,0xd5,0x60,0xd0,0xeb, - 0xec,0xfa,0xf0,0xec,0xb5,0x6d,0x0,0xed,0xcf,0x7f,0xf0,0xee,0x97,0xf2,0x0,0xef, - 0xb0,0xb3,0x70,0xf0,0x79,0x25,0x80,0xf1,0x91,0xe6,0xf0,0xf2,0x5a,0x59,0x0,0xf3, - 0x73,0x1a,0x70,0xf4,0x3b,0x8c,0x80,0xf5,0x55,0x9f,0x70,0xf6,0x1e,0x11,0x80,0xf7, - 0x36,0xd2,0xf0,0xf7,0xff,0x45,0x0,0xf9,0x18,0x6,0x70,0xf9,0xe1,0xca,0x0,0xfa, - 0xf9,0x39,0xf0,0xfb,0xc2,0xfd,0x80,0xfc,0xdb,0xbe,0xf0,0xfd,0xa5,0x82,0x80,0xfe, - 0xbc,0xf2,0x70,0xff,0x86,0xb6,0x0,0x0,0x9e,0x25,0xf0,0x1,0x67,0xe9,0x80,0x2, - 0x7f,0x59,0x70,0x3,0x49,0x1d,0x0,0x4,0x61,0xde,0x70,0x5,0x2b,0xa2,0x0,0x6, - 0x43,0x11,0xf0,0x7,0xc,0xd5,0x80,0x8,0x24,0x45,0x70,0x8,0xee,0x9,0x0,0xa, - 0x5,0x78,0xf0,0xa,0xcf,0x3c,0x80,0xb,0xe7,0xfd,0xf0,0xc,0xb1,0xc1,0x80,0xd, - 0xc9,0x31,0x70,0xe,0x92,0xf5,0x0,0xf,0xaa,0x64,0xf0,0x10,0x74,0x28,0x80,0x11, - 0x8b,0x98,0x70,0x12,0x55,0x5c,0x0,0x13,0x6e,0x1d,0x70,0x14,0x37,0xe1,0x0,0x15, - 0x4f,0x50,0xf0,0x16,0x19,0x14,0x80,0x17,0xa0,0x93,0xf0,0x17,0xfa,0x48,0x0,0x19, - 0x70,0xa3,0xf0,0x19,0xdb,0x7b,0x80,0x1a,0xf4,0x3c,0xf0,0x1b,0xbe,0x0,0x80,0x1c, - 0xd5,0x70,0x70,0x1d,0x9f,0x34,0x0,0x1e,0xb6,0xa3,0xf0,0x1f,0x80,0x67,0x80,0x20, - 0x97,0xd7,0x70,0x21,0x61,0x9b,0x0,0x22,0x7a,0x5c,0x70,0x23,0x44,0x20,0x0,0x24, - 0x62,0x27,0x70,0x25,0x25,0x53,0x80,0x26,0x3c,0xc3,0x70,0x27,0x6,0x87,0x0,0x28, - 0x1d,0xf6,0xf0,0x28,0xe7,0xba,0x80,0x2a,0x0,0x7b,0xf0,0x2a,0xca,0x3f,0x80,0x2b, - 0xe1,0xaf,0x70,0x2c,0xab,0x73,0x0,0x2d,0xc2,0xe2,0xf0,0x2e,0x8c,0xa6,0x80,0x2f, - 0xa0,0x13,0xe0,0x30,0x6b,0xc,0xd0,0x31,0x7f,0xf5,0xe0,0x32,0x4a,0xee,0xd0,0x33, - 0x5f,0xd7,0xe0,0x34,0x2a,0xd0,0xd0,0x35,0x3f,0xb9,0xe0,0x36,0xa,0xb2,0xd0,0x37, - 0x28,0xd6,0x60,0x37,0xf3,0xcf,0x50,0x39,0x8,0xb8,0x60,0x39,0xd3,0xb1,0x50,0x3a, - 0xe8,0x9a,0x60,0x3b,0xb3,0x93,0x50,0x3c,0xc8,0x7c,0x60,0x3d,0x93,0x75,0x50,0x3e, - 0xa8,0x5e,0x60,0x3f,0x73,0x57,0x50,0x40,0x91,0x7a,0xe0,0x41,0x5c,0x73,0xd0,0x42, - 0x71,0x5c,0xe0,0x43,0x3c,0x55,0xd0,0x44,0x51,0x3e,0xe0,0x45,0x12,0xfd,0x50,0x46, - 0x31,0x20,0xe0,0x46,0xe0,0x6a,0x50,0x48,0x11,0x2,0xe0,0x48,0xb7,0x11,0xd0,0x49, - 0xf0,0xe4,0xe0,0x4a,0x8d,0xb9,0x50,0x4b,0xda,0x1,0x60,0x4c,0x61,0xbd,0xd0,0x4c, - 0x89,0x58,0xe0,0x4c,0xa4,0xfa,0x50,0x53,0x75,0x38,0xe0,0x53,0xac,0x89,0xd0,0x53, - 0xda,0xbc,0x60,0x54,0x24,0x82,0x50,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xbf,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0x5e,0x3d,0x76,0xec,0xff,0xff,0xff,0xff,0x9e,0xb8,0xbd, + 0xa0,0xff,0xff,0xff,0xff,0x9f,0xbb,0x15,0x90,0xff,0xff,0xff,0xff,0xcb,0x89,0x1a, + 0xa0,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x61,0x26, + 0x10,0xff,0xff,0xff,0xff,0xd3,0x76,0xf,0x20,0xff,0xff,0xff,0xff,0xd4,0x53,0x7d, + 0x10,0xff,0xff,0xff,0xff,0xd5,0x55,0xf1,0x20,0xff,0xff,0xff,0xff,0xd6,0x20,0xea, + 0x10,0xff,0xff,0xff,0xff,0xd7,0x35,0xd3,0x20,0xff,0xff,0xff,0xff,0xd8,0x0,0xcc, + 0x10,0xff,0xff,0xff,0xff,0xd9,0x15,0xb5,0x20,0xff,0xff,0xff,0xff,0xd9,0xe0,0xae, + 0x10,0xff,0xff,0xff,0xff,0xda,0xfe,0xd1,0xa0,0xff,0xff,0xff,0xff,0xdb,0xc0,0x90, + 0x10,0xff,0xff,0xff,0xff,0xdc,0xde,0xb3,0xa0,0xff,0xff,0xff,0xff,0xdd,0xa9,0xac, + 0x90,0xff,0xff,0xff,0xff,0xde,0xbe,0x95,0xa0,0xff,0xff,0xff,0xff,0xdf,0x89,0x8e, + 0x90,0xff,0xff,0xff,0xff,0xe0,0x9e,0x77,0xa0,0xff,0xff,0xff,0xff,0xe1,0x69,0x70, + 0x90,0xff,0xff,0xff,0xff,0xe2,0x7e,0x59,0xa0,0xff,0xff,0xff,0xff,0xe3,0x49,0x52, + 0x90,0xff,0xff,0xff,0xff,0xe4,0x5e,0x3b,0xa0,0xff,0xff,0xff,0xff,0xe5,0x29,0x34, + 0x90,0xff,0xff,0xff,0xff,0xe6,0x47,0x58,0x20,0xff,0xff,0xff,0xff,0xe7,0x12,0x51, + 0x10,0xff,0xff,0xff,0xff,0xe8,0x27,0x3a,0x20,0xff,0xff,0xff,0xff,0xe8,0xf2,0x33, + 0x10,0xff,0xff,0xff,0xff,0xea,0x7,0x1c,0x20,0xff,0xff,0xff,0xff,0xea,0xd2,0x15, + 0x10,0xff,0xff,0xff,0xff,0xeb,0xe6,0xfe,0x20,0xff,0xff,0xff,0xff,0xec,0xb1,0xf7, + 0x10,0xff,0xff,0xff,0xff,0xed,0xc6,0xe0,0x20,0xff,0xff,0xff,0xff,0xee,0x91,0xd9, + 0x10,0xff,0xff,0xff,0xff,0xef,0xaf,0xfc,0xa0,0xff,0xff,0xff,0xff,0xf0,0x71,0xbb, + 0x10,0xff,0xff,0xff,0xff,0xf1,0x8f,0xde,0xa0,0xff,0xff,0xff,0xff,0xf2,0x7f,0xc1, + 0x90,0xff,0xff,0xff,0xff,0xf3,0x6f,0xc0,0xa0,0xff,0xff,0xff,0xff,0xf4,0x5f,0xa3, + 0x90,0xff,0xff,0xff,0xff,0xf5,0x4f,0xa2,0xa0,0xff,0xff,0xff,0xff,0xf6,0x3f,0x85, + 0x90,0xff,0xff,0xff,0xff,0xf7,0x2f,0x84,0xa0,0xff,0xff,0xff,0xff,0xf8,0x28,0xa2, + 0x10,0xff,0xff,0xff,0xff,0xf9,0xf,0x66,0xa0,0xff,0xff,0xff,0xff,0xfa,0x8,0x84, + 0x10,0xff,0xff,0xff,0xff,0xfa,0xf8,0x83,0x20,0xff,0xff,0xff,0xff,0xfb,0xe8,0x66, + 0x10,0xff,0xff,0xff,0xff,0xfc,0xd8,0x65,0x20,0xff,0xff,0xff,0xff,0xfd,0xc8,0x48, + 0x10,0xff,0xff,0xff,0xff,0xfe,0xb8,0x47,0x20,0xff,0xff,0xff,0xff,0xff,0xa8,0x2a, + 0x10,0x0,0x0,0x0,0x0,0x0,0x98,0x29,0x20,0x0,0x0,0x0,0x0,0x1,0x88,0xc, + 0x10,0x0,0x0,0x0,0x0,0x2,0x78,0xb,0x20,0x0,0x0,0x0,0x0,0x3,0x71,0x28, + 0x90,0x0,0x0,0x0,0x0,0x4,0x61,0x27,0xa0,0x0,0x0,0x0,0x0,0x5,0x51,0xa, + 0x90,0x0,0x0,0x0,0x0,0x6,0x41,0x9,0xa0,0x0,0x0,0x0,0x0,0x7,0x30,0xec, + 0x90,0x0,0x0,0x0,0x0,0x8,0x20,0xeb,0xa0,0x0,0x0,0x0,0x0,0x9,0x10,0xce, + 0x90,0x0,0x0,0x0,0x0,0xa,0x0,0xcd,0xa0,0x0,0x0,0x0,0x0,0xa,0xf0,0xb0, + 0x90,0x0,0x0,0x0,0x0,0xb,0xe0,0xaf,0xa0,0x0,0x0,0x0,0x0,0xc,0xd9,0xcd, + 0x10,0x0,0x0,0x0,0x0,0xd,0xc0,0x91,0xa0,0x0,0x0,0x0,0x0,0xe,0xb9,0xaf, + 0x10,0x0,0x0,0x0,0x0,0xf,0xa9,0xae,0x20,0x0,0x0,0x0,0x0,0x10,0x99,0x91, + 0x10,0x0,0x0,0x0,0x0,0x11,0x89,0x90,0x20,0x0,0x0,0x0,0x0,0x12,0x79,0x73, + 0x10,0x0,0x0,0x0,0x0,0x13,0x69,0x72,0x20,0x0,0x0,0x0,0x0,0x14,0x59,0x55, + 0x10,0x0,0x0,0x0,0x0,0x15,0x49,0x54,0x20,0x0,0x0,0x0,0x0,0x16,0x39,0x37, + 0x10,0x0,0x0,0x0,0x0,0x17,0x29,0x36,0x20,0x0,0x0,0x0,0x0,0x18,0x22,0x53, + 0x90,0x0,0x0,0x0,0x0,0x19,0x9,0x18,0x20,0x0,0x0,0x0,0x0,0x1a,0x2,0x35, + 0x90,0x0,0x0,0x0,0x0,0x1a,0xf2,0x34,0xa0,0x0,0x0,0x0,0x0,0x1b,0xe2,0x17, + 0x90,0x0,0x0,0x0,0x0,0x1c,0xd2,0x16,0xa0,0x0,0x0,0x0,0x0,0x1d,0xc1,0xf9, + 0x90,0x0,0x0,0x0,0x0,0x1e,0xb1,0xf8,0xa0,0x0,0x0,0x0,0x0,0x1f,0xa1,0xdb, + 0x90,0x0,0x0,0x0,0x0,0x20,0x76,0x2b,0x20,0x0,0x0,0x0,0x0,0x21,0x81,0xbd, + 0x90,0x0,0x0,0x0,0x0,0x22,0x56,0xd,0x20,0x0,0x0,0x0,0x0,0x23,0x6a,0xda, + 0x10,0x0,0x0,0x0,0x0,0x24,0x35,0xef,0x20,0x0,0x0,0x0,0x0,0x25,0x4a,0xbc, + 0x10,0x0,0x0,0x0,0x0,0x26,0x15,0xd1,0x20,0x0,0x0,0x0,0x0,0x27,0x2a,0x9e, + 0x10,0x0,0x0,0x0,0x0,0x27,0xfe,0xed,0xa0,0x0,0x0,0x0,0x0,0x29,0xa,0x80, + 0x10,0x0,0x0,0x0,0x0,0x29,0xde,0xcf,0xa0,0x0,0x0,0x0,0x0,0x2a,0xea,0x62, + 0x10,0x0,0x0,0x0,0x0,0x2b,0xbe,0xb1,0xa0,0x0,0x0,0x0,0x0,0x2c,0xd3,0x7e, + 0x90,0x0,0x0,0x0,0x0,0x2d,0x9e,0x93,0xa0,0x0,0x0,0x0,0x0,0x2e,0xb3,0x60, + 0x90,0x0,0x0,0x0,0x0,0x2f,0x7e,0x75,0xa0,0x0,0x0,0x0,0x0,0x30,0x93,0x42, + 0x90,0x0,0x0,0x0,0x0,0x31,0x67,0x92,0x20,0x0,0x0,0x0,0x0,0x32,0x73,0x24, + 0x90,0x0,0x0,0x0,0x0,0x33,0x47,0x74,0x20,0x0,0x0,0x0,0x0,0x34,0x53,0x6, + 0x90,0x0,0x0,0x0,0x0,0x35,0x27,0x56,0x20,0x0,0x0,0x0,0x0,0x36,0x32,0xe8, + 0x90,0x0,0x0,0x0,0x0,0x37,0x7,0x38,0x20,0x0,0x0,0x0,0x0,0x38,0x1c,0x5, + 0x10,0x0,0x0,0x0,0x0,0x38,0xe7,0x1a,0x20,0x0,0x0,0x0,0x0,0x39,0xfb,0xe7, + 0x10,0x0,0x0,0x0,0x0,0x3a,0xc6,0xfc,0x20,0x0,0x0,0x0,0x0,0x3b,0xdb,0xc9, + 0x10,0x0,0x0,0x0,0x0,0x3c,0xb0,0x18,0xa0,0x0,0x0,0x0,0x0,0x3d,0xbb,0xab, + 0x10,0x0,0x0,0x0,0x0,0x3e,0x8f,0xfa,0xa0,0x0,0x0,0x0,0x0,0x3f,0x9b,0x8d, + 0x10,0x0,0x0,0x0,0x0,0x40,0x6f,0xdc,0xa0,0x0,0x0,0x0,0x0,0x41,0x84,0xa9, + 0x90,0x0,0x0,0x0,0x0,0x42,0x4f,0xbe,0xa0,0x0,0x0,0x0,0x0,0x43,0x64,0x8b, + 0x90,0x0,0x0,0x0,0x0,0x44,0x2f,0xa0,0xa0,0x0,0x0,0x0,0x0,0x45,0x44,0x6d, + 0x90,0x0,0x0,0x0,0x0,0x45,0xf3,0xd3,0x20,0x0,0x0,0x0,0x0,0x47,0x2d,0x8a, + 0x10,0x0,0x0,0x0,0x0,0x47,0xd3,0xb5,0x20,0x0,0x0,0x0,0x0,0x49,0xd,0x6c, + 0x10,0x0,0x0,0x0,0x0,0x49,0xb3,0x97,0x20,0x0,0x0,0x0,0x0,0x4a,0xed,0x4e, + 0x10,0x0,0x0,0x0,0x0,0x4b,0x9c,0xb3,0xa0,0x0,0x0,0x0,0x0,0x4c,0xd6,0x6a, + 0x90,0x0,0x0,0x0,0x0,0x4d,0x7c,0x95,0xa0,0x0,0x0,0x0,0x0,0x4e,0xb6,0x4c, + 0x90,0x0,0x0,0x0,0x0,0x4f,0x5c,0x77,0xa0,0x0,0x0,0x0,0x0,0x50,0x96,0x2e, + 0x90,0x0,0x0,0x0,0x0,0x51,0x3c,0x59,0xa0,0x0,0x0,0x0,0x0,0x52,0x76,0x10, + 0x90,0x0,0x0,0x0,0x0,0x53,0x1c,0x3b,0xa0,0x0,0x0,0x0,0x0,0x54,0x55,0xf2, + 0x90,0x0,0x0,0x0,0x0,0x54,0xfc,0x1d,0xa0,0x0,0x0,0x0,0x0,0x56,0x35,0xd4, + 0x90,0x0,0x0,0x0,0x0,0x56,0xe5,0x3a,0x20,0x0,0x0,0x0,0x0,0x58,0x1e,0xf1, + 0x10,0x0,0x0,0x0,0x0,0x58,0xc5,0x1c,0x20,0x0,0x0,0x0,0x0,0x59,0xfe,0xd3, + 0x10,0x0,0x0,0x0,0x0,0x5a,0xa4,0xfe,0x20,0x0,0x0,0x0,0x0,0x5b,0xde,0xb5, + 0x10,0x0,0x0,0x0,0x0,0x5c,0x84,0xe0,0x20,0x0,0x0,0x0,0x0,0x5d,0xbe,0x97, + 0x10,0x0,0x0,0x0,0x0,0x5e,0x64,0xc2,0x20,0x0,0x0,0x0,0x0,0x5f,0x9e,0x79, + 0x10,0x0,0x0,0x0,0x0,0x60,0x4d,0xde,0xa0,0x0,0x0,0x0,0x0,0x61,0x87,0x95, + 0x90,0x0,0x0,0x0,0x0,0x62,0x2d,0xc0,0xa0,0x0,0x0,0x0,0x0,0x63,0x67,0x77, + 0x90,0x0,0x0,0x0,0x0,0x64,0xd,0xa2,0xa0,0x0,0x0,0x0,0x0,0x65,0x47,0x59, + 0x90,0x0,0x0,0x0,0x0,0x65,0xed,0x84,0xa0,0x0,0x0,0x0,0x0,0x67,0x27,0x3b, + 0x90,0x0,0x0,0x0,0x0,0x67,0xcd,0x66,0xa0,0x0,0x0,0x0,0x0,0x69,0x7,0x1d, + 0x90,0x0,0x0,0x0,0x0,0x69,0xad,0x48,0xa0,0x0,0x0,0x0,0x0,0x6a,0xe6,0xff, + 0x90,0x0,0x0,0x0,0x0,0x6b,0x96,0x65,0x20,0x0,0x0,0x0,0x0,0x6c,0xd0,0x1c, + 0x10,0x0,0x0,0x0,0x0,0x6d,0x76,0x47,0x20,0x0,0x0,0x0,0x0,0x6e,0xaf,0xfe, + 0x10,0x0,0x0,0x0,0x0,0x6f,0x56,0x29,0x20,0x0,0x0,0x0,0x0,0x70,0x8f,0xe0, + 0x10,0x0,0x0,0x0,0x0,0x71,0x36,0xb,0x20,0x0,0x0,0x0,0x0,0x72,0x6f,0xc2, + 0x10,0x0,0x0,0x0,0x0,0x73,0x15,0xed,0x20,0x0,0x0,0x0,0x0,0x74,0x4f,0xa4, + 0x10,0x0,0x0,0x0,0x0,0x74,0xff,0x9,0xa0,0x0,0x0,0x0,0x0,0x76,0x38,0xc0, + 0x90,0x0,0x0,0x0,0x0,0x76,0xde,0xeb,0xa0,0x0,0x0,0x0,0x0,0x78,0x18,0xa2, + 0x90,0x0,0x0,0x0,0x0,0x78,0xbe,0xcd,0xa0,0x0,0x0,0x0,0x0,0x79,0xf8,0x84, + 0x90,0x0,0x0,0x0,0x0,0x7a,0x9e,0xaf,0xa0,0x0,0x0,0x0,0x0,0x7b,0xd8,0x66, + 0x90,0x0,0x0,0x0,0x0,0x7c,0x7e,0x91,0xa0,0x0,0x0,0x0,0x0,0x7d,0xb8,0x48, + 0x90,0x0,0x0,0x0,0x0,0x7e,0x5e,0x73,0xa0,0x0,0x0,0x0,0x0,0x7f,0x98,0x2a, + 0x90,0x0,0x2,0x1,0x2,0x3,0x4,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x0,0x0,0x1d,0x55,0x0,0x0,0x0,0x0,0x2a,0x30, - 0x1,0x4,0x0,0x0,0x1c,0x20,0x0,0x9,0x0,0x0,0x2a,0x30,0x1,0x4,0x4c,0x4d, - 0x54,0x0,0x45,0x45,0x53,0x54,0x0,0x45,0x45,0x54,0x0,0x0,0x0,0x0,0x1,0x0, - 0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0xd,0xf8, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x7d,0xbd,0x4d,0xab,0xff, - 0xff,0xff,0xff,0xc8,0x93,0xb4,0xe0,0xff,0xff,0xff,0xff,0xc8,0xfa,0x7b,0xd0,0xff, - 0xff,0xff,0xff,0xc9,0xfc,0xef,0xe0,0xff,0xff,0xff,0xff,0xca,0xc7,0xe8,0xd0,0xff, - 0xff,0xff,0xff,0xcb,0xcb,0xae,0x60,0xff,0xff,0xff,0xff,0xcc,0xdf,0x29,0xd0,0xff, - 0xff,0xff,0xff,0xcd,0xac,0xe1,0xe0,0xff,0xff,0xff,0xff,0xce,0xc6,0xf4,0xd0,0xff, - 0xff,0xff,0xff,0xcf,0x8f,0x66,0xe0,0xff,0xff,0xff,0xff,0xd0,0xa9,0x79,0xd0,0xff, - 0xff,0xff,0xff,0xd1,0x84,0x60,0xe0,0xff,0xff,0xff,0xff,0xd2,0x8a,0xad,0x50,0xff, - 0xff,0xff,0xff,0xe8,0x36,0x63,0x60,0xff,0xff,0xff,0xff,0xe8,0xf4,0x2d,0x50,0xff, - 0xff,0xff,0xff,0xea,0xb,0xb9,0x60,0xff,0xff,0xff,0xff,0xea,0xd5,0x60,0xd0,0xff, - 0xff,0xff,0xff,0xeb,0xec,0xfa,0xf0,0xff,0xff,0xff,0xff,0xec,0xb5,0x6d,0x0,0xff, - 0xff,0xff,0xff,0xed,0xcf,0x7f,0xf0,0xff,0xff,0xff,0xff,0xee,0x97,0xf2,0x0,0xff, - 0xff,0xff,0xff,0xef,0xb0,0xb3,0x70,0xff,0xff,0xff,0xff,0xf0,0x79,0x25,0x80,0xff, - 0xff,0xff,0xff,0xf1,0x91,0xe6,0xf0,0xff,0xff,0xff,0xff,0xf2,0x5a,0x59,0x0,0xff, - 0xff,0xff,0xff,0xf3,0x73,0x1a,0x70,0xff,0xff,0xff,0xff,0xf4,0x3b,0x8c,0x80,0xff, - 0xff,0xff,0xff,0xf5,0x55,0x9f,0x70,0xff,0xff,0xff,0xff,0xf6,0x1e,0x11,0x80,0xff, - 0xff,0xff,0xff,0xf7,0x36,0xd2,0xf0,0xff,0xff,0xff,0xff,0xf7,0xff,0x45,0x0,0xff, - 0xff,0xff,0xff,0xf9,0x18,0x6,0x70,0xff,0xff,0xff,0xff,0xf9,0xe1,0xca,0x0,0xff, - 0xff,0xff,0xff,0xfa,0xf9,0x39,0xf0,0xff,0xff,0xff,0xff,0xfb,0xc2,0xfd,0x80,0xff, - 0xff,0xff,0xff,0xfc,0xdb,0xbe,0xf0,0xff,0xff,0xff,0xff,0xfd,0xa5,0x82,0x80,0xff, - 0xff,0xff,0xff,0xfe,0xbc,0xf2,0x70,0xff,0xff,0xff,0xff,0xff,0x86,0xb6,0x0,0x0, - 0x0,0x0,0x0,0x0,0x9e,0x25,0xf0,0x0,0x0,0x0,0x0,0x1,0x67,0xe9,0x80,0x0, - 0x0,0x0,0x0,0x2,0x7f,0x59,0x70,0x0,0x0,0x0,0x0,0x3,0x49,0x1d,0x0,0x0, - 0x0,0x0,0x0,0x4,0x61,0xde,0x70,0x0,0x0,0x0,0x0,0x5,0x2b,0xa2,0x0,0x0, - 0x0,0x0,0x0,0x6,0x43,0x11,0xf0,0x0,0x0,0x0,0x0,0x7,0xc,0xd5,0x80,0x0, - 0x0,0x0,0x0,0x8,0x24,0x45,0x70,0x0,0x0,0x0,0x0,0x8,0xee,0x9,0x0,0x0, - 0x0,0x0,0x0,0xa,0x5,0x78,0xf0,0x0,0x0,0x0,0x0,0xa,0xcf,0x3c,0x80,0x0, - 0x0,0x0,0x0,0xb,0xe7,0xfd,0xf0,0x0,0x0,0x0,0x0,0xc,0xb1,0xc1,0x80,0x0, - 0x0,0x0,0x0,0xd,0xc9,0x31,0x70,0x0,0x0,0x0,0x0,0xe,0x92,0xf5,0x0,0x0, - 0x0,0x0,0x0,0xf,0xaa,0x64,0xf0,0x0,0x0,0x0,0x0,0x10,0x74,0x28,0x80,0x0, - 0x0,0x0,0x0,0x11,0x8b,0x98,0x70,0x0,0x0,0x0,0x0,0x12,0x55,0x5c,0x0,0x0, - 0x0,0x0,0x0,0x13,0x6e,0x1d,0x70,0x0,0x0,0x0,0x0,0x14,0x37,0xe1,0x0,0x0, - 0x0,0x0,0x0,0x15,0x4f,0x50,0xf0,0x0,0x0,0x0,0x0,0x16,0x19,0x14,0x80,0x0, - 0x0,0x0,0x0,0x17,0xa0,0x93,0xf0,0x0,0x0,0x0,0x0,0x17,0xfa,0x48,0x0,0x0, - 0x0,0x0,0x0,0x19,0x70,0xa3,0xf0,0x0,0x0,0x0,0x0,0x19,0xdb,0x7b,0x80,0x0, - 0x0,0x0,0x0,0x1a,0xf4,0x3c,0xf0,0x0,0x0,0x0,0x0,0x1b,0xbe,0x0,0x80,0x0, - 0x0,0x0,0x0,0x1c,0xd5,0x70,0x70,0x0,0x0,0x0,0x0,0x1d,0x9f,0x34,0x0,0x0, - 0x0,0x0,0x0,0x1e,0xb6,0xa3,0xf0,0x0,0x0,0x0,0x0,0x1f,0x80,0x67,0x80,0x0, - 0x0,0x0,0x0,0x20,0x97,0xd7,0x70,0x0,0x0,0x0,0x0,0x21,0x61,0x9b,0x0,0x0, - 0x0,0x0,0x0,0x22,0x7a,0x5c,0x70,0x0,0x0,0x0,0x0,0x23,0x44,0x20,0x0,0x0, - 0x0,0x0,0x0,0x24,0x62,0x27,0x70,0x0,0x0,0x0,0x0,0x25,0x25,0x53,0x80,0x0, - 0x0,0x0,0x0,0x26,0x3c,0xc3,0x70,0x0,0x0,0x0,0x0,0x27,0x6,0x87,0x0,0x0, - 0x0,0x0,0x0,0x28,0x1d,0xf6,0xf0,0x0,0x0,0x0,0x0,0x28,0xe7,0xba,0x80,0x0, - 0x0,0x0,0x0,0x2a,0x0,0x7b,0xf0,0x0,0x0,0x0,0x0,0x2a,0xca,0x3f,0x80,0x0, - 0x0,0x0,0x0,0x2b,0xe1,0xaf,0x70,0x0,0x0,0x0,0x0,0x2c,0xab,0x73,0x0,0x0, - 0x0,0x0,0x0,0x2d,0xc2,0xe2,0xf0,0x0,0x0,0x0,0x0,0x2e,0x8c,0xa6,0x80,0x0, - 0x0,0x0,0x0,0x2f,0xa0,0x13,0xe0,0x0,0x0,0x0,0x0,0x30,0x6b,0xc,0xd0,0x0, - 0x0,0x0,0x0,0x31,0x7f,0xf5,0xe0,0x0,0x0,0x0,0x0,0x32,0x4a,0xee,0xd0,0x0, - 0x0,0x0,0x0,0x33,0x5f,0xd7,0xe0,0x0,0x0,0x0,0x0,0x34,0x2a,0xd0,0xd0,0x0, - 0x0,0x0,0x0,0x35,0x3f,0xb9,0xe0,0x0,0x0,0x0,0x0,0x36,0xa,0xb2,0xd0,0x0, - 0x0,0x0,0x0,0x37,0x28,0xd6,0x60,0x0,0x0,0x0,0x0,0x37,0xf3,0xcf,0x50,0x0, - 0x0,0x0,0x0,0x39,0x8,0xb8,0x60,0x0,0x0,0x0,0x0,0x39,0xd3,0xb1,0x50,0x0, - 0x0,0x0,0x0,0x3a,0xe8,0x9a,0x60,0x0,0x0,0x0,0x0,0x3b,0xb3,0x93,0x50,0x0, - 0x0,0x0,0x0,0x3c,0xc8,0x7c,0x60,0x0,0x0,0x0,0x0,0x3d,0x93,0x75,0x50,0x0, - 0x0,0x0,0x0,0x3e,0xa8,0x5e,0x60,0x0,0x0,0x0,0x0,0x3f,0x73,0x57,0x50,0x0, - 0x0,0x0,0x0,0x40,0x91,0x7a,0xe0,0x0,0x0,0x0,0x0,0x41,0x5c,0x73,0xd0,0x0, - 0x0,0x0,0x0,0x42,0x71,0x5c,0xe0,0x0,0x0,0x0,0x0,0x43,0x3c,0x55,0xd0,0x0, - 0x0,0x0,0x0,0x44,0x51,0x3e,0xe0,0x0,0x0,0x0,0x0,0x45,0x12,0xfd,0x50,0x0, - 0x0,0x0,0x0,0x46,0x31,0x20,0xe0,0x0,0x0,0x0,0x0,0x46,0xe0,0x6a,0x50,0x0, - 0x0,0x0,0x0,0x48,0x11,0x2,0xe0,0x0,0x0,0x0,0x0,0x48,0xb7,0x11,0xd0,0x0, - 0x0,0x0,0x0,0x49,0xf0,0xe4,0xe0,0x0,0x0,0x0,0x0,0x4a,0x8d,0xb9,0x50,0x0, - 0x0,0x0,0x0,0x4b,0xda,0x1,0x60,0x0,0x0,0x0,0x0,0x4c,0x61,0xbd,0xd0,0x0, - 0x0,0x0,0x0,0x4c,0x89,0x58,0xe0,0x0,0x0,0x0,0x0,0x4c,0xa4,0xfa,0x50,0x0, - 0x0,0x0,0x0,0x53,0x75,0x38,0xe0,0x0,0x0,0x0,0x0,0x53,0xac,0x89,0xd0,0x0, - 0x0,0x0,0x0,0x53,0xda,0xbc,0x60,0x0,0x0,0x0,0x0,0x54,0x24,0x82,0x50,0x0, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0xff,0xff,0x8c,0x94,0x0,0x0,0xff,0xff,0x9d,0x90,0x1,0x4,0xff,0xff,0x8f,0x80, + 0x0,0x8,0xff,0xff,0x9d,0x90,0x1,0xc,0xff,0xff,0x9d,0x90,0x1,0x10,0x4c,0x4d, + 0x54,0x0,0x50,0x44,0x54,0x0,0x50,0x53,0x54,0x0,0x50,0x57,0x54,0x0,0x50,0x50, + 0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x1,0xa,0x50,0x53,0x54, + 0x38,0x50,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e, + 0x31,0x2e,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Canada/Saskatchewan + 0x0,0x0,0x3,0xe2, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x36,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0x80,0x0,0x0,0x0,0x86, + 0xfd,0x93,0x1c,0x9e,0xb8,0xaf,0x90,0x9f,0xbb,0x7,0x80,0xb5,0x65,0x4f,0xf0,0xb6, + 0x30,0x48,0xe0,0xb7,0x45,0x31,0xf0,0xb8,0x10,0x2a,0xe0,0xb9,0x25,0x13,0xf0,0xb9, + 0xf0,0xc,0xe0,0xbb,0xe,0x30,0x70,0xbb,0xcf,0xee,0xe0,0xbc,0xee,0x12,0x70,0xbd, + 0xb9,0xb,0x60,0xc2,0x72,0x8,0xf0,0xc3,0x61,0xeb,0xe0,0xc4,0x51,0xea,0xf0,0xc5, + 0x38,0x93,0x60,0xc6,0x31,0xcc,0xf0,0xc7,0x21,0xaf,0xe0,0xc8,0x1a,0xe9,0x70,0xc9, + 0xa,0xcc,0x60,0xc9,0xfa,0xcb,0x70,0xca,0xea,0xae,0x60,0xcb,0x89,0xc,0x90,0xd2, + 0x23,0xf4,0x70,0xd2,0x61,0x18,0x0,0xd3,0x63,0x8c,0x10,0xd4,0x53,0x6f,0x0,0xd5, + 0x55,0xe3,0x10,0xd6,0x20,0xdc,0x0,0xd7,0x35,0xc5,0x10,0xd8,0x0,0xbe,0x0,0xd9, + 0x15,0xa7,0x10,0xd9,0xe0,0xa0,0x0,0xda,0xfe,0xc3,0x90,0xdb,0xc0,0x82,0x0,0xdc, + 0xde,0xa5,0x90,0xdd,0xa9,0x9e,0x80,0xde,0xbe,0x87,0x90,0xdf,0x89,0x80,0x80,0xe0, + 0x9e,0x69,0x90,0xe1,0x69,0x62,0x80,0xe2,0x7e,0x4b,0x90,0xe3,0x49,0x44,0x80,0xe4, + 0x5e,0x2d,0x90,0xe5,0x29,0x26,0x80,0xe6,0x47,0x4a,0x10,0xe7,0x12,0x43,0x0,0xe8, + 0x27,0x2c,0x10,0xe8,0xf2,0x25,0x0,0xeb,0xe6,0xf0,0x10,0xec,0xd6,0xd3,0x0,0xed, + 0xc6,0xd2,0x10,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x5,0xff,0xff,0x9d,0xe4,0x0,0x0,0xff, + 0xff,0xab,0xa0,0x1,0x4,0xff,0xff,0x9d,0x90,0x0,0x8,0xff,0xff,0xab,0xa0,0x1, + 0xc,0xff,0xff,0xab,0xa0,0x1,0x10,0xff,0xff,0xab,0xa0,0x0,0x14,0x4c,0x4d,0x54, + 0x0,0x4d,0x44,0x54,0x0,0x4d,0x53,0x54,0x0,0x4d,0x57,0x54,0x0,0x4d,0x50,0x54, + 0x0,0x43,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x1, + 0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x36,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x18,0xf8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x86,0xfd,0x93,0x1c,0xff,0xff,0xff, + 0xff,0x9e,0xb8,0xaf,0x90,0xff,0xff,0xff,0xff,0x9f,0xbb,0x7,0x80,0xff,0xff,0xff, + 0xff,0xb5,0x65,0x4f,0xf0,0xff,0xff,0xff,0xff,0xb6,0x30,0x48,0xe0,0xff,0xff,0xff, + 0xff,0xb7,0x45,0x31,0xf0,0xff,0xff,0xff,0xff,0xb8,0x10,0x2a,0xe0,0xff,0xff,0xff, + 0xff,0xb9,0x25,0x13,0xf0,0xff,0xff,0xff,0xff,0xb9,0xf0,0xc,0xe0,0xff,0xff,0xff, + 0xff,0xbb,0xe,0x30,0x70,0xff,0xff,0xff,0xff,0xbb,0xcf,0xee,0xe0,0xff,0xff,0xff, + 0xff,0xbc,0xee,0x12,0x70,0xff,0xff,0xff,0xff,0xbd,0xb9,0xb,0x60,0xff,0xff,0xff, + 0xff,0xc2,0x72,0x8,0xf0,0xff,0xff,0xff,0xff,0xc3,0x61,0xeb,0xe0,0xff,0xff,0xff, + 0xff,0xc4,0x51,0xea,0xf0,0xff,0xff,0xff,0xff,0xc5,0x38,0x93,0x60,0xff,0xff,0xff, + 0xff,0xc6,0x31,0xcc,0xf0,0xff,0xff,0xff,0xff,0xc7,0x21,0xaf,0xe0,0xff,0xff,0xff, + 0xff,0xc8,0x1a,0xe9,0x70,0xff,0xff,0xff,0xff,0xc9,0xa,0xcc,0x60,0xff,0xff,0xff, + 0xff,0xc9,0xfa,0xcb,0x70,0xff,0xff,0xff,0xff,0xca,0xea,0xae,0x60,0xff,0xff,0xff, + 0xff,0xcb,0x89,0xc,0x90,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff, + 0xff,0xd2,0x61,0x18,0x0,0xff,0xff,0xff,0xff,0xd3,0x63,0x8c,0x10,0xff,0xff,0xff, + 0xff,0xd4,0x53,0x6f,0x0,0xff,0xff,0xff,0xff,0xd5,0x55,0xe3,0x10,0xff,0xff,0xff, + 0xff,0xd6,0x20,0xdc,0x0,0xff,0xff,0xff,0xff,0xd7,0x35,0xc5,0x10,0xff,0xff,0xff, + 0xff,0xd8,0x0,0xbe,0x0,0xff,0xff,0xff,0xff,0xd9,0x15,0xa7,0x10,0xff,0xff,0xff, + 0xff,0xd9,0xe0,0xa0,0x0,0xff,0xff,0xff,0xff,0xda,0xfe,0xc3,0x90,0xff,0xff,0xff, + 0xff,0xdb,0xc0,0x82,0x0,0xff,0xff,0xff,0xff,0xdc,0xde,0xa5,0x90,0xff,0xff,0xff, + 0xff,0xdd,0xa9,0x9e,0x80,0xff,0xff,0xff,0xff,0xde,0xbe,0x87,0x90,0xff,0xff,0xff, + 0xff,0xdf,0x89,0x80,0x80,0xff,0xff,0xff,0xff,0xe0,0x9e,0x69,0x90,0xff,0xff,0xff, + 0xff,0xe1,0x69,0x62,0x80,0xff,0xff,0xff,0xff,0xe2,0x7e,0x4b,0x90,0xff,0xff,0xff, + 0xff,0xe3,0x49,0x44,0x80,0xff,0xff,0xff,0xff,0xe4,0x5e,0x2d,0x90,0xff,0xff,0xff, + 0xff,0xe5,0x29,0x26,0x80,0xff,0xff,0xff,0xff,0xe6,0x47,0x4a,0x10,0xff,0xff,0xff, + 0xff,0xe7,0x12,0x43,0x0,0xff,0xff,0xff,0xff,0xe8,0x27,0x2c,0x10,0xff,0xff,0xff, + 0xff,0xe8,0xf2,0x25,0x0,0xff,0xff,0xff,0xff,0xeb,0xe6,0xf0,0x10,0xff,0xff,0xff, + 0xff,0xec,0xd6,0xd3,0x0,0xff,0xff,0xff,0xff,0xed,0xc6,0xd2,0x10,0x0,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x5,0xff,0xff,0x9d,0xe4,0x0,0x0,0xff,0xff,0xab,0xa0,0x1,0x4,0xff, + 0xff,0x9d,0x90,0x0,0x8,0xff,0xff,0xab,0xa0,0x1,0xc,0xff,0xff,0xab,0xa0,0x1, + 0x10,0xff,0xff,0xab,0xa0,0x0,0x14,0x4c,0x4d,0x54,0x0,0x4d,0x44,0x54,0x0,0x4d, + 0x53,0x54,0x0,0x4d,0x57,0x54,0x0,0x4d,0x50,0x54,0x0,0x43,0x53,0x54,0x0,0x0, + 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0x43,0x53,0x54,0x36, + 0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Canada/Mountain + 0x0,0x0,0x9,0x62, + 0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x9b,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0x88, + 0xde,0xce,0xe0,0x9e,0xb8,0xaf,0x90,0x9f,0xbb,0x7,0x80,0xa0,0x98,0x91,0x90,0xa0, + 0xd2,0x85,0x80,0xa2,0x8a,0xe8,0x90,0xa3,0x84,0x6,0x0,0xa4,0x6a,0xca,0x90,0xa5, + 0x35,0xc3,0x80,0xa6,0x53,0xe7,0x10,0xa7,0x15,0xa5,0x80,0xa8,0x33,0xc9,0x10,0xa8, + 0xfe,0xc2,0x0,0xcb,0x89,0xc,0x90,0xd2,0x23,0xf4,0x70,0xd2,0x61,0x18,0x0,0xd5, + 0x55,0xe3,0x10,0xd6,0x20,0xdc,0x0,0xfa,0xf8,0x75,0x10,0xfb,0xe8,0x58,0x0,0xfe, + 0xb8,0x39,0x10,0xff,0xa8,0x1c,0x0,0x4,0x61,0x19,0x90,0x5,0x50,0xfc,0x80,0x6, + 0x40,0xfb,0x90,0x7,0x30,0xde,0x80,0x8,0x20,0xdd,0x90,0x9,0x10,0xc0,0x80,0xa, + 0x0,0xbf,0x90,0xa,0xf0,0xa2,0x80,0xb,0xe0,0xa1,0x90,0xc,0xd9,0xbf,0x0,0xd, + 0xc0,0x83,0x90,0xe,0xb9,0xa1,0x0,0xf,0xa9,0xa0,0x10,0x10,0x99,0x83,0x0,0x11, + 0x89,0x82,0x10,0x12,0x79,0x65,0x0,0x13,0x69,0x64,0x10,0x14,0x59,0x47,0x0,0x15, + 0x49,0x46,0x10,0x16,0x39,0x29,0x0,0x17,0x29,0x28,0x10,0x18,0x22,0x45,0x80,0x19, + 0x9,0xa,0x10,0x1a,0x2,0x27,0x80,0x1a,0xf2,0x26,0x90,0x1b,0xe2,0x9,0x80,0x1c, + 0xd2,0x8,0x90,0x1d,0xc1,0xeb,0x80,0x1e,0xb1,0xea,0x90,0x1f,0xa1,0xcd,0x80,0x20, + 0x76,0x1d,0x10,0x21,0x81,0xaf,0x80,0x22,0x55,0xff,0x10,0x23,0x6a,0xcc,0x0,0x24, + 0x35,0xe1,0x10,0x25,0x4a,0xae,0x0,0x26,0x15,0xc3,0x10,0x27,0x2a,0x90,0x0,0x27, + 0xfe,0xdf,0x90,0x29,0xa,0x72,0x0,0x29,0xde,0xc1,0x90,0x2a,0xea,0x54,0x0,0x2b, + 0xbe,0xa3,0x90,0x2c,0xd3,0x70,0x80,0x2d,0x9e,0x85,0x90,0x2e,0xb3,0x52,0x80,0x2f, + 0x7e,0x67,0x90,0x30,0x93,0x34,0x80,0x31,0x67,0x84,0x10,0x32,0x73,0x16,0x80,0x33, + 0x47,0x66,0x10,0x34,0x52,0xf8,0x80,0x35,0x27,0x48,0x10,0x36,0x32,0xda,0x80,0x37, + 0x7,0x2a,0x10,0x38,0x1b,0xf7,0x0,0x38,0xe7,0xc,0x10,0x39,0xfb,0xd9,0x0,0x3a, + 0xc6,0xee,0x10,0x3b,0xdb,0xbb,0x0,0x3c,0xb0,0xa,0x90,0x3d,0xbb,0x9d,0x0,0x3e, + 0x8f,0xec,0x90,0x3f,0x9b,0x7f,0x0,0x40,0x6f,0xce,0x90,0x41,0x84,0x9b,0x80,0x42, + 0x4f,0xb0,0x90,0x43,0x64,0x7d,0x80,0x44,0x2f,0x92,0x90,0x45,0x44,0x5f,0x80,0x45, + 0xf3,0xc5,0x10,0x47,0x2d,0x7c,0x0,0x47,0xd3,0xa7,0x10,0x49,0xd,0x5e,0x0,0x49, + 0xb3,0x89,0x10,0x4a,0xed,0x40,0x0,0x4b,0x9c,0xa5,0x90,0x4c,0xd6,0x5c,0x80,0x4d, + 0x7c,0x87,0x90,0x4e,0xb6,0x3e,0x80,0x4f,0x5c,0x69,0x90,0x50,0x96,0x20,0x80,0x51, + 0x3c,0x4b,0x90,0x52,0x76,0x2,0x80,0x53,0x1c,0x2d,0x90,0x54,0x55,0xe4,0x80,0x54, + 0xfc,0xf,0x90,0x56,0x35,0xc6,0x80,0x56,0xe5,0x2c,0x10,0x58,0x1e,0xe3,0x0,0x58, + 0xc5,0xe,0x10,0x59,0xfe,0xc5,0x0,0x5a,0xa4,0xf0,0x10,0x5b,0xde,0xa7,0x0,0x5c, + 0x84,0xd2,0x10,0x5d,0xbe,0x89,0x0,0x5e,0x64,0xb4,0x10,0x5f,0x9e,0x6b,0x0,0x60, + 0x4d,0xd0,0x90,0x61,0x87,0x87,0x80,0x62,0x2d,0xb2,0x90,0x63,0x67,0x69,0x80,0x64, + 0xd,0x94,0x90,0x65,0x47,0x4b,0x80,0x65,0xed,0x76,0x90,0x67,0x27,0x2d,0x80,0x67, + 0xcd,0x58,0x90,0x69,0x7,0xf,0x80,0x69,0xad,0x3a,0x90,0x6a,0xe6,0xf1,0x80,0x6b, + 0x96,0x57,0x10,0x6c,0xd0,0xe,0x0,0x6d,0x76,0x39,0x10,0x6e,0xaf,0xf0,0x0,0x6f, + 0x56,0x1b,0x10,0x70,0x8f,0xd2,0x0,0x71,0x35,0xfd,0x10,0x72,0x6f,0xb4,0x0,0x73, + 0x15,0xdf,0x10,0x74,0x4f,0x96,0x0,0x74,0xfe,0xfb,0x90,0x76,0x38,0xb2,0x80,0x76, + 0xde,0xdd,0x90,0x78,0x18,0x94,0x80,0x78,0xbe,0xbf,0x90,0x79,0xf8,0x76,0x80,0x7a, + 0x9e,0xa1,0x90,0x7b,0xd8,0x58,0x80,0x7c,0x7e,0x83,0x90,0x7d,0xb8,0x3a,0x80,0x7e, + 0x5e,0x65,0x90,0x7f,0x98,0x1c,0x80,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0xff,0xff,0x95,0xa0,0x0,0x0,0xff,0xff,0xab,0xa0,0x1,0x4,0xff,0xff, + 0x9d,0x90,0x0,0x8,0xff,0xff,0xab,0xa0,0x1,0xc,0xff,0xff,0xab,0xa0,0x1,0x10, + 0x4c,0x4d,0x54,0x0,0x4d,0x44,0x54,0x0,0x4d,0x53,0x54,0x0,0x4d,0x57,0x54,0x0, + 0x4d,0x50,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x1,0x54,0x5a, + 0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x9b,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0xf8,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xff,0xff,0xff,0xff,0x88,0xde,0xce,0xe0,0xff,0xff,0xff,0xff,0x9e,0xb8, + 0xaf,0x90,0xff,0xff,0xff,0xff,0x9f,0xbb,0x7,0x80,0xff,0xff,0xff,0xff,0xa0,0x98, + 0x91,0x90,0xff,0xff,0xff,0xff,0xa0,0xd2,0x85,0x80,0xff,0xff,0xff,0xff,0xa2,0x8a, + 0xe8,0x90,0xff,0xff,0xff,0xff,0xa3,0x84,0x6,0x0,0xff,0xff,0xff,0xff,0xa4,0x6a, + 0xca,0x90,0xff,0xff,0xff,0xff,0xa5,0x35,0xc3,0x80,0xff,0xff,0xff,0xff,0xa6,0x53, + 0xe7,0x10,0xff,0xff,0xff,0xff,0xa7,0x15,0xa5,0x80,0xff,0xff,0xff,0xff,0xa8,0x33, + 0xc9,0x10,0xff,0xff,0xff,0xff,0xa8,0xfe,0xc2,0x0,0xff,0xff,0xff,0xff,0xcb,0x89, + 0xc,0x90,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x61, + 0x18,0x0,0xff,0xff,0xff,0xff,0xd5,0x55,0xe3,0x10,0xff,0xff,0xff,0xff,0xd6,0x20, + 0xdc,0x0,0xff,0xff,0xff,0xff,0xfa,0xf8,0x75,0x10,0xff,0xff,0xff,0xff,0xfb,0xe8, + 0x58,0x0,0xff,0xff,0xff,0xff,0xfe,0xb8,0x39,0x10,0xff,0xff,0xff,0xff,0xff,0xa8, + 0x1c,0x0,0x0,0x0,0x0,0x0,0x4,0x61,0x19,0x90,0x0,0x0,0x0,0x0,0x5,0x50, + 0xfc,0x80,0x0,0x0,0x0,0x0,0x6,0x40,0xfb,0x90,0x0,0x0,0x0,0x0,0x7,0x30, + 0xde,0x80,0x0,0x0,0x0,0x0,0x8,0x20,0xdd,0x90,0x0,0x0,0x0,0x0,0x9,0x10, + 0xc0,0x80,0x0,0x0,0x0,0x0,0xa,0x0,0xbf,0x90,0x0,0x0,0x0,0x0,0xa,0xf0, + 0xa2,0x80,0x0,0x0,0x0,0x0,0xb,0xe0,0xa1,0x90,0x0,0x0,0x0,0x0,0xc,0xd9, + 0xbf,0x0,0x0,0x0,0x0,0x0,0xd,0xc0,0x83,0x90,0x0,0x0,0x0,0x0,0xe,0xb9, + 0xa1,0x0,0x0,0x0,0x0,0x0,0xf,0xa9,0xa0,0x10,0x0,0x0,0x0,0x0,0x10,0x99, + 0x83,0x0,0x0,0x0,0x0,0x0,0x11,0x89,0x82,0x10,0x0,0x0,0x0,0x0,0x12,0x79, + 0x65,0x0,0x0,0x0,0x0,0x0,0x13,0x69,0x64,0x10,0x0,0x0,0x0,0x0,0x14,0x59, + 0x47,0x0,0x0,0x0,0x0,0x0,0x15,0x49,0x46,0x10,0x0,0x0,0x0,0x0,0x16,0x39, + 0x29,0x0,0x0,0x0,0x0,0x0,0x17,0x29,0x28,0x10,0x0,0x0,0x0,0x0,0x18,0x22, + 0x45,0x80,0x0,0x0,0x0,0x0,0x19,0x9,0xa,0x10,0x0,0x0,0x0,0x0,0x1a,0x2, + 0x27,0x80,0x0,0x0,0x0,0x0,0x1a,0xf2,0x26,0x90,0x0,0x0,0x0,0x0,0x1b,0xe2, + 0x9,0x80,0x0,0x0,0x0,0x0,0x1c,0xd2,0x8,0x90,0x0,0x0,0x0,0x0,0x1d,0xc1, + 0xeb,0x80,0x0,0x0,0x0,0x0,0x1e,0xb1,0xea,0x90,0x0,0x0,0x0,0x0,0x1f,0xa1, + 0xcd,0x80,0x0,0x0,0x0,0x0,0x20,0x76,0x1d,0x10,0x0,0x0,0x0,0x0,0x21,0x81, + 0xaf,0x80,0x0,0x0,0x0,0x0,0x22,0x55,0xff,0x10,0x0,0x0,0x0,0x0,0x23,0x6a, + 0xcc,0x0,0x0,0x0,0x0,0x0,0x24,0x35,0xe1,0x10,0x0,0x0,0x0,0x0,0x25,0x4a, + 0xae,0x0,0x0,0x0,0x0,0x0,0x26,0x15,0xc3,0x10,0x0,0x0,0x0,0x0,0x27,0x2a, + 0x90,0x0,0x0,0x0,0x0,0x0,0x27,0xfe,0xdf,0x90,0x0,0x0,0x0,0x0,0x29,0xa, + 0x72,0x0,0x0,0x0,0x0,0x0,0x29,0xde,0xc1,0x90,0x0,0x0,0x0,0x0,0x2a,0xea, + 0x54,0x0,0x0,0x0,0x0,0x0,0x2b,0xbe,0xa3,0x90,0x0,0x0,0x0,0x0,0x2c,0xd3, + 0x70,0x80,0x0,0x0,0x0,0x0,0x2d,0x9e,0x85,0x90,0x0,0x0,0x0,0x0,0x2e,0xb3, + 0x52,0x80,0x0,0x0,0x0,0x0,0x2f,0x7e,0x67,0x90,0x0,0x0,0x0,0x0,0x30,0x93, + 0x34,0x80,0x0,0x0,0x0,0x0,0x31,0x67,0x84,0x10,0x0,0x0,0x0,0x0,0x32,0x73, + 0x16,0x80,0x0,0x0,0x0,0x0,0x33,0x47,0x66,0x10,0x0,0x0,0x0,0x0,0x34,0x52, + 0xf8,0x80,0x0,0x0,0x0,0x0,0x35,0x27,0x48,0x10,0x0,0x0,0x0,0x0,0x36,0x32, + 0xda,0x80,0x0,0x0,0x0,0x0,0x37,0x7,0x2a,0x10,0x0,0x0,0x0,0x0,0x38,0x1b, + 0xf7,0x0,0x0,0x0,0x0,0x0,0x38,0xe7,0xc,0x10,0x0,0x0,0x0,0x0,0x39,0xfb, + 0xd9,0x0,0x0,0x0,0x0,0x0,0x3a,0xc6,0xee,0x10,0x0,0x0,0x0,0x0,0x3b,0xdb, + 0xbb,0x0,0x0,0x0,0x0,0x0,0x3c,0xb0,0xa,0x90,0x0,0x0,0x0,0x0,0x3d,0xbb, + 0x9d,0x0,0x0,0x0,0x0,0x0,0x3e,0x8f,0xec,0x90,0x0,0x0,0x0,0x0,0x3f,0x9b, + 0x7f,0x0,0x0,0x0,0x0,0x0,0x40,0x6f,0xce,0x90,0x0,0x0,0x0,0x0,0x41,0x84, + 0x9b,0x80,0x0,0x0,0x0,0x0,0x42,0x4f,0xb0,0x90,0x0,0x0,0x0,0x0,0x43,0x64, + 0x7d,0x80,0x0,0x0,0x0,0x0,0x44,0x2f,0x92,0x90,0x0,0x0,0x0,0x0,0x45,0x44, + 0x5f,0x80,0x0,0x0,0x0,0x0,0x45,0xf3,0xc5,0x10,0x0,0x0,0x0,0x0,0x47,0x2d, + 0x7c,0x0,0x0,0x0,0x0,0x0,0x47,0xd3,0xa7,0x10,0x0,0x0,0x0,0x0,0x49,0xd, + 0x5e,0x0,0x0,0x0,0x0,0x0,0x49,0xb3,0x89,0x10,0x0,0x0,0x0,0x0,0x4a,0xed, + 0x40,0x0,0x0,0x0,0x0,0x0,0x4b,0x9c,0xa5,0x90,0x0,0x0,0x0,0x0,0x4c,0xd6, + 0x5c,0x80,0x0,0x0,0x0,0x0,0x4d,0x7c,0x87,0x90,0x0,0x0,0x0,0x0,0x4e,0xb6, + 0x3e,0x80,0x0,0x0,0x0,0x0,0x4f,0x5c,0x69,0x90,0x0,0x0,0x0,0x0,0x50,0x96, + 0x20,0x80,0x0,0x0,0x0,0x0,0x51,0x3c,0x4b,0x90,0x0,0x0,0x0,0x0,0x52,0x76, + 0x2,0x80,0x0,0x0,0x0,0x0,0x53,0x1c,0x2d,0x90,0x0,0x0,0x0,0x0,0x54,0x55, + 0xe4,0x80,0x0,0x0,0x0,0x0,0x54,0xfc,0xf,0x90,0x0,0x0,0x0,0x0,0x56,0x35, + 0xc6,0x80,0x0,0x0,0x0,0x0,0x56,0xe5,0x2c,0x10,0x0,0x0,0x0,0x0,0x58,0x1e, + 0xe3,0x0,0x0,0x0,0x0,0x0,0x58,0xc5,0xe,0x10,0x0,0x0,0x0,0x0,0x59,0xfe, + 0xc5,0x0,0x0,0x0,0x0,0x0,0x5a,0xa4,0xf0,0x10,0x0,0x0,0x0,0x0,0x5b,0xde, + 0xa7,0x0,0x0,0x0,0x0,0x0,0x5c,0x84,0xd2,0x10,0x0,0x0,0x0,0x0,0x5d,0xbe, + 0x89,0x0,0x0,0x0,0x0,0x0,0x5e,0x64,0xb4,0x10,0x0,0x0,0x0,0x0,0x5f,0x9e, + 0x6b,0x0,0x0,0x0,0x0,0x0,0x60,0x4d,0xd0,0x90,0x0,0x0,0x0,0x0,0x61,0x87, + 0x87,0x80,0x0,0x0,0x0,0x0,0x62,0x2d,0xb2,0x90,0x0,0x0,0x0,0x0,0x63,0x67, + 0x69,0x80,0x0,0x0,0x0,0x0,0x64,0xd,0x94,0x90,0x0,0x0,0x0,0x0,0x65,0x47, + 0x4b,0x80,0x0,0x0,0x0,0x0,0x65,0xed,0x76,0x90,0x0,0x0,0x0,0x0,0x67,0x27, + 0x2d,0x80,0x0,0x0,0x0,0x0,0x67,0xcd,0x58,0x90,0x0,0x0,0x0,0x0,0x69,0x7, + 0xf,0x80,0x0,0x0,0x0,0x0,0x69,0xad,0x3a,0x90,0x0,0x0,0x0,0x0,0x6a,0xe6, + 0xf1,0x80,0x0,0x0,0x0,0x0,0x6b,0x96,0x57,0x10,0x0,0x0,0x0,0x0,0x6c,0xd0, + 0xe,0x0,0x0,0x0,0x0,0x0,0x6d,0x76,0x39,0x10,0x0,0x0,0x0,0x0,0x6e,0xaf, + 0xf0,0x0,0x0,0x0,0x0,0x0,0x6f,0x56,0x1b,0x10,0x0,0x0,0x0,0x0,0x70,0x8f, + 0xd2,0x0,0x0,0x0,0x0,0x0,0x71,0x35,0xfd,0x10,0x0,0x0,0x0,0x0,0x72,0x6f, + 0xb4,0x0,0x0,0x0,0x0,0x0,0x73,0x15,0xdf,0x10,0x0,0x0,0x0,0x0,0x74,0x4f, + 0x96,0x0,0x0,0x0,0x0,0x0,0x74,0xfe,0xfb,0x90,0x0,0x0,0x0,0x0,0x76,0x38, + 0xb2,0x80,0x0,0x0,0x0,0x0,0x76,0xde,0xdd,0x90,0x0,0x0,0x0,0x0,0x78,0x18, + 0x94,0x80,0x0,0x0,0x0,0x0,0x78,0xbe,0xbf,0x90,0x0,0x0,0x0,0x0,0x79,0xf8, + 0x76,0x80,0x0,0x0,0x0,0x0,0x7a,0x9e,0xa1,0x90,0x0,0x0,0x0,0x0,0x7b,0xd8, + 0x58,0x80,0x0,0x0,0x0,0x0,0x7c,0x7e,0x83,0x90,0x0,0x0,0x0,0x0,0x7d,0xb8, + 0x3a,0x80,0x0,0x0,0x0,0x0,0x7e,0x5e,0x65,0x90,0x0,0x0,0x0,0x0,0x7f,0x98, + 0x1c,0x80,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x3,0x4,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x0, - 0x0,0x1d,0x55,0x0,0x0,0x0,0x0,0x2a,0x30,0x1,0x4,0x0,0x0,0x1c,0x20,0x0, - 0x9,0x0,0x0,0x2a,0x30,0x1,0x4,0x4c,0x4d,0x54,0x0,0x45,0x45,0x53,0x54,0x0, - 0x45,0x45,0x54,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0xa,0x45,0x45,0x54, - 0x2d,0x32,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Nairobi - 0x0,0x0,0x1,0x1b, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x13,0x80,0x0,0x0,0x0,0xb1, - 0xee,0xda,0xfc,0xb4,0xc2,0x9a,0xd0,0xc7,0x91,0x47,0xd8,0xed,0x2f,0xe1,0xd4,0x0, - 0x1,0x2,0x3,0x1,0x0,0x0,0x22,0x84,0x0,0x0,0x0,0x0,0x2a,0x30,0x0,0x4, - 0x0,0x0,0x23,0x28,0x0,0x8,0x0,0x0,0x26,0xac,0x0,0xd,0x0,0x0,0x2a,0x30, - 0x0,0x4,0x4c,0x4d,0x54,0x0,0x45,0x41,0x54,0x0,0x42,0x45,0x41,0x54,0x0,0x42, - 0x45,0x41,0x55,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x13,0xf8,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xb1,0xee,0xda,0xfc,0xff,0xff,0xff,0xff,0xb4, - 0xc2,0x9a,0xd0,0xff,0xff,0xff,0xff,0xc7,0x91,0x47,0xd8,0xff,0xff,0xff,0xff,0xed, - 0x2f,0xe1,0xd4,0x0,0x1,0x2,0x3,0x1,0x0,0x0,0x22,0x84,0x0,0x0,0x0,0x0, - 0x2a,0x30,0x0,0x4,0x0,0x0,0x23,0x28,0x0,0x8,0x0,0x0,0x26,0xac,0x0,0xd, - 0x0,0x0,0x2a,0x30,0x0,0x4,0x4c,0x4d,0x54,0x0,0x45,0x41,0x54,0x0,0x42,0x45, - 0x41,0x54,0x0,0x42,0x45,0x41,0x55,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0xa,0x45,0x41,0x54,0x2d,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Lagos - 0x0,0x0,0x0,0xab, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0xa1, - 0x51,0xf3,0x50,0x0,0x1,0x0,0x0,0x3,0x30,0x0,0x0,0x0,0x0,0xe,0x10,0x0, - 0x4,0x4c,0x4d,0x54,0x0,0x57,0x41,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, - 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0xa1,0x51,0xf3,0x50,0x0,0x1,0x0,0x0,0x3,0x30,0x0, - 0x0,0x0,0x0,0xe,0x10,0x0,0x4,0x4c,0x4d,0x54,0x0,0x57,0x41,0x54,0x0,0x0, - 0x0,0x0,0x0,0xa,0x57,0x41,0x54,0x2d,0x31,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Bangui - 0x0,0x0,0x0,0xab, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0xa1, - 0x51,0xf3,0x50,0x0,0x1,0x0,0x0,0x3,0x30,0x0,0x0,0x0,0x0,0xe,0x10,0x0, - 0x4,0x4c,0x4d,0x54,0x0,0x57,0x41,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, - 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0xa1,0x51,0xf3,0x50,0x0,0x1,0x0,0x0,0x3,0x30,0x0, - 0x0,0x0,0x0,0xe,0x10,0x0,0x4,0x4c,0x4d,0x54,0x0,0x57,0x41,0x54,0x0,0x0, - 0x0,0x0,0x0,0xa,0x57,0x41,0x54,0x2d,0x31,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Nouakchott - 0x0,0x0,0x0,0xaa, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x92, - 0xe6,0x92,0x48,0x0,0x1,0xff,0xff,0xfc,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x4,0x4c,0x4d,0x54,0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, - 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0x92,0xe6,0x92,0x48,0x0,0x1,0xff,0xff,0xfc,0x38,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x4c,0x4d,0x54,0x0,0x47,0x4d,0x54,0x0,0x0, - 0x0,0x0,0x0,0xa,0x47,0x4d,0x54,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Monrovia - 0x0,0x0,0x0,0xf1, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x3,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x10,0x80,0x0,0x0,0x0,0xa0, - 0x5f,0x6c,0x9c,0x4,0x61,0xf6,0xee,0x1,0x2,0x3,0xff,0xff,0xf5,0xe4,0x0,0x0, - 0xff,0xff,0xf5,0xe4,0x0,0x4,0xff,0xff,0xf5,0x92,0x0,0x8,0x0,0x0,0x0,0x0, - 0x0,0xc,0x4c,0x4d,0x54,0x0,0x4d,0x4d,0x54,0x0,0x4c,0x52,0x54,0x0,0x47,0x4d, - 0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0, - 0x0,0x4,0x0,0x0,0x0,0x10,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff, - 0xff,0xff,0x5a,0x7a,0xa6,0x9c,0xff,0xff,0xff,0xff,0xa0,0x5f,0x6c,0x9c,0x0,0x0, - 0x0,0x0,0x4,0x61,0xf6,0xee,0x0,0x1,0x2,0x3,0xff,0xff,0xf5,0xe4,0x0,0x0, - 0xff,0xff,0xf5,0xe4,0x0,0x4,0xff,0xff,0xf5,0x92,0x0,0x8,0x0,0x0,0x0,0x0, - 0x0,0xc,0x4c,0x4d,0x54,0x0,0x4d,0x4d,0x54,0x0,0x4c,0x52,0x54,0x0,0x47,0x4d, - 0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x47,0x4d,0x54,0x30,0xa, - - // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Lome - 0x0,0x0,0x0,0xaa, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x92, - 0xe6,0x92,0x48,0x0,0x1,0xff,0xff,0xfc,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x4,0x4c,0x4d,0x54,0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, - 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0x92,0xe6,0x92,0x48,0x0,0x1,0xff,0xff,0xfc,0x38,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x4c,0x4d,0x54,0x0,0x47,0x4d,0x54,0x0,0x0, - 0x0,0x0,0x0,0xa,0x47,0x4d,0x54,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Banjul - 0x0,0x0,0x0,0xaa, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x92, - 0xe6,0x92,0x48,0x0,0x1,0xff,0xff,0xfc,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x4,0x4c,0x4d,0x54,0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, - 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0x92,0xe6,0x92,0x48,0x0,0x1,0xff,0xff,0xfc,0x38,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x4c,0x4d,0x54,0x0,0x47,0x4d,0x54,0x0,0x0, - 0x0,0x0,0x0,0xa,0x47,0x4d,0x54,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Maputo - 0x0,0x0,0x0,0xab, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x82, - 0x46,0xc5,0xf4,0x0,0x1,0x0,0x0,0x1e,0x8c,0x0,0x0,0x0,0x0,0x1c,0x20,0x0, - 0x4,0x4c,0x4d,0x54,0x0,0x43,0x41,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, - 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0x82,0x46,0xc5,0xf4,0x0,0x1,0x0,0x0,0x1e,0x8c,0x0, - 0x0,0x0,0x0,0x1c,0x20,0x0,0x4,0x4c,0x4d,0x54,0x0,0x43,0x41,0x54,0x0,0x0, - 0x0,0x0,0x0,0xa,0x43,0x41,0x54,0x2d,0x32,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Algiers - 0x0,0x0,0x2,0xf8, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x22,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x1a,0x80,0x0,0x0,0x0,0x91, - 0x60,0x50,0x4f,0x9b,0x47,0x78,0xf0,0x9b,0xd7,0x2c,0x70,0x9c,0xbc,0x91,0x70,0x9d, - 0xc0,0x48,0xf0,0x9e,0x89,0xfe,0x70,0x9f,0xa0,0x2a,0xf0,0xa0,0x60,0xa5,0xf0,0xa1, - 0x80,0xc,0xf0,0xa2,0x2e,0x12,0xf0,0xa3,0x7a,0x4c,0xf0,0xa4,0x35,0x81,0xf0,0xa4, - 0xb8,0x6,0x70,0xc6,0xff,0x6,0x70,0xc7,0x58,0xba,0x80,0xc7,0xda,0x9,0xa0,0xcf, - 0x92,0x34,0x10,0xd0,0x8a,0x0,0x0,0xd1,0x72,0x16,0x10,0xd2,0x4e,0x24,0x70,0xd4, - 0x4b,0x7,0x70,0xe5,0xce,0xd3,0x0,0xf3,0x5c,0xb0,0xf0,0x2,0x78,0xc1,0xf0,0x3, - 0x43,0xc8,0xf0,0xd,0xcf,0xd7,0x0,0xe,0xad,0x44,0xf0,0xf,0x78,0x5a,0x0,0x10, - 0x68,0x59,0x10,0x12,0x76,0x43,0x70,0x13,0x66,0x42,0x80,0x14,0x5f,0x7c,0x10,0x15, - 0x4f,0x5f,0x0,0x1,0x4,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x4,0x6,0x5,0x6,0x5,0x6,0x4,0x6,0x4,0x2,0x3,0x7,0x6,0x5, - 0x6,0x4,0x7,0x4,0x6,0x0,0x0,0x2,0xdc,0x0,0x0,0x0,0x0,0x2,0x31,0x0, - 0x4,0x0,0x0,0xe,0x10,0x1,0x8,0x0,0x0,0x0,0x0,0x0,0xd,0x0,0x0,0x0, - 0x0,0x0,0xd,0x0,0x0,0x1c,0x20,0x1,0x11,0x0,0x0,0xe,0x10,0x0,0x16,0x0, - 0x0,0xe,0x10,0x1,0x8,0x4c,0x4d,0x54,0x0,0x50,0x4d,0x54,0x0,0x57,0x45,0x53, - 0x54,0x0,0x57,0x45,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x43,0x45,0x54,0x0,0x0, - 0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x23,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x1a,0xf8,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x6b,0xc8,0x49,0xe0,0xff,0xff,0xff,0xff,0x91, - 0x60,0x50,0x4f,0xff,0xff,0xff,0xff,0x9b,0x47,0x78,0xf0,0xff,0xff,0xff,0xff,0x9b, - 0xd7,0x2c,0x70,0xff,0xff,0xff,0xff,0x9c,0xbc,0x91,0x70,0xff,0xff,0xff,0xff,0x9d, - 0xc0,0x48,0xf0,0xff,0xff,0xff,0xff,0x9e,0x89,0xfe,0x70,0xff,0xff,0xff,0xff,0x9f, - 0xa0,0x2a,0xf0,0xff,0xff,0xff,0xff,0xa0,0x60,0xa5,0xf0,0xff,0xff,0xff,0xff,0xa1, - 0x80,0xc,0xf0,0xff,0xff,0xff,0xff,0xa2,0x2e,0x12,0xf0,0xff,0xff,0xff,0xff,0xa3, - 0x7a,0x4c,0xf0,0xff,0xff,0xff,0xff,0xa4,0x35,0x81,0xf0,0xff,0xff,0xff,0xff,0xa4, - 0xb8,0x6,0x70,0xff,0xff,0xff,0xff,0xc6,0xff,0x6,0x70,0xff,0xff,0xff,0xff,0xc7, - 0x58,0xba,0x80,0xff,0xff,0xff,0xff,0xc7,0xda,0x9,0xa0,0xff,0xff,0xff,0xff,0xcf, - 0x92,0x34,0x10,0xff,0xff,0xff,0xff,0xd0,0x8a,0x0,0x0,0xff,0xff,0xff,0xff,0xd1, - 0x72,0x16,0x10,0xff,0xff,0xff,0xff,0xd2,0x4e,0x24,0x70,0xff,0xff,0xff,0xff,0xd4, - 0x4b,0x7,0x70,0xff,0xff,0xff,0xff,0xe5,0xce,0xd3,0x0,0xff,0xff,0xff,0xff,0xf3, - 0x5c,0xb0,0xf0,0x0,0x0,0x0,0x0,0x2,0x78,0xc1,0xf0,0x0,0x0,0x0,0x0,0x3, - 0x43,0xc8,0xf0,0x0,0x0,0x0,0x0,0xd,0xcf,0xd7,0x0,0x0,0x0,0x0,0x0,0xe, - 0xad,0x44,0xf0,0x0,0x0,0x0,0x0,0xf,0x78,0x5a,0x0,0x0,0x0,0x0,0x0,0x10, - 0x68,0x59,0x10,0x0,0x0,0x0,0x0,0x12,0x76,0x43,0x70,0x0,0x0,0x0,0x0,0x13, - 0x66,0x42,0x80,0x0,0x0,0x0,0x0,0x14,0x5f,0x7c,0x10,0x0,0x0,0x0,0x0,0x15, - 0x4f,0x5f,0x0,0x0,0x1,0x4,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x4,0x6,0x5,0x6,0x5,0x6,0x4,0x6,0x4,0x2,0x3,0x7,0x6, - 0x5,0x6,0x4,0x7,0x4,0x6,0x0,0x0,0x2,0xdc,0x0,0x0,0x0,0x0,0x2,0x31, - 0x0,0x4,0x0,0x0,0xe,0x10,0x1,0x8,0x0,0x0,0x0,0x0,0x0,0xd,0x0,0x0, - 0x0,0x0,0x0,0xd,0x0,0x0,0x1c,0x20,0x1,0x11,0x0,0x0,0xe,0x10,0x0,0x16, - 0x0,0x0,0xe,0x10,0x1,0x8,0x4c,0x4d,0x54,0x0,0x50,0x4d,0x54,0x0,0x57,0x45, - 0x53,0x54,0x0,0x57,0x45,0x54,0x0,0x43,0x45,0x53,0x54,0x0,0x43,0x45,0x54,0x0, - 0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0xa,0x43,0x45,0x54,0x2d,0x31,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Ouagadougou - 0x0,0x0,0x0,0xaa, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0x92, - 0xe6,0x92,0x48,0x0,0x1,0xff,0xff,0xfc,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x4,0x4c,0x4d,0x54,0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, - 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0x92,0xe6,0x92,0x48,0x0,0x1,0xff,0xff,0xfc,0x38,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x4c,0x4d,0x54,0x0,0x47,0x4d,0x54,0x0,0x0, - 0x0,0x0,0x0,0xa,0x47,0x4d,0x54,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Asmara - 0x0,0x0,0x1,0x1b, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0x95, + 0xa0,0x0,0x0,0xff,0xff,0xab,0xa0,0x1,0x4,0xff,0xff,0x9d,0x90,0x0,0x8,0xff, + 0xff,0xab,0xa0,0x1,0xc,0xff,0xff,0xab,0xa0,0x1,0x10,0x4c,0x4d,0x54,0x0,0x4d, + 0x44,0x54,0x0,0x4d,0x53,0x54,0x0,0x4d,0x57,0x54,0x0,0x4d,0x50,0x54,0x0,0x0, + 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x1,0xa,0x4d,0x53,0x54,0x37,0x4d,0x44, + 0x54,0x2c,0x4d,0x33,0x2e,0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30, + 0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Canada/Atlantic + 0x0,0x0,0xd,0x6e, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x13,0x80,0x0,0x0,0x0,0xb1, - 0xee,0xda,0xfc,0xb4,0xc2,0x9a,0xd0,0xc7,0x91,0x47,0xd8,0xed,0x2f,0xe1,0xd4,0x0, - 0x1,0x2,0x3,0x1,0x0,0x0,0x22,0x84,0x0,0x0,0x0,0x0,0x2a,0x30,0x0,0x4, - 0x0,0x0,0x23,0x28,0x0,0x8,0x0,0x0,0x26,0xac,0x0,0xd,0x0,0x0,0x2a,0x30, - 0x0,0x4,0x4c,0x4d,0x54,0x0,0x45,0x41,0x54,0x0,0x42,0x45,0x41,0x54,0x0,0x42, - 0x45,0x41,0x55,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x13,0xf8,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xb1,0xee,0xda,0xfc,0xff,0xff,0xff,0xff,0xb4, - 0xc2,0x9a,0xd0,0xff,0xff,0xff,0xff,0xc7,0x91,0x47,0xd8,0xff,0xff,0xff,0xff,0xed, - 0x2f,0xe1,0xd4,0x0,0x1,0x2,0x3,0x1,0x0,0x0,0x22,0x84,0x0,0x0,0x0,0x0, - 0x2a,0x30,0x0,0x4,0x0,0x0,0x23,0x28,0x0,0x8,0x0,0x0,0x26,0xac,0x0,0xd, - 0x0,0x0,0x2a,0x30,0x0,0x4,0x4c,0x4d,0x54,0x0,0x45,0x41,0x54,0x0,0x42,0x45, - 0x41,0x54,0x0,0x42,0x45,0x41,0x55,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0xa,0x45,0x41,0x54,0x2d,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Kinshasa - 0x0,0x0,0x0,0xab, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0xa1, - 0x51,0xf3,0x50,0x0,0x1,0x0,0x0,0x3,0x30,0x0,0x0,0x0,0x0,0xe,0x10,0x0, - 0x4,0x4c,0x4d,0x54,0x0,0x57,0x41,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, - 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0xa1,0x51,0xf3,0x50,0x0,0x1,0x0,0x0,0x3,0x30,0x0, - 0x0,0x0,0x0,0xe,0x10,0x0,0x4,0x4c,0x4d,0x54,0x0,0x57,0x41,0x54,0x0,0x0, - 0x0,0x0,0x0,0xa,0x57,0x41,0x54,0x2d,0x31,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Accra - 0x0,0x0,0x3,0x48, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x30,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0x9e, - 0x30,0x66,0xb4,0xa3,0x34,0x7b,0x80,0xa3,0xd3,0xfc,0x50,0xa5,0x15,0xaf,0x0,0xa5, - 0xb5,0x2f,0xd0,0xa6,0xf6,0xe2,0x80,0xa7,0x96,0x63,0x50,0xa8,0xd8,0x16,0x0,0xa9, - 0x77,0x96,0xd0,0xaa,0xba,0x9b,0x0,0xab,0x5a,0x1b,0xd0,0xac,0x9b,0xce,0x80,0xad, - 0x3b,0x4f,0x50,0xae,0x7d,0x2,0x0,0xaf,0x1c,0x82,0xd0,0xb0,0x5e,0x35,0x80,0xb0, - 0xfd,0xb6,0x50,0xb2,0x40,0xba,0x80,0xb2,0xe0,0x3b,0x50,0xb4,0x21,0xee,0x0,0xb4, - 0xc1,0x6e,0xd0,0xb6,0x3,0x21,0x80,0xb6,0xa2,0xa2,0x50,0xb7,0xe4,0x55,0x0,0xb8, - 0x83,0xd5,0xd0,0xb9,0xc6,0xda,0x0,0xba,0x66,0x5a,0xd0,0xbb,0xa8,0xd,0x80,0xbc, - 0x47,0x8e,0x50,0xbd,0x89,0x41,0x0,0xbe,0x28,0xc1,0xd0,0xbf,0x6a,0x74,0x80,0xc0, - 0x9,0xf5,0x50,0xc1,0x4c,0xf9,0x80,0xc1,0xec,0x7a,0x50,0xc3,0x2e,0x2d,0x0,0xc3, - 0xcd,0xad,0xd0,0xc5,0xf,0x60,0x80,0xc5,0xae,0xe1,0x50,0xc6,0xf0,0x94,0x0,0xc7, - 0x90,0x14,0xd0,0xc8,0xd3,0x19,0x0,0xc9,0x72,0x99,0xd0,0xca,0xb4,0x4c,0x80,0xcb, - 0x53,0xcd,0x50,0xcc,0x95,0x80,0x0,0xcd,0x35,0x0,0xd0,0x0,0x2,0x1,0x2,0x1, + 0x0,0x0,0xe5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0x80, + 0xf1,0xab,0xa0,0x9a,0xe4,0xde,0xc0,0x9b,0xd6,0x13,0x30,0x9e,0xb8,0x85,0x60,0x9f, + 0xba,0xdd,0x50,0xa2,0x9d,0x17,0x40,0xa3,0x30,0xb1,0x30,0xa4,0x7a,0x56,0x40,0xa5, + 0x1b,0x1f,0x30,0xa6,0x53,0xa0,0xc0,0xa6,0xfc,0x52,0xb0,0xa8,0x3c,0xbd,0x40,0xa8, + 0xdc,0x34,0xb0,0xaa,0x1c,0x9f,0x40,0xaa,0xcd,0x3a,0x30,0xab,0xfc,0x81,0x40,0xac, + 0xbf,0x91,0x30,0xad,0xee,0xd8,0x40,0xae,0x8c,0xfe,0x30,0xaf,0xbc,0x45,0x40,0xb0, + 0x7f,0x55,0x30,0xb1,0xae,0x9c,0x40,0xb2,0x4b,0x70,0xb0,0xb3,0x8e,0x7e,0x40,0xb4, + 0x24,0xbb,0x30,0xb5,0x6e,0x60,0x40,0xb6,0x15,0xc0,0xb0,0xb7,0x4e,0x42,0x40,0xb8, + 0x8,0x17,0xb0,0xb9,0x24,0xe9,0xc0,0xb9,0xe7,0xf9,0xb0,0xbb,0x4,0xcb,0xc0,0xbb, + 0xd1,0x16,0x30,0xbd,0x0,0x5d,0x40,0xbd,0x9d,0x31,0xb0,0xbe,0xf2,0xb4,0x40,0xbf, + 0x90,0xda,0x30,0xc0,0xd3,0xe7,0xc0,0xc1,0x5e,0x47,0x30,0xc2,0x8d,0x8e,0x40,0xc3, + 0x50,0x9e,0x30,0xc4,0x6d,0x70,0x40,0xc5,0x30,0x80,0x30,0xc6,0x72,0x3c,0x40,0xc7, + 0x10,0x62,0x30,0xc8,0x36,0x6e,0xc0,0xc8,0xf9,0x7e,0xb0,0xca,0x16,0x50,0xc0,0xca, + 0xd9,0x60,0xb0,0xcb,0x88,0xe2,0x60,0xd2,0x23,0xf4,0x70,0xd2,0x60,0xed,0xd0,0xd3, + 0x75,0xd6,0xe0,0xd4,0x40,0xcf,0xd0,0xd5,0x55,0xb8,0xe0,0xd6,0x20,0xb1,0xd0,0xd7, + 0x35,0x9a,0xe0,0xd8,0x0,0x93,0xd0,0xd9,0x15,0x7c,0xe0,0xd9,0xe0,0x75,0xd0,0xdc, + 0xde,0x7b,0x60,0xdd,0xa9,0x74,0x50,0xde,0xbe,0x5d,0x60,0xdf,0x89,0x56,0x50,0xe0, + 0x9e,0x3f,0x60,0xe1,0x69,0x38,0x50,0xe2,0x7e,0x21,0x60,0xe3,0x49,0x1a,0x50,0xe6, + 0x47,0x1f,0xe0,0xe7,0x12,0x18,0xd0,0xe8,0x27,0x1,0xe0,0xe8,0xf1,0xfa,0xd0,0xea, + 0x6,0xe3,0xe0,0xea,0xd1,0xdc,0xd0,0xeb,0xe6,0xc5,0xe0,0xec,0xb1,0xbe,0xd0,0xf1, + 0x8f,0xa6,0x60,0xf2,0x7f,0x89,0x50,0xf3,0x6f,0x88,0x60,0xf4,0x5f,0x6b,0x50,0xf5, + 0x4f,0x6a,0x60,0xf6,0x3f,0x4d,0x50,0xf7,0x2f,0x4c,0x60,0xf8,0x28,0x69,0xd0,0xf9, + 0xf,0x2e,0x60,0xfa,0x8,0x4b,0xd0,0xfa,0xf8,0x4a,0xe0,0xfb,0xe8,0x2d,0xd0,0xfc, + 0xd8,0x2c,0xe0,0xfd,0xc8,0xf,0xd0,0xfe,0xb8,0xe,0xe0,0xff,0xa7,0xf1,0xd0,0x0, + 0x97,0xf0,0xe0,0x1,0x87,0xd3,0xd0,0x2,0x77,0xd2,0xe0,0x3,0x70,0xf0,0x50,0x4, + 0x60,0xef,0x60,0x5,0x50,0xd2,0x50,0x6,0x40,0xd1,0x60,0x7,0x30,0xb4,0x50,0x8, + 0x20,0xb3,0x60,0x9,0x10,0x96,0x50,0xa,0x0,0x95,0x60,0xa,0xf0,0x78,0x50,0xb, + 0xe0,0x77,0x60,0xc,0xd9,0x94,0xd0,0xd,0xc0,0x59,0x60,0xe,0xb9,0x76,0xd0,0xf, + 0xa9,0x75,0xe0,0x10,0x99,0x58,0xd0,0x11,0x89,0x57,0xe0,0x12,0x79,0x3a,0xd0,0x13, + 0x69,0x39,0xe0,0x14,0x59,0x1c,0xd0,0x15,0x49,0x1b,0xe0,0x16,0x38,0xfe,0xd0,0x17, + 0x28,0xfd,0xe0,0x18,0x22,0x1b,0x50,0x19,0x8,0xdf,0xe0,0x1a,0x1,0xfd,0x50,0x1a, + 0xf1,0xfc,0x60,0x1b,0xe1,0xdf,0x50,0x1c,0xd1,0xde,0x60,0x1d,0xc1,0xc1,0x50,0x1e, + 0xb1,0xc0,0x60,0x1f,0xa1,0xa3,0x50,0x20,0x75,0xf2,0xe0,0x21,0x81,0x85,0x50,0x22, + 0x55,0xd4,0xe0,0x23,0x6a,0xa1,0xd0,0x24,0x35,0xb6,0xe0,0x25,0x4a,0x83,0xd0,0x26, + 0x15,0x98,0xe0,0x27,0x2a,0x65,0xd0,0x27,0xfe,0xb5,0x60,0x29,0xa,0x47,0xd0,0x29, + 0xde,0x97,0x60,0x2a,0xea,0x29,0xd0,0x2b,0xbe,0x79,0x60,0x2c,0xd3,0x46,0x50,0x2d, + 0x9e,0x5b,0x60,0x2e,0xb3,0x28,0x50,0x2f,0x7e,0x3d,0x60,0x30,0x93,0xa,0x50,0x31, + 0x67,0x59,0xe0,0x32,0x72,0xec,0x50,0x33,0x47,0x3b,0xe0,0x34,0x52,0xce,0x50,0x35, + 0x27,0x1d,0xe0,0x36,0x32,0xb0,0x50,0x37,0x6,0xff,0xe0,0x38,0x1b,0xcc,0xd0,0x38, + 0xe6,0xe1,0xe0,0x39,0xfb,0xae,0xd0,0x3a,0xc6,0xc3,0xe0,0x3b,0xdb,0x90,0xd0,0x3c, + 0xaf,0xe0,0x60,0x3d,0xbb,0x72,0xd0,0x3e,0x8f,0xc2,0x60,0x3f,0x9b,0x54,0xd0,0x40, + 0x6f,0xa4,0x60,0x41,0x84,0x71,0x50,0x42,0x4f,0x86,0x60,0x43,0x64,0x53,0x50,0x44, + 0x2f,0x68,0x60,0x45,0x44,0x35,0x50,0x45,0xf3,0x9a,0xe0,0x47,0x2d,0x51,0xd0,0x47, + 0xd3,0x7c,0xe0,0x49,0xd,0x33,0xd0,0x49,0xb3,0x5e,0xe0,0x4a,0xed,0x15,0xd0,0x4b, + 0x9c,0x7b,0x60,0x4c,0xd6,0x32,0x50,0x4d,0x7c,0x5d,0x60,0x4e,0xb6,0x14,0x50,0x4f, + 0x5c,0x3f,0x60,0x50,0x95,0xf6,0x50,0x51,0x3c,0x21,0x60,0x52,0x75,0xd8,0x50,0x53, + 0x1c,0x3,0x60,0x54,0x55,0xba,0x50,0x54,0xfb,0xe5,0x60,0x56,0x35,0x9c,0x50,0x56, + 0xe5,0x1,0xe0,0x58,0x1e,0xb8,0xd0,0x58,0xc4,0xe3,0xe0,0x59,0xfe,0x9a,0xd0,0x5a, + 0xa4,0xc5,0xe0,0x5b,0xde,0x7c,0xd0,0x5c,0x84,0xa7,0xe0,0x5d,0xbe,0x5e,0xd0,0x5e, + 0x64,0x89,0xe0,0x5f,0x9e,0x40,0xd0,0x60,0x4d,0xa6,0x60,0x61,0x87,0x5d,0x50,0x62, + 0x2d,0x88,0x60,0x63,0x67,0x3f,0x50,0x64,0xd,0x6a,0x60,0x65,0x47,0x21,0x50,0x65, + 0xed,0x4c,0x60,0x67,0x27,0x3,0x50,0x67,0xcd,0x2e,0x60,0x69,0x6,0xe5,0x50,0x69, + 0xad,0x10,0x60,0x6a,0xe6,0xc7,0x50,0x6b,0x96,0x2c,0xe0,0x6c,0xcf,0xe3,0xd0,0x6d, + 0x76,0xe,0xe0,0x6e,0xaf,0xc5,0xd0,0x6f,0x55,0xf0,0xe0,0x70,0x8f,0xa7,0xd0,0x71, + 0x35,0xd2,0xe0,0x72,0x6f,0x89,0xd0,0x73,0x15,0xb4,0xe0,0x74,0x4f,0x6b,0xd0,0x74, + 0xfe,0xd1,0x60,0x76,0x38,0x88,0x50,0x76,0xde,0xb3,0x60,0x78,0x18,0x6a,0x50,0x78, + 0xbe,0x95,0x60,0x79,0xf8,0x4c,0x50,0x7a,0x9e,0x77,0x60,0x7b,0xd8,0x2e,0x50,0x7c, + 0x7e,0x59,0x60,0x7d,0xb8,0x10,0x50,0x7e,0x5e,0x3b,0x60,0x7f,0x97,0xf2,0x50,0x0, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x3,0x4,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0xff,0xff,0xc4,0x60,0x0,0x0,0xff,0xff,0xd5,0xd0,0x1,0x4, + 0xff,0xff,0xc7,0xc0,0x0,0x8,0xff,0xff,0xd5,0xd0,0x1,0xc,0xff,0xff,0xd5,0xd0, + 0x1,0x10,0x4c,0x4d,0x54,0x0,0x41,0x44,0x54,0x0,0x41,0x53,0x54,0x0,0x41,0x57, + 0x54,0x0,0x41,0x50,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x1, + 0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0xe5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x14,0xf8,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x80,0xf1,0xab,0xa0,0xff,0xff,0xff,0xff, + 0x9a,0xe4,0xde,0xc0,0xff,0xff,0xff,0xff,0x9b,0xd6,0x13,0x30,0xff,0xff,0xff,0xff, + 0x9e,0xb8,0x85,0x60,0xff,0xff,0xff,0xff,0x9f,0xba,0xdd,0x50,0xff,0xff,0xff,0xff, + 0xa2,0x9d,0x17,0x40,0xff,0xff,0xff,0xff,0xa3,0x30,0xb1,0x30,0xff,0xff,0xff,0xff, + 0xa4,0x7a,0x56,0x40,0xff,0xff,0xff,0xff,0xa5,0x1b,0x1f,0x30,0xff,0xff,0xff,0xff, + 0xa6,0x53,0xa0,0xc0,0xff,0xff,0xff,0xff,0xa6,0xfc,0x52,0xb0,0xff,0xff,0xff,0xff, + 0xa8,0x3c,0xbd,0x40,0xff,0xff,0xff,0xff,0xa8,0xdc,0x34,0xb0,0xff,0xff,0xff,0xff, + 0xaa,0x1c,0x9f,0x40,0xff,0xff,0xff,0xff,0xaa,0xcd,0x3a,0x30,0xff,0xff,0xff,0xff, + 0xab,0xfc,0x81,0x40,0xff,0xff,0xff,0xff,0xac,0xbf,0x91,0x30,0xff,0xff,0xff,0xff, + 0xad,0xee,0xd8,0x40,0xff,0xff,0xff,0xff,0xae,0x8c,0xfe,0x30,0xff,0xff,0xff,0xff, + 0xaf,0xbc,0x45,0x40,0xff,0xff,0xff,0xff,0xb0,0x7f,0x55,0x30,0xff,0xff,0xff,0xff, + 0xb1,0xae,0x9c,0x40,0xff,0xff,0xff,0xff,0xb2,0x4b,0x70,0xb0,0xff,0xff,0xff,0xff, + 0xb3,0x8e,0x7e,0x40,0xff,0xff,0xff,0xff,0xb4,0x24,0xbb,0x30,0xff,0xff,0xff,0xff, + 0xb5,0x6e,0x60,0x40,0xff,0xff,0xff,0xff,0xb6,0x15,0xc0,0xb0,0xff,0xff,0xff,0xff, + 0xb7,0x4e,0x42,0x40,0xff,0xff,0xff,0xff,0xb8,0x8,0x17,0xb0,0xff,0xff,0xff,0xff, + 0xb9,0x24,0xe9,0xc0,0xff,0xff,0xff,0xff,0xb9,0xe7,0xf9,0xb0,0xff,0xff,0xff,0xff, + 0xbb,0x4,0xcb,0xc0,0xff,0xff,0xff,0xff,0xbb,0xd1,0x16,0x30,0xff,0xff,0xff,0xff, + 0xbd,0x0,0x5d,0x40,0xff,0xff,0xff,0xff,0xbd,0x9d,0x31,0xb0,0xff,0xff,0xff,0xff, + 0xbe,0xf2,0xb4,0x40,0xff,0xff,0xff,0xff,0xbf,0x90,0xda,0x30,0xff,0xff,0xff,0xff, + 0xc0,0xd3,0xe7,0xc0,0xff,0xff,0xff,0xff,0xc1,0x5e,0x47,0x30,0xff,0xff,0xff,0xff, + 0xc2,0x8d,0x8e,0x40,0xff,0xff,0xff,0xff,0xc3,0x50,0x9e,0x30,0xff,0xff,0xff,0xff, + 0xc4,0x6d,0x70,0x40,0xff,0xff,0xff,0xff,0xc5,0x30,0x80,0x30,0xff,0xff,0xff,0xff, + 0xc6,0x72,0x3c,0x40,0xff,0xff,0xff,0xff,0xc7,0x10,0x62,0x30,0xff,0xff,0xff,0xff, + 0xc8,0x36,0x6e,0xc0,0xff,0xff,0xff,0xff,0xc8,0xf9,0x7e,0xb0,0xff,0xff,0xff,0xff, + 0xca,0x16,0x50,0xc0,0xff,0xff,0xff,0xff,0xca,0xd9,0x60,0xb0,0xff,0xff,0xff,0xff, + 0xcb,0x88,0xe2,0x60,0xff,0xff,0xff,0xff,0xd2,0x23,0xf4,0x70,0xff,0xff,0xff,0xff, + 0xd2,0x60,0xed,0xd0,0xff,0xff,0xff,0xff,0xd3,0x75,0xd6,0xe0,0xff,0xff,0xff,0xff, + 0xd4,0x40,0xcf,0xd0,0xff,0xff,0xff,0xff,0xd5,0x55,0xb8,0xe0,0xff,0xff,0xff,0xff, + 0xd6,0x20,0xb1,0xd0,0xff,0xff,0xff,0xff,0xd7,0x35,0x9a,0xe0,0xff,0xff,0xff,0xff, + 0xd8,0x0,0x93,0xd0,0xff,0xff,0xff,0xff,0xd9,0x15,0x7c,0xe0,0xff,0xff,0xff,0xff, + 0xd9,0xe0,0x75,0xd0,0xff,0xff,0xff,0xff,0xdc,0xde,0x7b,0x60,0xff,0xff,0xff,0xff, + 0xdd,0xa9,0x74,0x50,0xff,0xff,0xff,0xff,0xde,0xbe,0x5d,0x60,0xff,0xff,0xff,0xff, + 0xdf,0x89,0x56,0x50,0xff,0xff,0xff,0xff,0xe0,0x9e,0x3f,0x60,0xff,0xff,0xff,0xff, + 0xe1,0x69,0x38,0x50,0xff,0xff,0xff,0xff,0xe2,0x7e,0x21,0x60,0xff,0xff,0xff,0xff, + 0xe3,0x49,0x1a,0x50,0xff,0xff,0xff,0xff,0xe6,0x47,0x1f,0xe0,0xff,0xff,0xff,0xff, + 0xe7,0x12,0x18,0xd0,0xff,0xff,0xff,0xff,0xe8,0x27,0x1,0xe0,0xff,0xff,0xff,0xff, + 0xe8,0xf1,0xfa,0xd0,0xff,0xff,0xff,0xff,0xea,0x6,0xe3,0xe0,0xff,0xff,0xff,0xff, + 0xea,0xd1,0xdc,0xd0,0xff,0xff,0xff,0xff,0xeb,0xe6,0xc5,0xe0,0xff,0xff,0xff,0xff, + 0xec,0xb1,0xbe,0xd0,0xff,0xff,0xff,0xff,0xf1,0x8f,0xa6,0x60,0xff,0xff,0xff,0xff, + 0xf2,0x7f,0x89,0x50,0xff,0xff,0xff,0xff,0xf3,0x6f,0x88,0x60,0xff,0xff,0xff,0xff, + 0xf4,0x5f,0x6b,0x50,0xff,0xff,0xff,0xff,0xf5,0x4f,0x6a,0x60,0xff,0xff,0xff,0xff, + 0xf6,0x3f,0x4d,0x50,0xff,0xff,0xff,0xff,0xf7,0x2f,0x4c,0x60,0xff,0xff,0xff,0xff, + 0xf8,0x28,0x69,0xd0,0xff,0xff,0xff,0xff,0xf9,0xf,0x2e,0x60,0xff,0xff,0xff,0xff, + 0xfa,0x8,0x4b,0xd0,0xff,0xff,0xff,0xff,0xfa,0xf8,0x4a,0xe0,0xff,0xff,0xff,0xff, + 0xfb,0xe8,0x2d,0xd0,0xff,0xff,0xff,0xff,0xfc,0xd8,0x2c,0xe0,0xff,0xff,0xff,0xff, + 0xfd,0xc8,0xf,0xd0,0xff,0xff,0xff,0xff,0xfe,0xb8,0xe,0xe0,0xff,0xff,0xff,0xff, + 0xff,0xa7,0xf1,0xd0,0x0,0x0,0x0,0x0,0x0,0x97,0xf0,0xe0,0x0,0x0,0x0,0x0, + 0x1,0x87,0xd3,0xd0,0x0,0x0,0x0,0x0,0x2,0x77,0xd2,0xe0,0x0,0x0,0x0,0x0, + 0x3,0x70,0xf0,0x50,0x0,0x0,0x0,0x0,0x4,0x60,0xef,0x60,0x0,0x0,0x0,0x0, + 0x5,0x50,0xd2,0x50,0x0,0x0,0x0,0x0,0x6,0x40,0xd1,0x60,0x0,0x0,0x0,0x0, + 0x7,0x30,0xb4,0x50,0x0,0x0,0x0,0x0,0x8,0x20,0xb3,0x60,0x0,0x0,0x0,0x0, + 0x9,0x10,0x96,0x50,0x0,0x0,0x0,0x0,0xa,0x0,0x95,0x60,0x0,0x0,0x0,0x0, + 0xa,0xf0,0x78,0x50,0x0,0x0,0x0,0x0,0xb,0xe0,0x77,0x60,0x0,0x0,0x0,0x0, + 0xc,0xd9,0x94,0xd0,0x0,0x0,0x0,0x0,0xd,0xc0,0x59,0x60,0x0,0x0,0x0,0x0, + 0xe,0xb9,0x76,0xd0,0x0,0x0,0x0,0x0,0xf,0xa9,0x75,0xe0,0x0,0x0,0x0,0x0, + 0x10,0x99,0x58,0xd0,0x0,0x0,0x0,0x0,0x11,0x89,0x57,0xe0,0x0,0x0,0x0,0x0, + 0x12,0x79,0x3a,0xd0,0x0,0x0,0x0,0x0,0x13,0x69,0x39,0xe0,0x0,0x0,0x0,0x0, + 0x14,0x59,0x1c,0xd0,0x0,0x0,0x0,0x0,0x15,0x49,0x1b,0xe0,0x0,0x0,0x0,0x0, + 0x16,0x38,0xfe,0xd0,0x0,0x0,0x0,0x0,0x17,0x28,0xfd,0xe0,0x0,0x0,0x0,0x0, + 0x18,0x22,0x1b,0x50,0x0,0x0,0x0,0x0,0x19,0x8,0xdf,0xe0,0x0,0x0,0x0,0x0, + 0x1a,0x1,0xfd,0x50,0x0,0x0,0x0,0x0,0x1a,0xf1,0xfc,0x60,0x0,0x0,0x0,0x0, + 0x1b,0xe1,0xdf,0x50,0x0,0x0,0x0,0x0,0x1c,0xd1,0xde,0x60,0x0,0x0,0x0,0x0, + 0x1d,0xc1,0xc1,0x50,0x0,0x0,0x0,0x0,0x1e,0xb1,0xc0,0x60,0x0,0x0,0x0,0x0, + 0x1f,0xa1,0xa3,0x50,0x0,0x0,0x0,0x0,0x20,0x75,0xf2,0xe0,0x0,0x0,0x0,0x0, + 0x21,0x81,0x85,0x50,0x0,0x0,0x0,0x0,0x22,0x55,0xd4,0xe0,0x0,0x0,0x0,0x0, + 0x23,0x6a,0xa1,0xd0,0x0,0x0,0x0,0x0,0x24,0x35,0xb6,0xe0,0x0,0x0,0x0,0x0, + 0x25,0x4a,0x83,0xd0,0x0,0x0,0x0,0x0,0x26,0x15,0x98,0xe0,0x0,0x0,0x0,0x0, + 0x27,0x2a,0x65,0xd0,0x0,0x0,0x0,0x0,0x27,0xfe,0xb5,0x60,0x0,0x0,0x0,0x0, + 0x29,0xa,0x47,0xd0,0x0,0x0,0x0,0x0,0x29,0xde,0x97,0x60,0x0,0x0,0x0,0x0, + 0x2a,0xea,0x29,0xd0,0x0,0x0,0x0,0x0,0x2b,0xbe,0x79,0x60,0x0,0x0,0x0,0x0, + 0x2c,0xd3,0x46,0x50,0x0,0x0,0x0,0x0,0x2d,0x9e,0x5b,0x60,0x0,0x0,0x0,0x0, + 0x2e,0xb3,0x28,0x50,0x0,0x0,0x0,0x0,0x2f,0x7e,0x3d,0x60,0x0,0x0,0x0,0x0, + 0x30,0x93,0xa,0x50,0x0,0x0,0x0,0x0,0x31,0x67,0x59,0xe0,0x0,0x0,0x0,0x0, + 0x32,0x72,0xec,0x50,0x0,0x0,0x0,0x0,0x33,0x47,0x3b,0xe0,0x0,0x0,0x0,0x0, + 0x34,0x52,0xce,0x50,0x0,0x0,0x0,0x0,0x35,0x27,0x1d,0xe0,0x0,0x0,0x0,0x0, + 0x36,0x32,0xb0,0x50,0x0,0x0,0x0,0x0,0x37,0x6,0xff,0xe0,0x0,0x0,0x0,0x0, + 0x38,0x1b,0xcc,0xd0,0x0,0x0,0x0,0x0,0x38,0xe6,0xe1,0xe0,0x0,0x0,0x0,0x0, + 0x39,0xfb,0xae,0xd0,0x0,0x0,0x0,0x0,0x3a,0xc6,0xc3,0xe0,0x0,0x0,0x0,0x0, + 0x3b,0xdb,0x90,0xd0,0x0,0x0,0x0,0x0,0x3c,0xaf,0xe0,0x60,0x0,0x0,0x0,0x0, + 0x3d,0xbb,0x72,0xd0,0x0,0x0,0x0,0x0,0x3e,0x8f,0xc2,0x60,0x0,0x0,0x0,0x0, + 0x3f,0x9b,0x54,0xd0,0x0,0x0,0x0,0x0,0x40,0x6f,0xa4,0x60,0x0,0x0,0x0,0x0, + 0x41,0x84,0x71,0x50,0x0,0x0,0x0,0x0,0x42,0x4f,0x86,0x60,0x0,0x0,0x0,0x0, + 0x43,0x64,0x53,0x50,0x0,0x0,0x0,0x0,0x44,0x2f,0x68,0x60,0x0,0x0,0x0,0x0, + 0x45,0x44,0x35,0x50,0x0,0x0,0x0,0x0,0x45,0xf3,0x9a,0xe0,0x0,0x0,0x0,0x0, + 0x47,0x2d,0x51,0xd0,0x0,0x0,0x0,0x0,0x47,0xd3,0x7c,0xe0,0x0,0x0,0x0,0x0, + 0x49,0xd,0x33,0xd0,0x0,0x0,0x0,0x0,0x49,0xb3,0x5e,0xe0,0x0,0x0,0x0,0x0, + 0x4a,0xed,0x15,0xd0,0x0,0x0,0x0,0x0,0x4b,0x9c,0x7b,0x60,0x0,0x0,0x0,0x0, + 0x4c,0xd6,0x32,0x50,0x0,0x0,0x0,0x0,0x4d,0x7c,0x5d,0x60,0x0,0x0,0x0,0x0, + 0x4e,0xb6,0x14,0x50,0x0,0x0,0x0,0x0,0x4f,0x5c,0x3f,0x60,0x0,0x0,0x0,0x0, + 0x50,0x95,0xf6,0x50,0x0,0x0,0x0,0x0,0x51,0x3c,0x21,0x60,0x0,0x0,0x0,0x0, + 0x52,0x75,0xd8,0x50,0x0,0x0,0x0,0x0,0x53,0x1c,0x3,0x60,0x0,0x0,0x0,0x0, + 0x54,0x55,0xba,0x50,0x0,0x0,0x0,0x0,0x54,0xfb,0xe5,0x60,0x0,0x0,0x0,0x0, + 0x56,0x35,0x9c,0x50,0x0,0x0,0x0,0x0,0x56,0xe5,0x1,0xe0,0x0,0x0,0x0,0x0, + 0x58,0x1e,0xb8,0xd0,0x0,0x0,0x0,0x0,0x58,0xc4,0xe3,0xe0,0x0,0x0,0x0,0x0, + 0x59,0xfe,0x9a,0xd0,0x0,0x0,0x0,0x0,0x5a,0xa4,0xc5,0xe0,0x0,0x0,0x0,0x0, + 0x5b,0xde,0x7c,0xd0,0x0,0x0,0x0,0x0,0x5c,0x84,0xa7,0xe0,0x0,0x0,0x0,0x0, + 0x5d,0xbe,0x5e,0xd0,0x0,0x0,0x0,0x0,0x5e,0x64,0x89,0xe0,0x0,0x0,0x0,0x0, + 0x5f,0x9e,0x40,0xd0,0x0,0x0,0x0,0x0,0x60,0x4d,0xa6,0x60,0x0,0x0,0x0,0x0, + 0x61,0x87,0x5d,0x50,0x0,0x0,0x0,0x0,0x62,0x2d,0x88,0x60,0x0,0x0,0x0,0x0, + 0x63,0x67,0x3f,0x50,0x0,0x0,0x0,0x0,0x64,0xd,0x6a,0x60,0x0,0x0,0x0,0x0, + 0x65,0x47,0x21,0x50,0x0,0x0,0x0,0x0,0x65,0xed,0x4c,0x60,0x0,0x0,0x0,0x0, + 0x67,0x27,0x3,0x50,0x0,0x0,0x0,0x0,0x67,0xcd,0x2e,0x60,0x0,0x0,0x0,0x0, + 0x69,0x6,0xe5,0x50,0x0,0x0,0x0,0x0,0x69,0xad,0x10,0x60,0x0,0x0,0x0,0x0, + 0x6a,0xe6,0xc7,0x50,0x0,0x0,0x0,0x0,0x6b,0x96,0x2c,0xe0,0x0,0x0,0x0,0x0, + 0x6c,0xcf,0xe3,0xd0,0x0,0x0,0x0,0x0,0x6d,0x76,0xe,0xe0,0x0,0x0,0x0,0x0, + 0x6e,0xaf,0xc5,0xd0,0x0,0x0,0x0,0x0,0x6f,0x55,0xf0,0xe0,0x0,0x0,0x0,0x0, + 0x70,0x8f,0xa7,0xd0,0x0,0x0,0x0,0x0,0x71,0x35,0xd2,0xe0,0x0,0x0,0x0,0x0, + 0x72,0x6f,0x89,0xd0,0x0,0x0,0x0,0x0,0x73,0x15,0xb4,0xe0,0x0,0x0,0x0,0x0, + 0x74,0x4f,0x6b,0xd0,0x0,0x0,0x0,0x0,0x74,0xfe,0xd1,0x60,0x0,0x0,0x0,0x0, + 0x76,0x38,0x88,0x50,0x0,0x0,0x0,0x0,0x76,0xde,0xb3,0x60,0x0,0x0,0x0,0x0, + 0x78,0x18,0x6a,0x50,0x0,0x0,0x0,0x0,0x78,0xbe,0x95,0x60,0x0,0x0,0x0,0x0, + 0x79,0xf8,0x4c,0x50,0x0,0x0,0x0,0x0,0x7a,0x9e,0x77,0x60,0x0,0x0,0x0,0x0, + 0x7b,0xd8,0x2e,0x50,0x0,0x0,0x0,0x0,0x7c,0x7e,0x59,0x60,0x0,0x0,0x0,0x0, + 0x7d,0xb8,0x10,0x50,0x0,0x0,0x0,0x0,0x7e,0x5e,0x3b,0x60,0x0,0x0,0x0,0x0, + 0x7f,0x97,0xf2,0x50,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, + 0x1,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0xff,0xcc,0x0, - 0x0,0x0,0x0,0x4,0xb0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x9,0x4c,0x4d,0x54, - 0x0,0x47,0x48,0x53,0x54,0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x30,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xd,0xf8,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x9e,0x30,0x66,0xb4,0xff,0xff,0xff,0xff, - 0xa3,0x34,0x7b,0x80,0xff,0xff,0xff,0xff,0xa3,0xd3,0xfc,0x50,0xff,0xff,0xff,0xff, - 0xa5,0x15,0xaf,0x0,0xff,0xff,0xff,0xff,0xa5,0xb5,0x2f,0xd0,0xff,0xff,0xff,0xff, - 0xa6,0xf6,0xe2,0x80,0xff,0xff,0xff,0xff,0xa7,0x96,0x63,0x50,0xff,0xff,0xff,0xff, - 0xa8,0xd8,0x16,0x0,0xff,0xff,0xff,0xff,0xa9,0x77,0x96,0xd0,0xff,0xff,0xff,0xff, - 0xaa,0xba,0x9b,0x0,0xff,0xff,0xff,0xff,0xab,0x5a,0x1b,0xd0,0xff,0xff,0xff,0xff, - 0xac,0x9b,0xce,0x80,0xff,0xff,0xff,0xff,0xad,0x3b,0x4f,0x50,0xff,0xff,0xff,0xff, - 0xae,0x7d,0x2,0x0,0xff,0xff,0xff,0xff,0xaf,0x1c,0x82,0xd0,0xff,0xff,0xff,0xff, - 0xb0,0x5e,0x35,0x80,0xff,0xff,0xff,0xff,0xb0,0xfd,0xb6,0x50,0xff,0xff,0xff,0xff, - 0xb2,0x40,0xba,0x80,0xff,0xff,0xff,0xff,0xb2,0xe0,0x3b,0x50,0xff,0xff,0xff,0xff, - 0xb4,0x21,0xee,0x0,0xff,0xff,0xff,0xff,0xb4,0xc1,0x6e,0xd0,0xff,0xff,0xff,0xff, - 0xb6,0x3,0x21,0x80,0xff,0xff,0xff,0xff,0xb6,0xa2,0xa2,0x50,0xff,0xff,0xff,0xff, - 0xb7,0xe4,0x55,0x0,0xff,0xff,0xff,0xff,0xb8,0x83,0xd5,0xd0,0xff,0xff,0xff,0xff, - 0xb9,0xc6,0xda,0x0,0xff,0xff,0xff,0xff,0xba,0x66,0x5a,0xd0,0xff,0xff,0xff,0xff, - 0xbb,0xa8,0xd,0x80,0xff,0xff,0xff,0xff,0xbc,0x47,0x8e,0x50,0xff,0xff,0xff,0xff, - 0xbd,0x89,0x41,0x0,0xff,0xff,0xff,0xff,0xbe,0x28,0xc1,0xd0,0xff,0xff,0xff,0xff, - 0xbf,0x6a,0x74,0x80,0xff,0xff,0xff,0xff,0xc0,0x9,0xf5,0x50,0xff,0xff,0xff,0xff, - 0xc1,0x4c,0xf9,0x80,0xff,0xff,0xff,0xff,0xc1,0xec,0x7a,0x50,0xff,0xff,0xff,0xff, - 0xc3,0x2e,0x2d,0x0,0xff,0xff,0xff,0xff,0xc3,0xcd,0xad,0xd0,0xff,0xff,0xff,0xff, - 0xc5,0xf,0x60,0x80,0xff,0xff,0xff,0xff,0xc5,0xae,0xe1,0x50,0xff,0xff,0xff,0xff, - 0xc6,0xf0,0x94,0x0,0xff,0xff,0xff,0xff,0xc7,0x90,0x14,0xd0,0xff,0xff,0xff,0xff, - 0xc8,0xd3,0x19,0x0,0xff,0xff,0xff,0xff,0xc9,0x72,0x99,0xd0,0xff,0xff,0xff,0xff, - 0xca,0xb4,0x4c,0x80,0xff,0xff,0xff,0xff,0xcb,0x53,0xcd,0x50,0xff,0xff,0xff,0xff, - 0xcc,0x95,0x80,0x0,0xff,0xff,0xff,0xff,0xcd,0x35,0x0,0xd0,0x0,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2, - 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0xff,0xcc, - 0x0,0x0,0x0,0x0,0x4,0xb0,0x1,0x4,0x0,0x0,0x0,0x0,0x0,0x9,0x4c,0x4d, - 0x54,0x0,0x47,0x48,0x53,0x54,0x0,0x47,0x4d,0x54,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xa,0x47,0x4d,0x54,0x30,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Kampala - 0x0,0x0,0x1,0x1b, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x13,0x80,0x0,0x0,0x0,0xb1, - 0xee,0xda,0xfc,0xb4,0xc2,0x9a,0xd0,0xc7,0x91,0x47,0xd8,0xed,0x2f,0xe1,0xd4,0x0, - 0x1,0x2,0x3,0x1,0x0,0x0,0x22,0x84,0x0,0x0,0x0,0x0,0x2a,0x30,0x0,0x4, - 0x0,0x0,0x23,0x28,0x0,0x8,0x0,0x0,0x26,0xac,0x0,0xd,0x0,0x0,0x2a,0x30, - 0x0,0x4,0x4c,0x4d,0x54,0x0,0x45,0x41,0x54,0x0,0x42,0x45,0x41,0x54,0x0,0x42, - 0x45,0x41,0x55,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x13,0xf8,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xb1,0xee,0xda,0xfc,0xff,0xff,0xff,0xff,0xb4, - 0xc2,0x9a,0xd0,0xff,0xff,0xff,0xff,0xc7,0x91,0x47,0xd8,0xff,0xff,0xff,0xff,0xed, - 0x2f,0xe1,0xd4,0x0,0x1,0x2,0x3,0x1,0x0,0x0,0x22,0x84,0x0,0x0,0x0,0x0, - 0x2a,0x30,0x0,0x4,0x0,0x0,0x23,0x28,0x0,0x8,0x0,0x0,0x26,0xac,0x0,0xd, - 0x0,0x0,0x2a,0x30,0x0,0x4,0x4c,0x4d,0x54,0x0,0x45,0x41,0x54,0x0,0x42,0x45, - 0x41,0x54,0x0,0x42,0x45,0x41,0x55,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0xa,0x45,0x41,0x54,0x2d,0x33,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Brazzaville - 0x0,0x0,0x0,0xab, - 0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0xa1, - 0x51,0xf3,0x50,0x0,0x1,0x0,0x0,0x3,0x30,0x0,0x0,0x0,0x0,0xe,0x10,0x0, - 0x4,0x4c,0x4d,0x54,0x0,0x57,0x41,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, - 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0xa1,0x51,0xf3,0x50,0x0,0x1,0x0,0x0,0x3,0x30,0x0, - 0x0,0x0,0x0,0xe,0x10,0x0,0x4,0x4c,0x4d,0x54,0x0,0x57,0x41,0x54,0x0,0x0, - 0x0,0x0,0x0,0xa,0x57,0x41,0x54,0x2d,0x31,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Africa/Douala - 0x0,0x0,0x0,0xab, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0xff,0xff,0xc4,0x60,0x0,0x0,0xff, + 0xff,0xd5,0xd0,0x1,0x4,0xff,0xff,0xc7,0xc0,0x0,0x8,0xff,0xff,0xd5,0xd0,0x1, + 0xc,0xff,0xff,0xd5,0xd0,0x1,0x10,0x4c,0x4d,0x54,0x0,0x41,0x44,0x54,0x0,0x41, + 0x53,0x54,0x0,0x41,0x57,0x54,0x0,0x41,0x50,0x54,0x0,0x0,0x0,0x0,0x0,0x1, + 0x0,0x0,0x0,0x0,0x1,0xa,0x41,0x53,0x54,0x34,0x41,0x44,0x54,0x2c,0x4d,0x33, + 0x2e,0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Canada/Yukon + 0x0,0x0,0x8,0x2d, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0xa1, - 0x51,0xf3,0x50,0x0,0x1,0x0,0x0,0x3,0x30,0x0,0x0,0x0,0x0,0xe,0x10,0x0, - 0x4,0x4c,0x4d,0x54,0x0,0x57,0x41,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, - 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0xa1,0x51,0xf3,0x50,0x0,0x1,0x0,0x0,0x3,0x30,0x0, - 0x0,0x0,0x0,0xe,0x10,0x0,0x4,0x4c,0x4d,0x54,0x0,0x57,0x41,0x54,0x0,0x0, - 0x0,0x0,0x0,0xa,0x57,0x41,0x54,0x2d,0x31,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Chile/Continental - 0x0,0x0,0x9,0xd3, - 0x54, - 0x5a,0x69,0x66,0x33,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x9f,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x11,0x80,0x0,0x0,0x0,0x8f, - 0x30,0x47,0x46,0x9b,0x5c,0xe5,0x50,0x9f,0x7c,0xe2,0xc6,0xa1,0x0,0x71,0xc0,0xb0, - 0x5e,0x77,0xc6,0xb1,0x77,0x3d,0x40,0xb2,0x41,0x0,0xd0,0xb3,0x58,0x70,0xc0,0xb4, - 0x22,0x34,0x50,0xb5,0x39,0xa4,0x40,0xb6,0x3,0x67,0xd0,0xb7,0x1a,0xd7,0xc0,0xb7, - 0xe4,0x9b,0x50,0xb8,0xfd,0x5c,0xc0,0xb9,0xc7,0x20,0x50,0xcc,0x1c,0x6e,0x40,0xcc, - 0x6c,0xe7,0xd0,0xd3,0xdc,0x8f,0xc0,0xd4,0x1b,0xc9,0xb0,0xd5,0x33,0x55,0xc0,0xd5, - 0x76,0x92,0x40,0xfd,0xd1,0x3c,0x40,0xfe,0x92,0xfa,0xb0,0xff,0xcc,0xcd,0xc0,0x0, - 0x72,0xdc,0xb0,0x1,0x75,0x50,0xc0,0x2,0x40,0x49,0xb0,0x3,0x55,0x32,0xc0,0x4, - 0x20,0x2b,0xb0,0x5,0x3e,0x4f,0x40,0x6,0x0,0xd,0xb0,0x7,0xb,0xbc,0x40,0x7, - 0xdf,0xef,0xb0,0x8,0xfe,0x13,0x40,0x9,0xbf,0xd1,0xb0,0xa,0xdd,0xf5,0x40,0xb, - 0xa8,0xee,0x30,0xc,0xbd,0xd7,0x40,0xd,0x88,0xd0,0x30,0xe,0x9d,0xb9,0x40,0xf, - 0x68,0xb2,0x30,0x10,0x86,0xd5,0xc0,0x11,0x48,0x94,0x30,0x12,0x66,0xb7,0xc0,0x13, - 0x28,0x76,0x30,0x14,0x46,0x99,0xc0,0x15,0x11,0x92,0xb0,0x16,0x26,0x7b,0xc0,0x16, - 0xf1,0x74,0xb0,0x18,0x6,0x5d,0xc0,0x18,0xd1,0x56,0xb0,0x19,0xe6,0x3f,0xc0,0x1a, - 0xb1,0x38,0xb0,0x1b,0xcf,0x5c,0x40,0x1c,0x91,0x1a,0xb0,0x1d,0xaf,0x3e,0x40,0x1e, - 0x70,0xfc,0xb0,0x1f,0x8f,0x20,0x40,0x20,0x7f,0x3,0x30,0x21,0x6f,0x2,0x40,0x22, - 0x39,0xfb,0x30,0x23,0x4e,0xe4,0x40,0x24,0x19,0xdd,0x30,0x25,0x38,0x0,0xc0,0x25, - 0xf9,0xbf,0x30,0x26,0xf2,0xf8,0xc0,0x27,0xd9,0xa1,0x30,0x28,0xf7,0xc4,0xc0,0x29, - 0xc2,0xbd,0xb0,0x2a,0xd7,0xa6,0xc0,0x2b,0xa2,0x9f,0xb0,0x2c,0xb7,0x88,0xc0,0x2d, - 0x82,0x81,0xb0,0x2e,0x97,0x6a,0xc0,0x2f,0x62,0x63,0xb0,0x30,0x80,0x87,0x40,0x31, - 0x42,0x45,0xb0,0x32,0x60,0x69,0x40,0x33,0x3d,0xd7,0x30,0x34,0x40,0x4b,0x40,0x35, - 0xb,0x44,0x30,0x36,0xd,0xb8,0x40,0x37,0x6,0xd5,0xb0,0x38,0x0,0xf,0x40,0x38, - 0xcb,0x8,0x30,0x39,0xe9,0x2b,0xc0,0x3a,0xaa,0xea,0x30,0x3b,0xc9,0xd,0xc0,0x3c, - 0x8a,0xcc,0x30,0x3d,0xa8,0xef,0xc0,0x3e,0x6a,0xae,0x30,0x3f,0x88,0xd1,0xc0,0x40, - 0x53,0xca,0xb0,0x41,0x68,0xb3,0xc0,0x42,0x33,0xac,0xb0,0x43,0x48,0x95,0xc0,0x44, - 0x13,0x8e,0xb0,0x45,0x31,0xb2,0x40,0x45,0xf3,0x70,0xb0,0x47,0x11,0x94,0x40,0x47, - 0xef,0x2,0x30,0x48,0xf1,0x76,0x40,0x49,0xbc,0x6f,0x30,0x4a,0xd1,0x58,0x40,0x4b, - 0xb8,0x0,0xb0,0x4c,0xb1,0x3a,0x40,0x4d,0xc6,0x7,0x30,0x4e,0x50,0x82,0xc0,0x4f, - 0x9c,0xae,0xb0,0x50,0x42,0xd9,0xc0,0x51,0x7c,0x90,0xb0,0x52,0x2b,0xf6,0x40,0x53, - 0x5c,0x72,0xb0,0x54,0xb,0xd8,0x40,0x57,0x37,0xe6,0x30,0x57,0xaf,0xec,0xc0,0x59, - 0x17,0xc8,0x30,0x59,0x8f,0xce,0xc0,0x5a,0xf7,0xaa,0x30,0x5b,0x6f,0xb0,0xc0,0x5c, - 0xd7,0x8c,0x30,0x5d,0x4f,0x92,0xc0,0x5e,0xb7,0x6e,0x30,0x5f,0x2f,0x74,0xc0,0x60, - 0x97,0x50,0x30,0x61,0x18,0x91,0x40,0x62,0x80,0x6c,0xb0,0x62,0xf8,0x73,0x40,0x64, - 0x60,0x4e,0xb0,0x64,0xd8,0x55,0x40,0x66,0x40,0x30,0xb0,0x66,0xb8,0x37,0x40,0x68, - 0x20,0x12,0xb0,0x68,0x98,0x19,0x40,0x69,0xff,0xf4,0xb0,0x6a,0x77,0xfb,0x40,0x6b, - 0xdf,0xd6,0xb0,0x6c,0x61,0x17,0xc0,0x6d,0xc8,0xf3,0x30,0x6e,0x40,0xf9,0xc0,0x6f, - 0xa8,0xd5,0x30,0x70,0x20,0xdb,0xc0,0x71,0x88,0xb7,0x30,0x72,0x0,0xbd,0xc0,0x73, - 0x68,0x99,0x30,0x73,0xe0,0x9f,0xc0,0x75,0x48,0x7b,0x30,0x75,0xc9,0xbc,0x40,0x77, - 0x31,0x97,0xb0,0x77,0xa9,0x9e,0x40,0x79,0x11,0x79,0xb0,0x79,0x89,0x80,0x40,0x7a, - 0xf1,0x5b,0xb0,0x7b,0x69,0x62,0x40,0x7c,0xd1,0x3d,0xb0,0x7d,0x49,0x44,0x40,0x7e, - 0xb1,0x1f,0xb0,0x7f,0x29,0x26,0x40,0x1,0x2,0x1,0x3,0x1,0x4,0x2,0x4,0x2, - 0x4,0x2,0x4,0x2,0x4,0x2,0x3,0x2,0x3,0x5,0x3,0x2,0x3,0x6,0x7,0x6, - 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, - 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, + 0x0,0x0,0x7f,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x21,0x80,0x0,0x0,0x0,0x9e, + 0xb8,0xcb,0xb0,0x9f,0xbb,0x23,0xa0,0xa0,0xd0,0xc,0xb0,0xa1,0xa2,0xd2,0x80,0xcb, + 0x89,0x28,0xb0,0xd2,0x23,0xf4,0x70,0xd2,0x61,0x34,0x20,0xf7,0x2f,0x76,0x90,0xf8, + 0x28,0xa2,0x10,0xfb,0x1d,0x5f,0x10,0x13,0x69,0x72,0x20,0x14,0x59,0x55,0x10,0x15, + 0x49,0x54,0x20,0x16,0x39,0x37,0x10,0x17,0x29,0x36,0x20,0x18,0x22,0x53,0x90,0x19, + 0x9,0x18,0x20,0x1a,0x2,0x35,0x90,0x1a,0xf2,0x34,0xa0,0x1b,0xe2,0x17,0x90,0x1c, + 0xd2,0x16,0xa0,0x1d,0xc1,0xf9,0x90,0x1e,0xb1,0xf8,0xa0,0x1f,0xa1,0xdb,0x90,0x20, + 0x76,0x2b,0x20,0x21,0x81,0xbd,0x90,0x22,0x56,0xd,0x20,0x23,0x6a,0xda,0x10,0x24, + 0x35,0xef,0x20,0x25,0x4a,0xbc,0x10,0x26,0x15,0xd1,0x20,0x27,0x2a,0x9e,0x10,0x27, + 0xfe,0xed,0xa0,0x29,0xa,0x80,0x10,0x29,0xde,0xcf,0xa0,0x2a,0xea,0x62,0x10,0x2b, + 0xbe,0xb1,0xa0,0x2c,0xd3,0x7e,0x90,0x2d,0x9e,0x93,0xa0,0x2e,0xb3,0x60,0x90,0x2f, + 0x7e,0x75,0xa0,0x30,0x93,0x42,0x90,0x31,0x67,0x92,0x20,0x32,0x73,0x24,0x90,0x33, + 0x47,0x74,0x20,0x34,0x53,0x6,0x90,0x35,0x27,0x56,0x20,0x36,0x32,0xe8,0x90,0x37, + 0x7,0x38,0x20,0x38,0x1c,0x5,0x10,0x38,0xe7,0x1a,0x20,0x39,0xfb,0xe7,0x10,0x3a, + 0xc6,0xfc,0x20,0x3b,0xdb,0xc9,0x10,0x3c,0xb0,0x18,0xa0,0x3d,0xbb,0xab,0x10,0x3e, + 0x8f,0xfa,0xa0,0x3f,0x9b,0x8d,0x10,0x40,0x6f,0xdc,0xa0,0x41,0x84,0xa9,0x90,0x42, + 0x4f,0xbe,0xa0,0x43,0x64,0x8b,0x90,0x44,0x2f,0xa0,0xa0,0x45,0x44,0x6d,0x90,0x45, + 0xf3,0xd3,0x20,0x47,0x2d,0x8a,0x10,0x47,0xd3,0xb5,0x20,0x49,0xd,0x6c,0x10,0x49, + 0xb3,0x97,0x20,0x4a,0xed,0x4e,0x10,0x4b,0x9c,0xb3,0xa0,0x4c,0xd6,0x6a,0x90,0x4d, + 0x7c,0x95,0xa0,0x4e,0xb6,0x4c,0x90,0x4f,0x5c,0x77,0xa0,0x50,0x96,0x2e,0x90,0x51, + 0x3c,0x59,0xa0,0x52,0x76,0x10,0x90,0x53,0x1c,0x3b,0xa0,0x54,0x55,0xf2,0x90,0x54, + 0xfc,0x1d,0xa0,0x56,0x35,0xd4,0x90,0x56,0xe5,0x3a,0x20,0x58,0x1e,0xf1,0x10,0x58, + 0xc5,0x1c,0x20,0x59,0xfe,0xd3,0x10,0x5a,0xa4,0xfe,0x20,0x5b,0xde,0xb5,0x10,0x5c, + 0x84,0xe0,0x20,0x5d,0xbe,0x97,0x10,0x5e,0x64,0xc2,0x20,0x5f,0x9e,0x79,0x10,0x60, + 0x4d,0xde,0xa0,0x61,0x87,0x95,0x90,0x62,0x2d,0xc0,0xa0,0x63,0x67,0x77,0x90,0x64, + 0xd,0xa2,0xa0,0x65,0x47,0x59,0x90,0x65,0xed,0x84,0xa0,0x67,0x27,0x3b,0x90,0x67, + 0xcd,0x66,0xa0,0x69,0x7,0x1d,0x90,0x69,0xad,0x48,0xa0,0x6a,0xe6,0xff,0x90,0x6b, + 0x96,0x65,0x20,0x6c,0xd0,0x1c,0x10,0x6d,0x76,0x47,0x20,0x6e,0xaf,0xfe,0x10,0x6f, + 0x56,0x29,0x20,0x70,0x8f,0xe0,0x10,0x71,0x36,0xb,0x20,0x72,0x6f,0xc2,0x10,0x73, + 0x15,0xed,0x20,0x74,0x4f,0xa4,0x10,0x74,0xff,0x9,0xa0,0x76,0x38,0xc0,0x90,0x76, + 0xde,0xeb,0xa0,0x78,0x18,0xa2,0x90,0x78,0xbe,0xcd,0xa0,0x79,0xf8,0x84,0x90,0x7a, + 0x9e,0xaf,0xa0,0x7b,0xd8,0x66,0x90,0x7c,0x7e,0x91,0xa0,0x7d,0xb8,0x48,0x90,0x7e, + 0x5e,0x73,0xa0,0x7f,0x98,0x2a,0x90,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x2,0x5, + 0x2,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, 0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6, - 0x7,0x6,0x7,0x6,0x7,0x6,0xff,0xff,0xbd,0xba,0x0,0x0,0xff,0xff,0xbd,0xba, - 0x0,0x4,0xff,0xff,0xb9,0xb0,0x0,0x8,0xff,0xff,0xc7,0xc0,0x0,0x8,0xff,0xff, - 0xc7,0xc0,0x1,0xc,0xff,0xff,0xd5,0xd0,0x1,0xc,0xff,0xff,0xd5,0xd0,0x1,0xc, - 0xff,0xff,0xc7,0xc0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x53,0x4d,0x54,0x0,0x43,0x4c, - 0x54,0x0,0x43,0x4c,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0, - 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x54,0x5a,0x69,0x66,0x33,0x0,0x0,0x0,0x0, + 0x7,0x6,0x7,0x6,0x7,0x6,0xff,0xff,0x81,0x64,0x0,0x0,0xff,0xff,0x8f,0x80, + 0x1,0x4,0xff,0xff,0x81,0x70,0x0,0x8,0xff,0xff,0x8f,0x80,0x1,0xc,0xff,0xff, + 0x8f,0x80,0x1,0x10,0xff,0xff,0x9d,0x90,0x1,0x14,0xff,0xff,0x8f,0x80,0x0,0x19, + 0xff,0xff,0x9d,0x90,0x1,0x1d,0x4c,0x4d,0x54,0x0,0x59,0x44,0x54,0x0,0x59,0x53, + 0x54,0x0,0x59,0x57,0x54,0x0,0x59,0x50,0x54,0x0,0x59,0x44,0x44,0x54,0x0,0x50, + 0x53,0x54,0x0,0x50,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0, - 0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa0,0x0,0x0,0x0,0x8,0x0, - 0x0,0x0,0x11,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x69, - 0x87,0x1d,0xc6,0xff,0xff,0xff,0xff,0x8f,0x30,0x47,0x46,0xff,0xff,0xff,0xff,0x9b, - 0x5c,0xe5,0x50,0xff,0xff,0xff,0xff,0x9f,0x7c,0xe2,0xc6,0xff,0xff,0xff,0xff,0xa1, - 0x0,0x71,0xc0,0xff,0xff,0xff,0xff,0xb0,0x5e,0x77,0xc6,0xff,0xff,0xff,0xff,0xb1, - 0x77,0x3d,0x40,0xff,0xff,0xff,0xff,0xb2,0x41,0x0,0xd0,0xff,0xff,0xff,0xff,0xb3, - 0x58,0x70,0xc0,0xff,0xff,0xff,0xff,0xb4,0x22,0x34,0x50,0xff,0xff,0xff,0xff,0xb5, - 0x39,0xa4,0x40,0xff,0xff,0xff,0xff,0xb6,0x3,0x67,0xd0,0xff,0xff,0xff,0xff,0xb7, - 0x1a,0xd7,0xc0,0xff,0xff,0xff,0xff,0xb7,0xe4,0x9b,0x50,0xff,0xff,0xff,0xff,0xb8, - 0xfd,0x5c,0xc0,0xff,0xff,0xff,0xff,0xb9,0xc7,0x20,0x50,0xff,0xff,0xff,0xff,0xcc, - 0x1c,0x6e,0x40,0xff,0xff,0xff,0xff,0xcc,0x6c,0xe7,0xd0,0xff,0xff,0xff,0xff,0xd3, - 0xdc,0x8f,0xc0,0xff,0xff,0xff,0xff,0xd4,0x1b,0xc9,0xb0,0xff,0xff,0xff,0xff,0xd5, - 0x33,0x55,0xc0,0xff,0xff,0xff,0xff,0xd5,0x76,0x92,0x40,0xff,0xff,0xff,0xff,0xfd, - 0xd1,0x3c,0x40,0xff,0xff,0xff,0xff,0xfe,0x92,0xfa,0xb0,0xff,0xff,0xff,0xff,0xff, - 0xcc,0xcd,0xc0,0x0,0x0,0x0,0x0,0x0,0x72,0xdc,0xb0,0x0,0x0,0x0,0x0,0x1, - 0x75,0x50,0xc0,0x0,0x0,0x0,0x0,0x2,0x40,0x49,0xb0,0x0,0x0,0x0,0x0,0x3, - 0x55,0x32,0xc0,0x0,0x0,0x0,0x0,0x4,0x20,0x2b,0xb0,0x0,0x0,0x0,0x0,0x5, - 0x3e,0x4f,0x40,0x0,0x0,0x0,0x0,0x6,0x0,0xd,0xb0,0x0,0x0,0x0,0x0,0x7, - 0xb,0xbc,0x40,0x0,0x0,0x0,0x0,0x7,0xdf,0xef,0xb0,0x0,0x0,0x0,0x0,0x8, - 0xfe,0x13,0x40,0x0,0x0,0x0,0x0,0x9,0xbf,0xd1,0xb0,0x0,0x0,0x0,0x0,0xa, - 0xdd,0xf5,0x40,0x0,0x0,0x0,0x0,0xb,0xa8,0xee,0x30,0x0,0x0,0x0,0x0,0xc, - 0xbd,0xd7,0x40,0x0,0x0,0x0,0x0,0xd,0x88,0xd0,0x30,0x0,0x0,0x0,0x0,0xe, - 0x9d,0xb9,0x40,0x0,0x0,0x0,0x0,0xf,0x68,0xb2,0x30,0x0,0x0,0x0,0x0,0x10, - 0x86,0xd5,0xc0,0x0,0x0,0x0,0x0,0x11,0x48,0x94,0x30,0x0,0x0,0x0,0x0,0x12, - 0x66,0xb7,0xc0,0x0,0x0,0x0,0x0,0x13,0x28,0x76,0x30,0x0,0x0,0x0,0x0,0x14, - 0x46,0x99,0xc0,0x0,0x0,0x0,0x0,0x15,0x11,0x92,0xb0,0x0,0x0,0x0,0x0,0x16, - 0x26,0x7b,0xc0,0x0,0x0,0x0,0x0,0x16,0xf1,0x74,0xb0,0x0,0x0,0x0,0x0,0x18, - 0x6,0x5d,0xc0,0x0,0x0,0x0,0x0,0x18,0xd1,0x56,0xb0,0x0,0x0,0x0,0x0,0x19, - 0xe6,0x3f,0xc0,0x0,0x0,0x0,0x0,0x1a,0xb1,0x38,0xb0,0x0,0x0,0x0,0x0,0x1b, - 0xcf,0x5c,0x40,0x0,0x0,0x0,0x0,0x1c,0x91,0x1a,0xb0,0x0,0x0,0x0,0x0,0x1d, - 0xaf,0x3e,0x40,0x0,0x0,0x0,0x0,0x1e,0x70,0xfc,0xb0,0x0,0x0,0x0,0x0,0x1f, - 0x8f,0x20,0x40,0x0,0x0,0x0,0x0,0x20,0x7f,0x3,0x30,0x0,0x0,0x0,0x0,0x21, - 0x6f,0x2,0x40,0x0,0x0,0x0,0x0,0x22,0x39,0xfb,0x30,0x0,0x0,0x0,0x0,0x23, - 0x4e,0xe4,0x40,0x0,0x0,0x0,0x0,0x24,0x19,0xdd,0x30,0x0,0x0,0x0,0x0,0x25, - 0x38,0x0,0xc0,0x0,0x0,0x0,0x0,0x25,0xf9,0xbf,0x30,0x0,0x0,0x0,0x0,0x26, - 0xf2,0xf8,0xc0,0x0,0x0,0x0,0x0,0x27,0xd9,0xa1,0x30,0x0,0x0,0x0,0x0,0x28, - 0xf7,0xc4,0xc0,0x0,0x0,0x0,0x0,0x29,0xc2,0xbd,0xb0,0x0,0x0,0x0,0x0,0x2a, - 0xd7,0xa6,0xc0,0x0,0x0,0x0,0x0,0x2b,0xa2,0x9f,0xb0,0x0,0x0,0x0,0x0,0x2c, - 0xb7,0x88,0xc0,0x0,0x0,0x0,0x0,0x2d,0x82,0x81,0xb0,0x0,0x0,0x0,0x0,0x2e, - 0x97,0x6a,0xc0,0x0,0x0,0x0,0x0,0x2f,0x62,0x63,0xb0,0x0,0x0,0x0,0x0,0x30, - 0x80,0x87,0x40,0x0,0x0,0x0,0x0,0x31,0x42,0x45,0xb0,0x0,0x0,0x0,0x0,0x32, - 0x60,0x69,0x40,0x0,0x0,0x0,0x0,0x33,0x3d,0xd7,0x30,0x0,0x0,0x0,0x0,0x34, - 0x40,0x4b,0x40,0x0,0x0,0x0,0x0,0x35,0xb,0x44,0x30,0x0,0x0,0x0,0x0,0x36, - 0xd,0xb8,0x40,0x0,0x0,0x0,0x0,0x37,0x6,0xd5,0xb0,0x0,0x0,0x0,0x0,0x38, - 0x0,0xf,0x40,0x0,0x0,0x0,0x0,0x38,0xcb,0x8,0x30,0x0,0x0,0x0,0x0,0x39, - 0xe9,0x2b,0xc0,0x0,0x0,0x0,0x0,0x3a,0xaa,0xea,0x30,0x0,0x0,0x0,0x0,0x3b, - 0xc9,0xd,0xc0,0x0,0x0,0x0,0x0,0x3c,0x8a,0xcc,0x30,0x0,0x0,0x0,0x0,0x3d, - 0xa8,0xef,0xc0,0x0,0x0,0x0,0x0,0x3e,0x6a,0xae,0x30,0x0,0x0,0x0,0x0,0x3f, - 0x88,0xd1,0xc0,0x0,0x0,0x0,0x0,0x40,0x53,0xca,0xb0,0x0,0x0,0x0,0x0,0x41, - 0x68,0xb3,0xc0,0x0,0x0,0x0,0x0,0x42,0x33,0xac,0xb0,0x0,0x0,0x0,0x0,0x43, - 0x48,0x95,0xc0,0x0,0x0,0x0,0x0,0x44,0x13,0x8e,0xb0,0x0,0x0,0x0,0x0,0x45, - 0x31,0xb2,0x40,0x0,0x0,0x0,0x0,0x45,0xf3,0x70,0xb0,0x0,0x0,0x0,0x0,0x47, - 0x11,0x94,0x40,0x0,0x0,0x0,0x0,0x47,0xef,0x2,0x30,0x0,0x0,0x0,0x0,0x48, - 0xf1,0x76,0x40,0x0,0x0,0x0,0x0,0x49,0xbc,0x6f,0x30,0x0,0x0,0x0,0x0,0x4a, - 0xd1,0x58,0x40,0x0,0x0,0x0,0x0,0x4b,0xb8,0x0,0xb0,0x0,0x0,0x0,0x0,0x4c, - 0xb1,0x3a,0x40,0x0,0x0,0x0,0x0,0x4d,0xc6,0x7,0x30,0x0,0x0,0x0,0x0,0x4e, - 0x50,0x82,0xc0,0x0,0x0,0x0,0x0,0x4f,0x9c,0xae,0xb0,0x0,0x0,0x0,0x0,0x50, - 0x42,0xd9,0xc0,0x0,0x0,0x0,0x0,0x51,0x7c,0x90,0xb0,0x0,0x0,0x0,0x0,0x52, - 0x2b,0xf6,0x40,0x0,0x0,0x0,0x0,0x53,0x5c,0x72,0xb0,0x0,0x0,0x0,0x0,0x54, - 0xb,0xd8,0x40,0x0,0x0,0x0,0x0,0x57,0x37,0xe6,0x30,0x0,0x0,0x0,0x0,0x57, - 0xaf,0xec,0xc0,0x0,0x0,0x0,0x0,0x59,0x17,0xc8,0x30,0x0,0x0,0x0,0x0,0x59, - 0x8f,0xce,0xc0,0x0,0x0,0x0,0x0,0x5a,0xf7,0xaa,0x30,0x0,0x0,0x0,0x0,0x5b, - 0x6f,0xb0,0xc0,0x0,0x0,0x0,0x0,0x5c,0xd7,0x8c,0x30,0x0,0x0,0x0,0x0,0x5d, - 0x4f,0x92,0xc0,0x0,0x0,0x0,0x0,0x5e,0xb7,0x6e,0x30,0x0,0x0,0x0,0x0,0x5f, - 0x2f,0x74,0xc0,0x0,0x0,0x0,0x0,0x60,0x97,0x50,0x30,0x0,0x0,0x0,0x0,0x61, - 0x18,0x91,0x40,0x0,0x0,0x0,0x0,0x62,0x80,0x6c,0xb0,0x0,0x0,0x0,0x0,0x62, - 0xf8,0x73,0x40,0x0,0x0,0x0,0x0,0x64,0x60,0x4e,0xb0,0x0,0x0,0x0,0x0,0x64, - 0xd8,0x55,0x40,0x0,0x0,0x0,0x0,0x66,0x40,0x30,0xb0,0x0,0x0,0x0,0x0,0x66, - 0xb8,0x37,0x40,0x0,0x0,0x0,0x0,0x68,0x20,0x12,0xb0,0x0,0x0,0x0,0x0,0x68, - 0x98,0x19,0x40,0x0,0x0,0x0,0x0,0x69,0xff,0xf4,0xb0,0x0,0x0,0x0,0x0,0x6a, - 0x77,0xfb,0x40,0x0,0x0,0x0,0x0,0x6b,0xdf,0xd6,0xb0,0x0,0x0,0x0,0x0,0x6c, - 0x61,0x17,0xc0,0x0,0x0,0x0,0x0,0x6d,0xc8,0xf3,0x30,0x0,0x0,0x0,0x0,0x6e, - 0x40,0xf9,0xc0,0x0,0x0,0x0,0x0,0x6f,0xa8,0xd5,0x30,0x0,0x0,0x0,0x0,0x70, - 0x20,0xdb,0xc0,0x0,0x0,0x0,0x0,0x71,0x88,0xb7,0x30,0x0,0x0,0x0,0x0,0x72, - 0x0,0xbd,0xc0,0x0,0x0,0x0,0x0,0x73,0x68,0x99,0x30,0x0,0x0,0x0,0x0,0x73, - 0xe0,0x9f,0xc0,0x0,0x0,0x0,0x0,0x75,0x48,0x7b,0x30,0x0,0x0,0x0,0x0,0x75, - 0xc9,0xbc,0x40,0x0,0x0,0x0,0x0,0x77,0x31,0x97,0xb0,0x0,0x0,0x0,0x0,0x77, - 0xa9,0x9e,0x40,0x0,0x0,0x0,0x0,0x79,0x11,0x79,0xb0,0x0,0x0,0x0,0x0,0x79, - 0x89,0x80,0x40,0x0,0x0,0x0,0x0,0x7a,0xf1,0x5b,0xb0,0x0,0x0,0x0,0x0,0x7b, - 0x69,0x62,0x40,0x0,0x0,0x0,0x0,0x7c,0xd1,0x3d,0xb0,0x0,0x0,0x0,0x0,0x7d, - 0x49,0x44,0x40,0x0,0x0,0x0,0x0,0x7e,0xb1,0x1f,0xb0,0x0,0x0,0x0,0x0,0x7f, - 0x29,0x26,0x40,0x0,0x1,0x2,0x1,0x3,0x1,0x4,0x2,0x4,0x2,0x4,0x2,0x4, - 0x2,0x4,0x2,0x3,0x2,0x3,0x5,0x3,0x2,0x3,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x80,0x0,0x0,0x0,0x8,0x0, + 0x0,0x0,0x21,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x7d, + 0x86,0x8a,0x9c,0xff,0xff,0xff,0xff,0x9e,0xb8,0xcb,0xb0,0xff,0xff,0xff,0xff,0x9f, + 0xbb,0x23,0xa0,0xff,0xff,0xff,0xff,0xa0,0xd0,0xc,0xb0,0xff,0xff,0xff,0xff,0xa1, + 0xa2,0xd2,0x80,0xff,0xff,0xff,0xff,0xcb,0x89,0x28,0xb0,0xff,0xff,0xff,0xff,0xd2, + 0x23,0xf4,0x70,0xff,0xff,0xff,0xff,0xd2,0x61,0x34,0x20,0xff,0xff,0xff,0xff,0xf7, + 0x2f,0x76,0x90,0xff,0xff,0xff,0xff,0xf8,0x28,0xa2,0x10,0xff,0xff,0xff,0xff,0xfb, + 0x1d,0x5f,0x10,0x0,0x0,0x0,0x0,0x13,0x69,0x72,0x20,0x0,0x0,0x0,0x0,0x14, + 0x59,0x55,0x10,0x0,0x0,0x0,0x0,0x15,0x49,0x54,0x20,0x0,0x0,0x0,0x0,0x16, + 0x39,0x37,0x10,0x0,0x0,0x0,0x0,0x17,0x29,0x36,0x20,0x0,0x0,0x0,0x0,0x18, + 0x22,0x53,0x90,0x0,0x0,0x0,0x0,0x19,0x9,0x18,0x20,0x0,0x0,0x0,0x0,0x1a, + 0x2,0x35,0x90,0x0,0x0,0x0,0x0,0x1a,0xf2,0x34,0xa0,0x0,0x0,0x0,0x0,0x1b, + 0xe2,0x17,0x90,0x0,0x0,0x0,0x0,0x1c,0xd2,0x16,0xa0,0x0,0x0,0x0,0x0,0x1d, + 0xc1,0xf9,0x90,0x0,0x0,0x0,0x0,0x1e,0xb1,0xf8,0xa0,0x0,0x0,0x0,0x0,0x1f, + 0xa1,0xdb,0x90,0x0,0x0,0x0,0x0,0x20,0x76,0x2b,0x20,0x0,0x0,0x0,0x0,0x21, + 0x81,0xbd,0x90,0x0,0x0,0x0,0x0,0x22,0x56,0xd,0x20,0x0,0x0,0x0,0x0,0x23, + 0x6a,0xda,0x10,0x0,0x0,0x0,0x0,0x24,0x35,0xef,0x20,0x0,0x0,0x0,0x0,0x25, + 0x4a,0xbc,0x10,0x0,0x0,0x0,0x0,0x26,0x15,0xd1,0x20,0x0,0x0,0x0,0x0,0x27, + 0x2a,0x9e,0x10,0x0,0x0,0x0,0x0,0x27,0xfe,0xed,0xa0,0x0,0x0,0x0,0x0,0x29, + 0xa,0x80,0x10,0x0,0x0,0x0,0x0,0x29,0xde,0xcf,0xa0,0x0,0x0,0x0,0x0,0x2a, + 0xea,0x62,0x10,0x0,0x0,0x0,0x0,0x2b,0xbe,0xb1,0xa0,0x0,0x0,0x0,0x0,0x2c, + 0xd3,0x7e,0x90,0x0,0x0,0x0,0x0,0x2d,0x9e,0x93,0xa0,0x0,0x0,0x0,0x0,0x2e, + 0xb3,0x60,0x90,0x0,0x0,0x0,0x0,0x2f,0x7e,0x75,0xa0,0x0,0x0,0x0,0x0,0x30, + 0x93,0x42,0x90,0x0,0x0,0x0,0x0,0x31,0x67,0x92,0x20,0x0,0x0,0x0,0x0,0x32, + 0x73,0x24,0x90,0x0,0x0,0x0,0x0,0x33,0x47,0x74,0x20,0x0,0x0,0x0,0x0,0x34, + 0x53,0x6,0x90,0x0,0x0,0x0,0x0,0x35,0x27,0x56,0x20,0x0,0x0,0x0,0x0,0x36, + 0x32,0xe8,0x90,0x0,0x0,0x0,0x0,0x37,0x7,0x38,0x20,0x0,0x0,0x0,0x0,0x38, + 0x1c,0x5,0x10,0x0,0x0,0x0,0x0,0x38,0xe7,0x1a,0x20,0x0,0x0,0x0,0x0,0x39, + 0xfb,0xe7,0x10,0x0,0x0,0x0,0x0,0x3a,0xc6,0xfc,0x20,0x0,0x0,0x0,0x0,0x3b, + 0xdb,0xc9,0x10,0x0,0x0,0x0,0x0,0x3c,0xb0,0x18,0xa0,0x0,0x0,0x0,0x0,0x3d, + 0xbb,0xab,0x10,0x0,0x0,0x0,0x0,0x3e,0x8f,0xfa,0xa0,0x0,0x0,0x0,0x0,0x3f, + 0x9b,0x8d,0x10,0x0,0x0,0x0,0x0,0x40,0x6f,0xdc,0xa0,0x0,0x0,0x0,0x0,0x41, + 0x84,0xa9,0x90,0x0,0x0,0x0,0x0,0x42,0x4f,0xbe,0xa0,0x0,0x0,0x0,0x0,0x43, + 0x64,0x8b,0x90,0x0,0x0,0x0,0x0,0x44,0x2f,0xa0,0xa0,0x0,0x0,0x0,0x0,0x45, + 0x44,0x6d,0x90,0x0,0x0,0x0,0x0,0x45,0xf3,0xd3,0x20,0x0,0x0,0x0,0x0,0x47, + 0x2d,0x8a,0x10,0x0,0x0,0x0,0x0,0x47,0xd3,0xb5,0x20,0x0,0x0,0x0,0x0,0x49, + 0xd,0x6c,0x10,0x0,0x0,0x0,0x0,0x49,0xb3,0x97,0x20,0x0,0x0,0x0,0x0,0x4a, + 0xed,0x4e,0x10,0x0,0x0,0x0,0x0,0x4b,0x9c,0xb3,0xa0,0x0,0x0,0x0,0x0,0x4c, + 0xd6,0x6a,0x90,0x0,0x0,0x0,0x0,0x4d,0x7c,0x95,0xa0,0x0,0x0,0x0,0x0,0x4e, + 0xb6,0x4c,0x90,0x0,0x0,0x0,0x0,0x4f,0x5c,0x77,0xa0,0x0,0x0,0x0,0x0,0x50, + 0x96,0x2e,0x90,0x0,0x0,0x0,0x0,0x51,0x3c,0x59,0xa0,0x0,0x0,0x0,0x0,0x52, + 0x76,0x10,0x90,0x0,0x0,0x0,0x0,0x53,0x1c,0x3b,0xa0,0x0,0x0,0x0,0x0,0x54, + 0x55,0xf2,0x90,0x0,0x0,0x0,0x0,0x54,0xfc,0x1d,0xa0,0x0,0x0,0x0,0x0,0x56, + 0x35,0xd4,0x90,0x0,0x0,0x0,0x0,0x56,0xe5,0x3a,0x20,0x0,0x0,0x0,0x0,0x58, + 0x1e,0xf1,0x10,0x0,0x0,0x0,0x0,0x58,0xc5,0x1c,0x20,0x0,0x0,0x0,0x0,0x59, + 0xfe,0xd3,0x10,0x0,0x0,0x0,0x0,0x5a,0xa4,0xfe,0x20,0x0,0x0,0x0,0x0,0x5b, + 0xde,0xb5,0x10,0x0,0x0,0x0,0x0,0x5c,0x84,0xe0,0x20,0x0,0x0,0x0,0x0,0x5d, + 0xbe,0x97,0x10,0x0,0x0,0x0,0x0,0x5e,0x64,0xc2,0x20,0x0,0x0,0x0,0x0,0x5f, + 0x9e,0x79,0x10,0x0,0x0,0x0,0x0,0x60,0x4d,0xde,0xa0,0x0,0x0,0x0,0x0,0x61, + 0x87,0x95,0x90,0x0,0x0,0x0,0x0,0x62,0x2d,0xc0,0xa0,0x0,0x0,0x0,0x0,0x63, + 0x67,0x77,0x90,0x0,0x0,0x0,0x0,0x64,0xd,0xa2,0xa0,0x0,0x0,0x0,0x0,0x65, + 0x47,0x59,0x90,0x0,0x0,0x0,0x0,0x65,0xed,0x84,0xa0,0x0,0x0,0x0,0x0,0x67, + 0x27,0x3b,0x90,0x0,0x0,0x0,0x0,0x67,0xcd,0x66,0xa0,0x0,0x0,0x0,0x0,0x69, + 0x7,0x1d,0x90,0x0,0x0,0x0,0x0,0x69,0xad,0x48,0xa0,0x0,0x0,0x0,0x0,0x6a, + 0xe6,0xff,0x90,0x0,0x0,0x0,0x0,0x6b,0x96,0x65,0x20,0x0,0x0,0x0,0x0,0x6c, + 0xd0,0x1c,0x10,0x0,0x0,0x0,0x0,0x6d,0x76,0x47,0x20,0x0,0x0,0x0,0x0,0x6e, + 0xaf,0xfe,0x10,0x0,0x0,0x0,0x0,0x6f,0x56,0x29,0x20,0x0,0x0,0x0,0x0,0x70, + 0x8f,0xe0,0x10,0x0,0x0,0x0,0x0,0x71,0x36,0xb,0x20,0x0,0x0,0x0,0x0,0x72, + 0x6f,0xc2,0x10,0x0,0x0,0x0,0x0,0x73,0x15,0xed,0x20,0x0,0x0,0x0,0x0,0x74, + 0x4f,0xa4,0x10,0x0,0x0,0x0,0x0,0x74,0xff,0x9,0xa0,0x0,0x0,0x0,0x0,0x76, + 0x38,0xc0,0x90,0x0,0x0,0x0,0x0,0x76,0xde,0xeb,0xa0,0x0,0x0,0x0,0x0,0x78, + 0x18,0xa2,0x90,0x0,0x0,0x0,0x0,0x78,0xbe,0xcd,0xa0,0x0,0x0,0x0,0x0,0x79, + 0xf8,0x84,0x90,0x0,0x0,0x0,0x0,0x7a,0x9e,0xaf,0xa0,0x0,0x0,0x0,0x0,0x7b, + 0xd8,0x66,0x90,0x0,0x0,0x0,0x0,0x7c,0x7e,0x91,0xa0,0x0,0x0,0x0,0x0,0x7d, + 0xb8,0x48,0x90,0x0,0x0,0x0,0x0,0x7e,0x5e,0x73,0xa0,0x0,0x0,0x0,0x0,0x7f, + 0x98,0x2a,0x90,0x0,0x2,0x1,0x2,0x1,0x2,0x3,0x4,0x2,0x5,0x2,0x6,0x7, 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, @@ -42707,157 +44706,14 @@ static const unsigned char qt_resource_data[] = { 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, 0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, - 0x6,0x7,0x6,0xff,0xff,0xbd,0xba,0x0,0x0,0xff,0xff,0xbd,0xba,0x0,0x4,0xff, - 0xff,0xb9,0xb0,0x0,0x8,0xff,0xff,0xc7,0xc0,0x0,0x8,0xff,0xff,0xc7,0xc0,0x1, - 0xc,0xff,0xff,0xd5,0xd0,0x1,0xc,0xff,0xff,0xd5,0xd0,0x1,0xc,0xff,0xff,0xc7, - 0xc0,0x0,0x8,0x4c,0x4d,0x54,0x0,0x53,0x4d,0x54,0x0,0x43,0x4c,0x54,0x0,0x43, - 0x4c,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0, - 0x0,0x0,0x1,0x1,0xa,0x43,0x4c,0x54,0x34,0x43,0x4c,0x53,0x54,0x2c,0x4d,0x38, - 0x2e,0x32,0x2e,0x36,0x2f,0x32,0x34,0x2c,0x4d,0x35,0x2e,0x32,0x2e,0x36,0x2f,0x32, - 0x34,0xa, - // /home/konrad/src/smoke/tzone/zoneinfo/Chile/EasterIsland - 0x0,0x0,0x8,0xb1, - 0x54, - 0x5a,0x69,0x66,0x33,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x8b,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x13,0x80,0x0,0x0,0x0,0xb9, - 0xc7,0x40,0x88,0xfd,0xd1,0x3c,0x40,0xfe,0x92,0xfa,0xb0,0xff,0xcc,0xcd,0xc0,0x0, - 0x72,0xdc,0xb0,0x1,0x75,0x50,0xc0,0x2,0x40,0x49,0xb0,0x3,0x55,0x32,0xc0,0x4, - 0x20,0x2b,0xb0,0x5,0x3e,0x4f,0x40,0x6,0x0,0xd,0xb0,0x7,0xb,0xbc,0x40,0x7, - 0xdf,0xef,0xb0,0x8,0xfe,0x13,0x40,0x9,0xbf,0xd1,0xb0,0xa,0xdd,0xf5,0x40,0xb, - 0xa8,0xee,0x30,0xc,0xbd,0xd7,0x40,0xd,0x88,0xd0,0x30,0xe,0x9d,0xb9,0x40,0xf, - 0x68,0xb2,0x30,0x10,0x86,0xd5,0xc0,0x11,0x48,0x94,0x30,0x12,0x66,0xb7,0xc0,0x13, - 0x28,0x76,0x30,0x14,0x46,0x99,0xc0,0x15,0x11,0x92,0xb0,0x16,0x26,0x7b,0xc0,0x16, - 0xf1,0x74,0xb0,0x18,0x6,0x5d,0xc0,0x18,0xd1,0x56,0xb0,0x19,0xe6,0x3f,0xc0,0x1a, - 0xb1,0x38,0xb0,0x1b,0xcf,0x5c,0x40,0x1c,0x91,0x1a,0xb0,0x1d,0xaf,0x3e,0x40,0x1e, - 0x70,0xfc,0xb0,0x1f,0x8f,0x20,0x40,0x20,0x7f,0x3,0x30,0x21,0x6f,0x2,0x40,0x22, - 0x39,0xfb,0x30,0x23,0x4e,0xe4,0x40,0x24,0x19,0xdd,0x30,0x25,0x38,0x0,0xc0,0x25, - 0xf9,0xbf,0x30,0x26,0xf2,0xf8,0xc0,0x27,0xd9,0xa1,0x30,0x28,0xf7,0xc4,0xc0,0x29, - 0xc2,0xbd,0xb0,0x2a,0xd7,0xa6,0xc0,0x2b,0xa2,0x9f,0xb0,0x2c,0xb7,0x88,0xc0,0x2d, - 0x82,0x81,0xb0,0x2e,0x97,0x6a,0xc0,0x2f,0x62,0x63,0xb0,0x30,0x80,0x87,0x40,0x31, - 0x42,0x45,0xb0,0x32,0x60,0x69,0x40,0x33,0x3d,0xd7,0x30,0x34,0x40,0x4b,0x40,0x35, - 0xb,0x44,0x30,0x36,0xd,0xb8,0x40,0x37,0x6,0xd5,0xb0,0x38,0x0,0xf,0x40,0x38, - 0xcb,0x8,0x30,0x39,0xe9,0x2b,0xc0,0x3a,0xaa,0xea,0x30,0x3b,0xc9,0xd,0xc0,0x3c, - 0x8a,0xcc,0x30,0x3d,0xa8,0xef,0xc0,0x3e,0x6a,0xae,0x30,0x3f,0x88,0xd1,0xc0,0x40, - 0x53,0xca,0xb0,0x41,0x68,0xb3,0xc0,0x42,0x33,0xac,0xb0,0x43,0x48,0x95,0xc0,0x44, - 0x13,0x8e,0xb0,0x45,0x31,0xb2,0x40,0x45,0xf3,0x70,0xb0,0x47,0x11,0x94,0x40,0x47, - 0xef,0x2,0x30,0x48,0xf1,0x76,0x40,0x49,0xbc,0x6f,0x30,0x4a,0xd1,0x58,0x40,0x4b, - 0xb8,0x0,0xb0,0x4c,0xb1,0x3a,0x40,0x4d,0xc6,0x7,0x30,0x4e,0x50,0x82,0xc0,0x4f, - 0x9c,0xae,0xb0,0x50,0x42,0xd9,0xc0,0x51,0x7c,0x90,0xb0,0x52,0x2b,0xf6,0x40,0x53, - 0x5c,0x72,0xb0,0x54,0xb,0xd8,0x40,0x57,0x37,0xe6,0x30,0x57,0xaf,0xec,0xc0,0x59, - 0x17,0xc8,0x30,0x59,0x8f,0xce,0xc0,0x5a,0xf7,0xaa,0x30,0x5b,0x6f,0xb0,0xc0,0x5c, - 0xd7,0x8c,0x30,0x5d,0x4f,0x92,0xc0,0x5e,0xb7,0x6e,0x30,0x5f,0x2f,0x74,0xc0,0x60, - 0x97,0x50,0x30,0x61,0x18,0x91,0x40,0x62,0x80,0x6c,0xb0,0x62,0xf8,0x73,0x40,0x64, - 0x60,0x4e,0xb0,0x64,0xd8,0x55,0x40,0x66,0x40,0x30,0xb0,0x66,0xb8,0x37,0x40,0x68, - 0x20,0x12,0xb0,0x68,0x98,0x19,0x40,0x69,0xff,0xf4,0xb0,0x6a,0x77,0xfb,0x40,0x6b, - 0xdf,0xd6,0xb0,0x6c,0x61,0x17,0xc0,0x6d,0xc8,0xf3,0x30,0x6e,0x40,0xf9,0xc0,0x6f, - 0xa8,0xd5,0x30,0x70,0x20,0xdb,0xc0,0x71,0x88,0xb7,0x30,0x72,0x0,0xbd,0xc0,0x73, - 0x68,0x99,0x30,0x73,0xe0,0x9f,0xc0,0x75,0x48,0x7b,0x30,0x75,0xc9,0xbc,0x40,0x77, - 0x31,0x97,0xb0,0x77,0xa9,0x9e,0x40,0x79,0x11,0x79,0xb0,0x79,0x89,0x80,0x40,0x7a, - 0xf1,0x5b,0xb0,0x7b,0x69,0x62,0x40,0x7c,0xd1,0x3d,0xb0,0x7d,0x49,0x44,0x40,0x7e, - 0xb1,0x1f,0xb0,0x7f,0x29,0x26,0x40,0x1,0x4,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2, - 0x3,0x2,0x3,0x2,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x6,0xff,0xff,0x99,0x78,0x0,0x0,0xff,0xff,0x99,0x78,0x0,0x4,0xff,0xff, - 0xab,0xa0,0x1,0x8,0xff,0xff,0x9d,0x90,0x0,0xe,0xff,0xff,0x9d,0x90,0x0,0xe, - 0xff,0xff,0xab,0xa0,0x0,0xe,0xff,0xff,0xb9,0xb0,0x1,0x8,0x4c,0x4d,0x54,0x0, - 0x45,0x4d,0x54,0x0,0x45,0x41,0x53,0x53,0x54,0x0,0x45,0x41,0x53,0x54,0x0,0x0, - 0x0,0x1,0x1,0x0,0x1,0x1,0x0,0x0,0x1,0x1,0x0,0x1,0x1,0x54,0x5a,0x69, - 0x66,0x33,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x8c,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x13,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0x69,0x87,0x42,0x8,0xff,0xff,0xff,0xff,0xb9,0xc7,0x40, - 0x88,0xff,0xff,0xff,0xff,0xfd,0xd1,0x3c,0x40,0xff,0xff,0xff,0xff,0xfe,0x92,0xfa, - 0xb0,0xff,0xff,0xff,0xff,0xff,0xcc,0xcd,0xc0,0x0,0x0,0x0,0x0,0x0,0x72,0xdc, - 0xb0,0x0,0x0,0x0,0x0,0x1,0x75,0x50,0xc0,0x0,0x0,0x0,0x0,0x2,0x40,0x49, - 0xb0,0x0,0x0,0x0,0x0,0x3,0x55,0x32,0xc0,0x0,0x0,0x0,0x0,0x4,0x20,0x2b, - 0xb0,0x0,0x0,0x0,0x0,0x5,0x3e,0x4f,0x40,0x0,0x0,0x0,0x0,0x6,0x0,0xd, - 0xb0,0x0,0x0,0x0,0x0,0x7,0xb,0xbc,0x40,0x0,0x0,0x0,0x0,0x7,0xdf,0xef, - 0xb0,0x0,0x0,0x0,0x0,0x8,0xfe,0x13,0x40,0x0,0x0,0x0,0x0,0x9,0xbf,0xd1, - 0xb0,0x0,0x0,0x0,0x0,0xa,0xdd,0xf5,0x40,0x0,0x0,0x0,0x0,0xb,0xa8,0xee, - 0x30,0x0,0x0,0x0,0x0,0xc,0xbd,0xd7,0x40,0x0,0x0,0x0,0x0,0xd,0x88,0xd0, - 0x30,0x0,0x0,0x0,0x0,0xe,0x9d,0xb9,0x40,0x0,0x0,0x0,0x0,0xf,0x68,0xb2, - 0x30,0x0,0x0,0x0,0x0,0x10,0x86,0xd5,0xc0,0x0,0x0,0x0,0x0,0x11,0x48,0x94, - 0x30,0x0,0x0,0x0,0x0,0x12,0x66,0xb7,0xc0,0x0,0x0,0x0,0x0,0x13,0x28,0x76, - 0x30,0x0,0x0,0x0,0x0,0x14,0x46,0x99,0xc0,0x0,0x0,0x0,0x0,0x15,0x11,0x92, - 0xb0,0x0,0x0,0x0,0x0,0x16,0x26,0x7b,0xc0,0x0,0x0,0x0,0x0,0x16,0xf1,0x74, - 0xb0,0x0,0x0,0x0,0x0,0x18,0x6,0x5d,0xc0,0x0,0x0,0x0,0x0,0x18,0xd1,0x56, - 0xb0,0x0,0x0,0x0,0x0,0x19,0xe6,0x3f,0xc0,0x0,0x0,0x0,0x0,0x1a,0xb1,0x38, - 0xb0,0x0,0x0,0x0,0x0,0x1b,0xcf,0x5c,0x40,0x0,0x0,0x0,0x0,0x1c,0x91,0x1a, - 0xb0,0x0,0x0,0x0,0x0,0x1d,0xaf,0x3e,0x40,0x0,0x0,0x0,0x0,0x1e,0x70,0xfc, - 0xb0,0x0,0x0,0x0,0x0,0x1f,0x8f,0x20,0x40,0x0,0x0,0x0,0x0,0x20,0x7f,0x3, - 0x30,0x0,0x0,0x0,0x0,0x21,0x6f,0x2,0x40,0x0,0x0,0x0,0x0,0x22,0x39,0xfb, - 0x30,0x0,0x0,0x0,0x0,0x23,0x4e,0xe4,0x40,0x0,0x0,0x0,0x0,0x24,0x19,0xdd, - 0x30,0x0,0x0,0x0,0x0,0x25,0x38,0x0,0xc0,0x0,0x0,0x0,0x0,0x25,0xf9,0xbf, - 0x30,0x0,0x0,0x0,0x0,0x26,0xf2,0xf8,0xc0,0x0,0x0,0x0,0x0,0x27,0xd9,0xa1, - 0x30,0x0,0x0,0x0,0x0,0x28,0xf7,0xc4,0xc0,0x0,0x0,0x0,0x0,0x29,0xc2,0xbd, - 0xb0,0x0,0x0,0x0,0x0,0x2a,0xd7,0xa6,0xc0,0x0,0x0,0x0,0x0,0x2b,0xa2,0x9f, - 0xb0,0x0,0x0,0x0,0x0,0x2c,0xb7,0x88,0xc0,0x0,0x0,0x0,0x0,0x2d,0x82,0x81, - 0xb0,0x0,0x0,0x0,0x0,0x2e,0x97,0x6a,0xc0,0x0,0x0,0x0,0x0,0x2f,0x62,0x63, - 0xb0,0x0,0x0,0x0,0x0,0x30,0x80,0x87,0x40,0x0,0x0,0x0,0x0,0x31,0x42,0x45, - 0xb0,0x0,0x0,0x0,0x0,0x32,0x60,0x69,0x40,0x0,0x0,0x0,0x0,0x33,0x3d,0xd7, - 0x30,0x0,0x0,0x0,0x0,0x34,0x40,0x4b,0x40,0x0,0x0,0x0,0x0,0x35,0xb,0x44, - 0x30,0x0,0x0,0x0,0x0,0x36,0xd,0xb8,0x40,0x0,0x0,0x0,0x0,0x37,0x6,0xd5, - 0xb0,0x0,0x0,0x0,0x0,0x38,0x0,0xf,0x40,0x0,0x0,0x0,0x0,0x38,0xcb,0x8, - 0x30,0x0,0x0,0x0,0x0,0x39,0xe9,0x2b,0xc0,0x0,0x0,0x0,0x0,0x3a,0xaa,0xea, - 0x30,0x0,0x0,0x0,0x0,0x3b,0xc9,0xd,0xc0,0x0,0x0,0x0,0x0,0x3c,0x8a,0xcc, - 0x30,0x0,0x0,0x0,0x0,0x3d,0xa8,0xef,0xc0,0x0,0x0,0x0,0x0,0x3e,0x6a,0xae, - 0x30,0x0,0x0,0x0,0x0,0x3f,0x88,0xd1,0xc0,0x0,0x0,0x0,0x0,0x40,0x53,0xca, - 0xb0,0x0,0x0,0x0,0x0,0x41,0x68,0xb3,0xc0,0x0,0x0,0x0,0x0,0x42,0x33,0xac, - 0xb0,0x0,0x0,0x0,0x0,0x43,0x48,0x95,0xc0,0x0,0x0,0x0,0x0,0x44,0x13,0x8e, - 0xb0,0x0,0x0,0x0,0x0,0x45,0x31,0xb2,0x40,0x0,0x0,0x0,0x0,0x45,0xf3,0x70, - 0xb0,0x0,0x0,0x0,0x0,0x47,0x11,0x94,0x40,0x0,0x0,0x0,0x0,0x47,0xef,0x2, - 0x30,0x0,0x0,0x0,0x0,0x48,0xf1,0x76,0x40,0x0,0x0,0x0,0x0,0x49,0xbc,0x6f, - 0x30,0x0,0x0,0x0,0x0,0x4a,0xd1,0x58,0x40,0x0,0x0,0x0,0x0,0x4b,0xb8,0x0, - 0xb0,0x0,0x0,0x0,0x0,0x4c,0xb1,0x3a,0x40,0x0,0x0,0x0,0x0,0x4d,0xc6,0x7, - 0x30,0x0,0x0,0x0,0x0,0x4e,0x50,0x82,0xc0,0x0,0x0,0x0,0x0,0x4f,0x9c,0xae, - 0xb0,0x0,0x0,0x0,0x0,0x50,0x42,0xd9,0xc0,0x0,0x0,0x0,0x0,0x51,0x7c,0x90, - 0xb0,0x0,0x0,0x0,0x0,0x52,0x2b,0xf6,0x40,0x0,0x0,0x0,0x0,0x53,0x5c,0x72, - 0xb0,0x0,0x0,0x0,0x0,0x54,0xb,0xd8,0x40,0x0,0x0,0x0,0x0,0x57,0x37,0xe6, - 0x30,0x0,0x0,0x0,0x0,0x57,0xaf,0xec,0xc0,0x0,0x0,0x0,0x0,0x59,0x17,0xc8, - 0x30,0x0,0x0,0x0,0x0,0x59,0x8f,0xce,0xc0,0x0,0x0,0x0,0x0,0x5a,0xf7,0xaa, - 0x30,0x0,0x0,0x0,0x0,0x5b,0x6f,0xb0,0xc0,0x0,0x0,0x0,0x0,0x5c,0xd7,0x8c, - 0x30,0x0,0x0,0x0,0x0,0x5d,0x4f,0x92,0xc0,0x0,0x0,0x0,0x0,0x5e,0xb7,0x6e, - 0x30,0x0,0x0,0x0,0x0,0x5f,0x2f,0x74,0xc0,0x0,0x0,0x0,0x0,0x60,0x97,0x50, - 0x30,0x0,0x0,0x0,0x0,0x61,0x18,0x91,0x40,0x0,0x0,0x0,0x0,0x62,0x80,0x6c, - 0xb0,0x0,0x0,0x0,0x0,0x62,0xf8,0x73,0x40,0x0,0x0,0x0,0x0,0x64,0x60,0x4e, - 0xb0,0x0,0x0,0x0,0x0,0x64,0xd8,0x55,0x40,0x0,0x0,0x0,0x0,0x66,0x40,0x30, - 0xb0,0x0,0x0,0x0,0x0,0x66,0xb8,0x37,0x40,0x0,0x0,0x0,0x0,0x68,0x20,0x12, - 0xb0,0x0,0x0,0x0,0x0,0x68,0x98,0x19,0x40,0x0,0x0,0x0,0x0,0x69,0xff,0xf4, - 0xb0,0x0,0x0,0x0,0x0,0x6a,0x77,0xfb,0x40,0x0,0x0,0x0,0x0,0x6b,0xdf,0xd6, - 0xb0,0x0,0x0,0x0,0x0,0x6c,0x61,0x17,0xc0,0x0,0x0,0x0,0x0,0x6d,0xc8,0xf3, - 0x30,0x0,0x0,0x0,0x0,0x6e,0x40,0xf9,0xc0,0x0,0x0,0x0,0x0,0x6f,0xa8,0xd5, - 0x30,0x0,0x0,0x0,0x0,0x70,0x20,0xdb,0xc0,0x0,0x0,0x0,0x0,0x71,0x88,0xb7, - 0x30,0x0,0x0,0x0,0x0,0x72,0x0,0xbd,0xc0,0x0,0x0,0x0,0x0,0x73,0x68,0x99, - 0x30,0x0,0x0,0x0,0x0,0x73,0xe0,0x9f,0xc0,0x0,0x0,0x0,0x0,0x75,0x48,0x7b, - 0x30,0x0,0x0,0x0,0x0,0x75,0xc9,0xbc,0x40,0x0,0x0,0x0,0x0,0x77,0x31,0x97, - 0xb0,0x0,0x0,0x0,0x0,0x77,0xa9,0x9e,0x40,0x0,0x0,0x0,0x0,0x79,0x11,0x79, - 0xb0,0x0,0x0,0x0,0x0,0x79,0x89,0x80,0x40,0x0,0x0,0x0,0x0,0x7a,0xf1,0x5b, - 0xb0,0x0,0x0,0x0,0x0,0x7b,0x69,0x62,0x40,0x0,0x0,0x0,0x0,0x7c,0xd1,0x3d, - 0xb0,0x0,0x0,0x0,0x0,0x7d,0x49,0x44,0x40,0x0,0x0,0x0,0x0,0x7e,0xb1,0x1f, - 0xb0,0x0,0x0,0x0,0x0,0x7f,0x29,0x26,0x40,0x0,0x1,0x4,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0xff,0xff,0x99,0x78,0x0,0x0,0xff,0xff,0x99,0x78,0x0, - 0x4,0xff,0xff,0xab,0xa0,0x1,0x8,0xff,0xff,0x9d,0x90,0x0,0xe,0xff,0xff,0x9d, - 0x90,0x0,0xe,0xff,0xff,0xab,0xa0,0x0,0xe,0xff,0xff,0xb9,0xb0,0x1,0x8,0x4c, - 0x4d,0x54,0x0,0x45,0x4d,0x54,0x0,0x45,0x41,0x53,0x53,0x54,0x0,0x45,0x41,0x53, - 0x54,0x0,0x0,0x0,0x1,0x1,0x0,0x1,0x1,0x0,0x0,0x1,0x1,0x0,0x1,0x1, - 0xa,0x45,0x41,0x53,0x54,0x36,0x45,0x41,0x53,0x53,0x54,0x2c,0x4d,0x38,0x2e,0x32, - 0x2e,0x36,0x2f,0x32,0x32,0x2c,0x4d,0x35,0x2e,0x32,0x2e,0x36,0x2f,0x32,0x32,0xa, - + 0x6,0x7,0x6,0xff,0xff,0x81,0x64,0x0,0x0,0xff,0xff,0x8f,0x80,0x1,0x4,0xff, + 0xff,0x81,0x70,0x0,0x8,0xff,0xff,0x8f,0x80,0x1,0xc,0xff,0xff,0x8f,0x80,0x1, + 0x10,0xff,0xff,0x9d,0x90,0x1,0x14,0xff,0xff,0x8f,0x80,0x0,0x19,0xff,0xff,0x9d, + 0x90,0x1,0x1d,0x4c,0x4d,0x54,0x0,0x59,0x44,0x54,0x0,0x59,0x53,0x54,0x0,0x59, + 0x57,0x54,0x0,0x59,0x50,0x54,0x0,0x59,0x44,0x44,0x54,0x0,0x50,0x53,0x54,0x0, + 0x50,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x1,0x0,0x0,0x0,0xa,0x50,0x53,0x54,0x38,0x50,0x44,0x54,0x2c,0x4d,0x33,0x2e, + 0x32,0x2e,0x30,0x2c,0x4d,0x31,0x31,0x2e,0x31,0x2e,0x30,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/Asia/Aqtau 0x0,0x0,0x3,0xf9, 0x54, @@ -43148,31 +45004,31 @@ static const unsigned char qt_resource_data[] = { 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0xa,0x3c,0x2b,0x30, 0x33,0x3e,0x2d,0x33,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/Asia/Manila - 0x0,0x0,0x1,0x69, + 0x0,0x0,0x1,0x6f, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x9,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x11,0x80,0x0,0x0,0x0,0xc1, + 0x0,0x0,0xa,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0xc1, 0x9c,0xf4,0x80,0xc2,0x16,0x30,0x70,0xcb,0xf2,0xe7,0x0,0xd0,0xa9,0x25,0x70,0xe2, - 0x6c,0x39,0x0,0xe2,0xd5,0xa2,0xf0,0xf,0x75,0x46,0x80,0x10,0x66,0x7a,0xf0,0x2, - 0x1,0x2,0x3,0x2,0x1,0x2,0x1,0x2,0x0,0x0,0x71,0x70,0x0,0x0,0x0,0x0, - 0x7e,0x90,0x1,0x4,0x0,0x0,0x70,0x80,0x0,0x9,0x0,0x0,0x7e,0x90,0x0,0xd, - 0x0,0x0,0x70,0x80,0x0,0x9,0x4c,0x4d,0x54,0x0,0x50,0x48,0x53,0x54,0x0,0x50, - 0x48,0x54,0x0,0x4a,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x6c,0x39,0x0,0xe2,0xd5,0xa2,0xf0,0xf,0x75,0x46,0x80,0x10,0x66,0x7a,0xf0,0x7f, + 0xff,0xff,0xff,0x2,0x1,0x2,0x3,0x2,0x1,0x2,0x1,0x2,0x2,0x0,0x0,0x71, + 0x70,0x0,0x0,0x0,0x0,0x7e,0x90,0x1,0x4,0x0,0x0,0x70,0x80,0x0,0x8,0x0, + 0x0,0x7e,0x90,0x0,0x4,0x0,0x0,0x70,0x80,0x0,0x8,0x4c,0x4d,0x54,0x0,0x2b, + 0x30,0x39,0x0,0x2b,0x30,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0xf8,0x0,0x0, + 0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0xc,0xf8,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x14,0xe1,0xdc,0x10,0xff,0xff,0xff, 0xff,0x7b,0x1f,0x3f,0x90,0xff,0xff,0xff,0xff,0xc1,0x9c,0xf4,0x80,0xff,0xff,0xff, 0xff,0xc2,0x16,0x30,0x70,0xff,0xff,0xff,0xff,0xcb,0xf2,0xe7,0x0,0xff,0xff,0xff, 0xff,0xd0,0xa9,0x25,0x70,0xff,0xff,0xff,0xff,0xe2,0x6c,0x39,0x0,0xff,0xff,0xff, 0xff,0xe2,0xd5,0xa2,0xf0,0x0,0x0,0x0,0x0,0xf,0x75,0x46,0x80,0x0,0x0,0x0, - 0x0,0x10,0x66,0x7a,0xf0,0x0,0x1,0x3,0x2,0x3,0x4,0x3,0x2,0x3,0x2,0x3, - 0xff,0xff,0x1f,0xf0,0x0,0x0,0x0,0x0,0x71,0x70,0x0,0x0,0x0,0x0,0x7e,0x90, - 0x1,0x4,0x0,0x0,0x70,0x80,0x0,0x9,0x0,0x0,0x7e,0x90,0x0,0xd,0x0,0x0, - 0x70,0x80,0x0,0x9,0x4c,0x4d,0x54,0x0,0x50,0x48,0x53,0x54,0x0,0x50,0x48,0x54, - 0x0,0x4a,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xa,0x50,0x48,0x54,0x2d,0x38,0xa, + 0x0,0x10,0x66,0x7a,0xf0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x3, + 0x2,0x3,0x4,0x3,0x2,0x3,0x2,0x3,0x3,0xff,0xff,0x1f,0xf0,0x0,0x0,0x0, + 0x0,0x71,0x70,0x0,0x0,0x0,0x0,0x7e,0x90,0x1,0x4,0x0,0x0,0x70,0x80,0x0, + 0x8,0x0,0x0,0x7e,0x90,0x0,0x4,0x0,0x0,0x70,0x80,0x0,0x8,0x4c,0x4d,0x54, + 0x0,0x2b,0x30,0x39,0x0,0x2b,0x30,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2b,0x30,0x38,0x3e,0x2d,0x38,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/Asia/Harbin 0x0,0x0,0x1,0x9e, 0x54, @@ -43317,11 +45173,11 @@ static const unsigned char qt_resource_data[] = { 0x1,0x1,0x1,0x1,0x1,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2b,0x30,0x39,0x3e,0x2d,0x39,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/Asia/Macau - 0x0,0x0,0x3,0x1b, + 0x0,0x0,0x2,0xf3, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2b,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x11,0x80,0x0,0x0,0x0,0x92, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2a,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0x92, 0xe6,0x24,0x4,0xef,0x77,0xd1,0xb8,0xf0,0xa8,0x4e,0x28,0xf1,0x57,0xb3,0xb8,0xf2, 0x88,0x30,0x28,0xf3,0x37,0x64,0x80,0xf4,0x68,0x12,0x28,0xf5,0x20,0xb2,0x38,0xf6, 0x47,0xf4,0x28,0xf7,0x0,0x63,0x0,0xf8,0x27,0xa4,0xf0,0xf9,0x5,0x60,0x38,0xf9, @@ -43332,82 +45188,78 @@ static const unsigned char qt_resource_data[] = { 0x6,0xc8,0x28,0x9,0xf6,0xc7,0x38,0xa,0xe6,0xaa,0x28,0xb,0xd6,0xa9,0x38,0xc, 0xc6,0x8c,0x28,0xd,0xb6,0x8b,0x38,0xe,0xa6,0x6e,0x28,0xf,0x96,0x3c,0x0,0x10, 0x86,0x1e,0xf0,0x11,0x76,0x1e,0x0,0x12,0x6f,0x3b,0x70,0x13,0x5f,0x3a,0x80,0x14, - 0x4f,0x1d,0x70,0x38,0x5d,0x1,0x0,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x4f,0x1d,0x70,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x3,0x0,0x0,0x6a,0x7c,0x0,0x0,0x0,0x0,0x7e,0x90,0x1,0x4,0x0,0x0, - 0x70,0x80,0x0,0x9,0x0,0x0,0x70,0x80,0x0,0xd,0x4c,0x4d,0x54,0x0,0x4d,0x4f, - 0x53,0x54,0x0,0x4d,0x4f,0x54,0x0,0x43,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x2b,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x11,0xf8, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x92,0xe6,0x24,0x4,0xff, - 0xff,0xff,0xff,0xef,0x77,0xd1,0xb8,0xff,0xff,0xff,0xff,0xf0,0xa8,0x4e,0x28,0xff, - 0xff,0xff,0xff,0xf1,0x57,0xb3,0xb8,0xff,0xff,0xff,0xff,0xf2,0x88,0x30,0x28,0xff, - 0xff,0xff,0xff,0xf3,0x37,0x64,0x80,0xff,0xff,0xff,0xff,0xf4,0x68,0x12,0x28,0xff, - 0xff,0xff,0xff,0xf5,0x20,0xb2,0x38,0xff,0xff,0xff,0xff,0xf6,0x47,0xf4,0x28,0xff, - 0xff,0xff,0xff,0xf7,0x0,0x63,0x0,0xff,0xff,0xff,0xff,0xf8,0x27,0xa4,0xf0,0xff, - 0xff,0xff,0xff,0xf9,0x5,0x60,0x38,0xff,0xff,0xff,0xff,0xf9,0xf5,0x43,0x28,0xff, - 0xff,0xff,0xff,0xfa,0xe5,0x42,0x38,0xff,0xff,0xff,0xff,0xfb,0xde,0x5f,0xa8,0xff, - 0xff,0xff,0xff,0xfc,0xce,0x5e,0xb8,0xff,0xff,0xff,0xff,0xfd,0xbe,0x41,0xa8,0xff, - 0xff,0xff,0xff,0xfe,0xae,0x40,0xb8,0xff,0xff,0xff,0xff,0xff,0x9e,0x23,0xa8,0x0, - 0x0,0x0,0x0,0x0,0x8e,0x22,0xb8,0x0,0x0,0x0,0x0,0x1,0x7e,0x5,0xa8,0x0, - 0x0,0x0,0x0,0x2,0x6e,0x4,0xb8,0x0,0x0,0x0,0x0,0x3,0x5d,0xe7,0xa8,0x0, - 0x0,0x0,0x0,0x4,0x4d,0xb5,0x80,0x0,0x0,0x0,0x0,0x5,0x3d,0x98,0x70,0x0, - 0x0,0x0,0x0,0x6,0x2d,0x97,0x80,0x0,0x0,0x0,0x0,0x7,0x26,0xb4,0xf0,0x0, - 0x0,0x0,0x0,0x8,0x16,0xb4,0x0,0x0,0x0,0x0,0x0,0x9,0x6,0xc8,0x28,0x0, - 0x0,0x0,0x0,0x9,0xf6,0xc7,0x38,0x0,0x0,0x0,0x0,0xa,0xe6,0xaa,0x28,0x0, - 0x0,0x0,0x0,0xb,0xd6,0xa9,0x38,0x0,0x0,0x0,0x0,0xc,0xc6,0x8c,0x28,0x0, - 0x0,0x0,0x0,0xd,0xb6,0x8b,0x38,0x0,0x0,0x0,0x0,0xe,0xa6,0x6e,0x28,0x0, - 0x0,0x0,0x0,0xf,0x96,0x3c,0x0,0x0,0x0,0x0,0x0,0x10,0x86,0x1e,0xf0,0x0, - 0x0,0x0,0x0,0x11,0x76,0x1e,0x0,0x0,0x0,0x0,0x0,0x12,0x6f,0x3b,0x70,0x0, - 0x0,0x0,0x0,0x13,0x5f,0x3a,0x80,0x0,0x0,0x0,0x0,0x14,0x4f,0x1d,0x70,0x0, - 0x0,0x0,0x0,0x38,0x5d,0x1,0x0,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x3,0x0,0x0,0x6a,0x7c,0x0,0x0,0x0,0x0,0x7e,0x90,0x1,0x4,0x0,0x0, - 0x70,0x80,0x0,0x9,0x0,0x0,0x70,0x80,0x0,0xd,0x4c,0x4d,0x54,0x0,0x4d,0x4f, - 0x53,0x54,0x0,0x4d,0x4f,0x54,0x0,0x43,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0xa,0x43,0x53,0x54,0x2d,0x38,0xa, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x0,0x0,0x6a, + 0x7c,0x0,0x0,0x0,0x0,0x7e,0x90,0x1,0x4,0x0,0x0,0x70,0x80,0x0,0x8,0x4c, + 0x4d,0x54,0x0,0x43,0x44,0x54,0x0,0x43,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x2a,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0xf8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x92,0xe6,0x24,0x4,0xff,0xff,0xff, + 0xff,0xef,0x77,0xd1,0xb8,0xff,0xff,0xff,0xff,0xf0,0xa8,0x4e,0x28,0xff,0xff,0xff, + 0xff,0xf1,0x57,0xb3,0xb8,0xff,0xff,0xff,0xff,0xf2,0x88,0x30,0x28,0xff,0xff,0xff, + 0xff,0xf3,0x37,0x64,0x80,0xff,0xff,0xff,0xff,0xf4,0x68,0x12,0x28,0xff,0xff,0xff, + 0xff,0xf5,0x20,0xb2,0x38,0xff,0xff,0xff,0xff,0xf6,0x47,0xf4,0x28,0xff,0xff,0xff, + 0xff,0xf7,0x0,0x63,0x0,0xff,0xff,0xff,0xff,0xf8,0x27,0xa4,0xf0,0xff,0xff,0xff, + 0xff,0xf9,0x5,0x60,0x38,0xff,0xff,0xff,0xff,0xf9,0xf5,0x43,0x28,0xff,0xff,0xff, + 0xff,0xfa,0xe5,0x42,0x38,0xff,0xff,0xff,0xff,0xfb,0xde,0x5f,0xa8,0xff,0xff,0xff, + 0xff,0xfc,0xce,0x5e,0xb8,0xff,0xff,0xff,0xff,0xfd,0xbe,0x41,0xa8,0xff,0xff,0xff, + 0xff,0xfe,0xae,0x40,0xb8,0xff,0xff,0xff,0xff,0xff,0x9e,0x23,0xa8,0x0,0x0,0x0, + 0x0,0x0,0x8e,0x22,0xb8,0x0,0x0,0x0,0x0,0x1,0x7e,0x5,0xa8,0x0,0x0,0x0, + 0x0,0x2,0x6e,0x4,0xb8,0x0,0x0,0x0,0x0,0x3,0x5d,0xe7,0xa8,0x0,0x0,0x0, + 0x0,0x4,0x4d,0xb5,0x80,0x0,0x0,0x0,0x0,0x5,0x3d,0x98,0x70,0x0,0x0,0x0, + 0x0,0x6,0x2d,0x97,0x80,0x0,0x0,0x0,0x0,0x7,0x26,0xb4,0xf0,0x0,0x0,0x0, + 0x0,0x8,0x16,0xb4,0x0,0x0,0x0,0x0,0x0,0x9,0x6,0xc8,0x28,0x0,0x0,0x0, + 0x0,0x9,0xf6,0xc7,0x38,0x0,0x0,0x0,0x0,0xa,0xe6,0xaa,0x28,0x0,0x0,0x0, + 0x0,0xb,0xd6,0xa9,0x38,0x0,0x0,0x0,0x0,0xc,0xc6,0x8c,0x28,0x0,0x0,0x0, + 0x0,0xd,0xb6,0x8b,0x38,0x0,0x0,0x0,0x0,0xe,0xa6,0x6e,0x28,0x0,0x0,0x0, + 0x0,0xf,0x96,0x3c,0x0,0x0,0x0,0x0,0x0,0x10,0x86,0x1e,0xf0,0x0,0x0,0x0, + 0x0,0x11,0x76,0x1e,0x0,0x0,0x0,0x0,0x0,0x12,0x6f,0x3b,0x70,0x0,0x0,0x0, + 0x0,0x13,0x5f,0x3a,0x80,0x0,0x0,0x0,0x0,0x14,0x4f,0x1d,0x70,0x0,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x0,0x0,0x6a,0x7c,0x0,0x0,0x0,0x0,0x7e, + 0x90,0x1,0x4,0x0,0x0,0x70,0x80,0x0,0x8,0x4c,0x4d,0x54,0x0,0x43,0x44,0x54, + 0x0,0x43,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x43,0x53,0x54,0x2d, + 0x38,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/Asia/Seoul - 0x0,0x0,0x2,0x3b, + 0x0,0x0,0x2,0x13, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x17,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x15,0x80,0x0,0x0,0x0,0x8b, - 0xd7,0xf0,0x78,0x92,0xe6,0x16,0xf8,0xc3,0x55,0x3b,0x70,0xd2,0x43,0x27,0xf0,0xe2, - 0x4f,0x29,0xf0,0xe4,0x6b,0xb7,0xf8,0xe5,0x13,0x18,0x68,0xe6,0x62,0x3,0x78,0xe7, - 0x11,0x4c,0xe8,0xe8,0x2f,0x70,0x78,0xe8,0xe7,0xf4,0x68,0xea,0xf,0x52,0x78,0xea, - 0xc7,0xd6,0x68,0xeb,0xef,0x34,0x78,0xec,0xa7,0xb8,0x68,0xed,0xcf,0x16,0x78,0xee, - 0x87,0x9a,0x68,0xf0,0x35,0x71,0x78,0x20,0xa3,0x60,0x90,0x21,0x6e,0x67,0x90,0x22, - 0x83,0x42,0x90,0x23,0x4e,0x49,0x90,0x0,0x1,0x2,0x3,0x4,0x1,0x5,0x1,0x5, - 0x1,0x5,0x1,0x5,0x1,0x5,0x1,0x5,0x1,0x4,0x6,0x4,0x6,0x4,0x0,0x0, - 0x77,0x8,0x0,0x0,0x0,0x0,0x77,0x88,0x0,0x4,0x0,0x0,0x7e,0x90,0x0,0x8, - 0x0,0x0,0x7e,0x90,0x0,0xd,0x0,0x0,0x7e,0x90,0x0,0x4,0x0,0x0,0x85,0x98, - 0x1,0x11,0x0,0x0,0x8c,0xa0,0x1,0x11,0x4c,0x4d,0x54,0x0,0x4b,0x53,0x54,0x0, - 0x4a,0x43,0x53,0x54,0x0,0x4a,0x53,0x54,0x0,0x4b,0x44,0x54,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32, + 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x16,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x80,0x0,0x0,0x0,0x8b, + 0xd7,0xf0,0x78,0x92,0xe6,0x16,0xf8,0xd2,0x43,0x27,0xf0,0xe2,0x4f,0x29,0xf0,0xe4, + 0x6b,0xb7,0xf8,0xe5,0x13,0x18,0x68,0xe6,0x62,0x3,0x78,0xe7,0x11,0x4c,0xe8,0xe8, + 0x2f,0x70,0x78,0xe8,0xe7,0xf4,0x68,0xea,0xf,0x52,0x78,0xea,0xc7,0xd6,0x68,0xeb, + 0xef,0x34,0x78,0xec,0xa7,0xb8,0x68,0xed,0xcf,0x16,0x78,0xee,0x87,0x9a,0x68,0xf0, + 0x35,0x71,0x78,0x20,0xa3,0x60,0x90,0x21,0x6e,0x67,0x90,0x22,0x83,0x42,0x90,0x23, + 0x4e,0x49,0x90,0x0,0x1,0x2,0x3,0x1,0x4,0x1,0x4,0x1,0x4,0x1,0x4,0x1, + 0x4,0x1,0x4,0x1,0x3,0x5,0x3,0x5,0x3,0x0,0x0,0x77,0x8,0x0,0x0,0x0, + 0x0,0x77,0x88,0x0,0x4,0x0,0x0,0x7e,0x90,0x0,0x8,0x0,0x0,0x7e,0x90,0x0, + 0x4,0x0,0x0,0x85,0x98,0x1,0xc,0x0,0x0,0x8c,0xa0,0x1,0xc,0x4c,0x4d,0x54, + 0x0,0x4b,0x53,0x54,0x0,0x4a,0x53,0x54,0x0,0x4b,0x44,0x54,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x17,0x0, - 0x0,0x0,0x7,0x0,0x0,0x0,0x15,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff, - 0xff,0xff,0xff,0x8b,0xd7,0xf0,0x78,0xff,0xff,0xff,0xff,0x92,0xe6,0x16,0xf8,0xff, - 0xff,0xff,0xff,0xc3,0x55,0x3b,0x70,0xff,0xff,0xff,0xff,0xd2,0x43,0x27,0xf0,0xff, - 0xff,0xff,0xff,0xe2,0x4f,0x29,0xf0,0xff,0xff,0xff,0xff,0xe4,0x6b,0xb7,0xf8,0xff, - 0xff,0xff,0xff,0xe5,0x13,0x18,0x68,0xff,0xff,0xff,0xff,0xe6,0x62,0x3,0x78,0xff, - 0xff,0xff,0xff,0xe7,0x11,0x4c,0xe8,0xff,0xff,0xff,0xff,0xe8,0x2f,0x70,0x78,0xff, - 0xff,0xff,0xff,0xe8,0xe7,0xf4,0x68,0xff,0xff,0xff,0xff,0xea,0xf,0x52,0x78,0xff, - 0xff,0xff,0xff,0xea,0xc7,0xd6,0x68,0xff,0xff,0xff,0xff,0xeb,0xef,0x34,0x78,0xff, - 0xff,0xff,0xff,0xec,0xa7,0xb8,0x68,0xff,0xff,0xff,0xff,0xed,0xcf,0x16,0x78,0xff, - 0xff,0xff,0xff,0xee,0x87,0x9a,0x68,0xff,0xff,0xff,0xff,0xf0,0x35,0x71,0x78,0x0, - 0x0,0x0,0x0,0x20,0xa3,0x60,0x90,0x0,0x0,0x0,0x0,0x21,0x6e,0x67,0x90,0x0, - 0x0,0x0,0x0,0x22,0x83,0x42,0x90,0x0,0x0,0x0,0x0,0x23,0x4e,0x49,0x90,0x0, - 0x1,0x2,0x3,0x4,0x1,0x5,0x1,0x5,0x1,0x5,0x1,0x5,0x1,0x5,0x1,0x5, - 0x1,0x4,0x6,0x4,0x6,0x4,0x0,0x0,0x77,0x8,0x0,0x0,0x0,0x0,0x77,0x88, - 0x0,0x4,0x0,0x0,0x7e,0x90,0x0,0x8,0x0,0x0,0x7e,0x90,0x0,0xd,0x0,0x0, - 0x7e,0x90,0x0,0x4,0x0,0x0,0x85,0x98,0x1,0x11,0x0,0x0,0x8c,0xa0,0x1,0x11, - 0x4c,0x4d,0x54,0x0,0x4b,0x53,0x54,0x0,0x4a,0x43,0x53,0x54,0x0,0x4a,0x53,0x54, - 0x0,0x4b,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0xa,0x4b,0x53,0x54,0x2d,0x39,0xa, + 0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x16,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x10,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff, + 0xff,0x8b,0xd7,0xf0,0x78,0xff,0xff,0xff,0xff,0x92,0xe6,0x16,0xf8,0xff,0xff,0xff, + 0xff,0xd2,0x43,0x27,0xf0,0xff,0xff,0xff,0xff,0xe2,0x4f,0x29,0xf0,0xff,0xff,0xff, + 0xff,0xe4,0x6b,0xb7,0xf8,0xff,0xff,0xff,0xff,0xe5,0x13,0x18,0x68,0xff,0xff,0xff, + 0xff,0xe6,0x62,0x3,0x78,0xff,0xff,0xff,0xff,0xe7,0x11,0x4c,0xe8,0xff,0xff,0xff, + 0xff,0xe8,0x2f,0x70,0x78,0xff,0xff,0xff,0xff,0xe8,0xe7,0xf4,0x68,0xff,0xff,0xff, + 0xff,0xea,0xf,0x52,0x78,0xff,0xff,0xff,0xff,0xea,0xc7,0xd6,0x68,0xff,0xff,0xff, + 0xff,0xeb,0xef,0x34,0x78,0xff,0xff,0xff,0xff,0xec,0xa7,0xb8,0x68,0xff,0xff,0xff, + 0xff,0xed,0xcf,0x16,0x78,0xff,0xff,0xff,0xff,0xee,0x87,0x9a,0x68,0xff,0xff,0xff, + 0xff,0xf0,0x35,0x71,0x78,0x0,0x0,0x0,0x0,0x20,0xa3,0x60,0x90,0x0,0x0,0x0, + 0x0,0x21,0x6e,0x67,0x90,0x0,0x0,0x0,0x0,0x22,0x83,0x42,0x90,0x0,0x0,0x0, + 0x0,0x23,0x4e,0x49,0x90,0x0,0x1,0x2,0x3,0x1,0x4,0x1,0x4,0x1,0x4,0x1, + 0x4,0x1,0x4,0x1,0x4,0x1,0x3,0x5,0x3,0x5,0x3,0x0,0x0,0x77,0x8,0x0, + 0x0,0x0,0x0,0x77,0x88,0x0,0x4,0x0,0x0,0x7e,0x90,0x0,0x8,0x0,0x0,0x7e, + 0x90,0x0,0x4,0x0,0x0,0x85,0x98,0x1,0xc,0x0,0x0,0x8c,0xa0,0x1,0xc,0x4c, + 0x4d,0x54,0x0,0x4b,0x53,0x54,0x0,0x4a,0x53,0x54,0x0,0x4b,0x44,0x54,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x4b,0x53,0x54,0x2d, + 0x39,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/Asia/Jerusalem 0x0,0x0,0x8,0xd9, 0x54, @@ -43598,21 +45450,22 @@ static const unsigned char qt_resource_data[] = { 0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xa,0x3c,0x2b,0x30,0x35,0x3e,0x2d,0x35,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/Asia/Bangkok - 0x0,0x0,0x0,0xcc, + 0x0,0x0,0x0,0xdc, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0xa2, - 0x6a,0x67,0xc4,0x1,0x2,0x0,0x0,0x5e,0x3c,0x0,0x0,0x0,0x0,0x5e,0x3c,0x0, - 0x4,0x0,0x0,0x62,0x70,0x0,0x8,0x4c,0x4d,0x54,0x0,0x42,0x4d,0x54,0x0,0x49, - 0x43,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0, - 0x3,0x0,0x0,0x0,0xc,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff, - 0xff,0x56,0xb6,0x85,0xc4,0xff,0xff,0xff,0xff,0xa2,0x6a,0x67,0xc4,0x0,0x1,0x2, - 0x0,0x0,0x5e,0x3c,0x0,0x0,0x0,0x0,0x5e,0x3c,0x0,0x4,0x0,0x0,0x62,0x70, - 0x0,0x8,0x4c,0x4d,0x54,0x0,0x42,0x4d,0x54,0x0,0x49,0x43,0x54,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0xa,0x49,0x43,0x54,0x2d,0x37,0xa, + 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0xa2, + 0x6a,0x67,0xc4,0x7f,0xff,0xff,0xff,0x1,0x2,0x2,0x0,0x0,0x5e,0x3c,0x0,0x0, + 0x0,0x0,0x5e,0x3c,0x0,0x4,0x0,0x0,0x62,0x70,0x0,0x8,0x4c,0x4d,0x54,0x0, + 0x42,0x4d,0x54,0x0,0x2b,0x30,0x37,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a, + 0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x4,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0xf8,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xff,0xff,0xff,0xff,0x56,0xb6,0x85,0xc4,0xff,0xff,0xff,0xff,0xa2,0x6a, + 0x67,0xc4,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x2,0x2,0x0,0x0, + 0x5e,0x3c,0x0,0x0,0x0,0x0,0x5e,0x3c,0x0,0x4,0x0,0x0,0x62,0x70,0x0,0x8, + 0x4c,0x4d,0x54,0x0,0x42,0x4d,0x54,0x0,0x2b,0x30,0x37,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xa,0x3c,0x2b,0x30,0x37,0x3e,0x2d,0x37,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/Asia/Bishkek 0x0,0x0,0x4,0x15, 0x54, @@ -43683,11 +45536,11 @@ static const unsigned char qt_resource_data[] = { 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2b,0x30,0x36, 0x3e,0x2d,0x36,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/Asia/Famagusta - 0x0,0x0,0x5,0xa5, + 0x0,0x0,0x7,0xfa, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x57,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x80,0x0,0x0,0x0,0xa5, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x7f,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x11,0x80,0x0,0x0,0x0,0xa5, 0x77,0x1e,0x2c,0x9,0xed,0xaf,0xe0,0xa,0xdd,0x92,0xd0,0xb,0xfa,0x64,0xe0,0xc, 0xbe,0xc6,0x50,0xd,0xa4,0x39,0x60,0xe,0x8a,0xe1,0xd0,0xf,0x84,0x1b,0x60,0x10, 0x75,0x4f,0xd0,0x11,0x63,0xfd,0x60,0x12,0x53,0xe0,0x50,0x13,0x4d,0x19,0xe0,0x14, @@ -43709,19 +45562,32 @@ static const unsigned char qt_resource_data[] = { 0xcc,0xbf,0x90,0x4d,0x8e,0x8c,0x10,0x4e,0xac,0xa1,0x90,0x4f,0x6e,0x6e,0x10,0x50, 0x8c,0x83,0x90,0x51,0x57,0x8a,0x90,0x52,0x6c,0x65,0x90,0x53,0x37,0x6c,0x90,0x54, 0x4c,0x47,0x90,0x55,0x17,0x4e,0x90,0x56,0x2c,0x29,0x90,0x56,0xf7,0x30,0x90,0x57, - 0xd0,0x7f,0xd0,0x7f,0xff,0xff,0xff,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0xd0,0x7f,0xd0,0x59,0xf5,0x28,0x10,0x5a,0xb6,0xf4,0x90,0x5b,0xd5,0xa,0x10,0x5c, + 0xa0,0x11,0x10,0x5d,0xb4,0xec,0x10,0x5e,0x7f,0xf3,0x10,0x5f,0x94,0xce,0x10,0x60, + 0x5f,0xd5,0x10,0x61,0x7d,0xea,0x90,0x62,0x3f,0xb7,0x10,0x63,0x5d,0xcc,0x90,0x64, + 0x1f,0x99,0x10,0x65,0x3d,0xae,0x90,0x66,0x8,0xb5,0x90,0x67,0x1d,0x90,0x90,0x67, + 0xe8,0x97,0x90,0x68,0xfd,0x72,0x90,0x69,0xc8,0x79,0x90,0x6a,0xdd,0x54,0x90,0x6b, + 0xa8,0x5b,0x90,0x6c,0xc6,0x71,0x10,0x6d,0x88,0x3d,0x90,0x6e,0xa6,0x53,0x10,0x6f, + 0x68,0x1f,0x90,0x70,0x86,0x35,0x10,0x71,0x51,0x3c,0x10,0x72,0x66,0x17,0x10,0x73, + 0x31,0x1e,0x10,0x74,0x45,0xf9,0x10,0x75,0x11,0x0,0x10,0x76,0x2f,0x15,0x90,0x76, + 0xf0,0xe2,0x10,0x78,0xe,0xf7,0x90,0x78,0xd0,0xc4,0x10,0x79,0xee,0xd9,0x90,0x7a, + 0xb0,0xa6,0x10,0x7b,0xce,0xbb,0x90,0x7c,0x99,0xc2,0x90,0x7d,0xae,0x9d,0x90,0x7e, + 0x79,0xa4,0x90,0x7f,0x8e,0x7f,0x90,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x5,0x5,0x0,0x0, - 0x1f,0xd4,0x0,0x0,0x0,0x0,0x2a,0x30,0x1,0x4,0x0,0x0,0x1c,0x20,0x0,0x9, - 0x0,0x0,0x1c,0x20,0x0,0x9,0x0,0x0,0x2a,0x30,0x1,0x4,0x0,0x0,0x2a,0x30, - 0x0,0xd,0x4c,0x4d,0x54,0x0,0x45,0x45,0x53,0x54,0x0,0x45,0x45,0x54,0x0,0x2b, - 0x30,0x33,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x54, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x5,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x0,0x0,0x1f,0xd4,0x0,0x0,0x0,0x0,0x2a,0x30, + 0x1,0x4,0x0,0x0,0x1c,0x20,0x0,0x9,0x0,0x0,0x1c,0x20,0x0,0x9,0x0,0x0, + 0x2a,0x30,0x1,0x4,0x0,0x0,0x2a,0x30,0x0,0xd,0x0,0x0,0x1c,0x20,0x0,0x9, + 0x4c,0x4d,0x54,0x0,0x45,0x45,0x53,0x54,0x0,0x45,0x45,0x54,0x0,0x2b,0x30,0x33, + 0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x1,0x0,0x0,0x0,0x1,0x1,0x0,0x1,0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x57,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0xf8,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x7f,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x11,0xf8,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xa5,0x77,0x1e,0x2c,0x0,0x0,0x0,0x0,0x9, 0xed,0xaf,0xe0,0x0,0x0,0x0,0x0,0xa,0xdd,0x92,0xd0,0x0,0x0,0x0,0x0,0xb, 0xfa,0x64,0xe0,0x0,0x0,0x0,0x0,0xc,0xbe,0xc6,0x50,0x0,0x0,0x0,0x0,0xd, @@ -43764,38 +45630,63 @@ static const unsigned char qt_resource_data[] = { 0x57,0x8a,0x90,0x0,0x0,0x0,0x0,0x52,0x6c,0x65,0x90,0x0,0x0,0x0,0x0,0x53, 0x37,0x6c,0x90,0x0,0x0,0x0,0x0,0x54,0x4c,0x47,0x90,0x0,0x0,0x0,0x0,0x55, 0x17,0x4e,0x90,0x0,0x0,0x0,0x0,0x56,0x2c,0x29,0x90,0x0,0x0,0x0,0x0,0x56, - 0xf7,0x30,0x90,0x0,0x0,0x0,0x0,0x57,0xd0,0x7f,0xd0,0x0,0x0,0x0,0x0,0x7f, - 0xff,0xff,0xff,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0xf7,0x30,0x90,0x0,0x0,0x0,0x0,0x57,0xd0,0x7f,0xd0,0x0,0x0,0x0,0x0,0x59, + 0xf5,0x28,0x10,0x0,0x0,0x0,0x0,0x5a,0xb6,0xf4,0x90,0x0,0x0,0x0,0x0,0x5b, + 0xd5,0xa,0x10,0x0,0x0,0x0,0x0,0x5c,0xa0,0x11,0x10,0x0,0x0,0x0,0x0,0x5d, + 0xb4,0xec,0x10,0x0,0x0,0x0,0x0,0x5e,0x7f,0xf3,0x10,0x0,0x0,0x0,0x0,0x5f, + 0x94,0xce,0x10,0x0,0x0,0x0,0x0,0x60,0x5f,0xd5,0x10,0x0,0x0,0x0,0x0,0x61, + 0x7d,0xea,0x90,0x0,0x0,0x0,0x0,0x62,0x3f,0xb7,0x10,0x0,0x0,0x0,0x0,0x63, + 0x5d,0xcc,0x90,0x0,0x0,0x0,0x0,0x64,0x1f,0x99,0x10,0x0,0x0,0x0,0x0,0x65, + 0x3d,0xae,0x90,0x0,0x0,0x0,0x0,0x66,0x8,0xb5,0x90,0x0,0x0,0x0,0x0,0x67, + 0x1d,0x90,0x90,0x0,0x0,0x0,0x0,0x67,0xe8,0x97,0x90,0x0,0x0,0x0,0x0,0x68, + 0xfd,0x72,0x90,0x0,0x0,0x0,0x0,0x69,0xc8,0x79,0x90,0x0,0x0,0x0,0x0,0x6a, + 0xdd,0x54,0x90,0x0,0x0,0x0,0x0,0x6b,0xa8,0x5b,0x90,0x0,0x0,0x0,0x0,0x6c, + 0xc6,0x71,0x10,0x0,0x0,0x0,0x0,0x6d,0x88,0x3d,0x90,0x0,0x0,0x0,0x0,0x6e, + 0xa6,0x53,0x10,0x0,0x0,0x0,0x0,0x6f,0x68,0x1f,0x90,0x0,0x0,0x0,0x0,0x70, + 0x86,0x35,0x10,0x0,0x0,0x0,0x0,0x71,0x51,0x3c,0x10,0x0,0x0,0x0,0x0,0x72, + 0x66,0x17,0x10,0x0,0x0,0x0,0x0,0x73,0x31,0x1e,0x10,0x0,0x0,0x0,0x0,0x74, + 0x45,0xf9,0x10,0x0,0x0,0x0,0x0,0x75,0x11,0x0,0x10,0x0,0x0,0x0,0x0,0x76, + 0x2f,0x15,0x90,0x0,0x0,0x0,0x0,0x76,0xf0,0xe2,0x10,0x0,0x0,0x0,0x0,0x78, + 0xe,0xf7,0x90,0x0,0x0,0x0,0x0,0x78,0xd0,0xc4,0x10,0x0,0x0,0x0,0x0,0x79, + 0xee,0xd9,0x90,0x0,0x0,0x0,0x0,0x7a,0xb0,0xa6,0x10,0x0,0x0,0x0,0x0,0x7b, + 0xce,0xbb,0x90,0x0,0x0,0x0,0x0,0x7c,0x99,0xc2,0x90,0x0,0x0,0x0,0x0,0x7d, + 0xae,0x9d,0x90,0x0,0x0,0x0,0x0,0x7e,0x79,0xa4,0x90,0x0,0x0,0x0,0x0,0x7f, + 0x8e,0x7f,0x90,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, 0x2,0x1,0x2,0x1,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x5,0x5,0x0,0x0,0x1f,0xd4,0x0,0x0, - 0x0,0x0,0x2a,0x30,0x1,0x4,0x0,0x0,0x1c,0x20,0x0,0x9,0x0,0x0,0x1c,0x20, - 0x0,0x9,0x0,0x0,0x2a,0x30,0x1,0x4,0x0,0x0,0x2a,0x30,0x0,0xd,0x4c,0x4d, - 0x54,0x0,0x45,0x45,0x53,0x54,0x0,0x45,0x45,0x54,0x0,0x2b,0x30,0x33,0x0,0x0, - 0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0xa,0x3c,0x2b,0x30,0x33, - 0x3e,0x2d,0x33,0xa, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x5,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x4,0x3,0x0,0x0,0x1f,0xd4,0x0,0x0,0x0,0x0,0x2a,0x30,0x1,0x4,0x0,0x0, + 0x1c,0x20,0x0,0x9,0x0,0x0,0x1c,0x20,0x0,0x9,0x0,0x0,0x2a,0x30,0x1,0x4, + 0x0,0x0,0x2a,0x30,0x0,0xd,0x0,0x0,0x1c,0x20,0x0,0x9,0x4c,0x4d,0x54,0x0, + 0x45,0x45,0x53,0x54,0x0,0x45,0x45,0x54,0x0,0x2b,0x30,0x33,0x0,0x0,0x0,0x0, + 0x1,0x1,0x0,0x1,0x0,0x0,0x0,0x1,0x1,0x0,0x1,0xa,0x45,0x45,0x54,0x2d, + 0x32,0x45,0x45,0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x30,0x2f,0x33,0x2c,0x4d, + 0x31,0x30,0x2e,0x35,0x2e,0x30,0x2f,0x34,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/Asia/Aden - 0x0,0x0,0x0,0xab, + 0x0,0x0,0x0,0xbb, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0xd5, - 0x1b,0x36,0xb4,0x0,0x1,0x0,0x0,0x2b,0xcc,0x0,0x0,0x0,0x0,0x2a,0x30,0x0, - 0x4,0x4c,0x4d,0x54,0x0,0x41,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, - 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0xd5,0x1b,0x36,0xb4,0x0,0x1,0x0,0x0,0x2b,0xcc,0x0, - 0x0,0x0,0x0,0x2a,0x30,0x0,0x4,0x4c,0x4d,0x54,0x0,0x41,0x53,0x54,0x0,0x0, - 0x0,0x0,0x0,0xa,0x41,0x53,0x54,0x2d,0x33,0xa, + 0x0,0x0,0x3,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0xd5, + 0x1b,0x36,0xb4,0x7f,0xff,0xff,0xff,0x0,0x1,0x1,0x0,0x0,0x2b,0xcc,0x0,0x0, + 0x0,0x0,0x2a,0x30,0x0,0x4,0x4c,0x4d,0x54,0x0,0x2b,0x30,0x33,0x0,0x0,0x0, + 0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xd5,0x1b,0x36,0xb4,0x0,0x0, + 0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x1,0x0,0x0,0x2b,0xcc,0x0,0x0,0x0, + 0x0,0x2a,0x30,0x0,0x4,0x4c,0x4d,0x54,0x0,0x2b,0x30,0x33,0x0,0x0,0x0,0x0, + 0x0,0xa,0x3c,0x2b,0x30,0x33,0x3e,0x2d,0x33,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/Asia/Tehran - 0x0,0x0,0x6,0x8e, + 0x0,0x0,0x6,0xb6, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x65,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x12,0x80,0x0,0x0,0x0,0x9a, + 0x0,0x0,0x66,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x1c,0x80,0x0,0x0,0x0,0x9a, 0x6c,0x7d,0xc8,0xd2,0xdb,0x12,0xc8,0xe,0xbb,0xa2,0x48,0xf,0x74,0x2d,0x40,0x10, 0x8e,0x40,0x30,0x10,0xed,0x3a,0x40,0x11,0x55,0x67,0xc8,0x12,0x45,0x4a,0xb8,0x13, 0x37,0xec,0xc8,0x14,0x2d,0x15,0xb8,0x28,0x20,0x76,0xc8,0x28,0xdb,0x9d,0xb8,0x29, @@ -43820,84 +45711,87 @@ static const unsigned char qt_resource_data[] = { 0x45,0x1f,0x48,0x72,0x37,0xa5,0x38,0x73,0x26,0x52,0xc8,0x74,0x18,0xd8,0xb8,0x75, 0x7,0x86,0x48,0x75,0xfa,0xc,0x38,0x76,0xe8,0xb9,0xc8,0x77,0xdb,0x3f,0xb8,0x78, 0xcb,0x3e,0xc8,0x79,0xbd,0xc4,0xb8,0x7a,0xac,0x72,0x48,0x7b,0x9e,0xf8,0x38,0x7c, - 0x8d,0xa5,0xc8,0x7d,0x80,0x2b,0xb8,0x7e,0x6e,0xd9,0x48,0x7f,0x61,0x5f,0x38,0x0, - 0x1,0x2,0x4,0x3,0x4,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2, + 0x8d,0xa5,0xc8,0x7d,0x80,0x2b,0xb8,0x7e,0x6e,0xd9,0x48,0x7f,0x61,0x5f,0x38,0x7f, + 0xff,0xff,0xff,0x0,0x1,0x2,0x4,0x3,0x4,0x2,0x5,0x2,0x5,0x2,0x5,0x2, 0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2, 0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2, 0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2, 0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2, 0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2, - 0x5,0x2,0x5,0x2,0x0,0x0,0x30,0x38,0x0,0x0,0x0,0x0,0x30,0x38,0x0,0x4, - 0x0,0x0,0x31,0x38,0x0,0x8,0x0,0x0,0x46,0x50,0x1,0xd,0x0,0x0,0x38,0x40, - 0x0,0x8,0x0,0x0,0x3f,0x48,0x1,0xd,0x0,0x0,0x31,0x38,0x0,0x8,0x4c,0x4d, - 0x54,0x0,0x54,0x4d,0x54,0x0,0x49,0x52,0x53,0x54,0x0,0x49,0x52,0x44,0x54,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a, - 0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x65,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x12,0xf8,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xff,0xff,0xff,0xff,0x9a,0x6c,0x7d,0xc8,0xff,0xff,0xff,0xff,0xd2,0xdb, - 0x12,0xc8,0x0,0x0,0x0,0x0,0xe,0xbb,0xa2,0x48,0x0,0x0,0x0,0x0,0xf,0x74, - 0x2d,0x40,0x0,0x0,0x0,0x0,0x10,0x8e,0x40,0x30,0x0,0x0,0x0,0x0,0x10,0xed, - 0x3a,0x40,0x0,0x0,0x0,0x0,0x11,0x55,0x67,0xc8,0x0,0x0,0x0,0x0,0x12,0x45, - 0x4a,0xb8,0x0,0x0,0x0,0x0,0x13,0x37,0xec,0xc8,0x0,0x0,0x0,0x0,0x14,0x2d, - 0x15,0xb8,0x0,0x0,0x0,0x0,0x28,0x20,0x76,0xc8,0x0,0x0,0x0,0x0,0x28,0xdb, - 0x9d,0xb8,0x0,0x0,0x0,0x0,0x29,0xcb,0x9c,0xc8,0x0,0x0,0x0,0x0,0x2a,0xbe, - 0x22,0xb8,0x0,0x0,0x0,0x0,0x2b,0xac,0xd0,0x48,0x0,0x0,0x0,0x0,0x2c,0x9f, - 0x56,0x38,0x0,0x0,0x0,0x0,0x2d,0x8e,0x3,0xc8,0x0,0x0,0x0,0x0,0x2e,0x80, - 0x89,0xb8,0x0,0x0,0x0,0x0,0x2f,0x6f,0x37,0x48,0x0,0x0,0x0,0x0,0x30,0x61, - 0xbd,0x38,0x0,0x0,0x0,0x0,0x31,0x50,0x6a,0xc8,0x0,0x0,0x0,0x0,0x32,0x42, - 0xf0,0xb8,0x0,0x0,0x0,0x0,0x33,0x32,0xef,0xc8,0x0,0x0,0x0,0x0,0x34,0x25, - 0x75,0xb8,0x0,0x0,0x0,0x0,0x35,0x14,0x23,0x48,0x0,0x0,0x0,0x0,0x36,0x6, - 0xa9,0x38,0x0,0x0,0x0,0x0,0x36,0xf5,0x56,0xc8,0x0,0x0,0x0,0x0,0x37,0xe7, - 0xdc,0xb8,0x0,0x0,0x0,0x0,0x38,0xd6,0x8a,0x48,0x0,0x0,0x0,0x0,0x39,0xc9, - 0x10,0x38,0x0,0x0,0x0,0x0,0x3a,0xb9,0xf,0x48,0x0,0x0,0x0,0x0,0x3b,0xab, - 0x95,0x38,0x0,0x0,0x0,0x0,0x3c,0x9a,0x42,0xc8,0x0,0x0,0x0,0x0,0x3d,0x8c, - 0xc8,0xb8,0x0,0x0,0x0,0x0,0x3e,0x7b,0x76,0x48,0x0,0x0,0x0,0x0,0x3f,0x6d, - 0xfc,0x38,0x0,0x0,0x0,0x0,0x40,0x5c,0xa9,0xc8,0x0,0x0,0x0,0x0,0x41,0x4f, - 0x2f,0xb8,0x0,0x0,0x0,0x0,0x42,0x3f,0x2e,0xc8,0x0,0x0,0x0,0x0,0x43,0x31, - 0xb4,0xb8,0x0,0x0,0x0,0x0,0x47,0xe2,0xc9,0x48,0x0,0x0,0x0,0x0,0x48,0xd5, - 0x4f,0x38,0x0,0x0,0x0,0x0,0x49,0xc5,0x4e,0x48,0x0,0x0,0x0,0x0,0x4a,0xb7, - 0xd4,0x38,0x0,0x0,0x0,0x0,0x4b,0xa6,0x81,0xc8,0x0,0x0,0x0,0x0,0x4c,0x99, - 0x7,0xb8,0x0,0x0,0x0,0x0,0x4d,0x87,0xb5,0x48,0x0,0x0,0x0,0x0,0x4e,0x7a, - 0x3b,0x38,0x0,0x0,0x0,0x0,0x4f,0x68,0xe8,0xc8,0x0,0x0,0x0,0x0,0x50,0x5b, - 0x6e,0xb8,0x0,0x0,0x0,0x0,0x51,0x4b,0x6d,0xc8,0x0,0x0,0x0,0x0,0x52,0x3d, - 0xf3,0xb8,0x0,0x0,0x0,0x0,0x53,0x2c,0xa1,0x48,0x0,0x0,0x0,0x0,0x54,0x1f, - 0x27,0x38,0x0,0x0,0x0,0x0,0x55,0xd,0xd4,0xc8,0x0,0x0,0x0,0x0,0x56,0x0, - 0x5a,0xb8,0x0,0x0,0x0,0x0,0x56,0xef,0x8,0x48,0x0,0x0,0x0,0x0,0x57,0xe1, - 0x8e,0x38,0x0,0x0,0x0,0x0,0x58,0xd1,0x8d,0x48,0x0,0x0,0x0,0x0,0x59,0xc4, - 0x13,0x38,0x0,0x0,0x0,0x0,0x5a,0xb2,0xc0,0xc8,0x0,0x0,0x0,0x0,0x5b,0xa5, - 0x46,0xb8,0x0,0x0,0x0,0x0,0x5c,0x93,0xf4,0x48,0x0,0x0,0x0,0x0,0x5d,0x86, - 0x7a,0x38,0x0,0x0,0x0,0x0,0x5e,0x75,0x27,0xc8,0x0,0x0,0x0,0x0,0x5f,0x67, - 0xad,0xb8,0x0,0x0,0x0,0x0,0x60,0x57,0xac,0xc8,0x0,0x0,0x0,0x0,0x61,0x4a, - 0x32,0xb8,0x0,0x0,0x0,0x0,0x62,0x38,0xe0,0x48,0x0,0x0,0x0,0x0,0x63,0x2b, - 0x66,0x38,0x0,0x0,0x0,0x0,0x64,0x1a,0x13,0xc8,0x0,0x0,0x0,0x0,0x65,0xc, - 0x99,0xb8,0x0,0x0,0x0,0x0,0x65,0xfb,0x47,0x48,0x0,0x0,0x0,0x0,0x66,0xed, - 0xcd,0x38,0x0,0x0,0x0,0x0,0x67,0xdd,0xcc,0x48,0x0,0x0,0x0,0x0,0x68,0xd0, - 0x52,0x38,0x0,0x0,0x0,0x0,0x69,0xbe,0xff,0xc8,0x0,0x0,0x0,0x0,0x6a,0xb1, - 0x85,0xb8,0x0,0x0,0x0,0x0,0x6b,0xa0,0x33,0x48,0x0,0x0,0x0,0x0,0x6c,0x92, - 0xb9,0x38,0x0,0x0,0x0,0x0,0x6d,0x81,0x66,0xc8,0x0,0x0,0x0,0x0,0x6e,0x73, - 0xec,0xb8,0x0,0x0,0x0,0x0,0x6f,0x62,0x9a,0x48,0x0,0x0,0x0,0x0,0x70,0x55, - 0x20,0x38,0x0,0x0,0x0,0x0,0x71,0x45,0x1f,0x48,0x0,0x0,0x0,0x0,0x72,0x37, - 0xa5,0x38,0x0,0x0,0x0,0x0,0x73,0x26,0x52,0xc8,0x0,0x0,0x0,0x0,0x74,0x18, - 0xd8,0xb8,0x0,0x0,0x0,0x0,0x75,0x7,0x86,0x48,0x0,0x0,0x0,0x0,0x75,0xfa, - 0xc,0x38,0x0,0x0,0x0,0x0,0x76,0xe8,0xb9,0xc8,0x0,0x0,0x0,0x0,0x77,0xdb, - 0x3f,0xb8,0x0,0x0,0x0,0x0,0x78,0xcb,0x3e,0xc8,0x0,0x0,0x0,0x0,0x79,0xbd, - 0xc4,0xb8,0x0,0x0,0x0,0x0,0x7a,0xac,0x72,0x48,0x0,0x0,0x0,0x0,0x7b,0x9e, - 0xf8,0x38,0x0,0x0,0x0,0x0,0x7c,0x8d,0xa5,0xc8,0x0,0x0,0x0,0x0,0x7d,0x80, - 0x2b,0xb8,0x0,0x0,0x0,0x0,0x7e,0x6e,0xd9,0x48,0x0,0x0,0x0,0x0,0x7f,0x61, - 0x5f,0x38,0x0,0x1,0x2,0x4,0x3,0x4,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, - 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, - 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, - 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, - 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, - 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5, - 0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x0,0x0,0x30,0x38,0x0,0x0,0x0,0x0,0x30, - 0x38,0x0,0x4,0x0,0x0,0x31,0x38,0x0,0x8,0x0,0x0,0x46,0x50,0x1,0xd,0x0, - 0x0,0x38,0x40,0x0,0x8,0x0,0x0,0x3f,0x48,0x1,0xd,0x0,0x0,0x31,0x38,0x0, - 0x8,0x4c,0x4d,0x54,0x0,0x54,0x4d,0x54,0x0,0x49,0x52,0x53,0x54,0x0,0x49,0x52, - 0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xa,0x49,0x52,0x53,0x54,0x2d,0x33,0x3a,0x33,0x30,0x49,0x52,0x44,0x54,0x2c, - 0x4a,0x38,0x30,0x2f,0x30,0x2c,0x4a,0x32,0x36,0x34,0x2f,0x30,0xa, + 0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x2,0x0,0x0,0x30,0x38,0x0,0x0,0x0, + 0x0,0x30,0x38,0x0,0x4,0x0,0x0,0x31,0x38,0x0,0x8,0x0,0x0,0x46,0x50,0x1, + 0xe,0x0,0x0,0x38,0x40,0x0,0x12,0x0,0x0,0x3f,0x48,0x1,0x16,0x0,0x0,0x31, + 0x38,0x0,0x8,0x4c,0x4d,0x54,0x0,0x54,0x4d,0x54,0x0,0x2b,0x30,0x33,0x33,0x30, + 0x0,0x2b,0x30,0x35,0x0,0x2b,0x30,0x34,0x0,0x2b,0x30,0x34,0x33,0x30,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, + 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x66,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x1c,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0x9a,0x6c,0x7d,0xc8,0xff,0xff,0xff,0xff,0xd2,0xdb,0x12, + 0xc8,0x0,0x0,0x0,0x0,0xe,0xbb,0xa2,0x48,0x0,0x0,0x0,0x0,0xf,0x74,0x2d, + 0x40,0x0,0x0,0x0,0x0,0x10,0x8e,0x40,0x30,0x0,0x0,0x0,0x0,0x10,0xed,0x3a, + 0x40,0x0,0x0,0x0,0x0,0x11,0x55,0x67,0xc8,0x0,0x0,0x0,0x0,0x12,0x45,0x4a, + 0xb8,0x0,0x0,0x0,0x0,0x13,0x37,0xec,0xc8,0x0,0x0,0x0,0x0,0x14,0x2d,0x15, + 0xb8,0x0,0x0,0x0,0x0,0x28,0x20,0x76,0xc8,0x0,0x0,0x0,0x0,0x28,0xdb,0x9d, + 0xb8,0x0,0x0,0x0,0x0,0x29,0xcb,0x9c,0xc8,0x0,0x0,0x0,0x0,0x2a,0xbe,0x22, + 0xb8,0x0,0x0,0x0,0x0,0x2b,0xac,0xd0,0x48,0x0,0x0,0x0,0x0,0x2c,0x9f,0x56, + 0x38,0x0,0x0,0x0,0x0,0x2d,0x8e,0x3,0xc8,0x0,0x0,0x0,0x0,0x2e,0x80,0x89, + 0xb8,0x0,0x0,0x0,0x0,0x2f,0x6f,0x37,0x48,0x0,0x0,0x0,0x0,0x30,0x61,0xbd, + 0x38,0x0,0x0,0x0,0x0,0x31,0x50,0x6a,0xc8,0x0,0x0,0x0,0x0,0x32,0x42,0xf0, + 0xb8,0x0,0x0,0x0,0x0,0x33,0x32,0xef,0xc8,0x0,0x0,0x0,0x0,0x34,0x25,0x75, + 0xb8,0x0,0x0,0x0,0x0,0x35,0x14,0x23,0x48,0x0,0x0,0x0,0x0,0x36,0x6,0xa9, + 0x38,0x0,0x0,0x0,0x0,0x36,0xf5,0x56,0xc8,0x0,0x0,0x0,0x0,0x37,0xe7,0xdc, + 0xb8,0x0,0x0,0x0,0x0,0x38,0xd6,0x8a,0x48,0x0,0x0,0x0,0x0,0x39,0xc9,0x10, + 0x38,0x0,0x0,0x0,0x0,0x3a,0xb9,0xf,0x48,0x0,0x0,0x0,0x0,0x3b,0xab,0x95, + 0x38,0x0,0x0,0x0,0x0,0x3c,0x9a,0x42,0xc8,0x0,0x0,0x0,0x0,0x3d,0x8c,0xc8, + 0xb8,0x0,0x0,0x0,0x0,0x3e,0x7b,0x76,0x48,0x0,0x0,0x0,0x0,0x3f,0x6d,0xfc, + 0x38,0x0,0x0,0x0,0x0,0x40,0x5c,0xa9,0xc8,0x0,0x0,0x0,0x0,0x41,0x4f,0x2f, + 0xb8,0x0,0x0,0x0,0x0,0x42,0x3f,0x2e,0xc8,0x0,0x0,0x0,0x0,0x43,0x31,0xb4, + 0xb8,0x0,0x0,0x0,0x0,0x47,0xe2,0xc9,0x48,0x0,0x0,0x0,0x0,0x48,0xd5,0x4f, + 0x38,0x0,0x0,0x0,0x0,0x49,0xc5,0x4e,0x48,0x0,0x0,0x0,0x0,0x4a,0xb7,0xd4, + 0x38,0x0,0x0,0x0,0x0,0x4b,0xa6,0x81,0xc8,0x0,0x0,0x0,0x0,0x4c,0x99,0x7, + 0xb8,0x0,0x0,0x0,0x0,0x4d,0x87,0xb5,0x48,0x0,0x0,0x0,0x0,0x4e,0x7a,0x3b, + 0x38,0x0,0x0,0x0,0x0,0x4f,0x68,0xe8,0xc8,0x0,0x0,0x0,0x0,0x50,0x5b,0x6e, + 0xb8,0x0,0x0,0x0,0x0,0x51,0x4b,0x6d,0xc8,0x0,0x0,0x0,0x0,0x52,0x3d,0xf3, + 0xb8,0x0,0x0,0x0,0x0,0x53,0x2c,0xa1,0x48,0x0,0x0,0x0,0x0,0x54,0x1f,0x27, + 0x38,0x0,0x0,0x0,0x0,0x55,0xd,0xd4,0xc8,0x0,0x0,0x0,0x0,0x56,0x0,0x5a, + 0xb8,0x0,0x0,0x0,0x0,0x56,0xef,0x8,0x48,0x0,0x0,0x0,0x0,0x57,0xe1,0x8e, + 0x38,0x0,0x0,0x0,0x0,0x58,0xd1,0x8d,0x48,0x0,0x0,0x0,0x0,0x59,0xc4,0x13, + 0x38,0x0,0x0,0x0,0x0,0x5a,0xb2,0xc0,0xc8,0x0,0x0,0x0,0x0,0x5b,0xa5,0x46, + 0xb8,0x0,0x0,0x0,0x0,0x5c,0x93,0xf4,0x48,0x0,0x0,0x0,0x0,0x5d,0x86,0x7a, + 0x38,0x0,0x0,0x0,0x0,0x5e,0x75,0x27,0xc8,0x0,0x0,0x0,0x0,0x5f,0x67,0xad, + 0xb8,0x0,0x0,0x0,0x0,0x60,0x57,0xac,0xc8,0x0,0x0,0x0,0x0,0x61,0x4a,0x32, + 0xb8,0x0,0x0,0x0,0x0,0x62,0x38,0xe0,0x48,0x0,0x0,0x0,0x0,0x63,0x2b,0x66, + 0x38,0x0,0x0,0x0,0x0,0x64,0x1a,0x13,0xc8,0x0,0x0,0x0,0x0,0x65,0xc,0x99, + 0xb8,0x0,0x0,0x0,0x0,0x65,0xfb,0x47,0x48,0x0,0x0,0x0,0x0,0x66,0xed,0xcd, + 0x38,0x0,0x0,0x0,0x0,0x67,0xdd,0xcc,0x48,0x0,0x0,0x0,0x0,0x68,0xd0,0x52, + 0x38,0x0,0x0,0x0,0x0,0x69,0xbe,0xff,0xc8,0x0,0x0,0x0,0x0,0x6a,0xb1,0x85, + 0xb8,0x0,0x0,0x0,0x0,0x6b,0xa0,0x33,0x48,0x0,0x0,0x0,0x0,0x6c,0x92,0xb9, + 0x38,0x0,0x0,0x0,0x0,0x6d,0x81,0x66,0xc8,0x0,0x0,0x0,0x0,0x6e,0x73,0xec, + 0xb8,0x0,0x0,0x0,0x0,0x6f,0x62,0x9a,0x48,0x0,0x0,0x0,0x0,0x70,0x55,0x20, + 0x38,0x0,0x0,0x0,0x0,0x71,0x45,0x1f,0x48,0x0,0x0,0x0,0x0,0x72,0x37,0xa5, + 0x38,0x0,0x0,0x0,0x0,0x73,0x26,0x52,0xc8,0x0,0x0,0x0,0x0,0x74,0x18,0xd8, + 0xb8,0x0,0x0,0x0,0x0,0x75,0x7,0x86,0x48,0x0,0x0,0x0,0x0,0x75,0xfa,0xc, + 0x38,0x0,0x0,0x0,0x0,0x76,0xe8,0xb9,0xc8,0x0,0x0,0x0,0x0,0x77,0xdb,0x3f, + 0xb8,0x0,0x0,0x0,0x0,0x78,0xcb,0x3e,0xc8,0x0,0x0,0x0,0x0,0x79,0xbd,0xc4, + 0xb8,0x0,0x0,0x0,0x0,0x7a,0xac,0x72,0x48,0x0,0x0,0x0,0x0,0x7b,0x9e,0xf8, + 0x38,0x0,0x0,0x0,0x0,0x7c,0x8d,0xa5,0xc8,0x0,0x0,0x0,0x0,0x7d,0x80,0x2b, + 0xb8,0x0,0x0,0x0,0x0,0x7e,0x6e,0xd9,0x48,0x0,0x0,0x0,0x0,0x7f,0x61,0x5f, + 0x38,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x2,0x4,0x3,0x4,0x2, + 0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2, + 0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2, + 0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2, + 0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2, + 0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2, + 0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x5,0x2,0x2,0x0, + 0x0,0x30,0x38,0x0,0x0,0x0,0x0,0x30,0x38,0x0,0x4,0x0,0x0,0x31,0x38,0x0, + 0x8,0x0,0x0,0x46,0x50,0x1,0xe,0x0,0x0,0x38,0x40,0x0,0x12,0x0,0x0,0x3f, + 0x48,0x1,0x16,0x0,0x0,0x31,0x38,0x0,0x8,0x4c,0x4d,0x54,0x0,0x54,0x4d,0x54, + 0x0,0x2b,0x30,0x33,0x33,0x30,0x0,0x2b,0x30,0x35,0x0,0x2b,0x30,0x34,0x0,0x2b, + 0x30,0x34,0x33,0x30,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0xa,0x3c,0x2b,0x30,0x33,0x33,0x30,0x3e,0x2d,0x33,0x3a,0x33,0x30, + 0x3c,0x2b,0x30,0x34,0x33,0x30,0x3e,0x2c,0x4a,0x38,0x30,0x2f,0x30,0x2c,0x4a,0x32, + 0x36,0x34,0x2f,0x30,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/Asia/Novokuznetsk 0x0,0x0,0x4,0xad, 0x54, @@ -44059,40 +45953,41 @@ static const unsigned char qt_resource_data[] = { 0x1,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2b, 0x30,0x37,0x3e,0x2d,0x37,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/Asia/Ujung_Pandang - 0x0,0x0,0x1,0x18, + 0x0,0x0,0x1,0x20, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x11,0x80,0x0,0x0,0x0,0xa1, + 0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x15,0x80,0x0,0x0,0x0,0xa1, 0xf2,0x5d,0x90,0xba,0x16,0xd5,0x90,0xcb,0x88,0x1d,0x80,0xd2,0x56,0xee,0x70,0x0, - 0x1,0x2,0x3,0x2,0x0,0x0,0x6f,0xf0,0x0,0x0,0x0,0x0,0x6f,0xf0,0x0,0x4, - 0x0,0x0,0x70,0x80,0x0,0x8,0x0,0x0,0x7e,0x90,0x0,0xd,0x0,0x0,0x70,0x80, - 0x0,0x8,0x4c,0x4d,0x54,0x0,0x4d,0x4d,0x54,0x0,0x57,0x49,0x54,0x41,0x0,0x4a, - 0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, - 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x11,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0xa1,0xf2,0x5d,0x90,0xff,0xff,0xff,0xff,0xba,0x16,0xd5, - 0x90,0xff,0xff,0xff,0xff,0xcb,0x88,0x1d,0x80,0xff,0xff,0xff,0xff,0xd2,0x56,0xee, - 0x70,0x0,0x1,0x2,0x3,0x2,0x0,0x0,0x6f,0xf0,0x0,0x0,0x0,0x0,0x6f,0xf0, - 0x0,0x4,0x0,0x0,0x70,0x80,0x0,0x8,0x0,0x0,0x7e,0x90,0x0,0xd,0x0,0x0, - 0x70,0x80,0x0,0x8,0x4c,0x4d,0x54,0x0,0x4d,0x4d,0x54,0x0,0x57,0x49,0x54,0x41, - 0x0,0x4a,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa, - 0x57,0x49,0x54,0x41,0x2d,0x38,0xa, + 0x1,0x2,0x3,0x4,0x0,0x0,0x6f,0xf0,0x0,0x0,0x0,0x0,0x6f,0xf0,0x0,0x4, + 0x0,0x0,0x70,0x80,0x0,0x8,0x0,0x0,0x7e,0x90,0x0,0xc,0x0,0x0,0x70,0x80, + 0x0,0x10,0x4c,0x4d,0x54,0x0,0x4d,0x4d,0x54,0x0,0x2b,0x30,0x38,0x0,0x2b,0x30, + 0x39,0x0,0x57,0x49,0x54,0x41,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x15,0xf8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xa1,0xf2,0x5d,0x90,0xff,0xff,0xff, + 0xff,0xba,0x16,0xd5,0x90,0xff,0xff,0xff,0xff,0xcb,0x88,0x1d,0x80,0xff,0xff,0xff, + 0xff,0xd2,0x56,0xee,0x70,0x0,0x1,0x2,0x3,0x4,0x0,0x0,0x6f,0xf0,0x0,0x0, + 0x0,0x0,0x6f,0xf0,0x0,0x4,0x0,0x0,0x70,0x80,0x0,0x8,0x0,0x0,0x7e,0x90, + 0x0,0xc,0x0,0x0,0x70,0x80,0x0,0x10,0x4c,0x4d,0x54,0x0,0x4d,0x4d,0x54,0x0, + 0x2b,0x30,0x38,0x0,0x2b,0x30,0x39,0x0,0x57,0x49,0x54,0x41,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x57,0x49,0x54,0x41,0x2d,0x38,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/Asia/Muscat - 0x0,0x0,0x0,0xab, + 0x0,0x0,0x0,0xbb, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0xa1, - 0xf2,0x99,0xa8,0x0,0x1,0x0,0x0,0x33,0xd8,0x0,0x0,0x0,0x0,0x38,0x40,0x0, - 0x4,0x4c,0x4d,0x54,0x0,0x47,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, - 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0xa1,0xf2,0x99,0xa8,0x0,0x1,0x0,0x0,0x33,0xd8,0x0, - 0x0,0x0,0x0,0x38,0x40,0x0,0x4,0x4c,0x4d,0x54,0x0,0x47,0x53,0x54,0x0,0x0, - 0x0,0x0,0x0,0xa,0x47,0x53,0x54,0x2d,0x34,0xa, + 0x0,0x0,0x3,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0xa1, + 0xf2,0x99,0xa8,0x7f,0xff,0xff,0xff,0x0,0x1,0x1,0x0,0x0,0x33,0xd8,0x0,0x0, + 0x0,0x0,0x38,0x40,0x0,0x4,0x4c,0x4d,0x54,0x0,0x2b,0x30,0x34,0x0,0x0,0x0, + 0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xa1,0xf2,0x99,0xa8,0x0,0x0, + 0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x1,0x0,0x0,0x33,0xd8,0x0,0x0,0x0, + 0x0,0x38,0x40,0x0,0x4,0x4c,0x4d,0x54,0x0,0x2b,0x30,0x34,0x0,0x0,0x0,0x0, + 0x0,0xa,0x3c,0x2b,0x30,0x34,0x3e,0x2d,0x34,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/Asia/Srednekolymsk 0x0,0x0,0x4,0xdc, 0x54, @@ -44175,21 +46070,22 @@ static const unsigned char qt_resource_data[] = { 0x1,0x1,0x1,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xa,0x3c,0x2b,0x31,0x31,0x3e,0x2d,0x31,0x31,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/Asia/Bahrain - 0x0,0x0,0x0,0xd1, + 0x0,0x0,0x0,0xe1, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0xa1, - 0xf2,0x9d,0x30,0x4,0x8a,0x92,0xc0,0x0,0x1,0x2,0x0,0x0,0x30,0x50,0x0,0x0, - 0x0,0x0,0x38,0x40,0x0,0x4,0x0,0x0,0x2a,0x30,0x0,0x8,0x4c,0x4d,0x54,0x0, - 0x47,0x53,0x54,0x0,0x41,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a, - 0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0xf8,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xff,0xff,0xff,0xff,0xa1,0xf2,0x9d,0x30,0x0,0x0,0x0,0x0,0x4,0x8a, - 0x92,0xc0,0x0,0x1,0x2,0x0,0x0,0x30,0x50,0x0,0x0,0x0,0x0,0x38,0x40,0x0, - 0x4,0x0,0x0,0x2a,0x30,0x0,0x8,0x4c,0x4d,0x54,0x0,0x47,0x53,0x54,0x0,0x41, - 0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x41,0x53,0x54,0x2d,0x33,0xa, + 0x0,0x0,0x4,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0xa1, + 0xf2,0x9d,0x30,0x4,0x8a,0x92,0xc0,0x7f,0xff,0xff,0xff,0x0,0x1,0x2,0x2,0x0, + 0x0,0x30,0x50,0x0,0x0,0x0,0x0,0x38,0x40,0x0,0x4,0x0,0x0,0x2a,0x30,0x0, + 0x8,0x4c,0x4d,0x54,0x0,0x2b,0x30,0x34,0x0,0x2b,0x30,0x33,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0xf8, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xa1,0xf2,0x9d,0x30,0x0, + 0x0,0x0,0x0,0x4,0x8a,0x92,0xc0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0, + 0x1,0x2,0x2,0x0,0x0,0x30,0x50,0x0,0x0,0x0,0x0,0x38,0x40,0x0,0x4,0x0, + 0x0,0x2a,0x30,0x0,0x8,0x4c,0x4d,0x54,0x0,0x2b,0x30,0x34,0x0,0x2b,0x30,0x33, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2b,0x30,0x33,0x3e,0x2d,0x33,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/Asia/Omsk 0x0,0x0,0x4,0xdb, @@ -44273,11 +46169,11 @@ static const unsigned char qt_resource_data[] = { 0x1,0x1,0x1,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xa,0x3c,0x2b,0x30,0x36,0x3e,0x2d,0x36,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/Asia/Ulaanbaatar - 0x0,0x0,0x5,0xe9, + 0x0,0x0,0x3,0x99, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x5d,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0xf,0x80,0x0,0x0,0x0,0x86, + 0x0,0x0,0x34,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x10,0x80,0x0,0x0,0x0,0x86, 0xd3,0xee,0x4c,0xf,0xb,0xdc,0x90,0x18,0xe9,0xc8,0x80,0x19,0xda,0xfc,0xf0,0x1a, 0xcc,0x4d,0x80,0x1b,0xbc,0x30,0x70,0x1c,0xac,0x2f,0x80,0x1d,0x9c,0x12,0x70,0x1e, 0x8c,0x11,0x80,0x1f,0x7b,0xf4,0x70,0x20,0x6b,0xf3,0x80,0x21,0x5b,0xd6,0x70,0x22, @@ -44290,86 +46186,49 @@ static const unsigned char qt_resource_data[] = { 0xa4,0xab,0xa0,0x3d,0x94,0x8e,0x90,0x3e,0x84,0x8d,0xa0,0x3f,0x74,0x70,0x90,0x40, 0x64,0x6f,0xa0,0x41,0x54,0x52,0x90,0x42,0x44,0x51,0xa0,0x43,0x34,0x34,0x90,0x44, 0x24,0x33,0xa0,0x45,0x1d,0x51,0x10,0x55,0x15,0x9a,0xa0,0x56,0x5,0x61,0x70,0x56, - 0xf5,0x7c,0xa0,0x57,0xe5,0x43,0x70,0x58,0xd5,0x5e,0xa0,0x59,0xce,0x5f,0xf0,0x5a, - 0xbe,0x7b,0x20,0x5b,0xae,0x41,0xf0,0x5c,0x9e,0x5d,0x20,0x5d,0x8e,0x23,0xf0,0x5e, - 0x7e,0x3f,0x20,0x5f,0x6e,0x5,0xf0,0x60,0x5e,0x21,0x20,0x61,0x4d,0xe7,0xf0,0x62, - 0x3e,0x3,0x20,0x63,0x2d,0xc9,0xf0,0x64,0x1d,0xe5,0x20,0x65,0x16,0xe6,0x70,0x66, - 0x7,0x1,0xa0,0x66,0xf6,0xc8,0x70,0x67,0xe6,0xe3,0xa0,0x68,0xd6,0xaa,0x70,0x69, - 0xc6,0xc5,0xa0,0x6a,0xb6,0x8c,0x70,0x6b,0xa6,0xa7,0xa0,0x6c,0x96,0x6e,0x70,0x6d, - 0x86,0x89,0xa0,0x6e,0x7f,0x8a,0xf0,0x6f,0x6f,0xa6,0x20,0x70,0x5f,0x6c,0xf0,0x71, - 0x4f,0x88,0x20,0x72,0x3f,0x4e,0xf0,0x73,0x2f,0x6a,0x20,0x74,0x1f,0x30,0xf0,0x75, - 0xf,0x4c,0x20,0x75,0xff,0x12,0xf0,0x76,0xef,0x2e,0x20,0x77,0xde,0xf4,0xf0,0x78, - 0xcf,0x10,0x20,0x79,0xc8,0x11,0x70,0x7a,0xb8,0x2c,0xa0,0x7b,0xa7,0xf3,0x70,0x7c, - 0x98,0xe,0xa0,0x7d,0x87,0xd5,0x70,0x7e,0x77,0xf0,0xa0,0x7f,0x67,0xb7,0x70,0x0, - 0x1,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x0,0x0,0x64,0x34, - 0x0,0x0,0x0,0x0,0x62,0x70,0x0,0x4,0x0,0x0,0x7e,0x90,0x1,0x9,0x0,0x0, - 0x70,0x80,0x0,0x4,0x4c,0x4d,0x54,0x0,0x55,0x4c,0x41,0x54,0x0,0x55,0x4c,0x41, - 0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5d,0x0, - 0x0,0x0,0x4,0x0,0x0,0x0,0xf,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff, - 0xff,0xff,0xff,0x86,0xd3,0xee,0x4c,0x0,0x0,0x0,0x0,0xf,0xb,0xdc,0x90,0x0, - 0x0,0x0,0x0,0x18,0xe9,0xc8,0x80,0x0,0x0,0x0,0x0,0x19,0xda,0xfc,0xf0,0x0, - 0x0,0x0,0x0,0x1a,0xcc,0x4d,0x80,0x0,0x0,0x0,0x0,0x1b,0xbc,0x30,0x70,0x0, - 0x0,0x0,0x0,0x1c,0xac,0x2f,0x80,0x0,0x0,0x0,0x0,0x1d,0x9c,0x12,0x70,0x0, - 0x0,0x0,0x0,0x1e,0x8c,0x11,0x80,0x0,0x0,0x0,0x0,0x1f,0x7b,0xf4,0x70,0x0, - 0x0,0x0,0x0,0x20,0x6b,0xf3,0x80,0x0,0x0,0x0,0x0,0x21,0x5b,0xd6,0x70,0x0, - 0x0,0x0,0x0,0x22,0x4b,0xd5,0x80,0x0,0x0,0x0,0x0,0x23,0x3b,0xb8,0x70,0x0, - 0x0,0x0,0x0,0x24,0x2b,0xb7,0x80,0x0,0x0,0x0,0x0,0x25,0x1b,0x9a,0x70,0x0, - 0x0,0x0,0x0,0x26,0xb,0x99,0x80,0x0,0x0,0x0,0x0,0x27,0x4,0xb6,0xf0,0x0, - 0x0,0x0,0x0,0x27,0xf4,0xb6,0x0,0x0,0x0,0x0,0x0,0x28,0xe4,0x98,0xf0,0x0, - 0x0,0x0,0x0,0x29,0xd4,0x98,0x0,0x0,0x0,0x0,0x0,0x2a,0xc4,0x7a,0xf0,0x0, - 0x0,0x0,0x0,0x2b,0xb4,0x7a,0x0,0x0,0x0,0x0,0x0,0x2c,0xa4,0x5c,0xf0,0x0, - 0x0,0x0,0x0,0x2d,0x94,0x5c,0x0,0x0,0x0,0x0,0x0,0x2e,0x84,0x3e,0xf0,0x0, - 0x0,0x0,0x0,0x2f,0x74,0x3e,0x0,0x0,0x0,0x0,0x0,0x30,0x64,0x20,0xf0,0x0, - 0x0,0x0,0x0,0x31,0x5d,0x5a,0x80,0x0,0x0,0x0,0x0,0x32,0x4d,0x3d,0x70,0x0, - 0x0,0x0,0x0,0x33,0x3d,0x3c,0x80,0x0,0x0,0x0,0x0,0x34,0x2d,0x1f,0x70,0x0, - 0x0,0x0,0x0,0x35,0x1d,0x1e,0x80,0x0,0x0,0x0,0x0,0x36,0xd,0x1,0x70,0x0, - 0x0,0x0,0x0,0x3a,0xe9,0xb3,0xa0,0x0,0x0,0x0,0x0,0x3b,0xb4,0xac,0x90,0x0, - 0x0,0x0,0x0,0x3c,0xa4,0xab,0xa0,0x0,0x0,0x0,0x0,0x3d,0x94,0x8e,0x90,0x0, - 0x0,0x0,0x0,0x3e,0x84,0x8d,0xa0,0x0,0x0,0x0,0x0,0x3f,0x74,0x70,0x90,0x0, - 0x0,0x0,0x0,0x40,0x64,0x6f,0xa0,0x0,0x0,0x0,0x0,0x41,0x54,0x52,0x90,0x0, - 0x0,0x0,0x0,0x42,0x44,0x51,0xa0,0x0,0x0,0x0,0x0,0x43,0x34,0x34,0x90,0x0, - 0x0,0x0,0x0,0x44,0x24,0x33,0xa0,0x0,0x0,0x0,0x0,0x45,0x1d,0x51,0x10,0x0, - 0x0,0x0,0x0,0x55,0x15,0x9a,0xa0,0x0,0x0,0x0,0x0,0x56,0x5,0x61,0x70,0x0, - 0x0,0x0,0x0,0x56,0xf5,0x7c,0xa0,0x0,0x0,0x0,0x0,0x57,0xe5,0x43,0x70,0x0, - 0x0,0x0,0x0,0x58,0xd5,0x5e,0xa0,0x0,0x0,0x0,0x0,0x59,0xce,0x5f,0xf0,0x0, - 0x0,0x0,0x0,0x5a,0xbe,0x7b,0x20,0x0,0x0,0x0,0x0,0x5b,0xae,0x41,0xf0,0x0, - 0x0,0x0,0x0,0x5c,0x9e,0x5d,0x20,0x0,0x0,0x0,0x0,0x5d,0x8e,0x23,0xf0,0x0, - 0x0,0x0,0x0,0x5e,0x7e,0x3f,0x20,0x0,0x0,0x0,0x0,0x5f,0x6e,0x5,0xf0,0x0, - 0x0,0x0,0x0,0x60,0x5e,0x21,0x20,0x0,0x0,0x0,0x0,0x61,0x4d,0xe7,0xf0,0x0, - 0x0,0x0,0x0,0x62,0x3e,0x3,0x20,0x0,0x0,0x0,0x0,0x63,0x2d,0xc9,0xf0,0x0, - 0x0,0x0,0x0,0x64,0x1d,0xe5,0x20,0x0,0x0,0x0,0x0,0x65,0x16,0xe6,0x70,0x0, - 0x0,0x0,0x0,0x66,0x7,0x1,0xa0,0x0,0x0,0x0,0x0,0x66,0xf6,0xc8,0x70,0x0, - 0x0,0x0,0x0,0x67,0xe6,0xe3,0xa0,0x0,0x0,0x0,0x0,0x68,0xd6,0xaa,0x70,0x0, - 0x0,0x0,0x0,0x69,0xc6,0xc5,0xa0,0x0,0x0,0x0,0x0,0x6a,0xb6,0x8c,0x70,0x0, - 0x0,0x0,0x0,0x6b,0xa6,0xa7,0xa0,0x0,0x0,0x0,0x0,0x6c,0x96,0x6e,0x70,0x0, - 0x0,0x0,0x0,0x6d,0x86,0x89,0xa0,0x0,0x0,0x0,0x0,0x6e,0x7f,0x8a,0xf0,0x0, - 0x0,0x0,0x0,0x6f,0x6f,0xa6,0x20,0x0,0x0,0x0,0x0,0x70,0x5f,0x6c,0xf0,0x0, - 0x0,0x0,0x0,0x71,0x4f,0x88,0x20,0x0,0x0,0x0,0x0,0x72,0x3f,0x4e,0xf0,0x0, - 0x0,0x0,0x0,0x73,0x2f,0x6a,0x20,0x0,0x0,0x0,0x0,0x74,0x1f,0x30,0xf0,0x0, - 0x0,0x0,0x0,0x75,0xf,0x4c,0x20,0x0,0x0,0x0,0x0,0x75,0xff,0x12,0xf0,0x0, - 0x0,0x0,0x0,0x76,0xef,0x2e,0x20,0x0,0x0,0x0,0x0,0x77,0xde,0xf4,0xf0,0x0, - 0x0,0x0,0x0,0x78,0xcf,0x10,0x20,0x0,0x0,0x0,0x0,0x79,0xc8,0x11,0x70,0x0, - 0x0,0x0,0x0,0x7a,0xb8,0x2c,0xa0,0x0,0x0,0x0,0x0,0x7b,0xa7,0xf3,0x70,0x0, - 0x0,0x0,0x0,0x7c,0x98,0xe,0xa0,0x0,0x0,0x0,0x0,0x7d,0x87,0xd5,0x70,0x0, - 0x0,0x0,0x0,0x7e,0x77,0xf0,0xa0,0x0,0x0,0x0,0x0,0x7f,0x67,0xb7,0x70,0x0, - 0x1,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0xf5,0x7c,0xa0,0x57,0xe5,0x43,0x70,0x7f,0xff,0xff,0xff,0x0,0x1,0x3,0x2,0x3, 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x0,0x0,0x64,0x34, - 0x0,0x0,0x0,0x0,0x62,0x70,0x0,0x4,0x0,0x0,0x7e,0x90,0x1,0x9,0x0,0x0, - 0x70,0x80,0x0,0x4,0x4c,0x4d,0x54,0x0,0x55,0x4c,0x41,0x54,0x0,0x55,0x4c,0x41, - 0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x55,0x4c,0x41,0x54, - 0x2d,0x38,0x55,0x4c,0x41,0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x36,0x2c,0x4d, - 0x39,0x2e,0x35,0x2e,0x36,0x2f,0x30,0xa, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x3,0x0, + 0x0,0x64,0x34,0x0,0x0,0x0,0x0,0x62,0x70,0x0,0x4,0x0,0x0,0x7e,0x90,0x1, + 0x8,0x0,0x0,0x70,0x80,0x0,0xc,0x4c,0x4d,0x54,0x0,0x2b,0x30,0x37,0x0,0x2b, + 0x30,0x39,0x0,0x2b,0x30,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x34,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x10,0xf8,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x86,0xd3,0xee,0x4c,0x0,0x0,0x0,0x0,0xf, + 0xb,0xdc,0x90,0x0,0x0,0x0,0x0,0x18,0xe9,0xc8,0x80,0x0,0x0,0x0,0x0,0x19, + 0xda,0xfc,0xf0,0x0,0x0,0x0,0x0,0x1a,0xcc,0x4d,0x80,0x0,0x0,0x0,0x0,0x1b, + 0xbc,0x30,0x70,0x0,0x0,0x0,0x0,0x1c,0xac,0x2f,0x80,0x0,0x0,0x0,0x0,0x1d, + 0x9c,0x12,0x70,0x0,0x0,0x0,0x0,0x1e,0x8c,0x11,0x80,0x0,0x0,0x0,0x0,0x1f, + 0x7b,0xf4,0x70,0x0,0x0,0x0,0x0,0x20,0x6b,0xf3,0x80,0x0,0x0,0x0,0x0,0x21, + 0x5b,0xd6,0x70,0x0,0x0,0x0,0x0,0x22,0x4b,0xd5,0x80,0x0,0x0,0x0,0x0,0x23, + 0x3b,0xb8,0x70,0x0,0x0,0x0,0x0,0x24,0x2b,0xb7,0x80,0x0,0x0,0x0,0x0,0x25, + 0x1b,0x9a,0x70,0x0,0x0,0x0,0x0,0x26,0xb,0x99,0x80,0x0,0x0,0x0,0x0,0x27, + 0x4,0xb6,0xf0,0x0,0x0,0x0,0x0,0x27,0xf4,0xb6,0x0,0x0,0x0,0x0,0x0,0x28, + 0xe4,0x98,0xf0,0x0,0x0,0x0,0x0,0x29,0xd4,0x98,0x0,0x0,0x0,0x0,0x0,0x2a, + 0xc4,0x7a,0xf0,0x0,0x0,0x0,0x0,0x2b,0xb4,0x7a,0x0,0x0,0x0,0x0,0x0,0x2c, + 0xa4,0x5c,0xf0,0x0,0x0,0x0,0x0,0x2d,0x94,0x5c,0x0,0x0,0x0,0x0,0x0,0x2e, + 0x84,0x3e,0xf0,0x0,0x0,0x0,0x0,0x2f,0x74,0x3e,0x0,0x0,0x0,0x0,0x0,0x30, + 0x64,0x20,0xf0,0x0,0x0,0x0,0x0,0x31,0x5d,0x5a,0x80,0x0,0x0,0x0,0x0,0x32, + 0x4d,0x3d,0x70,0x0,0x0,0x0,0x0,0x33,0x3d,0x3c,0x80,0x0,0x0,0x0,0x0,0x34, + 0x2d,0x1f,0x70,0x0,0x0,0x0,0x0,0x35,0x1d,0x1e,0x80,0x0,0x0,0x0,0x0,0x36, + 0xd,0x1,0x70,0x0,0x0,0x0,0x0,0x3a,0xe9,0xb3,0xa0,0x0,0x0,0x0,0x0,0x3b, + 0xb4,0xac,0x90,0x0,0x0,0x0,0x0,0x3c,0xa4,0xab,0xa0,0x0,0x0,0x0,0x0,0x3d, + 0x94,0x8e,0x90,0x0,0x0,0x0,0x0,0x3e,0x84,0x8d,0xa0,0x0,0x0,0x0,0x0,0x3f, + 0x74,0x70,0x90,0x0,0x0,0x0,0x0,0x40,0x64,0x6f,0xa0,0x0,0x0,0x0,0x0,0x41, + 0x54,0x52,0x90,0x0,0x0,0x0,0x0,0x42,0x44,0x51,0xa0,0x0,0x0,0x0,0x0,0x43, + 0x34,0x34,0x90,0x0,0x0,0x0,0x0,0x44,0x24,0x33,0xa0,0x0,0x0,0x0,0x0,0x45, + 0x1d,0x51,0x10,0x0,0x0,0x0,0x0,0x55,0x15,0x9a,0xa0,0x0,0x0,0x0,0x0,0x56, + 0x5,0x61,0x70,0x0,0x0,0x0,0x0,0x56,0xf5,0x7c,0xa0,0x0,0x0,0x0,0x0,0x57, + 0xe5,0x43,0x70,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x3,0x0, + 0x0,0x64,0x34,0x0,0x0,0x0,0x0,0x62,0x70,0x0,0x4,0x0,0x0,0x7e,0x90,0x1, + 0x8,0x0,0x0,0x70,0x80,0x0,0xc,0x4c,0x4d,0x54,0x0,0x2b,0x30,0x37,0x0,0x2b, + 0x30,0x39,0x0,0x2b,0x30,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa, + 0x3c,0x2b,0x30,0x38,0x3e,0x2d,0x38,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/Asia/Chongqing 0x0,0x0,0x1,0x9e, 0x54, @@ -44400,12 +46259,12 @@ static const unsigned char qt_resource_data[] = { 0x70,0x80,0x0,0x8,0x4c,0x4d,0x54,0x0,0x43,0x44,0x54,0x0,0x43,0x53,0x54,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x43,0x53,0x54,0x2d,0x38,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/Asia/Atyrau - 0x0,0x0,0x3,0xf9, + 0x0,0x0,0x4,0x1, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x34,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x10,0x80,0x0,0x0,0x0,0xaa, - 0x19,0x93,0x50,0xb5,0xa3,0xfd,0x40,0x16,0x18,0xce,0x30,0x17,0x8,0xb1,0x20,0x17, + 0x0,0x0,0x34,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0xaa, + 0x19,0x93,0x50,0xb5,0xa4,0xb,0x50,0x16,0x18,0xce,0x30,0x17,0x8,0xb1,0x20,0x17, 0xf9,0xf3,0xa0,0x18,0xe9,0xf2,0xb0,0x19,0xdb,0x27,0x20,0x1a,0xcc,0x77,0xb0,0x1b, 0xbc,0x84,0xd0,0x1c,0xac,0x75,0xd0,0x1d,0x9c,0x66,0xd0,0x1e,0x8c,0x57,0xd0,0x1f, 0x7c,0x48,0xd0,0x20,0x6c,0x39,0xd0,0x21,0x5c,0x2a,0xd0,0x22,0x4c,0x1b,0xd0,0x23, @@ -44421,53 +46280,54 @@ static const unsigned char qt_resource_data[] = { 0x2,0x4,0x2,0x4,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, 0x5,0x7,0x8,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, 0x6,0x5,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x5,0x5,0x0, - 0x0,0x30,0xb0,0x0,0x0,0x0,0x0,0x38,0x40,0x0,0x4,0x0,0x0,0x46,0x50,0x0, - 0x8,0x0,0x0,0x54,0x60,0x0,0xc,0x0,0x0,0x54,0x60,0x1,0xc,0x0,0x0,0x46, - 0x50,0x0,0x8,0x0,0x0,0x54,0x60,0x1,0xc,0x0,0x0,0x46,0x50,0x1,0x8,0x0, - 0x0,0x38,0x40,0x0,0x4,0x0,0x0,0x46,0x50,0x0,0x8,0x4c,0x4d,0x54,0x0,0x2b, - 0x30,0x34,0x0,0x2b,0x30,0x35,0x0,0x2b,0x30,0x36,0x0,0x0,0x0,0x0,0x0,0x0, - 0x1,0x1,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54, - 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x34,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x10,0xf8,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xaa,0x19,0x93,0x50,0xff,0xff,0xff,0xff,0xb5, - 0xa3,0xfd,0x40,0x0,0x0,0x0,0x0,0x16,0x18,0xce,0x30,0x0,0x0,0x0,0x0,0x17, - 0x8,0xb1,0x20,0x0,0x0,0x0,0x0,0x17,0xf9,0xf3,0xa0,0x0,0x0,0x0,0x0,0x18, - 0xe9,0xf2,0xb0,0x0,0x0,0x0,0x0,0x19,0xdb,0x27,0x20,0x0,0x0,0x0,0x0,0x1a, - 0xcc,0x77,0xb0,0x0,0x0,0x0,0x0,0x1b,0xbc,0x84,0xd0,0x0,0x0,0x0,0x0,0x1c, - 0xac,0x75,0xd0,0x0,0x0,0x0,0x0,0x1d,0x9c,0x66,0xd0,0x0,0x0,0x0,0x0,0x1e, - 0x8c,0x57,0xd0,0x0,0x0,0x0,0x0,0x1f,0x7c,0x48,0xd0,0x0,0x0,0x0,0x0,0x20, - 0x6c,0x39,0xd0,0x0,0x0,0x0,0x0,0x21,0x5c,0x2a,0xd0,0x0,0x0,0x0,0x0,0x22, - 0x4c,0x1b,0xd0,0x0,0x0,0x0,0x0,0x23,0x3c,0xc,0xd0,0x0,0x0,0x0,0x0,0x24, - 0x2b,0xfd,0xd0,0x0,0x0,0x0,0x0,0x25,0x1b,0xee,0xd0,0x0,0x0,0x0,0x0,0x26, - 0xb,0xdf,0xd0,0x0,0x0,0x0,0x0,0x27,0x5,0xb,0x50,0x0,0x0,0x0,0x0,0x27, - 0xf4,0xfc,0x50,0x0,0x0,0x0,0x0,0x28,0xe4,0xfb,0x60,0x0,0x0,0x0,0x0,0x29, - 0x78,0xa3,0x60,0x0,0x0,0x0,0x0,0x29,0xd4,0xde,0x50,0x0,0x0,0x0,0x0,0x2a, - 0xc4,0xcf,0x50,0x0,0x0,0x0,0x0,0x2b,0xb4,0xc0,0x50,0x0,0x0,0x0,0x0,0x2c, - 0xa4,0xb1,0x50,0x0,0x0,0x0,0x0,0x2d,0x94,0xa2,0x50,0x0,0x0,0x0,0x0,0x2e, - 0x84,0x93,0x50,0x0,0x0,0x0,0x0,0x2f,0x74,0x84,0x50,0x0,0x0,0x0,0x0,0x30, - 0x64,0x75,0x50,0x0,0x0,0x0,0x0,0x31,0x5d,0xa0,0xd0,0x0,0x0,0x0,0x0,0x32, - 0x72,0x7b,0xd0,0x0,0x0,0x0,0x0,0x33,0x3d,0x82,0xd0,0x0,0x0,0x0,0x0,0x34, - 0x52,0x5d,0xd0,0x0,0x0,0x0,0x0,0x35,0x1d,0x64,0xd0,0x0,0x0,0x0,0x0,0x36, - 0x32,0x3f,0xd0,0x0,0x0,0x0,0x0,0x36,0xfd,0x46,0xd0,0x0,0x0,0x0,0x0,0x38, - 0x1b,0x6a,0x60,0x0,0x0,0x0,0x0,0x38,0xdd,0x36,0xe0,0x0,0x0,0x0,0x0,0x39, - 0xfb,0x4c,0x60,0x0,0x0,0x0,0x0,0x3a,0xbd,0x18,0xe0,0x0,0x0,0x0,0x0,0x3b, - 0xdb,0x2e,0x60,0x0,0x0,0x0,0x0,0x3c,0xa6,0x35,0x60,0x0,0x0,0x0,0x0,0x3d, - 0xbb,0x10,0x60,0x0,0x0,0x0,0x0,0x3e,0x86,0x17,0x60,0x0,0x0,0x0,0x0,0x3f, - 0x9a,0xf2,0x60,0x0,0x0,0x0,0x0,0x40,0x65,0xf9,0x60,0x0,0x0,0x0,0x0,0x41, - 0x84,0xe,0xe0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x2,0x3,0x4, - 0x2,0x4,0x2,0x4,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, - 0x5,0x7,0x8,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x5,0x5,0x0, - 0x0,0x30,0xb0,0x0,0x0,0x0,0x0,0x38,0x40,0x0,0x4,0x0,0x0,0x46,0x50,0x0, + 0x0,0x30,0xb0,0x0,0x0,0x0,0x0,0x2a,0x30,0x0,0x4,0x0,0x0,0x46,0x50,0x0, 0x8,0x0,0x0,0x54,0x60,0x0,0xc,0x0,0x0,0x54,0x60,0x1,0xc,0x0,0x0,0x46, 0x50,0x0,0x8,0x0,0x0,0x54,0x60,0x1,0xc,0x0,0x0,0x46,0x50,0x1,0x8,0x0, - 0x0,0x38,0x40,0x0,0x4,0x0,0x0,0x46,0x50,0x0,0x8,0x4c,0x4d,0x54,0x0,0x2b, - 0x30,0x34,0x0,0x2b,0x30,0x35,0x0,0x2b,0x30,0x36,0x0,0x0,0x0,0x0,0x0,0x0, - 0x1,0x1,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa, - 0x3c,0x2b,0x30,0x35,0x3e,0x2d,0x35,0xa, + 0x0,0x38,0x40,0x0,0x10,0x0,0x0,0x46,0x50,0x0,0x8,0x4c,0x4d,0x54,0x0,0x2b, + 0x30,0x33,0x0,0x2b,0x30,0x35,0x0,0x2b,0x30,0x36,0x0,0x2b,0x30,0x34,0x0,0x0, + 0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0xa,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x34,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x14,0xf8, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xaa,0x19,0x93,0x50,0xff, + 0xff,0xff,0xff,0xb5,0xa4,0xb,0x50,0x0,0x0,0x0,0x0,0x16,0x18,0xce,0x30,0x0, + 0x0,0x0,0x0,0x17,0x8,0xb1,0x20,0x0,0x0,0x0,0x0,0x17,0xf9,0xf3,0xa0,0x0, + 0x0,0x0,0x0,0x18,0xe9,0xf2,0xb0,0x0,0x0,0x0,0x0,0x19,0xdb,0x27,0x20,0x0, + 0x0,0x0,0x0,0x1a,0xcc,0x77,0xb0,0x0,0x0,0x0,0x0,0x1b,0xbc,0x84,0xd0,0x0, + 0x0,0x0,0x0,0x1c,0xac,0x75,0xd0,0x0,0x0,0x0,0x0,0x1d,0x9c,0x66,0xd0,0x0, + 0x0,0x0,0x0,0x1e,0x8c,0x57,0xd0,0x0,0x0,0x0,0x0,0x1f,0x7c,0x48,0xd0,0x0, + 0x0,0x0,0x0,0x20,0x6c,0x39,0xd0,0x0,0x0,0x0,0x0,0x21,0x5c,0x2a,0xd0,0x0, + 0x0,0x0,0x0,0x22,0x4c,0x1b,0xd0,0x0,0x0,0x0,0x0,0x23,0x3c,0xc,0xd0,0x0, + 0x0,0x0,0x0,0x24,0x2b,0xfd,0xd0,0x0,0x0,0x0,0x0,0x25,0x1b,0xee,0xd0,0x0, + 0x0,0x0,0x0,0x26,0xb,0xdf,0xd0,0x0,0x0,0x0,0x0,0x27,0x5,0xb,0x50,0x0, + 0x0,0x0,0x0,0x27,0xf4,0xfc,0x50,0x0,0x0,0x0,0x0,0x28,0xe4,0xfb,0x60,0x0, + 0x0,0x0,0x0,0x29,0x78,0xa3,0x60,0x0,0x0,0x0,0x0,0x29,0xd4,0xde,0x50,0x0, + 0x0,0x0,0x0,0x2a,0xc4,0xcf,0x50,0x0,0x0,0x0,0x0,0x2b,0xb4,0xc0,0x50,0x0, + 0x0,0x0,0x0,0x2c,0xa4,0xb1,0x50,0x0,0x0,0x0,0x0,0x2d,0x94,0xa2,0x50,0x0, + 0x0,0x0,0x0,0x2e,0x84,0x93,0x50,0x0,0x0,0x0,0x0,0x2f,0x74,0x84,0x50,0x0, + 0x0,0x0,0x0,0x30,0x64,0x75,0x50,0x0,0x0,0x0,0x0,0x31,0x5d,0xa0,0xd0,0x0, + 0x0,0x0,0x0,0x32,0x72,0x7b,0xd0,0x0,0x0,0x0,0x0,0x33,0x3d,0x82,0xd0,0x0, + 0x0,0x0,0x0,0x34,0x52,0x5d,0xd0,0x0,0x0,0x0,0x0,0x35,0x1d,0x64,0xd0,0x0, + 0x0,0x0,0x0,0x36,0x32,0x3f,0xd0,0x0,0x0,0x0,0x0,0x36,0xfd,0x46,0xd0,0x0, + 0x0,0x0,0x0,0x38,0x1b,0x6a,0x60,0x0,0x0,0x0,0x0,0x38,0xdd,0x36,0xe0,0x0, + 0x0,0x0,0x0,0x39,0xfb,0x4c,0x60,0x0,0x0,0x0,0x0,0x3a,0xbd,0x18,0xe0,0x0, + 0x0,0x0,0x0,0x3b,0xdb,0x2e,0x60,0x0,0x0,0x0,0x0,0x3c,0xa6,0x35,0x60,0x0, + 0x0,0x0,0x0,0x3d,0xbb,0x10,0x60,0x0,0x0,0x0,0x0,0x3e,0x86,0x17,0x60,0x0, + 0x0,0x0,0x0,0x3f,0x9a,0xf2,0x60,0x0,0x0,0x0,0x0,0x40,0x65,0xf9,0x60,0x0, + 0x0,0x0,0x0,0x41,0x84,0xe,0xe0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0, + 0x1,0x2,0x3,0x4,0x2,0x4,0x2,0x4,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6, + 0x5,0x6,0x5,0x6,0x5,0x7,0x8,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, + 0x6,0x5,0x6,0x5,0x6,0x5,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8, + 0x7,0x5,0x5,0x0,0x0,0x30,0xb0,0x0,0x0,0x0,0x0,0x2a,0x30,0x0,0x4,0x0, + 0x0,0x46,0x50,0x0,0x8,0x0,0x0,0x54,0x60,0x0,0xc,0x0,0x0,0x54,0x60,0x1, + 0xc,0x0,0x0,0x46,0x50,0x0,0x8,0x0,0x0,0x54,0x60,0x1,0xc,0x0,0x0,0x46, + 0x50,0x1,0x8,0x0,0x0,0x38,0x40,0x0,0x10,0x0,0x0,0x46,0x50,0x0,0x8,0x4c, + 0x4d,0x54,0x0,0x2b,0x30,0x33,0x0,0x2b,0x30,0x35,0x0,0x2b,0x30,0x36,0x0,0x2b, + 0x30,0x34,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x1,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2b,0x30,0x35,0x3e,0x2d,0x35,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Asia/Kuching - 0x0,0x0,0x2,0x7, + 0x0,0x0,0x2,0x9, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, @@ -44476,12 +46336,12 @@ static const unsigned char qt_resource_data[] = { 0x5d,0xac,0x80,0xc1,0xd5,0xa0,0x50,0xc3,0x3e,0xe0,0x0,0xc3,0xb6,0xd3,0xd0,0xc5, 0x20,0x13,0x80,0xc5,0x98,0x7,0x50,0xc7,0x1,0x47,0x0,0xc7,0x79,0x3a,0xd0,0xc8, 0xe3,0xcc,0x0,0xc9,0x5b,0xbf,0xd0,0xca,0xc4,0xff,0x80,0xcb,0x3c,0xf3,0x50,0xcb, - 0x91,0x58,0x0,0xd2,0x48,0x6d,0xf0,0x16,0x91,0xee,0x0,0x0,0x1,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x4,0x3,0x5,0x0, + 0x91,0x58,0x0,0xd2,0x48,0x6d,0xf0,0x7f,0xff,0xff,0xff,0x0,0x1,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x4,0x3,0x3,0x0, 0x0,0x67,0x70,0x0,0x0,0x0,0x0,0x69,0x78,0x0,0x4,0x0,0x0,0x75,0x30,0x1, - 0x9,0x0,0x0,0x70,0x80,0x0,0x4,0x0,0x0,0x7e,0x90,0x0,0x10,0x0,0x0,0x70, - 0x80,0x0,0x14,0x4c,0x4d,0x54,0x0,0x42,0x4f,0x52,0x54,0x0,0x42,0x4f,0x52,0x54, - 0x53,0x54,0x0,0x4a,0x53,0x54,0x0,0x4d,0x59,0x54,0x0,0x0,0x0,0x0,0x0,0x0, + 0xa,0x0,0x0,0x70,0x80,0x0,0x10,0x0,0x0,0x7e,0x90,0x0,0x14,0x0,0x0,0x70, + 0x80,0x0,0x10,0x4c,0x4d,0x54,0x0,0x2b,0x30,0x37,0x33,0x30,0x0,0x2b,0x30,0x38, + 0x32,0x30,0x0,0x2b,0x30,0x38,0x0,0x2b,0x30,0x39,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0, 0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x14,0x0,0x0,0x0,0x6,0x0, @@ -44494,30 +46354,31 @@ static const unsigned char qt_resource_data[] = { 0x1,0x47,0x0,0xff,0xff,0xff,0xff,0xc7,0x79,0x3a,0xd0,0xff,0xff,0xff,0xff,0xc8, 0xe3,0xcc,0x0,0xff,0xff,0xff,0xff,0xc9,0x5b,0xbf,0xd0,0xff,0xff,0xff,0xff,0xca, 0xc4,0xff,0x80,0xff,0xff,0xff,0xff,0xcb,0x3c,0xf3,0x50,0xff,0xff,0xff,0xff,0xcb, - 0x91,0x58,0x0,0xff,0xff,0xff,0xff,0xd2,0x48,0x6d,0xf0,0x0,0x0,0x0,0x0,0x16, - 0x91,0xee,0x0,0x0,0x1,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x4,0x3,0x5,0x0,0x0,0x67,0x70,0x0,0x0,0x0,0x0,0x69, - 0x78,0x0,0x4,0x0,0x0,0x75,0x30,0x1,0x9,0x0,0x0,0x70,0x80,0x0,0x4,0x0, - 0x0,0x7e,0x90,0x0,0x10,0x0,0x0,0x70,0x80,0x0,0x14,0x4c,0x4d,0x54,0x0,0x42, - 0x4f,0x52,0x54,0x0,0x42,0x4f,0x52,0x54,0x53,0x54,0x0,0x4a,0x53,0x54,0x0,0x4d, - 0x59,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa, - 0x4d,0x59,0x54,0x2d,0x38,0xa, + 0x91,0x58,0x0,0xff,0xff,0xff,0xff,0xd2,0x48,0x6d,0xf0,0x0,0x0,0x0,0x0,0x7f, + 0xff,0xff,0xff,0x0,0x1,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x4,0x3,0x3,0x0,0x0,0x67,0x70,0x0,0x0,0x0,0x0,0x69, + 0x78,0x0,0x4,0x0,0x0,0x75,0x30,0x1,0xa,0x0,0x0,0x70,0x80,0x0,0x10,0x0, + 0x0,0x7e,0x90,0x0,0x14,0x0,0x0,0x70,0x80,0x0,0x10,0x4c,0x4d,0x54,0x0,0x2b, + 0x30,0x37,0x33,0x30,0x0,0x2b,0x30,0x38,0x32,0x30,0x0,0x2b,0x30,0x38,0x0,0x2b, + 0x30,0x39,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa, + 0x3c,0x2b,0x30,0x38,0x3e,0x2d,0x38,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/Asia/Phnom_Penh - 0x0,0x0,0x0,0xcc, + 0x0,0x0,0x0,0xdc, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0xa2, - 0x6a,0x67,0xc4,0x1,0x2,0x0,0x0,0x5e,0x3c,0x0,0x0,0x0,0x0,0x5e,0x3c,0x0, - 0x4,0x0,0x0,0x62,0x70,0x0,0x8,0x4c,0x4d,0x54,0x0,0x42,0x4d,0x54,0x0,0x49, - 0x43,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0, - 0x3,0x0,0x0,0x0,0xc,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff, - 0xff,0x56,0xb6,0x85,0xc4,0xff,0xff,0xff,0xff,0xa2,0x6a,0x67,0xc4,0x0,0x1,0x2, - 0x0,0x0,0x5e,0x3c,0x0,0x0,0x0,0x0,0x5e,0x3c,0x0,0x4,0x0,0x0,0x62,0x70, - 0x0,0x8,0x4c,0x4d,0x54,0x0,0x42,0x4d,0x54,0x0,0x49,0x43,0x54,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0xa,0x49,0x43,0x54,0x2d,0x37,0xa, + 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0xa2, + 0x6a,0x67,0xc4,0x7f,0xff,0xff,0xff,0x1,0x2,0x2,0x0,0x0,0x5e,0x3c,0x0,0x0, + 0x0,0x0,0x5e,0x3c,0x0,0x4,0x0,0x0,0x62,0x70,0x0,0x8,0x4c,0x4d,0x54,0x0, + 0x42,0x4d,0x54,0x0,0x2b,0x30,0x37,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a, + 0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x4,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0xf8,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xff,0xff,0xff,0xff,0x56,0xb6,0x85,0xc4,0xff,0xff,0xff,0xff,0xa2,0x6a, + 0x67,0xc4,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x2,0x2,0x0,0x0, + 0x5e,0x3c,0x0,0x0,0x0,0x0,0x5e,0x3c,0x0,0x4,0x0,0x0,0x62,0x70,0x0,0x8, + 0x4c,0x4d,0x54,0x0,0x42,0x4d,0x54,0x0,0x2b,0x30,0x37,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xa,0x3c,0x2b,0x30,0x37,0x3e,0x2d,0x37,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/Asia/Dushanbe 0x0,0x0,0x2,0x6d, 0x54, @@ -44645,11 +46506,11 @@ static const unsigned char qt_resource_data[] = { 0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa, 0x3c,0x2b,0x31,0x30,0x3e,0x2d,0x31,0x30,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/Asia/Baghdad - 0x0,0x0,0x3,0xdc, + 0x0,0x0,0x3,0xec, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x36,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x80,0x0,0x0,0x0,0x9e, + 0x0,0x0,0x37,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0x80,0x0,0x0,0x0,0x9e, 0x30,0x3c,0xe0,0x17,0x30,0x68,0x50,0x17,0xfa,0xf,0xc0,0x18,0xe8,0xbd,0x50,0x19, 0xdb,0x43,0x40,0x1a,0xcc,0x93,0xd0,0x1b,0xbd,0xc8,0x40,0x1c,0xad,0xc7,0x50,0x1d, 0x9c,0x74,0xe0,0x1e,0x8c,0x65,0xe0,0x1f,0x7c,0x56,0xe0,0x20,0x6c,0x47,0xe0,0x21, @@ -44663,52 +46524,53 @@ static const unsigned char qt_resource_data[] = { 0xb7,0xb2,0x0,0x3c,0xa7,0xa3,0x0,0x3d,0x98,0xe5,0x80,0x3e,0x88,0xd6,0x80,0x3f, 0x7a,0x19,0x0,0x40,0x6b,0x5b,0x80,0x41,0x5c,0x9e,0x0,0x42,0x4c,0x8f,0x0,0x43, 0x3d,0xd1,0x80,0x44,0x2d,0xc2,0x80,0x45,0x1f,0x5,0x0,0x46,0xe,0xf6,0x0,0x47, - 0x0,0x38,0x80,0x1,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x4,0x5,0x4,0x5, + 0x0,0x38,0x80,0x7f,0xff,0xff,0xff,0x1,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x0,0x0,0x29,0xa4,0x0,0x0,0x0, - 0x0,0x29,0xa0,0x0,0x4,0x0,0x0,0x2a,0x30,0x0,0x8,0x0,0x0,0x38,0x40,0x1, - 0xc,0x0,0x0,0x2a,0x30,0x0,0x8,0x0,0x0,0x38,0x40,0x1,0xc,0x4c,0x4d,0x54, - 0x0,0x42,0x4d,0x54,0x0,0x41,0x53,0x54,0x0,0x41,0x44,0x54,0x0,0x0,0x0,0x0, - 0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x37,0x0,0x0,0x0, - 0x6,0x0,0x0,0x0,0x10,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff, - 0xff,0x69,0x86,0xb1,0xdc,0xff,0xff,0xff,0xff,0x9e,0x30,0x3c,0xe0,0x0,0x0,0x0, - 0x0,0x17,0x30,0x68,0x50,0x0,0x0,0x0,0x0,0x17,0xfa,0xf,0xc0,0x0,0x0,0x0, - 0x0,0x18,0xe8,0xbd,0x50,0x0,0x0,0x0,0x0,0x19,0xdb,0x43,0x40,0x0,0x0,0x0, - 0x0,0x1a,0xcc,0x93,0xd0,0x0,0x0,0x0,0x0,0x1b,0xbd,0xc8,0x40,0x0,0x0,0x0, - 0x0,0x1c,0xad,0xc7,0x50,0x0,0x0,0x0,0x0,0x1d,0x9c,0x74,0xe0,0x0,0x0,0x0, - 0x0,0x1e,0x8c,0x65,0xe0,0x0,0x0,0x0,0x0,0x1f,0x7c,0x56,0xe0,0x0,0x0,0x0, - 0x0,0x20,0x6c,0x47,0xe0,0x0,0x0,0x0,0x0,0x21,0x5c,0x38,0xe0,0x0,0x0,0x0, - 0x0,0x22,0x4c,0x29,0xe0,0x0,0x0,0x0,0x0,0x23,0x3c,0x1a,0xe0,0x0,0x0,0x0, - 0x0,0x24,0x2c,0xb,0xe0,0x0,0x0,0x0,0x0,0x25,0x1b,0xfc,0xe0,0x0,0x0,0x0, - 0x0,0x26,0xb,0xed,0xe0,0x0,0x0,0x0,0x0,0x27,0x5,0x19,0x60,0x0,0x0,0x0, - 0x0,0x27,0xf6,0x78,0x0,0x0,0x0,0x0,0x0,0x28,0xe7,0xba,0x80,0x0,0x0,0x0, - 0x0,0x29,0xd8,0xfd,0x0,0x0,0x0,0x0,0x0,0x2a,0xca,0x3f,0x80,0x0,0x0,0x0, - 0x0,0x2b,0xba,0x30,0x80,0x0,0x0,0x0,0x0,0x2c,0xab,0x73,0x0,0x0,0x0,0x0, - 0x0,0x2d,0x9b,0x64,0x0,0x0,0x0,0x0,0x0,0x2e,0x8c,0xa6,0x80,0x0,0x0,0x0, - 0x0,0x2f,0x7c,0x97,0x80,0x0,0x0,0x0,0x0,0x30,0x6d,0xda,0x0,0x0,0x0,0x0, - 0x0,0x31,0x5f,0x1c,0x80,0x0,0x0,0x0,0x0,0x32,0x50,0x5f,0x0,0x0,0x0,0x0, - 0x0,0x33,0x40,0x50,0x0,0x0,0x0,0x0,0x0,0x34,0x31,0x92,0x80,0x0,0x0,0x0, - 0x0,0x35,0x21,0x83,0x80,0x0,0x0,0x0,0x0,0x36,0x12,0xc6,0x0,0x0,0x0,0x0, - 0x0,0x37,0x2,0xb7,0x0,0x0,0x0,0x0,0x0,0x37,0xf3,0xf9,0x80,0x0,0x0,0x0, - 0x0,0x38,0xe5,0x3c,0x0,0x0,0x0,0x0,0x0,0x39,0xd6,0x7e,0x80,0x0,0x0,0x0, - 0x0,0x3a,0xc6,0x6f,0x80,0x0,0x0,0x0,0x0,0x3b,0xb7,0xb2,0x0,0x0,0x0,0x0, - 0x0,0x3c,0xa7,0xa3,0x0,0x0,0x0,0x0,0x0,0x3d,0x98,0xe5,0x80,0x0,0x0,0x0, - 0x0,0x3e,0x88,0xd6,0x80,0x0,0x0,0x0,0x0,0x3f,0x7a,0x19,0x0,0x0,0x0,0x0, - 0x0,0x40,0x6b,0x5b,0x80,0x0,0x0,0x0,0x0,0x41,0x5c,0x9e,0x0,0x0,0x0,0x0, - 0x0,0x42,0x4c,0x8f,0x0,0x0,0x0,0x0,0x0,0x43,0x3d,0xd1,0x80,0x0,0x0,0x0, - 0x0,0x44,0x2d,0xc2,0x80,0x0,0x0,0x0,0x0,0x45,0x1f,0x5,0x0,0x0,0x0,0x0, - 0x0,0x46,0xe,0xf6,0x0,0x0,0x0,0x0,0x0,0x47,0x0,0x38,0x80,0x0,0x1,0x2, - 0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x0,0x0,0x29,0xa4,0x0,0x0,0x0,0x0,0x29,0xa0,0x0,0x4, - 0x0,0x0,0x2a,0x30,0x0,0x8,0x0,0x0,0x38,0x40,0x1,0xc,0x0,0x0,0x2a,0x30, - 0x0,0x8,0x0,0x0,0x38,0x40,0x1,0xc,0x4c,0x4d,0x54,0x0,0x42,0x4d,0x54,0x0, - 0x41,0x53,0x54,0x0,0x41,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0, - 0x0,0x0,0x0,0x0,0xa,0x41,0x53,0x54,0x2d,0x33,0xa, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x4,0x0,0x0, + 0x29,0xa4,0x0,0x0,0x0,0x0,0x29,0xa0,0x0,0x4,0x0,0x0,0x2a,0x30,0x0,0x8, + 0x0,0x0,0x38,0x40,0x1,0xc,0x0,0x0,0x2a,0x30,0x0,0x8,0x0,0x0,0x38,0x40, + 0x1,0xc,0x4c,0x4d,0x54,0x0,0x42,0x4d,0x54,0x0,0x2b,0x30,0x33,0x0,0x2b,0x30, + 0x34,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a, + 0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x38,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x10,0xf8,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xff,0xff,0xff,0xff,0x69,0x86,0xb1,0xdc,0xff,0xff,0xff,0xff,0x9e,0x30, + 0x3c,0xe0,0x0,0x0,0x0,0x0,0x17,0x30,0x68,0x50,0x0,0x0,0x0,0x0,0x17,0xfa, + 0xf,0xc0,0x0,0x0,0x0,0x0,0x18,0xe8,0xbd,0x50,0x0,0x0,0x0,0x0,0x19,0xdb, + 0x43,0x40,0x0,0x0,0x0,0x0,0x1a,0xcc,0x93,0xd0,0x0,0x0,0x0,0x0,0x1b,0xbd, + 0xc8,0x40,0x0,0x0,0x0,0x0,0x1c,0xad,0xc7,0x50,0x0,0x0,0x0,0x0,0x1d,0x9c, + 0x74,0xe0,0x0,0x0,0x0,0x0,0x1e,0x8c,0x65,0xe0,0x0,0x0,0x0,0x0,0x1f,0x7c, + 0x56,0xe0,0x0,0x0,0x0,0x0,0x20,0x6c,0x47,0xe0,0x0,0x0,0x0,0x0,0x21,0x5c, + 0x38,0xe0,0x0,0x0,0x0,0x0,0x22,0x4c,0x29,0xe0,0x0,0x0,0x0,0x0,0x23,0x3c, + 0x1a,0xe0,0x0,0x0,0x0,0x0,0x24,0x2c,0xb,0xe0,0x0,0x0,0x0,0x0,0x25,0x1b, + 0xfc,0xe0,0x0,0x0,0x0,0x0,0x26,0xb,0xed,0xe0,0x0,0x0,0x0,0x0,0x27,0x5, + 0x19,0x60,0x0,0x0,0x0,0x0,0x27,0xf6,0x78,0x0,0x0,0x0,0x0,0x0,0x28,0xe7, + 0xba,0x80,0x0,0x0,0x0,0x0,0x29,0xd8,0xfd,0x0,0x0,0x0,0x0,0x0,0x2a,0xca, + 0x3f,0x80,0x0,0x0,0x0,0x0,0x2b,0xba,0x30,0x80,0x0,0x0,0x0,0x0,0x2c,0xab, + 0x73,0x0,0x0,0x0,0x0,0x0,0x2d,0x9b,0x64,0x0,0x0,0x0,0x0,0x0,0x2e,0x8c, + 0xa6,0x80,0x0,0x0,0x0,0x0,0x2f,0x7c,0x97,0x80,0x0,0x0,0x0,0x0,0x30,0x6d, + 0xda,0x0,0x0,0x0,0x0,0x0,0x31,0x5f,0x1c,0x80,0x0,0x0,0x0,0x0,0x32,0x50, + 0x5f,0x0,0x0,0x0,0x0,0x0,0x33,0x40,0x50,0x0,0x0,0x0,0x0,0x0,0x34,0x31, + 0x92,0x80,0x0,0x0,0x0,0x0,0x35,0x21,0x83,0x80,0x0,0x0,0x0,0x0,0x36,0x12, + 0xc6,0x0,0x0,0x0,0x0,0x0,0x37,0x2,0xb7,0x0,0x0,0x0,0x0,0x0,0x37,0xf3, + 0xf9,0x80,0x0,0x0,0x0,0x0,0x38,0xe5,0x3c,0x0,0x0,0x0,0x0,0x0,0x39,0xd6, + 0x7e,0x80,0x0,0x0,0x0,0x0,0x3a,0xc6,0x6f,0x80,0x0,0x0,0x0,0x0,0x3b,0xb7, + 0xb2,0x0,0x0,0x0,0x0,0x0,0x3c,0xa7,0xa3,0x0,0x0,0x0,0x0,0x0,0x3d,0x98, + 0xe5,0x80,0x0,0x0,0x0,0x0,0x3e,0x88,0xd6,0x80,0x0,0x0,0x0,0x0,0x3f,0x7a, + 0x19,0x0,0x0,0x0,0x0,0x0,0x40,0x6b,0x5b,0x80,0x0,0x0,0x0,0x0,0x41,0x5c, + 0x9e,0x0,0x0,0x0,0x0,0x0,0x42,0x4c,0x8f,0x0,0x0,0x0,0x0,0x0,0x43,0x3d, + 0xd1,0x80,0x0,0x0,0x0,0x0,0x44,0x2d,0xc2,0x80,0x0,0x0,0x0,0x0,0x45,0x1f, + 0x5,0x0,0x0,0x0,0x0,0x0,0x46,0xe,0xf6,0x0,0x0,0x0,0x0,0x0,0x47,0x0, + 0x38,0x80,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x4,0x0,0x0,0x29,0xa4,0x0,0x0,0x0,0x0,0x29,0xa0,0x0,0x4,0x0,0x0, + 0x2a,0x30,0x0,0x8,0x0,0x0,0x38,0x40,0x1,0xc,0x0,0x0,0x2a,0x30,0x0,0x8, + 0x0,0x0,0x38,0x40,0x1,0xc,0x4c,0x4d,0x54,0x0,0x42,0x4d,0x54,0x0,0x2b,0x30, + 0x33,0x0,0x2b,0x30,0x34,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0, + 0x0,0x0,0xa,0x3c,0x2b,0x30,0x33,0x3e,0x2d,0x33,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/Asia/Hebron 0x0,0x0,0x9,0x13, 0x54, @@ -44859,19 +46721,20 @@ static const unsigned char qt_resource_data[] = { 0x33,0x2e,0x35,0x2e,0x36,0x2f,0x31,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e,0x36,0x2f, 0x31,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/Asia/Kashgar - 0x0,0x0,0x0,0xab, + 0x0,0x0,0x0,0xbb, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0xb0, - 0xfe,0xba,0x64,0x0,0x1,0x0,0x0,0x52,0x1c,0x0,0x0,0x0,0x0,0x54,0x60,0x0, - 0x4,0x4c,0x4d,0x54,0x0,0x58,0x4a,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, - 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0xb0,0xfe,0xba,0x64,0x0,0x1,0x0,0x0,0x52,0x1c,0x0, - 0x0,0x0,0x0,0x54,0x60,0x0,0x4,0x4c,0x4d,0x54,0x0,0x58,0x4a,0x54,0x0,0x0, - 0x0,0x0,0x0,0xa,0x58,0x4a,0x54,0x2d,0x36,0xa, + 0x0,0x0,0x3,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0xb0, + 0xfe,0xba,0x64,0x7f,0xff,0xff,0xff,0x0,0x1,0x1,0x0,0x0,0x52,0x1c,0x0,0x0, + 0x0,0x0,0x54,0x60,0x0,0x4,0x4c,0x4d,0x54,0x0,0x2b,0x30,0x36,0x0,0x0,0x0, + 0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xb0,0xfe,0xba,0x64,0x0,0x0, + 0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x1,0x0,0x0,0x52,0x1c,0x0,0x0,0x0, + 0x0,0x54,0x60,0x0,0x4,0x4c,0x4d,0x54,0x0,0x2b,0x30,0x36,0x0,0x0,0x0,0x0, + 0x0,0xa,0x3c,0x2b,0x30,0x36,0x3e,0x2d,0x36,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/Asia/Ashkhabad 0x0,0x0,0x2,0x8b, 0x54, @@ -44917,50 +46780,50 @@ static const unsigned char qt_resource_data[] = { 0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xa,0x3c,0x2b,0x30,0x35,0x3e,0x2d,0x35,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/Asia/Kathmandu - 0x0,0x0,0x0,0xd4, + 0x0,0x0,0x0,0xee, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0xa1, - 0xf2,0x7d,0x84,0x1e,0x18,0x30,0xa8,0x0,0x1,0x2,0x0,0x0,0x4f,0xfc,0x0,0x0, - 0x0,0x0,0x4d,0x58,0x0,0x4,0x0,0x0,0x50,0xdc,0x0,0x8,0x4c,0x4d,0x54,0x0, - 0x49,0x53,0x54,0x0,0x4e,0x50,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a, - 0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0xf8,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xff,0xff,0xff,0xff,0xa1,0xf2,0x7d,0x84,0x0,0x0,0x0,0x0,0x1e,0x18, - 0x30,0xa8,0x0,0x1,0x2,0x0,0x0,0x4f,0xfc,0x0,0x0,0x0,0x0,0x4d,0x58,0x0, - 0x4,0x0,0x0,0x50,0xdc,0x0,0x8,0x4c,0x4d,0x54,0x0,0x49,0x53,0x54,0x0,0x4e, - 0x50,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x4e,0x50,0x54,0x2d,0x35,0x3a, - 0x34,0x35,0xa, + 0x0,0x0,0x4,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x10,0x80,0x0,0x0,0x0,0xa1, + 0xf2,0x7d,0x84,0x1e,0x18,0x30,0xa8,0x7f,0xff,0xff,0xff,0x0,0x1,0x2,0x2,0x0, + 0x0,0x4f,0xfc,0x0,0x0,0x0,0x0,0x4d,0x58,0x0,0x4,0x0,0x0,0x50,0xdc,0x0, + 0xa,0x4c,0x4d,0x54,0x0,0x2b,0x30,0x35,0x33,0x30,0x0,0x2b,0x30,0x35,0x34,0x35, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0, + 0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x3,0x0, + 0x0,0x0,0x10,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xa1, + 0xf2,0x7d,0x84,0x0,0x0,0x0,0x0,0x1e,0x18,0x30,0xa8,0x0,0x0,0x0,0x0,0x7f, + 0xff,0xff,0xff,0x0,0x1,0x2,0x2,0x0,0x0,0x4f,0xfc,0x0,0x0,0x0,0x0,0x4d, + 0x58,0x0,0x4,0x0,0x0,0x50,0xdc,0x0,0xa,0x4c,0x4d,0x54,0x0,0x2b,0x30,0x35, + 0x33,0x30,0x0,0x2b,0x30,0x35,0x34,0x35,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa, + 0x3c,0x2b,0x30,0x35,0x34,0x35,0x3e,0x2d,0x35,0x3a,0x34,0x35,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/Asia/Dacca - 0x0,0x0,0x1,0x86, + 0x0,0x0,0x1,0x72, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x8,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x1f,0x80,0x0,0x0,0x0,0xca, - 0xdb,0x86,0xb0,0xcc,0x5,0x71,0x18,0xcc,0x95,0x32,0xa8,0xdd,0xa8,0xd2,0x98,0x2, - 0x4f,0x9d,0x20,0x4a,0x3b,0xc4,0x10,0x4b,0x3c,0xd8,0x90,0x1,0x2,0x3,0x2,0x4, - 0x5,0x6,0x5,0x0,0x0,0x54,0xc4,0x0,0x0,0x0,0x0,0x52,0xd0,0x0,0x4,0x0, - 0x0,0x5b,0x68,0x0,0x8,0x0,0x0,0x4d,0x58,0x0,0xd,0x0,0x0,0x54,0x60,0x0, - 0x11,0x0,0x0,0x54,0x60,0x0,0x16,0x0,0x0,0x62,0x70,0x1,0x1a,0x4c,0x4d,0x54, - 0x0,0x48,0x4d,0x54,0x0,0x42,0x55,0x52,0x54,0x0,0x49,0x53,0x54,0x0,0x44,0x41, - 0x43,0x54,0x0,0x42,0x44,0x54,0x0,0x42,0x44,0x53,0x54,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9,0x0,0x0, - 0x0,0x7,0x0,0x0,0x0,0x1f,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff, - 0xff,0xff,0x69,0x86,0x86,0xbc,0xff,0xff,0xff,0xff,0xca,0xdb,0x86,0xb0,0xff,0xff, - 0xff,0xff,0xcc,0x5,0x71,0x18,0xff,0xff,0xff,0xff,0xcc,0x95,0x32,0xa8,0xff,0xff, - 0xff,0xff,0xdd,0xa8,0xd2,0x98,0x0,0x0,0x0,0x0,0x2,0x4f,0x9d,0x20,0x0,0x0, - 0x0,0x0,0x4a,0x3b,0xc4,0x10,0x0,0x0,0x0,0x0,0x4b,0x3c,0xd8,0x90,0x0,0x1, - 0x2,0x3,0x2,0x4,0x5,0x6,0x5,0x0,0x0,0x54,0xc4,0x0,0x0,0x0,0x0,0x52, - 0xd0,0x0,0x4,0x0,0x0,0x5b,0x68,0x0,0x8,0x0,0x0,0x4d,0x58,0x0,0xd,0x0, - 0x0,0x54,0x60,0x0,0x11,0x0,0x0,0x54,0x60,0x0,0x16,0x0,0x0,0x62,0x70,0x1, - 0x1a,0x4c,0x4d,0x54,0x0,0x48,0x4d,0x54,0x0,0x42,0x55,0x52,0x54,0x0,0x49,0x53, - 0x54,0x0,0x44,0x41,0x43,0x54,0x0,0x42,0x44,0x54,0x0,0x42,0x44,0x53,0x54,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x42, - 0x44,0x54,0x2d,0x36,0xa, + 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x8,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1c,0x80,0x0,0x0,0x0,0xca, + 0xdb,0x86,0xb0,0xcc,0x5,0x71,0x18,0xcc,0x95,0x32,0xa8,0xdd,0xa8,0xd2,0x98,0x4a, + 0x3b,0xc4,0x10,0x4b,0x3c,0xd8,0x90,0x7f,0xff,0xff,0xff,0x1,0x2,0x3,0x2,0x4, + 0x5,0x4,0x4,0x0,0x0,0x54,0xc4,0x0,0x0,0x0,0x0,0x52,0xd0,0x0,0x4,0x0, + 0x0,0x5b,0x68,0x0,0x8,0x0,0x0,0x4d,0x58,0x0,0xe,0x0,0x0,0x54,0x60,0x0, + 0x14,0x0,0x0,0x62,0x70,0x1,0x18,0x4c,0x4d,0x54,0x0,0x48,0x4d,0x54,0x0,0x2b, + 0x30,0x36,0x33,0x30,0x0,0x2b,0x30,0x35,0x33,0x30,0x0,0x2b,0x30,0x36,0x0,0x2b, + 0x30,0x37,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x9,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1c,0xf8,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x69,0x86,0x86,0xbc,0xff,0xff,0xff,0xff,0xca, + 0xdb,0x86,0xb0,0xff,0xff,0xff,0xff,0xcc,0x5,0x71,0x18,0xff,0xff,0xff,0xff,0xcc, + 0x95,0x32,0xa8,0xff,0xff,0xff,0xff,0xdd,0xa8,0xd2,0x98,0x0,0x0,0x0,0x0,0x4a, + 0x3b,0xc4,0x10,0x0,0x0,0x0,0x0,0x4b,0x3c,0xd8,0x90,0x0,0x0,0x0,0x0,0x7f, + 0xff,0xff,0xff,0x0,0x1,0x2,0x3,0x2,0x4,0x5,0x4,0x4,0x0,0x0,0x54,0xc4, + 0x0,0x0,0x0,0x0,0x52,0xd0,0x0,0x4,0x0,0x0,0x5b,0x68,0x0,0x8,0x0,0x0, + 0x4d,0x58,0x0,0xe,0x0,0x0,0x54,0x60,0x0,0x14,0x0,0x0,0x62,0x70,0x1,0x18, + 0x4c,0x4d,0x54,0x0,0x48,0x4d,0x54,0x0,0x2b,0x30,0x36,0x33,0x30,0x0,0x2b,0x30, + 0x35,0x33,0x30,0x0,0x2b,0x30,0x36,0x0,0x2b,0x30,0x37,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2b,0x30,0x36,0x3e,0x2d,0x36, + 0xa, // /home/konrad/src/smoke/tzone/zoneinfo/Asia/Kamchatka 0x0,0x0,0x4,0xae, 0x54, @@ -45164,27 +47027,28 @@ static const unsigned char qt_resource_data[] = { 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xa,0x3c,0x2b,0x30,0x35,0x3e,0x2d,0x35,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/Asia/Kolkata - 0x0,0x0,0x1,0x23, + 0x0,0x0,0x1,0x38, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x11,0x80,0x0,0x0,0x0,0xca, - 0xdb,0x86,0xb0,0xcc,0x5,0x71,0x18,0xcc,0x95,0x32,0xa8,0xd2,0x74,0x12,0x98,0x1, - 0x2,0x3,0x4,0x3,0x0,0x0,0x52,0xd8,0x0,0x0,0x0,0x0,0x52,0xd0,0x0,0x4, - 0x0,0x0,0x5b,0x68,0x0,0x8,0x0,0x0,0x4d,0x58,0x0,0xd,0x0,0x0,0x5b,0x68, - 0x1,0xd,0x4c,0x4d,0x54,0x0,0x48,0x4d,0x54,0x0,0x42,0x55,0x52,0x54,0x0,0x49, - 0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, - 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x6,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x11,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0x56,0xb6,0x91,0x28,0xff,0xff,0xff,0xff,0xca,0xdb,0x86, - 0xb0,0xff,0xff,0xff,0xff,0xcc,0x5,0x71,0x18,0xff,0xff,0xff,0xff,0xcc,0x95,0x32, - 0xa8,0xff,0xff,0xff,0xff,0xd2,0x74,0x12,0x98,0x0,0x1,0x2,0x3,0x4,0x3,0x0, - 0x0,0x52,0xd8,0x0,0x0,0x0,0x0,0x52,0xd0,0x0,0x4,0x0,0x0,0x5b,0x68,0x0, - 0x8,0x0,0x0,0x4d,0x58,0x0,0xd,0x0,0x0,0x5b,0x68,0x1,0xd,0x4c,0x4d,0x54, - 0x0,0x48,0x4d,0x54,0x0,0x42,0x55,0x52,0x54,0x0,0x49,0x53,0x54,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x49,0x53,0x54,0x2d,0x35,0x3a,0x33, - 0x30,0xa, + 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x12,0x80,0x0,0x0,0x0,0x87, + 0x9d,0xbc,0xba,0xca,0xdb,0x8c,0x28,0xcc,0x5,0x71,0x18,0xcc,0x95,0x32,0xa8,0xd2, + 0x74,0x12,0x98,0x1,0x2,0x3,0x2,0x3,0x2,0x0,0x0,0x52,0xd0,0x0,0x0,0x0, + 0x0,0x4b,0x46,0x0,0x4,0x0,0x0,0x4d,0x58,0x0,0x8,0x0,0x0,0x5b,0x68,0x1, + 0xc,0x48,0x4d,0x54,0x0,0x4d,0x4d,0x54,0x0,0x49,0x53,0x54,0x0,0x2b,0x30,0x36, + 0x33,0x30,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0, + 0x0,0x0,0x5,0x0,0x0,0x0,0x16,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff, + 0xff,0xff,0xff,0x26,0xba,0x18,0x28,0xff,0xff,0xff,0xff,0x43,0xe7,0xeb,0x30,0xff, + 0xff,0xff,0xff,0x87,0x9d,0xbc,0xba,0xff,0xff,0xff,0xff,0xca,0xdb,0x8c,0x28,0xff, + 0xff,0xff,0xff,0xcc,0x5,0x71,0x18,0xff,0xff,0xff,0xff,0xcc,0x95,0x32,0xa8,0xff, + 0xff,0xff,0xff,0xd2,0x74,0x12,0x98,0x0,0x1,0x2,0x3,0x4,0x3,0x4,0x3,0x0, + 0x0,0x52,0xd8,0x0,0x0,0x0,0x0,0x52,0xd0,0x0,0x4,0x0,0x0,0x4b,0x46,0x0, + 0x8,0x0,0x0,0x4d,0x58,0x0,0xc,0x0,0x0,0x5b,0x68,0x1,0x10,0x4c,0x4d,0x54, + 0x0,0x48,0x4d,0x54,0x0,0x4d,0x4d,0x54,0x0,0x49,0x53,0x54,0x0,0x2b,0x30,0x36, + 0x33,0x30,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x49,0x53, + 0x54,0x2d,0x35,0x3a,0x33,0x30,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/Asia/Chungking 0x0,0x0,0x1,0x9e, 0x54, @@ -45257,32 +47121,33 @@ static const unsigned char qt_resource_data[] = { 0x30,0x36,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xa,0x3c,0x2b,0x30,0x35,0x3e,0x2d,0x35,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/Asia/Ho_Chi_Minh - 0x0,0x0,0x1,0x75, + 0x0,0x0,0x1,0x85, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xa,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x80,0x0,0x0,0x0,0x88, + 0x0,0x0,0xb,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x80,0x0,0x0,0x0,0x88, 0x8c,0x43,0x80,0x91,0xa3,0x2b,0xa,0xcd,0x35,0xe6,0x80,0xd1,0x59,0xce,0x70,0xd2, 0x3b,0x3e,0xf0,0xd5,0x32,0xbb,0x10,0xe4,0xb6,0xe4,0x80,0xed,0x2f,0x98,0x0,0xa, - 0x3d,0xc7,0x0,0x0,0x1,0x2,0x3,0x4,0x2,0x3,0x2,0x3,0x2,0x0,0x0,0x64, - 0x0,0x0,0x0,0x0,0x0,0x63,0xf6,0x0,0x4,0x0,0x0,0x62,0x70,0x0,0x9,0x0, - 0x0,0x70,0x80,0x0,0xd,0x0,0x0,0x7e,0x90,0x0,0x11,0x0,0x0,0x62,0x70,0x0, - 0x9,0x4c,0x4d,0x54,0x0,0x50,0x4c,0x4d,0x54,0x0,0x49,0x43,0x54,0x0,0x49,0x44, - 0x54,0x0,0x4a,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0xf8,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x88,0x8c,0x43,0x80,0xff,0xff, - 0xff,0xff,0x91,0xa3,0x2b,0xa,0xff,0xff,0xff,0xff,0xcd,0x35,0xe6,0x80,0xff,0xff, - 0xff,0xff,0xd1,0x59,0xce,0x70,0xff,0xff,0xff,0xff,0xd2,0x3b,0x3e,0xf0,0xff,0xff, - 0xff,0xff,0xd5,0x32,0xbb,0x10,0xff,0xff,0xff,0xff,0xe4,0xb6,0xe4,0x80,0xff,0xff, - 0xff,0xff,0xed,0x2f,0x98,0x0,0x0,0x0,0x0,0x0,0xa,0x3d,0xc7,0x0,0x0,0x1, - 0x2,0x3,0x4,0x2,0x3,0x2,0x3,0x2,0x0,0x0,0x64,0x0,0x0,0x0,0x0,0x0, - 0x63,0xf6,0x0,0x4,0x0,0x0,0x62,0x70,0x0,0x9,0x0,0x0,0x70,0x80,0x0,0xd, - 0x0,0x0,0x7e,0x90,0x0,0x11,0x0,0x0,0x62,0x70,0x0,0x9,0x4c,0x4d,0x54,0x0, - 0x50,0x4c,0x4d,0x54,0x0,0x49,0x43,0x54,0x0,0x49,0x44,0x54,0x0,0x4a,0x53,0x54, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x49,0x43, - 0x54,0x2d,0x37,0xa, + 0x3d,0xc7,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x2,0x3,0x4,0x2,0x3,0x2,0x3, + 0x2,0x2,0x0,0x0,0x64,0x0,0x0,0x0,0x0,0x0,0x63,0xf6,0x0,0x4,0x0,0x0, + 0x62,0x70,0x0,0x9,0x0,0x0,0x70,0x80,0x0,0xd,0x0,0x0,0x7e,0x90,0x0,0x11, + 0x0,0x0,0x62,0x70,0x0,0x9,0x4c,0x4d,0x54,0x0,0x50,0x4c,0x4d,0x54,0x0,0x2b, + 0x30,0x37,0x0,0x2b,0x30,0x38,0x0,0x2b,0x30,0x39,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x15,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x88, + 0x8c,0x43,0x80,0xff,0xff,0xff,0xff,0x91,0xa3,0x2b,0xa,0xff,0xff,0xff,0xff,0xcd, + 0x35,0xe6,0x80,0xff,0xff,0xff,0xff,0xd1,0x59,0xce,0x70,0xff,0xff,0xff,0xff,0xd2, + 0x3b,0x3e,0xf0,0xff,0xff,0xff,0xff,0xd5,0x32,0xbb,0x10,0xff,0xff,0xff,0xff,0xe4, + 0xb6,0xe4,0x80,0xff,0xff,0xff,0xff,0xed,0x2f,0x98,0x0,0x0,0x0,0x0,0x0,0xa, + 0x3d,0xc7,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x2,0x3,0x4, + 0x2,0x3,0x2,0x3,0x2,0x2,0x0,0x0,0x64,0x0,0x0,0x0,0x0,0x0,0x63,0xf6, + 0x0,0x4,0x0,0x0,0x62,0x70,0x0,0x9,0x0,0x0,0x70,0x80,0x0,0xd,0x0,0x0, + 0x7e,0x90,0x0,0x11,0x0,0x0,0x62,0x70,0x0,0x9,0x4c,0x4d,0x54,0x0,0x50,0x4c, + 0x4d,0x54,0x0,0x2b,0x30,0x37,0x0,0x2b,0x30,0x38,0x0,0x2b,0x30,0x39,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2b,0x30,0x37, + 0x3e,0x2d,0x37,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/Asia/Nicosia 0x0,0x0,0x7,0xe0, 0x54, @@ -45413,22 +47278,23 @@ static const unsigned char qt_resource_data[] = { 0x1,0xa,0x45,0x45,0x54,0x2d,0x32,0x45,0x45,0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35, 0x2e,0x30,0x2f,0x33,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30,0x2f,0x34,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/Asia/Katmandu - 0x0,0x0,0x0,0xd4, + 0x0,0x0,0x0,0xee, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0xa1, - 0xf2,0x7d,0x84,0x1e,0x18,0x30,0xa8,0x0,0x1,0x2,0x0,0x0,0x4f,0xfc,0x0,0x0, - 0x0,0x0,0x4d,0x58,0x0,0x4,0x0,0x0,0x50,0xdc,0x0,0x8,0x4c,0x4d,0x54,0x0, - 0x49,0x53,0x54,0x0,0x4e,0x50,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a, - 0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0xf8,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xff,0xff,0xff,0xff,0xa1,0xf2,0x7d,0x84,0x0,0x0,0x0,0x0,0x1e,0x18, - 0x30,0xa8,0x0,0x1,0x2,0x0,0x0,0x4f,0xfc,0x0,0x0,0x0,0x0,0x4d,0x58,0x0, - 0x4,0x0,0x0,0x50,0xdc,0x0,0x8,0x4c,0x4d,0x54,0x0,0x49,0x53,0x54,0x0,0x4e, - 0x50,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x4e,0x50,0x54,0x2d,0x35,0x3a, - 0x34,0x35,0xa, + 0x0,0x0,0x4,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x10,0x80,0x0,0x0,0x0,0xa1, + 0xf2,0x7d,0x84,0x1e,0x18,0x30,0xa8,0x7f,0xff,0xff,0xff,0x0,0x1,0x2,0x2,0x0, + 0x0,0x4f,0xfc,0x0,0x0,0x0,0x0,0x4d,0x58,0x0,0x4,0x0,0x0,0x50,0xdc,0x0, + 0xa,0x4c,0x4d,0x54,0x0,0x2b,0x30,0x35,0x33,0x30,0x0,0x2b,0x30,0x35,0x34,0x35, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0, + 0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x3,0x0, + 0x0,0x0,0x10,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xa1, + 0xf2,0x7d,0x84,0x0,0x0,0x0,0x0,0x1e,0x18,0x30,0xa8,0x0,0x0,0x0,0x0,0x7f, + 0xff,0xff,0xff,0x0,0x1,0x2,0x2,0x0,0x0,0x4f,0xfc,0x0,0x0,0x0,0x0,0x4d, + 0x58,0x0,0x4,0x0,0x0,0x50,0xdc,0x0,0xa,0x4c,0x4d,0x54,0x0,0x2b,0x30,0x35, + 0x33,0x30,0x0,0x2b,0x30,0x35,0x34,0x35,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa, + 0x3c,0x2b,0x30,0x35,0x34,0x35,0x3e,0x2d,0x35,0x3a,0x34,0x35,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/Asia/Gaza 0x0,0x0,0x8,0xf7, 0x54, @@ -45577,33 +47443,32 @@ static const unsigned char qt_resource_data[] = { 0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x36,0x2f,0x31,0x2c,0x4d,0x31,0x30,0x2e, 0x35,0x2e,0x36,0x2f,0x31,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/Asia/Dhaka - 0x0,0x0,0x1,0x86, + 0x0,0x0,0x1,0x72, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x8,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x1f,0x80,0x0,0x0,0x0,0xca, - 0xdb,0x86,0xb0,0xcc,0x5,0x71,0x18,0xcc,0x95,0x32,0xa8,0xdd,0xa8,0xd2,0x98,0x2, - 0x4f,0x9d,0x20,0x4a,0x3b,0xc4,0x10,0x4b,0x3c,0xd8,0x90,0x1,0x2,0x3,0x2,0x4, - 0x5,0x6,0x5,0x0,0x0,0x54,0xc4,0x0,0x0,0x0,0x0,0x52,0xd0,0x0,0x4,0x0, - 0x0,0x5b,0x68,0x0,0x8,0x0,0x0,0x4d,0x58,0x0,0xd,0x0,0x0,0x54,0x60,0x0, - 0x11,0x0,0x0,0x54,0x60,0x0,0x16,0x0,0x0,0x62,0x70,0x1,0x1a,0x4c,0x4d,0x54, - 0x0,0x48,0x4d,0x54,0x0,0x42,0x55,0x52,0x54,0x0,0x49,0x53,0x54,0x0,0x44,0x41, - 0x43,0x54,0x0,0x42,0x44,0x54,0x0,0x42,0x44,0x53,0x54,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9,0x0,0x0, - 0x0,0x7,0x0,0x0,0x0,0x1f,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff, - 0xff,0xff,0x69,0x86,0x86,0xbc,0xff,0xff,0xff,0xff,0xca,0xdb,0x86,0xb0,0xff,0xff, - 0xff,0xff,0xcc,0x5,0x71,0x18,0xff,0xff,0xff,0xff,0xcc,0x95,0x32,0xa8,0xff,0xff, - 0xff,0xff,0xdd,0xa8,0xd2,0x98,0x0,0x0,0x0,0x0,0x2,0x4f,0x9d,0x20,0x0,0x0, - 0x0,0x0,0x4a,0x3b,0xc4,0x10,0x0,0x0,0x0,0x0,0x4b,0x3c,0xd8,0x90,0x0,0x1, - 0x2,0x3,0x2,0x4,0x5,0x6,0x5,0x0,0x0,0x54,0xc4,0x0,0x0,0x0,0x0,0x52, - 0xd0,0x0,0x4,0x0,0x0,0x5b,0x68,0x0,0x8,0x0,0x0,0x4d,0x58,0x0,0xd,0x0, - 0x0,0x54,0x60,0x0,0x11,0x0,0x0,0x54,0x60,0x0,0x16,0x0,0x0,0x62,0x70,0x1, - 0x1a,0x4c,0x4d,0x54,0x0,0x48,0x4d,0x54,0x0,0x42,0x55,0x52,0x54,0x0,0x49,0x53, - 0x54,0x0,0x44,0x41,0x43,0x54,0x0,0x42,0x44,0x54,0x0,0x42,0x44,0x53,0x54,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x42, - 0x44,0x54,0x2d,0x36,0xa, + 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x8,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1c,0x80,0x0,0x0,0x0,0xca, + 0xdb,0x86,0xb0,0xcc,0x5,0x71,0x18,0xcc,0x95,0x32,0xa8,0xdd,0xa8,0xd2,0x98,0x4a, + 0x3b,0xc4,0x10,0x4b,0x3c,0xd8,0x90,0x7f,0xff,0xff,0xff,0x1,0x2,0x3,0x2,0x4, + 0x5,0x4,0x4,0x0,0x0,0x54,0xc4,0x0,0x0,0x0,0x0,0x52,0xd0,0x0,0x4,0x0, + 0x0,0x5b,0x68,0x0,0x8,0x0,0x0,0x4d,0x58,0x0,0xe,0x0,0x0,0x54,0x60,0x0, + 0x14,0x0,0x0,0x62,0x70,0x1,0x18,0x4c,0x4d,0x54,0x0,0x48,0x4d,0x54,0x0,0x2b, + 0x30,0x36,0x33,0x30,0x0,0x2b,0x30,0x35,0x33,0x30,0x0,0x2b,0x30,0x36,0x0,0x2b, + 0x30,0x37,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x9,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1c,0xf8,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x69,0x86,0x86,0xbc,0xff,0xff,0xff,0xff,0xca, + 0xdb,0x86,0xb0,0xff,0xff,0xff,0xff,0xcc,0x5,0x71,0x18,0xff,0xff,0xff,0xff,0xcc, + 0x95,0x32,0xa8,0xff,0xff,0xff,0xff,0xdd,0xa8,0xd2,0x98,0x0,0x0,0x0,0x0,0x4a, + 0x3b,0xc4,0x10,0x0,0x0,0x0,0x0,0x4b,0x3c,0xd8,0x90,0x0,0x0,0x0,0x0,0x7f, + 0xff,0xff,0xff,0x0,0x1,0x2,0x3,0x2,0x4,0x5,0x4,0x4,0x0,0x0,0x54,0xc4, + 0x0,0x0,0x0,0x0,0x52,0xd0,0x0,0x4,0x0,0x0,0x5b,0x68,0x0,0x8,0x0,0x0, + 0x4d,0x58,0x0,0xe,0x0,0x0,0x54,0x60,0x0,0x14,0x0,0x0,0x62,0x70,0x1,0x18, + 0x4c,0x4d,0x54,0x0,0x48,0x4d,0x54,0x0,0x2b,0x30,0x36,0x33,0x30,0x0,0x2b,0x30, + 0x35,0x33,0x30,0x0,0x2b,0x30,0x36,0x0,0x2b,0x30,0x37,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2b,0x30,0x36,0x3e,0x2d,0x36, + 0xa, // /home/konrad/src/smoke/tzone/zoneinfo/Asia/Hong_Kong 0x0,0x0,0x4,0xa5, 0x54, @@ -45683,33 +47548,35 @@ static const unsigned char qt_resource_data[] = { 0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x48,0x4b, 0x54,0x2d,0x38,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/Asia/Kuala_Lumpur - 0x0,0x0,0x1,0x8e, + 0x0,0x0,0x1,0xa8, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x1b,0x80,0x0,0x0,0x0,0x86, + 0x0,0x0,0x9,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x20,0x80,0x0,0x0,0x0,0x86, 0x83,0x85,0xa3,0xba,0x67,0x4e,0x90,0xc0,0xa,0xe4,0x60,0xca,0xb3,0xe5,0x60,0xcb, - 0x91,0x5f,0x8,0xd2,0x48,0x6d,0xf0,0x16,0x91,0xf5,0x8,0x1,0x2,0x3,0x4,0x5, - 0x6,0x5,0x7,0x0,0x0,0x5f,0x56,0x0,0x0,0x0,0x0,0x61,0x5d,0x0,0x4,0x0, - 0x0,0x62,0x70,0x0,0x8,0x0,0x0,0x67,0x20,0x1,0xd,0x0,0x0,0x67,0x20,0x0, - 0x8,0x0,0x0,0x69,0x78,0x0,0x8,0x0,0x0,0x7e,0x90,0x0,0x13,0x0,0x0,0x70, - 0x80,0x0,0x17,0x4c,0x4d,0x54,0x0,0x53,0x4d,0x54,0x0,0x4d,0x41,0x4c,0x54,0x0, - 0x4d,0x41,0x4c,0x53,0x54,0x0,0x4a,0x53,0x54,0x0,0x4d,0x59,0x54,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a, - 0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x9,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x1b,0xf8,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xff,0xff,0xff,0xff,0x7e,0x36,0x55,0xaa,0xff,0xff,0xff,0xff,0x86,0x83, - 0x85,0xa3,0xff,0xff,0xff,0xff,0xba,0x67,0x4e,0x90,0xff,0xff,0xff,0xff,0xc0,0xa, - 0xe4,0x60,0xff,0xff,0xff,0xff,0xca,0xb3,0xe5,0x60,0xff,0xff,0xff,0xff,0xcb,0x91, - 0x5f,0x8,0xff,0xff,0xff,0xff,0xd2,0x48,0x6d,0xf0,0x0,0x0,0x0,0x0,0x16,0x91, - 0xf5,0x8,0x0,0x1,0x2,0x3,0x4,0x5,0x6,0x5,0x7,0x0,0x0,0x5f,0x56,0x0, - 0x0,0x0,0x0,0x61,0x5d,0x0,0x4,0x0,0x0,0x62,0x70,0x0,0x8,0x0,0x0,0x67, - 0x20,0x1,0xd,0x0,0x0,0x67,0x20,0x0,0x8,0x0,0x0,0x69,0x78,0x0,0x8,0x0, - 0x0,0x7e,0x90,0x0,0x13,0x0,0x0,0x70,0x80,0x0,0x17,0x4c,0x4d,0x54,0x0,0x53, - 0x4d,0x54,0x0,0x4d,0x41,0x4c,0x54,0x0,0x4d,0x41,0x4c,0x53,0x54,0x0,0x4a,0x53, - 0x54,0x0,0x4d,0x59,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x4d,0x59,0x54,0x2d,0x38,0xa, + 0x91,0x5f,0x8,0xd2,0x48,0x6d,0xf0,0x16,0x91,0xf5,0x8,0x7f,0xff,0xff,0xff,0x1, + 0x2,0x3,0x4,0x5,0x6,0x5,0x7,0x7,0x0,0x0,0x5f,0x56,0x0,0x0,0x0,0x0, + 0x61,0x5d,0x0,0x4,0x0,0x0,0x62,0x70,0x0,0x8,0x0,0x0,0x67,0x20,0x1,0xc, + 0x0,0x0,0x67,0x20,0x0,0xc,0x0,0x0,0x69,0x78,0x0,0x12,0x0,0x0,0x7e,0x90, + 0x0,0x18,0x0,0x0,0x70,0x80,0x0,0x1c,0x4c,0x4d,0x54,0x0,0x53,0x4d,0x54,0x0, + 0x2b,0x30,0x37,0x0,0x2b,0x30,0x37,0x32,0x30,0x0,0x2b,0x30,0x37,0x33,0x30,0x0, + 0x2b,0x30,0x39,0x0,0x2b,0x30,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8, + 0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x8, + 0x0,0x0,0x0,0x20,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0x7e,0x36,0x55,0xaa,0xff,0xff,0xff,0xff,0x86,0x83,0x85,0xa3,0xff,0xff,0xff,0xff, + 0xba,0x67,0x4e,0x90,0xff,0xff,0xff,0xff,0xc0,0xa,0xe4,0x60,0xff,0xff,0xff,0xff, + 0xca,0xb3,0xe5,0x60,0xff,0xff,0xff,0xff,0xcb,0x91,0x5f,0x8,0xff,0xff,0xff,0xff, + 0xd2,0x48,0x6d,0xf0,0x0,0x0,0x0,0x0,0x16,0x91,0xf5,0x8,0x0,0x0,0x0,0x0, + 0x7f,0xff,0xff,0xff,0x0,0x1,0x2,0x3,0x4,0x5,0x6,0x5,0x7,0x7,0x0,0x0, + 0x5f,0x56,0x0,0x0,0x0,0x0,0x61,0x5d,0x0,0x4,0x0,0x0,0x62,0x70,0x0,0x8, + 0x0,0x0,0x67,0x20,0x1,0xc,0x0,0x0,0x67,0x20,0x0,0xc,0x0,0x0,0x69,0x78, + 0x0,0x12,0x0,0x0,0x7e,0x90,0x0,0x18,0x0,0x0,0x70,0x80,0x0,0x1c,0x4c,0x4d, + 0x54,0x0,0x53,0x4d,0x54,0x0,0x2b,0x30,0x37,0x0,0x2b,0x30,0x37,0x32,0x30,0x0, + 0x2b,0x30,0x37,0x33,0x30,0x0,0x2b,0x30,0x39,0x0,0x2b,0x30,0x38,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c, + 0x2b,0x30,0x38,0x3e,0x2d,0x38,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/Asia/Chita 0x0,0x0,0x4,0xe9, 0x54, @@ -45793,28 +47660,29 @@ static const unsigned char qt_resource_data[] = { 0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa, 0x3c,0x2b,0x30,0x39,0x3e,0x2d,0x39,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/Asia/Thimbu - 0x0,0x0,0x0,0xd1, + 0x0,0x0,0x0,0xe5, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0xd5, - 0xe6,0x15,0x74,0x21,0x61,0x4d,0xa8,0x0,0x1,0x2,0x0,0x0,0x54,0xc,0x0,0x0, - 0x0,0x0,0x4d,0x58,0x0,0x4,0x0,0x0,0x54,0x60,0x0,0x8,0x4c,0x4d,0x54,0x0, - 0x49,0x53,0x54,0x0,0x42,0x54,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a, - 0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0xf8,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xff,0xff,0xff,0xff,0xd5,0xe6,0x15,0x74,0x0,0x0,0x0,0x0,0x21,0x61, - 0x4d,0xa8,0x0,0x1,0x2,0x0,0x0,0x54,0xc,0x0,0x0,0x0,0x0,0x4d,0x58,0x0, - 0x4,0x0,0x0,0x54,0x60,0x0,0x8,0x4c,0x4d,0x54,0x0,0x49,0x53,0x54,0x0,0x42, - 0x54,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x42,0x54,0x54,0x2d,0x36,0xa, - + 0x0,0x0,0x4,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xe,0x80,0x0,0x0,0x0,0xd5, + 0xe6,0x15,0x74,0x21,0x61,0x4d,0xa8,0x7f,0xff,0xff,0xff,0x0,0x1,0x2,0x2,0x0, + 0x0,0x54,0xc,0x0,0x0,0x0,0x0,0x4d,0x58,0x0,0x4,0x0,0x0,0x54,0x60,0x0, + 0xa,0x4c,0x4d,0x54,0x0,0x2b,0x30,0x35,0x33,0x30,0x0,0x2b,0x30,0x36,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0, + 0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x3,0x0,0x0,0x0, + 0xe,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xd5,0xe6,0x15, + 0x74,0x0,0x0,0x0,0x0,0x21,0x61,0x4d,0xa8,0x0,0x0,0x0,0x0,0x7f,0xff,0xff, + 0xff,0x0,0x1,0x2,0x2,0x0,0x0,0x54,0xc,0x0,0x0,0x0,0x0,0x4d,0x58,0x0, + 0x4,0x0,0x0,0x54,0x60,0x0,0xa,0x4c,0x4d,0x54,0x0,0x2b,0x30,0x35,0x33,0x30, + 0x0,0x2b,0x30,0x36,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2b,0x30,0x36, + 0x3e,0x2d,0x36,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/Asia/Ulan_Bator - 0x0,0x0,0x5,0xe9, + 0x0,0x0,0x3,0x99, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x5d,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0xf,0x80,0x0,0x0,0x0,0x86, + 0x0,0x0,0x34,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x10,0x80,0x0,0x0,0x0,0x86, 0xd3,0xee,0x4c,0xf,0xb,0xdc,0x90,0x18,0xe9,0xc8,0x80,0x19,0xda,0xfc,0xf0,0x1a, 0xcc,0x4d,0x80,0x1b,0xbc,0x30,0x70,0x1c,0xac,0x2f,0x80,0x1d,0x9c,0x12,0x70,0x1e, 0x8c,0x11,0x80,0x1f,0x7b,0xf4,0x70,0x20,0x6b,0xf3,0x80,0x21,0x5b,0xd6,0x70,0x22, @@ -45827,150 +47695,112 @@ static const unsigned char qt_resource_data[] = { 0xa4,0xab,0xa0,0x3d,0x94,0x8e,0x90,0x3e,0x84,0x8d,0xa0,0x3f,0x74,0x70,0x90,0x40, 0x64,0x6f,0xa0,0x41,0x54,0x52,0x90,0x42,0x44,0x51,0xa0,0x43,0x34,0x34,0x90,0x44, 0x24,0x33,0xa0,0x45,0x1d,0x51,0x10,0x55,0x15,0x9a,0xa0,0x56,0x5,0x61,0x70,0x56, - 0xf5,0x7c,0xa0,0x57,0xe5,0x43,0x70,0x58,0xd5,0x5e,0xa0,0x59,0xce,0x5f,0xf0,0x5a, - 0xbe,0x7b,0x20,0x5b,0xae,0x41,0xf0,0x5c,0x9e,0x5d,0x20,0x5d,0x8e,0x23,0xf0,0x5e, - 0x7e,0x3f,0x20,0x5f,0x6e,0x5,0xf0,0x60,0x5e,0x21,0x20,0x61,0x4d,0xe7,0xf0,0x62, - 0x3e,0x3,0x20,0x63,0x2d,0xc9,0xf0,0x64,0x1d,0xe5,0x20,0x65,0x16,0xe6,0x70,0x66, - 0x7,0x1,0xa0,0x66,0xf6,0xc8,0x70,0x67,0xe6,0xe3,0xa0,0x68,0xd6,0xaa,0x70,0x69, - 0xc6,0xc5,0xa0,0x6a,0xb6,0x8c,0x70,0x6b,0xa6,0xa7,0xa0,0x6c,0x96,0x6e,0x70,0x6d, - 0x86,0x89,0xa0,0x6e,0x7f,0x8a,0xf0,0x6f,0x6f,0xa6,0x20,0x70,0x5f,0x6c,0xf0,0x71, - 0x4f,0x88,0x20,0x72,0x3f,0x4e,0xf0,0x73,0x2f,0x6a,0x20,0x74,0x1f,0x30,0xf0,0x75, - 0xf,0x4c,0x20,0x75,0xff,0x12,0xf0,0x76,0xef,0x2e,0x20,0x77,0xde,0xf4,0xf0,0x78, - 0xcf,0x10,0x20,0x79,0xc8,0x11,0x70,0x7a,0xb8,0x2c,0xa0,0x7b,0xa7,0xf3,0x70,0x7c, - 0x98,0xe,0xa0,0x7d,0x87,0xd5,0x70,0x7e,0x77,0xf0,0xa0,0x7f,0x67,0xb7,0x70,0x0, - 0x1,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x0,0x0,0x64,0x34, - 0x0,0x0,0x0,0x0,0x62,0x70,0x0,0x4,0x0,0x0,0x7e,0x90,0x1,0x9,0x0,0x0, - 0x70,0x80,0x0,0x4,0x4c,0x4d,0x54,0x0,0x55,0x4c,0x41,0x54,0x0,0x55,0x4c,0x41, - 0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5d,0x0, - 0x0,0x0,0x4,0x0,0x0,0x0,0xf,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff, - 0xff,0xff,0xff,0x86,0xd3,0xee,0x4c,0x0,0x0,0x0,0x0,0xf,0xb,0xdc,0x90,0x0, - 0x0,0x0,0x0,0x18,0xe9,0xc8,0x80,0x0,0x0,0x0,0x0,0x19,0xda,0xfc,0xf0,0x0, - 0x0,0x0,0x0,0x1a,0xcc,0x4d,0x80,0x0,0x0,0x0,0x0,0x1b,0xbc,0x30,0x70,0x0, - 0x0,0x0,0x0,0x1c,0xac,0x2f,0x80,0x0,0x0,0x0,0x0,0x1d,0x9c,0x12,0x70,0x0, - 0x0,0x0,0x0,0x1e,0x8c,0x11,0x80,0x0,0x0,0x0,0x0,0x1f,0x7b,0xf4,0x70,0x0, - 0x0,0x0,0x0,0x20,0x6b,0xf3,0x80,0x0,0x0,0x0,0x0,0x21,0x5b,0xd6,0x70,0x0, - 0x0,0x0,0x0,0x22,0x4b,0xd5,0x80,0x0,0x0,0x0,0x0,0x23,0x3b,0xb8,0x70,0x0, - 0x0,0x0,0x0,0x24,0x2b,0xb7,0x80,0x0,0x0,0x0,0x0,0x25,0x1b,0x9a,0x70,0x0, - 0x0,0x0,0x0,0x26,0xb,0x99,0x80,0x0,0x0,0x0,0x0,0x27,0x4,0xb6,0xf0,0x0, - 0x0,0x0,0x0,0x27,0xf4,0xb6,0x0,0x0,0x0,0x0,0x0,0x28,0xe4,0x98,0xf0,0x0, - 0x0,0x0,0x0,0x29,0xd4,0x98,0x0,0x0,0x0,0x0,0x0,0x2a,0xc4,0x7a,0xf0,0x0, - 0x0,0x0,0x0,0x2b,0xb4,0x7a,0x0,0x0,0x0,0x0,0x0,0x2c,0xa4,0x5c,0xf0,0x0, - 0x0,0x0,0x0,0x2d,0x94,0x5c,0x0,0x0,0x0,0x0,0x0,0x2e,0x84,0x3e,0xf0,0x0, - 0x0,0x0,0x0,0x2f,0x74,0x3e,0x0,0x0,0x0,0x0,0x0,0x30,0x64,0x20,0xf0,0x0, - 0x0,0x0,0x0,0x31,0x5d,0x5a,0x80,0x0,0x0,0x0,0x0,0x32,0x4d,0x3d,0x70,0x0, - 0x0,0x0,0x0,0x33,0x3d,0x3c,0x80,0x0,0x0,0x0,0x0,0x34,0x2d,0x1f,0x70,0x0, - 0x0,0x0,0x0,0x35,0x1d,0x1e,0x80,0x0,0x0,0x0,0x0,0x36,0xd,0x1,0x70,0x0, - 0x0,0x0,0x0,0x3a,0xe9,0xb3,0xa0,0x0,0x0,0x0,0x0,0x3b,0xb4,0xac,0x90,0x0, - 0x0,0x0,0x0,0x3c,0xa4,0xab,0xa0,0x0,0x0,0x0,0x0,0x3d,0x94,0x8e,0x90,0x0, - 0x0,0x0,0x0,0x3e,0x84,0x8d,0xa0,0x0,0x0,0x0,0x0,0x3f,0x74,0x70,0x90,0x0, - 0x0,0x0,0x0,0x40,0x64,0x6f,0xa0,0x0,0x0,0x0,0x0,0x41,0x54,0x52,0x90,0x0, - 0x0,0x0,0x0,0x42,0x44,0x51,0xa0,0x0,0x0,0x0,0x0,0x43,0x34,0x34,0x90,0x0, - 0x0,0x0,0x0,0x44,0x24,0x33,0xa0,0x0,0x0,0x0,0x0,0x45,0x1d,0x51,0x10,0x0, - 0x0,0x0,0x0,0x55,0x15,0x9a,0xa0,0x0,0x0,0x0,0x0,0x56,0x5,0x61,0x70,0x0, - 0x0,0x0,0x0,0x56,0xf5,0x7c,0xa0,0x0,0x0,0x0,0x0,0x57,0xe5,0x43,0x70,0x0, - 0x0,0x0,0x0,0x58,0xd5,0x5e,0xa0,0x0,0x0,0x0,0x0,0x59,0xce,0x5f,0xf0,0x0, - 0x0,0x0,0x0,0x5a,0xbe,0x7b,0x20,0x0,0x0,0x0,0x0,0x5b,0xae,0x41,0xf0,0x0, - 0x0,0x0,0x0,0x5c,0x9e,0x5d,0x20,0x0,0x0,0x0,0x0,0x5d,0x8e,0x23,0xf0,0x0, - 0x0,0x0,0x0,0x5e,0x7e,0x3f,0x20,0x0,0x0,0x0,0x0,0x5f,0x6e,0x5,0xf0,0x0, - 0x0,0x0,0x0,0x60,0x5e,0x21,0x20,0x0,0x0,0x0,0x0,0x61,0x4d,0xe7,0xf0,0x0, - 0x0,0x0,0x0,0x62,0x3e,0x3,0x20,0x0,0x0,0x0,0x0,0x63,0x2d,0xc9,0xf0,0x0, - 0x0,0x0,0x0,0x64,0x1d,0xe5,0x20,0x0,0x0,0x0,0x0,0x65,0x16,0xe6,0x70,0x0, - 0x0,0x0,0x0,0x66,0x7,0x1,0xa0,0x0,0x0,0x0,0x0,0x66,0xf6,0xc8,0x70,0x0, - 0x0,0x0,0x0,0x67,0xe6,0xe3,0xa0,0x0,0x0,0x0,0x0,0x68,0xd6,0xaa,0x70,0x0, - 0x0,0x0,0x0,0x69,0xc6,0xc5,0xa0,0x0,0x0,0x0,0x0,0x6a,0xb6,0x8c,0x70,0x0, - 0x0,0x0,0x0,0x6b,0xa6,0xa7,0xa0,0x0,0x0,0x0,0x0,0x6c,0x96,0x6e,0x70,0x0, - 0x0,0x0,0x0,0x6d,0x86,0x89,0xa0,0x0,0x0,0x0,0x0,0x6e,0x7f,0x8a,0xf0,0x0, - 0x0,0x0,0x0,0x6f,0x6f,0xa6,0x20,0x0,0x0,0x0,0x0,0x70,0x5f,0x6c,0xf0,0x0, - 0x0,0x0,0x0,0x71,0x4f,0x88,0x20,0x0,0x0,0x0,0x0,0x72,0x3f,0x4e,0xf0,0x0, - 0x0,0x0,0x0,0x73,0x2f,0x6a,0x20,0x0,0x0,0x0,0x0,0x74,0x1f,0x30,0xf0,0x0, - 0x0,0x0,0x0,0x75,0xf,0x4c,0x20,0x0,0x0,0x0,0x0,0x75,0xff,0x12,0xf0,0x0, - 0x0,0x0,0x0,0x76,0xef,0x2e,0x20,0x0,0x0,0x0,0x0,0x77,0xde,0xf4,0xf0,0x0, - 0x0,0x0,0x0,0x78,0xcf,0x10,0x20,0x0,0x0,0x0,0x0,0x79,0xc8,0x11,0x70,0x0, - 0x0,0x0,0x0,0x7a,0xb8,0x2c,0xa0,0x0,0x0,0x0,0x0,0x7b,0xa7,0xf3,0x70,0x0, - 0x0,0x0,0x0,0x7c,0x98,0xe,0xa0,0x0,0x0,0x0,0x0,0x7d,0x87,0xd5,0x70,0x0, - 0x0,0x0,0x0,0x7e,0x77,0xf0,0xa0,0x0,0x0,0x0,0x0,0x7f,0x67,0xb7,0x70,0x0, - 0x1,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0xf5,0x7c,0xa0,0x57,0xe5,0x43,0x70,0x7f,0xff,0xff,0xff,0x0,0x1,0x3,0x2,0x3, 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x0,0x0,0x64,0x34, - 0x0,0x0,0x0,0x0,0x62,0x70,0x0,0x4,0x0,0x0,0x7e,0x90,0x1,0x9,0x0,0x0, - 0x70,0x80,0x0,0x4,0x4c,0x4d,0x54,0x0,0x55,0x4c,0x41,0x54,0x0,0x55,0x4c,0x41, - 0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x55,0x4c,0x41,0x54, - 0x2d,0x38,0x55,0x4c,0x41,0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x36,0x2c,0x4d, - 0x39,0x2e,0x35,0x2e,0x36,0x2f,0x30,0xa, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x3,0x0, + 0x0,0x64,0x34,0x0,0x0,0x0,0x0,0x62,0x70,0x0,0x4,0x0,0x0,0x7e,0x90,0x1, + 0x8,0x0,0x0,0x70,0x80,0x0,0xc,0x4c,0x4d,0x54,0x0,0x2b,0x30,0x37,0x0,0x2b, + 0x30,0x39,0x0,0x2b,0x30,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x34,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x10,0xf8,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x86,0xd3,0xee,0x4c,0x0,0x0,0x0,0x0,0xf, + 0xb,0xdc,0x90,0x0,0x0,0x0,0x0,0x18,0xe9,0xc8,0x80,0x0,0x0,0x0,0x0,0x19, + 0xda,0xfc,0xf0,0x0,0x0,0x0,0x0,0x1a,0xcc,0x4d,0x80,0x0,0x0,0x0,0x0,0x1b, + 0xbc,0x30,0x70,0x0,0x0,0x0,0x0,0x1c,0xac,0x2f,0x80,0x0,0x0,0x0,0x0,0x1d, + 0x9c,0x12,0x70,0x0,0x0,0x0,0x0,0x1e,0x8c,0x11,0x80,0x0,0x0,0x0,0x0,0x1f, + 0x7b,0xf4,0x70,0x0,0x0,0x0,0x0,0x20,0x6b,0xf3,0x80,0x0,0x0,0x0,0x0,0x21, + 0x5b,0xd6,0x70,0x0,0x0,0x0,0x0,0x22,0x4b,0xd5,0x80,0x0,0x0,0x0,0x0,0x23, + 0x3b,0xb8,0x70,0x0,0x0,0x0,0x0,0x24,0x2b,0xb7,0x80,0x0,0x0,0x0,0x0,0x25, + 0x1b,0x9a,0x70,0x0,0x0,0x0,0x0,0x26,0xb,0x99,0x80,0x0,0x0,0x0,0x0,0x27, + 0x4,0xb6,0xf0,0x0,0x0,0x0,0x0,0x27,0xf4,0xb6,0x0,0x0,0x0,0x0,0x0,0x28, + 0xe4,0x98,0xf0,0x0,0x0,0x0,0x0,0x29,0xd4,0x98,0x0,0x0,0x0,0x0,0x0,0x2a, + 0xc4,0x7a,0xf0,0x0,0x0,0x0,0x0,0x2b,0xb4,0x7a,0x0,0x0,0x0,0x0,0x0,0x2c, + 0xa4,0x5c,0xf0,0x0,0x0,0x0,0x0,0x2d,0x94,0x5c,0x0,0x0,0x0,0x0,0x0,0x2e, + 0x84,0x3e,0xf0,0x0,0x0,0x0,0x0,0x2f,0x74,0x3e,0x0,0x0,0x0,0x0,0x0,0x30, + 0x64,0x20,0xf0,0x0,0x0,0x0,0x0,0x31,0x5d,0x5a,0x80,0x0,0x0,0x0,0x0,0x32, + 0x4d,0x3d,0x70,0x0,0x0,0x0,0x0,0x33,0x3d,0x3c,0x80,0x0,0x0,0x0,0x0,0x34, + 0x2d,0x1f,0x70,0x0,0x0,0x0,0x0,0x35,0x1d,0x1e,0x80,0x0,0x0,0x0,0x0,0x36, + 0xd,0x1,0x70,0x0,0x0,0x0,0x0,0x3a,0xe9,0xb3,0xa0,0x0,0x0,0x0,0x0,0x3b, + 0xb4,0xac,0x90,0x0,0x0,0x0,0x0,0x3c,0xa4,0xab,0xa0,0x0,0x0,0x0,0x0,0x3d, + 0x94,0x8e,0x90,0x0,0x0,0x0,0x0,0x3e,0x84,0x8d,0xa0,0x0,0x0,0x0,0x0,0x3f, + 0x74,0x70,0x90,0x0,0x0,0x0,0x0,0x40,0x64,0x6f,0xa0,0x0,0x0,0x0,0x0,0x41, + 0x54,0x52,0x90,0x0,0x0,0x0,0x0,0x42,0x44,0x51,0xa0,0x0,0x0,0x0,0x0,0x43, + 0x34,0x34,0x90,0x0,0x0,0x0,0x0,0x44,0x24,0x33,0xa0,0x0,0x0,0x0,0x0,0x45, + 0x1d,0x51,0x10,0x0,0x0,0x0,0x0,0x55,0x15,0x9a,0xa0,0x0,0x0,0x0,0x0,0x56, + 0x5,0x61,0x70,0x0,0x0,0x0,0x0,0x56,0xf5,0x7c,0xa0,0x0,0x0,0x0,0x0,0x57, + 0xe5,0x43,0x70,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x3,0x0, + 0x0,0x64,0x34,0x0,0x0,0x0,0x0,0x62,0x70,0x0,0x4,0x0,0x0,0x7e,0x90,0x1, + 0x8,0x0,0x0,0x70,0x80,0x0,0xc,0x4c,0x4d,0x54,0x0,0x2b,0x30,0x37,0x0,0x2b, + 0x30,0x39,0x0,0x2b,0x30,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa, + 0x3c,0x2b,0x30,0x38,0x3e,0x2d,0x38,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/Asia/Vientiane - 0x0,0x0,0x0,0xcc, + 0x0,0x0,0x0,0xdc, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0xa2, - 0x6a,0x67,0xc4,0x1,0x2,0x0,0x0,0x5e,0x3c,0x0,0x0,0x0,0x0,0x5e,0x3c,0x0, - 0x4,0x0,0x0,0x62,0x70,0x0,0x8,0x4c,0x4d,0x54,0x0,0x42,0x4d,0x54,0x0,0x49, - 0x43,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0, - 0x3,0x0,0x0,0x0,0xc,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff, - 0xff,0x56,0xb6,0x85,0xc4,0xff,0xff,0xff,0xff,0xa2,0x6a,0x67,0xc4,0x0,0x1,0x2, - 0x0,0x0,0x5e,0x3c,0x0,0x0,0x0,0x0,0x5e,0x3c,0x0,0x4,0x0,0x0,0x62,0x70, - 0x0,0x8,0x4c,0x4d,0x54,0x0,0x42,0x4d,0x54,0x0,0x49,0x43,0x54,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0xa,0x49,0x43,0x54,0x2d,0x37,0xa, + 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0xa2, + 0x6a,0x67,0xc4,0x7f,0xff,0xff,0xff,0x1,0x2,0x2,0x0,0x0,0x5e,0x3c,0x0,0x0, + 0x0,0x0,0x5e,0x3c,0x0,0x4,0x0,0x0,0x62,0x70,0x0,0x8,0x4c,0x4d,0x54,0x0, + 0x42,0x4d,0x54,0x0,0x2b,0x30,0x37,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a, + 0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x4,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0xf8,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xff,0xff,0xff,0xff,0x56,0xb6,0x85,0xc4,0xff,0xff,0xff,0xff,0xa2,0x6a, + 0x67,0xc4,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x2,0x2,0x0,0x0, + 0x5e,0x3c,0x0,0x0,0x0,0x0,0x5e,0x3c,0x0,0x4,0x0,0x0,0x62,0x70,0x0,0x8, + 0x4c,0x4d,0x54,0x0,0x42,0x4d,0x54,0x0,0x2b,0x30,0x37,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xa,0x3c,0x2b,0x30,0x37,0x3e,0x2d,0x37,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/Asia/Calcutta - 0x0,0x0,0x1,0x23, + 0x0,0x0,0x1,0x38, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x11,0x80,0x0,0x0,0x0,0xca, - 0xdb,0x86,0xb0,0xcc,0x5,0x71,0x18,0xcc,0x95,0x32,0xa8,0xd2,0x74,0x12,0x98,0x1, - 0x2,0x3,0x4,0x3,0x0,0x0,0x52,0xd8,0x0,0x0,0x0,0x0,0x52,0xd0,0x0,0x4, - 0x0,0x0,0x5b,0x68,0x0,0x8,0x0,0x0,0x4d,0x58,0x0,0xd,0x0,0x0,0x5b,0x68, - 0x1,0xd,0x4c,0x4d,0x54,0x0,0x48,0x4d,0x54,0x0,0x42,0x55,0x52,0x54,0x0,0x49, - 0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, - 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x6,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x11,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0x56,0xb6,0x91,0x28,0xff,0xff,0xff,0xff,0xca,0xdb,0x86, - 0xb0,0xff,0xff,0xff,0xff,0xcc,0x5,0x71,0x18,0xff,0xff,0xff,0xff,0xcc,0x95,0x32, - 0xa8,0xff,0xff,0xff,0xff,0xd2,0x74,0x12,0x98,0x0,0x1,0x2,0x3,0x4,0x3,0x0, - 0x0,0x52,0xd8,0x0,0x0,0x0,0x0,0x52,0xd0,0x0,0x4,0x0,0x0,0x5b,0x68,0x0, - 0x8,0x0,0x0,0x4d,0x58,0x0,0xd,0x0,0x0,0x5b,0x68,0x1,0xd,0x4c,0x4d,0x54, - 0x0,0x48,0x4d,0x54,0x0,0x42,0x55,0x52,0x54,0x0,0x49,0x53,0x54,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x49,0x53,0x54,0x2d,0x35,0x3a,0x33, - 0x30,0xa, + 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x12,0x80,0x0,0x0,0x0,0x87, + 0x9d,0xbc,0xba,0xca,0xdb,0x8c,0x28,0xcc,0x5,0x71,0x18,0xcc,0x95,0x32,0xa8,0xd2, + 0x74,0x12,0x98,0x1,0x2,0x3,0x2,0x3,0x2,0x0,0x0,0x52,0xd0,0x0,0x0,0x0, + 0x0,0x4b,0x46,0x0,0x4,0x0,0x0,0x4d,0x58,0x0,0x8,0x0,0x0,0x5b,0x68,0x1, + 0xc,0x48,0x4d,0x54,0x0,0x4d,0x4d,0x54,0x0,0x49,0x53,0x54,0x0,0x2b,0x30,0x36, + 0x33,0x30,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0, + 0x0,0x0,0x5,0x0,0x0,0x0,0x16,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff, + 0xff,0xff,0xff,0x26,0xba,0x18,0x28,0xff,0xff,0xff,0xff,0x43,0xe7,0xeb,0x30,0xff, + 0xff,0xff,0xff,0x87,0x9d,0xbc,0xba,0xff,0xff,0xff,0xff,0xca,0xdb,0x8c,0x28,0xff, + 0xff,0xff,0xff,0xcc,0x5,0x71,0x18,0xff,0xff,0xff,0xff,0xcc,0x95,0x32,0xa8,0xff, + 0xff,0xff,0xff,0xd2,0x74,0x12,0x98,0x0,0x1,0x2,0x3,0x4,0x3,0x4,0x3,0x0, + 0x0,0x52,0xd8,0x0,0x0,0x0,0x0,0x52,0xd0,0x0,0x4,0x0,0x0,0x4b,0x46,0x0, + 0x8,0x0,0x0,0x4d,0x58,0x0,0xc,0x0,0x0,0x5b,0x68,0x1,0x10,0x4c,0x4d,0x54, + 0x0,0x48,0x4d,0x54,0x0,0x4d,0x4d,0x54,0x0,0x49,0x53,0x54,0x0,0x2b,0x30,0x36, + 0x33,0x30,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x49,0x53, + 0x54,0x2d,0x35,0x3a,0x33,0x30,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/Asia/Tokyo - 0x0,0x0,0x1,0x63, + 0x0,0x0,0x1,0x3e, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xa,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0xc3, - 0x55,0x3b,0x70,0xd7,0x3e,0x1e,0x90,0xd7,0xec,0x16,0x80,0xd8,0xf9,0x16,0x90,0xd9, - 0xcb,0xf8,0x80,0xdb,0x7,0x1d,0x10,0xdb,0xab,0xda,0x80,0xdc,0xe6,0xff,0x10,0xdd, - 0x8b,0xbc,0x80,0x1,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x0,0x0,0x7e, - 0x90,0x0,0x0,0x0,0x0,0x7e,0x90,0x0,0x4,0x0,0x0,0x8c,0xa0,0x1,0x9,0x0, - 0x0,0x7e,0x90,0x0,0x0,0x4a,0x53,0x54,0x0,0x4a,0x43,0x53,0x54,0x0,0x4a,0x44, - 0x54,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc,0x0,0x0, - 0x0,0x5,0x0,0x0,0x0,0x11,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff, - 0xff,0xff,0x65,0xc2,0xa4,0x70,0xff,0xff,0xff,0xff,0x74,0xce,0xe3,0x70,0xff,0xff, - 0xff,0xff,0xc3,0x55,0x3b,0x70,0xff,0xff,0xff,0xff,0xd7,0x3e,0x1e,0x90,0xff,0xff, - 0xff,0xff,0xd7,0xec,0x16,0x80,0xff,0xff,0xff,0xff,0xd8,0xf9,0x16,0x90,0xff,0xff, - 0xff,0xff,0xd9,0xcb,0xf8,0x80,0xff,0xff,0xff,0xff,0xdb,0x7,0x1d,0x10,0xff,0xff, - 0xff,0xff,0xdb,0xab,0xda,0x80,0xff,0xff,0xff,0xff,0xdc,0xe6,0xff,0x10,0xff,0xff, - 0xff,0xff,0xdd,0x8b,0xbc,0x80,0x0,0x1,0x2,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x0,0x0,0x83,0x3,0x0,0x0,0x0,0x0,0x7e,0x90,0x0,0x4,0x0,0x0, - 0x7e,0x90,0x0,0x8,0x0,0x0,0x8c,0xa0,0x1,0xd,0x0,0x0,0x7e,0x90,0x0,0x4, - 0x4c,0x4d,0x54,0x0,0x4a,0x53,0x54,0x0,0x4a,0x43,0x53,0x54,0x0,0x4a,0x44,0x54, - 0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0xa,0x4a,0x53,0x54,0x2d, - 0x39,0xa, + 0x0,0x0,0x9,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0xd7, + 0x3e,0x1e,0x90,0xd7,0xec,0x16,0x80,0xd8,0xf9,0x16,0x90,0xd9,0xcb,0xf8,0x80,0xdb, + 0x7,0x1d,0x10,0xdb,0xab,0xda,0x80,0xdc,0xe6,0xff,0x10,0xdd,0x8b,0xbc,0x80,0x3, + 0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x0,0x0,0x83,0x3,0x0,0x0,0x0,0x0, + 0x8c,0xa0,0x1,0x4,0x0,0x0,0x7e,0x90,0x0,0x8,0x0,0x0,0x7e,0x90,0x0,0x8, + 0x4c,0x4d,0x54,0x0,0x4a,0x44,0x54,0x0,0x4a,0x53,0x54,0x0,0x0,0x0,0x0,0x1, + 0x0,0x0,0x0,0x1,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0xc, + 0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x65,0xc2,0xa4,0x70, + 0xff,0xff,0xff,0xff,0xd7,0x3e,0x1e,0x90,0xff,0xff,0xff,0xff,0xd7,0xec,0x16,0x80, + 0xff,0xff,0xff,0xff,0xd8,0xf9,0x16,0x90,0xff,0xff,0xff,0xff,0xd9,0xcb,0xf8,0x80, + 0xff,0xff,0xff,0xff,0xdb,0x7,0x1d,0x10,0xff,0xff,0xff,0xff,0xdb,0xab,0xda,0x80, + 0xff,0xff,0xff,0xff,0xdc,0xe6,0xff,0x10,0xff,0xff,0xff,0xff,0xdd,0x8b,0xbc,0x80, + 0x0,0x3,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x0,0x0,0x83,0x3,0x0,0x0, + 0x0,0x0,0x8c,0xa0,0x1,0x4,0x0,0x0,0x7e,0x90,0x0,0x8,0x0,0x0,0x7e,0x90, + 0x0,0x8,0x4c,0x4d,0x54,0x0,0x4a,0x44,0x54,0x0,0x4a,0x53,0x54,0x0,0x0,0x0, + 0x0,0x1,0x0,0x0,0x0,0x1,0xa,0x4a,0x53,0x54,0x2d,0x39,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/Asia/Magadan 0x0,0x0,0x4,0xea, 0x54, @@ -46217,12 +48047,12 @@ static const unsigned char qt_resource_data[] = { 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2b,0x31,0x31,0x3e,0x2d,0x31,0x31, 0xa, // /home/konrad/src/smoke/tzone/zoneinfo/Asia/Oral - 0x0,0x0,0x4,0x7, + 0x0,0x0,0x4,0xf, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x35,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x10,0x80,0x0,0x0,0x0,0xaa, - 0x19,0x93,0xdc,0xb5,0xa3,0xfd,0x40,0x15,0x27,0x8b,0xb0,0x16,0x18,0xc0,0x20,0x17, + 0x0,0x0,0x35,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0xaa, + 0x19,0x93,0xdc,0xb5,0xa4,0xb,0x50,0x15,0x27,0x8b,0xb0,0x16,0x18,0xc0,0x20,0x17, 0x8,0xb1,0x20,0x17,0xf9,0xf3,0xa0,0x18,0xe9,0xf2,0xb0,0x19,0xdb,0x27,0x20,0x1a, 0xcc,0x77,0xb0,0x1b,0xbc,0x84,0xd0,0x1c,0xac,0x75,0xd0,0x1d,0x9c,0x66,0xd0,0x1e, 0x8c,0x57,0xd0,0x1f,0x7c,0x48,0xd0,0x20,0x6c,0x39,0xd0,0x21,0x5c,0x2a,0xd0,0x22, @@ -46238,52 +48068,52 @@ static const unsigned char qt_resource_data[] = { 0x1,0x2,0x3,0x4,0x3,0x2,0x3,0x2,0x3,0x5,0x6,0x5,0x6,0x5,0x6,0x5, 0x6,0x5,0x7,0x8,0x7,0x8,0x7,0x8,0x5,0x7,0x8,0x7,0x8,0x7,0x8,0x7, 0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7, - 0x8,0x7,0x5,0x5,0x0,0x0,0x30,0x24,0x0,0x0,0x0,0x0,0x38,0x40,0x0,0x4, + 0x8,0x7,0x5,0x5,0x0,0x0,0x30,0x24,0x0,0x0,0x0,0x0,0x2a,0x30,0x0,0x4, 0x0,0x0,0x46,0x50,0x0,0x8,0x0,0x0,0x54,0x60,0x1,0xc,0x0,0x0,0x54,0x60, 0x0,0xc,0x0,0x0,0x46,0x50,0x0,0x8,0x0,0x0,0x54,0x60,0x1,0xc,0x0,0x0, - 0x46,0x50,0x1,0x8,0x0,0x0,0x38,0x40,0x0,0x4,0x0,0x0,0x46,0x50,0x0,0x8, - 0x4c,0x4d,0x54,0x0,0x2b,0x30,0x34,0x0,0x2b,0x30,0x35,0x0,0x2b,0x30,0x36,0x0, - 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0xa, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x35,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x10, - 0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xaa,0x19,0x93,0xdc, - 0xff,0xff,0xff,0xff,0xb5,0xa3,0xfd,0x40,0x0,0x0,0x0,0x0,0x15,0x27,0x8b,0xb0, - 0x0,0x0,0x0,0x0,0x16,0x18,0xc0,0x20,0x0,0x0,0x0,0x0,0x17,0x8,0xb1,0x20, - 0x0,0x0,0x0,0x0,0x17,0xf9,0xf3,0xa0,0x0,0x0,0x0,0x0,0x18,0xe9,0xf2,0xb0, - 0x0,0x0,0x0,0x0,0x19,0xdb,0x27,0x20,0x0,0x0,0x0,0x0,0x1a,0xcc,0x77,0xb0, - 0x0,0x0,0x0,0x0,0x1b,0xbc,0x84,0xd0,0x0,0x0,0x0,0x0,0x1c,0xac,0x75,0xd0, - 0x0,0x0,0x0,0x0,0x1d,0x9c,0x66,0xd0,0x0,0x0,0x0,0x0,0x1e,0x8c,0x57,0xd0, - 0x0,0x0,0x0,0x0,0x1f,0x7c,0x48,0xd0,0x0,0x0,0x0,0x0,0x20,0x6c,0x39,0xd0, - 0x0,0x0,0x0,0x0,0x21,0x5c,0x2a,0xd0,0x0,0x0,0x0,0x0,0x22,0x4c,0x1b,0xd0, - 0x0,0x0,0x0,0x0,0x23,0x3c,0xc,0xd0,0x0,0x0,0x0,0x0,0x24,0x2b,0xfd,0xd0, - 0x0,0x0,0x0,0x0,0x25,0x1b,0xfc,0xe0,0x0,0x0,0x0,0x0,0x26,0xb,0xed,0xe0, - 0x0,0x0,0x0,0x0,0x27,0x5,0x19,0x60,0x0,0x0,0x0,0x0,0x27,0xf5,0xa,0x60, - 0x0,0x0,0x0,0x0,0x28,0xe4,0xfb,0x60,0x0,0x0,0x0,0x0,0x29,0x78,0xa3,0x60, - 0x0,0x0,0x0,0x0,0x29,0xd4,0xde,0x50,0x0,0x0,0x0,0x0,0x2a,0xc4,0xdd,0x60, - 0x0,0x0,0x0,0x0,0x2b,0xb4,0xce,0x60,0x0,0x0,0x0,0x0,0x2c,0xa4,0xbf,0x60, - 0x0,0x0,0x0,0x0,0x2d,0x94,0xb0,0x60,0x0,0x0,0x0,0x0,0x2e,0x84,0xa1,0x60, - 0x0,0x0,0x0,0x0,0x2f,0x74,0x92,0x60,0x0,0x0,0x0,0x0,0x30,0x64,0x83,0x60, - 0x0,0x0,0x0,0x0,0x31,0x5d,0xae,0xe0,0x0,0x0,0x0,0x0,0x32,0x72,0x89,0xe0, - 0x0,0x0,0x0,0x0,0x33,0x3d,0x90,0xe0,0x0,0x0,0x0,0x0,0x34,0x52,0x6b,0xe0, - 0x0,0x0,0x0,0x0,0x35,0x1d,0x72,0xe0,0x0,0x0,0x0,0x0,0x36,0x32,0x4d,0xe0, - 0x0,0x0,0x0,0x0,0x36,0xfd,0x54,0xe0,0x0,0x0,0x0,0x0,0x38,0x1b,0x6a,0x60, - 0x0,0x0,0x0,0x0,0x38,0xdd,0x36,0xe0,0x0,0x0,0x0,0x0,0x39,0xfb,0x4c,0x60, - 0x0,0x0,0x0,0x0,0x3a,0xbd,0x18,0xe0,0x0,0x0,0x0,0x0,0x3b,0xdb,0x2e,0x60, - 0x0,0x0,0x0,0x0,0x3c,0xa6,0x35,0x60,0x0,0x0,0x0,0x0,0x3d,0xbb,0x10,0x60, - 0x0,0x0,0x0,0x0,0x3e,0x86,0x17,0x60,0x0,0x0,0x0,0x0,0x3f,0x9a,0xf2,0x60, - 0x0,0x0,0x0,0x0,0x40,0x65,0xf9,0x60,0x0,0x0,0x0,0x0,0x41,0x84,0xe,0xe0, - 0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x2,0x3,0x4,0x3,0x2,0x3, - 0x2,0x3,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x7,0x8,0x7,0x8,0x7, - 0x8,0x5,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8, - 0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x5,0x5,0x0,0x0,0x30, - 0x24,0x0,0x0,0x0,0x0,0x38,0x40,0x0,0x4,0x0,0x0,0x46,0x50,0x0,0x8,0x0, - 0x0,0x54,0x60,0x1,0xc,0x0,0x0,0x54,0x60,0x0,0xc,0x0,0x0,0x46,0x50,0x0, - 0x8,0x0,0x0,0x54,0x60,0x1,0xc,0x0,0x0,0x46,0x50,0x1,0x8,0x0,0x0,0x38, - 0x40,0x0,0x4,0x0,0x0,0x46,0x50,0x0,0x8,0x4c,0x4d,0x54,0x0,0x2b,0x30,0x34, - 0x0,0x2b,0x30,0x35,0x0,0x2b,0x30,0x36,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1, - 0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2b, - 0x30,0x35,0x3e,0x2d,0x35,0xa, + 0x46,0x50,0x1,0x8,0x0,0x0,0x38,0x40,0x0,0x10,0x0,0x0,0x46,0x50,0x0,0x8, + 0x4c,0x4d,0x54,0x0,0x2b,0x30,0x33,0x0,0x2b,0x30,0x35,0x0,0x2b,0x30,0x36,0x0, + 0x2b,0x30,0x34,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x1,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa, + 0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x35,0x0,0x0,0x0,0xa, + 0x0,0x0,0x0,0x14,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0xaa,0x19,0x93,0xdc,0xff,0xff,0xff,0xff,0xb5,0xa4,0xb,0x50,0x0,0x0,0x0,0x0, + 0x15,0x27,0x8b,0xb0,0x0,0x0,0x0,0x0,0x16,0x18,0xc0,0x20,0x0,0x0,0x0,0x0, + 0x17,0x8,0xb1,0x20,0x0,0x0,0x0,0x0,0x17,0xf9,0xf3,0xa0,0x0,0x0,0x0,0x0, + 0x18,0xe9,0xf2,0xb0,0x0,0x0,0x0,0x0,0x19,0xdb,0x27,0x20,0x0,0x0,0x0,0x0, + 0x1a,0xcc,0x77,0xb0,0x0,0x0,0x0,0x0,0x1b,0xbc,0x84,0xd0,0x0,0x0,0x0,0x0, + 0x1c,0xac,0x75,0xd0,0x0,0x0,0x0,0x0,0x1d,0x9c,0x66,0xd0,0x0,0x0,0x0,0x0, + 0x1e,0x8c,0x57,0xd0,0x0,0x0,0x0,0x0,0x1f,0x7c,0x48,0xd0,0x0,0x0,0x0,0x0, + 0x20,0x6c,0x39,0xd0,0x0,0x0,0x0,0x0,0x21,0x5c,0x2a,0xd0,0x0,0x0,0x0,0x0, + 0x22,0x4c,0x1b,0xd0,0x0,0x0,0x0,0x0,0x23,0x3c,0xc,0xd0,0x0,0x0,0x0,0x0, + 0x24,0x2b,0xfd,0xd0,0x0,0x0,0x0,0x0,0x25,0x1b,0xfc,0xe0,0x0,0x0,0x0,0x0, + 0x26,0xb,0xed,0xe0,0x0,0x0,0x0,0x0,0x27,0x5,0x19,0x60,0x0,0x0,0x0,0x0, + 0x27,0xf5,0xa,0x60,0x0,0x0,0x0,0x0,0x28,0xe4,0xfb,0x60,0x0,0x0,0x0,0x0, + 0x29,0x78,0xa3,0x60,0x0,0x0,0x0,0x0,0x29,0xd4,0xde,0x50,0x0,0x0,0x0,0x0, + 0x2a,0xc4,0xdd,0x60,0x0,0x0,0x0,0x0,0x2b,0xb4,0xce,0x60,0x0,0x0,0x0,0x0, + 0x2c,0xa4,0xbf,0x60,0x0,0x0,0x0,0x0,0x2d,0x94,0xb0,0x60,0x0,0x0,0x0,0x0, + 0x2e,0x84,0xa1,0x60,0x0,0x0,0x0,0x0,0x2f,0x74,0x92,0x60,0x0,0x0,0x0,0x0, + 0x30,0x64,0x83,0x60,0x0,0x0,0x0,0x0,0x31,0x5d,0xae,0xe0,0x0,0x0,0x0,0x0, + 0x32,0x72,0x89,0xe0,0x0,0x0,0x0,0x0,0x33,0x3d,0x90,0xe0,0x0,0x0,0x0,0x0, + 0x34,0x52,0x6b,0xe0,0x0,0x0,0x0,0x0,0x35,0x1d,0x72,0xe0,0x0,0x0,0x0,0x0, + 0x36,0x32,0x4d,0xe0,0x0,0x0,0x0,0x0,0x36,0xfd,0x54,0xe0,0x0,0x0,0x0,0x0, + 0x38,0x1b,0x6a,0x60,0x0,0x0,0x0,0x0,0x38,0xdd,0x36,0xe0,0x0,0x0,0x0,0x0, + 0x39,0xfb,0x4c,0x60,0x0,0x0,0x0,0x0,0x3a,0xbd,0x18,0xe0,0x0,0x0,0x0,0x0, + 0x3b,0xdb,0x2e,0x60,0x0,0x0,0x0,0x0,0x3c,0xa6,0x35,0x60,0x0,0x0,0x0,0x0, + 0x3d,0xbb,0x10,0x60,0x0,0x0,0x0,0x0,0x3e,0x86,0x17,0x60,0x0,0x0,0x0,0x0, + 0x3f,0x9a,0xf2,0x60,0x0,0x0,0x0,0x0,0x40,0x65,0xf9,0x60,0x0,0x0,0x0,0x0, + 0x41,0x84,0xe,0xe0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x2,0x3, + 0x4,0x3,0x2,0x3,0x2,0x3,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x7, + 0x8,0x7,0x8,0x7,0x8,0x5,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8, + 0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x8,0x7,0x5, + 0x5,0x0,0x0,0x30,0x24,0x0,0x0,0x0,0x0,0x2a,0x30,0x0,0x4,0x0,0x0,0x46, + 0x50,0x0,0x8,0x0,0x0,0x54,0x60,0x1,0xc,0x0,0x0,0x54,0x60,0x0,0xc,0x0, + 0x0,0x46,0x50,0x0,0x8,0x0,0x0,0x54,0x60,0x1,0xc,0x0,0x0,0x46,0x50,0x1, + 0x8,0x0,0x0,0x38,0x40,0x0,0x10,0x0,0x0,0x46,0x50,0x0,0x8,0x4c,0x4d,0x54, + 0x0,0x2b,0x30,0x33,0x0,0x2b,0x30,0x35,0x0,0x2b,0x30,0x36,0x0,0x2b,0x30,0x34, + 0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2b,0x30,0x35,0x3e,0x2d,0x35,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/Asia/Colombo 0x0,0x0,0x1,0x9d, 0x54, @@ -46314,11 +48144,11 @@ static const unsigned char qt_resource_data[] = { 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c, 0x2b,0x30,0x35,0x33,0x30,0x3e,0x2d,0x35,0x3a,0x33,0x30,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/Asia/Hovd - 0x0,0x0,0x5,0xe9, + 0x0,0x0,0x3,0x99, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x5d,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0xf,0x80,0x0,0x0,0x0,0x86, + 0x0,0x0,0x34,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x10,0x80,0x0,0x0,0x0,0x86, 0xd3,0xfc,0x94,0xf,0xb,0xea,0xa0,0x18,0xe9,0xd6,0x90,0x19,0xdb,0xb,0x0,0x1a, 0xcc,0x5b,0x90,0x1b,0xbc,0x3e,0x80,0x1c,0xac,0x3d,0x90,0x1d,0x9c,0x20,0x80,0x1e, 0x8c,0x1f,0x90,0x1f,0x7c,0x2,0x80,0x20,0x6c,0x1,0x90,0x21,0x5b,0xe4,0x80,0x22, @@ -46331,109 +48161,68 @@ static const unsigned char qt_resource_data[] = { 0xa4,0xb9,0xb0,0x3d,0x94,0x9c,0xa0,0x3e,0x84,0x9b,0xb0,0x3f,0x74,0x7e,0xa0,0x40, 0x64,0x7d,0xb0,0x41,0x54,0x60,0xa0,0x42,0x44,0x5f,0xb0,0x43,0x34,0x42,0xa0,0x44, 0x24,0x41,0xb0,0x45,0x1d,0x5f,0x20,0x55,0x15,0xa8,0xb0,0x56,0x5,0x6f,0x80,0x56, - 0xf5,0x8a,0xb0,0x57,0xe5,0x51,0x80,0x58,0xd5,0x6c,0xb0,0x59,0xce,0x6e,0x0,0x5a, - 0xbe,0x89,0x30,0x5b,0xae,0x50,0x0,0x5c,0x9e,0x6b,0x30,0x5d,0x8e,0x32,0x0,0x5e, - 0x7e,0x4d,0x30,0x5f,0x6e,0x14,0x0,0x60,0x5e,0x2f,0x30,0x61,0x4d,0xf6,0x0,0x62, - 0x3e,0x11,0x30,0x63,0x2d,0xd8,0x0,0x64,0x1d,0xf3,0x30,0x65,0x16,0xf4,0x80,0x66, - 0x7,0xf,0xb0,0x66,0xf6,0xd6,0x80,0x67,0xe6,0xf1,0xb0,0x68,0xd6,0xb8,0x80,0x69, - 0xc6,0xd3,0xb0,0x6a,0xb6,0x9a,0x80,0x6b,0xa6,0xb5,0xb0,0x6c,0x96,0x7c,0x80,0x6d, - 0x86,0x97,0xb0,0x6e,0x7f,0x99,0x0,0x6f,0x6f,0xb4,0x30,0x70,0x5f,0x7b,0x0,0x71, - 0x4f,0x96,0x30,0x72,0x3f,0x5d,0x0,0x73,0x2f,0x78,0x30,0x74,0x1f,0x3f,0x0,0x75, - 0xf,0x5a,0x30,0x75,0xff,0x21,0x0,0x76,0xef,0x3c,0x30,0x77,0xdf,0x3,0x0,0x78, - 0xcf,0x1e,0x30,0x79,0xc8,0x1f,0x80,0x7a,0xb8,0x3a,0xb0,0x7b,0xa8,0x1,0x80,0x7c, - 0x98,0x1c,0xb0,0x7d,0x87,0xe3,0x80,0x7e,0x77,0xfe,0xb0,0x7f,0x67,0xc5,0x80,0x0, - 0x1,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x0,0x0,0x55,0xec, - 0x0,0x0,0x0,0x0,0x54,0x60,0x0,0x4,0x0,0x0,0x70,0x80,0x1,0x9,0x0,0x0, - 0x62,0x70,0x0,0x4,0x4c,0x4d,0x54,0x0,0x48,0x4f,0x56,0x54,0x0,0x48,0x4f,0x56, - 0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5d,0x0, - 0x0,0x0,0x4,0x0,0x0,0x0,0xf,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff, - 0xff,0xff,0xff,0x86,0xd3,0xfc,0x94,0x0,0x0,0x0,0x0,0xf,0xb,0xea,0xa0,0x0, - 0x0,0x0,0x0,0x18,0xe9,0xd6,0x90,0x0,0x0,0x0,0x0,0x19,0xdb,0xb,0x0,0x0, - 0x0,0x0,0x0,0x1a,0xcc,0x5b,0x90,0x0,0x0,0x0,0x0,0x1b,0xbc,0x3e,0x80,0x0, - 0x0,0x0,0x0,0x1c,0xac,0x3d,0x90,0x0,0x0,0x0,0x0,0x1d,0x9c,0x20,0x80,0x0, - 0x0,0x0,0x0,0x1e,0x8c,0x1f,0x90,0x0,0x0,0x0,0x0,0x1f,0x7c,0x2,0x80,0x0, - 0x0,0x0,0x0,0x20,0x6c,0x1,0x90,0x0,0x0,0x0,0x0,0x21,0x5b,0xe4,0x80,0x0, - 0x0,0x0,0x0,0x22,0x4b,0xe3,0x90,0x0,0x0,0x0,0x0,0x23,0x3b,0xc6,0x80,0x0, - 0x0,0x0,0x0,0x24,0x2b,0xc5,0x90,0x0,0x0,0x0,0x0,0x25,0x1b,0xa8,0x80,0x0, - 0x0,0x0,0x0,0x26,0xb,0xa7,0x90,0x0,0x0,0x0,0x0,0x27,0x4,0xc5,0x0,0x0, - 0x0,0x0,0x0,0x27,0xf4,0xc4,0x10,0x0,0x0,0x0,0x0,0x28,0xe4,0xa7,0x0,0x0, - 0x0,0x0,0x0,0x29,0xd4,0xa6,0x10,0x0,0x0,0x0,0x0,0x2a,0xc4,0x89,0x0,0x0, - 0x0,0x0,0x0,0x2b,0xb4,0x88,0x10,0x0,0x0,0x0,0x0,0x2c,0xa4,0x6b,0x0,0x0, - 0x0,0x0,0x0,0x2d,0x94,0x6a,0x10,0x0,0x0,0x0,0x0,0x2e,0x84,0x4d,0x0,0x0, - 0x0,0x0,0x0,0x2f,0x74,0x4c,0x10,0x0,0x0,0x0,0x0,0x30,0x64,0x2f,0x0,0x0, - 0x0,0x0,0x0,0x31,0x5d,0x68,0x90,0x0,0x0,0x0,0x0,0x32,0x4d,0x4b,0x80,0x0, - 0x0,0x0,0x0,0x33,0x3d,0x4a,0x90,0x0,0x0,0x0,0x0,0x34,0x2d,0x2d,0x80,0x0, - 0x0,0x0,0x0,0x35,0x1d,0x2c,0x90,0x0,0x0,0x0,0x0,0x36,0xd,0xf,0x80,0x0, - 0x0,0x0,0x0,0x3a,0xe9,0xc1,0xb0,0x0,0x0,0x0,0x0,0x3b,0xb4,0xba,0xa0,0x0, - 0x0,0x0,0x0,0x3c,0xa4,0xb9,0xb0,0x0,0x0,0x0,0x0,0x3d,0x94,0x9c,0xa0,0x0, - 0x0,0x0,0x0,0x3e,0x84,0x9b,0xb0,0x0,0x0,0x0,0x0,0x3f,0x74,0x7e,0xa0,0x0, - 0x0,0x0,0x0,0x40,0x64,0x7d,0xb0,0x0,0x0,0x0,0x0,0x41,0x54,0x60,0xa0,0x0, - 0x0,0x0,0x0,0x42,0x44,0x5f,0xb0,0x0,0x0,0x0,0x0,0x43,0x34,0x42,0xa0,0x0, - 0x0,0x0,0x0,0x44,0x24,0x41,0xb0,0x0,0x0,0x0,0x0,0x45,0x1d,0x5f,0x20,0x0, - 0x0,0x0,0x0,0x55,0x15,0xa8,0xb0,0x0,0x0,0x0,0x0,0x56,0x5,0x6f,0x80,0x0, - 0x0,0x0,0x0,0x56,0xf5,0x8a,0xb0,0x0,0x0,0x0,0x0,0x57,0xe5,0x51,0x80,0x0, - 0x0,0x0,0x0,0x58,0xd5,0x6c,0xb0,0x0,0x0,0x0,0x0,0x59,0xce,0x6e,0x0,0x0, - 0x0,0x0,0x0,0x5a,0xbe,0x89,0x30,0x0,0x0,0x0,0x0,0x5b,0xae,0x50,0x0,0x0, - 0x0,0x0,0x0,0x5c,0x9e,0x6b,0x30,0x0,0x0,0x0,0x0,0x5d,0x8e,0x32,0x0,0x0, - 0x0,0x0,0x0,0x5e,0x7e,0x4d,0x30,0x0,0x0,0x0,0x0,0x5f,0x6e,0x14,0x0,0x0, - 0x0,0x0,0x0,0x60,0x5e,0x2f,0x30,0x0,0x0,0x0,0x0,0x61,0x4d,0xf6,0x0,0x0, - 0x0,0x0,0x0,0x62,0x3e,0x11,0x30,0x0,0x0,0x0,0x0,0x63,0x2d,0xd8,0x0,0x0, - 0x0,0x0,0x0,0x64,0x1d,0xf3,0x30,0x0,0x0,0x0,0x0,0x65,0x16,0xf4,0x80,0x0, - 0x0,0x0,0x0,0x66,0x7,0xf,0xb0,0x0,0x0,0x0,0x0,0x66,0xf6,0xd6,0x80,0x0, - 0x0,0x0,0x0,0x67,0xe6,0xf1,0xb0,0x0,0x0,0x0,0x0,0x68,0xd6,0xb8,0x80,0x0, - 0x0,0x0,0x0,0x69,0xc6,0xd3,0xb0,0x0,0x0,0x0,0x0,0x6a,0xb6,0x9a,0x80,0x0, - 0x0,0x0,0x0,0x6b,0xa6,0xb5,0xb0,0x0,0x0,0x0,0x0,0x6c,0x96,0x7c,0x80,0x0, - 0x0,0x0,0x0,0x6d,0x86,0x97,0xb0,0x0,0x0,0x0,0x0,0x6e,0x7f,0x99,0x0,0x0, - 0x0,0x0,0x0,0x6f,0x6f,0xb4,0x30,0x0,0x0,0x0,0x0,0x70,0x5f,0x7b,0x0,0x0, - 0x0,0x0,0x0,0x71,0x4f,0x96,0x30,0x0,0x0,0x0,0x0,0x72,0x3f,0x5d,0x0,0x0, - 0x0,0x0,0x0,0x73,0x2f,0x78,0x30,0x0,0x0,0x0,0x0,0x74,0x1f,0x3f,0x0,0x0, - 0x0,0x0,0x0,0x75,0xf,0x5a,0x30,0x0,0x0,0x0,0x0,0x75,0xff,0x21,0x0,0x0, - 0x0,0x0,0x0,0x76,0xef,0x3c,0x30,0x0,0x0,0x0,0x0,0x77,0xdf,0x3,0x0,0x0, - 0x0,0x0,0x0,0x78,0xcf,0x1e,0x30,0x0,0x0,0x0,0x0,0x79,0xc8,0x1f,0x80,0x0, - 0x0,0x0,0x0,0x7a,0xb8,0x3a,0xb0,0x0,0x0,0x0,0x0,0x7b,0xa8,0x1,0x80,0x0, - 0x0,0x0,0x0,0x7c,0x98,0x1c,0xb0,0x0,0x0,0x0,0x0,0x7d,0x87,0xe3,0x80,0x0, - 0x0,0x0,0x0,0x7e,0x77,0xfe,0xb0,0x0,0x0,0x0,0x0,0x7f,0x67,0xc5,0x80,0x0, - 0x1,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0xf5,0x8a,0xb0,0x57,0xe5,0x51,0x80,0x7f,0xff,0xff,0xff,0x0,0x1,0x3,0x2,0x3, 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, - 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x0,0x0,0x55,0xec, - 0x0,0x0,0x0,0x0,0x54,0x60,0x0,0x4,0x0,0x0,0x70,0x80,0x1,0x9,0x0,0x0, - 0x62,0x70,0x0,0x4,0x4c,0x4d,0x54,0x0,0x48,0x4f,0x56,0x54,0x0,0x48,0x4f,0x56, - 0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x48,0x4f,0x56,0x54, - 0x2d,0x37,0x48,0x4f,0x56,0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e,0x36,0x2c,0x4d, - 0x39,0x2e,0x35,0x2e,0x36,0x2f,0x30,0xa, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x3,0x0, + 0x0,0x55,0xec,0x0,0x0,0x0,0x0,0x54,0x60,0x0,0x4,0x0,0x0,0x70,0x80,0x1, + 0x8,0x0,0x0,0x62,0x70,0x0,0xc,0x4c,0x4d,0x54,0x0,0x2b,0x30,0x36,0x0,0x2b, + 0x30,0x38,0x0,0x2b,0x30,0x37,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x34,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x10,0xf8,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x86,0xd3,0xfc,0x94,0x0,0x0,0x0,0x0,0xf, + 0xb,0xea,0xa0,0x0,0x0,0x0,0x0,0x18,0xe9,0xd6,0x90,0x0,0x0,0x0,0x0,0x19, + 0xdb,0xb,0x0,0x0,0x0,0x0,0x0,0x1a,0xcc,0x5b,0x90,0x0,0x0,0x0,0x0,0x1b, + 0xbc,0x3e,0x80,0x0,0x0,0x0,0x0,0x1c,0xac,0x3d,0x90,0x0,0x0,0x0,0x0,0x1d, + 0x9c,0x20,0x80,0x0,0x0,0x0,0x0,0x1e,0x8c,0x1f,0x90,0x0,0x0,0x0,0x0,0x1f, + 0x7c,0x2,0x80,0x0,0x0,0x0,0x0,0x20,0x6c,0x1,0x90,0x0,0x0,0x0,0x0,0x21, + 0x5b,0xe4,0x80,0x0,0x0,0x0,0x0,0x22,0x4b,0xe3,0x90,0x0,0x0,0x0,0x0,0x23, + 0x3b,0xc6,0x80,0x0,0x0,0x0,0x0,0x24,0x2b,0xc5,0x90,0x0,0x0,0x0,0x0,0x25, + 0x1b,0xa8,0x80,0x0,0x0,0x0,0x0,0x26,0xb,0xa7,0x90,0x0,0x0,0x0,0x0,0x27, + 0x4,0xc5,0x0,0x0,0x0,0x0,0x0,0x27,0xf4,0xc4,0x10,0x0,0x0,0x0,0x0,0x28, + 0xe4,0xa7,0x0,0x0,0x0,0x0,0x0,0x29,0xd4,0xa6,0x10,0x0,0x0,0x0,0x0,0x2a, + 0xc4,0x89,0x0,0x0,0x0,0x0,0x0,0x2b,0xb4,0x88,0x10,0x0,0x0,0x0,0x0,0x2c, + 0xa4,0x6b,0x0,0x0,0x0,0x0,0x0,0x2d,0x94,0x6a,0x10,0x0,0x0,0x0,0x0,0x2e, + 0x84,0x4d,0x0,0x0,0x0,0x0,0x0,0x2f,0x74,0x4c,0x10,0x0,0x0,0x0,0x0,0x30, + 0x64,0x2f,0x0,0x0,0x0,0x0,0x0,0x31,0x5d,0x68,0x90,0x0,0x0,0x0,0x0,0x32, + 0x4d,0x4b,0x80,0x0,0x0,0x0,0x0,0x33,0x3d,0x4a,0x90,0x0,0x0,0x0,0x0,0x34, + 0x2d,0x2d,0x80,0x0,0x0,0x0,0x0,0x35,0x1d,0x2c,0x90,0x0,0x0,0x0,0x0,0x36, + 0xd,0xf,0x80,0x0,0x0,0x0,0x0,0x3a,0xe9,0xc1,0xb0,0x0,0x0,0x0,0x0,0x3b, + 0xb4,0xba,0xa0,0x0,0x0,0x0,0x0,0x3c,0xa4,0xb9,0xb0,0x0,0x0,0x0,0x0,0x3d, + 0x94,0x9c,0xa0,0x0,0x0,0x0,0x0,0x3e,0x84,0x9b,0xb0,0x0,0x0,0x0,0x0,0x3f, + 0x74,0x7e,0xa0,0x0,0x0,0x0,0x0,0x40,0x64,0x7d,0xb0,0x0,0x0,0x0,0x0,0x41, + 0x54,0x60,0xa0,0x0,0x0,0x0,0x0,0x42,0x44,0x5f,0xb0,0x0,0x0,0x0,0x0,0x43, + 0x34,0x42,0xa0,0x0,0x0,0x0,0x0,0x44,0x24,0x41,0xb0,0x0,0x0,0x0,0x0,0x45, + 0x1d,0x5f,0x20,0x0,0x0,0x0,0x0,0x55,0x15,0xa8,0xb0,0x0,0x0,0x0,0x0,0x56, + 0x5,0x6f,0x80,0x0,0x0,0x0,0x0,0x56,0xf5,0x8a,0xb0,0x0,0x0,0x0,0x0,0x57, + 0xe5,0x51,0x80,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3, + 0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x3,0x0, + 0x0,0x55,0xec,0x0,0x0,0x0,0x0,0x54,0x60,0x0,0x4,0x0,0x0,0x70,0x80,0x1, + 0x8,0x0,0x0,0x62,0x70,0x0,0xc,0x4c,0x4d,0x54,0x0,0x2b,0x30,0x36,0x0,0x2b, + 0x30,0x38,0x0,0x2b,0x30,0x37,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa, + 0x3c,0x2b,0x30,0x37,0x3e,0x2d,0x37,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/Asia/Dili - 0x0,0x0,0x1,0x35, + 0x0,0x0,0x0,0xfd, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x80,0x0,0x0,0x0,0x92, - 0xe6,0x18,0xc4,0xcb,0x99,0x32,0xf0,0xd2,0x56,0xee,0x70,0xb,0xea,0x30,0x70,0x39, - 0xc3,0x99,0x0,0x0,0x1,0x2,0x3,0x4,0x3,0x0,0x0,0x75,0xbc,0x0,0x0,0x0, - 0x0,0x70,0x80,0x0,0x4,0x0,0x0,0x7e,0x90,0x0,0x8,0x0,0x0,0x7e,0x90,0x0, - 0x4,0x0,0x0,0x70,0x80,0x0,0xc,0x0,0x0,0x7e,0x90,0x0,0x4,0x4c,0x4d,0x54, - 0x0,0x54,0x4c,0x54,0x0,0x4a,0x53,0x54,0x0,0x57,0x49,0x54,0x41,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0, - 0x0,0x6,0x0,0x0,0x0,0x11,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff, - 0xff,0xff,0x92,0xe6,0x18,0xc4,0xff,0xff,0xff,0xff,0xcb,0x99,0x32,0xf0,0xff,0xff, - 0xff,0xff,0xd2,0x56,0xee,0x70,0x0,0x0,0x0,0x0,0xb,0xea,0x30,0x70,0x0,0x0, - 0x0,0x0,0x39,0xc3,0x99,0x0,0x0,0x1,0x2,0x3,0x4,0x3,0x0,0x0,0x75,0xbc, - 0x0,0x0,0x0,0x0,0x70,0x80,0x0,0x4,0x0,0x0,0x7e,0x90,0x0,0x8,0x0,0x0, - 0x7e,0x90,0x0,0x4,0x0,0x0,0x70,0x80,0x0,0xc,0x0,0x0,0x7e,0x90,0x0,0x4, - 0x4c,0x4d,0x54,0x0,0x54,0x4c,0x54,0x0,0x4a,0x53,0x54,0x0,0x57,0x49,0x54,0x41, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x54,0x4c, - 0x54,0x2d,0x39,0xa, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0x92, + 0xe6,0x18,0xc4,0xcb,0x99,0x32,0xf0,0xb,0xea,0x30,0x70,0x39,0xc3,0x99,0x0,0x7f, + 0xff,0xff,0xff,0x0,0x1,0x2,0x1,0x2,0x2,0x0,0x0,0x75,0xbc,0x0,0x0,0x0, + 0x0,0x70,0x80,0x0,0x4,0x0,0x0,0x7e,0x90,0x0,0x8,0x4c,0x4d,0x54,0x0,0x2b, + 0x30,0x38,0x0,0x2b,0x30,0x39,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, + 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x6,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0xff,0xff,0xff,0xff,0x92,0xe6,0x18,0xc4,0xff,0xff,0xff,0xff,0xcb,0x99,0x32, + 0xf0,0x0,0x0,0x0,0x0,0xb,0xea,0x30,0x70,0x0,0x0,0x0,0x0,0x39,0xc3,0x99, + 0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x2,0x1,0x2,0x2,0x0, + 0x0,0x75,0xbc,0x0,0x0,0x0,0x0,0x70,0x80,0x0,0x4,0x0,0x0,0x7e,0x90,0x0, + 0x8,0x4c,0x4d,0x54,0x0,0x2b,0x30,0x38,0x0,0x2b,0x30,0x39,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0xa,0x3c,0x2b,0x30,0x39,0x3e,0x2d,0x39,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/Asia/Anadyr 0x0,0x0,0x4,0xc6, 0x54, @@ -46515,34 +48304,31 @@ static const unsigned char qt_resource_data[] = { 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2b,0x31,0x32, 0x3e,0x2d,0x31,0x32,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/Asia/Pyongyang - 0x0,0x0,0x1,0x38, + 0x0,0x0,0x1,0x10, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x11,0x80,0x0,0x0,0x0,0x8b, - 0xd7,0xf1,0x9c,0x92,0xe6,0x16,0xf8,0xc3,0x55,0x3b,0x70,0xd2,0x2f,0x61,0x70,0x55, - 0xce,0x2,0x70,0x0,0x1,0x2,0x3,0x4,0x1,0x0,0x0,0x75,0xe4,0x0,0x0,0x0, - 0x0,0x77,0x88,0x0,0x4,0x0,0x0,0x7e,0x90,0x0,0x8,0x0,0x0,0x7e,0x90,0x0, - 0xd,0x0,0x0,0x7e,0x90,0x0,0x4,0x0,0x0,0x77,0x88,0x0,0x4,0x4c,0x4d,0x54, - 0x0,0x4b,0x53,0x54,0x0,0x4a,0x43,0x53,0x54,0x0,0x4a,0x53,0x54,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0, - 0x0,0x6,0x0,0x0,0x0,0x11,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff, - 0xff,0xff,0x8b,0xd7,0xf1,0x9c,0xff,0xff,0xff,0xff,0x92,0xe6,0x16,0xf8,0xff,0xff, - 0xff,0xff,0xc3,0x55,0x3b,0x70,0xff,0xff,0xff,0xff,0xd2,0x2f,0x61,0x70,0x0,0x0, - 0x0,0x0,0x55,0xce,0x2,0x70,0x0,0x1,0x2,0x3,0x4,0x1,0x0,0x0,0x75,0xe4, - 0x0,0x0,0x0,0x0,0x77,0x88,0x0,0x4,0x0,0x0,0x7e,0x90,0x0,0x8,0x0,0x0, - 0x7e,0x90,0x0,0xd,0x0,0x0,0x7e,0x90,0x0,0x4,0x0,0x0,0x77,0x88,0x0,0x4, - 0x4c,0x4d,0x54,0x0,0x4b,0x53,0x54,0x0,0x4a,0x43,0x53,0x54,0x0,0x4a,0x53,0x54, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x4b,0x53, - 0x54,0x2d,0x38,0x3a,0x33,0x30,0xa, + 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0x8b, + 0xd7,0xf1,0x9c,0x92,0xe6,0x16,0xf8,0xd2,0x2f,0x61,0x70,0x55,0xce,0x2,0x70,0x0, + 0x1,0x2,0x3,0x1,0x0,0x0,0x75,0xe4,0x0,0x0,0x0,0x0,0x77,0x88,0x0,0x4, + 0x0,0x0,0x7e,0x90,0x0,0x8,0x0,0x0,0x7e,0x90,0x0,0x4,0x0,0x0,0x77,0x88, + 0x0,0x4,0x4c,0x4d,0x54,0x0,0x4b,0x53,0x54,0x0,0x4a,0x53,0x54,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5, + 0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5, + 0x0,0x0,0x0,0xc,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0x8b,0xd7,0xf1,0x9c,0xff,0xff,0xff,0xff,0x92,0xe6,0x16,0xf8,0xff,0xff,0xff,0xff, + 0xd2,0x2f,0x61,0x70,0x0,0x0,0x0,0x0,0x55,0xce,0x2,0x70,0x0,0x1,0x2,0x3, + 0x1,0x0,0x0,0x75,0xe4,0x0,0x0,0x0,0x0,0x77,0x88,0x0,0x4,0x0,0x0,0x7e, + 0x90,0x0,0x8,0x0,0x0,0x7e,0x90,0x0,0x4,0x0,0x0,0x77,0x88,0x0,0x4,0x4c, + 0x4d,0x54,0x0,0x4b,0x53,0x54,0x0,0x4a,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0xa,0x4b,0x53,0x54,0x2d,0x38,0x3a,0x33,0x30,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/Asia/Taipei - 0x0,0x0,0x3,0x20, + 0x0,0x0,0x3,0x16, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x29,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x15,0x80,0x0,0x0,0x0,0xc3, + 0x0,0x0,0x29,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x10,0x80,0x0,0x0,0x0,0xc3, 0x55,0x49,0x80,0xd2,0x54,0x59,0x80,0xd3,0x8b,0x7b,0x80,0xd4,0x42,0xad,0xf0,0xd5, 0x45,0x22,0x0,0xd6,0x4c,0xbf,0xf0,0xd7,0x3c,0xbf,0x0,0xd8,0x6,0x66,0x70,0xd9, 0x1d,0xf2,0x80,0xd9,0xe7,0x99,0xf0,0xda,0xff,0x26,0x0,0xdb,0xc8,0xcd,0x70,0xdc, @@ -46553,43 +48339,43 @@ static const unsigned char qt_resource_data[] = { 0xc5,0xb,0x80,0xec,0xb6,0x3f,0xf0,0xed,0xf7,0xfc,0x0,0xee,0x98,0xc4,0xf0,0xef, 0xd9,0x2f,0x80,0xf0,0x79,0xf8,0x70,0x7,0xfc,0x56,0x0,0x8,0xed,0x8a,0x70,0x9, 0xdd,0x89,0x80,0xa,0xce,0xbd,0xf0,0x11,0xdb,0xa1,0x80,0x12,0x54,0xdd,0x70,0x1, - 0x2,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, - 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x0,0x0,0x71,0xe8,0x0,0x0,0x0,0x0, - 0x70,0x80,0x0,0x4,0x0,0x0,0x7e,0x90,0x0,0x9,0x0,0x0,0x7e,0x90,0x1,0xd, - 0x0,0x0,0x70,0x80,0x0,0x11,0x4c,0x4d,0x54,0x0,0x4a,0x57,0x53,0x54,0x0,0x4a, - 0x53,0x54,0x0,0x43,0x44,0x54,0x0,0x43,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0, - 0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2a,0x0,0x0,0x0,0x5,0x0,0x0,0x0, - 0x15,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x74,0xce,0xf0, - 0x18,0xff,0xff,0xff,0xff,0xc3,0x55,0x49,0x80,0xff,0xff,0xff,0xff,0xd2,0x54,0x59, - 0x80,0xff,0xff,0xff,0xff,0xd3,0x8b,0x7b,0x80,0xff,0xff,0xff,0xff,0xd4,0x42,0xad, - 0xf0,0xff,0xff,0xff,0xff,0xd5,0x45,0x22,0x0,0xff,0xff,0xff,0xff,0xd6,0x4c,0xbf, - 0xf0,0xff,0xff,0xff,0xff,0xd7,0x3c,0xbf,0x0,0xff,0xff,0xff,0xff,0xd8,0x6,0x66, - 0x70,0xff,0xff,0xff,0xff,0xd9,0x1d,0xf2,0x80,0xff,0xff,0xff,0xff,0xd9,0xe7,0x99, - 0xf0,0xff,0xff,0xff,0xff,0xda,0xff,0x26,0x0,0xff,0xff,0xff,0xff,0xdb,0xc8,0xcd, - 0x70,0xff,0xff,0xff,0xff,0xdc,0xe0,0x59,0x80,0xff,0xff,0xff,0xff,0xdd,0xaa,0x0, - 0xf0,0xff,0xff,0xff,0xff,0xde,0x72,0x73,0x0,0xff,0xff,0xff,0xff,0xdf,0xb5,0x64, - 0x70,0xff,0xff,0xff,0xff,0xe0,0x7c,0x85,0x0,0xff,0xff,0xff,0xff,0xe1,0x96,0x97, - 0xf0,0xff,0xff,0xff,0xff,0xe2,0x5d,0xb8,0x80,0xff,0xff,0xff,0xff,0xe3,0x77,0xcb, - 0x70,0xff,0xff,0xff,0xff,0xe4,0x3e,0xec,0x0,0xff,0xff,0xff,0xff,0xe5,0x30,0x20, - 0x70,0xff,0xff,0xff,0xff,0xe6,0x21,0x71,0x0,0xff,0xff,0xff,0xff,0xe7,0x12,0xa5, - 0x70,0xff,0xff,0xff,0xff,0xe8,0x2,0xa4,0x80,0xff,0xff,0xff,0xff,0xe8,0xf3,0xd8, - 0xf0,0xff,0xff,0xff,0xff,0xe9,0xe3,0xd8,0x0,0xff,0xff,0xff,0xff,0xea,0xd5,0xc, - 0x70,0xff,0xff,0xff,0xff,0xeb,0xc5,0xb,0x80,0xff,0xff,0xff,0xff,0xec,0xb6,0x3f, - 0xf0,0xff,0xff,0xff,0xff,0xed,0xf7,0xfc,0x0,0xff,0xff,0xff,0xff,0xee,0x98,0xc4, - 0xf0,0xff,0xff,0xff,0xff,0xef,0xd9,0x2f,0x80,0xff,0xff,0xff,0xff,0xf0,0x79,0xf8, - 0x70,0x0,0x0,0x0,0x0,0x7,0xfc,0x56,0x0,0x0,0x0,0x0,0x0,0x8,0xed,0x8a, - 0x70,0x0,0x0,0x0,0x0,0x9,0xdd,0x89,0x80,0x0,0x0,0x0,0x0,0xa,0xce,0xbd, - 0xf0,0x0,0x0,0x0,0x0,0x11,0xdb,0xa1,0x80,0x0,0x0,0x0,0x0,0x12,0x54,0xdd, - 0x70,0x0,0x1,0x2,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x0,0x0,0x71,0xe8,0x0, - 0x0,0x0,0x0,0x70,0x80,0x0,0x4,0x0,0x0,0x7e,0x90,0x0,0x9,0x0,0x0,0x7e, - 0x90,0x1,0xd,0x0,0x0,0x70,0x80,0x0,0x11,0x4c,0x4d,0x54,0x0,0x4a,0x57,0x53, - 0x54,0x0,0x4a,0x53,0x54,0x0,0x43,0x44,0x54,0x0,0x43,0x53,0x54,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x43,0x53,0x54,0x2d,0x38,0xa, + 0x2,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1, + 0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1, + 0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x0,0x0,0x71,0xe8,0x0,0x0,0x0,0x0, + 0x70,0x80,0x0,0x4,0x0,0x0,0x7e,0x90,0x0,0x8,0x0,0x0,0x7e,0x90,0x1,0xc, + 0x0,0x0,0x70,0x80,0x0,0x4,0x4c,0x4d,0x54,0x0,0x43,0x53,0x54,0x0,0x4a,0x53, + 0x54,0x0,0x43,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x2a,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x10,0xf8,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x74,0xce,0xf0,0x18,0xff,0xff,0xff,0xff, + 0xc3,0x55,0x49,0x80,0xff,0xff,0xff,0xff,0xd2,0x54,0x59,0x80,0xff,0xff,0xff,0xff, + 0xd3,0x8b,0x7b,0x80,0xff,0xff,0xff,0xff,0xd4,0x42,0xad,0xf0,0xff,0xff,0xff,0xff, + 0xd5,0x45,0x22,0x0,0xff,0xff,0xff,0xff,0xd6,0x4c,0xbf,0xf0,0xff,0xff,0xff,0xff, + 0xd7,0x3c,0xbf,0x0,0xff,0xff,0xff,0xff,0xd8,0x6,0x66,0x70,0xff,0xff,0xff,0xff, + 0xd9,0x1d,0xf2,0x80,0xff,0xff,0xff,0xff,0xd9,0xe7,0x99,0xf0,0xff,0xff,0xff,0xff, + 0xda,0xff,0x26,0x0,0xff,0xff,0xff,0xff,0xdb,0xc8,0xcd,0x70,0xff,0xff,0xff,0xff, + 0xdc,0xe0,0x59,0x80,0xff,0xff,0xff,0xff,0xdd,0xaa,0x0,0xf0,0xff,0xff,0xff,0xff, + 0xde,0x72,0x73,0x0,0xff,0xff,0xff,0xff,0xdf,0xb5,0x64,0x70,0xff,0xff,0xff,0xff, + 0xe0,0x7c,0x85,0x0,0xff,0xff,0xff,0xff,0xe1,0x96,0x97,0xf0,0xff,0xff,0xff,0xff, + 0xe2,0x5d,0xb8,0x80,0xff,0xff,0xff,0xff,0xe3,0x77,0xcb,0x70,0xff,0xff,0xff,0xff, + 0xe4,0x3e,0xec,0x0,0xff,0xff,0xff,0xff,0xe5,0x30,0x20,0x70,0xff,0xff,0xff,0xff, + 0xe6,0x21,0x71,0x0,0xff,0xff,0xff,0xff,0xe7,0x12,0xa5,0x70,0xff,0xff,0xff,0xff, + 0xe8,0x2,0xa4,0x80,0xff,0xff,0xff,0xff,0xe8,0xf3,0xd8,0xf0,0xff,0xff,0xff,0xff, + 0xe9,0xe3,0xd8,0x0,0xff,0xff,0xff,0xff,0xea,0xd5,0xc,0x70,0xff,0xff,0xff,0xff, + 0xeb,0xc5,0xb,0x80,0xff,0xff,0xff,0xff,0xec,0xb6,0x3f,0xf0,0xff,0xff,0xff,0xff, + 0xed,0xf7,0xfc,0x0,0xff,0xff,0xff,0xff,0xee,0x98,0xc4,0xf0,0xff,0xff,0xff,0xff, + 0xef,0xd9,0x2f,0x80,0xff,0xff,0xff,0xff,0xf0,0x79,0xf8,0x70,0x0,0x0,0x0,0x0, + 0x7,0xfc,0x56,0x0,0x0,0x0,0x0,0x0,0x8,0xed,0x8a,0x70,0x0,0x0,0x0,0x0, + 0x9,0xdd,0x89,0x80,0x0,0x0,0x0,0x0,0xa,0xce,0xbd,0xf0,0x0,0x0,0x0,0x0, + 0x11,0xdb,0xa1,0x80,0x0,0x0,0x0,0x0,0x12,0x54,0xdd,0x70,0x0,0x1,0x2,0x1, + 0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1, + 0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1,0x3,0x1, + 0x3,0x1,0x3,0x1,0x3,0x1,0x0,0x0,0x71,0xe8,0x0,0x0,0x0,0x0,0x70,0x80, + 0x0,0x4,0x0,0x0,0x7e,0x90,0x0,0x8,0x0,0x0,0x7e,0x90,0x1,0xc,0x0,0x0, + 0x70,0x80,0x0,0x4,0x4c,0x4d,0x54,0x0,0x43,0x53,0x54,0x0,0x4a,0x53,0x54,0x0, + 0x43,0x44,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x43, + 0x53,0x54,0x2d,0x38,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/Asia/Krasnoyarsk 0x0,0x0,0x4,0xdb, 0x54, @@ -46672,61 +48458,63 @@ static const unsigned char qt_resource_data[] = { 0x1,0x1,0x1,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0xa,0x3c,0x2b,0x30,0x37,0x3e,0x2d,0x37,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/Asia/Jayapura - 0x0,0x0,0x0,0xf1, + 0x0,0x0,0x0,0xfb, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0xd,0x80,0x0,0x0,0x0,0xba, - 0x16,0xc1,0x98,0xd0,0x58,0xb9,0xf0,0xf4,0xb5,0xa2,0x68,0x0,0x1,0x2,0x1,0x0, + 0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x12,0x80,0x0,0x0,0x0,0xba, + 0x16,0xc1,0x98,0xd0,0x58,0xb9,0xf0,0xf4,0xb5,0xa2,0x68,0x0,0x1,0x2,0x3,0x0, 0x0,0x83,0xe8,0x0,0x0,0x0,0x0,0x7e,0x90,0x0,0x4,0x0,0x0,0x85,0x98,0x0, - 0x8,0x0,0x0,0x7e,0x90,0x0,0x4,0x4c,0x4d,0x54,0x0,0x57,0x49,0x54,0x0,0x41, - 0x43,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66, - 0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4, - 0x0,0x0,0x0,0x4,0x0,0x0,0x0,0xd,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0xff,0xff,0xff,0xff,0xba,0x16,0xc1,0x98,0xff,0xff,0xff,0xff,0xd0,0x58,0xb9,0xf0, - 0xff,0xff,0xff,0xff,0xf4,0xb5,0xa2,0x68,0x0,0x1,0x2,0x1,0x0,0x0,0x83,0xe8, - 0x0,0x0,0x0,0x0,0x7e,0x90,0x0,0x4,0x0,0x0,0x85,0x98,0x0,0x8,0x0,0x0, - 0x7e,0x90,0x0,0x4,0x4c,0x4d,0x54,0x0,0x57,0x49,0x54,0x0,0x41,0x43,0x53,0x54, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x57,0x49,0x54,0x2d,0x39,0xa, - + 0x8,0x0,0x0,0x7e,0x90,0x0,0xe,0x4c,0x4d,0x54,0x0,0x2b,0x30,0x39,0x0,0x2b, + 0x30,0x39,0x33,0x30,0x0,0x57,0x49,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x12,0xf8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xba,0x16,0xc1,0x98,0xff,0xff,0xff, + 0xff,0xd0,0x58,0xb9,0xf0,0xff,0xff,0xff,0xff,0xf4,0xb5,0xa2,0x68,0x0,0x1,0x2, + 0x3,0x0,0x0,0x83,0xe8,0x0,0x0,0x0,0x0,0x7e,0x90,0x0,0x4,0x0,0x0,0x85, + 0x98,0x0,0x8,0x0,0x0,0x7e,0x90,0x0,0xe,0x4c,0x4d,0x54,0x0,0x2b,0x30,0x39, + 0x0,0x2b,0x30,0x39,0x33,0x30,0x0,0x57,0x49,0x54,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0xa,0x57,0x49,0x54,0x2d,0x39,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/Asia/Brunei - 0x0,0x0,0x0,0xc9, + 0x0,0x0,0x0,0xe5, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0xad, - 0x8a,0x2,0x44,0xba,0x67,0x47,0x88,0x0,0x1,0x2,0x0,0x0,0x6b,0xbc,0x0,0x0, - 0x0,0x0,0x69,0x78,0x0,0x4,0x0,0x0,0x70,0x80,0x0,0x4,0x4c,0x4d,0x54,0x0, - 0x42,0x4e,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0, - 0x0,0x3,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff, - 0xff,0xff,0xad,0x8a,0x2,0x44,0xff,0xff,0xff,0xff,0xba,0x67,0x47,0x88,0x0,0x1, - 0x2,0x0,0x0,0x6b,0xbc,0x0,0x0,0x0,0x0,0x69,0x78,0x0,0x4,0x0,0x0,0x70, - 0x80,0x0,0x4,0x4c,0x4d,0x54,0x0,0x42,0x4e,0x54,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xa,0x42,0x4e,0x54,0x2d,0x38,0xa, + 0x0,0x0,0x4,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xe,0x80,0x0,0x0,0x0,0xad, + 0x8a,0x2,0x44,0xba,0x67,0x47,0x88,0x7f,0xff,0xff,0xff,0x0,0x1,0x2,0x2,0x0, + 0x0,0x6b,0xbc,0x0,0x0,0x0,0x0,0x69,0x78,0x0,0x4,0x0,0x0,0x70,0x80,0x0, + 0xa,0x4c,0x4d,0x54,0x0,0x2b,0x30,0x37,0x33,0x30,0x0,0x2b,0x30,0x38,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0, + 0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x3,0x0,0x0,0x0, + 0xe,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xad,0x8a,0x2, + 0x44,0xff,0xff,0xff,0xff,0xba,0x67,0x47,0x88,0x0,0x0,0x0,0x0,0x7f,0xff,0xff, + 0xff,0x0,0x1,0x2,0x2,0x0,0x0,0x6b,0xbc,0x0,0x0,0x0,0x0,0x69,0x78,0x0, + 0x4,0x0,0x0,0x70,0x80,0x0,0xa,0x4c,0x4d,0x54,0x0,0x2b,0x30,0x37,0x33,0x30, + 0x0,0x2b,0x30,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2b,0x30,0x38, + 0x3e,0x2d,0x38,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/Asia/Makassar - 0x0,0x0,0x1,0x18, + 0x0,0x0,0x1,0x20, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x11,0x80,0x0,0x0,0x0,0xa1, + 0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x15,0x80,0x0,0x0,0x0,0xa1, 0xf2,0x5d,0x90,0xba,0x16,0xd5,0x90,0xcb,0x88,0x1d,0x80,0xd2,0x56,0xee,0x70,0x0, - 0x1,0x2,0x3,0x2,0x0,0x0,0x6f,0xf0,0x0,0x0,0x0,0x0,0x6f,0xf0,0x0,0x4, - 0x0,0x0,0x70,0x80,0x0,0x8,0x0,0x0,0x7e,0x90,0x0,0xd,0x0,0x0,0x70,0x80, - 0x0,0x8,0x4c,0x4d,0x54,0x0,0x4d,0x4d,0x54,0x0,0x57,0x49,0x54,0x41,0x0,0x4a, - 0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, - 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x11,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0xa1,0xf2,0x5d,0x90,0xff,0xff,0xff,0xff,0xba,0x16,0xd5, - 0x90,0xff,0xff,0xff,0xff,0xcb,0x88,0x1d,0x80,0xff,0xff,0xff,0xff,0xd2,0x56,0xee, - 0x70,0x0,0x1,0x2,0x3,0x2,0x0,0x0,0x6f,0xf0,0x0,0x0,0x0,0x0,0x6f,0xf0, - 0x0,0x4,0x0,0x0,0x70,0x80,0x0,0x8,0x0,0x0,0x7e,0x90,0x0,0xd,0x0,0x0, - 0x70,0x80,0x0,0x8,0x4c,0x4d,0x54,0x0,0x4d,0x4d,0x54,0x0,0x57,0x49,0x54,0x41, - 0x0,0x4a,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa, - 0x57,0x49,0x54,0x41,0x2d,0x38,0xa, + 0x1,0x2,0x3,0x4,0x0,0x0,0x6f,0xf0,0x0,0x0,0x0,0x0,0x6f,0xf0,0x0,0x4, + 0x0,0x0,0x70,0x80,0x0,0x8,0x0,0x0,0x7e,0x90,0x0,0xc,0x0,0x0,0x70,0x80, + 0x0,0x10,0x4c,0x4d,0x54,0x0,0x4d,0x4d,0x54,0x0,0x2b,0x30,0x38,0x0,0x2b,0x30, + 0x39,0x0,0x57,0x49,0x54,0x41,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x15,0xf8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xa1,0xf2,0x5d,0x90,0xff,0xff,0xff, + 0xff,0xba,0x16,0xd5,0x90,0xff,0xff,0xff,0xff,0xcb,0x88,0x1d,0x80,0xff,0xff,0xff, + 0xff,0xd2,0x56,0xee,0x70,0x0,0x1,0x2,0x3,0x4,0x0,0x0,0x6f,0xf0,0x0,0x0, + 0x0,0x0,0x6f,0xf0,0x0,0x4,0x0,0x0,0x70,0x80,0x0,0x8,0x0,0x0,0x7e,0x90, + 0x0,0xc,0x0,0x0,0x70,0x80,0x0,0x10,0x4c,0x4d,0x54,0x0,0x4d,0x4d,0x54,0x0, + 0x2b,0x30,0x38,0x0,0x2b,0x30,0x39,0x0,0x57,0x49,0x54,0x41,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x57,0x49,0x54,0x41,0x2d,0x38,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/Asia/Damascus 0x0,0x0,0x9,0x10, 0x54, @@ -47030,19 +48818,20 @@ static const unsigned char qt_resource_data[] = { 0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c, 0x2b,0x30,0x34,0x3e,0x2d,0x34,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/Asia/Kuwait - 0x0,0x0,0x0,0xab, + 0x0,0x0,0x0,0xbb, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0xd5, - 0x1b,0x36,0xb4,0x0,0x1,0x0,0x0,0x2b,0xcc,0x0,0x0,0x0,0x0,0x2a,0x30,0x0, - 0x4,0x4c,0x4d,0x54,0x0,0x41,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, - 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0xd5,0x1b,0x36,0xb4,0x0,0x1,0x0,0x0,0x2b,0xcc,0x0, - 0x0,0x0,0x0,0x2a,0x30,0x0,0x4,0x4c,0x4d,0x54,0x0,0x41,0x53,0x54,0x0,0x0, - 0x0,0x0,0x0,0xa,0x41,0x53,0x54,0x2d,0x33,0xa, + 0x0,0x0,0x3,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0xd5, + 0x1b,0x36,0xb4,0x7f,0xff,0xff,0xff,0x0,0x1,0x1,0x0,0x0,0x2b,0xcc,0x0,0x0, + 0x0,0x0,0x2a,0x30,0x0,0x4,0x4c,0x4d,0x54,0x0,0x2b,0x30,0x33,0x0,0x0,0x0, + 0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xd5,0x1b,0x36,0xb4,0x0,0x0, + 0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x1,0x0,0x0,0x2b,0xcc,0x0,0x0,0x0, + 0x0,0x2a,0x30,0x0,0x4,0x4c,0x4d,0x54,0x0,0x2b,0x30,0x33,0x0,0x0,0x0,0x0, + 0x0,0xa,0x3c,0x2b,0x30,0x33,0x3e,0x2d,0x33,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/Asia/Tel_Aviv 0x0,0x0,0x8,0xd9, 0x54, @@ -47189,32 +48978,33 @@ static const unsigned char qt_resource_data[] = { 0x2d,0x32,0x49,0x44,0x54,0x2c,0x4d,0x33,0x2e,0x34,0x2e,0x34,0x2f,0x32,0x36,0x2c, 0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/Asia/Pontianak - 0x0,0x0,0x1,0x77, + 0x0,0x0,0x1,0x8b, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x9,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x15,0x80,0x0,0x0,0x0,0x8b, + 0x0,0x0,0x9,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x1f,0x80,0x0,0x0,0x0,0x8b, 0xff,0x8e,0x0,0xba,0x16,0xdf,0x0,0xcb,0x79,0xa4,0x8,0xd2,0x56,0xee,0x70,0xd7, 0x3c,0xc6,0x8,0xda,0xff,0x26,0x0,0xf4,0xb5,0xbe,0x88,0x21,0xda,0x74,0x80,0x0, 0x1,0x2,0x3,0x2,0x4,0x2,0x5,0x6,0x0,0x0,0x66,0x80,0x0,0x0,0x0,0x0, - 0x66,0x80,0x0,0x4,0x0,0x0,0x69,0x78,0x0,0x8,0x0,0x0,0x7e,0x90,0x0,0xc, - 0x0,0x0,0x70,0x80,0x0,0x8,0x0,0x0,0x70,0x80,0x0,0x10,0x0,0x0,0x62,0x70, - 0x0,0x8,0x4c,0x4d,0x54,0x0,0x50,0x4d,0x54,0x0,0x57,0x49,0x42,0x0,0x4a,0x53, - 0x54,0x0,0x57,0x49,0x54,0x41,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0, - 0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x7,0x0,0x0,0x0, - 0x15,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x8b,0xff,0x8e, - 0x0,0xff,0xff,0xff,0xff,0xba,0x16,0xdf,0x0,0xff,0xff,0xff,0xff,0xcb,0x79,0xa4, - 0x8,0xff,0xff,0xff,0xff,0xd2,0x56,0xee,0x70,0xff,0xff,0xff,0xff,0xd7,0x3c,0xc6, - 0x8,0xff,0xff,0xff,0xff,0xda,0xff,0x26,0x0,0xff,0xff,0xff,0xff,0xf4,0xb5,0xbe, - 0x88,0x0,0x0,0x0,0x0,0x21,0xda,0x74,0x80,0x0,0x1,0x2,0x3,0x2,0x4,0x2, - 0x5,0x6,0x0,0x0,0x66,0x80,0x0,0x0,0x0,0x0,0x66,0x80,0x0,0x4,0x0,0x0, - 0x69,0x78,0x0,0x8,0x0,0x0,0x7e,0x90,0x0,0xc,0x0,0x0,0x70,0x80,0x0,0x8, - 0x0,0x0,0x70,0x80,0x0,0x10,0x0,0x0,0x62,0x70,0x0,0x8,0x4c,0x4d,0x54,0x0, - 0x50,0x4d,0x54,0x0,0x57,0x49,0x42,0x0,0x4a,0x53,0x54,0x0,0x57,0x49,0x54,0x41, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa, - 0x57,0x49,0x42,0x2d,0x37,0xa, + 0x66,0x80,0x0,0x4,0x0,0x0,0x69,0x78,0x0,0x8,0x0,0x0,0x7e,0x90,0x0,0xe, + 0x0,0x0,0x70,0x80,0x0,0x12,0x0,0x0,0x70,0x80,0x0,0x16,0x0,0x0,0x62,0x70, + 0x0,0x1b,0x4c,0x4d,0x54,0x0,0x50,0x4d,0x54,0x0,0x2b,0x30,0x37,0x33,0x30,0x0, + 0x2b,0x30,0x39,0x0,0x2b,0x30,0x38,0x0,0x57,0x49,0x54,0x41,0x0,0x57,0x49,0x42, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54, + 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x9,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x1f,0xf8,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x8b,0xff,0x8e,0x0,0xff,0xff,0xff,0xff,0xba, + 0x16,0xdf,0x0,0xff,0xff,0xff,0xff,0xcb,0x79,0xa4,0x8,0xff,0xff,0xff,0xff,0xd2, + 0x56,0xee,0x70,0xff,0xff,0xff,0xff,0xd7,0x3c,0xc6,0x8,0xff,0xff,0xff,0xff,0xda, + 0xff,0x26,0x0,0xff,0xff,0xff,0xff,0xf4,0xb5,0xbe,0x88,0x0,0x0,0x0,0x0,0x21, + 0xda,0x74,0x80,0x0,0x1,0x2,0x3,0x2,0x4,0x2,0x5,0x6,0x0,0x0,0x66,0x80, + 0x0,0x0,0x0,0x0,0x66,0x80,0x0,0x4,0x0,0x0,0x69,0x78,0x0,0x8,0x0,0x0, + 0x7e,0x90,0x0,0xe,0x0,0x0,0x70,0x80,0x0,0x12,0x0,0x0,0x70,0x80,0x0,0x16, + 0x0,0x0,0x62,0x70,0x0,0x1b,0x4c,0x4d,0x54,0x0,0x50,0x4d,0x54,0x0,0x2b,0x30, + 0x37,0x33,0x30,0x0,0x2b,0x30,0x39,0x0,0x2b,0x30,0x38,0x0,0x57,0x49,0x54,0x41, + 0x0,0x57,0x49,0x42,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0xa,0x57,0x49,0x42,0x2d,0x37,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/Asia/Tomsk 0x0,0x0,0x4,0xe7, 0x54, @@ -47298,73 +49088,78 @@ static const unsigned char qt_resource_data[] = { 0x1,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2b, 0x30,0x37,0x3e,0x2d,0x37,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/Asia/Yangon - 0x0,0x0,0x1,0x1d, + 0x0,0x0,0x1,0x29, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x4,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x15,0x80,0x0,0x0,0x0,0xa1, - 0xf2,0x73,0x58,0xcb,0xf2,0xfc,0x18,0xd1,0x9a,0x67,0xf0,0x1,0x2,0x3,0x4,0x0, - 0x0,0x5a,0x28,0x0,0x0,0x0,0x0,0x5a,0x28,0x0,0x4,0x0,0x0,0x5b,0x68,0x0, - 0x8,0x0,0x0,0x7e,0x90,0x0,0xd,0x0,0x0,0x5b,0x68,0x0,0x11,0x4c,0x4d,0x54, - 0x0,0x52,0x4d,0x54,0x0,0x42,0x55,0x52,0x54,0x0,0x4a,0x53,0x54,0x0,0x4d,0x4d, - 0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66, - 0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5, - 0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x15,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0xff,0xff,0xff,0xff,0x56,0xb6,0x89,0xd8,0xff,0xff,0xff,0xff,0xa1,0xf2,0x73,0x58, - 0xff,0xff,0xff,0xff,0xcb,0xf2,0xfc,0x18,0xff,0xff,0xff,0xff,0xd1,0x9a,0x67,0xf0, - 0x0,0x1,0x2,0x3,0x4,0x0,0x0,0x5a,0x28,0x0,0x0,0x0,0x0,0x5a,0x28,0x0, - 0x4,0x0,0x0,0x5b,0x68,0x0,0x8,0x0,0x0,0x7e,0x90,0x0,0xd,0x0,0x0,0x5b, - 0x68,0x0,0x11,0x4c,0x4d,0x54,0x0,0x52,0x4d,0x54,0x0,0x42,0x55,0x52,0x54,0x0, - 0x4a,0x53,0x54,0x0,0x4d,0x4d,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xa,0x4d,0x4d,0x54,0x2d,0x36,0x3a,0x33,0x30,0xa, + 0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x12,0x80,0x0,0x0,0x0,0xa1, + 0xf2,0x73,0x51,0xcb,0xf2,0xfc,0x18,0xd1,0x9a,0x67,0xf0,0x7f,0xff,0xff,0xff,0x1, + 0x2,0x3,0x2,0x2,0x0,0x0,0x5a,0x2f,0x0,0x0,0x0,0x0,0x5a,0x2f,0x0,0x4, + 0x0,0x0,0x5b,0x68,0x0,0x8,0x0,0x0,0x7e,0x90,0x0,0xe,0x0,0x0,0x5b,0x68, + 0x0,0x8,0x4c,0x4d,0x54,0x0,0x52,0x4d,0x54,0x0,0x2b,0x30,0x36,0x33,0x30,0x0, + 0x2b,0x30,0x39,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a, + 0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x12,0xf8,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xff,0xff,0xff,0xff,0x56,0xb6,0x89,0xd1,0xff,0xff,0xff,0xff,0xa1,0xf2, + 0x73,0x51,0xff,0xff,0xff,0xff,0xcb,0xf2,0xfc,0x18,0xff,0xff,0xff,0xff,0xd1,0x9a, + 0x67,0xf0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x2,0x3,0x2,0x2, + 0x0,0x0,0x5a,0x2f,0x0,0x0,0x0,0x0,0x5a,0x2f,0x0,0x4,0x0,0x0,0x5b,0x68, + 0x0,0x8,0x0,0x0,0x7e,0x90,0x0,0xe,0x0,0x0,0x5b,0x68,0x0,0x8,0x4c,0x4d, + 0x54,0x0,0x52,0x4d,0x54,0x0,0x2b,0x30,0x36,0x33,0x30,0x0,0x2b,0x30,0x39,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2b,0x30,0x36,0x33, + 0x30,0x3e,0x2d,0x36,0x3a,0x33,0x30,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/Asia/Kabul - 0x0,0x0,0x0,0xc7, + 0x0,0x0,0x0,0xe5, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0xd0, - 0xf9,0xd7,0x40,0x1,0x2,0x0,0x0,0x40,0xe0,0x0,0x0,0x0,0x0,0x38,0x40,0x0, - 0x4,0x0,0x0,0x3f,0x48,0x0,0x4,0x4c,0x4d,0x54,0x0,0x41,0x46,0x54,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0, - 0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0, - 0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x69,0x86,0x9a, - 0xa0,0xff,0xff,0xff,0xff,0xd0,0xf9,0xd7,0x40,0x0,0x1,0x2,0x0,0x0,0x40,0xe0, - 0x0,0x0,0x0,0x0,0x38,0x40,0x0,0x4,0x0,0x0,0x3f,0x48,0x0,0x4,0x4c,0x4d, - 0x54,0x0,0x41,0x46,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x41,0x46,0x54, - 0x2d,0x34,0x3a,0x33,0x30,0xa, + 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xe,0x80,0x0,0x0,0x0,0xd0, + 0xf9,0xd7,0x40,0x7f,0xff,0xff,0xff,0x1,0x2,0x2,0x0,0x0,0x40,0xe0,0x0,0x0, + 0x0,0x0,0x38,0x40,0x0,0x4,0x0,0x0,0x3f,0x48,0x0,0x8,0x4c,0x4d,0x54,0x0, + 0x2b,0x30,0x34,0x0,0x2b,0x30,0x34,0x33,0x30,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xe,0xf8,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x69,0x86,0x9a,0xa0,0xff,0xff,0xff,0xff, + 0xd0,0xf9,0xd7,0x40,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x2,0x2, + 0x0,0x0,0x40,0xe0,0x0,0x0,0x0,0x0,0x38,0x40,0x0,0x4,0x0,0x0,0x3f,0x48, + 0x0,0x8,0x4c,0x4d,0x54,0x0,0x2b,0x30,0x34,0x0,0x2b,0x30,0x34,0x33,0x30,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2b,0x30,0x34,0x33,0x30,0x3e,0x2d,0x34, + 0x3a,0x33,0x30,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/Asia/Thimphu - 0x0,0x0,0x0,0xd1, + 0x0,0x0,0x0,0xe5, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0xd5, - 0xe6,0x15,0x74,0x21,0x61,0x4d,0xa8,0x0,0x1,0x2,0x0,0x0,0x54,0xc,0x0,0x0, - 0x0,0x0,0x4d,0x58,0x0,0x4,0x0,0x0,0x54,0x60,0x0,0x8,0x4c,0x4d,0x54,0x0, - 0x49,0x53,0x54,0x0,0x42,0x54,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a, - 0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0xf8,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xff,0xff,0xff,0xff,0xd5,0xe6,0x15,0x74,0x0,0x0,0x0,0x0,0x21,0x61, - 0x4d,0xa8,0x0,0x1,0x2,0x0,0x0,0x54,0xc,0x0,0x0,0x0,0x0,0x4d,0x58,0x0, - 0x4,0x0,0x0,0x54,0x60,0x0,0x8,0x4c,0x4d,0x54,0x0,0x49,0x53,0x54,0x0,0x42, - 0x54,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x42,0x54,0x54,0x2d,0x36,0xa, - + 0x0,0x0,0x4,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xe,0x80,0x0,0x0,0x0,0xd5, + 0xe6,0x15,0x74,0x21,0x61,0x4d,0xa8,0x7f,0xff,0xff,0xff,0x0,0x1,0x2,0x2,0x0, + 0x0,0x54,0xc,0x0,0x0,0x0,0x0,0x4d,0x58,0x0,0x4,0x0,0x0,0x54,0x60,0x0, + 0xa,0x4c,0x4d,0x54,0x0,0x2b,0x30,0x35,0x33,0x30,0x0,0x2b,0x30,0x36,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0, + 0x3,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x3,0x0,0x0,0x0, + 0xe,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xd5,0xe6,0x15, + 0x74,0x0,0x0,0x0,0x0,0x21,0x61,0x4d,0xa8,0x0,0x0,0x0,0x0,0x7f,0xff,0xff, + 0xff,0x0,0x1,0x2,0x2,0x0,0x0,0x54,0xc,0x0,0x0,0x0,0x0,0x4d,0x58,0x0, + 0x4,0x0,0x0,0x54,0x60,0x0,0xa,0x4c,0x4d,0x54,0x0,0x2b,0x30,0x35,0x33,0x30, + 0x0,0x2b,0x30,0x36,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2b,0x30,0x36, + 0x3e,0x2d,0x36,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/Asia/Urumqi - 0x0,0x0,0x0,0xab, + 0x0,0x0,0x0,0xbb, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0xb0, - 0xfe,0xba,0x64,0x0,0x1,0x0,0x0,0x52,0x1c,0x0,0x0,0x0,0x0,0x54,0x60,0x0, - 0x4,0x4c,0x4d,0x54,0x0,0x58,0x4a,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, - 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0xb0,0xfe,0xba,0x64,0x0,0x1,0x0,0x0,0x52,0x1c,0x0, - 0x0,0x0,0x0,0x54,0x60,0x0,0x4,0x4c,0x4d,0x54,0x0,0x58,0x4a,0x54,0x0,0x0, - 0x0,0x0,0x0,0xa,0x58,0x4a,0x54,0x2d,0x36,0xa, + 0x0,0x0,0x3,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0xb0, + 0xfe,0xba,0x64,0x7f,0xff,0xff,0xff,0x0,0x1,0x1,0x0,0x0,0x52,0x1c,0x0,0x0, + 0x0,0x0,0x54,0x60,0x0,0x4,0x4c,0x4d,0x54,0x0,0x2b,0x30,0x36,0x0,0x0,0x0, + 0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xb0,0xfe,0xba,0x64,0x0,0x0, + 0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x1,0x0,0x0,0x52,0x1c,0x0,0x0,0x0, + 0x0,0x54,0x60,0x0,0x4,0x4c,0x4d,0x54,0x0,0x2b,0x30,0x36,0x0,0x0,0x0,0x0, + 0x0,0xa,0x3c,0x2b,0x30,0x36,0x3e,0x2d,0x36,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/Asia/Yekaterinburg 0x0,0x0,0x5,0x1, 0x54, @@ -47450,11 +49245,11 @@ static const unsigned char qt_resource_data[] = { 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2b,0x30,0x35,0x3e,0x2d,0x35,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/Asia/Yerevan - 0x0,0x0,0x4,0xaf, + 0x0,0x0,0x4,0xbd, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x41,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x10,0x80,0x0,0x0,0x0,0xaa, + 0x0,0x0,0x42,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x10,0x80,0x0,0x0,0x0,0xaa, 0x19,0x9a,0x48,0xe7,0xda,0xc,0x50,0x15,0x27,0x99,0xc0,0x16,0x18,0xce,0x30,0x17, 0x8,0xcd,0x40,0x17,0xfa,0x1,0xb0,0x18,0xea,0x0,0xc0,0x19,0xdb,0x35,0x30,0x1a, 0xcc,0x85,0xc0,0x1b,0xbc,0x92,0xe0,0x1c,0xac,0x83,0xe0,0x1d,0x9c,0x74,0xe0,0x1e, @@ -47470,94 +49265,97 @@ static const unsigned char qt_resource_data[] = { 0x84,0xe,0xe0,0x42,0x45,0xdb,0x60,0x43,0x63,0xf0,0xe0,0x44,0x25,0xbd,0x60,0x45, 0x43,0xd2,0xe0,0x46,0x5,0x9f,0x60,0x47,0x23,0xb4,0xe0,0x47,0xee,0xbb,0xe0,0x49, 0x3,0x96,0xe0,0x49,0xce,0x9d,0xe0,0x4a,0xe3,0x78,0xe0,0x4b,0xae,0x7f,0xe0,0x4c, - 0xcc,0x95,0x60,0x4d,0x8e,0x61,0xe0,0x4e,0xac,0x77,0x60,0x7f,0xff,0xff,0xff,0x0, - 0x1,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x4, - 0x3,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x4, - 0x0,0x0,0x29,0xb8,0x0,0x0,0x0,0x0,0x2a,0x30,0x0,0x4,0x0,0x0,0x46,0x50, - 0x1,0x8,0x0,0x0,0x38,0x40,0x0,0xc,0x0,0x0,0x38,0x40,0x0,0xc,0x0,0x0, - 0x46,0x50,0x1,0x8,0x0,0x0,0x38,0x40,0x1,0xc,0x0,0x0,0x2a,0x30,0x0,0x4, - 0x0,0x0,0x46,0x50,0x1,0x8,0x0,0x0,0x38,0x40,0x0,0xc,0x4c,0x4d,0x54,0x0, - 0x2b,0x30,0x33,0x0,0x2b,0x30,0x35,0x0,0x2b,0x30,0x34,0x0,0x0,0x0,0x0,0x0, - 0x1,0x1,0x1,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x41,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x10,0xf8,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xaa,0x19,0x9a,0x48,0xff,0xff,0xff,0xff, - 0xe7,0xda,0xc,0x50,0x0,0x0,0x0,0x0,0x15,0x27,0x99,0xc0,0x0,0x0,0x0,0x0, - 0x16,0x18,0xce,0x30,0x0,0x0,0x0,0x0,0x17,0x8,0xcd,0x40,0x0,0x0,0x0,0x0, - 0x17,0xfa,0x1,0xb0,0x0,0x0,0x0,0x0,0x18,0xea,0x0,0xc0,0x0,0x0,0x0,0x0, - 0x19,0xdb,0x35,0x30,0x0,0x0,0x0,0x0,0x1a,0xcc,0x85,0xc0,0x0,0x0,0x0,0x0, - 0x1b,0xbc,0x92,0xe0,0x0,0x0,0x0,0x0,0x1c,0xac,0x83,0xe0,0x0,0x0,0x0,0x0, - 0x1d,0x9c,0x74,0xe0,0x0,0x0,0x0,0x0,0x1e,0x8c,0x65,0xe0,0x0,0x0,0x0,0x0, - 0x1f,0x7c,0x56,0xe0,0x0,0x0,0x0,0x0,0x20,0x6c,0x47,0xe0,0x0,0x0,0x0,0x0, - 0x21,0x5c,0x38,0xe0,0x0,0x0,0x0,0x0,0x22,0x4c,0x29,0xe0,0x0,0x0,0x0,0x0, - 0x23,0x3c,0x1a,0xe0,0x0,0x0,0x0,0x0,0x24,0x2c,0xb,0xe0,0x0,0x0,0x0,0x0, - 0x25,0x1b,0xfc,0xe0,0x0,0x0,0x0,0x0,0x26,0xb,0xed,0xe0,0x0,0x0,0x0,0x0, - 0x27,0x5,0x19,0x60,0x0,0x0,0x0,0x0,0x27,0xf5,0xa,0x60,0x0,0x0,0x0,0x0, - 0x28,0xe5,0x9,0x70,0x0,0x0,0x0,0x0,0x29,0xd4,0xfa,0x70,0x0,0x0,0x0,0x0, - 0x2a,0xc4,0xeb,0x70,0x0,0x0,0x0,0x0,0x2b,0xb4,0xdc,0x70,0x0,0x0,0x0,0x0, - 0x2c,0xa4,0xcd,0x70,0x0,0x0,0x0,0x0,0x2d,0x94,0xbe,0x70,0x0,0x0,0x0,0x0, - 0x2e,0x84,0xaf,0x70,0x0,0x0,0x0,0x0,0x2f,0x74,0xa0,0x70,0x0,0x0,0x0,0x0, - 0x30,0x64,0x91,0x70,0x0,0x0,0x0,0x0,0x32,0xc9,0x70,0xc0,0x0,0x0,0x0,0x0, - 0x33,0x3d,0x90,0xe0,0x0,0x0,0x0,0x0,0x34,0x52,0x6b,0xe0,0x0,0x0,0x0,0x0, - 0x35,0x1d,0x72,0xe0,0x0,0x0,0x0,0x0,0x36,0x32,0x4d,0xe0,0x0,0x0,0x0,0x0, - 0x36,0xfd,0x54,0xe0,0x0,0x0,0x0,0x0,0x38,0x1b,0x6a,0x60,0x0,0x0,0x0,0x0, - 0x38,0xdd,0x36,0xe0,0x0,0x0,0x0,0x0,0x39,0xfb,0x4c,0x60,0x0,0x0,0x0,0x0, - 0x3a,0xbd,0x18,0xe0,0x0,0x0,0x0,0x0,0x3b,0xdb,0x2e,0x60,0x0,0x0,0x0,0x0, - 0x3c,0xa6,0x35,0x60,0x0,0x0,0x0,0x0,0x3d,0xbb,0x10,0x60,0x0,0x0,0x0,0x0, - 0x3e,0x86,0x17,0x60,0x0,0x0,0x0,0x0,0x3f,0x9a,0xf2,0x60,0x0,0x0,0x0,0x0, - 0x40,0x65,0xf9,0x60,0x0,0x0,0x0,0x0,0x41,0x84,0xe,0xe0,0x0,0x0,0x0,0x0, - 0x42,0x45,0xdb,0x60,0x0,0x0,0x0,0x0,0x43,0x63,0xf0,0xe0,0x0,0x0,0x0,0x0, - 0x44,0x25,0xbd,0x60,0x0,0x0,0x0,0x0,0x45,0x43,0xd2,0xe0,0x0,0x0,0x0,0x0, - 0x46,0x5,0x9f,0x60,0x0,0x0,0x0,0x0,0x47,0x23,0xb4,0xe0,0x0,0x0,0x0,0x0, - 0x47,0xee,0xbb,0xe0,0x0,0x0,0x0,0x0,0x49,0x3,0x96,0xe0,0x0,0x0,0x0,0x0, - 0x49,0xce,0x9d,0xe0,0x0,0x0,0x0,0x0,0x4a,0xe3,0x78,0xe0,0x0,0x0,0x0,0x0, - 0x4b,0xae,0x7f,0xe0,0x0,0x0,0x0,0x0,0x4c,0xcc,0x95,0x60,0x0,0x0,0x0,0x0, - 0x4d,0x8e,0x61,0xe0,0x0,0x0,0x0,0x0,0x4e,0xac,0x77,0x60,0x0,0x0,0x0,0x0, - 0x7f,0xff,0xff,0xff,0x0,0x1,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x4,0x5, - 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x6,0x7,0x6,0x7,0x6, - 0x7,0x6,0x7,0x6,0x4,0x3,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4, - 0x5,0x4,0x5,0x4,0x4,0x0,0x0,0x29,0xb8,0x0,0x0,0x0,0x0,0x2a,0x30,0x0, + 0xcc,0x95,0x60,0x4d,0x1e,0x36,0x40,0x4d,0x8e,0x61,0xe0,0x4e,0xac,0x77,0x60,0x7f, + 0xff,0xff,0xff,0x0,0x1,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x7,0x6,0x4,0x3,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x3,0x5,0x4,0x4,0x0,0x0,0x29,0xb8,0x0,0x0,0x0,0x0,0x2a,0x30,0x0, 0x4,0x0,0x0,0x46,0x50,0x1,0x8,0x0,0x0,0x38,0x40,0x0,0xc,0x0,0x0,0x38, 0x40,0x0,0xc,0x0,0x0,0x46,0x50,0x1,0x8,0x0,0x0,0x38,0x40,0x1,0xc,0x0, 0x0,0x2a,0x30,0x0,0x4,0x0,0x0,0x46,0x50,0x1,0x8,0x0,0x0,0x38,0x40,0x0, 0xc,0x4c,0x4d,0x54,0x0,0x2b,0x30,0x33,0x0,0x2b,0x30,0x35,0x0,0x2b,0x30,0x34, 0x0,0x0,0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2b,0x30,0x34,0x3e,0x2d,0x34,0xa, + 0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0, + 0xa,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x42,0x0,0x0,0x0,0xa,0x0,0x0,0x0, + 0x10,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xaa,0x19,0x9a, + 0x48,0xff,0xff,0xff,0xff,0xe7,0xda,0xc,0x50,0x0,0x0,0x0,0x0,0x15,0x27,0x99, + 0xc0,0x0,0x0,0x0,0x0,0x16,0x18,0xce,0x30,0x0,0x0,0x0,0x0,0x17,0x8,0xcd, + 0x40,0x0,0x0,0x0,0x0,0x17,0xfa,0x1,0xb0,0x0,0x0,0x0,0x0,0x18,0xea,0x0, + 0xc0,0x0,0x0,0x0,0x0,0x19,0xdb,0x35,0x30,0x0,0x0,0x0,0x0,0x1a,0xcc,0x85, + 0xc0,0x0,0x0,0x0,0x0,0x1b,0xbc,0x92,0xe0,0x0,0x0,0x0,0x0,0x1c,0xac,0x83, + 0xe0,0x0,0x0,0x0,0x0,0x1d,0x9c,0x74,0xe0,0x0,0x0,0x0,0x0,0x1e,0x8c,0x65, + 0xe0,0x0,0x0,0x0,0x0,0x1f,0x7c,0x56,0xe0,0x0,0x0,0x0,0x0,0x20,0x6c,0x47, + 0xe0,0x0,0x0,0x0,0x0,0x21,0x5c,0x38,0xe0,0x0,0x0,0x0,0x0,0x22,0x4c,0x29, + 0xe0,0x0,0x0,0x0,0x0,0x23,0x3c,0x1a,0xe0,0x0,0x0,0x0,0x0,0x24,0x2c,0xb, + 0xe0,0x0,0x0,0x0,0x0,0x25,0x1b,0xfc,0xe0,0x0,0x0,0x0,0x0,0x26,0xb,0xed, + 0xe0,0x0,0x0,0x0,0x0,0x27,0x5,0x19,0x60,0x0,0x0,0x0,0x0,0x27,0xf5,0xa, + 0x60,0x0,0x0,0x0,0x0,0x28,0xe5,0x9,0x70,0x0,0x0,0x0,0x0,0x29,0xd4,0xfa, + 0x70,0x0,0x0,0x0,0x0,0x2a,0xc4,0xeb,0x70,0x0,0x0,0x0,0x0,0x2b,0xb4,0xdc, + 0x70,0x0,0x0,0x0,0x0,0x2c,0xa4,0xcd,0x70,0x0,0x0,0x0,0x0,0x2d,0x94,0xbe, + 0x70,0x0,0x0,0x0,0x0,0x2e,0x84,0xaf,0x70,0x0,0x0,0x0,0x0,0x2f,0x74,0xa0, + 0x70,0x0,0x0,0x0,0x0,0x30,0x64,0x91,0x70,0x0,0x0,0x0,0x0,0x32,0xc9,0x70, + 0xc0,0x0,0x0,0x0,0x0,0x33,0x3d,0x90,0xe0,0x0,0x0,0x0,0x0,0x34,0x52,0x6b, + 0xe0,0x0,0x0,0x0,0x0,0x35,0x1d,0x72,0xe0,0x0,0x0,0x0,0x0,0x36,0x32,0x4d, + 0xe0,0x0,0x0,0x0,0x0,0x36,0xfd,0x54,0xe0,0x0,0x0,0x0,0x0,0x38,0x1b,0x6a, + 0x60,0x0,0x0,0x0,0x0,0x38,0xdd,0x36,0xe0,0x0,0x0,0x0,0x0,0x39,0xfb,0x4c, + 0x60,0x0,0x0,0x0,0x0,0x3a,0xbd,0x18,0xe0,0x0,0x0,0x0,0x0,0x3b,0xdb,0x2e, + 0x60,0x0,0x0,0x0,0x0,0x3c,0xa6,0x35,0x60,0x0,0x0,0x0,0x0,0x3d,0xbb,0x10, + 0x60,0x0,0x0,0x0,0x0,0x3e,0x86,0x17,0x60,0x0,0x0,0x0,0x0,0x3f,0x9a,0xf2, + 0x60,0x0,0x0,0x0,0x0,0x40,0x65,0xf9,0x60,0x0,0x0,0x0,0x0,0x41,0x84,0xe, + 0xe0,0x0,0x0,0x0,0x0,0x42,0x45,0xdb,0x60,0x0,0x0,0x0,0x0,0x43,0x63,0xf0, + 0xe0,0x0,0x0,0x0,0x0,0x44,0x25,0xbd,0x60,0x0,0x0,0x0,0x0,0x45,0x43,0xd2, + 0xe0,0x0,0x0,0x0,0x0,0x46,0x5,0x9f,0x60,0x0,0x0,0x0,0x0,0x47,0x23,0xb4, + 0xe0,0x0,0x0,0x0,0x0,0x47,0xee,0xbb,0xe0,0x0,0x0,0x0,0x0,0x49,0x3,0x96, + 0xe0,0x0,0x0,0x0,0x0,0x49,0xce,0x9d,0xe0,0x0,0x0,0x0,0x0,0x4a,0xe3,0x78, + 0xe0,0x0,0x0,0x0,0x0,0x4b,0xae,0x7f,0xe0,0x0,0x0,0x0,0x0,0x4c,0xcc,0x95, + 0x60,0x0,0x0,0x0,0x0,0x4d,0x1e,0x36,0x40,0x0,0x0,0x0,0x0,0x4d,0x8e,0x61, + 0xe0,0x0,0x0,0x0,0x0,0x4e,0xac,0x77,0x60,0x0,0x0,0x0,0x0,0x7f,0xff,0xff, + 0xff,0x0,0x1,0x3,0x2,0x3,0x2,0x3,0x2,0x3,0x2,0x4,0x5,0x4,0x5,0x4, + 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x6,0x7,0x6,0x7,0x6,0x7,0x6,0x7, + 0x6,0x4,0x3,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5, + 0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x4,0x3, + 0x5,0x4,0x4,0x0,0x0,0x29,0xb8,0x0,0x0,0x0,0x0,0x2a,0x30,0x0,0x4,0x0, + 0x0,0x46,0x50,0x1,0x8,0x0,0x0,0x38,0x40,0x0,0xc,0x0,0x0,0x38,0x40,0x0, + 0xc,0x0,0x0,0x46,0x50,0x1,0x8,0x0,0x0,0x38,0x40,0x1,0xc,0x0,0x0,0x2a, + 0x30,0x0,0x4,0x0,0x0,0x46,0x50,0x1,0x8,0x0,0x0,0x38,0x40,0x0,0xc,0x4c, + 0x4d,0x54,0x0,0x2b,0x30,0x33,0x0,0x2b,0x30,0x35,0x0,0x2b,0x30,0x34,0x0,0x0, + 0x0,0x0,0x0,0x1,0x1,0x1,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0xa,0x3c,0x2b,0x30,0x34,0x3e,0x2d,0x34,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/Asia/Qatar - 0x0,0x0,0x0,0xd1, + 0x0,0x0,0x0,0xe1, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0xa1, - 0xf2,0x9d,0x30,0x4,0x8a,0x92,0xc0,0x0,0x1,0x2,0x0,0x0,0x30,0x50,0x0,0x0, - 0x0,0x0,0x38,0x40,0x0,0x4,0x0,0x0,0x2a,0x30,0x0,0x8,0x4c,0x4d,0x54,0x0, - 0x47,0x53,0x54,0x0,0x41,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a, - 0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0xf8,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xff,0xff,0xff,0xff,0xa1,0xf2,0x9d,0x30,0x0,0x0,0x0,0x0,0x4,0x8a, - 0x92,0xc0,0x0,0x1,0x2,0x0,0x0,0x30,0x50,0x0,0x0,0x0,0x0,0x38,0x40,0x0, - 0x4,0x0,0x0,0x2a,0x30,0x0,0x8,0x4c,0x4d,0x54,0x0,0x47,0x53,0x54,0x0,0x41, - 0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x41,0x53,0x54,0x2d,0x33,0xa, + 0x0,0x0,0x4,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0xa1, + 0xf2,0x9d,0x30,0x4,0x8a,0x92,0xc0,0x7f,0xff,0xff,0xff,0x0,0x1,0x2,0x2,0x0, + 0x0,0x30,0x50,0x0,0x0,0x0,0x0,0x38,0x40,0x0,0x4,0x0,0x0,0x2a,0x30,0x0, + 0x8,0x4c,0x4d,0x54,0x0,0x2b,0x30,0x34,0x0,0x2b,0x30,0x33,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0xf8, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xa1,0xf2,0x9d,0x30,0x0, + 0x0,0x0,0x0,0x4,0x8a,0x92,0xc0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0, + 0x1,0x2,0x2,0x0,0x0,0x30,0x50,0x0,0x0,0x0,0x0,0x38,0x40,0x0,0x4,0x0, + 0x0,0x2a,0x30,0x0,0x8,0x4c,0x4d,0x54,0x0,0x2b,0x30,0x34,0x0,0x2b,0x30,0x33, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2b,0x30,0x33,0x3e,0x2d,0x33,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/Asia/Dubai - 0x0,0x0,0x0,0xab, + 0x0,0x0,0x0,0xbb, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0xa1, - 0xf2,0x99,0xa8,0x0,0x1,0x0,0x0,0x33,0xd8,0x0,0x0,0x0,0x0,0x38,0x40,0x0, - 0x4,0x4c,0x4d,0x54,0x0,0x47,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, - 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0xa1,0xf2,0x99,0xa8,0x0,0x1,0x0,0x0,0x33,0xd8,0x0, - 0x0,0x0,0x0,0x38,0x40,0x0,0x4,0x4c,0x4d,0x54,0x0,0x47,0x53,0x54,0x0,0x0, - 0x0,0x0,0x0,0xa,0x47,0x53,0x54,0x2d,0x34,0xa, + 0x0,0x0,0x3,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0xa1, + 0xf2,0x99,0xa8,0x7f,0xff,0xff,0xff,0x0,0x1,0x1,0x0,0x0,0x33,0xd8,0x0,0x0, + 0x0,0x0,0x38,0x40,0x0,0x4,0x4c,0x4d,0x54,0x0,0x2b,0x30,0x34,0x0,0x0,0x0, + 0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xa1,0xf2,0x99,0xa8,0x0,0x0, + 0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x1,0x0,0x0,0x33,0xd8,0x0,0x0,0x0, + 0x0,0x38,0x40,0x0,0x4,0x4c,0x4d,0x54,0x0,0x2b,0x30,0x34,0x0,0x0,0x0,0x0, + 0x0,0xa,0x3c,0x2b,0x30,0x34,0x3e,0x2d,0x34,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/Asia/Beirut 0x0,0x0,0x8,0x7f, 0x54, @@ -47698,11 +49496,11 @@ static const unsigned char qt_resource_data[] = { 0xa,0x45,0x45,0x54,0x2d,0x32,0x45,0x45,0x53,0x54,0x2c,0x4d,0x33,0x2e,0x35,0x2e, 0x30,0x2f,0x30,0x2c,0x4d,0x31,0x30,0x2e,0x35,0x2e,0x30,0x2f,0x30,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/Asia/Choibalsan - 0x0,0x0,0x6,0x31, + 0x0,0x0,0x3,0xdf, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x5e,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0x86, + 0x0,0x0,0x35,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x14,0x80,0x0,0x0,0x0,0x86, 0xd3,0xe7,0x28,0xf,0xb,0xdc,0x90,0x18,0xe9,0xc8,0x80,0x19,0xda,0xee,0xe0,0x1a, 0xcc,0x3f,0x70,0x1b,0xbc,0x22,0x60,0x1c,0xac,0x21,0x70,0x1d,0x9c,0x4,0x60,0x1e, 0x8c,0x3,0x70,0x1f,0x7b,0xe6,0x60,0x20,0x6b,0xe5,0x70,0x21,0x5b,0xc8,0x60,0x22, @@ -47715,121 +49513,83 @@ static const unsigned char qt_resource_data[] = { 0xa4,0x9d,0x90,0x3d,0x94,0x80,0x80,0x3e,0x84,0x7f,0x90,0x3f,0x74,0x62,0x80,0x40, 0x64,0x61,0x90,0x41,0x54,0x44,0x80,0x42,0x44,0x43,0x90,0x43,0x34,0x26,0x80,0x44, 0x24,0x25,0x90,0x45,0x1d,0x43,0x0,0x47,0xef,0xaa,0xf0,0x55,0x15,0x9a,0xa0,0x56, - 0x5,0x61,0x70,0x56,0xf5,0x7c,0xa0,0x57,0xe5,0x43,0x70,0x58,0xd5,0x5e,0xa0,0x59, - 0xce,0x5f,0xf0,0x5a,0xbe,0x7b,0x20,0x5b,0xae,0x41,0xf0,0x5c,0x9e,0x5d,0x20,0x5d, - 0x8e,0x23,0xf0,0x5e,0x7e,0x3f,0x20,0x5f,0x6e,0x5,0xf0,0x60,0x5e,0x21,0x20,0x61, - 0x4d,0xe7,0xf0,0x62,0x3e,0x3,0x20,0x63,0x2d,0xc9,0xf0,0x64,0x1d,0xe5,0x20,0x65, - 0x16,0xe6,0x70,0x66,0x7,0x1,0xa0,0x66,0xf6,0xc8,0x70,0x67,0xe6,0xe3,0xa0,0x68, - 0xd6,0xaa,0x70,0x69,0xc6,0xc5,0xa0,0x6a,0xb6,0x8c,0x70,0x6b,0xa6,0xa7,0xa0,0x6c, - 0x96,0x6e,0x70,0x6d,0x86,0x89,0xa0,0x6e,0x7f,0x8a,0xf0,0x6f,0x6f,0xa6,0x20,0x70, - 0x5f,0x6c,0xf0,0x71,0x4f,0x88,0x20,0x72,0x3f,0x4e,0xf0,0x73,0x2f,0x6a,0x20,0x74, - 0x1f,0x30,0xf0,0x75,0xf,0x4c,0x20,0x75,0xff,0x12,0xf0,0x76,0xef,0x2e,0x20,0x77, - 0xde,0xf4,0xf0,0x78,0xcf,0x10,0x20,0x79,0xc8,0x11,0x70,0x7a,0xb8,0x2c,0xa0,0x7b, - 0xa7,0xf3,0x70,0x7c,0x98,0xe,0xa0,0x7d,0x87,0xd5,0x70,0x7e,0x77,0xf0,0xa0,0x7f, - 0x67,0xb7,0x70,0x0,0x1,0x2,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, + 0x5,0x61,0x70,0x56,0xf5,0x7c,0xa0,0x57,0xe5,0x43,0x70,0x7f,0xff,0xff,0xff,0x0, + 0x1,0x2,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x0,0x0,0x6b,0x58,0x0,0x0,0x0,0x0,0x62,0x70,0x0,0x4,0x0,0x0,0x70, - 0x80,0x0,0x4,0x0,0x0,0x7e,0x90,0x0,0x9,0x0,0x0,0x8c,0xa0,0x1,0xe,0x0, - 0x0,0x7e,0x90,0x1,0xe,0x0,0x0,0x70,0x80,0x0,0x9,0x4c,0x4d,0x54,0x0,0x55, - 0x4c,0x41,0x54,0x0,0x43,0x48,0x4f,0x54,0x0,0x43,0x48,0x4f,0x53,0x54,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, - 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x5e,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x14,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0x86,0xd3,0xe7,0x28,0x0,0x0,0x0,0x0,0xf,0xb,0xdc, - 0x90,0x0,0x0,0x0,0x0,0x18,0xe9,0xc8,0x80,0x0,0x0,0x0,0x0,0x19,0xda,0xee, - 0xe0,0x0,0x0,0x0,0x0,0x1a,0xcc,0x3f,0x70,0x0,0x0,0x0,0x0,0x1b,0xbc,0x22, - 0x60,0x0,0x0,0x0,0x0,0x1c,0xac,0x21,0x70,0x0,0x0,0x0,0x0,0x1d,0x9c,0x4, - 0x60,0x0,0x0,0x0,0x0,0x1e,0x8c,0x3,0x70,0x0,0x0,0x0,0x0,0x1f,0x7b,0xe6, - 0x60,0x0,0x0,0x0,0x0,0x20,0x6b,0xe5,0x70,0x0,0x0,0x0,0x0,0x21,0x5b,0xc8, - 0x60,0x0,0x0,0x0,0x0,0x22,0x4b,0xc7,0x70,0x0,0x0,0x0,0x0,0x23,0x3b,0xaa, - 0x60,0x0,0x0,0x0,0x0,0x24,0x2b,0xa9,0x70,0x0,0x0,0x0,0x0,0x25,0x1b,0x8c, - 0x60,0x0,0x0,0x0,0x0,0x26,0xb,0x8b,0x70,0x0,0x0,0x0,0x0,0x27,0x4,0xa8, - 0xe0,0x0,0x0,0x0,0x0,0x27,0xf4,0xa7,0xf0,0x0,0x0,0x0,0x0,0x28,0xe4,0x8a, - 0xe0,0x0,0x0,0x0,0x0,0x29,0xd4,0x89,0xf0,0x0,0x0,0x0,0x0,0x2a,0xc4,0x6c, - 0xe0,0x0,0x0,0x0,0x0,0x2b,0xb4,0x6b,0xf0,0x0,0x0,0x0,0x0,0x2c,0xa4,0x4e, - 0xe0,0x0,0x0,0x0,0x0,0x2d,0x94,0x4d,0xf0,0x0,0x0,0x0,0x0,0x2e,0x84,0x30, - 0xe0,0x0,0x0,0x0,0x0,0x2f,0x74,0x2f,0xf0,0x0,0x0,0x0,0x0,0x30,0x64,0x12, - 0xe0,0x0,0x0,0x0,0x0,0x31,0x5d,0x4c,0x70,0x0,0x0,0x0,0x0,0x32,0x4d,0x2f, - 0x60,0x0,0x0,0x0,0x0,0x33,0x3d,0x2e,0x70,0x0,0x0,0x0,0x0,0x34,0x2d,0x11, - 0x60,0x0,0x0,0x0,0x0,0x35,0x1d,0x10,0x70,0x0,0x0,0x0,0x0,0x36,0xc,0xf3, - 0x60,0x0,0x0,0x0,0x0,0x3a,0xe9,0xa5,0x90,0x0,0x0,0x0,0x0,0x3b,0xb4,0x9e, - 0x80,0x0,0x0,0x0,0x0,0x3c,0xa4,0x9d,0x90,0x0,0x0,0x0,0x0,0x3d,0x94,0x80, - 0x80,0x0,0x0,0x0,0x0,0x3e,0x84,0x7f,0x90,0x0,0x0,0x0,0x0,0x3f,0x74,0x62, - 0x80,0x0,0x0,0x0,0x0,0x40,0x64,0x61,0x90,0x0,0x0,0x0,0x0,0x41,0x54,0x44, - 0x80,0x0,0x0,0x0,0x0,0x42,0x44,0x43,0x90,0x0,0x0,0x0,0x0,0x43,0x34,0x26, - 0x80,0x0,0x0,0x0,0x0,0x44,0x24,0x25,0x90,0x0,0x0,0x0,0x0,0x45,0x1d,0x43, - 0x0,0x0,0x0,0x0,0x0,0x47,0xef,0xaa,0xf0,0x0,0x0,0x0,0x0,0x55,0x15,0x9a, - 0xa0,0x0,0x0,0x0,0x0,0x56,0x5,0x61,0x70,0x0,0x0,0x0,0x0,0x56,0xf5,0x7c, - 0xa0,0x0,0x0,0x0,0x0,0x57,0xe5,0x43,0x70,0x0,0x0,0x0,0x0,0x58,0xd5,0x5e, - 0xa0,0x0,0x0,0x0,0x0,0x59,0xce,0x5f,0xf0,0x0,0x0,0x0,0x0,0x5a,0xbe,0x7b, - 0x20,0x0,0x0,0x0,0x0,0x5b,0xae,0x41,0xf0,0x0,0x0,0x0,0x0,0x5c,0x9e,0x5d, - 0x20,0x0,0x0,0x0,0x0,0x5d,0x8e,0x23,0xf0,0x0,0x0,0x0,0x0,0x5e,0x7e,0x3f, - 0x20,0x0,0x0,0x0,0x0,0x5f,0x6e,0x5,0xf0,0x0,0x0,0x0,0x0,0x60,0x5e,0x21, - 0x20,0x0,0x0,0x0,0x0,0x61,0x4d,0xe7,0xf0,0x0,0x0,0x0,0x0,0x62,0x3e,0x3, - 0x20,0x0,0x0,0x0,0x0,0x63,0x2d,0xc9,0xf0,0x0,0x0,0x0,0x0,0x64,0x1d,0xe5, - 0x20,0x0,0x0,0x0,0x0,0x65,0x16,0xe6,0x70,0x0,0x0,0x0,0x0,0x66,0x7,0x1, - 0xa0,0x0,0x0,0x0,0x0,0x66,0xf6,0xc8,0x70,0x0,0x0,0x0,0x0,0x67,0xe6,0xe3, - 0xa0,0x0,0x0,0x0,0x0,0x68,0xd6,0xaa,0x70,0x0,0x0,0x0,0x0,0x69,0xc6,0xc5, - 0xa0,0x0,0x0,0x0,0x0,0x6a,0xb6,0x8c,0x70,0x0,0x0,0x0,0x0,0x6b,0xa6,0xa7, - 0xa0,0x0,0x0,0x0,0x0,0x6c,0x96,0x6e,0x70,0x0,0x0,0x0,0x0,0x6d,0x86,0x89, - 0xa0,0x0,0x0,0x0,0x0,0x6e,0x7f,0x8a,0xf0,0x0,0x0,0x0,0x0,0x6f,0x6f,0xa6, - 0x20,0x0,0x0,0x0,0x0,0x70,0x5f,0x6c,0xf0,0x0,0x0,0x0,0x0,0x71,0x4f,0x88, - 0x20,0x0,0x0,0x0,0x0,0x72,0x3f,0x4e,0xf0,0x0,0x0,0x0,0x0,0x73,0x2f,0x6a, - 0x20,0x0,0x0,0x0,0x0,0x74,0x1f,0x30,0xf0,0x0,0x0,0x0,0x0,0x75,0xf,0x4c, - 0x20,0x0,0x0,0x0,0x0,0x75,0xff,0x12,0xf0,0x0,0x0,0x0,0x0,0x76,0xef,0x2e, - 0x20,0x0,0x0,0x0,0x0,0x77,0xde,0xf4,0xf0,0x0,0x0,0x0,0x0,0x78,0xcf,0x10, - 0x20,0x0,0x0,0x0,0x0,0x79,0xc8,0x11,0x70,0x0,0x0,0x0,0x0,0x7a,0xb8,0x2c, - 0xa0,0x0,0x0,0x0,0x0,0x7b,0xa7,0xf3,0x70,0x0,0x0,0x0,0x0,0x7c,0x98,0xe, - 0xa0,0x0,0x0,0x0,0x0,0x7d,0x87,0xd5,0x70,0x0,0x0,0x0,0x0,0x7e,0x77,0xf0, - 0xa0,0x0,0x0,0x0,0x0,0x7f,0x67,0xb7,0x70,0x0,0x1,0x2,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3, - 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x5, - 0x6,0x5,0x6,0x5,0x6,0x5,0x6,0x0,0x0,0x6b,0x58,0x0,0x0,0x0,0x0,0x62, - 0x70,0x0,0x4,0x0,0x0,0x70,0x80,0x0,0x4,0x0,0x0,0x7e,0x90,0x0,0x9,0x0, - 0x0,0x8c,0xa0,0x1,0xe,0x0,0x0,0x7e,0x90,0x1,0xe,0x0,0x0,0x70,0x80,0x0, - 0x9,0x4c,0x4d,0x54,0x0,0x55,0x4c,0x41,0x54,0x0,0x43,0x48,0x4f,0x54,0x0,0x43, - 0x48,0x4f,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0xa,0x43,0x48,0x4f,0x54,0x2d,0x38,0x43,0x48,0x4f,0x53,0x54,0x2c, - 0x4d,0x33,0x2e,0x35,0x2e,0x36,0x2c,0x4d,0x39,0x2e,0x35,0x2e,0x36,0x2f,0x30,0xa, - + 0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x2,0x5, + 0x2,0x5,0x2,0x2,0x0,0x0,0x6b,0x58,0x0,0x0,0x0,0x0,0x62,0x70,0x0,0x4, + 0x0,0x0,0x70,0x80,0x0,0x8,0x0,0x0,0x7e,0x90,0x0,0xc,0x0,0x0,0x8c,0xa0, + 0x1,0x10,0x0,0x0,0x7e,0x90,0x1,0xc,0x0,0x0,0x70,0x80,0x0,0x8,0x4c,0x4d, + 0x54,0x0,0x2b,0x30,0x37,0x0,0x2b,0x30,0x38,0x0,0x2b,0x30,0x39,0x0,0x2b,0x31, + 0x30,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x35,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x14,0xf8,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x86,0xd3,0xe7,0x28,0x0,0x0,0x0,0x0, + 0xf,0xb,0xdc,0x90,0x0,0x0,0x0,0x0,0x18,0xe9,0xc8,0x80,0x0,0x0,0x0,0x0, + 0x19,0xda,0xee,0xe0,0x0,0x0,0x0,0x0,0x1a,0xcc,0x3f,0x70,0x0,0x0,0x0,0x0, + 0x1b,0xbc,0x22,0x60,0x0,0x0,0x0,0x0,0x1c,0xac,0x21,0x70,0x0,0x0,0x0,0x0, + 0x1d,0x9c,0x4,0x60,0x0,0x0,0x0,0x0,0x1e,0x8c,0x3,0x70,0x0,0x0,0x0,0x0, + 0x1f,0x7b,0xe6,0x60,0x0,0x0,0x0,0x0,0x20,0x6b,0xe5,0x70,0x0,0x0,0x0,0x0, + 0x21,0x5b,0xc8,0x60,0x0,0x0,0x0,0x0,0x22,0x4b,0xc7,0x70,0x0,0x0,0x0,0x0, + 0x23,0x3b,0xaa,0x60,0x0,0x0,0x0,0x0,0x24,0x2b,0xa9,0x70,0x0,0x0,0x0,0x0, + 0x25,0x1b,0x8c,0x60,0x0,0x0,0x0,0x0,0x26,0xb,0x8b,0x70,0x0,0x0,0x0,0x0, + 0x27,0x4,0xa8,0xe0,0x0,0x0,0x0,0x0,0x27,0xf4,0xa7,0xf0,0x0,0x0,0x0,0x0, + 0x28,0xe4,0x8a,0xe0,0x0,0x0,0x0,0x0,0x29,0xd4,0x89,0xf0,0x0,0x0,0x0,0x0, + 0x2a,0xc4,0x6c,0xe0,0x0,0x0,0x0,0x0,0x2b,0xb4,0x6b,0xf0,0x0,0x0,0x0,0x0, + 0x2c,0xa4,0x4e,0xe0,0x0,0x0,0x0,0x0,0x2d,0x94,0x4d,0xf0,0x0,0x0,0x0,0x0, + 0x2e,0x84,0x30,0xe0,0x0,0x0,0x0,0x0,0x2f,0x74,0x2f,0xf0,0x0,0x0,0x0,0x0, + 0x30,0x64,0x12,0xe0,0x0,0x0,0x0,0x0,0x31,0x5d,0x4c,0x70,0x0,0x0,0x0,0x0, + 0x32,0x4d,0x2f,0x60,0x0,0x0,0x0,0x0,0x33,0x3d,0x2e,0x70,0x0,0x0,0x0,0x0, + 0x34,0x2d,0x11,0x60,0x0,0x0,0x0,0x0,0x35,0x1d,0x10,0x70,0x0,0x0,0x0,0x0, + 0x36,0xc,0xf3,0x60,0x0,0x0,0x0,0x0,0x3a,0xe9,0xa5,0x90,0x0,0x0,0x0,0x0, + 0x3b,0xb4,0x9e,0x80,0x0,0x0,0x0,0x0,0x3c,0xa4,0x9d,0x90,0x0,0x0,0x0,0x0, + 0x3d,0x94,0x80,0x80,0x0,0x0,0x0,0x0,0x3e,0x84,0x7f,0x90,0x0,0x0,0x0,0x0, + 0x3f,0x74,0x62,0x80,0x0,0x0,0x0,0x0,0x40,0x64,0x61,0x90,0x0,0x0,0x0,0x0, + 0x41,0x54,0x44,0x80,0x0,0x0,0x0,0x0,0x42,0x44,0x43,0x90,0x0,0x0,0x0,0x0, + 0x43,0x34,0x26,0x80,0x0,0x0,0x0,0x0,0x44,0x24,0x25,0x90,0x0,0x0,0x0,0x0, + 0x45,0x1d,0x43,0x0,0x0,0x0,0x0,0x0,0x47,0xef,0xaa,0xf0,0x0,0x0,0x0,0x0, + 0x55,0x15,0x9a,0xa0,0x0,0x0,0x0,0x0,0x56,0x5,0x61,0x70,0x0,0x0,0x0,0x0, + 0x56,0xf5,0x7c,0xa0,0x0,0x0,0x0,0x0,0x57,0xe5,0x43,0x70,0x0,0x0,0x0,0x0, + 0x7f,0xff,0xff,0xff,0x0,0x1,0x2,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4,0x3,0x4, + 0x3,0x4,0x3,0x2,0x5,0x2,0x5,0x2,0x2,0x0,0x0,0x6b,0x58,0x0,0x0,0x0, + 0x0,0x62,0x70,0x0,0x4,0x0,0x0,0x70,0x80,0x0,0x8,0x0,0x0,0x7e,0x90,0x0, + 0xc,0x0,0x0,0x8c,0xa0,0x1,0x10,0x0,0x0,0x7e,0x90,0x1,0xc,0x0,0x0,0x70, + 0x80,0x0,0x8,0x4c,0x4d,0x54,0x0,0x2b,0x30,0x37,0x0,0x2b,0x30,0x38,0x0,0x2b, + 0x30,0x39,0x0,0x2b,0x31,0x30,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2b,0x30,0x38,0x3e,0x2d,0x38,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/Asia/Singapore - 0x0,0x0,0x1,0xac, + 0x0,0x0,0x1,0xa8, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x9,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x1b,0x80,0x0,0x0,0x0,0x86, + 0x0,0x0,0x0,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x9,0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x20,0x80,0x0,0x0,0x0,0x86, 0x83,0x85,0xa3,0xba,0x67,0x4e,0x90,0xc0,0xa,0xe4,0x60,0xca,0xb3,0xe5,0x60,0xcb, - 0x91,0x5f,0x8,0xd2,0x48,0x6d,0xf0,0xf7,0xba,0x4d,0x88,0x16,0x91,0xf5,0x8,0x1, - 0x2,0x3,0x4,0x5,0x6,0x5,0x7,0x8,0x0,0x0,0x61,0x5d,0x0,0x0,0x0,0x0, - 0x61,0x5d,0x0,0x4,0x0,0x0,0x62,0x70,0x0,0x8,0x0,0x0,0x67,0x20,0x1,0xd, - 0x0,0x0,0x67,0x20,0x0,0x8,0x0,0x0,0x69,0x78,0x0,0x8,0x0,0x0,0x7e,0x90, - 0x0,0x13,0x0,0x0,0x69,0x78,0x0,0x17,0x0,0x0,0x70,0x80,0x0,0x17,0x4c,0x4d, - 0x54,0x0,0x53,0x4d,0x54,0x0,0x4d,0x41,0x4c,0x54,0x0,0x4d,0x41,0x4c,0x53,0x54, - 0x0,0x4a,0x53,0x54,0x0,0x53,0x47,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x9,0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x0, - 0x0,0x0,0x9,0x0,0x0,0x0,0x1b,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff, - 0xff,0xff,0xff,0x7e,0x36,0x53,0xa3,0xff,0xff,0xff,0xff,0x86,0x83,0x85,0xa3,0xff, - 0xff,0xff,0xff,0xba,0x67,0x4e,0x90,0xff,0xff,0xff,0xff,0xc0,0xa,0xe4,0x60,0xff, - 0xff,0xff,0xff,0xca,0xb3,0xe5,0x60,0xff,0xff,0xff,0xff,0xcb,0x91,0x5f,0x8,0xff, - 0xff,0xff,0xff,0xd2,0x48,0x6d,0xf0,0xff,0xff,0xff,0xff,0xf7,0xba,0x4d,0x88,0x0, - 0x0,0x0,0x0,0x16,0x91,0xf5,0x8,0x0,0x1,0x2,0x3,0x4,0x5,0x6,0x5,0x7, - 0x8,0x0,0x0,0x61,0x5d,0x0,0x0,0x0,0x0,0x61,0x5d,0x0,0x4,0x0,0x0,0x62, - 0x70,0x0,0x8,0x0,0x0,0x67,0x20,0x1,0xd,0x0,0x0,0x67,0x20,0x0,0x8,0x0, - 0x0,0x69,0x78,0x0,0x8,0x0,0x0,0x7e,0x90,0x0,0x13,0x0,0x0,0x69,0x78,0x0, - 0x17,0x0,0x0,0x70,0x80,0x0,0x17,0x4c,0x4d,0x54,0x0,0x53,0x4d,0x54,0x0,0x4d, - 0x41,0x4c,0x54,0x0,0x4d,0x41,0x4c,0x53,0x54,0x0,0x4a,0x53,0x54,0x0,0x53,0x47, - 0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0xa,0x53,0x47,0x54,0x2d,0x38,0xa, + 0x91,0x5f,0x8,0xd2,0x48,0x6d,0xf0,0x16,0x91,0xf5,0x8,0x7f,0xff,0xff,0xff,0x1, + 0x2,0x3,0x4,0x5,0x6,0x5,0x7,0x7,0x0,0x0,0x61,0x5d,0x0,0x0,0x0,0x0, + 0x61,0x5d,0x0,0x4,0x0,0x0,0x62,0x70,0x0,0x8,0x0,0x0,0x67,0x20,0x1,0xc, + 0x0,0x0,0x67,0x20,0x0,0xc,0x0,0x0,0x69,0x78,0x0,0x12,0x0,0x0,0x7e,0x90, + 0x0,0x18,0x0,0x0,0x70,0x80,0x0,0x1c,0x4c,0x4d,0x54,0x0,0x53,0x4d,0x54,0x0, + 0x2b,0x30,0x37,0x0,0x2b,0x30,0x37,0x32,0x30,0x0,0x2b,0x30,0x37,0x33,0x30,0x0, + 0x2b,0x30,0x39,0x0,0x2b,0x30,0x38,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x8, + 0x0,0x0,0x0,0x8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x8, + 0x0,0x0,0x0,0x20,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff, + 0x7e,0x36,0x53,0xa3,0xff,0xff,0xff,0xff,0x86,0x83,0x85,0xa3,0xff,0xff,0xff,0xff, + 0xba,0x67,0x4e,0x90,0xff,0xff,0xff,0xff,0xc0,0xa,0xe4,0x60,0xff,0xff,0xff,0xff, + 0xca,0xb3,0xe5,0x60,0xff,0xff,0xff,0xff,0xcb,0x91,0x5f,0x8,0xff,0xff,0xff,0xff, + 0xd2,0x48,0x6d,0xf0,0x0,0x0,0x0,0x0,0x16,0x91,0xf5,0x8,0x0,0x0,0x0,0x0, + 0x7f,0xff,0xff,0xff,0x0,0x1,0x2,0x3,0x4,0x5,0x6,0x5,0x7,0x7,0x0,0x0, + 0x61,0x5d,0x0,0x0,0x0,0x0,0x61,0x5d,0x0,0x4,0x0,0x0,0x62,0x70,0x0,0x8, + 0x0,0x0,0x67,0x20,0x1,0xc,0x0,0x0,0x67,0x20,0x0,0xc,0x0,0x0,0x69,0x78, + 0x0,0x12,0x0,0x0,0x7e,0x90,0x0,0x18,0x0,0x0,0x70,0x80,0x0,0x1c,0x4c,0x4d, + 0x54,0x0,0x53,0x4d,0x54,0x0,0x2b,0x30,0x37,0x0,0x2b,0x30,0x37,0x32,0x30,0x0, + 0x2b,0x30,0x37,0x33,0x30,0x0,0x2b,0x30,0x39,0x0,0x2b,0x30,0x38,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c, + 0x2b,0x30,0x38,0x3e,0x2d,0x38,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/Asia/Almaty 0x0,0x0,0x4,0x7, 0x54, @@ -47899,123 +49659,128 @@ static const unsigned char qt_resource_data[] = { 0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2b, 0x30,0x36,0x3e,0x2d,0x36,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/Asia/Karachi - 0x0,0x0,0x1,0x93, + 0x0,0x0,0x1,0xa1, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xc,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0x80,0x0,0x0,0x0,0x89, + 0x0,0x0,0xc,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d,0x80,0x0,0x0,0x0,0x89, 0x7e,0xfc,0xa4,0xcc,0x95,0x32,0xa8,0xd2,0x74,0x12,0x98,0xdd,0xa8,0xe0,0xa8,0x2, 0x4f,0xab,0x30,0x3c,0xaf,0x45,0xb0,0x3d,0x9f,0x28,0xa0,0x48,0x41,0xa0,0x30,0x49, 0xb,0x47,0xa0,0x49,0xe4,0xdd,0x30,0x4a,0xec,0x7b,0x20,0x0,0x1,0x2,0x1,0x3, 0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x0,0x0,0x3e,0xdc,0x0,0x0,0x0,0x0,0x4d, - 0x58,0x0,0x4,0x0,0x0,0x5b,0x68,0x1,0x4,0x0,0x0,0x46,0x50,0x0,0x8,0x0, - 0x0,0x54,0x60,0x1,0xd,0x0,0x0,0x46,0x50,0x0,0x12,0x4c,0x4d,0x54,0x0,0x49, - 0x53,0x54,0x0,0x4b,0x41,0x52,0x54,0x0,0x50,0x4b,0x53,0x54,0x0,0x50,0x4b,0x54, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, - 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0xc,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x16,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0x89,0x7e,0xfc,0xa4,0xff,0xff,0xff,0xff,0xcc,0x95,0x32, - 0xa8,0xff,0xff,0xff,0xff,0xd2,0x74,0x12,0x98,0xff,0xff,0xff,0xff,0xdd,0xa8,0xe0, - 0xa8,0x0,0x0,0x0,0x0,0x2,0x4f,0xab,0x30,0x0,0x0,0x0,0x0,0x3c,0xaf,0x45, - 0xb0,0x0,0x0,0x0,0x0,0x3d,0x9f,0x28,0xa0,0x0,0x0,0x0,0x0,0x48,0x41,0xa0, - 0x30,0x0,0x0,0x0,0x0,0x49,0xb,0x47,0xa0,0x0,0x0,0x0,0x0,0x49,0xe4,0xdd, - 0x30,0x0,0x0,0x0,0x0,0x4a,0xec,0x7b,0x20,0x0,0x1,0x2,0x1,0x3,0x5,0x4, - 0x5,0x4,0x5,0x4,0x5,0x0,0x0,0x3e,0xdc,0x0,0x0,0x0,0x0,0x4d,0x58,0x0, - 0x4,0x0,0x0,0x5b,0x68,0x1,0x4,0x0,0x0,0x46,0x50,0x0,0x8,0x0,0x0,0x54, - 0x60,0x1,0xd,0x0,0x0,0x46,0x50,0x0,0x12,0x4c,0x4d,0x54,0x0,0x49,0x53,0x54, - 0x0,0x4b,0x41,0x52,0x54,0x0,0x50,0x4b,0x53,0x54,0x0,0x50,0x4b,0x54,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x50,0x4b,0x54,0x2d, - 0x35,0xa, + 0x58,0x0,0x4,0x0,0x0,0x5b,0x68,0x1,0xa,0x0,0x0,0x46,0x50,0x0,0x10,0x0, + 0x0,0x54,0x60,0x1,0x14,0x0,0x0,0x46,0x50,0x0,0x19,0x4c,0x4d,0x54,0x0,0x2b, + 0x30,0x35,0x33,0x30,0x0,0x2b,0x30,0x36,0x33,0x30,0x0,0x2b,0x30,0x35,0x0,0x50, + 0x4b,0x53,0x54,0x0,0x50,0x4b,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x1d, + 0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x89,0x7e,0xfc,0xa4, + 0xff,0xff,0xff,0xff,0xcc,0x95,0x32,0xa8,0xff,0xff,0xff,0xff,0xd2,0x74,0x12,0x98, + 0xff,0xff,0xff,0xff,0xdd,0xa8,0xe0,0xa8,0x0,0x0,0x0,0x0,0x2,0x4f,0xab,0x30, + 0x0,0x0,0x0,0x0,0x3c,0xaf,0x45,0xb0,0x0,0x0,0x0,0x0,0x3d,0x9f,0x28,0xa0, + 0x0,0x0,0x0,0x0,0x48,0x41,0xa0,0x30,0x0,0x0,0x0,0x0,0x49,0xb,0x47,0xa0, + 0x0,0x0,0x0,0x0,0x49,0xe4,0xdd,0x30,0x0,0x0,0x0,0x0,0x4a,0xec,0x7b,0x20, + 0x0,0x1,0x2,0x1,0x3,0x5,0x4,0x5,0x4,0x5,0x4,0x5,0x0,0x0,0x3e,0xdc, + 0x0,0x0,0x0,0x0,0x4d,0x58,0x0,0x4,0x0,0x0,0x5b,0x68,0x1,0xa,0x0,0x0, + 0x46,0x50,0x0,0x10,0x0,0x0,0x54,0x60,0x1,0x14,0x0,0x0,0x46,0x50,0x0,0x19, + 0x4c,0x4d,0x54,0x0,0x2b,0x30,0x35,0x33,0x30,0x0,0x2b,0x30,0x36,0x33,0x30,0x0, + 0x2b,0x30,0x35,0x0,0x50,0x4b,0x53,0x54,0x0,0x50,0x4b,0x54,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x50,0x4b,0x54,0x2d,0x35,0xa, + // /home/konrad/src/smoke/tzone/zoneinfo/Asia/Jakarta - 0x0,0x0,0x1,0x72, + 0x0,0x0,0x1,0x88, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x8,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x15,0x80,0x0,0x0,0x0,0xa9, + 0x0,0x0,0x8,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x20,0x80,0x0,0x0,0x0,0xa9, 0x78,0x85,0xe0,0xba,0x16,0xde,0x60,0xcb,0xbf,0x83,0x88,0xd2,0x56,0xee,0x70,0xd7, - 0x3c,0xc6,0x8,0xda,0xff,0x26,0x0,0xf4,0xb5,0xbe,0x88,0x1,0x2,0x3,0x4,0x3, - 0x5,0x3,0x6,0x0,0x0,0x64,0x20,0x0,0x0,0x0,0x0,0x64,0x20,0x0,0x4,0x0, - 0x0,0x67,0x20,0x0,0x8,0x0,0x0,0x69,0x78,0x0,0xd,0x0,0x0,0x7e,0x90,0x0, - 0x11,0x0,0x0,0x70,0x80,0x0,0xd,0x0,0x0,0x62,0x70,0x0,0xd,0x4c,0x4d,0x54, - 0x0,0x42,0x4d,0x54,0x0,0x4a,0x41,0x56,0x54,0x0,0x57,0x49,0x42,0x0,0x4a,0x53, - 0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x9,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x15,0xf8,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x3f,0x66,0x49,0x60,0xff,0xff,0xff,0xff, - 0xa9,0x78,0x85,0xe0,0xff,0xff,0xff,0xff,0xba,0x16,0xde,0x60,0xff,0xff,0xff,0xff, - 0xcb,0xbf,0x83,0x88,0xff,0xff,0xff,0xff,0xd2,0x56,0xee,0x70,0xff,0xff,0xff,0xff, - 0xd7,0x3c,0xc6,0x8,0xff,0xff,0xff,0xff,0xda,0xff,0x26,0x0,0xff,0xff,0xff,0xff, - 0xf4,0xb5,0xbe,0x88,0x0,0x1,0x2,0x3,0x4,0x3,0x5,0x3,0x6,0x0,0x0,0x64, - 0x20,0x0,0x0,0x0,0x0,0x64,0x20,0x0,0x4,0x0,0x0,0x67,0x20,0x0,0x8,0x0, - 0x0,0x69,0x78,0x0,0xd,0x0,0x0,0x7e,0x90,0x0,0x11,0x0,0x0,0x70,0x80,0x0, - 0xd,0x0,0x0,0x62,0x70,0x0,0xd,0x4c,0x4d,0x54,0x0,0x42,0x4d,0x54,0x0,0x4a, - 0x41,0x56,0x54,0x0,0x57,0x49,0x42,0x0,0x4a,0x53,0x54,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x57,0x49,0x42,0x2d,0x37, - 0xa, + 0x3c,0xc6,0x8,0xda,0xff,0x26,0x0,0xf4,0xb5,0xbe,0x88,0x1,0x2,0x3,0x4,0x3, + 0x5,0x3,0x6,0x0,0x0,0x64,0x20,0x0,0x0,0x0,0x0,0x64,0x20,0x0,0x4,0x0, + 0x0,0x67,0x20,0x0,0x8,0x0,0x0,0x69,0x78,0x0,0xe,0x0,0x0,0x7e,0x90,0x0, + 0x14,0x0,0x0,0x70,0x80,0x0,0x18,0x0,0x0,0x62,0x70,0x0,0x1c,0x4c,0x4d,0x54, + 0x0,0x42,0x4d,0x54,0x0,0x2b,0x30,0x37,0x32,0x30,0x0,0x2b,0x30,0x37,0x33,0x30, + 0x0,0x2b,0x30,0x39,0x0,0x2b,0x30,0x38,0x0,0x57,0x49,0x42,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x7,0x0,0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x9,0x0, + 0x0,0x0,0x7,0x0,0x0,0x0,0x20,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff, + 0xff,0xff,0xff,0x3f,0x66,0x49,0x60,0xff,0xff,0xff,0xff,0xa9,0x78,0x85,0xe0,0xff, + 0xff,0xff,0xff,0xba,0x16,0xde,0x60,0xff,0xff,0xff,0xff,0xcb,0xbf,0x83,0x88,0xff, + 0xff,0xff,0xff,0xd2,0x56,0xee,0x70,0xff,0xff,0xff,0xff,0xd7,0x3c,0xc6,0x8,0xff, + 0xff,0xff,0xff,0xda,0xff,0x26,0x0,0xff,0xff,0xff,0xff,0xf4,0xb5,0xbe,0x88,0x0, + 0x1,0x2,0x3,0x4,0x3,0x5,0x3,0x6,0x0,0x0,0x64,0x20,0x0,0x0,0x0,0x0, + 0x64,0x20,0x0,0x4,0x0,0x0,0x67,0x20,0x0,0x8,0x0,0x0,0x69,0x78,0x0,0xe, + 0x0,0x0,0x7e,0x90,0x0,0x14,0x0,0x0,0x70,0x80,0x0,0x18,0x0,0x0,0x62,0x70, + 0x0,0x1c,0x4c,0x4d,0x54,0x0,0x42,0x4d,0x54,0x0,0x2b,0x30,0x37,0x32,0x30,0x0, + 0x2b,0x30,0x37,0x33,0x30,0x0,0x2b,0x30,0x39,0x0,0x2b,0x30,0x38,0x0,0x57,0x49, + 0x42,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0xa,0x57,0x49,0x42,0x2d,0x37,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/Asia/Saigon - 0x0,0x0,0x1,0x75, + 0x0,0x0,0x1,0x85, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xa,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x80,0x0,0x0,0x0,0x88, + 0x0,0x0,0xb,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0x80,0x0,0x0,0x0,0x88, 0x8c,0x43,0x80,0x91,0xa3,0x2b,0xa,0xcd,0x35,0xe6,0x80,0xd1,0x59,0xce,0x70,0xd2, 0x3b,0x3e,0xf0,0xd5,0x32,0xbb,0x10,0xe4,0xb6,0xe4,0x80,0xed,0x2f,0x98,0x0,0xa, - 0x3d,0xc7,0x0,0x0,0x1,0x2,0x3,0x4,0x2,0x3,0x2,0x3,0x2,0x0,0x0,0x64, - 0x0,0x0,0x0,0x0,0x0,0x63,0xf6,0x0,0x4,0x0,0x0,0x62,0x70,0x0,0x9,0x0, - 0x0,0x70,0x80,0x0,0xd,0x0,0x0,0x7e,0x90,0x0,0x11,0x0,0x0,0x62,0x70,0x0, - 0x9,0x4c,0x4d,0x54,0x0,0x50,0x4c,0x4d,0x54,0x0,0x49,0x43,0x54,0x0,0x49,0x44, - 0x54,0x0,0x4a,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x6,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0xa,0x0,0x0,0x0,0x6,0x0,0x0,0x0,0x15,0xf8,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x88,0x8c,0x43,0x80,0xff,0xff, - 0xff,0xff,0x91,0xa3,0x2b,0xa,0xff,0xff,0xff,0xff,0xcd,0x35,0xe6,0x80,0xff,0xff, - 0xff,0xff,0xd1,0x59,0xce,0x70,0xff,0xff,0xff,0xff,0xd2,0x3b,0x3e,0xf0,0xff,0xff, - 0xff,0xff,0xd5,0x32,0xbb,0x10,0xff,0xff,0xff,0xff,0xe4,0xb6,0xe4,0x80,0xff,0xff, - 0xff,0xff,0xed,0x2f,0x98,0x0,0x0,0x0,0x0,0x0,0xa,0x3d,0xc7,0x0,0x0,0x1, - 0x2,0x3,0x4,0x2,0x3,0x2,0x3,0x2,0x0,0x0,0x64,0x0,0x0,0x0,0x0,0x0, - 0x63,0xf6,0x0,0x4,0x0,0x0,0x62,0x70,0x0,0x9,0x0,0x0,0x70,0x80,0x0,0xd, - 0x0,0x0,0x7e,0x90,0x0,0x11,0x0,0x0,0x62,0x70,0x0,0x9,0x4c,0x4d,0x54,0x0, - 0x50,0x4c,0x4d,0x54,0x0,0x49,0x43,0x54,0x0,0x49,0x44,0x54,0x0,0x4a,0x53,0x54, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x49,0x43, - 0x54,0x2d,0x37,0xa, + 0x3d,0xc7,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x2,0x3,0x4,0x2,0x3,0x2,0x3, + 0x2,0x2,0x0,0x0,0x64,0x0,0x0,0x0,0x0,0x0,0x63,0xf6,0x0,0x4,0x0,0x0, + 0x62,0x70,0x0,0x9,0x0,0x0,0x70,0x80,0x0,0xd,0x0,0x0,0x7e,0x90,0x0,0x11, + 0x0,0x0,0x62,0x70,0x0,0x9,0x4c,0x4d,0x54,0x0,0x50,0x4c,0x4d,0x54,0x0,0x2b, + 0x30,0x37,0x0,0x2b,0x30,0x38,0x0,0x2b,0x30,0x39,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x6,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xb,0x0,0x0,0x0,0x6,0x0, + 0x0,0x0,0x15,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x88, + 0x8c,0x43,0x80,0xff,0xff,0xff,0xff,0x91,0xa3,0x2b,0xa,0xff,0xff,0xff,0xff,0xcd, + 0x35,0xe6,0x80,0xff,0xff,0xff,0xff,0xd1,0x59,0xce,0x70,0xff,0xff,0xff,0xff,0xd2, + 0x3b,0x3e,0xf0,0xff,0xff,0xff,0xff,0xd5,0x32,0xbb,0x10,0xff,0xff,0xff,0xff,0xe4, + 0xb6,0xe4,0x80,0xff,0xff,0xff,0xff,0xed,0x2f,0x98,0x0,0x0,0x0,0x0,0x0,0xa, + 0x3d,0xc7,0x0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x2,0x3,0x4, + 0x2,0x3,0x2,0x3,0x2,0x2,0x0,0x0,0x64,0x0,0x0,0x0,0x0,0x0,0x63,0xf6, + 0x0,0x4,0x0,0x0,0x62,0x70,0x0,0x9,0x0,0x0,0x70,0x80,0x0,0xd,0x0,0x0, + 0x7e,0x90,0x0,0x11,0x0,0x0,0x62,0x70,0x0,0x9,0x4c,0x4d,0x54,0x0,0x50,0x4c, + 0x4d,0x54,0x0,0x2b,0x30,0x37,0x0,0x2b,0x30,0x38,0x0,0x2b,0x30,0x39,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2b,0x30,0x37, + 0x3e,0x2d,0x37,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/Asia/Rangoon - 0x0,0x0,0x1,0x1d, + 0x0,0x0,0x1,0x29, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x4,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x15,0x80,0x0,0x0,0x0,0xa1, - 0xf2,0x73,0x58,0xcb,0xf2,0xfc,0x18,0xd1,0x9a,0x67,0xf0,0x1,0x2,0x3,0x4,0x0, - 0x0,0x5a,0x28,0x0,0x0,0x0,0x0,0x5a,0x28,0x0,0x4,0x0,0x0,0x5b,0x68,0x0, - 0x8,0x0,0x0,0x7e,0x90,0x0,0xd,0x0,0x0,0x5b,0x68,0x0,0x11,0x4c,0x4d,0x54, - 0x0,0x52,0x4d,0x54,0x0,0x42,0x55,0x52,0x54,0x0,0x4a,0x53,0x54,0x0,0x4d,0x4d, - 0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69,0x66, - 0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x5, - 0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x15,0xf8,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0xff,0xff,0xff,0xff,0x56,0xb6,0x89,0xd8,0xff,0xff,0xff,0xff,0xa1,0xf2,0x73,0x58, - 0xff,0xff,0xff,0xff,0xcb,0xf2,0xfc,0x18,0xff,0xff,0xff,0xff,0xd1,0x9a,0x67,0xf0, - 0x0,0x1,0x2,0x3,0x4,0x0,0x0,0x5a,0x28,0x0,0x0,0x0,0x0,0x5a,0x28,0x0, - 0x4,0x0,0x0,0x5b,0x68,0x0,0x8,0x0,0x0,0x7e,0x90,0x0,0xd,0x0,0x0,0x5b, - 0x68,0x0,0x11,0x4c,0x4d,0x54,0x0,0x52,0x4d,0x54,0x0,0x42,0x55,0x52,0x54,0x0, - 0x4a,0x53,0x54,0x0,0x4d,0x4d,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0xa,0x4d,0x4d,0x54,0x2d,0x36,0x3a,0x33,0x30,0xa, + 0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x12,0x80,0x0,0x0,0x0,0xa1, + 0xf2,0x73,0x51,0xcb,0xf2,0xfc,0x18,0xd1,0x9a,0x67,0xf0,0x7f,0xff,0xff,0xff,0x1, + 0x2,0x3,0x2,0x2,0x0,0x0,0x5a,0x2f,0x0,0x0,0x0,0x0,0x5a,0x2f,0x0,0x4, + 0x0,0x0,0x5b,0x68,0x0,0x8,0x0,0x0,0x7e,0x90,0x0,0xe,0x0,0x0,0x5b,0x68, + 0x0,0x8,0x4c,0x4d,0x54,0x0,0x52,0x4d,0x54,0x0,0x2b,0x30,0x36,0x33,0x30,0x0, + 0x2b,0x30,0x39,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x54,0x5a, + 0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x6,0x0,0x0,0x0,0x5,0x0,0x0,0x0,0x12,0xf8,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0xff,0xff,0xff,0xff,0x56,0xb6,0x89,0xd1,0xff,0xff,0xff,0xff,0xa1,0xf2, + 0x73,0x51,0xff,0xff,0xff,0xff,0xcb,0xf2,0xfc,0x18,0xff,0xff,0xff,0xff,0xd1,0x9a, + 0x67,0xf0,0x0,0x0,0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x2,0x3,0x2,0x2, + 0x0,0x0,0x5a,0x2f,0x0,0x0,0x0,0x0,0x5a,0x2f,0x0,0x4,0x0,0x0,0x5b,0x68, + 0x0,0x8,0x0,0x0,0x7e,0x90,0x0,0xe,0x0,0x0,0x5b,0x68,0x0,0x8,0x4c,0x4d, + 0x54,0x0,0x52,0x4d,0x54,0x0,0x2b,0x30,0x36,0x33,0x30,0x0,0x2b,0x30,0x39,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2b,0x30,0x36,0x33, + 0x30,0x3e,0x2d,0x36,0x3a,0x33,0x30,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/Asia/Riyadh - 0x0,0x0,0x0,0xab, + 0x0,0x0,0x0,0xbb, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, 0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0xd5, - 0x1b,0x36,0xb4,0x0,0x1,0x0,0x0,0x2b,0xcc,0x0,0x0,0x0,0x0,0x2a,0x30,0x0, - 0x4,0x4c,0x4d,0x54,0x0,0x41,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x54,0x5a,0x69, - 0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0xff,0xff,0xff,0xff,0xd5,0x1b,0x36,0xb4,0x0,0x1,0x0,0x0,0x2b,0xcc,0x0, - 0x0,0x0,0x0,0x2a,0x30,0x0,0x4,0x4c,0x4d,0x54,0x0,0x41,0x53,0x54,0x0,0x0, - 0x0,0x0,0x0,0xa,0x41,0x53,0x54,0x2d,0x33,0xa, + 0x0,0x0,0x3,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0x80,0x0,0x0,0x0,0xd5, + 0x1b,0x36,0xb4,0x7f,0xff,0xff,0xff,0x0,0x1,0x1,0x0,0x0,0x2b,0xcc,0x0,0x0, + 0x0,0x0,0x2a,0x30,0x0,0x4,0x4c,0x4d,0x54,0x0,0x2b,0x30,0x33,0x0,0x0,0x0, + 0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x8,0xf8,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0xd5,0x1b,0x36,0xb4,0x0,0x0, + 0x0,0x0,0x7f,0xff,0xff,0xff,0x0,0x1,0x1,0x0,0x0,0x2b,0xcc,0x0,0x0,0x0, + 0x0,0x2a,0x30,0x0,0x4,0x4c,0x4d,0x54,0x0,0x2b,0x30,0x33,0x0,0x0,0x0,0x0, + 0x0,0xa,0x3c,0x2b,0x30,0x33,0x3e,0x2d,0x33,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/Asia/Amman 0x0,0x0,0x7,0x55, 0x54, @@ -48207,11 +49972,11 @@ static const unsigned char qt_resource_data[] = { 0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x3c,0x2b, 0x30,0x35,0x3e,0x2d,0x35,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/Asia/Macao - 0x0,0x0,0x3,0x1b, + 0x0,0x0,0x2,0xf3, 0x54, 0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x2b,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x11,0x80,0x0,0x0,0x0,0x92, + 0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x2a,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0x80,0x0,0x0,0x0,0x92, 0xe6,0x24,0x4,0xef,0x77,0xd1,0xb8,0xf0,0xa8,0x4e,0x28,0xf1,0x57,0xb3,0xb8,0xf2, 0x88,0x30,0x28,0xf3,0x37,0x64,0x80,0xf4,0x68,0x12,0x28,0xf5,0x20,0xb2,0x38,0xf6, 0x47,0xf4,0x28,0xf7,0x0,0x63,0x0,0xf8,0x27,0xa4,0xf0,0xf9,0x5,0x60,0x38,0xf9, @@ -48222,43 +49987,41 @@ static const unsigned char qt_resource_data[] = { 0x6,0xc8,0x28,0x9,0xf6,0xc7,0x38,0xa,0xe6,0xaa,0x28,0xb,0xd6,0xa9,0x38,0xc, 0xc6,0x8c,0x28,0xd,0xb6,0x8b,0x38,0xe,0xa6,0x6e,0x28,0xf,0x96,0x3c,0x0,0x10, 0x86,0x1e,0xf0,0x11,0x76,0x1e,0x0,0x12,0x6f,0x3b,0x70,0x13,0x5f,0x3a,0x80,0x14, - 0x4f,0x1d,0x70,0x38,0x5d,0x1,0x0,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x4f,0x1d,0x70,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x3,0x0,0x0,0x6a,0x7c,0x0,0x0,0x0,0x0,0x7e,0x90,0x1,0x4,0x0,0x0, - 0x70,0x80,0x0,0x9,0x0,0x0,0x70,0x80,0x0,0xd,0x4c,0x4d,0x54,0x0,0x4d,0x4f, - 0x53,0x54,0x0,0x4d,0x4f,0x54,0x0,0x43,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x4,0x0, - 0x0,0x0,0x0,0x0,0x0,0x0,0x2b,0x0,0x0,0x0,0x4,0x0,0x0,0x0,0x11,0xf8, - 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x92,0xe6,0x24,0x4,0xff, - 0xff,0xff,0xff,0xef,0x77,0xd1,0xb8,0xff,0xff,0xff,0xff,0xf0,0xa8,0x4e,0x28,0xff, - 0xff,0xff,0xff,0xf1,0x57,0xb3,0xb8,0xff,0xff,0xff,0xff,0xf2,0x88,0x30,0x28,0xff, - 0xff,0xff,0xff,0xf3,0x37,0x64,0x80,0xff,0xff,0xff,0xff,0xf4,0x68,0x12,0x28,0xff, - 0xff,0xff,0xff,0xf5,0x20,0xb2,0x38,0xff,0xff,0xff,0xff,0xf6,0x47,0xf4,0x28,0xff, - 0xff,0xff,0xff,0xf7,0x0,0x63,0x0,0xff,0xff,0xff,0xff,0xf8,0x27,0xa4,0xf0,0xff, - 0xff,0xff,0xff,0xf9,0x5,0x60,0x38,0xff,0xff,0xff,0xff,0xf9,0xf5,0x43,0x28,0xff, - 0xff,0xff,0xff,0xfa,0xe5,0x42,0x38,0xff,0xff,0xff,0xff,0xfb,0xde,0x5f,0xa8,0xff, - 0xff,0xff,0xff,0xfc,0xce,0x5e,0xb8,0xff,0xff,0xff,0xff,0xfd,0xbe,0x41,0xa8,0xff, - 0xff,0xff,0xff,0xfe,0xae,0x40,0xb8,0xff,0xff,0xff,0xff,0xff,0x9e,0x23,0xa8,0x0, - 0x0,0x0,0x0,0x0,0x8e,0x22,0xb8,0x0,0x0,0x0,0x0,0x1,0x7e,0x5,0xa8,0x0, - 0x0,0x0,0x0,0x2,0x6e,0x4,0xb8,0x0,0x0,0x0,0x0,0x3,0x5d,0xe7,0xa8,0x0, - 0x0,0x0,0x0,0x4,0x4d,0xb5,0x80,0x0,0x0,0x0,0x0,0x5,0x3d,0x98,0x70,0x0, - 0x0,0x0,0x0,0x6,0x2d,0x97,0x80,0x0,0x0,0x0,0x0,0x7,0x26,0xb4,0xf0,0x0, - 0x0,0x0,0x0,0x8,0x16,0xb4,0x0,0x0,0x0,0x0,0x0,0x9,0x6,0xc8,0x28,0x0, - 0x0,0x0,0x0,0x9,0xf6,0xc7,0x38,0x0,0x0,0x0,0x0,0xa,0xe6,0xaa,0x28,0x0, - 0x0,0x0,0x0,0xb,0xd6,0xa9,0x38,0x0,0x0,0x0,0x0,0xc,0xc6,0x8c,0x28,0x0, - 0x0,0x0,0x0,0xd,0xb6,0x8b,0x38,0x0,0x0,0x0,0x0,0xe,0xa6,0x6e,0x28,0x0, - 0x0,0x0,0x0,0xf,0x96,0x3c,0x0,0x0,0x0,0x0,0x0,0x10,0x86,0x1e,0xf0,0x0, - 0x0,0x0,0x0,0x11,0x76,0x1e,0x0,0x0,0x0,0x0,0x0,0x12,0x6f,0x3b,0x70,0x0, - 0x0,0x0,0x0,0x13,0x5f,0x3a,0x80,0x0,0x0,0x0,0x0,0x14,0x4f,0x1d,0x70,0x0, - 0x0,0x0,0x0,0x38,0x5d,0x1,0x0,0x0,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, - 0x2,0x3,0x0,0x0,0x6a,0x7c,0x0,0x0,0x0,0x0,0x7e,0x90,0x1,0x4,0x0,0x0, - 0x70,0x80,0x0,0x9,0x0,0x0,0x70,0x80,0x0,0xd,0x4c,0x4d,0x54,0x0,0x4d,0x4f, - 0x53,0x54,0x0,0x4d,0x4f,0x54,0x0,0x43,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0, - 0x0,0x0,0x0,0xa,0x43,0x53,0x54,0x2d,0x38,0xa, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x0,0x0,0x6a, + 0x7c,0x0,0x0,0x0,0x0,0x7e,0x90,0x1,0x4,0x0,0x0,0x70,0x80,0x0,0x8,0x4c, + 0x4d,0x54,0x0,0x43,0x44,0x54,0x0,0x43,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x54,0x5a,0x69,0x66,0x32,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0x3,0x0,0x0,0x0, + 0x0,0x0,0x0,0x0,0x2a,0x0,0x0,0x0,0x3,0x0,0x0,0x0,0xc,0xf8,0x0,0x0, + 0x0,0x0,0x0,0x0,0x0,0xff,0xff,0xff,0xff,0x92,0xe6,0x24,0x4,0xff,0xff,0xff, + 0xff,0xef,0x77,0xd1,0xb8,0xff,0xff,0xff,0xff,0xf0,0xa8,0x4e,0x28,0xff,0xff,0xff, + 0xff,0xf1,0x57,0xb3,0xb8,0xff,0xff,0xff,0xff,0xf2,0x88,0x30,0x28,0xff,0xff,0xff, + 0xff,0xf3,0x37,0x64,0x80,0xff,0xff,0xff,0xff,0xf4,0x68,0x12,0x28,0xff,0xff,0xff, + 0xff,0xf5,0x20,0xb2,0x38,0xff,0xff,0xff,0xff,0xf6,0x47,0xf4,0x28,0xff,0xff,0xff, + 0xff,0xf7,0x0,0x63,0x0,0xff,0xff,0xff,0xff,0xf8,0x27,0xa4,0xf0,0xff,0xff,0xff, + 0xff,0xf9,0x5,0x60,0x38,0xff,0xff,0xff,0xff,0xf9,0xf5,0x43,0x28,0xff,0xff,0xff, + 0xff,0xfa,0xe5,0x42,0x38,0xff,0xff,0xff,0xff,0xfb,0xde,0x5f,0xa8,0xff,0xff,0xff, + 0xff,0xfc,0xce,0x5e,0xb8,0xff,0xff,0xff,0xff,0xfd,0xbe,0x41,0xa8,0xff,0xff,0xff, + 0xff,0xfe,0xae,0x40,0xb8,0xff,0xff,0xff,0xff,0xff,0x9e,0x23,0xa8,0x0,0x0,0x0, + 0x0,0x0,0x8e,0x22,0xb8,0x0,0x0,0x0,0x0,0x1,0x7e,0x5,0xa8,0x0,0x0,0x0, + 0x0,0x2,0x6e,0x4,0xb8,0x0,0x0,0x0,0x0,0x3,0x5d,0xe7,0xa8,0x0,0x0,0x0, + 0x0,0x4,0x4d,0xb5,0x80,0x0,0x0,0x0,0x0,0x5,0x3d,0x98,0x70,0x0,0x0,0x0, + 0x0,0x6,0x2d,0x97,0x80,0x0,0x0,0x0,0x0,0x7,0x26,0xb4,0xf0,0x0,0x0,0x0, + 0x0,0x8,0x16,0xb4,0x0,0x0,0x0,0x0,0x0,0x9,0x6,0xc8,0x28,0x0,0x0,0x0, + 0x0,0x9,0xf6,0xc7,0x38,0x0,0x0,0x0,0x0,0xa,0xe6,0xaa,0x28,0x0,0x0,0x0, + 0x0,0xb,0xd6,0xa9,0x38,0x0,0x0,0x0,0x0,0xc,0xc6,0x8c,0x28,0x0,0x0,0x0, + 0x0,0xd,0xb6,0x8b,0x38,0x0,0x0,0x0,0x0,0xe,0xa6,0x6e,0x28,0x0,0x0,0x0, + 0x0,0xf,0x96,0x3c,0x0,0x0,0x0,0x0,0x0,0x10,0x86,0x1e,0xf0,0x0,0x0,0x0, + 0x0,0x11,0x76,0x1e,0x0,0x0,0x0,0x0,0x0,0x12,0x6f,0x3b,0x70,0x0,0x0,0x0, + 0x0,0x13,0x5f,0x3a,0x80,0x0,0x0,0x0,0x0,0x14,0x4f,0x1d,0x70,0x0,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x1, + 0x2,0x1,0x2,0x1,0x2,0x1,0x2,0x0,0x0,0x6a,0x7c,0x0,0x0,0x0,0x0,0x7e, + 0x90,0x1,0x4,0x0,0x0,0x70,0x80,0x0,0x8,0x4c,0x4d,0x54,0x0,0x43,0x44,0x54, + 0x0,0x43,0x53,0x54,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xa,0x43,0x53,0x54,0x2d, + 0x38,0xa, // /home/konrad/src/smoke/tzone/zoneinfo/Asia/Qyzylorda 0x0,0x0,0x4,0x17, 0x54, @@ -48418,776 +50181,826 @@ static const unsigned char qt_resource_name[] = { 0x6,0x4c,0x14,0xef, 0x0,0x7a, 0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x69,0x0,0x6e,0x0,0x66,0x0,0x6f, - // Iceland - 0x0,0x7, - 0xf,0x9c,0x28,0xc4, - 0x0,0x49, - 0x0,0x63,0x0,0x65,0x0,0x6c,0x0,0x61,0x0,0x6e,0x0,0x64, - // Factory - 0x0,0x7, - 0xc,0x7a,0xb6,0x19, - 0x0,0x46, - 0x0,0x61,0x0,0x63,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x79, - // UTC - 0x0,0x3, - 0x0,0x0,0x5a,0x83, - 0x0,0x55, - 0x0,0x54,0x0,0x43, - // WET - 0x0,0x3, - 0x0,0x0,0x5b,0xa4, - 0x0,0x57, - 0x0,0x45,0x0,0x54, - // Greenwich - 0x0,0x9, - 0xb,0xc5,0x42,0x98, - 0x0,0x47, - 0x0,0x72,0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x77,0x0,0x69,0x0,0x63,0x0,0x68, - // iso3166.tab - 0x0,0xb, - 0x4,0x78,0x1e,0xb2, - 0x0,0x69, - 0x0,0x73,0x0,0x6f,0x0,0x33,0x0,0x31,0x0,0x36,0x0,0x36,0x0,0x2e,0x0,0x74,0x0,0x61,0x0,0x62, - // MST - 0x0,0x3, - 0x0,0x0,0x52,0x84, - 0x0,0x4d, - 0x0,0x53,0x0,0x54, - // EST5EDT - 0x0,0x7, - 0xa,0x87,0x99,0x14, - 0x0,0x45, - 0x0,0x53,0x0,0x54,0x0,0x35,0x0,0x45,0x0,0x44,0x0,0x54, - // GB-Eire - 0x0,0x7, - 0xb,0x51,0xc0,0x5, - 0x0,0x47, - 0x0,0x42,0x0,0x2d,0x0,0x45,0x0,0x69,0x0,0x72,0x0,0x65, - // Turkey - 0x0,0x6, - 0x5,0xbc,0x91,0xc9, - 0x0,0x54, - 0x0,0x75,0x0,0x72,0x0,0x6b,0x0,0x65,0x0,0x79, - // CET - 0x0,0x3, - 0x0,0x0,0x47,0xa4, - 0x0,0x43, - 0x0,0x45,0x0,0x54, // Asia 0x0,0x4, 0x0,0x4,0x89,0xf1, 0x0,0x41, 0x0,0x73,0x0,0x69,0x0,0x61, - // GMT - 0x0,0x3, - 0x0,0x0,0x4c,0x24, - 0x0,0x47, - 0x0,0x4d,0x0,0x54, - // Chile + // Japan 0x0,0x5, - 0x0,0x49,0xf0,0x25, + 0x0,0x50,0x86,0x7e, + 0x0,0x4a, + 0x0,0x61,0x0,0x70,0x0,0x61,0x0,0x6e, + // UCT + 0x0,0x3, + 0x0,0x0,0x59,0x84, + 0x0,0x55, + 0x0,0x43,0x0,0x54, + // Canada + 0x0,0x6, + 0x4,0x98,0x47,0xa1, 0x0,0x43, - 0x0,0x68,0x0,0x69,0x0,0x6c,0x0,0x65, - // Africa + 0x0,0x61,0x0,0x6e,0x0,0x61,0x0,0x64,0x0,0x61, + // Arctic 0x0,0x6, - 0x4,0x7d,0x8f,0x91, + 0x4,0x88,0xaa,0xf3, 0x0,0x41, - 0x0,0x66,0x0,0x72,0x0,0x69,0x0,0x63,0x0,0x61, - // Poland - 0x0,0x6, - 0x5,0x76,0x28,0x44, + 0x0,0x72,0x0,0x63,0x0,0x74,0x0,0x69,0x0,0x63, + // PST8PDT + 0x0,0x7, + 0x5,0x87,0xd4,0x34, 0x0,0x50, - 0x0,0x6f,0x0,0x6c,0x0,0x61,0x0,0x6e,0x0,0x64, - // EST - 0x0,0x3, - 0x0,0x0,0x4a,0x84, + 0x0,0x53,0x0,0x54,0x0,0x38,0x0,0x50,0x0,0x44,0x0,0x54, + // Europe + 0x0,0x6, + 0x4,0xcc,0x96,0x65, 0x0,0x45, - 0x0,0x53,0x0,0x54, + 0x0,0x75,0x0,0x72,0x0,0x6f,0x0,0x70,0x0,0x65, // Pacific 0x0,0x7, 0x6,0x79,0xfc,0x53, 0x0,0x50, 0x0,0x61,0x0,0x63,0x0,0x69,0x0,0x66,0x0,0x69,0x0,0x63, - // Israel - 0x0,0x6, - 0x5,0xa,0x87,0xbc, - 0x0,0x49, - 0x0,0x73,0x0,0x72,0x0,0x61,0x0,0x65,0x0,0x6c, - // Singapore + // Australia 0x0,0x9, - 0x4,0xd8,0xc2,0x85, - 0x0,0x53, - 0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x61,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x65, - // GMT-0 - 0x0,0x5, - 0x0,0x4c,0x27,0x0, - 0x0,0x47, - 0x0,0x4d,0x0,0x54,0x0,0x2d,0x0,0x30, - // HST + 0xa,0xb9,0x13,0x71, + 0x0,0x41, + 0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x61, + // MST 0x0,0x3, - 0x0,0x0,0x4d,0x84, - 0x0,0x48, + 0x0,0x0,0x52,0x84, + 0x0,0x4d, 0x0,0x53,0x0,0x54, - // PRC - 0x0,0x3, - 0x0,0x0,0x55,0x63, - 0x0,0x50, - 0x0,0x52,0x0,0x43, // NZ 0x0,0x2, 0x0,0x0,0x5,0x3a, 0x0,0x4e, 0x0,0x5a, - // UCT + // EET 0x0,0x3, - 0x0,0x0,0x59,0x84, - 0x0,0x55, - 0x0,0x43,0x0,0x54, - // GMT+0 - 0x0,0x5, - 0x0,0x4c,0x26,0xe0, - 0x0,0x47, - 0x0,0x4d,0x0,0x54,0x0,0x2b,0x0,0x30, - // Portugal - 0x0,0x8, - 0x6,0x9b,0xb7,0x9c, - 0x0,0x50, - 0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x75,0x0,0x67,0x0,0x61,0x0,0x6c, - // Universal - 0x0,0x9, - 0x0,0xcc,0x21,0xdc, - 0x0,0x55, - 0x0,0x6e,0x0,0x69,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x61,0x0,0x6c, - // Canada - 0x0,0x6, - 0x4,0x98,0x47,0xa1, - 0x0,0x43, - 0x0,0x61,0x0,0x6e,0x0,0x61,0x0,0x64,0x0,0x61, - // Japan - 0x0,0x5, - 0x0,0x50,0x86,0x7e, - 0x0,0x4a, - 0x0,0x61,0x0,0x70,0x0,0x61,0x0,0x6e, + 0x0,0x0,0x49,0xa4, + 0x0,0x45, + 0x0,0x45,0x0,0x54, // Iran 0x0,0x4, 0x0,0x5,0x8,0x7e, 0x0,0x49, 0x0,0x72,0x0,0x61,0x0,0x6e, - // Libya - 0x0,0x5, - 0x0,0x52,0xf9,0xf1, - 0x0,0x4c, - 0x0,0x69,0x0,0x62,0x0,0x79,0x0,0x61, + // Factory + 0x0,0x7, + 0xc,0x7a,0xb6,0x19, + 0x0,0x46, + 0x0,0x61,0x0,0x63,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x79, // NZ-CHAT 0x0,0x7, 0x3,0xd1,0x7c,0xc4, 0x0,0x4e, 0x0,0x5a,0x0,0x2d,0x0,0x43,0x0,0x48,0x0,0x41,0x0,0x54, - // zone.tab - 0x0,0x8, - 0x6,0x48,0x4a,0x52, - 0x0,0x7a, - 0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x2e,0x0,0x74,0x0,0x61,0x0,0x62, - // US - 0x0,0x2, - 0x0,0x0,0x5,0xa3, - 0x0,0x55, - 0x0,0x53, - // GMT0 - 0x0,0x4, - 0x0,0x4,0xc2,0x70, - 0x0,0x47, - 0x0,0x4d,0x0,0x54,0x0,0x30, - // Atlantic - 0x0,0x8, - 0xb,0x28,0x53,0xf3, - 0x0,0x41, - 0x0,0x74,0x0,0x6c,0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0x69,0x0,0x63, - // Eire - 0x0,0x4, - 0x0,0x4,0xc0,0x85, + // WET + 0x0,0x3, + 0x0,0x0,0x5b,0xa4, + 0x0,0x57, + 0x0,0x45,0x0,0x54, + // CST6CDT + 0x0,0x7, + 0x8,0x87,0xa7,0x14, + 0x0,0x43, + 0x0,0x53,0x0,0x54,0x0,0x36,0x0,0x43,0x0,0x44,0x0,0x54, + // Egypt + 0x0,0x5, + 0x0,0x4b,0xf0,0x74, 0x0,0x45, - 0x0,0x69,0x0,0x72,0x0,0x65, + 0x0,0x67,0x0,0x79,0x0,0x70,0x0,0x74, // Mexico 0x0,0x6, 0x5,0x3c,0xef,0x9f, 0x0,0x4d, 0x0,0x65,0x0,0x78,0x0,0x69,0x0,0x63,0x0,0x6f, + // iso3166.tab + 0x0,0xb, + 0x4,0x78,0x1e,0xb2, + 0x0,0x69, + 0x0,0x73,0x0,0x6f,0x0,0x33,0x0,0x31,0x0,0x36,0x0,0x36,0x0,0x2e,0x0,0x74,0x0,0x61,0x0,0x62, + // GMT-0 + 0x0,0x5, + 0x0,0x4c,0x27,0x0, + 0x0,0x47, + 0x0,0x4d,0x0,0x54,0x0,0x2d,0x0,0x30, + // W-SU + 0x0,0x4, + 0x0,0x5,0xa2,0x85, + 0x0,0x57, + 0x0,0x2d,0x0,0x53,0x0,0x55, + // GB + 0x0,0x2, + 0x0,0x0,0x4,0xb2, + 0x0,0x47, + 0x0,0x42, + // Poland + 0x0,0x6, + 0x5,0x76,0x28,0x44, + 0x0,0x50, + 0x0,0x6f,0x0,0x6c,0x0,0x61,0x0,0x6e,0x0,0x64, + // Greenwich + 0x0,0x9, + 0xb,0xc5,0x42,0x98, + 0x0,0x47, + 0x0,0x72,0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x77,0x0,0x69,0x0,0x63,0x0,0x68, + // Portugal + 0x0,0x8, + 0x6,0x9b,0xb7,0x9c, + 0x0,0x50, + 0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x75,0x0,0x67,0x0,0x61,0x0,0x6c, // Hongkong 0x0,0x8, 0x6,0x4e,0x2f,0xa7, 0x0,0x48, 0x0,0x6f,0x0,0x6e,0x0,0x67,0x0,0x6b,0x0,0x6f,0x0,0x6e,0x0,0x67, - // MET - 0x0,0x3, - 0x0,0x0,0x51,0xa4, - 0x0,0x4d, - 0x0,0x45,0x0,0x54, - // Zulu + // localtime + 0x0,0x9, + 0x9,0x83,0x4a,0x95, + 0x0,0x6c, + 0x0,0x6f,0x0,0x63,0x0,0x61,0x0,0x6c,0x0,0x74,0x0,0x69,0x0,0x6d,0x0,0x65, + // GMT0 0x0,0x4, - 0x0,0x6,0x1c,0x35, - 0x0,0x5a, - 0x0,0x75,0x0,0x6c,0x0,0x75, - // Brazil - 0x0,0x6, - 0x4,0x98,0x90,0xfc, - 0x0,0x42, - 0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x69,0x0,0x6c, - // ROC + 0x0,0x4,0xc2,0x70, + 0x0,0x47, + 0x0,0x4d,0x0,0x54,0x0,0x30, + // Etc 0x0,0x3, - 0x0,0x0,0x57,0x33, - 0x0,0x52, - 0x0,0x4f,0x0,0x43, - // zone1970.tab - 0x0,0xc, - 0xc,0x8f,0xca,0xd2, - 0x0,0x7a, - 0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x31,0x0,0x39,0x0,0x37,0x0,0x30,0x0,0x2e,0x0,0x74,0x0,0x61,0x0,0x62, - // Jamaica - 0x0,0x7, - 0x0,0x83,0x7f,0x31, - 0x0,0x4a, - 0x0,0x61,0x0,0x6d,0x0,0x61,0x0,0x69,0x0,0x63,0x0,0x61, + 0x0,0x0,0x4c,0xa3, + 0x0,0x45, + 0x0,0x74,0x0,0x63, + // Turkey + 0x0,0x6, + 0x5,0xbc,0x91,0xc9, + 0x0,0x54, + 0x0,0x75,0x0,0x72,0x0,0x6b,0x0,0x65,0x0,0x79, + // Navajo + 0x0,0x6, + 0x5,0x48,0xc8,0xf, + 0x0,0x4e, + 0x0,0x61,0x0,0x76,0x0,0x61,0x0,0x6a,0x0,0x6f, // America 0x0,0x7, 0x8,0x3c,0x8f,0x11, 0x0,0x41, 0x0,0x6d,0x0,0x65,0x0,0x72,0x0,0x69,0x0,0x63,0x0,0x61, - // Indian - 0x0,0x6, - 0x5,0x4,0xaf,0x7e, - 0x0,0x49, - 0x0,0x6e,0x0,0x64,0x0,0x69,0x0,0x61,0x0,0x6e, - // ROK - 0x0,0x3, - 0x0,0x0,0x57,0x3b, - 0x0,0x52, - 0x0,0x4f,0x0,0x4b, - // Etc - 0x0,0x3, - 0x0,0x0,0x4c,0xa3, - 0x0,0x45, - 0x0,0x74,0x0,0x63, - // GB - 0x0,0x2, - 0x0,0x0,0x4,0xb2, - 0x0,0x47, - 0x0,0x42, - // +VERSION - 0x0,0x8, - 0xa,0xa7,0x7c,0x3e, - 0x0,0x2b, - 0x0,0x56,0x0,0x45,0x0,0x52,0x0,0x53,0x0,0x49,0x0,0x4f,0x0,0x4e, - // EET - 0x0,0x3, - 0x0,0x0,0x49,0xa4, - 0x0,0x45, - 0x0,0x45,0x0,0x54, // Antarctica 0x0,0xa, 0x8,0x83,0xa4,0xd1, 0x0,0x41, 0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x72,0x0,0x63,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x61, - // CST6CDT + // Jamaica 0x0,0x7, - 0x8,0x87,0xa7,0x14, - 0x0,0x43, - 0x0,0x53,0x0,0x54,0x0,0x36,0x0,0x43,0x0,0x44,0x0,0x54, - // Europe - 0x0,0x6, - 0x4,0xcc,0x96,0x65, + 0x0,0x83,0x7f,0x31, + 0x0,0x4a, + 0x0,0x61,0x0,0x6d,0x0,0x61,0x0,0x69,0x0,0x63,0x0,0x61, + // EST + 0x0,0x3, + 0x0,0x0,0x4a,0x84, 0x0,0x45, - 0x0,0x75,0x0,0x72,0x0,0x6f,0x0,0x70,0x0,0x65, - // Kwajalein - 0x0,0x9, - 0x8,0x8,0x8e,0x5e, - 0x0,0x4b, - 0x0,0x77,0x0,0x61,0x0,0x6a,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x6e, - // Australia - 0x0,0x9, - 0xa,0xb9,0x13,0x71, + 0x0,0x53,0x0,0x54, + // Eire + 0x0,0x4, + 0x0,0x4,0xc0,0x85, + 0x0,0x45, + 0x0,0x69,0x0,0x72,0x0,0x65, + // HST + 0x0,0x3, + 0x0,0x0,0x4d,0x84, + 0x0,0x48, + 0x0,0x53,0x0,0x54, + // Brazil + 0x0,0x6, + 0x4,0x98,0x90,0xfc, + 0x0,0x42, + 0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x69,0x0,0x6c, + // CET + 0x0,0x3, + 0x0,0x0,0x47,0xa4, + 0x0,0x43, + 0x0,0x45,0x0,0x54, + // Atlantic + 0x0,0x8, + 0xb,0x28,0x53,0xf3, 0x0,0x41, - 0x0,0x75,0x0,0x73,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x61, - // localtime + 0x0,0x74,0x0,0x6c,0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0x69,0x0,0x63, + // zone1970.tab + 0x0,0xc, + 0xc,0x8f,0xca,0xd2, + 0x0,0x7a, + 0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x31,0x0,0x39,0x0,0x37,0x0,0x30,0x0,0x2e,0x0,0x74,0x0,0x61,0x0,0x62, + // tzdata.zi 0x0,0x9, - 0x9,0x83,0x4a,0x95, - 0x0,0x6c, - 0x0,0x6f,0x0,0x63,0x0,0x61,0x0,0x6c,0x0,0x74,0x0,0x69,0x0,0x6d,0x0,0x65, - // PST8PDT + 0xa,0x8a,0xfe,0x9, + 0x0,0x74, + 0x0,0x7a,0x0,0x64,0x0,0x61,0x0,0x74,0x0,0x61,0x0,0x2e,0x0,0x7a,0x0,0x69, + // GB-Eire 0x0,0x7, - 0x5,0x87,0xd4,0x34, - 0x0,0x50, - 0x0,0x53,0x0,0x54,0x0,0x38,0x0,0x50,0x0,0x44,0x0,0x54, + 0xb,0x51,0xc0,0x5, + 0x0,0x47, + 0x0,0x42,0x0,0x2d,0x0,0x45,0x0,0x69,0x0,0x72,0x0,0x65, // posixrules 0x0,0xa, 0x0,0xf7,0x6f,0x83, 0x0,0x70, 0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x78,0x0,0x72,0x0,0x75,0x0,0x6c,0x0,0x65,0x0,0x73, - // MST7MDT - 0x0,0x7, - 0x2,0x87,0xc1,0x34, - 0x0,0x4d, - 0x0,0x53,0x0,0x54,0x0,0x37,0x0,0x4d,0x0,0x44,0x0,0x54, - // Cuba - 0x0,0x4, - 0x0,0x4,0xab,0x81, - 0x0,0x43, - 0x0,0x75,0x0,0x62,0x0,0x61, - // W-SU - 0x0,0x4, - 0x0,0x5,0xa2,0x85, - 0x0,0x57, - 0x0,0x2d,0x0,0x53,0x0,0x55, - // Navajo - 0x0,0x6, - 0x5,0x48,0xc8,0xf, - 0x0,0x4e, - 0x0,0x61,0x0,0x76,0x0,0x61,0x0,0x6a,0x0,0x6f, - // Arctic - 0x0,0x6, - 0x4,0x88,0xaa,0xf3, - 0x0,0x41, - 0x0,0x72,0x0,0x63,0x0,0x74,0x0,0x69,0x0,0x63, - // Egypt - 0x0,0x5, - 0x0,0x4b,0xf0,0x74, - 0x0,0x45, - 0x0,0x67,0x0,0x79,0x0,0x70,0x0,0x74, - // Longyearbyen - 0x0,0xc, - 0x1,0xe4,0x2,0x5e, - 0x0,0x4c, - 0x0,0x6f,0x0,0x6e,0x0,0x67,0x0,0x79,0x0,0x65,0x0,0x61,0x0,0x72,0x0,0x62,0x0,0x79,0x0,0x65,0x0,0x6e, - // North - 0x0,0x5, - 0x0,0x55,0x69,0xa8, - 0x0,0x4e, - 0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x68, - // South + // Chile 0x0,0x5, - 0x0,0x5a,0x6c,0xa8, - 0x0,0x53, - 0x0,0x6f,0x0,0x75,0x0,0x74,0x0,0x68, - // Tasmania - 0x0,0x8, - 0x8,0xa3,0x8f,0xb1, - 0x0,0x54, - 0x0,0x61,0x0,0x73,0x0,0x6d,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x61, - // Adelaide - 0x0,0x8, - 0xa,0xc2,0x77,0x45, - 0x0,0x41, - 0x0,0x64,0x0,0x65,0x0,0x6c,0x0,0x61,0x0,0x69,0x0,0x64,0x0,0x65, - // Broken_Hill - 0x0,0xb, - 0xc,0xd0,0xc4,0xc, - 0x0,0x42, - 0x0,0x72,0x0,0x6f,0x0,0x6b,0x0,0x65,0x0,0x6e,0x0,0x5f,0x0,0x48,0x0,0x69,0x0,0x6c,0x0,0x6c, - // Yancowinna - 0x0,0xa, - 0xa,0x66,0x35,0xc1, - 0x0,0x59, - 0x0,0x61,0x0,0x6e,0x0,0x63,0x0,0x6f,0x0,0x77,0x0,0x69,0x0,0x6e,0x0,0x6e,0x0,0x61, - // Lord_Howe + 0x0,0x49,0xf0,0x25, + 0x0,0x43, + 0x0,0x68,0x0,0x69,0x0,0x6c,0x0,0x65, + // Kwajalein 0x0,0x9, - 0x8,0xa3,0x50,0x15, - 0x0,0x4c, - 0x0,0x6f,0x0,0x72,0x0,0x64,0x0,0x5f,0x0,0x48,0x0,0x6f,0x0,0x77,0x0,0x65, - // Hobart - 0x0,0x6, - 0x4,0xf5,0x88,0x94, - 0x0,0x48, - 0x0,0x6f,0x0,0x62,0x0,0x61,0x0,0x72,0x0,0x74, - // LHI - 0x0,0x3, - 0x0,0x0,0x50,0xc9, - 0x0,0x4c, - 0x0,0x48,0x0,0x49, - // Eucla + 0x8,0x8,0x8e,0x5e, + 0x0,0x4b, + 0x0,0x77,0x0,0x61,0x0,0x6a,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x69,0x0,0x6e, + // Iceland + 0x0,0x7, + 0xf,0x9c,0x28,0xc4, + 0x0,0x49, + 0x0,0x63,0x0,0x65,0x0,0x6c,0x0,0x61,0x0,0x6e,0x0,0x64, + // GMT + 0x0,0x3, + 0x0,0x0,0x4c,0x24, + 0x0,0x47, + 0x0,0x4d,0x0,0x54, + // Libya 0x0,0x5, - 0x0,0x4c,0xba,0x21, - 0x0,0x45, - 0x0,0x75,0x0,0x63,0x0,0x6c,0x0,0x61, - // Brisbane - 0x0,0x8, - 0x9,0x9,0x91,0x65, - 0x0,0x42, - 0x0,0x72,0x0,0x69,0x0,0x73,0x0,0x62,0x0,0x61,0x0,0x6e,0x0,0x65, - // Victoria - 0x0,0x8, - 0xf,0xab,0x63,0x71, - 0x0,0x56, - 0x0,0x69,0x0,0x63,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x61, - // Currie + 0x0,0x52,0xf9,0xf1, + 0x0,0x4c, + 0x0,0x69,0x0,0x62,0x0,0x79,0x0,0x61, + // US + 0x0,0x2, + 0x0,0x0,0x5,0xa3, + 0x0,0x55, + 0x0,0x53, + // ROC + 0x0,0x3, + 0x0,0x0,0x57,0x33, + 0x0,0x52, + 0x0,0x4f,0x0,0x43, + // MST7MDT + 0x0,0x7, + 0x2,0x87,0xc1,0x34, + 0x0,0x4d, + 0x0,0x53,0x0,0x54,0x0,0x37,0x0,0x4d,0x0,0x44,0x0,0x54, + // Africa 0x0,0x6, - 0x4,0xac,0x98,0xf5, - 0x0,0x43, - 0x0,0x75,0x0,0x72,0x0,0x72,0x0,0x69,0x0,0x65, - // Perth + 0x4,0x7d,0x8f,0x91, + 0x0,0x41, + 0x0,0x66,0x0,0x72,0x0,0x69,0x0,0x63,0x0,0x61, + // GMT+0 0x0,0x5, - 0x0,0x56,0xc9,0xa8, + 0x0,0x4c,0x26,0xe0, + 0x0,0x47, + 0x0,0x4d,0x0,0x54,0x0,0x2b,0x0,0x30, + // PRC + 0x0,0x3, + 0x0,0x0,0x55,0x63, 0x0,0x50, - 0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x68, - // Canberra - 0x0,0x8, - 0x8,0x48,0xc0,0xa1, - 0x0,0x43, - 0x0,0x61,0x0,0x6e,0x0,0x62,0x0,0x65,0x0,0x72,0x0,0x72,0x0,0x61, - // ACT + 0x0,0x52,0x0,0x43, + // Universal + 0x0,0x9, + 0x0,0xcc,0x21,0xdc, + 0x0,0x55, + 0x0,0x6e,0x0,0x69,0x0,0x76,0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x61,0x0,0x6c, + // ROK 0x0,0x3, - 0x0,0x0,0x45,0x84, - 0x0,0x41, - 0x0,0x43,0x0,0x54, - // Lindeman + 0x0,0x0,0x57,0x3b, + 0x0,0x52, + 0x0,0x4f,0x0,0x4b, + // zone.tab 0x0,0x8, - 0x0,0x4a,0xc9,0x1e, - 0x0,0x4c, - 0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x6d,0x0,0x61,0x0,0x6e, - // NSW + 0x6,0x48,0x4a,0x52, + 0x0,0x7a, + 0x0,0x6f,0x0,0x6e,0x0,0x65,0x0,0x2e,0x0,0x74,0x0,0x61,0x0,0x62, + // MET 0x0,0x3, - 0x0,0x0,0x53,0x87, - 0x0,0x4e, - 0x0,0x53,0x0,0x57, - // Darwin - 0x0,0x6, - 0x4,0xa8,0x9d,0xfe, - 0x0,0x44, - 0x0,0x61,0x0,0x72,0x0,0x77,0x0,0x69,0x0,0x6e, - // West + 0x0,0x0,0x51,0xa4, + 0x0,0x4d, + 0x0,0x45,0x0,0x54, + // Cuba 0x0,0x4, - 0x0,0x5,0xdc,0xa4, - 0x0,0x57, - 0x0,0x65,0x0,0x73,0x0,0x74, - // Queensland - 0x0,0xa, - 0xc,0x55,0x33,0x24, - 0x0,0x51, - 0x0,0x75,0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x6c,0x0,0x61,0x0,0x6e,0x0,0x64, - // Sydney + 0x0,0x4,0xab,0x81, + 0x0,0x43, + 0x0,0x75,0x0,0x62,0x0,0x61, + // Zulu + 0x0,0x4, + 0x0,0x6,0x1c,0x35, + 0x0,0x5a, + 0x0,0x75,0x0,0x6c,0x0,0x75, + // Israel 0x0,0x6, - 0x5,0xaf,0xb4,0xc9, + 0x5,0xa,0x87,0xbc, + 0x0,0x49, + 0x0,0x73,0x0,0x72,0x0,0x61,0x0,0x65,0x0,0x6c, + // Singapore + 0x0,0x9, + 0x4,0xd8,0xc2,0x85, 0x0,0x53, - 0x0,0x79,0x0,0x64,0x0,0x6e,0x0,0x65,0x0,0x79, - // Melbourne + 0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x61,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x65, + // leapseconds + 0x0,0xb, + 0x9,0x5f,0x54,0x53, + 0x0,0x6c, + 0x0,0x65,0x0,0x61,0x0,0x70,0x0,0x73,0x0,0x65,0x0,0x63,0x0,0x6f,0x0,0x6e,0x0,0x64,0x0,0x73, + // UTC + 0x0,0x3, + 0x0,0x0,0x5a,0x83, + 0x0,0x55, + 0x0,0x54,0x0,0x43, + // +VERSION + 0x0,0x8, + 0xa,0xa7,0x7c,0x3e, + 0x0,0x2b, + 0x0,0x56,0x0,0x45,0x0,0x52,0x0,0x53,0x0,0x49,0x0,0x4f,0x0,0x4e, + // Indian + 0x0,0x6, + 0x5,0x4,0xaf,0x7e, + 0x0,0x49, + 0x0,0x6e,0x0,0x64,0x0,0x69,0x0,0x61,0x0,0x6e, + // EST5EDT + 0x0,0x7, + 0xa,0x87,0x99,0x14, + 0x0,0x45, + 0x0,0x53,0x0,0x54,0x0,0x35,0x0,0x45,0x0,0x44,0x0,0x54, + // Comoro + 0x0,0x6, + 0x4,0xa6,0x46,0x8f, + 0x0,0x43, + 0x0,0x6f,0x0,0x6d,0x0,0x6f,0x0,0x72,0x0,0x6f, + // Christmas 0x0,0x9, - 0x2,0x96,0x6e,0xc5, - 0x0,0x4d, - 0x0,0x65,0x0,0x6c,0x0,0x62,0x0,0x6f,0x0,0x75,0x0,0x72,0x0,0x6e,0x0,0x65, - // Nicosia + 0x9,0xa,0x20,0x63, + 0x0,0x43, + 0x0,0x68,0x0,0x72,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x6d,0x0,0x61,0x0,0x73, + // Antananarivo + 0x0,0xc, + 0x1,0x43,0xc0,0x6f, + 0x0,0x41, + 0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x61,0x0,0x6e,0x0,0x61,0x0,0x72,0x0,0x69,0x0,0x76,0x0,0x6f, + // Chagos + 0x0,0x6, + 0x4,0x9e,0x7e,0x63, + 0x0,0x43, + 0x0,0x68,0x0,0x61,0x0,0x67,0x0,0x6f,0x0,0x73, + // Cocos + 0x0,0x5, + 0x0,0x4a,0x5a,0x63, + 0x0,0x43, + 0x0,0x6f,0x0,0x63,0x0,0x6f,0x0,0x73, + // Mayotte 0x0,0x7, - 0x4,0xfa,0x69,0x51, - 0x0,0x4e, - 0x0,0x69,0x0,0x63,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x61, - // Mariehamn + 0x3,0x90,0x6b,0x5, + 0x0,0x4d, + 0x0,0x61,0x0,0x79,0x0,0x6f,0x0,0x74,0x0,0x74,0x0,0x65, + // Mahe + 0x0,0x4, + 0x0,0x5,0x37,0xe5, + 0x0,0x4d, + 0x0,0x61,0x0,0x68,0x0,0x65, + // Mauritius 0x0,0x9, - 0x8,0xfb,0x43,0x3e, + 0xc,0x90,0x17,0xc3, 0x0,0x4d, - 0x0,0x61,0x0,0x72,0x0,0x69,0x0,0x65,0x0,0x68,0x0,0x61,0x0,0x6d,0x0,0x6e, - // Kaliningrad - 0x0,0xb, - 0x4,0x67,0xee,0x74, + 0x0,0x61,0x0,0x75,0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x75,0x0,0x73, + // Kerguelen + 0x0,0x9, + 0x8,0xeb,0x21,0x3e, 0x0,0x4b, - 0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x64, - // Bratislava - 0x0,0xa, - 0xb,0x3,0x19,0xc1, - 0x0,0x42, - 0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x73,0x0,0x6c,0x0,0x61,0x0,0x76,0x0,0x61, - // Busingen + 0x0,0x65,0x0,0x72,0x0,0x67,0x0,0x75,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x6e, + // Maldives 0x0,0x8, - 0xc,0xa0,0x44,0x9e, - 0x0,0x42, - 0x0,0x75,0x0,0x73,0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x65,0x0,0x6e, - // Vatican + 0x8,0x2b,0x6,0xa3, + 0x0,0x4d, + 0x0,0x61,0x0,0x6c,0x0,0x64,0x0,0x69,0x0,0x76,0x0,0x65,0x0,0x73, + // Reunion 0x0,0x7, - 0xc,0x8a,0xf9,0xde, - 0x0,0x56, - 0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x6e, - // Bucharest - 0x0,0x9, - 0x9,0xe8,0x1f,0xc4, - 0x0,0x42, - 0x0,0x75,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x74, - // San_Marino - 0x0,0xa, - 0x4,0x33,0xc0,0xcf, - 0x0,0x53, - 0x0,0x61,0x0,0x6e,0x0,0x5f,0x0,0x4d,0x0,0x61,0x0,0x72,0x0,0x69,0x0,0x6e,0x0,0x6f, - // Copenhagen + 0x8,0xcc,0x50,0xfe, + 0x0,0x52, + 0x0,0x65,0x0,0x75,0x0,0x6e,0x0,0x69,0x0,0x6f,0x0,0x6e, + // Lubumbashi 0x0,0xa, - 0xc,0x47,0x31,0x7e, - 0x0,0x43, - 0x0,0x6f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x68,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6e, - // Berlin - 0x0,0x6, - 0x4,0x8c,0x92,0xfe, - 0x0,0x42, - 0x0,0x65,0x0,0x72,0x0,0x6c,0x0,0x69,0x0,0x6e, - // London - 0x0,0x6, - 0x5,0x36,0x4b,0x5e, + 0xc,0x32,0xfe,0xc9, 0x0,0x4c, - 0x0,0x6f,0x0,0x6e,0x0,0x64,0x0,0x6f,0x0,0x6e, - // Stockholm - 0x0,0x9, - 0x5,0xa1,0x43,0x4d, - 0x0,0x53, - 0x0,0x74,0x0,0x6f,0x0,0x63,0x0,0x6b,0x0,0x68,0x0,0x6f,0x0,0x6c,0x0,0x6d, - // Astrakhan - 0x0,0x9, - 0xb,0x88,0x8f,0x3e, - 0x0,0x41, - 0x0,0x73,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x6b,0x0,0x68,0x0,0x61,0x0,0x6e, - // Prague - 0x0,0x6, - 0x5,0x78,0x7e,0xb5, + 0x0,0x75,0x0,0x62,0x0,0x75,0x0,0x6d,0x0,0x62,0x0,0x61,0x0,0x73,0x0,0x68,0x0,0x69, + // Porto-Novo + 0x0,0xa, + 0xb,0x2c,0xbb,0xef, 0x0,0x50, - 0x0,0x72,0x0,0x61,0x0,0x67,0x0,0x75,0x0,0x65, - // Skopje + 0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x6f,0x0,0x2d,0x0,0x4e,0x0,0x6f,0x0,0x76,0x0,0x6f, + // Kigali 0x0,0x6, - 0x5,0xa2,0x67,0x5, - 0x0,0x53, - 0x0,0x6b,0x0,0x6f,0x0,0x70,0x0,0x6a,0x0,0x65, - // Saratov - 0x0,0x7, - 0x9,0x88,0x8b,0xc6, - 0x0,0x53, - 0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x76, - // Lisbon + 0x5,0x1f,0xd8,0x29, + 0x0,0x4b, + 0x0,0x69,0x0,0x67,0x0,0x61,0x0,0x6c,0x0,0x69, + // Malabo 0x0,0x6, - 0x5,0x30,0x99,0x5e, - 0x0,0x4c, - 0x0,0x69,0x0,0x73,0x0,0x62,0x0,0x6f,0x0,0x6e, - // Paris + 0x5,0x38,0x27,0x8f, + 0x0,0x4d, + 0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x62,0x0,0x6f, + // Ceuta 0x0,0x5, - 0x0,0x56,0x89,0x3, - 0x0,0x50, - 0x0,0x61,0x0,0x72,0x0,0x69,0x0,0x73, - // Tiraspol + 0x0,0x49,0xcc,0xa1, + 0x0,0x43, + 0x0,0x65,0x0,0x75,0x0,0x74,0x0,0x61, + // Windhoek 0x0,0x8, - 0x0,0x88,0xac,0x3c, - 0x0,0x54, - 0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x6c, - // Monaco - 0x0,0x6, - 0x5,0x46,0x47,0x9f, + 0x0,0x4a,0xfe,0x7b, + 0x0,0x57, + 0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x68,0x0,0x6f,0x0,0x65,0x0,0x6b, + // Khartoum + 0x0,0x8, + 0xe,0x89,0xbc,0x9d, + 0x0,0x4b, + 0x0,0x68,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x6f,0x0,0x75,0x0,0x6d, + // Mbabane + 0x0,0x7, + 0x3,0x87,0x88,0xe5, 0x0,0x4d, - 0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x63,0x0,0x6f, - // Athens + 0x0,0x62,0x0,0x61,0x0,0x62,0x0,0x61,0x0,0x6e,0x0,0x65, + // Casablanca + 0x0,0xa, + 0x7,0x9b,0x75,0xb1, + 0x0,0x43, + 0x0,0x61,0x0,0x73,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x61,0x0,0x6e,0x0,0x63,0x0,0x61, + // Bissau 0x0,0x6, - 0x4,0x8a,0xec,0x53, + 0x4,0x90,0xa9,0x85, + 0x0,0x42, + 0x0,0x69,0x0,0x73,0x0,0x73,0x0,0x61,0x0,0x75, + // Johannesburg + 0x0,0xc, + 0xe,0xe2,0x4c,0x27, + 0x0,0x4a, + 0x0,0x6f,0x0,0x68,0x0,0x61,0x0,0x6e,0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x62,0x0,0x75,0x0,0x72,0x0,0x67, + // Ndjamena + 0x0,0x8, + 0xb,0x8,0x32,0xc1, + 0x0,0x4e, + 0x0,0x64,0x0,0x6a,0x0,0x61,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x61, + // Asmera + 0x0,0x6, + 0x4,0x8a,0x3c,0x81, 0x0,0x41, - 0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x6e,0x0,0x73, - // Warsaw + 0x0,0x73,0x0,0x6d,0x0,0x65,0x0,0x72,0x0,0x61, + // Mogadishu + 0x0,0x9, + 0xd,0x7b,0xa1,0x55, + 0x0,0x4d, + 0x0,0x6f,0x0,0x67,0x0,0x61,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x68,0x0,0x75, + // Luanda 0x0,0x6, - 0x5,0xd8,0x99,0x87, - 0x0,0x57, - 0x0,0x61,0x0,0x72,0x0,0x73,0x0,0x61,0x0,0x77, - // Malta + 0x5,0x3b,0x84,0xa1, + 0x0,0x4c, + 0x0,0x75,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61, + // Blantyre + 0x0,0x8, + 0x2,0x85,0xc9,0xa5, + 0x0,0x42, + 0x0,0x6c,0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0x79,0x0,0x72,0x0,0x65, + // Tunis 0x0,0x5, - 0x0,0x53,0x83,0xa1, - 0x0,0x4d, - 0x0,0x61,0x0,0x6c,0x0,0x74,0x0,0x61, - // Ulyanovsk - 0x0,0x9, - 0xf,0x85,0xd5,0xfb, - 0x0,0x55, - 0x0,0x6c,0x0,0x79,0x0,0x61,0x0,0x6e,0x0,0x6f,0x0,0x76,0x0,0x73,0x0,0x6b, - // Vienna + 0x0,0x5b,0xc5,0x3, + 0x0,0x54, + 0x0,0x75,0x0,0x6e,0x0,0x69,0x0,0x73, + // Harare 0x0,0x6, - 0x5,0xcf,0xc5,0x41, - 0x0,0x56, - 0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x6e,0x0,0x61, - // Gibraltar + 0x4,0xe8,0x88,0x85, + 0x0,0x48, + 0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x72,0x0,0x65, + // Bujumbura 0x0,0x9, - 0x9,0x88,0xa1,0x62, - 0x0,0x47, - 0x0,0x69,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x6c,0x0,0x74,0x0,0x61,0x0,0x72, - // Samara + 0x1,0xc3,0xf,0x1, + 0x0,0x42, + 0x0,0x75,0x0,0x6a,0x0,0x75,0x0,0x6d,0x0,0x62,0x0,0x75,0x0,0x72,0x0,0x61, + // Dar_es_Salaam + 0x0,0xd, + 0x1,0x88,0x9f,0x7d, + 0x0,0x44, + 0x0,0x61,0x0,0x72,0x0,0x5f,0x0,0x65,0x0,0x73,0x0,0x5f,0x0,0x53,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x61,0x0,0x6d, + // Juba + 0x0,0x4, + 0x0,0x5,0x1b,0x81, + 0x0,0x4a, + 0x0,0x75,0x0,0x62,0x0,0x61, + // Maseru 0x0,0x6, - 0x5,0x98,0x38,0x81, - 0x0,0x53, - 0x0,0x61,0x0,0x6d,0x0,0x61,0x0,0x72,0x0,0x61, - // Istanbul - 0x0,0x8, - 0xa,0xa8,0x43,0xbc, - 0x0,0x49, - 0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x62,0x0,0x75,0x0,0x6c, - // Guernsey + 0x5,0x38,0x9c,0x95, + 0x0,0x4d, + 0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x72,0x0,0x75, + // Dakar + 0x0,0x5, + 0x0,0x4a,0x81,0x82, + 0x0,0x44, + 0x0,0x61,0x0,0x6b,0x0,0x61,0x0,0x72, + // Timbuktu 0x0,0x8, - 0xb,0xc9,0x50,0x9, - 0x0,0x47, - 0x0,0x75,0x0,0x65,0x0,0x72,0x0,0x6e,0x0,0x73,0x0,0x65,0x0,0x79, - // Volgograd - 0x0,0x9, - 0x2,0xe5,0x52,0xb4, - 0x0,0x56, - 0x0,0x6f,0x0,0x6c,0x0,0x67,0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x64, - // Zaporozhye + 0x0,0x39,0xc9,0xd5, + 0x0,0x54, + 0x0,0x69,0x0,0x6d,0x0,0x62,0x0,0x75,0x0,0x6b,0x0,0x74,0x0,0x75, + // Addis_Ababa + 0x0,0xb, + 0x9,0xb8,0xd1,0x81, + 0x0,0x41, + 0x0,0x64,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x5f,0x0,0x41,0x0,0x62,0x0,0x61,0x0,0x62,0x0,0x61, + // Bamako + 0x0,0x6, + 0x4,0x88,0x38,0x1f, + 0x0,0x42, + 0x0,0x61,0x0,0x6d,0x0,0x61,0x0,0x6b,0x0,0x6f, + // Libreville 0x0,0xa, - 0x6,0x9b,0x1f,0x15, - 0x0,0x5a, - 0x0,0x61,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x6f,0x0,0x7a,0x0,0x68,0x0,0x79,0x0,0x65, - // Vaduz - 0x0,0x5, - 0x0,0x5c,0x7b,0xca, - 0x0,0x56, - 0x0,0x61,0x0,0x64,0x0,0x75,0x0,0x7a, - // Ljubljana - 0x0,0x9, - 0xb,0x93,0xa2,0x61, + 0x8,0xc6,0xdc,0x5, 0x0,0x4c, - 0x0,0x6a,0x0,0x75,0x0,0x62,0x0,0x6c,0x0,0x6a,0x0,0x61,0x0,0x6e,0x0,0x61, - // Brussels + 0x0,0x69,0x0,0x62,0x0,0x72,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x6c,0x0,0x6c,0x0,0x65, + // Djibouti 0x0,0x8, - 0x9,0xca,0x95,0x13, - 0x0,0x42, - 0x0,0x72,0x0,0x75,0x0,0x73,0x0,0x73,0x0,0x65,0x0,0x6c,0x0,0x73, - // Sofia - 0x0,0x5, - 0x0,0x5a,0x5c,0xf1, - 0x0,0x53, - 0x0,0x6f,0x0,0x66,0x0,0x69,0x0,0x61, - // Vilnius + 0x0,0xf9,0x65,0xc9, + 0x0,0x44, + 0x0,0x6a,0x0,0x69,0x0,0x62,0x0,0x6f,0x0,0x75,0x0,0x74,0x0,0x69, + // El_Aaiun + 0x0,0x8, + 0x2,0x37,0x89,0x3e, + 0x0,0x45, + 0x0,0x6c,0x0,0x5f,0x0,0x41,0x0,0x61,0x0,0x69,0x0,0x75,0x0,0x6e, + // Niamey + 0x0,0x6, + 0x5,0x4f,0x83,0xc9, + 0x0,0x4e, + 0x0,0x69,0x0,0x61,0x0,0x6d,0x0,0x65,0x0,0x79, + // Tripoli 0x0,0x7, - 0xd,0x3,0x50,0x63, - 0x0,0x56, - 0x0,0x69,0x0,0x6c,0x0,0x6e,0x0,0x69,0x0,0x75,0x0,0x73, - // Isle_of_Man - 0x0,0xb, - 0x6,0xfd,0x86,0x1e, - 0x0,0x49, - 0x0,0x73,0x0,0x6c,0x0,0x65,0x0,0x5f,0x0,0x6f,0x0,0x66,0x0,0x5f,0x0,0x4d,0x0,0x61,0x0,0x6e, - // Chisinau + 0xb,0x90,0x76,0x89, + 0x0,0x54, + 0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x6f,0x0,0x6c,0x0,0x69, + // Abidjan + 0x0,0x7, + 0x7,0x8f,0xb0,0xfe, + 0x0,0x41, + 0x0,0x62,0x0,0x69,0x0,0x64,0x0,0x6a,0x0,0x61,0x0,0x6e, + // Conakry + 0x0,0x7, + 0xa,0x64,0x82,0x19, + 0x0,0x43, + 0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x6b,0x0,0x72,0x0,0x79, + // Gaborone + 0x0,0x8, + 0x7,0x96,0x9f,0xe5, + 0x0,0x47, + 0x0,0x61,0x0,0x62,0x0,0x6f,0x0,0x72,0x0,0x6f,0x0,0x6e,0x0,0x65, + // Sao_Tome + 0x0,0x8, + 0x8,0x54,0xc1,0x15, + 0x0,0x53, + 0x0,0x61,0x0,0x6f,0x0,0x5f,0x0,0x54,0x0,0x6f,0x0,0x6d,0x0,0x65, + // Lusaka + 0x0,0x6, + 0x5,0x3c,0x98,0x11, + 0x0,0x4c, + 0x0,0x75,0x0,0x73,0x0,0x61,0x0,0x6b,0x0,0x61, + // Freetown 0x0,0x8, - 0xf,0xa,0xd,0xa5, + 0x8,0xbc,0xbf,0x7e, + 0x0,0x46, + 0x0,0x72,0x0,0x65,0x0,0x65,0x0,0x74,0x0,0x6f,0x0,0x77,0x0,0x6e, + // Cairo + 0x0,0x5, + 0x0,0x49,0x80,0x8f, 0x0,0x43, - 0x0,0x68,0x0,0x69,0x0,0x73,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x75, - // Budapest - 0x0,0x8, - 0xb,0xa8,0x65,0x84, + 0x0,0x61,0x0,0x69,0x0,0x72,0x0,0x6f, + // Nairobi + 0x0,0x7, + 0x4,0x80,0x95,0x29, + 0x0,0x4e, + 0x0,0x61,0x0,0x69,0x0,0x72,0x0,0x6f,0x0,0x62,0x0,0x69, + // Lagos + 0x0,0x5, + 0x0,0x52,0x7e,0x63, + 0x0,0x4c, + 0x0,0x61,0x0,0x67,0x0,0x6f,0x0,0x73, + // Bangui + 0x0,0x6, + 0x4,0x88,0x4e,0xb9, 0x0,0x42, - 0x0,0x75,0x0,0x64,0x0,0x61,0x0,0x70,0x0,0x65,0x0,0x73,0x0,0x74, - // Kiev - 0x0,0x4, - 0x0,0x5,0x1f,0xc6, - 0x0,0x4b, - 0x0,0x69,0x0,0x65,0x0,0x76, - // Rome + 0x0,0x61,0x0,0x6e,0x0,0x67,0x0,0x75,0x0,0x69, + // Nouakchott + 0x0,0xa, + 0x8,0x13,0x5b,0xd4, + 0x0,0x4e, + 0x0,0x6f,0x0,0x75,0x0,0x61,0x0,0x6b,0x0,0x63,0x0,0x68,0x0,0x6f,0x0,0x74,0x0,0x74, + // Monrovia + 0x0,0x8, + 0x6,0x59,0x66,0x71, + 0x0,0x4d, + 0x0,0x6f,0x0,0x6e,0x0,0x72,0x0,0x6f,0x0,0x76,0x0,0x69,0x0,0x61, + // Lome 0x0,0x4, - 0x0,0x5,0x96,0x35, - 0x0,0x52, + 0x0,0x5,0x36,0x35, + 0x0,0x4c, 0x0,0x6f,0x0,0x6d,0x0,0x65, - // Dublin + // Banjul 0x0,0x6, - 0x4,0xbb,0x92,0xfe, - 0x0,0x44, - 0x0,0x75,0x0,0x62,0x0,0x6c,0x0,0x69,0x0,0x6e, - // Tallinn - 0x0,0x7, - 0xa,0x83,0x30,0xee, - 0x0,0x54, - 0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x6e, - // Sarajevo - 0x0,0x8, - 0x8,0x88,0x7,0xef, - 0x0,0x53, - 0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x6a,0x0,0x65,0x0,0x76,0x0,0x6f, - // Andorra + 0x4,0x88,0x51,0xbc, + 0x0,0x42, + 0x0,0x61,0x0,0x6e,0x0,0x6a,0x0,0x75,0x0,0x6c, + // Maputo + 0x0,0x6, + 0x5,0x38,0x7c,0xaf, + 0x0,0x4d, + 0x0,0x61,0x0,0x70,0x0,0x75,0x0,0x74,0x0,0x6f, + // Algiers 0x0,0x7, - 0x8,0x4b,0x69,0x1, + 0x8,0x2d,0xfc,0x13, 0x0,0x41, - 0x0,0x6e,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x72,0x0,0x61, - // Riga - 0x0,0x4, - 0x0,0x5,0x8f,0xd1, - 0x0,0x52, - 0x0,0x69,0x0,0x67,0x0,0x61, - // Belgrade + 0x0,0x6c,0x0,0x67,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x73, + // Ouagadougou + 0x0,0xb, + 0x7,0x1b,0xd5,0xc5, + 0x0,0x4f, + 0x0,0x75,0x0,0x61,0x0,0x67,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x75,0x0,0x67,0x0,0x6f,0x0,0x75, + // Asmara + 0x0,0x6, + 0x4,0x8a,0x38,0x81, + 0x0,0x41, + 0x0,0x73,0x0,0x6d,0x0,0x61,0x0,0x72,0x0,0x61, + // Kinshasa 0x0,0x8, - 0xc,0x2e,0x8e,0xa5, - 0x0,0x42, - 0x0,0x65,0x0,0x6c,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x64,0x0,0x65, - // Kirov - 0x0,0x5, - 0x0,0x52,0x9,0x66, + 0x0,0x59,0xe2,0xd1, 0x0,0x4b, - 0x0,0x69,0x0,0x72,0x0,0x6f,0x0,0x76, - // Oslo - 0x0,0x4, - 0x0,0x5,0x6a,0x2f, - 0x0,0x4f, - 0x0,0x73,0x0,0x6c,0x0,0x6f, - // Belfast + 0x0,0x69,0x0,0x6e,0x0,0x73,0x0,0x68,0x0,0x61,0x0,0x73,0x0,0x61, + // Accra + 0x0,0x5, + 0x0,0x47,0x9a,0x81, + 0x0,0x41, + 0x0,0x63,0x0,0x63,0x0,0x72,0x0,0x61, + // Kampala 0x0,0x7, - 0x8,0xc2,0xc8,0x24, + 0x1,0x84,0x68,0x81, + 0x0,0x4b, + 0x0,0x61,0x0,0x6d,0x0,0x70,0x0,0x61,0x0,0x6c,0x0,0x61, + // Brazzaville + 0x0,0xb, + 0x0,0x20,0x11,0x65, 0x0,0x42, - 0x0,0x65,0x0,0x6c,0x0,0x66,0x0,0x61,0x0,0x73,0x0,0x74, - // Zagreb + 0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x7a,0x0,0x61,0x0,0x76,0x0,0x69,0x0,0x6c,0x0,0x6c,0x0,0x65, + // Douala 0x0,0x6, - 0x6,0x7,0xe8,0xb2, - 0x0,0x5a, - 0x0,0x61,0x0,0x67,0x0,0x72,0x0,0x65,0x0,0x62, - // Podgorica - 0x0,0x9, - 0xa,0xe6,0x21,0x31, - 0x0,0x50, - 0x0,0x6f,0x0,0x64,0x0,0x67,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x63,0x0,0x61, - // Tirane + 0x4,0xb6,0xb8,0x21, + 0x0,0x44, + 0x0,0x6f,0x0,0x75,0x0,0x61,0x0,0x6c,0x0,0x61, + // Hawaii 0x0,0x6, - 0x5,0xb0,0x88,0x45, - 0x0,0x54, - 0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x65, - // Helsinki - 0x0,0x8, - 0xc,0x3a,0xc,0xd9, + 0x4,0xe8,0xd7,0xf9, 0x0,0x48, - 0x0,0x65,0x0,0x6c,0x0,0x73,0x0,0x69,0x0,0x6e,0x0,0x6b,0x0,0x69, - // Uzhgorod + 0x0,0x61,0x0,0x77,0x0,0x61,0x0,0x69,0x0,0x69, + // Central + 0x0,0x7, + 0x9,0xc5,0xb8,0xfc, + 0x0,0x43, + 0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x6c, + // Eastern + 0x0,0x7, + 0xb,0x8a,0xac,0xe, + 0x0,0x45, + 0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x6e, + // Michigan 0x0,0x8, - 0x0,0xee,0x62,0xf4, - 0x0,0x55, - 0x0,0x7a,0x0,0x68,0x0,0x67,0x0,0x6f,0x0,0x72,0x0,0x6f,0x0,0x64, - // Zurich - 0x0,0x6, - 0x6,0x1c,0x8f,0x98, - 0x0,0x5a, - 0x0,0x75,0x0,0x72,0x0,0x69,0x0,0x63,0x0,0x68, - // Madrid + 0xf,0x9e,0xf7,0x1e, + 0x0,0x4d, + 0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x67,0x0,0x61,0x0,0x6e, + // Alaska 0x0,0x6, - 0x5,0x37,0xb8,0xf4, + 0x4,0x82,0x8a,0x11, + 0x0,0x41, + 0x0,0x6c,0x0,0x61,0x0,0x73,0x0,0x6b,0x0,0x61, + // Samoa + 0x0,0x5, + 0x0,0x59,0x84,0x51, + 0x0,0x53, + 0x0,0x61,0x0,0x6d,0x0,0x6f,0x0,0x61, + // Indiana-Starke + 0x0,0xe, + 0xb,0xf5,0x95,0x95, + 0x0,0x49, + 0x0,0x6e,0x0,0x64,0x0,0x69,0x0,0x61,0x0,0x6e,0x0,0x61,0x0,0x2d,0x0,0x53,0x0,0x74,0x0,0x61,0x0,0x72,0x0,0x6b,0x0,0x65, + // Pacific-New + 0x0,0xb, + 0xc,0x5b,0x17,0x27, + 0x0,0x50, + 0x0,0x61,0x0,0x63,0x0,0x69,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x2d,0x0,0x4e,0x0,0x65,0x0,0x77, + // Mountain + 0x0,0x8, + 0x6,0xc5,0xad,0x7e, 0x0,0x4d, - 0x0,0x61,0x0,0x64,0x0,0x72,0x0,0x69,0x0,0x64, - // Simferopol - 0x0,0xa, - 0xc,0xc2,0x27,0x3c, + 0x0,0x6f,0x0,0x75,0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x69,0x0,0x6e, + // Arizona + 0x0,0x7, + 0x8,0x91,0x16,0xc1, + 0x0,0x41, + 0x0,0x72,0x0,0x69,0x0,0x7a,0x0,0x6f,0x0,0x6e,0x0,0x61, + // East-Indiana + 0x0,0xc, + 0x9,0x3b,0xba,0x61, + 0x0,0x45, + 0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x2d,0x0,0x49,0x0,0x6e,0x0,0x64,0x0,0x69,0x0,0x61,0x0,0x6e,0x0,0x61, + // Aleutian + 0x0,0x8, + 0x2,0xcc,0xa6,0x7e, + 0x0,0x41, + 0x0,0x6c,0x0,0x65,0x0,0x75,0x0,0x74,0x0,0x69,0x0,0x61,0x0,0x6e, + // Continental + 0x0,0xb, + 0x0,0xe0,0x91,0x1c, + 0x0,0x43, + 0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x6c, + // EasterIsland + 0x0,0xc, + 0xe,0x7b,0x75,0xc4, + 0x0,0x45, + 0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x49,0x0,0x73,0x0,0x6c,0x0,0x61,0x0,0x6e,0x0,0x64, + // Stanley + 0x0,0x7, + 0xa,0xa8,0x52,0x69, 0x0,0x53, - 0x0,0x69,0x0,0x6d,0x0,0x66,0x0,0x65,0x0,0x72,0x0,0x6f,0x0,0x70,0x0,0x6f,0x0,0x6c, - // Minsk + 0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x6c,0x0,0x65,0x0,0x79, + // Canary + 0x0,0x6, + 0x4,0x98,0x48,0x99, + 0x0,0x43, + 0x0,0x61,0x0,0x6e,0x0,0x61,0x0,0x72,0x0,0x79, + // Azores + 0x0,0x6, + 0x4,0x91,0x68,0xc3, + 0x0,0x41, + 0x0,0x7a,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x73, + // Faroe 0x0,0x5, - 0x0,0x54,0x5,0x9b, - 0x0,0x4d, - 0x0,0x69,0x0,0x6e,0x0,0x73,0x0,0x6b, - // Luxembourg + 0x0,0x4c,0x89,0x55, + 0x0,0x46, + 0x0,0x61,0x0,0x72,0x0,0x6f,0x0,0x65, + // Jan_Mayen + 0x0,0x9, + 0x4,0x43,0x2e,0xbe, + 0x0,0x4a, + 0x0,0x61,0x0,0x6e,0x0,0x5f,0x0,0x4d,0x0,0x61,0x0,0x79,0x0,0x65,0x0,0x6e, + // Cape_Verde 0x0,0xa, - 0xc,0x33,0x15,0x47, - 0x0,0x4c, - 0x0,0x75,0x0,0x78,0x0,0x65,0x0,0x6d,0x0,0x62,0x0,0x6f,0x0,0x75,0x0,0x72,0x0,0x67, - // Moscow - 0x0,0x6, - 0x5,0x46,0x9a,0x67, + 0xb,0x45,0xf8,0x65, + 0x0,0x43, + 0x0,0x61,0x0,0x70,0x0,0x65,0x0,0x5f,0x0,0x56,0x0,0x65,0x0,0x72,0x0,0x64,0x0,0x65, + // South_Georgia + 0x0,0xd, + 0x9,0x9f,0xd0,0xf1, + 0x0,0x53, + 0x0,0x6f,0x0,0x75,0x0,0x74,0x0,0x68,0x0,0x5f,0x0,0x47,0x0,0x65,0x0,0x6f,0x0,0x72,0x0,0x67,0x0,0x69,0x0,0x61, + // Madeira + 0x0,0x7, + 0x3,0x7a,0xc0,0x21, 0x0,0x4d, - 0x0,0x6f,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x77, - // Jersey + 0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x69,0x0,0x72,0x0,0x61, + // Bermuda + 0x0,0x7, + 0x8,0xc9,0x4b,0x21, + 0x0,0x42, + 0x0,0x65,0x0,0x72,0x0,0x6d,0x0,0x75,0x0,0x64,0x0,0x61, + // St_Helena + 0x0,0x9, + 0x3,0xec,0xa1,0x1, + 0x0,0x53, + 0x0,0x74,0x0,0x5f,0x0,0x48,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x61, + // Faeroe 0x0,0x6, - 0x5,0xc,0x99,0xc9, - 0x0,0x4a, - 0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x65,0x0,0x79, - // Amsterdam + 0x4,0xc7,0xc9,0x55, + 0x0,0x46, + 0x0,0x61,0x0,0x65,0x0,0x72,0x0,0x6f,0x0,0x65, + // Reykjavik 0x0,0x9, - 0xa,0xac,0x1a,0xfd, + 0x0,0x20,0x3d,0x5b, + 0x0,0x52, + 0x0,0x65,0x0,0x79,0x0,0x6b,0x0,0x6a,0x0,0x61,0x0,0x76,0x0,0x69,0x0,0x6b, + // Acre + 0x0,0x4, + 0x0,0x4,0x7a,0x85, 0x0,0x41, - 0x0,0x6d,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x64,0x0,0x61,0x0,0x6d, + 0x0,0x63,0x0,0x72,0x0,0x65, + // East + 0x0,0x4, + 0x0,0x4,0xb8,0xa4, + 0x0,0x45, + 0x0,0x61,0x0,0x73,0x0,0x74, + // West + 0x0,0x4, + 0x0,0x5,0xdc,0xa4, + 0x0,0x57, + 0x0,0x65,0x0,0x73,0x0,0x74, + // DeNoronha + 0x0,0x9, + 0x5,0x69,0xf1,0xa1, + 0x0,0x44, + 0x0,0x65,0x0,0x4e,0x0,0x6f,0x0,0x72,0x0,0x6f,0x0,0x6e,0x0,0x68,0x0,0x61, // Vostok 0x0,0x6, 0x5,0xd6,0xab,0x5b, @@ -49248,191 +51061,6 @@ static const unsigned char qt_resource_name[] = { 0x0,0x5b,0x6,0xd1, 0x0,0x53, 0x0,0x79,0x0,0x6f,0x0,0x77,0x0,0x61, - // GMT-1 - 0x0,0x5, - 0x0,0x4c,0x27,0x1, - 0x0,0x47, - 0x0,0x4d,0x0,0x54,0x0,0x2d,0x0,0x31, - // GMT-2 - 0x0,0x5, - 0x0,0x4c,0x27,0x2, - 0x0,0x47, - 0x0,0x4d,0x0,0x54,0x0,0x2d,0x0,0x32, - // GMT-3 - 0x0,0x5, - 0x0,0x4c,0x27,0x3, - 0x0,0x47, - 0x0,0x4d,0x0,0x54,0x0,0x2d,0x0,0x33, - // GMT-4 - 0x0,0x5, - 0x0,0x4c,0x27,0x4, - 0x0,0x47, - 0x0,0x4d,0x0,0x54,0x0,0x2d,0x0,0x34, - // GMT-5 - 0x0,0x5, - 0x0,0x4c,0x27,0x5, - 0x0,0x47, - 0x0,0x4d,0x0,0x54,0x0,0x2d,0x0,0x35, - // GMT-6 - 0x0,0x5, - 0x0,0x4c,0x27,0x6, - 0x0,0x47, - 0x0,0x4d,0x0,0x54,0x0,0x2d,0x0,0x36, - // GMT-10 - 0x0,0x6, - 0x4,0xc2,0x70,0x40, - 0x0,0x47, - 0x0,0x4d,0x0,0x54,0x0,0x2d,0x0,0x31,0x0,0x30, - // GMT-7 - 0x0,0x5, - 0x0,0x4c,0x27,0x7, - 0x0,0x47, - 0x0,0x4d,0x0,0x54,0x0,0x2d,0x0,0x37, - // GMT-11 - 0x0,0x6, - 0x4,0xc2,0x70,0x41, - 0x0,0x47, - 0x0,0x4d,0x0,0x54,0x0,0x2d,0x0,0x31,0x0,0x31, - // GMT-8 - 0x0,0x5, - 0x0,0x4c,0x27,0x8, - 0x0,0x47, - 0x0,0x4d,0x0,0x54,0x0,0x2d,0x0,0x38, - // GMT+10 - 0x0,0x6, - 0x4,0xc2,0x6e,0x40, - 0x0,0x47, - 0x0,0x4d,0x0,0x54,0x0,0x2b,0x0,0x31,0x0,0x30, - // GMT-12 - 0x0,0x6, - 0x4,0xc2,0x70,0x42, - 0x0,0x47, - 0x0,0x4d,0x0,0x54,0x0,0x2d,0x0,0x31,0x0,0x32, - // GMT-9 - 0x0,0x5, - 0x0,0x4c,0x27,0x9, - 0x0,0x47, - 0x0,0x4d,0x0,0x54,0x0,0x2d,0x0,0x39, - // GMT+11 - 0x0,0x6, - 0x4,0xc2,0x6e,0x41, - 0x0,0x47, - 0x0,0x4d,0x0,0x54,0x0,0x2b,0x0,0x31,0x0,0x31, - // GMT-13 - 0x0,0x6, - 0x4,0xc2,0x70,0x43, - 0x0,0x47, - 0x0,0x4d,0x0,0x54,0x0,0x2d,0x0,0x31,0x0,0x33, - // GMT+12 - 0x0,0x6, - 0x4,0xc2,0x6e,0x42, - 0x0,0x47, - 0x0,0x4d,0x0,0x54,0x0,0x2b,0x0,0x31,0x0,0x32, - // GMT-14 - 0x0,0x6, - 0x4,0xc2,0x70,0x44, - 0x0,0x47, - 0x0,0x4d,0x0,0x54,0x0,0x2d,0x0,0x31,0x0,0x34, - // GMT+1 - 0x0,0x5, - 0x0,0x4c,0x26,0xe1, - 0x0,0x47, - 0x0,0x4d,0x0,0x54,0x0,0x2b,0x0,0x31, - // GMT+2 - 0x0,0x5, - 0x0,0x4c,0x26,0xe2, - 0x0,0x47, - 0x0,0x4d,0x0,0x54,0x0,0x2b,0x0,0x32, - // GMT+3 - 0x0,0x5, - 0x0,0x4c,0x26,0xe3, - 0x0,0x47, - 0x0,0x4d,0x0,0x54,0x0,0x2b,0x0,0x33, - // GMT+4 - 0x0,0x5, - 0x0,0x4c,0x26,0xe4, - 0x0,0x47, - 0x0,0x4d,0x0,0x54,0x0,0x2b,0x0,0x34, - // GMT+5 - 0x0,0x5, - 0x0,0x4c,0x26,0xe5, - 0x0,0x47, - 0x0,0x4d,0x0,0x54,0x0,0x2b,0x0,0x35, - // GMT+6 - 0x0,0x5, - 0x0,0x4c,0x26,0xe6, - 0x0,0x47, - 0x0,0x4d,0x0,0x54,0x0,0x2b,0x0,0x36, - // GMT+7 - 0x0,0x5, - 0x0,0x4c,0x26,0xe7, - 0x0,0x47, - 0x0,0x4d,0x0,0x54,0x0,0x2b,0x0,0x37, - // GMT+8 - 0x0,0x5, - 0x0,0x4c,0x26,0xe8, - 0x0,0x47, - 0x0,0x4d,0x0,0x54,0x0,0x2b,0x0,0x38, - // GMT+9 - 0x0,0x5, - 0x0,0x4c,0x26,0xe9, - 0x0,0x47, - 0x0,0x4d,0x0,0x54,0x0,0x2b,0x0,0x39, - // Comoro - 0x0,0x6, - 0x4,0xa6,0x46,0x8f, - 0x0,0x43, - 0x0,0x6f,0x0,0x6d,0x0,0x6f,0x0,0x72,0x0,0x6f, - // Christmas - 0x0,0x9, - 0x9,0xa,0x20,0x63, - 0x0,0x43, - 0x0,0x68,0x0,0x72,0x0,0x69,0x0,0x73,0x0,0x74,0x0,0x6d,0x0,0x61,0x0,0x73, - // Antananarivo - 0x0,0xc, - 0x1,0x43,0xc0,0x6f, - 0x0,0x41, - 0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x61,0x0,0x6e,0x0,0x61,0x0,0x72,0x0,0x69,0x0,0x76,0x0,0x6f, - // Chagos - 0x0,0x6, - 0x4,0x9e,0x7e,0x63, - 0x0,0x43, - 0x0,0x68,0x0,0x61,0x0,0x67,0x0,0x6f,0x0,0x73, - // Cocos - 0x0,0x5, - 0x0,0x4a,0x5a,0x63, - 0x0,0x43, - 0x0,0x6f,0x0,0x63,0x0,0x6f,0x0,0x73, - // Mayotte - 0x0,0x7, - 0x3,0x90,0x6b,0x5, - 0x0,0x4d, - 0x0,0x61,0x0,0x79,0x0,0x6f,0x0,0x74,0x0,0x74,0x0,0x65, - // Mahe - 0x0,0x4, - 0x0,0x5,0x37,0xe5, - 0x0,0x4d, - 0x0,0x61,0x0,0x68,0x0,0x65, - // Mauritius - 0x0,0x9, - 0xc,0x90,0x17,0xc3, - 0x0,0x4d, - 0x0,0x61,0x0,0x75,0x0,0x72,0x0,0x69,0x0,0x74,0x0,0x69,0x0,0x75,0x0,0x73, - // Kerguelen - 0x0,0x9, - 0x8,0xeb,0x21,0x3e, - 0x0,0x4b, - 0x0,0x65,0x0,0x72,0x0,0x67,0x0,0x75,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x6e, - // Maldives - 0x0,0x8, - 0x8,0x2b,0x6,0xa3, - 0x0,0x4d, - 0x0,0x61,0x0,0x6c,0x0,0x64,0x0,0x69,0x0,0x76,0x0,0x65,0x0,0x73, - // Reunion - 0x0,0x7, - 0x8,0xcc,0x50,0xfe, - 0x0,0x52, - 0x0,0x65,0x0,0x75,0x0,0x6e,0x0,0x69,0x0,0x6f,0x0,0x6e, // Guatemala 0x0,0x9, 0x8,0xac,0xad,0x41, @@ -49498,6 +51126,11 @@ static const unsigned char qt_resource_name[] = { 0xb,0x39,0xcc,0x5c, 0x0,0x53, 0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x5f,0x0,0x49,0x0,0x73,0x0,0x61,0x0,0x62,0x0,0x65,0x0,0x6c, + // Punta_Arenas + 0x0,0xc, + 0x9,0x70,0x30,0x63, + 0x0,0x50, + 0x0,0x75,0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x5f,0x0,0x41,0x0,0x72,0x0,0x65,0x0,0x6e,0x0,0x61,0x0,0x73, // Montserrat 0x0,0xa, 0xb,0x96,0x14,0x24, @@ -50238,21 +51871,136 @@ static const unsigned char qt_resource_name[] = { 0xd,0x49,0xeb,0x3d, 0x0,0x4e, 0x0,0x65,0x0,0x77,0x0,0x5f,0x0,0x53,0x0,0x61,0x0,0x6c,0x0,0x65,0x0,0x6d, - // Acre - 0x0,0x4, - 0x0,0x4,0x7a,0x85, - 0x0,0x41, - 0x0,0x63,0x0,0x72,0x0,0x65, - // East - 0x0,0x4, - 0x0,0x4,0xb8,0xa4, - 0x0,0x45, - 0x0,0x61,0x0,0x73,0x0,0x74, - // DeNoronha - 0x0,0x9, - 0x5,0x69,0xf1,0xa1, - 0x0,0x44, - 0x0,0x65,0x0,0x4e,0x0,0x6f,0x0,0x72,0x0,0x6f,0x0,0x6e,0x0,0x68,0x0,0x61, + // GMT-1 + 0x0,0x5, + 0x0,0x4c,0x27,0x1, + 0x0,0x47, + 0x0,0x4d,0x0,0x54,0x0,0x2d,0x0,0x31, + // GMT-2 + 0x0,0x5, + 0x0,0x4c,0x27,0x2, + 0x0,0x47, + 0x0,0x4d,0x0,0x54,0x0,0x2d,0x0,0x32, + // GMT-3 + 0x0,0x5, + 0x0,0x4c,0x27,0x3, + 0x0,0x47, + 0x0,0x4d,0x0,0x54,0x0,0x2d,0x0,0x33, + // GMT-4 + 0x0,0x5, + 0x0,0x4c,0x27,0x4, + 0x0,0x47, + 0x0,0x4d,0x0,0x54,0x0,0x2d,0x0,0x34, + // GMT-5 + 0x0,0x5, + 0x0,0x4c,0x27,0x5, + 0x0,0x47, + 0x0,0x4d,0x0,0x54,0x0,0x2d,0x0,0x35, + // GMT-6 + 0x0,0x5, + 0x0,0x4c,0x27,0x6, + 0x0,0x47, + 0x0,0x4d,0x0,0x54,0x0,0x2d,0x0,0x36, + // GMT-10 + 0x0,0x6, + 0x4,0xc2,0x70,0x40, + 0x0,0x47, + 0x0,0x4d,0x0,0x54,0x0,0x2d,0x0,0x31,0x0,0x30, + // GMT-7 + 0x0,0x5, + 0x0,0x4c,0x27,0x7, + 0x0,0x47, + 0x0,0x4d,0x0,0x54,0x0,0x2d,0x0,0x37, + // GMT-11 + 0x0,0x6, + 0x4,0xc2,0x70,0x41, + 0x0,0x47, + 0x0,0x4d,0x0,0x54,0x0,0x2d,0x0,0x31,0x0,0x31, + // GMT-8 + 0x0,0x5, + 0x0,0x4c,0x27,0x8, + 0x0,0x47, + 0x0,0x4d,0x0,0x54,0x0,0x2d,0x0,0x38, + // GMT+10 + 0x0,0x6, + 0x4,0xc2,0x6e,0x40, + 0x0,0x47, + 0x0,0x4d,0x0,0x54,0x0,0x2b,0x0,0x31,0x0,0x30, + // GMT-12 + 0x0,0x6, + 0x4,0xc2,0x70,0x42, + 0x0,0x47, + 0x0,0x4d,0x0,0x54,0x0,0x2d,0x0,0x31,0x0,0x32, + // GMT-9 + 0x0,0x5, + 0x0,0x4c,0x27,0x9, + 0x0,0x47, + 0x0,0x4d,0x0,0x54,0x0,0x2d,0x0,0x39, + // GMT+11 + 0x0,0x6, + 0x4,0xc2,0x6e,0x41, + 0x0,0x47, + 0x0,0x4d,0x0,0x54,0x0,0x2b,0x0,0x31,0x0,0x31, + // GMT-13 + 0x0,0x6, + 0x4,0xc2,0x70,0x43, + 0x0,0x47, + 0x0,0x4d,0x0,0x54,0x0,0x2d,0x0,0x31,0x0,0x33, + // GMT+12 + 0x0,0x6, + 0x4,0xc2,0x6e,0x42, + 0x0,0x47, + 0x0,0x4d,0x0,0x54,0x0,0x2b,0x0,0x31,0x0,0x32, + // GMT-14 + 0x0,0x6, + 0x4,0xc2,0x70,0x44, + 0x0,0x47, + 0x0,0x4d,0x0,0x54,0x0,0x2d,0x0,0x31,0x0,0x34, + // GMT+1 + 0x0,0x5, + 0x0,0x4c,0x26,0xe1, + 0x0,0x47, + 0x0,0x4d,0x0,0x54,0x0,0x2b,0x0,0x31, + // GMT+2 + 0x0,0x5, + 0x0,0x4c,0x26,0xe2, + 0x0,0x47, + 0x0,0x4d,0x0,0x54,0x0,0x2b,0x0,0x32, + // GMT+3 + 0x0,0x5, + 0x0,0x4c,0x26,0xe3, + 0x0,0x47, + 0x0,0x4d,0x0,0x54,0x0,0x2b,0x0,0x33, + // GMT+4 + 0x0,0x5, + 0x0,0x4c,0x26,0xe4, + 0x0,0x47, + 0x0,0x4d,0x0,0x54,0x0,0x2b,0x0,0x34, + // GMT+5 + 0x0,0x5, + 0x0,0x4c,0x26,0xe5, + 0x0,0x47, + 0x0,0x4d,0x0,0x54,0x0,0x2b,0x0,0x35, + // GMT+6 + 0x0,0x5, + 0x0,0x4c,0x26,0xe6, + 0x0,0x47, + 0x0,0x4d,0x0,0x54,0x0,0x2b,0x0,0x36, + // GMT+7 + 0x0,0x5, + 0x0,0x4c,0x26,0xe7, + 0x0,0x47, + 0x0,0x4d,0x0,0x54,0x0,0x2b,0x0,0x37, + // GMT+8 + 0x0,0x5, + 0x0,0x4c,0x26,0xe8, + 0x0,0x47, + 0x0,0x4d,0x0,0x54,0x0,0x2b,0x0,0x38, + // GMT+9 + 0x0,0x5, + 0x0,0x4c,0x26,0xe9, + 0x0,0x47, + 0x0,0x4d,0x0,0x54,0x0,0x2b,0x0,0x39, // General 0x0,0x7, 0xd,0xc4,0xc8,0xfc, @@ -50268,147 +52016,116 @@ static const unsigned char qt_resource_name[] = { 0x8,0x80,0x6a,0x42, 0x0,0x42, 0x0,0x61,0x0,0x6a,0x0,0x61,0x0,0x53,0x0,0x75,0x0,0x72, - // Stanley - 0x0,0x7, - 0xa,0xa8,0x52,0x69, - 0x0,0x53, - 0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x6c,0x0,0x65,0x0,0x79, - // Canary - 0x0,0x6, - 0x4,0x98,0x48,0x99, - 0x0,0x43, - 0x0,0x61,0x0,0x6e,0x0,0x61,0x0,0x72,0x0,0x79, - // Azores - 0x0,0x6, - 0x4,0x91,0x68,0xc3, - 0x0,0x41, - 0x0,0x7a,0x0,0x6f,0x0,0x72,0x0,0x65,0x0,0x73, - // Faroe + // North 0x0,0x5, - 0x0,0x4c,0x89,0x55, - 0x0,0x46, - 0x0,0x61,0x0,0x72,0x0,0x6f,0x0,0x65, - // Jan_Mayen - 0x0,0x9, - 0x4,0x43,0x2e,0xbe, - 0x0,0x4a, - 0x0,0x61,0x0,0x6e,0x0,0x5f,0x0,0x4d,0x0,0x61,0x0,0x79,0x0,0x65,0x0,0x6e, - // Cape_Verde - 0x0,0xa, - 0xb,0x45,0xf8,0x65, - 0x0,0x43, - 0x0,0x61,0x0,0x70,0x0,0x65,0x0,0x5f,0x0,0x56,0x0,0x65,0x0,0x72,0x0,0x64,0x0,0x65, - // South_Georgia - 0x0,0xd, - 0x9,0x9f,0xd0,0xf1, + 0x0,0x55,0x69,0xa8, + 0x0,0x4e, + 0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x68, + // South + 0x0,0x5, + 0x0,0x5a,0x6c,0xa8, 0x0,0x53, - 0x0,0x6f,0x0,0x75,0x0,0x74,0x0,0x68,0x0,0x5f,0x0,0x47,0x0,0x65,0x0,0x6f,0x0,0x72,0x0,0x67,0x0,0x69,0x0,0x61, - // Madeira - 0x0,0x7, - 0x3,0x7a,0xc0,0x21, - 0x0,0x4d, - 0x0,0x61,0x0,0x64,0x0,0x65,0x0,0x69,0x0,0x72,0x0,0x61, - // Bermuda - 0x0,0x7, - 0x8,0xc9,0x4b,0x21, + 0x0,0x6f,0x0,0x75,0x0,0x74,0x0,0x68, + // Tasmania + 0x0,0x8, + 0x8,0xa3,0x8f,0xb1, + 0x0,0x54, + 0x0,0x61,0x0,0x73,0x0,0x6d,0x0,0x61,0x0,0x6e,0x0,0x69,0x0,0x61, + // Adelaide + 0x0,0x8, + 0xa,0xc2,0x77,0x45, + 0x0,0x41, + 0x0,0x64,0x0,0x65,0x0,0x6c,0x0,0x61,0x0,0x69,0x0,0x64,0x0,0x65, + // Broken_Hill + 0x0,0xb, + 0xc,0xd0,0xc4,0xc, 0x0,0x42, - 0x0,0x65,0x0,0x72,0x0,0x6d,0x0,0x75,0x0,0x64,0x0,0x61, - // St_Helena - 0x0,0x9, - 0x3,0xec,0xa1,0x1, - 0x0,0x53, - 0x0,0x74,0x0,0x5f,0x0,0x48,0x0,0x65,0x0,0x6c,0x0,0x65,0x0,0x6e,0x0,0x61, - // Faeroe - 0x0,0x6, - 0x4,0xc7,0xc9,0x55, - 0x0,0x46, - 0x0,0x61,0x0,0x65,0x0,0x72,0x0,0x6f,0x0,0x65, - // Reykjavik + 0x0,0x72,0x0,0x6f,0x0,0x6b,0x0,0x65,0x0,0x6e,0x0,0x5f,0x0,0x48,0x0,0x69,0x0,0x6c,0x0,0x6c, + // Yancowinna + 0x0,0xa, + 0xa,0x66,0x35,0xc1, + 0x0,0x59, + 0x0,0x61,0x0,0x6e,0x0,0x63,0x0,0x6f,0x0,0x77,0x0,0x69,0x0,0x6e,0x0,0x6e,0x0,0x61, + // Lord_Howe 0x0,0x9, - 0x0,0x20,0x3d,0x5b, - 0x0,0x52, - 0x0,0x65,0x0,0x79,0x0,0x6b,0x0,0x6a,0x0,0x61,0x0,0x76,0x0,0x69,0x0,0x6b, - // Hawaii + 0x8,0xa3,0x50,0x15, + 0x0,0x4c, + 0x0,0x6f,0x0,0x72,0x0,0x64,0x0,0x5f,0x0,0x48,0x0,0x6f,0x0,0x77,0x0,0x65, + // Hobart 0x0,0x6, - 0x4,0xe8,0xd7,0xf9, + 0x4,0xf5,0x88,0x94, 0x0,0x48, - 0x0,0x61,0x0,0x77,0x0,0x61,0x0,0x69,0x0,0x69, - // Central - 0x0,0x7, - 0x9,0xc5,0xb8,0xfc, - 0x0,0x43, - 0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x6c, - // Eastern - 0x0,0x7, - 0xb,0x8a,0xac,0xe, + 0x0,0x6f,0x0,0x62,0x0,0x61,0x0,0x72,0x0,0x74, + // LHI + 0x0,0x3, + 0x0,0x0,0x50,0xc9, + 0x0,0x4c, + 0x0,0x48,0x0,0x49, + // Eucla + 0x0,0x5, + 0x0,0x4c,0xba,0x21, 0x0,0x45, - 0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x6e, - // Michigan + 0x0,0x75,0x0,0x63,0x0,0x6c,0x0,0x61, + // Brisbane 0x0,0x8, - 0xf,0x9e,0xf7,0x1e, - 0x0,0x4d, - 0x0,0x69,0x0,0x63,0x0,0x68,0x0,0x69,0x0,0x67,0x0,0x61,0x0,0x6e, - // Alaska + 0x9,0x9,0x91,0x65, + 0x0,0x42, + 0x0,0x72,0x0,0x69,0x0,0x73,0x0,0x62,0x0,0x61,0x0,0x6e,0x0,0x65, + // Victoria + 0x0,0x8, + 0xf,0xab,0x63,0x71, + 0x0,0x56, + 0x0,0x69,0x0,0x63,0x0,0x74,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x61, + // Currie 0x0,0x6, - 0x4,0x82,0x8a,0x11, - 0x0,0x41, - 0x0,0x6c,0x0,0x61,0x0,0x73,0x0,0x6b,0x0,0x61, - // Samoa + 0x4,0xac,0x98,0xf5, + 0x0,0x43, + 0x0,0x75,0x0,0x72,0x0,0x72,0x0,0x69,0x0,0x65, + // Perth 0x0,0x5, - 0x0,0x59,0x84,0x51, - 0x0,0x53, - 0x0,0x61,0x0,0x6d,0x0,0x6f,0x0,0x61, - // Indiana-Starke - 0x0,0xe, - 0xb,0xf5,0x95,0x95, - 0x0,0x49, - 0x0,0x6e,0x0,0x64,0x0,0x69,0x0,0x61,0x0,0x6e,0x0,0x61,0x0,0x2d,0x0,0x53,0x0,0x74,0x0,0x61,0x0,0x72,0x0,0x6b,0x0,0x65, - // Pacific-New - 0x0,0xb, - 0xc,0x5b,0x17,0x27, + 0x0,0x56,0xc9,0xa8, 0x0,0x50, - 0x0,0x61,0x0,0x63,0x0,0x69,0x0,0x66,0x0,0x69,0x0,0x63,0x0,0x2d,0x0,0x4e,0x0,0x65,0x0,0x77, - // Mountain + 0x0,0x65,0x0,0x72,0x0,0x74,0x0,0x68, + // Canberra 0x0,0x8, - 0x6,0xc5,0xad,0x7e, - 0x0,0x4d, - 0x0,0x6f,0x0,0x75,0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x69,0x0,0x6e, - // Arizona - 0x0,0x7, - 0x8,0x91,0x16,0xc1, + 0x8,0x48,0xc0,0xa1, + 0x0,0x43, + 0x0,0x61,0x0,0x6e,0x0,0x62,0x0,0x65,0x0,0x72,0x0,0x72,0x0,0x61, + // ACT + 0x0,0x3, + 0x0,0x0,0x45,0x84, 0x0,0x41, - 0x0,0x72,0x0,0x69,0x0,0x7a,0x0,0x6f,0x0,0x6e,0x0,0x61, - // East-Indiana - 0x0,0xc, - 0x9,0x3b,0xba,0x61, - 0x0,0x45, - 0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x2d,0x0,0x49,0x0,0x6e,0x0,0x64,0x0,0x69,0x0,0x61,0x0,0x6e,0x0,0x61, - // Aleutian + 0x0,0x43,0x0,0x54, + // Lindeman 0x0,0x8, - 0x2,0xcc,0xa6,0x7e, - 0x0,0x41, - 0x0,0x6c,0x0,0x65,0x0,0x75,0x0,0x74,0x0,0x69,0x0,0x61,0x0,0x6e, - // Newfoundland - 0x0,0xc, - 0x2,0xd2,0x9e,0x84, + 0x0,0x4a,0xc9,0x1e, + 0x0,0x4c, + 0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x65,0x0,0x6d,0x0,0x61,0x0,0x6e, + // NSW + 0x0,0x3, + 0x0,0x0,0x53,0x87, 0x0,0x4e, - 0x0,0x65,0x0,0x77,0x0,0x66,0x0,0x6f,0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x6c,0x0,0x61,0x0,0x6e,0x0,0x64, - // Saskatchewan - 0x0,0xc, - 0x1,0xaf,0x8e,0x7e, + 0x0,0x53,0x0,0x57, + // Darwin + 0x0,0x6, + 0x4,0xa8,0x9d,0xfe, + 0x0,0x44, + 0x0,0x61,0x0,0x72,0x0,0x77,0x0,0x69,0x0,0x6e, + // Queensland + 0x0,0xa, + 0xc,0x55,0x33,0x24, + 0x0,0x51, + 0x0,0x75,0x0,0x65,0x0,0x65,0x0,0x6e,0x0,0x73,0x0,0x6c,0x0,0x61,0x0,0x6e,0x0,0x64, + // Sydney + 0x0,0x6, + 0x5,0xaf,0xb4,0xc9, 0x0,0x53, - 0x0,0x61,0x0,0x73,0x0,0x6b,0x0,0x61,0x0,0x74,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x77,0x0,0x61,0x0,0x6e, - // Yukon - 0x0,0x5, - 0x0,0x60,0xc2,0x5e, - 0x0,0x59, - 0x0,0x75,0x0,0x6b,0x0,0x6f,0x0,0x6e, - // East-Saskatchewan - 0x0,0x11, - 0xe,0x81,0xa7,0xbe, - 0x0,0x45, - 0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x2d,0x0,0x53,0x0,0x61,0x0,0x73,0x0,0x6b,0x0,0x61,0x0,0x74,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x77,0x0,0x61,0x0,0x6e, - + 0x0,0x79,0x0,0x64,0x0,0x6e,0x0,0x65,0x0,0x79, + // Melbourne + 0x0,0x9, + 0x2,0x96,0x6e,0xc5, + 0x0,0x4d, + 0x0,0x65,0x0,0x6c,0x0,0x62,0x0,0x6f,0x0,0x75,0x0,0x72,0x0,0x6e,0x0,0x65, // Majuro 0x0,0x6, 0x5,0x38,0x1c,0x8f, @@ -50614,286 +52331,341 @@ static const unsigned char qt_resource_name[] = { 0x2,0x86,0xe9,0x63, 0x0,0x47, 0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x70,0x0,0x61,0x0,0x67,0x0,0x6f,0x0,0x73, - // Lubumbashi - 0x0,0xa, - 0xc,0x32,0xfe,0xc9, - 0x0,0x4c, - 0x0,0x75,0x0,0x62,0x0,0x75,0x0,0x6d,0x0,0x62,0x0,0x61,0x0,0x73,0x0,0x68,0x0,0x69, - // Porto-Novo - 0x0,0xa, - 0xb,0x2c,0xbb,0xef, - 0x0,0x50, - 0x0,0x6f,0x0,0x72,0x0,0x74,0x0,0x6f,0x0,0x2d,0x0,0x4e,0x0,0x6f,0x0,0x76,0x0,0x6f, - // Kigali - 0x0,0x6, - 0x5,0x1f,0xd8,0x29, - 0x0,0x4b, - 0x0,0x69,0x0,0x67,0x0,0x61,0x0,0x6c,0x0,0x69, - // Malabo - 0x0,0x6, - 0x5,0x38,0x27,0x8f, + // Nicosia + 0x0,0x7, + 0x4,0xfa,0x69,0x51, + 0x0,0x4e, + 0x0,0x69,0x0,0x63,0x0,0x6f,0x0,0x73,0x0,0x69,0x0,0x61, + // Mariehamn + 0x0,0x9, + 0x8,0xfb,0x43,0x3e, 0x0,0x4d, - 0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x62,0x0,0x6f, - // Ceuta - 0x0,0x5, - 0x0,0x49,0xcc,0xa1, - 0x0,0x43, - 0x0,0x65,0x0,0x75,0x0,0x74,0x0,0x61, - // Windhoek - 0x0,0x8, - 0x0,0x4a,0xfe,0x7b, - 0x0,0x57, - 0x0,0x69,0x0,0x6e,0x0,0x64,0x0,0x68,0x0,0x6f,0x0,0x65,0x0,0x6b, - // Khartoum - 0x0,0x8, - 0xe,0x89,0xbc,0x9d, + 0x0,0x61,0x0,0x72,0x0,0x69,0x0,0x65,0x0,0x68,0x0,0x61,0x0,0x6d,0x0,0x6e, + // Kaliningrad + 0x0,0xb, + 0x4,0x67,0xee,0x74, 0x0,0x4b, - 0x0,0x68,0x0,0x61,0x0,0x72,0x0,0x74,0x0,0x6f,0x0,0x75,0x0,0x6d, - // Mbabane + 0x0,0x61,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x64, + // Bratislava + 0x0,0xa, + 0xb,0x3,0x19,0xc1, + 0x0,0x42, + 0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x73,0x0,0x6c,0x0,0x61,0x0,0x76,0x0,0x61, + // Busingen + 0x0,0x8, + 0xc,0xa0,0x44,0x9e, + 0x0,0x42, + 0x0,0x75,0x0,0x73,0x0,0x69,0x0,0x6e,0x0,0x67,0x0,0x65,0x0,0x6e, + // Vatican 0x0,0x7, - 0x3,0x87,0x88,0xe5, - 0x0,0x4d, - 0x0,0x62,0x0,0x61,0x0,0x62,0x0,0x61,0x0,0x6e,0x0,0x65, - // Casablanca + 0xc,0x8a,0xf9,0xde, + 0x0,0x56, + 0x0,0x61,0x0,0x74,0x0,0x69,0x0,0x63,0x0,0x61,0x0,0x6e, + // Bucharest + 0x0,0x9, + 0x9,0xe8,0x1f,0xc4, + 0x0,0x42, + 0x0,0x75,0x0,0x63,0x0,0x68,0x0,0x61,0x0,0x72,0x0,0x65,0x0,0x73,0x0,0x74, + // San_Marino 0x0,0xa, - 0x7,0x9b,0x75,0xb1, + 0x4,0x33,0xc0,0xcf, + 0x0,0x53, + 0x0,0x61,0x0,0x6e,0x0,0x5f,0x0,0x4d,0x0,0x61,0x0,0x72,0x0,0x69,0x0,0x6e,0x0,0x6f, + // Copenhagen + 0x0,0xa, + 0xc,0x47,0x31,0x7e, 0x0,0x43, - 0x0,0x61,0x0,0x73,0x0,0x61,0x0,0x62,0x0,0x6c,0x0,0x61,0x0,0x6e,0x0,0x63,0x0,0x61, - // Bissau + 0x0,0x6f,0x0,0x70,0x0,0x65,0x0,0x6e,0x0,0x68,0x0,0x61,0x0,0x67,0x0,0x65,0x0,0x6e, + // Berlin 0x0,0x6, - 0x4,0x90,0xa9,0x85, + 0x4,0x8c,0x92,0xfe, 0x0,0x42, - 0x0,0x69,0x0,0x73,0x0,0x73,0x0,0x61,0x0,0x75, - // Johannesburg - 0x0,0xc, - 0xe,0xe2,0x4c,0x27, - 0x0,0x4a, - 0x0,0x6f,0x0,0x68,0x0,0x61,0x0,0x6e,0x0,0x6e,0x0,0x65,0x0,0x73,0x0,0x62,0x0,0x75,0x0,0x72,0x0,0x67, - // Ndjamena - 0x0,0x8, - 0xb,0x8,0x32,0xc1, - 0x0,0x4e, - 0x0,0x64,0x0,0x6a,0x0,0x61,0x0,0x6d,0x0,0x65,0x0,0x6e,0x0,0x61, - // Asmera + 0x0,0x65,0x0,0x72,0x0,0x6c,0x0,0x69,0x0,0x6e, + // London 0x0,0x6, - 0x4,0x8a,0x3c,0x81, - 0x0,0x41, - 0x0,0x73,0x0,0x6d,0x0,0x65,0x0,0x72,0x0,0x61, - // Mogadishu + 0x5,0x36,0x4b,0x5e, + 0x0,0x4c, + 0x0,0x6f,0x0,0x6e,0x0,0x64,0x0,0x6f,0x0,0x6e, + // Stockholm 0x0,0x9, - 0xd,0x7b,0xa1,0x55, - 0x0,0x4d, - 0x0,0x6f,0x0,0x67,0x0,0x61,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x68,0x0,0x75, - // Luanda + 0x5,0xa1,0x43,0x4d, + 0x0,0x53, + 0x0,0x74,0x0,0x6f,0x0,0x63,0x0,0x6b,0x0,0x68,0x0,0x6f,0x0,0x6c,0x0,0x6d, + // Astrakhan + 0x0,0x9, + 0xb,0x88,0x8f,0x3e, + 0x0,0x41, + 0x0,0x73,0x0,0x74,0x0,0x72,0x0,0x61,0x0,0x6b,0x0,0x68,0x0,0x61,0x0,0x6e, + // Prague 0x0,0x6, - 0x5,0x3b,0x84,0xa1, - 0x0,0x4c, - 0x0,0x75,0x0,0x61,0x0,0x6e,0x0,0x64,0x0,0x61, - // Blantyre - 0x0,0x8, - 0x2,0x85,0xc9,0xa5, - 0x0,0x42, - 0x0,0x6c,0x0,0x61,0x0,0x6e,0x0,0x74,0x0,0x79,0x0,0x72,0x0,0x65, - // Tunis - 0x0,0x5, - 0x0,0x5b,0xc5,0x3, - 0x0,0x54, - 0x0,0x75,0x0,0x6e,0x0,0x69,0x0,0x73, - // Harare + 0x5,0x78,0x7e,0xb5, + 0x0,0x50, + 0x0,0x72,0x0,0x61,0x0,0x67,0x0,0x75,0x0,0x65, + // Skopje 0x0,0x6, - 0x4,0xe8,0x88,0x85, - 0x0,0x48, - 0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x72,0x0,0x65, - // Bujumbura - 0x0,0x9, - 0x1,0xc3,0xf,0x1, - 0x0,0x42, - 0x0,0x75,0x0,0x6a,0x0,0x75,0x0,0x6d,0x0,0x62,0x0,0x75,0x0,0x72,0x0,0x61, - // Dar_es_Salaam - 0x0,0xd, - 0x1,0x88,0x9f,0x7d, - 0x0,0x44, - 0x0,0x61,0x0,0x72,0x0,0x5f,0x0,0x65,0x0,0x73,0x0,0x5f,0x0,0x53,0x0,0x61,0x0,0x6c,0x0,0x61,0x0,0x61,0x0,0x6d, - // Juba - 0x0,0x4, - 0x0,0x5,0x1b,0x81, - 0x0,0x4a, - 0x0,0x75,0x0,0x62,0x0,0x61, - // Maseru + 0x5,0xa2,0x67,0x5, + 0x0,0x53, + 0x0,0x6b,0x0,0x6f,0x0,0x70,0x0,0x6a,0x0,0x65, + // Saratov + 0x0,0x7, + 0x9,0x88,0x8b,0xc6, + 0x0,0x53, + 0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x74,0x0,0x6f,0x0,0x76, + // Lisbon 0x0,0x6, - 0x5,0x38,0x9c,0x95, - 0x0,0x4d, - 0x0,0x61,0x0,0x73,0x0,0x65,0x0,0x72,0x0,0x75, - // Dakar + 0x5,0x30,0x99,0x5e, + 0x0,0x4c, + 0x0,0x69,0x0,0x73,0x0,0x62,0x0,0x6f,0x0,0x6e, + // Paris 0x0,0x5, - 0x0,0x4a,0x81,0x82, - 0x0,0x44, - 0x0,0x61,0x0,0x6b,0x0,0x61,0x0,0x72, - // Timbuktu + 0x0,0x56,0x89,0x3, + 0x0,0x50, + 0x0,0x61,0x0,0x72,0x0,0x69,0x0,0x73, + // Tiraspol 0x0,0x8, - 0x0,0x39,0xc9,0xd5, + 0x0,0x88,0xac,0x3c, 0x0,0x54, - 0x0,0x69,0x0,0x6d,0x0,0x62,0x0,0x75,0x0,0x6b,0x0,0x74,0x0,0x75, - // Addis_Ababa - 0x0,0xb, - 0x9,0xb8,0xd1,0x81, + 0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x73,0x0,0x70,0x0,0x6f,0x0,0x6c, + // Monaco + 0x0,0x6, + 0x5,0x46,0x47,0x9f, + 0x0,0x4d, + 0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x63,0x0,0x6f, + // Athens + 0x0,0x6, + 0x4,0x8a,0xec,0x53, 0x0,0x41, - 0x0,0x64,0x0,0x64,0x0,0x69,0x0,0x73,0x0,0x5f,0x0,0x41,0x0,0x62,0x0,0x61,0x0,0x62,0x0,0x61, - // Bamako + 0x0,0x74,0x0,0x68,0x0,0x65,0x0,0x6e,0x0,0x73, + // Warsaw 0x0,0x6, - 0x4,0x88,0x38,0x1f, - 0x0,0x42, - 0x0,0x61,0x0,0x6d,0x0,0x61,0x0,0x6b,0x0,0x6f, - // Libreville + 0x5,0xd8,0x99,0x87, + 0x0,0x57, + 0x0,0x61,0x0,0x72,0x0,0x73,0x0,0x61,0x0,0x77, + // Malta + 0x0,0x5, + 0x0,0x53,0x83,0xa1, + 0x0,0x4d, + 0x0,0x61,0x0,0x6c,0x0,0x74,0x0,0x61, + // Ulyanovsk + 0x0,0x9, + 0xf,0x85,0xd5,0xfb, + 0x0,0x55, + 0x0,0x6c,0x0,0x79,0x0,0x61,0x0,0x6e,0x0,0x6f,0x0,0x76,0x0,0x73,0x0,0x6b, + // Vienna + 0x0,0x6, + 0x5,0xcf,0xc5,0x41, + 0x0,0x56, + 0x0,0x69,0x0,0x65,0x0,0x6e,0x0,0x6e,0x0,0x61, + // Gibraltar + 0x0,0x9, + 0x9,0x88,0xa1,0x62, + 0x0,0x47, + 0x0,0x69,0x0,0x62,0x0,0x72,0x0,0x61,0x0,0x6c,0x0,0x74,0x0,0x61,0x0,0x72, + // Samara + 0x0,0x6, + 0x5,0x98,0x38,0x81, + 0x0,0x53, + 0x0,0x61,0x0,0x6d,0x0,0x61,0x0,0x72,0x0,0x61, + // Istanbul + 0x0,0x8, + 0xa,0xa8,0x43,0xbc, + 0x0,0x49, + 0x0,0x73,0x0,0x74,0x0,0x61,0x0,0x6e,0x0,0x62,0x0,0x75,0x0,0x6c, + // Guernsey + 0x0,0x8, + 0xb,0xc9,0x50,0x9, + 0x0,0x47, + 0x0,0x75,0x0,0x65,0x0,0x72,0x0,0x6e,0x0,0x73,0x0,0x65,0x0,0x79, + // Volgograd + 0x0,0x9, + 0x2,0xe5,0x52,0xb4, + 0x0,0x56, + 0x0,0x6f,0x0,0x6c,0x0,0x67,0x0,0x6f,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x64, + // Zaporozhye 0x0,0xa, - 0x8,0xc6,0xdc,0x5, + 0x6,0x9b,0x1f,0x15, + 0x0,0x5a, + 0x0,0x61,0x0,0x70,0x0,0x6f,0x0,0x72,0x0,0x6f,0x0,0x7a,0x0,0x68,0x0,0x79,0x0,0x65, + // Vaduz + 0x0,0x5, + 0x0,0x5c,0x7b,0xca, + 0x0,0x56, + 0x0,0x61,0x0,0x64,0x0,0x75,0x0,0x7a, + // Ljubljana + 0x0,0x9, + 0xb,0x93,0xa2,0x61, 0x0,0x4c, - 0x0,0x69,0x0,0x62,0x0,0x72,0x0,0x65,0x0,0x76,0x0,0x69,0x0,0x6c,0x0,0x6c,0x0,0x65, - // Djibouti + 0x0,0x6a,0x0,0x75,0x0,0x62,0x0,0x6c,0x0,0x6a,0x0,0x61,0x0,0x6e,0x0,0x61, + // Brussels 0x0,0x8, - 0x0,0xf9,0x65,0xc9, - 0x0,0x44, - 0x0,0x6a,0x0,0x69,0x0,0x62,0x0,0x6f,0x0,0x75,0x0,0x74,0x0,0x69, - // El_Aaiun + 0x9,0xca,0x95,0x13, + 0x0,0x42, + 0x0,0x72,0x0,0x75,0x0,0x73,0x0,0x73,0x0,0x65,0x0,0x6c,0x0,0x73, + // Sofia + 0x0,0x5, + 0x0,0x5a,0x5c,0xf1, + 0x0,0x53, + 0x0,0x6f,0x0,0x66,0x0,0x69,0x0,0x61, + // Vilnius + 0x0,0x7, + 0xd,0x3,0x50,0x63, + 0x0,0x56, + 0x0,0x69,0x0,0x6c,0x0,0x6e,0x0,0x69,0x0,0x75,0x0,0x73, + // Isle_of_Man + 0x0,0xb, + 0x6,0xfd,0x86,0x1e, + 0x0,0x49, + 0x0,0x73,0x0,0x6c,0x0,0x65,0x0,0x5f,0x0,0x6f,0x0,0x66,0x0,0x5f,0x0,0x4d,0x0,0x61,0x0,0x6e, + // Chisinau 0x0,0x8, - 0x2,0x37,0x89,0x3e, - 0x0,0x45, - 0x0,0x6c,0x0,0x5f,0x0,0x41,0x0,0x61,0x0,0x69,0x0,0x75,0x0,0x6e, - // Niamey + 0xf,0xa,0xd,0xa5, + 0x0,0x43, + 0x0,0x68,0x0,0x69,0x0,0x73,0x0,0x69,0x0,0x6e,0x0,0x61,0x0,0x75, + // Budapest + 0x0,0x8, + 0xb,0xa8,0x65,0x84, + 0x0,0x42, + 0x0,0x75,0x0,0x64,0x0,0x61,0x0,0x70,0x0,0x65,0x0,0x73,0x0,0x74, + // Kiev + 0x0,0x4, + 0x0,0x5,0x1f,0xc6, + 0x0,0x4b, + 0x0,0x69,0x0,0x65,0x0,0x76, + // Rome + 0x0,0x4, + 0x0,0x5,0x96,0x35, + 0x0,0x52, + 0x0,0x6f,0x0,0x6d,0x0,0x65, + // Dublin 0x0,0x6, - 0x5,0x4f,0x83,0xc9, - 0x0,0x4e, - 0x0,0x69,0x0,0x61,0x0,0x6d,0x0,0x65,0x0,0x79, - // Tripoli + 0x4,0xbb,0x92,0xfe, + 0x0,0x44, + 0x0,0x75,0x0,0x62,0x0,0x6c,0x0,0x69,0x0,0x6e, + // Tallinn 0x0,0x7, - 0xb,0x90,0x76,0x89, + 0xa,0x83,0x30,0xee, 0x0,0x54, - 0x0,0x72,0x0,0x69,0x0,0x70,0x0,0x6f,0x0,0x6c,0x0,0x69, - // Abidjan + 0x0,0x61,0x0,0x6c,0x0,0x6c,0x0,0x69,0x0,0x6e,0x0,0x6e, + // Sarajevo + 0x0,0x8, + 0x8,0x88,0x7,0xef, + 0x0,0x53, + 0x0,0x61,0x0,0x72,0x0,0x61,0x0,0x6a,0x0,0x65,0x0,0x76,0x0,0x6f, + // Andorra 0x0,0x7, - 0x7,0x8f,0xb0,0xfe, + 0x8,0x4b,0x69,0x1, 0x0,0x41, - 0x0,0x62,0x0,0x69,0x0,0x64,0x0,0x6a,0x0,0x61,0x0,0x6e, - // Conakry + 0x0,0x6e,0x0,0x64,0x0,0x6f,0x0,0x72,0x0,0x72,0x0,0x61, + // Riga + 0x0,0x4, + 0x0,0x5,0x8f,0xd1, + 0x0,0x52, + 0x0,0x69,0x0,0x67,0x0,0x61, + // Belgrade + 0x0,0x8, + 0xc,0x2e,0x8e,0xa5, + 0x0,0x42, + 0x0,0x65,0x0,0x6c,0x0,0x67,0x0,0x72,0x0,0x61,0x0,0x64,0x0,0x65, + // Kirov + 0x0,0x5, + 0x0,0x52,0x9,0x66, + 0x0,0x4b, + 0x0,0x69,0x0,0x72,0x0,0x6f,0x0,0x76, + // Oslo + 0x0,0x4, + 0x0,0x5,0x6a,0x2f, + 0x0,0x4f, + 0x0,0x73,0x0,0x6c,0x0,0x6f, + // Belfast 0x0,0x7, - 0xa,0x64,0x82,0x19, - 0x0,0x43, - 0x0,0x6f,0x0,0x6e,0x0,0x61,0x0,0x6b,0x0,0x72,0x0,0x79, - // Gaborone + 0x8,0xc2,0xc8,0x24, + 0x0,0x42, + 0x0,0x65,0x0,0x6c,0x0,0x66,0x0,0x61,0x0,0x73,0x0,0x74, + // Zagreb + 0x0,0x6, + 0x6,0x7,0xe8,0xb2, + 0x0,0x5a, + 0x0,0x61,0x0,0x67,0x0,0x72,0x0,0x65,0x0,0x62, + // Podgorica + 0x0,0x9, + 0xa,0xe6,0x21,0x31, + 0x0,0x50, + 0x0,0x6f,0x0,0x64,0x0,0x67,0x0,0x6f,0x0,0x72,0x0,0x69,0x0,0x63,0x0,0x61, + // Tirane + 0x0,0x6, + 0x5,0xb0,0x88,0x45, + 0x0,0x54, + 0x0,0x69,0x0,0x72,0x0,0x61,0x0,0x6e,0x0,0x65, + // Helsinki 0x0,0x8, - 0x7,0x96,0x9f,0xe5, - 0x0,0x47, - 0x0,0x61,0x0,0x62,0x0,0x6f,0x0,0x72,0x0,0x6f,0x0,0x6e,0x0,0x65, - // Sao_Tome + 0xc,0x3a,0xc,0xd9, + 0x0,0x48, + 0x0,0x65,0x0,0x6c,0x0,0x73,0x0,0x69,0x0,0x6e,0x0,0x6b,0x0,0x69, + // Uzhgorod 0x0,0x8, - 0x8,0x54,0xc1,0x15, - 0x0,0x53, - 0x0,0x61,0x0,0x6f,0x0,0x5f,0x0,0x54,0x0,0x6f,0x0,0x6d,0x0,0x65, - // Lusaka + 0x0,0xee,0x62,0xf4, + 0x0,0x55, + 0x0,0x7a,0x0,0x68,0x0,0x67,0x0,0x6f,0x0,0x72,0x0,0x6f,0x0,0x64, + // Zurich 0x0,0x6, - 0x5,0x3c,0x98,0x11, - 0x0,0x4c, - 0x0,0x75,0x0,0x73,0x0,0x61,0x0,0x6b,0x0,0x61, - // Freetown - 0x0,0x8, - 0x8,0xbc,0xbf,0x7e, - 0x0,0x46, - 0x0,0x72,0x0,0x65,0x0,0x65,0x0,0x74,0x0,0x6f,0x0,0x77,0x0,0x6e, - // Cairo - 0x0,0x5, - 0x0,0x49,0x80,0x8f, - 0x0,0x43, - 0x0,0x61,0x0,0x69,0x0,0x72,0x0,0x6f, - // Nairobi - 0x0,0x7, - 0x4,0x80,0x95,0x29, - 0x0,0x4e, - 0x0,0x61,0x0,0x69,0x0,0x72,0x0,0x6f,0x0,0x62,0x0,0x69, - // Lagos - 0x0,0x5, - 0x0,0x52,0x7e,0x63, - 0x0,0x4c, - 0x0,0x61,0x0,0x67,0x0,0x6f,0x0,0x73, - // Bangui + 0x6,0x1c,0x8f,0x98, + 0x0,0x5a, + 0x0,0x75,0x0,0x72,0x0,0x69,0x0,0x63,0x0,0x68, + // Madrid 0x0,0x6, - 0x4,0x88,0x4e,0xb9, - 0x0,0x42, - 0x0,0x61,0x0,0x6e,0x0,0x67,0x0,0x75,0x0,0x69, - // Nouakchott + 0x5,0x37,0xb8,0xf4, + 0x0,0x4d, + 0x0,0x61,0x0,0x64,0x0,0x72,0x0,0x69,0x0,0x64, + // Simferopol 0x0,0xa, - 0x8,0x13,0x5b,0xd4, - 0x0,0x4e, - 0x0,0x6f,0x0,0x75,0x0,0x61,0x0,0x6b,0x0,0x63,0x0,0x68,0x0,0x6f,0x0,0x74,0x0,0x74, - // Monrovia - 0x0,0x8, - 0x6,0x59,0x66,0x71, + 0xc,0xc2,0x27,0x3c, + 0x0,0x53, + 0x0,0x69,0x0,0x6d,0x0,0x66,0x0,0x65,0x0,0x72,0x0,0x6f,0x0,0x70,0x0,0x6f,0x0,0x6c, + // Minsk + 0x0,0x5, + 0x0,0x54,0x5,0x9b, 0x0,0x4d, - 0x0,0x6f,0x0,0x6e,0x0,0x72,0x0,0x6f,0x0,0x76,0x0,0x69,0x0,0x61, - // Lome - 0x0,0x4, - 0x0,0x5,0x36,0x35, + 0x0,0x69,0x0,0x6e,0x0,0x73,0x0,0x6b, + // Luxembourg + 0x0,0xa, + 0xc,0x33,0x15,0x47, 0x0,0x4c, - 0x0,0x6f,0x0,0x6d,0x0,0x65, - // Banjul - 0x0,0x6, - 0x4,0x88,0x51,0xbc, - 0x0,0x42, - 0x0,0x61,0x0,0x6e,0x0,0x6a,0x0,0x75,0x0,0x6c, - // Maputo + 0x0,0x75,0x0,0x78,0x0,0x65,0x0,0x6d,0x0,0x62,0x0,0x6f,0x0,0x75,0x0,0x72,0x0,0x67, + // Moscow 0x0,0x6, - 0x5,0x38,0x7c,0xaf, + 0x5,0x46,0x9a,0x67, 0x0,0x4d, - 0x0,0x61,0x0,0x70,0x0,0x75,0x0,0x74,0x0,0x6f, - // Algiers - 0x0,0x7, - 0x8,0x2d,0xfc,0x13, - 0x0,0x41, - 0x0,0x6c,0x0,0x67,0x0,0x69,0x0,0x65,0x0,0x72,0x0,0x73, - // Ouagadougou - 0x0,0xb, - 0x7,0x1b,0xd5,0xc5, - 0x0,0x4f, - 0x0,0x75,0x0,0x61,0x0,0x67,0x0,0x61,0x0,0x64,0x0,0x6f,0x0,0x75,0x0,0x67,0x0,0x6f,0x0,0x75, - // Asmara + 0x0,0x6f,0x0,0x73,0x0,0x63,0x0,0x6f,0x0,0x77, + // Jersey 0x0,0x6, - 0x4,0x8a,0x38,0x81, - 0x0,0x41, - 0x0,0x73,0x0,0x6d,0x0,0x61,0x0,0x72,0x0,0x61, - // Kinshasa - 0x0,0x8, - 0x0,0x59,0xe2,0xd1, - 0x0,0x4b, - 0x0,0x69,0x0,0x6e,0x0,0x73,0x0,0x68,0x0,0x61,0x0,0x73,0x0,0x61, - // Accra - 0x0,0x5, - 0x0,0x47,0x9a,0x81, + 0x5,0xc,0x99,0xc9, + 0x0,0x4a, + 0x0,0x65,0x0,0x72,0x0,0x73,0x0,0x65,0x0,0x79, + // Amsterdam + 0x0,0x9, + 0xa,0xac,0x1a,0xfd, 0x0,0x41, - 0x0,0x63,0x0,0x63,0x0,0x72,0x0,0x61, - // Kampala - 0x0,0x7, - 0x1,0x84,0x68,0x81, - 0x0,0x4b, - 0x0,0x61,0x0,0x6d,0x0,0x70,0x0,0x61,0x0,0x6c,0x0,0x61, - // Brazzaville - 0x0,0xb, - 0x0,0x20,0x11,0x65, - 0x0,0x42, - 0x0,0x72,0x0,0x61,0x0,0x7a,0x0,0x7a,0x0,0x61,0x0,0x76,0x0,0x69,0x0,0x6c,0x0,0x6c,0x0,0x65, - // Douala - 0x0,0x6, - 0x4,0xb6,0xb8,0x21, - 0x0,0x44, - 0x0,0x6f,0x0,0x75,0x0,0x61,0x0,0x6c,0x0,0x61, - // Continental - 0x0,0xb, - 0x0,0xe0,0x91,0x1c, - 0x0,0x43, - 0x0,0x6f,0x0,0x6e,0x0,0x74,0x0,0x69,0x0,0x6e,0x0,0x65,0x0,0x6e,0x0,0x74,0x0,0x61,0x0,0x6c, - // EasterIsland + 0x0,0x6d,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x64,0x0,0x61,0x0,0x6d, + // Longyearbyen 0x0,0xc, - 0xe,0x7b,0x75,0xc4, - 0x0,0x45, - 0x0,0x61,0x0,0x73,0x0,0x74,0x0,0x65,0x0,0x72,0x0,0x49,0x0,0x73,0x0,0x6c,0x0,0x61,0x0,0x6e,0x0,0x64, + 0x1,0xe4,0x2,0x5e, + 0x0,0x4c, + 0x0,0x6f,0x0,0x6e,0x0,0x67,0x0,0x79,0x0,0x65,0x0,0x61,0x0,0x72,0x0,0x62,0x0,0x79,0x0,0x65,0x0,0x6e, + // Newfoundland + 0x0,0xc, + 0x2,0xd2,0x9e,0x84, + 0x0,0x4e, + 0x0,0x65,0x0,0x77,0x0,0x66,0x0,0x6f,0x0,0x75,0x0,0x6e,0x0,0x64,0x0,0x6c,0x0,0x61,0x0,0x6e,0x0,0x64, + // Saskatchewan + 0x0,0xc, + 0x1,0xaf,0x8e,0x7e, + 0x0,0x53, + 0x0,0x61,0x0,0x73,0x0,0x6b,0x0,0x61,0x0,0x74,0x0,0x63,0x0,0x68,0x0,0x65,0x0,0x77,0x0,0x61,0x0,0x6e, + // Yukon + 0x0,0x5, + 0x0,0x60,0xc2,0x5e, + 0x0,0x59, + 0x0,0x75,0x0,0x6b,0x0,0x6f,0x0,0x6e, // Aqtau 0x0,0x5, 0x0,0x48,0x8a,0x85, @@ -51375,1246 +53147,1873 @@ static const unsigned char qt_resource_name[] = { static const unsigned char qt_resource_struct[] = { // : 0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // :/zoneinfo - 0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x43,0x0,0x0,0x0,0x2, + 0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x45,0x0,0x0,0x0,0x2, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // :/zoneinfo/GB - 0x0,0x0,0x3,0x66,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x3e,0xd3, + 0x0,0x0,0x1,0x8a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x5b,0xae, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc3, // :/zoneinfo/NZ - 0x0,0x0,0x1,0x9c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x60,0x8a, + 0x0,0x0,0x0,0xc2,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0xb,0x42, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc3, // :/zoneinfo/US - 0x0,0x0,0x2,0x5a,0x0,0x2,0x0,0x0,0x0,0xd,0x0,0x0,0x2,0x60, + 0x0,0x0,0x3,0x98,0x0,0x2,0x0,0x0,0x0,0xd,0x0,0x0,0x2,0x62, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // :/zoneinfo/CET - 0x0,0x0,0x0,0xd0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x3f,0x7f, + 0x0,0x0,0x2,0xba,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0xab,0x55, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc7, // :/zoneinfo/EET - 0x0,0x0,0x3,0x86,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x4d,0x48, + 0x0,0x0,0x0,0xcc,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x14,0xe2, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc7, // :/zoneinfo/EST - 0x0,0x0,0x1,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x52,0xd1, + 0x0,0x0,0x2,0x82,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x9c,0x73, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xd7, // :/zoneinfo/GMT - 0x0,0x0,0x0,0xea,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x47,0xb9, + 0x0,0x0,0x3,0x7c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x80,0x2, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xf3, // :/zoneinfo/Etc - 0x0,0x0,0x3,0x5a,0x0,0x2,0x0,0x0,0x0,0x23,0x0,0x0,0x2,0x3d, + 0x0,0x0,0x2,0x10,0x0,0x2,0x0,0x0,0x0,0x23,0x0,0x0,0x2,0x3f, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // :/zoneinfo/HST - 0x0,0x0,0x1,0x84,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x5e,0x64, + 0x0,0x0,0x2,0x9c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0xaa,0xd1, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xd7, // :/zoneinfo/MET - 0x0,0x0,0x2,0xbe,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0xe9,0xaf, + 0x0,0x0,0x4,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0xde,0xc8, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc7, // :/zoneinfo/MST - 0x0,0x0,0x0,0x8a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x1f,0x1d, + 0x0,0x0,0x0,0xb6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0xa,0xbf, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xd7, // :/zoneinfo/PRC - 0x0,0x0,0x1,0x90,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x5e,0xe8, + 0x0,0x0,0x3,0xe4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x8f,0xaf, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbb, // :/zoneinfo/ROC - 0x0,0x0,0x2,0xea,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0xf2,0x6c, + 0x0,0x0,0x3,0xa2,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x83,0x18, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbb, // :/zoneinfo/ROK - 0x0,0x0,0x3,0x4e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x3c,0x94, + 0x0,0x0,0x4,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x91,0xd4, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbf, // :/zoneinfo/UCT - 0x0,0x0,0x1,0xa6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x6a,0x2a, + 0x0,0x0,0x0,0x34,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x1,0x42, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xf3, // :/zoneinfo/UTC - 0x0,0x0,0x0,0x3e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x5,0x42, + 0x0,0x0,0x4,0x98,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x4,0x2b, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xf3, // :/zoneinfo/WET - 0x0,0x0,0x0,0x4a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x5,0xc5, + 0x0,0x0,0x1,0xe,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x2b,0xb7, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc7, // :/zoneinfo/Asia - 0x0,0x0,0x0,0xdc,0x0,0x2,0x0,0x0,0x0,0x62,0x0,0x0,0x1,0xdb, + 0x0,0x0,0x0,0x16,0x0,0x2,0x0,0x0,0x0,0x62,0x0,0x0,0x1,0xdd, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // :/zoneinfo/Cuba - 0x0,0x0,0x4,0x5c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x7e,0xdf, + 0x0,0x0,0x4,0x36,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0xe7,0x2, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xe7, // :/zoneinfo/Eire - 0x0,0x0,0x2,0x88,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0xd7,0x1b, + 0x0,0x0,0x2,0x8e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x9c,0xf6, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc7, // :/zoneinfo/GMT0 - 0x0,0x0,0x2,0x64,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0xd6,0x98, + 0x0,0x0,0x2,0x2,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x87,0xde, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xf3, // :/zoneinfo/Iran - 0x0,0x0,0x2,0x12,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x7a,0x9b, + 0x0,0x0,0x0,0xd8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x1c,0x3a, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbb, // :/zoneinfo/W-SU - 0x0,0x0,0x4,0x6a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x88,0x68, + 0x0,0x0,0x1,0x7c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x55,0xa2, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xcf, // :/zoneinfo/Zulu - 0x0,0x0,0x2,0xca,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0xf1,0xe9, + 0x0,0x0,0x4,0x44,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0xf0,0x8b, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xf3, // :/zoneinfo/Chile - 0x0,0x0,0x0,0xf6,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x1,0xd9, + 0x0,0x0,0x3,0x40,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x1,0xdb, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // :/zoneinfo/Egypt - 0x0,0x0,0x4,0x9c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x98,0xd, + 0x0,0x0,0x1,0x2e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x3c,0x6, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xb7, // :/zoneinfo/GMT+0 - 0x0,0x0,0x1,0xb2,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x6a,0xad, + 0x0,0x0,0x3,0xd4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x8f,0x2c, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xf3, // :/zoneinfo/GMT-0 - 0x0,0x0,0x1,0x74,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x5d,0xe1, + 0x0,0x0,0x1,0x6c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x55,0x1f, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xf3, // :/zoneinfo/Japan - 0x0,0x0,0x2,0x2,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x79,0x34, + 0x0,0x0,0x0,0x24,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbb, // :/zoneinfo/Libya - 0x0,0x0,0x2,0x20,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x81,0x2d, + 0x0,0x0,0x3,0x88,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x80,0x85, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xb7, // :/zoneinfo/Jamaica - 0x0,0x0,0x3,0x14,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x3a,0x95, + 0x0,0x0,0x2,0x6e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x9a,0x74, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xe7, // :/zoneinfo/Universal - 0x0,0x0,0x1,0xd8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x78,0xb1, + 0x0,0x0,0x3,0xf0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x91,0x51, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xf3, // :/zoneinfo/posixrules - 0x0,0x0,0x4,0x2e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x68,0x8, + 0x0,0x0,0x3,0x26,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x6c,0x76, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xd7, // :/zoneinfo/MST7MDT - 0x0,0x0,0x4,0x48,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x75,0xe5, + 0x0,0x0,0x3,0xae,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x86,0x32, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xd7, // :/zoneinfo/NZ-CHAT - 0x0,0x0,0x2,0x30,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x83,0xc0, + 0x0,0x0,0x0,0xfa,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x23,0x8c, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc3, // :/zoneinfo/iso3166.tab - 0x0,0x0,0x0,0x6e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0xd,0x9d, + 0x0,0x0,0x1,0x50,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x43,0xbe, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xba,0x6b, // :/zoneinfo/Africa - 0x0,0x0,0x1,0x6,0x0,0x2,0x0,0x0,0x0,0x36,0x0,0x0,0x1,0xa3, + 0x0,0x0,0x3,0xc2,0x0,0x2,0x0,0x0,0x0,0x36,0x0,0x0,0x1,0xa5, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // :/zoneinfo/Arctic - 0x0,0x0,0x4,0x8a,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x1,0xa2, + 0x0,0x0,0x0,0x52,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x1,0xa4, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // :/zoneinfo/Canada - 0x0,0x0,0x1,0xf0,0x0,0x2,0x0,0x0,0x0,0x9,0x0,0x0,0x1,0x99, + 0x0,0x0,0x0,0x40,0x0,0x2,0x0,0x0,0x0,0x8,0x0,0x0,0x1,0x9c, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // :/zoneinfo/Brazil - 0x0,0x0,0x2,0xd8,0x0,0x2,0x0,0x0,0x0,0x4,0x0,0x0,0x1,0x95, + 0x0,0x0,0x2,0xa8,0x0,0x2,0x0,0x0,0x0,0x4,0x0,0x0,0x1,0x98, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // :/zoneinfo/Europe - 0x0,0x0,0x3,0xc0,0x0,0x2,0x0,0x0,0x0,0x3f,0x0,0x0,0x1,0x56, + 0x0,0x0,0x0,0x78,0x0,0x2,0x0,0x0,0x0,0x3f,0x0,0x0,0x1,0x59, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // :/zoneinfo/Singapore - 0x0,0x0,0x1,0x5c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x5c,0x31, + 0x0,0x0,0x4,0x64,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0xf9,0xeb, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbf, // :/zoneinfo/Indian - 0x0,0x0,0x3,0x3c,0x0,0x2,0x0,0x0,0x0,0xb,0x0,0x0,0x1,0x4b, + 0x0,0x0,0x4,0xba,0x0,0x2,0x0,0x0,0x0,0xb,0x0,0x0,0x1,0x4e, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // :/zoneinfo/Israel - 0x0,0x0,0x1,0x4a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x53,0x54, + 0x0,0x0,0x4,0x52,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0xf1,0xe, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbb, // :/zoneinfo/Mexico - 0x0,0x0,0x2,0x96,0x0,0x2,0x0,0x0,0x0,0x3,0x0,0x0,0x1,0x48, + 0x0,0x0,0x1,0x3e,0x0,0x2,0x0,0x0,0x0,0x3,0x0,0x0,0x1,0x4b, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // :/zoneinfo/Navajo - 0x0,0x0,0x4,0x78,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x8e,0x74, + 0x0,0x0,0x2,0x2e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x90,0xdb, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xdb, // :/zoneinfo/Poland - 0x0,0x0,0x1,0x18,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x48,0x3c, + 0x0,0x0,0x1,0x94,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x6a,0x19, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xcb, // :/zoneinfo/PST8PDT - 0x0,0x0,0x4,0x1a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x5f,0xe, + 0x0,0x0,0x0,0x64,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x1,0xc5, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xd7, // :/zoneinfo/Turkey - 0x0,0x0,0x0,0xbe,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x37,0x5, + 0x0,0x0,0x2,0x1c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x88,0x61, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xd7, // :/zoneinfo/zone.tab - 0x0,0x0,0x2,0x44,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x8b,0xcd, + 0x0,0x0,0x4,0x14,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x93,0xeb, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xba,0x6b, // :/zoneinfo/Hongkong - 0x0,0x0,0x2,0xa8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0xe5,0x6, + 0x0,0x0,0x1,0xd4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x82,0xb2, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbb, // :/zoneinfo/Pacific - 0x0,0x0,0x1,0x36,0x0,0x2,0x0,0x0,0x0,0x2b,0x0,0x0,0x1,0x1d, + 0x0,0x0,0x0,0x8a,0x0,0x2,0x0,0x0,0x0,0x2b,0x0,0x0,0x1,0x20, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // :/zoneinfo/Portugal - 0x0,0x0,0x1,0xc2,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x6b,0x30, + 0x0,0x0,0x1,0xbe,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x75,0x31, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xcf, // :/zoneinfo/Kwajalein - 0x0,0x0,0x3,0xd2,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x5d,0x9a, + 0x0,0x0,0x3,0x50,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x7a,0x53, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc3, // :/zoneinfo/America - 0x0,0x0,0x3,0x28,0x0,0x2,0x0,0x0,0x0,0x8f,0x0,0x0,0x0,0x74, + 0x0,0x0,0x2,0x40,0x0,0x2,0x0,0x0,0x0,0x90,0x0,0x0,0x0,0x76, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // :/zoneinfo/Antarctica - 0x0,0x0,0x3,0x92,0x0,0x2,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x68, + 0x0,0x0,0x2,0x54,0x0,0x2,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x6a, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // :/zoneinfo/CST6CDT - 0x0,0x0,0x3,0xac,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x54,0xa0, + 0x0,0x0,0x1,0x1a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x33,0xc, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xd7, + // :/zoneinfo/leapseconds + 0x0,0x0,0x4,0x7c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0xfb,0x97, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xba,0x6b, // :/zoneinfo/localtime - 0x0,0x0,0x4,0x2,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x5e,0x8b, + 0x0,0x0,0x1,0xea,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x87,0x5b, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xf3, // :/zoneinfo/EST5EDT - 0x0,0x0,0x0,0x96,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x1f,0xa0, + 0x0,0x0,0x4,0xcc,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x4,0xb8, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xd7, + // :/zoneinfo/tzdata.zi + 0x0,0x0,0x2,0xfa,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0xf8,0xe8, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xba,0x6b, // :/zoneinfo/+VERSION - 0x0,0x0,0x3,0x70,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x4d,0x3e, + 0x0,0x0,0x4,0xa4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x4,0xae, +0x0,0x0,0x1,0x60,0x7e,0x21,0x70,0x85, // :/zoneinfo/Australia - 0x0,0x0,0x3,0xea,0x0,0x2,0x0,0x0,0x0,0x17,0x0,0x0,0x0,0x51, + 0x0,0x0,0x0,0x9e,0x0,0x2,0x0,0x0,0x0,0x17,0x0,0x0,0x0,0x53, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // :/zoneinfo/Atlantic - 0x0,0x0,0x2,0x72,0x0,0x2,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x45, + 0x0,0x0,0x2,0xc6,0x0,0x2,0x0,0x0,0x0,0xc,0x0,0x0,0x0,0x47, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // :/zoneinfo/GB-Eire - 0x0,0x0,0x0,0xaa,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x28,0x9a, + 0x0,0x0,0x3,0x12,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x5e,0xb, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc3, // :/zoneinfo/Greenwich - 0x0,0x0,0x0,0x56,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0xd,0x1a, + 0x0,0x0,0x1,0xa6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x74,0xae, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xf3, // :/zoneinfo/Factory - 0x0,0x0,0x0,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x4,0xaa, + 0x0,0x0,0x0,0xe6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x22,0xf4, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xf3, // :/zoneinfo/zone1970.tab - 0x0,0x0,0x2,0xf6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0xf5,0x90, + 0x0,0x0,0x2,0xdc,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0xb3,0x8f, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xba,0x6b, // :/zoneinfo/Iceland - 0x0,0x0,0x0,0x16,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0, + 0x0,0x0,0x3,0x68,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x7b,0x5a, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xcb, // :/zoneinfo/Atlantic/Reykjavik - 0x0,0x0,0x1e,0xd2,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x8,0x99,0x34, + 0x0,0x0,0xc,0x5c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0x31,0x64, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xcb, // :/zoneinfo/Atlantic/Faroe - 0x0,0x0,0x1e,0x1e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x8,0x6a,0x59, + 0x0,0x0,0xb,0xa8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0x2,0x64, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc7, // :/zoneinfo/Atlantic/Madeira - 0x0,0x0,0x1e,0x80,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x8,0x7b,0xeb, + 0x0,0x0,0xc,0xa,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0x14,0x25, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xcf, // :/zoneinfo/Atlantic/St_Helena - 0x0,0x0,0x1e,0xa8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x8,0x91,0x5d, + 0x0,0x0,0xc,0x32,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0x29,0x8d, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xb7, // :/zoneinfo/Atlantic/Jan_Mayen - 0x0,0x0,0x1e,0x2e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x8,0x71,0x82, + 0x0,0x0,0xb,0xb8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0x9,0x8d, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xcb, // :/zoneinfo/Atlantic/Azores - 0x0,0x0,0x1e,0xc,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x8,0x5c,0xb5, + 0x0,0x0,0xb,0x96,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0xf4,0xcb, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xcf, // :/zoneinfo/Atlantic/Canary - 0x0,0x0,0x1d,0xfa,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x8,0x55,0x38, + 0x0,0x0,0xb,0x84,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0xed,0x50, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xd7, // :/zoneinfo/Atlantic/Faeroe - 0x0,0x0,0x1e,0xc0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x8,0x92,0xb, + 0x0,0x0,0xc,0x4a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0x2a,0x3b, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc7, // :/zoneinfo/Atlantic/Bermuda - 0x0,0x0,0x1e,0x94,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x8,0x89,0x85, + 0x0,0x0,0xc,0x1e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0x21,0xb5, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xe7, // :/zoneinfo/Atlantic/South_Georgia - 0x0,0x0,0x1e,0x60,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x8,0x7b,0x53, + 0x0,0x0,0xb,0xea,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0x13,0x6c, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xf3, // :/zoneinfo/Atlantic/Stanley - 0x0,0x0,0x1d,0xe6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x8,0x50,0x56, + 0x0,0x0,0xb,0x70,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0xe8,0x69, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xf3, // :/zoneinfo/Atlantic/Cape_Verde - 0x0,0x0,0x1e,0x46,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x8,0x7a,0x51, + 0x0,0x0,0xb,0xd0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0x12,0x5c, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xb7, // :/zoneinfo/Australia/ACT - 0x0,0x0,0x5,0xf6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0xd,0xae, + 0x0,0x0,0x1f,0x38,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0x80,0x8c, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc3, // :/zoneinfo/Australia/LHI - 0x0,0x0,0x5,0x76,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0xe6,0xb8, + 0x0,0x0,0x1e,0xb8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0x59,0x68, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc3, // :/zoneinfo/Australia/NSW - 0x0,0x0,0x6,0x18,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x18,0x6f, + 0x0,0x0,0x1f,0x5a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0x8b,0x4d, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc3, // :/zoneinfo/Australia/West - 0x0,0x0,0x6,0x36,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x22,0x69, + 0x0,0x0,0xc,0x90,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0x95,0x47, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbf, // :/zoneinfo/Australia/Lindeman - 0x0,0x0,0x6,0x2,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x16,0x61, + 0x0,0x0,0x1f,0x44,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0x89,0x3f, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbf, // :/zoneinfo/Australia/Eucla - 0x0,0x0,0x5,0x82,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0xed,0xff, + 0x0,0x0,0x1e,0xc4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0x60,0xcd, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbf, // :/zoneinfo/Australia/North - 0x0,0x0,0x4,0xca,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0xa8,0x94, + 0x0,0x0,0x1e,0xc,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0x1b,0x26, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbf, // :/zoneinfo/Australia/Perth - 0x0,0x0,0x5,0xd0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x3,0x18, + 0x0,0x0,0x1f,0x12,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0x75,0xf6, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbf, // :/zoneinfo/Australia/South - 0x0,0x0,0x4,0xda,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0xa9,0xdb, + 0x0,0x0,0x1e,0x1c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0x1c,0x6d, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbf, // :/zoneinfo/Australia/Melbourne - 0x0,0x0,0x6,0x70,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x2e,0xc7, + 0x0,0x0,0x1f,0xa4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0xa1,0xa5, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc3, // :/zoneinfo/Australia/Darwin - 0x0,0x0,0x6,0x24,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x21,0x22, + 0x0,0x0,0x1f,0x66,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0x94,0x0, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbf, // :/zoneinfo/Australia/Currie - 0x0,0x0,0x5,0xbe,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0xfa,0x65, + 0x0,0x0,0x1f,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0x6d,0x43, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc3, // :/zoneinfo/Australia/Hobart - 0x0,0x0,0x5,0x64,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0xdd,0x95, + 0x0,0x0,0x1e,0xa6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0x50,0x45, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc3, // :/zoneinfo/Australia/Sydney - 0x0,0x0,0x6,0x5e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x26,0x14, + 0x0,0x0,0x1f,0x92,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0x98,0xf2, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc3, // :/zoneinfo/Australia/Canberra - 0x0,0x0,0x5,0xe0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x4,0xfb, + 0x0,0x0,0x1f,0x22,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0x77,0xd9, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc3, // :/zoneinfo/Australia/Lord_Howe - 0x0,0x0,0x5,0x4c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0xd6,0x4e, + 0x0,0x0,0x1e,0x8e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0x48,0xe0, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc3, // :/zoneinfo/Australia/Tasmania - 0x0,0x0,0x4,0xea,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0xb2,0x9d, + 0x0,0x0,0x1e,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0x25,0x2f, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc3, // :/zoneinfo/Australia/Brisbane - 0x0,0x0,0x5,0x92,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0xef,0xea, + 0x0,0x0,0x1e,0xd4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0x62,0xc8, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbf, // :/zoneinfo/Australia/Yancowinna - 0x0,0x0,0x5,0x32,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0xcd,0x68, + 0x0,0x0,0x1e,0x74,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0x3f,0xfa, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc3, // :/zoneinfo/Australia/Adelaide - 0x0,0x0,0x5,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0xbb,0xc0, + 0x0,0x0,0x1e,0x42,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0x2e,0x52, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbf, // :/zoneinfo/Australia/Queensland - 0x0,0x0,0x6,0x44,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x24,0x4c, + 0x0,0x0,0x1f,0x78,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0x97,0x2a, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbf, // :/zoneinfo/Australia/Broken_Hill - 0x0,0x0,0x5,0x16,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0xc4,0x82, + 0x0,0x0,0x1e,0x58,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0x37,0x14, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc3, // :/zoneinfo/Australia/Victoria - 0x0,0x0,0x5,0xa8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0xf1,0xb2, + 0x0,0x0,0x1e,0xea,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0x64,0x90, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc3, // :/zoneinfo/Antarctica/Casey - 0x0,0x0,0xb,0xf0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0x7c,0x3f, + 0x0,0x0,0xd,0x12,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0x56,0x8c, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbb, // :/zoneinfo/Antarctica/Davis - 0x0,0x0,0xc,0x22,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0x7e,0x59, + 0x0,0x0,0xd,0x44,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0x58,0xa6, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbb, // :/zoneinfo/Antarctica/Syowa - 0x0,0x0,0xc,0x76,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0x97,0x20, + 0x0,0x0,0xd,0x98,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0x6f,0x28, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbb, // :/zoneinfo/Antarctica/Troll - 0x0,0x0,0xb,0xba,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0x76,0x0, + 0x0,0x0,0xc,0xdc,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0x50,0x4d, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbb, // :/zoneinfo/Antarctica/McMurdo - 0x0,0x0,0xb,0xa6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0x6c,0x60, + 0x0,0x0,0xc,0xc8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0x46,0xad, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc3, // :/zoneinfo/Antarctica/DumontDUrville - 0x0,0x0,0xc,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0x7d,0x7d, + 0x0,0x0,0xd,0x22,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0x57,0xca, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbb, // :/zoneinfo/Antarctica/Mawson - 0x0,0x0,0xb,0xca,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0x7a,0x9c, + 0x0,0x0,0xc,0xec,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0x54,0xe9, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbb, // :/zoneinfo/Antarctica/Palmer - 0x0,0x0,0xc,0x32,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0x7f,0x94, + 0x0,0x0,0xd,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0x59,0xe1, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xf3, // :/zoneinfo/Antarctica/Vostok - 0x0,0x0,0xb,0x94,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0x6b,0xa1, + 0x0,0x0,0xc,0xb6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0x45,0xee, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbb, // :/zoneinfo/Antarctica/Rothera - 0x0,0x0,0xb,0xdc,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0x7b,0x81, + 0x0,0x0,0xc,0xfe,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0x55,0xce, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbb, // :/zoneinfo/Antarctica/Macquarie - 0x0,0x0,0xc,0x44,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0x87,0x82, + 0x0,0x0,0xd,0x66,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0x5f,0x7d, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc3, // :/zoneinfo/Antarctica/South_Pole - 0x0,0x0,0xc,0x5c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0x8d,0x80, + 0x0,0x0,0xd,0x7e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0x65,0x88, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc3, // :/zoneinfo/America/Buenos_Aires - 0x0,0x0,0x11,0x30,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0x5,0x6d, + 0x0,0x0,0xf,0xda,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0xca,0x14, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xeb, // :/zoneinfo/America/Adak - 0x0,0x0,0x18,0x28,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0xd5,0xd5, + 0x0,0x0,0x16,0xd2,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0x9b,0xa, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xdb, // :/zoneinfo/America/Atka - 0x0,0x0,0x18,0xa,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0xcb,0xc0, + 0x0,0x0,0x16,0xb4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0x90,0xf1, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xdb, // :/zoneinfo/America/Lima - 0x0,0x0,0x1b,0x3a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0x71,0xc0, + 0x0,0x0,0x19,0xe4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0x39,0x5e, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xf3, // :/zoneinfo/America/Nome - 0x0,0x0,0x12,0x62,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0x50,0x8d, + 0x0,0x0,0x11,0xc,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0x15,0x90, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xdb, // :/zoneinfo/America/Bahia - 0x0,0x0,0x19,0x90,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0x23,0x31, + 0x0,0x0,0x18,0x3a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0xea,0xed, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xef, // :/zoneinfo/America/Aruba - 0x0,0x0,0x18,0x18,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0xd5,0x1, + 0x0,0x0,0x16,0xc2,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0x9a,0x32, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xf3, // :/zoneinfo/America/Belem - 0x0,0x0,0xf,0x9c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0xc4,0xe6, + 0x0,0x0,0xe,0x28,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0x7f,0x8c, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xef, // :/zoneinfo/America/Boise - 0x0,0x0,0x17,0x2,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0x74,0x68, + 0x0,0x0,0x15,0xac,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0x39,0x4a, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xdb, // :/zoneinfo/America/Indiana - 0x0,0x0,0x1a,0x46,0x0,0x2,0x0,0x0,0x0,0x8,0x0,0x0,0x1,0x15, + 0x0,0x0,0x18,0xf0,0x0,0x2,0x0,0x0,0x0,0x8,0x0,0x0,0x1,0x18, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // :/zoneinfo/America/Jujuy - 0x0,0x0,0x1b,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0x6d,0x43, + 0x0,0x0,0x19,0xd4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0x35,0x21, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xeb, // :/zoneinfo/America/Winnipeg - 0x0,0x0,0x12,0x70,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0x59,0xd9, + 0x0,0x0,0x11,0x1a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0x1e,0xdc, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xe3, // :/zoneinfo/America/Sitka - 0x0,0x0,0x12,0x24,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0x37,0xe7, + 0x0,0x0,0x10,0xce,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0xfc,0xd0, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xdb, // :/zoneinfo/America/Thule - 0x0,0x0,0x17,0x46,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0x86,0xb, + 0x0,0x0,0x15,0xf0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0x4a,0xed, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc7, // :/zoneinfo/America/Iqaluit - 0x0,0x0,0x1b,0x16,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0x65,0x41, + 0x0,0x0,0x19,0xc0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0x2d,0x1f, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xe3, // :/zoneinfo/America/Danmarkshavn - 0x0,0x0,0x1a,0x8c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0x53,0x5c, + 0x0,0x0,0x19,0x36,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0x1b,0x40, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc7, // :/zoneinfo/America/Jamaica - 0x0,0x0,0x3,0x14,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0x3d,0x27, + 0x0,0x0,0x2,0x6e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0x5,0xb, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xe7, // :/zoneinfo/America/Miquelon - 0x0,0x0,0x19,0xa0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0x27,0x41, + 0x0,0x0,0x18,0x4a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0xef,0xb, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xe7, // :/zoneinfo/America/Eirunepe - 0x0,0x0,0x10,0xf2,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0xfa,0x31, + 0x0,0x0,0xf,0x9c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0xbe,0xc4, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xef, // :/zoneinfo/America/Louisville - 0x0,0x0,0x1a,0x72,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0x48,0x7b, + 0x0,0x0,0x19,0x1c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0x10,0x5f, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xdf, // :/zoneinfo/America/Lower_Princes - 0x0,0x0,0x13,0xc8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0xb9,0x84, + 0x0,0x0,0x12,0x72,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0x7e,0x87, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xf3, // :/zoneinfo/America/Knox_IN - 0x0,0x0,0x12,0x34,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0x41,0x19, + 0x0,0x0,0x10,0xde,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0x6,0x2, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xdf, // :/zoneinfo/America/Metlakatla - 0x0,0x0,0x11,0x66,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0xa,0x5e, + 0x0,0x0,0x10,0x10,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0xcf,0x1b, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xdb, // :/zoneinfo/America/Kralendijk - 0x0,0x0,0xf,0x82,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0xc4,0x12, + 0x0,0x0,0xe,0xe,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0x7e,0xb4, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xf3, // :/zoneinfo/America/Scoresbysund - 0x0,0x0,0x16,0x3a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0x3a,0x52, + 0x0,0x0,0x14,0xe4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0xff,0x2f, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc7, // :/zoneinfo/America/Managua - 0x0,0x0,0x11,0xa4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0x1a,0x7a, + 0x0,0x0,0x10,0x4e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0xdf,0x45, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xe7, // :/zoneinfo/America/Marigot - 0x0,0x0,0x18,0x68,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0xe2,0xa0, + 0x0,0x0,0x17,0x12,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0xa7,0xe3, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xf3, // :/zoneinfo/America/Rio_Branco - 0x0,0x0,0x11,0xcc,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0x1d,0x19, + 0x0,0x0,0x10,0x76,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0xe1,0xfc, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xef, // :/zoneinfo/America/Mendoza - 0x0,0x0,0x14,0x6c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0xce,0xfa, + 0x0,0x0,0x13,0x16,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0x93,0xfd, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xeb, // :/zoneinfo/America/Hermosillo - 0x0,0x0,0x14,0x80,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0xd3,0x93, + 0x0,0x0,0x13,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0x98,0x56, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xe7, // :/zoneinfo/America/Moncton - 0x0,0x0,0x16,0xc4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0x5f,0x16, + 0x0,0x0,0x15,0x6e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0x23,0xf8, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xe3, // :/zoneinfo/America/Belize - 0x0,0x0,0x15,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0xf1,0xcc, + 0x0,0x0,0x13,0xb2,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0xb6,0x9d, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xe7, // :/zoneinfo/America/Bogota - 0x0,0x0,0x11,0x80,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0xf,0xec, + 0x0,0x0,0x10,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0xd4,0xa9, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xf3, // :/zoneinfo/America/Cancun - 0x0,0x0,0x19,0xd2,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0x2e,0xd7, + 0x0,0x0,0x18,0x7c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0xf6,0xad, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xe7, // :/zoneinfo/America/Cayman - 0x0,0x0,0x1a,0xca,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0x5e,0x60, + 0x0,0x0,0x19,0x74,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0x26,0x42, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xe7, // :/zoneinfo/America/Vancouver - 0x0,0x0,0x15,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0xfb,0x54, + 0x0,0x0,0x13,0xd6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0xc0,0x27, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xe3, // :/zoneinfo/America/Dawson - 0x0,0x0,0x17,0xc8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0xb3,0x67, + 0x0,0x0,0x16,0x72,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0x78,0x98, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xe7, // :/zoneinfo/America/Cuiaba - 0x0,0x0,0x18,0x7c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0xe3,0x4e, + 0x0,0x0,0x17,0x26,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0xa8,0x91, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xef, // :/zoneinfo/America/Denver - 0x0,0x0,0x13,0xe8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0xba,0x58, + 0x0,0x0,0x12,0x92,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0x7f,0x5f, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xdb, // :/zoneinfo/America/Grand_Turk - 0x0,0x0,0x10,0x28,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0xd4,0x93, + 0x0,0x0,0xe,0xb4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0x8f,0x55, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xeb, // :/zoneinfo/America/St_Thomas - 0x0,0x0,0x11,0x4e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0x9,0xb0, + 0x0,0x0,0xf,0xf8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0xce,0x6d, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xf3, // :/zoneinfo/America/Fort_Nelson - 0x0,0x0,0x13,0xac,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0xb0,0xb7, + 0x0,0x0,0x12,0x56,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0x75,0xba, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xe3, // :/zoneinfo/America/Havana - 0x0,0x0,0x11,0x92,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0x10,0xf1, + 0x0,0x0,0x10,0x3c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0xd5,0xbc, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xe7, // :/zoneinfo/America/Anguilla - 0x0,0x0,0x1a,0x30,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0x47,0xcd, + 0x0,0x0,0x18,0xda,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0xf,0xb1, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xf3, // :/zoneinfo/America/Guyana - 0x0,0x0,0x19,0x68,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0x18,0x48, + 0x0,0x0,0x18,0x12,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0xdf,0xf1, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xf3, // :/zoneinfo/America/Inuvik - 0x0,0x0,0x18,0xd8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0xf9,0xfc, + 0x0,0x0,0x17,0x82,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0xbf,0x41, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xe3, // :/zoneinfo/America/Nipigon - 0x0,0x0,0x13,0x98,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0xa8,0x60, + 0x0,0x0,0x12,0x42,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0x6d,0x63, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xe3, // :/zoneinfo/America/Juneau - 0x0,0x0,0x16,0x72,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0x43,0x34, + 0x0,0x0,0x15,0x1c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0x8,0x16, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xdb, // :/zoneinfo/America/La_Paz - 0x0,0x0,0x1b,0x4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0x64,0x4a, + 0x0,0x0,0x19,0xae,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0x2c,0x18, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xeb, // :/zoneinfo/America/Maceio - 0x0,0x0,0x15,0xd6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0x2c,0xe8, + 0x0,0x0,0x14,0x80,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0xf1,0xa8, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xef, // :/zoneinfo/America/Manaus - 0x0,0x0,0x11,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0xfc,0xe1, + 0x0,0x0,0xf,0xb2,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0xc1,0x7a, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xef, // :/zoneinfo/America/Merida - 0x0,0x0,0x15,0x1a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0xf5,0xa0, + 0x0,0x0,0x13,0xc4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0xba,0x73, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xe7, // :/zoneinfo/America/Sao_Paulo - 0x0,0x0,0x18,0x8e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0xeb,0x15, + 0x0,0x0,0x17,0x38,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0xb0,0x59, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xef, // :/zoneinfo/America/Nassau - 0x0,0x0,0x10,0xe0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0xf1,0x41, + 0x0,0x0,0xf,0x8a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0xb5,0xd4, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xe7, // :/zoneinfo/America/Menominee - 0x0,0x0,0x16,0x98,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0x4d,0x7b, + 0x0,0x0,0x15,0x42,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0x12,0x79, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xdf, // :/zoneinfo/America/Panama - 0x0,0x0,0x15,0xc4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0x2c,0x19, + 0x0,0x0,0x14,0x6e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0xf0,0xd9, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xe7, // :/zoneinfo/America/Noronha - 0x0,0x0,0x1a,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0x3a,0x4b, + 0x0,0x0,0x18,0xaa,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0x2,0x21, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xef, // :/zoneinfo/America/Recife - 0x0,0x0,0x14,0x12,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0xc6,0x79, + 0x0,0x0,0x12,0xbc,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0x8b,0x8e, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xef, // :/zoneinfo/America/Regina - 0x0,0x0,0x1b,0x48,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0x73,0x65, + 0x0,0x0,0x19,0xf2,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0x3b,0x11, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xe3, // :/zoneinfo/America/Ensenada - 0x0,0x0,0x13,0x4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0x83,0x7b, + 0x0,0x0,0x11,0xae,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0x48,0x7e, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xe7, // :/zoneinfo/America/Pangnirtung - 0x0,0x0,0x19,0xe4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0x32,0xb, + 0x0,0x0,0x18,0x8e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0xf9,0xe1, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xe3, // :/zoneinfo/America/Monterrey - 0x0,0x0,0x12,0x86,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0x65,0x28, + 0x0,0x0,0x11,0x30,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0x2a,0x2b, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xe7, // :/zoneinfo/America/Virgin - 0x0,0x0,0x18,0xea,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0x1,0x88, + 0x0,0x0,0x17,0x94,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0xc6,0xcd, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xf3, // :/zoneinfo/America/Porto_Velho - 0x0,0x0,0x10,0xc,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0xd2,0x43, + 0x0,0x0,0xe,0x98,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0x8c,0xf7, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xef, // :/zoneinfo/America/Ojinaga - 0x0,0x0,0x14,0x9a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0xd5,0x5d, + 0x0,0x0,0x13,0x44,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0x9a,0x20, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xe7, // :/zoneinfo/America/Dominica - 0x0,0x0,0x17,0x30,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0x85,0x5d, + 0x0,0x0,0x15,0xda,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0x4a,0x3f, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xf3, // :/zoneinfo/America/Montreal - 0x0,0x0,0x13,0x82,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0x9a,0xad, + 0x0,0x0,0x12,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0x5f,0xb0, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xe3, // :/zoneinfo/America/Port_of_Spain - 0x0,0x0,0x1b,0x8a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0x79,0xad, + 0x0,0x0,0x1a,0x34,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0x41,0x59, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xf3, // :/zoneinfo/America/Goose_Bay - 0x0,0x0,0x15,0xac,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0x1f,0x82, + 0x0,0x0,0x14,0x56,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0xe4,0x42, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xdf, // :/zoneinfo/America/Yellowknife - 0x0,0x0,0x13,0x4e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0x8d,0x61, + 0x0,0x0,0x11,0xf8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0x52,0x64, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xe3, // :/zoneinfo/America/Phoenix - 0x0,0x0,0x16,0xd8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0x6b,0x75, + 0x0,0x0,0x15,0x82,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0x30,0x57, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xdb, // :/zoneinfo/America/Boa_Vista - 0x0,0x0,0x13,0xfa,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0xc3,0xf1, + 0x0,0x0,0x12,0xa4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0x88,0xf8, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xef, // :/zoneinfo/America/Glace_Bay - 0x0,0x0,0x14,0xf0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0xe9,0x2a, + 0x0,0x0,0x13,0x9a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0xad,0xfb, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xdf, // :/zoneinfo/America/Araguaina - 0x0,0x0,0x14,0xd8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0xe5,0xa6, + 0x0,0x0,0x13,0x82,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0xaa,0x69, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xef, // :/zoneinfo/America/Paramaribo - 0x0,0x0,0x14,0x24,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0xc9,0x55, + 0x0,0x0,0x12,0xce,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0x8e,0x78, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xf3, // :/zoneinfo/America/Santarem - 0x0,0x0,0x18,0xfc,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0x2,0x36, + 0x0,0x0,0x17,0xa6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0xc7,0x7b, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xef, // :/zoneinfo/America/Santiago - 0x0,0x0,0x19,0x7a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0x19,0x5a, + 0x0,0x0,0x18,0x24,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0xe0,0xff, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xef, // :/zoneinfo/America/Antigua - 0x0,0x0,0x1a,0xdc,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0x5f,0x2f, + 0x0,0x0,0x19,0x86,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0x27,0x11, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xf3, // :/zoneinfo/America/Santo_Domingo - 0x0,0x0,0xf,0x34,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0xb6,0x83, + 0x0,0x0,0xd,0xc0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0x71,0x1d, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xe7, // :/zoneinfo/America/Barbados - 0x0,0x0,0x12,0xee,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0x82,0x1f, + 0x0,0x0,0x11,0x98,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0x47,0x22, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xe7, // :/zoneinfo/America/El_Salvador - 0x0,0x0,0x19,0xb6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0x2d,0xd9, + 0x0,0x0,0x18,0x60,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0xf5,0xaf, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xe7, // :/zoneinfo/America/Guatemala - 0x0,0x0,0xf,0x1c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0xb5,0x4d, + 0x0,0x0,0xd,0xa8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0x6f,0xe7, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xe7, // :/zoneinfo/America/Los_Angeles - 0x0,0x0,0x10,0xc4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0xe6,0x20, + 0x0,0x0,0xf,0x6e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0xaa,0xb3, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xdb, // :/zoneinfo/America/Guayaquil - 0x0,0x0,0x17,0x56,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0x8c,0x7, + 0x0,0x0,0x16,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0x50,0xe9, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xf3, // :/zoneinfo/America/Mazatlan - 0x0,0x0,0x11,0x1a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0xff,0x4d, + 0x0,0x0,0xf,0xc4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0xc3,0xf4, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xe7, // :/zoneinfo/America/North_Dakota - 0x0,0x0,0x13,0x30,0x0,0x2,0x0,0x0,0x0,0x3,0x0,0x0,0x1,0x12, + 0x0,0x0,0x11,0xda,0x0,0x2,0x0,0x0,0x0,0x3,0x0,0x0,0x1,0x15, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // :/zoneinfo/America/Tegucigalpa - 0x0,0x0,0x10,0x42,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0xd9,0x9e, + 0x0,0x0,0xe,0xce,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0x96,0xb2, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xe7, // :/zoneinfo/America/Rosario - 0x0,0x0,0x15,0x62,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0xd,0x3c, + 0x0,0x0,0x14,0xc,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0xd2,0xf, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xeb, + // :/zoneinfo/America/Punta_Arenas + 0x0,0x0,0xf,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0xa1,0x4, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xf3, // :/zoneinfo/America/Caracas - 0x0,0x0,0x16,0x84,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0x4c,0x72, + 0x0,0x0,0x15,0x2e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0x11,0x54, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xf3, // :/zoneinfo/America/Cayenne - 0x0,0x0,0x11,0xb8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0x1c,0x4d, + 0x0,0x0,0x10,0x62,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0xe1,0x18, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xf3, // :/zoneinfo/America/Fortaleza - 0x0,0x0,0x18,0x36,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0xdf,0x16, + 0x0,0x0,0x16,0xe0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0xa4,0x4b, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xef, // :/zoneinfo/America/Cambridge_Bay - 0x0,0x0,0x1a,0xaa,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0x56,0x2a, + 0x0,0x0,0x19,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0x1e,0xc, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xe3, // :/zoneinfo/America/Chicago - 0x0,0x0,0x19,0x12,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0x4,0xac, + 0x0,0x0,0x17,0xbc,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0xc9,0xf7, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xd7, // :/zoneinfo/America/Anchorage - 0x0,0x0,0x17,0x9c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0x9c,0x60, + 0x0,0x0,0x16,0x46,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0x61,0x95, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xdb, // :/zoneinfo/America/St_Johns - 0x0,0x0,0x12,0xe,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0x29,0x93, + 0x0,0x0,0x10,0xb8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0xee,0x7c, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xdf, // :/zoneinfo/America/St_Kitts - 0x0,0x0,0x18,0xa6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0xf2,0xf8, + 0x0,0x0,0x17,0x50,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0xb8,0x3d, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xf3, // :/zoneinfo/America/St_Lucia - 0x0,0x0,0x13,0x1a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0x8c,0xb3, + 0x0,0x0,0x11,0xc4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0x51,0xb6, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xf3, // :/zoneinfo/America/Fort_Wayne - 0x0,0x0,0x17,0xf0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0xc5,0x31, + 0x0,0x0,0x16,0x9a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0x8a,0x62, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xdb, // :/zoneinfo/America/Coral_Harbour - 0x0,0x0,0x16,0x1a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0x38,0xf5, + 0x0,0x0,0x14,0xc4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0xfd,0xd2, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xe3, // :/zoneinfo/America/Cordoba - 0x0,0x0,0x1a,0xf0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0x5f,0xdd, + 0x0,0x0,0x19,0x9a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0x27,0xbf, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xeb, // :/zoneinfo/America/Thunder_Bay - 0x0,0x0,0x1a,0x14,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0x3f,0x26, + 0x0,0x0,0x18,0xbe,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0x7,0xa, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xe3, // :/zoneinfo/America/Costa_Rica - 0x0,0x0,0x16,0x58,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0x41,0xdb, + 0x0,0x0,0x15,0x2,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0x6,0xbd, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xe7, // :/zoneinfo/America/Catamarca - 0x0,0x0,0x14,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0xca,0x8d, + 0x0,0x0,0x12,0xfe,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0x8f,0xa4, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xeb, // :/zoneinfo/America/Matamoros - 0x0,0x0,0x13,0x6a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0x95,0x21, + 0x0,0x0,0x12,0x14,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0x5a,0x24, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xe7, // :/zoneinfo/America/Creston - 0x0,0x0,0x14,0xae,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0xdb,0x53, + 0x0,0x0,0x13,0x58,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0xa0,0x16, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xe3, // :/zoneinfo/America/Whitehorse - 0x0,0x0,0x17,0x82,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0x94,0x2f, + 0x0,0x0,0x16,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0x59,0x64, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xe7, // :/zoneinfo/America/Asuncion - 0x0,0x0,0x15,0xe8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0x2f,0xe0, + 0x0,0x0,0x14,0x92,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0xf4,0xae, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xf3, // :/zoneinfo/America/Montevideo - 0x0,0x0,0x12,0x48,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0x4a,0xa2, + 0x0,0x0,0x10,0xf2,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0xf,0x8b, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xf3, // :/zoneinfo/America/Curacao - 0x0,0x0,0x10,0x96,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0xe4,0x9e, + 0x0,0x0,0xf,0x40,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0xa9,0x2d, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xf3, // :/zoneinfo/America/Guadeloupe - 0x0,0x0,0x18,0x4e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0xe1,0xf2, + 0x0,0x0,0x16,0xf8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0xa7,0x35, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xf3, // :/zoneinfo/America/Detroit - 0x0,0x0,0x16,0xb0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0x56,0x6a, + 0x0,0x0,0x15,0x5a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0x1b,0x68, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xdf, // :/zoneinfo/America/Campo_Grande - 0x0,0x0,0x15,0x76,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0x11,0xa9, + 0x0,0x0,0x14,0x20,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0xd6,0x68, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xef, // :/zoneinfo/America/Mexico_City - 0x0,0x0,0x18,0xbc,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0xf3,0xa6, + 0x0,0x0,0x17,0x66,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0xb8,0xeb, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xe7, // :/zoneinfo/America/Tijuana - 0x0,0x0,0x11,0xe6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0x1f,0xad, + 0x0,0x0,0x10,0x90,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0xe4,0x96, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xe7, // :/zoneinfo/America/Atikokan - 0x0,0x0,0x1b,0x5a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0x77,0x4b, + 0x0,0x0,0x1a,0x4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0x3e,0xf7, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xe3, // :/zoneinfo/America/Martinique - 0x0,0x0,0x1b,0x70,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0x78,0xa8, + 0x0,0x0,0x1a,0x1a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0x40,0x54, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xe7, // :/zoneinfo/America/Rankin_Inlet - 0x0,0x0,0x17,0x12,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0x7d,0xcf, + 0x0,0x0,0x15,0xbc,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0x42,0xb1, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xe3, // :/zoneinfo/America/Santa_Isabel - 0x0,0x0,0x10,0x5e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0xda,0xb8, + 0x0,0x0,0xe,0xea,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0x97,0xcc, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xe7, // :/zoneinfo/America/Edmonton - 0x0,0x0,0x14,0xc2,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0xdc,0x40, + 0x0,0x0,0x13,0x6c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0xa1,0x3, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xe3, // :/zoneinfo/America/Porto_Acre - 0x0,0x0,0xf,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0xb8,0x70, + 0x0,0x0,0xd,0xe0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0x73,0xc, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xef, // :/zoneinfo/America/Toronto - 0x0,0x0,0x17,0xb4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0xa5,0xb4, + 0x0,0x0,0x16,0x5e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0x6a,0xe5, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xe3, // :/zoneinfo/America/Tortola - 0x0,0x0,0x1b,0xbe,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0x87,0xcd, + 0x0,0x0,0x1a,0x68,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0x4f,0x79, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xf3, // :/zoneinfo/America/Bahia_Banderas - 0x0,0x0,0xf,0xcc,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0xc7,0xe4, + 0x0,0x0,0xe,0x58,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0x82,0x98, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xe7, // :/zoneinfo/America/Montserrat - 0x0,0x0,0x10,0x7c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0xe3,0xf0, + 0x0,0x0,0xf,0x26,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0xa8,0x7f, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xf3, // :/zoneinfo/America/Blanc-Sablon - 0x0,0x0,0x12,0x9e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0x6a,0xb4, + 0x0,0x0,0x11,0x48,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0x2f,0xb7, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xe3, // :/zoneinfo/America/Puerto_Rico - 0x0,0x0,0x15,0xfe,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0x37,0xf2, + 0x0,0x0,0x14,0xa8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0xfc,0xcf, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xe7, // :/zoneinfo/America/Kentucky - 0x0,0x0,0x14,0x3e,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x1,0x10, + 0x0,0x0,0x12,0xe8,0x0,0x2,0x0,0x0,0x0,0x2,0x0,0x0,0x1,0x13, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // :/zoneinfo/America/Resolute - 0x0,0x0,0x16,0xec,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0x6c,0xda, + 0x0,0x0,0x15,0x96,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0x31,0xbc, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xe3, // :/zoneinfo/America/New_York - 0x0,0x0,0x12,0xbc,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0x6b,0xeb, + 0x0,0x0,0x11,0x66,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0x30,0xee, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xd7, // :/zoneinfo/America/St_Vincent - 0x0,0x0,0x10,0xaa,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0xe5,0x72, + 0x0,0x0,0xf,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0xaa,0x5, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xf3, // :/zoneinfo/America/Dawson_Creek - 0x0,0x0,0xf,0xee,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0xce,0x1c, + 0x0,0x0,0xe,0x7a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0x88,0xd0, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xe3, // :/zoneinfo/America/Argentina - 0x0,0x0,0x1a,0x5a,0x0,0x2,0x0,0x0,0x0,0xd,0x0,0x0,0x1,0x3, + 0x0,0x0,0x19,0x4,0x0,0x2,0x0,0x0,0x0,0xd,0x0,0x0,0x1,0x6, +0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0, // :/zoneinfo/America/Godthab - 0x0,0x0,0x17,0x6e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0x8c,0xd6, + 0x0,0x0,0x16,0x18,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0x51,0xfc, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc7, // :/zoneinfo/America/Halifax - 0x0,0x0,0x1b,0xaa,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0x7a,0x5b, + 0x0,0x0,0x1a,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0x42,0x7, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xdf, // :/zoneinfo/America/Grenada - 0x0,0x0,0x11,0xfa,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0x28,0xe5, + 0x0,0x0,0x10,0xa4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0xed,0xce, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xf3, // :/zoneinfo/America/Indianapolis - 0x0,0x0,0x15,0x44,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0x6,0xad, + 0x0,0x0,0x13,0xee,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0xcb,0x80, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xdb, // :/zoneinfo/America/Shiprock - 0x0,0x0,0x17,0xda,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0xbb,0x98, + 0x0,0x0,0x16,0x84,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0x80,0xc9, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xdb, // :/zoneinfo/America/Port-au-Prince - 0x0,0x0,0x19,0x26,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0x12,0xb1, + 0x0,0x0,0x17,0xd0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0xd7,0xfc, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xe7, // :/zoneinfo/America/Swift_Current - 0x0,0x0,0x19,0x48,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0x16,0x6, + 0x0,0x0,0x17,0xf2,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0xdd,0xaf, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xe3, // :/zoneinfo/America/Yakutat - 0x0,0x0,0xf,0x6e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0xbb,0x4, + 0x0,0x0,0xd,0xfa,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0x75,0xa6, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xdb, // :/zoneinfo/America/St_Barthelemy - 0x0,0x0,0xf,0xac,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0xc7,0x36, + 0x0,0x0,0xe,0x38,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0x81,0xea, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xf3, // :/zoneinfo/America/Rainy_River - 0x0,0x0,0x12,0xd2,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x5,0x79,0xc8, + 0x0,0x0,0x11,0x7c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0x3e,0xcb, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xe3, // :/zoneinfo/America/Chihuahua - 0x0,0x0,0x15,0x94,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0x19,0x8c, + 0x0,0x0,0x14,0x3e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0xde,0x4c, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xe7, // :/zoneinfo/America/Argentina/Buenos_Aires - 0x0,0x0,0x11,0x30,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0x95,0xec, + 0x0,0x0,0xf,0xda,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0x5d,0x50, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xeb, // :/zoneinfo/America/Argentina/Jujuy - 0x0,0x0,0x1b,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0x9e,0x9c, + 0x0,0x0,0x19,0xd4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0x66,0x2, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xeb, // :/zoneinfo/America/Argentina/Salta - 0x0,0x0,0x1c,0x7c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0xbe,0xb, + 0x0,0x0,0x1b,0x26,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0x84,0x8d, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xeb, // :/zoneinfo/America/Argentina/ComodRivadavia - 0x0,0x0,0x1c,0x6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0x9a,0x2f, + 0x0,0x0,0x1a,0xb0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0x61,0xa9, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xeb, // :/zoneinfo/America/Argentina/Mendoza - 0x0,0x0,0x14,0x6c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0xb4,0xe9, + 0x0,0x0,0x13,0x16,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0x7b,0xbf, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xeb, // :/zoneinfo/America/Argentina/La_Rioja - 0x0,0x0,0x1c,0x28,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0xa3,0x19, + 0x0,0x0,0x1a,0xd2,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0x6a,0x3f, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xeb, // :/zoneinfo/America/Argentina/San_Juan - 0x0,0x0,0x1c,0x52,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0xb0,0x6e, + 0x0,0x0,0x1a,0xfc,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0x77,0x58, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xeb, // :/zoneinfo/America/Argentina/San_Luis - 0x0,0x0,0x1b,0xf0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0x91,0x55, + 0x0,0x0,0x1a,0x9a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0x58,0xd9, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xeb, // :/zoneinfo/America/Argentina/Cordoba - 0x0,0x0,0x1a,0xf0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0x8c,0xe8, + 0x0,0x0,0x19,0x9a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0x54,0x80, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xeb, // :/zoneinfo/America/Argentina/Catamarca - 0x0,0x0,0x14,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0xac,0x1, + 0x0,0x0,0x12,0xfe,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0x72,0xff, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xeb, // :/zoneinfo/America/Argentina/Tucuman - 0x0,0x0,0x1c,0x68,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0xb9,0x82, + 0x0,0x0,0x1b,0x12,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0x80,0x18, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xeb, // :/zoneinfo/America/Argentina/Ushuaia - 0x0,0x0,0x1c,0x3e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0xa7,0x94, + 0x0,0x0,0x1a,0xe8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0x6e,0xa6, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xeb, // :/zoneinfo/America/Argentina/Rio_Gallegos - 0x0,0x0,0x1b,0xd2,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0x88,0x7b, + 0x0,0x0,0x1a,0x7c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0x50,0x27, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xeb, // :/zoneinfo/America/Kentucky/Louisville - 0x0,0x0,0x1a,0x72,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0xfa,0xc0, + 0x0,0x0,0x19,0x1c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0xc1,0x2e, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xdf, // :/zoneinfo/America/Kentucky/Monticello - 0x0,0x0,0x1d,0x1c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x8,0x5,0xa1, + 0x0,0x0,0x1b,0xc6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0xcc,0xf, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xdf, // :/zoneinfo/America/North_Dakota/Beulah - 0x0,0x0,0x1d,0x48,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x8,0x18,0x37, + 0x0,0x0,0x1b,0xf2,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0xde,0xa5, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xdb, // :/zoneinfo/America/North_Dakota/Center - 0x0,0x0,0x1d,0x36,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x8,0xe,0xde, + 0x0,0x0,0x1b,0xe0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0xd5,0x4c, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xd7, // :/zoneinfo/America/North_Dakota/New_Salem - 0x0,0x0,0x1d,0x5a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x8,0x21,0x90, + 0x0,0x0,0x1c,0x4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0xe7,0xfe, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xdb, // :/zoneinfo/America/Indiana/Knox - 0x0,0x0,0x1c,0xd0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0xdd,0x60, + 0x0,0x0,0x1b,0x7a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0xa3,0xce, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xdf, // :/zoneinfo/America/Indiana/Vevay - 0x0,0x0,0x1c,0xf2,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0xed,0xb0, + 0x0,0x0,0x1b,0x9c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0xb4,0x1e, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xdf, // :/zoneinfo/America/Indiana/Tell_City - 0x0,0x0,0x1c,0x8c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0xc2,0x5c, + 0x0,0x0,0x1b,0x36,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0x88,0xca, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xdf, // :/zoneinfo/America/Indiana/Marengo - 0x0,0x0,0x1c,0xde,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0xe6,0xe9, + 0x0,0x0,0x1b,0x88,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0xad,0x57, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xdb, // :/zoneinfo/America/Indiana/Vincennes - 0x0,0x0,0x1c,0xa4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0xc9,0x27, + 0x0,0x0,0x1b,0x4e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0x8f,0x95, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xdb, // :/zoneinfo/America/Indiana/Petersburg - 0x0,0x0,0x1d,0x2,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0xf3,0x43, + 0x0,0x0,0x1b,0xac,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0xb9,0xb1, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xdf, // :/zoneinfo/America/Indiana/Winamac - 0x0,0x0,0x1c,0xbc,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0xd6,0x61, + 0x0,0x0,0x1b,0x66,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0x9c,0xcf, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xdf, // :/zoneinfo/America/Indiana/Indianapolis - 0x0,0x0,0x15,0x44,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0xcf,0xd2, + 0x0,0x0,0x13,0xee,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0x96,0x40, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xdb, // :/zoneinfo/Pacific/Yap - 0x0,0x0,0x20,0x7e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0x62,0xd2, + 0x0,0x0,0x1f,0xce,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0xab,0x39, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc3, // :/zoneinfo/Pacific/Apia - 0x0,0x0,0x20,0x98,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0x64,0xc, + 0x0,0x0,0x1f,0xe8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0xac,0xaf, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc3, // :/zoneinfo/Pacific/Fiji - 0x0,0x0,0x21,0xfe,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0x82,0xfc, + 0x0,0x0,0x21,0x4e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0xca,0x36, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc3, // :/zoneinfo/Pacific/Guam - 0x0,0x0,0x20,0xd8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0x69,0xfc, + 0x0,0x0,0x20,0x28,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0xb2,0xf3, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc3, // :/zoneinfo/Pacific/Niue - 0x0,0x0,0x22,0x82,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0x8d,0x5f, + 0x0,0x0,0x21,0xd2,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0xd4,0xd6, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc3, // :/zoneinfo/Pacific/Truk - 0x0,0x0,0x22,0xb2,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0x8f,0xe4, + 0x0,0x0,0x22,0x2,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0xd7,0xbd, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc3, // :/zoneinfo/Pacific/Wake - 0x0,0x0,0x20,0x8a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0x63,0x6f, + 0x0,0x0,0x1f,0xda,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0xab,0xf4, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc3, // :/zoneinfo/Pacific/Chuuk - 0x0,0x0,0x22,0x34,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0x88,0xde, + 0x0,0x0,0x21,0x84,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0xd0,0xc, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc3, // :/zoneinfo/Pacific/Efate - 0x0,0x0,0x22,0x44,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0x89,0x7b, + 0x0,0x0,0x21,0x94,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0xd0,0xc7, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc3, // :/zoneinfo/Pacific/Nauru - 0x0,0x0,0x22,0x90,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0x8e,0x45, + 0x0,0x0,0x21,0xe0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0xd5,0xe4, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc3, // :/zoneinfo/Pacific/Palau - 0x0,0x0,0x22,0x24,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0x88,0x45, + 0x0,0x0,0x21,0x74,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0xcf,0x52, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc3, // :/zoneinfo/Pacific/Samoa - 0x0,0x0,0x1f,0x4c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0xa2,0xc8, + 0x0,0x0,0xa,0x8a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0xea,0xfe, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc3, // :/zoneinfo/Pacific/Kiritimati - 0x0,0x0,0x20,0xbe,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0x69,0x12, + 0x0,0x0,0x20,0xe,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0xb1,0xe8, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc3, // :/zoneinfo/Pacific/Pitcairn - 0x0,0x0,0x23,0x66,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0xa8,0x64, + 0x0,0x0,0x22,0xb6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0xf0,0xc4, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc3, // :/zoneinfo/Pacific/Galapagos - 0x0,0x0,0x23,0x7c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0xa9,0x33, + 0x0,0x0,0x22,0xcc,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0xf1,0xa7, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xf3, // :/zoneinfo/Pacific/Easter - 0x0,0x0,0x21,0x7a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0x71,0x99, + 0x0,0x0,0x20,0xca,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0xba,0xac, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xf3, // :/zoneinfo/Pacific/Tongatapu - 0x0,0x0,0x21,0x9e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0x7b,0x8c, + 0x0,0x0,0x20,0xee,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0xc4,0xbe, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc3, // :/zoneinfo/Pacific/Kosrae - 0x0,0x0,0x23,0x10,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0xa4,0x8d, + 0x0,0x0,0x22,0x60,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0xec,0x84, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc3, // :/zoneinfo/Pacific/Majuro - 0x0,0x0,0x20,0x6c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0x62,0x9, + 0x0,0x0,0x1f,0xbc,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0xaa,0x58, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc3, // :/zoneinfo/Pacific/Midway - 0x0,0x0,0x21,0x42,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0x6e,0x7b, + 0x0,0x0,0x20,0x92,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0xb7,0xb8, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc3, // :/zoneinfo/Pacific/Noumea - 0x0,0x0,0x21,0x8c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0x7a,0x4e, + 0x0,0x0,0x20,0xdc,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0xc3,0x72, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc3, // :/zoneinfo/Pacific/Norfolk - 0x0,0x0,0x21,0x66,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0x70,0x74, + 0x0,0x0,0x20,0xb6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0xb9,0x65, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc3, // :/zoneinfo/Pacific/Ponape - 0x0,0x0,0x21,0xb6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0x7f,0x6d, + 0x0,0x0,0x21,0x6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0xc6,0x4b, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc3, // :/zoneinfo/Pacific/Saipan - 0x0,0x0,0x21,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0x6f,0x8f, + 0x0,0x0,0x20,0xa4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0xb8,0x80, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc3, // :/zoneinfo/Pacific/Tahiti - 0x0,0x0,0x23,0x22,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0xa5,0x77, + 0x0,0x0,0x22,0x72,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0xed,0x83, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc3, // :/zoneinfo/Pacific/Tarawa - 0x0,0x0,0x22,0xa0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0x8f,0x47, + 0x0,0x0,0x21,0xf0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0xd7,0x2, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc3, // :/zoneinfo/Pacific/Wallis - 0x0,0x0,0x22,0xc0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0x90,0x81, + 0x0,0x0,0x22,0x10,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0xd8,0x78, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc3, // :/zoneinfo/Pacific/Johnston - 0x0,0x0,0x20,0xfa,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0x6b,0xaa, + 0x0,0x0,0x20,0x4a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0xb4,0xb9, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xdb, // :/zoneinfo/Pacific/Honolulu - 0x0,0x0,0x22,0x6c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0x8c,0x47, + 0x0,0x0,0x21,0xbc,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0xd3,0xbe, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xdb, // :/zoneinfo/Pacific/Pohnpei - 0x0,0x0,0x21,0x2e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0x6d,0xde, + 0x0,0x0,0x20,0x7e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0xb6,0xfd, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc3, // :/zoneinfo/Pacific/Kwajalein - 0x0,0x0,0x3,0xd2,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0xa7,0x73, + 0x0,0x0,0x3,0x50,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0xef,0xbd, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc3, // :/zoneinfo/Pacific/Guadalcanal - 0x0,0x0,0x23,0x34,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0xa6,0x29, + 0x0,0x0,0x22,0x84,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0xee,0x42, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc3, // :/zoneinfo/Pacific/Rarotonga - 0x0,0x0,0x21,0xc8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0x80,0xa, + 0x0,0x0,0x21,0x18,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0xc7,0x6, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc3, // :/zoneinfo/Pacific/Bougainville - 0x0,0x0,0x21,0x10,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0x6c,0xc2, + 0x0,0x0,0x20,0x60,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0xb5,0xd1, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc3, // :/zoneinfo/Pacific/Marquesas - 0x0,0x0,0x20,0xa6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0x68,0x5e, + 0x0,0x0,0x1f,0xf6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0xb1,0x21, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc3, // :/zoneinfo/Pacific/Chatham - 0x0,0x0,0x22,0xd2,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0x91,0x1b, + 0x0,0x0,0x22,0x22,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0xd9,0x33, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc3, // :/zoneinfo/Pacific/Port_Moresby - 0x0,0x0,0x21,0xe0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0x82,0x4c, + 0x0,0x0,0x21,0x30,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0xc9,0x64, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc3, // :/zoneinfo/Pacific/Enderbury - 0x0,0x0,0x22,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0x8b,0x5d, + 0x0,0x0,0x21,0xa4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0xd2,0xb7, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc3, // :/zoneinfo/Pacific/Auckland - 0x0,0x0,0x22,0xe6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0x99,0x28, + 0x0,0x0,0x22,0x36,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0xe1,0x5e, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc3, // :/zoneinfo/Pacific/Funafuti - 0x0,0x0,0x23,0x50,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0xa6,0xd9, + 0x0,0x0,0x22,0xa0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0xef,0x2, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc3, // :/zoneinfo/Pacific/Fakaofo - 0x0,0x0,0x20,0xe6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0x6a,0xe1, + 0x0,0x0,0x20,0x36,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0xb3,0xd8, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc3, // :/zoneinfo/Pacific/Gambier - 0x0,0x0,0x22,0xfc,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0xa3,0xdc, + 0x0,0x0,0x22,0x4c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0xeb,0xc6, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc3, // :/zoneinfo/Pacific/Pago_Pago - 0x0,0x0,0x22,0xc,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0x87,0x31, + 0x0,0x0,0x21,0x5c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0xce,0x8a, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc3, // :/zoneinfo/Mexico/BajaNorte - 0x0,0x0,0x1d,0xba,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x8,0x40,0xfe, + 0x0,0x0,0x1d,0xe0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0xb,0xce, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xe7, // :/zoneinfo/Mexico/BajaSur - 0x0,0x0,0x1d,0xd2,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x8,0x4a,0x36, + 0x0,0x0,0x1d,0xf8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0x15,0x6, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xe7, // :/zoneinfo/Mexico/General - 0x0,0x0,0x1d,0xa6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x8,0x3a,0xa8, + 0x0,0x0,0x1d,0xcc,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0x5,0x78, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xe7, // :/zoneinfo/Indian/Mahe - 0x0,0x0,0xe,0xb4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0xb1,0x5f, + 0x0,0x0,0x5,0x5e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x13,0x77, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xb7, // :/zoneinfo/Indian/Cocos - 0x0,0x0,0xe,0x90,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0xaf,0xa4, + 0x0,0x0,0x5,0x3a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x11,0x93, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc3, // :/zoneinfo/Indian/Antananarivo - 0x0,0x0,0xe,0x60,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0xad,0xb8, + 0x0,0x0,0x5,0xa,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0xf,0x8d, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xb7, // :/zoneinfo/Indian/Mayotte - 0x0,0x0,0xe,0xa0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0xb0,0x40, + 0x0,0x0,0x5,0x4a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x12,0x56, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xb7, // :/zoneinfo/Indian/Chagos - 0x0,0x0,0xe,0x7e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0xae,0xd7, + 0x0,0x0,0x5,0x28,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x10,0xae, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbb, // :/zoneinfo/Indian/Comoro - 0x0,0x0,0xe,0x36,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0xac,0x0, + 0x0,0x0,0x4,0xe0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0xd,0xb2, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xb7, // :/zoneinfo/Indian/Maldives - 0x0,0x0,0xe,0xf2,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0xb3,0xce, + 0x0,0x0,0x5,0x9c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x16,0x4, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbf, // :/zoneinfo/Indian/Reunion - 0x0,0x0,0xf,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0xb4,0x9e, + 0x0,0x0,0x5,0xb2,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x16,0xe4, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xb7, // :/zoneinfo/Indian/Kerguelen - 0x0,0x0,0xe,0xda,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0xb3,0xf, + 0x0,0x0,0x5,0x84,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x15,0x45, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbb, // :/zoneinfo/Indian/Christmas - 0x0,0x0,0xe,0x48,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0xad,0x1f, + 0x0,0x0,0x4,0xf2,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0xe,0xd3, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc3, // :/zoneinfo/Indian/Mauritius - 0x0,0x0,0xe,0xc2,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0xb2,0xe, + 0x0,0x0,0x5,0x6c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x14,0x36, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xb7, // :/zoneinfo/Europe/Kiev - 0x0,0x0,0x9,0xc6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0x97,0xe4, + 0x0,0x0,0x26,0x22,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0x53,0x25, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xd7, // :/zoneinfo/Europe/Oslo - 0x0,0x0,0xa,0x66,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0xe4,0x9a, + 0x0,0x0,0x26,0xc2,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0x9f,0xcb, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xcb, // :/zoneinfo/Europe/Riga - 0x0,0x0,0xa,0x32,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0xcf,0x9f, + 0x0,0x0,0x26,0x8e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0x8a,0xd0, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xcb, // :/zoneinfo/Europe/Rome - 0x0,0x0,0x9,0xd4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0xa0,0x19, + 0x0,0x0,0x26,0x30,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0x5b,0x5a, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xcb, // :/zoneinfo/Europe/Kirov - 0x0,0x0,0xa,0x56,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0xe0,0x7, + 0x0,0x0,0x26,0xb2,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0x9b,0x38, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xcf, // :/zoneinfo/Europe/Malta - 0x0,0x0,0x8,0x5a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0xfe,0x19, + 0x0,0x0,0x24,0xb6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x8,0xb9,0x56, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xcb, // :/zoneinfo/Europe/Minsk - 0x0,0x0,0xb,0x2e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0x3a,0xa7, + 0x0,0x0,0x27,0x8a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0xf5,0xea, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc7, // :/zoneinfo/Europe/Paris - 0x0,0x0,0x7,0xfe,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0xc9,0xe4, + 0x0,0x0,0x24,0x5a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x8,0x85,0x21, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xcb, // :/zoneinfo/Europe/Sofia - 0x0,0x0,0x9,0x5a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0x65,0x8e, + 0x0,0x0,0x25,0xb6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0x20,0xcf, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc7, // :/zoneinfo/Europe/Vaduz - 0x0,0x0,0x9,0x1c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0x4a,0xc5, + 0x0,0x0,0x25,0x78,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0x6,0x6, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xd7, // :/zoneinfo/Europe/Tiraspol - 0x0,0x0,0x8,0xe,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0xd5,0x83, + 0x0,0x0,0x24,0x6a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x8,0x90,0xc0, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xcb, // :/zoneinfo/Europe/Uzhgorod - 0x0,0x0,0xa,0xda,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0x1a,0xd5, + 0x0,0x0,0x27,0x36,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0xd6,0x6, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xd7, // :/zoneinfo/Europe/Volgograd - 0x0,0x0,0x8,0xea,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0x3d,0xef, + 0x0,0x0,0x25,0x46,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x8,0xf9,0x2c, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xcf, // :/zoneinfo/Europe/San_Marino - 0x0,0x0,0x7,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x70,0x68, + 0x0,0x0,0x23,0x88,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x8,0x2b,0xa5, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xcb, // :/zoneinfo/Europe/Kaliningrad - 0x0,0x0,0x6,0xb4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x46,0xd7, + 0x0,0x0,0x23,0x10,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x8,0x2,0x14, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xcf, // :/zoneinfo/Europe/Athens - 0x0,0x0,0x8,0x36,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0xea,0xa1, + 0x0,0x0,0x24,0x92,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x8,0xa5,0xde, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xcb, // :/zoneinfo/Europe/Berlin - 0x0,0x0,0x7,0x60,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x83,0x64, + 0x0,0x0,0x23,0xbc,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x8,0x3e,0xa1, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xcb, // :/zoneinfo/Europe/Dublin - 0x0,0x0,0x9,0xe2,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0xaa,0xa1, + 0x0,0x0,0x26,0x3e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0x65,0xe2, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc7, // :/zoneinfo/Europe/Nicosia - 0x0,0x0,0x6,0x88,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x37,0x7a, + 0x0,0x0,0x22,0xe4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0xf2,0xb7, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbb, // :/zoneinfo/Europe/Jersey - 0x0,0x0,0xb,0x6a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0x51,0xb3, + 0x0,0x0,0x27,0xc6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0xc,0xf6, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc3, // :/zoneinfo/Europe/Lisbon - 0x0,0x0,0x7,0xec,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0xbc,0x63, + 0x0,0x0,0x24,0x48,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x8,0x77,0xa0, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xcf, // :/zoneinfo/Europe/London - 0x0,0x0,0x7,0x72,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x8c,0x87, + 0x0,0x0,0x23,0xce,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x8,0x47,0xc4, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc3, // :/zoneinfo/Europe/Madrid - 0x0,0x0,0xb,0x2,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0x2a,0x92, + 0x0,0x0,0x27,0x5e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0xe5,0xc3, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xd7, // :/zoneinfo/Europe/Monaco - 0x0,0x0,0x8,0x24,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0xdf,0x14, + 0x0,0x0,0x24,0x80,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x8,0x9a,0x51, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xcb, // :/zoneinfo/Europe/Moscow - 0x0,0x0,0xb,0x58,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0x4b,0xa7, + 0x0,0x0,0x27,0xb4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0x6,0xea, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xcf, // :/zoneinfo/Europe/Prague - 0x0,0x0,0x7,0xb4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0xa7,0x25, + 0x0,0x0,0x24,0x10,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x8,0x62,0x62, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc7, // :/zoneinfo/Europe/Samara - 0x0,0x0,0x8,0xac,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0x22,0x21, + 0x0,0x0,0x25,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x8,0xdd,0x5e, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xd3, // :/zoneinfo/Europe/Stockholm - 0x0,0x0,0x7,0x84,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x9a,0xf2, + 0x0,0x0,0x23,0xe0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x8,0x56,0x2f, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xd7, // :/zoneinfo/Europe/Skopje - 0x0,0x0,0x7,0xc6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0xb0,0x9, + 0x0,0x0,0x24,0x22,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x8,0x6b,0x46, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xd3, // :/zoneinfo/Europe/Tirane - 0x0,0x0,0xa,0xb2,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0xb,0x26, + 0x0,0x0,0x27,0xe,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0xc6,0x57, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc7, // :/zoneinfo/Europe/Vienna - 0x0,0x0,0x8,0x82,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0xd,0x67, + 0x0,0x0,0x24,0xde,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x8,0xc8,0xa4, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc7, // :/zoneinfo/Europe/Warsaw - 0x0,0x0,0x8,0x48,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0xf3,0x84, + 0x0,0x0,0x24,0xa4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x8,0xae,0xc1, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xcb, // :/zoneinfo/Europe/Zagreb - 0x0,0x0,0xa,0x88,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0xfb,0xd4, + 0x0,0x0,0x26,0xe4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0xb7,0x5, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xd3, // :/zoneinfo/Europe/Zurich - 0x0,0x0,0xa,0xf0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0x23,0x10, + 0x0,0x0,0x27,0x4c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0xde,0x41, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xd7, // :/zoneinfo/Europe/Zaporozhye - 0x0,0x0,0x9,0x2,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0x42,0x82, + 0x0,0x0,0x25,0x5e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x8,0xfd,0xbf, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xd7, // :/zoneinfo/Europe/Isle_of_Man - 0x0,0x0,0x9,0x7e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0x76,0x7f, + 0x0,0x0,0x25,0xda,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0x31,0xc0, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc3, // :/zoneinfo/Europe/Andorra - 0x0,0x0,0xa,0x1e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0xc8,0xc4, + 0x0,0x0,0x26,0x7a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0x83,0xf5, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc7, // :/zoneinfo/Europe/Sarajevo - 0x0,0x0,0xa,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0xc1,0x1b, + 0x0,0x0,0x26,0x64,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0x7c,0x4c, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xd3, // :/zoneinfo/Europe/Belfast - 0x0,0x0,0xa,0x74,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0xed,0x69, + 0x0,0x0,0x26,0xd0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0xa8,0x9a, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc3, // :/zoneinfo/Europe/Mariehamn - 0x0,0x0,0x6,0x9c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x3f,0x5e, + 0x0,0x0,0x22,0xf8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0xfa,0x9b, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc7, // :/zoneinfo/Europe/Saratov - 0x0,0x0,0x7,0xd8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0xb7,0xb2, + 0x0,0x0,0x24,0x34,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x8,0x72,0xef, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xcf, // :/zoneinfo/Europe/Gibraltar - 0x0,0x0,0x8,0x94,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0x16,0x28, + 0x0,0x0,0x24,0xf0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x8,0xd1,0x65, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xcb, // :/zoneinfo/Europe/Brussels - 0x0,0x0,0x9,0x44,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0x59,0xf0, + 0x0,0x0,0x25,0xa0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0x15,0x31, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc7, // :/zoneinfo/Europe/Bucharest - 0x0,0x0,0x7,0x14,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x67,0xb7, + 0x0,0x0,0x23,0x70,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x8,0x22,0xf4, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xcf, // :/zoneinfo/Europe/Tallinn - 0x0,0x0,0x9,0xf4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0xb8,0x8c, + 0x0,0x0,0x26,0x50,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0x73,0xbd, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc7, // :/zoneinfo/Europe/Istanbul - 0x0,0x0,0x8,0xbe,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0x27,0xa, + 0x0,0x0,0x25,0x1a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x8,0xe2,0x47, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xd7, // :/zoneinfo/Europe/Amsterdam - 0x0,0x0,0xb,0x7c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0x60,0x1e, + 0x0,0x0,0x27,0xd8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0x1b,0x61, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xcb, // :/zoneinfo/Europe/Podgorica - 0x0,0x0,0xa,0x9a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0x3,0x7d, + 0x0,0x0,0x26,0xf6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0xbe,0xae, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xd3, // :/zoneinfo/Europe/Bratislava - 0x0,0x0,0x6,0xd0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x4c,0xc9, + 0x0,0x0,0x23,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x8,0x8,0x6, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc7, // :/zoneinfo/Europe/Astrakhan - 0x0,0x0,0x7,0x9c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0xa2,0x74, + 0x0,0x0,0x23,0xf8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x8,0x5d,0xb1, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xcf, // :/zoneinfo/Europe/Ljubljana - 0x0,0x0,0x9,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0x52,0x47, + 0x0,0x0,0x25,0x88,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0xd,0x88, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xd3, // :/zoneinfo/Europe/Budapest - 0x0,0x0,0x9,0xb0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0x8e,0x7b, + 0x0,0x0,0x26,0xc,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0x49,0xbc, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xcb, // :/zoneinfo/Europe/Guernsey - 0x0,0x0,0x8,0xd4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0x2f,0x84, + 0x0,0x0,0x25,0x30,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x8,0xea,0xc1, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc3, // :/zoneinfo/Europe/Belgrade - 0x0,0x0,0xa,0x40,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0xd8,0x5e, + 0x0,0x0,0x26,0x9c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0x93,0x8f, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xd3, // :/zoneinfo/Europe/Luxembourg - 0x0,0x0,0xb,0x3e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0x40,0x5, + 0x0,0x0,0x27,0x9a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0xfb,0x48, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xcb, // :/zoneinfo/Europe/Helsinki - 0x0,0x0,0xa,0xc4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0x13,0x5c, + 0x0,0x0,0x27,0x20,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0xce,0x8d, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc7, // :/zoneinfo/Europe/Copenhagen - 0x0,0x0,0x7,0x46,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x7a,0xf0, + 0x0,0x0,0x23,0xa2,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x8,0x36,0x2d, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc7, // :/zoneinfo/Europe/Vatican - 0x0,0x0,0x7,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x5d,0x2f, + 0x0,0x0,0x23,0x5c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x8,0x18,0x6c, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xcb, // :/zoneinfo/Europe/Busingen - 0x0,0x0,0x6,0xea,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x55,0xad, + 0x0,0x0,0x23,0x46,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x8,0x10,0xea, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xd7, // :/zoneinfo/Europe/Simferopol - 0x0,0x0,0xb,0x14,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0x34,0xd1, + 0x0,0x0,0x27,0x70,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0xf0,0x14, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xcf, // :/zoneinfo/Europe/Vilnius - 0x0,0x0,0x9,0x6a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0x6d,0xe4, + 0x0,0x0,0x25,0xc6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0x29,0x25, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xcb, // :/zoneinfo/Europe/Chisinau - 0x0,0x0,0x9,0x9a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0x84,0xea, + 0x0,0x0,0x25,0xf6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0x40,0x2b, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xcb, // :/zoneinfo/Europe/Ulyanovsk - 0x0,0x0,0x8,0x6a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0x8,0x62, + 0x0,0x0,0x24,0xc6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x8,0xc3,0x9f, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xd3, // :/zoneinfo/Brazil/Acre - 0x0,0x0,0x1d,0x72,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x8,0x2a,0xe9, + 0x0,0x0,0xc,0x74,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0x36,0xc, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xef, // :/zoneinfo/Brazil/East - 0x0,0x0,0x1d,0x80,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x8,0x2d,0x7d, + 0x0,0x0,0xc,0x82,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0x38,0xa6, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xef, // :/zoneinfo/Brazil/West - 0x0,0x0,0x6,0x36,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x8,0x35,0x60, + 0x0,0x0,0xc,0x90,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0x40,0x8a, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xef, // :/zoneinfo/Brazil/DeNoronha - 0x0,0x0,0x1d,0x8e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x8,0x37,0xcc, + 0x0,0x0,0xc,0x9e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x3,0x43,0x4, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xef, // :/zoneinfo/Canada/Yukon - 0x0,0x0,0x20,0x34,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0x55,0xf2, + 0x0,0x0,0x28,0x4a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0x7d,0x26, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xe7, // :/zoneinfo/Canada/Saskatchewan - 0x0,0x0,0x20,0x16,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0x3b,0x34, + 0x0,0x0,0x28,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0x62,0x68, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xe3, // :/zoneinfo/Canada/Newfoundland - 0x0,0x0,0x1f,0xf8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0x21,0x87, + 0x0,0x0,0x28,0xe,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0x48,0xbb, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xdf, // :/zoneinfo/Canada/Pacific - 0x0,0x0,0x1,0x36,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0x2f,0xdb, + 0x0,0x0,0x0,0x8a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0x57,0xf, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xe3, // :/zoneinfo/Canada/Mountain - 0x0,0x0,0x1f,0x9a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0x3f,0x1a, + 0x0,0x0,0xa,0xd8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0x66,0x4e, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xe3, // :/zoneinfo/Canada/Central - 0x0,0x0,0x1e,0xfc,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0x8,0x85, + 0x0,0x0,0xa,0x3a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0x2f,0xb9, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xe3, // :/zoneinfo/Canada/Atlantic - 0x0,0x0,0x2,0x72,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0x48,0x80, + 0x0,0x0,0x2,0xc6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0x6f,0xb4, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xdf, // :/zoneinfo/Canada/Eastern - 0x0,0x0,0x1f,0x10,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0x13,0xd4, - // :/zoneinfo/Canada/East-Saskatchewan - 0x0,0x0,0x20,0x44,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0x5e,0x23, + 0x0,0x0,0xa,0x4e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0x3b,0x8, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xe3, // :/zoneinfo/Arctic/Longyearbyen - 0x0,0x0,0x4,0xac,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x1,0x9f,0xc5, + 0x0,0x0,0x27,0xf0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0x26,0xea, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xcb, // :/zoneinfo/Africa/Juba - 0x0,0x0,0x25,0x48,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0xd0,0xf7, + 0x0,0x0,0x7,0x7a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x3c,0x7c, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbb, // :/zoneinfo/Africa/Lome - 0x0,0x0,0x27,0x1a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0xf2,0xa5, + 0x0,0x0,0x9,0x4c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x5e,0x28, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xb7, // :/zoneinfo/Africa/Brazzaville - 0x0,0x0,0x27,0xc8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0xfe,0x93, + 0x0,0x0,0x9,0xfa,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x6a,0x1c, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xb7, // :/zoneinfo/Africa/Timbuktu - 0x0,0x0,0x25,0x78,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0xd5,0x67, + 0x0,0x0,0x7,0xaa,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x40,0xec, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xb7, // :/zoneinfo/Africa/Accra - 0x0,0x0,0x27,0xa4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0xfa,0x28, + 0x0,0x0,0x9,0xd6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x65,0xad, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xb7, // :/zoneinfo/Africa/Cairo - 0x0,0x0,0x26,0xa4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0xe6,0xcd, + 0x0,0x0,0x8,0xd6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x52,0x56, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xb7, // :/zoneinfo/Africa/Ceuta - 0x0,0x0,0x23,0xec,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0xac,0xc6, + 0x0,0x0,0x6,0x1e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x1a,0x5f, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xd7, // :/zoneinfo/Africa/Dakar - 0x0,0x0,0x25,0x68,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0xd4,0xb9, + 0x0,0x0,0x7,0x9a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x40,0x3e, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xb7, // :/zoneinfo/Africa/Windhoek - 0x0,0x0,0x23,0xfc,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0xb4,0xe5, + 0x0,0x0,0x6,0x2e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x22,0x6e, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xb7, // :/zoneinfo/Africa/Lagos - 0x0,0x0,0x26,0xc8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0xef,0xa4, + 0x0,0x0,0x8,0xfa,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x5b,0x2f, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xb7, // :/zoneinfo/Africa/Kinshasa - 0x0,0x0,0x27,0x8e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0xf9,0x79, + 0x0,0x0,0x9,0xc0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x64,0xfe, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xb7, // :/zoneinfo/Africa/Tunis - 0x0,0x0,0x24,0xee,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0xcb,0xb0, + 0x0,0x0,0x7,0x20,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x37,0x33, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbb, // :/zoneinfo/Africa/Djibouti - 0x0,0x0,0x25,0xd6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0xd8,0x91, + 0x0,0x0,0x8,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x44,0x18, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xb7, // :/zoneinfo/Africa/Kampala - 0x0,0x0,0x27,0xb4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0xfd,0x74, + 0x0,0x0,0x9,0xe6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x68,0xfb, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xb7, // :/zoneinfo/Africa/Dar_es_Salaam - 0x0,0x0,0x25,0x28,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0xcf,0xd8, + 0x0,0x0,0x7,0x5a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x3b,0x5b, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xb7, // :/zoneinfo/Africa/Bujumbura - 0x0,0x0,0x25,0x10,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0xcf,0x29, + 0x0,0x0,0x7,0x42,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x3a,0xac, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xb7, // :/zoneinfo/Africa/El_Aaiun - 0x0,0x0,0x25,0xec,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0xd9,0xb0, + 0x0,0x0,0x8,0x1e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x45,0x39, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xb7, // :/zoneinfo/Africa/Blantyre - 0x0,0x0,0x24,0xd8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0xcb,0x1, + 0x0,0x0,0x7,0xa,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x36,0x84, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xb7, // :/zoneinfo/Africa/Mbabane - 0x0,0x0,0x24,0x28,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0xbd,0xc6, + 0x0,0x0,0x6,0x5a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x29,0x45, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbb, // :/zoneinfo/Africa/Nairobi - 0x0,0x0,0x26,0xb4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0xee,0x85, + 0x0,0x0,0x8,0xe6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x5a,0xe, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xb7, // :/zoneinfo/Africa/Bamako - 0x0,0x0,0x25,0xaa,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0xd7,0x34, + 0x0,0x0,0x7,0xdc,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x42,0xbb, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xb7, // :/zoneinfo/Africa/Bangui - 0x0,0x0,0x26,0xd8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0xf0,0x53, + 0x0,0x0,0x9,0xa,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x5b,0xde, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xb7, // :/zoneinfo/Africa/Banjul - 0x0,0x0,0x27,0x28,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0xf3,0x53, + 0x0,0x0,0x9,0x5a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x5e,0xd6, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xb7, // :/zoneinfo/Africa/Asmara - 0x0,0x0,0x27,0x7c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0xf8,0x5a, + 0x0,0x0,0x9,0xae,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x63,0xdd, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xb7, // :/zoneinfo/Africa/Asmera - 0x0,0x0,0x24,0x9c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0xc8,0x14, + 0x0,0x0,0x6,0xce,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x33,0x93, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xb7, // :/zoneinfo/Africa/Bissau - 0x0,0x0,0x24,0x56,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0xc5,0x48, + 0x0,0x0,0x6,0x88,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x30,0xc7, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xb7, // :/zoneinfo/Africa/Douala - 0x0,0x0,0x27,0xe4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0xff,0x42, + 0x0,0x0,0xa,0x16,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x6a,0xcb, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xb7, // :/zoneinfo/Africa/Harare - 0x0,0x0,0x24,0xfe,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0xce,0x7a, + 0x0,0x0,0x7,0x30,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x39,0xfd, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xb7, // :/zoneinfo/Africa/Kigali - 0x0,0x0,0x23,0xc8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0xab,0x68, + 0x0,0x0,0x5,0xfa,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x19,0x1, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xb7, // :/zoneinfo/Africa/Malabo - 0x0,0x0,0x23,0xda,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0xac,0x17, + 0x0,0x0,0x6,0xc,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x19,0xb0, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xb7, // :/zoneinfo/Africa/Maputo - 0x0,0x0,0x27,0x3a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0xf4,0x1, + 0x0,0x0,0x9,0x6c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x5f,0x84, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xb7, // :/zoneinfo/Africa/Maseru - 0x0,0x0,0x25,0x56,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0xd3,0xa6, + 0x0,0x0,0x7,0x88,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x3f,0x2b, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbb, // :/zoneinfo/Africa/Luanda - 0x0,0x0,0x24,0xc6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0xca,0x52, + 0x0,0x0,0x6,0xf8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x35,0xd5, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xb7, // :/zoneinfo/Africa/Lusaka - 0x0,0x0,0x26,0x7c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0xe5,0x70, + 0x0,0x0,0x8,0xae,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x50,0xf9, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xb7, // :/zoneinfo/Africa/Niamey - 0x0,0x0,0x26,0x2,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0xdf,0x75, + 0x0,0x0,0x8,0x34,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x4a,0xfe, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xb7, // :/zoneinfo/Africa/Monrovia - 0x0,0x0,0x27,0x4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0xf1,0xb0, + 0x0,0x0,0x9,0x36,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x5d,0x3b, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xb7, // :/zoneinfo/Africa/Ouagadougou - 0x0,0x0,0x27,0x60,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0xf7,0xac, + 0x0,0x0,0x9,0x92,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x63,0x2f, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xb7, // :/zoneinfo/Africa/Abidjan - 0x0,0x0,0x26,0x28,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0xe2,0xb7, + 0x0,0x0,0x8,0x5a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x4e,0x40, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xb7, // :/zoneinfo/Africa/Gaborone - 0x0,0x0,0x26,0x50,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0xe4,0x13, + 0x0,0x0,0x8,0x82,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x4f,0x9c, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xb7, // :/zoneinfo/Africa/Casablanca - 0x0,0x0,0x24,0x3c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0xbe,0xd9, + 0x0,0x0,0x6,0x6e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x2a,0x58, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xb7, // :/zoneinfo/Africa/Nouakchott - 0x0,0x0,0x26,0xea,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0xf1,0x2, + 0x0,0x0,0x9,0x1c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x5c,0x8d, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xb7, // :/zoneinfo/Africa/Algiers - 0x0,0x0,0x27,0x4c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0xf4,0xb0, + 0x0,0x0,0x9,0x7e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x60,0x33, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xb7, // :/zoneinfo/Africa/Sao_Tome - 0x0,0x0,0x26,0x66,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0xe4,0xc2, + 0x0,0x0,0x8,0x98,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x50,0x4b, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xb7, // :/zoneinfo/Africa/Freetown - 0x0,0x0,0x26,0x8e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0xe6,0x1f, + 0x0,0x0,0x8,0xc0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x51,0xa8, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xb7, // :/zoneinfo/Africa/Libreville - 0x0,0x0,0x25,0xbc,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0xd7,0xe2, + 0x0,0x0,0x7,0xee,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x43,0x69, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xb7, // :/zoneinfo/Africa/Addis_Ababa - 0x0,0x0,0x25,0x8e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0xd6,0x15, + 0x0,0x0,0x7,0xc0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x41,0x9a, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xb7, // :/zoneinfo/Africa/Conakry - 0x0,0x0,0x26,0x3c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0xe3,0x65, + 0x0,0x0,0x8,0x6e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x4e,0xee, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xb7, // :/zoneinfo/Africa/Ndjamena - 0x0,0x0,0x24,0x86,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0xc7,0x2f, + 0x0,0x0,0x6,0xb8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x32,0xae, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xb7, // :/zoneinfo/Africa/Porto-Novo - 0x0,0x0,0x23,0xae,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0xaa,0xb9, + 0x0,0x0,0x5,0xe0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x18,0x52, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xb7, // :/zoneinfo/Africa/Tripoli - 0x0,0x0,0x26,0x14,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0xe0,0x24, + 0x0,0x0,0x8,0x46,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x4b,0xad, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xb7, // :/zoneinfo/Africa/Lubumbashi - 0x0,0x0,0x23,0x94,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0xaa,0xa, + 0x0,0x0,0x5,0xc6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x17,0xa3, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xb7, // :/zoneinfo/Africa/Mogadishu - 0x0,0x0,0x24,0xae,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0xc9,0x33, + 0x0,0x0,0x6,0xe0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x34,0xb4, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xb7, // :/zoneinfo/Africa/Khartoum - 0x0,0x0,0x24,0x12,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0xbb,0x17, + 0x0,0x0,0x6,0x44,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x26,0x78, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbb, // :/zoneinfo/Africa/Johannesburg - 0x0,0x0,0x24,0x68,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0xc6,0x1c, + 0x0,0x0,0x6,0x9a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x31,0x9b, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbb, // :/zoneinfo/Chile/Continental - 0x0,0x0,0x27,0xf6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x9,0xff,0xf1, + 0x0,0x0,0xb,0x36,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0xd5,0xb5, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xef, // :/zoneinfo/Chile/EasterIsland - 0x0,0x0,0x28,0x12,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0x9,0xc8, + 0x0,0x0,0xb,0x52,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0xdf,0xa3, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xf3, // :/zoneinfo/Asia/Aden - 0x0,0x0,0x29,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0x49,0x1d, + 0x0,0x0,0x29,0x56,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0xbe,0x12, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbf, // :/zoneinfo/Asia/Baku - 0x0,0x0,0x28,0x40,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0x16,0x7a, + 0x0,0x0,0x28,0x6a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0x89,0x54, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbb, // :/zoneinfo/Asia/Dili - 0x0,0x0,0x2d,0x10,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0xe4,0x69, + 0x0,0x0,0x2d,0x3a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0x53,0x6f, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbb, // :/zoneinfo/Asia/Gaza - 0x0,0x0,0x2b,0xcc,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0xaa,0x54, + 0x0,0x0,0x2b,0xf6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0x1d,0xd8, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbf, // :/zoneinfo/Asia/Hovd - 0x0,0x0,0x2d,0x2,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0xde,0x7c, + 0x0,0x0,0x2d,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0x4f,0xd2, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbf, // :/zoneinfo/Asia/Omsk - 0x0,0x0,0x29,0xe4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0x61,0x7a, + 0x0,0x0,0x2a,0xe,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0xd6,0xcf, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xd3, // :/zoneinfo/Asia/Oral - 0x0,0x0,0x2c,0xe0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0xd8,0xd0, + 0x0,0x0,0x2d,0xa,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0x4a,0x1e, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbf, // :/zoneinfo/Asia/Amman - 0x0,0x0,0x2f,0x7c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0x42,0x40, + 0x0,0x0,0x2f,0xa6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0xaf,0xa4, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbb, // :/zoneinfo/Asia/Aqtau - 0x0,0x0,0x28,0x30,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0x12,0x7d, + 0x0,0x0,0x28,0x5a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0x85,0x57, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbf, // :/zoneinfo/Asia/Chita - 0x0,0x0,0x2c,0x20,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0xbb,0x14, + 0x0,0x0,0x2c,0x4a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0x2e,0x9e, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xd3, // :/zoneinfo/Asia/Dacca - 0x0,0x0,0x2a,0xfc,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0x8d,0x4c, + 0x0,0x0,0x2b,0x26,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0x0,0xa5, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbb, // :/zoneinfo/Asia/Dhaka - 0x0,0x0,0x2b,0xda,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0xb3,0x4f, + 0x0,0x0,0x2c,0x4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0x26,0xd3, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbb, // :/zoneinfo/Asia/Dubai - 0x0,0x0,0x2e,0xce,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0x26,0xc8, + 0x0,0x0,0x2e,0xf8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0x96,0x22, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbf, // :/zoneinfo/Asia/Kabul - 0x0,0x0,0x2e,0x54,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0x19,0xec, + 0x0,0x0,0x2e,0x7e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0x88,0xe6, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbb, // :/zoneinfo/Asia/Macao - 0x0,0x0,0x2f,0x9e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0x4d,0xb4, + 0x0,0x0,0x2f,0xc8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0xbb,0x18, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbb, // :/zoneinfo/Asia/Macau - 0x0,0x0,0x28,0x9e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0x2d,0xc1, + 0x0,0x0,0x28,0xc8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0xa0,0xa1, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbb, // :/zoneinfo/Asia/Qatar - 0x0,0x0,0x2e,0xbe,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0x25,0xf3, + 0x0,0x0,0x2e,0xe8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0x95,0x3d, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbf, // :/zoneinfo/Asia/Seoul - 0x0,0x0,0x28,0xae,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0x30,0xe0, + 0x0,0x0,0x28,0xd8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0xa3,0x98, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbf, // :/zoneinfo/Asia/Tokyo - 0x0,0x0,0x2c,0x8a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0xc8,0xba, + 0x0,0x0,0x2c,0xb4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0x3a,0x2d, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbb, // :/zoneinfo/Asia/Tomsk - 0x0,0x0,0x2e,0x32,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0x13,0xe0, + 0x0,0x0,0x2e,0x5c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0x82,0xce, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xd3, // :/zoneinfo/Asia/Vladivostok - 0x0,0x0,0x2b,0x24,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0x93,0x88, + 0x0,0x0,0x2b,0x4e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0x6,0xcd, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xd3, // :/zoneinfo/Asia/Jakarta - 0x0,0x0,0x2f,0x30,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0x3d,0x81, + 0x0,0x0,0x2f,0x5a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0xaa,0xa3, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbb, // :/zoneinfo/Asia/Irkutsk - 0x0,0x0,0x2d,0xca,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0xff,0x9d, + 0x0,0x0,0x2d,0xf4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0x6e,0x67, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xd3, // :/zoneinfo/Asia/Karachi - 0x0,0x0,0x2f,0x1c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0x3b,0xea, + 0x0,0x0,0x2f,0x46,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0xa8,0xfe, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbf, // :/zoneinfo/Asia/Kashgar - 0x0,0x0,0x2a,0xb8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0x89,0x36, + 0x0,0x0,0x2a,0xe2,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0xfc,0x65, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbb, // :/zoneinfo/Asia/Qyzylorda - 0x0,0x0,0x2f,0xae,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0x50,0xd3, + 0x0,0x0,0x2f,0xd8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0xbe,0xf, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbb, // :/zoneinfo/Asia/Kolkata - 0x0,0x0,0x2b,0x56,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0x9a,0xe7, + 0x0,0x0,0x2b,0x80,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0xe,0x2c, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbb, // :/zoneinfo/Asia/Kuching - 0x0,0x0,0x2a,0x38,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0x71,0xe5, + 0x0,0x0,0x2a,0x62,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0xe4,0xf2, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbf, // :/zoneinfo/Asia/Magadan - 0x0,0x0,0x2c,0x9a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0xca,0x21, + 0x0,0x0,0x2c,0xc4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0x3b,0x6f, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xd3, // :/zoneinfo/Asia/Famagusta - 0x0,0x0,0x29,0x14,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0x43,0x74, + 0x0,0x0,0x29,0x3e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0xb6,0x14, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbb, // :/zoneinfo/Asia/Samarkand - 0x0,0x0,0x2b,0x82,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0x9d,0xb0, + 0x0,0x0,0x2b,0xac,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0x11,0xa, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbf, // :/zoneinfo/Asia/Kamchatka - 0x0,0x0,0x2b,0xc,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0x8e,0xd6, + 0x0,0x0,0x2b,0x36,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0x2,0x1b, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xd3, // :/zoneinfo/Asia/Ulan_Bator - 0x0,0x0,0x2c,0x42,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0xc0,0xd6, + 0x0,0x0,0x2c,0x6c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0x34,0x74, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbf, // :/zoneinfo/Asia/Ulaanbaatar - 0x0,0x0,0x29,0xf2,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0x66,0x59, + 0x0,0x0,0x2a,0x1c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0xdb,0xae, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbf, // :/zoneinfo/Asia/Almaty - 0x0,0x0,0x2f,0xa,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0x37,0xdf, + 0x0,0x0,0x2f,0x34,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0xa4,0xf3, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbb, // :/zoneinfo/Asia/Anadyr - 0x0,0x0,0x2d,0x1e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0xe5,0xa2, + 0x0,0x0,0x2d,0x48,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0x54,0x70, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xd3, // :/zoneinfo/Asia/Aqtobe - 0x0,0x0,0x2f,0x8c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0x49,0x99, + 0x0,0x0,0x2f,0xb6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0xb6,0xfd, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbf, // :/zoneinfo/Asia/Atyrau - 0x0,0x0,0x2a,0x26,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0x6d,0xe8, + 0x0,0x0,0x2a,0x50,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0xe0,0xed, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbf, // :/zoneinfo/Asia/Beirut - 0x0,0x0,0x2e,0xde,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0x27,0x77, + 0x0,0x0,0x2f,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0x96,0xe1, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbf, // :/zoneinfo/Asia/Brunei - 0x0,0x0,0x2d,0x8c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0xf4,0xa0, + 0x0,0x0,0x2d,0xb6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0x63,0x46, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbb, // :/zoneinfo/Asia/Hong_Kong - 0x0,0x0,0x2b,0xea,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0xb4,0xd9, + 0x0,0x0,0x2c,0x14,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0x28,0x49, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbb, // :/zoneinfo/Asia/Singapore - 0x0,0x0,0x1,0x5c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0x36,0x2f, + 0x0,0x0,0x4,0x64,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0xa3,0x47, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbf, // :/zoneinfo/Asia/Harbin - 0x0,0x0,0x28,0x60,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0x25,0x5a, + 0x0,0x0,0x28,0x8a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0x98,0x3a, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbb, // :/zoneinfo/Asia/Hebron - 0x0,0x0,0x2a,0xa6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0x80,0x1f, + 0x0,0x0,0x2a,0xd0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0xf3,0x4e, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbf, // :/zoneinfo/Asia/Nicosia - 0x0,0x0,0x6,0x88,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0xa1,0x98, + 0x0,0x0,0x22,0xe4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0x15,0x2, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbb, // :/zoneinfo/Asia/Kuwait - 0x0,0x0,0x2d,0xf2,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0x8,0xd9, + 0x0,0x0,0x2e,0x1c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0x77,0xa3, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbf, // :/zoneinfo/Asia/Manila - 0x0,0x0,0x28,0x4e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0x23,0xed, + 0x0,0x0,0x28,0x78,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0x96,0xc7, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbf, // :/zoneinfo/Asia/Muscat - 0x0,0x0,0x29,0x9e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0x5b,0x16, + 0x0,0x0,0x29,0xc8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0xd0,0x4b, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbf, // :/zoneinfo/Asia/Riyadh - 0x0,0x0,0x2f,0x6a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0x41,0x91, + 0x0,0x0,0x2f,0x94,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0xae,0xe5, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbf, // :/zoneinfo/Asia/Saigon - 0x0,0x0,0x2f,0x44,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0x3e,0xf7, + 0x0,0x0,0x2f,0x6e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0xac,0x2f, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbf, // :/zoneinfo/Asia/Taipei - 0x0,0x0,0x2d,0x48,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0xeb,0xa8, + 0x0,0x0,0x2d,0x72,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0x5a,0x4e, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbb, // :/zoneinfo/Asia/Tehran - 0x0,0x0,0x29,0x3a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0x49,0xcc, + 0x0,0x0,0x29,0x64,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0xbe,0xd1, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbb, // :/zoneinfo/Asia/Thimbu - 0x0,0x0,0x2c,0x30,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0xc0,0x1, + 0x0,0x0,0x2c,0x5a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0x33,0x8b, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbb, // :/zoneinfo/Asia/Pontianak - 0x0,0x0,0x2e,0x1a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0x12,0x65, + 0x0,0x0,0x2e,0x44,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0x81,0x3f, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbb, // :/zoneinfo/Asia/Urumqi - 0x0,0x0,0x2e,0x78,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0x1b,0x8c, + 0x0,0x0,0x2e,0xa2,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0x8a,0xb8, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbb, // :/zoneinfo/Asia/Krasnoyarsk - 0x0,0x0,0x2d,0x5a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0xee,0xcc, + 0x0,0x0,0x2d,0x84,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0x5d,0x68, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xd3, // :/zoneinfo/Asia/Yangon - 0x0,0x0,0x2e,0x42,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0x18,0xcb, + 0x0,0x0,0x2e,0x6c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0x87,0xb9, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbb, // :/zoneinfo/Asia/Phnom_Penh - 0x0,0x0,0x2a,0x4c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0x73,0xf0, + 0x0,0x0,0x2a,0x76,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0xe6,0xff, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbf, // :/zoneinfo/Asia/Pyongyang - 0x0,0x0,0x2d,0x30,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0xea,0x6c, + 0x0,0x0,0x2d,0x5a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0x59,0x3a, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbf, // :/zoneinfo/Asia/Chongqing - 0x0,0x0,0x2a,0xe,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0x6c,0x46, + 0x0,0x0,0x2a,0x38,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0xdf,0x4b, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbb, // :/zoneinfo/Asia/Srednekolymsk - 0x0,0x0,0x29,0xb0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0x5b,0xc5, + 0x0,0x0,0x29,0xda,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0xd1,0xa, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xd3, // :/zoneinfo/Asia/Yekaterinburg - 0x0,0x0,0x2e,0x8a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0x1c,0x3b, + 0x0,0x0,0x2e,0xb4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0x8b,0x77, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xd3, // :/zoneinfo/Asia/Novokuznetsk - 0x0,0x0,0x29,0x4c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0x50,0x5e, + 0x0,0x0,0x29,0x76,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0xc5,0x8b, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xd3, // :/zoneinfo/Asia/Makassar - 0x0,0x0,0x2d,0x9e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0xf5,0x6d, + 0x0,0x0,0x2d,0xc8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0x64,0x2f, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbb, // :/zoneinfo/Asia/Sakhalin - 0x0,0x0,0x2c,0xca,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0xd3,0xfa, + 0x0,0x0,0x2c,0xf4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0x45,0x48, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xd3, // :/zoneinfo/Asia/Calcutta - 0x0,0x0,0x2c,0x74,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0xc7,0x93, + 0x0,0x0,0x2c,0x9e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0x38,0xf1, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbb, // :/zoneinfo/Asia/Damascus - 0x0,0x0,0x2d,0xb4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0xf6,0x89, + 0x0,0x0,0x2d,0xde,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0x65,0x53, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbf, // :/zoneinfo/Asia/Baghdad - 0x0,0x0,0x2a,0x92,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0x7c,0x3f, + 0x0,0x0,0x2a,0xbc,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0xef,0x5e, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbb, // :/zoneinfo/Asia/Bahrain - 0x0,0x0,0x29,0xd0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0x60,0xa5, + 0x0,0x0,0x29,0xfa,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0xd5,0xea, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbf, // :/zoneinfo/Asia/Bangkok - 0x0,0x0,0x28,0xec,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0x3e,0x8b, + 0x0,0x0,0x29,0x16,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0xb1,0x1b, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbf, // :/zoneinfo/Asia/Rangoon - 0x0,0x0,0x2f,0x56,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0x40,0x70, + 0x0,0x0,0x2f,0x80,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0xad,0xb8, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbb, // :/zoneinfo/Asia/Barnaul - 0x0,0x0,0x29,0x6a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0x55,0xf, + 0x0,0x0,0x29,0x94,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0xca,0x3c, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xd3, // :/zoneinfo/Asia/Tashkent - 0x0,0x0,0x2b,0x40,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0x98,0x68, + 0x0,0x0,0x2b,0x6a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0xb,0xad, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbf, // :/zoneinfo/Asia/Katmandu - 0x0,0x0,0x2b,0xb6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0xa9,0x7c, + 0x0,0x0,0x2b,0xe0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0x1c,0xe6, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbf, // :/zoneinfo/Asia/Jayapura - 0x0,0x0,0x2d,0x76,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0xf3,0xab, + 0x0,0x0,0x2d,0xa0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0x62,0x47, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbb, // :/zoneinfo/Asia/Bishkek - 0x0,0x0,0x29,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0x3f,0x5b, + 0x0,0x0,0x29,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0xb1,0xfb, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbf, // :/zoneinfo/Asia/Novosibirsk - 0x0,0x0,0x2c,0xae,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0xcf,0xf, + 0x0,0x0,0x2c,0xd8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0x40,0x5d, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xd3, // :/zoneinfo/Asia/Jerusalem - 0x0,0x0,0x28,0xbe,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0x33,0x1f, + 0x0,0x0,0x28,0xe8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0xa5,0xaf, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbb, // :/zoneinfo/Asia/Ashgabat - 0x0,0x0,0x28,0xd6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0x3b,0xfc, + 0x0,0x0,0x29,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0xae,0x8c, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbf, // :/zoneinfo/Asia/Colombo - 0x0,0x0,0x2c,0xee,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0xdc,0xdb, + 0x0,0x0,0x2d,0x18,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0x4e,0x31, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbf, // :/zoneinfo/Asia/Kuala_Lumpur - 0x0,0x0,0x2c,0x2,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0xb9,0x82, + 0x0,0x0,0x2c,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0x2c,0xf2, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbf, // :/zoneinfo/Asia/Ust-Nera - 0x0,0x0,0x2a,0x7c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0x77,0x31, + 0x0,0x0,0x2a,0xa6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0xea,0x50, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xd3, // :/zoneinfo/Asia/Tbilisi - 0x0,0x0,0x2d,0xde,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0x4,0x9d, + 0x0,0x0,0x2e,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0x73,0x67, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbb, // :/zoneinfo/Asia/Istanbul - 0x0,0x0,0x8,0xbe,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0x1b,0x73, + 0x0,0x0,0x25,0x1a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0x8e,0x4d, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xd7, // :/zoneinfo/Asia/Thimphu - 0x0,0x0,0x2e,0x64,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0x1a,0xb7, + 0x0,0x0,0x2e,0x8e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0x89,0xcf, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbb, // :/zoneinfo/Asia/Kathmandu - 0x0,0x0,0x2a,0xe4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0x8c,0x74, + 0x0,0x0,0x2b,0xe,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0xff,0xb3, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbf, // :/zoneinfo/Asia/Tel_Aviv - 0x0,0x0,0x2e,0x4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0x9,0x88, + 0x0,0x0,0x2e,0x2e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0x78,0x62, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbb, // :/zoneinfo/Asia/Chungking - 0x0,0x0,0x2b,0x6a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0x9c,0xe, + 0x0,0x0,0x2b,0x94,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0xf,0x68, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbb, // :/zoneinfo/Asia/Vientiane - 0x0,0x0,0x2c,0x5c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0xc6,0xc3, + 0x0,0x0,0x2c,0x86,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0x38,0x11, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbf, // :/zoneinfo/Asia/Dushanbe - 0x0,0x0,0x2a,0x66,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0x74,0xc0, + 0x0,0x0,0x2a,0x90,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0xe7,0xdf, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbf, // :/zoneinfo/Asia/Ho_Chi_Minh - 0x0,0x0,0x2b,0x9a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0xa0,0x1f, + 0x0,0x0,0x2b,0xc4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0x13,0x79, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbf, // :/zoneinfo/Asia/Ujung_Pandang - 0x0,0x0,0x29,0x7e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0x59,0xfa, + 0x0,0x0,0x29,0xa8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0xcf,0x27, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbb, // :/zoneinfo/Asia/Khandyga - 0x0,0x0,0x28,0x88,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0x28,0x9e, + 0x0,0x0,0x28,0xb2,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0x9b,0x7e, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xd3, // :/zoneinfo/Asia/Shanghai - 0x0,0x0,0x28,0x72,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0x26,0xfc, + 0x0,0x0,0x28,0x9c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0x99,0xdc, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbb, // :/zoneinfo/Asia/Ashkhabad - 0x0,0x0,0x2a,0xcc,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0x89,0xe5, + 0x0,0x0,0x2a,0xf6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xa,0xfd,0x24, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbf, // :/zoneinfo/Asia/Yakutsk - 0x0,0x0,0x2f,0xc6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0x54,0xee, + 0x0,0x0,0x2f,0xf0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0xc2,0x2a, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xd3, // :/zoneinfo/Asia/Choibalsan - 0x0,0x0,0x2e,0xf0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0x2f,0xfa, + 0x0,0x0,0x2f,0x1a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0x9f,0x64, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbf, // :/zoneinfo/Asia/Yerevan - 0x0,0x0,0x2e,0xaa,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0x21,0x40, + 0x0,0x0,0x2e,0xd4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0xb,0x90,0x7c, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xbb, // :/zoneinfo/Etc/GMT - 0x0,0x0,0x0,0xea,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0xaa,0xfa, + 0x0,0x0,0x3,0x7c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0x4,0x72, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xf3, // :/zoneinfo/Etc/UCT - 0x0,0x0,0x1,0xa6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0x99,0x68, + 0x0,0x0,0x0,0x34,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0xf2,0xe0, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xf3, // :/zoneinfo/Etc/UTC - 0x0,0x0,0x0,0x3e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0xab,0x7d, + 0x0,0x0,0x4,0x98,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0x4,0xf5, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xf3, // :/zoneinfo/Etc/GMT0 - 0x0,0x0,0x2,0x64,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0x98,0xe5, + 0x0,0x0,0x2,0x2,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0xf2,0x5d, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xf3, // :/zoneinfo/Etc/Zulu - 0x0,0x0,0x2,0xca,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0x98,0x62, + 0x0,0x0,0x4,0x44,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0xf1,0xda, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xf3, // :/zoneinfo/Etc/GMT+0 - 0x0,0x0,0x1,0xb2,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0xa4,0x9c, + 0x0,0x0,0x3,0xd4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0xfe,0x14, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xf3, // :/zoneinfo/Etc/GMT+1 - 0x0,0x0,0xd,0xa6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0xa5,0x1f, + 0x0,0x0,0x1d,0x3c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0xfe,0x97, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xf3, // :/zoneinfo/Etc/GMT+2 - 0x0,0x0,0xd,0xb6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0xa5,0xb7, + 0x0,0x0,0x1d,0x4c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0xff,0x2f, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xf3, // :/zoneinfo/Etc/GMT+3 - 0x0,0x0,0xd,0xc6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0xa6,0x4f, + 0x0,0x0,0x1d,0x5c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0xff,0xc7, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xf3, // :/zoneinfo/Etc/GMT+4 - 0x0,0x0,0xd,0xd6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0xa6,0xe7, + 0x0,0x0,0x1d,0x6c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0x0,0x5f, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xf3, // :/zoneinfo/Etc/GMT+5 - 0x0,0x0,0xd,0xe6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0xa7,0x7f, + 0x0,0x0,0x1d,0x7c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0x0,0xf7, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xf3, // :/zoneinfo/Etc/GMT+6 - 0x0,0x0,0xd,0xf6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0xa8,0x9a, + 0x0,0x0,0x1d,0x8c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0x2,0x12, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xf3, // :/zoneinfo/Etc/GMT+7 - 0x0,0x0,0xe,0x6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0xa9,0x32, + 0x0,0x0,0x1d,0x9c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0x2,0xaa, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xf3, // :/zoneinfo/Etc/GMT+8 - 0x0,0x0,0xe,0x16,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0xa9,0xca, + 0x0,0x0,0x1d,0xac,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0x3,0x42, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xf3, // :/zoneinfo/Etc/GMT+9 - 0x0,0x0,0xe,0x26,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0xaa,0x62, + 0x0,0x0,0x1d,0xbc,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0x3,0xda, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xf3, // :/zoneinfo/Etc/GMT-0 - 0x0,0x0,0x1,0x74,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0x99,0xeb, + 0x0,0x0,0x1,0x6c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0xf3,0x63, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xf3, // :/zoneinfo/Etc/GMT-1 - 0x0,0x0,0xc,0x86,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0x9a,0x6e, + 0x0,0x0,0x1c,0x1c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0xf3,0xe6, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xf3, // :/zoneinfo/Etc/GMT-2 - 0x0,0x0,0xc,0x96,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0x9b,0x7, + 0x0,0x0,0x1c,0x2c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0xf4,0x7f, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xf3, // :/zoneinfo/Etc/GMT-3 - 0x0,0x0,0xc,0xa6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0x9b,0xa0, + 0x0,0x0,0x1c,0x3c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0xf5,0x18, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xf3, // :/zoneinfo/Etc/GMT-4 - 0x0,0x0,0xc,0xb6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0x9c,0x39, + 0x0,0x0,0x1c,0x4c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0xf5,0xb1, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xf3, // :/zoneinfo/Etc/GMT-5 - 0x0,0x0,0xc,0xc6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0x9c,0xd2, + 0x0,0x0,0x1c,0x5c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0xf6,0x4a, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xf3, // :/zoneinfo/Etc/GMT-6 - 0x0,0x0,0xc,0xd6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0x9d,0x6b, + 0x0,0x0,0x1c,0x6c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0xf6,0xe3, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xf3, // :/zoneinfo/Etc/GMT-7 - 0x0,0x0,0xc,0xf8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0x9e,0x9e, + 0x0,0x0,0x1c,0x8e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0xf8,0x16, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xf3, // :/zoneinfo/Etc/GMT-8 - 0x0,0x0,0xd,0x1a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0x9f,0xd1, + 0x0,0x0,0x1c,0xb0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0xf9,0x49, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xf3, // :/zoneinfo/Etc/GMT-9 - 0x0,0x0,0xd,0x4e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0xa1,0x9d, + 0x0,0x0,0x1c,0xe4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0xfb,0x15, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xf3, // :/zoneinfo/Etc/Universal - 0x0,0x0,0x1,0xd8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0xa8,0x17, + 0x0,0x0,0x3,0xf0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x7,0x1,0x8f, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xf3, // :/zoneinfo/Etc/GMT+10 - 0x0,0x0,0xd,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0xa0,0x6a, + 0x0,0x0,0x1c,0xc0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0xf9,0xe2, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xf3, // :/zoneinfo/Etc/GMT+11 - 0x0,0x0,0xd,0x5e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0xa2,0x36, + 0x0,0x0,0x1c,0xf4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0xfb,0xae, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xf3, // :/zoneinfo/Etc/GMT+12 - 0x0,0x0,0xd,0x82,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0xa3,0x69, + 0x0,0x0,0x1d,0x18,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0xfc,0xe1, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xf3, // :/zoneinfo/Etc/GMT-10 - 0x0,0x0,0xc,0xe6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0x9e,0x4, + 0x0,0x0,0x1c,0x7c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0xf7,0x7c, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xf3, // :/zoneinfo/Etc/GMT-11 - 0x0,0x0,0xd,0x8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0x9f,0x37, + 0x0,0x0,0x1c,0x9e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0xf8,0xaf, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xf3, // :/zoneinfo/Etc/GMT-12 - 0x0,0x0,0xd,0x3c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0xa1,0x3, + 0x0,0x0,0x1c,0xd2,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0xfa,0x7b, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xf3, // :/zoneinfo/Etc/GMT-13 - 0x0,0x0,0xd,0x70,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0xa2,0xcf, + 0x0,0x0,0x1d,0x6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0xfc,0x47, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xf3, // :/zoneinfo/Etc/GMT-14 - 0x0,0x0,0xd,0x94,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0xa4,0x2, + 0x0,0x0,0x1d,0x2a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0xfd,0x7a, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xf3, // :/zoneinfo/Etc/Greenwich - 0x0,0x0,0x0,0x56,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x4,0x97,0xdf, + 0x0,0x0,0x1,0xa6,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x6,0xf1,0x57, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xf3, // :/zoneinfo/US/Samoa - 0x0,0x0,0x1f,0x4c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x8,0xcc,0xd8, + 0x0,0x0,0xa,0x8a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x9a,0x54, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xc3, // :/zoneinfo/US/Aleutian - 0x0,0x0,0x1f,0xe2,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x8,0xff,0x44, + 0x0,0x0,0xb,0x20,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0xcc,0x74, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xdb, // :/zoneinfo/US/Alaska - 0x0,0x0,0x1f,0x3a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x8,0xc3,0x84, + 0x0,0x0,0xa,0x78,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x91,0x4, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xdb, // :/zoneinfo/US/Hawaii - 0x0,0x0,0x1e,0xea,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x8,0x9d,0xde, + 0x0,0x0,0xa,0x28,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x6b,0x7a, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xdb, // :/zoneinfo/US/Pacific - 0x0,0x0,0x1,0x36,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x8,0xd7,0x75, + 0x0,0x0,0x0,0x8a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0xa4,0xa5, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xdb, // :/zoneinfo/US/Mountain - 0x0,0x0,0x1f,0x9a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x8,0xed,0xb7, + 0x0,0x0,0xa,0xd8,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0xba,0xe7, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xdb, // :/zoneinfo/US/Arizona - 0x0,0x0,0x1f,0xb0,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x8,0xf7,0x50, + 0x0,0x0,0xa,0xee,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0xc4,0x80, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xdb, // :/zoneinfo/US/East-Indiana - 0x0,0x0,0x1f,0xc4,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x8,0xf8,0xb5, + 0x0,0x0,0xb,0x2,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0xc5,0xe5, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xdb, // :/zoneinfo/US/Central - 0x0,0x0,0x1e,0xfc,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x8,0x9e,0xf6, + 0x0,0x0,0xa,0x3a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x6c,0x92, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xd7, // :/zoneinfo/US/Eastern - 0x0,0x0,0x1f,0x10,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x8,0xac,0xfb, + 0x0,0x0,0xa,0x4e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x7a,0x97, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xd7, // :/zoneinfo/US/Indiana-Starke - 0x0,0x0,0x1f,0x5c,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x8,0xcd,0xec, + 0x0,0x0,0xa,0x9a,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x9b,0x1c, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xdf, // :/zoneinfo/US/Pacific-New - 0x0,0x0,0x1f,0x7e,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x8,0xe2,0x96, + 0x0,0x0,0xa,0xbc,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0xaf,0xc6, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xdb, // :/zoneinfo/US/Michigan - 0x0,0x0,0x1f,0x24,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x8,0xba,0xd8, + 0x0,0x0,0xa,0x62,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x2,0x88,0x74, +0x0,0x0,0x1,0x60,0x7e,0x4d,0xb9,0xdf, }; @@ -52646,7 +55045,7 @@ int QT_RCC_MANGLE_NAMESPACE(qInitResources_zonefiles)(); int QT_RCC_MANGLE_NAMESPACE(qInitResources_zonefiles)() { QT_RCC_PREPEND_NAMESPACE(qRegisterResourceData) - (0x01, qt_resource_struct, qt_resource_name, qt_resource_data); + (0x2, qt_resource_struct, qt_resource_name, qt_resource_data); return 1; } @@ -52654,7 +55053,7 @@ int QT_RCC_MANGLE_NAMESPACE(qCleanupResources_zonefiles)(); int QT_RCC_MANGLE_NAMESPACE(qCleanupResources_zonefiles)() { QT_RCC_PREPEND_NAMESPACE(qUnregisterResourceData) - (0x01, qt_resource_struct, qt_resource_name, qt_resource_data); + (0x2, qt_resource_struct, qt_resource_name, qt_resource_data); return 1; } -- 1.7.2.5